diff --git a/Environment Setup_Tutorial.pdf b/Environment Setup_Tutorial.pdf
index 093e798..e5c19c3 100644
Binary files a/Environment Setup_Tutorial.pdf and b/Environment Setup_Tutorial.pdf differ
diff --git a/README.md b/README.md
index 51041b1..d83937e 100644
--- a/README.md
+++ b/README.md
@@ -1,141 +1,90 @@
-This code contains deep learning code used to modeling hydrologic systems, from soil moisture to streamflow, from projection to forecast.
-
-# Citations
-
-If you find our code to be useful, please cite the following papers:
-
-Feng, DP, K. Fang and CP. Shen, [Enhancing streamflow forecast and extracting insights using continental-scale long-short term memory networks with data integration], Water Resources Reserach (2020), https://doi.org/10.1029/2019WR026793
-
-Fang, K., CP. Shen, D. Kifer and X. Yang, [Prolongation of SMAP to Spatio-temporally Seamless Coverage of Continental US Using a Deep Learning Neural Network], Geophysical Research Letters, doi: 10.1002/2017GL075619, preprint accessible at: arXiv:1707.06611 (2017) https://agupubs.onlinelibrary.wiley.com/doi/full/10.1002/2017GL075619
-
-Shen, CP., [A trans-disciplinary review of deep learning research and its relevance for water resources scientists], Water Resources Research. 54(11), 8558-8593, doi: 10.1029/2018WR022643 (2018) https://doi.org/10.1029/2018WR022643
-
-Major code contributor: Kuai Fang (PhD., Penn State), and smaller contribution from Dapeng Feng (PhD Student, Penn State)
-
-A new release is expected in early July, 2020, together with video code walkthrough.
-Computational benchmark: training of CAMELS data (w/ or w/o data integration) with 671 basins, 10 years, 300 epochs, in ~1 hour with GPU.
-
-# Example
-Two examples with sample data are wrapped up including
- - [train a LSTM network to learn SMAP soil moisture](example/train-lstm.py)
- - [estimate uncertainty of a LSTM network ](example/train-lstm-mca.py)
-
-A demo for temporal test is [here](example/demo-temporal-test.ipynb)
-
-# License
-Non-Commercial Software License Agreement
-
-By downloading the hydroDL software (the “Software”) you agree to
-the following terms of use:
-Copyright (c) 2020, The Pennsylvania State University (“PSU”). All rights reserved.
-
-1. PSU hereby grants to you a perpetual, nonexclusive and worldwide right, privilege and
-license to use, reproduce, modify, display, and create derivative works of Software for all
-non-commercial purposes only. You may not use Software for commercial purposes without
-prior written consent from PSU. Queries regarding commercial licensing should be directed
-to The Office of Technology Management at 814.865.6277 or otminfo@psu.edu.
-2. Neither the name of the copyright holder nor the names of its contributors may be used
-to endorse or promote products derived from this software without specific prior written
-permission.
-3. This software is provided for non-commercial use only.
-4. Redistribution and use in source and binary forms, with or without modification, are
-permitted provided that redistributions must reproduce the above copyright notice, license,
-list of conditions and the following disclaimer in the documentation and/or other materials
-provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
-
-
-# Database description
-## Database Structure
-```
-├── CONUS
-│ ├── 2000
-│ │ ├── [Variable-Name].csv
-│ │ ├── ...
-│ │ ├── timeStr.csv
-│ │ └── time.csv
-│ ├── ...
-│ ├── 2017
-│ │ └── ...
-│ ├── const
-│ │ ├── [Constant-Variable-Name].csv
-│ │ └── ...
-│ └── crd.csv
-├── CONUSv4f1
-│ └── ...
-├── Statistics
-│ ├── [Variable-Name]_stat.csv
-│ ├── ...
-│ ├── const_[Constant-Variable-Name]_stat.csv
-│ └── ...
-├── Subset
-│ ├── CONUS.csv
-│ └── CONUSv4f1.csv
-└── Variable
- ├── varConstLst.csv
- └── varLst.csv
-```
-### 1. Dataset folders (*CONUS* , *CONUSv4f1*)
-Data folder contains all data including both training and testing, time-dependent variables and constant variables.
-In example data structure, there are two dataset folders - *CONUS* and *CONUSv4f1*. Those data are saved in:
-
- - **year/[Variable-Name].csv**:
-
-A csv file of size [#grid, #time], where each column is one grid and each row is one time step. This file saved data of a time-dependent variable of current year. For example, *CONUS/2010/SMAP_AM.csv* is SMAP data of 2002 on the CONUS.
-
-Most time-dependent varibles comes from NLDAS, which included two forcing product (FORA, FORB) and three simulations product land surface models (NOAH, MOS, VIC). Variables are named as *[variable]\_[product]\_[layer]*, and reference of variable can be found in [NLDAS document](https://hydro1.gesdisc.eosdis.nasa.gov/data/NLDAS/README.NLDAS2.pdf). For example, *SOILM_NOAH_0-10* refers to soil moisture product simulated by NOAH model at 0-10 cm.
-
-Other than NLDAS, SMAP data are also saved in same format but always used as target. In level 3 database, there are two SMAP csv files which are only available after 2015: *SMAP_AM.csv* and *SMAP_PM.csv*.
-
--9999 refers to NaN.
-
-- **year/time.csv** & **timeStr.csv**
-
-Dates csv file of current year folder, of size [#date]. *time.csv* recorded Matlab datenum and *timeStr.csv* recorded date in format of yyyy-mm-dd.
-
-Notice that each year start from and end before April 1st. For example data in folder 2010 is actually data from 2010-04-01 to 2011-03-31. The reason is that SMAP launched at April 1st.
-
-- **const/[Constant Variable Name].csv**
-
-csv file for constant variables of size [#grid].
-
-- **crd.csv**
-
-Coordinate of all grids. First Column is latitude and second column is longitude. Each row refers a grid.
-
-### 2. Statistics folder
-
-Stored statistics of variables in order to do data normalization during training. Named as:
-- Time dependent variables-> [variable name].csv
-- Constant variables-> const_[variable name].csv
-
-Each file wrote four statistics of variable:
-- 90 percentile
-- 10 percentile
-- mean
-- std
-
-During training we normalize data by (data - mean) / std
-
-### 3. Subset folder
-Subset refers to a subset of grids from the complete dataset (CONUS or Global). For example, a subset only contains grids in Pennsylvania. All subsets (including the CONUS or Global dataset) will have a *[subset name].csv* file in the *Subset* folder. *[subset name].csv* is wrote as:
-- line 1 -> root dataset
-- line 2 - end -> indexs of subset grids in rootset (start from 1)
-
-If the index is -1 means all grid, from example CONUS dataset.
-
-### 4. Variable folder
-Stored csv files contains a list of variables. Used as input to training code. Time-dependent variables and constant variables should be stored seperately. For example:
-- varLst.csv -> a list of time-dependent variables used as training predictors.
-- varLst.csv -> a list of constant variables used as training predictors.
+This code contains deep learning code used to modeling hydrologic systems, from soil moisture to streamflow, from projection to forecast.
+
+This released code depends on our hydroDL repository, please follow our original github repository where we will release new updates occasionally
+https://github.com/mhpi/hydroDL
+# Citations
+
+If you find our code to be useful, please cite the following papers:
+
+Feng, DP., Lawson, K., and CP. Shen, Mitigating prediction error of deep learning streamflow models in large data-sparse regions with ensemble modeling and soft data, Geophysical Research Letters (2021, Accepted) arXiv preprint https://arxiv.org/abs/2011.13380
+
+Feng, DP, K. Fang and CP. Shen, Enhancing streamflow forecast and extracting insights using continental-scale long-short term memory networks with data integration, Water Resources Research (2020), https://doi.org/10.1029/2019WR026793
+
+Shen, CP., A trans-disciplinary review of deep learning research and its relevance for water resources scientists, Water Resources Research. 54(11), 8558-8593, doi: 10.1029/2018WR022643 (2018) https://doi.org/10.1029/2018WR022643
+
+Major code contributor: Dapeng Feng (PhD Student, Penn State) and Kuai Fang (PhD., Penn State)
+
+# Examples
+The environment we are using is shown as the file `repoenv.yml`. To create the same conda environment, please run:
+ ```Shell
+conda env create -f repoenv.yml
+```
+Activate the installed environment before running the code:
+ ```Shell
+conda activate mhpihydrodl
+```
+You can also use this `Environment Setup_Tutorial.pdf` document as a reference to set up your environment and solve some frequently encountered questions.
+There may be a small compatibility issue with our code when using very high pyTorch version. Welcome to contact us if you find any issue not able to solve or bug.
+
+
+Several examples related to the above papers are presented here. **Click the title link** to see each example.
+## [1.Train a LSTM data integration model to make streamflow forecast](example/StreamflowExample-DI.py)
+The dataset used is NCAR CAMELS dataset. Download CAMELS following [this link](https://ral.ucar.edu/solutions/products/camels).
+Please download both forcing, observation data `CAMELS time series meteorology, observed flow, meta data (.zip)` and basin attributes `CAMELS Attributes (.zip)`.
+Put two unzipped folders under the same directory, like `your/path/to/Camels/basin_timeseries_v1p2_metForcing_obsFlow`, and `your/path/to/Camels/camels_attributes_v2.0`. Set the directory path `your/path/to/Camels`
+as the variable `rootDatabase` inside the code later.
+
+Computational benchmark: training of CAMELS data (w/ or w/o data integration) with 671 basins, 10 years, 300 epochs, in ~1 hour with GPU.
+
+Related papers:
+Feng et al. (2020). [Enhancing streamflow forecast and extracting insights using long‐short term memory networks with data integration at continental scales](https://doi.org/10.1029/2019WR026793). Water Resources Research.
+
+## [2.Train LSTM and CNN-LSTM models for prediction in ungauged regions](example/PUR/trainPUR-Reg.py)
+The dataset used is also NCAR CAMELS. Follow the instructions in the first example above to download and unzip the dataset. Use [this code](example/PUR/testPUR-Reg.py) to test your saved models after training finished.
+
+Related papers:
+Feng et al. (2021, Accepted). Mitigating prediction error of deep learning streamflow models in large data-sparse regions with ensemble modeling and soft data. Geophysical Research Letters.
+Feng et al. (2020). [Enhancing streamflow forecast and extracting insights using long‐short term memory networks with data integration at continental scales](https://doi.org/10.1029/2019WR026793). Water Resources Research.
+
+## [3.Train a LSTM model to learn SMAP soil moisture](example/demo-LSTM-Tutorial.ipynb)
+The example dataset is embedded in this repo and can be found [here](example/data).
+You can also use [this script](example/train-lstm.py) to train model if you don't want to work with Jupyter Notebook.
+
+Related papers:
+Fang et al. (2017), [Prolongation of SMAP to Spatio-temporally Seamless Coverage of Continental US Using a Deep Learning Neural Network](https://agupubs.onlinelibrary.wiley.com/doi/full/10.1002/2017GL075619), Geophysical Research Letters.
+
+## [4.Estimate uncertainty of a LSTM network ](example/train-lstm-mca.py)
+Related papers:
+Fang et al. (2020). [Evaluating the potential and challenges of an uncertainty quantification method for long short-term memory models for soil moisture predictions](https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2020WR028095), Water Resources Research.
+# License
+Non-Commercial Software License Agreement
+
+By downloading the hydroDL software (the “Software”) you agree to
+the following terms of use:
+Copyright (c) 2020, The Pennsylvania State University (“PSU”). All rights reserved.
+
+1. PSU hereby grants to you a perpetual, nonexclusive and worldwide right, privilege and
+license to use, reproduce, modify, display, and create derivative works of Software for all
+non-commercial purposes only. You may not use Software for commercial purposes without
+prior written consent from PSU. Queries regarding commercial licensing should be directed
+to The Office of Technology Management at 814.865.6277 or otminfo@psu.edu.
+2. Neither the name of the copyright holder nor the names of its contributors may be used
+to endorse or promote products derived from this software without specific prior written
+permission.
+3. This software is provided for non-commercial use only.
+4. Redistribution and use in source and binary forms, with or without modification, are
+permitted provided that redistributions must reproduce the above copyright notice, license,
+list of conditions and the following disclaimer in the documentation and/or other materials
+provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
diff --git a/example/.ipynb_checkpoints/demo-temporal-test-checkpoint.ipynb b/example/.ipynb_checkpoints/demo-temporal-test-checkpoint.ipynb
index 162a0f0..22c4bd5 100644
--- a/example/.ipynb_checkpoints/demo-temporal-test-checkpoint.ipynb
+++ b/example/.ipynb_checkpoints/demo-temporal-test-checkpoint.ipynb
@@ -26,7 +26,7 @@
"text": [
"loading package hydroDL\n",
"/home/kxf227/work/GitHUB/pyRnnSMAP/example/data/Subset/CONUSv4f1.csv\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/SMAP_AM.csv 0.04537510871887207\n"
+ "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/SMAP_AM.csv 0.043489694595336914\n"
]
}
],
@@ -62,13 +62,13 @@
"output_type": "stream",
"text": [
"/home/kxf227/work/GitHUB/pyRnnSMAP/example/data/Subset/CONUSv4f1.csv\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/APCP_FORA.csv 0.044591665267944336\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/DLWRF_FORA.csv 0.052686452865600586\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/DSWRF_FORA.csv 0.050998687744140625\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/TMP_2_FORA.csv 0.051717281341552734\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/SPFH_2_FORA.csv 0.05404353141784668\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/VGRD_10_FORA.csv 0.051822662353515625\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/UGRD_10_FORA.csv 0.0521092414855957\n"
+ "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/APCP_FORA.csv 0.04564547538757324\n",
+ "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/DLWRF_FORA.csv 0.05148744583129883\n",
+ "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/DSWRF_FORA.csv 0.051079750061035156\n",
+ "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/TMP_2_FORA.csv 0.05147600173950195\n",
+ "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/SPFH_2_FORA.csv 0.05448579788208008\n",
+ "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/VGRD_10_FORA.csv 0.05189824104309082\n",
+ "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/UGRD_10_FORA.csv 0.05310535430908203\n"
]
}
],
@@ -874,7 +874,7 @@
{
"data": {
"text/html": [
- ""
+ ""
],
"text/plain": [
""
diff --git a/example/PUR/testPUR-Reg.py b/example/PUR/testPUR-Reg.py
new file mode 100644
index 0000000..7b525b5
--- /dev/null
+++ b/example/PUR/testPUR-Reg.py
@@ -0,0 +1,295 @@
+import sys
+sys.path.append('../')
+from hydroDL import master
+from hydroDL.post import plot, stat
+import matplotlib.pyplot as plt
+from hydroDL.data import camels
+from hydroDL.master import loadModel
+from hydroDL.model import train
+
+import numpy as np
+import pandas as pd
+import torch
+import json
+import os
+import random
+
+
+interfaceOpt = 1
+# set it the same as which you used to train your model
+# ==1 default, the recommended and more interpretable version
+# ==0 the "pro" version
+
+# Define root directory of database and output
+# Modify this based on your own location of CAMELS dataset and saved models
+
+rootDatabase = os.path.join(os.path.sep, 'scratch', 'Camels') # CAMELS dataset root directory
+camels.initcamels(rootDatabase) # initialize three camels module-scope variables in camels.py: dirDB, gageDict, statDict
+
+rootOut = os.path.join(os.path.sep, 'data', 'rnnStreamflow') # Model output root directory
+
+# The directory you defined in training to save the model under the above rootOut
+exp_name='PUR'
+exp_disp='Testrun'
+save_path = os.path.join(rootOut, exp_name, exp_disp)
+
+random.seed(159654)
+# this random is only used for fractional FDC scenarios and
+# to sample which basins in the target region have FDCs.
+
+# same as training, get the 7 regions basin ID for testing
+gageinfo = camels.gageDict
+hucinfo = gageinfo['huc']
+gageid = gageinfo['id']
+# get the id list of each region
+regionID = list()
+regionNum = list()
+regionDivide = [ [1,2], [3,6], [4,5,7], [9,10], [8,11,12,13], [14,15,16,18], [17] ] # seven regions
+for ii in range(len(regionDivide)):
+ tempcomb = regionDivide[ii]
+ tempregid = list()
+ for ih in tempcomb:
+ tempid = gageid[hucinfo==ih].tolist()
+ tempregid = tempregid + tempid
+ regionID.append(tempregid)
+ regionNum.append(len(tempregid))
+
+
+# test trained models
+testgpuid = 0 # which gpu used for testing
+torch.cuda.set_device(testgpuid)
+
+# # test models ran by different random seeds.
+# # final reported results are the mean of predictions from different seeds
+# seedid = [159654, 109958, 257886, 142365, 229837, 588859]
+seedid = [159654] # take this seed as an example
+
+gageinfo = camels.gageDict
+gageid = gageinfo['id']
+subName = 'Sub'
+tRange = [19951001, 20051001] # testing periods
+testEpoch = 300 # test the saved model after trained how many epochs
+FDCMig = True # option for Fractional FDC experiments, migrating 1/3 or 1/10 FDCs to all basins in the target region
+FDCrange = [19851001, 19951001]
+FDCstr = str(FDCrange[0])+'-'+str(FDCrange[1])
+
+expName = 'Full' # testing full-attribute model as an example. Could be 'Full', 'Noattr', '5attr'
+caseLst = ['-'.join(['Reg-85-95', subName, expName])] # PUR: 'Reg-85-95-Sub-Full'
+caseLst.append('-'.join(['Reg-85-95', subName, expName, 'FDC']) + FDCstr) # PUR with FDC: 'Reg-85-95-Sub-Full-FDC' + LCTstr
+
+# samFrac = [1/3, 1/10] # Fractional FDCs available in the target region
+samFrac = [1/3]
+migOptLst = [False, False] # the list indicating if it's migration experiment for each one in caseLst
+if FDCMig == True:
+ for im in range(len(samFrac)):
+ caseLst.append('-'.join(['Reg-85-95', subName, expName, 'FDC']) + FDCstr)
+ migOptLst.append(True)
+# caseLst summarizes all the experiment directories needed for testing
+
+# Get the randomly sampled basin ID in the target region that have FDCs and save to file for the future use
+# the sampled basin should be the same for different ensemble members
+# this part only needs to be ran once to generate sample file. The following section will read the saved file
+sampleIndLst = list()
+for ir in range(len(regionID)):
+ testBasin = regionID[ir]
+ sampNum = round(1/3 * len(testBasin)) # or 1/10
+ sampleIn = random.sample(range(0, len(testBasin)), sampNum)
+ sampleIndLst.append(sampleIn)
+samLstFile = os.path.join(save_path, 'samp103Lst.json') # or 'samp110Lst.json'
+with open(samLstFile, 'w') as fp:
+ json.dump(sampleIndLst, fp, indent=4)
+
+
+# Load the sample Ind
+indfileLst = ['samp103Lst.json'] # ['samp103Lst.json', 'samp110Lst.json']
+sampleInLstAll = list()
+for ii in range(len(indfileLst)):
+ samLstFile = os.path.join(save_path, indfileLst[ii])
+ with open(samLstFile, 'r') as fp:
+ tempind = json.load(fp)
+ sampleInLstAll.append(tempind)
+
+for iEns in range(len(seedid)): #test trained models with different seeds
+ tempseed = seedid[iEns]
+ predtempLst = []
+ regcount = 0
+
+ # for iT in range(len(regionID)): # test all the 7 regions
+ for iT in range(0, 1): # take region 1 as an example
+ testBasin = regionID[iT] # testing basins
+ testInd = [gageid.tolist().index(x) for x in testBasin]
+ trainBasin = list(set(gageid.tolist()) - set(testBasin))
+ trainInd = [gageid.tolist().index(x) for x in trainBasin]
+ testregdic = 'Reg-'+str(iT+1)+'-Num'+str(regionNum[iT])
+
+ # Migrate FDC for fractional experiment based on the nearest distance
+ if FDCMig == True:
+ FDCList = []
+ testlat = gageinfo['lat'][testInd]
+ testlon = gageinfo['lon'][testInd]
+ for iF in range(len(samFrac)):
+ sampleInLst = sampleInLstAll[iF]
+ samplelat = testlat[sampleInLst[iT]]
+ samplelon = testlon[sampleInLst[iT]]
+ nearID = list()
+ # calculate distances to the gages with FDC available
+ # and identify using the FDC of which gage for each test basin
+ for ii in range(len(testlat)):
+ dist = np.sqrt((samplelat-testlat[ii])**2 + (samplelon-testlon[ii])**2)
+ nearID.append(np.argmin(dist))
+ FDCLS = gageid[testInd][sampleInLst[iT]][nearID].tolist()
+ FDCList.append(FDCLS)
+
+ outLst = [os.path.join(save_path, str(tempseed), testregdic, x) for x in caseLst]
+ # all the directories to test in this list
+
+ icount = 0
+ imig = 0
+ for out in outLst:
+ # testing sequence: LSTM, LSTM with FDC, LSTM with fractional FDC migration
+ if interfaceOpt == 1:
+ # load testing data
+ mDict = master.readMasterFile(out)
+ optData = mDict['data']
+ df = camels.DataframeCamels(
+ subset=testBasin, tRange=tRange)
+ x = df.getDataTs(
+ varLst=optData['varT'],
+ doNorm=False,
+ rmNan=False)
+ obs = df.getDataObs(
+ doNorm=False,
+ rmNan=False,
+ basinnorm=False)
+ c = df.getDataConst(
+ varLst=optData['varC'],
+ doNorm=False,
+ rmNan=False)
+
+ # do normalization and remove nan
+ # load the saved statDict
+ statFile = os.path.join(out, 'statDict.json')
+ with open(statFile, 'r') as fp:
+ statDict = json.load(fp)
+ seriesvarLst = optData['varT']
+ climateList = optData['varC']
+ attr_norm = camels.transNormbyDic(c, climateList, statDict, toNorm=True)
+ attr_norm[np.isnan(attr_norm)] = 0.0
+ xTest = camels.transNormbyDic(x, seriesvarLst, statDict, toNorm=True)
+ xTest[np.isnan(xTest)] = 0.0
+ if attr_norm.size == 0: # [], no-attribute case
+ attrs = None
+ else:
+ attrs = attr_norm
+
+
+ if optData['lckernel'] is not None:
+ if migOptLst[icount] is True:
+ # the case migrating FDCs
+ dffdc = camels.DataframeCamels(subset=FDCList[imig], tRange=optData['lckernel'])
+ imig = imig+1
+ else:
+ dffdc = camels.DataframeCamels(subset=testBasin, tRange=optData['lckernel'])
+ datatemp = dffdc.getDataObs(
+ doNorm=False, rmNan=False, basinnorm=True)
+ # normalize data
+ dadata = camels.transNormbyDic(datatemp, 'runoff', statDict, toNorm=True)
+ dadata = np.squeeze(dadata) # dim Ngrid*Nday
+ fdcdata = master.master.calFDC(dadata)
+ print('FDC was calculated and used!')
+ xIn = (xTest, fdcdata)
+ else:
+ xIn = xTest
+
+ # load and forward the model for testing
+ testmodel = loadModel(out, epoch=testEpoch)
+ filePathLst = master.master.namePred(
+ out, tRange, 'All', epoch=testEpoch) # prepare the name of csv files to save testing results
+ train.testModel(
+ testmodel, xIn, c=attrs, filePathLst=filePathLst)
+ # read out predictions
+ dataPred = np.ndarray([obs.shape[0], obs.shape[1], len(filePathLst)])
+ for k in range(len(filePathLst)):
+ filePath = filePathLst[k]
+ dataPred[:, :, k] = pd.read_csv(
+ filePath, dtype=np.float, header=None).values
+ # transform back to the original observation
+ temppred = camels.transNormbyDic(dataPred, 'runoff', statDict, toNorm=False)
+ pred = camels.basinNorm(temppred, np.array(testBasin), toNorm=False)
+
+ elif interfaceOpt == 0:
+ if migOptLst[icount] is True:
+ # for FDC migration case
+ df, pred, obs = master.test(out, tRange=tRange, subset=testBasin, basinnorm=True, epoch=testEpoch,
+ reTest=True, FDCgage=FDCList[imig])
+ imig = imig + 1
+ else:
+ # for other ordinary cases
+ df, pred, obs = master.test(out, tRange=tRange, subset=testBasin, basinnorm=True, epoch=testEpoch,
+ reTest=True)
+
+ ## change the units ft3/s to m3/s
+ obs = obs*0.0283168
+ pred = pred*0.0283168
+
+ # concatenate results in different regions to one array
+ # and save the array of different experiments to a list
+ if regcount == 0:
+ predtempLst.append(pred)
+ else:
+ predtempLst[icount] = np.concatenate([predtempLst[icount], pred], axis=0)
+ icount = icount + 1
+ if regcount == 0:
+ obsAll = obs
+ else:
+ obsAll = np.concatenate([obsAll, obs], axis=0)
+ regcount = regcount+1
+
+ # concatenate results of different seeds to the third dim of array
+ if iEns == 0:
+ predLst = predtempLst
+ else:
+ for ii in range(len(outLst)):
+ predLst[ii] = np.concatenate([predLst[ii], predtempLst[ii]], axis=2)
+ # predLst: List of all experiments with shape: Ntime*Nbasin*Nensemble
+
+# get the ensemble mean from simulations of different seeds
+ensLst = []
+for ii in range(len(outLst)):
+ temp = np.nanmean(predLst[ii], axis=2, keepdims=True)
+ ensLst.append(temp)
+
+
+# plot boxplots for different experiments
+statDictLst = [stat.statError(x.squeeze(), obsAll.squeeze()) for x in ensLst]
+keyLst=['NSE', 'KGE'] # which metric to show
+dataBox = list()
+for iS in range(len(keyLst)):
+ statStr = keyLst[iS]
+ temp = list()
+ for k in range(len(statDictLst)):
+ data = statDictLst[k][statStr]
+ data = data[~np.isnan(data)]
+ temp.append(data)
+ dataBox.append(temp)
+
+plt.rcParams['font.size'] = 14
+labelname = ['PUR', 'PUR-FDC', 'PUR-1/3FDC']
+xlabel = ['NSE', 'KGE']
+fig = plot.plotBoxFig(dataBox, xlabel, labelname, sharey=False, figsize=(6, 5))
+fig.patch.set_facecolor('white')
+fig.show()
+
+# save evaluation results
+outpath = os.path.join(save_path, 'TestResults', expName)
+if not os.path.isdir(outpath):
+ os.makedirs(outpath)
+
+EnsEvaFile = os.path.join(outpath, 'EnsEva'+str(testEpoch)+'.npy')
+np.save(EnsEvaFile, statDictLst)
+
+obsFile = os.path.join(outpath, 'obs.npy')
+np.save(obsFile, obsAll)
+
+predFile = os.path.join(outpath, 'pred'+str(testEpoch)+'.npy')
+np.save(predFile, predLst)
diff --git a/example/PUR/trainPUR-Reg.py b/example/PUR/trainPUR-Reg.py
new file mode 100644
index 0000000..7a2afea
--- /dev/null
+++ b/example/PUR/trainPUR-Reg.py
@@ -0,0 +1,289 @@
+import sys
+sys.path.append('../')
+from hydroDL import master
+from hydroDL.master import default
+from hydroDL.data import camels
+from hydroDL.model import rnn, crit, train
+
+
+import json
+import os
+import numpy as np
+import torch
+import random
+
+
+# Options for different interface
+interfaceOpt = 1
+# ==1 default, the improved and more interpretable version. It's easier to see the data flow, model setup and training
+# process. Recommended for most users.
+# ==0 the original "pro" version we used to run heavy jobs for the paper. It was later improved for clarity to obtain option 1.
+# Results are very similar for two options and have little difference in computational performance.
+
+Action = [1, 2]
+# Using Action options to control training different models
+# 1: Train Base LSTM PUR Models without integrating any soft info
+# 2: Train CNN-LSTM to integrate FDCs
+
+# Hyperparameters
+EPOCH = 300
+BATCH_SIZE=100
+RHO=365
+HIDDENSIZE=256
+saveEPOCH = 10 # save model for every "saveEPOCH" epochs
+Ttrain=[19851001, 19951001] # training period
+LCrange = [19851001, 19951001]
+
+# Define root directory of database and output
+# Modify this based on your own location of CAMELS dataset
+# Following the data download instruction in README file, you should organize the folders like
+# 'your/path/to/Camels/basin_timeseries_v1p2_metForcing_obsFlow' and 'your/path/to/Camels/camels_attributes_v2.0'
+# Then 'rootDatabase' here should be 'your/path/to/Camels'
+# You can also define the database directory in hydroDL/__init__.py by modifying pathCamels['DB'] variable
+
+rootDatabase = os.path.join(os.path.sep, 'scratch', 'Camels') # CAMELS dataset root directory
+camels.initcamels(rootDatabase) # initialize three camels module-scope variables in camels.py: dirDB, gageDict, statDict
+
+rootOut = os.path.join(os.path.sep, 'data', 'rnnStreamflow') # Model output root directory
+
+# define random seed
+# seedid = [159654, 109958, 257886, 142365, 229837, 588859] # six seeds randomly generated using np.random.uniform
+seedid = 159654
+random.seed(seedid)
+torch.manual_seed(seedid)
+np.random.seed(seedid)
+torch.cuda.manual_seed(seedid)
+torch.backends.cudnn.deterministic = True
+torch.backends.cudnn.benchmark = False
+# Fix seed for training, change it to have different runnings with different seeds
+# We use the mean discharge of 6 runnings with different seeds to account for randomness
+
+
+# directory to save training results
+exp_name='PUR'
+exp_disp='Testrun'
+save_path = os.path.join(exp_name, exp_disp, str(seedid))
+
+# Divide CAMELS dataset into 7 PUR regions
+gageinfo = camels.gageDict
+hucinfo = gageinfo['huc']
+gageid = gageinfo['id']
+# get the id list of each region
+regionID = list()
+regionNum = list()
+regionDivide = [ [1,2], [3,6], [4,5,7], [9,10], [8,11,12,13], [14,15,16,18], [17] ] # seven regions
+for ii in range(len(regionDivide)):
+ tempcomb = regionDivide[ii]
+ tempregid = list()
+ for ih in tempcomb:
+ tempid = gageid[hucinfo==ih].tolist()
+ tempregid = tempregid + tempid
+ regionID.append(tempregid)
+ regionNum.append(len(tempregid))
+
+# Only for interfaceOpt=0 using multiple GPUs, not used here
+# cid = 0 # starting GPU id
+# gnum = 6 # how many GPUs you have
+
+# Region withheld as testing target. Take region 1 as an example.
+# Change this to 1,2,..,7 to run models for all 7 PUR regions in CONUS.
+testRegion = 1
+
+iexp = testRegion - 1 # index
+TestLS = regionID[iexp] # basin ID list for testing, should be withheld for training
+TrainLS = list(set(gageid.tolist()) - set(TestLS)) # basin ID for training
+gageDic = {'TrainID': TrainLS, 'TestID': TestLS}
+
+# prepare the training dataset
+optData = default.optDataCamels
+optData = default.update(optData, tRange=Ttrain, subset=TrainLS, lckernel=None, fdcopt=False)
+climateList = camels.attrLstSel + ['p_mean','pet_mean','p_seasonality','frac_snow','aridity','high_prec_freq',
+ 'high_prec_dur','low_prec_freq','low_prec_dur']
+# climateList = ['slope_mean', 'area_gages2', 'frac_forest', 'soil_porosity', 'max_water_content']
+# climateList = []
+optData = default.update(optData, varT=camels.forcingLst, varC= climateList)
+# varT: forcing used for training varC: attributes used for training
+
+# The above controls what attributes used for training, change varC for input-selection-ensemble
+# for 5 attributes model: climateList = ['slope_mean', 'area_gages2', 'frac_forest', 'soil_porosity', 'max_water_content']
+# for no-attribute model: varC = []
+# the input-selection ensemble represents using the mean prediction of full, 5-attr and no-attr models,
+# in total the mean of 3(different attributes)*6(different random seeds) = 18 models
+
+if interfaceOpt == 1:
+# read data from CAMELS dataset
+ df = camels.DataframeCamels(
+ subset=optData['subset'], tRange=optData['tRange'])
+ x = df.getDataTs(
+ varLst=optData['varT'],
+ doNorm=False,
+ rmNan=False)
+ y = df.getDataObs(
+ doNorm=False,
+ rmNan=False,
+ basinnorm=True)
+ # "basinnorm = True" will call camels.basinNorm() on the original discharge data. This will transform discharge
+ # from ft3/s to mm/day and then divided by mean precip to be dimensionless. output = discharge/(area*mean_precip)
+ c = df.getDataConst(
+ varLst=optData['varC'],
+ doNorm=False,
+ rmNan=False)
+
+ # process, do normalization and remove nan
+ series_data = np.concatenate([x, y], axis=2)
+ seriesvarLst = camels.forcingLst + ['runoff']
+ # calculate statistics for normalization and save to a dictionary
+ statDict = camels.getStatDic(attrLst=climateList, attrdata=c, seriesLst=seriesvarLst, seriesdata=series_data)
+ # normalize
+ attr_norm = camels.transNormbyDic(c, climateList, statDict, toNorm=True)
+ attr_norm[np.isnan(attr_norm)] = 0.0
+ series_norm = camels.transNormbyDic(series_data, seriesvarLst, statDict, toNorm=True)
+
+ # prepare the inputs
+ xTrain = series_norm[:,:,:-1] # forcing, not include obs
+ xTrain[np.isnan(xTrain)] = 0.0
+ yTrain = np.expand_dims(series_norm[:,:,-1], 2)
+
+ if attr_norm.size == 0: # [], no-attribute case
+ attrs = None
+ Nx = xTrain.shape[-1]
+ else:
+ # with attributes
+ attrs=attr_norm
+ Nx = xTrain.shape[-1] + attrs.shape[-1]
+ Ny = yTrain.shape[-1]
+
+# define loss function
+optLoss = default.optLossRMSE
+lossFun = crit.RmseLoss()
+# configuration for training
+optTrain = default.update(default.optTrainCamels, miniBatch=[BATCH_SIZE, RHO], nEpoch=EPOCH, saveEpoch=saveEPOCH, seed=seedid)
+hucdic = 'Reg-'+str(iexp+1)+'-Num'+str(regionNum[iexp])
+
+if 1 in Action:
+# Train base LSTM PUR model
+ out = os.path.join(rootOut, save_path, hucdic,'Reg-85-95-Sub-Full')
+ # out = os.path.join(rootOut, save_path, hucdic,'Reg-85-95-Sub-5attr')
+ # out = os.path.join(rootOut, save_path, hucdic,'Reg-85-95-Sub-Noattr')
+ if not os.path.isdir(out):
+ os.makedirs(out)
+ # log training gage information
+ gageFile = os.path.join(out, 'gage.json')
+ with open(gageFile, 'w') as fp:
+ json.dump(gageDic, fp, indent=4)
+ # define model config
+ optModel = default.update(default.optLstm, name='hydroDL.model.rnn.CudnnLstmModel', hiddenSize=HIDDENSIZE)
+
+ if interfaceOpt == 1:
+ # define, load and train model
+ optModel = default.update(optModel, nx=Nx, ny=Ny)
+ model = rnn.CudnnLstmModel(nx=optModel['nx'], ny=optModel['ny'], hiddenSize=optModel['hiddenSize'])
+ # Wrap up all the training configurations to one dictionary in order to save into "out" folder
+ masterDict = master.wrapMaster(out, optData, optModel, optLoss, optTrain)
+ master.writeMasterFile(masterDict)
+ # log statistics
+ statFile = os.path.join(out, 'statDict.json')
+ with open(statFile, 'w') as fp:
+ json.dump(statDict, fp, indent=4)
+ # Train the model
+ trainedModel = train.trainModel(
+ model,
+ xTrain,
+ yTrain,
+ attrs,
+ lossFun,
+ nEpoch=EPOCH,
+ miniBatch=[BATCH_SIZE, RHO],
+ saveEpoch=saveEPOCH,
+ saveFolder=out)
+
+ if interfaceOpt == 0:
+ # Only need to pass the wrapped configuration dict 'masterDict' for training
+ # nx, ny will be automatically updated later
+ masterDict = master.wrapMaster(out, optData, optModel, optLoss, optTrain)
+ master.train(masterDict)
+
+ ## Not used here.
+ ## A potential way to run batch jobs simultaneously in background through multiple GPUs and Linux screens.
+ ## To use this, must manually set the "pathCamels['DB']" in hydroDL/__init__.py as your own root path of CAMELS data.
+ ## Use the following master.runTrain() instead of the above master.train().
+ # master.runTrain(masterDict, cudaID=cid % gnum, screen='test-'+str(cid))
+ # cid = cid + 1
+
+if 2 in Action:
+# Train CNN-LSTM PUR model to integrate FDCs
+ # LCrange defines from which period to get synthetic FDC
+ LCTstr = str(LCrange[0]) + '-' + str(LCrange[1])
+ out = os.path.join(rootOut, save_path, hucdic, 'Reg-85-95-Sub-Full-FDC' + LCTstr)
+ # out = os.path.join(rootOut, save_path, hucdic, 'Reg-85-95-Sub-5attr-FDC' + LCTstr)
+ # out = os.path.join(rootOut, save_path, hucdic, 'Reg-85-95-Sub-Noattr-FDC' + LCTstr)
+ if not os.path.isdir(out):
+ os.makedirs(out)
+ gageFile = os.path.join(out, 'gage.json')
+ with open(gageFile, 'w') as fp:
+ json.dump(gageDic, fp, indent=4)
+
+ optData = default.update(default.optDataCamels, tRange=Ttrain, subset=TrainLS,
+ lckernel=LCrange, fdcopt=True)
+ # define model
+ convNKS = [(10, 5, 1), (5, 3, 3), (1, 1, 1)]
+ # CNN parameters for 3 layers: [(Number of kernels 10,5,1), (kernel size 5,3,3), (stride 1,1,1)]
+ optModel = default.update(default.optCnn1dLstm, name='hydroDL.model.rnn.CNN1dLCmodel',
+ hiddenSize=HIDDENSIZE, convNKS=convNKS, poolOpt=[2, 2, 1]) # use CNN-LSTM model
+
+ if interfaceOpt == 1:
+ # load data and create synthetic FDCs as inputs
+ dffdc = camels.DataframeCamels(subset=optData['subset'], tRange=optData['lckernel'])
+ datatemp = dffdc.getDataObs(
+ doNorm=False, rmNan=False, basinnorm=True)
+ # normalize data
+ dadata = camels.transNormbyDic(datatemp, 'runoff', statDict, toNorm=True)
+ dadata = np.squeeze(dadata) # dim Nbasin*Nday
+ fdcdata = master.master.calFDC(dadata)
+ print('FDC was calculated and used!')
+ xIn = (xTrain, fdcdata)
+
+ # load model
+ Nobs = xIn[1].shape[-1]
+ optModel = default.update(optModel, nx=Nx, ny=Ny, nobs=Nobs) # update input dims
+ convpara = optModel['convNKS']
+
+ model = rnn.CNN1dLCmodel(
+ nx=optModel['nx'],
+ ny=optModel['ny'],
+ nobs=optModel['nobs'],
+ hiddenSize=optModel['hiddenSize'],
+ nkernel=convpara[0],
+ kernelSize=convpara[1],
+ stride=convpara[2],
+ poolOpt=optModel['poolOpt'])
+ print('CNN1d Local calibartion Kernel is used!')
+
+ # Wrap up all the training configurations to one dictionary in order to save into "out" folder
+ masterDict = master.wrapMaster(out, optData, optModel, optLoss, optTrain)
+ master.writeMasterFile(masterDict)
+ # log statistics
+ statFile = os.path.join(out, 'statDict.json')
+ with open(statFile, 'w') as fp:
+ json.dump(statDict, fp, indent=4)
+
+ # Train the model
+ trainedModel = train.trainModel(
+ model,
+ xIn, # need to well defined
+ yTrain,
+ attrs,
+ lossFun,
+ nEpoch=EPOCH,
+ miniBatch=[BATCH_SIZE, RHO],
+ saveEpoch=saveEPOCH,
+ saveFolder=out)
+
+ if interfaceOpt == 0:
+ # Only need to pass the wrapped configuration 'masterDict' for training
+ # nx, ny, nobs will be automatically updated later
+ masterDict = master.wrapMaster(out, optData, optModel, optLoss, optTrain)
+ master.train(masterDict) # train model
+
+ # master.runTrain(masterDict, cudaID=cid % gnum, screen='test-'+str(cid))
+ # cid = cid + 1
diff --git a/example/StreamflowExample-DI.py b/example/StreamflowExample-DI.py
new file mode 100644
index 0000000..ecdf089
--- /dev/null
+++ b/example/StreamflowExample-DI.py
@@ -0,0 +1,399 @@
+import sys
+sys.path.append('../')
+from hydroDL import master, utils
+from hydroDL.master import default, loadModel
+from hydroDL.post import plot, stat
+import matplotlib.pyplot as plt
+from hydroDL.data import camels
+from hydroDL.model import rnn, crit, train
+
+import numpy as np
+import pandas as pd
+import os
+import torch
+import random
+import datetime as dt
+import json
+
+# Options for different interface
+interfaceOpt = 1
+# ==1 default, the recommended and more interpretable version with clear data and training flow. We improved the
+# original one to explicitly load and process data, set up model and loss, and train the model.
+# ==0, the original "pro" version to train jobs based on the defined configuration dictionary.
+# Results are very similar for two options.
+
+# Options for training and testing
+# 0: train base model without DI
+# 1: train DI model
+# 0,1: do both base and DI model
+# 2: test trained models
+Action = [0,1]
+# gpuid = 0
+# torch.cuda.set_device(gpuid)
+
+# Set hyperparameters
+EPOCH = 300
+BATCH_SIZE = 100
+RHO = 365
+HIDDENSIZE = 256
+saveEPOCH = 10 # save model for every "saveEPOCH" epochs
+Ttrain = [19851001, 19951001] # Training period
+
+# Fix random seed
+seedid = 111111
+random.seed(seedid)
+torch.manual_seed(seedid)
+np.random.seed(seedid)
+torch.cuda.manual_seed(seedid)
+torch.backends.cudnn.deterministic = True
+torch.backends.cudnn.benchmark = False
+# Change the seed to have different runnings.
+# We use the mean discharge of 6 runnings with different seeds to account for randomness and report results
+
+# Define root directory of database and output
+# Modify this based on your own location of CAMELS dataset.
+# Following the data download instruction in README file, you should organize the folders like
+# 'your/path/to/Camels/basin_timeseries_v1p2_metForcing_obsFlow' and 'your/path/to/Camels/camels_attributes_v2.0'
+# Then 'rootDatabase' here should be 'your/path/to/Camels'
+# You can also define the database directory in hydroDL/__init__.py by modifying pathCamels['DB'] variable
+rootDatabase = os.path.join(os.path.sep, 'scratch', 'Camels') # CAMELS dataset root directory: /scratch/Camels
+camels.initcamels(rootDatabase) # initialize three camels module-scope variables in camels.py: dirDB, gageDict, statDict
+
+rootOut = os.path.join(os.path.sep, 'data', 'rnnStreamflow') # Root directory to save training results: /data/rnnStreamflow
+
+# Define all the configurations into dictionary variables
+# three purposes using these dictionaries. 1. saved as configuration logging file. 2. for future testing. 3. can also
+# be used to directly train the model when interfaceOpt == 0
+
+# define dataset
+# default module stores default configurations, using update to change the config
+optData = default.optDataCamels
+optData = default.update(optData, varT=camels.forcingLst, varC=camels.attrLstSel, tRange=Ttrain) # Update the training period
+
+if (interfaceOpt == 1) and (2 not in Action):
+ # load training data explicitly for the interpretable interface. Notice: if you want to apply our codes to your own
+ # dataset, here is the place you can replace data.
+ # read data from original CAMELS dataset
+ # df: CAMELS dataframe; x: forcings[nb,nt,nx]; y: streamflow obs[nb,nt,ny]; c:attributes[nb,nc]
+ # nb: number of basins, nt: number of time steps (in Ttrain), nx: number of time-dependent forcing variables
+ # ny: number of target variables, nc: number of constant attributes
+ df = camels.DataframeCamels(
+ subset=optData['subset'], tRange=optData['tRange'])
+ x = df.getDataTs(
+ varLst=optData['varT'],
+ doNorm=False,
+ rmNan=False)
+ y = df.getDataObs(
+ doNorm=False,
+ rmNan=False,
+ basinnorm=False)
+ # transform discharge from ft3/s to mm/day and then divided by mean precip to be dimensionless.
+ # output = discharge/(area*mean_precip)
+ # this can also be done by setting the above option "basinnorm = True" for df.getDataObs()
+ y_temp = camels.basinNorm(y, optData['subset'], toNorm=True)
+ c = df.getDataConst(
+ varLst=optData['varC'],
+ doNorm=False,
+ rmNan=False)
+
+ # process, do normalization and remove nan
+ series_data = np.concatenate([x, y_temp], axis=2)
+ seriesvarLst = camels.forcingLst + ['runoff']
+ # calculate statistics for norm and saved to a dictionary
+ statDict = camels.getStatDic(attrLst=camels.attrLstSel, attrdata=c, seriesLst=seriesvarLst, seriesdata=series_data)
+ # normalize
+ attr_norm = camels.transNormbyDic(c, camels.attrLstSel, statDict, toNorm=True)
+ attr_norm[np.isnan(attr_norm)] = 0.0
+ series_norm = camels.transNormbyDic(series_data, seriesvarLst, statDict, toNorm=True)
+
+ # prepare the inputs
+ xTrain = series_norm[:, :, :-1] # forcing, not include obs
+ xTrain[np.isnan(xTrain)] = 0.0
+ yTrain = np.expand_dims(series_norm[:, :, -1], 2)
+ attrs = attr_norm
+
+
+# define model and update configure
+if torch.cuda.is_available():
+ optModel = default.optLstm
+else:
+ optModel = default.update(
+ default.optLstm,
+ name='hydroDL.model.rnn.CpuLstmModel')
+optModel = default.update(default.optLstm, hiddenSize=HIDDENSIZE)
+# define loss function
+optLoss = default.optLossRMSE
+# define training options
+optTrain = default.update(default.optTrainCamels, miniBatch=[BATCH_SIZE, RHO], nEpoch=EPOCH, saveEpoch=saveEPOCH, seed=seedid)
+
+# define output folder for model results
+exp_name = 'CAMELSDemo'
+exp_disp = 'TestRun'
+save_path = os.path.join(exp_name, exp_disp, \
+ 'epochs{}_batch{}_rho{}_hiddensize{}_Tstart{}_Tend{}'.format(optTrain['nEpoch'], optTrain['miniBatch'][0],
+ optTrain['miniBatch'][1],
+ optModel['hiddenSize'],
+ optData['tRange'][0], optData['tRange'][1]))
+
+# Train the base model without data integration
+if 0 in Action:
+ out = os.path.join(rootOut, save_path, 'All-85-95') # output folder to save results
+ # Wrap up all the training configurations to one dictionary in order to save into "out" folder
+ masterDict = master.wrapMaster(out, optData, optModel, optLoss, optTrain)
+ if interfaceOpt == 1: # use the more interpretable version interface
+ nx = xTrain.shape[-1] + attrs.shape[-1] # update nx, nx = nx + nc
+ ny = yTrain.shape[-1]
+ # load model for training
+ if torch.cuda.is_available():
+ model = rnn.CudnnLstmModel(nx=nx, ny=ny, hiddenSize=HIDDENSIZE)
+ else:
+ model = rnn.CpuLstmModel(nx=nx, ny=ny, hiddenSize=HIDDENSIZE)
+ optModel = default.update(optModel, nx=nx, ny=ny)
+ # the loaded model should be consistent with the 'name' in optModel Dict above for logging purpose
+ lossFun = crit.RmseLoss()
+ # the loaded loss should be consistent with the 'name' in optLoss Dict above for logging purpose
+ # update and write the dictionary variable to out folder for logging and future testing
+ masterDict = master.wrapMaster(out, optData, optModel, optLoss, optTrain)
+ master.writeMasterFile(masterDict)
+ # log statistics
+ statFile = os.path.join(out, 'statDict.json')
+ with open(statFile, 'w') as fp:
+ json.dump(statDict, fp, indent=4)
+ # train model
+ model = train.trainModel(
+ model,
+ xTrain,
+ yTrain,
+ attrs,
+ lossFun,
+ nEpoch=EPOCH,
+ miniBatch=[BATCH_SIZE, RHO],
+ saveEpoch=saveEPOCH,
+ saveFolder=out)
+ elif interfaceOpt==0: # directly train the model using dictionary variable
+ master.train(masterDict)
+
+
+# Train DI model
+if 1 in Action:
+ nDayLst = [1,3]
+ for nDay in nDayLst:
+ # nDay: previous Nth day observation to integrate
+ # update parameter "daObs" for data dictionary variable
+ optData = default.update(default.optDataCamels, daObs=nDay)
+ # define output folder for DI models
+ out = os.path.join(rootOut, save_path, 'All-85-95-DI' + str(nDay))
+ masterDict = master.wrapMaster(out, optData, optModel, optLoss, optTrain)
+ if interfaceOpt==1:
+ # optData['daObs'] != 0, load previous observation data to integrate
+ sd = utils.time.t2dt(
+ optData['tRange'][0]) - dt.timedelta(days=nDay)
+ ed = utils.time.t2dt(
+ optData['tRange'][1]) - dt.timedelta(days=nDay)
+ dfdi = camels.DataframeCamels(
+ subset=optData['subset'], tRange=[sd, ed])
+ datatemp = dfdi.getDataObs(
+ doNorm=False, rmNan=False, basinnorm=True) # 'basinnorm=True': output = discharge/(area*mean_precip)
+ # normalize data
+ dadata = camels.transNormbyDic(datatemp, 'runoff', statDict, toNorm=True)
+ dadata[np.where(np.isnan(dadata))] = 0.0
+
+ xIn = np.concatenate([xTrain, dadata], axis=2)
+ nx = xIn.shape[-1] + attrs.shape[-1] # update nx, nx = nx + nc
+ ny = yTrain.shape[-1]
+ # load model for training
+ if torch.cuda.is_available():
+ model = rnn.CudnnLstmModel(nx=nx, ny=ny, hiddenSize=HIDDENSIZE)
+ else:
+ model = rnn.CpuLstmModel(nx=nx, ny=ny, hiddenSize=HIDDENSIZE)
+ optModel = default.update(optModel, nx=nx, ny=ny)
+ lossFun = crit.RmseLoss()
+ # update and write dictionary variable to out folder for logging and future testing
+ masterDict = master.wrapMaster(out, optData, optModel, optLoss, optTrain)
+ master.writeMasterFile(masterDict)
+ # log statistics
+ statFile = os.path.join(out, 'statDict.json')
+ with open(statFile, 'w') as fp:
+ json.dump(statDict, fp, indent=4)
+ # train model
+ model = train.trainModel(
+ model,
+ xIn,
+ yTrain,
+ attrs,
+ lossFun,
+ nEpoch=EPOCH,
+ miniBatch=[BATCH_SIZE, RHO],
+ saveEpoch=saveEPOCH,
+ saveFolder=out)
+ elif interfaceOpt==0:
+ master.train(masterDict)
+
+# Test models
+if 2 in Action:
+ TestEPOCH = 300 # choose the model to test after trained "TestEPOCH" epoches
+ # generate a folder name list containing all the tested model output folders
+ caseLst = ['All-85-95']
+ nDayLst = [1, 3] # which DI models to test: DI(1), DI(3)
+ for nDay in nDayLst:
+ caseLst.append('All-85-95-DI' + str(nDay))
+ outLst = [os.path.join(rootOut, save_path, x) for x in caseLst] # outLst includes all the directories to test
+ subset = 'All' # 'All': use all the CAMELS gages to test; Or pass the gage list
+ tRange = [19951001, 20051001] # Testing period
+ testBatch = 100 # do batch forward to save GPU memory
+ predLst = list()
+ for out in outLst:
+ if interfaceOpt == 1: # use the more interpretable version interface
+ # load testing data
+ mDict = master.readMasterFile(out)
+ optData = mDict['data']
+ df = camels.DataframeCamels(
+ subset=subset, tRange=tRange)
+ x = df.getDataTs(
+ varLst=optData['varT'],
+ doNorm=False,
+ rmNan=False)
+ obs = df.getDataObs(
+ doNorm=False,
+ rmNan=False,
+ basinnorm=False)
+ c = df.getDataConst(
+ varLst=optData['varC'],
+ doNorm=False,
+ rmNan=False)
+
+ # do normalization and remove nan
+ # load the saved statDict to make sure using the same statistics as training data
+ statFile = os.path.join(out, 'statDict.json')
+ with open(statFile, 'r') as fp:
+ statDict = json.load(fp)
+ seriesvarLst = optData['varT']
+ attrLst = optData['varC']
+ attr_norm = camels.transNormbyDic(c, attrLst, statDict, toNorm=True)
+ attr_norm[np.isnan(attr_norm)] = 0.0
+ xTest = camels.transNormbyDic(x, seriesvarLst, statDict, toNorm=True)
+ xTest[np.isnan(xTest)] = 0.0
+ attrs = attr_norm
+
+ if optData['daObs'] > 0:
+ # optData['daObs'] != 0, load previous observation data to integrate
+ nDay = optData['daObs']
+ sd = utils.time.t2dt(
+ tRange[0]) - dt.timedelta(days=nDay)
+ ed = utils.time.t2dt(
+ tRange[1]) - dt.timedelta(days=nDay)
+ dfdi = camels.DataframeCamels(
+ subset=subset, tRange=[sd, ed])
+ datatemp = dfdi.getDataObs(
+ doNorm=False, rmNan=False, basinnorm=True) # 'basinnorm=True': output = discharge/(area*mean_precip)
+ # normalize data
+ dadata = camels.transNormbyDic(datatemp, 'runoff', statDict, toNorm=True)
+ dadata[np.where(np.isnan(dadata))] = 0.0
+ xIn = np.concatenate([xTest, dadata], axis=2)
+
+ else:
+ xIn = xTest
+
+ # load and forward the model for testing
+ testmodel = loadModel(out, epoch=TestEPOCH)
+ filePathLst = master.master.namePred(
+ out, tRange, 'All', epoch=TestEPOCH) # prepare the name of csv files to save testing results
+ train.testModel(
+ testmodel, xIn, c=attrs, batchSize=testBatch, filePathLst=filePathLst)
+ # read out predictions
+ dataPred = np.ndarray([obs.shape[0], obs.shape[1], len(filePathLst)])
+ for k in range(len(filePathLst)):
+ filePath = filePathLst[k]
+ dataPred[:, :, k] = pd.read_csv(
+ filePath, dtype=np.float, header=None).values
+ # transform back to the original observation
+ temppred = camels.transNormbyDic(dataPred, 'runoff', statDict, toNorm=False)
+ pred = camels.basinNorm(temppred, subset, toNorm=False)
+
+ elif interfaceOpt == 0: # only for models trained by the pro interface
+ df, pred, obs = master.test(out, tRange=tRange, subset=subset, batchSize=testBatch, basinnorm=True,
+ epoch=TestEPOCH, reTest=True)
+
+ # change the units ft3/s to m3/s
+ obs = obs * 0.0283168
+ pred = pred * 0.0283168
+ predLst.append(pred) # the prediction list for all the models
+
+ # calculate statistic metrics
+ statDictLst = [stat.statError(x.squeeze(), obs.squeeze()) for x in predLst]
+
+ # Show boxplots of the results
+ plt.rcParams['font.size'] = 14
+ keyLst = ['Bias', 'NSE', 'FLV', 'FHV']
+ dataBox = list()
+ for iS in range(len(keyLst)):
+ statStr = keyLst[iS]
+ temp = list()
+ for k in range(len(statDictLst)):
+ data = statDictLst[k][statStr]
+ data = data[~np.isnan(data)]
+ temp.append(data)
+ dataBox.append(temp)
+ labelname = ['LSTM']
+ for nDay in nDayLst:
+ labelname.append('DI(' + str(nDay) + ')')
+ xlabel = ['Bias ($\mathregular{m^3}$/s)', 'NSE', 'FLV(%)', 'FHV(%)']
+ fig = plot.plotBoxFig(dataBox, xlabel, labelname, sharey=False, figsize=(12, 5))
+ fig.patch.set_facecolor('white')
+ fig.show()
+ # plt.savefig(os.path.join(rootOut, save_path, "Boxplot.png"), dpi=500)
+
+ # Plot timeseries and locations
+ plt.rcParams['font.size'] = 12
+ # get Camels gages info
+ gageinfo = camels.gageDict
+ gagelat = gageinfo['lat']
+ gagelon = gageinfo['lon']
+ # randomly select 7 gages to plot
+ gageindex = np.random.randint(0, 671, size=7).tolist()
+ plat = gagelat[gageindex]
+ plon = gagelon[gageindex]
+ t = utils.time.tRange2Array(tRange)
+ fig, axes = plt.subplots(4,2, figsize=(12,10), constrained_layout=True)
+ axes = axes.flat
+ npred = 2 # plot the first two prediction: Base LSTM and DI(1)
+ subtitle = ['(a)', '(b)', '(c)', '(d)', '(e)', '(f)', '(g)', '(h)', '(k)', '(l)']
+ txt = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'k']
+ ylabel = 'Flow rate ($\mathregular{m^3}$/s)'
+ for k in range(len(gageindex)):
+ iGrid = gageindex[k]
+ yPlot = [obs[iGrid, :]]
+ for y in predLst[0:npred]:
+ yPlot.append(y[iGrid, :])
+ # get the NSE value of LSTM and DI(1) model
+ NSE_LSTM = str(round(statDictLst[0]['NSE'][iGrid], 2))
+ NSE_DI1 = str(round(statDictLst[1]['NSE'][iGrid], 2))
+ # plot time series
+ plot.plotTS(
+ t,
+ yPlot,
+ ax=axes[k],
+ cLst='kbrmg',
+ markerLst='---',
+ legLst=['USGS', 'LSTM: '+NSE_LSTM, 'DI(1): '+NSE_DI1], title=subtitle[k], linespec=['-',':',':'], ylabel=ylabel)
+ # plot gage location
+ plot.plotlocmap(plat, plon, ax=axes[-1], baclat=gagelat, baclon=gagelon, title=subtitle[-1], txtlabel=txt)
+ fig.patch.set_facecolor('white')
+ fig.show()
+ # plt.savefig(os.path.join(rootOut, save_path, "/Timeseries.png"), dpi=500)
+
+ # Plot NSE spatial patterns
+ gageinfo = camels.gageDict
+ gagelat = gageinfo['lat']
+ gagelon = gageinfo['lon']
+ nDayLst = [1, 3]
+ fig, axs = plt.subplots(3,1, figsize=(8,8), constrained_layout=True)
+ axs = axs.flat
+ data = statDictLst[0]['NSE']
+ plot.plotMap(data, ax=axs[0], lat=gagelat, lon=gagelon, title='(a) LSTM', cRange=[0.0, 1.0], shape=None)
+ data = statDictLst[1]['NSE']
+ plot.plotMap(data, ax=axs[1], lat=gagelat, lon=gagelon, title='(b) DI(1)', cRange=[0.0, 1.0], shape=None)
+ deltaNSE = statDictLst[1]['NSE'] - statDictLst[0]['NSE']
+ plot.plotMap(deltaNSE, ax=axs[2], lat=gagelat, lon=gagelon, title='(c) Delta NSE', shape=None)
+ fig.show()
+ # plt.savefig(os.path.join(rootOut, save_path, "/NSEPattern.png"), dpi=500)
diff --git a/example/data/CONUSv4f1/2015/APCP_FORA.csv b/example/data/CONUSv4f1/2015/APCP_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2015/DLWRF_FORA.csv b/example/data/CONUSv4f1/2015/DLWRF_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2015/DSWRF_FORA.csv b/example/data/CONUSv4f1/2015/DSWRF_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2015/SMAP_AM.csv b/example/data/CONUSv4f1/2015/SMAP_AM.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2015/SPFH_2_FORA.csv b/example/data/CONUSv4f1/2015/SPFH_2_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2015/TMP_2_FORA.csv b/example/data/CONUSv4f1/2015/TMP_2_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2015/UGRD_10_FORA.csv b/example/data/CONUSv4f1/2015/UGRD_10_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2015/VGRD_10_FORA.csv b/example/data/CONUSv4f1/2015/VGRD_10_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2015/time.csv b/example/data/CONUSv4f1/2015/time.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2015/timeStr.csv b/example/data/CONUSv4f1/2015/timeStr.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2016/APCP_FORA.csv b/example/data/CONUSv4f1/2016/APCP_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2016/DLWRF_FORA.csv b/example/data/CONUSv4f1/2016/DLWRF_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2016/DSWRF_FORA.csv b/example/data/CONUSv4f1/2016/DSWRF_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2016/SMAP_AM.csv b/example/data/CONUSv4f1/2016/SMAP_AM.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2016/SPFH_2_FORA.csv b/example/data/CONUSv4f1/2016/SPFH_2_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2016/TMP_2_FORA.csv b/example/data/CONUSv4f1/2016/TMP_2_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2016/UGRD_10_FORA.csv b/example/data/CONUSv4f1/2016/UGRD_10_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2016/VGRD_10_FORA.csv b/example/data/CONUSv4f1/2016/VGRD_10_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2016/time.csv b/example/data/CONUSv4f1/2016/time.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2016/timeStr.csv b/example/data/CONUSv4f1/2016/timeStr.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2017/APCP_FORA.csv b/example/data/CONUSv4f1/2017/APCP_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2017/DLWRF_FORA.csv b/example/data/CONUSv4f1/2017/DLWRF_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2017/DSWRF_FORA.csv b/example/data/CONUSv4f1/2017/DSWRF_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2017/SPFH_2_FORA.csv b/example/data/CONUSv4f1/2017/SPFH_2_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2017/TMP_2_FORA.csv b/example/data/CONUSv4f1/2017/TMP_2_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2017/UGRD_10_FORA.csv b/example/data/CONUSv4f1/2017/UGRD_10_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2017/VGRD_10_FORA.csv b/example/data/CONUSv4f1/2017/VGRD_10_FORA.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2017/time.csv b/example/data/CONUSv4f1/2017/time.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/2017/timeStr.csv b/example/data/CONUSv4f1/2017/timeStr.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/const/Bulk.csv b/example/data/CONUSv4f1/const/Bulk.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/const/Capa.csv b/example/data/CONUSv4f1/const/Capa.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/const/Clay.csv b/example/data/CONUSv4f1/const/Clay.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/const/NDVI.csv b/example/data/CONUSv4f1/const/NDVI.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/const/Sand.csv b/example/data/CONUSv4f1/const/Sand.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/const/Silt.csv b/example/data/CONUSv4f1/const/Silt.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/const/flag_albedo.csv b/example/data/CONUSv4f1/const/flag_albedo.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/const/flag_extraOrd.csv b/example/data/CONUSv4f1/const/flag_extraOrd.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/const/flag_landcover.csv b/example/data/CONUSv4f1/const/flag_landcover.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/const/flag_roughness.csv b/example/data/CONUSv4f1/const/flag_roughness.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/const/flag_vegDense.csv b/example/data/CONUSv4f1/const/flag_vegDense.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/const/flag_waterbody.csv b/example/data/CONUSv4f1/const/flag_waterbody.csv
old mode 100755
new mode 100644
diff --git a/example/data/CONUSv4f1/crd.csv b/example/data/CONUSv4f1/crd.csv
old mode 100755
new mode 100644
diff --git a/example/data/DATA.md b/example/data/DATA.md
new file mode 100644
index 0000000..b17eeea
--- /dev/null
+++ b/example/data/DATA.md
@@ -0,0 +1,83 @@
+# Database description
+## Database Structure
+```
+├── CONUS
+│ ├── 2000
+│ │ ├── [Variable-Name].csv
+│ │ ├── ...
+│ │ ├── timeStr.csv
+│ │ └── time.csv
+│ ├── ...
+│ ├── 2017
+│ │ └── ...
+│ ├── const
+│ │ ├── [Constant-Variable-Name].csv
+│ │ └── ...
+│ └── crd.csv
+├── CONUSv4f1
+│ └── ...
+├── Statistics
+│ ├── [Variable-Name]_stat.csv
+│ ├── ...
+│ ├── const_[Constant-Variable-Name]_stat.csv
+│ └── ...
+├── Subset
+│ ├── CONUS.csv
+│ └── CONUSv4f1.csv
+└── Variable
+ ├── varConstLst.csv
+ └── varLst.csv
+```
+### 1. Dataset folders (*CONUS* , *CONUSv4f1*)
+Data folder contains all data including both training and testing, time-dependent variables and constant variables.
+In example data structure, there are two dataset folders - *CONUS* and *CONUSv4f1*. Those data are saved in:
+
+ - **year/[Variable-Name].csv**:
+
+A csv file of size [#grid, #time], where each column is one grid and each row is one time step. This file saved data of a time-dependent variable of current year. For example, *CONUS/2010/SMAP_AM.csv* is SMAP data of 2002 on the CONUS.
+
+Most time-dependent varibles comes from NLDAS, which included two forcing product (FORA, FORB) and three simulations product land surface models (NOAH, MOS, VIC). Variables are named as *[variable]\_[product]\_[layer]*, and reference of variable can be found in [NLDAS document](https://hydro1.gesdisc.eosdis.nasa.gov/data/NLDAS/README.NLDAS2.pdf). For example, *SOILM_NOAH_0-10* refers to soil moisture product simulated by NOAH model at 0-10 cm.
+
+Other than NLDAS, SMAP data are also saved in same format but always used as target. In level 3 database, there are two SMAP csv files which are only available after 2015: *SMAP_AM.csv* and *SMAP_PM.csv*.
+
+-9999 refers to NaN.
+
+- **year/time.csv** & **timeStr.csv**
+
+Dates csv file of current year folder, of size [#date]. *time.csv* recorded Matlab datenum and *timeStr.csv* recorded date in format of yyyy-mm-dd.
+
+Notice that each year start from and end before April 1st. For example data in folder 2010 is actually data from 2010-04-01 to 2011-03-31. The reason is that SMAP launched at April 1st.
+
+- **const/[Constant Variable Name].csv**
+
+csv file for constant variables of size [#grid].
+
+- **crd.csv**
+
+Coordinate of all grids. First Column is latitude and second column is longitude. Each row refers a grid.
+
+### 2. Statistics folder
+
+Stored statistics of variables in order to do data normalization during training. Named as:
+- Time dependent variables-> [variable name].csv
+- Constant variables-> const_[variable name].csv
+
+Each file wrote four statistics of variable:
+- 90 percentile
+- 10 percentile
+- mean
+- std
+
+During training we normalize data by (data - mean) / std
+
+### 3. Subset folder
+Subset refers to a subset of grids from the complete dataset (CONUS or Global). For example, a subset only contains grids in Pennsylvania. All subsets (including the CONUS or Global dataset) will have a *[subset name].csv* file in the *Subset* folder. *[subset name].csv* is wrote as:
+- line 1 -> root dataset
+- line 2 - end -> indexs of subset grids in rootset (start from 1)
+
+If the index is -1 means all grid, from example CONUS dataset.
+
+### 4. Variable folder
+Stored csv files contains a list of variables. Used as input to training code. Time-dependent variables and constant variables should be stored seperately. For example:
+- varLst.csv -> a list of time-dependent variables used as training predictors.
+- varLst.csv -> a list of constant variables used as training predictors.
diff --git a/example/data/Statistics/APCP_FORA_stat.csv b/example/data/Statistics/APCP_FORA_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/DLWRF_FORA_stat.csv b/example/data/Statistics/DLWRF_FORA_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/DSWRF_FORA_stat.csv b/example/data/Statistics/DSWRF_FORA_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/SMAP_AM_stat.csv b/example/data/Statistics/SMAP_AM_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/SPFH_2_FORA_stat.csv b/example/data/Statistics/SPFH_2_FORA_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/TMP_2_FORA_stat.csv b/example/data/Statistics/TMP_2_FORA_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/UGRD_10_FORA_stat.csv b/example/data/Statistics/UGRD_10_FORA_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/VGRD_10_FORA_stat.csv b/example/data/Statistics/VGRD_10_FORA_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/const_Bulk_stat.csv b/example/data/Statistics/const_Bulk_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/const_Capa_stat.csv b/example/data/Statistics/const_Capa_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/const_Clay_stat.csv b/example/data/Statistics/const_Clay_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/const_NDVI_stat.csv b/example/data/Statistics/const_NDVI_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/const_Sand_stat.csv b/example/data/Statistics/const_Sand_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/const_Silt_stat.csv b/example/data/Statistics/const_Silt_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/const_flag_albedo_stat.csv b/example/data/Statistics/const_flag_albedo_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/const_flag_extraOrd_stat.csv b/example/data/Statistics/const_flag_extraOrd_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/const_flag_landcover_stat.csv b/example/data/Statistics/const_flag_landcover_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/const_flag_roughness_stat.csv b/example/data/Statistics/const_flag_roughness_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/const_flag_vegDense_stat.csv b/example/data/Statistics/const_flag_vegDense_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Statistics/const_flag_waterbody_stat.csv b/example/data/Statistics/const_flag_waterbody_stat.csv
old mode 100755
new mode 100644
diff --git a/example/data/Subset/CONUSv4f1.csv b/example/data/Subset/CONUSv4f1.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varConstLst.csv b/example/data/Variable/varConstLst.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varConstLst_Noah.csv b/example/data/Variable/varConstLst_Noah.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varLst.csv b/example/data/Variable/varLst.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varLst_APCP_rn1e0.csv b/example/data/Variable/varLst_APCP_rn1e0.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varLst_APCP_rn1e1.csv b/example/data/Variable/varLst_APCP_rn1e1.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varLst_APCP_rn2e0.csv b/example/data/Variable/varLst_APCP_rn2e0.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varLst_APCP_rn2e1.csv b/example/data/Variable/varLst_APCP_rn2e1.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varLst_APCP_rn3e1.csv b/example/data/Variable/varLst_APCP_rn3e1.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varLst_APCP_rn4e1.csv b/example/data/Variable/varLst_APCP_rn4e1.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varLst_APCP_rn5e1.csv b/example/data/Variable/varLst_APCP_rn5e1.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varLst_APCP_rn5e2.csv b/example/data/Variable/varLst_APCP_rn5e2.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varLst_Forcing.csv b/example/data/Variable/varLst_Forcing.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varLst_Forcing_noAPCP.csv b/example/data/Variable/varLst_Forcing_noAPCP.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varLst_Forcing_noSPFH.csv b/example/data/Variable/varLst_Forcing_noSPFH.csv
old mode 100755
new mode 100644
diff --git a/example/data/Variable/varLst_soilM.csv b/example/data/Variable/varLst_soilM.csv
old mode 100755
new mode 100644
diff --git a/example/demo-LSTM-Tutorial.ipynb b/example/demo-LSTM-Tutorial.ipynb
index 644744e..55e7277 100644
--- a/example/demo-LSTM-Tutorial.ipynb
+++ b/example/demo-LSTM-Tutorial.ipynb
@@ -114,7 +114,6 @@
{
"ename": "KeyboardInterrupt",
"evalue": "",
- "output_type": "error",
"traceback": [
"\u001b[1;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[1;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)",
@@ -124,7 +123,8 @@
"\u001b[1;32mC:\\pythonenvir\\lib\\site-packages\\torch\\tensor.py\u001b[0m in \u001b[0;36mbackward\u001b[1;34m(self, gradient, retain_graph, create_graph)\u001b[0m\n\u001b[0;32m 116\u001b[0m \u001b[0mproducts\u001b[0m\u001b[1;33m.\u001b[0m \u001b[0mDefaults\u001b[0m \u001b[0mto\u001b[0m\u001b[0;31m \u001b[0m\u001b[0;31m`\u001b[0m\u001b[0;31m`\u001b[0m\u001b[1;32mFalse\u001b[0m\u001b[0;31m`\u001b[0m\u001b[0;31m`\u001b[0m\u001b[1;33m.\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 117\u001b[0m \"\"\"\n\u001b[1;32m--> 118\u001b[1;33m \u001b[0mtorch\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mautograd\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mbackward\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mgradient\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mretain_graph\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mcreate_graph\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 119\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 120\u001b[0m \u001b[1;32mdef\u001b[0m \u001b[0mregister_hook\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mhook\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n",
"\u001b[1;32mC:\\pythonenvir\\lib\\site-packages\\torch\\autograd\\__init__.py\u001b[0m in \u001b[0;36mbackward\u001b[1;34m(tensors, grad_tensors, retain_graph, create_graph, grad_variables)\u001b[0m\n\u001b[0;32m 91\u001b[0m Variable._execution_engine.run_backward(\n\u001b[0;32m 92\u001b[0m \u001b[0mtensors\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mgrad_tensors\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mretain_graph\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mcreate_graph\u001b[0m\u001b[1;33m,\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 93\u001b[1;33m allow_unreachable=True) # allow_unreachable flag\n\u001b[0m\u001b[0;32m 94\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 95\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n",
"\u001b[1;31mKeyboardInterrupt\u001b[0m: "
- ]
+ ],
+ "output_type": "error"
}
],
"source": [
@@ -214,777 +214,6 @@
"outputs": [
{
"data": {
- "application/javascript": [
- "/* Put everything inside the global mpl namespace */\n",
- "window.mpl = {};\n",
- "\n",
- "\n",
- "mpl.get_websocket_type = function() {\n",
- " if (typeof(WebSocket) !== 'undefined') {\n",
- " return WebSocket;\n",
- " } else if (typeof(MozWebSocket) !== 'undefined') {\n",
- " return MozWebSocket;\n",
- " } else {\n",
- " alert('Your browser does not have WebSocket support. ' +\n",
- " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n",
- " 'Firefox 4 and 5 are also supported but you ' +\n",
- " 'have to enable WebSockets in about:config.');\n",
- " };\n",
- "}\n",
- "\n",
- "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n",
- " this.id = figure_id;\n",
- "\n",
- " this.ws = websocket;\n",
- "\n",
- " this.supports_binary = (this.ws.binaryType != undefined);\n",
- "\n",
- " if (!this.supports_binary) {\n",
- " var warnings = document.getElementById(\"mpl-warnings\");\n",
- " if (warnings) {\n",
- " warnings.style.display = 'block';\n",
- " warnings.textContent = (\n",
- " \"This browser does not support binary websocket messages. \" +\n",
- " \"Performance may be slow.\");\n",
- " }\n",
- " }\n",
- "\n",
- " this.imageObj = new Image();\n",
- "\n",
- " this.context = undefined;\n",
- " this.message = undefined;\n",
- " this.canvas = undefined;\n",
- " this.rubberband_canvas = undefined;\n",
- " this.rubberband_context = undefined;\n",
- " this.format_dropdown = undefined;\n",
- "\n",
- " this.image_mode = 'full';\n",
- "\n",
- " this.root = $('');\n",
- " this._root_extra_style(this.root)\n",
- " this.root.attr('style', 'display: inline-block');\n",
- "\n",
- " $(parent_element).append(this.root);\n",
- "\n",
- " this._init_header(this);\n",
- " this._init_canvas(this);\n",
- " this._init_toolbar(this);\n",
- "\n",
- " var fig = this;\n",
- "\n",
- " this.waiting = false;\n",
- "\n",
- " this.ws.onopen = function () {\n",
- " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n",
- " fig.send_message(\"send_image_mode\", {});\n",
- " if (mpl.ratio != 1) {\n",
- " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n",
- " }\n",
- " fig.send_message(\"refresh\", {});\n",
- " }\n",
- "\n",
- " this.imageObj.onload = function() {\n",
- " if (fig.image_mode == 'full') {\n",
- " // Full images could contain transparency (where diff images\n",
- " // almost always do), so we need to clear the canvas so that\n",
- " // there is no ghosting.\n",
- " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n",
- " }\n",
- " fig.context.drawImage(fig.imageObj, 0, 0);\n",
- " };\n",
- "\n",
- " this.imageObj.onunload = function() {\n",
- " fig.ws.close();\n",
- " }\n",
- "\n",
- " this.ws.onmessage = this._make_on_message_function(this);\n",
- "\n",
- " this.ondownload = ondownload;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_header = function() {\n",
- " var titlebar = $(\n",
- " '');\n",
- " var titletext = $(\n",
- " '');\n",
- " titlebar.append(titletext)\n",
- " this.root.append(titlebar);\n",
- " this.header = titletext[0];\n",
- "}\n",
- "\n",
- "\n",
- "\n",
- "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n",
- "\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n",
- "\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_canvas = function() {\n",
- " var fig = this;\n",
- "\n",
- " var canvas_div = $('');\n",
- "\n",
- " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n",
- "\n",
- " function canvas_keyboard_event(event) {\n",
- " return fig.key_event(event, event['data']);\n",
- " }\n",
- "\n",
- " canvas_div.keydown('key_press', canvas_keyboard_event);\n",
- " canvas_div.keyup('key_release', canvas_keyboard_event);\n",
- " this.canvas_div = canvas_div\n",
- " this._canvas_extra_style(canvas_div)\n",
- " this.root.append(canvas_div);\n",
- "\n",
- " var canvas = $('');\n",
- " canvas.addClass('mpl-canvas');\n",
- " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n",
- "\n",
- " this.canvas = canvas[0];\n",
- " this.context = canvas[0].getContext(\"2d\");\n",
- "\n",
- " var backingStore = this.context.backingStorePixelRatio ||\n",
- "\tthis.context.webkitBackingStorePixelRatio ||\n",
- "\tthis.context.mozBackingStorePixelRatio ||\n",
- "\tthis.context.msBackingStorePixelRatio ||\n",
- "\tthis.context.oBackingStorePixelRatio ||\n",
- "\tthis.context.backingStorePixelRatio || 1;\n",
- "\n",
- " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n",
- "\n",
- " var rubberband = $('');\n",
- " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n",
- "\n",
- " var pass_mouse_events = true;\n",
- "\n",
- " canvas_div.resizable({\n",
- " start: function(event, ui) {\n",
- " pass_mouse_events = false;\n",
- " },\n",
- " resize: function(event, ui) {\n",
- " fig.request_resize(ui.size.width, ui.size.height);\n",
- " },\n",
- " stop: function(event, ui) {\n",
- " pass_mouse_events = true;\n",
- " fig.request_resize(ui.size.width, ui.size.height);\n",
- " },\n",
- " });\n",
- "\n",
- " function mouse_event_fn(event) {\n",
- " if (pass_mouse_events)\n",
- " return fig.mouse_event(event, event['data']);\n",
- " }\n",
- "\n",
- " rubberband.mousedown('button_press', mouse_event_fn);\n",
- " rubberband.mouseup('button_release', mouse_event_fn);\n",
- " // Throttle sequential mouse events to 1 every 20ms.\n",
- " rubberband.mousemove('motion_notify', mouse_event_fn);\n",
- "\n",
- " rubberband.mouseenter('figure_enter', mouse_event_fn);\n",
- " rubberband.mouseleave('figure_leave', mouse_event_fn);\n",
- "\n",
- " canvas_div.on(\"wheel\", function (event) {\n",
- " event = event.originalEvent;\n",
- " event['data'] = 'scroll'\n",
- " if (event.deltaY < 0) {\n",
- " event.step = 1;\n",
- " } else {\n",
- " event.step = -1;\n",
- " }\n",
- " mouse_event_fn(event);\n",
- " });\n",
- "\n",
- " canvas_div.append(canvas);\n",
- " canvas_div.append(rubberband);\n",
- "\n",
- " this.rubberband = rubberband;\n",
- " this.rubberband_canvas = rubberband[0];\n",
- " this.rubberband_context = rubberband[0].getContext(\"2d\");\n",
- " this.rubberband_context.strokeStyle = \"#000000\";\n",
- "\n",
- " this._resize_canvas = function(width, height) {\n",
- " // Keep the size of the canvas, canvas container, and rubber band\n",
- " // canvas in synch.\n",
- " canvas_div.css('width', width)\n",
- " canvas_div.css('height', height)\n",
- "\n",
- " canvas.attr('width', width * mpl.ratio);\n",
- " canvas.attr('height', height * mpl.ratio);\n",
- " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n",
- "\n",
- " rubberband.attr('width', width);\n",
- " rubberband.attr('height', height);\n",
- " }\n",
- "\n",
- " // Set the figure to an initial 600x600px, this will subsequently be updated\n",
- " // upon first draw.\n",
- " this._resize_canvas(600, 600);\n",
- "\n",
- " // Disable right mouse context menu.\n",
- " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n",
- " return false;\n",
- " });\n",
- "\n",
- " function set_focus () {\n",
- " canvas.focus();\n",
- " canvas_div.focus();\n",
- " }\n",
- "\n",
- " window.setTimeout(set_focus, 100);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_toolbar = function() {\n",
- " var fig = this;\n",
- "\n",
- " var nav_element = $('');\n",
- " nav_element.attr('style', 'width: 100%');\n",
- " this.root.append(nav_element);\n",
- "\n",
- " // Define a callback function for later on.\n",
- " function toolbar_event(event) {\n",
- " return fig.toolbar_button_onclick(event['data']);\n",
- " }\n",
- " function toolbar_mouse_event(event) {\n",
- " return fig.toolbar_button_onmouseover(event['data']);\n",
- " }\n",
- "\n",
- " for(var toolbar_ind in mpl.toolbar_items) {\n",
- " var name = mpl.toolbar_items[toolbar_ind][0];\n",
- " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n",
- " var image = mpl.toolbar_items[toolbar_ind][2];\n",
- " var method_name = mpl.toolbar_items[toolbar_ind][3];\n",
- "\n",
- " if (!name) {\n",
- " // put a spacer in here.\n",
- " continue;\n",
- " }\n",
- " var button = $('');\n",
- " button.addClass('ui-button ui-widget ui-state-default ui-corner-all ' +\n",
- " 'ui-button-icon-only');\n",
- " button.attr('role', 'button');\n",
- " button.attr('aria-disabled', 'false');\n",
- " button.click(method_name, toolbar_event);\n",
- " button.mouseover(tooltip, toolbar_mouse_event);\n",
- "\n",
- " var icon_img = $('');\n",
- " icon_img.addClass('ui-button-icon-primary ui-icon');\n",
- " icon_img.addClass(image);\n",
- " icon_img.addClass('ui-corner-all');\n",
- "\n",
- " var tooltip_span = $('');\n",
- " tooltip_span.addClass('ui-button-text');\n",
- " tooltip_span.html(tooltip);\n",
- "\n",
- " button.append(icon_img);\n",
- " button.append(tooltip_span);\n",
- "\n",
- " nav_element.append(button);\n",
- " }\n",
- "\n",
- " var fmt_picker_span = $('');\n",
- "\n",
- " var fmt_picker = $('');\n",
- " fmt_picker.addClass('mpl-toolbar-option ui-widget ui-widget-content');\n",
- " fmt_picker_span.append(fmt_picker);\n",
- " nav_element.append(fmt_picker_span);\n",
- " this.format_dropdown = fmt_picker[0];\n",
- "\n",
- " for (var ind in mpl.extensions) {\n",
- " var fmt = mpl.extensions[ind];\n",
- " var option = $(\n",
- " '', {selected: fmt === mpl.default_extension}).html(fmt);\n",
- " fmt_picker.append(option);\n",
- " }\n",
- "\n",
- " // Add hover states to the ui-buttons\n",
- " $( \".ui-button\" ).hover(\n",
- " function() { $(this).addClass(\"ui-state-hover\");},\n",
- " function() { $(this).removeClass(\"ui-state-hover\");}\n",
- " );\n",
- "\n",
- " var status_bar = $('');\n",
- " nav_element.append(status_bar);\n",
- " this.message = status_bar[0];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.request_resize = function(x_pixels, y_pixels) {\n",
- " // Request matplotlib to resize the figure. Matplotlib will then trigger a resize in the client,\n",
- " // which will in turn request a refresh of the image.\n",
- " this.send_message('resize', {'width': x_pixels, 'height': y_pixels});\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.send_message = function(type, properties) {\n",
- " properties['type'] = type;\n",
- " properties['figure_id'] = this.id;\n",
- " this.ws.send(JSON.stringify(properties));\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.send_draw_message = function() {\n",
- " if (!this.waiting) {\n",
- " this.waiting = true;\n",
- " this.ws.send(JSON.stringify({type: \"draw\", figure_id: this.id}));\n",
- " }\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype.handle_save = function(fig, msg) {\n",
- " var format_dropdown = fig.format_dropdown;\n",
- " var format = format_dropdown.options[format_dropdown.selectedIndex].value;\n",
- " fig.ondownload(fig, format);\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype.handle_resize = function(fig, msg) {\n",
- " var size = msg['size'];\n",
- " if (size[0] != fig.canvas.width || size[1] != fig.canvas.height) {\n",
- " fig._resize_canvas(size[0], size[1]);\n",
- " fig.send_message(\"refresh\", {});\n",
- " };\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_rubberband = function(fig, msg) {\n",
- " var x0 = msg['x0'] / mpl.ratio;\n",
- " var y0 = (fig.canvas.height - msg['y0']) / mpl.ratio;\n",
- " var x1 = msg['x1'] / mpl.ratio;\n",
- " var y1 = (fig.canvas.height - msg['y1']) / mpl.ratio;\n",
- " x0 = Math.floor(x0) + 0.5;\n",
- " y0 = Math.floor(y0) + 0.5;\n",
- " x1 = Math.floor(x1) + 0.5;\n",
- " y1 = Math.floor(y1) + 0.5;\n",
- " var min_x = Math.min(x0, x1);\n",
- " var min_y = Math.min(y0, y1);\n",
- " var width = Math.abs(x1 - x0);\n",
- " var height = Math.abs(y1 - y0);\n",
- "\n",
- " fig.rubberband_context.clearRect(\n",
- " 0, 0, fig.canvas.width, fig.canvas.height);\n",
- "\n",
- " fig.rubberband_context.strokeRect(min_x, min_y, width, height);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_figure_label = function(fig, msg) {\n",
- " // Updates the figure title.\n",
- " fig.header.textContent = msg['label'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_cursor = function(fig, msg) {\n",
- " var cursor = msg['cursor'];\n",
- " switch(cursor)\n",
- " {\n",
- " case 0:\n",
- " cursor = 'pointer';\n",
- " break;\n",
- " case 1:\n",
- " cursor = 'default';\n",
- " break;\n",
- " case 2:\n",
- " cursor = 'crosshair';\n",
- " break;\n",
- " case 3:\n",
- " cursor = 'move';\n",
- " break;\n",
- " }\n",
- " fig.rubberband_canvas.style.cursor = cursor;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_message = function(fig, msg) {\n",
- " fig.message.textContent = msg['message'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_draw = function(fig, msg) {\n",
- " // Request the server to send over a new figure.\n",
- " fig.send_draw_message();\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_image_mode = function(fig, msg) {\n",
- " fig.image_mode = msg['mode'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.updated_canvas_event = function() {\n",
- " // Called whenever the canvas gets updated.\n",
- " this.send_message(\"ack\", {});\n",
- "}\n",
- "\n",
- "// A function to construct a web socket function for onmessage handling.\n",
- "// Called in the figure constructor.\n",
- "mpl.figure.prototype._make_on_message_function = function(fig) {\n",
- " return function socket_on_message(evt) {\n",
- " if (evt.data instanceof Blob) {\n",
- " /* FIXME: We get \"Resource interpreted as Image but\n",
- " * transferred with MIME type text/plain:\" errors on\n",
- " * Chrome. But how to set the MIME type? It doesn't seem\n",
- " * to be part of the websocket stream */\n",
- " evt.data.type = \"image/png\";\n",
- "\n",
- " /* Free the memory for the previous frames */\n",
- " if (fig.imageObj.src) {\n",
- " (window.URL || window.webkitURL).revokeObjectURL(\n",
- " fig.imageObj.src);\n",
- " }\n",
- "\n",
- " fig.imageObj.src = (window.URL || window.webkitURL).createObjectURL(\n",
- " evt.data);\n",
- " fig.updated_canvas_event();\n",
- " fig.waiting = false;\n",
- " return;\n",
- " }\n",
- " else if (typeof evt.data === 'string' && evt.data.slice(0, 21) == \"data:image/png;base64\") {\n",
- " fig.imageObj.src = evt.data;\n",
- " fig.updated_canvas_event();\n",
- " fig.waiting = false;\n",
- " return;\n",
- " }\n",
- "\n",
- " var msg = JSON.parse(evt.data);\n",
- " var msg_type = msg['type'];\n",
- "\n",
- " // Call the \"handle_{type}\" callback, which takes\n",
- " // the figure and JSON message as its only arguments.\n",
- " try {\n",
- " var callback = fig[\"handle_\" + msg_type];\n",
- " } catch (e) {\n",
- " console.log(\"No handler for the '\" + msg_type + \"' message type: \", msg);\n",
- " return;\n",
- " }\n",
- "\n",
- " if (callback) {\n",
- " try {\n",
- " // console.log(\"Handling '\" + msg_type + \"' message: \", msg);\n",
- " callback(fig, msg);\n",
- " } catch (e) {\n",
- " console.log(\"Exception inside the 'handler_\" + msg_type + \"' callback:\", e, e.stack, msg);\n",
- " }\n",
- " }\n",
- " };\n",
- "}\n",
- "\n",
- "// from http://stackoverflow.com/questions/1114465/getting-mouse-location-in-canvas\n",
- "mpl.findpos = function(e) {\n",
- " //this section is from http://www.quirksmode.org/js/events_properties.html\n",
- " var targ;\n",
- " if (!e)\n",
- " e = window.event;\n",
- " if (e.target)\n",
- " targ = e.target;\n",
- " else if (e.srcElement)\n",
- " targ = e.srcElement;\n",
- " if (targ.nodeType == 3) // defeat Safari bug\n",
- " targ = targ.parentNode;\n",
- "\n",
- " // jQuery normalizes the pageX and pageY\n",
- " // pageX,Y are the mouse positions relative to the document\n",
- " // offset() returns the position of the element relative to the document\n",
- " var x = e.pageX - $(targ).offset().left;\n",
- " var y = e.pageY - $(targ).offset().top;\n",
- "\n",
- " return {\"x\": x, \"y\": y};\n",
- "};\n",
- "\n",
- "/*\n",
- " * return a copy of an object with only non-object keys\n",
- " * we need this to avoid circular references\n",
- " * http://stackoverflow.com/a/24161582/3208463\n",
- " */\n",
- "function simpleKeys (original) {\n",
- " return Object.keys(original).reduce(function (obj, key) {\n",
- " if (typeof original[key] !== 'object')\n",
- " obj[key] = original[key]\n",
- " return obj;\n",
- " }, {});\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.mouse_event = function(event, name) {\n",
- " var canvas_pos = mpl.findpos(event)\n",
- "\n",
- " if (name === 'button_press')\n",
- " {\n",
- " this.canvas.focus();\n",
- " this.canvas_div.focus();\n",
- " }\n",
- "\n",
- " var x = canvas_pos.x * mpl.ratio;\n",
- " var y = canvas_pos.y * mpl.ratio;\n",
- "\n",
- " this.send_message(name, {x: x, y: y, button: event.button,\n",
- " step: event.step,\n",
- " guiEvent: simpleKeys(event)});\n",
- "\n",
- " /* This prevents the web browser from automatically changing to\n",
- " * the text insertion cursor when the button is pressed. We want\n",
- " * to control all of the cursor setting manually through the\n",
- " * 'cursor' event from matplotlib */\n",
- " event.preventDefault();\n",
- " return false;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._key_event_extra = function(event, name) {\n",
- " // Handle any extra behaviour associated with a key event\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.key_event = function(event, name) {\n",
- "\n",
- " // Prevent repeat events\n",
- " if (name == 'key_press')\n",
- " {\n",
- " if (event.which === this._key)\n",
- " return;\n",
- " else\n",
- " this._key = event.which;\n",
- " }\n",
- " if (name == 'key_release')\n",
- " this._key = null;\n",
- "\n",
- " var value = '';\n",
- " if (event.ctrlKey && event.which != 17)\n",
- " value += \"ctrl+\";\n",
- " if (event.altKey && event.which != 18)\n",
- " value += \"alt+\";\n",
- " if (event.shiftKey && event.which != 16)\n",
- " value += \"shift+\";\n",
- "\n",
- " value += 'k';\n",
- " value += event.which.toString();\n",
- "\n",
- " this._key_event_extra(event, name);\n",
- "\n",
- " this.send_message(name, {key: value,\n",
- " guiEvent: simpleKeys(event)});\n",
- " return false;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.toolbar_button_onclick = function(name) {\n",
- " if (name == 'download') {\n",
- " this.handle_save(this, null);\n",
- " } else {\n",
- " this.send_message(\"toolbar_button\", {name: name});\n",
- " }\n",
- "};\n",
- "\n",
- "mpl.figure.prototype.toolbar_button_onmouseover = function(tooltip) {\n",
- " this.message.textContent = tooltip;\n",
- "};\n",
- "mpl.toolbar_items = [[\"Home\", \"Reset original view\", \"fa fa-home icon-home\", \"home\"], [\"Back\", \"Back to previous view\", \"fa fa-arrow-left icon-arrow-left\", \"back\"], [\"Forward\", \"Forward to next view\", \"fa fa-arrow-right icon-arrow-right\", \"forward\"], [\"\", \"\", \"\", \"\"], [\"Pan\", \"Pan axes with left mouse, zoom with right\", \"fa fa-arrows icon-move\", \"pan\"], [\"Zoom\", \"Zoom to rectangle\", \"fa fa-square-o icon-check-empty\", \"zoom\"], [\"\", \"\", \"\", \"\"], [\"Download\", \"Download plot\", \"fa fa-floppy-o icon-save\", \"download\"]];\n",
- "\n",
- "mpl.extensions = [\"eps\", \"jpeg\", \"pdf\", \"png\", \"ps\", \"raw\", \"svg\", \"tif\"];\n",
- "\n",
- "mpl.default_extension = \"png\";var comm_websocket_adapter = function(comm) {\n",
- " // Create a \"websocket\"-like object which calls the given IPython comm\n",
- " // object with the appropriate methods. Currently this is a non binary\n",
- " // socket, so there is still some room for performance tuning.\n",
- " var ws = {};\n",
- "\n",
- " ws.close = function() {\n",
- " comm.close()\n",
- " };\n",
- " ws.send = function(m) {\n",
- " //console.log('sending', m);\n",
- " comm.send(m);\n",
- " };\n",
- " // Register the callback with on_msg.\n",
- " comm.on_msg(function(msg) {\n",
- " //console.log('receiving', msg['content']['data'], msg);\n",
- " // Pass the mpl event to the overridden (by mpl) onmessage function.\n",
- " ws.onmessage(msg['content']['data'])\n",
- " });\n",
- " return ws;\n",
- "}\n",
- "\n",
- "mpl.mpl_figure_comm = function(comm, msg) {\n",
- " // This is the function which gets called when the mpl process\n",
- " // starts-up an IPython Comm through the \"matplotlib\" channel.\n",
- "\n",
- " var id = msg.content.data.id;\n",
- " // Get hold of the div created by the display call when the Comm\n",
- " // socket was opened in Python.\n",
- " var element = $(\"#\" + id);\n",
- " var ws_proxy = comm_websocket_adapter(comm)\n",
- "\n",
- " function ondownload(figure, format) {\n",
- " window.open(figure.imageObj.src);\n",
- " }\n",
- "\n",
- " var fig = new mpl.figure(id, ws_proxy,\n",
- " ondownload,\n",
- " element.get(0));\n",
- "\n",
- " // Call onopen now - mpl needs it, as it is assuming we've passed it a real\n",
- " // web socket which is closed, not our websocket->open comm proxy.\n",
- " ws_proxy.onopen();\n",
- "\n",
- " fig.parent_element = element.get(0);\n",
- " fig.cell_info = mpl.find_output_cell(\"\");\n",
- " if (!fig.cell_info) {\n",
- " console.error(\"Failed to find cell for figure\", id, fig);\n",
- " return;\n",
- " }\n",
- "\n",
- " var output_index = fig.cell_info[2]\n",
- " var cell = fig.cell_info[0];\n",
- "\n",
- "};\n",
- "\n",
- "mpl.figure.prototype.handle_close = function(fig, msg) {\n",
- " var width = fig.canvas.width/mpl.ratio\n",
- " fig.root.unbind('remove')\n",
- "\n",
- " // Update the output cell to use the data from the current canvas.\n",
- " fig.push_to_output();\n",
- " var dataURL = fig.canvas.toDataURL();\n",
- " // Re-enable the keyboard manager in IPython - without this line, in FF,\n",
- " // the notebook keyboard shortcuts fail.\n",
- " IPython.keyboard_manager.enable()\n",
- " $(fig.parent_element).html('');\n",
- " fig.close_ws(fig, msg);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.close_ws = function(fig, msg){\n",
- " fig.send_message('closing', msg);\n",
- " // fig.ws.close()\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.push_to_output = function(remove_interactive) {\n",
- " // Turn the data on the canvas into data in the output cell.\n",
- " var width = this.canvas.width/mpl.ratio\n",
- " var dataURL = this.canvas.toDataURL();\n",
- " this.cell_info[1]['text/html'] = '';\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.updated_canvas_event = function() {\n",
- " // Tell IPython that the notebook contents must change.\n",
- " IPython.notebook.set_dirty(true);\n",
- " this.send_message(\"ack\", {});\n",
- " var fig = this;\n",
- " // Wait a second, then push the new image to the DOM so\n",
- " // that it is saved nicely (might be nice to debounce this).\n",
- " setTimeout(function () { fig.push_to_output() }, 1000);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_toolbar = function() {\n",
- " var fig = this;\n",
- "\n",
- " var nav_element = $('');\n",
- " nav_element.attr('style', 'width: 100%');\n",
- " this.root.append(nav_element);\n",
- "\n",
- " // Define a callback function for later on.\n",
- " function toolbar_event(event) {\n",
- " return fig.toolbar_button_onclick(event['data']);\n",
- " }\n",
- " function toolbar_mouse_event(event) {\n",
- " return fig.toolbar_button_onmouseover(event['data']);\n",
- " }\n",
- "\n",
- " for(var toolbar_ind in mpl.toolbar_items){\n",
- " var name = mpl.toolbar_items[toolbar_ind][0];\n",
- " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n",
- " var image = mpl.toolbar_items[toolbar_ind][2];\n",
- " var method_name = mpl.toolbar_items[toolbar_ind][3];\n",
- "\n",
- " if (!name) { continue; };\n",
- "\n",
- " var button = $('');\n",
- " button.click(method_name, toolbar_event);\n",
- " button.mouseover(tooltip, toolbar_mouse_event);\n",
- " nav_element.append(button);\n",
- " }\n",
- "\n",
- " // Add the status bar.\n",
- " var status_bar = $('');\n",
- " nav_element.append(status_bar);\n",
- " this.message = status_bar[0];\n",
- "\n",
- " // Add the close button to the window.\n",
- " var buttongrp = $('');\n",
- " var button = $('');\n",
- " button.click(function (evt) { fig.handle_close(fig, {}); } );\n",
- " button.mouseover('Stop Interaction', toolbar_mouse_event);\n",
- " buttongrp.append(button);\n",
- " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n",
- " titlebar.prepend(buttongrp);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._root_extra_style = function(el){\n",
- " var fig = this\n",
- " el.on(\"remove\", function(){\n",
- "\tfig.close_ws(fig, {});\n",
- " });\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._canvas_extra_style = function(el){\n",
- " // this is important to make the div 'focusable\n",
- " el.attr('tabindex', 0)\n",
- " // reach out to IPython and tell the keyboard manager to turn it's self\n",
- " // off when our div gets focus\n",
- "\n",
- " // location in version 3\n",
- " if (IPython.notebook.keyboard_manager) {\n",
- " IPython.notebook.keyboard_manager.register_events(el);\n",
- " }\n",
- " else {\n",
- " // location in version 2\n",
- " IPython.keyboard_manager.register_events(el);\n",
- " }\n",
- "\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._key_event_extra = function(event, name) {\n",
- " var manager = IPython.notebook.keyboard_manager;\n",
- " if (!manager)\n",
- " manager = IPython.keyboard_manager;\n",
- "\n",
- " // Check for shift+enter\n",
- " if (event.shiftKey && event.which == 13) {\n",
- " this.canvas_div.blur();\n",
- " event.shiftKey = false;\n",
- " // Send a \"J\" for go to next cell\n",
- " event.which = 74;\n",
- " event.keyCode = 74;\n",
- " manager.command_mode();\n",
- " manager.handle_keydown(event);\n",
- " }\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_save = function(fig, msg) {\n",
- " fig.ondownload(fig, null);\n",
- "}\n",
- "\n",
- "\n",
- "mpl.find_output_cell = function(html_output) {\n",
- " // Return the cell and output element which can be found *uniquely* in the notebook.\n",
- " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n",
- " // IPython event is triggered only after the cells have been serialised, which for\n",
- " // our purposes (turning an active figure into a static one), is too late.\n",
- " var cells = IPython.notebook.get_cells();\n",
- " var ncells = cells.length;\n",
- " for (var i=0; i= 3 moved mimebundle to data attribute of output\n",
- " data = data.data;\n",
- " }\n",
- " if (data['text/html'] == html_output) {\n",
- " return [cell, data, j];\n",
- " }\n",
- " }\n",
- " }\n",
- " }\n",
- "}\n",
- "\n",
- "// Register the function which deals with the matplotlib target/channel.\n",
- "// The kernel may be null if the page has been refreshed.\n",
- "if (IPython.notebook.kernel != null) {\n",
- " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n",
- "}\n"
- ],
"text/plain": [
""
]
@@ -1002,7 +231,7 @@
]
},
"metadata": {},
- "output_type": "display_data"
+ "output_type": "execute_result"
}
],
"source": [
@@ -1040,777 +269,6 @@
"outputs": [
{
"data": {
- "application/javascript": [
- "/* Put everything inside the global mpl namespace */\n",
- "window.mpl = {};\n",
- "\n",
- "\n",
- "mpl.get_websocket_type = function() {\n",
- " if (typeof(WebSocket) !== 'undefined') {\n",
- " return WebSocket;\n",
- " } else if (typeof(MozWebSocket) !== 'undefined') {\n",
- " return MozWebSocket;\n",
- " } else {\n",
- " alert('Your browser does not have WebSocket support. ' +\n",
- " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n",
- " 'Firefox 4 and 5 are also supported but you ' +\n",
- " 'have to enable WebSockets in about:config.');\n",
- " };\n",
- "}\n",
- "\n",
- "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n",
- " this.id = figure_id;\n",
- "\n",
- " this.ws = websocket;\n",
- "\n",
- " this.supports_binary = (this.ws.binaryType != undefined);\n",
- "\n",
- " if (!this.supports_binary) {\n",
- " var warnings = document.getElementById(\"mpl-warnings\");\n",
- " if (warnings) {\n",
- " warnings.style.display = 'block';\n",
- " warnings.textContent = (\n",
- " \"This browser does not support binary websocket messages. \" +\n",
- " \"Performance may be slow.\");\n",
- " }\n",
- " }\n",
- "\n",
- " this.imageObj = new Image();\n",
- "\n",
- " this.context = undefined;\n",
- " this.message = undefined;\n",
- " this.canvas = undefined;\n",
- " this.rubberband_canvas = undefined;\n",
- " this.rubberband_context = undefined;\n",
- " this.format_dropdown = undefined;\n",
- "\n",
- " this.image_mode = 'full';\n",
- "\n",
- " this.root = $('');\n",
- " this._root_extra_style(this.root)\n",
- " this.root.attr('style', 'display: inline-block');\n",
- "\n",
- " $(parent_element).append(this.root);\n",
- "\n",
- " this._init_header(this);\n",
- " this._init_canvas(this);\n",
- " this._init_toolbar(this);\n",
- "\n",
- " var fig = this;\n",
- "\n",
- " this.waiting = false;\n",
- "\n",
- " this.ws.onopen = function () {\n",
- " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n",
- " fig.send_message(\"send_image_mode\", {});\n",
- " if (mpl.ratio != 1) {\n",
- " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n",
- " }\n",
- " fig.send_message(\"refresh\", {});\n",
- " }\n",
- "\n",
- " this.imageObj.onload = function() {\n",
- " if (fig.image_mode == 'full') {\n",
- " // Full images could contain transparency (where diff images\n",
- " // almost always do), so we need to clear the canvas so that\n",
- " // there is no ghosting.\n",
- " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n",
- " }\n",
- " fig.context.drawImage(fig.imageObj, 0, 0);\n",
- " };\n",
- "\n",
- " this.imageObj.onunload = function() {\n",
- " fig.ws.close();\n",
- " }\n",
- "\n",
- " this.ws.onmessage = this._make_on_message_function(this);\n",
- "\n",
- " this.ondownload = ondownload;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_header = function() {\n",
- " var titlebar = $(\n",
- " '');\n",
- " var titletext = $(\n",
- " '');\n",
- " titlebar.append(titletext)\n",
- " this.root.append(titlebar);\n",
- " this.header = titletext[0];\n",
- "}\n",
- "\n",
- "\n",
- "\n",
- "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n",
- "\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n",
- "\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_canvas = function() {\n",
- " var fig = this;\n",
- "\n",
- " var canvas_div = $('');\n",
- "\n",
- " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n",
- "\n",
- " function canvas_keyboard_event(event) {\n",
- " return fig.key_event(event, event['data']);\n",
- " }\n",
- "\n",
- " canvas_div.keydown('key_press', canvas_keyboard_event);\n",
- " canvas_div.keyup('key_release', canvas_keyboard_event);\n",
- " this.canvas_div = canvas_div\n",
- " this._canvas_extra_style(canvas_div)\n",
- " this.root.append(canvas_div);\n",
- "\n",
- " var canvas = $('');\n",
- " canvas.addClass('mpl-canvas');\n",
- " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n",
- "\n",
- " this.canvas = canvas[0];\n",
- " this.context = canvas[0].getContext(\"2d\");\n",
- "\n",
- " var backingStore = this.context.backingStorePixelRatio ||\n",
- "\tthis.context.webkitBackingStorePixelRatio ||\n",
- "\tthis.context.mozBackingStorePixelRatio ||\n",
- "\tthis.context.msBackingStorePixelRatio ||\n",
- "\tthis.context.oBackingStorePixelRatio ||\n",
- "\tthis.context.backingStorePixelRatio || 1;\n",
- "\n",
- " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n",
- "\n",
- " var rubberband = $('');\n",
- " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n",
- "\n",
- " var pass_mouse_events = true;\n",
- "\n",
- " canvas_div.resizable({\n",
- " start: function(event, ui) {\n",
- " pass_mouse_events = false;\n",
- " },\n",
- " resize: function(event, ui) {\n",
- " fig.request_resize(ui.size.width, ui.size.height);\n",
- " },\n",
- " stop: function(event, ui) {\n",
- " pass_mouse_events = true;\n",
- " fig.request_resize(ui.size.width, ui.size.height);\n",
- " },\n",
- " });\n",
- "\n",
- " function mouse_event_fn(event) {\n",
- " if (pass_mouse_events)\n",
- " return fig.mouse_event(event, event['data']);\n",
- " }\n",
- "\n",
- " rubberband.mousedown('button_press', mouse_event_fn);\n",
- " rubberband.mouseup('button_release', mouse_event_fn);\n",
- " // Throttle sequential mouse events to 1 every 20ms.\n",
- " rubberband.mousemove('motion_notify', mouse_event_fn);\n",
- "\n",
- " rubberband.mouseenter('figure_enter', mouse_event_fn);\n",
- " rubberband.mouseleave('figure_leave', mouse_event_fn);\n",
- "\n",
- " canvas_div.on(\"wheel\", function (event) {\n",
- " event = event.originalEvent;\n",
- " event['data'] = 'scroll'\n",
- " if (event.deltaY < 0) {\n",
- " event.step = 1;\n",
- " } else {\n",
- " event.step = -1;\n",
- " }\n",
- " mouse_event_fn(event);\n",
- " });\n",
- "\n",
- " canvas_div.append(canvas);\n",
- " canvas_div.append(rubberband);\n",
- "\n",
- " this.rubberband = rubberband;\n",
- " this.rubberband_canvas = rubberband[0];\n",
- " this.rubberband_context = rubberband[0].getContext(\"2d\");\n",
- " this.rubberband_context.strokeStyle = \"#000000\";\n",
- "\n",
- " this._resize_canvas = function(width, height) {\n",
- " // Keep the size of the canvas, canvas container, and rubber band\n",
- " // canvas in synch.\n",
- " canvas_div.css('width', width)\n",
- " canvas_div.css('height', height)\n",
- "\n",
- " canvas.attr('width', width * mpl.ratio);\n",
- " canvas.attr('height', height * mpl.ratio);\n",
- " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n",
- "\n",
- " rubberband.attr('width', width);\n",
- " rubberband.attr('height', height);\n",
- " }\n",
- "\n",
- " // Set the figure to an initial 600x600px, this will subsequently be updated\n",
- " // upon first draw.\n",
- " this._resize_canvas(600, 600);\n",
- "\n",
- " // Disable right mouse context menu.\n",
- " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n",
- " return false;\n",
- " });\n",
- "\n",
- " function set_focus () {\n",
- " canvas.focus();\n",
- " canvas_div.focus();\n",
- " }\n",
- "\n",
- " window.setTimeout(set_focus, 100);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_toolbar = function() {\n",
- " var fig = this;\n",
- "\n",
- " var nav_element = $('');\n",
- " nav_element.attr('style', 'width: 100%');\n",
- " this.root.append(nav_element);\n",
- "\n",
- " // Define a callback function for later on.\n",
- " function toolbar_event(event) {\n",
- " return fig.toolbar_button_onclick(event['data']);\n",
- " }\n",
- " function toolbar_mouse_event(event) {\n",
- " return fig.toolbar_button_onmouseover(event['data']);\n",
- " }\n",
- "\n",
- " for(var toolbar_ind in mpl.toolbar_items) {\n",
- " var name = mpl.toolbar_items[toolbar_ind][0];\n",
- " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n",
- " var image = mpl.toolbar_items[toolbar_ind][2];\n",
- " var method_name = mpl.toolbar_items[toolbar_ind][3];\n",
- "\n",
- " if (!name) {\n",
- " // put a spacer in here.\n",
- " continue;\n",
- " }\n",
- " var button = $('');\n",
- " button.addClass('ui-button ui-widget ui-state-default ui-corner-all ' +\n",
- " 'ui-button-icon-only');\n",
- " button.attr('role', 'button');\n",
- " button.attr('aria-disabled', 'false');\n",
- " button.click(method_name, toolbar_event);\n",
- " button.mouseover(tooltip, toolbar_mouse_event);\n",
- "\n",
- " var icon_img = $('');\n",
- " icon_img.addClass('ui-button-icon-primary ui-icon');\n",
- " icon_img.addClass(image);\n",
- " icon_img.addClass('ui-corner-all');\n",
- "\n",
- " var tooltip_span = $('');\n",
- " tooltip_span.addClass('ui-button-text');\n",
- " tooltip_span.html(tooltip);\n",
- "\n",
- " button.append(icon_img);\n",
- " button.append(tooltip_span);\n",
- "\n",
- " nav_element.append(button);\n",
- " }\n",
- "\n",
- " var fmt_picker_span = $('');\n",
- "\n",
- " var fmt_picker = $('');\n",
- " fmt_picker.addClass('mpl-toolbar-option ui-widget ui-widget-content');\n",
- " fmt_picker_span.append(fmt_picker);\n",
- " nav_element.append(fmt_picker_span);\n",
- " this.format_dropdown = fmt_picker[0];\n",
- "\n",
- " for (var ind in mpl.extensions) {\n",
- " var fmt = mpl.extensions[ind];\n",
- " var option = $(\n",
- " '', {selected: fmt === mpl.default_extension}).html(fmt);\n",
- " fmt_picker.append(option);\n",
- " }\n",
- "\n",
- " // Add hover states to the ui-buttons\n",
- " $( \".ui-button\" ).hover(\n",
- " function() { $(this).addClass(\"ui-state-hover\");},\n",
- " function() { $(this).removeClass(\"ui-state-hover\");}\n",
- " );\n",
- "\n",
- " var status_bar = $('');\n",
- " nav_element.append(status_bar);\n",
- " this.message = status_bar[0];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.request_resize = function(x_pixels, y_pixels) {\n",
- " // Request matplotlib to resize the figure. Matplotlib will then trigger a resize in the client,\n",
- " // which will in turn request a refresh of the image.\n",
- " this.send_message('resize', {'width': x_pixels, 'height': y_pixels});\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.send_message = function(type, properties) {\n",
- " properties['type'] = type;\n",
- " properties['figure_id'] = this.id;\n",
- " this.ws.send(JSON.stringify(properties));\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.send_draw_message = function() {\n",
- " if (!this.waiting) {\n",
- " this.waiting = true;\n",
- " this.ws.send(JSON.stringify({type: \"draw\", figure_id: this.id}));\n",
- " }\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype.handle_save = function(fig, msg) {\n",
- " var format_dropdown = fig.format_dropdown;\n",
- " var format = format_dropdown.options[format_dropdown.selectedIndex].value;\n",
- " fig.ondownload(fig, format);\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype.handle_resize = function(fig, msg) {\n",
- " var size = msg['size'];\n",
- " if (size[0] != fig.canvas.width || size[1] != fig.canvas.height) {\n",
- " fig._resize_canvas(size[0], size[1]);\n",
- " fig.send_message(\"refresh\", {});\n",
- " };\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_rubberband = function(fig, msg) {\n",
- " var x0 = msg['x0'] / mpl.ratio;\n",
- " var y0 = (fig.canvas.height - msg['y0']) / mpl.ratio;\n",
- " var x1 = msg['x1'] / mpl.ratio;\n",
- " var y1 = (fig.canvas.height - msg['y1']) / mpl.ratio;\n",
- " x0 = Math.floor(x0) + 0.5;\n",
- " y0 = Math.floor(y0) + 0.5;\n",
- " x1 = Math.floor(x1) + 0.5;\n",
- " y1 = Math.floor(y1) + 0.5;\n",
- " var min_x = Math.min(x0, x1);\n",
- " var min_y = Math.min(y0, y1);\n",
- " var width = Math.abs(x1 - x0);\n",
- " var height = Math.abs(y1 - y0);\n",
- "\n",
- " fig.rubberband_context.clearRect(\n",
- " 0, 0, fig.canvas.width, fig.canvas.height);\n",
- "\n",
- " fig.rubberband_context.strokeRect(min_x, min_y, width, height);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_figure_label = function(fig, msg) {\n",
- " // Updates the figure title.\n",
- " fig.header.textContent = msg['label'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_cursor = function(fig, msg) {\n",
- " var cursor = msg['cursor'];\n",
- " switch(cursor)\n",
- " {\n",
- " case 0:\n",
- " cursor = 'pointer';\n",
- " break;\n",
- " case 1:\n",
- " cursor = 'default';\n",
- " break;\n",
- " case 2:\n",
- " cursor = 'crosshair';\n",
- " break;\n",
- " case 3:\n",
- " cursor = 'move';\n",
- " break;\n",
- " }\n",
- " fig.rubberband_canvas.style.cursor = cursor;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_message = function(fig, msg) {\n",
- " fig.message.textContent = msg['message'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_draw = function(fig, msg) {\n",
- " // Request the server to send over a new figure.\n",
- " fig.send_draw_message();\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_image_mode = function(fig, msg) {\n",
- " fig.image_mode = msg['mode'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.updated_canvas_event = function() {\n",
- " // Called whenever the canvas gets updated.\n",
- " this.send_message(\"ack\", {});\n",
- "}\n",
- "\n",
- "// A function to construct a web socket function for onmessage handling.\n",
- "// Called in the figure constructor.\n",
- "mpl.figure.prototype._make_on_message_function = function(fig) {\n",
- " return function socket_on_message(evt) {\n",
- " if (evt.data instanceof Blob) {\n",
- " /* FIXME: We get \"Resource interpreted as Image but\n",
- " * transferred with MIME type text/plain:\" errors on\n",
- " * Chrome. But how to set the MIME type? It doesn't seem\n",
- " * to be part of the websocket stream */\n",
- " evt.data.type = \"image/png\";\n",
- "\n",
- " /* Free the memory for the previous frames */\n",
- " if (fig.imageObj.src) {\n",
- " (window.URL || window.webkitURL).revokeObjectURL(\n",
- " fig.imageObj.src);\n",
- " }\n",
- "\n",
- " fig.imageObj.src = (window.URL || window.webkitURL).createObjectURL(\n",
- " evt.data);\n",
- " fig.updated_canvas_event();\n",
- " fig.waiting = false;\n",
- " return;\n",
- " }\n",
- " else if (typeof evt.data === 'string' && evt.data.slice(0, 21) == \"data:image/png;base64\") {\n",
- " fig.imageObj.src = evt.data;\n",
- " fig.updated_canvas_event();\n",
- " fig.waiting = false;\n",
- " return;\n",
- " }\n",
- "\n",
- " var msg = JSON.parse(evt.data);\n",
- " var msg_type = msg['type'];\n",
- "\n",
- " // Call the \"handle_{type}\" callback, which takes\n",
- " // the figure and JSON message as its only arguments.\n",
- " try {\n",
- " var callback = fig[\"handle_\" + msg_type];\n",
- " } catch (e) {\n",
- " console.log(\"No handler for the '\" + msg_type + \"' message type: \", msg);\n",
- " return;\n",
- " }\n",
- "\n",
- " if (callback) {\n",
- " try {\n",
- " // console.log(\"Handling '\" + msg_type + \"' message: \", msg);\n",
- " callback(fig, msg);\n",
- " } catch (e) {\n",
- " console.log(\"Exception inside the 'handler_\" + msg_type + \"' callback:\", e, e.stack, msg);\n",
- " }\n",
- " }\n",
- " };\n",
- "}\n",
- "\n",
- "// from http://stackoverflow.com/questions/1114465/getting-mouse-location-in-canvas\n",
- "mpl.findpos = function(e) {\n",
- " //this section is from http://www.quirksmode.org/js/events_properties.html\n",
- " var targ;\n",
- " if (!e)\n",
- " e = window.event;\n",
- " if (e.target)\n",
- " targ = e.target;\n",
- " else if (e.srcElement)\n",
- " targ = e.srcElement;\n",
- " if (targ.nodeType == 3) // defeat Safari bug\n",
- " targ = targ.parentNode;\n",
- "\n",
- " // jQuery normalizes the pageX and pageY\n",
- " // pageX,Y are the mouse positions relative to the document\n",
- " // offset() returns the position of the element relative to the document\n",
- " var x = e.pageX - $(targ).offset().left;\n",
- " var y = e.pageY - $(targ).offset().top;\n",
- "\n",
- " return {\"x\": x, \"y\": y};\n",
- "};\n",
- "\n",
- "/*\n",
- " * return a copy of an object with only non-object keys\n",
- " * we need this to avoid circular references\n",
- " * http://stackoverflow.com/a/24161582/3208463\n",
- " */\n",
- "function simpleKeys (original) {\n",
- " return Object.keys(original).reduce(function (obj, key) {\n",
- " if (typeof original[key] !== 'object')\n",
- " obj[key] = original[key]\n",
- " return obj;\n",
- " }, {});\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.mouse_event = function(event, name) {\n",
- " var canvas_pos = mpl.findpos(event)\n",
- "\n",
- " if (name === 'button_press')\n",
- " {\n",
- " this.canvas.focus();\n",
- " this.canvas_div.focus();\n",
- " }\n",
- "\n",
- " var x = canvas_pos.x * mpl.ratio;\n",
- " var y = canvas_pos.y * mpl.ratio;\n",
- "\n",
- " this.send_message(name, {x: x, y: y, button: event.button,\n",
- " step: event.step,\n",
- " guiEvent: simpleKeys(event)});\n",
- "\n",
- " /* This prevents the web browser from automatically changing to\n",
- " * the text insertion cursor when the button is pressed. We want\n",
- " * to control all of the cursor setting manually through the\n",
- " * 'cursor' event from matplotlib */\n",
- " event.preventDefault();\n",
- " return false;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._key_event_extra = function(event, name) {\n",
- " // Handle any extra behaviour associated with a key event\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.key_event = function(event, name) {\n",
- "\n",
- " // Prevent repeat events\n",
- " if (name == 'key_press')\n",
- " {\n",
- " if (event.which === this._key)\n",
- " return;\n",
- " else\n",
- " this._key = event.which;\n",
- " }\n",
- " if (name == 'key_release')\n",
- " this._key = null;\n",
- "\n",
- " var value = '';\n",
- " if (event.ctrlKey && event.which != 17)\n",
- " value += \"ctrl+\";\n",
- " if (event.altKey && event.which != 18)\n",
- " value += \"alt+\";\n",
- " if (event.shiftKey && event.which != 16)\n",
- " value += \"shift+\";\n",
- "\n",
- " value += 'k';\n",
- " value += event.which.toString();\n",
- "\n",
- " this._key_event_extra(event, name);\n",
- "\n",
- " this.send_message(name, {key: value,\n",
- " guiEvent: simpleKeys(event)});\n",
- " return false;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.toolbar_button_onclick = function(name) {\n",
- " if (name == 'download') {\n",
- " this.handle_save(this, null);\n",
- " } else {\n",
- " this.send_message(\"toolbar_button\", {name: name});\n",
- " }\n",
- "};\n",
- "\n",
- "mpl.figure.prototype.toolbar_button_onmouseover = function(tooltip) {\n",
- " this.message.textContent = tooltip;\n",
- "};\n",
- "mpl.toolbar_items = [[\"Home\", \"Reset original view\", \"fa fa-home icon-home\", \"home\"], [\"Back\", \"Back to previous view\", \"fa fa-arrow-left icon-arrow-left\", \"back\"], [\"Forward\", \"Forward to next view\", \"fa fa-arrow-right icon-arrow-right\", \"forward\"], [\"\", \"\", \"\", \"\"], [\"Pan\", \"Pan axes with left mouse, zoom with right\", \"fa fa-arrows icon-move\", \"pan\"], [\"Zoom\", \"Zoom to rectangle\", \"fa fa-square-o icon-check-empty\", \"zoom\"], [\"\", \"\", \"\", \"\"], [\"Download\", \"Download plot\", \"fa fa-floppy-o icon-save\", \"download\"]];\n",
- "\n",
- "mpl.extensions = [\"eps\", \"jpeg\", \"pdf\", \"png\", \"ps\", \"raw\", \"svg\", \"tif\"];\n",
- "\n",
- "mpl.default_extension = \"png\";var comm_websocket_adapter = function(comm) {\n",
- " // Create a \"websocket\"-like object which calls the given IPython comm\n",
- " // object with the appropriate methods. Currently this is a non binary\n",
- " // socket, so there is still some room for performance tuning.\n",
- " var ws = {};\n",
- "\n",
- " ws.close = function() {\n",
- " comm.close()\n",
- " };\n",
- " ws.send = function(m) {\n",
- " //console.log('sending', m);\n",
- " comm.send(m);\n",
- " };\n",
- " // Register the callback with on_msg.\n",
- " comm.on_msg(function(msg) {\n",
- " //console.log('receiving', msg['content']['data'], msg);\n",
- " // Pass the mpl event to the overridden (by mpl) onmessage function.\n",
- " ws.onmessage(msg['content']['data'])\n",
- " });\n",
- " return ws;\n",
- "}\n",
- "\n",
- "mpl.mpl_figure_comm = function(comm, msg) {\n",
- " // This is the function which gets called when the mpl process\n",
- " // starts-up an IPython Comm through the \"matplotlib\" channel.\n",
- "\n",
- " var id = msg.content.data.id;\n",
- " // Get hold of the div created by the display call when the Comm\n",
- " // socket was opened in Python.\n",
- " var element = $(\"#\" + id);\n",
- " var ws_proxy = comm_websocket_adapter(comm)\n",
- "\n",
- " function ondownload(figure, format) {\n",
- " window.open(figure.imageObj.src);\n",
- " }\n",
- "\n",
- " var fig = new mpl.figure(id, ws_proxy,\n",
- " ondownload,\n",
- " element.get(0));\n",
- "\n",
- " // Call onopen now - mpl needs it, as it is assuming we've passed it a real\n",
- " // web socket which is closed, not our websocket->open comm proxy.\n",
- " ws_proxy.onopen();\n",
- "\n",
- " fig.parent_element = element.get(0);\n",
- " fig.cell_info = mpl.find_output_cell(\"\");\n",
- " if (!fig.cell_info) {\n",
- " console.error(\"Failed to find cell for figure\", id, fig);\n",
- " return;\n",
- " }\n",
- "\n",
- " var output_index = fig.cell_info[2]\n",
- " var cell = fig.cell_info[0];\n",
- "\n",
- "};\n",
- "\n",
- "mpl.figure.prototype.handle_close = function(fig, msg) {\n",
- " var width = fig.canvas.width/mpl.ratio\n",
- " fig.root.unbind('remove')\n",
- "\n",
- " // Update the output cell to use the data from the current canvas.\n",
- " fig.push_to_output();\n",
- " var dataURL = fig.canvas.toDataURL();\n",
- " // Re-enable the keyboard manager in IPython - without this line, in FF,\n",
- " // the notebook keyboard shortcuts fail.\n",
- " IPython.keyboard_manager.enable()\n",
- " $(fig.parent_element).html('');\n",
- " fig.close_ws(fig, msg);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.close_ws = function(fig, msg){\n",
- " fig.send_message('closing', msg);\n",
- " // fig.ws.close()\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.push_to_output = function(remove_interactive) {\n",
- " // Turn the data on the canvas into data in the output cell.\n",
- " var width = this.canvas.width/mpl.ratio\n",
- " var dataURL = this.canvas.toDataURL();\n",
- " this.cell_info[1]['text/html'] = '';\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.updated_canvas_event = function() {\n",
- " // Tell IPython that the notebook contents must change.\n",
- " IPython.notebook.set_dirty(true);\n",
- " this.send_message(\"ack\", {});\n",
- " var fig = this;\n",
- " // Wait a second, then push the new image to the DOM so\n",
- " // that it is saved nicely (might be nice to debounce this).\n",
- " setTimeout(function () { fig.push_to_output() }, 1000);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_toolbar = function() {\n",
- " var fig = this;\n",
- "\n",
- " var nav_element = $('');\n",
- " nav_element.attr('style', 'width: 100%');\n",
- " this.root.append(nav_element);\n",
- "\n",
- " // Define a callback function for later on.\n",
- " function toolbar_event(event) {\n",
- " return fig.toolbar_button_onclick(event['data']);\n",
- " }\n",
- " function toolbar_mouse_event(event) {\n",
- " return fig.toolbar_button_onmouseover(event['data']);\n",
- " }\n",
- "\n",
- " for(var toolbar_ind in mpl.toolbar_items){\n",
- " var name = mpl.toolbar_items[toolbar_ind][0];\n",
- " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n",
- " var image = mpl.toolbar_items[toolbar_ind][2];\n",
- " var method_name = mpl.toolbar_items[toolbar_ind][3];\n",
- "\n",
- " if (!name) { continue; };\n",
- "\n",
- " var button = $('');\n",
- " button.click(method_name, toolbar_event);\n",
- " button.mouseover(tooltip, toolbar_mouse_event);\n",
- " nav_element.append(button);\n",
- " }\n",
- "\n",
- " // Add the status bar.\n",
- " var status_bar = $('');\n",
- " nav_element.append(status_bar);\n",
- " this.message = status_bar[0];\n",
- "\n",
- " // Add the close button to the window.\n",
- " var buttongrp = $('');\n",
- " var button = $('');\n",
- " button.click(function (evt) { fig.handle_close(fig, {}); } );\n",
- " button.mouseover('Stop Interaction', toolbar_mouse_event);\n",
- " buttongrp.append(button);\n",
- " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n",
- " titlebar.prepend(buttongrp);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._root_extra_style = function(el){\n",
- " var fig = this\n",
- " el.on(\"remove\", function(){\n",
- "\tfig.close_ws(fig, {});\n",
- " });\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._canvas_extra_style = function(el){\n",
- " // this is important to make the div 'focusable\n",
- " el.attr('tabindex', 0)\n",
- " // reach out to IPython and tell the keyboard manager to turn it's self\n",
- " // off when our div gets focus\n",
- "\n",
- " // location in version 3\n",
- " if (IPython.notebook.keyboard_manager) {\n",
- " IPython.notebook.keyboard_manager.register_events(el);\n",
- " }\n",
- " else {\n",
- " // location in version 2\n",
- " IPython.keyboard_manager.register_events(el);\n",
- " }\n",
- "\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._key_event_extra = function(event, name) {\n",
- " var manager = IPython.notebook.keyboard_manager;\n",
- " if (!manager)\n",
- " manager = IPython.keyboard_manager;\n",
- "\n",
- " // Check for shift+enter\n",
- " if (event.shiftKey && event.which == 13) {\n",
- " this.canvas_div.blur();\n",
- " event.shiftKey = false;\n",
- " // Send a \"J\" for go to next cell\n",
- " event.which = 74;\n",
- " event.keyCode = 74;\n",
- " manager.command_mode();\n",
- " manager.handle_keydown(event);\n",
- " }\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_save = function(fig, msg) {\n",
- " fig.ondownload(fig, null);\n",
- "}\n",
- "\n",
- "\n",
- "mpl.find_output_cell = function(html_output) {\n",
- " // Return the cell and output element which can be found *uniquely* in the notebook.\n",
- " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n",
- " // IPython event is triggered only after the cells have been serialised, which for\n",
- " // our purposes (turning an active figure into a static one), is too late.\n",
- " var cells = IPython.notebook.get_cells();\n",
- " var ncells = cells.length;\n",
- " for (var i=0; i= 3 moved mimebundle to data attribute of output\n",
- " data = data.data;\n",
- " }\n",
- " if (data['text/html'] == html_output) {\n",
- " return [cell, data, j];\n",
- " }\n",
- " }\n",
- " }\n",
- " }\n",
- "}\n",
- "\n",
- "// Register the function which deals with the matplotlib target/channel.\n",
- "// The kernel may be null if the page has been refreshed.\n",
- "if (IPython.notebook.kernel != null) {\n",
- " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n",
- "}\n"
- ],
"text/plain": [
""
]
@@ -1828,7 +286,7 @@
]
},
"metadata": {},
- "output_type": "display_data"
+ "output_type": "execute_result"
},
{
"name": "stderr",
@@ -1896,8 +354,8 @@
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {},
- "version_major": 2,
- "version_minor": 0
+ "version_major": 2.0,
+ "version_minor": 0.0
}
}
},
diff --git a/example/demo-temporal-test.ipynb b/example/demo-temporal-test.ipynb
deleted file mode 100644
index 162a0f0..0000000
--- a/example/demo-temporal-test.ipynb
+++ /dev/null
@@ -1,940 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# demo\n",
- "This is a demo for model temporal test and plot the result map and time series. Before this we trained a model using [train-lstm.py](train-lstm.py). By default the model will be saved in [here](output/CONUSv4f1/)."
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- " - Load packages and target SMAP observation"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 1,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "loading package hydroDL\n",
- "/home/kxf227/work/GitHUB/pyRnnSMAP/example/data/Subset/CONUSv4f1.csv\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/SMAP_AM.csv 0.04537510871887207\n"
- ]
- }
- ],
- "source": [
- "import os\n",
- "from hydroDL.data import dbCsv\n",
- "from hydroDL.post import plot, stat\n",
- "from hydroDL import master\n",
- "\n",
- "cDir = os.getcwd()\n",
- "rootDB = os.path.join(cDir, 'data')\n",
- "tRange = [20160401, 20170401]\n",
- "df = dbCsv.DataframeCsv(\n",
- " rootDB=rootDB, subset='CONUSv4f1', tRange=tRange)\n",
- "yt = df.getData(varT='SMAP_AM', doNorm=False, rmNan=False)\n",
- "yt = yt.squeeze()"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- " - Test the model in another year"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 2,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "/home/kxf227/work/GitHUB/pyRnnSMAP/example/data/Subset/CONUSv4f1.csv\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/APCP_FORA.csv 0.044591665267944336\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/DLWRF_FORA.csv 0.052686452865600586\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/DSWRF_FORA.csv 0.050998687744140625\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/TMP_2_FORA.csv 0.051717281341552734\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/SPFH_2_FORA.csv 0.05404353141784668\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/VGRD_10_FORA.csv 0.051822662353515625\n",
- "read /home/kxf227/work/GitHUB/pyRnnSMAP/example/data/CONUSv4f1/2016/UGRD_10_FORA.csv 0.0521092414855957\n"
- ]
- }
- ],
- "source": [
- "out = os.path.join(cDir, 'output', 'CONUSv4f1')\n",
- "yp = master.test(\n",
- " out, tRange=tRange, subset='CONUSv4f1')\n",
- "yp = yp.squeeze()"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- " - Calculate statistic metrices and plot the result. An interactive map will be generated, where users can click on map to show time series of observation and model predictions. "
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 3,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "application/javascript": [
- "/* Put everything inside the global mpl namespace */\n",
- "window.mpl = {};\n",
- "\n",
- "\n",
- "mpl.get_websocket_type = function() {\n",
- " if (typeof(WebSocket) !== 'undefined') {\n",
- " return WebSocket;\n",
- " } else if (typeof(MozWebSocket) !== 'undefined') {\n",
- " return MozWebSocket;\n",
- " } else {\n",
- " alert('Your browser does not have WebSocket support.' +\n",
- " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n",
- " 'Firefox 4 and 5 are also supported but you ' +\n",
- " 'have to enable WebSockets in about:config.');\n",
- " };\n",
- "}\n",
- "\n",
- "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n",
- " this.id = figure_id;\n",
- "\n",
- " this.ws = websocket;\n",
- "\n",
- " this.supports_binary = (this.ws.binaryType != undefined);\n",
- "\n",
- " if (!this.supports_binary) {\n",
- " var warnings = document.getElementById(\"mpl-warnings\");\n",
- " if (warnings) {\n",
- " warnings.style.display = 'block';\n",
- " warnings.textContent = (\n",
- " \"This browser does not support binary websocket messages. \" +\n",
- " \"Performance may be slow.\");\n",
- " }\n",
- " }\n",
- "\n",
- " this.imageObj = new Image();\n",
- "\n",
- " this.context = undefined;\n",
- " this.message = undefined;\n",
- " this.canvas = undefined;\n",
- " this.rubberband_canvas = undefined;\n",
- " this.rubberband_context = undefined;\n",
- " this.format_dropdown = undefined;\n",
- "\n",
- " this.image_mode = 'full';\n",
- "\n",
- " this.root = $('');\n",
- " this._root_extra_style(this.root)\n",
- " this.root.attr('style', 'display: inline-block');\n",
- "\n",
- " $(parent_element).append(this.root);\n",
- "\n",
- " this._init_header(this);\n",
- " this._init_canvas(this);\n",
- " this._init_toolbar(this);\n",
- "\n",
- " var fig = this;\n",
- "\n",
- " this.waiting = false;\n",
- "\n",
- " this.ws.onopen = function () {\n",
- " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n",
- " fig.send_message(\"send_image_mode\", {});\n",
- " if (mpl.ratio != 1) {\n",
- " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n",
- " }\n",
- " fig.send_message(\"refresh\", {});\n",
- " }\n",
- "\n",
- " this.imageObj.onload = function() {\n",
- " if (fig.image_mode == 'full') {\n",
- " // Full images could contain transparency (where diff images\n",
- " // almost always do), so we need to clear the canvas so that\n",
- " // there is no ghosting.\n",
- " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n",
- " }\n",
- " fig.context.drawImage(fig.imageObj, 0, 0);\n",
- " };\n",
- "\n",
- " this.imageObj.onunload = function() {\n",
- " fig.ws.close();\n",
- " }\n",
- "\n",
- " this.ws.onmessage = this._make_on_message_function(this);\n",
- "\n",
- " this.ondownload = ondownload;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_header = function() {\n",
- " var titlebar = $(\n",
- " '');\n",
- " var titletext = $(\n",
- " '');\n",
- " titlebar.append(titletext)\n",
- " this.root.append(titlebar);\n",
- " this.header = titletext[0];\n",
- "}\n",
- "\n",
- "\n",
- "\n",
- "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n",
- "\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n",
- "\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_canvas = function() {\n",
- " var fig = this;\n",
- "\n",
- " var canvas_div = $('');\n",
- "\n",
- " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n",
- "\n",
- " function canvas_keyboard_event(event) {\n",
- " return fig.key_event(event, event['data']);\n",
- " }\n",
- "\n",
- " canvas_div.keydown('key_press', canvas_keyboard_event);\n",
- " canvas_div.keyup('key_release', canvas_keyboard_event);\n",
- " this.canvas_div = canvas_div\n",
- " this._canvas_extra_style(canvas_div)\n",
- " this.root.append(canvas_div);\n",
- "\n",
- " var canvas = $('');\n",
- " canvas.addClass('mpl-canvas');\n",
- " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n",
- "\n",
- " this.canvas = canvas[0];\n",
- " this.context = canvas[0].getContext(\"2d\");\n",
- "\n",
- " var backingStore = this.context.backingStorePixelRatio ||\n",
- "\tthis.context.webkitBackingStorePixelRatio ||\n",
- "\tthis.context.mozBackingStorePixelRatio ||\n",
- "\tthis.context.msBackingStorePixelRatio ||\n",
- "\tthis.context.oBackingStorePixelRatio ||\n",
- "\tthis.context.backingStorePixelRatio || 1;\n",
- "\n",
- " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n",
- "\n",
- " var rubberband = $('');\n",
- " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n",
- "\n",
- " var pass_mouse_events = true;\n",
- "\n",
- " canvas_div.resizable({\n",
- " start: function(event, ui) {\n",
- " pass_mouse_events = false;\n",
- " },\n",
- " resize: function(event, ui) {\n",
- " fig.request_resize(ui.size.width, ui.size.height);\n",
- " },\n",
- " stop: function(event, ui) {\n",
- " pass_mouse_events = true;\n",
- " fig.request_resize(ui.size.width, ui.size.height);\n",
- " },\n",
- " });\n",
- "\n",
- " function mouse_event_fn(event) {\n",
- " if (pass_mouse_events)\n",
- " return fig.mouse_event(event, event['data']);\n",
- " }\n",
- "\n",
- " rubberband.mousedown('button_press', mouse_event_fn);\n",
- " rubberband.mouseup('button_release', mouse_event_fn);\n",
- " // Throttle sequential mouse events to 1 every 20ms.\n",
- " rubberband.mousemove('motion_notify', mouse_event_fn);\n",
- "\n",
- " rubberband.mouseenter('figure_enter', mouse_event_fn);\n",
- " rubberband.mouseleave('figure_leave', mouse_event_fn);\n",
- "\n",
- " canvas_div.on(\"wheel\", function (event) {\n",
- " event = event.originalEvent;\n",
- " event['data'] = 'scroll'\n",
- " if (event.deltaY < 0) {\n",
- " event.step = 1;\n",
- " } else {\n",
- " event.step = -1;\n",
- " }\n",
- " mouse_event_fn(event);\n",
- " });\n",
- "\n",
- " canvas_div.append(canvas);\n",
- " canvas_div.append(rubberband);\n",
- "\n",
- " this.rubberband = rubberband;\n",
- " this.rubberband_canvas = rubberband[0];\n",
- " this.rubberband_context = rubberband[0].getContext(\"2d\");\n",
- " this.rubberband_context.strokeStyle = \"#000000\";\n",
- "\n",
- " this._resize_canvas = function(width, height) {\n",
- " // Keep the size of the canvas, canvas container, and rubber band\n",
- " // canvas in synch.\n",
- " canvas_div.css('width', width)\n",
- " canvas_div.css('height', height)\n",
- "\n",
- " canvas.attr('width', width * mpl.ratio);\n",
- " canvas.attr('height', height * mpl.ratio);\n",
- " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n",
- "\n",
- " rubberband.attr('width', width);\n",
- " rubberband.attr('height', height);\n",
- " }\n",
- "\n",
- " // Set the figure to an initial 600x600px, this will subsequently be updated\n",
- " // upon first draw.\n",
- " this._resize_canvas(600, 600);\n",
- "\n",
- " // Disable right mouse context menu.\n",
- " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n",
- " return false;\n",
- " });\n",
- "\n",
- " function set_focus () {\n",
- " canvas.focus();\n",
- " canvas_div.focus();\n",
- " }\n",
- "\n",
- " window.setTimeout(set_focus, 100);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_toolbar = function() {\n",
- " var fig = this;\n",
- "\n",
- " var nav_element = $('')\n",
- " nav_element.attr('style', 'width: 100%');\n",
- " this.root.append(nav_element);\n",
- "\n",
- " // Define a callback function for later on.\n",
- " function toolbar_event(event) {\n",
- " return fig.toolbar_button_onclick(event['data']);\n",
- " }\n",
- " function toolbar_mouse_event(event) {\n",
- " return fig.toolbar_button_onmouseover(event['data']);\n",
- " }\n",
- "\n",
- " for(var toolbar_ind in mpl.toolbar_items) {\n",
- " var name = mpl.toolbar_items[toolbar_ind][0];\n",
- " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n",
- " var image = mpl.toolbar_items[toolbar_ind][2];\n",
- " var method_name = mpl.toolbar_items[toolbar_ind][3];\n",
- "\n",
- " if (!name) {\n",
- " // put a spacer in here.\n",
- " continue;\n",
- " }\n",
- " var button = $('');\n",
- " button.addClass('ui-button ui-widget ui-state-default ui-corner-all ' +\n",
- " 'ui-button-icon-only');\n",
- " button.attr('role', 'button');\n",
- " button.attr('aria-disabled', 'false');\n",
- " button.click(method_name, toolbar_event);\n",
- " button.mouseover(tooltip, toolbar_mouse_event);\n",
- "\n",
- " var icon_img = $('');\n",
- " icon_img.addClass('ui-button-icon-primary ui-icon');\n",
- " icon_img.addClass(image);\n",
- " icon_img.addClass('ui-corner-all');\n",
- "\n",
- " var tooltip_span = $('');\n",
- " tooltip_span.addClass('ui-button-text');\n",
- " tooltip_span.html(tooltip);\n",
- "\n",
- " button.append(icon_img);\n",
- " button.append(tooltip_span);\n",
- "\n",
- " nav_element.append(button);\n",
- " }\n",
- "\n",
- " var fmt_picker_span = $('');\n",
- "\n",
- " var fmt_picker = $('');\n",
- " fmt_picker.addClass('mpl-toolbar-option ui-widget ui-widget-content');\n",
- " fmt_picker_span.append(fmt_picker);\n",
- " nav_element.append(fmt_picker_span);\n",
- " this.format_dropdown = fmt_picker[0];\n",
- "\n",
- " for (var ind in mpl.extensions) {\n",
- " var fmt = mpl.extensions[ind];\n",
- " var option = $(\n",
- " '', {selected: fmt === mpl.default_extension}).html(fmt);\n",
- " fmt_picker.append(option)\n",
- " }\n",
- "\n",
- " // Add hover states to the ui-buttons\n",
- " $( \".ui-button\" ).hover(\n",
- " function() { $(this).addClass(\"ui-state-hover\");},\n",
- " function() { $(this).removeClass(\"ui-state-hover\");}\n",
- " );\n",
- "\n",
- " var status_bar = $('');\n",
- " nav_element.append(status_bar);\n",
- " this.message = status_bar[0];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.request_resize = function(x_pixels, y_pixels) {\n",
- " // Request matplotlib to resize the figure. Matplotlib will then trigger a resize in the client,\n",
- " // which will in turn request a refresh of the image.\n",
- " this.send_message('resize', {'width': x_pixels, 'height': y_pixels});\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.send_message = function(type, properties) {\n",
- " properties['type'] = type;\n",
- " properties['figure_id'] = this.id;\n",
- " this.ws.send(JSON.stringify(properties));\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.send_draw_message = function() {\n",
- " if (!this.waiting) {\n",
- " this.waiting = true;\n",
- " this.ws.send(JSON.stringify({type: \"draw\", figure_id: this.id}));\n",
- " }\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype.handle_save = function(fig, msg) {\n",
- " var format_dropdown = fig.format_dropdown;\n",
- " var format = format_dropdown.options[format_dropdown.selectedIndex].value;\n",
- " fig.ondownload(fig, format);\n",
- "}\n",
- "\n",
- "\n",
- "mpl.figure.prototype.handle_resize = function(fig, msg) {\n",
- " var size = msg['size'];\n",
- " if (size[0] != fig.canvas.width || size[1] != fig.canvas.height) {\n",
- " fig._resize_canvas(size[0], size[1]);\n",
- " fig.send_message(\"refresh\", {});\n",
- " };\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_rubberband = function(fig, msg) {\n",
- " var x0 = msg['x0'] / mpl.ratio;\n",
- " var y0 = (fig.canvas.height - msg['y0']) / mpl.ratio;\n",
- " var x1 = msg['x1'] / mpl.ratio;\n",
- " var y1 = (fig.canvas.height - msg['y1']) / mpl.ratio;\n",
- " x0 = Math.floor(x0) + 0.5;\n",
- " y0 = Math.floor(y0) + 0.5;\n",
- " x1 = Math.floor(x1) + 0.5;\n",
- " y1 = Math.floor(y1) + 0.5;\n",
- " var min_x = Math.min(x0, x1);\n",
- " var min_y = Math.min(y0, y1);\n",
- " var width = Math.abs(x1 - x0);\n",
- " var height = Math.abs(y1 - y0);\n",
- "\n",
- " fig.rubberband_context.clearRect(\n",
- " 0, 0, fig.canvas.width, fig.canvas.height);\n",
- "\n",
- " fig.rubberband_context.strokeRect(min_x, min_y, width, height);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_figure_label = function(fig, msg) {\n",
- " // Updates the figure title.\n",
- " fig.header.textContent = msg['label'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_cursor = function(fig, msg) {\n",
- " var cursor = msg['cursor'];\n",
- " switch(cursor)\n",
- " {\n",
- " case 0:\n",
- " cursor = 'pointer';\n",
- " break;\n",
- " case 1:\n",
- " cursor = 'default';\n",
- " break;\n",
- " case 2:\n",
- " cursor = 'crosshair';\n",
- " break;\n",
- " case 3:\n",
- " cursor = 'move';\n",
- " break;\n",
- " }\n",
- " fig.rubberband_canvas.style.cursor = cursor;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_message = function(fig, msg) {\n",
- " fig.message.textContent = msg['message'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_draw = function(fig, msg) {\n",
- " // Request the server to send over a new figure.\n",
- " fig.send_draw_message();\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_image_mode = function(fig, msg) {\n",
- " fig.image_mode = msg['mode'];\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.updated_canvas_event = function() {\n",
- " // Called whenever the canvas gets updated.\n",
- " this.send_message(\"ack\", {});\n",
- "}\n",
- "\n",
- "// A function to construct a web socket function for onmessage handling.\n",
- "// Called in the figure constructor.\n",
- "mpl.figure.prototype._make_on_message_function = function(fig) {\n",
- " return function socket_on_message(evt) {\n",
- " if (evt.data instanceof Blob) {\n",
- " /* FIXME: We get \"Resource interpreted as Image but\n",
- " * transferred with MIME type text/plain:\" errors on\n",
- " * Chrome. But how to set the MIME type? It doesn't seem\n",
- " * to be part of the websocket stream */\n",
- " evt.data.type = \"image/png\";\n",
- "\n",
- " /* Free the memory for the previous frames */\n",
- " if (fig.imageObj.src) {\n",
- " (window.URL || window.webkitURL).revokeObjectURL(\n",
- " fig.imageObj.src);\n",
- " }\n",
- "\n",
- " fig.imageObj.src = (window.URL || window.webkitURL).createObjectURL(\n",
- " evt.data);\n",
- " fig.updated_canvas_event();\n",
- " fig.waiting = false;\n",
- " return;\n",
- " }\n",
- " else if (typeof evt.data === 'string' && evt.data.slice(0, 21) == \"data:image/png;base64\") {\n",
- " fig.imageObj.src = evt.data;\n",
- " fig.updated_canvas_event();\n",
- " fig.waiting = false;\n",
- " return;\n",
- " }\n",
- "\n",
- " var msg = JSON.parse(evt.data);\n",
- " var msg_type = msg['type'];\n",
- "\n",
- " // Call the \"handle_{type}\" callback, which takes\n",
- " // the figure and JSON message as its only arguments.\n",
- " try {\n",
- " var callback = fig[\"handle_\" + msg_type];\n",
- " } catch (e) {\n",
- " console.log(\"No handler for the '\" + msg_type + \"' message type: \", msg);\n",
- " return;\n",
- " }\n",
- "\n",
- " if (callback) {\n",
- " try {\n",
- " // console.log(\"Handling '\" + msg_type + \"' message: \", msg);\n",
- " callback(fig, msg);\n",
- " } catch (e) {\n",
- " console.log(\"Exception inside the 'handler_\" + msg_type + \"' callback:\", e, e.stack, msg);\n",
- " }\n",
- " }\n",
- " };\n",
- "}\n",
- "\n",
- "// from http://stackoverflow.com/questions/1114465/getting-mouse-location-in-canvas\n",
- "mpl.findpos = function(e) {\n",
- " //this section is from http://www.quirksmode.org/js/events_properties.html\n",
- " var targ;\n",
- " if (!e)\n",
- " e = window.event;\n",
- " if (e.target)\n",
- " targ = e.target;\n",
- " else if (e.srcElement)\n",
- " targ = e.srcElement;\n",
- " if (targ.nodeType == 3) // defeat Safari bug\n",
- " targ = targ.parentNode;\n",
- "\n",
- " // jQuery normalizes the pageX and pageY\n",
- " // pageX,Y are the mouse positions relative to the document\n",
- " // offset() returns the position of the element relative to the document\n",
- " var x = e.pageX - $(targ).offset().left;\n",
- " var y = e.pageY - $(targ).offset().top;\n",
- "\n",
- " return {\"x\": x, \"y\": y};\n",
- "};\n",
- "\n",
- "/*\n",
- " * return a copy of an object with only non-object keys\n",
- " * we need this to avoid circular references\n",
- " * http://stackoverflow.com/a/24161582/3208463\n",
- " */\n",
- "function simpleKeys (original) {\n",
- " return Object.keys(original).reduce(function (obj, key) {\n",
- " if (typeof original[key] !== 'object')\n",
- " obj[key] = original[key]\n",
- " return obj;\n",
- " }, {});\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.mouse_event = function(event, name) {\n",
- " var canvas_pos = mpl.findpos(event)\n",
- "\n",
- " if (name === 'button_press')\n",
- " {\n",
- " this.canvas.focus();\n",
- " this.canvas_div.focus();\n",
- " }\n",
- "\n",
- " var x = canvas_pos.x * mpl.ratio;\n",
- " var y = canvas_pos.y * mpl.ratio;\n",
- "\n",
- " this.send_message(name, {x: x, y: y, button: event.button,\n",
- " step: event.step,\n",
- " guiEvent: simpleKeys(event)});\n",
- "\n",
- " /* This prevents the web browser from automatically changing to\n",
- " * the text insertion cursor when the button is pressed. We want\n",
- " * to control all of the cursor setting manually through the\n",
- " * 'cursor' event from matplotlib */\n",
- " event.preventDefault();\n",
- " return false;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._key_event_extra = function(event, name) {\n",
- " // Handle any extra behaviour associated with a key event\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.key_event = function(event, name) {\n",
- "\n",
- " // Prevent repeat events\n",
- " if (name == 'key_press')\n",
- " {\n",
- " if (event.which === this._key)\n",
- " return;\n",
- " else\n",
- " this._key = event.which;\n",
- " }\n",
- " if (name == 'key_release')\n",
- " this._key = null;\n",
- "\n",
- " var value = '';\n",
- " if (event.ctrlKey && event.which != 17)\n",
- " value += \"ctrl+\";\n",
- " if (event.altKey && event.which != 18)\n",
- " value += \"alt+\";\n",
- " if (event.shiftKey && event.which != 16)\n",
- " value += \"shift+\";\n",
- "\n",
- " value += 'k';\n",
- " value += event.which.toString();\n",
- "\n",
- " this._key_event_extra(event, name);\n",
- "\n",
- " this.send_message(name, {key: value,\n",
- " guiEvent: simpleKeys(event)});\n",
- " return false;\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.toolbar_button_onclick = function(name) {\n",
- " if (name == 'download') {\n",
- " this.handle_save(this, null);\n",
- " } else {\n",
- " this.send_message(\"toolbar_button\", {name: name});\n",
- " }\n",
- "};\n",
- "\n",
- "mpl.figure.prototype.toolbar_button_onmouseover = function(tooltip) {\n",
- " this.message.textContent = tooltip;\n",
- "};\n",
- "mpl.toolbar_items = [[\"Home\", \"Reset original view\", \"fa fa-home icon-home\", \"home\"], [\"Back\", \"Back to previous view\", \"fa fa-arrow-left icon-arrow-left\", \"back\"], [\"Forward\", \"Forward to next view\", \"fa fa-arrow-right icon-arrow-right\", \"forward\"], [\"\", \"\", \"\", \"\"], [\"Pan\", \"Pan axes with left mouse, zoom with right\", \"fa fa-arrows icon-move\", \"pan\"], [\"Zoom\", \"Zoom to rectangle\", \"fa fa-square-o icon-check-empty\", \"zoom\"], [\"\", \"\", \"\", \"\"], [\"Download\", \"Download plot\", \"fa fa-floppy-o icon-save\", \"download\"]];\n",
- "\n",
- "mpl.extensions = [\"eps\", \"jpeg\", \"pdf\", \"png\", \"ps\", \"raw\", \"svg\", \"tif\"];\n",
- "\n",
- "mpl.default_extension = \"png\";var comm_websocket_adapter = function(comm) {\n",
- " // Create a \"websocket\"-like object which calls the given IPython comm\n",
- " // object with the appropriate methods. Currently this is a non binary\n",
- " // socket, so there is still some room for performance tuning.\n",
- " var ws = {};\n",
- "\n",
- " ws.close = function() {\n",
- " comm.close()\n",
- " };\n",
- " ws.send = function(m) {\n",
- " //console.log('sending', m);\n",
- " comm.send(m);\n",
- " };\n",
- " // Register the callback with on_msg.\n",
- " comm.on_msg(function(msg) {\n",
- " //console.log('receiving', msg['content']['data'], msg);\n",
- " // Pass the mpl event to the overridden (by mpl) onmessage function.\n",
- " ws.onmessage(msg['content']['data'])\n",
- " });\n",
- " return ws;\n",
- "}\n",
- "\n",
- "mpl.mpl_figure_comm = function(comm, msg) {\n",
- " // This is the function which gets called when the mpl process\n",
- " // starts-up an IPython Comm through the \"matplotlib\" channel.\n",
- "\n",
- " var id = msg.content.data.id;\n",
- " // Get hold of the div created by the display call when the Comm\n",
- " // socket was opened in Python.\n",
- " var element = $(\"#\" + id);\n",
- " var ws_proxy = comm_websocket_adapter(comm)\n",
- "\n",
- " function ondownload(figure, format) {\n",
- " window.open(figure.imageObj.src);\n",
- " }\n",
- "\n",
- " var fig = new mpl.figure(id, ws_proxy,\n",
- " ondownload,\n",
- " element.get(0));\n",
- "\n",
- " // Call onopen now - mpl needs it, as it is assuming we've passed it a real\n",
- " // web socket which is closed, not our websocket->open comm proxy.\n",
- " ws_proxy.onopen();\n",
- "\n",
- " fig.parent_element = element.get(0);\n",
- " fig.cell_info = mpl.find_output_cell(\"\");\n",
- " if (!fig.cell_info) {\n",
- " console.error(\"Failed to find cell for figure\", id, fig);\n",
- " return;\n",
- " }\n",
- "\n",
- " var output_index = fig.cell_info[2]\n",
- " var cell = fig.cell_info[0];\n",
- "\n",
- "};\n",
- "\n",
- "mpl.figure.prototype.handle_close = function(fig, msg) {\n",
- " var width = fig.canvas.width/mpl.ratio\n",
- " fig.root.unbind('remove')\n",
- "\n",
- " // Update the output cell to use the data from the current canvas.\n",
- " fig.push_to_output();\n",
- " var dataURL = fig.canvas.toDataURL();\n",
- " // Re-enable the keyboard manager in IPython - without this line, in FF,\n",
- " // the notebook keyboard shortcuts fail.\n",
- " IPython.keyboard_manager.enable()\n",
- " $(fig.parent_element).html('');\n",
- " fig.close_ws(fig, msg);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.close_ws = function(fig, msg){\n",
- " fig.send_message('closing', msg);\n",
- " // fig.ws.close()\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.push_to_output = function(remove_interactive) {\n",
- " // Turn the data on the canvas into data in the output cell.\n",
- " var width = this.canvas.width/mpl.ratio\n",
- " var dataURL = this.canvas.toDataURL();\n",
- " this.cell_info[1]['text/html'] = '';\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.updated_canvas_event = function() {\n",
- " // Tell IPython that the notebook contents must change.\n",
- " IPython.notebook.set_dirty(true);\n",
- " this.send_message(\"ack\", {});\n",
- " var fig = this;\n",
- " // Wait a second, then push the new image to the DOM so\n",
- " // that it is saved nicely (might be nice to debounce this).\n",
- " setTimeout(function () { fig.push_to_output() }, 1000);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._init_toolbar = function() {\n",
- " var fig = this;\n",
- "\n",
- " var nav_element = $('')\n",
- " nav_element.attr('style', 'width: 100%');\n",
- " this.root.append(nav_element);\n",
- "\n",
- " // Define a callback function for later on.\n",
- " function toolbar_event(event) {\n",
- " return fig.toolbar_button_onclick(event['data']);\n",
- " }\n",
- " function toolbar_mouse_event(event) {\n",
- " return fig.toolbar_button_onmouseover(event['data']);\n",
- " }\n",
- "\n",
- " for(var toolbar_ind in mpl.toolbar_items){\n",
- " var name = mpl.toolbar_items[toolbar_ind][0];\n",
- " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n",
- " var image = mpl.toolbar_items[toolbar_ind][2];\n",
- " var method_name = mpl.toolbar_items[toolbar_ind][3];\n",
- "\n",
- " if (!name) { continue; };\n",
- "\n",
- " var button = $('');\n",
- " button.click(method_name, toolbar_event);\n",
- " button.mouseover(tooltip, toolbar_mouse_event);\n",
- " nav_element.append(button);\n",
- " }\n",
- "\n",
- " // Add the status bar.\n",
- " var status_bar = $('');\n",
- " nav_element.append(status_bar);\n",
- " this.message = status_bar[0];\n",
- "\n",
- " // Add the close button to the window.\n",
- " var buttongrp = $('');\n",
- " var button = $('');\n",
- " button.click(function (evt) { fig.handle_close(fig, {}); } );\n",
- " button.mouseover('Stop Interaction', toolbar_mouse_event);\n",
- " buttongrp.append(button);\n",
- " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n",
- " titlebar.prepend(buttongrp);\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._root_extra_style = function(el){\n",
- " var fig = this\n",
- " el.on(\"remove\", function(){\n",
- "\tfig.close_ws(fig, {});\n",
- " });\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._canvas_extra_style = function(el){\n",
- " // this is important to make the div 'focusable\n",
- " el.attr('tabindex', 0)\n",
- " // reach out to IPython and tell the keyboard manager to turn it's self\n",
- " // off when our div gets focus\n",
- "\n",
- " // location in version 3\n",
- " if (IPython.notebook.keyboard_manager) {\n",
- " IPython.notebook.keyboard_manager.register_events(el);\n",
- " }\n",
- " else {\n",
- " // location in version 2\n",
- " IPython.keyboard_manager.register_events(el);\n",
- " }\n",
- "\n",
- "}\n",
- "\n",
- "mpl.figure.prototype._key_event_extra = function(event, name) {\n",
- " var manager = IPython.notebook.keyboard_manager;\n",
- " if (!manager)\n",
- " manager = IPython.keyboard_manager;\n",
- "\n",
- " // Check for shift+enter\n",
- " if (event.shiftKey && event.which == 13) {\n",
- " this.canvas_div.blur();\n",
- " event.shiftKey = false;\n",
- " // Send a \"J\" for go to next cell\n",
- " event.which = 74;\n",
- " event.keyCode = 74;\n",
- " manager.command_mode();\n",
- " manager.handle_keydown(event);\n",
- " }\n",
- "}\n",
- "\n",
- "mpl.figure.prototype.handle_save = function(fig, msg) {\n",
- " fig.ondownload(fig, null);\n",
- "}\n",
- "\n",
- "\n",
- "mpl.find_output_cell = function(html_output) {\n",
- " // Return the cell and output element which can be found *uniquely* in the notebook.\n",
- " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n",
- " // IPython event is triggered only after the cells have been serialised, which for\n",
- " // our purposes (turning an active figure into a static one), is too late.\n",
- " var cells = IPython.notebook.get_cells();\n",
- " var ncells = cells.length;\n",
- " for (var i=0; i= 3 moved mimebundle to data attribute of output\n",
- " data = data.data;\n",
- " }\n",
- " if (data['text/html'] == html_output) {\n",
- " return [cell, data, j];\n",
- " }\n",
- " }\n",
- " }\n",
- " }\n",
- "}\n",
- "\n",
- "// Register the function which deals with the matplotlib target/channel.\n",
- "// The kernel may be null if the page has been refreshed.\n",
- "if (IPython.notebook.kernel != null) {\n",
- " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n",
- "}\n"
- ],
- "text/plain": [
- ""
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- },
- {
- "data": {
- "text/html": [
- ""
- ],
- "text/plain": [
- ""
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "# calculate stat\n",
- "statErr = stat.statError(yp, yt)\n",
- "dataGrid = [statErr['RMSE'], statErr['Corr']]\n",
- "dataTs = [yp, yt]\n",
- "t = df.getT()\n",
- "crd = df.getGeo()\n",
- "mapNameLst = ['RMSE', 'Correlation']\n",
- "tsNameLst = ['LSTM', 'SMAP']\n",
- "colorMap = None\n",
- "colorTs = None\n",
- "# plot map and time series\n",
- "%matplotlib notebook\n",
- "plot.plotTsMap(\n",
- " dataGrid,\n",
- " dataTs,\n",
- " crd,\n",
- " t,\n",
- " colorMap=colorMap,\n",
- " mapNameLst=mapNameLst,\n",
- " tsNameLst=tsNameLst,\n",
- " figsize=[8,4])"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.6.8"
- },
- "widgets": {
- "application/vnd.jupyter.widget-state+json": {
- "state": {},
- "version_major": 2,
- "version_minor": 0
- }
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/example/output/CONUSv4f1/model_Ep200.pt b/example/output/CONUSv4f1/model_Ep200.pt
deleted file mode 100644
index 5911512..0000000
Binary files a/example/output/CONUSv4f1/model_Ep200.pt and /dev/null differ
diff --git a/example/output/CONUSv4f1/model_Ep300.pt b/example/output/CONUSv4f1/model_Ep300.pt
deleted file mode 100644
index 45d1333..0000000
Binary files a/example/output/CONUSv4f1/model_Ep300.pt and /dev/null differ
diff --git a/example/output/CONUSv4f1/model_Ep400.pt b/example/output/CONUSv4f1/model_Ep400.pt
deleted file mode 100644
index 2a3c555..0000000
Binary files a/example/output/CONUSv4f1/model_Ep400.pt and /dev/null differ
diff --git a/example/output/CONUSv4f1/model_Ep500.pt b/example/output/CONUSv4f1/model_Ep500.pt
deleted file mode 100644
index 19ad885..0000000
Binary files a/example/output/CONUSv4f1/model_Ep500.pt and /dev/null differ
diff --git a/example/output/CONUSv4f1/run.csv b/example/output/CONUSv4f1/run.csv
index 1456ff9..c816192 100644
--- a/example/output/CONUSv4f1/run.csv
+++ b/example/output/CONUSv4f1/run.csv
@@ -1904,8 +1904,3 @@ Epoch 97 Loss 0.328 time 2.71
Epoch 98 Loss 0.330 time 2.72
Epoch 99 Loss 0.328 time 2.71
Epoch 100 Loss 0.328 time 3.23
-Epoch 1 Loss 0.721 time 91.86
-Epoch 2 Loss 0.604 time 95.32
-Epoch 3 Loss 0.567 time 98.45
-Epoch 4 Loss 0.540 time 96.12
-Epoch 5 Loss 0.522 time 104.41
diff --git a/example/output/CONUSv4f1_multi/SMAP_AMSigmaX_CONUSv4f1_20160401_20170401_ep100.csv b/example/output/CONUSv4f1_multi/SMAP_AMSigmaX_CONUSv4f1_20160401_20170401_ep100.csv
new file mode 100644
index 0000000..f8722cc
--- /dev/null
+++ b/example/output/CONUSv4f1_multi/SMAP_AMSigmaX_CONUSv4f1_20160401_20170401_ep100.csv
@@ -0,0 +1,412 @@
+-2.0600946,-2.4587967,-2.543807,-2.0352356,-2.3427866,-2.2384212,-2.6314902,-2.861674,-2.755844,-2.7637217,-2.7115178,-2.184197,-2.3867245,-2.3948746,-2.5815153,-2.526286,-2.5892706,-3.0020657,-2.958488,-2.906165,-2.7973986,-2.117028,-2.0977435,-2.0887713,-2.4647126,-2.5229537,-2.56819,-2.645865,-2.5608907,-2.6527512,-2.706723,-2.7982984,-2.4528894,-2.7741165,-2.8345313,-2.861395,-2.9630158,-2.832016,-2.807578,-2.8680348,-2.8586855,-2.8559637,-2.905453,-2.9602149,-2.869824,-2.8546262,-2.870352,-2.7990105,-2.1479793,-2.7163675,-2.9797661,-2.4153798,-2.9304745,-3.041541,-2.9499316,-2.9411721,-2.426773,-2.0770364,-2.662344,-3.0327787,-3.0619004,-2.6906786,-2.2659793,-2.92939,-2.906406,-2.942154,-3.0121276,-3.009315,-2.2162945,-2.8776686,-2.367021,-2.6210833,-2.9380906,-2.6863203,-2.327687,-2.492737,-2.81091,-2.9978414,-2.5143213,-2.518166,-3.0438032,-3.0064614,-2.9408274,-1.7966033,-2.6900542,-2.8852386,-3.0210714,-2.9940724,-3.004518,-3.008585,-3.0373788,-2.983151,-3.082203,-2.7699773,-2.6961513,-2.6198206,-3.0529666,-2.240229,-2.4520874,-2.6577978,-2.7700176,-3.071744,-3.0024366,-3.1155126,-2.9959726,-3.0868487,-2.9335022,-2.393719,-2.740817,-2.563088,-3.0065484,-2.965359,-2.994912,-3.0312455,-3.0469599,-3.0409684,-3.0601745,-3.0705745,-3.093536,-3.0873206,-3.0999262,-3.1251988,-3.1255114,-2.1047587,-2.9574873,-3.0017428,-3.007028,-3.0107822,-2.2396586,-2.5118284,-2.877518,-2.9820502,-2.9712164,-2.9623737,-3.005118,-3.0380702,-3.040572,-3.0491369,-3.0558953,-3.0706754,-3.0920796,-3.1524987,-2.7846642,-3.0526023,-3.0923314,-3.0732422,-3.0667417,-3.0989375,-3.0871606,-2.815836,-3.0088081,-3.1278715,-1.8340445,-2.0743356,-2.5772533,-2.8601375,-3.119632,-3.0025382,-2.6655073,-2.6674438,-2.816278,-3.025444,-3.0799236,-3.171023,-3.1513586,-3.1899862,-3.2065325,-3.1948285,-3.1092205,-1.8465275,-2.597887,-2.367959,-2.7563114,-3.0034125,-3.1203363,-2.3114533,-2.9288175,-2.94203,-3.21991,-3.1779847,-3.192529,-3.2071888,-3.1966972,-2.957654,-2.6729665,-3.0189517,-2.3156862,-2.753264,-2.7665062,-1.996353,-2.33379,-2.7632804,-2.7583447,-2.717816,-2.6748993,-1.9388201,-1.999199,-2.4057007,-2.2485921,-2.5964894,-2.582552,-2.524562,-2.327126,-2.5350466,-2.5766394,-2.6558068,-2.83367,-2.506945,-2.5831523,-2.2218075,-2.770842,-2.595944,-2.735722,-2.5767837,-2.6209626,-2.0021427,-2.171505,-2.7121263,-2.0052695,-2.5793526,-2.1606197,-2.4085522,-2.5422845,-2.7788599,-2.6234202,-2.205658,-2.4562683,-2.2728405,-2.5027308,-2.3816743,-2.3505523,-2.4604316,-2.6168158,-2.089797,-2.5200863,-2.2750483,-2.2848039,-2.2719238,-2.5110104,-2.3967662,-2.2693272,-2.1546307,-2.097208,-1.893078,-2.0325582,-1.698444,-1.8703452,-1.8196267,-1.7921715,-1.8224119,-2.0523224,-2.0995219,-1.8076522,-1.7663083,-1.7923737,-1.8548857,-1.9769114,-2.0529466,-2.0724068,-2.1135972,-2.0781596,-1.7745085,-1.2737404,-1.3484855,-1.4849085,-1.4439709,-1.5749079,-1.577145,-1.6970443,-1.4829627,-1.3176135,-1.4559375,-1.2668108,-1.4901525,-1.6311194,-1.6452911,-1.73455,-1.8236299,-1.8133339,-1.7531223,-1.5756822,-1.6513773,-1.5278,-1.3311186,-1.439529,-1.6959435,-1.7011162,-1.6344166,-1.5854005,-1.59353,-1.306146,-1.1142226,-1.4972627,-1.4824891,-1.3181041,-1.450833,-1.4748334,-1.5148102,-1.5804299,-1.5284308,-1.5575582,-1.5577472,-1.5407914,-1.2167572,-1.4628313,-1.6833591,-1.7774521,-1.8189429,-1.6625267,-1.3695085,-1.4305052,-1.5325745,-1.5494894,-1.603063,-1.155737,-1.3052565,-1.4891652,-1.3785411,-1.4625343,-1.5264908,-1.0650355,-1.3831701,-1.5629162,-1.5214931,-1.3470795,-1.3516434,-1.3775917,-1.5014768,-1.5771173,-1.5841855,-1.5837127,-1.6046857,-1.6515669,-1.6224393,-1.3023566,-1.3545616,-1.1716192,-1.5332989,-1.5410804,-1.5696596,-1.3822112,-1.4331945,-1.4380225,-1.2446444,-1.3288759,-1.2113417,-1.1619502,-1.2196071,-1.28416,-1.3349109,-1.4564022,-1.3260998,-1.2882705,-1.4603271,-1.2067351,-1.2436117,-1.3236895,-1.2662035,-1.3154947,-1.505277,-1.2597367,-1.0665547,-1.2310137,-1.4859675,-1.375302
+-0.7826113,-0.98166126,-1.1407098,-0.48869672,-1.0475503,-1.1148564,-1.171917,-1.4147404,-1.3744191,-1.3094858,-1.2800736,-1.2771387,-0.7461061,-0.7215896,-1.0400031,-1.1955036,-1.2218832,-1.2808245,-1.4662054,-1.5089635,-1.47735,-0.80410886,-1.136967,-1.0954497,-1.1408325,-1.1307456,-1.198954,-1.4128624,-1.4851166,-1.4111556,-1.3794523,-1.4314209,-1.5946995,-1.5078961,-1.4397408,-1.4461714,-1.5596216,-1.535196,-1.4111257,-1.4930356,-1.6819236,-1.9213246,-2.0339525,-0.42209595,-1.4857231,-1.5686742,-1.5251355,-1.6076955,-1.4689893,-1.4802376,-1.4940544,-1.4395934,-1.5291164,-1.660622,-1.6172627,-1.6308514,-1.617761,-1.7094408,-1.8835121,-1.8912472,-2.121806,-2.351464,-1.5774179,-1.9350302,-2.2076304,-2.3876457,-2.575245,-2.6347978,-2.4568543,-2.3177893,-1.7114996,-1.6194549,-1.8337427,-2.04528,-0.8772697,-1.4350885,-1.4554781,-1.6665415,-1.6648932,-1.7934903,-1.9944609,-2.0429142,-2.1615446,-1.2422112,-1.4629167,-1.6392052,-1.8228819,-2.0623968,-2.1883092,-2.1936667,-2.2352128,-2.333878,-2.4578798,-2.5233078,-2.5599642,-2.5927057,-2.6604276,-2.6830332,-1.8199464,-1.5015686,-1.1336673,-1.6626145,-1.8279773,-2.0505686,-2.1588893,-2.2174551,-2.3872678,-2.5078967,-2.567923,-2.6157806,-2.8041277,-2.945795,-2.8801599,-2.9824967,-3.0546877,-3.12971,-3.1325498,-3.1227393,-3.184902,-3.2415934,-3.2332516,-3.2144895,-3.2633646,-3.205081,-3.1946402,-3.2677147,-3.2676685,-3.2563958,-3.2271292,-2.203114,-2.299042,-2.4574385,-2.7876048,-3.0037036,-3.108362,-3.1531496,-3.1442761,-3.1866071,-3.221867,-3.2845438,-3.3620818,-3.324626,-3.2866275,-3.3094652,-3.3165188,-3.394445,-3.3913503,-3.3618298,-3.2725825,-3.3151805,-3.2906585,-3.2456725,-3.0051224,-3.0444722,-2.0252347,-2.0159242,-2.41818,-2.657479,-2.6297867,-2.820356,-2.988765,-2.9798615,-3.0988173,-3.1377592,-3.1169593,-3.1336055,-3.1040535,-3.1911764,-3.2908282,-1.6837438,-1.5618916,-2.1652875,-2.4987798,-2.6991763,-2.7985044,-2.0038612,-2.4520507,-2.8147743,-2.9600234,-3.015112,-2.998097,-3.0523622,-3.076229,-1.5537647,-1.159422,-1.4386598,-1.4249119,-1.1653477,-1.3064135,-1.3285435,-1.3405956,-1.4142569,-1.6945039,-1.5629371,-1.6667091,-1.0907723,-1.0163507,-1.0703866,-1.2019318,-1.1117573,-1.4298013,-1.1942362,-1.4631191,-1.4494349,-1.5560147,-1.5663896,-1.6541358,-1.6346658,-1.5803614,-1.7130367,-1.5162504,-1.5319129,-1.6208248,-1.5347139,-1.4686872,-1.3312998,-1.6334516,-1.5669732,-1.7421563,-1.7503097,-1.474775,-1.4800407,-1.550815,-1.6910481,-1.6860411,-1.7668201,-1.7493138,-1.6339998,-1.4503056,-1.5525242,-1.4617118,-1.3798393,-1.5384121,-1.6173829,-1.6951967,-1.614564,-1.412453,-1.2303717,-1.2175673,-1.5006791,-1.4200572,-1.4128346,-1.3936551,-1.2985741,-1.375968,-1.2244436,-1.3381337,-1.4416748,-1.1956509,-1.1003895,-0.90111554,-0.49759856,-0.9100118,-1.0126463,-1.0498354,-1.0697945,-0.9348354,-0.6727689,-0.88194144,-0.9171694,-0.7968421,-0.95875496,-0.5976529,-0.94510764,-0.7843341,-1.0454293,-0.9624366,-0.9256776,-0.8409363,-0.88068855,-0.7660709,-0.7562123,-0.7765899,-1.0968881,-0.9141685,-0.68088144,-0.78636014,-0.6642671,-0.8209237,-0.86653394,-0.8146674,-0.5887726,-0.5500832,-0.87553793,-0.86415875,-0.98255104,-0.52631634,-0.665423,-0.8262488,-0.82436794,-0.8599115,-0.68755716,-1.1124202,-1.1256707,-0.8771706,-0.909818,-0.7774354,-0.81257105,-0.84935373,-1.0235682,-1.0537335,-0.87014514,-0.8930917,-0.9801914,-1.0537331,-1.1499815,-0.99687904,-1.2041812,-0.6737089,-0.95775086,-0.91530484,-1.0393498,-1.1920261,-1.0123211,-1.1824826,-1.2670351,-0.9323752,-0.71403074,-0.8093551,-1.0107228,-1.0379186,-1.0657433,-1.3221511,-1.3759965,-0.95586747,-1.0169429,-1.1650391,-1.1765288,-0.9705493,-0.57761526,-0.5195765,-0.46469912,-0.46829364,-0.80473083,-0.6632276,-0.591391,-0.58385265,-0.49886915,-0.5933429,-0.499459,-0.8125275,-0.8883935,-1.0904471,-1.0688471,-1.1866688,-1.127921,-1.3470086,-1.4111665,-1.270105,-1.0679197,-1.0068225,-1.2154003,-0.87111056,-0.9902746,-1.0455524,-1.2313155,-0.9933799,-0.98173493,-1.0406843,-0.9443988,-1.0138612,-0.8920874,-1.2026354,-1.389352,-1.1133413
+-1.0882798,-1.4185537,-1.5732983,-1.4126061,-1.6453091,-1.5015723,-1.6000134,-1.917569,-1.9974836,-2.0906339,-2.086298,-1.9211761,-1.5070454,-0.77438587,-1.6171485,-1.4013747,-1.2704011,-1.419517,-1.6608486,-1.7372729,-1.715495,-1.1313056,-1.5375851,-1.4873405,-1.8167796,-1.8109605,-1.389362,-1.7792988,-1.6817294,-1.7942681,-1.595507,-1.509065,-1.7009884,-1.6281985,-1.8618585,-1.8399795,-1.8075047,-1.9274031,-1.995211,-1.9003664,-1.8758875,-2.033421,-2.0744653,-1.5833298,-1.8841406,-1.9354419,-2.0068293,-2.022197,-1.8381582,-1.9796594,-2.1101756,-1.8565867,-1.756919,-1.9231547,-1.9930702,-2.0425553,-2.0733633,-2.0101423,-2.045642,-1.996992,-2.0030456,-2.0881524,-2.1712193,-2.2149184,-2.3650656,-2.5056515,-2.538721,-2.6771266,-2.6503704,-2.5957444,-2.4881525,-2.60551,-2.620817,-2.6980991,-1.3117734,-2.402556,-1.820356,-2.1831589,-1.811452,-2.174828,-2.21753,-2.2591667,-2.321621,-2.3928378,-2.4679682,-2.5240812,-2.6741328,-2.7940965,-2.7838182,-2.7627738,-2.8007026,-2.8772407,-2.9248915,-2.9651897,-2.9751506,-2.9868298,-2.9947457,-3.0152614,-0.6550006,-1.8240179,-1.8939186,-2.3034048,-2.3845139,-2.4447489,-2.546959,-2.6243148,-2.6919582,-2.7281027,-2.8009925,-2.8442936,-2.9002323,-2.9336212,-2.9285195,-2.951972,-3.031392,-3.0734167,-3.0865846,-3.1254306,-3.1976113,-3.2446914,-3.217585,-3.1781416,-3.2122216,-3.1501389,-3.2014632,-3.3081317,-3.2245166,-3.189776,-3.2319565,-3.1820939,-3.1032205,-3.1944072,-3.2936504,-3.3993168,-3.3878427,-3.299209,-3.307322,-3.337964,-3.3551984,-3.443954,-3.5991628,-3.5543122,-3.4387093,-3.413422,-3.4621925,-3.520801,-3.6393669,-3.698715,-3.6296973,-3.6322525,-3.5873551,-3.4689274,-3.4168932,-3.3728018,-3.2824337,-3.3305917,-3.322391,-3.3736649,-3.366319,-3.1151505,-3.3061585,-3.4043727,-3.5160327,-3.456771,-3.3640013,-3.4177296,-3.4145775,-3.511936,-3.5996566,-3.5417671,-3.3593388,-3.339592,-3.374403,-3.3963723,-3.2121966,-2.8112264,-2.8174956,-3.2585433,-3.457828,-3.4744787,-3.464894,-3.4665258,-3.4688735,-0.92806023,-1.596369,-1.8885999,-1.7152804,-1.6682557,-1.8922614,-1.9498276,-2.2372918,-2.381867,-2.3597796,-2.121877,-2.4840763,-1.1720203,-1.1044645,-1.2355331,-1.206046,-1.7177526,-1.7862102,-1.6661004,-1.7957987,-1.8567654,-1.8882145,-1.8785665,-1.720653,-1.8425719,-1.7042989,-1.6830449,-1.9857694,-1.9728464,-1.9466412,-1.8775913,-1.7818211,-1.6486832,-1.6253717,-1.6851703,-1.6640828,-1.8731369,-1.7123573,-1.7084864,-1.7153622,-1.7155741,-1.6985437,-1.7049605,-1.8410367,-1.6805972,-1.9190342,-1.96885,-1.8600892,-1.7501997,-1.9273921,-2.061282,-2.1620088,-1.9396294,-1.9924084,-1.6827588,-1.9750632,-1.7096599,-2.0786302,-2.276204,-1.9691657,-1.9988722,-1.9968218,-1.8863996,-1.8879242,-2.0249174,-2.0393095,-1.9054747,-1.4556032,-1.5851392,-1.8695585,-1.9481803,-1.9165553,-1.8497593,-1.6344721,-1.3101069,-1.7716035,-2.1668122,-1.4908293,-1.4960749,-1.5357465,-1.5758414,-1.5054455,-1.5110822,-1.5939602,-1.9313157,-1.4363483,-1.4292337,-1.5179032,-1.6616815,-1.4340807,-1.911103,-1.5711511,-1.1289055,-1.1742193,-1.2844368,-1.1821811,-0.96105164,-1.3298029,-0.9816019,-1.7165878,-1.6409723,-1.4543797,-1.8624147,-1.4574697,-1.3896097,-1.5602587,-1.657225,-1.717566,-1.6987424,-1.4596866,-1.8525087,-1.5592552,-1.5719839,-1.6332139,-1.5406078,-1.4406614,-1.5308994,-1.6025168,-1.6056696,-1.6199905,-1.6743599,-1.6373698,-1.8041092,-1.6129522,-1.7157265,-1.6243991,-1.7692786,-1.6611317,-1.6699339,-1.9942306,-1.8430773,-1.7992313,-2.0444822,-1.7885157,-1.4865907,-1.5422791,-1.675264,-1.8771433,-1.6775843,-2.0144854,-2.1578383,-1.9296488,-1.9476765,-1.7304544,-2.3107452,-1.8850622,-1.3910199,-1.5175428,-1.2124108,-1.3987955,-1.5471905,-1.4169666,-1.3836485,-1.3379456,-1.4297769,-1.3295903,-1.3896762,-1.6369715,-1.6956731,-1.8259611,-1.537712,-1.5484315,-1.5256461,-1.5160562,-1.5533854,-1.6537826,-1.6654028,-1.6310729,-1.8384017,-1.8130714,-1.7688521,-1.8712553,-1.8843821,-1.7128779,-1.8430115,-2.0087962,-1.920046,-2.0109434,-1.6693805,-1.9623517,-1.9277118,-1.8636274
+-1.144611,-1.5607468,-1.8290372,-1.9355575,-1.9870335,-1.9885889,-2.0960855,-2.2139082,-1.880958,-2.0430493,-2.1128147,-1.9031454,-1.8056983,-1.4223157,-2.0190113,-1.9755844,-1.9973971,-1.9926397,-2.0304408,-2.0498104,-2.1506553,-1.5997373,-2.0141163,-2.0826995,-2.4117537,-2.313966,-2.0855513,-2.3894432,-2.4090533,-2.3547158,-2.2293224,-2.313809,-2.2142792,-1.9429024,-1.9501354,-2.0577793,-2.0570226,-2.2594051,-2.3167353,-2.3620048,-2.4027982,-2.4221063,-2.483667,-2.3693094,-2.404711,-2.458589,-2.4433026,-2.4765067,-2.579575,-1.8563848,-2.0919766,-2.1310325,-2.163889,-2.175558,-2.2437773,-2.3781497,-2.484122,-2.4837337,-2.5177689,-2.5162182,-2.519418,-2.5407553,-2.6012921,-2.5487504,-2.5176854,-2.6516886,-2.591358,-2.6140692,-2.586434,-2.6468513,-2.6418898,-2.6011534,-2.6001053,-2.6607137,-2.5866194,-2.5649664,-2.0004401,-1.87401,-2.1248896,-2.2284176,-2.3145747,-2.4143507,-2.491213,-2.6017618,-2.6272383,-2.5588686,-2.577657,-2.6705205,-2.6351814,-2.6109731,-2.5920753,-2.5983262,-2.5673845,-2.6165411,-2.6235507,-2.6542978,-2.6434288,-2.6801097,-1.1116885,-1.9543111,-2.087582,-2.236397,-2.3470466,-2.367753,-2.3859525,-2.438356,-2.490705,-2.5362864,-2.596929,-2.6088176,-2.594577,-2.6232145,-2.6147351,-2.5868168,-2.5934339,-2.6309075,-2.6410623,-2.6428838,-2.6758742,-2.7139316,-2.7061114,-2.6498652,-2.681141,-2.7204008,-2.6509714,-2.7100625,-2.7554407,-2.6664119,-2.7771745,-2.7324274,-2.6785977,-2.703339,-2.7885308,-2.846477,-2.8727667,-2.861208,-2.8479457,-2.8819704,-2.8230865,-2.858325,-3.0159142,-2.9525816,-2.8752956,-2.8900604,-2.8720431,-2.8721843,-2.8163767,-2.9078715,-2.8942363,-2.9004045,-3.0302067,-2.9472108,-2.8628068,-2.8705149,-2.864502,-2.7654378,-2.7359142,-2.731732,-2.8649893,-2.748017,-2.8664496,-2.8267694,-2.9282136,-2.817051,-2.589253,-2.6784225,-2.802599,-2.8226728,-2.8849783,-3.0072043,-2.8429675,-2.8727956,-2.8247452,-2.742061,-1.6361734,-1.8810843,-2.1464052,-2.527041,-2.6721926,-2.7082663,-2.745527,-2.7668533,-2.781128,-1.3630413,-1.173107,-1.6268188,-1.817024,-1.6818054,-2.0997126,-2.2336013,-2.332573,-2.3985972,-2.4838512,-2.4954143,-2.5337787,-0.95143557,-1.0945338,-1.6129004,-1.5003796,-1.8434697,-2.1483297,-1.7109612,-1.6703749,-1.9432377,-1.9113148,-1.888119,-1.4633868,-1.720101,-1.9045194,-2.4443307,-1.8242258,-1.70271,-1.9503464,-2.2599802,-1.904844,-1.6180985,-1.7466987,-1.7750183,-1.8205205,-1.6401155,-1.6837168,-1.7986242,-1.802719,-1.8211063,-1.8749007,-1.5199428,-1.660941,-1.7603887,-1.7831124,-1.3961695,-1.4452794,-1.3321391,-1.2944276,-1.8878707,-1.7757024,-1.2972673,-1.4357544,-1.206503,-1.3985866,-1.3393563,-1.57795,-2.0059252,-1.4483427,-1.2509129,-1.4403547,-1.3040063,-1.4804624,-1.3617808,-1.2845391,-1.24387,-1.5073242,-1.4295601,-1.8068321,-2.0018404,-1.4338771,-1.4537164,-1.5367049,-1.9045098,-2.1973474,-1.7097,-1.4945456,-1.5848728,-1.7329377,-1.859827,-1.8367033,-1.9256681,-1.6614116,-1.7066215,-1.5804309,-1.7253113,-1.6986874,-1.7813791,-1.8237144,-1.983162,-1.9369558,-2.0889385,-1.9031892,-1.7474437,-1.826582,-1.9821123,-1.9838086,-1.4137931,-2.3639727,-2.2238774,-2.3794286,-2.0565279,-1.7838948,-1.7114162,-1.8483952,-1.8714498,-1.9301962,-2.071395,-2.1489387,-2.1078224,-1.9250616,-2.050933,-1.9605564,-1.7326454,-1.7259674,-1.6659334,-1.6640277,-1.6944335,-1.7579901,-1.939052,-1.9700607,-1.9454125,-1.7451974,-1.8375372,-1.6879228,-1.7791983,-1.6407043,-1.9175428,-2.1820505,-2.3437552,-2.3966603,-2.308469,-1.5844494,-1.4601959,-1.5080281,-1.6453903,-1.2706562,-1.6952051,-1.8007317,-1.7554299,-1.4184893,-1.6820885,-1.9476098,-1.8640343,-1.3857268,-1.2497467,-1.5021428,-1.4609488,-1.5864812,-1.7041396,-1.725444,-1.6866626,-1.962994,-2.1382062,-2.1983807,-2.237739,-2.2514608,-2.1441984,-2.2221475,-1.791979,-1.6872607,-1.8297222,-1.7743322,-1.6400232,-1.2767656,-1.7494284,-1.7325635,-1.6442746,-2.064215,-2.210357,-2.536302,-2.1329396,-1.4100755,-1.6982844,-1.8350393,-1.5383958,-1.8376218,-1.4830127,-1.4060684,-1.6621425,-1.7321299
+-0.9143271,-1.1562072,-1.4061975,-1.6373997,-1.7964611,-1.8197671,-1.8710221,-1.9170463,-1.9680806,-1.8930484,-1.9287821,-2.0244796,-2.0187745,-1.1320564,-1.9301984,-1.9818071,-1.9211276,-1.9343957,-1.9662455,-2.0567589,-1.9564219,-1.2975267,-1.8539716,-2.0342283,-2.208313,-2.0684316,-1.8644035,-2.1177073,-2.078044,-2.0811086,-2.0246549,-2.0341358,-1.9513474,-1.8093709,-1.5939846,-1.758068,-1.6640056,-1.7649041,-1.967611,-2.0659335,-2.0992966,-2.0961187,-2.1462104,-2.0853121,-2.2188072,-2.2533302,-2.217093,-2.2064092,-2.2934728,-2.305904,-1.4013537,-1.959845,-2.0715091,-1.8443357,-2.0571847,-2.20448,-2.2461812,-2.2251024,-2.249227,-2.2255154,-2.2239041,-2.2230725,-2.255414,-2.25293,-2.2087073,-2.2597728,-2.2893906,-2.2673986,-2.240829,-2.3074894,-2.3394558,-2.3188462,-2.2994862,-2.3347268,-2.344018,-2.0344672,-1.6229419,-1.440406,-1.9219937,-2.085927,-2.1004899,-2.1021864,-2.1815128,-2.2828043,-2.32957,-2.29492,-2.3185682,-2.3553498,-2.3532681,-2.3668737,-2.3785658,-2.389954,-2.3790274,-2.3928676,-2.3911512,-2.4299085,-2.4290986,-2.431611,-2.3858414,-2.2761323,-2.3762822,-2.4085796,-2.4567864,-2.478558,-2.5233026,-2.5006704,-2.477268,-2.449181,-2.4525883,-2.4828033,-2.4870505,-2.4801788,-2.5046635,-2.5568707,-2.5110073,-2.4775758,-2.4874678,-2.4417644,-2.3982718,-2.548503,-2.4402306,-2.3646526,-2.3458543,-2.4001155,-2.422335,-2.328414,-2.3039322,-2.219626,-2.4296386,-2.5041382,-2.488745,-2.511063,-2.5095186,-2.4959002,-2.5162094,-2.475031,-2.4123313,-2.6134791,-2.6517568,-2.652975,-2.745987,-2.6057155,-2.5252898,-2.8628545,-2.5965724,-2.583439,-2.565357,-2.5138059,-2.364831,-2.3595076,-2.4650133,-2.4505234,-2.4060717,-2.4936204,-2.5984354,-2.5447721,-2.4765122,-2.499704,-2.6008706,-2.4888556,-2.7054467,-2.6366527,-2.6532612,-2.540386,-2.3907135,-2.369677,-2.3422086,-2.49404,-2.5393162,-2.6488771,-2.426042,-2.4644542,-2.4454508,-2.4982903,-2.377369,-2.4177163,-2.3307219,-2.7485733,-2.656362,-2.5739293,-2.5233269,-2.3213487,-2.2584853,-2.2747383,-0.43080577,-1.236518,-1.3404415,-1.766317,-1.9573463,-2.101551,-2.155231,-2.1436558,-2.1934094,-2.1683087,-2.2261906,-2.0170536,-0.7143493,-1.5799302,-2.1660352,-2.6987686,-2.8368723,-2.12752,-1.9668514,-1.8980862,-1.8145322,-1.7951447,-1.5254507,-2.155385,-2.262302,-2.7485013,-2.7801085,-3.0543694,-3.0721827,-3.5055342,-3.8085659,-3.2175617,-2.786358,-2.551313,-2.485785,-2.7263792,-2.7176409,-2.6102958,-2.408445,-2.2531729,-2.2166095,-2.2927222,-2.4753633,-2.2211757,-2.3505,-2.4661357,-2.048116,-1.8102888,-1.7240745,-2.4286582,-2.3251219,-2.0209332,-2.085064,-2.1577172,-2.1048136,-2.6956224,-3.168514,-3.4922402,-2.9608393,-2.450976,-2.2595704,-1.7667855,-1.9207624,-1.9924089,-1.9214448,-1.5059407,-1.2965636,-1.0213269,-1.4390625,-1.8316876,-2.1235185,-1.69967,-1.4914038,-1.6848975,-1.7241997,-2.554607,-1.8506204,-1.4665614,-1.3741302,-1.5683221,-1.6172134,-1.5285339,-1.4770161,-1.6235524,-1.337629,-1.132436,-1.2530681,-1.4666363,-1.4263612,-1.4925251,-1.5797546,-1.695959,-1.4156487,-1.2615179,-1.9944896,-1.6519316,-1.5445764,-2.039149,-2.151535,-2.17233,-1.8316549,-2.2017632,-1.794343,-1.4879094,-1.2753373,-1.3832837,-1.3748815,-1.3685243,-1.6661099,-1.9188703,-1.9089164,-2.087359,-2.0604916,-1.946828,-1.6024927,-1.2762862,-1.2497449,-1.2652268,-1.2613248,-1.3800118,-1.4650669,-1.4150095,-1.4469947,-1.5401136,-1.9639829,-2.235262,-1.8433682,-2.2035549,-2.1706414,-2.61887,-2.6297455,-3.4452796,-2.9000504,-2.177155,-1.8860621,-2.147063,-2.2318888,-2.0755658,-3.0833251,-3.6038027,-3.2693677,-3.3899033,-3.3108687,-3.6249366,-2.673505,-1.6494803,-1.296922,-1.1507179,-1.2940139,-1.3907986,-1.4586068,-1.5684314,-1.5919412,-1.4861149,-1.430843,-1.2800299,-1.336944,-1.4221562,-1.4291269,-1.5311292,-1.6170642,-1.6330951,-1.5840849,-1.5487915,-1.5402105,-1.8028738,-1.8872607,-1.8824961,-2.3649163,-2.2729616,-2.5260057,-3.1388354,-2.5559192,-2.44781,-2.7612305,-2.4760494,-2.5877085,-2.5137289,-2.1440506,-2.3252964,-2.440528
+-2.1144614,-2.3099346,-2.4588969,-2.1432815,-2.3526483,-2.4743311,-2.3476021,-2.4233088,-2.374911,-2.426289,-2.5664663,-2.528469,-2.5330338,-2.4981961,-2.5166965,-2.5092359,-2.51729,-2.578887,-2.7186832,-2.7225356,-2.657326,-1.9397675,-2.420227,-2.4804466,-2.5586815,-2.6703548,-2.667718,-2.6933455,-2.603055,-2.6950455,-2.642878,-2.6608696,-2.716623,-2.359643,-2.7628758,-2.724914,-2.7968946,-2.7292223,-2.6769266,-2.8158102,-2.431036,-2.877232,-2.7534952,-2.76651,-2.7423162,-2.6906188,-2.739183,-2.6688218,-2.3496943,-2.7580643,-2.3558445,-2.843619,-2.3998644,-2.920113,-2.919211,-2.815953,-2.2880878,-2.3172412,-2.530367,-2.8395166,-2.7518263,-2.6870675,-2.3411298,-2.9804888,-2.92353,-2.9312344,-2.9691408,-2.9479098,-2.454978,-2.951899,-2.739935,-2.6318636,-2.9133887,-2.3974757,-2.4099035,-2.698367,-2.8828797,-2.816317,-2.5640619,-2.2226677,-2.949508,-2.8412657,-2.8564796,-2.0834758,-2.7698197,-2.9332085,-3.0149274,-2.9544468,-2.995563,-2.9409096,-2.926055,-2.8265998,-2.8696208,-2.732946,-2.6377776,-2.7218804,-3.0094826,-2.2596164,-2.5318315,-2.4097054,-2.8587785,-3.004705,-3.0655248,-2.9901185,-2.9554312,-2.307871,-2.564805,-2.3754835,-2.8715866,-2.3224692,-2.9578266,-2.9697495,-2.92467,-2.9640875,-2.9909165,-2.9336946,-2.9890327,-2.9342375,-2.9610171,-2.9899979,-2.9608831,-2.9752386,-2.9981108,-1.9638263,-2.8008816,-2.9573019,-2.9200506,-2.939272,-2.888151,-2.7172916,-2.7917886,-2.9250107,-3.029612,-2.9876924,-3.0146403,-3.0257635,-3.0535505,-3.0317717,-3.068592,-3.1056185,-3.1035562,-3.1200602,-2.7148032,-2.864615,-3.118185,-3.0812998,-3.0840783,-3.112459,-2.9570293,-2.7703362,-3.049135,-3.119166,-2.6585999,-2.1542454,-2.3712447,-2.9635284,-3.1063962,-3.2032366,-3.136261,-3.2297254,-3.1860943,-3.3474944,-3.168863,-3.277687,-3.2327085,-3.268941,-3.2848463,-3.251449,-3.222436,-1.8691181,-2.6608458,-2.632251,-2.9805083,-3.0703435,-3.1677656,-2.7592058,-3.1698117,-3.1932669,-3.3650062,-3.2602634,-3.2704787,-3.2990642,-3.3426428,-3.1451664,-3.1906614,-3.232369,-2.7602532,-3.1866992,-3.133655,-1.8028673,-2.312358,-2.7688324,-2.651023,-2.568184,-2.5555167,-2.332962,-1.9738587,-2.4746084,-2.2870388,-2.6083565,-2.6322,-2.6550283,-2.3795424,-2.515555,-2.5421288,-2.7417912,-2.8824866,-2.5456018,-2.3502355,-2.5361915,-2.7326303,-2.5641797,-2.5484402,-2.3868513,-2.6022143,-2.4067686,-2.4349809,-2.5994253,-2.1859713,-2.5898876,-2.5488687,-2.8588886,-2.3676906,-2.6509476,-2.9131455,-2.1989484,-2.538809,-2.3310554,-2.26129,-2.2674584,-2.4121234,-2.4872866,-2.5715704,-2.3554893,-2.5878174,-2.3477812,-2.342777,-2.2227974,-2.331388,-2.3793006,-2.3544633,-2.2658052,-2.2653797,-2.139176,-2.288209,-2.0478225,-2.1327176,-2.0611823,-2.1481786,-2.159418,-2.125328,-2.112039,-2.0883007,-1.675553,-1.6671497,-1.7926112,-1.9446422,-1.9643956,-1.9831418,-2.0205264,-2.0070043,-1.926754,-1.4925416,-1.5654502,-1.4900862,-1.6436241,-1.5353439,-1.6802396,-1.8350092,-1.8853973,-1.4773291,-1.6735872,-1.4969507,-1.5449649,-1.7188945,-1.8416795,-1.891628,-1.984104,-1.9802235,-1.8943354,-1.8372194,-1.7965232,-1.8855977,-1.559877,-1.7213777,-1.9243132,-1.9262291,-1.83739,-1.699612,-1.6963443,-1.7076436,-1.3342942,-1.4913397,-1.5769621,-1.6619068,-1.6158125,-1.6194081,-1.6785048,-1.6498722,-1.640484,-1.6690979,-1.7009047,-1.7372062,-1.7716733,-1.8035245,-1.983827,-2.068347,-2.0771534,-2.0522976,-1.6060778,-1.5678551,-1.7093272,-1.8024589,-1.8749181,-1.3541769,-1.4687876,-1.6208087,-1.5907638,-1.6883684,-1.7089504,-1.3213681,-1.6011428,-1.6487298,-1.7061161,-1.732624,-1.7359599,-1.7343856,-1.7893022,-1.8592622,-1.9003574,-1.9317847,-1.9567882,-2.0184655,-1.9526026,-1.6203464,-1.6505061,-1.5370187,-1.8399249,-1.9052409,-1.9165965,-1.9155604,-1.8828713,-1.8612627,-1.5496114,-1.7453829,-1.4717971,-1.6361709,-1.4636647,-1.5400783,-1.616559,-1.7156836,-1.5493323,-1.6547897,-1.7844788,-1.5564771,-1.7302929,-1.8036643,-1.6703864,-1.7882198,-1.8108934,-1.7743249,-1.4726733,-1.545674,-1.740168,-1.7006875
+-0.9868259,-1.2211837,-1.329856,-0.53764373,-1.1458071,-1.1261433,-1.1663642,-1.269622,-1.4211849,-1.4229821,-1.3746779,-1.2341919,-0.57066303,-0.83206874,-1.3197566,-1.3544656,-1.3327055,-1.3024353,-1.3596396,-1.4431816,-1.4335046,-1.0080049,-0.9773106,-1.0190467,-1.4513782,-1.3847108,-1.3015686,-1.471005,-1.3338441,-1.5811328,-1.5597596,-1.584978,-1.5807443,-1.1780272,-1.6145355,-1.6080114,-1.6129127,-1.4158844,-1.8256851,-1.8039726,-1.8132486,-1.84422,-1.7854453,-1.6852772,-0.6003998,-1.4674312,-1.7890273,-1.8134693,-1.0970047,-1.5366611,-1.4319464,-1.448266,-1.530922,-1.6935365,-1.7444063,-1.7876855,-1.5473917,-1.8205756,-1.8913037,-1.8300589,-1.7776985,-1.7676628,-1.348927,-1.5867267,-1.651471,-1.7602996,-1.8854333,-1.9147624,-1.6284696,-1.7826756,-1.4368192,-1.2012215,-1.7086076,-1.6785799,-0.844423,-1.5487915,-1.4777336,-1.5288274,-1.276975,-1.8551166,-1.8784902,-1.9365057,-1.9313948,-1.4226872,-1.312251,-1.77026,-1.7911835,-1.8574902,-1.9038415,-1.9389527,-1.9774672,-1.9508578,-1.8519846,-1.9008471,-1.9507389,-1.7975556,-1.7909535,-1.6713017,-0.5392712,-1.0429167,-0.8941316,-1.6031998,-1.5894256,-1.6953787,-1.8048973,-1.86929,-1.8679867,-1.8496412,-1.8533909,-1.8464719,-1.8569067,-1.8888477,-1.7165306,-1.8674473,-1.8844656,-1.9101397,-1.9005104,-1.902886,-1.9319955,-1.9796094,-1.9763552,-2.0002813,-2.0067666,-2.0262837,-1.9647776,-1.947292,-1.9905099,-1.9782251,-1.9011033,-1.4690434,-0.98123163,-1.5182396,-1.6915494,-1.7769743,-1.8411324,-1.8808922,-1.9163134,-1.9224085,-1.9297591,-1.9349377,-1.974805,-1.998231,-1.9975594,-1.9925903,-1.9319454,-1.9280816,-1.9216746,-1.9467859,-1.981795,-1.9310784,-1.9003932,-1.8132792,-1.7222254,-1.3518792,-0.9229705,-1.2276262,-1.6444385,-1.7313607,-0.47478274,-0.98251706,-1.5247053,-1.6217035,-1.7188338,-1.8665483,-1.783973,-1.7919931,-1.8792697,-1.8780781,-1.893848,-0.6540892,-0.9227338,-1.4939793,-1.6840757,-1.7657715,-0.9386714,-1.1604146,-1.2691978,-1.6628699,-1.6647981,-1.8561858,-1.9049064,-1.9487623,-1.9374812,-0.6666471,-0.87388223,-1.0693191,-0.68027,-0.93574965,-1.1931748,-1.5090184,-1.4409313,-1.469252,-1.5360794,-1.2962426,-1.3079895,-1.2869296,-1.5610403,-1.6966445,-1.7271053,-1.7464688,-1.6698493,-1.373169,-1.5574489,-1.7425296,-1.4603765,-1.3392882,-1.4119412,-1.2248942,-1.5613307,-1.7509669,-1.5657296,-1.4588362,-1.5429751,-1.362134,-1.4016384,-1.2478331,-1.3756804,-1.4280046,-1.2558194,-1.4190155,-1.3666207,-1.4133173,-1.414835,-1.4821135,-1.4961994,-1.1073042,-1.4840409,-1.3688203,-1.5770296,-1.2895375,-1.2275773,-1.1955943,-1.2206547,-1.2007215,-1.2535101,-1.1415201,-0.91506743,-1.0523219,-1.2173437,-1.2108735,-1.0337483,-0.97042614,-1.0381261,-0.8949466,-0.91728896,-0.7499022,-1.0421141,-1.1214676,-0.8691362,-0.7722683,-0.8195171,-0.8279951,-1.1738142,-1.5127534,-1.4344989,-1.3802999,-1.1312009,-1.0772669,-1.2344781,-1.160849,-1.2106392,-1.3199369,-1.2044375,-1.5680393,-1.1584085,-1.2057482,-1.2425803,-1.2330364,-1.0875065,-1.1452959,-1.2798072,-1.376758,-1.1424502,-1.3180753,-1.1227401,-1.2240561,-1.0422493,-1.0703822,-1.1925048,-1.1992918,-1.2465848,-1.0526559,-1.037654,-1.1643072,-1.1609974,-0.9553504,-0.84057933,-0.90263164,-0.86690634,-0.8732795,-0.8297001,-0.87976074,-1.4478494,-1.4799443,-1.1438183,-1.0743798,-1.0399024,-0.824261,-0.90952283,-0.95829016,-0.9926407,-0.9209395,-0.9265922,-0.93217367,-1.0791332,-1.1552529,-1.0020144,-1.0372361,-0.8659394,-1.4853735,-1.6341991,-1.7766911,-1.3993844,-1.4404373,-2.1269321,-1.8026068,-1.2882141,-1.2183567,-1.2146734,-1.2755646,-1.4698482,-1.5685893,-1.5094821,-1.3821241,-1.2209331,-1.374086,-1.520386,-1.2492006,-1.0839297,-1.091937,-1.158955,-1.010122,-0.90939426,-1.1217695,-0.9473595,-0.98056334,-1.0113102,-1.2395146,-1.1905843,-1.2732657,-1.3997191,-1.7082926,-1.8535827,-1.7663239,-1.4814245,-1.3556834,-1.3203402,-1.5695071,-1.7586632,-1.6069976,-1.2971662,-1.4912971,-1.4283985,-1.2847435,-1.3266138,-1.3274561,-1.2727759,-1.4588184,-1.8240993,-1.5420766,-1.6956321,-1.4486046,-1.458994,-1.5585264,-1.2731273
+-0.5987739,-1.2433261,-1.7116057,-1.6818094,-2.1596813,-2.0933225,-2.0862606,-2.0953565,-2.0381036,-2.2610595,-2.0341194,-1.5803403,-1.6960986,-1.1905698,-2.0178685,-2.204692,-2.3301947,-2.3381743,-2.271027,-2.169743,-2.2182002,-1.845558,-2.0452363,-1.5734415,-2.1114452,-2.4982047,-2.1682484,-2.5475502,-2.2990272,-2.4441075,-2.4092677,-2.0264525,-2.1452127,-1.7768561,-1.7757522,-1.7736202,-1.9646908,-2.1587808,-2.5379763,-2.586625,-2.5253236,-2.3253527,-2.3570848,-2.1113853,-1.6774961,-1.8096524,-2.3372173,-2.3488388,-2.048049,-2.1060486,-1.8363134,-1.849198,-2.0270452,-2.048581,-2.3526125,-2.5158184,-2.5918772,-2.618891,-2.5890222,-2.6491988,-2.5944176,-2.5498056,-2.3799396,-2.3981962,-2.454564,-2.3751748,-1.0363841,-1.5745931,-1.403885,-2.1479661,-2.3909774,-2.679821,-2.7704225,-2.6731315,-2.4314718,-2.6945653,-2.1645508,-1.6779505,-1.3822702,-2.44873,-2.4659243,-2.6335692,-2.62527,-2.4356546,-2.5829477,-2.5875545,-2.549189,-2.523426,-2.4757404,-2.5183773,-2.6202555,-2.7514932,-2.4410136,-2.626153,-2.8878803,-2.8785906,-2.8612056,-2.875795,-1.417355,-1.246157,-1.155742,-1.8809214,-2.3243146,-2.472281,-2.6047955,-2.7020702,-2.7729065,-2.7363205,-2.6627192,-2.7801697,-2.8601818,-2.9860408,-3.0051603,-3.1658347,-3.1823506,-3.153893,-3.147184,-3.1684062,-3.1207094,-3.1091986,-3.1696615,-3.3175256,-3.3717513,-3.4189801,-3.405886,-3.3081708,-3.108379,-2.4392698,-3.0902867,-3.108584,-3.13513,-3.1368325,-3.3568006,-3.3237844,-3.325826,-3.2328753,-3.255402,-3.2314236,-3.2443233,-3.1870031,-3.1549172,-3.1333528,-3.2619486,-3.3828077,-3.410892,-3.302075,-3.2184777,-3.1445591,-3.2376537,-3.3028855,-3.1534395,-3.0865488,-3.055738,-2.9832346,-3.0769978,-3.1058288,-2.9341245,-3.0544946,-1.5840354,-1.9632789,-2.6590233,-2.9198098,-2.901267,-3.0801797,-2.9012432,-2.8804436,-3.0483322,-3.158971,-3.1706133,-2.8985164,-2.643755,-2.872469,-2.9223409,-2.3922453,-0.66161627,-1.0721474,-1.2859575,-1.8959428,-2.054473,-2.3291357,-2.4496274,-2.582891,-2.7064905,-2.4747684,-1.6567229,-1.4187338,-0.8869711,-0.72678787,-1.2431266,-1.4595953,-1.6603818,-1.8714879,-1.2548342,-1.4719205,-1.9042584,-0.89479643,-1.1654402,-1.2372632,-1.372036,-1.2990457,-1.2529768,-1.2800947,-1.476031,-1.6044358,-1.5636508,-1.6670774,-1.5855796,-1.5292376,-1.28818,-1.4269677,-1.420677,-1.167535,-1.3446394,-1.2931775,-1.460909,-1.5471325,-1.6462063,-1.70125,-1.6828922,-1.0881009,-1.5186666,-1.661798,-1.7391797,-1.7657835,-1.8188289,-1.7591473,-1.6530329,-0.9255659,-1.239839,-0.8227577,-1.0686481,-1.3559166,-1.470682,-1.56897,-1.5039315,-1.3663057,-1.3230697,-1.4771534,-1.7314811,-1.5970775,-1.6530982,-1.6898607,-1.5524582,-1.5629762,-1.5497748,-1.61415,-1.5837712,-1.7538192,-1.6151872,-1.6422313,-1.4212104,-1.5429655,-1.8266071,-2.0446782,-1.7328328,-1.5586687,-1.4624475,-1.6465726,-1.7644166,-1.3580842,-1.4209756,-1.3894871,-1.5824367,-1.8450981,-1.301236,-1.3688215,-1.6724379,-1.4729549,-1.3982182,-1.4272007,-1.77934,-1.5274929,-1.3858552,-1.5416383,-1.4097502,-1.6799912,-1.5435666,-1.48806,-1.5764662,-1.3231226,-1.4871061,-1.5144731,-1.8899682,-1.9426634,-1.9983906,-1.9841911,-1.3180641,-1.2363138,-1.2528293,-1.307654,-1.4493245,-1.6124336,-2.0740678,-2.0000873,-1.774064,-1.763129,-1.7274722,-1.4184097,-1.4581853,-1.682077,-1.678696,-1.3938881,-1.4155873,-1.5160782,-1.7193425,-1.9095229,-1.8288,-1.6366876,-1.6836525,-1.8616191,-2.0068254,-1.854023,-1.7532176,-1.8659172,-1.9737841,-1.8242012,-1.358972,-1.3462001,-1.3617352,-1.4437164,-1.7583278,-2.0041633,-1.7043604,-1.7106156,-1.7112937,-1.8743782,-1.9007403,-1.6747106,-1.4751946,-1.4403834,-1.3884294,-1.4977337,-1.5527638,-1.6985272,-1.5890859,-1.5248648,-1.5518018,-1.7190605,-1.7161151,-1.7338389,-1.8299643,-2.0440598,-2.2229395,-2.201469,-1.8197814,-1.7082324,-1.6442963,-1.8903416,-2.1409934,-2.056868,-1.9229015,-2.0281026,-2.0285146,-2.0922515,-2.1718962,-2.0322783,-2.0187306,-1.8750542,-1.8819886,-1.824035,-1.7998062,-1.6534606,-1.8835317,-1.9595141,-1.6254423
+-0.4466413,-1.0794288,-1.8342234,-2.7048514,-3.0356731,-2.860035,-2.8598208,-2.9539964,-2.9048197,-2.9237137,-2.7212367,-2.952705,-3.586996,-3.3655906,-3.6171322,-3.507693,-3.4601426,-3.461821,-3.4568052,-3.3501296,-3.3740826,-2.5448716,-3.4601295,-3.5305035,-3.529473,-3.5551524,-3.605868,-3.8080924,-3.6856015,-3.6926088,-3.5694892,-3.325857,-3.3362312,-3.2585926,-3.3502488,-3.1653817,-3.2662563,-3.3832834,-3.3586745,-3.513111,-3.537074,-3.497853,-3.5062978,-3.121206,-3.2049904,-3.500484,-3.511477,-3.4662042,-3.5375896,-3.1779013,-3.3867278,-3.4701736,-3.570609,-3.5648513,-3.5310352,-3.5003366,-3.6121936,-3.6814656,-3.6546574,-3.7507417,-3.7607188,-3.6642323,-3.7787971,-3.7260194,-3.8695037,-3.7078404,-3.516426,-3.6188016,-3.6592498,-3.6470447,-3.532044,-3.6366153,-3.7557802,-3.8534575,-3.6742508,-2.4760334,-2.411236,-3.170836,-2.9513247,-3.2560146,-3.3416762,-3.3724794,-3.375638,-3.397926,-3.5132723,-3.5899713,-3.6505952,-3.7134938,-3.7834072,-3.8113778,-3.8400981,-3.954499,-3.9836378,-3.9658437,-4.0035543,-4.018178,-4.001649,-4.030181,-3.1290417,-2.605349,-2.7389982,-3.1948295,-3.3315613,-3.5714576,-3.8524003,-3.956374,-3.974185,-3.984232,-3.9791708,-3.9554305,-3.9743643,-4.076663,-4.0023103,-4.114375,-4.215253,-4.1885786,-4.1204543,-4.1895657,-4.1833887,-4.2214565,-4.1029525,-4.1548653,-4.2383747,-4.2397404,-4.2747045,-4.279023,-3.2454157,-3.3959265,-3.773243,-3.919537,-3.9720793,-3.9878602,-4.1961613,-4.1610103,-4.220189,-4.09633,-4.07891,-4.157299,-4.2345276,-4.261625,-4.3107076,-4.24701,-4.33514,-4.325239,-4.330652,-4.308901,-4.2765903,-4.3088484,-4.307574,-4.330615,-4.3047824,-4.29956,-4.0722027,-3.9225528,-4.049366,-4.1353674,-4.1285906,-4.1628623,-4.2061462,-3.9424798,-4.175765,-4.1623297,-4.2056103,-4.292275,-4.2053356,-4.1940475,-4.2296276,-4.2619877,-4.267887,-4.2775736,-3.9325595,-3.8028831,-3.9943867,-3.9655447,-2.041075,-3.2026155,-3.249195,-3.4995732,-3.799571,-4.023529,-4.0990305,-4.101863,-3.9638128,-3.9129002,-2.2475004,-2.782395,-3.293815,-3.6539989,-3.6607015,-3.8405733,-3.729209,-3.7196488,-3.8530185,-3.7639184,-3.8456945,-3.4781008,-1.591542,-2.4065914,-2.4015691,-2.5783691,-2.9990501,-3.275931,-3.664,-3.7073622,-3.6910636,-3.6657815,-3.10913,-2.533474,-2.9252067,-2.3352227,-2.9456897,-2.5894787,-2.4315424,-2.914764,-3.2328274,-3.3979325,-3.5048542,-3.5876787,-3.6778116,-3.417351,-3.590318,-3.6897664,-3.6815553,-3.7355363,-3.8471172,-3.692427,-3.9077911,-4.0246215,-2.8689175,-3.0086079,-3.1266086,-3.1593158,-3.2120204,-3.0478344,-3.2406259,-3.129635,-2.6717527,-2.75888,-2.7467108,-2.833921,-2.7315617,-2.6597219,-2.528178,-2.5528848,-2.3872995,-2.3858492,-2.3386855,-2.459146,-2.3514652,-2.2176325,-2.2736356,-1.8803803,-2.1530602,-2.1148245,-2.0329456,-1.9818844,-2.0717983,-1.697212,-1.6736759,-1.8736322,-1.673622,-1.6466854,-1.6892116,-2.0557895,-2.0185452,-1.9890407,-2.1037848,-2.0214148,-1.895506,-1.8430865,-1.7917411,-1.7224195,-1.7624379,-1.8812951,-1.9838547,-2.014403,-1.9752101,-1.7775313,-1.5168685,-1.4184539,-1.3207456,-1.2368376,-1.3882667,-1.6183059,-1.6971672,-1.7483641,-1.3164705,-1.4009196,-1.4377488,-1.475952,-1.5122455,-1.7503322,-1.9409262,-2.077523,-1.7811745,-1.641128,-1.6634465,-1.5082246,-1.2812216,-1.324164,-1.3279914,-1.5357308,-1.5068775,-1.6481309,-1.861046,-2.221208,-2.1821685,-2.2976332,-2.0375257,-2.5961308,-2.6783602,-2.6625862,-2.6564908,-2.9539533,-2.5623078,-2.5963562,-2.2993817,-2.5240505,-2.7165089,-2.8377771,-3.1819222,-2.6485622,-2.716202,-2.8459878,-3.040873,-3.009437,-2.7742956,-2.9455485,-2.9016416,-2.8253498,-2.8411636,-2.8482647,-2.769441,-2.7913485,-2.7071018,-2.6840796,-2.778486,-2.8871653,-2.7826917,-2.6229572,-2.6331513,-2.732343,-2.828869,-2.5732243,-2.779018,-3.1084516,-3.2862053,-3.4757843,-3.4887986,-3.561514,-3.4493809,-3.27662,-3.3099813,-3.368061,-2.5628862,-2.5711777,-2.7782836,-3.152788,-3.1293173,-3.2803278,-3.360433,-3.339323,-3.5553098,-3.149881,-3.2277813
+-1.336718,-1.4592961,-1.6280434,-1.8744575,-2.116336,-2.5132515,-2.8234572,-2.8829448,-2.8288374,-1.6734698,-1.9309503,-2.1506977,-1.7159594,-1.9990996,-2.517107,-2.7199225,-2.8744059,-3.0171032,-3.07663,-3.060437,-2.8612638,-0.91600543,-1.8121835,-2.2108507,-2.6060872,-2.6593225,-2.3467622,-2.7590458,-2.8286648,-3.000356,-3.1842575,-3.172892,-3.1032364,-2.9146624,-2.7743945,-2.0160887,-1.9416355,-1.8538271,-2.518418,-2.8982801,-3.087721,-3.1181939,-3.1901321,-3.170405,-3.1399698,-3.3383956,-3.423027,-3.5476985,-3.6105494,-1.2738018,-2.0308359,-2.365779,-2.4547672,-2.2161756,-2.2289724,-2.3780072,-3.0324988,-3.230544,-3.4536602,-3.5826435,-3.615036,-3.5944786,-3.5971503,-3.6479874,-3.5937567,-3.5904927,-3.6373575,-3.6185198,-3.6122048,-3.623549,-3.6738484,-3.7514768,-3.8131914,-3.8265138,-3.83117,-3.5047884,-2.7846396,-2.680831,-0.88518935,-2.5552201,-2.7235265,-2.9611561,-3.1143572,-3.2563515,-3.5079877,-3.6354136,-3.7298684,-3.8264575,-3.8524828,-3.8653572,-3.9159083,-3.9480705,-3.9204645,-3.8685622,-3.8516273,-3.896792,-3.9435942,-3.9231143,-3.8843522,-3.812159,-3.8366551,-3.9137697,-3.954764,-3.985063,-3.9737859,-3.9318995,-4.0193458,-3.9988613,-3.9373827,-3.920267,-3.9006371,-3.8640776,-3.9029715,-4.001547,-3.9979959,-3.9470463,-3.932747,-3.9147766,-3.9070013,-3.880604,-3.8449605,-3.8715136,-3.878407,-3.8837118,-3.9457526,-3.9370604,-3.9133236,-3.8760128,-3.898127,-3.9673452,-3.9900956,-3.9897647,-3.975793,-3.9487922,-3.906597,-3.9061909,-3.9033887,-3.8974545,-3.92164,-3.8927088,-3.892658,-3.872124,-3.8926656,-3.8733315,-3.907608,-3.9643002,-4.018713,-4.0020084,-3.9593956,-3.966095,-3.947866,-3.9757404,-3.9051256,-3.8715546,-3.8803124,-3.9329062,-3.99969,-4.033814,-4.0494604,-4.018608,-4.0075574,-4.0086946,-4.015586,-4.030037,-3.9931326,-3.9138703,-3.9643679,-4.0100093,-4.0266805,-4.0047607,-4.0029974,-3.9172294,-3.9555814,-3.952302,-3.8564754,-3.8794534,-3.929385,-3.9846835,-3.9987059,-3.9885511,-3.9813437,-3.9394255,-3.8819094,-3.797083,-1.9305168,-1.7571945,-2.4347198,-3.0257301,-3.3495786,-3.5479188,-3.5630126,-3.5042782,-3.4826074,-3.4497736,-3.443687,-3.295178,-0.685427,-1.9242043,-1.8402098,-1.6877744,-2.0400662,-2.405869,-2.5600517,-2.4523442,-2.4144473,-2.3210895,-1.8110746,-0.8916002,-1.6633904,-1.6307572,-1.768844,-1.5162305,-1.5122174,-1.5971224,-1.2885262,-1.6695443,-1.7737902,-1.8639251,-1.9161781,-1.8034781,-1.7745751,-1.8713778,-1.9086405,-1.9384058,-1.9372596,-1.924901,-2.0488384,-2.057074,-1.9796675,-2.2396607,-2.3434598,-2.2608578,-0.8285156,-1.2541605,-1.689206,-1.7360314,-1.4458102,-1.7129658,-1.6233311,-1.3471282,-1.5248771,-1.5333587,-1.8738219,-1.8527703,-2.0330296,-2.0757673,-2.2015052,-2.169722,-2.061089,-2.0107489,-1.9851917,-1.2779846,-1.5880188,-0.92369384,-1.4628907,-1.4622755,-1.5534252,-1.2677921,-0.7852789,-1.0568321,-1.5001868,-1.6183876,-1.5528646,-1.5764006,-1.5556183,-1.5007397,-1.2188913,-1.5154804,-1.5445813,-1.5939091,-1.4809939,-1.5277127,-1.5149442,-1.5043496,-1.5239701,-1.6208233,-1.4556551,-1.3343915,-1.2532396,-1.3980323,-1.4986682,-1.1853412,-0.70036584,-1.1555831,-1.060619,-1.1066589,-1.3556756,-1.4278814,-1.4884261,-1.4889902,-1.5502943,-1.4833311,-1.4684528,-1.466155,-1.3854825,-1.5358286,-1.4293183,-1.4721075,-1.4211377,-1.4770209,-1.4243127,-1.5082201,-1.4966251,-1.4843104,-1.516847,-1.4924855,-1.4979436,-1.6927336,-1.3590962,-1.6735587,-1.5390569,-1.5654894,-1.1428136,-1.4809943,-1.0991284,-1.6706327,-1.6273476,-1.6479753,-1.7000132,-1.6836939,-1.6615165,-1.5429105,-1.5464424,-1.289155,-1.6316954,-1.5798017,-1.5089433,-1.6290804,-1.5282325,-1.4943286,-1.580567,-1.454815,-1.5970591,-1.4822935,-1.5501341,-1.5866078,-1.5274589,-1.6593112,-1.5867667,-1.618325,-1.5968248,-1.5917511,-1.4872235,-1.5194858,-1.5379094,-1.6132197,-1.7364181,-1.6113683,-1.5919052,-1.5500003,-1.5477263,-1.6288787,-1.665072,-1.780419,-1.5799955,-1.5308203,-1.4903095,-1.5615162,-1.6410974,-1.568677,-1.600104,-1.5746186,-1.6515936,-1.7028159,-1.8842372
+-0.087770924,-0.43810678,-1.1250467,-1.6293942,-1.8863496,-2.1333811,-2.4153824,-2.4777198,-2.0507712,-1.9956411,-2.0993214,-2.147091,-2.259641,-2.0039282,-2.278903,-2.4093342,-2.538579,-2.6790876,-2.7569394,-2.722324,-2.769973,-1.1768144,-1.6010193,-1.8432575,-1.9948391,-2.2800884,-1.9782549,-2.2312446,-2.4606485,-2.5714643,-2.7142708,-2.875708,-2.9729948,-3.0768242,-2.0450273,-2.2277968,-2.2894554,-1.7702514,-2.0191853,-2.178622,-2.4135194,-2.601304,-2.7391407,-2.689962,-2.7580438,-2.9161649,-3.0681376,-3.180595,-3.1951604,-2.541967,-1.7201015,-2.1552517,-2.5869567,-2.694128,-2.4324768,-1.5619935,-2.3273385,-2.6602514,-2.9631758,-3.0816503,-3.1821644,-3.2894874,-3.3108544,-3.3985856,-3.5414028,-3.496129,-3.4561987,-3.3916993,-3.3526583,-3.2329988,-3.2017257,-3.2546434,-3.2865236,-3.2631505,-3.1940145,-3.2918487,-3.1094115,-3.3989382,-3.1063848,-3.2690039,-3.3692422,-3.5142896,-3.398967,-3.3393314,-3.308718,-3.347353,-3.424708,-3.4789286,-3.4958515,-3.4630694,-3.4443557,-3.428775,-3.387958,-3.3752246,-3.369895,-3.3384895,-3.3276863,-3.3153844,-3.3357859,-3.2936707,-3.2283084,-3.2934005,-3.2709353,-3.3270202,-3.3954635,-3.5358188,-3.4147437,-3.3568742,-3.2999682,-3.2936463,-3.2965007,-3.3041375,-3.3175287,-3.457317,-3.4740028,-3.427011,-3.5291545,-3.5351927,-3.487332,-3.4844198,-3.469172,-3.4925814,-3.547854,-3.5281005,-3.6035814,-3.4815507,-3.4466057,-3.4681568,-3.4462087,-3.4946105,-3.5169349,-3.5415192,-3.5732493,-3.5519114,-3.5980105,-3.5669413,-3.5971494,-3.6586895,-3.649887,-3.651112,-3.648344,-3.6494784,-3.6586173,-3.6599586,-3.6808598,-3.6760304,-3.6650023,-3.6214738,-3.6334589,-3.626506,-3.7279625,-3.7358022,-3.6599143,-3.6031365,-3.6651368,-3.688639,-3.5683913,-3.7585206,-3.8006124,-3.8129919,-3.804113,-3.8809752,-3.8877964,-3.85876,-3.7284436,-3.6245003,-3.6790848,-3.8318386,-3.913751,-3.8944347,-3.8368747,-3.818668,-3.8436205,-3.9786663,-3.7229002,-4.016306,-4.0499377,-3.8940048,-3.8327663,-3.8520827,-3.891851,-3.9107547,-3.9243205,-3.8370566,-3.8213117,-3.9037898,-3.9347992,-3.9580598,-4.097791,-4.1187134,-4.0310144,-3.9867902,-4.030489,-3.9356318,-3.9658227,-4.188019,-2.1065278,-2.8376646,-1.8534821,-2.25505,-2.642007,-3.0746036,-3.4717767,-3.670043,-3.6918073,-3.806058,-3.274384,-2.0365098,-2.7213793,-2.9641602,-1.4361719,-2.0471797,-2.005149,-2.252799,-1.8367702,-2.338155,-2.629316,-2.866777,-3.0242865,-3.0668654,-3.13128,-3.2087617,-3.2848992,-3.3635542,-3.4549203,-3.511464,-3.5482483,-3.5793996,-3.5799503,-3.5669978,-3.633191,-3.6906874,-1.6464715,-2.3592672,-2.472117,-2.6438189,-2.256316,-2.587728,-2.7820253,-2.4271662,-2.4206533,-2.117509,-2.5097094,-2.6895409,-2.785871,-2.935347,-3.1573648,-3.1884131,-3.1946828,-3.1597679,-3.0593421,-1.6103209,-2.1725297,-1.7857186,-2.1328387,-2.3925316,-2.603643,-2.3159933,-1.1278397,-1.5973536,-2.0500832,-1.9088033,-1.8117751,-2.0355606,-2.3541715,-2.5032682,-1.8315718,-2.2431102,-2.2069104,-2.0434625,-2.187971,-2.3951912,-2.4726005,-2.659117,-2.6513205,-2.6782026,-2.7216315,-1.9594849,-1.2766861,-1.8397111,-1.9740185,-1.1097745,-1.0156938,-1.6913033,-1.599789,-2.1542478,-2.840814,-3.1864762,-3.15455,-2.8124328,-2.4859843,-2.2278702,-1.6978376,-1.9517903,-2.149873,-2.5366955,-2.423038,-2.9184575,-3.2727823,-3.408595,-2.85452,-2.7287078,-2.2853384,-2.1672192,-2.1338446,-2.1828704,-2.109176,-1.5530907,-1.6067916,-2.0983095,-2.45709,-2.3167331,-2.377326,-2.9611661,-3.1839173,-3.575528,-3.6839285,-3.4443429,-2.6553462,-2.291495,-2.192605,-1.7257811,-1.9194435,-2.6107736,-2.9984105,-2.8857055,-3.2971158,-3.5835238,-3.6663034,-2.9578428,-2.3682122,-2.0767725,-2.060701,-2.0693402,-2.0458655,-2.0945222,-2.2555404,-2.2002678,-1.7526237,-2.109014,-2.118573,-2.1555064,-2.207498,-2.3201714,-2.3776205,-2.425571,-2.4498007,-2.4955015,-2.6334891,-2.5106983,-2.51904,-2.5624232,-2.5499806,-1.9390527,-0.9605277,-1.4756097,-1.9555796,-1.6714936,-1.8648821,-2.051551,-1.7581155,-1.9933044,-1.8715397,-1.8904372,-2.0280635
+-1.5266564,-1.724948,-1.819224,-1.8742192,-2.0913024,-2.3019798,-2.4890423,-2.2007713,-0.9861414,-1.6709975,-1.7603928,-1.7630545,-1.7865914,-1.4976537,-1.8010489,-1.9591691,-2.1782794,-2.3657198,-2.524881,-2.6170115,-2.5013318,-0.9333642,-1.9815739,-2.0760427,-2.0750403,-2.076014,-1.8037959,-2.078966,-2.1555731,-2.3236625,-2.530498,-2.6138961,-2.7147915,-2.7417197,-2.547223,-1.5785383,-1.8443602,-2.1237311,-2.208276,-2.3094792,-2.4706473,-2.587082,-2.5962386,-2.522023,-2.558214,-2.6155503,-2.746482,-2.8669012,-2.7898953,-2.5948985,-2.1421638,-2.347031,-2.3881297,-2.4734874,-2.52882,-2.5749164,-2.6729407,-2.792505,-2.821827,-2.8302567,-2.8787956,-2.9317532,-2.9455428,-2.962914,-3.0013437,-3.0091918,-2.973314,-2.9553385,-2.8953912,-2.8160508,-2.7519627,-2.7788465,-2.85667,-2.805906,-2.6663606,-2.6455722,-2.6399055,-2.4852142,-2.709541,-2.7985868,-2.8469818,-2.879774,-2.8880918,-2.8665535,-2.82763,-2.8429852,-2.854008,-2.8747182,-2.8772717,-2.8727002,-2.8516927,-2.8615427,-2.8500051,-2.82269,-2.8136208,-2.7792032,-2.7309482,-2.6995416,-2.7199178,-2.7524734,-2.70879,-2.76913,-2.789041,-2.8006263,-2.8237042,-2.8457398,-2.8382316,-2.7818213,-2.7013884,-2.7040253,-2.7518108,-2.7797997,-2.8074205,-2.8155408,-2.8445754,-2.854048,-2.848648,-2.8460178,-2.8784773,-2.8885374,-2.8764744,-2.8666785,-2.8527446,-2.8452854,-2.8511546,-2.8317025,-2.7641997,-2.778007,-2.7479873,-2.7881737,-2.7912965,-2.7943525,-2.7952929,-2.8049054,-2.8157609,-2.8406782,-2.8387582,-2.8373315,-2.844523,-2.8485231,-2.8427,-2.8380384,-2.8282523,-2.819687,-2.8246307,-2.835246,-2.841332,-2.7998116,-2.7837038,-2.800775,-2.8082442,-2.8069174,-2.7853398,-2.7257528,-2.7322502,-2.7541366,-2.643785,-2.6999416,-2.7601624,-2.7853904,-2.8172898,-2.7987819,-2.8127131,-2.8223329,-2.7523305,-2.4982226,-2.677087,-2.7462137,-2.7758646,-2.7993522,-2.8218699,-2.8609319,-2.847982,-2.8253782,-2.6482668,-2.7150142,-2.758655,-2.751029,-2.8063354,-2.8627596,-2.8957388,-2.8698611,-2.798595,-2.685337,-2.6445165,-2.5146163,-2.6729302,-2.6472917,-2.714797,-2.7399614,-2.7600598,-2.8173163,-2.81917,-2.6426582,-2.688514,-2.6779904,-1.6353663,-1.6876094,-0.8288506,-1.772715,-2.1048796,-2.3925195,-2.6464167,-2.713957,-2.7473288,-2.7833965,-2.6370587,-2.3111954,-2.5055728,-2.1702576,-0.738774,-1.59886,-1.2137848,-1.4627787,-1.4573083,-1.7829214,-2.0452166,-2.315216,-2.3884196,-2.286447,-2.3490934,-2.445414,-2.456481,-2.528215,-2.571764,-2.5320573,-2.4813006,-2.5172074,-2.45164,-2.391255,-2.2322302,-2.3128614,-1.9815818,-1.1079577,-1.8138552,-1.8892299,-1.8397956,-1.969356,-2.03866,-1.3750697,-1.8104225,-1.8173001,-1.9822959,-2.0016966,-2.0769327,-2.204861,-2.267107,-2.2826617,-2.3003907,-2.1652827,-1.9937519,-1.5026385,-1.7870241,-1.4989398,-1.8652577,-1.8912491,-1.8635924,-1.7955807,-1.4084307,-2.1872513,-1.9962188,-1.9180757,-1.8536733,-1.9517745,-2.1049147,-2.055347,-1.4526496,-1.9207127,-1.8435818,-1.821648,-1.8983288,-2.072875,-2.0311217,-1.9681772,-1.9013578,-1.9021872,-1.9822892,-1.6896609,-1.8890678,-2.4407916,-2.0481417,-1.9474016,-2.0214667,-2.8156776,-2.9221528,-3.2635996,-2.7693353,-2.1741025,-2.1389747,-2.1447,-2.1020381,-2.055592,-1.7556795,-2.2186608,-2.3652067,-2.4669995,-2.4461818,-2.6481128,-2.2471194,-2.0983362,-2.1023335,-2.0860987,-1.9948951,-2.0373888,-2.131658,-2.172194,-2.0018928,-1.845761,-1.6371336,-2.2030404,-1.9041978,-1.9982718,-2.5168443,-2.7100396,-2.4893064,-3.0150094,-2.3065884,-2.1702888,-2.134115,-2.153216,-2.0996187,-1.818593,-1.9596909,-2.519117,-2.0991812,-2.1692586,-2.7790446,-2.5471196,-2.054984,-2.0256083,-1.9824108,-1.9515157,-1.8774751,-1.974229,-1.9362833,-1.9464403,-1.9871019,-1.756208,-1.6637486,-1.9651736,-1.9165827,-2.019933,-2.0782065,-2.1620495,-2.2064395,-2.2450023,-2.261592,-2.2471724,-2.1801004,-2.1260095,-2.2346869,-2.2248294,-2.1588745,-1.7337346,-1.1244415,-2.0368726,-1.850887,-1.6216983,-1.8227181,-1.7631878,-1.8431183,-2.0019534,-2.132621,-2.063779,-2.2029765
+-1.3360028,-1.7639575,-1.8882618,-1.9918932,-2.398252,-2.4404204,-2.266933,-2.0611918,-2.2880218,-2.6343312,-2.5969815,-2.3917804,-2.5386643,-2.5475984,-2.2861195,-2.4064384,-2.2036424,-2.229759,-2.2244105,-2.3159664,-2.264423,-1.8087231,-2.3118384,-2.39962,-2.4046571,-2.587963,-2.4491138,-2.3401108,-2.2929428,-2.5092883,-2.6087685,-2.5472915,-2.501831,-1.7792113,-2.2505774,-2.4137454,-2.496388,-2.4548655,-2.3210015,-2.5570927,-2.132472,-2.4154725,-2.5345728,-2.4355788,-2.4622674,-2.461598,-2.4582677,-2.3373535,-2.0942178,-2.4154663,-2.1206322,-2.2693195,-2.2346938,-2.3414698,-2.210176,-2.2232854,-2.1637745,-2.1693578,-2.3225522,-2.3845391,-2.4475312,-2.2856498,-2.1677895,-2.152738,-2.2783136,-2.3202798,-2.497447,-2.5372624,-2.2954206,-2.2491226,-1.629496,-2.26635,-2.3341863,-2.2605443,-2.3889134,-2.6440392,-2.658595,-2.7884912,-2.269155,-2.3427644,-2.4117885,-2.3730288,-2.3131564,-2.134532,-2.1139264,-2.3148732,-2.3574767,-2.4141977,-2.4390428,-2.4597473,-2.4502401,-2.414112,-2.3332348,-2.0208411,-1.8909271,-2.0353427,-2.3142612,-2.2021303,-2.0336134,-1.9856685,-2.2850022,-2.2851748,-2.2789402,-2.2842762,-2.305362,-1.525628,-1.8997539,-1.7884711,-2.2724504,-2.0262525,-2.33536,-2.4476392,-2.166659,-2.2452576,-2.3152027,-2.3758507,-2.1868157,-2.103333,-2.4991698,-2.682189,-2.6370394,-2.4707177,-2.6384478,-1.9128239,-1.9395839,-2.4367008,-2.5859513,-2.570963,-2.3883543,-2.28007,-1.7108554,-1.9810685,-2.2704723,-2.4916286,-2.7703657,-2.7868614,-2.8196263,-2.92724,-2.8560064,-2.9008198,-3.0551224,-3.3160396,-3.0768237,-2.5256643,-2.5017083,-2.8349557,-3.017208,-3.1268,-2.998294,-2.672462,-2.7996478,-3.0066829,-2.8751929,-2.2379966,-1.1775861,-2.1064005,-2.224405,-2.3558846,-2.3125386,-2.3671336,-2.319861,-2.4571214,-2.3928182,-2.401235,-2.5376914,-2.665981,-2.7764182,-2.8359237,-2.8335514,-0.6887214,-1.989045,-1.9718024,-2.2181392,-2.348139,-2.3831336,-2.0064168,-2.2406855,-2.237709,-2.2914116,-2.3312466,-2.4314036,-2.5045428,-2.5167544,-2.400033,-2.4909687,-2.6492815,-2.238109,-2.4462323,-2.312991,-1.3644907,-1.7323066,-2.084158,-2.0989623,-2.1328688,-2.147677,-1.4996691,-1.4319613,-1.7752619,-1.7958646,-1.796909,-1.9648455,-2.028718,-1.7306883,-1.9475627,-2.052621,-2.1957402,-2.294282,-2.1480474,-1.8546908,-1.7579017,-2.0782514,-2.0254855,-2.0397656,-1.9244834,-1.9649833,-1.8309513,-2.0514765,-2.150248,-2.1041288,-2.078246,-2.103628,-2.1917033,-1.9829391,-2.1869597,-2.3063583,-1.9757482,-1.9905466,-1.9245237,-1.272909,-1.5735136,-1.6564696,-1.7745781,-1.7511758,-1.8813492,-2.0732296,-2.0135252,-1.8768194,-1.8455828,-1.9437125,-1.9182092,-2.2115574,-2.140154,-2.1407728,-2.0011148,-2.0614834,-1.982531,-2.0498707,-2.0452213,-2.181274,-2.2339842,-2.2139397,-2.1956823,-2.242487,-1.9542891,-1.794739,-1.8401238,-1.8856809,-1.9434072,-2.0489492,-2.0961745,-2.1046903,-1.9780165,-1.5279721,-1.5653237,-1.7102181,-1.7812772,-1.668128,-1.7766093,-1.9701554,-1.8548939,-1.5577434,-1.7691928,-1.6456187,-1.7686981,-2.0381193,-1.7496321,-1.967955,-1.9819776,-2.0463119,-2.0423384,-2.0014791,-1.940715,-2.0296001,-1.686318,-1.9581054,-2.0489566,-2.0119412,-2.0111284,-1.9622797,-1.9341565,-1.8270092,-1.5980251,-1.4102055,-1.5188063,-1.5398513,-1.664046,-1.7415258,-1.5631546,-1.6722792,-1.812905,-1.7837278,-2.006303,-1.7900566,-1.8294998,-2.060594,-2.3147736,-2.2622583,-2.165642,-2.0611186,-1.667237,-1.5235685,-1.473716,-1.7933743,-1.8180658,-1.1745118,-1.4699231,-1.7987812,-1.8569853,-1.7770115,-2.0016842,-1.5107183,-1.7613631,-1.8671101,-1.9987534,-1.7783444,-1.9031546,-2.049847,-2.2427917,-2.1755672,-2.2050009,-2.244371,-1.9431709,-2.0128124,-2.1080918,-1.681898,-1.5863286,-1.6964914,-1.6821865,-1.6747404,-1.8986168,-1.9949011,-1.7736491,-1.8161865,-1.5083075,-1.7311548,-1.6475978,-1.8020245,-1.7265866,-1.757402,-1.9252447,-1.9978727,-1.5527401,-2.1136045,-1.8991848,-1.6697742,-1.7698485,-1.8820119,-1.8428196,-1.9660918,-2.08074,-1.8131002,-2.0176706,-1.9247117,-2.093734,-2.077182
+-1.7953895,-2.2757723,-2.4384239,-2.007921,-2.514145,-2.477343,-2.4705744,-2.558569,-2.7304788,-2.6459665,-2.6652813,-2.6354795,-2.5940018,-1.8820792,-2.333766,-2.492055,-2.4572923,-2.5888162,-2.7073689,-2.7435067,-2.6312604,-2.3598583,-2.6555195,-2.4985213,-2.8049679,-2.8160625,-2.5918112,-2.4643364,-2.683927,-2.80265,-2.8074358,-2.6969519,-2.6784546,-1.988933,-2.2610602,-2.6375074,-2.7408934,-2.8353925,-2.8399107,-2.8162904,-2.7204351,-2.8111022,-2.8525863,-2.7157233,-2.4792297,-2.7743132,-2.783071,-2.8116827,-2.5200858,-2.6920147,-1.6789442,-2.4523654,-2.5282946,-2.765061,-2.7294168,-2.8053465,-2.7743487,-2.6464138,-2.6120958,-2.947507,-2.8713942,-2.821416,-2.6643255,-2.8829455,-2.8713841,-2.965888,-3.0694444,-3.0584478,-2.9216948,-2.812355,-2.5753076,-2.5073013,-2.7686372,-2.681449,-2.5819378,-2.7263892,-2.7726622,-2.7854624,-1.4061971,-2.6329312,-2.6782894,-2.7085576,-2.7760072,-2.692873,-2.6295846,-2.781828,-2.8390133,-2.9168732,-2.9966369,-3.0163713,-2.9942393,-2.9411967,-2.9041486,-2.8516288,-2.7957654,-2.7785904,-2.7978857,-2.6684484,-2.0772247,-2.0783405,-2.3589869,-2.6634927,-2.406696,-2.7419667,-2.7868786,-2.7958264,-2.7382855,-1.7751849,-2.0024223,-1.9986826,-2.474758,-2.7374759,-1.6721894,-2.6394138,-2.7303877,-2.800849,-2.710194,-1.8874887,-2.6287425,-2.8948739,-2.9813046,-2.9880846,-2.955745,-2.7751575,-2.7771006,-2.943087,-3.047594,-3.0370836,-3.0302382,-1.7359506,-2.0968146,-2.623601,-2.8041906,-3.0254302,-3.2273464,-3.2490764,-3.216525,-3.2933617,-3.2210743,-3.3279536,-3.37539,-3.4427388,-3.4179506,-3.2479196,-3.2751145,-3.2960582,-3.3432517,-3.381052,-3.311368,-3.2513735,-3.4281492,-3.4223337,-3.423829,-3.2274957,-1.4948376,-2.7789283,-2.7962556,-3.0291853,-2.9225144,-3.1473603,-3.103881,-3.2501583,-3.2389264,-3.2636132,-3.1433399,-3.1986377,-3.3152504,-3.3530266,-3.3149858,-0.88251036,-1.9233992,-2.533383,-2.7324498,-2.8383121,-2.4003081,-2.7350354,-2.914814,-2.8816023,-3.031032,-3.0888047,-2.9720662,-3.156681,-3.156887,-3.0414069,-2.9582114,-3.0165768,-2.8673697,-2.2981482,-2.8311763,-1.3233788,-1.7201014,-1.8576316,-2.1781847,-2.355136,-2.3777633,-2.01192,-1.5013561,-1.7623334,-1.9273294,-2.0168657,-2.1824365,-2.302396,-1.3822683,-2.0335193,-2.0896957,-2.170564,-2.3725147,-2.3929245,-1.3545126,-2.1809492,-2.2275233,-1.9195129,-1.9554641,-2.0238454,-2.1669092,-2.237857,-2.3883717,-2.3800583,-2.4311714,-2.0524216,-2.3264923,-2.4975076,-2.5799086,-2.6084113,-2.6816769,-1.9492892,-2.150425,-1.4662538,-1.5593551,-1.6649916,-1.8220795,-2.0252855,-1.9820663,-2.0484538,-2.1299355,-2.0699039,-1.9347502,-1.7584282,-1.7010986,-1.74637,-1.7793094,-1.8365533,-1.8544255,-1.8071648,-1.8377813,-1.8103033,-1.7954191,-1.6882607,-1.8210062,-1.8983713,-1.9145998,-1.9224249,-1.8504709,-1.6174774,-1.5309465,-1.6591924,-1.7966201,-2.006374,-1.937673,-2.0876899,-2.0965378,-1.8875185,-1.5402604,-1.4896832,-1.7016777,-1.6959728,-1.7262188,-1.7245759,-1.9236075,-1.8316134,-1.4114903,-1.6436363,-1.5272666,-1.5693167,-1.7031991,-1.8004453,-1.9669539,-2.0701456,-2.0936804,-2.0572033,-1.9823416,-2.015592,-1.9447122,-1.6088209,-1.747878,-2.0799363,-2.0796757,-1.9681147,-1.8637038,-1.8347646,-1.6566833,-1.5118381,-1.2141833,-1.454878,-1.44306,-1.417858,-1.4140798,-1.6799201,-1.6602497,-1.5710145,-1.546184,-1.6483783,-1.552384,-1.5578285,-1.6475183,-1.938598,-2.068985,-2.0430303,-1.8310934,-1.4934816,-1.526024,-1.514362,-1.6271075,-1.705448,-1.22876,-1.4841359,-1.5329843,-1.3808149,-1.4851562,-1.5467213,-1.3559185,-1.4659147,-1.3718542,-1.5442134,-1.5696582,-1.4318882,-1.5100473,-1.6733764,-1.8788308,-1.7770928,-1.6941129,-1.7016498,-1.6803895,-1.9494201,-1.6129892,-1.5107846,-1.5738691,-1.633186,-1.7125022,-1.7196112,-1.7451313,-1.561809,-1.5738446,-1.517819,-1.5786684,-1.5572215,-1.4550389,-1.5238293,-1.5303425,-1.7509326,-1.5092994,-1.347555,-1.4935187,-1.5910865,-1.3868092,-1.5283989,-1.5656663,-1.434934,-1.4973704,-1.500526,-1.6219364,-1.4883012,-1.39981,-1.4330611,-1.5223932
+-2.541678,-2.9587245,-3.124764,-3.0346699,-2.9799995,-3.1533632,-3.4859004,-3.6819108,-3.8172948,-3.9460914,-3.903494,-3.6726763,-3.4301872,-1.1966529,-2.4750566,-2.7358272,-2.9347248,-3.2703302,-3.5868912,-3.7274184,-3.7869363,-3.6953511,-3.5756652,-3.4856398,-3.600407,-3.6815724,-3.811418,-3.6709466,-3.5662465,-3.6117835,-3.911746,-4.0777454,-4.169919,-3.879012,-3.1431303,-2.8231986,-3.5734615,-3.8415444,-3.842296,-4.1003923,-4.3160286,-4.412855,-4.427784,-4.1246424,-1.0593159,-2.3482547,-2.642984,-2.8348303,-2.692234,-2.9779701,-1.7486292,-2.436913,-2.7475064,-3.0599632,-3.1990905,-3.4959707,-3.5355072,-3.662262,-3.7777467,-3.9503,-4.2143297,-4.330356,-4.0014324,-4.0985374,-4.338148,-4.400934,-4.403986,-4.4998646,-4.2774534,-4.3812904,-1.8289307,-3.0467155,-3.6630728,-4.0681577,-3.9966106,-4.0055094,-3.9786644,-4.244,-1.496536,-3.050448,-3.6772385,-3.9757285,-4.2916822,-4.2858224,-3.9601755,-4.1984315,-4.390373,-4.440525,-4.431572,-4.4317746,-4.4522448,-4.511735,-4.3514066,-4.3227696,-4.384839,-4.4395,-4.2789807,-3.9627056,-1.453381,-2.8605828,-3.2828584,-3.589705,-3.777543,-3.970428,-4.247342,-4.313626,-4.284007,-4.293092,-3.0062985,-3.782314,-4.183977,-4.3040123,-2.3918252,-3.5802226,-4.0599914,-4.204224,-4.169753,-4.234666,-4.2466373,-4.2550673,-4.3119583,-4.4639587,-4.5521803,-4.5056887,-4.389133,-4.5455227,-4.4343853,-4.4788694,-4.5236654,-4.152543,-4.177052,-4.1656933,-4.348749,-4.341529,-4.363736,-4.3814917,-4.4943733,-4.500084,-4.48837,-4.4757643,-4.5173717,-4.594124,-4.518579,-4.6757083,-4.7449784,-4.705288,-4.6409516,-4.6133065,-4.465431,-4.560505,-4.640069,-4.491481,-4.6073723,-4.551216,-2.009523,-3.7915072,-4.289773,-4.541425,-1.9997057,-3.6120062,-3.9693642,-4.4190903,-4.48277,-4.503861,-4.5977964,-4.697337,-4.747669,-4.7519417,-4.712507,-4.4483185,-4.4206004,-4.5598645,-4.685551,-4.7352986,-4.6708035,-4.4801264,-4.5314846,-4.487459,-4.723899,-4.6222105,-4.695264,-2.934799,-3.7861917,-4.142496,-4.4058647,-4.5510244,-4.4915557,-2.6594646,-3.198286,-2.0504906,-3.2117825,-2.6199253,-2.3235946,-3.010579,-3.169714,-2.1745105,-2.749262,-2.9384003,-3.086317,-2.9869995,-3.156683,-3.2119308,-2.6390038,-3.1229568,-3.0643077,-3.2239146,-3.4068825,-3.0322137,-1.6718355,-2.5790758,-3.0355177,-2.5591664,-2.8500829,-2.8065104,-3.1501355,-3.204907,-3.3117247,-3.4460506,-3.3522444,-2.293763,-3.0954943,-3.401464,-3.5120935,-3.6284914,-3.6697454,-3.3840268,-2.9000213,-2.6698852,-2.3727636,-3.0360956,-2.999877,-2.964032,-2.6234546,-3.038547,-3.0348184,-3.109188,-2.6136785,-3.0725594,-2.8272147,-3.1145933,-3.2050235,-2.7080731,-2.9978123,-2.9034314,-3.0718725,-3.001531,-3.005754,-2.736216,-3.1251166,-2.694528,-3.1174283,-3.498638,-2.7244995,-2.6535773,-2.59768,-2.636302,-2.6697583,-2.7714202,-2.5097916,-2.6963885,-3.047216,-3.2388024,-2.9027183,-2.256762,-2.8190126,-2.9564588,-2.5575175,-2.7732053,-3.0862103,-3.031637,-2.2063909,-2.4960907,-2.140522,-2.1994917,-2.695137,-2.0371037,-1.9564298,-1.9537972,-2.4554467,-2.6701326,-2.6556609,-2.403574,-1.4213784,-1.368659,-1.455587,-1.599919,-1.8997313,-2.226375,-2.2281349,-2.3208914,-2.2805676,-2.1622505,-1.4040467,-1.4508799,-1.225339,-1.7183306,-1.6996396,-1.4522392,-1.7304206,-1.2407272,-1.1069496,-1.650037,-1.7842827,-1.8169621,-1.3870362,-1.4163069,-1.7452381,-1.9929107,-1.6895598,-1.4139366,-1.3559209,-1.6048273,-1.8167397,-1.6083149,-1.6951917,-1.8977598,-1.7725505,-1.8316725,-2.108186,-2.434998,-1.6524149,-1.5866035,-1.5903202,-1.9723066,-2.0168705,-1.9304739,-1.9482201,-1.7998285,-2.0253177,-2.0749764,-2.108323,-1.7028636,-1.6816489,-1.5546992,-1.3396741,-1.3193743,-1.464192,-1.5187279,-2.0953512,-2.1794257,-1.8231148,-1.7050688,-1.9429592,-2.1234188,-2.396723,-2.236094,-2.2504556,-2.864263,-2.8516154,-2.878454,-2.7422523,-3.0128906,-3.0997026,-2.9756222,-2.8042614,-3.1507387,-3.033126,-3.0160522,-3.1858125,-3.2198732,-3.3093884,-2.9441037,-3.0560882,-2.9610264,-2.9352412
+-1.1133171,-1.6847007,-2.0679321,-2.1081023,-2.457871,-2.642778,-2.8694506,-3.1036773,-3.242948,-3.288401,-3.3100016,-2.8764927,-2.5915556,-2.9050074,-3.4805257,-3.5518103,-3.4125836,-3.399115,-3.4761715,-3.6050997,-3.0727887,-2.8259177,-2.803398,-2.905365,-3.3314903,-3.483692,-3.270216,-3.2020168,-3.0931041,-3.1978643,-3.4818707,-3.5128977,-3.5181704,-2.7830868,-2.4650884,-3.2303724,-3.4208007,-3.4138563,-3.5530963,-3.5971932,-3.6256962,-3.762903,-3.8867114,-2.47873,-2.57929,-3.4213877,-3.53177,-3.5100532,-3.310891,-3.1513643,-2.8210816,-3.405477,-3.328299,-3.2630029,-3.0952353,-3.172814,-3.1361425,-3.3253818,-3.3676927,-3.4358697,-3.6102366,-3.7160435,-3.4810808,-3.4334006,-3.809033,-4.052709,-4.202043,-4.28995,-2.8077893,-3.3333387,-2.89872,-3.193555,-3.6649878,-3.7976017,-3.0504637,-3.648472,-2.625115,-3.0814505,-2.729753,-3.4497457,-3.4708672,-3.4354973,-3.5983312,-3.51165,-3.0321739,-3.5591645,-3.8137436,-4.000888,-4.0925927,-4.1766186,-4.229273,-4.349633,-4.1822166,-4.1348886,-4.28618,-4.305057,-4.0416274,-4.1014295,-1.9958037,-2.763414,-3.2367826,-3.2869701,-3.4516084,-3.4846745,-3.6961415,-3.8467002,-3.8970654,-3.9151993,-1.9761299,-2.8329043,-3.3366244,-3.6445444,-3.6201682,-3.7805772,-3.9843674,-4.215931,-4.214676,-4.266083,-4.3683643,-4.4762774,-4.4881177,-4.4887123,-4.535537,-4.5678415,-4.39135,-4.584646,-4.5793457,-4.493348,-4.4986916,-3.9166312,-3.0771885,-3.6293058,-4.0697412,-4.3729544,-4.443871,-4.4521556,-4.456834,-4.4566736,-4.4445486,-4.4931717,-4.4933333,-4.5331345,-4.481597,-4.4833126,-4.4598722,-4.495247,-4.524028,-4.5254645,-4.4524865,-4.3233614,-4.4427137,-4.2767515,-4.1328,-4.0732937,-2.5619063,-3.1697793,-3.6640148,-3.911474,-1.9816743,-2.7944322,-3.3780127,-3.7905426,-4.0187855,-4.073502,-4.0860825,-4.1995673,-4.3554554,-4.3273225,-4.3003616,-3.8147082,-1.6813194,-2.8517978,-3.1896603,-3.4355724,-2.4389508,-2.945819,-3.0579417,-3.478981,-3.774016,-3.845285,-3.95266,-4.081529,-3.9821873,-3.942158,-3.8460827,-2.9242435,-2.4651477,-2.3074312,-2.9296937,-3.0582497,-3.3557248,-3.5255024,-3.1916203,-3.6963675,-3.9090657,-2.2526326,-2.860988,-3.2053652,-3.3605084,-3.266468,-3.5527134,-3.7204492,-3.6250014,-3.0854266,-3.4359455,-3.7998137,-3.796566,-3.1780827,-2.7844572,-2.9502707,-3.4094524,-2.9473038,-3.2711453,-3.475123,-3.6928606,-3.7880027,-3.8754935,-3.8374314,-3.778895,-3.336516,-3.735312,-3.7816224,-3.7731447,-3.8035975,-3.8307352,-3.689251,-3.4526203,-2.3921947,-2.8495045,-3.3238995,-3.449564,-3.542042,-3.106283,-3.3004887,-3.3722746,-3.492055,-3.2049036,-3.4682524,-3.60492,-3.6843557,-3.6110048,-3.624259,-3.609778,-3.5596812,-3.5841165,-3.524089,-3.6490939,-3.1515837,-3.3143287,-3.0776424,-3.4237337,-2.9564188,-2.8403468,-2.8914804,-2.8184075,-2.7585053,-2.8569531,-2.7480743,-2.3727636,-2.354836,-2.3971376,-2.0672913,-1.7174407,-1.7102389,-1.8940734,-1.900225,-1.7321779,-1.9347779,-1.8211439,-1.893149,-1.7156736,-1.3905332,-1.7024161,-1.726108,-1.9766685,-1.771475,-1.8786677,-2.0233586,-2.0869727,-1.9711579,-2.0583582,-1.8512534,-1.8450805,-1.8849124,-2.1063313,-2.0337453,-2.0642514,-2.083734,-1.9892045,-2.092016,-2.0096657,-1.8801552,-2.1269972,-2.1584837,-1.9852852,-2.1110168,-2.1918824,-2.1627872,-2.214158,-1.9765478,-1.6016352,-1.8884591,-1.8275802,-1.8820865,-1.7638208,-2.0633879,-2.2559018,-2.1082156,-1.8735433,-1.9606007,-1.897001,-2.0202184,-2.214918,-2.1090636,-2.4160633,-2.210009,-2.0402195,-2.224431,-2.301299,-2.5062246,-2.1881032,-2.3789682,-2.3069727,-2.4612446,-2.5728753,-2.797009,-2.9809976,-2.578504,-2.8295224,-2.7022877,-2.6560066,-2.4949503,-2.4707658,-2.0559003,-1.8367525,-1.8682181,-2.0283523,-2.2359061,-2.523508,-2.3373024,-2.3112476,-2.3432407,-2.4191382,-2.2315583,-2.292663,-2.5287683,-2.848155,-2.7684784,-3.2922096,-3.5308776,-3.3018742,-3.4757693,-3.2255473,-3.1448245,-3.4453945,-3.5752015,-3.411576,-3.243949,-3.4156365,-3.5807207,-3.7360675,-3.370203,-3.5362206,-3.1653996,-3.0254345
+-1.2477518,-1.7340307,-2.160793,-2.2678814,-2.5259905,-2.7225313,-2.9454372,-3.2536988,-3.619799,-3.7051897,-3.8630714,-2.022563,-2.449503,-2.0119,-2.735652,-3.0777874,-3.1120293,-3.3618007,-3.7467992,-3.997532,-3.7602956,-2.5306134,-2.0907931,-2.084,-2.5185966,-3.0702953,-3.0080469,-2.6138508,-2.4180262,-2.959318,-3.0976536,-2.9746156,-3.2041223,-2.0159016,-2.0207875,-2.354195,-2.349968,-2.6837232,-3.1406405,-3.425878,-3.6005306,-3.9220104,-4.0828953,-3.4265318,-1.503161,-2.2901962,-2.8365514,-2.9933095,-3.1245034,-2.0545409,-2.3178031,-2.9618108,-2.9068477,-2.8122675,-2.6133337,-2.6281586,-2.809277,-2.9674575,-3.1479363,-3.2516878,-3.4586115,-3.7678003,-3.9200835,-3.7298834,-3.9558778,-4.1477966,-4.0269785,-4.1788282,-3.7643566,-3.8710585,-3.5456827,-3.9782906,-4.311225,-4.5651283,-4.006624,-1.4823923,-2.2769122,-2.692935,-2.5059278,-2.8578506,-2.8096821,-2.9948344,-3.3965697,-3.6859202,-3.6936798,-3.8787785,-4.1563654,-4.230994,-4.1870604,-4.206034,-4.26171,-4.4847016,-4.5591774,-4.3471074,-4.4812803,-4.541153,-4.4952664,-4.5161343,-2.8712504,-1.6162976,-1.9726499,-2.661852,-3.2662148,-3.5890405,-4.1079597,-4.2787523,-4.3131285,-4.346292,-4.3032255,-4.094925,-4.2234735,-4.4622297,-4.297553,-4.386375,-4.559228,-4.5747113,-4.414986,-4.388602,-4.3437705,-4.3309174,-4.2782583,-4.499911,-4.6360655,-4.6319933,-4.6205053,-4.653529,-4.641882,-4.087051,-4.4563084,-4.3936663,-4.283346,-4.226926,-4.509241,-4.5168476,-4.482749,-4.3595104,-4.3617563,-4.415449,-4.484791,-4.521345,-4.533384,-4.5004735,-4.5598764,-4.662814,-4.7122135,-4.69546,-4.6325097,-4.6267815,-4.5863924,-4.5046263,-4.413998,-4.317257,-4.2433195,-4.2078714,-4.0778503,-4.2212653,-4.1002226,-4.2896414,-4.239221,-3.6992455,-4.343191,-4.5644493,-4.63233,-4.6106005,-4.52608,-4.5201445,-4.646495,-4.6693277,-4.6884775,-4.247425,-3.4569666,-4.0144806,-4.253639,-4.1998105,-1.1593558,-1.8348628,-2.6107118,-3.3570027,-3.718544,-3.9600208,-4.086198,-4.125955,-4.1035066,-4.1175313,-3.9131546,-2.5767665,-1.919044,-2.1153076,-2.6015446,-2.9813247,-3.170795,-3.4117856,-3.388763,-3.0366817,-3.781321,-1.820678,-1.8709196,-2.6810675,-2.6949258,-2.7511144,-2.6622543,-3.098331,-3.0388818,-3.1481323,-3.171931,-3.2848282,-3.1248019,-1.9043926,-2.132845,-2.3110642,-2.8673635,-1.9885236,-2.4581962,-2.6679282,-2.7208724,-2.987506,-3.104095,-3.1894891,-3.2230673,-2.6491876,-2.9341717,-3.0919738,-3.2866693,-3.399466,-3.4466147,-3.310124,-3.3519897,-2.8997517,-1.6158144,-2.548602,-2.8771472,-2.9887094,-2.4744654,-2.7415006,-2.9165616,-2.7344794,-2.3780818,-2.5755808,-2.7070372,-2.8856058,-2.8089545,-2.4777718,-2.7040808,-2.5388174,-2.7789466,-2.9008322,-2.790726,-2.6395235,-2.7772534,-2.4626396,-3.4239414,-2.7708044,-2.0219233,-1.9788524,-2.4327052,-2.4464276,-2.7910304,-2.2215002,-1.8822614,-1.7478966,-2.3177843,-2.4826512,-2.2114882,-1.5557258,-2.2571359,-2.4757135,-1.8596004,-1.6381298,-2.3601627,-2.44057,-1.7929035,-1.9307266,-2.2719033,-2.305249,-2.5372748,-2.5768054,-2.347261,-2.2063196,-1.6638945,-1.8494228,-1.8272206,-1.6857307,-1.7636069,-1.7616628,-1.6569723,-1.8047053,-1.7933053,-2.1495783,-2.2140932,-2.3298068,-2.4782915,-2.4686997,-1.7085583,-1.5579656,-1.6417495,-1.5906483,-1.674564,-1.5638462,-1.777653,-1.9254926,-1.4938953,-2.081212,-2.3608038,-2.4427276,-2.09765,-1.8020371,-1.4872565,-1.6338778,-1.3663249,-1.5628632,-1.4877647,-1.8106773,-1.86941,-1.527402,-1.6541317,-1.9459661,-1.922543,-2.2526565,-2.1739147,-2.3392723,-2.2098844,-1.4499656,-1.6767989,-1.6860801,-1.6361533,-1.634078,-1.7982752,-1.6766206,-2.0135884,-2.33844,-2.1354303,-2.2863941,-2.0629184,-1.9531937,-2.0790894,-2.1157289,-2.0227313,-1.5215665,-1.8403217,-1.956385,-1.5829363,-1.5894328,-1.6837505,-1.7530454,-1.745271,-1.6244427,-1.9650909,-1.7363187,-1.8766198,-2.311657,-2.064993,-2.5573978,-2.8350646,-2.8045092,-2.9855332,-2.7382202,-2.7983394,-2.430571,-2.5512276,-2.4561553,-2.458853,-2.4999528,-2.501356,-2.5223851,-2.7640977
+-0.39183536,-0.7534191,-1.1712978,-1.3240163,-1.2968985,-1.8656259,-2.3007693,-2.485271,-2.4120543,-0.9517188,-0.5774098,-0.94279665,-0.9967906,-0.95384187,-0.9649734,-1.0668567,-1.513126,-2.1074054,-2.4557626,-2.592194,-2.5185935,-0.81370324,-0.9400317,-0.7907011,-0.94563806,-0.8905736,-0.88487095,-1.0697893,-1.0297999,-1.0676082,-1.2477255,-1.5657462,-1.7743577,-1.7149532,-1.0690111,-0.8018815,-0.39066443,-0.7127895,-0.928084,-1.4389592,-1.8255697,-2.1449816,-2.3855937,-2.4608357,-2.1632981,-0.9213143,-1.3125772,-1.8462003,-1.6596044,-0.19242033,-0.78960943,-0.7812893,-0.6997941,-1.0000831,-1.0145013,-1.027969,-1.2629653,-1.4980195,-1.8828441,-2.0216548,-2.30299,-2.6672158,-2.7592607,-2.6999621,-2.879642,-2.9246905,-2.6879454,-2.9548092,-2.9206588,-2.875143,-2.744986,-2.605129,-2.8382444,-3.0339997,-2.6757896,-1.063754,-0.7548875,-1.017574,-0.76622814,-1.3846244,-1.8696207,-2.0429997,-2.3759837,-2.5640564,-2.490127,-2.6320562,-2.9886515,-2.9266953,-2.9509013,-2.9624302,-2.8778014,-3.0695617,-3.2132115,-3.085342,-3.081985,-3.1632626,-3.111682,-3.1956222,-3.1268487,-3.0972614,-2.3723555,-2.7598934,-3.1706524,-3.2097344,-3.4451463,-3.3704958,-3.305479,-3.3545327,-3.4278188,-3.3813949,-3.364826,-3.5572028,-3.4518478,-3.4578123,-3.5887494,-3.6674876,-3.511167,-3.6613026,-3.6926017,-3.7214255,-3.564483,-3.5932617,-3.7708519,-3.7840233,-3.6976643,-3.7860641,-3.8874235,-3.6505656,-3.6362438,-3.6938496,-3.5365987,-3.6266344,-3.851959,-3.8416522,-3.9016604,-3.8514652,-3.7699497,-3.8025937,-3.8374162,-3.8766103,-3.8812609,-3.8535616,-3.9627595,-4.007519,-4.017541,-4.0001287,-3.9480314,-3.9785867,-3.9913807,-4.0317855,-4.069421,-4.1052313,-4.061489,-3.873949,-3.8292298,-3.7696202,-3.6343806,-3.67065,-3.9166555,-3.6549485,-3.9341185,-3.9686027,-4.0136504,-4.052535,-3.805453,-3.7200608,-3.80652,-3.9328003,-3.984211,-4.0117555,-3.773778,-3.7031713,-3.9376144,-3.8210204,-3.3838258,-3.140108,-3.4241705,-4.0292406,-4.012603,-4.026952,-4.05177,-4.034396,-4.031419,-3.7984319,-3.4301565,-2.2991588,-2.5650918,-2.7895594,-3.0428512,-3.6726856,-3.8142319,-3.7729988,-3.8242774,-3.7075424,-3.7833552,-3.3905683,-0.53132945,-1.2496153,-1.3213495,-0.8905509,-0.6480403,-0.8921496,-1.3267597,-1.408472,-1.43374,-1.6404462,-1.820089,-1.260017,-1.4496783,-1.3669306,-1.2907844,-1.2503418,-1.2212489,-0.82458466,-0.9350053,-1.1257457,-1.462354,-1.624586,-1.600272,-1.5007023,-1.6164349,-1.7772146,-1.9151644,-2.1301205,-2.15698,-2.0779476,-2.0108783,-2.178183,-1.2579061,-1.2855308,-1.6516808,-1.8352083,-0.81426996,-0.8205586,-0.65647966,-0.71629816,-0.39089775,-0.56608135,-0.64582914,-0.6920045,-0.24577591,-0.20462352,-0.21990111,-0.3112527,-0.20067808,-0.50924605,-0.35523596,-0.42573768,-0.36368027,-0.47255132,-0.6835828,-0.400843,-0.38176453,-0.3960685,-0.3701509,-0.43012494,-0.40899238,-0.3910603,-0.4022304,-0.45298487,-0.731037,-0.6884782,-0.49132666,-0.40935925,-0.22588247,-0.40140852,-0.4590567,-0.64282286,-0.62371737,-0.59572536,-0.42441145,-0.26871395,-0.17331138,-0.11382669,-0.4153946,-0.5472257,-0.6915024,-0.4701523,-0.21117082,-0.58542395,-0.6750505,-0.3695603,-0.36436042,-0.37841564,-0.5137674,-0.44923458,-0.46058902,-0.5601593,-0.4244351,-0.4636337,-0.30282006,-0.12598848,-0.5975812,-0.66971356,-0.57060647,-0.6589698,-0.2503549,-0.13765442,-0.1458463,-0.26473254,-0.20725653,-0.2923127,-0.19584498,-0.084023654,0.057482656,0.10703388,0.22411418,0.13337028,-0.6593159,-0.71242106,0.3027257,-0.19590098,-0.42168096,-0.60245216,-0.71238744,-0.61196756,-0.5870067,-0.37708092,-0.052058343,-0.07810968,0.17962119,-0.68677604,-0.14935839,-0.69776845,-0.60378104,-0.6530009,-0.45453164,-0.5184504,-0.6166323,-0.62609553,-0.42777795,-0.32913223,-0.41786093,0.30617943,0.055978592,0.25168803,0.49673295,-0.33539107,-0.66627663,-0.42363825,-0.4651399,0.16484354,-0.5201416,0.5908518,0.85674554,0.8238508,0.6134637,0.28533056,-0.29811496,-0.8466583,0.031185683,-0.30741057,-1.0948716,-0.1702539,-0.80895007,-0.46250847,-0.2734004,-0.20197873,0.16189605,0.45335922,-0.15336898,0.31812975,-0.098916724,-0.19975734,0.02332149
+-1.149918,-1.9029628,-2.375747,-2.705911,-2.985379,-3.1847334,-3.4639735,-3.6737106,-3.6609626,-1.3812273,-2.44413,-2.6251159,-2.56819,-2.488481,-2.8746948,-2.9749467,-3.1555624,-3.404289,-3.6732726,-3.79917,-3.7548566,-1.3946592,-2.617402,-2.8051653,-2.911407,-2.9921348,-2.755949,-2.829381,-2.9546313,-3.1041965,-3.2378867,-3.5202792,-3.6097305,-2.574031,-1.9557085,-2.7034883,-2.4074748,-2.7545133,-2.7631016,-3.0129955,-3.0850153,-3.2688677,-3.5522757,-3.6622806,-3.5791993,-3.6074963,-3.5974417,-3.7705655,-3.8046129,-1.8709283,-2.7471795,-2.989181,-3.115378,-2.5071898,-2.579824,-3.0385633,-3.1594615,-3.256231,-3.5976481,-3.6992588,-3.816918,-3.947029,-3.9757156,-4.0145674,-4.1017094,-4.121525,-3.1682036,-3.6565247,-3.9380608,-3.9955096,-4.02454,-3.9884782,-4.0895224,-4.1143265,-4.1343403,-4.1045294,-3.8197517,-4.123096,-2.2183688,-3.3054318,-3.6914148,-3.9562004,-4.062807,-4.135311,-4.136981,-4.181129,-4.250159,-4.250057,-4.256198,-4.270111,-4.2747655,-4.273328,-4.244969,-4.234334,-4.2455006,-4.2668033,-4.2712955,-4.2859125,-4.3062363,-4.290182,-4.255188,-4.2354593,-4.3392,-4.3471813,-4.3519897,-4.3480506,-4.338298,-4.3498096,-4.381692,-4.382283,-4.3742557,-4.4055653,-4.410557,-4.4031653,-4.397726,-4.375681,-4.3773184,-4.3587694,-4.3334117,-4.3369236,-4.297636,-4.324538,-4.3667903,-4.3849025,-4.410602,-4.3915424,-4.3890934,-4.4347486,-4.4189057,-4.4193726,-4.4354305,-4.4184875,-4.4091034,-4.3983383,-4.377184,-4.3821807,-4.428508,-4.393086,-4.3593197,-4.3619747,-4.3415833,-4.385166,-4.3684764,-2.6974392,-3.6693544,-4.1004095,-4.30836,-4.375163,-4.3908687,-4.4016585,-4.3937025,-4.3618956,-4.4294744,-4.4667015,-4.4402003,-4.470975,-4.4456854,-4.473732,-4.4643946,-4.5191803,-4.4659986,-4.4068356,-4.3940296,-4.4046216,-4.4966965,-3.984343,-4.43494,-4.4960227,-4.4630594,-4.4555864,-4.442611,-4.476696,-4.431946,-4.378471,-4.032852,-4.3796844,-4.516688,-4.444539,-4.4513307,-4.4883595,-4.4739056,-4.4908957,-4.509225,-4.525589,-4.3908606,-1.6219846,-2.9910722,-3.3561218,-3.669868,-4.13243,-4.278029,-4.385808,-4.4062552,-4.47513,-4.554218,-4.2106733,-0.24577901,-2.2743208,-1.6088531,-1.8038126,-2.840149,-3.1499357,-3.318106,-3.4999356,-3.5309334,-3.5632954,-3.4013429,-2.763815,-3.3689075,-3.2035851,-1.3845257,-2.682997,-2.3761778,-2.5103967,-2.7156723,-2.9839547,-3.158763,-3.2310412,-3.2795172,-3.2517738,-3.3721416,-3.3880277,-3.4016185,-3.404276,-3.5531044,-3.5845103,-3.5756018,-3.815455,-3.7152767,-3.6195884,-3.839043,-3.766109,-2.3799257,-2.4003491,-2.9071956,-2.858779,-2.7391598,-3.1096497,-3.1419287,-3.1331868,-2.706586,-2.8257604,-3.1864533,-3.0580134,-3.13464,-3.4671075,-3.4405193,-3.1495497,-3.4158068,-3.74263,-3.7046833,-2.486244,-2.5510983,-0.9533053,-2.1501079,-2.645609,-2.6698575,-2.2989922,-1.3527037,-1.2718288,-2.597383,-2.9786773,-3.0767636,-2.818355,-2.5017543,-2.829501,-2.594215,-2.7456617,-3.2718005,-3.4169464,-3.2207654,-3.008473,-3.0365124,-3.0028906,-3.0386913,-3.2299435,-2.5000575,-1.9442587,-1.3742809,-2.1201758,-2.3962944,-1.7699256,-0.54377735,-0.88210094,-0.71919984,-0.6695558,-1.5403382,-2.2503169,-2.562547,-2.7748451,-2.8299532,-2.803018,-2.188117,-1.5255889,-1.7179887,-1.572049,-1.3565595,-1.5396297,-1.6445855,-1.7809738,-1.6065615,-1.9668931,-2.027903,-2.0340312,-2.0257435,-1.9405278,-1.8738818,-1.943653,-1.308371,-1.7072086,-1.7402216,-1.3124585,-0.9799338,-1.736949,-0.9499367,-1.4117094,-2.1598158,-2.6494226,-2.8675675,-3.0862327,-2.9145932,-1.9398676,-2.155805,-1.7444751,-2.018961,-1.1821223,-1.0138924,-1.5600444,-2.1307378,-2.8093724,-2.4670615,-2.703197,-2.466918,-2.2957091,-2.5756986,-2.6478,-2.4593565,-2.2984014,-1.8115612,-2.4539638,-2.1134934,-2.088661,-2.2203314,-2.1580076,-2.723332,-2.9400265,-2.8908567,-2.9624624,-3.0020618,-2.9566302,-2.8997493,-2.9010267,-2.9098141,-2.8605347,-2.1358235,-2.8423429,-3.0258749,-3.0419526,-3.0673175,-2.926309,-2.97841,-3.1093338,-2.7131946,-2.742343,-3.1188307
+-0.38717753,-0.82538956,-1.160213,-1.3703033,-1.537743,-1.5516323,-1.5493592,-1.4089005,-1.0236387,-1.6311682,-1.4396893,-1.6345627,-1.6746225,-1.7962925,-2.0267525,-2.0181031,-1.9036704,-1.8510542,-1.7668651,-1.7320415,-1.8509108,-1.433092,-2.0400233,-1.8498713,-2.1116595,-2.1073792,-1.9202616,-2.1602347,-1.9466548,-2.1204872,-1.9939271,-1.9528793,-1.8207783,-1.6389519,-1.5909127,-1.6910163,-1.4821401,-1.6493202,-1.8536838,-1.8934892,-1.9373971,-1.804935,-1.6875795,-1.628934,-1.824579,-1.8960285,-1.9344325,-1.8852847,-1.733126,-1.9320337,-1.9872764,-2.1707764,-1.9651431,-1.6544491,-1.7573473,-1.8600346,-1.870829,-1.8753259,-1.8301071,-1.8053442,-1.7654662,-1.7488562,-1.7923483,-1.7226907,-1.5831975,-1.6451964,-1.6391534,-1.6613542,-1.7000238,-1.7153927,-1.7418102,-1.9019641,-1.6921031,-1.8655404,-1.7738525,-1.5268093,-1.9865984,-1.561392,-1.68699,-1.865901,-1.8027847,-1.806331,-1.8338549,-1.7887193,-1.9560249,-2.0156865,-2.0148263,-2.0774767,-2.0983791,-2.1168175,-2.2045858,-2.2411065,-2.2474482,-2.2827008,-2.2947316,-2.3496628,-2.3779106,-2.3673952,-2.357767,-2.370425,-2.4963112,-2.497088,-2.45186,-2.489819,-2.446857,-2.3428853,-2.3608897,-2.3685808,-2.4038167,-2.4595172,-2.4614465,-2.3916194,-2.406918,-2.4324598,-2.3402257,-2.330941,-2.3338532,-2.3189178,-2.28512,-2.178392,-2.0793676,-2.0717654,-2.094386,-2.1214843,-2.1548274,-2.0944145,-2.1349573,-2.1892285,-2.2318525,-2.2561097,-2.2231433,-2.23276,-2.2031014,-2.1757178,-2.1931596,-2.1892893,-2.1639507,-2.2656019,-2.3053539,-2.234899,-2.2027097,-2.1584532,-2.1960583,-2.0522676,-2.1629817,-2.2238479,-2.3068614,-2.2699828,-2.2972806,-2.305223,-2.3154385,-2.36214,-2.252943,-2.264205,-2.255427,-2.290771,-2.299842,-2.350871,-2.4223144,-2.3816774,-2.2764182,-2.293394,-2.2942262,-2.3551702,-2.2972748,-1.0469646,-1.5224847,-1.8345455,-2.117858,-2.1910071,-2.2837892,-2.27817,-2.2956743,-1.8453578,-1.8071872,-2.1566355,-2.3941894,-2.4312303,-2.240132,-2.2799044,-2.3102608,-2.2977223,-2.2987275,-2.2446198,-1.2113956,-0.45377848,-1.1762604,-1.564859,-1.7874511,-1.9003586,-1.9528145,-1.986132,-2.0939837,-2.0491073,-2.1082263,-2.1749094,-0.09155321,-1.4798278,-1.139131,-1.8025529,-1.638873,-1.4717495,-1.4779413,-1.5241665,-1.4487208,-1.4232188,-1.401976,-1.378323,-1.5452532,-1.3398083,-1.704586,-1.9917339,-2.2938602,-2.5416894,-2.2278,-1.7456867,-1.548201,-1.5621073,-1.5483202,-1.7068974,-1.7103053,-1.6528434,-1.6034168,-1.5558909,-1.5748597,-1.5621299,-1.629875,-1.6151797,-1.6208586,-1.0749444,-1.4182795,-1.5990456,-1.4815438,-1.2162461,-1.594483,-1.2654554,-0.80985504,-0.98459166,-1.1979889,-1.0799961,-1.3417773,-1.4627272,-1.3359239,-1.3657597,-1.4743576,-1.5503403,-1.5950066,-1.7883738,-1.838615,-1.7678807,-1.8140818,-1.6214787,-1.8748895,-1.8567911,-2.362504,-1.2999544,-1.1834506,-1.2545961,-1.4658116,-1.5203873,-1.0929537,-0.9736565,-1.0521566,-1.1770552,-1.4411764,-1.3595185,-1.2115592,-1.452248,-1.4442449,-1.4254949,-1.4301172,-1.530115,-1.658594,-1.7563103,-1.840615,-1.7231597,-1.4775498,-1.5338188,-1.9772328,-2.191805,-1.285603,-1.513282,-1.9489597,-1.9098865,-1.71397,-1.7102356,-1.5580425,-1.2741197,-1.2429441,-1.3144139,-1.4365021,-1.5066876,-1.7646511,-1.9941994,-1.8389075,-2.0473487,-1.8953224,-2.0178432,-1.5683731,-1.4490277,-1.616011,-1.4939619,-1.5140029,-1.6015959,-1.7165257,-1.7878085,-1.8205086,-1.8018168,-1.7692403,-1.8107061,-1.5000128,-1.8594421,-2.1277254,-2.069028,-2.451018,-1.9318295,-1.3550986,-1.1249696,-1.129632,-1.2328652,-1.3453567,-1.460817,-1.4944686,-1.6638399,-1.660566,-2.0574565,-1.9289943,-1.8956999,-1.5359641,-1.571798,-1.5755354,-1.5537405,-1.7405179,-1.6255277,-1.592132,-1.5344284,-1.6008649,-1.7054131,-1.9073397,-1.8515636,-1.7277937,-1.7288814,-1.8678751,-2.009241,-2.1242378,-2.109394,-2.0929337,-1.9510499,-1.816845,-1.7433596,-1.6837791,-1.5074936,-1.3566339,-1.2273483,-1.6174711,-1.5938079,-1.3510346,-1.3701304,-1.649797,-1.479412,-1.7383093,-1.7942843,-1.9250134,-1.9548453,-1.9343146
+-0.635172,-1.1712023,-1.5298886,-1.7345493,-1.8713051,-1.9777697,-2.2800384,-2.5386367,-0.16580918,-1.5738608,-1.5873789,-1.7558349,-1.782494,-1.8748076,-2.1031184,-2.166511,-2.2171824,-2.3795629,-2.6677847,-2.933505,-3.1029952,-1.08662,-2.1274219,-2.480136,-2.749307,-3.0034788,-1.0084975,-1.5458242,-2.3084626,-2.689656,-2.8912063,-3.179487,-3.437661,-3.5838745,-3.6651044,-2.5324385,-2.5133963,-3.0892286,-3.0664148,-3.366689,-3.5482998,-3.6951318,-3.7661963,-3.857109,-3.9111478,-4.078847,-4.1664357,-4.209941,-4.212241,-4.241917,-4.254116,-4.2704296,-4.376323,-4.2862887,-4.2424035,-4.3011923,-4.3260202,-4.381878,-4.3647156,-4.3750887,-4.379835,-4.3518615,-4.371376,-4.373638,-4.368042,-4.3260307,-4.3436856,-4.302188,-4.3815856,-4.394421,-4.4210844,-4.4393206,-4.2546353,-4.340678,-4.4441805,-4.447426,-4.4502325,-4.45817,-4.3690033,-4.4207473,-4.3009777,-4.35672,-4.375904,-4.4362235,-4.4888377,-4.4964647,-4.4387054,-4.3616357,-4.321088,-4.3055925,-4.377992,-4.321999,-4.2624674,-4.3004646,-4.3467426,-4.3904243,-4.4224806,-4.4031467,-4.4032736,-4.383621,-4.418889,-4.4847307,-4.4522333,-4.4263487,-4.3642006,-4.3250732,-4.3448586,-4.3814073,-4.4173055,-4.4467206,-4.4473352,-4.4382505,-4.425152,-4.4032116,-4.336255,-4.321207,-4.3033075,-4.207218,-4.129391,-4.0941544,-4.113713,-4.2000303,-4.272412,-4.308418,-4.3214655,-4.360421,-4.4320765,-4.4462194,-4.481497,-4.4509788,-4.445304,-4.4090366,-4.4251275,-4.4138927,-4.3448625,-4.232017,-4.2868986,-4.3457813,-4.281374,-4.3003592,-4.2841773,-4.306443,-4.3183885,-4.2869782,-4.2748423,-4.3052325,-4.250923,-4.3650036,-4.415678,-4.4013596,-4.348048,-4.341027,-4.3638163,-4.40894,-4.422777,-4.417428,-4.4384813,-4.473922,-4.497504,-4.3315067,-4.3122454,-4.3693533,-4.343646,-4.3071785,-4.387236,-4.3055415,-4.410714,-4.4827414,-4.4913135,-4.4151726,-4.2552395,-4.158946,-4.2406006,-4.1633472,-4.344657,-4.4707003,-4.4887724,-4.4140034,-4.267223,-4.201832,-4.1973968,-4.267542,-4.3412004,-4.4295483,-4.4164743,-4.3668747,-4.2619333,-4.2600317,-4.3722563,-4.432105,-4.3281727,-4.2283764,-4.2286067,-4.377405,-4.3590894,-4.4090815,-4.2470927,-3.6866198,-2.0236034,-1.7412163,-3.1921968,-3.4650674,-3.6436942,-3.733688,-3.8685462,-3.8894591,-3.3471591,-3.7621236,-3.7048445,-3.221498,-0.6023684,-2.6096463,-2.2340693,-2.7050552,-2.9674416,-3.200582,-3.3337038,-3.4499936,-3.6158736,-3.749097,-3.8168197,-3.817805,-3.8731322,-3.8777401,-3.882576,-3.9998493,-3.918038,-3.9002376,-3.9031608,-3.9969854,-4.000769,-3.859875,-3.943684,-1.996508,-2.8548274,-3.2667964,-3.232225,-3.4223523,-3.4777098,-2.258794,-1.7524018,-2.5858464,-2.814723,-2.8907337,-3.1438394,-3.2648873,-3.2417803,-3.31206,-3.639348,-3.5451834,-3.4938102,-1.7151858,-2.7845078,-2.1893287,-1.7290932,-2.5422907,-2.7600255,-2.7842836,-1.7886349,-1.4137288,-2.3303564,-2.279594,-2.3831987,-2.5815806,-2.7628553,-2.7773314,-1.6886681,-2.2013152,-2.4101484,-2.4557316,-2.5953827,-2.7023888,-2.7584047,-2.8298223,-2.3870394,-2.7770433,-2.7856512,-2.4380777,-1.7776899,-1.6426669,-2.1731455,-1.8391399,-1.4601153,-1.8043772,-1.9786507,-2.218474,-2.3012602,-2.69764,-2.489377,-2.3701048,-2.2872012,-2.265232,-1.5989217,-1.9760875,-1.814762,-2.1079888,-2.05261,-1.9918207,-2.2693098,-2.2371402,-2.2383857,-2.2263117,-2.1584797,-2.1645913,-2.2223294,-2.2860343,-2.277045,-1.8662814,-1.6384772,-2.057709,-2.1880345,-1.7768203,-1.6194382,-2.0062513,-2.3050604,-2.167985,-2.7485144,-2.5277433,-2.346452,-2.2795086,-2.2876658,-2.0501723,-1.4898851,-2.0002718,-2.1166527,-1.5618457,-2.025296,-2.257515,-2.2958894,-2.073268,-2.1022897,-2.1373463,-2.1690328,-2.278052,-2.269473,-2.2534747,-2.2852468,-2.3682067,-1.4210254,-2.19531,-2.2244968,-2.3199015,-2.3904295,-2.5322108,-2.5872748,-2.634855,-2.6272655,-2.6873937,-2.7736514,-2.8736348,-2.8773851,-2.9017348,-3.0138419,-3.0607157,-0.5286851,-1.3567845,-2.0909727,-1.8018314,-1.6753968,-2.1919413,-1.7083503,-2.1654668,-2.1832843,-2.3125844,-2.5017946
+-1.9916185,-2.630046,-3.0090473,-3.2924414,-3.4594707,-3.5758162,-3.7189307,-2.6203322,-1.7398216,-1.5561607,-2.4317286,-2.7645173,-3.122179,-3.5730903,-3.8846972,-4.0362425,-4.143153,-4.2435007,-4.297726,-4.380387,-4.42255,-3.521964,-4.008152,-4.1585407,-4.2872753,-4.3388476,-3.4630318,-3.9176836,-4.1921816,-4.306388,-4.349387,-4.3305244,-4.364639,-4.36479,-4.3474374,-2.208709,-2.1429203,-3.0285013,-3.4364793,-3.8780146,-4.082815,-4.1734858,-4.2906303,-4.298591,-4.289454,-4.3722634,-4.409319,-4.4793572,-4.523238,-4.549505,-4.5396185,-4.5165954,-4.563768,-4.3642306,-4.339863,-4.464288,-4.5217104,-4.5361147,-4.5092916,-4.531312,-4.54848,-4.5442996,-4.5688205,-4.603614,-4.5819435,-4.5315433,-4.553847,-4.560381,-4.586634,-4.592452,-4.572916,-4.4984055,-4.4211216,-4.519993,-4.6095877,-4.6127663,-4.604005,-4.6072083,-4.548251,-4.5611963,-4.5734987,-4.606386,-4.631709,-4.6671214,-4.669133,-4.6706276,-4.6688533,-4.6214323,-4.612532,-4.6187944,-4.6497464,-4.5855007,-4.542716,-4.5426707,-4.547653,-4.579938,-4.609415,-4.624524,-4.606114,-4.6074705,-4.5972414,-4.6555367,-4.683596,-4.66406,-4.607423,-4.5718603,-4.5634136,-4.598997,-4.6006365,-4.64867,-4.6578116,-4.6469235,-4.655305,-4.6302185,-4.635312,-4.563098,-4.616317,-4.6031446,-4.6144266,-4.615056,-4.5525646,-4.5328927,-4.5327935,-4.5707836,-4.6192045,-4.654125,-4.6303663,-4.6196966,-4.6578436,-4.669325,-4.6357684,-4.5789948,-4.588538,-4.602246,-4.607537,-4.585662,-4.5758815,-4.6328964,-4.6327353,-4.5755997,-4.561576,-4.5740824,-4.547019,-4.5490503,-4.5403275,-4.6004686,-4.588188,-4.544223,-4.560061,-4.576787,-4.6038084,-4.5710216,-4.563414,-4.5749774,-4.5701113,-4.5739403,-4.579273,-4.611277,-4.640916,-4.5878778,-4.4911823,-4.4757648,-4.4502087,-4.436245,-4.450597,-4.425681,-4.491294,-4.54842,-4.575888,-4.5613985,-4.5237875,-4.4713926,-4.3482766,-4.3895226,-4.4921474,-4.5600834,-4.5498238,-4.4852366,-4.462636,-4.478549,-4.4442387,-4.3397264,-4.385521,-4.444484,-4.4879045,-4.4176264,-4.4216795,-4.412407,-4.4870377,-4.4855723,-4.484418,-4.4312906,-4.342106,-4.2712,-4.2865963,-4.346616,-4.2018566,-2.4038396,-2.438931,-1.7670218,-3.3888834,-3.9754286,-4.293373,-4.3684454,-4.402062,-4.270303,-3.8977935,-3.6253853,-3.8928509,-3.829127,-0.33373687,-2.6886873,-2.0793982,-2.8102722,-3.0424347,-3.3396053,-3.6131794,-3.8738413,-4.040989,-4.1386824,-4.154916,-4.1368494,-4.17749,-4.1966314,-4.201212,-4.300854,-4.2446985,-4.2690563,-4.2895904,-4.2578382,-4.178708,-4.31821,-4.2495556,-0.9685208,-1.6705483,-2.6834188,-2.8928337,-3.1386297,-3.2924976,-2.600823,-2.4574232,-2.930331,-3.1575751,-3.3085017,-3.4896412,-3.5647907,-3.6881518,-3.842926,-3.9352617,-3.9393945,-3.8123386,-2.5522962,-2.0697145,-2.7079651,-2.9286842,-3.3405335,-3.5293667,-3.5925193,-2.0882828,-1.4930326,-2.610922,-2.9381952,-3.201968,-3.3491917,-3.3742352,-3.432635,-2.6877582,-1.6429719,-2.6592648,-2.9028773,-3.1286259,-3.243809,-3.319267,-1.813866,-2.5119133,-2.7560937,-2.8721092,-2.8657367,-1.1026669,-2.1707382,-2.499497,-1.4915553,-1.9592206,-1.1746238,-1.8979156,-1.1654183,-1.4878422,-2.0587847,-2.3627512,-2.5577734,-2.6627643,-2.7553144,-2.1001506,-1.5454996,-1.6594433,-2.0807433,-1.438103,-1.5878314,-2.0042872,-2.3028612,-2.4680464,-2.5985153,-2.704949,-2.811635,-2.8637018,-2.9130034,-2.8881297,-1.8278974,-1.5216045,-2.2362118,-2.3785038,-1.7037901,-1.845425,-1.8878953,-2.120462,-1.1084405,-1.9827784,-2.336542,-2.5342536,-2.7523074,-2.7861795,-2.1327305,-1.2205738,-1.91555,-2.0930917,-1.5758784,-2.0482194,-2.3668187,-2.638603,-2.8379467,-2.8961763,-2.573664,-2.7027578,-3.0147247,-3.162951,-3.3387904,-3.485585,-3.6183207,-1.958639,-3.0895758,-3.1544328,-3.3427935,-3.491665,-3.5755892,-3.7042134,-3.8083606,-3.8583055,-3.937725,-4.013052,-4.068125,-4.0729704,-4.105188,-4.120593,-4.0900183,-1.5749866,-2.2891555,-3.1278064,-3.029426,-1.6564249,-2.717837,-2.9191236,-3.2170148,-3.4212744,-3.679903,-3.8844562
+-1.2000368,-3.5281258,-4.8103013,-5.270298,-5.299,-5.2483673,-5.2952957,-5.3121815,-5.39017,-5.4217653,-5.4742923,-5.5543604,-5.6155853,-5.592528,-5.571232,-5.4702873,-5.351498,-5.332713,-5.3419795,-5.398792,-5.4448643,-5.487575,-5.5583878,-5.5335417,-5.5848436,-5.564986,-5.5801215,-5.591766,-5.5846896,-5.5785055,-5.445425,-5.3551865,-5.39402,-5.3815317,-5.303176,-5.3129535,-5.3485174,-5.388582,-5.4348297,-5.442858,-5.3993955,-5.405622,-5.5764017,-5.6164627,-5.6208477,-5.6247425,-5.582226,-5.4905167,-5.500221,-5.581686,-5.5635276,-5.522064,-5.544292,-5.5763426,-5.518477,-5.5749955,-5.5503554,-5.457179,-5.4039345,-5.4099517,-5.41545,-5.369773,-5.3851004,-5.375309,-5.3099165,-5.313501,-5.3667364,-5.4474297,-5.5259147,-5.545582,-5.5224695,-5.452793,-5.379903,-5.425294,-5.545695,-5.5542755,-5.5258408,-5.4859495,-5.5067234,-5.481572,-5.43353,-5.4069767,-5.4360056,-5.393138,-5.449623,-5.4442077,-5.405366,-5.3042784,-5.201438,-5.3364725,-5.398454,-5.334923,-5.263013,-5.20401,-5.199793,-5.226665,-5.277257,-5.368697,-5.3964005,-5.38839,-5.435627,-5.43212,-5.3635454,-5.3418064,-5.2612376,-5.2063794,-5.2096725,-5.224838,-5.253454,-5.3348746,-5.380058,-5.406554,-5.420003,-5.3478794,-5.26167,-5.1767206,-5.1034193,-5.01672,-4.997088,-5.0666614,-5.024811,-4.9522305,-4.917143,-5.0707235,-5.136034,-5.1887035,-5.3072686,-5.3141913,-5.362395,-5.336509,-5.284276,-5.241456,-5.186658,-5.206905,-5.2746725,-5.264756,-5.309902,-5.3213515,-5.2674236,-5.1799726,-5.1237874,-5.1317263,-5.201248,-5.283698,-5.3055506,-5.3666906,-5.3515725,-5.328971,-5.325283,-5.4012976,-5.4732327,-5.476062,-5.4777584,-5.508067,-5.4901066,-5.444499,-5.5259643,-5.550041,-5.4673834,-5.360079,-5.216531,-5.2496543,-5.2522554,-5.305168,-5.336004,-5.341175,-5.3259087,-5.4099045,-5.418725,-5.407318,-5.3650064,-5.1400185,-5.0571547,-5.246139,-5.48394,-5.492443,-5.3296933,-5.2564526,-4.976653,-4.821104,-4.7857604,-4.871316,-5.120788,-5.3856173,-5.4706144,-5.479083,-5.548132,-5.5387774,-5.4752493,-5.344058,-5.2427397,-5.272803,-5.24704,-5.344733,-5.445882,-5.5248814,-5.524148,-5.4967804,-5.3260484,-5.3748097,-5.520961,-5.4122024,-5.2929335,-5.2598376,-5.4054966,-5.3799896,-5.343294,-5.407564,-5.4920883,-5.4913025,-4.986869,-5.5313854,-5.558688,-5.7472105,-5.75573,-5.749397,-5.694641,-5.6918964,-5.729847,-5.746632,-5.70298,-5.7183657,-5.71325,-5.667065,-5.6126103,-5.6102786,-5.6639967,-5.697088,-5.719674,-5.7191944,-5.600037,-5.578767,-5.53771,-5.4910374,-5.5883045,-5.5908923,-5.642033,-5.580004,-5.6380224,-5.3577056,-5.5975103,-5.5235863,-5.605309,-5.663538,-5.6925397,-5.605325,-5.562301,-5.6385155,-5.666292,-5.7003536,-5.6556473,-5.623542,-5.58642,-5.789518,-5.795609,-5.7150207,-5.713473,-5.702708,-5.5668178,-5.262265,-5.4685416,-5.4795403,-5.3846154,-5.3756275,-5.3191123,-5.566128,-5.370283,-5.493293,-5.485737,-5.335146,-5.4054484,-5.41953,-5.4100447,-5.447947,-5.703264,-5.7057023,-5.674593,-5.564091,-5.3515067,-5.332101,-5.5500035,-5.143029,-5.095092,-4.685231,-5.149676,-5.2016716,-5.2600274,-5.382763,-5.4987984,-5.6307793,-5.6417723,-5.6447105,-5.568973,-5.1713805,-4.75711,-5.4860444,-4.9812293,-5.0665054,-5.2843704,-5.3631454,-5.4891243,-5.5118194,-5.481421,-5.5067263,-5.4874606,-5.5112057,-5.5218353,-5.3068914,-5.1125164,-5.5198846,-5.5736065,-4.7516723,-5.238822,-5.346217,-5.4792056,-5.3843307,-5.5809393,-5.6540904,-5.6489162,-5.69942,-5.683672,-5.5328836,-4.101238,-5.072484,-5.283845,-4.971235,-5.0965953,-5.3183646,-5.3939166,-5.532496,-5.628292,-5.499723,-5.5453134,-5.644358,-5.6464815,-5.602634,-5.611263,-5.6601763,-5.5349245,-5.6751485,-5.6970778,-5.6821632,-5.675293,-5.682366,-5.6820264,-5.671178,-5.6364427,-5.583164,-5.614348,-5.6849008,-5.696243,-5.655581,-5.6242795,-5.601705,-5.1665907,-5.6203833,-5.6902866,-5.721649,-5.6665773,-5.7245603,-5.7580175,-5.773928,-5.7246656,-5.7553673,-5.753181
+-0.9796389,-1.3100799,-1.4667555,-1.4131067,-1.6436145,-1.7223302,-1.7034811,-1.5384362,-1.769236,-1.9188584,-1.8965718,-1.8116232,-1.8655922,-1.8871688,-1.8736845,-1.8903376,-1.7165538,-1.7113289,-1.6106237,-1.585196,-1.5017024,-1.3642771,-1.7550408,-1.5598001,-1.8189766,-1.8383858,-1.7378222,-1.6896621,-1.8143909,-1.7571787,-1.7002305,-1.6544514,-1.5966262,-1.7364553,-1.7749182,-1.7451016,-1.770124,-1.8376563,-1.9861296,-1.8853942,-1.5307082,-1.3171794,-1.7030193,-1.7084811,-1.7610358,-1.6762398,-1.6817492,-1.6794797,-1.349964,-1.6938335,-1.4324217,-1.1783339,-1.2525507,-1.5890607,-1.5784725,-1.6520096,-1.5772042,-1.4572245,-1.2805883,-1.6784523,-1.6868683,-1.6519281,-1.6117132,-1.7189614,-1.773496,-1.8409512,-1.8312076,-1.8889765,-1.3366157,-1.40038,-0.9322583,-1.1994632,-1.5005397,-1.3752531,-1.2757554,-1.338106,-1.6982523,-1.7236346,-1.3574861,-1.0288911,-1.6311637,-1.6596295,-1.7917666,-1.5454869,-1.129435,-1.446385,-1.6802654,-1.8315283,-1.8451372,-1.9208696,-1.9570111,-1.9856554,-2.039548,-1.8072636,-1.2625183,-1.2875814,-1.5899405,-1.7328181,-1.3704145,-1.3921734,-1.4761418,-1.470425,-1.5164479,-1.6849619,-1.80039,-1.021757,-1.337177,-1.3980736,-1.7490883,-1.4715663,-1.7138091,-1.83998,-1.4321619,-1.5564727,-1.762618,-1.8786834,-1.4036783,-1.4026207,-1.7728211,-1.9054028,-1.9277033,-1.8250154,-1.9537089,-1.4586967,-0.9358818,-1.6991779,-1.8353988,-1.9024955,-1.934412,-1.891782,-1.457937,-1.0614218,-1.3825742,-1.7943864,-1.952324,-1.9558833,-1.9971966,-2.1055646,-2.1223495,-2.1918318,-2.2446263,-2.2570262,-2.197907,-1.8134227,-2.033815,-2.2300658,-2.1573062,-2.2106097,-2.117588,-1.980008,-2.105051,-2.2886696,-2.213149,-2.0711896,-0.5618637,-1.3381816,-1.4967624,-1.6758413,-1.5546012,-1.6177403,-1.3675423,-1.7947148,-1.8568873,-1.8614957,-2.1342983,-2.1954796,-2.2190616,-2.2404237,-2.2417562,-0.35395566,-1.3056668,-1.2581547,-1.5205498,-1.8640618,-1.9820601,-1.7252117,-1.8465776,-1.9806894,-1.9154897,-2.1031756,-2.2457185,-2.1716356,-2.2259707,-1.6952723,-1.785112,-2.1904933,-2.02498,-2.075861,-2.038308,-0.5441373,-1.0298184,-1.1538638,-1.4972537,-1.4001328,-1.2536021,-0.4992049,-0.63422936,-1.0856962,-1.0593494,-0.9506819,-1.162002,-1.0631298,-0.6337002,-1.0062217,-1.1792253,-1.2916738,-1.4578199,-1.0785344,-0.9043909,-1.066713,-1.2800963,-1.2864534,-1.2605851,-1.039828,-0.9696756,-0.7805862,-1.2801514,-1.2724377,-1.458687,-1.1681119,-1.3490936,-1.5184838,-1.6398126,-1.7203223,-1.9311116,-1.4794058,-1.4381055,-1.2900962,-0.5483884,-0.87787396,-0.8590383,-1.0211812,-0.963515,-1.1408255,-1.2474447,-1.2531513,-1.113907,-1.0552984,-1.1759137,-1.1453881,-1.6319224,-1.5601822,-1.6708673,-1.5421687,-1.5425885,-1.4191904,-1.3790797,-1.4024938,-1.5067536,-1.7389785,-1.8366,-1.6196029,-1.5716189,-1.4125614,-1.1823238,-1.3960353,-1.6164483,-1.529424,-1.57184,-1.7973993,-1.862072,-1.8229777,-1.1724817,-1.2083377,-1.4007444,-1.439014,-1.1889756,-1.3980888,-1.5941025,-1.5634553,-1.1095992,-1.3728175,-1.1828243,-1.3766056,-1.5804126,-1.272112,-1.44966,-1.4476869,-1.6635879,-1.8620592,-1.7124628,-1.5604022,-1.5865363,-1.239868,-1.5768921,-1.6646196,-1.679572,-1.6797134,-1.66838,-1.6467997,-1.5255662,-1.3044921,-0.9518377,-1.1096934,-1.2724953,-1.3956124,-1.3850831,-1.2008371,-1.4032391,-1.4579028,-1.3974698,-1.4846355,-1.4136108,-1.4002113,-1.5189809,-1.6669588,-1.6881142,-1.5773131,-1.4658934,-1.2010608,-1.1762633,-1.3531512,-1.5186379,-1.4911958,-0.87436277,-1.159645,-1.4161941,-1.4463872,-1.3860909,-1.4431828,-1.1105436,-1.222943,-1.3221027,-1.460883,-1.2098619,-1.3569814,-1.5274343,-1.682884,-1.6935976,-1.6930995,-1.7358792,-1.3655862,-1.5448605,-1.6054286,-1.3458394,-1.2538669,-1.2414519,-1.2084779,-1.2898022,-1.249956,-1.4078997,-1.3263158,-1.4293435,-1.1317692,-1.3899391,-1.2729508,-1.2419962,-1.1981915,-1.2684106,-1.4956716,-1.4966223,-1.1280545,-1.5566013,-1.5704954,-1.2684186,-1.3428775,-1.4116497,-1.1976082,-1.3971382,-1.4483114,-1.2161727,-1.249437,-1.233814,-1.3429364,-1.3270582
+-1.6391495,-1.9514129,-2.1960726,-1.076305,-2.1421337,-2.1590033,-2.3104198,-2.329096,-2.4570756,-2.5796003,-2.6057615,-2.5874133,-2.5409021,-1.3138261,-2.0936954,-2.349487,-2.491358,-2.5380092,-2.568434,-2.5968907,-2.602815,-2.6007648,-2.6588502,-2.5761776,-2.828619,-2.867814,-2.856607,-2.7488427,-1.7427078,-1.8825897,-2.618432,-2.6797132,-2.755118,-2.7953374,-1.3798178,-2.5496078,-2.7271557,-2.9463122,-2.7080538,-2.7462015,-2.8699803,-2.913757,-2.993531,-2.9760053,-2.7930357,-2.8024135,-2.9759636,-2.987747,-0.70129263,-2.3667235,-1.8444196,-1.7531897,-1.8969533,-2.3063462,-2.442882,-2.4508529,-2.6298401,-2.6967182,-2.6294432,-2.9165168,-3.0138125,-2.942314,-2.818087,-2.9814012,-3.070921,-3.0390356,-3.0873742,-3.0893085,-2.7432973,-2.7868748,-0.6747491,-1.9207305,-2.3740993,-2.4743044,-2.387431,-2.6511252,-2.7705016,-2.7213273,-0.69281375,-2.236484,-2.4716225,-1.9536754,-2.4892077,-1.6913232,-1.1993064,-2.2142735,-2.401997,-2.4814086,-2.6877608,-2.8555207,-2.9258034,-3.0155532,-2.9020457,-3.0126324,-2.9634993,-2.9354362,-2.7354352,-2.8761284,-1.4769077,-1.7498003,-1.873036,-2.4388351,-2.306977,-2.1827316,-2.7612042,-2.8613825,-2.673461,-0.7781044,-1.9257277,-2.2112327,-2.6275458,-2.909761,-1.2839475,-2.323597,-2.6445322,-2.8523796,-2.8498354,-2.9056587,-3.0268676,-3.0537314,-2.9839363,-3.1300557,-3.1828094,-3.2203825,-2.9796035,-3.1539783,-3.1943688,-3.1458495,-3.2505343,-3.124515,-3.0664978,-2.8536057,-3.0114837,-3.144113,-3.2710962,-3.1234674,-3.1660304,-3.1913908,-3.1404343,-3.2437131,-3.3405309,-3.3799944,-3.3265266,-3.1419659,-3.1784515,-3.2409868,-3.306351,-3.281311,-3.160138,-3.1215339,-3.327249,-3.3236575,-3.304468,-3.1336832,-1.2367352,-1.4630996,-2.4431124,-2.6732368,-2.8389745,-2.7432964,-2.6675282,-3.044835,-3.0956264,-2.9952593,-3.1431153,-3.2266226,-3.328864,-3.31387,-3.3338428,-2.2023504,-2.416605,-2.8119073,-2.9363441,-3.0814235,-1.370773,-2.4352107,-2.476211,-2.788466,-3.1810565,-3.0739298,-3.0627975,-3.2201326,-3.2314205,-3.10256,-3.146161,-3.0583162,-2.855594,-1.6911559,-0.9729137,-1.2117251,-1.9830045,-2.0776186,-1.7753462,-2.5316384,-2.7505226,-1.3058015,-1.29873,-1.8775511,-1.8246194,-1.7439306,-2.2317383,-2.4898832,-1.2152473,-2.1375885,-2.301674,-2.5124454,-2.699268,-2.1176949,-1.7183346,-1.8114291,-2.0217392,-2.4458919,-2.5817018,-1.6774812,-2.103069,-2.3607874,-2.551634,-2.7000203,-2.539156,-1.6389841,-2.2651591,-2.5453055,-2.557065,-2.6980343,-2.7910824,-2.5578558,-2.5701098,-1.4431942,-1.7493554,-2.1847444,-2.3593102,-2.496861,-2.2610855,-2.4333732,-2.4566045,-2.4615793,-1.7309178,-1.4716519,-1.8265374,-1.9307221,-1.9778842,-1.6779567,-1.9595912,-2.039511,-2.0058343,-2.1024194,-2.1395838,-2.0527987,-2.5746846,-2.5506558,-2.6406143,-2.7468448,-2.7672558,-2.6741285,-2.396762,-2.49161,-2.7464643,-2.927123,-2.7911012,-2.9287057,-2.905496,-2.6203752,-2.3850935,-2.2002485,-2.224577,-2.1848109,-2.1466143,-2.094083,-2.2902026,-2.120693,-1.9819528,-2.0265403,-2.0087323,-2.0088646,-2.2275043,-2.1479917,-2.3588827,-2.3916597,-2.4524877,-2.3970556,-2.3475103,-2.3974586,-2.2883587,-2.1863656,-2.264997,-2.6023638,-2.6439466,-2.5744977,-2.535212,-2.5144596,-2.47939,-2.28596,-1.7868088,-1.3176327,-1.5181929,-1.6513004,-1.6989427,-1.8190007,-1.7860082,-1.790709,-1.7426821,-1.9171745,-1.8790777,-1.8685362,-1.9209961,-2.0571184,-2.3839822,-2.4625874,-2.3768191,-2.0075629,-1.7279874,-1.8117983,-2.0077958,-2.0046208,-1.6726298,-1.5013267,-1.8997003,-1.8593354,-1.958874,-1.9940127,-1.7922286,-1.178672,-1.3348795,-1.7379891,-1.5780412,-1.4962994,-1.5424006,-1.706078,-1.9098115,-1.8475046,-1.8136489,-1.8465618,-1.7799366,-1.8170283,-1.6557599,-1.6360124,-1.5587093,-1.6883456,-1.9404771,-1.8711275,-1.9971775,-1.7149436,-1.6941161,-1.7348579,-1.6796254,-1.6541213,-1.7084324,-1.7313895,-1.6579419,-1.8269459,-1.8462142,-1.6976342,-2.0523226,-2.2019658,-2.1077795,-2.0441608,-2.0165877,-1.368038,-1.7280979,-1.8094274,-1.9378811,-1.8472613,-1.6142026,-1.8856572,-2.0644422
+-1.3359385,-2.1395066,-2.4096172,-2.2697113,-2.5203502,-2.7841506,-3.1890821,-3.4137702,-3.659153,-3.794612,-3.901887,-2.1318471,-2.8128664,-2.0448823,-2.7384167,-3.1382053,-3.3945704,-3.661705,-3.9140146,-4.0601354,-4.063678,-4.0202193,-3.8536217,-3.865839,-4.1437607,-4.061096,-4.0438037,-3.7964926,-2.1877306,-2.3705392,-3.422721,-3.9098637,-4.222386,-4.1131754,-1.160967,-2.1580448,-2.6742816,-3.229279,-3.5064964,-3.7679033,-4.1831617,-4.3896456,-4.4409714,-1.5836991,-1.7142732,-2.1598008,-2.4427762,-2.831224,-2.6145658,-3.0592427,-2.8327084,-1.3820678,-2.2935066,-2.5631025,-2.7145982,-3.1164165,-3.4005046,-3.7876155,-4.033436,-4.285536,-4.5055857,-4.480674,-4.136652,-4.0652413,-4.4536448,-4.4327626,-4.3901334,-4.4489145,-3.4777696,-3.8331702,-2.0751765,-3.3442378,-4.0208826,-4.4842124,-4.362402,-4.612767,-4.519702,-4.4103003,-0.96693546,-2.5817337,-3.0952668,-3.5033188,-4.083744,-4.3119164,-3.7046003,-4.2993,-4.563646,-4.4560146,-4.4173784,-4.4671,-4.554078,-4.68573,-4.440852,-4.4745083,-4.6811333,-4.5664587,-4.591857,-4.5761647,-1.5692927,-2.0135143,-2.6271806,-3.1578443,-3.4549348,-3.805102,-4.277661,-4.428903,-4.4895287,-4.4275837,-3.0559428,-4.0065618,-4.398512,-4.4227257,-4.314062,-4.4829826,-4.543786,-4.4572096,-4.3614383,-4.360778,-4.3657517,-4.2923603,-4.357556,-4.5801735,-4.568204,-4.603121,-4.5946856,-4.606118,-4.46638,-4.4466944,-4.593889,-4.5768013,-3.3011742,-3.744961,-4.3232956,-4.3717127,-4.3256774,-4.2694273,-4.3409805,-4.364236,-4.3349295,-4.283106,-4.25202,-4.339542,-4.375433,-4.4765034,-4.5138483,-4.480053,-4.400899,-4.3670983,-4.348866,-4.360166,-4.3708067,-4.2755737,-4.353614,-4.3615136,-3.871294,-4.2174425,-4.2774105,-4.359441,-1.1173791,-2.077333,-2.7519615,-3.2504,-3.623615,-3.7778473,-4.018318,-4.157369,-4.26857,-4.3228846,-4.3201704,-3.735832,-3.5624814,-3.8314168,-4.0214214,-4.1361847,-4.0766783,-3.9020262,-3.672422,-4.1081114,-4.2230005,-4.21404,-4.135315,-4.1814947,-4.275897,-4.208272,-4.1559,-4.164218,-4.015092,-3.8715777,-3.500801,-1.6289616,-2.4744825,-1.9717664,-1.7786015,-2.3920083,-2.8359575,-2.0309417,-2.285905,-2.168095,-2.6924558,-2.1913064,-2.5889916,-2.910079,-2.6603532,-2.2610364,-2.5926828,-3.019559,-3.3589928,-3.084289,-2.387238,-2.2894988,-2.8885498,-2.5137262,-2.8498363,-2.0570464,-2.6809971,-3.1028318,-3.3249364,-3.4759731,-3.628056,-3.124792,-3.5013695,-3.6971588,-3.7788332,-3.8366942,-3.8811517,-3.6048782,-3.3306355,-3.126429,-2.416506,-3.0577548,-3.2294095,-3.4157887,-3.2824857,-3.44164,-3.4615786,-3.531261,-2.6190245,-3.2558627,-3.4093895,-3.5061786,-3.5662446,-3.4292026,-3.413497,-3.361703,-3.410925,-3.3873346,-3.3895202,-3.4326787,-3.5406222,-3.1477375,-3.4422245,-3.83115,-3.3385353,-3.1116977,-2.836625,-2.7234209,-2.8468103,-3.180575,-2.8772736,-2.9842033,-3.1866107,-3.1718297,-2.9891505,-2.3232358,-2.7187822,-2.9720712,-2.506256,-2.4366138,-2.540727,-2.7244475,-2.4852548,-2.6197634,-2.6655827,-2.5521152,-2.951908,-2.5737004,-2.2439604,-2.7046094,-3.1276157,-3.2963119,-3.38597,-3.202967,-2.4387715,-2.0419345,-1.9011363,-2.2106726,-2.798949,-2.9964933,-2.9160836,-2.997625,-3.0893035,-2.9984617,-2.1319773,-1.8830112,-1.8892862,-1.9227184,-1.9657108,-2.1204433,-2.3551145,-2.1660848,-2.1330054,-2.5687613,-2.7100105,-2.7583117,-2.5226848,-2.057305,-2.6226664,-2.9589643,-2.6608124,-2.0616765,-1.8145881,-1.6605928,-2.0223489,-1.8314456,-1.7984504,-1.6990539,-1.8974901,-2.2597106,-2.506837,-2.737393,-2.0078745,-1.5390092,-1.4898653,-1.4567727,-1.4413906,-1.3533319,-1.2609177,-1.1831715,-1.2749803,-1.7402954,-1.5378929,-1.5472435,-1.1199601,-1.1604178,-1.2598611,-1.1164601,-1.1433474,-1.1876727,-1.608235,-2.2555819,-2.1702995,-2.272687,-2.1289563,-2.2038188,-2.1996891,-2.3201125,-2.4066567,-2.3654742,-2.3407724,-2.2924018,-2.4355266,-2.552143,-2.5982962,-2.778309,-2.7380328,-2.6001377,-2.7459629,-2.0299559,-2.4658759,-2.5719397,-2.526915,-2.6981494,-2.539611,-2.5470433,-2.6603136
+-1.7983842,-2.3366587,-2.593507,-2.6507442,-2.8831887,-2.8389406,-2.749258,-2.7766771,-2.8286123,-2.8478045,-2.9154177,-2.6996849,-2.8681378,-2.6000028,-2.8677492,-3.1457515,-3.056542,-3.007972,-3.0003664,-3.001148,-3.0252175,-2.9791853,-2.654773,-2.7602568,-2.741527,-2.8229907,-2.799241,-2.6352901,-2.6696115,-2.6688757,-2.9242184,-2.892384,-2.9187343,-2.9497805,-2.4047797,-2.7168913,-2.697185,-2.6383774,-2.810337,-2.9129806,-2.9383996,-2.97595,-3.0542853,-1.6632181,-2.102339,-2.0978856,-3.014348,-2.9798446,-2.7058854,-2.9086897,-2.108358,-2.7386703,-2.9744964,-2.8784444,-2.6769667,-2.7941175,-2.8010588,-2.9312577,-2.9484978,-2.9179091,-2.9393492,-2.9499214,-2.754971,-2.6977031,-2.919844,-3.0680196,-3.0952406,-3.1660514,-2.7834415,-2.7555532,-2.09749,-2.7154403,-2.961065,-2.9891906,-2.6112745,-2.8361778,-2.297316,-2.917232,-2.2166615,-2.9724836,-2.9629564,-2.8899016,-3.019077,-2.927211,-2.7526975,-2.9656577,-3.064345,-3.0886848,-2.9937592,-3.0119846,-2.9712734,-3.1468458,-3.1663027,-2.9894605,-3.1537728,-3.1587446,-3.0512364,-3.1342988,-2.76523,-1.675779,-2.434469,-2.5513983,-2.6882281,-2.7713714,-3.0307264,-3.016586,-3.0404377,-3.0532088,-2.7355754,-2.5849152,-2.826898,-3.1214895,-2.955851,-3.0414848,-3.2384648,-3.3491125,-3.2845495,-3.263105,-3.3730247,-3.4852672,-3.3786647,-3.4718466,-3.6136813,-3.5663176,-3.4728005,-3.6268392,-3.735371,-3.4037375,-3.5347486,-3.465353,-2.248913,-2.7262156,-3.1488533,-3.4671352,-3.5604565,-3.4968836,-3.5822384,-3.638364,-3.6362224,-3.724286,-3.7396536,-3.7546344,-3.64599,-3.6629918,-3.7090156,-3.7347908,-3.7514806,-3.7614257,-3.630369,-3.5857978,-3.6964784,-3.6528997,-3.5969658,-3.4891548,-3.3464744,-3.385088,-3.4912033,-3.4771714,-1.7035438,-2.2575788,-2.660983,-3.013753,-3.2837634,-3.3117912,-3.3940272,-3.4768155,-3.597906,-3.6398,-3.6967907,-3.347786,-2.0497353,-2.6737523,-2.9470205,-3.1644971,-1.2314363,-2.4890912,-2.9402742,-3.1238692,-3.2647207,-3.3398948,-3.451276,-3.5221045,-3.5393791,-3.4488988,-3.5145733,-3.4448395,-2.7388744,-2.3875017,-2.3941944,-2.8551724,-3.164415,-3.1863499,-2.954795,-3.3217103,-3.481976,-1.9032387,-2.2310238,-1.96255,-2.4873762,-2.707362,-2.7013745,-3.0893676,-3.2227407,-3.1262891,-3.1577637,-3.4340158,-3.4440675,-3.0654328,-1.7533561,-2.2236228,-2.9370809,-2.073277,-2.268767,-2.3377671,-3.003487,-3.1099935,-3.3446438,-3.4112177,-3.4761362,-3.3133843,-3.5011306,-3.6098616,-3.6801074,-3.7592688,-3.7059596,-3.674595,-3.5426767,-2.874282,-2.5575523,-3.0549116,-3.115085,-3.150032,-2.9781353,-3.10997,-3.2383027,-3.1563618,-2.6722975,-2.939525,-2.9872715,-3.2020984,-3.2555974,-3.0141902,-3.069309,-2.9098938,-2.8708854,-2.848827,-2.9826522,-2.7127123,-2.6971164,-2.5012896,-2.5012555,-2.1651213,-1.9941658,-2.2693088,-2.2364492,-2.19941,-2.3081527,-2.2635016,-1.2844,-2.0978258,-2.0392575,-1.8509266,-1.7216285,-1.326703,-1.7380239,-1.8334064,-1.4953673,-1.5112449,-1.8556188,-1.8922886,-1.4086374,-1.4804999,-1.5888495,-1.6412734,-2.0088153,-1.8565322,-1.7804266,-1.8556572,-1.6991433,-1.9192413,-1.9424809,-1.8765651,-1.4068309,-1.4149977,-1.5555202,-1.6126534,-1.8586293,-1.9383694,-1.9625248,-1.9605557,-1.9657537,-1.8867116,-1.6651479,-1.7155592,-1.8045169,-1.8534926,-1.9144055,-2.0731723,-2.181776,-1.9674174,-1.8333051,-2.031536,-1.9957169,-1.9941,-1.9720358,-2.0139658,-2.1467576,-2.0662835,-1.7647218,-1.8417054,-2.1866927,-2.4043312,-2.3682652,-2.1412053,-2.2871218,-2.4955254,-2.705724,-2.616908,-2.5172532,-2.549912,-2.3089218,-2.0246885,-2.215444,-2.143011,-2.227455,-2.2111735,-2.0752785,-2.2630093,-2.3833756,-2.4093523,-2.3067808,-2.2354,-2.1346405,-1.9908961,-2.0305977,-2.013362,-1.9876179,-1.7523721,-2.0943322,-2.2768059,-2.019813,-1.9318203,-2.1341634,-2.342383,-2.5161335,-2.7334197,-2.8662376,-2.8751519,-3.0140052,-3.1173306,-3.128561,-2.8986216,-3.274779,-3.1804638,-3.1548395,-3.2197227,-3.1649902,-2.5748756,-2.9056754,-2.875916,-2.5117474,-2.713441,-2.4860973,-2.5088096,-2.5732088
+-1.6206108,-2.298665,-2.6157622,-2.7578156,-2.5957398,-2.8702512,-3.0370357,-3.1172457,-3.2472382,-3.2293801,-3.2363605,-1.2229041,-1.6318874,-1.7016068,-1.8184632,-2.1743913,-2.5174837,-2.795898,-3.0714827,-3.2706375,-3.4209855,-2.9927387,-2.3729587,-1.2043552,-1.728707,-1.9373174,-2.2341814,-2.1359582,-1.9102439,-1.8760785,-2.2855515,-2.6525407,-2.9288888,-3.1945763,-1.374667,-1.3865156,-1.258112,-1.8078607,-2.157435,-2.3827972,-2.5986671,-2.87914,-3.1600065,-1.9239782,-1.020151,-1.3616138,-1.8466203,-2.1992834,-2.4186413,-1.2965902,-1.3888485,-1.8578633,-2.0539904,-2.2929897,-2.475523,-2.5717957,-2.6510346,-2.7528353,-3.0917645,-3.1484642,-3.2576532,-3.4290943,-3.5322647,-3.4780931,-3.5261266,-3.6365469,-3.6014078,-3.7071166,-3.6718917,-3.7118835,-3.6049433,-3.6267285,-3.734586,-3.843498,-3.6366308,-1.5181626,-1.2779447,-2.2239575,-1.2688686,-2.230999,-2.6473324,-2.998763,-3.3320694,-3.5504773,-3.4848623,-3.5282898,-3.6493149,-3.7129414,-3.742735,-3.7157376,-3.6629708,-3.7586954,-3.8409956,-3.7718031,-3.8139906,-3.8600538,-3.8198102,-3.8499243,-3.5951877,-2.6123931,-0.62480265,-1.9822592,-2.6977596,-2.9872882,-3.3770428,-3.5746462,-3.6338391,-3.695088,-3.7877324,-3.8030577,-3.816638,-3.860693,-3.8983579,-3.8612604,-3.8980432,-3.901156,-3.8900223,-3.8595343,-3.7832456,-3.776327,-3.767713,-3.8786821,-3.9190257,-3.9430292,-3.9404316,-3.947002,-3.8457837,-3.8041317,-3.8794315,-3.9151297,-3.7783093,-3.778533,-3.875906,-3.88627,-3.8788476,-3.833589,-3.8027072,-3.8058908,-3.7967484,-3.8239322,-3.853222,-3.8726473,-3.9161978,-3.9650388,-4.0019517,-4.002342,-3.9791589,-3.9606028,-3.9626026,-3.9487255,-3.9054306,-3.8932762,-3.9471602,-3.8934844,-3.787695,-3.8000453,-1.0100837,-2.7215023,-3.2219117,-3.3173528,-3.6245787,-3.771086,-3.895422,-3.9666443,-3.938076,-3.884499,-3.9462206,-4.008009,-4.0484333,-3.9924135,-3.7600465,-3.8546,-3.9380322,-3.8869562,-1.2106832,-2.4011621,-2.1554685,-3.07901,-3.4285178,-3.6092367,-3.7347298,-3.8086278,-3.864221,-3.9123197,-3.8628736,-3.7578156,-3.54243,-2.8855808,-1.266523,-2.7709167,-3.142075,-3.3980312,-3.441921,-3.2568514,-3.6796598,-1.348342,-1.5217603,-2.0636077,-2.1953173,-2.3994732,-1.6320246,-2.2038534,-2.558502,-2.891403,-2.9676561,-3.2548122,-3.5118947,-2.2600684,-2.2905855,-2.599195,-2.8263261,-3.0963454,-1.8968446,-2.2476568,-2.3814912,-2.7725067,-3.1949286,-3.318672,-3.5539691,-3.5159464,-3.5900383,-3.6911595,-3.69733,-3.7305202,-3.7032285,-3.6156094,-3.605611,-3.3188035,-1.1967797,-2.210638,-2.553495,-2.8005033,-2.3263614,-2.5842586,-2.5292668,-2.6866448,-2.5031796,-2.7059948,-2.747677,-2.9297674,-2.8752792,-2.934847,-3.1169603,-2.5128262,-2.8949332,-3.0973582,-3.1815805,-2.5921566,-2.8469465,-3.0389059,-3.4287772,-1.6692171,-1.4211338,-0.86701924,-1.7550267,-2.0976744,-2.1740868,-1.0768023,-0.67688996,-1.3850931,-2.209139,-2.288906,-2.112121,-1.3689698,-1.9368807,-2.2584307,-1.611282,-1.6469947,-2.1890268,-2.1993833,-1.8562157,-1.6952171,-2.161502,-2.1559172,-2.3586354,-2.2294002,-2.13034,-1.9876536,-1.4836671,-2.0948389,-2.0022442,-1.3230498,-0.8402731,-0.9871227,-0.8586158,-0.948874,-1.7188425,-1.9920732,-1.9827114,-1.9034754,-1.9474617,-1.9782828,-0.942471,-0.9553443,-1.2035939,-1.2099512,-1.3028322,-1.474764,-1.7324808,-1.3913038,-1.3818611,-1.9019359,-2.0098305,-2.0977716,-1.906945,-1.7454172,-1.5237331,-1.6249293,-1.4415814,-1.3308507,-1.0581161,-1.5253893,-1.2020882,-1.3614422,-1.2843255,-1.2033511,-1.6990107,-2.020458,-2.0986931,-2.2082782,-2.0909097,-1.3712455,-1.3505425,-1.1639882,-1.2751101,-0.9930436,-1.4583484,-1.473292,-1.8784808,-2.0724416,-1.9349405,-2.0201,-1.8052458,-1.6796108,-1.5954375,-1.6233975,-1.4965093,-1.4019629,-1.3711619,-1.7153794,-1.4396162,-1.2889699,-1.2208233,-0.7964525,-1.095531,-0.9857108,-1.3045055,-0.6930295,-1.2161056,-1.9999484,-1.4914182,-1.6467124,-1.7410585,-1.4287428,-1.5549495,-1.713758,-1.7121667,-1.5510129,-1.2725607,-1.612671,-1.6375568,-1.6012619,-1.6467282,-0.78092235,-1.3840955
+-1.5648721,-1.9920079,-2.4107769,-2.7526217,-2.8211062,-2.9352534,-3.093367,-3.2766929,-3.5780208,-3.2018228,-3.3690646,-2.7708526,-1.8729893,-2.5767229,-2.8939013,-3.410049,-3.5179584,-3.5957031,-3.796338,-3.9522705,-4.175233,-2.6396782,-2.3737001,-2.3925195,-2.7660542,-3.3125143,-2.9280188,-3.292988,-3.2688775,-3.028943,-3.3484693,-3.0660868,-3.2602143,-3.181774,-1.7853048,-2.190689,-2.39354,-2.7026849,-3.1109998,-3.407095,-3.3956542,-3.3124385,-3.3923786,-3.5153298,-1.9374359,-2.1812155,-2.851852,-3.0540767,-3.1482348,-2.2371612,-2.8341653,-2.9810874,-3.0847173,-2.8884172,-2.779703,-3.093607,-3.2315526,-3.3471646,-3.5299451,-3.6287813,-3.8849413,-4.0829763,-4.3520446,-4.3247538,-4.3300138,-4.4322224,-2.3656116,-2.521451,-3.0366719,-3.7202933,-3.994381,-4.1485806,-4.4468484,-4.67157,-4.4317594,-3.6814299,-2.1031682,-3.021472,-2.310092,-3.3334737,-3.9772673,-4.3131046,-4.4965887,-4.5719504,-4.5820484,-4.6572914,-4.756695,-4.835406,-4.8194585,-4.781421,-4.730467,-4.726156,-4.7881722,-4.711119,-4.6679516,-4.782914,-4.759266,-4.782655,-4.7018156,-4.5333056,-1.6096805,-3.2457998,-3.9593196,-4.382057,-4.673173,-4.719479,-4.725949,-4.815531,-4.751362,-4.758463,-4.7424974,-4.8035955,-4.83786,-4.8719077,-4.866934,-4.8404875,-4.772032,-4.7782507,-4.6796417,-4.543927,-4.3580256,-4.43141,-4.643365,-4.69734,-4.795067,-4.783722,-4.6387825,-4.612402,-4.653533,-4.7802496,-4.71653,-4.686141,-4.759424,-4.7430983,-4.740945,-4.65893,-4.6052322,-4.631601,-2.2986007,-3.3256965,-4.2356176,-4.4792905,-4.6514826,-4.7127895,-4.8142166,-4.883053,-4.867486,-4.854828,-4.844652,-4.8184805,-4.740016,-4.70799,-4.6785913,-4.729621,-4.6244802,-4.6872034,-2.3098593,-3.8727477,-4.3396254,-4.443547,-4.613386,-4.773062,-4.782149,-4.7774744,-4.769857,-4.6487913,-4.7074804,-4.8398857,-4.870898,-4.696263,-4.4830775,-4.5158067,-4.5520897,-4.2167673,-1.5867637,-2.1436203,-3.0336275,-3.842029,-4.151189,-4.356516,-4.44587,-4.358637,-4.326878,-4.4853897,-4.57277,-4.065238,-3.7939658,-4.143482,-4.1674857,-4.293805,-4.4430227,-4.4342194,-4.3771296,-4.319275,-4.4998636,-3.6351519,-1.7575476,-2.170722,-2.3794885,-2.2078476,-2.4680452,-3.013077,-3.1565897,-3.324422,-3.5315583,-3.5076122,-2.5218914,-2.60991,-2.916718,-3.122738,-1.9439352,-2.5463963,-2.2180767,-2.612174,-2.6476498,-3.0318756,-3.2353377,-3.3494549,-3.4142525,-3.357129,-3.2786455,-3.3091886,-3.4922025,-3.4947956,-3.5087876,-3.523798,-3.5228803,-3.4299557,-3.3853683,-3.4248047,-3.8421175,-3.8917344,-3.5375354,-2.8173199,-3.0922723,-3.395659,-3.349192,-3.5938687,-3.500484,-3.6434534,-3.5539427,-3.5414746,-3.7054298,-3.6646385,-3.6807427,-3.8635817,-3.7444675,-3.5533717,-3.658025,-3.8758638,-4.0576935,-3.5656273,-2.2608395,-2.1207058,-2.5591564,-2.8487499,-2.9430394,-1.9560817,-2.518851,-2.1200616,-2.5006518,-2.6516762,-2.4901173,-2.1322107,-2.4029396,-2.7022882,-2.3284302,-2.3053718,-2.6789951,-2.8279915,-2.5352304,-2.5770555,-2.6711593,-2.6175885,-2.8298762,-2.8749573,-2.5409074,-1.9782828,-1.8195416,-2.1165047,-2.4966717,-2.280251,-1.6320411,-2.0541377,-1.9469868,-1.9408848,-2.0535622,-2.3800044,-2.4113023,-2.4970984,-2.6267128,-2.623805,-2.1896615,-1.8944916,-2.1486368,-2.0283325,-2.1385853,-2.0107317,-2.0166264,-2.2382262,-1.947034,-2.2385561,-2.4543786,-2.5908184,-2.5368938,-2.1766782,-2.0449011,-2.0552995,-2.0222201,-2.053772,-2.144353,-2.2755973,-2.199232,-1.9965428,-2.2030244,-2.3527641,-2.2871437,-2.5648763,-2.7123263,-2.8694253,-2.7729366,-2.1613035,-2.4743636,-1.8699235,-1.7433935,-1.9069496,-2.1722636,-2.2346535,-1.9653672,-2.433281,-2.4550414,-2.5799031,-2.2681923,-2.1644156,-2.4460983,-2.6358767,-2.4710603,-2.3000178,-2.1123545,-2.278106,-1.7886771,-1.7428188,-1.8403844,-1.9883772,-2.1773925,-2.222393,-2.4691496,-2.5620012,-2.8565028,-2.9743016,-3.0799263,-3.1706936,-3.210619,-3.191802,-2.853448,-3.1213546,-3.2192621,-3.0248106,-2.951094,-2.9897313,-2.8126664,-3.301065,-3.0538766,-2.4666743,-3.116477
+-1.889331,-2.3281846,-2.689243,-3.01199,-3.3633964,-3.5609493,-3.766461,-3.8588648,-3.531857,-0.73321056,-1.8521706,-1.827271,-2.1389189,-2.3041549,-2.4399362,-2.658372,-2.8992996,-3.1830506,-3.445815,-3.6041672,-3.711346,-3.6038399,-3.1977253,-1.5317973,-1.9306873,-2.8012252,-2.8276052,-3.1812987,-3.3713675,-3.3105195,-3.4799862,-3.0021853,-3.3643308,-3.4260516,-1.4785913,-1.527058,-2.1055918,-2.2702389,-2.4181476,-2.9491715,-3.166137,-3.32161,-3.4140441,-3.5349646,-3.4473453,-3.159903,-3.1573598,-3.6159048,-3.694743,-3.7860851,-3.5624053,-3.8226614,-3.8620634,-3.6356807,-1.1887003,-2.5759556,-3.094966,-3.5240755,-3.6921563,-3.8150365,-3.9091144,-3.8666053,-3.9065776,-4.020546,-3.9559903,-3.8396168,-3.7502332,-3.7082152,-3.69786,-3.8196027,-3.8448763,-4.0105944,-3.8649015,-3.8070579,-3.8062267,-3.870907,-3.686943,-3.901937,-3.6944919,-3.8748107,-3.8122158,-3.9237647,-3.8382158,-3.8771646,-3.9121146,-3.972291,-3.9307117,-3.8122745,-3.7718725,-3.697952,-3.7188678,-3.7176588,-3.6324096,-3.6491513,-3.7116165,-3.793368,-3.8471751,-3.798009,-3.7460501,-3.6521842,-3.6662898,-3.8248417,-3.8852382,-3.9076688,-3.8987842,-3.8720195,-3.8151941,-3.8510919,-3.8730364,-3.8881466,-3.8354106,-3.840726,-3.910123,-4.0131025,-3.9770217,-3.9520075,-3.8851812,-3.8821006,-3.7594326,-3.6084728,-3.5366068,-3.5855522,-3.7917132,-3.8054256,-3.921668,-3.9561403,-3.7352526,-3.8832145,-3.9178731,-4.0218115,-3.9653144,-3.928166,-3.9116955,-3.887903,-3.8548346,-3.8178444,-3.839432,-3.8785737,-3.7333355,-3.6777837,-3.8158224,-3.861442,-3.8389132,-3.835404,-3.8341691,-4.0023174,-4.024514,-4.0150433,-3.9526434,-3.9581847,-3.922226,-3.879011,-3.8565023,-3.9030373,-4.005912,-3.9509225,-3.9862638,-3.9733124,-4.011058,-3.9788246,-3.972003,-4.0225167,-3.989533,-3.9375648,-3.9893637,-3.6766198,-3.7766526,-3.9528468,-4.0030136,-3.9778748,-3.883408,-3.8397238,-3.837723,-3.7547407,-3.411005,-2.6964889,-3.5731096,-3.8977082,-3.9171941,-3.9265268,-3.949718,-3.7267327,-3.7751813,-3.939427,-4.0509653,-3.6044962,-3.6243575,-3.8982847,-3.883628,-3.9507344,-4.019819,-4.005637,-4.0307083,-4.0367117,-4.055804,-3.8170328,-2.8814611,-3.1429949,-1.6792974,-1.8027772,-3.0209832,-3.4493399,-3.64996,-3.6976562,-3.6944702,-3.7086716,-2.4068985,-2.9926438,-3.2611432,-3.3752964,-1.0596966,-2.2086215,-2.1344345,-2.6019502,-2.7616565,-3.0277848,-3.340036,-3.397375,-3.4372215,-3.3950744,-3.3898818,-3.516588,-3.544157,-3.6030102,-3.585005,-3.5944636,-3.6826398,-3.6741703,-3.7701738,-3.6363049,-3.8007095,-3.8497362,-3.8819146,-3.6288114,-1.6142035,-2.8760567,-2.7647755,-3.287691,-3.5368783,-3.7596838,-3.276779,-3.4177876,-3.603812,-3.6607947,-3.5567234,-3.6342509,-3.7892768,-3.701042,-3.711232,-3.8703127,-3.663506,-2.913715,-2.8332055,-1.810461,-2.190003,-2.7260656,-2.9015064,-2.0712929,-2.2695026,-2.2032495,-2.9717412,-3.4287934,-3.5183234,-3.2496753,-2.946306,-3.1390283,-3.1117136,-2.831437,-3.5319176,-3.7988448,-3.6517787,-3.515085,-3.57772,-3.5839849,-3.651501,-3.8204098,-3.498192,-3.124006,-2.2531228,-2.2373662,-3.1540809,-2.6224132,-1.8309752,-1.9172615,-2.0400124,-1.7879463,-1.8122424,-2.0942757,-2.617676,-2.9811373,-3.133627,-3.1657739,-2.6997862,-1.9211881,-1.8363663,-1.7939744,-1.7462257,-1.5864573,-1.9087404,-2.1810637,-1.8150042,-2.3752851,-2.6764064,-2.814721,-2.7742984,-2.5414758,-2.1477745,-1.9983972,-1.6269822,-1.3560175,-1.3158691,-1.4617234,-1.5723901,-1.7755255,-1.9457054,-2.105619,-2.3582158,-2.9250278,-3.303395,-3.417162,-3.287558,-2.8225245,-2.7392244,-2.1306343,-2.5232935,-1.4500767,-2.088913,-2.0319724,-2.4256406,-2.9719696,-2.8284998,-3.0347326,-2.6633136,-2.878161,-2.98745,-2.9806266,-2.8792295,-2.815203,-2.74582,-2.9975853,-2.843974,-2.6943583,-2.7762504,-2.8837473,-2.9771614,-3.0607202,-3.092291,-3.1409633,-3.2933688,-3.252893,-3.2659528,-3.3450594,-2.921752,-3.2511988,-1.4514042,-2.364295,-2.7236729,-2.2203064,-2.5390842,-2.865413,-2.1375265,-2.917549,-2.9464564,-1.9070319,-2.7943277
+-2.1227758,-2.630381,-3.251042,-3.6614666,-4.025633,-4.015931,-4.1291146,-3.8708029,-1.2029507,-2.2054238,-2.2686787,-2.4202318,-2.6681724,-2.7620642,-2.9470687,-3.250174,-3.499235,-3.968503,-4.1248875,-4.237816,-4.2843437,-2.0107324,-2.1386228,-2.6425583,-2.3109565,-2.927137,-2.409654,-2.0590115,-2.64658,-2.0642505,-2.5470817,-2.5901682,-2.9434805,-3.0904071,-2.6179004,-1.5697242,-2.2295814,-2.3680484,-2.5749521,-2.8689694,-3.0764384,-3.4568288,-3.7670987,-3.9485867,-3.640033,-3.2730227,-3.0702486,-3.8039563,-4.035492,-4.1460924,-3.878614,-3.7548409,-4.160568,-1.4206808,-2.1533298,-2.3693752,-2.6167517,-2.677946,-3.0395818,-3.3867054,-3.714339,-3.923152,-4.2391844,-4.3914785,-4.363334,-4.3489914,-4.0901213,-4.036292,-4.111129,-4.3369436,-4.276678,-4.2055163,-1.6904426,-2.8193293,-3.6384575,-3.7007952,-3.882965,-4.0232763,-4.049222,-4.1940565,-4.1083937,-4.242201,-4.22332,-4.306196,-4.3155994,-4.2366366,-4.2650857,-4.1870065,-4.111806,-4.0244193,-4.0866346,-4.0713224,-3.789796,-3.9309,-3.924362,-4.154291,-4.2390456,-4.0819664,-4.039401,-4.028098,-3.8392653,-4.21811,-4.2371736,-4.2352467,-4.208334,-4.185431,-4.124533,-4.2555237,-4.300865,-4.291356,-4.2527256,-4.2384844,-4.2609043,-4.273726,-4.241032,-4.186163,-4.189124,-4.133212,-4.076395,-2.072101,-3.0919852,-3.8083687,-4.060351,-4.0730305,-4.1780834,-4.270348,-4.0880527,-4.2688794,-4.3303456,-4.365748,-4.3654203,-4.2727795,-4.288105,-4.274409,-4.223417,-4.175582,-4.238368,-4.2895813,-4.2239227,-4.272764,-4.0956216,-4.226485,-4.058193,-3.7976017,-3.9817696,-4.212003,-4.270048,-4.3234315,-4.230034,-4.295157,-4.281628,-4.1662397,-4.2151356,-4.2720027,-4.32607,-4.162938,-4.274248,-4.204469,-4.4042716,-4.3090487,-4.391634,-4.410058,-4.40424,-4.266906,-3.9019413,-3.9692087,-3.937333,-4.3286123,-4.3669124,-4.4049144,-4.352751,-4.3050876,-4.251424,-4.039256,-4.0607753,-3.564169,-3.8762457,-4.386936,-4.3882713,-4.41261,-4.401001,-4.057458,-4.136965,-4.1583977,-4.2786055,-3.0859497,-3.6877995,-4.0077896,-4.0368004,-4.23079,-4.392025,-4.387198,-4.428174,-4.430607,-4.3707647,-4.3869233,-4.1849246,-3.7272825,-1.1700655,-2.278183,-2.9004626,-3.175427,-3.3489003,-3.615385,-3.811877,-3.8685145,-2.8256264,-3.3729458,-3.7944496,-3.8013163,-1.2527174,-2.7991784,-2.738709,-2.796156,-3.185608,-3.2631133,-3.5059457,-3.6153107,-3.748976,-3.775633,-3.7483914,-3.8712053,-3.9432876,-3.9818707,-3.9826636,-4.0588984,-4.1036,-4.124395,-4.154151,-3.846011,-3.7986023,-3.7173407,-3.6920352,-3.79424,-1.9234372,-3.069459,-3.2425303,-3.732611,-3.8584063,-3.928204,-2.9215677,-3.0805392,-3.4982872,-3.6707146,-3.5110874,-3.3724442,-3.7961757,-3.494841,-3.582752,-3.8507419,-3.784851,-3.2424817,-3.1528397,-2.9646854,-2.3694236,-3.2367454,-3.1401849,-3.0024157,-3.0443497,-1.7550374,-2.86097,-3.451979,-3.6424494,-3.4492512,-3.0896823,-3.3216634,-3.2121415,-2.8355598,-3.5668025,-3.739358,-3.5608182,-3.3872561,-3.48435,-3.4777255,-3.5517874,-3.5870123,-3.8032663,-3.5530612,-1.5750813,-1.7571703,-2.9034648,-2.3917403,-1.4144219,-1.7701557,-1.9801883,-1.4301677,-1.8647362,-1.6314471,-2.0395887,-2.3695495,-2.6125581,-2.7207165,-2.2580988,-1.587947,-1.7138772,-1.6143144,-1.6068999,-1.5138178,-1.8653824,-2.2099311,-1.8110156,-2.141836,-2.3561144,-2.4299173,-2.3415606,-2.2140934,-2.0803297,-1.6957968,-1.566075,-1.6769769,-1.7757126,-1.7051886,-1.1906897,-1.8152058,-1.9972614,-1.7950927,-2.052927,-2.436479,-2.9054298,-3.1486034,-3.139503,-2.6529315,-2.6655216,-2.2147057,-2.6201062,-1.180228,-1.9275832,-2.003716,-2.3524919,-2.7150197,-2.8959842,-3.0047956,-2.9320974,-3.2277853,-3.2701983,-3.2264085,-3.3770823,-3.4032488,-3.3641543,-3.47361,-3.0634005,-2.92798,-3.162341,-3.1815052,-3.2187192,-3.419855,-3.5514445,-3.6865072,-3.7328582,-3.6876745,-3.7103047,-3.7378397,-3.6215065,-3.7305005,-1.3072624,-1.8748813,-2.7027783,-2.507042,-1.9685882,-2.7715116,-2.6580539,-3.0643349,-2.9171343,-1.8550931,-2.7399015
+-0.9765554,-1.9138255,-2.4968176,-2.8019812,-2.9873981,-3.177253,-3.3652902,-3.2450423,-1.1621835,-2.6764383,-2.7353377,-2.852172,-3.0065057,-3.0938144,-3.2275164,-3.2941258,-3.4902945,-3.7138236,-3.922464,-4.0659122,-4.142911,-4.2024646,-3.5679195,-4.00765,-3.5068548,-3.809786,-3.9290864,-3.4525294,-3.844542,-3.9815245,-4.0345917,-4.0012083,-4.158522,-4.285535,-4.2332916,-3.3789058,-2.134458,-3.3341594,-3.460537,-3.7514,-3.9845824,-4.137212,-4.2615356,-4.246106,-4.2196283,-4.261906,-4.26725,-4.370797,-4.425205,-4.3852205,-4.289298,-4.3291507,-4.393897,-4.282419,-4.2388644,-4.27061,-4.383013,-4.469412,-4.353527,-4.452915,-4.4517345,-4.4800596,-4.4922185,-4.4925356,-4.527705,-4.4957023,-4.5006576,-4.500866,-4.493275,-4.5133576,-4.533757,-4.4967265,-3.6518722,-3.90214,-4.4401207,-4.4668384,-4.4621077,-4.548241,-4.555283,-4.616523,-4.461729,-4.4465322,-4.4509015,-4.4760942,-4.49747,-4.5332475,-4.5388613,-4.4950857,-4.432158,-4.363635,-4.43174,-4.49924,-4.514402,-4.520959,-4.5175595,-4.5183487,-4.5436325,-4.5470877,-4.5617685,-4.531297,-4.474516,-4.540098,-4.5575776,-4.546321,-4.528349,-4.499856,-4.513133,-4.520706,-4.5172997,-4.539915,-4.538439,-4.5238028,-4.47237,-4.465041,-4.467784,-4.470912,-4.424323,-4.348467,-4.3236923,-4.268627,-4.301591,-4.3325806,-4.379186,-4.3873386,-4.3926144,-4.3064666,-4.406987,-4.476251,-4.4917274,-4.498106,-4.490958,-4.501027,-4.5232105,-4.5058265,-4.456469,-4.405134,-4.4014845,-4.432058,-4.4516373,-4.4503384,-4.435275,-4.432236,-4.424715,-4.37803,-4.3912163,-4.4052744,-4.4044256,-4.4423904,-4.480752,-4.4799986,-4.429612,-4.3776307,-4.3856177,-4.436767,-4.4845347,-4.505787,-4.513482,-4.5946426,-4.597744,-4.505024,-4.4876275,-4.488615,-4.437639,-4.462261,-4.486503,-4.492261,-4.4728513,-4.6253605,-4.597663,-4.5472927,-4.4784484,-4.3848534,-4.424572,-4.431004,-4.449206,-4.488048,-4.6244574,-4.5715847,-4.4855604,-4.456333,-4.4270506,-4.4123497,-4.4386435,-4.4846463,-4.495658,-4.478581,-4.4788427,-4.491026,-4.5467443,-4.594524,-4.5250807,-4.4618764,-4.493532,-4.4833403,-4.546789,-4.6304665,-4.589352,-4.4952497,-4.1306896,-3.9393947,-4.2088823,-4.4472637,-4.5751114,-4.589637,-4.5900784,-4.5566435,-4.4792476,-4.1783543,-4.488743,-4.52608,-1.1370877,-3.0854821,-1.9870023,-2.889256,-3.485506,-3.7198365,-3.9242291,-4.1001196,-4.229825,-4.2750816,-4.2682815,-4.343576,-4.390441,-4.3746758,-4.364212,-4.4313755,-4.4072256,-4.4349117,-4.444888,-4.3486066,-4.146293,-4.288479,-4.47528,-4.595421,-2.4530616,-3.544164,-3.8541305,-4.043047,-4.1257143,-3.1440163,-1.0472604,-3.184722,-3.4508135,-3.5298724,-3.6371024,-3.6361508,-3.5960417,-3.7362509,-3.8576083,-3.954288,-3.9995608,-2.6107926,-3.3259254,-3.6997414,-3.7678237,-3.900784,-3.8918061,-3.9719863,-3.4154449,-1.1230674,-2.5766811,-2.9625664,-3.261516,-3.475139,-3.6382627,-3.8174996,-3.5723567,-1.897218,-2.958149,-3.1952567,-3.4550328,-3.6127348,-3.6547384,-2.4693346,-3.0674047,-2.896132,-3.2799356,-3.4138274,-1.8632194,-2.0446134,-2.8404408,-2.3644228,-2.4241188,-1.9217639,-2.6791978,-2.2262454,-2.0989227,-2.780772,-2.964803,-3.0897121,-3.1333997,-3.1796508,-3.2861567,-2.1194103,-2.2388344,-2.3844557,-2.322705,-2.1788445,-2.732109,-2.770822,-2.8233757,-2.8653784,-2.9598002,-3.1082656,-3.2396417,-3.2737398,-3.2897258,-3.1240625,-2.6802335,-3.125999,-3.325826,-1.8342757,-2.377615,-2.2773132,-2.7315447,-2.1720915,-2.3949258,-2.8840423,-3.065573,-3.1330605,-3.1660378,-2.938786,-2.1935222,-2.4299138,-2.8160763,-2.0220385,-2.522448,-2.8702643,-3.002808,-2.9303117,-2.9287038,-2.9399683,-2.9493742,-3.0996366,-3.0292358,-3.106182,-3.2030158,-3.2804825,-2.4390783,-3.047018,-3.1292677,-3.1731,-3.263188,-3.3521564,-3.3906755,-3.4231262,-3.4668365,-3.557256,-3.6137824,-3.6197748,-3.6542258,-3.7086394,-3.7287517,-3.6951327,-2.7560406,-3.1426423,-2.7786489,-3.3220687,-3.0547614,-3.4813304,-3.2677267,-3.2663498,-3.4062233,-3.5052302,-3.4116137
+-1.1138822,-2.3982737,-3.4421206,-3.8817317,-4.12411,-4.249801,-3.6236682,-2.4855647,-2.50514,-3.1194143,-3.116374,-3.1292267,-3.3721976,-3.6898093,-3.8179774,-3.9381838,-4.240959,-4.4633646,-4.584029,-4.635668,-4.706415,-4.715024,-4.715829,-4.767874,-4.7620945,-4.5903053,-4.8012743,-4.513347,-4.7983017,-4.83394,-4.730178,-4.7066855,-4.7645307,-4.7458525,-4.661694,-1.9480301,-2.855536,-2.9090922,-3.4498863,-3.7829611,-3.9779391,-4.216309,-4.4244757,-4.561641,-4.593364,-4.716353,-4.7405634,-4.7815304,-4.7718678,-4.8137746,-4.7582803,-4.858616,-4.9028573,-4.8167896,-4.666237,-4.8764515,-4.8918934,-4.784086,-4.6617694,-4.7660437,-4.791664,-4.763419,-4.7474566,-4.7242365,-4.684013,-4.726817,-4.7769146,-4.8130884,-4.797655,-4.774016,-4.746815,-4.6747255,-4.7403626,-4.7990685,-4.8922205,-4.9332285,-4.95999,-4.957279,-4.8871403,-4.8541074,-4.78509,-4.741913,-4.732561,-4.8082714,-4.8609934,-4.851185,-4.785738,-4.731939,-4.671457,-4.6744285,-4.694941,-4.738204,-4.7808237,-4.8219748,-4.840254,-4.8543205,-4.8892164,-4.9156013,-4.888749,-4.860428,-4.8679867,-4.947418,-4.936058,-4.921512,-4.844368,-4.825919,-4.8724437,-4.8721824,-4.906353,-4.9074807,-4.894726,-4.862136,-4.832301,-4.732437,-4.717982,-4.756466,-4.763362,-4.7271895,-4.7246323,-4.690878,-4.661125,-4.668521,-4.7027235,-4.7314453,-4.7865973,-4.8040752,-4.8095517,-4.839832,-4.8726993,-4.856595,-4.846969,-4.897917,-4.884448,-4.8258424,-4.8150387,-4.752636,-4.7815256,-4.7913046,-4.7769604,-4.7756796,-4.8038635,-4.8242593,-4.8066688,-4.7902193,-4.779223,-4.811121,-4.79431,-4.773341,-4.802636,-4.8446364,-4.836644,-4.7628546,-4.7138076,-4.7124486,-4.733295,-4.770138,-4.8092003,-4.833751,-4.867814,-4.816393,-4.6664186,-4.6110277,-4.6598783,-4.660304,-4.622199,-4.567525,-4.5584235,-4.819641,-4.841386,-4.852314,-4.7494545,-4.6658416,-4.508386,-4.5595837,-4.5459633,-4.8926473,-4.9483137,-4.823598,-4.6648684,-4.645757,-4.527093,-4.233642,-4.556593,-4.650389,-4.552266,-4.7231007,-4.826552,-4.6554604,-4.823513,-4.8190045,-4.7303514,-4.6779246,-4.694827,-4.6661263,-4.521934,-4.624517,-4.727739,-4.4432783,-4.0989313,-2.370005,-3.6146524,-4.1772385,-4.463749,-4.542346,-4.5395155,-4.582856,-4.1898413,-3.812693,-4.272565,-4.5374374,-1.011191,-2.871653,-2.171081,-2.8931978,-3.2694163,-3.585244,-3.7973628,-4.044744,-4.13939,-4.2504005,-4.44556,-4.519661,-4.5271225,-4.4584813,-4.443593,-4.5759425,-4.613618,-4.5860763,-4.5539656,-4.5264597,-4.5227594,-4.685874,-4.674032,-4.696357,-1.0933418,-3.0732594,-3.3020291,-3.537166,-3.804911,-2.530184,-2.86881,-3.4111881,-3.5776324,-3.804506,-3.870746,-3.9341033,-3.9524188,-4.1089,-4.179188,-4.132124,-4.204021,-4.2470045,-3.2899876,-3.3663692,-3.5511441,-3.6803527,-3.784737,-3.8539019,-3.6476557,-1.0885717,-2.6392996,-3.3738532,-3.5715408,-3.6960135,-3.4239736,-3.0091782,-2.9798267,-1.9107548,-2.659717,-3.1658688,-3.2329693,-3.3722904,-3.536092,-2.359571,-2.9476743,-3.0726633,-3.2874186,-3.4269834,-3.25589,-2.5967908,-3.1254458,-2.0306506,-2.6977184,-2.107316,-2.6275768,-2.6700292,-2.4677324,-2.489324,-2.7415137,-2.9621973,-3.1290815,-3.311262,-3.3157158,-2.0914044,-1.947023,-2.5963042,-1.388465,-1.8224593,-2.5915775,-3.0232356,-3.117938,-3.1058855,-3.2027006,-3.2989545,-3.3454905,-3.4782286,-3.5485184,-3.5593581,-2.5803366,-3.2466254,-3.4073064,-1.9944917,-2.7847319,-3.0040865,-2.9947846,-2.493109,-2.6711233,-2.8516774,-2.952813,-3.1096642,-3.3181677,-3.4052715,-0.9418829,-1.5073186,-2.1699715,-2.2922683,-2.801394,-2.8474507,-3.0750976,-3.3351722,-3.4417624,-3.008267,-3.241335,-3.375835,-3.5412712,-3.6247315,-3.7060585,-3.7849727,-3.3801327,-3.8548603,-3.7901554,-3.8086233,-3.9383965,-3.981172,-3.9703007,-3.9470766,-4.009781,-4.0254154,-4.069171,-4.120255,-4.163372,-4.1924887,-4.2292128,-4.242132,-1.7806798,-3.0857434,-3.3693678,-3.445857,-3.4030252,-3.6256998,-3.4744642,-3.6198223,-3.7238383,-3.8567724,-3.8504121
+-0.9369812,-1.7599648,-2.0306706,-1.8202319,-1.8628789,-1.8378898,-1.8895153,-1.8336792,-2.106326,-2.2435536,-2.1802382,-2.0879126,-2.2366486,-2.4271069,-2.305904,-2.3523808,-2.3540826,-2.3055375,-2.2636578,-2.0508223,-1.7794679,-1.68884,-1.91388,-1.80873,-2.076368,-2.3181062,-2.0820827,-1.9976724,-2.0839276,-2.1786113,-2.253855,-2.1022654,-2.0092084,-1.8894788,-1.7838483,-1.9768757,-2.03765,-1.9599042,-1.8399051,-1.9572749,-1.7155381,-1.7332894,-2.1467319,-2.2114234,-2.2909973,-2.23112,-2.2009923,-2.0583758,-1.7654012,-1.986931,-1.711839,-1.4868628,-1.7412666,-1.7240341,-1.7998785,-1.9426236,-1.6428328,-1.6995319,-1.571554,-2.1112466,-2.0919256,-1.800572,-1.6929563,-1.9866995,-1.8967531,-1.7557737,-1.7149376,-1.791213,-1.4389595,-1.7831458,-1.4354006,-1.7245238,-2.0350323,-1.8612204,-1.6045843,-2.1566148,-2.1957378,-2.274816,-1.9469604,-1.8024294,-2.2175794,-2.1593726,-1.912691,-1.7352746,-1.8171133,-1.7446588,-2.005017,-1.968079,-1.892409,-1.8189939,-1.7633895,-1.7136272,-1.7311174,-1.7224205,-1.433863,-1.5426646,-1.8232031,-1.9594795,-1.8069441,-1.5734311,-1.808384,-1.8688248,-1.9709145,-1.7945238,-1.9422915,-1.4497381,-2.0923018,-2.0761304,-1.9791349,-1.9659284,-1.9207325,-1.9356259,-1.6051818,-1.985176,-1.9730812,-1.8986516,-1.6860502,-1.9394332,-1.9488925,-1.9244211,-1.9329785,-1.9531852,-2.0146098,-1.9691657,-1.3136758,-1.8674792,-1.908644,-1.8561937,-1.8503655,-1.8883961,-1.8902655,-1.288441,-1.7047337,-1.9053038,-1.9036134,-1.7847157,-1.7399712,-1.9132439,-1.9490291,-2.015794,-1.9840709,-2.0037098,-1.9443434,-1.4962933,-1.5284908,-1.9167747,-1.8915366,-1.8892788,-1.7559972,-1.690272,-1.832699,-1.9113814,-1.869485,-1.8086323,-1.0844287,-1.6106826,-1.9706291,-2.0081084,-1.7008321,-1.7002175,-1.5294377,-1.7758459,-1.8657064,-1.905428,-1.9130849,-2.1011522,-2.1484365,-2.116836,-2.0556676,-1.1605152,-1.8178493,-1.7031745,-1.7538009,-1.9248611,-1.9301525,-1.9962763,-1.8247726,-1.9759661,-1.957839,-2.0850377,-2.0887554,-2.0595193,-2.0583057,-1.4536003,-1.7434176,-1.831461,-1.849151,-1.9105806,-1.818487,-1.5594264,-1.4940802,-1.6964601,-1.4061414,-1.478588,-1.4792856,-1.5475601,-1.7117926,-1.8708853,-1.8633302,-1.8253472,-1.8982548,-1.8348869,-1.6768966,-1.696936,-1.804166,-1.8080034,-2.0829463,-1.9377273,-1.8414328,-2.0786457,-2.058207,-1.5698816,-1.8626555,-1.9575782,-1.9472044,-1.8912299,-2.055913,-1.9054894,-2.1427214,-2.0751948,-1.9128,-2.1203008,-2.2437487,-2.0460603,-2.1289463,-2.0995576,-1.9244021,-1.7830397,-1.4689631,-1.521332,-1.5584766,-1.576892,-1.657755,-1.9464407,-2.023692,-1.6531906,-1.6720914,-1.6311936,-1.7474788,-1.851906,-1.9829844,-1.8534076,-1.7889261,-1.7022932,-2.0139897,-1.8101857,-1.9099228,-1.9442093,-1.5608374,-1.3745763,-1.3473053,-1.1520506,-1.1741599,-1.6144496,-1.5997254,-1.5664974,-1.3711916,-1.3257891,-1.3972702,-1.3819603,-1.3461318,-1.6045839,-1.5805432,-1.7739778,-1.8981844,-1.6748577,-1.6693206,-1.8744113,-1.7649232,-1.526997,-1.6417743,-1.8123401,-1.7082967,-1.9054447,-1.6624371,-1.6647075,-1.5007495,-1.3032484,-1.3614384,-1.5554585,-1.6534358,-1.4772209,-1.5935575,-1.7149018,-1.764023,-1.4107114,-1.3767786,-1.3845274,-1.4954538,-1.6423882,-1.6758401,-1.8394129,-1.650638,-1.7262765,-1.5639321,-1.6044588,-1.7002376,-1.798745,-1.8092415,-1.8735789,-1.8402387,-1.7262548,-1.7174679,-1.6777592,-1.8279694,-1.7137369,-1.6034766,-1.4316033,-1.4729666,-1.6669208,-1.6860844,-1.6179074,-1.6238422,-1.4806031,-1.575206,-1.6902226,-1.8464454,-1.5797976,-1.6421202,-1.529529,-1.7013654,-1.663174,-1.7423481,-1.6021423,-1.6642259,-1.6727321,-1.7883133,-1.7152361,-1.6927933,-1.6514547,-1.7346021,-1.7343053,-1.6639967,-1.7208389,-1.6571604,-1.6884308,-1.5640056,-1.616826,-1.5443997,-1.556321,-1.5953664,-1.6489452,-1.5862561,-1.5734506,-1.5103499,-1.6546108,-1.6748606,-1.6383189,-1.7891712,-1.7942299,-1.3940886,-1.5369521,-1.725516,-1.4190663,-1.6662644,-1.6396583,-1.7017488,-1.5596441,-1.6886169,-1.4666412,-1.7188662,-1.6905351,-1.6498042,-1.8552439,-1.7045864
+-1.3323497,-1.385116,-1.5227484,-0.9948755,-1.4826919,-1.5730425,-1.6320428,-1.6385885,-1.6666216,-1.825494,-1.7541741,-1.5426477,-1.4963502,-1.1357753,-1.5365876,-1.7107016,-1.7890829,-1.809625,-1.8686517,-1.8678919,-1.8684019,-1.7587134,-1.4251667,-1.429511,-1.872989,-1.9563648,-1.8638599,-1.8850831,-1.6213095,-1.075417,-1.8347127,-1.8752816,-1.8786883,-1.8896272,-1.1291428,-1.8114378,-1.9091891,-1.9016894,-1.500561,-1.8036443,-1.7640675,-1.7754515,-1.9449538,-2.0021281,-1.8764415,-1.7904106,-1.8657585,-1.8369935,-1.6706377,-1.7951719,-1.5394775,-0.20749006,-1.1200467,-1.777661,-1.9468323,-1.873556,-1.2814745,-1.7708324,-1.6984783,-1.9052807,-1.9101533,-1.7888082,-1.5837363,-1.7017869,-1.7611477,-1.8136214,-1.8863089,-1.8849975,-1.7111675,-1.732169,-0.44825998,-1.6044117,-1.8674897,-1.7069297,-1.5191165,-1.7918038,-1.7457811,-1.8024724,-1.4889152,-1.6741561,-1.9061596,-1.5609021,-1.7102436,-1.7359287,-1.1999846,-1.4964199,-1.7660085,-1.8713752,-1.9635533,-2.0430741,-2.0099585,-2.001503,-2.016061,-1.945511,-2.006771,-1.9604317,-1.3169061,-1.7054166,-0.868064,-1.0821601,-1.6395191,-1.6260172,-1.6009077,-1.0449338,-1.7571716,-1.6507574,-1.7025772,-1.69732,-1.92113,-1.9070218,-1.975447,-2.1191988,-0.39486444,-1.4408193,-1.7251824,-1.8114957,-1.4859177,-1.3909546,-1.8230036,-1.9922475,-1.98818,-2.0727928,-2.1808765,-2.2361996,-1.970477,-2.095038,-2.1844912,-2.1565151,-1.7135894,-1.9194657,-1.54528,-1.3515254,-1.2429286,-1.694142,-1.909781,-1.9601668,-2.0207973,-2.0842328,-2.0738835,-2.109775,-2.3006053,-2.3904018,-2.2857304,-2.2076955,-2.234845,-2.3422058,-2.444556,-2.4465597,-2.229732,-2.2572796,-2.4792733,-2.5000665,-2.3435917,-2.2747188,-1.9902991,-1.3394635,-2.0766041,-2.178172,-2.110558,-1.6289464,-1.6961886,-1.7821864,-2.0728583,-2.1820974,-2.2925296,-2.434809,-2.6140215,-2.5552397,-2.542707,-0.75481164,-1.299867,-1.6101133,-1.9060223,-2.0865226,-2.04835,-2.0232978,-1.871858,-2.112997,-2.4270227,-2.3265848,-2.4043849,-2.4653783,-2.3780434,-0.99510115,-1.862692,-1.9968506,-1.5042943,-1.7294738,-1.8755907,-0.5352966,-1.659699,-1.5701529,-1.2274097,-2.2552667,-2.1997223,-1.0981948,-0.8000208,-1.7310165,-1.526986,-1.4397184,-1.5034195,-1.6942734,-0.83490485,-1.548079,-1.6115712,-1.6619154,-1.8679739,-1.2174413,-1.4204515,-1.5296167,-1.5928466,-1.6798838,-1.7492739,-0.76194215,-1.4737564,-1.5523833,-1.7359473,-1.8842266,-1.9249934,-1.4058939,-1.931393,-2.0111244,-1.9968919,-2.12126,-2.2554376,-2.0525153,-1.9191295,-1.429775,-1.6701334,-1.5867263,-1.6649135,-1.6129104,-1.3657047,-1.5888239,-1.2049164,-1.5005584,-0.9447076,-1.1021787,-1.1921326,-1.3879164,-1.371121,-0.86661804,-1.1723545,-1.3058742,-1.1728879,-1.3174647,-1.2430161,-1.2596542,-1.5050853,-1.5436074,-1.5599314,-1.560742,-1.5163184,-1.4290689,-1.3032476,-1.3982319,-1.5562757,-1.6135974,-1.4982506,-1.5270904,-1.6699437,-1.559901,-1.4222666,-1.0179197,-1.2301847,-1.3010095,-1.319614,-1.0135922,-1.0187787,-1.0754719,-1.0125146,-0.98936003,-1.1291546,-1.1585268,-1.3560205,-1.2096733,-1.401907,-1.6010408,-1.7123532,-1.6800011,-1.5600933,-1.6161555,-1.5865499,-1.197796,-1.2861737,-1.6466199,-1.706231,-1.6752521,-1.614338,-1.5905458,-1.5792898,-1.4005207,-0.958186,-1.0644186,-1.1058611,-1.010081,-0.9557844,-1.0258771,-0.92958885,-0.99388725,-1.0207355,-1.1437783,-1.0994235,-1.1118364,-1.191492,-1.3011361,-1.5388955,-1.5901119,-1.6452485,-1.1545694,-1.0303797,-1.1132408,-1.1442974,-1.2620054,-0.7656842,-0.9608514,-1.0033392,-1.0696491,-1.1081156,-1.1540493,-1.1666626,-0.47158656,-1.0643361,-1.1648974,-1.0932707,-1.1287574,-1.1644005,-1.0294875,-1.249874,-1.3008175,-1.1449374,-1.2160518,-1.3593334,-1.2543862,-1.1197361,-1.1292921,-1.2245283,-1.3295652,-1.3102361,-1.316204,-1.4697531,-1.1497763,-1.3027688,-1.1565492,-1.136761,-1.3134815,-1.3071963,-1.2791836,-1.5605024,-1.6633115,-1.3980945,-1.0108842,-1.2282118,-1.277948,-1.5018958,-1.3828498,-1.2875097,-1.330974,-1.286126,-1.2185794,-1.3470873,-1.5515195,-1.2739459,-1.4322668,-1.4059315
+-1.0068592,-1.7781147,-2.2026198,-2.0973125,-2.451525,-2.6493816,-2.7611637,-2.8254561,-3.0385904,-3.1735523,-3.3292432,-1.7535603,-2.392592,-2.4550323,-3.0834997,-3.1683488,-3.098405,-3.10856,-3.2139482,-3.3305779,-3.3911939,-2.5968566,-1.781459,-2.801381,-3.0292132,-2.9022295,-3.0121877,-2.8197868,-2.340054,-3.2053318,-3.2938278,-3.2267828,-3.1353407,-3.0479946,-2.642294,-2.5584655,-3.0045507,-2.8787775,-2.609611,-2.7810378,-3.0306177,-3.2188685,-3.474524,-2.6576648,-1.6753699,-2.842057,-3.1655362,-3.1491065,-2.8228312,-2.8635712,-2.7497942,-3.086028,-2.8653505,-3.1421957,-2.9978435,-2.9745903,-2.8072536,-3.054275,-3.0942771,-3.278228,-3.447417,-3.5209928,-3.425673,-3.4360487,-3.8536475,-4.011473,-4.0948,-4.0830336,-2.3853426,-2.1240597,-1.8626655,-2.6400878,-3.1769505,-3.3519897,-2.2992759,-3.0019755,-2.4098146,-2.9869864,-2.4905658,-3.0399156,-3.1267178,-3.1188936,-3.4333358,-3.5806642,-1.9728173,-3.0877628,-3.3331213,-3.577135,-3.60491,-3.8533666,-3.817028,-4.0312767,-3.9531202,-3.9725027,-4.2100725,-4.2262244,-3.0507686,-4.0566397,-1.0453236,-2.5634346,-2.538736,-2.909422,-3.2025614,-2.9826732,-3.1204429,-3.021477,-3.0866637,-3.1113365,-3.319743,-3.1697354,-2.7229269,-3.5903544,-3.593492,-3.8963954,-4.1360207,-4.258724,-4.259444,-4.1298175,-4.197342,-4.22208,-4.165506,-4.347557,-4.4306064,-4.5055733,-4.332141,-4.391797,-4.401194,-4.21844,-4.119605,-4.236122,-0.9317734,-2.1048617,-2.7312486,-3.0776358,-3.4017408,-3.6506424,-3.865727,-4.1027675,-4.1684504,-4.2337923,-4.2897882,-4.3615856,-4.406151,-4.334392,-4.3621693,-4.3543205,-4.4468527,-4.4291105,-4.4474,-4.286639,-4.46087,-4.4516115,-4.275651,-4.155051,-1.6993598,-2.9005377,-3.6845558,-3.6123872,-1.1110815,-1.880914,-2.3302853,-2.981545,-3.4143271,-3.578412,-3.9663515,-4.1535773,-4.2630343,-4.274607,-4.3309813,-3.99362,-1.9443889,-3.1702027,-3.6166687,-3.9672303,-2.756791,-3.1509569,-2.5946856,-3.6435301,-4.087965,-4.1756554,-4.159299,-4.1808662,-2.1513817,-3.0063906,-3.7314963,-3.8982348,-1.52923,-1.5272615,-2.169121,-2.2152734,-2.5865784,-2.3224382,-2.552887,-3.0680895,-3.3454466,-2.499491,-2.533185,-2.831539,-2.6080105,-2.731006,-3.0245667,-3.3460712,-3.4202037,-2.6324544,-2.8734035,-3.2195008,-3.4123502,-2.6005585,-2.5360122,-2.7730646,-2.984396,-2.791658,-2.8623505,-2.5804253,-3.0708852,-3.3772461,-3.4604971,-3.453566,-3.5403266,-2.8190002,-3.2321405,-3.4238849,-3.5595036,-3.599885,-3.646711,-3.5227637,-2.74536,-2.7174568,-2.535812,-3.0491695,-3.0730965,-3.0656037,-2.954752,-3.2167702,-3.0139937,-3.2207212,-2.9677396,-3.1501083,-3.4296782,-3.436647,-3.4246,-2.8281312,-2.9433508,-2.8519335,-2.910937,-2.9127898,-2.9062295,-2.8326285,-2.9175732,-2.9358854,-2.8512616,-2.9129152,-2.485002,-2.3594863,-2.2535472,-2.115361,-2.0902088,-2.1649542,-1.8577684,-1.8777432,-2.0389042,-2.2319062,-2.0301657,-1.7765661,-1.9691325,-2.2142804,-1.9807214,-1.750555,-1.6660846,-1.8728215,-1.6779639,-1.6884453,-1.8229676,-1.7141718,-2.031576,-1.7416071,-1.7601814,-1.829096,-1.9152282,-2.0624833,-2.244287,-2.2475324,-1.8265218,-1.6461457,-1.7130038,-1.7248664,-1.804657,-2.05021,-2.1505723,-2.2547927,-2.2792225,-2.2228632,-1.6795967,-1.8410559,-1.7483598,-1.7632965,-1.9080695,-1.8535542,-1.7199003,-1.7581528,-1.8273289,-2.0666485,-2.0021944,-2.0422997,-1.9807986,-1.9382452,-2.1275868,-2.1080427,-2.0258102,-1.5660328,-1.8331562,-2.0801082,-2.0997517,-1.8206154,-1.8495386,-2.085284,-1.9293877,-2.0635993,-2.1551752,-2.3106117,-2.268869,-1.8873034,-2.220588,-2.1927006,-2.2300549,-2.1681442,-2.2457888,-2.199943,-2.1051586,-2.2786045,-2.1731577,-2.1425576,-2.0285735,-2.063825,-2.0360808,-2.0480819,-2.285509,-2.4174156,-2.562953,-2.6353288,-2.473406,-2.166066,-2.0266895,-2.516347,-2.89291,-3.078698,-3.1848562,-3.202018,-3.1609335,-2.9790165,-2.8982701,-2.8999672,-2.8639374,-2.8528056,-3.1135933,-3.0625095,-2.9973211,-3.037568,-2.9087713,-2.9800296,-3.103983,-3.030078,-2.850688,-2.8085423,-3.0188556
+-1.0777051,-1.5416942,-1.7349161,-1.9466424,-2.453004,-2.4834166,-2.5324798,-2.6490054,-2.709622,-2.8169613,-2.892219,-2.173671,-2.8087544,-3.4248638,-3.6174176,-3.5751624,-3.426034,-3.317059,-3.3391795,-3.3371997,-3.3342175,-3.244228,-2.605245,-3.131698,-3.4154696,-3.414916,-3.3535614,-3.3430843,-3.4558468,-3.3574924,-3.4432864,-3.3921475,-3.4041557,-3.3664315,-3.3589122,-2.815158,-3.1906488,-3.1928482,-3.28712,-3.312982,-3.3726404,-3.3024828,-3.344716,-3.1864285,-2.1202078,-3.2961183,-3.400972,-3.2600532,-2.756178,-3.5294304,-3.3512137,-3.5909336,-3.5028172,-3.3382044,-3.2784495,-3.2397604,-3.2301624,-3.4051297,-3.3264618,-3.3883305,-3.4857545,-3.4121728,-3.1135104,-3.1276503,-3.2493024,-3.2831693,-3.2161944,-3.241829,-3.1599717,-3.1834607,-2.9918418,-2.9766924,-3.456045,-3.449653,-2.4406972,-3.0523753,-2.4117236,-3.175481,-3.1613932,-3.3541267,-3.2741377,-3.222136,-3.3742821,-3.3330746,-3.116253,-3.3825643,-3.418971,-3.4145162,-3.3672633,-3.365395,-3.3297598,-3.3797076,-3.4105272,-3.3221323,-3.50181,-3.4963472,-3.4475217,-3.4976897,-3.3650742,-1.90848,-2.1879048,-3.2612658,-3.3612266,-3.2422605,-3.3023214,-3.206997,-3.2493765,-3.2613204,-3.319208,-3.2735748,-3.2926235,-3.4607506,-3.4257722,-3.4186633,-3.481745,-3.5633068,-3.5541914,-3.5120046,-3.5165093,-3.5488641,-3.5416324,-3.677497,-3.7118077,-3.765288,-3.5760767,-3.6604152,-3.7202158,-3.2914283,-2.435884,-3.0327642,-2.0363932,-2.809229,-3.075417,-3.3779597,-3.5536232,-3.6073768,-3.517973,-3.6635606,-3.6334407,-3.59872,-3.604949,-3.6667755,-3.7813802,-3.7319796,-3.728888,-3.6949258,-3.7240446,-3.753878,-3.7751822,-3.6160083,-3.733643,-3.7561822,-3.6153352,-3.4870915,-3.1989639,-3.1905046,-3.2689595,-3.3820949,-2.8634596,-2.8361998,-3.2511063,-3.4791245,-3.684732,-3.6260223,-3.495566,-3.5441823,-3.6016731,-3.6881309,-3.7572756,-3.388173,-2.0213435,-2.8589585,-3.1290863,-3.1480763,-1.6536893,-2.439213,-2.7238421,-2.8822455,-3.1030178,-3.2802737,-3.4650493,-3.6348577,-3.5245767,-3.287603,-3.515401,-3.4048934,-3.0239265,-2.1326542,-2.5593643,-2.5169382,-2.8246999,-2.9357634,-2.9030735,-3.033084,-3.6367702,-1.6905586,-2.6821241,-3.0640216,-3.2283301,-3.4714346,-3.380884,-3.4513931,-3.4768374,-3.3406453,-3.0376494,-3.28839,-3.344409,-2.438139,-2.6804936,-3.1383264,-3.274786,-3.3353257,-2.298668,-3.0239265,-3.4027877,-3.4576101,-3.5417128,-3.5558438,-3.5853267,-3.5343535,-3.5418928,-3.6735868,-3.6896813,-3.7130227,-3.7249608,-3.6380203,-3.5664394,-3.3512616,-1.8167146,-2.7749014,-2.9784331,-3.2270675,-3.1505325,-3.2752705,-3.2477446,-3.1847992,-2.962551,-3.1828299,-3.3706102,-3.3799486,-3.3464384,-3.0725348,-2.9753733,-3.0309072,-2.982399,-3.118171,-2.6807842,-2.8105307,-2.9476883,-2.7873888,-3.1583033,-3.1104765,-2.5168228,-2.7893133,-2.9420607,-2.8248773,-2.8082888,-2.4543333,-2.2085786,-1.8559431,-2.1130297,-2.200792,-2.1139822,-1.9080054,-1.8373717,-2.143226,-2.120613,-2.1409318,-1.8398653,-2.0786393,-2.0115788,-1.778068,-1.9312485,-1.7274913,-2.1963959,-2.143347,-2.0412087,-2.1445668,-2.113809,-2.3766468,-2.4689941,-2.3411267,-2.055846,-2.2147117,-2.3510246,-2.246451,-2.1788235,-2.3104188,-2.4376683,-2.467886,-2.4685812,-2.4177763,-2.1820414,-2.2907267,-2.2786603,-2.212254,-2.1717443,-2.1049929,-1.9638292,-1.949174,-2.1515722,-2.0813713,-2.2419846,-2.2898316,-2.2064574,-2.2635958,-2.03641,-2.0548146,-2.177648,-2.414246,-2.624298,-2.5461993,-2.5424924,-2.3361137,-2.5090911,-2.4515634,-2.2664104,-2.3750367,-2.4107208,-2.5648594,-2.7061563,-2.3838205,-2.4336152,-2.5747151,-2.5889742,-2.6100185,-2.6212866,-2.3403788,-2.3149145,-2.394359,-2.464679,-2.4597435,-2.3050914,-2.2873964,-2.3597693,-1.9901627,-2.09147,-2.4167266,-2.4792051,-2.3904064,-2.3713946,-2.4475212,-2.5447354,-2.5321572,-2.2640936,-2.314713,-2.0671494,-2.2114158,-2.672546,-2.907592,-2.5369399,-3.131628,-3.2218246,-2.9889612,-3.3287802,-3.3422885,-3.3008857,-2.8808851,-3.039134,-2.95226,-3.3562527,-3.046958,-3.2256842,-3.4713964,-2.830958
+-1.878566,-2.2243264,-2.434819,-2.227755,-2.7766943,-2.7952938,-3.3111186,-3.4839928,-3.5376625,-3.5113893,-3.3499491,-1.9203222,-1.5233047,-2.1156285,-2.2137635,-3.1859813,-3.2451956,-3.407246,-3.7383745,-3.970603,-3.984868,-3.649613,-1.1643114,-1.6484464,-1.8487748,-2.32512,-2.1407428,-2.0220234,-2.0767565,-2.2766461,-2.6290684,-2.8892078,-3.147475,-3.2679403,-2.702308,-1.4274732,-1.6978768,-2.5386622,-3.056384,-3.0741606,-3.273507,-3.1774478,-3.2954068,-3.2885017,-1.3891202,-1.7522627,-2.5843017,-2.6950154,-1.8758965,-2.2991443,-2.7728066,-2.6124053,-2.7513711,-2.475155,-2.2133026,-2.2313895,-2.7678683,-3.3024256,-3.6803668,-3.6079736,-4.0327024,-4.127289,-3.6397812,-3.0233376,-3.5378506,-3.9580352,-2.304867,-3.270897,-3.4164512,-3.26531,-3.2516437,-3.195733,-4.1604266,-4.311015,-1.1354166,-1.7602981,-1.3948942,-2.4358344,-2.0126128,-2.8604784,-3.3786645,-3.6861062,-4.197186,-4.085822,-3.6377702,-4.091121,-4.2815804,-4.0702753,-3.9007015,-3.5945828,-2.9748383,-3.3767657,-4.0591593,-3.3569684,-3.7338235,-3.9937725,-3.5008988,-3.8332014,-3.6607041,-2.1036959,-1.0259222,-2.3600216,-2.6729312,-2.5285747,-3.4546704,-3.6059952,-3.7945747,-3.5160084,-3.6836455,-3.9394195,-3.868503,-4.1702147,-3.9372,-3.789327,-4.1333838,-4.2113643,-4.0058236,-3.6051035,-3.6476064,-3.8324442,-3.5447123,-3.955535,-4.207321,-4.2016582,-3.99159,-4.2194147,-4.2441835,-3.245677,-3.6147523,-3.7126498,-3.1014633,-3.0391078,-3.79725,-4.069174,-4.083178,-3.9413023,-3.7947216,-4.1623125,-3.7549105,-3.8052015,-4.0526996,-3.9046767,-4.2133694,-4.2283783,-4.3722515,-4.221737,-3.966992,-3.9018922,-4.115078,-3.6407614,-4.155335,-4.201352,-3.918015,-3.6683946,-3.13551,-3.0286074,-1.0656039,-1.3663471,-2.4407005,-1.6226877,-2.7248116,-3.672068,-3.984188,-3.952541,-3.7614074,-3.3754883,-2.8280132,-3.6106236,-4.0581613,-3.731005,-2.5583177,-2.6200676,-3.1468253,-3.0078795,-2.1025305,-0.9117718,-1.857242,-2.684966,-3.2192626,-3.4635348,-3.7736359,-3.8089094,-3.5445294,-3.471169,-3.135047,-3.070881,-2.326768,-2.200021,-1.2972056,-2.623879,-2.6737616,-2.9679286,-2.8254275,-2.574317,-3.5944085,-2.503119,-1.5534314,-2.504514,-2.2338326,-2.4783335,-1.7368993,-2.7251775,-2.906224,-3.0230033,-3.0445805,-3.1541486,-2.5623121,-2.7326052,-2.9914668,-3.17297,-2.6864667,-3.0349755,-1.9761568,-2.4146643,-3.0936437,-3.1629949,-3.2628636,-3.3160162,-3.3293407,-3.3262987,-3.2455232,-3.344524,-3.3778522,-3.4501271,-3.4615388,-3.3715713,-3.3897479,-3.3309224,-2.6483674,-3.0145214,-3.4093115,-3.5328596,-3.2063117,-3.161266,-2.79257,-3.2448967,-3.0655627,-3.308212,-3.2385974,-3.3286319,-3.3027885,-2.8415499,-3.253893,-3.2867424,-3.4523063,-3.6439865,-3.3223224,-3.1721284,-3.302018,-3.407,-4.0060444,-3.6093144,-3.0242698,-2.0650709,-2.6966605,-2.668745,-3.0650473,-2.4292808,-2.3641517,-2.3540807,-3.4767768,-3.4729211,-3.441496,-2.7605305,-3.2817605,-3.5282044,-3.0019417,-2.66158,-3.2594023,-3.3669176,-2.987195,-2.6878328,-3.2605014,-3.122023,-3.302289,-3.264956,-2.88718,-3.040156,-2.29463,-2.8289084,-2.8554559,-2.5947816,-2.040836,-1.8837192,-1.9332205,-2.0612104,-2.7378545,-2.986133,-3.0093524,-2.99679,-2.9848113,-3.0092463,-2.3956752,-1.8850116,-2.33257,-2.0479937,-2.267019,-2.2652614,-2.4997876,-2.6620991,-2.4069843,-2.8416343,-2.9295666,-3.0036836,-2.9439723,-2.713057,-2.3435707,-2.434145,-2.132541,-2.3335156,-2.481254,-2.5677388,-1.8885229,-2.1480005,-2.208169,-2.5303545,-2.649981,-3.041387,-3.073833,-3.1359382,-3.0874119,-2.2164648,-2.6179547,-2.1560545,-2.1451626,-2.3430324,-2.343752,-2.6530485,-2.7335508,-3.2368405,-3.2137613,-3.1771383,-2.8604627,-2.7507434,-2.7433076,-2.9836745,-2.9544096,-2.3161328,-2.4071026,-2.9419124,-2.2762535,-2.2031405,-2.2810807,-2.2898145,-2.7914684,-2.7255416,-3.0490541,-2.8167439,-3.0441709,-2.7937975,-2.9921527,-2.8224177,-2.6556354,-2.8080354,-2.640894,-2.8125548,-3.0925303,-2.7545862,-2.790112,-2.9063873,-2.697252,-2.9634507,-2.7781484,-2.2009475,-2.6398027
+-1.1837637,-1.305285,-1.5204151,-1.8477639,-2.251822,-2.3812013,-2.492658,-2.6032622,-2.7065148,-2.318058,-2.620017,-2.6991148,-1.7877333,-2.6255164,-2.7567947,-3.3365757,-3.4090855,-3.4373798,-3.4640102,-3.4341893,-3.368672,-3.1911244,-3.1683407,-2.14775,-2.0446405,-2.757051,-2.8903728,-2.8231213,-3.0194159,-2.9373374,-3.079668,-3.0429902,-3.0526145,-2.8275924,-2.7747412,-2.0665526,-2.5752602,-2.790515,-2.9937844,-3.3451605,-3.3305779,-3.205975,-3.1350205,-3.219796,-2.423184,-2.3636603,-2.7969623,-2.8988905,-2.6063426,-2.7382655,-2.918232,-2.972013,-3.164069,-2.6902506,-2.5682526,-2.8515499,-3.1163197,-3.3050857,-3.2218854,-3.225047,-3.4233153,-3.4282506,-3.546978,-3.487111,-3.5725548,-3.7278543,-3.8484802,-3.9608812,-4.0196104,-4.0726357,-4.1084614,-4.0328913,-4.053278,-4.199876,-4.0892134,-2.0660708,-2.5920482,-3.199852,-3.3512802,-3.5901608,-3.915245,-4.1248007,-4.178069,-4.282615,-4.247257,-4.234829,-4.322702,-4.449477,-4.536452,-4.570528,-4.397401,-3.600912,-4.2992525,-4.4748087,-4.505764,-4.6372037,-4.62641,-4.6689634,-4.665144,-4.5588255,-4.0290384,-4.222591,-4.650515,-4.6485796,-4.742512,-4.8475695,-4.7960143,-4.834075,-4.79819,-4.8367367,-4.841625,-4.851867,-4.870505,-4.898946,-4.8617935,-4.879635,-4.8859544,-4.8643365,-4.7508645,-4.6552963,-4.519311,-4.530961,-4.661951,-4.700347,-4.7555885,-4.7739434,-4.618496,-4.5654497,-4.614799,-4.736619,-4.6905956,-4.64784,-4.724867,-4.7530303,-4.7361536,-4.71097,-4.6618013,-4.715868,-4.48437,-4.505435,-4.652328,-4.7154927,-4.762907,-4.77245,-4.8361917,-4.875055,-4.8518906,-4.854746,-4.8578925,-4.8271456,-4.765777,-4.694873,-4.6482973,-4.672823,-4.715641,-4.640311,-4.20477,-4.402083,-4.676641,-4.574029,-4.688645,-4.790992,-4.808367,-4.8443785,-4.7787824,-4.41452,-1.3077347,-3.154283,-3.7987916,-4.128167,-4.0303583,-4.112262,-4.1562943,-3.6462402,-1.5900221,-1.7174011,-2.5183716,-3.363073,-3.7002487,-3.9169464,-4.111038,-4.0686855,-3.8681467,-4.0467167,-4.294297,-3.8785062,-3.562654,-3.707675,-3.7519302,-3.9901161,-4.209721,-4.2489185,-4.2481728,-4.1706724,-4.4141273,-3.9658284,-1.8430105,-2.0815363,-2.3960452,-2.4154816,-2.5321019,-2.7221515,-2.8867273,-2.8230424,-2.928721,-2.8376276,-2.692483,-2.6866994,-2.8365397,-2.9848678,-1.6251901,-2.5957572,-2.4803498,-2.6790366,-2.7431898,-2.7760158,-2.959999,-2.9112487,-2.8977923,-2.963892,-2.9848554,-3.0130951,-3.0707989,-3.1370096,-3.1600525,-3.180358,-3.267869,-3.2147655,-3.1695318,-2.6573737,-3.5259452,-3.8536105,-3.5305688,-3.19037,-2.3976367,-3.0251641,-2.611699,-3.092275,-3.1120892,-3.2712758,-2.0652802,-2.3401883,-2.688757,-2.7910318,-2.847086,-3.076202,-2.9487836,-2.669264,-2.6383307,-2.8196588,-3.1918926,-2.6246285,-1.9562969,-1.6966127,-1.9951435,-2.0857708,-2.2592154,-2.1679292,-1.9835347,-2.0091345,-2.159267,-2.3730288,-2.3765216,-2.0189977,-2.2732277,-2.5710382,-2.3110266,-2.203089,-2.3867776,-2.5919013,-2.150686,-2.3799129,-2.6052341,-2.633473,-2.7801147,-2.8360636,-2.3025072,-2.3230374,-2.4017875,-2.2235777,-2.5057993,-2.2243707,-2.0581193,-2.292735,-2.0863051,-2.2628183,-2.329096,-2.4190376,-2.6371431,-2.7767239,-2.8923764,-2.8541112,-2.3848443,-2.208139,-2.3902602,-2.223724,-2.1685982,-2.1575603,-2.3372436,-2.440732,-2.1135798,-2.3963432,-2.5549772,-2.7566285,-2.7405708,-2.5908492,-2.1379523,-1.9981064,-1.7681004,-1.7352031,-1.901453,-1.9142507,-1.6295211,-1.9586127,-1.842985,-2.3342218,-1.992134,-2.4640918,-2.664021,-2.7774441,-2.8173084,-2.200416,-2.4135141,-2.0072875,-2.016533,-1.9768203,-2.0407722,-2.1909387,-1.9405664,-2.3009713,-2.3956943,-2.5122404,-2.3559017,-2.2744546,-2.3772867,-2.5360293,-2.4388757,-2.1520271,-2.1715064,-2.1944938,-2.0459218,-1.5914367,-1.6067915,-1.6030438,-1.8194524,-1.864161,-2.1181927,-1.9988941,-2.0368114,-2.0506144,-2.1644769,-2.414031,-2.7130997,-2.7056465,-2.8982792,-2.898076,-2.9043083,-2.8409753,-2.572087,-2.654116,-2.7111213,-2.9970005,-2.8970528,-2.640613,-2.8312035
+-1.5377914,-1.6785277,-2.0439408,-1.9299452,-2.57225,-2.7864456,-3.11711,-3.462504,-1.4548479,-1.423237,-2.0725868,-2.1240487,-2.5240836,-2.608581,-2.20076,-2.865891,-3.1692545,-3.5090806,-3.7755966,-3.939838,-4.017597,-3.5518727,-1.4682814,-2.3649216,-1.9411922,-2.4342055,-2.4343987,-2.4708388,-2.4528542,-2.4414647,-2.5732443,-2.5901847,-2.7756867,-2.9144492,-1.9141546,-1.4861573,-2.1244054,-2.3918238,-2.5298314,-2.7909925,-2.9211159,-3.0688252,-3.2423449,-3.4350243,-3.3341446,-1.4491543,-2.1377087,-2.8438158,-3.2931032,-3.5501673,-3.5362442,-3.623188,-3.6741123,-1.3398674,-1.6949729,-2.2045803,-2.5745478,-2.948934,-3.1488626,-3.552772,-3.8196044,-3.9447536,-4.076961,-4.272938,-4.161001,-4.171329,-3.7736223,-3.9697876,-3.8142326,-4.0903444,-4.0671515,-4.051723,-1.027486,-2.4251652,-2.9675832,-3.343316,-3.382472,-3.8107972,-3.8991184,-3.9407427,-4.0929427,-4.198192,-4.259947,-4.234864,-4.216346,-4.2276163,-4.2582808,-4.202813,-4.1521463,-4.062666,-3.8023868,-3.8206882,-3.062152,-1.6733261,-3.2070117,-3.7309182,-3.9904299,-4.024669,-3.937231,-3.8573556,-3.7786055,-3.88682,-4.126989,-4.172172,-4.2256746,-4.2537174,-4.1234226,-4.161765,-4.2297735,-4.2267327,-4.1760597,-4.2396927,-4.217054,-4.3101244,-4.2989526,-4.309249,-4.2340817,-4.2932873,-4.2083025,-4.0602436,-3.8715312,-3.824504,-4.0308027,-4.0403066,-4.1862764,-4.2922482,-3.8929515,-4.0182323,-4.1480856,-4.293945,-4.2138534,-4.2105846,-4.235278,-4.233532,-4.2477655,-4.219986,-4.08759,-4.246583,-3.91055,-3.983749,-4.126916,-4.246428,-4.244466,-4.2141943,-4.069028,-4.272785,-4.3016167,-4.3204627,-4.27091,-4.2023096,-4.2573957,-4.188936,-4.133044,-4.0762205,-4.141347,-4.1427355,-3.8518314,-3.9441605,-4.166314,-4.2210035,-4.211503,-4.313754,-4.3122964,-4.2806835,-4.116409,-0.8485629,-2.0232143,-2.8452055,-3.2082386,-3.4644203,-3.5890498,-3.7123833,-3.832653,-2.3168998,-2.4153602,-2.5781188,-3.0248365,-3.6314182,-3.8932986,-3.9727278,-4.1313524,-3.9124293,-3.736064,-3.8298872,-4.043401,-3.516562,-3.43429,-3.720328,-3.6709075,-3.9619708,-4.22633,-4.226303,-4.194452,-4.101541,-4.2155266,-4.03106,-3.9750137,-2.944394,-1.1638247,-2.1506567,-2.7011547,-3.0223415,-3.2586155,-3.3988814,-3.4141326,-3.5385613,-3.055495,-2.928823,-3.303957,-3.64303,-1.0562195,-2.2564383,-2.2090347,-2.4275608,-2.8324418,-3.1188335,-3.431409,-3.4988492,-3.4751496,-3.3934615,-3.465006,-3.572033,-3.6106887,-3.6910696,-3.6820092,-3.6280296,-3.7136922,-3.6635315,-3.8349094,-3.687316,-3.7433646,-3.8764043,-3.860753,-3.6938586,-1.576573,-2.935019,-2.3686275,-3.0325518,-3.3428698,-3.4455824,-2.3022008,-2.576867,-2.8553004,-3.027512,-2.8279405,-3.08242,-3.4776645,-3.1531715,-3.0514307,-3.5704088,-3.3784258,-2.8350585,-2.543569,-1.4143925,-1.776644,-2.4526696,-2.6839375,-1.8674527,-1.9823583,-1.697696,-2.6154206,-3.1228595,-3.1339443,-2.7448149,-2.3656068,-2.8029847,-2.695572,-1.8661559,-2.414885,-3.0782495,-3.029995,-2.9093127,-3.1477604,-3.1155448,-3.4084625,-3.3524013,-2.6174915,-2.347332,-1.52067,-1.5086396,-2.254167,-1.8250397,-1.1983124,-1.2293603,-1.045366,-1.18936,-1.2979268,-1.4381044,-2.0710907,-2.371892,-2.518875,-2.625428,-2.2479258,-1.1327717,-1.4238614,-1.4086875,-1.3515192,-1.141892,-1.6611205,-2.0014327,-1.5536004,-2.1633773,-2.4000177,-2.4645905,-2.4446206,-2.2978005,-2.0906405,-1.6826018,-1.5072867,-1.4668568,-1.4825565,-1.5541233,-1.4207956,-1.4486731,-1.246147,-1.4003556,-1.460807,-2.8608365,-3.2376578,-3.2857964,-3.1610172,-2.143162,-2.372639,-1.6232094,-1.6014549,-1.2978572,-1.3884801,-1.3729142,-1.5359218,-2.1729305,-2.2213678,-2.4326844,-1.898333,-2.247908,-2.5726492,-2.6655521,-2.685221,-2.293864,-2.3123693,-2.1247976,-1.8893008,-1.7683653,-1.8425366,-1.4930894,-1.5378463,-1.607044,-1.883788,-2.1748695,-2.3438656,-2.3622768,-2.334507,-2.4157217,-2.3535595,-2.3283858,-2.369006,-1.861039,-2.2350159,-2.6298976,-2.1684055,-2.783127,-2.1661415,-2.84545,-2.6960096,-2.0132923,-2.638972
+-1.5391508,-1.6228719,-1.51788,-1.7480991,-2.3056393,-2.5573106,-2.7013073,-2.473243,-1.1930047,-1.9157275,-2.1282072,-2.158482,-2.2067266,-2.4329891,-2.627761,-2.9726806,-3.0003276,-3.1550014,-3.3433566,-3.4323606,-3.551705,-3.0205212,-2.1608155,-2.6589022,-2.4888804,-2.7448354,-2.6679406,-2.5169973,-2.4975483,-2.5814312,-2.518402,-2.4977508,-2.4427938,-2.4206405,-2.5416155,-1.7661303,-2.160718,-2.4332275,-2.3952103,-2.5439072,-2.7081995,-2.7453244,-2.8936834,-3.2312613,-3.2028718,-2.7255576,-2.1932178,-2.9407954,-3.329568,-3.570798,-3.5081887,-3.1271098,-3.4937246,-2.2150826,-2.2734668,-2.5695333,-2.6706572,-2.766226,-2.6821504,-3.1693523,-3.3936357,-3.6617622,-3.9935923,-4.1225195,-4.1165423,-4.221175,-4.123348,-4.1188865,-4.067322,-4.174884,-4.181782,-3.884594,-1.0719526,-2.3356986,-2.586153,-2.8254352,-2.9363627,-3.317737,-3.592268,-3.8361626,-3.9055467,-4.173176,-4.2895164,-4.3708677,-4.362513,-4.2905283,-4.306202,-4.3244505,-4.282214,-4.076606,-4.038582,-2.4591503,-3.1611383,-3.612202,-3.9460812,-4.1219387,-4.209279,-4.1610436,-4.107998,-4.0807247,-3.9968328,-4.0740395,-4.2114825,-4.216719,-4.259712,-4.3136272,-4.2328043,-4.2614975,-4.2758617,-4.2683897,-4.252279,-4.2842045,-4.2957835,-4.260067,-4.2638164,-4.3260493,-4.3181295,-4.321255,-4.28106,-4.014064,-3.967464,-3.9509568,-4.063966,-4.106634,-4.140766,-4.233644,-3.718124,-4.0681114,-4.1455183,-4.236871,-4.2480164,-4.21763,-4.223733,-4.227582,-4.2578564,-4.2790713,-4.2310934,-4.2563133,-4.2750983,-4.339081,-4.1991034,-4.2511253,-4.2608376,-4.2653427,-3.8659258,-4.0908995,-4.1392245,-4.1494617,-4.1304607,-4.181529,-4.2504416,-4.17414,-4.1511607,-2.9607682,-3.9205256,-3.9741974,-3.9090438,-3.84027,-4.0171614,-4.1334743,-4.1433625,-4.1495953,-4.166377,-4.213257,-3.960125,-0.83480746,-2.1877873,-2.5248299,-2.7919521,-3.1012297,-3.4800944,-3.834566,-3.9601479,-0.8137308,-1.7041184,-2.3030553,-2.683529,-2.9219909,-3.037431,-3.2360075,-3.4148932,-2.7314272,-1.7388474,-2.588369,-3.0970905,-3.1956413,-3.3286335,-3.5834446,-3.6332068,-3.520557,-3.7043357,-3.7935996,-3.846422,-4.0372095,-3.9905958,-3.934327,-3.994669,-3.5290673,-1.2649107,-1.7524992,-3.0504642,-3.3741064,-3.4285421,-3.5440698,-3.5531068,-3.5100646,-3.2582157,-3.1514292,-3.25169,-3.4756494,-1.0947146,-2.3714094,-2.3178608,-2.204528,-2.6765566,-3.2155004,-3.4203382,-3.4424696,-3.5161295,-3.5394197,-3.5027337,-3.4616995,-3.4230413,-3.447867,-3.4629173,-3.4589162,-3.6955643,-3.6730266,-3.7312677,-3.9805698,-3.991149,-4.0228276,-3.7354715,-3.5799916,-2.818458,-3.7635126,-3.6914055,-4.0636315,-4.0948057,-3.943983,-3.438278,-3.590781,-4.226391,-4.2160296,-4.0704184,-4.220517,-4.3788776,-3.9276032,-4.061943,-4.420936,-4.479406,-3.663837,-3.28225,-3.2084048,-2.709973,-3.6279638,-3.5322354,-2.8400362,-2.9740808,-1.6905442,-3.0096755,-3.6247253,-3.7418103,-3.5134444,-3.2353578,-3.3596416,-2.8165522,-2.548954,-3.3828664,-3.6660461,-3.6872082,-3.6612782,-3.6911974,-3.7419174,-3.915172,-3.9492152,-4.106712,-3.8892443,-2.1664467,-2.0860925,-3.4985075,-2.9258192,-2.2246728,-1.7694879,-2.189,-1.9525543,-2.4084108,-2.2635446,-2.9960618,-3.4522777,-3.752586,-3.8208702,-3.395547,-2.7803557,-2.9917252,-2.9030778,-2.5422733,-2.2960744,-3.1744723,-3.490194,-3.145793,-3.5788205,-3.6917253,-3.6851263,-3.7147806,-3.7182975,-3.6328297,-3.1450157,-3.0783837,-3.183877,-3.269271,-2.9669554,-1.83819,-1.8824486,-1.8293542,-1.6992832,-1.836279,-2.924059,-3.3526824,-3.63105,-3.6524215,-2.9179769,-2.7897,-2.0289738,-2.424811,-1.7737834,-1.8338373,-2.0893707,-2.7674117,-3.1583598,-3.246761,-3.4587982,-3.259519,-3.6375756,-3.7226562,-3.7395523,-3.8075743,-3.4385853,-3.2682738,-3.5286953,-3.4913907,-3.1938028,-3.2188506,-2.987997,-2.7591538,-2.68998,-2.7963994,-2.697515,-2.3866105,-2.36366,-2.4442377,-2.3566527,-2.5454364,-2.566251,-2.4820247,-2.5808692,-2.9296181,-2.9959168,-2.5993469,-2.9343824,-3.0322235,-3.5811415,-3.3354018,-2.4574237,-2.8227003
+-2.1429543,-2.8228164,-3.3012118,-3.653697,-4.0297422,-4.198678,-4.323477,-1.8510593,-0.8678268,-1.799491,-2.0727043,-2.4104884,-2.7432532,-3.1204033,-3.6280322,-3.8791656,-4.1638455,-4.3414407,-4.4336505,-4.437846,-4.455351,-4.390369,-1.9549227,-3.3567784,-1.566425,-3.1952913,-2.7085183,-1.9110712,-3.1668494,-2.1355798,-3.357562,-2.0833602,-3.310293,-3.624951,-3.8296626,-1.5828825,-2.4006999,-1.3297926,-2.5792751,-3.2130256,-3.7142096,-4.038634,-4.2490473,-4.3364115,-4.23993,-3.9431796,-3.8665848,-3.8407977,-4.1624117,-4.1320434,-4.0970063,-3.6236205,-3.5540724,-2.3103113,-1.7585541,-2.9109032,-3.5665584,-3.786435,-3.8862123,-4.082031,-4.1180077,-4.189885,-4.332529,-4.3933306,-4.383142,-4.4415855,-4.3652167,-4.293421,-4.2949376,-4.346121,-4.3157234,-3.0745745,-1.3507043,-1.7653611,-3.2366798,-3.7420368,-4.0033436,-4.149412,-4.254325,-4.443261,-4.35077,-4.421624,-4.408215,-4.4691563,-4.4689145,-4.428727,-4.4816775,-4.4229465,-4.1377563,-3.7900515,-4.0270386,-3.6571436,-3.3072362,-3.9821324,-4.1563406,-4.2982445,-4.3964505,-4.3843994,-4.3551607,-4.3450975,-4.264864,-4.3676496,-4.4374504,-4.461906,-4.4192734,-4.4544873,-4.4357667,-4.4576283,-4.4134436,-4.4319177,-4.484811,-4.4665318,-4.5047836,-4.46134,-4.4688587,-4.4661684,-4.4152975,-4.37379,-4.2642717,-4.0837417,-4.031138,-3.9556832,-3.9307384,-3.78331,-4.0175076,-4.0227966,-3.9029365,-4.183318,-4.2239695,-4.3674307,-4.4522543,-4.444816,-4.535289,-4.5023,-4.4809675,-4.4428186,-4.4214706,-4.464155,-4.461986,-4.4673204,-4.4417696,-4.426861,-4.375184,-4.178047,-3.9823723,-4.260129,-4.2771196,-4.218144,-4.217024,-4.3162785,-4.3152018,-4.2728987,-4.226939,-4.2583947,-4.3753633,-4.3959208,-4.380067,-4.387747,-4.4112635,-4.446062,-4.443651,-4.388512,-4.3961267,-4.3468547,-4.329148,-4.0706153,-3.8788123,-4.35341,-4.3945236,-4.4472537,-4.4696712,-4.417907,-4.3402367,-3.9264178,-1.1788064,-2.9969344,-3.6484969,-4.1249313,-4.2874327,-4.42272,-4.3538084,-3.9672375,-4.1032944,-4.2279363,-4.31875,-4.2531576,-4.1228952,-4.4322996,-4.3360844,-4.389187,-4.55097,-4.496311,-4.4171,-4.3844943,-4.352932,-4.2921495,-4.318369,-4.178717,-3.984416,-3.8704896,-4.0151677,-4.271982,-4.3090267,-4.417161,-4.3999863,-4.297146,-3.9226446,-3.8312738,-3.941382,-3.0854843,-1.5341388,-2.911509,-1.3095376,-2.628179,-3.2911513,-3.8093085,-4.036142,-4.113904,-4.1552153,-4.0390024,-4.1319966,-4.23064,-4.1155167,-4.106423,-4.071824,-4.0072594,-4.151955,-4.291565,-4.23458,-4.388227,-4.488271,-4.389266,-4.1471076,-3.8725247,-2.3374226,-3.7673686,-4.084488,-4.5401745,-4.5224657,-4.174843,-2.4333982,-2.8693166,-3.9700823,-4.2803144,-4.3556786,-4.0550556,-4.482557,-4.574674,-4.6698647,-4.7816315,-4.6743264,-4.3900194,-4.2392554,-4.076596,-3.9348216,-4.168043,-4.111046,-3.9735174,-3.7372508,-0.9434417,-3.0468316,-3.8730137,-4.257994,-4.3075457,-4.279329,-4.112197,-4.065113,-2.1238105,-3.5387344,-3.89339,-4.0477366,-4.0919046,-4.2226276,-4.037237,-3.5221276,-3.8956356,-4.138401,-4.131812,-1.5965849,-1.9528719,-3.4085991,-2.8550582,-1.75463,-1.371807,-2.5516248,-1.9718941,-2.646245,-2.3165216,-2.883297,-3.5748136,-4.04375,-4.3480597,-4.284791,-2.0344763,-2.1674678,-2.7031631,-1.8872677,-1.814438,-3.1754305,-3.8555975,-3.7208092,-3.9389362,-4.148151,-4.1039658,-4.1165223,-4.178988,-4.0554047,-3.721322,-3.0766091,-3.374947,-3.341957,-2.2281415,-1.1692424,-2.098129,-2.5453534,-2.2150671,-2.2210648,-3.1785688,-3.5354238,-3.835778,-4.0741506,-3.6245437,-1.0749049,-1.942973,-2.2593977,-2.1365342,-2.098732,-3.318291,-3.5417619,-3.8620596,-3.9632506,-3.9405,-3.9157493,-4.099702,-4.1563215,-4.207108,-4.223319,-4.018122,-3.5964143,-4.154804,-4.0847135,-4.064006,-4.1831694,-4.251225,-4.1701136,-4.303775,-4.3177633,-4.3465433,-4.3039174,-4.4770164,-4.4835973,-4.3805103,-4.3879447,-4.3031206,-1.2376287,-2.5969434,-3.0954514,-3.5054913,-1.5074452,-2.8281207,-3.2908568,-3.728625,-3.9688058,-4.0328164,-3.8482
+-3.4371243,-4.2776833,-4.396079,-4.4768105,-4.6277986,-4.7864943,-4.6817417,-1.6725281,-1.8422954,-3.0111125,-3.2042153,-3.364323,-3.9053814,-4.229807,-4.6908016,-4.8207035,-4.9638686,-4.978993,-4.952059,-4.9955387,-5.003966,-4.951667,-4.5715046,-4.7245355,-4.148058,-4.356922,-4.3732505,-1.9873172,-3.7376306,-1.9822482,-3.4740548,-2.89549,-3.8670382,-4.332205,-4.50974,-2.33832,-1.8470166,-2.1679327,-3.2630818,-3.692153,-4.17805,-4.635026,-4.80025,-4.7540493,-4.5950446,-4.7046995,-3.0942569,-3.9596179,-4.3263345,-4.5064383,-4.4422517,-4.5025363,-4.52919,-4.3889136,-4.1716704,-3.2728693,-4.130355,-4.351815,-4.366197,-4.513831,-4.5728607,-4.5710897,-4.5844398,-4.6374655,-4.6493816,-4.624275,-4.601856,-4.5632477,-4.550111,-4.554732,-4.5567064,-4.266605,-4.0735025,-4.175247,-4.415439,-4.468197,-4.4536386,-4.475791,-4.5333047,-4.5208097,-4.4350533,-4.485503,-4.4166965,-4.5503016,-4.5702553,-4.6635246,-4.579474,-4.44586,-4.529355,-4.1501904,-4.3530164,-4.424308,-4.4246044,-4.4662213,-4.497807,-4.578699,-4.630965,-4.6025195,-4.5794115,-4.534313,-4.3942466,-4.671073,-4.677422,-4.6672626,-4.6021395,-4.5748,-4.5663567,-4.5505714,-4.571617,-4.579672,-4.6235476,-4.5868406,-4.5888524,-4.5987196,-4.578995,-4.5541506,-4.4093723,-4.3155384,-4.2916565,-4.122108,-4.1291447,-4.226596,-4.2483053,-4.2442427,-4.3481083,-4.385876,-4.354724,-4.6135745,-4.5694227,-4.661433,-4.7057886,-4.705942,-4.7610235,-4.591813,-4.6284857,-4.569463,-4.5949345,-4.684862,-4.705195,-4.6881304,-4.619585,-4.6023207,-4.513749,-4.397794,-4.4290304,-4.506565,-4.5553985,-4.5990267,-4.554268,-4.566327,-4.667385,-4.6498804,-4.596075,-4.612048,-4.742802,-4.72252,-4.689001,-4.8264146,-4.847103,-4.8323717,-4.7478123,-4.6457796,-4.6920023,-4.694743,-4.646241,-4.6477003,-4.5593176,-4.8866177,-4.896126,-4.917294,-4.916789,-4.8194485,-4.5723495,-4.3065515,-4.639483,-4.843662,-4.8601522,-4.9508724,-4.9560976,-4.896451,-4.44849,-4.4966545,-4.554403,-4.6841717,-4.7797976,-4.7379875,-4.728837,-4.8341265,-4.9356136,-4.97834,-4.9976206,-4.969504,-4.8627844,-4.7580366,-4.8761907,-4.820449,-4.800508,-4.6056933,-4.5449057,-4.558097,-4.5919495,-4.882955,-4.955871,-4.9810266,-4.926975,-4.786269,-4.005496,-4.386578,-4.5889654,-4.648943,-1.9447767,-3.7434032,-1.9615587,-3.5554032,-4.1322794,-4.6094537,-4.878841,-4.95382,-4.8399177,-4.7931633,-4.7945623,-4.936157,-4.8258734,-4.812036,-4.7816796,-4.71992,-4.7514052,-4.8524027,-4.8720875,-4.899149,-4.8897524,-4.9596806,-4.9871254,-4.6150885,-1.7540138,-3.802386,-4.249831,-4.746807,-5.0252953,-4.962118,-2.3772726,-4.0558467,-4.518978,-4.8252926,-4.8404694,-4.7712502,-4.949041,-5.091271,-5.1184273,-5.1856484,-5.1518745,-4.9386363,-4.798087,-4.743065,-4.775304,-4.6780996,-4.672357,-4.6927757,-4.6800675,-1.4146532,-3.9133587,-4.3139997,-4.628481,-4.9221134,-4.757044,-3.91888,-4.208608,-1.2732443,-3.175898,-3.6472306,-4.059802,-4.2969775,-4.3694015,-2.7389839,-2.5218832,-1.843336,-3.1449976,-3.3968759,-2.3321466,-2.2197797,-3.562607,-2.362383,-2.3531344,-2.3044846,-3.5111833,-3.2107878,-3.0708156,-3.3976276,-3.6514993,-4.1555257,-4.4592404,-4.673259,-4.742683,-1.7627088,-2.028106,-2.5315945,-2.063146,-2.455253,-3.4782763,-4.038292,-4.3426,-4.3708982,-4.561,-4.654125,-4.651496,-4.678588,-4.669504,-4.3518734,-4.196945,-4.3104086,-4.3677835,-1.4780778,-2.8848555,-3.278192,-3.5377672,-3.4843564,-1.9332291,-3.4274147,-4.018606,-4.4166718,-4.6544895,-4.5467515,-1.395802,-2.141943,-2.8635118,-2.8699021,-3.3126764,-3.7584815,-4.1841483,-4.4212008,-4.4881616,-4.262088,-4.113232,-4.4562583,-4.6259317,-4.757844,-4.8790693,-4.855769,-4.5678988,-4.6244254,-4.696554,-4.7855973,-4.901687,-5.020006,-5.0082307,-5.037163,-5.071161,-5.0887003,-5.03265,-4.910652,-4.9973154,-5.009864,-4.9798307,-4.9344435,-2.748204,-3.8655157,-4.2083154,-4.4861703,-4.26999,-4.4274282,-4.6052647,-4.853715,-4.978833,-4.6924887,-4.6538525
+-3.1555493,-4.3947954,-4.544411,-4.683247,-4.721623,-4.7219253,-4.201995,-1.8531572,-1.7540741,-2.3131144,-1.8040828,-2.3031344,-3.5784965,-4.2068524,-4.575655,-4.7576885,-4.8763523,-4.94018,-4.951277,-4.954258,-4.9873705,-4.934458,-4.790286,-4.8946395,-4.6850624,-4.437316,-4.6298714,-2.2566054,-3.9162538,-4.4343047,-4.1887245,-4.0204544,-4.4589643,-4.6688914,-4.567687,-3.8742023,-4.271481,-4.322817,-4.4311857,-4.544713,-4.5491037,-4.669738,-4.7104855,-4.6609645,-4.6551075,-4.643512,-4.635156,-4.49926,-4.5733514,-4.66884,-4.5635185,-4.5850353,-4.612604,-4.5638256,-4.495014,-4.4841194,-4.5315275,-4.5558596,-4.478424,-4.5739074,-4.5850477,-4.540506,-4.545096,-4.5721383,-4.5682454,-4.5686736,-4.602561,-4.5867834,-4.5957317,-4.6005955,-4.600546,-4.356292,-4.457817,-4.502176,-4.614313,-4.613415,-4.5749826,-4.5825,-4.6343946,-4.4259634,-4.457575,-4.483573,-4.404999,-4.5265217,-4.5644712,-4.6254616,-4.5139894,-4.402577,-4.581052,-4.398859,-4.4292164,-4.4527063,-4.5284257,-4.510421,-4.551291,-4.5751066,-4.626689,-4.602355,-4.5709014,-4.6074715,-4.545129,-4.697297,-4.6604733,-4.6407022,-4.593959,-4.5290227,-4.529227,-4.4811273,-4.483035,-4.4970417,-4.5028515,-4.4787254,-4.48874,-4.5339828,-4.458864,-4.4417377,-4.36131,-4.374446,-4.377253,-4.391802,-4.350251,-4.3598347,-4.448545,-4.4378905,-4.476315,-4.5316167,-4.548214,-4.640583,-4.5983267,-4.6347904,-4.676917,-4.761894,-4.6682367,-4.491646,-4.561658,-4.556943,-4.571516,-4.633875,-4.625352,-4.6111455,-4.57754,-4.578018,-4.547226,-4.5452843,-4.6016517,-4.578682,-4.6242437,-4.6572065,-4.6349792,-4.6441674,-4.7049694,-4.656955,-4.6072493,-4.610187,-4.691983,-4.73704,-4.7313433,-4.8249564,-4.840555,-4.775242,-4.6794276,-4.7173357,-4.6916904,-4.7503214,-4.710451,-4.697835,-4.6808634,-4.8729563,-4.8575306,-4.8560047,-4.849151,-4.6729445,-4.5395136,-4.376533,-4.655229,-4.78825,-4.8064833,-4.8280125,-4.827333,-4.8235683,-4.599945,-4.4844275,-4.611901,-4.7125783,-4.7319283,-4.735115,-4.6847324,-4.79658,-4.848796,-4.815232,-4.834482,-4.8275747,-4.7448573,-4.6399612,-4.7590184,-4.7395115,-4.7321997,-4.658538,-4.6266623,-4.3029137,-4.580843,-4.7386494,-4.7760205,-4.820979,-4.761449,-4.6202965,-1.2079738,-2.8194027,-3.732636,-4.2402735,-4.3627105,-4.305749,-3.639565,-4.166339,-4.5701447,-4.527645,-4.7564297,-4.804715,-4.775754,-4.7503943,-4.70459,-4.7577877,-4.760543,-4.76491,-4.766982,-4.7013006,-4.726522,-4.7503505,-4.7481356,-4.716818,-4.5248814,-4.58862,-4.7200627,-4.506793,-1.5809193,-3.364983,-3.9361956,-4.3272715,-4.617901,-4.5154896,-2.2658255,-3.4736233,-4.013006,-4.3910885,-4.4041467,-4.5331736,-4.6838856,-4.730377,-4.7059717,-4.683132,-4.517548,-4.423897,-4.3972445,-4.463147,-4.5235395,-4.4711065,-4.4906216,-4.5327606,-4.4657154,-1.0266082,-3.08695,-3.8131552,-4.2317657,-4.4954453,-2.2328002,-0.9405456,-2.4254284,-1.4972463,-2.9639912,-3.2061424,-3.479123,-3.8788414,-3.9871097,-3.1345093,-2.0701194,-1.7796658,-3.0329943,-3.3027067,-3.4693112,-2.8836346,-3.557372,-1.6376401,-2.6915417,-1.5357865,-2.9710143,-2.374473,-1.7580352,-2.1790648,-2.3007116,-3.298318,-3.7072482,-4.091526,-4.2301564,-1.9015337,-1.374077,-2.3343608,-1.7794029,-1.7212772,-2.6564484,-3.3225532,-3.6249857,-3.7655668,-4.003078,-4.149455,-4.1688232,-4.2088394,-4.2798862,-4.3131013,-3.1490793,-3.825488,-4.1178036,-2.6764207,-3.3911061,-3.8990376,-4.2832384,-4.275666,-1.1485435,-2.87759,-3.4687548,-3.9419193,-4.3026342,-4.481285,-1.341666,-1.0100875,-2.4634223,-2.7327702,-2.8982882,-3.4100833,-3.7286701,-3.9930134,-4.096896,-1.681131,-2.8925366,-3.44631,-4.054188,-4.337037,-4.5775785,-4.719946,-4.4228554,-4.411913,-4.568373,-4.767049,-4.8267055,-4.9194794,-4.8895326,-4.8466964,-4.9050827,-4.945486,-4.920476,-4.8772383,-4.8878756,-4.9159675,-4.909041,-4.850751,-4.6155376,-2.2990367,-3.790334,-4.3355026,-4.407831,-4.608762,-4.612077,-4.7381387,-4.8261714,-4.769885,-4.6958346
+-1.5466866,-2.0558743,-2.289126,-2.0780427,-2.108068,-2.3156083,-2.3966231,-2.385212,-2.4233904,-2.4512234,-2.5111144,-2.4846246,-2.5575137,-2.584678,-2.5672348,-2.5635517,-2.4715104,-2.3933115,-2.394265,-2.340482,-2.2250335,-2.127864,-1.7690631,-1.7285315,-2.3272414,-2.3853412,-2.4057925,-2.331379,-1.937261,-2.3490734,-2.3936644,-2.389862,-2.3699853,-2.3102367,-1.3764647,-2.2547278,-2.3918629,-2.4194937,-1.7683907,-2.2689872,-2.2929692,-1.6785886,-2.2927823,-2.3919756,-2.3705816,-2.427597,-2.4326975,-2.3584912,-1.8167204,-2.2637687,-1.4600221,-1.582834,-2.0063531,-2.2763124,-2.3869925,-2.409072,-1.9412733,-2.2578824,-1.9525679,-2.4266233,-2.444353,-2.3130941,-1.8715023,-2.310141,-2.313147,-2.2348619,-2.2090788,-2.2534075,-1.95866,-2.0465105,-1.3046211,-2.1099303,-2.3453162,-2.315126,-1.9906186,-2.369934,-2.4962409,-2.4956737,-1.7651323,-1.928224,-2.4034362,-2.0296137,-2.378897,-2.2617579,-1.6168457,-2.123458,-2.348918,-2.328251,-2.3311694,-2.346768,-2.3199143,-2.311925,-2.2977986,-2.204897,-2.1016808,-1.7479781,-1.6232828,-2.2266977,-2.071535,-1.4205937,-2.1655095,-2.1986096,-2.1556244,-2.0314922,-2.280757,-1.1555887,-1.8871912,-2.01151,-2.225284,-2.1316824,-2.3338037,-2.3949776,-1.7014899,-1.7765211,-2.2526364,-2.2295465,-1.7516223,-1.6130987,-1.801443,-2.2473671,-2.2300434,-2.3119626,-2.3732784,-2.431189,-1.4174796,-2.1045547,-2.2808607,-2.1048717,-1.4897736,-2.1760259,-2.0443273,-1.7129028,-2.0246692,-2.2826157,-2.3218458,-2.0659742,-1.9920522,-2.3746662,-2.3149397,-2.3870769,-2.3665667,-2.483802,-2.4456365,-2.2810912,-2.040056,-2.3194551,-2.1876912,-2.2595258,-2.2017257,-2.1419592,-2.2623913,-2.3432593,-2.1784286,-2.1866183,-1.6346774,-1.9416,-2.3831325,-2.4330072,-1.7373556,-1.8421499,-1.8843328,-2.3372025,-2.2621427,-1.4968938,-2.2255862,-2.4660308,-2.5551853,-2.5563707,-2.5083277,-1.512553,-1.6123966,-2.1264443,-2.368473,-2.4510412,-1.7019472,-2.292182,-2.2346303,-2.2811444,-2.4075234,-2.4771585,-2.427329,-2.4530272,-2.4114451,-0.79803956,-1.9725808,-2.2375784,-2.3386962,-2.257697,-2.061623,-1.2820514,-1.4823829,-1.6023871,-1.8188918,-1.9181312,-2.1089706,-1.937561,-1.3579699,-2.018799,-2.0602722,-1.8022877,-2.108733,-2.1524405,-1.380796,-1.8688962,-2.0345767,-2.01939,-2.1615448,-1.9003003,-2.0070019,-1.8428648,-1.920092,-1.9328567,-2.0758858,-1.2093977,-1.8055768,-1.8402632,-2.0254557,-1.9364942,-1.9884902,-1.7818812,-1.8370601,-2.0680103,-2.1406279,-2.0687187,-2.107486,-1.9466997,-1.8865606,-1.4954412,-1.2608179,-1.6466517,-1.8614496,-2.0092404,-2.0920167,-2.1475513,-2.094316,-1.9610595,-1.8320544,-1.789033,-1.5502163,-1.6746768,-1.874835,-1.8623405,-1.9387112,-1.831686,-1.8821801,-1.8758672,-1.6958389,-1.4531871,-1.6384863,-1.7354453,-1.7730602,-1.6859734,-1.7259647,-1.5808023,-1.4546548,-1.7074598,-1.8054394,-1.8609703,-1.846211,-1.850345,-1.8398428,-1.8676025,-1.4230243,-1.4009703,-1.569628,-1.7134287,-1.4688069,-1.4312954,-1.6472393,-1.7823375,-1.4168473,-1.6215152,-1.4717294,-1.5650648,-1.7652065,-1.6044015,-1.755284,-1.8193178,-1.9255568,-1.9238204,-1.7835598,-1.9004701,-1.84038,-1.2959067,-1.5991429,-1.8228723,-1.8617333,-1.854468,-1.857669,-1.8347098,-1.8079668,-1.6432813,-1.2632312,-1.5181319,-1.6658267,-1.7809969,-1.7395481,-1.8166772,-1.872604,-1.8719422,-1.8804966,-1.8283492,-1.7573779,-1.7361888,-1.7653836,-2.0498538,-2.0045733,-1.9981288,-1.8822354,-1.3542205,-1.2092999,-1.1032966,-1.463616,-1.7335786,-1.2042278,-1.3861128,-1.6695515,-1.6941643,-1.6683413,-1.6687275,-1.6597028,-1.2170806,-1.5280689,-1.6538757,-1.2672895,-1.4743092,-1.3552953,-1.6062051,-1.7828575,-1.8207369,-1.8236161,-1.5346411,-1.6590761,-1.6702203,-1.5861548,-1.6529853,-1.3831654,-1.4622229,-1.4482676,-1.4807724,-1.6833727,-1.456302,-1.5102617,-1.2679396,-1.4812526,-1.5816503,-1.501418,-1.3689845,-1.5825623,-1.6534146,-1.6891588,-1.3190142,-1.6033858,-1.6420954,-1.6529979,-1.3173373,-1.6259948,-1.6217486,-1.6059495,-1.6511291,-1.7058145,-1.7217952,-1.3758307,-1.8282765,-1.7247335
+-1.0012914,-1.1487712,-1.2787406,-0.8112371,-0.7672935,-1.3358874,-1.503198,-1.4694971,-1.4958078,-1.5721935,-1.5054619,-1.0677295,-1.0380634,-1.1281048,-1.3789921,-1.6086683,-1.6867551,-1.6682217,-1.6490818,-1.6133641,-1.5745465,-1.5358027,-0.983053,-1.0602111,-1.7277697,-1.7128737,-1.7077457,-1.7201337,-1.7601751,-1.6900898,-1.8126129,-1.7344139,-1.7002896,-1.6490722,-1.6662325,-1.5951089,-1.7120184,-1.5939317,-1.0397394,-1.7039684,-1.7132545,-1.6591944,-1.7311758,-1.7646129,-1.6398958,-1.7042284,-1.7368783,-1.6693465,-1.1722616,-1.7382523,-1.1476192,-0.47892895,-0.71705276,-0.98618704,-1.6821493,-1.6683648,-1.5934205,-1.5619923,-1.50935,-1.595185,-1.5931665,-1.4828372,-1.3216372,-1.4554632,-1.4925836,-1.504851,-1.4899751,-1.5089687,-1.3831972,-0.52429825,-1.3980503,-1.546342,-1.6699315,-1.619839,-1.4641558,-1.698872,-1.4750968,-1.5601839,-1.5431205,-1.6362191,-1.727397,-0.9265905,-1.5045271,-1.4511966,-0.47400478,-1.4932632,-1.5953386,-1.5894754,-1.5225121,-1.5343454,-1.5018033,-1.5614239,-1.5044326,-1.4986308,-1.5105375,-1.527489,-0.970427,-1.3844572,-0.8182219,-1.3086852,-1.6015958,-1.3953843,-1.4763262,-1.4571007,-1.5774202,-1.5263431,-1.4064339,-1.5369545,-1.5507185,-1.5281597,-1.41826,-1.5394073,-1.155802,-1.0019476,-1.3346093,-1.4274719,-1.3760403,-1.4636279,-1.4559084,-1.4561447,-1.419441,-1.4705869,-1.5597491,-1.5177479,-1.2535485,-1.4703323,-1.5066729,-1.246024,-0.6867781,-1.3001947,-1.2346492,-1.1386292,-1.3437269,-1.3840147,-1.4083077,-1.4122335,-1.441479,-1.4587675,-1.4559977,-1.4847897,-1.5405103,-1.5813856,-1.5026934,-1.4917518,-1.4948022,-1.5337799,-1.5253097,-1.5107645,-1.3096741,-1.3964025,-1.4763905,-1.4583714,-1.4607679,-1.4816352,-1.0552539,-0.84820265,-1.5610722,-0.33523336,-1.4521283,-1.3461492,-1.4747893,-1.478738,-1.6546599,-1.3930119,-1.5368189,-1.7720977,-1.7783806,-1.6961899,-1.6446377,-0.8674894,-0.8805149,-1.055448,-1.6779133,-1.771371,-1.5073111,-1.6423432,-1.560334,-1.5703572,-1.6697329,-1.5946823,-1.6522602,-1.6400365,-1.445965,-0.6838397,-1.6386157,-1.6285559,-1.6046537,-1.1288533,-1.2349443,-0.6240172,-1.3658109,-0.9190016,-0.77398443,-1.0481229,-1.0543591,-1.2516838,-0.8374122,-1.1363739,-0.973448,-1.0245702,-0.85237455,-1.1302359,-0.8937787,-1.0444837,-1.0451092,-1.3403227,-1.4363176,-1.3260554,-1.1696712,-1.298364,-1.0767516,-1.3029536,-1.4118453,-0.84237546,-1.0074519,-1.2183715,-1.292189,-1.3305658,-1.359115,-1.2047354,-1.3929178,-1.4452688,-1.4931055,-1.4998732,-1.5499469,-1.5863367,-1.5186679,-0.60857344,-0.70183307,-0.73653543,-0.8554834,-0.8945022,-0.7801127,-1.0206949,-0.7627422,-0.6845529,-0.7673227,-0.84248084,-0.9298367,-1.1133696,-1.0483357,-0.9116418,-1.1007901,-1.087993,-1.0415746,-1.1525419,-1.1882108,-1.0746256,-1.0354196,-0.9430315,-1.0189838,-0.9784635,-1.0041848,-0.76289815,-0.8144855,-0.87722975,-0.91538554,-0.99394745,-1.0128367,-0.9820352,-1.2050112,-1.0895036,-0.852605,-0.8326513,-0.79436755,-0.82295114,-0.823785,-0.69192344,-0.7293182,-0.7382681,-0.79766905,-0.7828174,-0.74504226,-0.80768746,-0.82114255,-0.82844824,-0.8981429,-0.9911534,-1.0464457,-1.1332129,-1.0404524,-1.0190815,-0.93839526,-0.70540196,-0.8236205,-0.84276193,-1.0012885,-1.0246717,-0.9590378,-0.9241291,-0.930826,-0.7611429,-0.6903437,-0.76391715,-0.6601421,-0.63561726,-0.5388628,-0.7258571,-0.8441952,-0.8681677,-0.8448348,-0.9600284,-0.9214872,-0.869358,-0.96615297,-1.068852,-1.1912218,-1.1345105,-1.1368711,-0.7692302,-0.5453225,-0.7629731,-0.8502441,-0.8651484,-0.6870834,-0.9737205,-0.95364803,-0.9324103,-0.89626974,-0.8291402,-0.84025496,-0.73194116,-1.2775267,-0.9502563,-0.9811242,-1.0766393,-1.0722836,-0.9048243,-1.1250594,-1.1067193,-1.0264765,-1.0191605,-1.0072664,-0.9628729,-0.97037643,-0.94421643,-0.95603997,-0.968852,-1.0774068,-1.1550976,-1.0451667,-1.034794,-1.0007051,-0.91130275,-0.95177305,-0.968955,-1.0482899,-0.84398645,-0.99140674,-0.5281486,-0.81415,-0.89141685,-1.1461724,-0.86481035,-0.9672478,-0.93530244,-1.0359218,-1.1006008,-0.9983011,-0.92849356,-1.0425469,-1.1476046,-0.95571345,-1.0591601,-0.9181599
+-1.0646423,-1.3308326,-1.4691536,-1.3640314,-1.3947784,-1.6818897,-1.6576542,-1.6141124,-1.6101344,-1.6664118,-1.6695238,-0.96163803,-0.9770748,-1.2058816,-1.3721147,-1.7634064,-1.7535383,-1.73969,-1.712614,-1.6835377,-1.7122644,-1.6858252,-0.3582416,-1.4469843,-1.7344155,-1.7667798,-1.7788187,-1.828456,-1.7403015,-1.7905996,-1.8135039,-1.767684,-1.7119048,-1.6720017,-1.6177377,-0.9277835,-1.6488882,-1.6143461,-1.5357748,-1.5121812,-1.7576805,-1.7379694,-1.7410764,-1.699519,-0.76930386,-1.4167498,-1.8159744,-1.7367126,-0.6153627,-1.7705885,-1.246883,-1.1251477,-1.6451906,-1.5760207,-1.406924,-1.6695657,-1.6851641,-1.7086512,-1.6908479,-1.6940063,-1.7194406,-1.6744643,-1.5369437,-1.6033403,-1.7047586,-1.7124485,-1.6516814,-1.5859386,-1.6304011,-1.5866318,-1.6650103,-1.5739323,-1.7757151,-1.7484593,-0.35574943,-1.7116499,-0.9608337,-1.571047,-1.6414794,-1.5902147,-1.7953902,-1.627251,-1.6992888,-1.6827406,-0.862982,-1.5785712,-1.6207718,-1.6289992,-1.5036267,-1.6111584,-1.5844889,-1.661029,-1.6644444,-1.6408468,-1.7235593,-1.7190865,-1.004356,-1.4843519,-1.3705686,-0.68935317,-0.68736506,-0.90602785,-1.5320816,-1.6660293,-1.6465088,-1.6372677,-1.6611907,-1.6783376,-1.6569618,-1.6384757,-1.5720183,-1.6932179,-1.6115534,-1.6924704,-1.7366827,-1.7121553,-1.6967357,-1.6674706,-1.6808736,-1.7105674,-1.6982188,-1.7332394,-1.7811354,-1.7830719,-1.7682511,-1.79026,-1.7828301,-1.6854733,-1.4156948,-1.6917865,-1.5180917,-1.6960435,-1.7466849,-1.7516183,-1.7749838,-1.7910875,-1.7872001,-1.8195175,-1.8192923,-1.7967176,-1.7988582,-1.857092,-1.8274571,-1.7618335,-1.767505,-1.7861124,-1.8086755,-1.8305072,-1.7728146,-1.714597,-1.8035113,-1.8092861,-1.704244,-1.6605319,-1.449312,-1.5505744,-1.6343905,-1.5793599,-0.910716,-1.3699043,-1.3746097,-1.5249759,-1.6764556,-1.602103,-1.7324886,-1.7979741,-1.8008968,-1.8050247,-1.8280189,-1.2722149,-0.7286897,-1.4491724,-1.5953066,-1.5692527,-1.3718765,-1.5441201,-1.5939012,-1.6949636,-1.7802961,-1.8018497,-1.84146,-1.8574163,-1.7658077,-1.6783885,-1.6946982,-1.5722631,-1.5908691,-0.5804741,-1.4008495,-1.2367554,-1.3404549,-1.2670127,-1.3119899,-1.7616755,-1.7864376,-1.9839371,-0.76522124,-1.72531,-0.9594406,-1.0907601,-1.3207258,-1.6040077,-1.6506969,-1.4159538,-1.336705,-1.7012814,-1.8414786,-1.8172008,-1.3727533,-1.6981859,-1.583193,-1.8074914,-1.3011395,-0.8509101,-1.4978939,-1.524707,-1.6543347,-1.7594905,-1.8716553,-1.9064028,-1.9385097,-2.0276752,-2.019723,-2.0092983,-2.0247626,-1.9139656,-1.9794706,-1.1729717,-1.3492354,-1.3471869,-1.2467062,-1.3454671,-1.5843947,-1.7538447,-1.0881151,-1.1927918,-0.66252,-1.0367459,-1.2222147,-1.4039488,-1.2791013,-0.41490158,-0.90165496,-0.6436522,-0.60672426,-0.6227593,-0.7484341,-0.85621995,-0.9764412,-1.0684344,-1.1450101,-1.2100292,-1.0743841,-0.99663275,-0.9515522,-0.92281276,-0.88837165,-0.93987924,-0.9717465,-0.9164818,-1.0568606,-1.0085089,-0.8670192,-0.76011664,-0.8382944,-0.8568631,-0.74653685,-0.7770649,-0.80203086,-0.88631207,-0.74474686,-0.85386795,-0.81657386,-0.89711934,-0.9666421,-0.846017,-0.8649234,-0.9609547,-1.0504993,-1.0210208,-0.95395464,-0.93147135,-0.7576259,-0.84926814,-0.91260844,-0.8498623,-0.94296926,-0.9556228,-0.92194736,-0.9254764,-0.94083446,-0.8578044,-0.9363708,-1.0949012,-1.1068288,-0.97813517,-0.96795434,-1.0219704,-1.1443887,-1.0169548,-1.0925552,-1.1233883,-1.0916592,-1.0104614,-1.0498837,-0.9789749,-1.0066892,-1.1154563,-1.0342473,-0.63801056,-1.2092543,-1.1699522,-1.1418812,-0.9180158,-1.0982921,-1.353818,-1.2085149,-1.0937234,-0.9745683,-0.9016243,-0.9473725,-1.0640849,-1.1998216,-1.2781073,-1.1563399,-1.362201,-1.3259565,-1.3811995,-1.2202207,-1.2068928,-1.0943476,-1.1168109,-1.0463269,-1.0434262,-0.8900118,-0.8172359,-0.8109592,-0.9792294,-1.1092665,-1.0186707,-0.9545986,-0.82829523,-1.2941138,-1.2799157,-1.2644535,-1.3001395,-1.3742886,-1.2299957,-1.2111411,-1.0718635,-1.0088063,-1.0214691,-1.0667408,-0.9798432,-1.1815509,-1.0239209,-0.99681085,-1.0639032,-0.98699695,-1.0287722,-0.92145663,-1.1100428,-0.9209331,-1.1086582,-1.0518024
+-1.7176756,-2.375791,-2.5511904,-2.5414593,-3.0175037,-2.94016,-2.8139997,-2.712212,-2.7351751,-2.8175516,-2.8328993,-2.1830919,-1.5467833,-1.815107,-2.4489276,-2.7275004,-2.7820625,-2.7614489,-2.787158,-2.7298033,-2.7155762,-2.6584253,-2.1775956,-2.6951294,-2.8179102,-2.9853067,-2.6472979,-2.731358,-2.4254875,-2.7304242,-2.8341541,-2.8963614,-2.883677,-2.8291504,-2.7959142,-2.55428,-2.7038739,-2.416272,-2.9613416,-2.9621835,-2.9870472,-2.870223,-2.8488126,-2.6974587,-1.6780461,-2.6291485,-2.6126666,-2.7836561,-1.7309285,-2.4149127,-2.1697183,-1.5169202,-2.1668415,-2.5810382,-2.7389758,-2.7421663,-2.7925997,-2.820727,-2.7886145,-2.8569658,-2.8619082,-2.8060446,-2.659545,-2.7443237,-2.776434,-2.7414432,-2.772519,-2.756096,-2.8167226,-2.8033328,-2.888706,-2.9816082,-3.1224544,-3.059742,-1.4624864,-2.4044929,-1.8962566,-2.6027336,-2.5153875,-2.6399117,-2.403073,-2.7999249,-2.8947637,-2.8104372,-2.7793314,-3.0074,-2.9458337,-2.824139,-2.8230367,-2.8318448,-2.8235056,-2.8243315,-2.9029508,-2.8646312,-2.9588616,-3.0299926,-2.982329,-2.9761653,-2.8804703,-1.9154998,-0.7659554,-2.221624,-2.5576525,-2.5237112,-2.6815937,-2.6713648,-2.7697806,-2.7602992,-2.707533,-2.7245827,-2.754507,-2.7574143,-2.7987082,-2.8579688,-2.8716297,-2.877068,-2.8612018,-2.8624802,-2.8552003,-2.8848076,-2.9079876,-2.9995718,-3.058486,-3.0227556,-3.0377402,-3.0559745,-3.0065694,-2.9001245,-3.013939,-3.1102538,-3.0549846,-3.031649,-3.0390275,-1.4548974,-2.5203378,-2.5960186,-2.7124226,-2.9172754,-2.9741418,-3.0113773,-3.069696,-3.131649,-3.1386387,-3.1864338,-3.1433494,-3.0621605,-3.0994625,-3.0994508,-3.1812413,-3.077713,-3.0788014,-2.9946527,-2.9912128,-3.0626884,-2.883829,-2.9567404,-2.7652206,-2.2833233,-2.7696676,-2.683977,-2.9363875,-2.987577,-3.0499434,-2.9702592,-2.9321733,-2.9186833,-2.7062287,-2.919233,-3.0870438,-2.820269,-0.7820956,-2.1689553,-2.412075,-2.495654,-0.69514054,-2.0915978,-2.4443455,-2.6353135,-2.597147,-2.567514,-2.6177897,-2.665348,-2.5436287,-2.4495602,-2.7840075,-2.4873147,-2.6280227,-2.6119056,-1.995572,-2.3012109,-2.5198903,-2.5787067,-2.389061,-2.4363968,-2.942844,-2.276144,-0.64989936,-1.7879795,-1.1255735,-1.3667825,-1.7274051,-1.8791147,-2.0982783,-2.1959558,-2.2324626,-2.485001,-2.3569725,-2.0611925,-2.275013,-2.440723,-1.9463927,-2.3555713,-1.8311063,-1.480931,-1.9482607,-2.1356013,-2.3316398,-2.436959,-2.495587,-2.5410085,-2.5640244,-2.657857,-2.713196,-2.7593317,-2.7981544,-2.7567391,-2.6114821,-2.4286404,-1.3134722,-1.8332187,-2.1378741,-2.1732361,-2.0344574,-2.0315514,-1.9769217,-2.2072785,-1.9557859,-2.0186114,-2.0401397,-2.0165658,-2.1135097,-1.7783328,-1.8943752,-1.8947452,-1.893718,-2.103463,-1.7956673,-1.6542916,-2.0257041,-1.9676598,-2.201559,-2.165985,-1.4350736,-1.4869313,-1.5942987,-1.7102239,-1.7491816,-1.8852315,-1.1798078,-1.6272621,-2.0645828,-2.042511,-1.8873883,-1.5651542,-1.7638148,-1.8742914,-1.6793555,-1.6322911,-1.8289012,-2.1054835,-1.6181554,-1.7663778,-1.8012576,-1.7408137,-2.013761,-2.039906,-1.9317724,-2.0570173,-2.0723286,-2.2512436,-2.2009478,-2.1728377,-1.4765414,-1.5299548,-1.6413519,-1.5486898,-1.7082607,-1.8639095,-1.9879285,-2.0243263,-2.044523,-2.101952,-1.5824608,-1.4618709,-1.3974181,-1.6413363,-1.5755895,-1.8299906,-1.9121257,-2.0272582,-1.9225717,-2.0815089,-1.9627088,-1.8200427,-2.0258968,-1.9321129,-2.0620654,-1.9620885,-1.6616248,-1.4831895,-1.634103,-1.5397533,-1.7238243,-1.698094,-1.0783654,-1.6433295,-1.4972748,-1.8048245,-1.7749016,-1.7971342,-1.8294346,-1.4883901,-1.766826,-1.6267349,-1.6870229,-1.6285585,-1.6014204,-1.6628163,-1.8901662,-2.1133518,-2.250898,-2.09547,-2.2213092,-2.1286252,-1.8659098,-1.901803,-1.8590175,-1.7374693,-1.8779637,-1.9896046,-1.9881743,-1.779064,-1.761285,-1.4993286,-1.3795475,-1.7605387,-1.5870302,-1.6473327,-1.7740747,-1.7856717,-1.5705109,-1.6850828,-1.702324,-1.6983858,-1.6516553,-1.8242561,-1.8610092,-1.8798168,-1.771232,-1.7703524,-1.7772455,-1.9164497,-1.6633828,-1.6842011,-1.9346677
+-1.7163428,-1.7627496,-2.158728,-2.4262946,-2.502317,-2.774895,-3.0480306,-3.1836574,-3.4259965,-3.594575,-3.6967869,-2.4878345,-1.2486099,-1.9129721,-2.198586,-2.671833,-2.9129615,-3.2307887,-3.612117,-3.849937,-3.897575,-3.8823805,-0.63365334,-2.0228024,-2.333228,-2.544046,-2.4575276,-2.4082928,-2.6827574,-2.7090583,-2.6194162,-2.623674,-2.8997245,-3.1922374,-3.3260531,-3.3782394,-0.9902927,-1.7887117,-2.5262609,-2.6726646,-2.8281178,-3.0466378,-3.5154164,-3.5693707,-2.3522353,-2.4968648,-3.0090694,-3.3965354,-1.0075321,-1.8930824,-2.217382,-2.2215075,-2.4595656,-2.6296496,-2.807374,-2.9666681,-3.3209276,-3.5881398,-3.8201828,-4.0381584,-4.1889877,-4.374883,-4.323153,-4.1923733,-4.1552467,-4.2545004,-3.550796,-3.9019294,-4.077219,-4.0902123,-4.1481485,-4.225419,-4.344548,-4.3691025,-3.6425962,-3.6322622,-1.177684,-2.6926236,-3.3255188,-3.8790164,-4.1368394,-4.2119093,-4.3694816,-4.337775,-4.2842607,-4.318664,-4.3980885,-4.241082,-4.232446,-4.1103067,-4.0599527,-4.011735,-4.2345014,-4.159746,-4.202176,-4.3165007,-4.2793465,-4.2026,-4.2011433,-3.9808507,-1.46986,-2.1407852,-3.1984682,-3.6888576,-4.2072983,-4.278219,-4.3370667,-4.3642845,-4.3787537,-4.3908205,-4.308008,-4.308166,-4.3246684,-4.322917,-4.3586445,-4.362076,-4.30014,-4.204194,-4.1534753,-4.18941,-4.1251445,-4.21136,-4.333881,-4.327792,-4.331436,-4.408208,-4.4522,-3.9428105,-4.080124,-4.216797,-4.2303915,-4.1894827,-4.2937136,-4.3469887,-4.3469696,-4.313942,-4.188758,-4.2894897,-4.1916585,-4.1878967,-4.2726164,-4.30733,-4.3849716,-4.4443746,-4.5276566,-4.5505247,-4.5172634,-4.4633203,-4.4380765,-4.3932495,-4.3153915,-4.279313,-4.185213,-4.2448096,-4.226271,-4.1561074,-1.7809794,-2.196841,-3.443631,-3.5296917,-3.9963927,-4.319113,-4.474747,-4.484917,-4.3755126,-4.257681,-0.60773444,-2.2368474,-2.9589171,-3.421073,-3.137179,-3.3087485,-3.484037,-2.8322194,-0.83671886,-1.8618999,-2.7591324,-3.0749454,-3.27958,-3.3717513,-3.5361252,-3.6540623,-3.3407319,-3.4361384,-3.7088075,-3.5897672,-3.6038728,-3.3566937,-2.940999,-3.3889108,-3.5776844,-3.8141432,-3.6405334,-3.4752877,-3.9797797,-3.9645104,-2.6979759,-2.4367044,-1.9094709,-2.038928,-1.472078,-2.5688505,-2.7963603,-3.0111878,-3.1295388,-3.2762372,-2.1090097,-1.8432233,-2.8022346,-3.0676675,-2.7199612,-1.7528981,-2.2293532,-2.325336,-3.0441725,-3.155394,-3.3139694,-3.3915346,-3.4358478,-3.5194633,-3.4569278,-3.466377,-3.4369984,-3.432784,-3.4274187,-3.436386,-3.4547005,-3.4642148,-3.4208238,-3.2333934,-3.4083688,-3.374782,-3.0114975,-3.0841255,-3.2386713,-3.4218643,-2.3918407,-2.8889108,-2.5437865,-2.7698526,-3.0961785,-2.2340212,-2.7728462,-2.8426328,-2.959373,-2.803567,-2.7451437,-2.3836608,-2.1197891,-2.4299464,-2.9010134,-2.2924712,-1.6672115,-1.4345578,-2.2811503,-2.313945,-2.400909,-1.8980781,-1.9616698,-1.9493062,-2.919525,-2.8666694,-2.6367052,-1.7457824,-2.3744507,-2.8320808,-1.8877887,-1.352039,-2.3643732,-2.60283,-2.1508176,-2.0250657,-2.7422593,-2.6079633,-2.7722237,-2.7532187,-2.1570275,-2.3815205,-1.5415877,-2.4243617,-2.716344,-2.1911082,-1.3087515,-2.1050227,-2.130355,-2.1573625,-2.426432,-2.9159307,-2.99238,-2.9962063,-3.0317023,-2.9652972,-2.4185405,-1.4342496,-1.9242237,-1.7558261,-1.8718102,-1.8392233,-1.717481,-2.195521,-1.8949474,-2.3893533,-2.4636347,-2.5413,-2.3840976,-2.0996916,-1.6914394,-2.0014966,-1.8336283,-2.0879405,-1.999534,-2.3766527,-2.1895926,-2.3092837,-1.9987797,-2.0046253,-1.9366624,-2.8787518,-2.8845024,-2.9562008,-2.7480512,-1.9273237,-2.1275485,-1.8880883,-2.235751,-2.1438842,-2.3416731,-2.310434,-2.4441423,-2.7981381,-3.1590939,-2.9257903,-2.5602126,-2.3894591,-2.3296509,-2.4490032,-2.2911558,-1.9509772,-2.2774127,-2.4746904,-2.2784023,-2.345291,-2.5322607,-2.600541,-2.3774128,-2.3926163,-2.4330273,-2.339494,-2.293971,-2.2495651,-2.3860598,-2.216102,-2.11619,-2.233568,-2.1544843,-2.258271,-2.593832,-2.2041214,-2.1661355,-2.3683026,-2.37683,-2.5367477,-2.3629553,-1.1759654,-2.2957842
+-1.1291888,-1.6118363,-1.7557136,-2.3596754,-2.6490684,-2.6597128,-2.734767,-2.8483934,-2.7769756,-2.691913,-2.9111986,-3.0228887,-3.0080445,-3.239294,-3.282833,-3.2650042,-3.3591585,-3.3702233,-3.392661,-3.4670463,-3.5886664,-3.4095926,-2.3655314,-2.9552517,-2.9689527,-3.0694582,-2.8204887,-3.177849,-3.3181446,-3.3640838,-3.0534053,-3.0464635,-3.0126824,-3.0482657,-3.109013,-3.0360985,-2.866616,-2.90281,-3.1825087,-3.1561408,-3.321427,-3.4731095,-3.4534116,-3.473312,-3.0607347,-2.9459,-3.330438,-3.15027,-2.9756727,-3.2982922,-3.4362867,-3.413124,-3.3163276,-3.419758,-3.0529675,-3.1965146,-3.1643198,-3.3249857,-3.310712,-3.270505,-3.4909673,-3.551487,-3.5627024,-3.4990585,-3.5822108,-3.6284842,-3.315998,-3.4062753,-3.590263,-3.7695827,-3.8169186,-3.4494038,-3.2208147,-3.5015447,-3.6767144,-3.3093047,-3.2179103,-3.4810786,-3.6878345,-3.6375465,-3.7988026,-3.8574862,-3.863287,-4.0706086,-3.9642897,-3.8996663,-3.9261034,-3.9537537,-4.0107617,-3.9278479,-3.795489,-3.693728,-3.627829,-3.7432451,-3.7149882,-3.8916225,-3.7851956,-3.8298247,-3.892945,-3.832561,-1.7908441,-2.4545164,-3.2376604,-3.453587,-3.8383508,-4.010157,-3.9543753,-4.0409174,-4.1418133,-4.122953,-4.151804,-4.174756,-4.191667,-4.1665077,-4.2130384,-4.3079576,-4.339229,-4.3379583,-4.244427,-4.214954,-3.636818,-3.7791195,-4.0984564,-4.249682,-4.235451,-4.4040976,-3.5390325,-3.802835,-4.05367,-4.2563825,-4.1835194,-4.0812073,-4.069659,-4.2315207,-4.336732,-4.412691,-4.3377743,-4.381937,-4.2774267,-4.2444344,-4.346641,-4.382855,-4.5324354,-4.530528,-4.5442104,-4.596613,-4.560093,-4.515349,-4.5309744,-4.4804406,-4.5724335,-4.51443,-4.425558,-4.165865,-4.1811466,-3.9466488,-1.1212333,-2.6024218,-3.1078248,-3.1797562,-3.5303621,-4.01297,-4.227325,-4.2840633,-3.988428,-1.5560883,-1.6782497,-2.824183,-3.135088,-3.2099648,-3.1422584,-3.1920042,-3.2872431,-2.445775,-1.9778434,-2.240566,-2.7829823,-3.1404672,-3.1068401,-3.15333,-3.1840835,-3.1017523,-2.937622,-3.0362208,-3.3254728,-2.8189077,-3.4266334,-2.8435571,-3.149833,-3.4273138,-3.4700522,-3.4572475,-3.473487,-3.3693833,-3.674315,-3.416031,-2.4545462,-2.7272582,-2.209155,-2.5499673,-2.6270857,-2.8566937,-3.0848598,-3.102864,-3.144187,-3.271021,-3.2131317,-3.0609672,-3.2707853,-3.305218,-1.995699,-2.875835,-2.5985284,-2.7272186,-2.7767308,-2.8107817,-3.138627,-3.2546685,-3.1989357,-3.272204,-3.3100176,-3.3107505,-3.4283395,-3.472763,-3.4640365,-3.5001082,-3.5722582,-3.5462718,-3.5449495,-3.3713884,-3.844356,-4.17364,-3.8467665,-3.5673375,-3.3907874,-3.7806234,-3.3432639,-3.7122548,-3.767184,-3.759101,-3.3964992,-2.5114968,-2.9495409,-3.1064076,-3.0349321,-3.32959,-3.1846704,-2.9280958,-2.9603033,-3.0904098,-3.464964,-3.012864,-2.3231797,-2.2677534,-2.2575529,-2.055803,-2.2659228,-2.2055185,-2.050964,-2.0351827,-2.211182,-2.271016,-2.2736573,-1.7700657,-2.171128,-2.320994,-2.2891889,-2.2100177,-2.0064921,-2.1413467,-1.9091412,-2.0044491,-2.338812,-2.4601548,-2.6655414,-2.7901783,-2.414324,-2.3001509,-2.2408073,-2.2453153,-2.1654348,-2.1217983,-2.1958942,-2.3965101,-1.9576397,-2.1640165,-2.1871128,-2.0494726,-2.2379413,-2.4347162,-2.5719757,-2.6503978,-2.3965015,-2.2539668,-2.2196085,-2.1702638,-2.0220144,-2.2403376,-2.3137708,-2.114982,-1.9910315,-2.2037978,-2.234649,-2.4976661,-2.515905,-2.457943,-2.2403316,-2.1987305,-1.97969,-2.0662503,-2.0617175,-2.2023668,-1.9034752,-2.0212843,-2.193122,-2.38801,-2.1013083,-2.35071,-2.44786,-2.5185995,-2.6777456,-2.5118477,-2.419911,-2.2034376,-2.214878,-2.1667318,-2.2770596,-2.1424625,-1.9469596,-1.9142381,-2.0851672,-2.2600374,-2.2430036,-2.1739311,-2.230174,-2.3943644,-2.5054805,-2.5534348,-2.7486944,-2.238262,-2.199086,-2.3573804,-1.9124266,-2.300331,-2.2573457,-2.2842336,-2.5873342,-2.7769706,-3.0273757,-2.7817502,-2.8506007,-3.0251164,-3.0864267,-2.8967829,-2.838592,-3.1079693,-3.2855792,-3.4016135,-3.1633363,-3.3181174,-2.9934187,-3.2679737,-3.2584848,-3.1607594,-3.2435632
+-1.8936144,-1.7106037,-1.8838781,-2.111082,-2.4136648,-2.4880118,-2.5194025,-2.6734262,-2.004703,-1.7854027,-1.9172372,-2.5063007,-2.5131075,-2.5860066,-2.5285902,-3.039845,-3.0978804,-3.0928178,-3.0141277,-3.0648751,-3.2756333,-3.3889809,-1.4196604,-2.352663,-2.3004847,-2.5632052,-2.6011486,-2.6188068,-2.6802287,-2.723614,-2.6344738,-2.6000886,-2.6472428,-2.5889072,-2.537715,-2.127955,-2.3610346,-2.5683618,-2.763011,-2.922387,-2.9294596,-2.8807757,-2.9935737,-3.165733,-2.61029,-1.765887,-2.2037828,-2.487143,-2.8273482,-1.754458,-2.5301366,-2.8169465,-2.6946204,-2.4074304,-2.4902675,-2.5746279,-2.531986,-2.6636147,-2.3396027,-2.6830702,-3.0584617,-3.275908,-3.5611398,-3.7818635,-3.732518,-3.8553576,-3.861081,-3.8370557,-3.8549109,-4.0188017,-4.048063,-3.850423,-1.0589532,-2.1009698,-2.3759046,-2.6002827,-2.935847,-3.2286913,-3.5735316,-3.6699986,-3.8580608,-4.0381317,-4.232456,-4.2956486,-4.3409295,-4.417546,-4.4993935,-4.563237,-4.5391307,-4.407316,-4.117244,-2.8357778,-1.6770881,-2.8234038,-3.4457343,-3.9449806,-4.161542,-4.254951,-4.2401295,-4.22661,-3.561934,-4.0578976,-4.3894143,-4.44633,-4.462528,-4.511615,-4.4087453,-4.5003967,-4.541098,-4.5282965,-4.511322,-4.516407,-4.448868,-4.532818,-4.5237293,-4.492141,-4.4935384,-4.483162,-4.3591003,-4.2234163,-2.7458453,-2.5534594,-3.6073818,-4.0541186,-4.195418,-4.3407564,-1.7926084,-2.6975353,-3.4916873,-4.1442313,-4.3020864,-4.2911086,-4.3200636,-4.32539,-4.347297,-4.3395634,-4.241078,-4.3106966,-4.194816,-4.153996,-4.225306,-4.331566,-4.3666153,-4.3631725,-4.3128138,-4.452209,-4.4515166,-4.4970846,-4.4700875,-4.415548,-4.4158144,-4.361143,-4.291363,-4.1007404,-4.2552943,-4.2595315,-3.6915774,-4.0703516,-4.335557,-4.4184847,-4.347249,-4.4324355,-4.4645195,-4.4773674,-4.300969,-0.77523774,-1.7159489,-2.6209803,-3.0924711,-3.4970691,-3.7089171,-3.9052935,-3.9513164,-1.9996895,-0.90257293,-2.580945,-2.539103,-2.7097073,-2.1502604,-2.4726605,-2.79618,-2.874158,-2.7592254,-2.9159002,-3.1483293,-1.44186,-2.5673637,-2.5981135,-2.7320814,-2.856565,-3.1839743,-3.4610753,-3.575567,-3.5844913,-3.719284,-3.7289803,-3.6434367,-1.1002523,-1.8245898,-2.1805046,-2.6828403,-2.8825085,-2.8940504,-2.9927435,-3.1352544,-3.0830808,-2.9604075,-2.8655217,-2.9925268,-3.1278043,-1.3328904,-2.3238552,-2.7104626,-1.7800748,-2.447457,-2.6465938,-2.8293452,-2.9305334,-3.0675073,-3.1184435,-3.1514618,-3.146501,-3.2004006,-3.2539835,-3.2573714,-3.2331254,-3.309022,-3.2269301,-3.3364944,-2.5704374,-3.1278172,-3.5808303,-3.325035,-3.088983,-1.5989038,-2.5067456,-2.3744648,-2.8149257,-3.1957426,-3.0535867,-2.3644938,-2.076233,-2.4107509,-2.5509214,-2.283524,-2.52318,-2.8935394,-2.7075274,-2.4524868,-3.0240753,-2.8118896,-2.3581667,-2.0507874,-1.917396,-1.9915053,-2.5902567,-2.7476182,-1.9482507,-1.964662,-1.9501883,-2.4660368,-2.6755133,-2.7612386,-2.559679,-2.2866945,-2.8770328,-2.73626,-1.8050772,-1.9533569,-2.4891033,-2.5856447,-2.5319219,-2.7757578,-2.8738775,-3.1501474,-3.1519043,-2.4058607,-2.2984848,-1.7004796,-1.8984587,-2.356442,-1.9685823,-1.7951344,-1.9906083,-2.0689456,-1.9850036,-2.0429509,-1.8995953,-2.240734,-2.456214,-2.721544,-2.816734,-2.5880926,-1.854325,-2.1498094,-1.917977,-1.9914664,-1.8396486,-2.0389907,-2.1735928,-1.8986746,-2.4139066,-2.5434825,-2.4583359,-2.4158611,-2.4327574,-2.1999903,-1.8467184,-1.9331551,-1.8084701,-1.8392736,-1.720491,-1.7931801,-1.9902304,-1.8549219,-2.1642814,-2.1547956,-2.9007263,-3.0396805,-3.0143075,-2.7755027,-2.1801307,-2.2365265,-2.1488676,-2.1618595,-2.3924935,-2.1283214,-2.3155699,-2.0320597,-2.4403522,-2.5407052,-2.5333672,-2.040662,-2.1540303,-2.64747,-2.8308792,-2.887756,-2.4245677,-2.586069,-2.5248723,-2.4850311,-2.1740615,-2.222289,-2.0445833,-2.085883,-2.0857983,-2.0437326,-1.9442463,-2.023978,-2.3919792,-2.3820753,-2.374353,-2.3875318,-2.2528553,-2.3577645,-2.4371197,-2.6146092,-2.9138327,-2.3551817,-2.7406805,-2.3365726,-2.932075,-2.9709804,-1.8696467,-2.3123057
+-1.8001528,-1.8081754,-2.0239906,-2.201726,-2.6477122,-2.9054651,-3.1420436,-3.0717332,-1.0166423,-2.008735,-2.2956502,-2.4583633,-2.1518247,-2.3259163,-2.5792897,-2.9907122,-3.0932314,-3.3110595,-3.4634204,-3.642703,-2.9839377,-1.3885857,-2.273639,-2.5391827,-2.1184938,-2.4273462,-2.5426068,-2.5861683,-2.5112615,-2.5330215,-2.47136,-2.373835,-2.4128928,-2.426715,-2.6253438,-2.4755604,-1.2384192,-2.1402593,-2.266036,-2.6073146,-2.8621938,-3.0269537,-3.3288226,-3.5054317,-3.6436634,-3.2352617,-1.2366832,-1.8392092,-2.54171,-2.8712516,-3.2347226,-3.297639,-3.6451037,-1.287809,-1.5500156,-1.667679,-2.3670888,-2.8055203,-2.1557708,-2.2037845,-2.994341,-3.6127415,-3.9638224,-4.187256,-4.141925,-4.169952,-4.159608,-4.143998,-4.013283,-4.140588,-4.128728,-1.03223,-1.5197743,-2.1653001,-2.662629,-3.0671196,-3.451282,-3.683004,-3.8702202,-4.09636,-4.1060076,-4.2405777,-4.260948,-4.3319974,-4.3650723,-4.270274,-4.301578,-4.2798276,-4.2277656,-3.6387596,-1.8152488,-1.4366764,-1.8904182,-2.340273,-3.049478,-3.7154484,-4.1544695,-4.2658987,-4.1982074,-4.169354,-4.1547575,-4.231498,-4.3195634,-4.345878,-4.3044815,-4.349622,-4.324832,-4.3140526,-4.2311106,-4.195028,-4.238467,-4.212418,-4.2088265,-4.265335,-4.2772036,-4.268697,-4.3153787,-4.2847195,-4.210143,-3.8832383,-3.5421216,-3.7280104,-3.741317,-3.8370037,-3.8794265,-2.3726811,-1.0865716,-2.7258482,-3.1742578,-3.7653718,-4.067293,-4.145731,-4.247135,-4.2383595,-4.2426314,-4.2352524,-4.173827,-4.217581,-4.1833887,-4.1893177,-4.0912704,-4.239005,-4.2438226,-4.1038003,-3.406662,-4.087184,-4.159742,-4.1146755,-4.1223664,-4.2291994,-4.231241,-4.170658,-4.047604,-3.8831449,-4.010921,-4.060326,-3.8812008,-4.061196,-4.178941,-4.237998,-4.2309504,-4.2561884,-4.2789383,-4.207438,-4.021207,-3.2258506,-2.2785745,-3.4468057,-3.848367,-4.0447607,-4.1354403,-4.1559963,-4.073618,-3.470153,-0.7357907,-1.8485099,-2.6720366,-3.047912,-3.2637892,-3.5025153,-3.623827,-3.1999023,-3.1735587,-3.301418,-3.5323255,-3.5745559,-3.469809,-3.735915,-3.6664364,-3.7932658,-4.1001043,-4.083319,-3.9399219,-3.9837294,-4.0633726,-3.9150815,-3.28056,-3.4626238,-3.3584833,-3.1280613,-3.494467,-3.6591523,-3.7680776,-3.9962587,-4.0051794,-3.94623,-1.4792761,-2.4012027,-2.696366,-3.009009,-1.5181913,-2.50294,-2.400269,-1.9609793,-2.8847075,-3.2635832,-3.5470357,-3.6817315,-3.7046828,-3.6191728,-3.7013254,-3.7601786,-3.7139926,-3.830389,-3.7829976,-3.641089,-3.8178418,-3.8711705,-3.877725,-3.8509257,-3.9457185,-3.9035661,-3.78594,-3.3680074,-1.6521951,-2.8658924,-2.800859,-3.3940008,-3.6410122,-3.5966463,-2.5187998,-2.8206801,-3.196589,-3.412333,-3.2244897,-3.36556,-3.6177654,-3.426875,-3.529965,-3.8957891,-3.8263595,-3.3242667,-3.1325297,-3.1352162,-2.7095127,-3.5104275,-3.4626534,-2.9448786,-3.058447,-1.1886218,-2.5675554,-3.1399407,-3.363644,-3.2418504,-3.0878384,-3.0705142,-3.0391273,-2.2541435,-3.134165,-3.3588305,-3.3623056,-2.2066307,-2.8707843,-3.078505,-3.2044246,-3.2665849,-3.1639168,-2.9602299,-2.6101506,-2.1483757,-3.198114,-2.5520372,-2.0823379,-2.0428526,-2.361062,-1.8601121,-2.0243545,-1.8837546,-2.6387682,-2.9689646,-3.2547345,-3.3637733,-3.0560737,-1.7781866,-2.2395942,-2.0284636,-1.9462017,-1.8673598,-2.691737,-2.8570397,-2.5602002,-2.7621102,-3.108499,-3.1003203,-3.1149213,-3.1191378,-2.934566,-2.3145134,-2.4312632,-2.3929195,-2.5583048,-2.233149,-2.1328323,-2.267078,-2.0484183,-1.9288822,-1.0731364,-2.307786,-2.7984202,-3.036393,-3.0490966,-2.5550554,-2.186119,-1.8422189,-1.9993547,-1.9100407,-1.9600776,-1.9527303,-2.9659462,-3.243465,-2.9603367,-3.1586742,-2.598586,-3.252678,-3.3680968,-3.3814173,-3.4009745,-2.9839797,-2.7731414,-3.0059764,-3.1522555,-2.8623166,-2.895915,-2.865809,-2.574265,-2.684185,-2.7582846,-2.737693,-2.799229,-3.094747,-3.245205,-3.2273893,-3.2599807,-3.1351233,-2.960056,-2.0444937,-1.9418241,-2.7300427,-1.7794439,-2.2295632,-2.1023903,-2.7871413,-2.7979546,-2.0129263,-2.3287814
+-2.1443484,-3.0202165,-3.5985832,-3.9807897,-4.272058,-4.4259534,-4.55021,-2.0326748,-1.3876117,-2.0318637,-2.4797282,-2.8370743,-3.2318854,-3.5218937,-4.023386,-4.1893644,-4.4120035,-4.554995,-4.628148,-4.66777,-4.6258416,-4.557225,-4.160947,-4.2068424,-1.4209155,-2.7608185,-2.9919214,-1.6041356,-2.0369349,-1.7644674,-2.1759186,-2.5444496,-3.0189443,-3.3972378,-3.7172954,-3.643967,-1.2665126,-1.6628729,-2.5791674,-3.1821337,-3.6743507,-4.194405,-4.4835587,-4.503209,-4.376872,-4.134547,-2.9420753,-2.7765272,-3.9214976,-4.114157,-4.2365456,-4.227069,-4.324956,-2.844912,-3.61471,-3.8161545,-4.0194263,-4.170752,-4.3104067,-4.327393,-4.301594,-4.41663,-4.5313926,-4.546111,-4.5384846,-4.5547447,-4.5605326,-4.491708,-4.4651237,-4.431218,-4.4492507,-1.1302842,-1.9649607,-3.1132417,-3.7340283,-4.110201,-4.3256683,-4.439647,-4.555296,-4.6564817,-4.6139216,-4.6436086,-4.5922947,-4.629031,-4.65226,-4.6187744,-4.665617,-4.594405,-4.5647306,-4.131561,-3.824151,-1.8614565,-1.5979581,-3.0499647,-3.6967907,-4.2466545,-4.6067104,-4.7023973,-4.6700745,-4.67963,-4.6610365,-4.703455,-4.783575,-4.793917,-4.7188377,-4.7035875,-4.692445,-4.6861696,-4.610564,-4.6002054,-4.6545362,-4.609497,-4.6106043,-4.6144505,-4.6246543,-4.5768633,-4.5381746,-4.5340805,-4.466345,-3.776286,-3.8688707,-3.4428682,-3.9564373,-4.085587,-1.7511159,-1.5495669,-2.0358524,-3.501772,-3.9524627,-4.3663626,-4.612527,-4.6987977,-4.880172,-4.885356,-4.868362,-4.8316545,-4.733863,-4.787378,-4.7531915,-4.730322,-4.5708613,-4.668953,-4.635707,-1.8155049,-1.944403,-2.6616096,-3.8748803,-4.1936545,-4.23436,-4.571788,-4.6680818,-4.6657515,-4.563608,-4.5430603,-4.6453514,-4.6769557,-4.678316,-4.7284846,-4.739273,-4.743572,-4.6991405,-4.674586,-4.694869,-4.670913,-4.6169724,-4.542759,-4.3630767,-4.591156,-4.6490035,-4.7094707,-4.7749248,-4.69729,-4.543784,-4.0134144,-2.3313394,-3.778757,-4.33544,-4.611806,-4.631146,-4.648232,-4.2060847,-3.6847858,-4.115673,-4.348345,-4.504923,-4.4446745,-4.3209124,-4.566522,-4.5116673,-4.6215096,-4.715716,-4.628146,-4.531769,-4.535461,-4.4902,-4.475638,-4.5046563,-4.4306936,-4.2613907,-4.1829996,-4.171923,-4.463023,-4.550871,-4.666943,-4.647793,-3.8922741,-0.94160175,-2.5602295,-3.078299,-3.352246,-2.197621,-3.075035,-3.2507713,-3.597296,-3.854419,-4.202569,-4.335952,-4.399787,-4.398839,-4.335384,-4.408526,-4.5529284,-4.4868684,-4.5029035,-4.4933496,-4.349268,-4.4112363,-4.585484,-4.484152,-4.5908103,-4.7091103,-4.7216773,-4.5217776,-1.8909727,-2.2750883,-3.6852877,-4.027956,-4.5144978,-4.6976795,-4.4537096,-3.407855,-2.6779337,-4.1965437,-4.4267783,-4.4510546,-4.297645,-4.580738,-4.6167655,-4.6829433,-4.845378,-4.7993703,-4.447896,-4.2852006,-4.086569,-3.89943,-4.0984306,-4.2431736,-3.9943786,-1.7989666,-1.6873122,-3.4012485,-4.1315956,-4.4333487,-4.4457035,-4.466169,-2.427369,-2.2800038,-1.9630646,-3.2420774,-3.8807938,-4.0318594,-4.0255527,-4.0800457,-4.1298285,-2.8502903,-3.7781336,-3.84276,-3.9307613,-3.474748,-3.3410459,-4.089604,-4.0325637,-3.213405,-3.2702317,-3.5649948,-3.355758,-2.2904458,-1.845575,-2.9904208,-3.5766249,-4.093642,-4.341759,-4.3992844,-2.1015103,-2.1813822,-2.228847,-2.129237,-2.3398802,-3.4319925,-4.0246725,-4.058869,-4.125375,-4.276354,-4.1942406,-4.209793,-4.329854,-4.3374066,-3.8627284,-3.6487246,-3.7090876,-3.8015976,-2.615427,-3.1501205,-3.2550945,-3.3141625,-3.4099941,-1.460555,-2.8040113,-3.3511677,-3.8399303,-4.0837965,-3.8726423,-1.546456,-1.7529109,-2.533444,-2.7200508,-2.9631157,-3.3972912,-3.507549,-3.6280396,-3.9758978,-3.9718995,-3.68814,-4.1305203,-4.1933556,-4.2424135,-4.3075204,-4.1207194,-3.7040772,-3.703924,-4.2951207,-4.1619005,-4.271075,-4.365732,-4.333663,-4.477689,-4.5136533,-4.654968,-4.638258,-4.6671667,-4.662602,-4.58972,-4.62151,-4.5684233,-4.381638,-4.1173964,-1.906424,-3.6752696,-1.3818192,-2.341567,-2.69951,-3.3588195,-3.7475278,-2.228406,-3.10086
+-3.716031,-4.441821,-4.6038923,-4.677059,-4.759686,-4.8574677,-4.8265486,-1.4794022,-1.7937361,-2.001583,-2.510494,-3.0960302,-3.5747905,-3.8212056,-4.0937114,-4.4224415,-4.6713624,-4.7426224,-4.742665,-4.7259254,-4.7575088,-4.677278,-4.5372243,-4.7213283,-1.5580128,-3.0901952,-3.7205362,-2.0446815,-3.216816,-1.8185248,-2.4912882,-3.35109,-3.9180157,-4.2032204,-4.273411,-4.1652308,-3.6754315,-3.833128,-4.156636,-4.288942,-4.4551187,-4.684162,-4.671074,-4.50469,-4.503918,-4.625669,-1.5476118,-3.3801785,-3.9043798,-4.1225967,-4.26572,-4.421671,-4.530775,-4.422198,-4.3916807,-2.941936,-4.0388346,-4.293901,-4.4544296,-4.577839,-4.598065,-4.6380587,-4.558889,-4.595313,-4.5963626,-4.547573,-4.564525,-4.542982,-4.5063686,-4.4595165,-4.465211,-1.4167556,-3.6306238,-4.0585523,-4.386376,-4.4409266,-4.4669228,-4.490361,-4.5655127,-4.4532976,-4.5060406,-4.498967,-4.439184,-4.5100684,-4.5618324,-4.6318073,-4.5714417,-4.477436,-4.360095,-2.8044708,-2.6554277,-1.4633017,-2.1929724,-3.3935485,-3.9168472,-4.190667,-4.3231635,-4.3728414,-4.3541965,-4.3450027,-4.3034725,-4.5687594,-4.536702,-4.5338497,-4.527235,-4.4716043,-4.4606175,-4.4314013,-4.417615,-4.4570656,-4.5091476,-4.4795074,-4.486477,-4.5014334,-4.459961,-4.448412,-4.3882446,-4.351453,-2.3512135,-2.4914055,-2.1463375,-3.2752426,-3.8979785,-2.475642,-2.6822631,-1.6511856,-2.5539193,-3.591017,-3.9833145,-4.245266,-4.3637896,-4.413722,-4.5172844,-4.545826,-4.645015,-4.5791717,-4.5019064,-4.5547686,-4.54725,-4.5502467,-4.5776324,-4.5601954,-4.4886093,-4.472301,-2.2601843,-3.6027935,-4.2148247,-4.209095,-0.75029767,-2.9205227,-3.8651037,-4.245963,-4.2814417,-4.3221965,-4.416255,-4.515921,-4.540333,-4.6972713,-4.7927794,-4.741007,-4.6469173,-4.6804476,-4.7724924,-4.6584487,-4.588323,-4.572343,-4.706257,-4.884087,-4.8897123,-4.8914833,-4.8711357,-4.7400312,-4.6047254,-4.1635547,-4.406645,-4.712531,-4.771185,-4.8256073,-4.817119,-4.768343,-4.090084,-4.346445,-4.4113274,-4.487092,-4.5979924,-4.7048783,-4.7271943,-4.7391653,-4.8451734,-4.8721256,-4.8747187,-4.8150125,-4.7037,-4.5322623,-4.7636385,-4.7498546,-4.70203,-4.598565,-4.5515337,-4.5321565,-4.4659443,-4.762973,-4.8476505,-4.8631744,-4.811557,-4.4595947,-0.7365356,-2.7736506,-3.515905,-2.4897845,-2.6547852,-3.4201045,-3.541026,-3.5163696,-3.892879,-4.1566944,-4.40092,-4.4893665,-4.433178,-4.486061,-4.6084394,-4.713674,-4.7285085,-4.7399125,-4.7702837,-4.731333,-4.74191,-4.809068,-4.833193,-4.7591257,-4.6995134,-4.81299,-4.791752,-4.377117,-4.0658216,-4.4554825,-4.6147003,-4.747959,-4.830415,-4.745334,-1.6923195,-3.3295531,-3.9426758,-4.1235304,-4.149152,-4.2274027,-4.3638864,-4.471285,-4.4952755,-4.505792,-4.515746,-4.4254246,-4.4141374,-4.35984,-4.3168125,-4.29521,-4.4264846,-4.427175,-4.3303475,-0.6179039,-3.1473348,-3.7199547,-3.8504376,-4.056436,-3.962142,-1.3487056,-2.6431777,-1.31198,-2.809516,-3.4982681,-3.765349,-3.9558575,-4.02932,-4.0263834,-3.7624655,-3.6506493,-3.8287802,-3.8100247,-3.8076262,-3.4635336,-3.9806137,-1.9435024,-2.378313,-1.9455196,-3.3219237,-3.2790675,-1.5196282,-1.7224315,-2.7921238,-3.3575172,-3.7407875,-3.9459043,-4.037015,-1.3369445,-1.9099593,-2.278357,-1.7835311,-1.8162609,-2.3485565,-3.327189,-3.6946807,-3.8291821,-3.9064155,-4.044138,-4.109362,-4.1352043,-4.1425743,-4.1372366,-4.0362816,-4.0734615,-4.179578,-2.9400368,-3.4361758,-3.665083,-3.8610454,-3.8415604,-1.5409818,-2.4622061,-3.4787068,-3.820675,-4.0055733,-4.016799,-1.5109285,-1.5515977,-2.2852697,-3.1270516,-3.4772425,-3.608002,-3.4433417,-3.7712135,-3.8617315,-3.8345327,-3.7219267,-3.7678568,-4.0564966,-4.2045574,-4.3368297,-4.3639627,-4.2610373,-3.6844223,-4.3619485,-4.5110188,-4.5795064,-4.648775,-4.674816,-4.6573477,-4.7108,-4.732068,-4.658425,-4.5973654,-4.6791396,-4.652646,-4.6492243,-4.5982895,-4.460286,-4.3263674,-4.3545685,-4.5566874,-3.7631507,-4.455322,-4.448323,-4.580313,-4.790926,-3.0941024,-3.477605
+-3.5731707,-4.3574247,-4.5116477,-4.599821,-4.6371026,-4.7254558,-4.4820604,-1.8561462,-2.3893688,-2.4951138,-2.81222,-2.3946967,-3.538236,-4.0937986,-4.277672,-4.3974776,-4.554371,-4.6217823,-4.653223,-4.692137,-4.7191906,-4.7202015,-4.6372685,-4.7088394,-4.5291977,-4.445405,-4.59482,-4.378132,-4.380639,-4.168927,-4.301114,-4.475409,-4.5776834,-4.6336293,-4.633176,-3.8985457,-3.8771033,-4.2385693,-4.4269505,-4.47709,-4.557701,-4.688237,-4.711603,-4.6847305,-4.638704,-4.6094465,-4.6454964,-4.4842443,-4.6085668,-4.702775,-4.692546,-4.671915,-4.7374163,-4.6940656,-4.5067964,-3.1959865,-4.2563334,-4.5276423,-4.56162,-4.6320915,-4.6367693,-4.6603093,-4.6762085,-4.739561,-4.745853,-4.763109,-4.7693253,-4.7358494,-4.709153,-4.709322,-4.7027564,-4.4999743,-4.635417,-4.6709547,-4.727791,-4.7492585,-4.7091594,-4.7246304,-4.7740545,-4.607099,-4.6441507,-4.5605206,-4.6013107,-4.721728,-4.752986,-4.7875085,-4.6837053,-4.556336,-4.553917,-4.5452013,-4.5249596,-3.8337576,-4.4455614,-4.591189,-4.6796556,-4.74812,-4.7953997,-4.7883983,-4.764793,-4.7744393,-4.7493267,-4.792865,-4.8274064,-4.807801,-4.783636,-4.748677,-4.7460294,-4.699891,-4.6708965,-4.651125,-4.6626797,-4.6064196,-4.6575155,-4.6637564,-4.613855,-4.5909014,-4.4961057,-4.498638,-4.500718,-4.4728928,-4.4183273,-4.2853184,-3.824049,-4.111148,-4.3655934,-4.1819572,-4.451522,-4.6313543,-4.6638002,-4.7260075,-4.770053,-4.7778263,-4.7329144,-4.470483,-4.5620503,-4.5973635,-4.6276526,-4.75098,-4.7120686,-4.6647673,-4.619813,-4.701513,-4.614077,-4.637063,-4.2895417,-4.6422596,-4.6623077,-4.7059255,-4.611063,-4.6227784,-4.696824,-4.719948,-4.6608753,-4.622901,-4.6793203,-4.8239384,-4.8545275,-4.9011493,-4.9009066,-4.7873716,-4.634983,-4.670439,-4.751526,-4.806757,-4.8173065,-4.8239193,-4.808322,-4.920233,-4.925165,-4.932274,-4.929365,-4.786502,-3.881258,-1.3934264,-3.2152364,-4.203786,-4.5973606,-4.739899,-4.7968693,-4.7414436,-4.579572,-4.621372,-4.643189,-4.6983232,-4.7756042,-4.7699943,-4.757303,-4.8084397,-4.844184,-4.8657084,-4.875966,-4.8629804,-4.7909794,-4.7990036,-4.8598433,-4.852187,-4.848307,-4.822938,-4.5359926,-4.3932877,-4.55664,-4.7253227,-4.808468,-4.8479548,-4.841404,-4.7011237,-1.9549452,-2.1615047,-3.5595016,-4.006337,-4.1464396,-3.859975,-4.0394907,-3.8580112,-4.1888595,-4.2819386,-4.4238906,-4.4741187,-4.4107285,-4.5651255,-4.6367044,-4.6364727,-4.703066,-4.712268,-4.714213,-4.655728,-4.652859,-4.635414,-4.7686915,-4.7464867,-4.512495,-4.5818715,-4.723834,-4.5926733,-3.8954744,-4.2309465,-4.485613,-4.5188932,-4.634046,-4.672653,-3.9785452,-4.1800385,-4.4453354,-4.541814,-4.5728054,-4.498704,-4.4961276,-4.607787,-4.7043977,-4.6917496,-4.5647445,-4.5481806,-4.5876393,-4.455844,-4.3697295,-4.4059343,-4.5266256,-4.4757395,-4.485634,-3.9361668,-4.25971,-4.503383,-4.5113153,-4.547001,-2.7455733,-0.9497007,-2.1309495,-2.0979362,-2.9362454,-3.4791718,-3.6528225,-3.7826304,-3.8510494,-3.7779815,-3.559144,-1.3432964,-2.9137676,-3.243758,-3.3846142,-3.2795389,-3.4069538,-3.61894,-3.811053,-2.8967292,-3.426671,-3.5979478,-3.5080988,-1.0405115,-2.1688378,-3.0918863,-3.4626791,-3.724873,-3.8252454,-1.8854771,-1.64974,-2.317635,-2.0668006,-2.0436697,-2.9560242,-3.5076246,-3.6398582,-3.6481047,-3.7117476,-3.8104606,-3.8761377,-3.9239268,-3.99363,-4.016024,-3.9396658,-3.8462138,-3.9971113,-3.9540663,-3.8375607,-3.8347976,-3.9919186,-4.0920315,-3.85048,-2.3399415,-3.241074,-3.762321,-4.1016817,-4.247255,-3.9259863,-0.95647186,-2.0626707,-3.0393758,-3.386036,-3.6317866,-3.745922,-3.9399621,-3.9962668,-3.9621925,-3.7979214,-1.9953507,-3.3823736,-3.8469245,-4.151201,-4.2891335,-4.3413296,-4.137005,-4.3814316,-4.444748,-4.4782295,-4.5545373,-4.6015663,-4.559566,-4.6185308,-4.717703,-4.733883,-4.7012653,-4.791562,-4.807005,-4.802124,-4.7961698,-4.695484,-4.407304,-4.4852557,-4.7302055,-4.699252,-4.647995,-4.6529694,-4.6479607,-4.7816257,-4.782091,-4.239272
+-1.6229508,-2.0471418,-2.1602554,-2.203061,-2.1936162,-2.2265983,-2.153204,-1.6924933,-1.8775135,-1.8554405,-1.9166591,-2.050571,-2.1238866,-2.1325092,-2.097629,-2.0536635,-2.0781574,-2.1067238,-2.1633062,-2.1995368,-2.1844454,-2.1809971,-2.166366,-2.1315951,-2.1176748,-2.0557928,-2.0646272,-2.1053119,-2.1074216,-2.096285,-2.1196916,-2.137943,-2.1668072,-2.161958,-2.1454246,-2.0015402,-2.0148253,-2.0822806,-2.0942938,-2.1495996,-2.1753924,-2.184741,-2.1757839,-2.2031193,-2.1972854,-2.1740346,-2.1697767,-2.2095516,-2.193979,-2.1725292,-2.0941362,-2.0523052,-2.0666664,-2.0804663,-2.0887191,-2.121314,-2.138052,-2.144471,-2.1524649,-2.1895483,-2.2016916,-2.1926885,-2.2115788,-2.2604733,-2.2729225,-2.2642007,-2.2559655,-2.2328734,-2.2027407,-2.169066,-2.158565,-2.1533656,-2.1379302,-2.152934,-2.145187,-2.1654449,-2.1573977,-2.1811378,-2.200952,-2.2721558,-2.3035295,-2.2109091,-2.236703,-2.2380981,-2.2173624,-2.1907647,-2.1806264,-2.1898453,-2.2452807,-2.2056355,-2.1631832,-2.148995,-2.1277547,-2.1431231,-2.1788714,-2.1978781,-2.170232,-2.1588027,-2.1486392,-2.1605847,-2.2005928,-2.20126,-2.1698797,-2.1534271,-2.177126,-2.216448,-2.2017093,-2.185364,-2.15759,-2.1600566,-2.1700754,-2.2058668,-2.2281165,-2.2019637,-2.1496987,-2.1736329,-2.1894035,-2.198096,-2.2123814,-2.1512,-2.1137855,-2.0873077,-2.1136703,-2.114946,-2.1067572,-2.1182017,-2.1304512,-2.13304,-2.1319351,-2.1199608,-2.0895212,-2.083182,-2.1118093,-2.129782,-2.139958,-2.1445844,-2.1543908,-2.1822023,-2.1892228,-2.1409535,-2.1793842,-2.1672964,-2.1076527,-2.1334622,-2.1245294,-2.122433,-2.1190088,-2.098419,-2.0967615,-2.0915387,-2.122579,-2.1363285,-2.143144,-2.1157842,-2.0997484,-2.1074512,-2.0748615,-2.0394247,-2.0501473,-2.0589306,-2.0953188,-2.0927382,-2.1197288,-2.121104,-2.104031,-2.0516243,-2.0198455,-1.9981169,-2.050805,-2.0624845,-2.0802655,-2.0922227,-1.9157088,-1.5809985,-1.8678638,-1.9175113,-1.9715592,-2.0265906,-2.0274098,-2.012236,-2.0611894,-2.0610976,-2.074149,-2.076424,-2.0499434,-1.9271642,-1.9692005,-1.9735457,-1.9457701,-1.9629747,-2.0160182,-2.02978,-2.0478134,-2.0427947,-2.024776,-1.9815153,-2.017336,-2.025083,-2.0373597,-2.0092916,-1.9778665,-1.9879881,-1.9666268,-1.9787267,-2.0314841,-2.008259,-2.0310493,-1.864614,-1.9818503,-2.0089939,-2.016748,-1.985097,-2.005604,-1.9380261,-1.8308405,-1.8586029,-1.8836696,-1.9387134,-1.984053,-1.9813393,-1.9646739,-1.9738308,-1.973894,-1.9210323,-1.9050027,-1.9120928,-1.9775165,-1.9349588,-1.9261966,-1.9512712,-1.7981759,-1.7655476,-1.8085383,-1.9038647,-1.7329773,-1.7630926,-1.7873446,-1.780789,-1.7763641,-1.816918,-1.6850353,-1.6719048,-1.7476217,-1.7527521,-1.757714,-1.7648381,-1.7501763,-1.7710526,-1.7910858,-1.7837986,-1.7669328,-1.761372,-1.7845927,-1.8054576,-1.8229823,-1.8165787,-1.8338262,-1.8244305,-1.779072,-1.6341276,-1.7178491,-1.7552717,-1.7707952,-1.7732145,-1.6984128,-0.8196946,-1.375189,-1.4822668,-1.6204865,-1.7321848,-1.8135308,-1.9181119,-1.9939698,-1.9739443,-1.9385469,-1.6561624,-1.8914071,-1.9849633,-1.9769794,-1.9727341,-1.947428,-1.9802543,-2.0017247,-1.993491,-1.9870538,-1.9977747,-1.9643613,-1.1251473,-1.5458716,-1.7448088,-1.7904952,-1.8634245,-1.9256748,-1.8296617,-1.7866743,-1.2988912,-1.5824924,-1.4161502,-1.5940372,-1.7117919,-1.7948142,-1.8940756,-1.9695789,-2.0182552,-2.0253663,-2.0101304,-2.0134974,-2.0288887,-2.1078322,-2.0203288,-2.0046766,-2.0816147,-1.9255387,-2.0582516,-2.117736,-2.1527092,-2.1462595,-2.0113173,-2.0338373,-2.073958,-2.0357122,-2.0571814,-2.0943236,-1.1608753,-1.5774691,-1.7140142,-1.7558774,-1.9362844,-1.895076,-1.9293938,-1.9599639,-2.030079,-1.2969464,-1.2450218,-1.743177,-1.8653827,-1.9314287,-1.9979545,-2.0658107,-1.980956,-1.9768952,-2.0851798,-2.1520405,-2.1822789,-2.1998117,-2.2377367,-2.2606416,-2.2570162,-2.2706614,-2.2651556,-2.2609951,-2.2671025,-2.266481,-2.296239,-2.2651615,-2.214638,-2.1392047,-2.083931,-2.2021127,-2.166919,-2.2161083,-2.1872041,-2.1727576,-2.248577,-2.2273521
+-2.0465946,-3.5233567,-4.0845656,-4.494727,-4.682862,-4.659714,-1.820122,-2.3614032,-2.8483868,-2.4327123,-2.825217,-2.7337508,-2.998386,-3.3942847,-3.8146229,-4.115883,-4.457755,-4.69266,-4.8382263,-4.911561,-4.958484,-4.969952,-4.9681273,-5.038123,-4.972608,-5.0029263,-5.059102,-4.809861,-4.9228225,-4.969917,-4.8736744,-4.872449,-4.924424,-5.0295405,-4.887604,-2.3222806,-3.2731888,-3.633685,-4.1719513,-4.488997,-4.7206564,-4.912348,-5.0004983,-5.017438,-4.975472,-5.013758,-4.9439187,-4.8911858,-4.9327188,-5.0269537,-5.0718374,-5.0524316,-5.103165,-5.1059146,-5.071915,-5.0504236,-5.0858297,-5.0731373,-4.9755754,-4.947876,-5.037608,-5.037092,-4.972749,-4.943625,-4.9640903,-4.995104,-5.0424724,-5.0677814,-4.9923224,-4.9041443,-4.837405,-4.834342,-4.9280987,-5.0873814,-5.129214,-5.1381493,-5.1429567,-5.12284,-5.0478506,-4.8064117,-4.703484,-4.583295,-4.6746464,-4.9049387,-4.9357376,-4.972416,-4.870678,-4.6679497,-4.8778515,-4.8546476,-4.7249117,-4.500928,-4.862197,-4.9581203,-4.9695244,-4.9401665,-5.027734,-5.01056,-4.965768,-4.954297,-4.9576454,-4.954492,-4.98585,-4.9507704,-4.869869,-4.79612,-4.7546544,-4.7602367,-4.796134,-4.753357,-4.735076,-4.6881585,-4.7354984,-4.720153,-4.656471,-4.5854797,-4.4405665,-4.5148644,-4.5694456,-4.56365,-4.432898,-2.914741,-3.0003805,-3.747395,-4.1977305,-4.515712,-4.6384134,-4.7455273,-4.806675,-4.850672,-4.92148,-4.9257183,-4.7842073,-4.2801914,-4.2763605,-4.4704037,-4.519682,-4.6306663,-4.6469355,-4.6455975,-4.73108,-4.796731,-4.723071,-4.6969743,-4.824009,-4.7721295,-4.685272,-4.7093167,-4.7783036,-4.7865796,-4.82039,-4.7419124,-4.6873465,-4.5277863,-4.6706166,-4.805846,-4.915031,-4.98703,-4.976613,-4.5278573,-4.3456697,-4.764487,-4.8013,-4.7354703,-4.788605,-4.790949,-4.7425747,-4.927845,-4.9129333,-4.7834187,-4.7742376,-3.9247093,-0.9785772,-2.2301517,-2.5536463,-3.1255927,-3.6176524,-4.0398445,-4.3822985,-4.215819,-4.2419767,-4.269972,-4.2750587,-4.209051,-4.3226404,-4.604944,-4.7667713,-4.812624,-4.815776,-4.816139,-4.811319,-4.663907,-4.651804,-4.732348,-4.788476,-4.740615,-4.746766,-4.7499437,-4.4790277,-4.185613,-4.564174,-4.6661444,-3.7913258,-4.5037766,-4.6177998,-4.7118535,-4.509888,-3.5903206,-3.8196146,-4.2329655,-4.452708,-4.259413,-3.8743005,-3.7360268,-4.2142773,-4.5195756,-4.600974,-4.61785,-4.471743,-4.34172,-4.511002,-4.597617,-4.5872602,-4.58749,-4.626604,-4.543527,-4.750234,-4.6474566,-4.763387,-4.6908712,-4.527587,-4.6100793,-4.7929573,-4.128524,-1.7945164,-2.9595637,-3.4062665,-3.8432302,-4.207929,-4.314949,-2.4862895,-2.6839004,-3.0500267,-3.6883996,-3.9307413,-3.7877984,-3.9644227,-4.15368,-4.33619,-4.2695665,-4.2639046,-4.229889,-4.2018347,-4.1227055,-4.0756187,-4.0385995,-4.0383353,-4.09418,-4.3098035,-1.2084275,-2.9704375,-3.7011564,-3.6817412,-3.5778973,-2.9421258,-1.3370138,-2.8784738,-2.2836199,-2.6784291,-3.3302362,-3.2911782,-3.4076595,-3.5474677,-2.1954832,-2.996588,-2.3629303,-2.7449365,-3.18752,-3.2636247,-3.2809699,-2.947969,-3.3659172,-3.5430655,-3.4581344,-3.5172954,-2.907353,-2.873271,-2.2962651,-2.8604593,-3.0838304,-3.2608733,-3.3713255,-3.491857,-2.1169052,-2.3876932,-2.54487,-2.8584628,-2.4554038,-2.7283516,-3.1561103,-3.4597766,-3.4608722,-3.5870926,-3.6988945,-3.7965126,-3.935152,-3.9572008,-3.990847,-4.0322065,-3.9696832,-4.078869,-3.6380768,-2.6547623,-3.3661973,-3.6111841,-3.759583,-3.7015433,-3.2374585,-3.4619892,-3.6455128,-3.7043648,-3.9170327,-3.983622,-1.6298133,-2.6771817,-3.0632684,-3.2217724,-3.3038044,-3.5505414,-3.8967342,-3.95212,-2.3497639,-2.5601506,-2.6250958,-2.9223323,-3.2825832,-3.5164623,-3.650839,-3.8297,-3.9471903,-4.013903,-4.1441054,-4.3188276,-4.4303217,-4.565972,-4.6593485,-4.7371607,-4.846179,-4.886903,-4.865977,-4.8852367,-4.900016,-4.9506426,-4.9429293,-4.4338245,-2.8903782,-3.251751,-3.9848404,-4.293421,-4.5072803,-4.6989794,-4.8658266,-4.9228506,-5.0199723,-4.837616
+0.35260105,-0.115494564,-0.25912443,-0.2930958,-0.29003087,-0.2676066,-0.3401557,-0.2387298,-0.15029919,-0.2204403,-0.1263527,-0.21060878,-0.23335123,-0.23951241,-0.23959664,-0.20666444,-0.19490458,-0.22492144,-0.24688473,-0.24740991,-0.23944238,-0.26532176,-0.300607,-0.27045122,-0.27260062,-0.2578156,-0.26398858,-0.27170306,-0.26876447,-0.26057246,-0.22921324,-0.23687878,-0.258191,-0.24048007,-0.21446839,-0.27112284,-0.19047385,-0.2536451,-0.28560022,-0.28300384,-0.28516555,-0.27706075,-0.27365014,-0.2601067,-0.28396323,-0.27948794,-0.25685337,-0.27238992,-0.2964007,-0.25914618,-0.26345596,-0.27463105,-0.27609697,-0.28206754,-0.2933412,-0.3031216,-0.29490346,-0.24865809,-0.24535343,-0.26595533,-0.27530697,-0.2845168,-0.29795775,-0.2899006,-0.30460328,-0.32364097,-0.32067627,-0.32532185,-0.32050636,-0.29397458,-0.25424418,-0.21092224,-0.2413772,-0.27517262,-0.30170807,-0.30923197,-0.3230513,-0.31664848,-0.32407382,-0.3487515,-0.30270797,-0.27535793,-0.2716352,-0.29088163,-0.30131727,-0.29557797,-0.27970365,-0.29469416,-0.33012995,-0.31879425,-0.31498006,-0.30145237,-0.24717826,-0.24402708,-0.3150959,-0.30510405,-0.30187917,-0.3027181,-0.3032054,-0.30858454,-0.3276001,-0.32658842,-0.29165342,-0.28907755,-0.31850514,-0.32908872,-0.31423017,-0.29661524,-0.3068993,-0.33169124,-0.33311728,-0.34610984,-0.3494139,-0.3274245,-0.27665234,-0.32133046,-0.3595356,-0.37284175,-0.39667553,-0.37634706,-0.3600268,-0.3411603,-0.3676009,-0.39533207,-0.39398208,-0.4047888,-0.4015149,-0.38431844,-0.36006418,-0.3316401,-0.30524552,-0.30479863,-0.2983131,-0.343726,-0.34962532,-0.35086456,-0.36164233,-0.38335523,-0.393294,-0.37192115,-0.37023023,-0.37841958,-0.37390262,-0.35399643,-0.33469057,-0.33669809,-0.33805478,-0.29949751,-0.28918788,-0.31910872,-0.33026257,-0.31998628,-0.33260477,-0.33601677,-0.3299541,-0.3047793,-0.29998904,-0.3109986,-0.29805806,-0.26975435,-0.25974855,-0.31245676,-0.33067036,-0.32143638,-0.31293863,-0.25182992,-0.29471594,-0.30382207,-0.27883825,-0.27901754,-0.25133047,-0.37048587,-0.5083516,-0.46054652,-0.3178735,-0.32047692,-0.29347834,-0.2915424,-0.28147152,-0.26990935,-0.2663863,-0.24368289,-0.27594018,-0.27311382,-0.26957706,-0.31055573,-0.3169987,-0.29785195,-0.2833586,-0.2804571,-0.27777869,-0.27010718,-0.27326968,-0.2721953,-0.2767606,-0.2865083,-0.28229722,-0.29818833,-0.30474767,-0.3042803,-0.28997648,-0.25316772,-0.25971735,-0.2457749,-0.23320943,-0.23020497,-0.19950487,-0.23202536,-0.25562644,-0.24025875,-0.23781955,-0.2454167,-0.23008725,-0.24934995,-0.2665247,-0.27460077,-0.23951796,-0.23085424,-0.22525129,-0.23160014,-0.21926704,-0.21677563,-0.22360006,-0.20377643,-0.19164692,-0.19360259,-0.1967427,-0.19861153,-0.2031433,-0.21791756,-0.22165915,-0.16537565,-0.16823186,-0.15591581,-0.1477529,-0.20130359,-0.20643078,-0.17623037,-0.14795378,-0.12636447,-0.19243458,-0.23234537,-0.1937974,-0.1399304,-0.15484647,-0.15187505,-0.15733758,-0.12966897,-0.12729867,-0.1284066,-0.16838033,-0.17073423,-0.18545204,-0.19708472,-0.19692554,-0.18821833,-0.18094191,-0.1674558,-0.16042519,-0.2188062,-0.36014372,-0.20388134,-0.16833675,-0.1735096,-0.22137335,-0.43861786,-0.20825782,-0.34609324,-0.21303672,-0.15217379,-0.15467054,-0.17373082,-0.1559282,-0.24252033,-0.17062293,-0.40744558,-0.1967502,-0.19423877,-0.20734495,-0.21888238,-0.2583288,-0.19618107,-0.19916362,-0.23459539,-0.25617144,-0.25418502,-0.26143125,-0.33421853,-0.21845832,-0.26126987,-0.26971164,-0.25744238,-0.24772885,-0.2513349,-0.38417074,-0.3511909,-0.23582587,-0.3118872,-0.27506825,-0.26538038,-0.29313007,-0.27201203,-0.21867955,-0.25557843,-0.24710238,-0.25606686,-0.2656035,-0.24697164,-0.27793595,-0.35169527,-0.30813807,-0.30630958,-0.37334922,-0.41281852,-0.36345342,-0.33330458,-0.30829504,-0.32881576,-0.37487364,-0.3092551,-0.32337672,-0.30392215,-0.21931729,-0.37685418,-0.3094003,-0.30551657,-0.3192662,-0.3458677,-0.35203275,-0.28818905,-0.25916275,-0.2697601,-0.28146362,-0.49300817,-0.41569856,-0.35690257,-0.323127,-0.2920101,-0.28043586,-0.39421725,-0.34743327,-0.35161623,-0.36234087,-0.37124056,-0.3742686,-0.3384399,-0.35025212,-0.38120216,-0.40204975,-0.40997455,-0.3757429,-0.34058008,-0.35415712,-0.37539238,-0.39649454,-0.38237628,-0.42243806,-0.3603467,-0.42026708,-0.4204381,-0.43862277,-0.4123139,-0.33677295,-0.33953753,-0.38444737
+-1.637976,-1.9035677,-1.9019958,-2.0004158,-2.3260405,-2.1924767,-2.050494,-1.9202344,-1.9710954,-2.0983942,-2.1446185,-2.2074971,-2.279408,-2.3516192,-2.371907,-2.135662,-2.0801668,-1.958254,-1.9709982,-1.8807987,-1.9694301,-2.0247376,-2.121282,-2.170592,-2.2792034,-2.3493543,-2.3587208,-2.3278842,-2.224516,-2.2822454,-2.3585927,-2.3474336,-2.3359137,-2.3802876,-2.1319082,-2.264292,-2.5780454,-2.6220562,-1.8114794,-2.3071976,-2.405062,-1.9084522,-2.171368,-2.3843703,-2.4715204,-2.478137,-2.5868034,-2.5417342,-2.1829746,-2.416854,-2.0351443,-2.1445043,-2.3309827,-2.3486652,-2.479373,-2.5555835,-2.5766854,-2.565358,-2.4914792,-2.519309,-2.3946981,-2.419057,-2.3811045,-2.351829,-2.3209264,-2.2887237,-2.3678722,-2.3992152,-2.4901872,-2.3746781,-1.8497117,-2.1593766,-2.4820375,-2.5129635,-2.4384031,-2.4865117,-2.4328642,-2.5645757,-2.2478004,-2.1653433,-2.546009,-2.5349503,-2.4877644,-2.5000105,-1.7949256,-2.171486,-2.435135,-2.5126715,-2.5866756,-2.5798507,-2.571278,-2.6331153,-2.6381822,-2.6080465,-2.5262868,-2.2412362,-1.8122294,-2.327942,-2.3800793,-2.0707312,-2.3737772,-2.1890597,-2.15591,-2.0110607,-2.4154305,-1.7601953,-1.8723034,-2.1491897,-2.3762367,-2.241338,-2.4945304,-2.6498966,-2.275835,-2.2596855,-2.5450325,-2.6427166,-2.130742,-1.801344,-2.069515,-2.4662879,-2.3671434,-2.5839086,-2.6684048,-2.9322395,-1.9425774,-2.4019477,-2.7053103,-2.0594563,-1.6799837,-1.9731721,-2.073202,-1.9736174,-2.0297332,-2.381106,-2.6061912,-2.5926468,-2.4071424,-2.727433,-2.7711098,-2.0051305,-2.0787256,-2.4857156,-2.7141304,-2.665028,-2.0988507,-2.275963,-2.08536,-2.3968058,-2.4837651,-2.708612,-2.8464437,-3.0383897,-3.1361184,-2.9718087,-2.407762,-2.480147,-2.7399793,-2.7938356,-2.0173035,-2.1599426,-1.9889828,-2.3033953,-2.3704681,-1.7066696,-2.047794,-2.478085,-2.7442098,-2.8661456,-2.864357,-2.2214742,-2.023235,-2.296609,-2.3442764,-2.5997195,-1.7533983,-2.0748856,-2.4213614,-2.4922733,-2.7020512,-2.5956645,-2.6841438,-2.820456,-2.8335156,-1.6114498,-2.2974591,-2.6100132,-2.378831,-2.2203634,-2.2303414,-1.5114354,-1.7714056,-1.8272917,-1.5536598,-1.7929019,-2.1132221,-2.0582697,-1.8474883,-2.2919934,-2.2344313,-2.0885777,-2.3363855,-2.46664,-2.2489161,-2.4092436,-2.4794493,-2.6879926,-2.6051064,-2.6483064,-2.7019494,-2.368578,-2.3307645,-2.6308637,-2.5035007,-1.7735382,-2.1856046,-2.2599254,-2.4945078,-2.6782014,-2.744727,-2.717336,-2.899995,-2.7941365,-2.890706,-2.9370427,-2.8406775,-2.6862583,-2.70259,-2.138217,-1.957942,-2.3427227,-2.7092977,-2.5949495,-2.1758409,-1.9463873,-1.9277581,-2.1863904,-1.9701122,-1.9751779,-1.824463,-1.8193861,-2.06385,-2.1550941,-2.2722225,-2.2184324,-2.0952039,-2.1048422,-1.9295012,-1.9521586,-1.8746563,-1.4731234,-1.5136303,-1.412839,-1.3831369,-1.6265216,-1.6651555,-1.6033527,-1.628056,-1.6330549,-1.6424854,-1.560373,-1.5159228,-1.7408818,-1.8584031,-1.9521822,-1.9657291,-2.099706,-2.054616,-1.8632469,-1.8219734,-1.7605958,-1.8567857,-1.9403868,-1.9443609,-2.0062103,-1.9940728,-1.924658,-1.6716707,-1.5622674,-1.6081952,-1.7155584,-1.7527772,-1.7650281,-1.7346505,-1.7887079,-1.7475845,-1.6450883,-1.7837678,-2.022503,-2.1761065,-2.2878842,-2.2615676,-1.931959,-1.9209714,-1.8179392,-2.1577456,-2.2609053,-1.9627734,-1.9515697,-2.0371478,-2.0583858,-2.1960912,-2.2190955,-2.1823432,-2.3079612,-2.3706603,-2.3875594,-2.2150922,-2.1455355,-2.200819,-1.8592254,-1.670262,-1.3493518,-1.5002066,-1.638256,-1.8309014,-1.8699199,-2.1665483,-2.2058673,-2.089563,-2.0091376,-2.0510588,-1.8533674,-2.0376132,-2.1167164,-1.8437026,-2.0678465,-1.9801539,-2.069344,-2.08899,-2.1726484,-2.3027587,-2.109684,-2.0524428,-2.0728695,-2.1319609,-1.9994129,-2.0012255,-2.0680208,-2.172125,-2.1591265,-2.1573389,-2.162475,-2.0669432,-1.9485403,-1.9475003,-2.0284739,-1.8955235,-1.946476,-1.8737003,-2.0723126,-2.3375587,-1.82316,-2.296774,-2.2692451,-2.0979986,-1.963487,-2.1263363,-2.2809143,-2.1522212,-2.4012132,-2.0695333,-2.263708,-2.1123211,-2.0682974,-2.2883193
+-0.8593028,-1.041941,-1.4199811,-1.5501028,-1.1737179,-1.448097,-1.7036136,-1.8252424,-1.9281707,-2.0731559,-1.9395529,-1.9700137,-1.4673399,-1.2234284,-1.0762843,-1.665493,-1.8208481,-1.8949107,-1.95365,-1.9846131,-1.976292,-2.021139,-1.249355,-1.0325178,-1.6061785,-1.3363487,-1.542859,-1.8767239,-1.8931651,-2.0001051,-1.9276029,-1.9344952,-2.0131593,-2.0477974,-2.1119928,-1.6536843,-2.074977,-1.9509254,-0.6074931,-1.8174778,-1.7668306,-1.8560345,-1.5095156,-1.9253544,-1.8718393,-1.8162919,-1.8712841,-1.9270039,-0.83421314,-1.5066991,-1.5143577,-0.938162,-1.174178,-1.4242781,-1.5991942,-1.6192844,-1.7258322,-1.793451,-1.7644922,-1.7055775,-1.9847823,-1.9535693,-1.9527988,-1.9378207,-2.030746,-2.1416328,-2.1199546,-2.1528633,-2.0783792,-1.5375403,-2.0632842,-2.0157695,-1.9916443,-2.097913,-0.9036282,-1.6272019,-1.1671315,-1.6570964,-1.8985463,-1.6948547,-2.0785818,-1.4257355,-1.8847522,-2.0723383,-0.73648983,-1.4178913,-1.7891022,-1.9895905,-2.0496593,-2.177502,-2.2375507,-2.269278,-2.3185556,-2.2317142,-2.198759,-2.2988348,-1.2344112,-1.8971311,-1.9490223,-2.2071297,-2.324521,-0.5783711,-1.5960795,-1.6695608,-1.9553189,-2.067828,-1.6757915,-1.6626426,-2.0471454,-2.110407,-2.1756833,-2.3362443,-2.4296386,-2.2818582,-2.410921,-2.5028844,-2.5135293,-2.53546,-2.5439548,-2.5541286,-2.518122,-2.357902,-2.5476346,-2.6453547,-2.0734847,-2.4212232,-2.6036026,-2.610431,-2.5953546,-2.4142666,-2.3786898,-0.80595094,-1.9245738,-2.1420054,-2.3865983,-2.5174623,-2.6370344,-2.6910625,-2.7231817,-2.7122598,-2.0540717,-2.651989,-2.652485,-2.5296068,-2.595003,-2.7547786,-2.7909904,-2.6072683,-2.6257296,-2.6178312,-2.715374,-2.739356,-2.7640014,-2.6943963,-2.4893513,-1.8166426,-2.5807798,-2.3636966,-1.6606761,-1.7090186,-1.6215571,-1.9752244,-2.2521472,-1.3814408,-1.7968968,-2.1840367,-2.3491309,-2.4128878,-2.5256572,-2.152842,-1.440941,-2.0399613,-2.3648324,-2.5532942,-1.2779225,-1.9893595,-2.0578852,-2.2404635,-2.4472556,-2.512023,-2.6043987,-2.6625667,-2.692397,-2.4733176,-2.607792,-2.763103,-2.5921087,-0.9337134,-1.6574703,-1.5444525,-1.7031463,-1.6485718,-1.3934525,-1.5909745,-1.3944386,-1.6290303,-1.4887491,-1.7055681,-1.7242737,-1.6418983,-1.7231458,-1.6470582,-1.5765523,-1.5395365,-1.596658,-1.7108213,-1.9566017,-1.8324503,-1.7105827,-1.8266829,-1.6622182,-1.8149508,-1.7695048,-1.3182377,-1.698654,-1.7796339,-1.8711177,-1.9437643,-2.0172496,-2.2002325,-2.131278,-2.203094,-2.2507079,-2.3774605,-2.3929412,-2.4364014,-2.4039555,-1.412942,-1.2849745,-1.4578767,-1.3430076,-1.4213991,-1.308518,-1.2703556,-1.0756296,-1.1493484,-0.95352346,-0.99995977,-1.0381864,-1.1174935,-1.2578901,-1.2348703,-1.3401786,-1.3661736,-1.0430593,-1.0690999,-1.0882732,-1.1487306,-1.0542024,-1.0711014,-1.3089851,-1.2730906,-1.3856113,-0.98860306,-1.0633543,-1.2932888,-1.5472478,-1.5664624,-1.4680457,-1.5984877,-1.685767,-1.8305558,-1.2613572,-1.2015709,-1.3241051,-1.442896,-1.5357305,-1.2028403,-1.3026069,-1.3805088,-1.1686679,-1.368231,-1.4963597,-1.3465679,-1.5555618,-1.2972524,-1.4694047,-1.7739593,-1.8143915,-1.8555219,-1.8309495,-1.6788269,-1.5502803,-1.096706,-1.308896,-1.4270917,-1.6547382,-1.677404,-1.6900978,-1.6731867,-1.6595358,-1.5693479,-1.3618251,-1.2519244,-1.2973346,-1.4008803,-1.3437552,-1.429634,-1.5586146,-1.611178,-1.4400604,-1.5539485,-1.5601097,-1.447725,-1.4617392,-1.5511721,-1.6950225,-1.8354188,-1.7989768,-1.0485495,-1.2794038,-1.2929662,-1.3691531,-1.4576122,-0.7186217,-1.299488,-1.212253,-1.306879,-1.3490025,-1.3595073,-1.3688945,-1.2604139,-1.4908448,-1.317118,-1.3632089,-1.3771282,-1.2689128,-1.3986685,-1.5103573,-1.5521041,-1.5062461,-1.2071954,-1.2957312,-1.2889372,-1.4414259,-1.3329726,-1.2860901,-1.3400172,-1.3078068,-1.4056236,-1.4364672,-1.2594465,-1.2795895,-1.0411888,-1.1419532,-1.2467304,-1.3517839,-1.3233894,-1.4724815,-1.5116765,-1.3934609,-1.2917727,-1.4741247,-1.3795922,-1.2018694,-1.3421178,-1.4214096,-1.3465798,-1.3756999,-1.3911669,-1.453927,-1.3717483,-1.5567286,-1.3738772,-1.587977
+-1.0545617,-1.6308326,-1.8348262,-1.8476003,-2.4387834,-2.5322921,-2.711944,-2.6936731,-3.022004,-2.934463,-3.283453,-3.42176,-1.7263619,-2.4641438,-2.9950783,-3.1941311,-3.2422085,-3.305138,-3.3774471,-3.4795809,-3.4114275,-3.5771537,-1.6862382,-2.6380024,-2.809226,-2.9474745,-2.8667428,-2.9336054,-2.779775,-2.9443717,-3.0694566,-3.2889347,-3.372871,-3.386623,-3.4274693,-1.7110789,-2.4414043,-2.7262626,-3.0693293,-3.068445,-3.2272582,-3.3013215,-3.4032521,-3.4786205,-1.8137157,-2.7880602,-2.977627,-3.141506,-2.053586,-2.5246727,-2.8904462,-2.9829502,-3.066711,-2.9060736,-3.0032165,-3.1649876,-3.157008,-3.4467597,-3.5566297,-3.7069597,-3.8829274,-4.1044083,-4.2528286,-4.213008,-4.3352237,-4.3506465,-3.8816228,-2.9100285,-3.6001577,-3.9183452,-4.235669,-4.2462196,-4.2835374,-4.273455,-3.8727338,-3.1172328,-2.973843,-3.6544785,-3.8297153,-4.260188,-4.409361,-4.5122576,-4.5950212,-4.6880946,-4.6555777,-4.682576,-4.7975416,-4.70494,-4.7477274,-4.6236267,-4.0873113,-1.7372841,-3.5321023,-3.937433,-4.2078314,-4.454516,-4.2001305,-4.4568834,-4.5346966,-4.506141,-2.3177438,-3.1601734,-4.0333586,-4.3555984,-4.6121693,-4.6857533,-4.675681,-4.6795073,-4.7432966,-4.7676344,-4.771486,-4.7307415,-4.7147827,-4.6867123,-4.7105618,-4.783405,-4.687558,-4.602521,-4.6059666,-4.644541,-4.54168,-4.5477567,-4.656483,-4.688692,-4.660141,-4.6875525,-4.571253,-4.1234665,-4.475915,-4.591879,-4.512235,-4.4611425,-4.5871534,-4.544879,-4.6529465,-4.4508033,-4.541857,-4.537369,-4.5551414,-4.4406133,-4.4756145,-4.5166364,-4.656888,-4.685815,-4.7344055,-4.7108335,-4.6033435,-4.5779343,-4.6080046,-4.6449394,-4.567126,-4.5304804,-4.424796,-3.3467371,-4.244711,-3.9457653,-1.9237906,-1.7014378,-3.2261364,-3.5646377,-3.9765549,-4.337824,-4.4732637,-4.5617485,-1.8549572,-2.136107,-1.262036,-2.5327582,-2.7064736,-2.9874992,-2.7454443,-3.0007985,-3.3172982,-1.8934437,-1.8218328,-2.1761909,-2.534792,-2.8878672,-3.053762,-3.056716,-3.2076175,-3.402532,-3.3561094,-1.4854689,-2.3034263,-1.9297324,-2.5269525,-2.6024532,-2.852532,-2.9788294,-3.0102193,-3.1375098,-3.2642903,-3.222478,-3.5968652,-3.6537516,-1.4345651,-2.1097438,-2.1750774,-2.1537328,-2.4861784,-2.6655724,-2.90067,-2.941903,-3.0641794,-3.0273046,-2.5473719,-2.1515827,-2.8043003,-2.6918921,-2.0618303,-2.5369778,-2.6153743,-2.0224962,-2.6036358,-2.769165,-2.951978,-3.1013553,-3.2172353,-3.2890573,-3.3071187,-3.2789783,-3.3655772,-3.415135,-3.397317,-3.5037594,-3.4852066,-3.3694725,-3.3935125,-3.0596914,-3.7183883,-4.0858436,-3.509008,-3.278284,-2.6393666,-3.4475358,-3.0533466,-3.4250221,-3.6715677,-3.4849157,-2.8252623,-2.1546712,-2.9896555,-2.949239,-2.7065444,-2.9966993,-2.6069324,-2.0889297,-2.173422,-2.5032675,-2.656096,-2.311389,-1.4329418,-1.43755,-1.493891,-1.6111513,-1.926309,-1.721063,-1.5191816,-1.740004,-1.8492947,-1.749902,-1.5045856,-1.480069,-1.5697305,-1.8839767,-1.8598374,-1.6875323,-1.719291,-1.7663443,-1.6589769,-1.6117283,-1.7877365,-1.846382,-1.9522643,-1.9673508,-1.7661396,-1.6843607,-1.7110378,-1.6438117,-1.5946993,-1.4894391,-1.6716398,-1.5037636,-1.8168098,-1.6901659,-1.5611573,-1.8751913,-2.0919693,-2.1318266,-2.1372187,-2.0435028,-1.9311894,-1.8174134,-1.4735086,-1.6671776,-1.7082185,-1.8568181,-1.7061461,-1.9176,-1.9245374,-2.088582,-2.1088786,-2.086028,-2.1732366,-2.0964413,-1.7824793,-1.872686,-1.7259318,-1.6518453,-1.7095793,-2.0391002,-2.05036,-1.8332559,-1.9006085,-2.1697626,-1.8777921,-2.2168818,-2.2588305,-2.2237144,-2.1506891,-1.9733573,-1.9803189,-1.8198811,-2.0649867,-2.0312443,-2.0761335,-1.9382448,-1.8399237,-1.9499732,-2.2097588,-2.1560547,-1.9772171,-1.8830314,-1.8780603,-2.036575,-1.8493797,-1.8354739,-1.8503935,-2.1715114,-1.9730109,-1.8453617,-1.5961375,-1.9699036,-2.0916114,-2.115655,-2.1333382,-2.1488323,-2.5264935,-2.7062902,-2.647339,-2.4936604,-2.548128,-2.771757,-2.5524883,-2.6758814,-2.8312564,-3.0287528,-2.8369174,-3.1313453,-2.8865266,-3.2823024,-3.1248887,-2.5366292,-2.7919276
+-1.1760873,-1.5530945,-1.7026144,-1.8261143,-2.4037955,-2.4975905,-2.5604982,-2.6691835,-2.511908,-2.1858933,-2.5443745,-2.7364435,-2.597365,-2.8044968,-3.315111,-3.4112895,-3.5595794,-3.51846,-3.416009,-3.334652,-3.3302126,-3.0222807,-1.8735838,-3.115121,-2.845986,-3.0297372,-3.118742,-3.1787138,-3.0160055,-2.9707866,-3.0615442,-3.1303241,-3.1737685,-3.1220028,-3.0235076,-2.7608793,-2.6884513,-2.6761084,-2.986242,-3.125961,-3.2073364,-3.1877315,-3.112584,-3.1258395,-1.8152337,-2.9824173,-2.959128,-2.9202747,-2.7380123,-2.5222375,-3.229363,-3.4098997,-3.2513175,-3.1125183,-2.8763158,-3.1285362,-3.1655786,-3.2256749,-3.101671,-3.0654626,-3.2493958,-3.2741642,-3.17874,-3.1503606,-3.1828866,-3.214598,-3.150826,-1.6166664,-2.5080068,-2.9003353,-3.1069794,-3.1427526,-1.7989901,-2.4180336,-2.6849096,-2.7920003,-2.9610739,-3.2088645,-3.4038973,-3.41289,-3.5650322,-3.6350617,-3.7449923,-3.7684355,-3.8022208,-3.7838678,-3.9050179,-3.8859243,-3.999175,-3.938769,-1.4936947,-2.5012143,-2.510691,-3.0869155,-3.3612661,-3.671124,-3.7177253,-3.7496638,-3.8325572,-3.827133,-3.5834417,-2.8747725,-3.6758451,-3.8690574,-4.151519,-4.2069216,-4.144944,-4.194009,-4.2093167,-4.2373695,-4.222432,-4.274584,-4.228647,-4.356183,-4.443346,-4.4669156,-4.4819126,-4.4545994,-4.409814,-4.4118867,-1.4450346,-2.1563053,-3.042617,-3.6139169,-3.8835552,-4.248172,-4.1134872,-3.7713661,-3.9319174,-4.164096,-4.2375417,-4.2415457,-4.233879,-4.335905,-4.4129696,-4.4507437,-4.432641,-4.469475,-4.4107285,-4.410207,-4.3651476,-4.432988,-4.5223923,-4.4953194,-4.5356965,-4.6093073,-4.62513,-4.6146746,-4.618206,-4.611581,-4.6392164,-4.622756,-4.522742,-4.4083624,-4.387865,-4.321018,-1.066393,-2.0489194,-3.0013173,-3.098318,-3.4753084,-3.9991374,-4.2329206,-4.219179,-4.026181,-3.4180946,-2.25566,-2.5307503,-3.3539615,-3.7359872,-3.7061124,-3.8489137,-3.8877175,-2.9307957,-1.4848455,-2.8066676,-2.68195,-3.079845,-2.9334831,-3.010885,-3.140368,-2.9542606,-2.4778666,-2.7211037,-2.9525836,-2.908661,-3.1194084,-2.4755623,-2.8958397,-3.1117563,-3.1377907,-3.2086651,-3.2167444,-3.1812787,-3.501105,-2.7117128,-2.6122522,-2.7389505,-1.9273452,-2.1551156,-2.9654691,-3.0486884,-3.1239848,-3.1321373,-3.101526,-3.151175,-2.9779553,-2.4628067,-2.9285355,-3.1149085,-2.1281083,-2.8088415,-2.8004196,-2.9650187,-3.113092,-3.0414944,-3.2548778,-3.3137207,-3.2904518,-3.3042853,-3.349225,-3.3560412,-3.3584998,-3.4133444,-3.391586,-3.3870325,-3.4350338,-3.4224584,-3.4826355,-3.3692098,-3.6056294,-4.1716623,-4.0126762,-3.6232808,-2.637519,-3.0818586,-3.2279413,-3.5466468,-3.8693244,-3.8489213,-3.293148,-2.8274918,-3.1057076,-3.1242852,-3.0070813,-3.3532147,-3.2236595,-3.0608566,-3.1181388,-3.438056,-3.6951785,-3.6358805,-2.78229,-2.3424027,-2.4919524,-2.4244678,-2.561239,-2.4143054,-2.7830234,-3.028718,-2.8504763,-2.8564918,-2.4626575,-1.9225045,-2.0288947,-2.2379909,-2.2287793,-2.0406873,-1.7471507,-2.2265656,-2.0262456,-1.845877,-2.2776086,-2.0229495,-2.1759424,-2.475572,-2.090177,-2.0745761,-2.235147,-2.3168554,-2.3697531,-2.2133205,-1.9620117,-2.3100233,-1.9235493,-2.2823853,-2.0070086,-2.1172724,-2.3718386,-2.513501,-2.6371205,-2.6620743,-2.5316978,-2.3308206,-2.072383,-2.1715126,-2.2806275,-2.4153008,-2.2295382,-2.1901393,-2.011903,-2.2284255,-2.3359654,-2.3402944,-2.369928,-2.3002427,-1.975521,-1.9971787,-1.821849,-1.8709195,-1.7252868,-1.6752807,-2.2046106,-2.1141179,-2.0802312,-2.3911595,-2.3811176,-2.3081305,-2.44302,-2.4573479,-2.4483771,-2.2412944,-2.3301358,-2.053465,-2.2229557,-1.7353112,-2.0100336,-2.0727322,-2.0964828,-2.15162,-2.3330846,-2.4423902,-2.2971647,-2.2796369,-2.255813,-2.394432,-2.3483012,-2.2029982,-2.1850023,-2.2637465,-2.2530437,-2.2641687,-1.816456,-1.8364782,-1.8493272,-1.8256655,-2.205866,-2.288947,-2.5499468,-2.5443695,-2.7600636,-3.0127027,-2.9463878,-2.918361,-2.8939023,-2.8493552,-3.1659288,-3.5051222,-3.275116,-3.5148602,-3.3728979,-3.4824333,-3.5665154,-3.0566113,-3.2147787
+-1.5158439,-1.7283207,-2.0620167,-2.387034,-2.6391776,-2.8754416,-3.1770453,-3.3188014,-2.6514513,-1.4014813,-2.0474157,-2.539569,-2.139873,-2.264269,-2.547336,-2.9873738,-3.2518263,-3.3899956,-3.3713398,-3.5979342,-3.6597795,-3.7020626,-1.3459356,-2.4189963,-1.642872,-2.5001588,-2.474481,-2.3672957,-2.622096,-2.568222,-2.20511,-2.2557087,-2.4290628,-2.613299,-2.8196898,-2.6453576,-1.453067,-2.1909032,-2.281597,-2.6101837,-2.7702377,-2.954893,-3.2238517,-3.4087846,-3.1761007,-1.2789812,-1.863979,-2.3454623,-2.7078052,-1.5040414,-2.2393017,-2.5529103,-2.5268874,-1.6228918,-2.075202,-2.207761,-2.368632,-2.5767927,-2.3006334,-2.700602,-3.3175876,-3.6791096,-3.8413825,-4.0316887,-3.9801745,-4.1432242,-2.1892679,-2.662013,-3.2063503,-2.4042907,-3.3710175,-1.6434383,-1.5591389,-2.1357555,-2.393221,-2.858507,-3.0501418,-3.275208,-3.5535002,-3.766334,-3.826971,-3.9191706,-4.191454,-4.1364284,-4.1715555,-4.2853994,-4.429641,-4.3541393,-4.255204,-2.1390314,-2.107714,-2.7651668,-1.5693854,-2.7416396,-3.2758708,-3.7121336,-3.8662055,-3.9992743,-4.012023,-4.018984,-3.9147096,-4.0546513,-4.2827106,-4.2531357,-4.318883,-4.3106294,-4.1382356,-4.24597,-4.187221,-4.1498756,-4.1694956,-4.192194,-3.985279,-4.2083097,-4.2942533,-4.2470665,-4.2196403,-4.2380295,-4.1583166,-4.077448,-2.3435626,-1.745211,-3.0891025,-3.4413352,-3.6797962,-4.107807,-2.0924363,-1.2058209,-2.6404576,-3.4993124,-3.8270788,-4.0615015,-4.069709,-4.1412244,-4.265025,-4.352747,-3.0034583,-3.8113644,-3.9201734,-3.9150088,-4.1017466,-4.2291517,-4.2720757,-4.1785965,-4.1026278,-4.243344,-4.382697,-4.2622433,-4.279784,-4.237157,-4.355738,-4.177698,-4.0369573,-3.7818804,-3.8764725,-3.9382424,-3.4242587,-3.694036,-3.9235287,-4.0739326,-3.9685516,-4.1559625,-4.305104,-4.192732,-3.3721023,-0.84931576,-2.1904476,-2.7554402,-3.180838,-3.4553778,-3.7487218,-3.9826088,-4.0152693,-2.2953687,-0.9590986,-2.4982867,-2.4786599,-2.776556,-2.8313851,-3.0115407,-3.1935556,-2.8556354,-1.6800119,-2.4325273,-2.8477213,-2.3096685,-2.921307,-3.109271,-3.10084,-3.3147445,-3.5215232,-3.637367,-3.6924376,-3.5762868,-3.7421398,-3.6778643,-3.7113435,-2.4954329,-2.871489,-1.349343,-2.5631409,-2.8007565,-2.9700544,-3.1122537,-3.2300467,-3.3026671,-2.999693,-3.1136003,-3.3035793,-3.4272246,-2.797806,-1.8625815,-2.7836452,-1.9332545,-2.7846575,-3.1658,-3.4144483,-3.492121,-3.5220149,-3.4632587,-3.5960755,-3.5427468,-3.5390368,-3.6677175,-3.5978208,-3.5496333,-3.6347744,-3.5699825,-3.7755356,-3.692235,-3.6135612,-3.916265,-3.6906407,-3.4877963,-1.9583226,-2.9466014,-2.8929474,-3.4515486,-3.7100506,-3.6724572,-3.501198,-3.1851468,-3.5909514,-3.6891587,-3.356264,-3.4538126,-3.7249882,-3.5915852,-3.4718778,-3.8895195,-3.9529018,-3.6957965,-3.177898,-2.6393924,-2.0726552,-3.0777428,-3.241166,-2.535076,-2.565671,-2.3117778,-3.419147,-3.733032,-3.7534094,-3.4226294,-3.0291736,-3.4770222,-3.4255433,-2.0618024,-2.7599618,-3.3558843,-3.441925,-3.3137984,-3.4725075,-3.4999566,-3.6157105,-3.6939988,-3.2440248,-3.138354,-2.8811052,-2.359266,-3.2841015,-3.1294594,-1.991582,-1.7158833,-1.5991641,-1.6911155,-1.7153925,-1.4074377,-1.987368,-2.3230648,-2.5485015,-2.717617,-2.7075505,-1.6530625,-1.9326223,-1.797504,-1.6318606,-1.3945336,-1.7953658,-1.9271055,-1.9341645,-2.3250833,-2.501009,-2.5020275,-2.601121,-2.7783477,-2.6415672,-2.193102,-1.9031936,-1.9385577,-2.105991,-1.9426105,-1.9765149,-2.216415,-1.8661269,-1.9829422,-1.8224066,-2.6124058,-3.09431,-3.2242413,-3.1237724,-2.6924157,-2.5470119,-2.223145,-2.0823388,-2.2477376,-2.5406153,-2.0700276,-2.4863098,-3.065446,-2.9371457,-3.346695,-2.546201,-3.1196287,-3.347179,-3.3760216,-3.3452296,-3.0532217,-2.9239554,-3.095511,-3.167662,-2.9246087,-2.9662962,-2.934592,-2.860628,-3.0044618,-3.1442,-3.17526,-3.2037692,-3.2657528,-3.2636528,-3.3593235,-3.4155722,-3.4252481,-3.4023461,-2.2202845,-2.7840395,-3.2232401,-2.3619857,-3.0195162,-2.6633286,-3.1627352,-3.2596626,-2.2760577,-2.5851939
+-2.006369,-2.2221336,-2.4555402,-2.7149577,-3.0128598,-3.294989,-3.5091906,-3.5212493,-1.7851958,-2.4089231,-2.897841,-3.0743177,-2.8840432,-3.0473485,-2.5155067,-3.4418716,-3.551425,-3.7074437,-3.7655401,-3.9061537,-3.9346347,-3.855202,-2.0584369,-3.1360002,-2.4321585,-3.0202162,-2.6922607,-3.0386252,-3.0682,-2.9595516,-3.050381,-3.0890524,-3.1573305,-3.1036391,-3.194385,-2.9312563,-2.4829369,-2.2331283,-2.868949,-2.9704638,-3.019322,-3.2622123,-3.4966865,-3.607925,-3.701167,-2.0806696,-2.6058397,-2.8988457,-3.1145105,-2.7923427,-3.159123,-3.3250854,-3.5680408,-3.215207,-2.4491653,-2.648405,-3.1652098,-3.6508229,-3.1060312,-3.7615554,-4.012924,-4.239465,-4.3621273,-4.468177,-4.516123,-4.584344,-4.620633,-4.592906,-3.6203606,-3.2763655,-4.1566877,-1.2471322,-2.4001565,-2.8789046,-3.1333165,-3.6657755,-4.0850506,-4.292924,-4.400468,-4.4661846,-4.5161285,-4.5785675,-4.6470284,-4.6684985,-4.764768,-4.823382,-4.876883,-4.8240037,-4.7238603,-2.758926,-1.7463338,-2.0716543,-2.291208,-2.9081154,-3.647049,-4.165532,-4.446396,-4.615633,-4.5723658,-4.559655,-4.574199,-4.767782,-4.7997,-4.876317,-4.8407974,-4.744239,-4.7550793,-4.684313,-4.600502,-4.5854626,-4.607098,-4.6064205,-4.5516615,-4.6400814,-4.696896,-4.6253004,-4.652973,-4.662653,-4.522997,-3.2808223,-3.6886277,-4.0262747,-3.8357,-3.3347273,-1.279751,-1.9029416,-2.2322898,-2.39755,-3.0528564,-3.7210321,-4.1331353,-4.334399,-4.517433,-4.6062107,-4.659801,-4.7075787,-4.5740504,-4.662773,-4.561859,-4.3551497,-4.4443426,-4.611161,-4.6360087,-3.1843998,-3.4860342,-4.265891,-4.473282,-4.3832192,-3.2533658,-4.2638645,-4.495273,-4.4881525,-4.29727,-3.927278,-4.1817446,-4.2782507,-4.265181,-4.3881245,-4.545745,-4.5963936,-4.5520334,-4.565446,-4.642381,-2.8303733,-3.4428358,-2.6761897,-2.2396808,-3.428265,-3.987411,-4.257143,-4.362402,-4.409756,-4.345086,-3.6583169,-0.8875374,-2.286481,-2.7812364,-2.9987566,-3.3116283,-3.6266937,-3.7548246,-2.643115,-2.4868376,-3.1191282,-3.5222278,-3.623599,-3.8032026,-4.0419455,-3.9286427,-4.1622505,-4.306932,-4.296786,-4.099777,-4.1348724,-4.24224,-4.1143885,-4.040619,-4.0083685,-3.493723,-3.207639,-3.487957,-3.7706575,-4.015265,-4.2089286,-4.2130814,-4.140847,-1.0614758,-2.5775309,-2.8740976,-3.0131226,-1.2110844,-2.4110365,-2.6309495,-2.1795506,-2.875988,-3.263031,-3.5527103,-3.5875168,-3.6304429,-3.6279764,-3.6809783,-3.7124333,-3.6638334,-3.762534,-3.7004597,-3.6315053,-3.8169098,-3.8010085,-3.8175359,-3.680951,-3.6382318,-4.2359853,-3.8598523,-3.3230047,-2.1436667,-2.9112742,-3.1054802,-3.731855,-3.9057803,-3.815672,-3.3527315,-3.227644,-3.693107,-3.8529768,-3.5754757,-3.8949285,-3.9924765,-3.808913,-3.8261936,-4.2020464,-4.175782,-3.6104379,-3.3610084,-3.5105834,-2.9107795,-3.7224827,-3.831914,-3.2212934,-3.3343093,-1.3155107,-2.6017108,-3.2365732,-3.4898713,-3.5111227,-3.573705,-3.2607946,-3.5105205,-2.2507303,-2.9367394,-3.5052614,-3.6104136,-3.486218,-3.8779879,-3.865007,-3.9701734,-3.9886408,-3.5858896,-3.4549844,-3.0406723,-2.1835914,-3.6392963,-3.2022834,-2.3882055,-2.7034657,-3.0543299,-3.0185928,-3.0298827,-2.750414,-3.2790935,-3.62328,-3.9139721,-3.9566772,-3.752802,-2.3634987,-2.9672904,-2.6448827,-2.6578217,-2.4144983,-3.1103349,-3.1483607,-2.9751887,-3.3628836,-3.7750225,-3.6869674,-3.634035,-3.6288004,-3.5226367,-2.9680538,-3.0173094,-2.8730917,-3.173035,-2.7654405,-2.8102012,-2.64994,-2.5016565,-2.1269302,-1.9470719,-2.2713902,-2.9833002,-3.291833,-3.2912374,-3.2675486,-2.8453732,-2.5863657,-2.4747438,-2.6779215,-2.509964,-2.2460527,-2.9861321,-3.4413168,-3.2905157,-3.652485,-3.0735638,-3.4727836,-3.7461095,-3.6016183,-3.5410619,-3.2284079,-3.0541134,-3.3625746,-3.5161505,-3.2947931,-3.2698882,-3.30134,-3.0150352,-3.1912181,-3.288044,-3.3840876,-3.3721228,-3.4421372,-3.4978015,-3.5245795,-3.6078033,-3.6309645,-3.4539857,-2.7489018,-2.9038205,-3.6179671,-2.6073587,-3.0901208,-2.9250689,-3.3265257,-3.5939238,-2.847828,-2.7504761
+-1.959427,-2.7194285,-3.1435728,-3.5755973,-3.8418968,-3.9930153,-4.137024,-1.8179773,-1.6262869,-2.3116257,-2.4392915,-2.7102308,-2.9561958,-3.195435,-3.4897122,-3.7239928,-3.9425604,-4.0777493,-4.1600714,-4.2547812,-4.314313,-4.2972116,-3.889615,-4.0742054,-0.9841704,-2.1319032,-2.6016712,-1.8196235,-2.1011872,-1.800584,-2.1955242,-2.463887,-2.8608267,-3.268151,-3.6061773,-3.7389023,-1.0026305,-1.9405018,-2.6261382,-3.0642898,-3.3981595,-3.8713152,-4.201581,-4.26023,-4.211973,-4.092143,-3.7532985,-3.7401962,-4.066385,-4.132612,-4.1436133,-4.245682,-4.3254004,-4.291598,-4.1414137,-4.066569,-4.0197873,-4.1445675,-4.214408,-4.1319714,-4.012127,-4.259515,-4.349279,-4.41214,-4.348154,-4.4282722,-4.441201,-4.3896656,-4.361662,-4.3628855,-4.413743,-1.1262487,-2.7618184,-3.2158325,-3.7336917,-4.1527476,-4.4341,-4.584629,-4.7201195,-4.748308,-4.6826463,-4.743654,-4.616808,-4.62179,-4.657641,-4.6194468,-4.5940185,-4.556264,-4.488945,-4.121083,-2.375596,-2.8576872,-1.5964028,-2.9430165,-3.473241,-4.005331,-4.4186244,-4.591137,-4.6510386,-4.7079673,-4.727029,-4.720358,-4.79366,-4.79257,-4.743093,-4.725074,-4.7301292,-4.744791,-4.6003494,-4.524193,-4.528285,-4.4448204,-4.4133816,-4.466715,-4.4950733,-4.4749117,-4.4511204,-4.47237,-4.474866,-2.943404,-3.747863,-1.6637585,-1.9482862,-3.016612,-3.487332,-2.0246553,-2.0664158,-3.2405913,-3.676157,-4.1205044,-4.399481,-4.4745603,-4.6346703,-4.71811,-4.7407923,-4.760081,-4.6668444,-4.736785,-4.6924796,-4.592585,-4.4762125,-4.5815125,-4.5571995,-1.4763465,-1.9268698,-3.1913056,-3.768679,-4.0634136,-3.013709,-3.9214034,-4.4054747,-4.58554,-4.60497,-4.520419,-1.2143064,-3.304616,-3.739442,-4.0940404,-4.3888254,-4.601473,-4.616461,-4.671715,-4.761306,-4.754756,-4.7607985,-4.681485,-4.589502,-4.582451,-4.675162,-4.7062607,-4.7725186,-4.781548,-4.673791,-3.7811608,-4.0879965,-4.2724586,-4.376423,-4.6027594,-4.6028724,-4.6290407,-4.581918,-4.3808575,-4.1614594,-4.392622,-4.436945,-4.374284,-4.234802,-4.381357,-4.440758,-4.551561,-4.6280966,-4.5524225,-4.5208435,-4.5900927,-4.4341183,-4.455056,-4.5213146,-4.501193,-4.385169,-4.2942557,-4.0154233,-4.3684144,-4.4668827,-4.571246,-4.5645313,-4.4912224,-1.0538397,-2.7738967,-3.239494,-3.4776037,-3.1591399,-3.5604987,-3.8297634,-3.9156516,-3.957853,-3.3187127,-4.137773,-4.2853327,-4.3455915,-4.3469086,-4.407283,-4.4855204,-4.5348206,-4.4981613,-4.4893274,-4.4620924,-4.432872,-4.5348053,-4.565069,-4.5300093,-4.120164,-4.508589,-4.449086,-4.097098,-3.68973,-4.148348,-4.32145,-4.549391,-4.6554356,-4.4440565,-2.6330132,-3.1798418,-4.2652636,-4.4036207,-4.3455677,-4.319617,-4.539001,-4.4634943,-4.500007,-4.6468253,-4.6221104,-4.255664,-4.204482,-4.2774925,-4.083397,-4.17749,-4.2351933,-4.1178603,-3.9236088,-1.4311925,-3.2683623,-3.8276386,-4.1482735,-4.177925,-4.075782,-2.4801767,-2.6748674,-1.5773166,-2.4981253,-3.3881273,-3.650365,-3.7079687,-3.7237992,-3.7321482,-3.09702,-3.4805107,-3.521119,-3.6421642,-3.347206,-3.2791696,-3.470739,-3.7186298,-3.1456735,-3.0850384,-3.4032516,-3.4642832,-3.4577417,-1.9630846,-2.9338436,-3.363945,-3.7559237,-3.9224775,-3.966745,-2.294095,-2.4230692,-1.8784833,-2.5778298,-1.6374238,-2.887105,-3.4127846,-3.5535872,-3.64071,-3.6836152,-3.547181,-3.4763904,-3.5133557,-3.5661702,-3.285116,-3.3063564,-3.313949,-3.4676776,-3.233191,-3.1475828,-3.2870278,-3.3746576,-3.3624191,-2.0748277,-2.9058588,-3.2515528,-3.619885,-3.7674525,-3.8149548,-2.1709995,-2.2740073,-2.304081,-2.651792,-2.965806,-3.2446113,-3.2240758,-3.4531999,-3.7687485,-3.7767372,-3.60287,-3.552466,-3.8961923,-3.8730464,-3.8985057,-3.7660913,-3.6990004,-3.732038,-4.0617456,-3.8998713,-4.009895,-4.085768,-4.060096,-4.15292,-4.179349,-4.2197456,-4.2243557,-4.182475,-4.2112513,-4.154437,-4.1340656,-4.1217556,-4.0635777,-3.8485436,-3.5837045,-4.0118713,-1.3984288,-3.0772579,-1.6409565,-2.5375066,-3.1442344,-1.8142945,-2.294526
+-2.9066434,-4.0409546,-4.258899,-4.322692,-4.280382,-4.3140917,-4.259184,-1.6055418,-1.2858751,-1.973313,-2.6035423,-3.0259633,-3.3842134,-3.6582148,-3.863479,-3.928669,-4.168058,-4.353647,-4.411224,-4.337299,-4.3455467,-4.284459,-4.2353334,-4.2630873,-4.010499,-3.928391,-4.1453223,-0.40958765,-2.0700684,-1.8140194,-2.2542615,-3.3108993,-3.7486634,-4.132662,-4.2242374,-1.5199398,-1.5799019,-2.7381983,-3.486057,-3.9071624,-4.0519514,-4.199724,-4.244939,-4.170985,-4.1611633,-4.111949,-3.5834239,-3.9184256,-4.0767903,-4.1232166,-4.1557055,-4.195093,-4.1808767,-4.1671047,-4.1650233,-4.118164,-4.074357,-4.1210594,-4.13011,-4.1596985,-4.141428,-4.1279473,-4.1796136,-4.171209,-4.1597347,-4.161537,-4.1642504,-4.1539707,-4.140163,-4.1473584,-4.1525083,-3.9790173,-4.134627,-4.124547,-4.149045,-4.1550727,-4.153426,-4.144681,-4.1654706,-4.1208777,-4.127783,-4.1001377,-4.131574,-4.1560025,-4.164524,-4.1807604,-4.172213,-4.1397295,-4.077836,-4.065021,-3.5574799,-1.0783861,-2.0040927,-3.4443636,-3.9497151,-4.124276,-4.1645794,-4.1731873,-4.174454,-4.1692843,-4.154251,-4.1737447,-4.176595,-4.178846,-4.177392,-4.1666756,-4.155576,-4.14396,-4.1256585,-4.1221914,-4.1273,-4.110717,-4.1261826,-4.1534657,-4.153353,-4.1453547,-4.1179247,-3.1710331,-3.9678106,-4.0571632,-3.2046201,-3.854038,-1.1729137,-2.9218524,-3.4345782,-0.59043854,-2.5523796,-3.1282856,-3.596824,-3.9925385,-4.122753,-4.061557,-4.1551514,-4.1429844,-4.173912,-4.20379,-4.1702657,-4.2126846,-4.168133,-4.1575193,-4.130041,-4.2054224,-4.1640162,-4.1384964,-0.64101726,-2.862144,-3.3018055,-3.7346606,-3.600428,-3.9954758,-4.180212,-4.2543187,-4.2180223,-3.3939137,-3.9973717,-4.180854,-4.2104564,-4.267048,-4.2700276,-4.225173,-4.0902276,-4.1496468,-4.2304444,-4.21355,-4.2167797,-4.235572,-4.240777,-4.2882557,-4.274955,-4.2710752,-4.3211675,-4.2860956,-4.114647,-1.4897225,-1.9958485,-3.717722,-4.0931196,-4.2681417,-4.3208055,-4.3446345,-4.246073,-4.1302795,-4.187823,-4.1837664,-4.169113,-4.273961,-4.3337135,-4.321955,-4.319639,-4.365534,-4.3163443,-4.3212147,-4.289336,-4.1702924,-4.3092957,-4.2988987,-4.328165,-4.2337008,-4.192261,-4.1424136,-3.99512,-4.2654657,-4.337496,-4.3624415,-4.380431,-4.3058457,-1.2787126,-1.6952301,-3.3588636,-3.6023726,-3.8047237,-3.8588471,-3.931777,-3.9828815,-4.122619,-4.1688485,-4.278643,-4.2325344,-4.096802,-4.304991,-4.385973,-4.3509846,-4.4392023,-4.391207,-4.4744887,-4.455634,-4.385294,-4.446459,-4.485413,-4.407219,-4.4479456,-4.411262,-4.4660563,-3.8660588,-0.7728024,-2.860588,-3.3327236,-3.5609515,-3.8011737,-3.909595,-3.3066673,-3.3178995,-3.9230938,-4.0579247,-3.9822292,-3.940589,-4.050441,-4.1592283,-4.212901,-4.2305346,-4.224737,-4.045081,-4.126834,-4.2198286,-4.1645565,-4.0790653,-4.118411,-4.300289,-4.105826,-3.0687141,-3.9347959,-4.199172,-4.1250076,-4.190813,-3.7470243,-0.569442,-2.4031396,-1.5240291,-2.8902297,-3.361987,-3.5021849,-3.6584632,-3.7088268,-3.649799,-1.7451979,-2.5942593,-3.1645267,-3.2805297,-3.340043,-3.1955523,-3.4919534,-3.5297656,-3.5498085,-3.6117086,-3.681553,-3.7825584,-3.6772628,-1.7359662,-2.0201247,-2.7383022,-3.4088118,-3.6567106,-3.8268971,-1.2595843,-2.2352524,-2.4215653,-1.9440774,-2.2192686,-3.0266025,-3.52901,-3.6443272,-3.7042768,-3.7387972,-3.767683,-3.805572,-3.8470285,-3.8602629,-3.879181,-3.8546717,-3.8801093,-4.0993342,-3.7734742,-3.7539015,-3.8971972,-3.8450217,-3.9334457,-3.3188813,-1.705387,-3.4201488,-3.745275,-4.050103,-4.2285933,-3.938398,-1.01941,-1.6445236,-2.905033,-3.1186247,-3.367442,-3.4260488,-3.60214,-3.71595,-3.7579784,-3.7385838,-1.2635705,-3.317851,-3.5226238,-3.795083,-4.1027403,-4.187233,-4.1648073,-4.249552,-4.333909,-4.3743596,-4.4703903,-4.433979,-4.4168124,-4.4508,-4.4896135,-4.5255327,-4.466469,-4.5105653,-4.4670362,-4.456842,-4.3517065,-4.235304,-4.023094,-3.5473053,-4.3487606,-4.1125975,-4.182335,-4.1602206,-4.0987287,-4.227803,-4.2754083,-1.146207
+-3.70759,-4.5555797,-4.704101,-4.786296,-4.772349,-4.741125,-4.686064,-1.1798514,-1.6711684,-1.8236927,-2.0785122,-2.6682796,-3.330543,-3.773561,-4.2012234,-4.495795,-4.671097,-4.8335695,-4.9028597,-4.9060764,-4.9202,-4.9070916,-4.9318447,-4.8857346,-4.9171257,-4.446106,-4.650563,-1.6861142,-3.2917476,-3.707991,-3.8676214,-4.0005236,-4.4400315,-4.7615147,-4.6637225,-4.273765,-1.8198999,-3.632648,-4.0605326,-4.2929745,-4.4126863,-4.6254272,-4.754357,-4.651454,-4.6532784,-4.573576,-4.5675616,-4.331952,-4.463411,-4.590419,-4.6996274,-4.7139435,-4.7819,-4.7795944,-4.6996417,-4.6330924,-4.643771,-4.717511,-4.693283,-4.681345,-4.695816,-4.656675,-4.6548862,-4.7140393,-4.7328625,-4.756892,-4.777198,-4.7559342,-4.695532,-4.6345916,-4.487134,-4.228565,-4.3981676,-4.595878,-4.701055,-4.703457,-4.721361,-4.7154856,-4.7609434,-4.638561,-4.3870726,-4.4841666,-4.4562345,-4.5342445,-4.6067777,-4.5720434,-4.462706,-4.285769,-4.270612,-4.2418013,-3.7657156,-1.5513438,-3.412663,-4.0000305,-4.289459,-4.5395584,-4.566459,-4.531083,-4.51918,-4.5970173,-4.6478953,-4.6786933,-4.7384343,-4.710796,-4.590345,-4.650359,-4.6265736,-4.5445166,-4.3523703,-4.236818,-4.2273207,-4.1449866,-4.2580614,-4.3145733,-4.1676264,-4.079571,-4.088959,-4.0905704,-4.113529,-4.1110625,-1.7942845,-3.399622,-3.8404245,-2.046337,-3.466306,-1.8360499,-3.0844698,-3.7415135,-4.182057,-4.4644575,-4.36569,-4.0521393,-3.4869952,-3.8485312,-4.097245,-4.2833595,-4.233269,-4.4290485,-4.4966817,-4.3075333,-2.0964322,-3.8133166,-3.9771996,-3.7371323,-1.5932766,-3.6326163,-4.032351,-4.245858,-1.0381625,-3.0555334,-3.7150457,-4.2929735,-4.3168745,-4.158036,-3.845952,-4.345814,-4.658228,-4.7184324,-4.7014303,-4.2288394,-4.054383,-4.1776376,-4.483322,-4.574663,-4.614102,-4.5766253,-4.697841,-4.8363523,-4.866622,-4.8754387,-4.865225,-4.7333937,-2.4716358,-2.925663,-2.7491589,-4.3073297,-4.6640563,-4.7918253,-4.809101,-4.3838787,-2.7076986,-3.8802447,-4.112015,-4.2191076,-4.306071,-4.7367783,-4.757432,-4.757517,-4.7931814,-4.8126755,-4.841193,-4.77783,-4.564022,-4.4667807,-4.609092,-4.731188,-4.7414856,-4.7295547,-4.6612635,-4.488372,-4.310661,-4.652539,-4.765131,-4.8081417,-4.7338653,-4.699155,-4.4561167,-1.5451659,-3.5577884,-4.008838,-4.276517,-4.3047943,-4.223435,-4.127348,-4.34294,-4.6106415,-4.7420406,-4.6968536,-4.583043,-4.5707827,-4.6241956,-4.693677,-4.782424,-4.803271,-4.8077965,-4.764226,-4.7315693,-4.7674475,-4.8283033,-4.7473598,-4.832568,-4.858646,-4.9280434,-4.5913377,-1.5566388,-3.4132814,-3.9590735,-4.5190787,-4.860321,-4.895682,-4.3072557,-3.785801,-4.411049,-4.6224337,-4.672593,-4.7225475,-4.856467,-4.894229,-4.911023,-4.7075787,-4.3820095,-4.566616,-4.584172,-4.603515,-4.5107985,-4.4519196,-4.3883677,-4.3233004,-4.2966,-3.9931235,-4.07875,-4.696353,-4.8711,-4.895829,-1.9415601,-1.2411286,-2.361382,-2.1914868,-3.2163146,-3.6841574,-3.9389167,-4.1425023,-4.207117,-4.0800166,-1.5628389,-1.4797468,-2.8867722,-3.2046866,-3.3527896,-3.5268197,-3.6371644,-4.0264115,-3.9368207,-3.4740071,-3.5631683,-3.6674447,-3.633041,-3.642315,-3.0308652,-3.346624,-3.660439,-4.0288067,-4.1049414,-1.070484,-2.4751399,-1.9430181,-2.966365,-2.3472514,-3.316976,-3.7900858,-4.0936913,-4.3008757,-4.403259,-4.4372787,-4.5161247,-4.570715,-4.630868,-4.6130123,-4.4830055,-4.257873,-4.3845243,-4.2560205,-3.9451833,-4.044877,-4.1757555,-4.2197084,-4.193739,-4.1766415,-4.334532,-4.511772,-4.69693,-4.6636505,-4.3360167,-0.7268087,-2.1568913,-3.0020323,-3.2954097,-3.558633,-3.886588,-4.1695447,-4.1896033,-4.1443214,-3.1923742,-1.1135325,-3.4067745,-3.9451213,-4.387997,-4.43352,-4.3379154,-4.416944,-4.760769,-4.8468676,-4.8652296,-4.9559846,-4.967964,-4.940522,-4.992428,-5.0369816,-5.023882,-4.9350414,-4.949415,-4.900976,-4.904358,-4.8976364,-4.8439684,-4.509549,-3.5733368,-4.529461,-4.6146946,-3.7629752,-4.488552,-4.578463,-4.752327,-4.85695,-4.5674677
+-3.2337372,-3.949241,-4.00936,-4.050507,-4.0188417,-3.979549,-3.8895552,-1.18519,-2.5420988,-1.2082751,-2.5650141,-2.9778638,-3.4284554,-3.8167262,-4.0683103,-4.1537266,-4.162395,-4.144684,-4.133106,-4.1049485,-4.080476,-4.053829,-3.9806228,-4.0418735,-4.014368,-3.9012628,-3.8576946,-3.8712506,-3.7213945,-3.1075149,-3.4374318,-3.6722074,-3.8804598,-3.886795,-3.8474324,-3.582024,-3.5232952,-3.631093,-3.7108126,-3.691597,-3.731128,-3.8308322,-3.8316412,-3.769795,-3.815482,-3.7907958,-2.6110198,-1.5294614,-3.1111832,-3.606355,-3.9240353,-3.9961762,-4.0047,-3.9934764,-3.959079,-3.8866837,-3.895265,-3.9063141,-3.8124833,-3.704783,-3.7396495,-3.7369955,-3.7910676,-3.911252,-3.9672985,-4.010917,-3.9997907,-3.9407196,-3.8047097,-3.7484012,-3.6713724,-3.550087,-3.655713,-3.8215415,-3.9168944,-3.9113855,-3.94653,-3.904917,-3.9259803,-3.9417243,-3.8427687,-3.8021958,-3.7317548,-3.8390832,-3.8568974,-3.8184855,-3.7499557,-3.697859,-3.7601748,-3.898031,-3.2925942,-3.2896204,-3.4795973,-3.6994462,-3.794918,-3.9418895,-3.8920684,-3.7661567,-3.7800038,-3.8351293,-3.9265203,-4.0223064,-4.0024033,-3.8795764,-3.8181984,-3.8423069,-3.741316,-3.6777031,-3.635585,-3.6542306,-3.6658213,-3.6341796,-3.7498126,-3.7087574,-3.5988693,-3.4473605,-3.3954077,-3.5359755,-3.5861106,-3.6266446,-1.078765,-2.3765955,-3.0921412,-3.2923727,-3.4703522,-3.4913564,-3.505629,-3.5777144,-3.7470958,-3.8573022,-3.7307608,-3.5664444,-2.3507972,-3.1514935,-3.5171962,-3.6074576,-3.5796938,-3.7397237,-3.7428436,-3.5407605,-3.5457206,-3.7097535,-2.3540173,-3.163963,-3.5521162,-3.70324,-3.6820443,-3.747118,-3.6421683,-3.7787058,-3.86277,-3.915383,-3.6729703,-3.7660694,-3.5336084,-3.769871,-4.046009,-4.078353,-3.8911269,-3.6717365,-3.5561917,-3.685608,-3.97826,-3.9778423,-4.002299,-3.9373722,-4.1003222,-4.187505,-4.1889405,-4.10436,-4.118784,-3.9585114,-1.5547932,-3.00314,-3.413557,-4.202251,-4.2652197,-4.302429,-4.2236776,-3.9068651,-3.9263363,-3.838265,-3.7609353,-3.761815,-3.8208132,-4.259943,-4.1942854,-4.123312,-4.2794085,-4.2901745,-4.219558,-4.0774374,-3.9353137,-3.930948,-4.0390162,-4.2185802,-4.1867304,-4.2027683,-4.162668,-4.0386944,-3.9593475,-4.2887807,-4.326934,-4.3032894,-4.2143583,-4.167677,-3.9263926,-1.8570509,-3.4587314,-3.8563623,-3.912814,-3.8446689,-3.8117657,-3.840219,-4.1283617,-4.2812123,-4.3341327,-4.295554,-4.1789036,-4.1072826,-4.120224,-4.237894,-4.2371206,-4.304771,-4.2896786,-4.2493978,-4.230135,-4.3060656,-4.2812448,-4.106829,-4.3017244,-4.361192,-4.3299065,-3.8057714,-2.7179494,-3.3777294,-3.8285189,-4.197029,-4.372327,-4.191674,-3.920909,-1.5500687,-3.4467664,-3.9562721,-4.049368,-2.995254,-4.217446,-4.335437,-4.272558,-3.9744444,-3.6289198,-3.9402804,-4.035873,-4.047296,-3.8891459,-3.83912,-3.7354813,-3.713161,-3.6875057,-3.3445568,-3.6282723,-4.1675477,-4.351803,-4.338181,-3.7252424,-0.9313051,-2.159228,-1.9508226,-3.0017717,-3.4354668,-3.6520362,-3.845693,-3.9866714,-3.3020542,-1.550876,-1.4713137,-2.6521935,-2.8569949,-3.069496,-3.2358851,-3.4990363,-3.83957,-3.860714,-3.9220238,-3.807075,-3.7992594,-3.6787572,-3.4676814,-3.549667,-3.6760378,-3.7639701,-4.0235014,-4.0016932,-2.6319835,-2.1710932,-1.18461,-2.8679256,-1.8671075,-3.0018146,-3.4976003,-3.8836834,-4.191234,-4.328928,-4.355925,-4.4196224,-4.4381227,-4.3816953,-4.3513346,-4.196299,-4.09295,-4.152684,-3.9250572,-3.6562564,-3.7361333,-3.8790526,-3.840275,-2.8285582,-3.109994,-3.7975273,-4.0604153,-4.196759,-4.2643795,-3.1773458,-0.50512725,-2.046235,-2.4863725,-2.8227122,-3.356573,-3.6860619,-3.9126868,-3.9678936,-3.8458393,-0.913782,-1.5166698,-2.8942986,-3.5451503,-4.0003004,-4.0012016,-3.7881002,-4.036757,-1.3811017,-3.5140738,-4.0185785,-4.28139,-4.394402,-4.380311,-4.3827877,-4.3747807,-4.3037963,-4.1716785,-4.217962,-4.149619,-4.153112,-4.1278,-4.0691767,-3.9385316,-1.7692734,-3.3987617,-3.8057556,-3.9135242,-3.9483023,-4.179092,-4.27164,-4.192255,-4.2156157
+-2.063818,-2.590596,-2.8808417,-2.8946772,-2.9221725,-3.034351,-2.7382448,-1.3373121,-1.9194844,-1.24608,-1.9800097,-2.3951244,-2.59524,-2.7628753,-2.7950938,-2.758331,-2.7961006,-2.9627252,-3.0643187,-3.0438542,-2.9133291,-2.894496,-2.803865,-2.8925543,-2.8283372,-2.761287,-2.7076664,-2.697382,-2.7290392,-2.6775084,-2.7599263,-2.7099795,-2.8132682,-2.9436684,-2.7855108,-2.3083076,-2.6623938,-2.7261624,-2.678496,-2.6668222,-2.713358,-2.863679,-2.926952,-2.8464763,-2.7964327,-2.7956123,-2.6499796,-1.9529903,-2.515672,-2.6704562,-2.7702107,-2.8412375,-2.8388271,-2.8157344,-2.833095,-2.8494236,-2.8200269,-2.771,-2.7207298,-2.6942039,-2.7133856,-2.7291021,-2.8088732,-2.9333708,-3.1385055,-3.372682,-3.1473274,-2.9623497,-2.8452144,-2.845871,-2.7362833,-2.738336,-2.7162874,-2.7794986,-2.8343835,-2.7970972,-2.8273363,-2.857676,-2.886576,-3.3549533,-3.348887,-2.9957075,-2.9825945,-2.9895744,-2.9281347,-2.8779292,-2.8992434,-2.9766068,-3.030833,-2.8257298,-2.8161898,-2.7793088,-2.8052726,-2.8905458,-2.9258304,-2.9553452,-2.881545,-2.806454,-2.8215194,-2.8608143,-2.8959975,-2.9576685,-2.8887327,-2.853365,-2.8745813,-2.8881445,-2.852292,-2.8562074,-2.8590674,-2.874307,-2.867196,-2.9613206,-2.9895763,-2.932253,-2.700927,-2.6732912,-2.790764,-2.8216047,-2.8162422,-2.6423123,-1.974665,-2.4617734,-2.4595566,-2.4790354,-2.3637242,-2.5514119,-2.6503048,-2.6155708,-2.7458239,-2.8026636,-2.6650949,-2.4997697,-2.569877,-2.6088088,-2.5854182,-2.59947,-2.5417814,-2.6899705,-2.6197405,-2.5702868,-2.558287,-2.4855423,-2.411841,-2.5848274,-2.6373808,-2.729578,-2.6657424,-2.651167,-2.787212,-2.77034,-2.8785357,-2.953763,-2.7269223,-2.412821,-2.5414054,-2.6935482,-2.8567169,-2.8168025,-2.7199554,-2.43926,-2.55857,-2.6622808,-2.9102855,-2.7285523,-2.6830559,-2.674971,-2.804681,-2.9471045,-2.7674203,-2.6947365,-2.7165723,-1.8263534,-1.1260358,-1.1486398,-1.7452163,-2.4295716,-2.762477,-2.8569636,-2.743537,-2.6148043,-2.5262723,-2.3018546,-2.4083576,-2.3435643,-2.383996,-2.659525,-2.786584,-2.4426668,-2.5480509,-2.8393188,-2.8942032,-2.3573842,-2.316417,-2.3314998,-2.3315077,-2.4833374,-2.493754,-2.3829079,-2.3689117,-2.4529185,-2.39792,-2.604005,-2.503574,-2.9278774,-2.6305985,-2.3640645,-2.2522478,-2.2572372,-2.315125,-2.4012408,-2.2840042,-2.2804534,-2.2518103,-2.3855193,-2.6003764,-2.6018503,-2.587359,-2.6081152,-2.5160275,-2.3862815,-2.3707914,-2.6178336,-2.723647,-2.7168627,-2.6634054,-2.6234534,-2.6145523,-2.679498,-2.7284608,-2.3277624,-2.4351568,-2.5197213,-2.6079774,-2.261763,-2.2263994,-2.3997486,-2.4470935,-2.4585595,-2.4896972,-2.4460158,-2.396816,-2.340458,-2.3987286,-2.4199655,-2.4352775,-2.3753207,-2.4450703,-2.5052843,-2.5691261,-2.4107661,-2.361011,-2.5401964,-2.5730128,-2.5863183,-2.4296877,-2.4278908,-2.388309,-2.4122174,-2.4303417,-2.3145177,-2.5603862,-2.6198993,-2.6854746,-2.681342,-2.4526906,-1.140826,-2.118273,-1.4599364,-2.5705314,-2.7485695,-2.7607265,-2.7432296,-2.7573898,-2.6154501,-2.322261,-1.2450478,-2.3586824,-2.4951272,-2.6452966,-2.61975,-2.6023693,-2.7336755,-2.7371373,-2.6544359,-2.6807256,-2.6613083,-2.558621,-2.5061107,-1.538088,-2.191098,-2.453354,-2.6911588,-2.7527432,-2.4110441,-2.3891687,-2.1132874,-2.4729552,-2.557179,-2.769022,-2.8091927,-2.8346307,-2.871303,-2.8848858,-2.8840935,-2.8753939,-2.856779,-2.8325186,-2.764627,-2.7545962,-2.7803378,-2.7881699,-2.6789818,-2.6376407,-2.6849866,-2.7167735,-2.6607175,-2.5705695,-1.7218505,-2.2936168,-2.5683851,-2.712986,-2.7779155,-2.586032,-0.84410095,-1.8996634,-2.2152824,-2.5254593,-2.6917582,-2.8093505,-2.8321567,-2.830411,-2.722454,-2.6138434,-1.9206153,-2.5433106,-2.7705202,-2.8517845,-2.7609165,-2.6727548,-2.7888272,-2.8549585,-2.902372,-3.0027256,-3.0772734,-3.1364796,-3.1460283,-3.125184,-3.1439772,-3.0664177,-2.940351,-3.128886,-3.0053687,-3.0603964,-3.0996861,-2.8070967,-2.7512395,-2.7191918,-2.8312752,-2.8732975,-2.90382,-2.863975,-2.904695,-2.99739,-3.1305332,-2.9479063
+-2.4350743,-3.5816252,-4.0428295,-4.0713587,-4.1845045,-4.2710524,-3.9708214,-3.3097062,-3.5759013,-2.3527904,-2.740485,-3.2772923,-3.5861828,-3.7095363,-3.6488707,-4.0165696,-4.1314807,-4.189349,-4.2263536,-4.1289587,-3.9800868,-3.7333882,-3.6806176,-3.7075965,-3.6620288,-3.6724532,-3.6955194,-3.5911086,-3.6946185,-3.6424294,-3.615407,-3.732069,-3.7886078,-3.7544122,-3.6721854,-3.586024,-3.5611506,-3.5439744,-3.6510806,-3.6902483,-3.723021,-3.868205,-3.8738391,-3.669476,-3.655097,-3.6319423,-3.638534,-3.6733134,-3.725991,-3.7195258,-3.7324064,-3.6503801,-3.706143,-3.7163067,-3.743217,-3.7441516,-3.791298,-3.7548075,-3.7226772,-3.6978142,-3.7302551,-3.7948267,-3.9380662,-3.9734879,-4.0386753,-3.9918041,-3.8434644,-3.7974343,-3.8019037,-3.8653753,-3.7672112,-3.7195597,-3.7061763,-3.724197,-3.8120255,-3.8033297,-3.831808,-3.9008992,-3.9805727,-4.1903696,-4.1844783,-3.7974248,-3.8354843,-3.8560207,-3.8013208,-3.846093,-3.9517567,-4.040947,-4.0547447,-4.0117216,-3.8298059,-3.8655639,-3.90684,-3.9274302,-3.8993998,-3.8075666,-3.7753973,-3.809719,-3.910589,-3.8770266,-3.864677,-3.832963,-3.783254,-3.868272,-3.9297407,-3.819733,-3.8458557,-3.8073344,-3.8564072,-3.9039013,-3.9191878,-3.9635816,-3.9994535,-3.9880981,-3.916555,-3.848824,-3.886985,-3.857492,-3.73884,-3.7434855,-3.664714,-3.7055817,-3.7222016,-3.7458768,-3.7342434,-3.7463322,-3.8084667,-3.8732553,-4.0268564,-3.7204628,-3.8776035,-3.887199,-3.8049507,-3.809377,-3.8023658,-3.8246918,-3.8794167,-3.8977263,-3.9375176,-3.872414,-3.7576382,-3.4944339,-3.796071,-3.8760579,-3.830117,-3.8808131,-3.9474084,-3.8899612,-3.818198,-3.8728578,-3.9617243,-3.99833,-4.00878,-3.9254842,-3.97233,-3.924787,-3.8624144,-3.8499258,-3.6604447,-3.7496564,-3.6986117,-3.975297,-4.1764474,-4.0899796,-3.9325666,-3.8192463,-3.8739834,-4.117266,-4.000979,-4.0665927,-4.290265,-2.1485572,-2.1800175,-1.952689,-2.8862705,-3.652469,-3.9691315,-4.276575,-4.1806936,-3.3382628,-3.669607,-4.32283,-3.944016,-3.9698205,-4.0088296,-3.9333968,-3.9618735,-3.976912,-4.02449,-4.1576204,-4.223361,-4.149753,-4.1717587,-4.0484953,-4.0952806,-4.0699425,-4.217552,-4.0965557,-4.0899286,-4.073739,-4.0743656,-4.183178,-4.435378,-4.449538,-4.1736774,-4.1364374,-4.280757,-3.9706783,-4.1634436,-4.224698,-4.1340055,-4.083544,-4.070785,-4.0634193,-4.0739307,-4.112961,-4.2127514,-4.334053,-4.4106045,-4.4004397,-4.4229684,-4.5087533,-4.5115824,-4.51492,-4.4688354,-4.4535756,-4.4989195,-4.531206,-4.542375,-4.305427,-4.141973,-4.2367153,-4.3277617,-3.840233,-3.396316,-3.8693378,-4.02174,-4.235757,-4.2335663,-4.2130947,-3.967359,-3.9908328,-4.070337,-4.116499,-4.080312,-2.4126997,-3.6650314,-3.9684682,-4.0796375,-3.9143314,-3.9195094,-3.9728737,-4.1668835,-4.138365,-4.026074,-4.0580277,-4.0782356,-4.185958,-4.14882,-2.7400205,-3.360187,-3.8434496,-4.1542435,-4.3541565,-1.5268981,-2.4382582,-2.6528773,-2.375391,-2.9797351,-3.3614633,-3.5647848,-3.8100488,-4.171796,-4.084625,-3.9188395,-2.5920448,-3.2249198,-3.4998298,-3.822776,-3.914894,-4.005061,-4.1454163,-4.3981814,-4.306274,-4.1389256,-4.1438866,-4.136636,-3.9712992,-0.95448035,-2.5310955,-2.8775697,-3.0628133,-3.2885756,-3.2943134,-2.7571106,-2.8511884,-3.485935,-3.458565,-3.567385,-3.8046927,-3.9745874,-4.141306,-4.2179594,-4.3231287,-4.4109135,-4.4559436,-4.510535,-4.3661256,-4.2245426,-4.1748495,-4.1951027,-4.0457954,-4.1534376,-4.305628,-4.429884,-4.3769207,-4.113702,-3.8758235,-1.5427254,-3.1327348,-3.4393582,-3.9180431,-2.8163388,-1.2677149,-2.1771708,-2.5833323,-2.8493092,-3.3447542,-3.4253361,-3.5886378,-3.8222752,-3.7179778,-3.7516,-3.6988738,-4.033021,-4.2818317,-4.217222,-4.129305,-3.908978,-3.827481,-4.2090244,-4.283536,-4.296799,-4.351078,-4.297023,-4.3591886,-4.3465285,-4.3623853,-4.291958,-4.2131147,-4.244123,-4.158518,-4.2127247,-4.0468082,-3.739429,-3.7417076,-3.6415823,-4.008338,-4.1351705,-3.8030603,-3.7066498,-3.8620248,-4.151879,-4.0364237,-3.6281953
+-1.4864923,-1.9790217,-2.1913195,-2.201485,-1.9650265,-2.712993,-2.814539,-2.7429318,-2.9613018,-2.7389188,-3.0187392,-3.1970773,-2.9065156,-2.9590201,-2.3938987,-3.0296824,-2.9734993,-3.0465522,-3.2044203,-3.3892996,-3.2819004,-3.21979,-1.3623539,-2.614195,-2.7342987,-2.8710482,-2.960905,-2.8625891,-3.1209764,-3.0404472,-3.0978508,-3.236646,-3.345703,-3.4902146,-2.6584787,-2.9336677,-3.3923,-3.4619617,-1.1233436,-2.696831,-2.8653722,-2.4528782,-2.9743664,-3.050909,-3.1016326,-3.050115,-3.134696,-3.1755776,-1.5677952,-2.5138197,-2.0672894,-2.230773,-2.3514395,-2.3054276,-2.508425,-2.698967,-2.843943,-3.0034444,-3.0018492,-2.7315443,-3.0760977,-3.1443996,-3.0998292,-3.2632535,-3.3698487,-3.3349738,-3.306234,-3.4327602,-2.9977994,-2.4083114,-2.664773,-1.9192346,-2.8652558,-3.1032271,-2.3754997,-3.113521,-2.376761,-3.0448253,-2.7675767,-2.2660878,-2.997745,-2.6751227,-2.9858809,-3.076367,-1.9880575,-2.2279418,-2.3685422,-2.661156,-2.7516718,-2.332551,-1.6059759,-2.2095318,-2.6315262,-2.7652667,-3.1123009,-3.1878445,-1.4308063,-2.280036,-2.572855,-2.2130594,-2.7385454,-1.6337978,-1.9067152,-1.9019134,-2.2589815,-1.9277371,-1.985308,-2.33797,-2.4226563,-2.544426,-2.6690574,-2.9295654,-1.723838,-1.9779698,-2.5580313,-2.6067748,-1.48324,-1.651104,-1.8848833,-2.0976033,-2.4282484,-2.5505462,-2.7812357,-3.0463896,-0.91589326,-2.165183,-2.579218,-2.1319826,-1.6951089,-1.7346461,-2.2539775,-2.3361487,-2.307304,-2.1079264,-2.6090684,-2.4660108,-1.7501649,-2.448718,-2.3275733,-1.4797392,-2.1242309,-2.7475538,-2.8483002,-3.02445,-2.2136462,-2.6288145,-1.7520713,-2.1798668,-2.718688,-2.8367107,-2.9546497,-1.7992983,-2.536738,-2.9325962,-3.1208918,-3.2441497,-3.3724947,-3.201117,-3.4137363,-3.3755038,-2.711718,-2.200929,-3.0048797,-1.0432117,-2.5784569,-3.0859532,-3.2105682,-3.2340584,-3.3099725,-3.2336767,-3.2322187,-3.3759568,-3.4748948,-3.304041,-1.2643539,-2.5959258,-3.0244787,-3.2862365,-3.291615,-3.2223206,-3.2012725,-3.1942348,-3.0808716,-3.0652404,-3.4038525,-3.3783054,-3.1862755,-3.0005007,-3.3012,-2.3138514,-2.6576622,-2.8882065,-2.503309,-2.6359992,-2.9432738,-2.7603765,-2.4668632,-2.7833087,-2.8613343,-2.7904744,-2.665703,-2.967049,-2.9989734,-3.0596304,-3.165256,-3.2418544,-3.272088,-3.2183657,-3.2809048,-3.0203764,-1.9568125,-2.7180188,-2.8886619,-2.2815506,-2.8106298,-3.0863593,-3.2915654,-3.4518635,-3.5826983,-3.6067505,-3.6843674,-3.6901805,-3.709411,-3.6983309,-3.7850003,-3.8356247,-3.8681197,-3.768383,-2.8838658,-3.357314,-3.5800264,-3.8883116,-3.6644886,-3.4483519,-3.2585373,-3.5729756,-3.5489373,-3.6040874,-3.65029,-3.6263232,-3.7667568,-3.7667537,-3.7397108,-4.0865674,-3.878364,-3.8596995,-3.5658236,-3.4554958,-3.4384584,-3.7787535,-3.8679185,-3.9050643,-3.8172338,-3.6361046,-3.7653594,-3.7689962,-3.975051,-4.0389476,-4.001689,-3.8844879,-4.0751047,-3.8869162,-3.5465374,-3.4353163,-3.5610125,-3.6492023,-3.5853186,-3.1352384,-3.4411788,-3.7969322,-3.4805632,-3.580907,-3.6059952,-3.6055927,-3.865509,-3.4093194,-3.6215136,-3.725872,-3.8119578,-3.8591275,-3.46301,-3.6725998,-3.432574,-2.9451282,-3.0256615,-3.1232963,-3.2127964,-3.3535175,-3.4995847,-3.4437292,-3.4860702,-3.0314398,-2.910039,-2.7057981,-3.060351,-3.375851,-3.2447681,-3.0955627,-3.245151,-3.2263212,-3.2931366,-3.2676706,-2.9513884,-2.924044,-3.2568436,-3.7552214,-3.5910308,-3.50851,-3.5951276,-3.1607788,-2.5986276,-2.4186034,-2.5024793,-2.5675573,-2.3718154,-1.8927504,-2.3210037,-2.4682279,-2.3348947,-2.1423955,-1.9375247,-1.5180444,-1.6330516,-1.6945744,-1.4358649,-1.6430622,-1.2527263,-1.4517521,-1.522587,-1.7466515,-2.150018,-1.8196675,-1.9080173,-1.8592474,-1.9293482,-1.8803922,-1.7348222,-1.6812528,-1.6360071,-1.9031751,-2.1075993,-1.9186586,-1.9065275,-1.8281585,-1.7965041,-1.7465924,-1.5420665,-1.1783158,-0.73537284,-1.0293099,-1.3667201,-1.0788504,-1.4578307,-1.9649171,-1.960267,-1.3496872,-1.4296263,-1.7432232,-1.7701703,-2.604809,-2.2187653,-2.565598,-2.6204407,-2.4189153,-2.3326836
+-1.5365314,-1.9155208,-1.9615141,-2.3398848,-2.3699558,-2.3102434,-2.6016495,-2.5152202,-2.3892548,-2.450046,-2.5201147,-2.4710612,-1.7869192,-2.3973608,-2.3836036,-2.546931,-2.6274276,-2.71696,-2.7414484,-2.6813583,-2.6076455,-2.5853555,-2.1000886,-2.299951,-2.4169364,-2.4250607,-2.4380026,-2.4525008,-2.3550978,-2.1167462,-2.3484902,-2.5536819,-2.7075827,-2.6476784,-2.621932,-2.378972,-2.4707751,-2.557899,-2.022398,-2.5129414,-2.4540458,-2.492031,-2.435752,-2.493075,-2.3895226,-2.4832215,-2.4882126,-2.49052,-1.888834,-2.5083342,-2.247078,-2.4483578,-2.5199099,-2.5401406,-2.6287048,-2.553979,-2.6198888,-2.5545807,-2.617592,-2.5961823,-2.5872207,-2.640952,-2.3499172,-2.2794385,-2.375368,-2.6289945,-2.5438871,-2.193971,-2.4136336,-2.0163774,-2.4852014,-2.1129565,-2.6261635,-2.744873,-1.7687958,-2.5600243,-2.0952337,-2.570863,-2.3168979,-2.6248636,-2.7711883,-2.602283,-2.6833127,-2.8537352,-2.079156,-2.3855174,-2.6671162,-2.777444,-2.8509145,-2.849399,-2.4023108,-2.6020048,-2.7824883,-2.7363896,-2.8711703,-3.003242,-2.0480309,-2.6065469,-2.7973092,-2.5472403,-1.2603576,-1.6688718,-2.3310118,-2.3193982,-2.471467,-2.5245392,-2.3938437,-2.5965014,-2.5882263,-2.662527,-1.7993929,-2.4917307,-2.7205114,-2.2770743,-2.7412205,-2.8769736,-2.9417403,-2.9100869,-3.017281,-2.9653363,-3.1379929,-3.0750415,-3.1924407,-3.4531436,-2.8858194,-3.0672874,-3.3253434,-1.8781608,-2.4655175,-2.4998598,-1.7705271,-1.9890412,-2.4714775,-2.578072,-2.8449192,-3.027844,-3.1852908,-3.2835355,-3.3388076,-3.2646928,-2.6901188,-3.0254111,-3.214865,-3.1637611,-3.0190601,-3.0456133,-3.1873474,-3.2458007,-3.2450871,-3.2185416,-3.3544083,-3.468913,-3.305346,-3.005126,-2.7128344,-2.7635913,-3.0782557,-0.8778169,-2.4522667,-2.350833,-2.4782262,-2.7018418,-2.989905,-2.9250264,-3.0379028,-3.0578122,-3.0178275,-2.992589,-3.1347795,-3.1368072,-1.5650841,-2.4222806,-2.7942426,-2.110277,-2.28298,-2.2685843,-2.480059,-2.7621467,-3.0454416,-3.2571049,-3.306652,-3.2210567,-3.0914783,-3.1327,-3.0116363,-1.3994864,-2.2274508,-2.2892854,-2.3080604,-2.141835,-2.5165672,-2.6194935,-2.497717,-2.5896754,-2.5572505,-2.738913,-1.7754062,-2.4772966,-1.9619163,-2.1411922,-2.3280928,-2.0296834,-2.171482,-2.3333833,-2.056601,-2.3224993,-2.565495,-2.329555,-2.3774714,-2.6550286,-2.4698653,-2.5745583,-2.2230945,-2.1005123,-2.2577527,-2.358573,-2.6265547,-2.7771754,-2.8834,-2.9670105,-2.9710436,-3.037304,-3.141243,-3.1207576,-3.0926335,-3.151743,-2.6395278,-2.823876,-2.5356417,-2.3011093,-2.248091,-2.4802015,-2.1756592,-2.185232,-2.345077,-2.2637534,-2.2998438,-2.4295537,-2.6373987,-2.57452,-2.7560015,-2.3893604,-2.3758488,-2.4243543,-2.0912576,-2.2480338,-2.009234,-1.7500371,-1.8288976,-1.6789037,-1.745492,-1.7946142,-1.5187551,-1.4383808,-1.7533869,-1.7346857,-1.743493,-1.8048724,-1.3922042,-1.8527553,-1.8471524,-1.9842991,-1.7659079,-1.7246869,-1.9625019,-2.0830626,-2.008484,-1.7008141,-1.9273765,-1.9619287,-1.9048789,-1.9214729,-2.030223,-1.7471788,-2.0899277,-2.0430112,-2.00773,-1.869421,-1.9943923,-1.9566022,-1.9070529,-1.9748596,-1.7133348,-1.4696282,-1.9540199,-1.9261224,-1.9872023,-2.16188,-2.2706184,-2.2951617,-2.313816,-2.2299714,-1.9160885,-1.689552,-2.186429,-2.1890354,-2.1109412,-2.0796719,-2.2725005,-2.3002515,-2.2764668,-2.2903383,-2.2981505,-2.0424085,-2.2331872,-2.0472612,-2.2255893,-2.1894896,-1.9335824,-1.4595028,-1.686771,-1.7427176,-2.1207194,-2.0321841,-1.4432377,-1.5544783,-1.9209268,-2.1757545,-2.1900792,-2.1646314,-2.2428405,-1.8325971,-2.1772628,-2.0856614,-1.9470497,-2.1883602,-1.7595447,-2.1075625,-2.245441,-2.2753396,-2.2919285,-2.2671833,-1.960518,-2.1389775,-2.1514974,-1.8713704,-2.1007304,-1.8382316,-2.0238066,-2.3906555,-2.3696644,-1.4519314,-1.1769032,-1.6583343,-2.1045675,-1.7537595,-1.9214674,-1.8328385,-1.8842789,-1.985037,-2.3090994,-1.8725574,-2.2018857,-2.3199124,-2.0200825,-2.101584,-2.4529312,-2.4359024,-2.3454106,-2.6606889,-2.171955,-2.5556421,-2.3065643,-2.3718367,-2.316319
+-1.2421039,-2.1177344,-2.2978063,-2.569313,-3.1463244,-3.102911,-2.8975606,-2.9294138,-2.8843455,-2.818188,-2.826687,-2.8987134,-2.786813,-3.1822243,-3.3585925,-3.5401716,-3.5606353,-3.5225933,-3.225218,-3.1576054,-3.2254848,-3.1118844,-3.028251,-3.319921,-3.0453382,-3.184416,-3.357945,-3.2590494,-3.3909876,-3.2756958,-3.2450144,-3.3171437,-3.5369558,-3.334824,-3.1591964,-3.1831522,-3.2562132,-3.216863,-3.296192,-3.4278429,-3.3688807,-3.4653459,-3.149973,-3.1753597,-2.8924599,-3.1763506,-3.007418,-3.038162,-2.730073,-3.0843213,-3.0126038,-3.076325,-3.1761415,-3.2654905,-3.325385,-3.0308526,-3.2662635,-3.379755,-3.2165098,-3.1287854,-3.3221028,-3.3130534,-3.1643844,-3.173205,-3.1881282,-3.26729,-3.391252,-2.7793133,-2.911644,-3.1699378,-3.34494,-2.9846315,-3.0882258,-3.2508893,-3.1572852,-2.6104643,-2.916698,-3.295126,-3.2361512,-3.3674076,-3.3595,-3.467098,-3.5980115,-3.6566749,-3.687429,-3.7467432,-3.714055,-3.7268207,-3.7133884,-3.6025138,-2.806816,-3.1667862,-3.396975,-3.1170936,-3.4026046,-3.4504495,-3.4096391,-3.482085,-3.4798641,-3.5619047,-1.8366798,-2.7455754,-3.1563387,-3.0237813,-3.1622,-3.2917686,-3.3708506,-3.482412,-3.5379395,-3.707691,-3.7275383,-3.74856,-3.6318865,-3.7155385,-3.6617448,-3.8341908,-3.8451867,-3.5519114,-3.2845993,-3.6036756,-3.7629445,-3.9644399,-4.0286355,-4.1111236,-4.055234,-4.031534,-3.4500437,-2.0003629,-3.1518824,-3.5313764,-3.823813,-3.911859,-3.8749971,-3.8706577,-3.8947284,-3.8181548,-3.9107985,-4.0573244,-4.0544477,-3.9023976,-3.830504,-3.9472437,-4.0616574,-4.1194386,-4.103196,-3.9585152,-3.9470935,-3.9581835,-3.9221866,-3.9091873,-4.0080867,-4.0009127,-3.9409676,-3.855935,-3.7458224,-3.4403796,-2.2109272,-1.887342,-3.120167,-3.0623217,-3.0970492,-3.3355985,-3.4171946,-3.418301,-3.4713213,-3.5202973,-2.1900125,-2.935165,-3.253635,-3.2203922,-2.7390003,-3.1696332,-3.091649,-2.8191497,-2.1891108,-2.978124,-3.0201373,-3.3269427,-3.5659127,-3.6518342,-3.643867,-3.299396,-2.9577985,-2.5146983,-2.9526434,-2.5871696,-2.761425,-2.891191,-2.9821076,-3.116175,-3.3836782,-3.5616612,-3.6227694,-3.4121008,-3.4650407,-3.5112348,-3.315397,-3.5344,-3.2905588,-3.2509158,-3.1422606,-3.1721768,-3.2036302,-3.2538562,-3.300956,-3.4176283,-3.5281725,-3.477011,-3.5955765,-3.606949,-3.5723748,-2.893598,-3.3707302,-2.8934288,-2.9179573,-2.996028,-3.1935422,-3.4590352,-3.5035977,-3.51682,-3.5024235,-3.5547836,-3.672862,-3.7385623,-3.7226415,-3.6327856,-3.5913982,-3.672615,-2.9076965,-3.048903,-3.2623107,-3.426347,-3.2820964,-3.2114718,-3.1768613,-3.391505,-3.3622665,-3.4331536,-3.4510436,-3.3801005,-3.2001767,-3.3031998,-3.4008133,-3.3655152,-3.3386676,-3.4619222,-3.367007,-3.3111095,-3.1682348,-3.434832,-3.5319927,-3.6014533,-2.989298,-2.6966836,-2.861916,-2.7755995,-2.9427752,-3.1108327,-2.5076616,-2.6760983,-2.6188235,-2.602038,-2.576351,-2.301104,-2.5431018,-3.0661092,-3.0350492,-2.792613,-2.72528,-2.734311,-2.6710787,-2.4508,-2.6419854,-2.6608346,-2.7518234,-2.8022618,-2.7867985,-2.7045794,-2.809998,-2.7719338,-2.9166696,-3.0244963,-2.531475,-2.2412827,-2.423036,-1.923253,-2.1786036,-2.4832122,-2.8160343,-2.9977202,-2.9812558,-2.957416,-2.7645483,-2.3830757,-2.4827173,-2.5129995,-2.612353,-2.619421,-2.6225939,-2.536883,-2.5771897,-2.698695,-2.6963186,-2.5952668,-2.6769147,-2.4148595,-2.45753,-2.4037206,-2.335258,-2.1419868,-2.0990112,-2.3114047,-2.1151037,-2.024529,-1.853331,-2.0481765,-2.2937837,-2.667345,-2.8196278,-2.8172927,-2.9481592,-2.5006223,-2.5777588,-2.2376502,-2.200141,-2.3378747,-2.1217408,-2.483157,-2.5594106,-2.4219143,-2.3929467,-2.5026455,-2.524302,-2.4972768,-2.5364685,-2.5504775,-2.577992,-2.3013082,-2.2896721,-2.6708407,-2.6190958,-2.3061352,-2.1480505,-2.0695753,-2.296339,-2.273247,-2.3563104,-2.0646608,-2.3149056,-2.4107869,-2.5270395,-2.3330073,-2.4767342,-2.3258996,-2.281281,-2.3174849,-2.3839862,-2.8086812,-2.5441175,-2.7090786,-2.55553,-2.5858161,-2.5985823,-1.8572968,-1.9879192
+-1.1225256,-1.3810023,-1.5350901,-1.6676627,-2.204255,-2.3382373,-2.4254084,-2.5732017,-2.753942,-2.5373058,-2.343325,-2.649932,-1.8038971,-2.1210847,-2.907693,-3.00549,-3.1656418,-3.0879292,-3.022708,-3.1046085,-3.097897,-3.1856163,-1.1635201,-2.416504,-2.67205,-2.6790667,-2.754499,-2.8243515,-2.635013,-2.718612,-2.7010412,-2.826634,-2.8343792,-2.8812816,-2.9355717,-2.0204463,-1.6799332,-2.226924,-2.5275784,-2.5885444,-2.715483,-2.862755,-2.9083567,-3.0338306,-1.6201192,-2.243978,-2.1726694,-2.3769705,-1.7030532,-2.1960816,-2.6453967,-2.8286371,-2.8774548,-2.680872,-2.3623698,-2.5892026,-2.6018884,-2.7936687,-2.919856,-3.083313,-3.2719576,-3.4186997,-3.483873,-3.451401,-3.4630456,-3.5324264,-3.4999795,-2.9228964,-3.3772588,-3.600662,-3.7038753,-3.605897,-3.3822358,-3.3020325,-2.7832026,-1.3015972,-1.8996143,-2.775385,-3.2079804,-3.4662547,-3.7826123,-3.7507954,-3.9114904,-3.9785466,-3.963303,-4.0977907,-4.244322,-4.2316475,-4.1192884,-4.0938253,-1.6637065,-1.8038075,-2.9685726,-3.5392468,-3.6062884,-3.9144711,-3.9304452,-3.9829712,-4.0560026,-4.016835,-1.4103328,-2.395152,-3.0499253,-3.5601978,-4.022875,-4.169098,-4.1778207,-4.2948604,-4.258728,-4.2729864,-4.312357,-4.373025,-4.2379336,-4.3528795,-4.4082584,-4.4484553,-4.430163,-4.364605,-4.2889605,-4.278717,-4.1783924,-4.0405183,-4.259078,-4.3498273,-4.3092985,-4.4847965,-4.5677557,-2.7607355,-1.7054814,-3.3028102,-3.7280593,-4.0716696,-4.2078576,-4.279512,-4.3421693,-4.4347515,-4.373742,-4.4527845,-4.5722084,-4.317214,-4.3230114,-4.3710604,-4.416339,-4.3692513,-4.5,-4.564803,-4.4820857,-4.5431576,-4.4327,-4.4892783,-4.5651116,-4.5734854,-4.54178,-4.387434,-4.082936,-4.0794206,-0.8968608,-2.005015,-2.8454757,-2.9469514,-3.3016534,-3.879892,-4.167693,-4.164925,-2.0289931,-2.280336,-1.6435347,-2.309763,-2.8456912,-2.9567952,-2.832337,-3.1693168,-3.4481199,-3.6594443,-1.0348291,-2.4721968,-2.7354186,-2.855838,-3.0133057,-3.1434472,-3.301794,-3.3937716,-3.2985451,-1.932928,-2.1840017,-1.9602932,-2.449553,-2.5813594,-2.7505467,-2.8907459,-3.0072482,-3.1918118,-3.0583086,-2.9505548,-3.3995047,-3.5176353,-2.3695235,-1.8072392,-2.1563349,-2.530634,-2.756529,-2.7793183,-2.980206,-3.0218604,-3.1455507,-3.2716358,-3.2911198,-1.6360554,-2.557484,-2.9553802,-2.2317195,-2.4972272,-2.8918386,-2.3912916,-2.7956767,-3.032732,-3.2400165,-3.363081,-3.4325447,-3.40006,-3.381424,-3.4391854,-3.5002048,-3.5630474,-3.5703382,-3.669663,-3.5119798,-3.4575338,-3.535024,-3.508078,-3.692724,-4.103082,-3.7544055,-3.4915457,-3.2378936,-3.5891724,-3.4221156,-3.715602,-3.9624376,-3.8981423,-3.339898,-3.122149,-3.6785383,-3.8316004,-3.3088467,-3.5429301,-3.5735893,-3.2191863,-3.4158702,-4.0658455,-3.599495,-4.054175,-3.0405433,-1.8328383,-2.3888748,-2.6510162,-2.8391376,-2.7848644,-2.0032253,-2.208397,-2.5331092,-2.5364554,-2.4100785,-1.7565,-1.666299,-2.0616758,-2.2189605,-1.786638,-1.5726146,-1.8195127,-1.804902,-1.7119713,-2.0530868,-2.1212451,-2.1090827,-2.2409987,-2.0734222,-2.1291037,-1.8956045,-2.069899,-2.1605399,-2.2096496,-1.6818144,-1.5785518,-1.5965254,-1.696149,-1.9478053,-2.382202,-2.5026803,-2.467897,-2.4221458,-2.398583,-2.4018977,-1.8564432,-1.6578273,-1.6013603,-1.7659241,-1.8425545,-2.0044281,-2.1437097,-2.0231981,-2.188854,-2.2768779,-2.168227,-2.1055157,-1.8889428,-1.2928112,-1.2384123,-1.0215554,-1.255917,-1.2966043,-1.923122,-2.2620087,-2.078184,-2.1562274,-2.4500153,-1.8772254,-2.3128195,-2.473014,-2.471776,-2.5114675,-2.3287072,-2.5410573,-2.0755398,-2.483097,-2.4907346,-2.3513892,-1.9217086,-2.228518,-2.4238813,-2.1707883,-2.4239278,-2.2123785,-2.4989207,-2.5530498,-2.513865,-2.3007412,-1.9462045,-1.9232562,-2.1690772,-2.5013008,-1.9871639,-1.5406666,-1.5591909,-1.586903,-1.7011193,-1.7746361,-1.9330376,-2.244714,-2.4771035,-2.4015355,-2.275693,-2.364268,-2.3327417,-2.3074741,-2.4361506,-2.5194924,-2.8313217,-2.618336,-2.894966,-2.633864,-2.9047837,-2.9393435,-2.6606278,-3.2099273
+-0.8534309,-1.1586381,-1.0833427,-0.9881924,-1.4298614,-1.5265946,-1.5268136,-1.5899698,-1.8344442,-1.617466,-1.2905576,-0.7702188,-1.1908954,-1.367335,-1.3225106,-1.3866152,-1.5871125,-1.6119266,-1.5343314,-1.5386438,-1.6191374,-1.7988514,-0.5369671,-1.3435174,-1.1485479,-1.3507174,-1.2172228,-1.2314998,-1.1490749,-1.2314885,-1.2376374,-1.3539618,-1.3957776,-1.4303602,-1.504876,-0.8184772,-0.9991644,-1.3778666,-1.2477175,-1.40753,-1.2469498,-1.5446945,-1.5015458,-1.5153102,-0.7045594,-1.1282076,-1.3243262,-1.3097079,-0.7234896,-0.8324875,-1.2698703,-1.3034047,-1.0798414,-1.0187657,-1.1026398,-1.4122635,-1.3477713,-1.3823966,-0.8743785,-1.0419039,-1.5271759,-1.510228,-1.6742134,-1.648527,-1.6179488,-1.7294803,-1.7757773,-0.6631457,-1.2981834,-1.3540018,-1.7462177,-0.90046436,-1.0617775,-1.3488611,-1.4914411,-1.7801251,-1.7004739,-1.7043811,-1.920356,-1.8084306,-1.8514417,-1.9116728,-1.9727925,-1.902998,-2.0691004,-1.879077,-2.0400577,-2.0411375,-2.0872793,-2.0008154,-1.778073,-1.7972585,-1.7465272,-1.9037404,-1.8929054,-1.9319615,-1.8674927,-1.8632325,-1.986009,-2.1435437,-1.9004726,-1.822759,-2.0516472,-2.0077112,-2.1051319,-2.1252367,-2.0679584,-2.0492115,-2.313835,-2.1883168,-2.3051863,-2.3977892,-2.2367606,-2.2055147,-2.2544305,-2.21067,-2.2177815,-2.298814,-2.2222228,-2.1624253,-2.1990352,-1.7984637,-2.0981636,-2.2374277,-2.1275334,-2.308211,-2.2461584,-1.9307688,-2.0996308,-2.2657027,-2.3622122,-2.1025975,-2.0016487,-2.1156433,-2.2184968,-2.339724,-2.3768706,-2.3707228,-2.371005,-2.3233526,-2.1344745,-2.1327643,-2.2948973,-2.3343801,-2.2377994,-2.1719232,-2.2196932,-2.13573,-2.1391878,-2.23424,-2.2957683,-2.4175453,-2.4298158,-2.280189,-2.149214,-2.1722393,-1.9748825,-1.8858776,-2.16049,-2.1149316,-2.1076365,-2.11134,-2.2665076,-2.3218803,-2.1830451,-0.75218654,-0.8376418,-1.6004016,-1.9724721,-1.9783009,-2.1056972,-2.3691888,-2.4832487,-2.5507848,-0.30065292,-0.88724667,-1.4940873,-1.7289326,-1.791715,-1.7175922,-1.7599026,-1.8688587,-1.9341627,-1.5427831,-1.534907,-1.4432033,-1.7886285,-1.9089658,-1.8610141,-2.098744,-2.2228515,-2.2882044,-2.2910924,-2.2898707,-2.1822915,-2.2954617,-2.3899999,-0.95411015,-1.4976062,-1.1642308,-1.6362196,-1.6291722,-1.8490132,-1.9313079,-2.0147486,-2.0404363,-2.1030204,-1.5197886,-2.0682197,-2.0383077,-1.5439054,-1.4918798,-2.1086445,-1.2151413,-1.6912526,-1.9377664,-2.0604668,-2.153204,-2.1613955,-2.1864138,-2.1947806,-2.2101078,-2.223864,-2.134645,-2.1676574,-2.2369518,-2.1943102,-2.2377355,-2.3365407,-2.3331237,-2.0776203,-2.863325,-3.1261544,-3.0505288,-1.47643,-2.084815,-1.9620277,-2.2223456,-2.5192485,-2.5867019,-2.4174538,-2.22048,-2.3361154,-2.5423493,-2.3169417,-2.2835011,-2.3327904,-2.2921658,-2.1174612,-2.3843238,-2.3779664,-2.3382154,-1.9475645,-1.4096756,-1.4697425,-1.7278033,-1.8752729,-1.2052791,-1.0954307,-0.8962428,-1.3796611,-1.5075775,-1.6159259,-1.5321776,-1.4040904,-1.5499188,-1.6387444,-1.0093756,-1.1919293,-1.4249756,-1.5357466,-1.504326,-1.5738851,-1.6135532,-1.6357883,-1.606449,-1.422491,-1.3200499,-1.112117,-1.4125825,-1.4156102,-1.3893973,-1.069107,-0.98962015,-1.175399,-0.99647075,-1.2564982,-1.396815,-1.4178091,-1.4601926,-1.4813559,-1.5354718,-1.6215358,-1.1497535,-1.4929582,-1.3904779,-1.5458332,-1.1845413,-1.3374103,-1.3255879,-1.4800346,-1.5239414,-1.5777262,-1.5830986,-1.6173127,-1.6848948,-1.5754563,-1.4719776,-1.3646177,-1.3285942,-1.3582219,-1.3039092,-1.347797,-1.3666037,-1.3339709,-1.4924487,-1.406263,-1.4734775,-1.465191,-1.464226,-1.540709,-1.6525784,-1.5567292,-1.4066033,-1.415189,-1.3207432,-1.4367524,-1.3937458,-1.4064974,-1.3958992,-1.4503194,-1.5912504,-1.2448161,-1.4062501,-1.3733097,-1.3736566,-1.3829414,-1.4302903,-1.4871256,-1.6327273,-1.544065,-1.5162125,-1.4969898,-1.3084135,-1.2345884,-1.4185158,-1.528423,-1.5759674,-1.5205774,-1.601796,-1.7230082,-1.646511,-1.5605675,-1.7287145,-1.6772908,-1.2870777,-1.6556411,-1.953777,-1.4032682,-1.7205836,-1.5936489,-1.5861689,-1.6136228,-1.0255271,-1.4730765
+-1.8016326,-2.6088088,-2.8494496,-3.0513337,-3.065457,-3.1430366,-3.1509538,-3.0811994,-3.2276154,-2.9755144,-2.9976237,-3.1470366,-1.9894191,-1.9494289,-2.2863908,-2.4580467,-2.8758187,-3.212472,-3.3006449,-3.3620882,-3.4825056,-3.5592031,-2.0786405,-2.1250148,-2.092779,-2.2329686,-2.1963534,-1.9853762,-2.0696335,-2.0459232,-2.1530764,-2.4112625,-2.8199868,-3.139585,-3.2851148,-3.2446969,-1.8877109,-2.192985,-1.8805242,-2.491767,-2.9734871,-3.298797,-3.4095323,-3.5163097,-3.359908,-3.176355,-3.179985,-3.217529,-3.4742951,-1.5574923,-2.1711893,-2.1816862,-2.5913405,-3.2176056,-3.2703905,-1.8137517,-2.3039346,-2.4275994,-3.004857,-3.1306572,-3.3719234,-3.5446033,-3.605518,-3.6054475,-3.5767589,-3.6714005,-3.6308017,-3.3903308,-3.4963212,-3.59309,-3.6289356,-2.6157098,-1.8929781,-2.9294224,-3.3899317,-3.5949554,-3.617623,-3.626115,-3.6942644,-3.68792,-3.6763372,-3.6506398,-3.73788,-3.6228986,-3.6725588,-3.7077293,-3.7839653,-3.7224224,-3.6338582,-3.4594774,-3.3268292,-1.6814195,-1.9999169,-2.7335017,-3.1918764,-3.3972878,-3.4883265,-3.5446873,-3.5525553,-3.5404263,-3.5275311,-3.5784159,-3.6569893,-3.6721373,-3.6972544,-3.703444,-3.6431954,-3.6885614,-3.5221086,-3.527193,-3.5294986,-3.5460057,-3.5126636,-3.7213926,-3.8176904,-3.7635126,-3.7752419,-3.9104912,-4.012953,-4.046221,-3.9425874,-3.5734663,-3.861545,-3.6967683,-3.6252036,-3.9454794,-3.7728515,-3.6654859,-3.6023736,-3.7052922,-3.704748,-3.7815285,-3.2210894,-3.6787858,-3.772472,-3.8039873,-3.5102448,-3.6697354,-3.7392046,-3.7400262,-3.8121088,-3.87301,-3.8296483,-3.7988288,-3.715351,-3.82975,-3.9821882,-3.838283,-3.8327146,-3.8067262,-3.8294277,-3.7633486,-3.667322,-3.4097977,-2.4242148,-3.3818853,-3.549316,-3.7455606,-3.8517456,-3.8823383,-3.8871005,-3.9356802,-4.0042343,-3.9147382,-3.7670784,-3.5847728,-1.942454,-3.0831041,-3.6716282,-3.8201559,-3.8437724,-3.8916533,-3.893076,-3.893885,-1.4741645,-1.8988072,-2.288319,-2.6211123,-2.9162607,-3.1983159,-3.372756,-3.5131786,-3.4265666,-3.4818234,-3.540932,-3.4878478,-3.4002109,-3.509932,-3.503819,-3.594311,-3.678254,-3.6872668,-3.7104864,-3.763106,-3.7373252,-3.7013402,-3.8223064,-3.6932583,-3.8456688,-1.6198761,-3.0501523,-3.2916808,-3.5312424,-3.6030393,-3.66652,-3.6967752,-3.7124338,-3.4463317,-3.6087127,-3.6949172,-3.736717,-3.1850972,-3.65865,-2.2057967,-2.9059634,-3.3193269,-3.301116,-3.4709837,-3.5316963,-3.5511103,-3.5949345,-3.5712276,-3.5681205,-3.5556138,-3.538272,-3.6009252,-3.6385758,-3.670685,-3.6826196,-3.7036352,-1.9354509,-3.1548812,-3.241578,-3.2916827,-1.9336492,-2.3863478,-2.5473766,-2.4017267,-2.7742772,-2.8864582,-2.3482308,-2.3424177,-2.3874772,-2.7902985,-2.6707659,-2.4382656,-2.8583176,-2.8804994,-2.6567557,-3.1363266,-3.054554,-3.1375184,-2.804763,-2.4991438,-2.210237,-2.4891996,-2.6883357,-2.4378738,-2.553381,-2.1483312,-2.3077152,-2.9275131,-3.1411371,-3.054976,-2.5776134,-2.7852387,-2.9185922,-2.228467,-2.2789888,-2.799657,-2.9834092,-2.7193623,-2.6647408,-2.6122098,-2.5485742,-2.5277956,-1.7980593,-1.5591303,-1.369284,-1.3828536,-1.8840685,-2.0552874,-1.4064792,-1.407551,-1.3287077,-1.5072982,-1.583444,-1.1788683,-1.393077,-1.7610232,-1.9815632,-2.1622775,-2.224199,-1.4083054,-1.2233137,-1.2984756,-1.3606678,-1.1994303,-1.3493267,-1.2141912,-1.4231585,-1.666274,-1.9014493,-1.952622,-2.0601003,-2.1055942,-1.8606147,-1.5527068,-1.5037714,-1.432053,-1.5596495,-1.7674235,-2.0629423,-2.3602114,-2.6443744,-2.8235097,-1.7483554,-1.961852,-1.8307214,-2.1104825,-2.365063,-2.0873826,-1.7653292,-1.7948292,-1.9988006,-1.9254549,-2.235928,-2.048069,-1.7637805,-1.8176776,-2.0989144,-2.3601313,-2.1264482,-2.24205,-2.442276,-2.3944335,-2.345247,-2.0612614,-2.2260036,-2.2840781,-2.4636345,-2.192832,-2.1600022,-2.2592812,-2.3333225,-2.5434146,-2.7391222,-2.7520626,-2.8792892,-2.9915962,-3.1258545,-3.0742702,-3.1158738,-3.1688356,-3.2906477,-2.2453086,-1.393843,-2.0036588,-1.9829499,-1.9046872,-2.041309,-1.9673141,-2.2192235,-2.0361104,-2.1419091
+-1.1856652,-1.9108937,-2.3945029,-2.783712,-2.923746,-3.024506,-3.0880275,-3.1489658,-1.9386566,-2.5694444,-2.8977103,-2.470151,-2.9452581,-3.1565518,-1.8425499,-2.7185438,-3.0624752,-3.3395846,-3.394064,-3.373578,-3.4276068,-3.464926,-2.6354718,-3.0847325,-1.9809936,-2.1387215,-2.4159946,-2.1599214,-2.185411,-2.1536808,-2.1476226,-2.4355416,-2.6511827,-2.8871489,-2.9999518,-3.0934212,-1.486612,-2.0565205,-2.0452611,-2.0467777,-2.393475,-2.843256,-3.0778823,-3.1948202,-2.0757368,-1.4629368,-1.9408342,-2.2472653,-2.7261024,-3.0433125,-3.11943,-3.2070103,-3.2095482,-3.2783327,-3.1699116,-3.0789967,-3.1921406,-3.2186704,-3.0185974,-3.1445246,-3.260777,-3.33119,-3.2746,-3.34607,-3.3290052,-3.3030171,-3.2317865,-3.1204581,-3.1393404,-3.0753155,-3.139996,-2.4923296,-2.4563627,-3.0347729,-3.208445,-3.303613,-3.343686,-3.3700883,-3.365957,-3.2462661,-3.1948113,-3.1515017,-3.1428957,-3.0490828,-3.1350472,-3.254832,-3.298651,-3.2018888,-3.0580277,-2.020588,-1.7324418,-2.5311842,-2.6113048,-1.0971125,-2.2109456,-2.701597,-3.0463548,-3.2485137,-3.2731826,-3.2656455,-3.2454882,-3.457432,-3.410424,-3.3662338,-3.3273747,-3.21005,-3.2237825,-3.2333665,-3.140225,-3.1154804,-3.092442,-3.0588012,-2.8220963,-3.1016319,-3.230686,-2.9687183,-2.9175098,-3.271612,-3.4330738,-3.3777342,-3.187488,-3.0165884,-3.2413368,-3.1741402,-1.7203847,-2.169735,-2.106275,-2.0129998,-2.847629,-3.1288476,-3.2357917,-3.3015263,-3.296071,-3.4252284,-3.4515266,-3.5019352,-3.351169,-3.4105496,-3.304657,-3.22015,-3.306262,-3.4477315,-3.4083903,-3.2898154,-1.6661443,-3.0364618,-3.3885336,-3.2406228,-3.338258,-3.4843094,-3.5162268,-3.4603322,-3.3497295,-3.158109,-3.1965775,-3.3464992,-3.4133444,-3.5597522,-3.5714126,-3.5186696,-3.5037599,-3.5513902,-3.6058228,-3.406746,-3.3405118,-3.354176,-2.404832,-3.28695,-3.6126847,-3.6693366,-3.6178215,-3.5346642,-3.481937,-3.5235512,-1.6856241,-1.9103391,-2.5385256,-3.1410303,-3.3896747,-3.5510802,-3.6196606,-3.5693111,-3.5770776,-3.5447757,-3.6664047,-3.467155,-3.7099442,-3.8292117,-3.8562717,-3.8932385,-3.9007974,-3.8467083,-3.8341358,-3.7531612,-3.8590817,-3.814489,-3.704341,-3.6648288,-3.6801925,-3.7276301,-3.7960243,-3.9278812,-3.9699645,-4.000139,-3.9555948,-3.881555,-1.7843984,-2.8823414,-3.4475923,-3.6904755,-3.7039726,-2.966026,-3.5247016,-3.523709,-3.7334745,-2.4433312,-3.374907,-3.6214285,-3.758039,-3.8104453,-3.8668315,-3.8820834,-3.8863418,-3.8882728,-3.8733659,-3.8913417,-3.9074757,-3.9281106,-3.9311662,-3.9160256,-2.094985,-3.3246896,-3.3438997,-3.4192424,-2.2061145,-2.001495,-2.6123807,-2.4563596,-3.0417573,-3.1835089,-2.8606906,-2.6143186,-2.6378665,-3.133194,-2.941378,-2.9448872,-3.3704743,-3.3163095,-3.0824223,-3.4496057,-3.0892124,-3.3245234,-3.0290341,-3.0516434,-2.6436524,-2.9278502,-2.9664106,-2.8808677,-2.965797,-2.107039,-1.7301413,-2.9069312,-3.2026334,-3.2030048,-3.1164246,-2.1258826,-2.0241225,-1.8198115,-1.8162408,-2.3850718,-2.583329,-2.6097598,-2.759014,-2.8149204,-2.7742667,-2.85045,-2.6761649,-2.526885,-2.142145,-1.3969758,-1.9901184,-1.8690072,-1.2624108,-1.206358,-1.3233842,-1.200746,-1.5220498,-1.4481232,-1.3994689,-1.8043063,-2.3598561,-2.6450028,-2.6096134,-1.6409774,-1.4974208,-1.2036968,-1.1494192,-1.0077204,-1.1379107,-1.0076827,-1.1535535,-1.3813223,-1.8376685,-1.9238473,-2.0257673,-2.0131145,-1.8042964,-1.3181053,-1.3833286,-1.4090545,-1.5382364,-1.540264,-1.7775367,-2.025542,-2.0663648,-2.3781974,-1.4927813,-1.7839372,-2.3296587,-2.5857577,-2.6145282,-2.487939,-2.2298918,-2.0210376,-2.1426291,-2.3172264,-2.6137319,-2.3673089,-1.7952814,-2.2552469,-2.5677464,-2.849567,-2.650003,-2.0609696,-2.648523,-2.8652744,-2.8445258,-2.7383957,-2.8575592,-1.8872644,-2.6099453,-2.5399508,-2.574889,-2.6750147,-2.769948,-2.8906488,-3.0252068,-3.0743294,-3.0919104,-3.1394072,-3.1518064,-3.135189,-3.1677692,-3.2031884,-3.239142,-3.1688957,-1.2974554,-2.152242,-2.1753492,-2.2203946,-1.701428,-2.1080747,-2.2179763,-2.2374678,-1.530383
+-0.84863067,-1.5797917,-2.0416207,-2.3248763,-2.601338,-2.9539208,-3.0400398,-2.728598,-2.8962824,-3.4248502,-3.2089596,-3.0924873,-3.0647686,-3.1064906,-3.305231,-3.390198,-3.3740964,-3.4056857,-3.430726,-3.4895368,-3.5393245,-3.52815,-3.6123712,-3.8174071,-2.988289,-3.3927422,-3.5489724,-3.521006,-3.638904,-3.5780947,-3.6389441,-3.575995,-3.4537187,-3.356131,-3.3586566,-3.3111942,-3.3944466,-3.408503,-3.4790988,-3.2872853,-3.3274868,-3.4784381,-3.5659068,-3.6428502,-3.6824489,-3.3840005,-3.307026,-3.4288409,-3.678512,-3.5130086,-3.6683068,-4.053035,-4.124694,-4.0649786,-4.126484,-3.825233,-3.9755087,-4.0860014,-4.1128173,-4.15564,-4.163858,-4.228228,-4.3074417,-4.40102,-4.462101,-4.55502,-4.5706816,-4.6662855,-4.7442794,-4.8058653,-4.822672,-2.48804,-3.7736723,-3.1296325,-3.8086147,-4.1091013,-4.3449316,-4.5303,-4.613326,-4.6665816,-4.797469,-4.821616,-4.8187017,-4.8124695,-4.8609724,-4.8955956,-4.906444,-4.891653,-4.5853605,-4.7119884,-2.869392,-1.9214994,-2.7772117,-2.7378204,-3.362085,-3.8477235,-4.140417,-4.47747,-4.6374083,-4.64279,-4.5922112,-4.7244854,-4.7659283,-4.819983,-4.8707285,-4.89956,-4.8109856,-4.788155,-4.7491555,-4.796172,-4.800997,-4.763975,-4.8004994,-4.85564,-4.8215647,-4.7709146,-4.8100715,-4.833267,-4.760649,-4.688135,-4.5705004,-1.2649693,-2.4166298,-2.1823168,-2.7323823,-2.5942593,-3.0676198,-2.495453,-3.041148,-3.2769895,-3.4644103,-1.5586786,-2.7131011,-3.1246958,-3.3182745,-3.449016,-3.6444845,-3.9480326,-4.130168,-4.0590143,-4.0529394,-3.812971,-3.7305343,-2.342018,-2.130948,-2.9209466,-3.4152575,-3.601532,-1.5398959,-2.7903152,-3.1990104,-3.3798447,-3.6175852,-2.529018,-3.0777946,-3.4648333,-3.7028954,-4.1126523,-4.325508,-4.4367056,-4.5048294,-4.524231,-4.4984035,-4.53562,-4.500862,-3.8158317,-3.077001,-3.9900284,-4.287215,-4.460705,-4.5296135,-4.5466585,-4.4811354,-1.1377268,-2.1933331,-2.7004123,-2.8515143,-3.1856003,-3.243762,-3.3302355,-2.8629332,-2.4227622,-2.9283004,-3.1436994,-3.1785722,-3.3650477,-3.6989274,-3.8265903,-3.952528,-3.9764872,-3.9521317,-4.08921,-4.1247263,-4.08807,-4.119257,-4.1846647,-4.176193,-4.1498156,-4.009615,-4.09002,-4.1717253,-4.2848425,-4.3355627,-4.321215,-4.315027,-4.308484,-2.0068412,-2.0010777,-3.0617263,-3.2951012,-3.370151,-3.2827213,-3.2754302,-3.2993083,-3.4592273,-3.483888,-3.6784744,-3.6761436,-3.652083,-3.7208674,-3.8249784,-3.910979,-4.0025225,-4.0837336,-4.0956526,-4.1377363,-4.1538854,-4.1984997,-4.1957774,-4.0335865,-3.338343,-4.3000975,-4.183238,-3.659957,-1.7250268,-2.6988516,-3.03049,-3.472271,-3.9127657,-3.9032164,-3.544477,-3.615275,-3.6742811,-3.6836064,-3.635291,-3.6047597,-3.6789556,-3.6993368,-3.7171714,-4.022179,-4.043549,-3.765135,-3.13302,-3.1962461,-2.9485219,-3.0582356,-3.316748,-3.1174026,-3.1022341,-2.0159092,-2.2438958,-2.4128428,-2.4195795,-2.7286391,-2.8554983,-1.9616579,-1.7621146,-1.5576047,-1.6674296,-1.7561831,-1.7649738,-1.9929086,-2.0831032,-2.2258332,-1.8740144,-1.5855595,-1.4429418,-1.5587636,-1.3609684,-1.4589611,-1.723659,-1.6315781,-1.2798393,-1.5295228,-1.5098599,-1.5750741,-1.6371206,-1.4989749,-1.2691885,-1.2574649,-1.617321,-1.7347938,-1.9279746,-1.6735097,-1.6181632,-1.6255748,-1.4952163,-1.5632416,-1.7522115,-1.925132,-1.9986225,-1.9956857,-2.000935,-1.897797,-1.9447951,-2.1372895,-2.3082657,-2.1944444,-2.0414865,-1.7152091,-1.9150385,-1.6556851,-1.4540311,-1.3997048,-1.4048581,-1.5434903,-1.8311889,-1.6262943,-1.5162276,-1.644627,-1.8190364,-2.0321462,-1.9354271,-1.8296275,-1.7836142,-1.5562676,-1.3377969,-1.637354,-2.2455637,-2.3261192,-2.362947,-2.1379256,-2.0152388,-2.0077038,-2.1481957,-2.0643759,-2.1021686,-2.1665735,-2.305703,-2.665904,-2.586152,-2.4879956,-2.613569,-2.7768822,-2.798742,-2.98906,-3.1909263,-3.3596246,-3.3942895,-3.384685,-3.3719416,-3.3555107,-3.4003096,-3.3577743,-3.418769,-3.3070736,-2.9495559,-3.3826954,-3.404645,-3.6679964,-3.557616,-3.7352548,-3.5213606,-3.5842893,-3.4577932
+-1.7707665,-2.8432732,-3.2039301,-3.5919728,-3.94528,-4.162954,-3.9806905,-1.501066,-2.5830636,-2.6089602,-2.619917,-2.6598191,-2.805691,-2.94456,-2.9227269,-2.9831324,-3.3424993,-3.8242362,-4.179856,-4.4753695,-4.634206,-4.67047,-4.8098626,-4.8840294,-3.588962,-4.082491,-4.141757,-2.0342736,-2.7997136,-2.5647385,-2.7635448,-2.8361795,-3.0512486,-3.5987697,-3.9217975,-2.275278,-2.4441438,-2.7565954,-2.7441702,-3.201955,-3.54916,-3.9553745,-4.251729,-2.8733053,-2.4700208,-3.5466537,-2.9386349,-2.4555519,-3.3917747,-3.9613152,-4.3877497,-4.7674456,-4.9674807,-5.0332317,-5.090601,-5.0639067,-5.0592694,-5.0797205,-5.044727,-4.9831266,-4.8982043,-4.8737826,-4.8588114,-4.8746405,-4.824326,-4.8286285,-4.81847,-4.884932,-4.8772626,-4.87366,-4.857481,-2.3886018,-3.2912579,-4.213731,-4.774244,-4.897129,-4.9641104,-5.0111856,-5.00539,-4.8999653,-4.8162804,-4.67813,-4.678994,-4.8240285,-4.873472,-4.917144,-4.8655505,-4.7980366,-2.6094508,-2.855539,-2.194627,-2.1112943,-2.1178477,-2.7698808,-3.439434,-3.976636,-4.311613,-4.510375,-4.5954237,-4.6631536,-4.6853104,-4.789034,-4.8128777,-4.8303423,-4.809638,-4.7584715,-4.711157,-4.735303,-1.4797751,-2.1085443,-2.130033,-2.1711504,-2.8939571,-3.5862315,-4.0061483,-4.167493,-4.1014895,-2.2284539,-1.994433,-3.0891185,-1.939339,-2.081875,-1.4120559,-2.2184024,-1.9698735,-2.3778486,-2.6211195,-2.5937276,-2.8302698,-3.1120746,-3.4768925,-0.8289652,-2.180498,-2.6236148,-2.8759065,-3.2903552,-3.6303928,-3.9679184,-4.086485,-2.260509,-2.809103,-2.227071,-1.9872941,-2.2450523,-2.0863569,-2.4491234,-2.7108755,-2.3583965,-1.9375523,-2.3535838,-2.7582512,-3.4167929,-3.8309693,-1.8341295,-2.1347616,-2.0169396,-2.6795902,-3.2293286,-3.6624532,-3.9201288,-3.9400458,-4.0895205,-4.365698,-2.776771,-3.6157434,-3.9513757,-4.055999,-4.370555,-4.5117683,-4.527233,-4.5616713,-4.577323,-1.2793672,-2.206272,-1.9120917,-2.5559487,-2.8050406,-2.8398077,-3.0586538,-3.343514,-2.2451975,-1.8996285,-1.7498006,-2.7946286,-2.9302666,-2.9473145,-3.088921,-3.2490392,-3.3243332,-3.433805,-3.6461396,-3.8317294,-3.9181573,-3.9767942,-4.0328493,-4.093109,-4.22462,-4.233707,-4.2199235,-4.163021,-3.7640266,-4.1419935,-4.3690457,-4.4594483,-4.5099955,-4.454056,-4.172484,-0.81968814,-2.4203458,-2.8641653,-2.9680233,-3.08188,-3.1335468,-3.1177409,-3.2944174,-3.4949613,-3.6879869,-3.7898245,-3.5896556,-3.6499524,-3.795262,-3.9658027,-4.2077127,-4.273486,-4.362625,-4.3700194,-4.200926,-4.301034,-4.429589,-4.3751593,-4.337708,-4.6479125,-4.406269,-4.205863,-1.1109564,-2.767951,-3.3233738,-3.6846082,-4.1198673,-3.943207,-3.2545462,-3.0988636,-3.8060646,-4.230612,-4.247979,-4.0048614,-4.216764,-4.4183264,-4.2469087,-4.2536345,-4.3254824,-4.2810035,-3.9567082,-3.9412475,-3.7995605,-3.7440143,-3.7980087,-3.796417,-3.7449565,-1.7413126,-2.6185884,-3.5022745,-4.0815644,-4.235739,-3.5705552,-2.0523748,-2.7497182,-2.5574749,-2.6888418,-3.322831,-3.6119995,-3.752419,-3.8167114,-3.729624,-2.9147778,-3.0141258,-3.0960028,-3.212392,-3.1418147,-2.8566337,-3.1752114,-3.6225457,-3.0483146,-2.530064,-2.8313065,-2.9118612,-2.9914904,-2.8560522,-3.0191288,-2.9675193,-3.0932498,-3.4554324,-3.587756,-2.3232255,-2.7735438,-2.737044,-2.9540503,-2.6855812,-2.9614592,-3.5433412,-3.7636955,-3.9221728,-4.0005856,-3.884052,-3.7816262,-3.81491,-3.8563905,-3.7947762,-3.5400498,-3.5469823,-3.7755537,-3.408657,-3.1758745,-2.9211133,-2.8577223,-2.9692285,-2.54743,-2.994784,-3.1495852,-3.1229572,-3.385013,-3.5113497,-2.8582044,-3.022822,-2.9555042,-3.1676774,-3.1215367,-3.150778,-3.1166763,-3.7301135,-4.162965,-3.6343236,-2.8627448,-2.6709247,-3.2187471,-3.646617,-3.703248,-3.5754917,-3.323242,-3.5015678,-3.8429835,-3.8815188,-3.9084525,-3.9644375,-3.939417,-3.9610806,-4.0343637,-4.200576,-4.285142,-4.3135724,-4.323035,-4.3735876,-4.389785,-4.416692,-4.3390503,-3.4773645,-1.8531933,-3.0168595,-3.041223,-3.1886253,-3.259535,-2.7720795,-3.3784473,-3.545672,-2.5011704
+-2.262343,-3.2266634,-3.7134645,-4.0393353,-4.1877437,-4.249774,-4.4298143,-1.2101368,-2.6570597,-2.3760989,-2.5774717,-2.6777096,-2.9343188,-3.1000276,-3.2186007,-3.2799697,-3.629701,-3.9445062,-4.212205,-4.3565197,-4.4686756,-4.4230022,-4.428153,-4.4453588,-3.6569924,-4.0080404,-4.2802463,-3.4257932,-2.2935214,-2.1614628,-2.2442427,-2.762368,-2.6892242,-3.3264558,-3.512044,-3.2451472,-1.728218,-2.710173,-2.5900373,-3.02487,-3.2600083,-3.6215324,-3.9723458,-4.0622125,-4.131199,-4.1080585,-1.4390693,-2.295515,-2.4947898,-2.9002738,-3.4436507,-3.9016495,-4.27014,-4.4028835,-4.5170817,-4.3881745,-4.3673697,-4.5079947,-4.5535374,-4.527734,-4.384481,-4.4202595,-4.519073,-4.553611,-4.596028,-4.635079,-4.5769076,-4.611415,-4.5035825,-4.4472637,-4.4283285,-4.172265,-4.5366774,-4.366827,-4.5900106,-4.633969,-4.600004,-4.5988045,-4.6367645,-4.640025,-4.5407877,-4.5214186,-4.471015,-4.513386,-4.5181084,-4.438673,-4.431657,-3.0534203,-1.8215142,-3.0648186,-2.2240243,-2.4049938,-2.0291138,-2.8887813,-3.4272652,-3.8640413,-4.1240406,-4.209769,-4.3067913,-4.4155693,-4.4956417,-4.538376,-4.560289,-4.5463915,-4.426222,-4.540012,-4.4834576,-4.453273,-3.7685235,-2.4400117,-1.377111,-2.696663,-2.7832518,-3.269556,-3.5572882,-3.5439687,-2.39643,-2.3384619,-2.7498615,-2.325715,-2.2554348,-2.5414562,-2.1126776,-1.7214271,-2.6313262,-2.7625844,-3.0524485,-1.9469128,-3.0669408,-3.1814265,-2.708479,-1.6850215,-2.662077,-2.9538245,-3.2521944,-3.6617856,-3.8226204,-4.022998,-4.0491333,-2.5775266,-2.983809,-2.9286146,-2.5341854,-1.692671,-2.5498786,-2.8828669,-3.1162071,-3.2205088,-1.2832197,-2.76763,-3.0811677,-3.4542582,-3.6857371,-3.5699916,-2.339935,-2.8882952,-3.1135185,-3.5209923,-3.816355,-3.4335573,-3.5177937,-3.7106595,-4.102184,-4.20289,-4.2805343,-4.2850695,-4.2373357,-4.440399,-4.578933,-4.5956945,-4.631023,-4.689222,-0.80317324,-2.5425653,-1.9266266,-2.8765368,-3.1583154,-3.4638546,-3.853238,-3.5370936,-3.7056158,-3.755323,-3.237342,-3.4358191,-3.6185298,-3.4334335,-3.891968,-4.10432,-4.104136,-4.366846,-3.3960226,-3.9276328,-4.114481,-4.1274166,-4.2274427,-4.4404097,-4.5464125,-4.4966726,-4.4032173,-4.2885756,-3.995594,-4.254058,-4.5455275,-4.655163,-4.5622697,-4.5520077,-4.4025517,-1.407158,-3.0668674,-3.5843754,-3.6389565,-3.8045197,-3.722731,-3.6299367,-3.783383,-3.9835072,-4.197503,-4.105987,-3.920178,-3.9568503,-4.0898223,-4.2773657,-4.421573,-4.4545035,-4.4790993,-4.506975,-4.554097,-4.5790167,-4.7429657,-4.649482,-4.455996,-4.6230955,-4.6851187,-4.522794,-0.9200457,-3.040174,-3.3880882,-3.5162244,-3.7990332,-3.8398957,-3.266497,-2.876246,-3.5437179,-3.9415598,-4.130352,-4.0062428,-3.8482225,-3.9995565,-4.2011566,-4.240113,-4.1375766,-4.146381,-4.1684265,-4.1555185,-4.1084805,-4.0946217,-4.0763664,-4.0373106,-4.061484,-1.3695508,-2.902389,-3.4940467,-3.8380694,-3.7260091,-3.309235,-1.4958612,-2.9373622,-2.7376447,-2.9104347,-3.1839204,-3.2352705,-3.3862147,-3.5080295,-3.5413175,-2.4986553,-2.5892606,-2.9027116,-3.1787918,-3.3621037,-3.3088424,-3.2817326,-3.5269616,-3.6964426,-2.7872734,-3.386897,-3.5219145,-3.5520177,-3.6782851,-2.7851346,-2.8585129,-3.240499,-3.4145617,-3.566399,-2.6836538,-2.7575629,-2.3668604,-2.6723914,-2.7969959,-2.8646934,-3.2118883,-3.5368488,-3.6910338,-3.711936,-3.4475894,-3.5084078,-3.5936906,-3.6872015,-3.6120982,-3.5546525,-3.5705023,-3.7618084,-3.6076212,-3.4840853,-3.5131862,-3.5271783,-3.7209535,-3.1904826,-2.3303404,-3.1136765,-3.2713432,-3.3638062,-3.5462503,-3.4939797,-2.0980337,-2.5141988,-3.0261407,-3.2269423,-3.405695,-3.5423522,-3.8413763,-3.9886923,-3.5990796,-2.1104581,-1.8707304,-2.6867337,-3.179492,-3.3492072,-3.5234537,-3.440382,-3.66394,-3.7407649,-3.7678761,-3.8699045,-3.9659176,-3.9926262,-4.0303497,-4.1336327,-4.26987,-4.3984303,-4.4010277,-4.4122515,-4.457323,-4.4714565,-4.4899106,-4.363591,-4.2079797,-1.6563448,-3.0460494,-3.2041292,-3.3171346,-3.4401941,-2.4725385,-3.1268773,-3.5083616,-3.0765162
+-3.1368752,-4.0075617,-4.0845013,-4.172494,-4.1301584,-4.0776663,-3.6915467,-1.271302,-2.7895846,-1.18647,-1.7025175,-2.8195398,-3.3888662,-3.8436346,-4.0693007,-4.1666026,-4.152038,-4.189767,-4.223567,-4.2233777,-4.2258787,-4.1916213,-4.1004667,-4.149027,-4.0948343,-4.0224543,-3.989524,-3.966629,-3.7509055,-1.5891463,-1.942463,-3.3556063,-3.789634,-3.996019,-4.089808,-3.4445963,-1.555077,-3.1321247,-3.5350606,-3.8217123,-3.9375987,-4.0127783,-4.0425205,-4.00258,-3.9765687,-3.9392977,-3.869347,-1.5441724,-3.2408454,-3.6699166,-3.8974168,-4.0012693,-4.0009947,-3.992762,-4.0622277,-4.0384235,-4.0388126,-4.0762267,-4.0371394,-3.959812,-3.932507,-3.9771748,-4.0157537,-4.042796,-4.084999,-4.1190233,-4.151096,-4.112507,-4.0045233,-3.963613,-3.892723,-3.762002,-3.8748477,-3.9471574,-4.029051,-4.0688686,-4.044445,-4.059056,-4.079681,-4.0748777,-4.0065203,-3.9493935,-3.9853969,-3.9889889,-4.0087576,-3.9799461,-3.9815865,-3.9090097,-3.93352,-3.8455844,-3.3206916,-3.5201325,-1.5501803,-3.4534187,-3.8139725,-4.002324,-3.9962664,-3.9304807,-3.9965715,-4.045243,-4.0816765,-4.1238923,-4.132063,-4.099856,-4.0461636,-4.0370226,-3.980586,-3.995233,-3.8382583,-3.8423395,-3.8635979,-3.8272476,-3.9267118,-3.9421034,-3.805211,-3.7398772,-3.782062,-3.7904253,-3.809913,-3.7585948,-1.3199505,-3.0360975,-2.3923173,-3.0787838,-2.6388543,-2.6960428,-2.0154572,-3.0981774,-3.8016958,-4.0149994,-3.4422026,-1.656851,-2.7311358,-3.2948127,-3.6545846,-3.8218415,-3.819149,-3.9208288,-3.937072,-1.5023965,-1.545221,-1.8190073,-2.3398623,-2.8529246,-2.6415515,-3.3672533,-3.6769166,-3.854337,-3.63394,-3.933866,-3.992715,-4.043062,-3.9475653,-3.6961064,-3.6134548,-3.8573554,-4.0159664,-4.0651674,-3.955168,-0.4526932,-1.7124166,-2.486361,-3.3307161,-3.7208939,-3.7923188,-3.651753,-3.6917317,-4.0831385,-4.1923857,-4.1368423,-4.1645756,-4.0639286,-3.5852132,-3.3888612,-1.9110752,-3.3159554,-3.962551,-4.1371107,-4.077681,-3.7314763,-3.8370032,-3.813245,-3.6727653,-3.722281,-2.3911383,-3.4346256,-3.9741683,-4.0186334,-4.015873,-4.229025,-4.130515,-4.0450954,-3.9793406,-4.065423,-4.0997515,-4.203969,-4.2228417,-4.22674,-4.1945877,-4.092106,-3.8598492,-4.127656,-4.2559605,-4.252883,-4.2118216,-4.1488314,-4.009119,-3.659166,-3.8438444,-3.9936543,-4.046493,-3.8908305,-3.8678737,-3.775737,-3.9015703,-4.1052656,-4.0978284,-2.6326976,-3.5546062,-3.9237947,-4.0712433,-4.1625566,-4.1923327,-4.2616997,-4.22958,-4.216587,-4.205534,-4.253794,-4.2546077,-4.1955123,-4.1894665,-4.234996,-4.267251,-1.3349926,-1.3362988,-2.6070652,-3.20507,-3.6964207,-4.148996,-4.2346334,-3.896789,-0.8334859,-2.8075747,-3.4425814,-3.715063,-3.8274121,-3.846434,-4.1187806,-4.229682,-4.0016246,-3.7102313,-3.7771578,-3.8984528,-3.9877138,-3.9522877,-3.9731884,-3.8939729,-3.9130476,-4.0038013,-3.3215485,-3.5850267,-3.9597692,-4.1493177,-4.2128325,-3.9030616,-0.59673744,-2.2244368,-1.7123533,-2.8246002,-3.265623,-3.5392013,-3.6826887,-3.804575,-3.9487765,-1.087293,-2.1127481,-2.8938684,-3.0580168,-3.2556238,-3.4186811,-3.4702058,-3.7651112,-3.8643045,-4.0839567,-3.8791173,-3.8343635,-3.6416078,-3.5576081,-3.4859872,-3.4713917,-3.2427335,-3.5401192,-3.5922778,-2.4219074,-1.0532819,-1.4756219,-2.9377406,-2.9583368,-2.4892783,-3.2147617,-3.6436572,-3.9192939,-4.079402,-4.1739445,-4.321541,-4.4174786,-4.42499,-4.4241443,-4.3366714,-4.257017,-4.2412148,-4.010257,-3.6617415,-3.7097006,-3.8828173,-3.9703612,-3.9154983,-0.8873129,-2.5296915,-3.0657883,-3.5528598,-3.9901657,-3.8695521,-0.8817022,-1.5253896,-2.3850226,-2.7682102,-3.2973108,-3.61876,-3.7686193,-3.9574275,-3.977519,-1.2912558,-1.4216447,-2.7464886,-3.4194002,-3.917066,-4.108096,-3.9608583,-4.0115204,-4.1895514,-4.316818,-4.3694687,-4.381544,-4.4179916,-4.3332515,-4.3382006,-4.3523846,-4.357793,-4.2503014,-4.285281,-4.2689986,-4.290242,-4.282116,-4.2400494,-4.067417,-1.607437,-3.3431044,-3.8837004,-4.021323,-4.066292,-4.109126,-4.2869864,-4.25896,-4.235526
+-2.887553,-4.218295,-4.392862,-4.5384398,-4.569127,-4.5297775,-3.7592084,-2.7697783,-3.5452235,-0.75511545,-2.0061388,-2.7326076,-3.4838338,-4.1139154,-4.433312,-4.602006,-4.6093397,-4.5571823,-4.585604,-4.613554,-4.5324883,-4.4703603,-4.4514856,-4.539274,-4.4900675,-4.5258102,-4.450845,-4.41838,-4.3158016,-4.3470154,-3.9885573,-4.3075566,-4.420801,-4.4507084,-4.305582,-4.155468,-3.9948006,-4.033071,-4.159916,-4.2793612,-4.3380346,-4.4072576,-4.3381705,-4.2030053,-4.2668195,-4.2690077,-4.1666408,-4.017106,-4.172227,-4.2462835,-4.254306,-4.19052,-4.2012615,-4.2343082,-4.258353,-4.2909636,-4.3689575,-4.3930774,-4.3102794,-4.24085,-4.2244377,-4.2779145,-4.308129,-4.3459325,-4.401353,-4.3368077,-4.3326216,-4.2852087,-4.1767673,-4.1710086,-4.0720963,-4.071413,-4.2021933,-4.213319,-4.3264146,-4.354754,-4.337534,-4.329219,-4.325446,-4.280828,-4.213606,-4.066988,-4.1321507,-4.116393,-4.120104,-4.1460752,-3.7994466,-4.065585,-4.0843773,-2.588005,-1.2405895,-3.073086,-3.800449,-4.1489162,-4.2742743,-4.3166075,-4.2618394,-4.2681255,-4.2837152,-4.2397923,-4.3069935,-4.3367453,-4.3070393,-4.290436,-4.249202,-4.196992,-4.158027,-4.199749,-4.0704217,-4.102514,-4.136039,-4.1708384,-3.5661726,-4.071836,-4.1321726,-4.0279794,-4.0721364,-3.9604073,-3.975163,-4.069393,-0.6653187,-2.1765776,-1.0026442,-2.306018,-2.9584687,-3.331953,-3.6558204,-3.8852925,-4.1340055,-4.1640334,-3.9049459,-3.6551533,-3.6673641,-3.7953653,-3.9870825,-4.046608,-4.047095,-4.074441,-4.0432863,-3.9667335,-3.75562,-3.5445216,-1.3399318,-2.375404,-3.4623375,-3.892536,-4.1159697,-4.072138,-4.1659174,-4.242932,-4.4532423,-4.42652,-4.2674136,-3.8563223,-3.9398944,-4.216057,-4.3167553,-4.3313417,-4.223641,-2.5605087,-3.173297,-3.9188051,-4.3171144,-4.325625,-4.2049313,-4.160674,-4.198794,-4.471878,-4.4465723,-4.375077,-4.5016317,-4.3171997,-3.8221998,-3.2526865,-3.6054993,-4.044429,-4.5949473,-4.654589,-4.239768,-4.0227966,-3.9943342,-3.9950223,-3.9892912,-4.083559,-4.0326285,-4.2125306,-4.5581303,-4.315446,-4.248603,-4.664436,-4.529768,-4.3410597,-4.350591,-4.383733,-4.410177,-4.4826555,-4.5391636,-4.496678,-4.433796,-4.387927,-4.2305603,-4.462636,-4.6636333,-4.602042,-4.429727,-4.3375387,-4.2497487,-3.8346174,-4.1619205,-4.3279796,-4.2955675,-4.168458,-4.1380973,-3.9407551,-4.1929784,-4.5094633,-4.4779015,-4.4058404,-4.3288164,-4.370512,-4.4416447,-4.556402,-4.5304174,-4.5497894,-4.523761,-4.5337267,-4.5371714,-4.582198,-4.5742874,-4.3998404,-4.3720226,-4.5134125,-4.545395,-3.7763884,-2.3823693,-3.5062907,-3.9746866,-4.3452253,-4.4632907,-4.2897444,-4.070294,-3.6445427,-4.0451937,-4.325779,-4.2284164,-3.9546113,-4.2478576,-4.444708,-4.308427,-3.7409534,-3.427082,-3.6795564,-4.0277576,-4.152624,-4.0327077,-4.0125213,-3.998949,-4.071723,-4.167744,-3.9038465,-3.4976256,-4.191868,-4.356774,-4.3309937,-3.7606106,-0.84278077,-2.1550508,-1.3354374,-2.5755062,-3.1608582,-3.497624,-3.7307663,-3.9484723,-3.9269862,-3.5144668,-0.82208186,-2.3887794,-2.6111836,-2.9615095,-3.2451537,-3.4192774,-3.7494588,-4.0292587,-4.1668673,-4.15505,-3.9737167,-3.8849168,-3.7077851,-3.4370677,-3.3881938,-3.324452,-3.713658,-3.9089942,-3.2675467,-0.78747857,-1.6681472,-2.6892424,-2.9162877,-1.8682705,-3.1366336,-3.6741362,-4.0052147,-4.213993,-4.353977,-4.4785037,-4.537269,-4.490574,-4.3487134,-4.3495474,-4.4180965,-4.3811226,-4.1476827,-4.0996885,-4.1528673,-4.2529945,-4.32246,-4.2212634,-2.8252773,-3.6086001,-3.9136338,-4.2176948,-4.432784,-4.1672516,-0.68326867,-0.65037394,-1.9709488,-2.458994,-2.8313828,-3.2468386,-3.5893471,-3.822247,-3.8505619,-3.8269017,-3.6950026,-4.1913033,-4.439353,-4.5166087,-4.4131503,-4.2492785,-4.3609567,-4.505163,-4.567183,-4.6428204,-4.629999,-4.6787605,-4.6925387,-4.6892796,-4.696552,-4.5975127,-4.4864917,-4.609317,-4.5243406,-4.553919,-4.5120025,-4.441029,-4.363492,-2.3816404,-3.9175806,-4.424975,-4.5099583,-4.4507046,-4.5686407,-4.678323,-4.6109905,-4.564622
+-1.854937,-2.554379,-2.8701968,-3.010546,-3.1462028,-3.2941234,-3.3853087,-2.9555497,-2.928516,-1.7728924,-2.4527292,-2.5296493,-2.7178774,-2.8352923,-2.8948493,-2.9144378,-3.0819883,-3.1145902,-3.1247022,-3.122542,-3.1046631,-3.102093,-2.944266,-2.9480991,-2.9408097,-2.926299,-2.9269862,-2.9256554,-2.8745494,-2.931887,-2.872476,-2.9162133,-2.9395678,-3.0049086,-2.977875,-2.8533616,-2.799024,-2.7769005,-2.7824383,-2.8661523,-2.9218206,-2.9868436,-2.9934115,-2.9336603,-2.9419827,-2.9444983,-2.9278884,-2.8688407,-2.8875523,-3.0021179,-2.9926147,-2.9757738,-2.940262,-2.9866862,-2.9089487,-2.9060683,-2.9326568,-2.9761539,-2.9399974,-2.9458568,-2.956283,-2.9757552,-3.0329127,-3.0292833,-3.0211549,-3.0786252,-3.0994391,-3.0686743,-3.0097563,-2.9962728,-2.9367516,-2.9867232,-2.9845963,-2.916073,-2.9642527,-3.0131075,-3.0352976,-3.0271828,-2.9822025,-3.068913,-3.4408514,-2.9652638,-2.953863,-3.0724154,-3.0384798,-3.0532842,-3.0336998,-2.987245,-2.9439955,-2.9817202,-2.9988735,-2.932391,-2.9570365,-2.9427276,-2.955666,-2.9841692,-2.9806452,-2.9989657,-2.965924,-2.953436,-2.9657443,-2.9644608,-2.99959,-3.0054688,-2.9796927,-2.9817345,-3.0076108,-2.9984713,-3.016961,-2.9861465,-2.9563487,-2.9720075,-2.9303808,-3.0344114,-2.386543,-2.8127465,-2.8281598,-2.8886569,-2.014692,-2.7511277,-1.1097863,-2.079109,-1.9893981,-2.2280312,-2.3963718,-2.5025868,-2.589285,-2.6688998,-2.7467408,-2.7324133,-2.7497725,-3.0073986,-2.7034006,-2.7635746,-2.6731768,-2.8069205,-2.8272076,-2.8566601,-2.872146,-2.840754,-2.8707843,-2.5042877,-2.8085582,-2.8711314,-2.8889089,-2.908573,-2.9252324,-2.9088905,-2.9645925,-2.9721034,-2.932598,-2.9684389,-3.0102065,-2.8931475,-2.909932,-2.974633,-3.0087552,-3.0237765,-1.4838704,-1.216224,-2.174431,-2.2543573,-2.324794,-2.480196,-2.5861328,-2.6814022,-2.7096534,-2.808587,-2.87916,-2.9024215,-2.9523382,-3.040853,-2.8901699,-2.837224,-2.9167786,-3.0119662,-3.0073934,-2.7798564,-2.2019348,-2.6279893,-3.2301188,-2.9151828,-2.9667697,-3.1733544,-3.4763494,-3.0067956,-3.1362863,-3.1680799,-3.1955416,-3.122139,-3.1906567,-3.1824484,-3.2174792,-3.2420282,-3.2493796,-3.21239,-3.2631872,-3.2833328,-3.258869,-3.2115688,-3.2443504,-3.2234516,-3.2218246,-3.253924,-3.2472663,-3.2436745,-3.3585901,-3.0859237,-3.2515411,-3.3105006,-3.3310628,-3.2877903,-3.2480457,-3.2423575,-3.3210852,-3.346567,-3.3638177,-3.417418,-3.370915,-3.4580534,-3.4658546,-3.4468875,-3.4342098,-3.4444973,-3.4817424,-3.4858208,-3.490569,-3.4994838,-3.5220203,-3.560284,-3.4608774,-3.428413,-3.5124216,-3.4449418,-3.0223005,-3.394033,-3.4060829,-3.4507298,-3.521994,-3.515698,-3.3608124,-3.4188087,-3.4956937,-3.4636369,-3.532544,-3.4893827,-1.7657058,-3.0580423,-3.3266392,-3.3824508,-3.378673,-3.4041584,-3.4409392,-3.5174751,-3.4662719,-3.4621067,-3.4678068,-3.5061135,-3.5413165,-3.4469123,-3.1569247,-3.515373,-3.343017,-3.508021,-1.3949323,-2.2801442,-2.6895769,-2.232569,-2.6647892,-3.095919,-3.0819387,-3.1299515,-2.9746678,-3.2115579,-3.1495695,-2.0685122,-2.9545572,-3.1138299,-3.2529397,-3.2289186,-3.2879305,-3.386795,-3.5058393,-3.520368,-3.4534144,-3.424286,-3.4622355,-3.4523644,-0.8639199,-2.3950334,-2.768765,-2.6977003,-2.8548117,-2.9099648,-2.457381,-2.6337404,-2.9742923,-3.055748,-2.50864,-3.1353922,-3.2458248,-3.3010666,-3.377738,-3.443613,-3.483487,-3.4611914,-3.4602847,-3.461646,-3.5206022,-3.4595282,-3.4174263,-3.3403013,-3.2960439,-3.285038,-3.3627954,-3.444349,-3.1304708,-3.1983356,-3.069475,-3.2186177,-3.1022217,-3.220274,-3.2830606,-0.7265044,-1.9816722,-2.37452,-2.5514526,-2.6769671,-2.721728,-2.8536134,-2.9288754,-2.9902081,-3.0026941,-2.9481816,-3.0089545,-3.142302,-3.1804736,-3.140016,-3.1708546,-3.0512059,-3.1388614,-3.2630234,-3.290996,-3.2018003,-3.22676,-3.277709,-3.229927,-3.230403,-3.276133,-3.2362888,-3.2167735,-3.2676969,-3.2642825,-3.1878152,-3.0535634,-3.0503578,-2.865705,-3.05586,-3.0762403,-3.0201826,-2.9376743,-2.9269347,-3.0477326,-3.1620145,-3.0676432
+-1.5195215,-2.2079177,-2.530521,-2.6534076,-2.622652,-2.6019006,-2.6859899,-2.5024529,-2.6039329,-1.611065,-2.166419,-2.3270526,-2.53049,-2.6201248,-2.6025782,-2.6503413,-2.9558916,-2.9834507,-2.96261,-2.8379812,-2.7257683,-2.5616598,-2.556607,-2.5684385,-2.5525236,-2.6658034,-2.6719248,-2.6081333,-2.6633713,-2.6548958,-2.609982,-2.614998,-2.6325316,-2.6263254,-2.572348,-2.569059,-2.589705,-2.5653825,-2.520447,-2.5668287,-2.5923347,-2.5922098,-2.478397,-2.4995997,-2.5516758,-2.5527654,-2.5447083,-2.5382123,-2.5402782,-2.5485249,-2.5829625,-2.6509833,-2.644715,-2.6074338,-2.5765781,-2.6416407,-2.6103609,-2.5691447,-2.5395947,-2.555695,-2.577354,-2.593269,-2.6276793,-2.6561809,-2.6631556,-2.7567942,-2.7196662,-2.641316,-2.598217,-2.564024,-2.5516026,-2.5439942,-2.5478487,-2.5564907,-2.608669,-2.6129386,-2.6367483,-2.6497107,-2.5734072,-2.7054167,-2.749267,-2.5413604,-2.60463,-2.585692,-2.6552129,-2.6332233,-2.6202464,-2.6607654,-2.5872655,-2.5055006,-2.4695709,-2.548871,-2.5725589,-2.5968785,-2.59417,-2.595151,-2.5603843,-2.6085896,-2.6292753,-2.6038508,-2.5820472,-2.5736856,-2.5989835,-2.6058857,-2.6188192,-2.5663047,-2.5611176,-2.590134,-2.655339,-2.6656098,-2.5986288,-2.5779643,-2.548494,-2.5492902,-2.526178,-2.4768806,-2.500668,-2.5083647,-2.4695172,-2.4731162,-2.52354,-2.3935418,-2.494646,-2.510396,-2.505087,-2.512669,-2.5363102,-2.586318,-2.5957098,-2.5409465,-1.6241412,-1.7494217,-2.1403599,-2.275968,-2.3852072,-2.4413562,-2.459961,-2.4374752,-2.4628074,-2.473074,-2.5103009,-2.53435,-2.5087404,-2.5167437,-2.5172055,-2.521081,-2.545312,-2.557813,-2.596345,-2.6435938,-2.6590695,-2.6047983,-2.5300946,-2.5063164,-2.5404322,-2.567925,-2.6110399,-2.648938,-0.6335959,-1.2807819,-1.7258632,-1.9227376,-1.9054333,-1.8919672,-1.9920753,-2.120079,-2.1386578,-2.1970928,-2.287405,-2.3166735,-2.2554464,-2.3774734,-2.227511,-2.3805127,-2.4350305,-2.4891777,-2.483215,-2.482926,-1.0253943,-1.7043778,-2.1659656,-2.0000744,-2.199245,-2.387813,-2.6181507,-2.3945475,-2.560273,-2.5960839,-2.6153502,-2.547123,-2.5483518,-2.5735013,-2.5984323,-2.6277773,-2.6804152,-2.6519217,-2.648135,-2.6689105,-2.6829324,-2.67309,-2.6586914,-2.6635888,-2.6542025,-2.6230428,-2.5895948,-2.5823765,-2.5944083,-2.6085038,-2.6786013,-2.6897101,-2.6515422,-2.6483412,-2.6491542,-2.689005,-2.7329512,-2.7536957,-2.783204,-2.8173187,-2.952321,-2.8194058,-2.814402,-2.8301406,-2.8106894,-2.7538033,-2.7444396,-2.8144822,-2.8935132,-2.9294727,-2.932589,-2.8802671,-2.7540112,-2.7814646,-2.9066486,-2.8301497,-2.6525683,-2.8371925,-2.8300955,-2.7924728,-2.8285298,-2.7219603,-2.7924976,-2.881499,-2.8101368,-2.80483,-2.8168817,-2.797019,-1.3548146,-2.3602157,-2.4833195,-2.5987594,-2.7025247,-2.7666955,-2.8008466,-2.812077,-2.7931437,-2.7954144,-2.8027155,-2.8168337,-2.7864752,-2.7781298,-2.6603212,-2.776311,-2.799522,-2.8122265,-1.8406985,-1.501683,-2.4269369,-2.3824549,-2.1944926,-2.464458,-2.4363623,-2.59368,-1.9738144,-2.202591,-2.2453814,-2.21903,-2.4560585,-2.5462637,-2.644724,-2.6589446,-2.6653454,-2.6930873,-2.782078,-2.8218431,-2.7856479,-2.7797594,-2.7490282,-2.6056762,-0.93095225,-1.9206599,-2.1219163,-2.104691,-2.2465463,-2.401125,-2.2643514,-2.3007326,-2.511333,-2.5892224,-2.4892855,-2.5714974,-2.6576145,-2.7404566,-2.8252587,-2.8680434,-2.7700615,-2.702692,-2.6868496,-2.7320127,-2.7550135,-2.6883707,-2.6552749,-2.6761088,-2.7131171,-2.8005729,-2.825821,-2.7255213,-2.6902862,-2.6913817,-2.6463776,-2.6654935,-2.6351535,-2.6859345,-2.6408362,-0.6466688,-1.810833,-1.953952,-2.0974255,-2.2611704,-2.3963506,-2.507997,-2.6833668,-2.6886091,-2.5780246,-2.5953083,-2.635938,-2.716197,-2.7501793,-2.7713113,-2.7592194,-2.6724815,-2.7935126,-2.783854,-2.796103,-2.8515723,-2.7711139,-2.7082098,-2.747437,-2.8049893,-2.7751017,-2.7788746,-2.8289328,-2.8479369,-2.8213043,-2.6977806,-2.6700215,-2.5986862,-2.6868136,-2.8912134,-2.9608705,-2.7203093,-2.6680045,-2.690366,-2.8575406,-2.9785504,-2.790586
+-0.6473335,-1.2906581,-1.8798382,-2.0360494,-2.0868902,-2.5750947,-2.751995,-2.7076707,-2.9626553,-3.0490491,-2.9878418,-3.1017673,-2.7837214,-2.7619863,-2.513474,-2.9995313,-2.9894862,-3.0413132,-3.1040828,-3.1580396,-3.14368,-3.1586862,-2.0718482,-2.6076012,-2.6594236,-2.7688162,-2.8796248,-2.84827,-3.005834,-2.9376907,-2.8691275,-2.9010243,-3.012023,-3.1277838,-2.8384461,-2.8307428,-3.1436496,-3.2692418,-1.6716889,-2.9275694,-2.9930632,-2.8706543,-2.930225,-3.0287552,-3.0539474,-3.0280259,-3.0251026,-2.7015574,-2.2340653,-2.3417888,-2.0688138,-2.144306,-2.2443848,-2.3964014,-2.224091,-2.4284916,-2.3067274,-2.3029454,-2.4257245,-2.2181685,-2.4515595,-2.608553,-2.583777,-2.8074937,-2.9829483,-3.0493274,-3.0393457,-3.1792035,-2.9735746,-1.556832,-2.4300497,-1.4936525,-2.2652187,-2.6692953,-2.5412054,-2.9040322,-2.4612336,-2.9431438,-2.5905266,-2.3443704,-2.8406255,-2.1112561,-2.4861846,-2.785143,-2.1113997,-2.1369152,-2.3056712,-2.3634963,-2.6275752,-2.2464342,-2.2464511,-1.535689,-2.209529,-2.4444637,-2.6878915,-2.8255754,-1.8925685,-2.2154295,-2.6075883,-2.1600797,-2.3388052,-1.731268,-2.0289106,-2.1391294,-2.2134352,-2.3106773,-1.9300197,-2.1695065,-2.2029817,-1.91633,-1.9755334,-2.265739,-2.1452384,-1.7734374,-2.078486,-2.3184407,-1.8510662,-1.7653903,-1.9503458,-2.139821,-2.214726,-2.1970544,-2.2903578,-2.7295575,-1.5963002,-2.083372,-2.5891206,-2.2467468,-2.007656,-1.603896,-2.0764444,-1.9423795,-2.0666957,-2.1149044,-2.376176,-2.2334151,-2.0593815,-2.5290437,-2.3716173,-1.9044412,-2.2128057,-2.752841,-2.9206738,-2.9926338,-1.577653,-2.3245006,-2.2511344,-2.3472538,-2.8436737,-2.7563367,-2.8222194,-2.0637376,-2.6192417,-2.3442345,-2.7342753,-2.9245088,-3.1167157,-2.7037296,-3.0360618,-2.30703,-2.3224356,-2.2566862,-2.8607893,-2.0577276,-2.77877,-3.0794034,-3.2180839,-3.3860912,-3.399634,-3.4537253,-3.3046284,-3.4047189,-3.4804535,-3.4564693,-1.595518,-2.664359,-2.941598,-3.2684913,-3.4218524,-3.5334191,-3.4068599,-3.3318899,-3.3581681,-3.3583603,-3.3234036,-3.474959,-2.7230601,-2.9882226,-3.1570044,-2.8072953,-2.9358845,-3.1632624,-2.50697,-2.6771808,-2.766542,-2.782133,-2.4871955,-2.8700542,-2.9483109,-3.077877,-2.6470075,-2.9870005,-3.1998763,-3.145391,-3.2985992,-3.4453402,-3.4096155,-3.3129015,-3.4365141,-3.1397157,-2.1833231,-2.9209654,-3.0918064,-2.3376458,-2.7973614,-3.1027513,-3.3259447,-3.5444856,-3.674691,-3.7252035,-3.698585,-3.7075477,-3.7835188,-3.7115636,-3.7173028,-3.8608627,-3.8661177,-3.6979954,-3.0732338,-3.4101605,-3.4677045,-3.6382303,-3.5513878,-3.3133364,-3.0321846,-3.3040564,-3.4001286,-3.2850144,-3.4137106,-3.4514055,-3.5964274,-3.679119,-3.6976712,-3.81359,-3.8616219,-3.7247396,-3.3116884,-3.4189088,-3.4629765,-3.8398468,-3.7798629,-3.8559332,-3.7845125,-3.648738,-3.6745641,-3.720889,-3.855606,-3.932138,-3.911737,-3.7681894,-3.9264808,-3.7346232,-3.2804732,-3.196509,-3.1325703,-3.2816257,-3.4050975,-3.0739052,-3.1793122,-3.5124938,-3.1018758,-3.1955268,-3.2868452,-3.0437155,-3.2554119,-3.0945854,-3.3135314,-3.3174212,-3.324114,-3.382947,-3.0559876,-3.252399,-3.162113,-2.8143125,-2.8042026,-2.902507,-2.955777,-3.0313134,-3.1661944,-3.1697116,-3.0548387,-2.795927,-2.5867684,-2.4374084,-2.5637906,-2.9071183,-2.7657063,-2.8658752,-3.0262532,-3.0324874,-3.071543,-3.0041847,-2.6595936,-2.5901356,-2.7846873,-3.1188586,-3.1431289,-3.0288622,-3.2283587,-2.9486275,-2.487455,-2.3227262,-2.413913,-2.5006452,-2.3348162,-1.8705173,-2.013194,-2.2539399,-2.1639357,-1.908894,-1.6864847,-1.7206396,-1.6909076,-1.757956,-1.7141529,-1.5962092,-1.5322168,-1.7767644,-1.814092,-1.760075,-1.9474486,-1.9528441,-2.1211472,-2.1900008,-2.1658704,-1.9888946,-1.7692568,-1.7240031,-1.811904,-1.7940327,-1.9769379,-2.0612526,-2.0979097,-1.9826964,-1.9718269,-1.9457723,-1.7762868,-1.3927877,-1.0243946,-1.1342226,-1.1839508,-1.5479206,-1.3343518,-1.8284909,-2.033193,-1.4924289,-1.3924931,-1.8667356,-2.0015635,-2.1113596,-2.285049,-2.2467618,-2.474775,-2.5194955,-2.53902
+-0.9646248,-1.523798,-1.8511211,-2.0087276,-1.7890606,-2.6340425,-2.9626012,-3.0299,-3.0713897,-2.911218,-3.0934322,-3.1989346,-1.4379916,-2.189089,-2.662884,-3.198506,-3.494491,-3.5033689,-3.4522388,-3.40868,-3.335659,-3.3305786,-2.991006,-1.9400762,-3.0404096,-3.2939758,-3.329587,-3.4566224,-3.6151588,-3.663219,-3.5417037,-3.5546286,-3.535402,-3.5580544,-3.5579212,-2.4430814,-2.9979515,-3.3378367,-1.4673802,-3.0242364,-3.3492217,-3.7338448,-3.0252252,-3.356207,-3.478207,-3.4535735,-3.4929328,-3.2770877,-2.509434,-2.8567536,-2.302973,-3.4833074,-3.377165,-3.4101667,-3.365345,-3.2549791,-3.2442482,-3.1597881,-3.218038,-2.866088,-3.0413713,-3.1117146,-3.048723,-3.1065726,-3.2474039,-3.3812335,-3.4351912,-2.595962,-3.179898,-1.2754201,-2.4274437,-1.7068752,-2.81031,-3.0651922,-2.8023844,-2.9579022,-2.6050894,-2.9029999,-2.3552446,-2.655667,-3.0171032,-1.891173,-2.6937902,-2.9915338,-1.9900087,-2.1098943,-2.0176556,-2.836093,-2.1515977,-2.9122014,-3.2271242,-3.3519,-3.4860225,-3.46174,-3.7095153,-3.7391977,-0.7169248,-2.0403132,-2.5180416,-2.3130102,-2.7508483,-1.3177396,-2.4601667,-2.4748216,-2.6217856,-2.7998075,-2.4072375,-2.5034752,-2.509914,-2.8838391,-3.2198067,-3.6327705,-3.871675,-3.7614908,-3.7474005,-3.845439,-0.82774276,-1.8466405,-1.520202,-2.4816961,-2.951186,-2.9857228,-3.1863732,-3.53404,-3.6029968,-3.4846938,-3.8555648,-3.9234009,-3.120726,-2.9326553,-1.1211175,-2.1248574,-2.7056754,-3.0397954,-2.8424397,-3.093001,-2.4240313,-3.077201,-3.434256,-1.726112,-2.1718302,-3.030817,-3.1698656,-3.2956293,-3.4130657,-3.3949318,-3.5793555,-3.5411577,-3.804696,-3.825789,-3.964386,-4.0728106,-4.1595006,-4.131624,-4.0439253,-3.8876932,-1.2225739,-2.3792722,-3.2993133,-3.4573092,-3.3873072,-3.2188625,-3.5105155,-3.5919616,-2.662931,-3.389157,-3.6009636,-3.7307923,-3.8052728,-3.824481,-3.573229,-3.8735433,-3.9916964,-1.6060349,-2.4628346,-3.3067644,-3.5867238,-3.5493782,-3.8048825,-3.7983897,-3.7653298,-3.764543,-3.926784,-3.9873552,-3.7070987,-2.02331,-2.9856288,-3.4506073,-3.714825,-3.5442274,-3.8114874,-3.8528378,-2.8544319,-3.083229,-3.1181588,-3.3058276,-3.7292023,-3.8432403,-3.8129253,-3.8314068,-3.7294345,-3.7423935,-3.7272835,-3.7571654,-3.023934,-3.5790415,-3.6698437,-3.735425,-3.747129,-3.7475805,-3.794321,-3.6887574,-3.674343,-2.018705,-3.3529449,-3.6193855,-3.786721,-3.7734704,-3.756469,-3.7360978,-3.6643162,-3.72999,-3.7770677,-3.8063207,-3.7366805,-3.830558,-3.8374894,-3.685382,-3.6613111,-3.022654,-3.2665935,-3.658066,-3.6651974,-3.6750543,-3.7162194,-3.6820376,-3.667885,-3.7190433,-3.779754,-3.7941716,-3.896469,-3.892927,-3.8872972,-3.957922,-3.7700546,-3.4538808,-3.79499,-3.6150918,-3.903169,-4.1838975,-4.3436346,-4.3525815,-4.395418,-4.172408,-4.404702,-4.3951435,-4.664693,-4.729972,-4.4242268,-4.5065117,-4.5846324,-4.5166855,-4.147188,-3.8178234,-4.069577,-4.148985,-4.107553,-3.786614,-4.0419006,-4.3201723,-3.9008188,-4.0335054,-4.100458,-3.6972694,-4.1471863,-3.3624973,-3.70162,-3.791425,-3.9373684,-4.0542803,-3.8512692,-4.0271616,-4.0104504,-3.0597832,-3.3858232,-3.5849667,-3.7031338,-3.6862397,-3.6446807,-3.5626585,-3.6064968,-3.2280312,-2.890815,-2.771118,-3.046079,-3.53753,-3.602741,-3.1569219,-3.1671681,-3.3718936,-3.525298,-3.4844756,-3.1735241,-3.0148172,-3.1673284,-2.9518442,-3.2349973,-3.2896383,-3.4604478,-2.486927,-2.7234004,-2.5796196,-2.563688,-2.6745172,-2.2671437,-1.9035405,-2.3914495,-2.5435853,-2.5245333,-2.3703396,-2.2400498,-2.1371272,-2.1861522,-2.1907313,-2.0558767,-2.2197423,-2.1206791,-2.0791576,-1.9954084,-2.13022,-2.510745,-2.4510503,-2.4058306,-2.2466164,-2.411465,-2.0083456,-1.7512707,-1.5996231,-1.7416356,-2.098886,-2.297277,-2.2209423,-2.2368577,-2.2624927,-2.0106506,-1.8581258,-1.8405217,-1.6153265,-1.6534172,-1.8125576,-2.1308184,-2.1519866,-2.0376139,-2.492062,-2.6842136,-2.4697027,-2.455023,-2.5852015,-2.4567232,-2.536273,-2.669887,-2.5471628,-2.6847024,-2.5726054,-2.620616
+-0.71622485,-1.5588218,-2.2537842,-2.4557042,-2.1825964,-2.8358917,-2.9514632,-3.133026,-3.3113947,-3.3526523,-3.367512,-3.4469676,-2.2158895,-2.7844052,-2.6795502,-3.1129875,-3.3213172,-3.438646,-3.49655,-3.6323762,-3.5420947,-3.597103,-3.4042974,-2.774606,-3.0751605,-2.8674703,-2.856492,-2.8663726,-2.9314556,-3.1239462,-3.2674136,-3.4218369,-3.581665,-3.6452246,-3.7063468,-3.791799,-3.6944406,-3.780007,-2.1908262,-2.8904378,-2.9654236,-3.1246936,-3.3005886,-3.4012449,-2.9364755,-2.576191,-3.1810732,-3.2628593,-2.5584345,-3.0653205,-2.170016,-2.5173125,-2.8053517,-2.7826579,-2.9278622,-3.097093,-2.5213706,-2.927359,-3.194867,-3.299879,-3.4096496,-3.436307,-3.5119896,-3.3973365,-3.4369903,-3.7582145,-3.82782,-3.3525171,-2.882773,-2.7577577,-3.040536,-3.1224918,-2.8666263,-3.1863518,-2.4444723,-3.3592677,-2.2060583,-2.9483047,-3.2264385,-3.2715626,-3.4995408,-3.4637418,-3.626773,-3.8767471,-3.1879745,-3.468871,-3.8486252,-4.050846,-4.087182,-4.058958,-3.220227,-3.4506826,-3.540809,-3.7550712,-3.8461096,-3.972694,-2.4337635,-3.6535234,-3.999816,-2.7328823,-1.4510019,-2.4652348,-2.9057636,-2.9153905,-3.1990879,-3.3715348,-2.8923986,-3.5106115,-3.374946,-3.8014998,-3.817171,-4.0073924,-4.0884767,-3.8336873,-3.8636205,-4.0584083,-3.3137176,-2.9357233,-2.5041537,-3.5718508,-3.855463,-3.9548697,-4.0993853,-4.317999,-3.0012913,-3.713428,-4.240238,-2.340538,-1.9279904,-1.884354,-3.21436,-3.134534,-3.3467174,-3.3158293,-3.4257307,-3.7275443,-3.9548087,-4.0732517,-4.168108,-4.12621,-1.148452,-3.0079207,-3.4813886,-3.6062474,-3.6657934,-3.803622,-3.9559443,-4.0948305,-4.1727242,-4.160422,-4.2618885,-4.306118,-4.3535843,-4.365,-4.237528,-4.0524483,-1.4407529,-2.6759682,-3.4512281,-3.0144312,-3.2934816,-3.5295608,-3.7219992,-3.8705523,-3.1287208,-3.6087136,-3.8725386,-3.5946534,-4.098527,-4.105729,-2.7901788,-3.875908,-4.0942245,-2.9656653,-1.6726831,-2.982901,-3.1876578,-3.4349177,-3.6093655,-3.7807426,-3.9106202,-3.9673805,-4.0734167,-1.5011555,-2.765597,-2.4821806,-3.2349875,-2.780905,-3.0905836,-3.2474465,-3.0665188,-3.182462,-3.359222,-2.8922997,-3.2590575,-3.5337775,-3.2740893,-3.6879413,-2.6941211,-2.9047,-3.3590035,-3.0685344,-3.3772335,-3.6275296,-3.6594005,-3.5958333,-3.7925634,-3.7908795,-3.3830752,-3.8584723,-3.5983455,-3.7738516,-3.8748107,-1.6806743,-2.9869237,-3.2906733,-3.5649316,-3.6452212,-3.6881752,-3.7555094,-3.735474,-3.808381,-3.8932753,-3.913311,-3.862422,-3.973445,-3.907845,-3.8991573,-3.3013809,-3.1814203,-3.730825,-3.9915547,-3.8348057,-3.9533162,-3.9646578,-4.0750246,-3.8349948,-3.810392,-4.009007,-3.9921136,-4.2015967,-4.2096562,-3.7299864,-4.0694494,-3.8843696,-3.9499645,-3.9986281,-3.801646,-3.9745216,-4.169416,-4.139598,-3.9431014,-3.728063,-3.278459,-3.3576732,-3.2590218,-3.342372,-3.3653498,-2.9756873,-3.2730126,-3.0981843,-3.01584,-2.9709063,-2.8769817,-3.026409,-3.1007495,-3.0711708,-2.9071476,-3.1369047,-3.1995244,-3.0984848,-3.3044868,-3.2905147,-3.243218,-3.4133615,-3.2828932,-3.4208941,-3.3572726,-3.353747,-3.2713037,-3.245648,-3.1829507,-3.0366342,-2.1728077,-2.4801362,-2.7085576,-2.778439,-2.834847,-2.8821478,-2.9290977,-2.9783216,-2.9207606,-2.8900957,-2.8856936,-2.8546195,-2.998098,-2.9311733,-2.9167967,-3.2209222,-3.1566367,-3.2269998,-3.3057206,-3.1649847,-3.0974598,-3.235005,-3.0169144,-3.2532756,-3.2674773,-3.1465316,-2.5780191,-2.4911163,-2.519302,-2.7507887,-2.6868916,-2.176446,-2.3643367,-2.4709575,-2.7838387,-2.8587337,-2.8284209,-2.9055705,-2.8378487,-2.7705956,-2.792529,-2.563446,-2.713509,-2.5347834,-2.5678432,-2.8202517,-2.763006,-3.003005,-2.886263,-2.7987156,-2.8263268,-2.9886494,-2.6381526,-2.5372844,-2.5159063,-2.575872,-2.8279705,-2.9192433,-2.3983767,-2.2343102,-1.9623142,-2.350311,-2.0952325,-2.286428,-2.1679575,-2.2179022,-2.367853,-2.7593007,-2.3121185,-2.5154386,-2.5136483,-2.7364132,-2.6657102,-2.9143615,-3.2182488,-2.9147587,-3.3819745,-2.9925184,-3.043879,-3.166337,-2.815222,-2.782548
+-1.3424035,-2.208026,-2.366355,-2.3511882,-2.4808342,-2.8089685,-2.7856622,-2.8859773,-2.8693237,-3.0983472,-3.0620072,-3.1239467,-3.0676987,-2.8424048,-3.2985947,-3.3692548,-3.413717,-3.4375703,-3.6059356,-3.573352,-3.5694199,-3.630189,-3.5173464,-3.1733968,-3.338607,-3.313661,-3.274401,-3.2539582,-3.410503,-3.3828638,-3.5172467,-3.4754841,-3.532425,-3.5715568,-3.6002421,-3.3763793,-3.5421493,-3.0748818,-3.0189362,-2.9594378,-3.3589694,-3.5685616,-3.585918,-3.5391598,-2.925061,-3.2771697,-3.3871236,-3.41721,-3.3908226,-3.3357248,-3.251939,-3.3861308,-3.5914662,-3.5145667,-3.4814248,-3.5823464,-3.348855,-3.5286322,-3.4734583,-3.487054,-3.7186587,-3.7772694,-3.8067696,-3.8582377,-3.8421042,-3.906836,-3.767561,-3.7825866,-3.711235,-3.7320578,-3.7396405,-2.2638617,-2.8095345,-3.0768301,-3.2786922,-3.5816367,-3.7551317,-3.780292,-3.878405,-3.8160434,-3.7682452,-3.8132029,-3.745432,-3.6926403,-3.8506715,-3.7665,-3.9854884,-3.8263178,-3.8427072,-3.6101825,-2.1914926,-2.4613705,-3.219136,-3.4232812,-3.5212255,-3.618572,-3.7230966,-3.6732435,-3.7666025,-3.7799833,-3.8331573,-3.8032389,-3.8724542,-3.8837304,-3.8665268,-3.8748293,-3.9060113,-3.83005,-3.8519273,-3.6730967,-3.6953232,-3.76759,-3.6976123,-3.7225566,-3.9076629,-3.9126573,-3.966032,-4.078336,-4.0955415,-4.0204725,-3.8236098,-3.649854,-3.7654698,-3.8536065,-3.8067908,-3.8959098,-3.6491356,-3.5089953,-1.749005,-2.702682,-3.3537593,-3.24582,-2.2402182,-3.4200702,-3.742981,-3.982585,-3.908479,-3.8721733,-3.8514528,-3.794785,-3.8489828,-3.9702468,-4.013404,-3.9856434,-3.831586,-3.920988,-3.9838223,-3.9397044,-3.91807,-3.9551287,-4.097575,-4.1146197,-4.0754766,-3.8730183,-3.5415468,-3.1898696,-3.5851061,-3.6239524,-3.8352108,-3.8637314,-3.9657884,-4.0178404,-4.2443542,-4.180989,-3.9636478,-2.862423,-1.5935324,-2.8697278,-3.188344,-3.3943863,-3.5784338,-3.8080585,-3.9709811,-3.252007,-2.3098168,-2.51197,-2.3631182,-2.9493976,-3.4288652,-3.5368237,-3.569524,-3.5778913,-3.534994,-3.5786448,-3.607885,-2.6298614,-3.1082103,-3.3838992,-3.5510216,-3.7106924,-3.755877,-3.7955475,-3.7969637,-3.7830768,-3.943314,-3.9732366,-3.9722605,-3.8734102,-3.7234325,-2.316666,-3.4720905,-3.6306953,-4.047496,-4.1362734,-4.060461,-4.0797224,-2.3933764,-3.174966,-3.5728707,-3.665754,-3.7105584,-2.6707125,-3.390682,-2.4196038,-3.1118248,-3.3640232,-3.569253,-3.6886194,-3.754229,-3.822432,-3.893908,-3.9543648,-4.032384,-4.0962253,-4.081215,-4.104433,-4.1558104,-4.1022596,-4.2018166,-4.178928,-2.978074,-3.6968906,-3.9785366,-3.8086755,-2.7800264,-2.6618428,-2.9652495,-2.858173,-3.322676,-3.5825377,-3.0151567,-2.8964262,-2.8653166,-3.0686297,-2.9861007,-3.0455432,-2.9263783,-2.9109952,-2.739047,-2.7668717,-2.7309272,-2.6957035,-2.2510772,-1.7540034,-1.8638828,-2.1247702,-2.144757,-1.9576515,-1.9420888,-1.8133353,-1.7695484,-1.7423273,-2.0076432,-2.2739334,-2.2472696,-2.2498455,-2.219234,-2.1031315,-1.7705867,-1.9046521,-2.0439603,-2.2243469,-2.3158486,-2.4056382,-2.3738065,-2.303981,-2.0746756,-1.7861906,-1.9073001,-1.8074039,-1.6582572,-1.7019774,-1.8805212,-1.8139232,-1.7922012,-1.6156763,-1.7711332,-1.841374,-1.9465019,-2.1801167,-2.2310848,-2.357622,-2.4263399,-2.1853776,-1.873043,-1.7961924,-1.8751086,-1.8333071,-1.8803481,-1.8964149,-1.8509896,-1.8959985,-2.0527399,-2.303924,-2.4686818,-2.574317,-2.595481,-2.4271903,-2.3747678,-1.8406359,-2.162799,-2.1107693,-1.7724093,-1.8063191,-1.8728086,-1.9492723,-1.4760095,-1.8525418,-2.181791,-2.3975885,-2.5049334,-2.587072,-2.3452985,-2.1601045,-1.7255183,-1.9152772,-2.0459337,-1.6376809,-1.6665815,-1.9486132,-2.2956803,-2.3821692,-1.8624731,-2.0912113,-2.4763565,-2.7226543,-2.8163104,-2.7727647,-2.6917193,-2.1698036,-2.5658112,-2.4730666,-2.5232186,-2.5768437,-2.5249748,-2.6408658,-2.8015447,-2.7866158,-2.7844067,-2.8035188,-2.8669295,-2.9227216,-2.8635285,-2.899499,-2.8361468,-2.928472,-2.2711902,-2.5182023,-2.6931376,-2.7379208,-2.3854764,-2.4542606,-2.686924,-2.4955764,-2.3231058
+-1.3439909,-2.0679305,-2.1243107,-2.2802396,-2.429957,-2.8832917,-2.8299303,-2.6458464,-2.510157,-2.5956204,-2.781744,-2.7875454,-2.8311572,-2.8532057,-3.0214696,-3.1973155,-3.145498,-3.0773306,-2.9936395,-3.112698,-3.1436903,-3.198418,-2.87602,-3.1322112,-3.2502003,-2.991834,-3.1216984,-2.9693904,-3.2454598,-3.2831364,-3.394155,-3.247573,-3.377306,-3.378897,-3.2775862,-3.0989885,-3.151065,-3.0947104,-3.0224547,-3.1241877,-3.4535775,-3.5845532,-3.581105,-3.503949,-3.0102324,-2.3612344,-3.1108818,-3.2352014,-3.1751442,-3.0767918,-3.0509243,-3.4230652,-3.6087317,-3.6043265,-3.582508,-3.5581574,-3.2928007,-3.5082755,-3.2500615,-3.405431,-3.621706,-3.6680863,-3.767296,-3.7719786,-3.8158064,-3.9158266,-3.849307,-4.0073776,-3.871981,-4.0365753,-4.0993547,-2.5007114,-3.3796792,-3.0346928,-3.4728541,-3.8857875,-4.007061,-4.11724,-4.218641,-4.281216,-4.2950373,-4.3164344,-4.2253895,-4.192815,-4.207655,-4.335072,-4.5954876,-4.6265335,-4.598661,-4.2090397,-1.845184,-1.746919,-2.2387106,-2.247625,-2.4023352,-2.6241043,-3.0068917,-3.4630494,-3.798399,-4.0010376,-4.1022825,-4.309575,-4.4812884,-4.5092697,-4.5250034,-4.454384,-4.416054,-4.401516,-2.4415703,-1.3677558,-2.2173915,-2.5219226,-2.6827698,-2.8725145,-3.3032348,-3.6715815,-3.9254494,-4.1443405,-4.2017374,-4.116797,-4.0002184,-2.776105,-1.9532565,-2.1893969,-2.210256,-2.3447294,-2.219069,-2.3198478,-2.7306662,-3.02694,-3.3923264,-3.533166,-3.6418507,-4.022132,-4.22917,-4.369811,-4.2077775,-4.130204,-4.070985,-4.055808,-4.190606,-4.351098,-4.4042335,-4.254447,-4.1218777,-4.197505,-4.3095326,-3.4372313,-3.5173428,-3.8773541,-4.2000566,-4.306622,-4.311265,-2.2730596,-2.2644086,-2.6415958,-2.6861725,-3.372232,-3.8619394,-4.077717,-4.188661,-4.2040453,-4.3778095,-4.2848673,-4.209936,-3.9795456,-2.7990322,-3.51919,-4.0075097,-4.1855173,-4.257576,-4.305273,-4.2329235,-3.615201,-1.033608,-2.604663,-2.708846,-3.0462885,-3.1168325,-3.2248745,-3.272231,-2.444895,-2.6347418,-2.5457442,-2.7864046,-2.8853395,-3.4512978,-3.4283266,-3.4319563,-3.8135386,-3.669839,-3.6642199,-3.6528697,-3.4615493,-3.694517,-3.7990708,-3.7772007,-3.788805,-3.6459527,-3.539646,-3.5275042,-3.8817406,-4.195878,-4.175083,-4.0646567,-4.0256333,-2.1834464,-1.7962084,-2.8147485,-3.0490034,-3.0620499,-2.9345212,-3.0209317,-3.0437849,-3.1774673,-2.5938807,-3.2958493,-3.2283044,-3.204854,-3.3074863,-3.4079738,-3.5527225,-3.6974277,-3.8616478,-3.8580203,-3.8909183,-3.907736,-3.9526958,-4.023984,-3.945242,-3.3455026,-4.303644,-4.1526737,-3.5013552,-2.27927,-2.5060313,-3.1728501,-3.4406414,-3.9568665,-4.047993,-3.5718055,-3.3447604,-3.2257905,-3.5580027,-3.4316688,-3.5158467,-3.7335136,-3.7523556,-3.194368,-3.9043226,-3.6282492,-3.734397,-2.9666507,-3.1736453,-2.676692,-3.3290727,-3.5786066,-2.9881494,-2.8600383,-1.8692337,-2.371544,-3.226627,-3.3874469,-3.4009416,-3.51968,-3.1796684,-3.0946743,-2.7562907,-2.4826338,-3.0936668,-3.2333102,-3.2182689,-3.5640693,-3.7399292,-3.7839172,-3.7838454,-3.5176787,-3.2058694,-2.5855489,-2.1828074,-2.5437922,-2.7051644,-1.9698275,-1.7346278,-1.8436897,-1.6662647,-2.0253847,-1.8111469,-1.8291768,-1.8306856,-2.062948,-2.4338744,-2.5507655,-2.2900407,-2.0011177,-1.9507352,-2.037385,-1.6867124,-2.073639,-2.1601965,-2.2515864,-2.3591328,-2.5417058,-2.5553935,-2.7510908,-2.863683,-2.9700594,-2.4823906,-2.4702897,-2.2866898,-2.493531,-2.1928787,-2.0024886,-1.835227,-1.6340554,-1.5548687,-2.0010996,-1.6445261,-1.7280601,-2.2073402,-2.554554,-2.86638,-2.498427,-2.0970798,-1.8927096,-2.2116086,-2.0051508,-2.2073903,-2.468041,-2.5798936,-2.585715,-2.6535006,-2.6811428,-2.3714654,-2.5095782,-2.7967353,-3.0819144,-3.118816,-2.9506907,-2.980337,-3.1600506,-2.9900742,-3.0704951,-3.2512817,-3.0409694,-3.1730568,-3.2237196,-3.1818795,-3.2944791,-3.3060305,-3.2873073,-3.4000597,-3.343893,-3.3113103,-3.195902,-3.227767,-2.8727274,-3.2277234,-3.2354813,-3.2717228,-3.2114599,-3.3110707,-3.4374034,-3.29558,-3.2312012
+-2.068008,-2.9735827,-3.2863805,-3.6903772,-3.9747229,-4.264621,-4.434058,-1.8220558,-1.5440542,-2.4245381,-2.7896771,-3.1141143,-3.3987668,-3.6510983,-1.4268073,-2.6769052,-2.7742872,-2.8988538,-3.259143,-3.7164035,-4.0856895,-4.2871118,-4.3818684,-4.246655,-2.237303,-2.2810493,-3.0955272,-1.5117693,-2.2344556,-2.1110928,-2.5648227,-2.4320178,-2.8689156,-3.427538,-3.7670312,-3.2440217,-1.8967005,-2.058765,-2.3659785,-2.1309614,-3.1838727,-3.7957697,-4.2703395,-4.3496537,-4.0987577,-1.537804,-2.1586633,-2.0324273,-2.70148,-3.1947277,-3.5815291,-3.8569663,-4.229449,-4.2645597,-4.2402363,-4.1263056,-4.158119,-4.2923036,-4.3614216,-4.457428,-4.4301395,-4.4932413,-4.5564117,-4.573486,-4.516942,-4.4677153,-4.469831,-4.460747,-4.294403,-4.150869,-4.2883706,-2.6525035,-3.8287134,-3.2773268,-3.95364,-4.2005434,-4.26668,-4.2633553,-4.4019895,-4.4361734,-4.3420424,-4.368031,-4.3268795,-4.204246,-4.2282076,-4.3292284,-4.4213247,-4.4813747,-4.512777,-4.3438377,-2.795792,-1.709749,-2.5433445,-2.7569904,-3.6150212,-3.9481912,-4.1619706,-4.174419,-4.187478,-4.2204375,-4.2499666,-4.360549,-4.4299684,-4.4449244,-4.4790344,-4.428323,-4.359886,-4.3340464,-2.0643888,-3.192594,-3.653514,-2.019278,-2.773566,-3.652391,-4.006262,-3.7866168,-3.8515782,-4.1250496,-4.289548,-4.2462773,-1.9363109,-1.7263051,-2.9159293,-1.9767064,-1.9774817,-2.5427394,-2.0151527,-2.034371,-2.7761161,-3.2855487,-3.61244,-2.5125976,-3.2309709,-3.9229999,-4.2508254,-4.4005933,-4.4373584,-3.9470983,-3.7165241,-4.0130787,-4.0587187,-4.272253,-4.3507223,-3.8606138,-2.0805554,-2.213223,-3.7187843,-3.316926,-1.0187608,-2.0369647,-2.8493304,-3.4303842,-3.8139186,-3.922752,-1.8663516,-1.1386343,-2.5414598,-3.3891735,-3.8351133,-4.0936546,-4.3025274,-4.4123483,-4.5592585,-4.5103045,-4.49043,-3.2550979,-3.572034,-4.250204,-4.5195227,-4.670082,-4.7350693,-4.7400904,-1.3328401,-1.9595559,-1.941917,-2.23163,-2.8934722,-3.385847,-3.7651262,-4.104497,-4.267247,-1.7880067,-1.8505046,-2.6278539,-3.1694722,-3.4859896,-3.9647212,-4.11968,-4.2894964,-4.5014267,-4.6178565,-4.584219,-4.5317163,-4.416395,-4.3919725,-4.558777,-4.61784,-4.633073,-4.6469207,-4.617146,-4.3823495,-4.5677752,-4.67603,-4.8194547,-4.8315554,-4.725057,-2.1897802,-1.3372413,-2.5761893,-3.0081105,-3.3072822,-3.397901,-3.5327778,-3.639277,-3.7022204,-3.8222446,-4.094429,-3.7285836,-3.6179538,-3.9006214,-4.031767,-4.142042,-4.3254633,-4.3685365,-4.4126034,-4.406702,-4.375256,-4.4794717,-4.519452,-4.494918,-4.3776,-4.5566325,-4.522751,-4.3129926,-0.63324684,-2.516101,-2.903201,-3.3502321,-3.7627785,-3.8682237,-3.3534963,-3.4826398,-3.9901094,-4.289935,-4.206641,-3.9656591,-4.3344183,-4.495041,-4.4057436,-4.571899,-4.543376,-4.515707,-4.0135365,-4.2477846,-3.8861122,-3.9696693,-4.173312,-4.0021863,-3.8228135,-3.0635893,-1.8822592,-3.6994553,-4.201781,-4.315239,-4.108184,-2.6724856,-2.4681923,-2.4247243,-2.5386515,-3.6537662,-3.7486553,-3.7541938,-3.9866533,-4.1376824,-2.449871,-2.8724518,-2.5548387,-2.6837773,-2.4535007,-2.2720072,-2.822476,-3.5232818,-2.5543156,-2.2749662,-2.159583,-2.5592172,-2.259719,-1.8323447,-2.2348285,-2.379322,-2.6424406,-3.2935207,-3.6019588,-3.201258,-2.3448546,-2.1668375,-2.6737638,-1.7994614,-2.514989,-3.3418646,-3.6680827,-3.8672547,-3.9769297,-3.8242767,-3.8666067,-3.9010303,-3.920533,-3.749545,-3.4774723,-2.7899218,-3.2657201,-3.037932,-2.9286003,-3.189825,-3.3528438,-3.398541,-2.5186906,-1.9610909,-2.389523,-3.1399136,-3.5910869,-3.8395743,-3.408256,-1.5699333,-2.3654833,-2.8875525,-2.9900625,-3.1639633,-3.2137656,-3.7816677,-4.068246,-3.9233308,-3.0986214,-2.7290382,-3.8351235,-4.025843,-4.1431503,-4.069422,-3.7210445,-3.3758197,-4.0397787,-4.007233,-4.146742,-4.173986,-4.1933327,-4.2921515,-4.387381,-4.5076003,-4.608156,-4.5909643,-4.6309786,-4.6447954,-4.6291647,-4.6311636,-4.6540995,-2.3908415,-1.260902,-2.6253366,-2.7219954,-2.8710887,-2.7717388,-3.0196931,-3.5614595,-3.048555,-1.3097882
+-2.321875,-3.3510728,-4.0235043,-4.358899,-4.6063967,-4.7704277,-4.9062033,-0.91125053,-1.4010353,-1.6548802,-1.7293998,-2.4253345,-3.1016488,-3.6881828,-1.9568686,-1.4151753,-2.607731,-3.0937076,-3.8277116,-4.4107504,-4.736268,-4.7447877,-4.8062444,-4.87659,-4.1010914,-3.4428887,-3.7549965,-1.3554891,-1.89447,-1.5079345,-1.6835477,-1.9591471,-2.2829227,-3.0303001,-3.3525834,-3.629146,-1.4530593,-1.4905909,-1.9035126,-3.2542017,-3.8840344,-4.381284,-4.8007765,-3.2400246,-1.8294855,-2.821455,-1.8309526,-1.7261661,-3.08784,-3.7842727,-4.1430416,-4.401086,-4.6942444,-4.728157,-4.8019953,-2.8757544,-4.1170926,-4.5134964,-4.6893854,-4.82881,-4.694503,-4.8048987,-4.860795,-4.8838263,-4.8678885,-4.772361,-4.7494955,-4.784509,-4.690015,-4.5737433,-4.553649,-1.841369,-3.1254687,-4.0200076,-4.4908895,-4.610944,-4.6808205,-4.7342653,-4.788289,-4.6948557,-4.618695,-4.536071,-4.2938366,-4.425967,-4.36347,-4.480689,-4.447583,-4.486322,-3.379034,-1.723888,-1.8222685,-1.7204175,-1.7202296,-2.788781,-3.634562,-4.1719112,-4.4145613,-4.342015,-4.398149,-4.512804,-4.534477,-4.597423,-4.688092,-4.6860204,-4.6458063,-4.5825605,-4.5176067,-3.0393276,-1.2774552,-1.8048652,-2.1181347,-2.0953279,-3.1140518,-2.1538162,-2.048719,-2.5055466,-2.495576,-3.3823957,-3.27278,-2.297181,-1.7420813,-1.6246585,-1.7689172,-1.1615292,-1.7313303,-1.6774575,-1.852043,-2.5076442,-2.005532,-2.9047198,-3.3965597,-0.8197153,-1.3641398,-1.8715436,-3.1020527,-3.9441872,-2.61908,-2.3016605,-1.9733695,-1.8380599,-1.9023017,-2.1697793,-2.4335032,-1.5458242,-2.1376183,-1.7871082,-3.1717932,-1.2782843,-1.7276196,-1.9786934,-2.8671737,-3.6471088,-4.0099144,-3.9535666,-1.6432512,-2.4447293,-3.2895124,-3.864945,-4.235018,-4.205111,-4.3326964,-4.5656004,-4.7192655,-4.6269617,-4.474738,-4.327236,-4.251415,-4.5896926,-4.740185,-4.828593,-4.8987956,-4.9270372,-0.83840734,-1.8380445,-1.7832091,-1.9040071,-2.8286543,-3.2158427,-3.6730547,-4.060451,-1.5288593,-1.4833477,-1.6526948,-2.3520844,-2.8599687,-3.1868649,-3.6907592,-3.9998446,-4.156789,-4.438341,-4.4715557,-3.0650275,-3.831001,-3.9737768,-4.1880403,-4.3993063,-4.495405,-4.4595494,-4.388078,-4.2747707,-4.1428766,-4.4285355,-4.6553335,-4.7639594,-4.6718855,-4.456406,-2.5215569,-1.0209664,-2.3086355,-2.8938794,-3.1587987,-3.3133278,-3.3948383,-3.4617736,-3.6149921,-3.9212327,-3.9911113,-0.90108037,-1.8358828,-2.6885014,-3.0822642,-3.312827,-3.6764963,-3.8239775,-4.056316,-4.1283646,-4.2074685,-4.3561125,-4.4413753,-4.205749,-4.2359724,-4.421935,-4.3330193,-3.834597,-0.74394053,-2.2489724,-2.7203372,-3.1822128,-3.7103577,-3.7356243,-3.0443969,-1.5343121,-2.6773024,-3.4955652,-3.7570527,-3.6987464,-3.9409266,-4.247156,-4.1206827,-4.1008387,-4.139484,-3.9210973,-3.9853897,-4.0361896,-3.9136767,-3.7707946,-3.819296,-3.7500827,-3.6136298,-0.764411,-2.0046906,-3.1839762,-3.7585993,-3.9924645,-3.6695924,-1.5556613,-2.079442,-1.7191478,-2.192649,-2.726871,-3.151812,-3.4472635,-3.6543934,-3.7176929,-1.7163966,-2.112162,-2.5695314,-2.7410483,-2.7892706,-2.7961538,-1.7558298,-2.7091155,-2.1068568,-1.9385098,-2.291653,-2.820705,-2.8497381,-2.1009262,-2.2176378,-2.2654748,-2.655306,-2.957162,-3.1229095,-1.5852741,-2.1900096,-1.7870072,-2.1617131,-1.9564958,-1.9912628,-2.745755,-3.3192072,-3.8076904,-3.9909792,-3.9045825,-3.9059277,-3.9216356,-3.9837427,-3.9995942,-3.8633146,-3.7923374,-3.8460207,-3.593684,-1.8876103,-2.0915577,-2.9341302,-3.160965,-2.8362193,-1.517603,-2.1221476,-2.8082626,-3.1315856,-3.4083133,-1.8007303,-2.1070487,-1.8738626,-2.4273398,-2.741105,-2.4882996,-2.9074323,-3.3825018,-3.8016732,-3.1423557,-1.3649188,-1.7324685,-2.8558464,-3.303174,-3.553864,-3.390329,-3.1626058,-3.3567266,-3.879087,-4.052208,-4.2029405,-4.3231654,-4.4716835,-4.60873,-4.7816978,-4.9372797,-5.021938,-4.9165525,-4.865089,-4.7864017,-4.7150044,-4.705628,-4.5046625,-4.2669024,-0.773061,-1.8512529,-2.4538722,-2.861535,-2.8305764,-1.7456083,-3.1485398,-3.671532,-1.242025
+-1.7450427,-2.4166777,-2.7650352,-2.9882517,-3.218378,-3.2914405,-3.3450363,-2.065068,-3.2985754,-3.2475882,-3.384136,-3.356772,-3.334443,-3.3137863,-3.435872,-3.5760632,-3.5636759,-3.6175535,-3.6945662,-3.7450562,-3.7607915,-3.7768154,-3.7317772,-3.8642545,-3.675417,-3.7365355,-3.742908,-3.6460083,-3.206692,-2.8904843,-2.6957903,-3.2567582,-3.1931472,-3.2322345,-3.2776933,-3.475518,-3.4036055,-3.0333295,-3.3495493,-3.4522264,-3.6309757,-3.6947172,-3.7621293,-3.6107621,-3.5763917,-3.731868,-1.931882,-2.4897416,-3.0054069,-3.050057,-3.3280697,-3.6446815,-3.8118162,-3.8372178,-3.8942642,-3.849815,-3.8840194,-3.8693156,-3.8906841,-3.8942502,-3.845994,-3.8385606,-3.9130423,-4.00069,-4.0376287,-4.0597296,-3.9969788,-4.0242043,-3.9662895,-3.9469051,-3.8896065,-1.3355755,-2.685316,-2.8700547,-3.357728,-3.6878173,-3.8670611,-3.9495988,-3.9761515,-4.046003,-4.0334454,-3.9642649,-3.8966737,-3.9126334,-3.9050498,-3.7815619,-3.8341632,-3.6148663,-2.5308216,-1.9592553,-2.3659782,-2.669664,-2.082418,-2.9869652,-2.877628,-3.0472784,-3.3437185,-3.7222972,-3.8639746,-3.9038482,-3.9262729,-3.9371548,-3.9481838,-3.9626036,-3.9429882,-3.9823322,-3.9605331,-3.9035428,-3.7784142,-1.1432623,-2.4198227,-2.7692165,-2.5937335,-2.9367802,-3.0973506,-2.5174217,-2.7459803,-3.1264834,-2.940177,-3.173425,-2.8278427,-1.8165799,-2.483151,-2.5322156,-2.8502927,-2.7650387,-2.284876,-2.969287,-3.1649394,-3.176764,-3.1893408,-3.2384067,-2.3271842,-2.9886346,-2.9562302,-3.3272462,-3.5985255,-3.4496524,-2.9195364,-2.5521755,-3.0880284,-2.9985816,-3.137404,-3.0697067,-1.8476564,-2.8598557,-3.131825,-3.1524014,-1.6945944,-3.027771,-3.1586564,-3.245828,-3.3181193,-3.2094965,-3.2511997,-3.4089754,-3.563735,-3.7738838,-3.8755105,-3.8411555,-3.7603536,-3.7220418,-3.8882492,-3.8412797,-3.642877,-2.9262712,-3.3112977,-3.6633189,-3.7668226,-3.841662,-3.9549966,-4.0457034,-2.886537,-2.3477988,-2.960518,-3.0685112,-3.5109308,-3.6363633,-3.8153272,-2.7523465,-2.6180382,-2.4624019,-3.1297987,-3.321805,-2.949301,-2.917321,-3.3949196,-3.567902,-3.7547164,-3.805666,-2.9381561,-3.371231,-3.6182795,-3.6930676,-3.780179,-3.8003266,-3.8467135,-3.8511498,-3.8196754,-3.7772734,-3.839201,-3.6761355,-3.8498032,-3.8842826,-3.8798282,-3.8283,-3.7868514,-1.8872136,-3.045939,-3.4089632,-3.4822946,-3.6411119,-3.7055488,-3.6965308,-3.6853147,-3.6659644,-1.8909975,-2.4578686,-3.2837157,-3.3041048,-3.376659,-3.4286861,-3.518073,-3.5600686,-3.6392303,-3.715561,-3.7452521,-3.7423291,-3.8630664,-3.7952619,-3.7931778,-3.7635756,-3.8781953,-3.5376244,-1.4222159,-3.0131977,-3.1587849,-3.3046775,-3.5210483,-3.6100078,-3.361948,-3.006291,-3.2655187,-3.4832826,-3.6335092,-3.365264,-3.169078,-3.3381968,-3.4212537,-3.3481345,-3.1499379,-3.1221695,-3.1590874,-3.3100142,-3.3659742,-3.4433675,-3.458317,-3.4415653,-3.4341552,-1.8569742,-2.5858145,-2.5932631,-2.8282027,-2.907215,-3.0146494,-1.6387764,-2.6465812,-2.3129926,-2.2133439,-2.1652944,-2.2809582,-2.6076813,-2.635025,-2.6427689,-2.1084626,-2.1820436,-2.1273816,-2.0603538,-2.1526122,-2.1729648,-1.9948257,-2.072789,-2.1057343,-2.3135204,-2.359453,-2.429087,-2.5126436,-2.605658,-2.3647656,-2.4574528,-2.636564,-2.4259121,-2.5685296,-2.1509666,-1.9809512,-1.7738142,-1.7888538,-1.924503,-2.0363657,-2.0627203,-2.0554044,-2.1869144,-2.1864302,-2.090445,-2.0731034,-2.1443071,-2.2752025,-2.3894942,-2.354856,-2.4283853,-2.513568,-2.4703119,-2.574473,-2.6481686,-2.7344246,-2.9364407,-2.938471,-2.9321623,-2.7965343,-3.0257254,-3.0714464,-3.423081,-3.3969393,-3.1784458,-2.926869,-3.0261788,-3.1079016,-3.1826594,-3.5067804,-3.8274775,-4.184493,-3.8477783,-3.6039367,-1.9939061,-2.6016366,-2.701868,-2.7315822,-2.9206512,-3.052557,-3.201837,-3.3976529,-3.4647832,-3.4913611,-3.5535011,-3.6486056,-3.6162176,-3.618031,-3.607194,-3.634603,-3.6905837,-3.6471295,-3.6724095,-3.6914544,-3.6857214,-3.7130337,-3.6739426,-1.9690913,-3.5301366,-3.4591734,-3.5512214,-3.3887901,-3.5529408,-3.5184884,-3.5937319,-3.2829669
+-3.1565719,-4.1735473,-4.4094677,-4.551417,-4.5207043,-4.5685005,-4.2643013,-1.1368705,-2.1465616,-1.4056069,-1.7810701,-2.939138,-3.5072317,-3.9411635,-4.1621866,-4.288742,-4.351078,-4.4726477,-4.585889,-4.627949,-4.650181,-4.6461344,-4.5473294,-4.5315466,-4.491829,-4.388357,-4.3761835,-4.3478055,-4.157939,-3.8849058,-2.0176268,-3.327092,-4.0378103,-4.2787676,-4.359048,-4.027599,-1.5542824,-2.731396,-3.597787,-4.0767183,-4.237565,-4.3043194,-4.3482294,-4.238615,-4.263879,-4.271424,-4.1658397,-3.1840086,-3.8117661,-4.110342,-4.2257557,-4.2292147,-4.2534237,-4.2806597,-4.325117,-4.2707887,-4.29609,-4.340742,-4.344943,-4.314824,-4.2956033,-4.260721,-4.2640986,-4.25854,-4.2607126,-4.304448,-4.3774643,-4.434656,-4.31878,-4.2454777,-4.1092377,-3.7284808,-4.0786448,-4.1966534,-4.2810225,-4.376089,-4.367778,-4.381969,-4.358593,-4.260274,-4.2671404,-4.232545,-4.222914,-4.2255516,-4.1334257,-4.2004485,-4.1517034,-4.062792,-3.5728374,-3.4645753,-1.5906123,-1.698819,-2.4324405,-3.4584382,-3.926331,-4.118204,-4.1838264,-4.106869,-4.166258,-4.1797543,-4.2080965,-4.259819,-4.283703,-4.279024,-4.222119,-4.2126684,-4.169852,-4.184334,-3.7417562,-2.5799723,-2.7501788,-3.7819428,-4.0326357,-4.0832005,-4.067315,-3.9558375,-3.9845657,-3.9458678,-3.8822255,-3.9230745,-1.3298496,-2.4883702,-2.5297387,-2.2192822,-1.6801044,-2.119867,-2.6477153,-3.1941397,-3.818767,-4.069216,-1.5106827,-2.261384,-1.4316866,-2.4784389,-3.150437,-3.7309656,-3.9639254,-4.1054792,-4.158412,-4.2096405,-4.131257,-3.995244,-4.0703483,-3.756128,-2.4982285,-3.2277503,-4.0220833,-4.0231757,-3.777735,-4.155197,-4.2561417,-4.2770796,-4.084006,-1.2819643,-3.031426,-3.7240984,-4.1934013,-4.44246,-4.3805857,-2.810475,-2.55448,-3.6659734,-4.1725435,-4.27163,-4.2519827,-2.8045464,-3.7504165,-4.2849193,-4.4514217,-4.458691,-4.4799113,-4.449516,-4.156312,-3.7957788,-3.144569,-3.1148944,-4.287595,-4.455617,-4.4082913,-3.886088,-4.1502047,-3.5160384,-4.004958,-4.109746,-1.7675844,-1.5755997,-3.5153444,-3.9582036,-4.0673466,-4.2910337,-4.328927,-4.2752266,-4.3260107,-4.385436,-4.4077206,-4.4599915,-4.5125294,-4.517218,-4.4786944,-4.4333644,-4.2715006,-4.334505,-4.4851737,-4.5552597,-4.488059,-4.4332147,-4.382205,-3.880977,-4.1753726,-4.3287215,-4.4337673,-4.289367,-4.328655,-4.118141,-4.100231,-4.258316,-1.6351705,-1.2452365,-2.8896675,-3.363029,-3.7259674,-4.0011187,-4.2770004,-4.393719,-4.3601236,-4.3935747,-4.430915,-4.4782963,-4.561678,-4.5827513,-4.4542217,-4.478924,-4.6574483,-4.5139036,-1.0358639,-2.6102543,-3.2615142,-3.8625221,-4.2872953,-4.3562613,-3.9738588,-0.988905,-2.6802382,-3.5446544,-3.8339438,-3.8482547,-3.999599,-4.2121463,-4.2732215,-4.173398,-3.852496,-3.6939383,-4.048358,-4.1500826,-4.125996,-4.1241026,-4.068934,-4.111498,-4.103759,-1.0429757,-1.9526088,-3.5861526,-3.848456,-4.074463,-3.0506015,-1.4047192,-2.782133,-2.3431933,-2.8037748,-3.6984477,-3.7894104,-3.9623322,-4.088478,-4.012609,-1.8485256,-2.1605568,-2.9006932,-3.391833,-3.5056858,-3.6689997,-3.6430244,-4.066087,-4.0571547,-4.1098356,-3.870127,-3.9576864,-3.8708696,-3.8401701,-2.060457,-1.5640417,-2.1609,-2.8245387,-3.290554,-2.5381145,-1.9146177,-2.235765,-3.4055548,-2.7069404,-2.6119313,-3.2021327,-3.8466513,-3.9879084,-4.104617,-4.212791,-4.2469826,-4.2199306,-4.222953,-4.222796,-4.218445,-4.259441,-4.316454,-4.260392,-3.8237948,-3.9381876,-4.1378965,-4.228797,-4.2458,-3.652862,-3.558018,-3.7969294,-4.21796,-4.4112797,-4.3363967,-0.95914316,-1.8477976,-2.775854,-3.1716213,-3.3952851,-3.6905718,-3.917332,-4.0134487,-4.0489125,-3.3974948,-1.3333125,-2.957454,-3.5112126,-3.9842205,-4.148014,-4.1799197,-4.099684,-3.1822567,-2.3371835,-3.6876924,-4.1880307,-4.4297113,-4.528892,-4.5691757,-4.614528,-4.633511,-4.608754,-4.6187954,-4.626245,-4.6392164,-4.617774,-4.5959954,-4.361404,-1.2903438,-2.8845544,-3.7923737,-4.1651144,-4.2963037,-4.217401,-4.43332,-4.5242763,-4.4464235
+-2.7208676,-3.945778,-4.178899,-4.4923396,-4.5561085,-4.529605,-4.229231,-0.75026447,-2.3698804,-1.6419374,-2.032985,-2.107735,-3.1126866,-3.8196056,-4.1688414,-4.327265,-4.417676,-4.4678946,-4.485626,-4.533301,-4.5553384,-4.5575047,-4.524517,-4.546895,-4.5426636,-4.4893813,-4.497284,-4.5729117,-4.370261,-4.4427404,-4.3389688,-4.3499627,-4.454214,-4.509057,-4.4858847,-4.3669267,-4.263922,-4.2500496,-4.263486,-4.348038,-4.389371,-4.47635,-4.4554663,-4.322529,-4.365099,-4.432584,-4.314539,-4.252936,-4.2423916,-4.3587494,-4.3664784,-4.351135,-4.335473,-4.3817434,-4.393477,-4.3655415,-4.4171534,-4.4425154,-4.429467,-4.367481,-4.3922453,-4.4027443,-4.4356823,-4.481088,-4.4746714,-4.406681,-4.3628864,-4.3882623,-4.322975,-4.3398566,-3.9508514,-3.9365227,-4.3056326,-4.345028,-4.431575,-4.4669724,-4.468499,-4.4564667,-4.469084,-4.399286,-4.3373127,-4.2375116,-4.2849693,-4.4080615,-4.1579704,-4.182109,-3.700415,-1.9295465,-2.1272693,-1.595861,-1.7521948,-1.9954833,-2.9513352,-3.778473,-4.261524,-4.5016217,-4.5747166,-4.5266,-4.5924563,-4.5964108,-4.633212,-4.624243,-4.5811014,-4.5653358,-4.4987535,-4.5239277,-4.489462,-2.0547142,-1.429408,-2.2368295,-2.3450608,-3.527649,-2.006629,-3.442295,-3.8230493,-2.7727008,-3.7147603,-1.5721356,-1.7097054,-2.416091,-1.3304468,-1.8250948,-1.3859009,-1.9595447,-1.5809822,-1.6942192,-2.254992,-2.6012068,-3.08845,-3.5401716,-1.3790259,-2.1232812,-2.1545043,-2.7852936,-3.3840368,-3.7871022,-4.032013,-4.1814156,-4.235488,-4.266133,-0.58738226,-1.8238326,-1.883357,-2.5729847,-3.1260834,-3.6042728,-3.9453847,-1.4062787,-2.6006312,-3.4340782,-3.8794742,-4.229557,-4.218322,-2.3385644,-3.2822247,-3.856916,-4.240419,-4.3867106,-3.4175754,-0.5084315,-1.8007065,-2.5150602,-3.149589,-3.64038,-3.9035597,-3.9954252,-4.1523476,-4.2961407,-4.3918123,-4.414934,-4.5091825,-4.5068827,-2.5497482,-1.7944951,-3.1759324,-3.6932158,-4.170477,-4.3576593,-1.3614837,-1.5048894,-2.4116158,-2.1750755,-1.4871664,-2.3476071,-2.9259784,-3.267362,-3.786969,-4.004354,-4.102621,-4.261548,-3.3222558,-3.9519653,-4.2205744,-4.3289495,-4.4199543,-4.435376,-4.460353,-4.5119386,-4.4786444,-4.4503956,-4.3945947,-4.4147453,-4.4472375,-4.4634924,-4.5441103,-1.7842466,-2.773065,-3.1131296,-3.8142982,-4.228041,-4.363449,-4.3640575,-4.359988,-4.286207,-4.187938,-4.1551304,-2.2328308,-3.3934755,-3.85632,-4.140193,-4.2576294,-4.3191233,-4.2963705,-4.2657175,-4.24218,-4.280802,-4.296516,-4.3649764,-4.403542,-4.4552164,-4.3930745,-4.2565536,-4.301984,-4.3855076,-1.2396917,-3.018453,-3.4369721,-3.891409,-4.1693754,-4.1885204,-3.99271,-1.4137028,-1.0634545,-2.9507835,-3.1817455,-3.206026,-3.359119,-3.715583,-3.8591135,-3.7931662,-3.7060647,-3.7480564,-3.9126685,-4.0508795,-4.038453,-4.0584908,-4.0506463,-4.0800395,-4.1960387,-3.6147456,-0.47465435,-2.9058852,-2.6548066,-3.0255675,-2.8203459,-0.8996273,-2.1702023,-1.8183388,-1.6929225,-2.546589,-2.986267,-3.2646437,-3.424992,-3.4084835,-1.7383361,-1.0313728,-2.1576118,-2.4029353,-2.6617637,-2.8613567,-2.9949446,-3.2209315,-3.4121566,-3.7036998,-3.7893586,-3.8354297,-3.8264163,-3.8819945,-1.3341101,-1.1134938,-2.0788703,-2.464985,-2.7621837,-1.9286191,-1.9205993,-1.3507522,-2.324775,-2.547318,-1.5613352,-2.4197624,-2.9356842,-3.0659804,-3.2005982,-3.3481023,-3.4612675,-3.7058296,-3.8421068,-3.8904085,-3.9827323,-4.065691,-4.122118,-4.215248,-4.155508,-4.1761236,-4.2393255,-4.3779244,-4.3447556,-4.017823,-2.605972,-3.3708444,-3.8193128,-4.057762,-4.115055,-1.2732235,-1.0146798,-1.855551,-2.72326,-3.2180805,-3.5900276,-3.7578864,-3.885958,-4.114874,-3.9440355,-4.0380282,-4.108693,-4.18426,-4.2545557,-4.317024,-4.3021646,-4.1974683,-4.2595463,-4.360591,-4.4383087,-4.4345245,-4.495716,-4.476401,-4.495142,-4.518711,-4.5309057,-4.511581,-4.501569,-4.5044403,-4.519684,-4.5344,-4.477168,-4.4803734,-4.2016206,-4.324648,-4.443913,-4.4347415,-4.3818564,-4.0514956,-4.414954,-4.4423532,-4.4165387
+-2.517885,-3.8918107,-4.333586,-4.588442,-4.6523867,-4.655224,-4.3733935,-1.3274233,-2.9043543,-3.3594315,-3.2301378,-3.4474049,-3.8586352,-4.378216,-4.5335073,-4.591709,-4.673999,-4.695731,-4.708649,-4.734589,-4.737799,-4.687026,-4.6059694,-4.5929866,-4.5917945,-4.5724015,-4.6913185,-4.687026,-4.3889537,-4.6075935,-4.40771,-4.5873003,-4.6813297,-4.7031994,-4.650239,-4.3808813,-4.332466,-4.249678,-4.2961035,-4.452897,-4.468156,-4.579723,-4.541872,-4.311096,-4.487294,-4.6065693,-4.520094,-4.359083,-4.4665155,-4.5753794,-4.636405,-4.636629,-4.639269,-4.675911,-4.6484203,-4.5355396,-4.7295866,-4.765255,-4.698099,-4.6335917,-4.674031,-4.6837726,-4.628139,-4.614104,-4.5352407,-4.5423093,-4.5582623,-4.590891,-4.477396,-4.458935,-1.683067,-3.3727303,-3.840928,-4.2033896,-4.503768,-4.6386986,-4.677059,-4.619912,-4.59567,-4.5305257,-4.4614077,-4.392357,-4.4595785,-4.4853306,-4.166183,-2.809237,-3.755752,-3.9961004,-2.1337423,-2.0189815,-1.398527,-2.2195702,-2.7680411,-3.2288256,-3.6889055,-4.0606265,-4.0908365,-4.0568185,-4.085594,-4.0653353,-4.2044506,-4.2570543,-4.233214,-4.2788486,-4.1104145,-3.4901807,-3.9634075,-3.406057,-2.311736,-2.4207642,-2.6867595,-3.345069,-1.1122593,-1.4749498,-2.03947,-2.5396686,-2.976839,-2.7413526,-1.4330226,-2.1190379,-2.5564203,-1.087735,-2.5240016,-1.6104149,-2.1071105,-2.2707806,-2.7663295,-3.1010962,-3.2486215,-3.4901347,-0.54981667,-2.120479,-2.4714608,-2.8040106,-2.3219256,-3.076712,-3.4381013,-3.6049833,-3.7186365,-3.7905908,-2.214785,-1.6791309,-2.294114,-2.8026142,-3.2312183,-3.494681,-3.747054,-3.2118971,-3.6060772,-3.9925332,-4.1830244,-4.285677,-2.7564616,-2.2450802,-3.1656423,-3.5804322,-3.9708648,-4.2437005,-3.882038,-0.33676502,-2.156701,-2.7236893,-2.9873319,-3.2931614,-3.3037052,-3.5561457,-3.857614,-4.026283,-4.2719574,-4.423928,-4.5454006,-4.388775,-4.018461,-4.040394,-4.1436725,-4.227941,-4.2933626,-4.359235,-3.7436843,-0.8716554,-2.5582616,-2.895496,-3.410569,-3.5286736,-3.9079494,-3.7542667,-4.0289226,-4.300084,-4.4029655,-4.4107575,-4.445152,-4.410791,-4.5453706,-4.5966835,-4.6970267,-4.723228,-4.782071,-4.7817755,-4.7338567,-4.6610093,-4.6457076,-4.641495,-4.7368393,-4.78216,-4.6693463,-4.5323887,-4.369134,-4.0516005,-4.317843,-4.442618,-4.489779,-4.3677845,-4.3740377,-4.1849527,-4.146135,-4.1709185,-4.3443727,-4.3981137,-4.3696733,-4.4459705,-4.606025,-4.6921253,-4.740123,-4.723008,-4.7988396,-4.7854223,-4.7888203,-4.834474,-4.8337708,-4.8277736,-4.6822248,-4.5680647,-4.773944,-4.8139544,-4.205563,-4.1025367,-4.2717776,-4.5327215,-4.5756435,-4.613938,-4.2102537,-4.133109,-4.082523,-4.303988,-4.501175,-4.4638557,-2.768756,-3.7656226,-4.1934204,-4.344658,-4.212699,-4.196696,-4.3419657,-4.4635553,-4.5293617,-4.551441,-4.541168,-4.588459,-4.68744,-4.1649528,-3.7483044,-4.182968,-4.48468,-4.5655117,-4.0176325,-0.9670035,-2.877635,-2.890472,-2.292533,-3.173828,-3.5516386,-3.7835147,-3.751483,-3.8690753,-3.3732061,-1.6186222,-2.9692318,-3.2553833,-3.506374,-3.757513,-3.8677044,-3.929469,-4.243537,-4.454996,-4.4012437,-4.3396955,-4.360551,-4.4628325,-2.7769394,-1.4356683,-2.8642645,-2.9086833,-3.150022,-3.3388646,-3.1492038,-1.7772912,-2.9743967,-3.2841773,-3.1869175,-3.281498,-3.45572,-3.6194534,-3.8049655,-3.9489975,-4.102871,-4.3168974,-4.4188137,-4.468485,-4.5229673,-4.610956,-4.6218395,-4.590412,-4.4519534,-4.3495493,-4.3836446,-4.5616937,-4.6446276,-4.3305707,-2.6507428,-3.3125055,-1.9485881,-3.2064955,-3.4710212,-1.150199,-2.6084266,-2.4694972,-2.898776,-3.2264056,-3.4818375,-3.6399567,-3.9572678,-4.1593895,-4.161397,-4.1077776,-4.1398497,-4.390456,-4.586544,-4.487378,-4.5354414,-4.438856,-4.580433,-4.7108502,-4.7426643,-4.6904607,-4.727789,-4.7064877,-4.7114716,-4.743412,-4.7477503,-4.71093,-4.7033496,-4.701829,-4.687808,-4.6654053,-4.6470985,-4.673082,-4.296978,-4.522479,-4.6942534,-4.6587973,-4.567954,-4.4265447,-4.6161976,-4.7020617,-4.6296473
+-2.79784,-4.100235,-4.3737235,-4.531069,-4.5931263,-4.5592732,-4.4076657,-4.181501,-4.3547897,-4.393545,-4.247119,-4.302074,-4.417506,-4.5855894,-4.5832195,-4.5807824,-4.5994587,-4.6042147,-4.6199646,-4.5975595,-4.601488,-4.5186768,-4.4470596,-4.460969,-4.478939,-4.4656024,-4.4644704,-4.4246984,-4.415309,-4.4675083,-4.353651,-4.449012,-4.528202,-4.530512,-4.4669695,-4.3636293,-4.314543,-4.323907,-4.3399124,-4.3816023,-4.436097,-4.4362755,-4.6625204,-4.2487144,-4.315302,-4.4227223,-4.411922,-4.384428,-4.428499,-4.42122,-4.468067,-4.4214983,-4.424573,-4.4809895,-4.3868012,-4.397694,-4.4518337,-4.6009603,-4.3678265,-4.4058795,-4.4610844,-4.471161,-4.430068,-4.4454613,-4.4848824,-4.399828,-4.339876,-4.2920094,-4.302848,-4.237205,-4.177085,-4.2700486,-4.336488,-4.34466,-4.4811835,-4.507722,-4.454918,-4.3649626,-4.436349,-4.429851,-4.423087,-4.2459617,-4.31263,-4.5518527,-4.1721063,-4.230998,-4.2342362,-4.2521195,-2.5633783,-0.98937625,-1.5708281,-2.1185994,-3.1228824,-3.8123047,-4.235714,-4.3875275,-1.3170096,-3.0500305,-3.6075501,-4.0560937,-4.3630285,-4.392412,-4.389824,-4.3744664,-1.0868899,-2.569607,-3.1887317,-1.7324059,-3.021895,-3.0799446,-3.929088,-4.237712,-2.1056957,-1.0179595,-1.7243989,-1.2516869,-2.2051034,-2.7193465,-0.6052473,-1.5385585,-1.1188747,-1.5130953,-2.0074048,-2.1461546,-1.511515,-2.4160452,-2.9836612,-3.4066098,-3.795802,-1.8336223,-1.097375,-2.130088,-2.5507855,-2.8958817,-3.3436515,-1.3006653,-2.7970324,-3.1833565,-3.4496377,-1.9340005,-2.4385133,-1.4091573,-2.378976,-2.2465706,-2.9527574,-3.3462017,-3.6847994,-2.701027,-3.4750795,-4.0096483,-4.1748548,-4.230284,-1.2817725,-2.4299273,-3.079708,-3.5855534,-3.9478116,-4.155633,-0.79869205,-0.7457974,-1.8809699,-2.5150857,-2.8056254,-2.9505959,-3.1595526,-3.495552,-3.8612897,-4.1958923,-4.2488084,-4.3315315,-4.3581533,-3.891108,-4.1323557,-4.191236,-4.3019967,-4.268947,-4.328191,-4.517161,-1.8340446,-1.4667908,-3.1353633,-3.56798,-4.0073404,-4.056848,-4.25319,-4.2398453,-4.440771,-4.428908,-4.4406486,-4.413332,-4.40489,-4.441454,-4.563522,-4.565727,-4.5694256,-4.5897994,-4.59639,-4.5759296,-4.5139546,-4.532979,-4.5026817,-4.479439,-4.538788,-4.6126065,-4.6179543,-4.4891434,-4.4824286,-4.2754703,-4.5215645,-4.5791187,-4.544635,-4.420358,-4.4800153,-4.414649,-4.3753996,-4.3775983,-4.362849,-4.352287,-4.4625382,-4.5164857,-4.5507097,-4.5583124,-4.584286,-4.568817,-4.411401,-4.487034,-4.493663,-4.511441,-4.542196,-4.544983,-4.4057665,-4.3272495,-4.3983326,-4.539258,-4.314187,-4.210104,-4.2764482,-4.297357,-4.273985,-4.2807655,-4.210208,-4.0267043,-3.9530973,-4.156856,-4.1162777,-4.02275,-3.9029498,-4.1682167,-4.124832,-3.8770487,-3.856087,-4.024728,-4.1681337,-4.2163467,-4.2671742,-4.3153152,-4.336418,-4.3703213,-4.373808,-4.1755857,-4.0071235,-4.1198587,-4.168777,-4.152068,-0.89591086,-1.0343958,-2.1689398,-2.6369004,-2.1151123,-2.981944,-3.4119482,-3.608328,-3.879898,-3.88526,-3.931709,-0.7954876,-2.404533,-2.914791,-3.3220773,-3.6604862,-3.9014528,-4.0500574,-4.2689033,-4.438759,-4.3862877,-4.3159385,-4.266799,-4.2903523,-0.6601618,-1.7141247,-2.7098265,-2.9996414,-3.2813864,-3.5119193,-0.7731024,-1.814905,-2.7316885,-3.1436155,-3.328002,-3.5966845,-3.9383168,-4.0859404,-4.2208395,-4.343836,-4.3597107,-4.395293,-4.3898063,-4.410428,-4.411434,-4.438142,-4.4503026,-4.4217567,-4.387888,-4.4287367,-4.46901,-4.4345303,-4.404853,-4.3175745,-2.6151478,-3.7818155,-3.3142314,-4.1757555,-2.9863625,-0.7462804,-1.9046285,-2.4259038,-3.1003046,-3.5731437,-3.9107049,-4.0695596,-4.247841,-4.355529,-4.3522024,-4.317895,-4.3622503,-4.4139237,-4.434227,-4.3852034,-4.363361,-4.3878736,-4.4180717,-4.495692,-4.475727,-4.4945755,-4.531578,-4.525798,-4.521321,-4.534543,-4.542512,-4.5150094,-4.522027,-4.5205364,-4.520113,-4.4652605,-4.4781804,-4.549967,-4.3355985,-4.4398093,-4.536027,-4.5187407,-4.4486623,-4.415596,-4.4876456,-4.517017,-4.440572
+-1.9961447,-3.0805209,-3.555163,-3.7553213,-3.8842552,-3.910445,-2.8436248,-2.767132,-3.1915493,-3.3490143,-3.5546389,-3.6359344,-3.712758,-3.815875,-3.791957,-3.759118,-3.7254033,-3.7704468,-3.779034,-3.7300963,-3.6445565,-3.5909522,-3.6220055,-3.645235,-3.6444879,-3.668121,-3.6476974,-3.6357155,-3.6749792,-3.6559985,-3.6203976,-3.6328812,-3.6418576,-3.6617737,-3.6279507,-3.589978,-3.5045538,-3.5096304,-3.5472665,-3.556202,-3.5721002,-3.599521,-3.4967887,-3.5729785,-3.5304708,-3.5296497,-3.5393662,-3.5597608,-3.5869455,-3.5972042,-3.6557188,-1.721866,-2.9154286,-3.2896574,-3.726739,-3.4110067,-3.547639,-3.794394,-3.7835746,-3.388783,-3.522245,-3.57549,-3.5720294,-3.5587935,-3.5588636,-3.5670137,-3.5540535,-3.5959752,-3.5804834,-3.5660748,-3.5540853,-3.5500808,-3.5491242,-3.520575,-3.5458627,-3.55302,-3.5432653,-3.4870856,-3.4519312,-3.5268111,-3.8399396,-3.4524598,-3.853622,-3.476674,-3.5249133,-3.5268712,-3.540824,-3.5080178,-3.4760056,-3.491249,-3.5130298,-3.5331633,-3.5314426,-3.5148435,-3.50465,-3.5820985,-3.554569,-3.5422964,-3.54741,-3.5284734,-3.5113516,-3.558341,-3.5791268,-3.51273,-3.5195482,-3.5189562,-3.5189571,-3.5287213,-3.5310485,-3.5248065,-3.5363429,-3.5543828,-3.5188413,-3.578763,-3.581023,-3.5558348,-3.5643396,-3.5616906,-3.5558891,-3.594827,-3.9129362,-3.5358806,-3.5175092,-3.58314,-3.5651624,-3.5744119,-3.5992327,-3.5836315,-3.613109,-3.7549977,-0.71710664,-2.300909,-2.5433142,-2.590773,-2.7851694,-2.9584775,-3.1783786,-2.563663,-2.9062004,-3.0781798,-3.3098872,-3.5517764,-3.5370035,-3.5695696,-3.424638,-3.5909176,-3.7048974,-3.6998148,-3.6821759,-3.709734,-3.7513373,-3.72574,-3.7527814,-3.7111435,-3.697726,-3.6789281,-3.6585448,-3.688291,-0.2607337,-1.4132396,-2.0463293,-2.433609,-2.7767625,-2.9474545,-3.1407456,-3.4203305,-3.436977,-3.6078691,-3.68121,-3.7617807,-3.810916,-3.8189902,-3.744932,-3.670043,-3.7143855,-3.8040433,-3.794694,-2.8274255,-2.0444179,-3.268086,-3.0740051,-3.3343372,-2.6033525,-2.037178,-2.4232311,-2.6913066,-3.0134616,-3.2480097,-3.4444928,-3.5823708,-3.7011776,-3.7621746,-3.8106244,-3.8535142,-3.91647,-3.9539592,-3.9331641,-3.9618597,-3.9300096,-3.9366302,-3.959237,-3.9478874,-3.9472277,-3.9449034,-3.930902,-3.8639293,-3.9122798,-3.9040594,-3.9673977,-4.0024843,-3.9857345,-3.9716434,-3.9622755,-3.938507,-3.9343333,-3.931984,-3.9418592,-3.9919043,-4.098442,-4.000589,-4.00244,-4.0378494,-4.0358853,-4.0022116,-4.0004888,-3.998736,-4.0492473,-4.072147,-4.08945,-4.10975,-4.0067873,-3.977983,-4.0803156,-4.0600753,-4.0237803,-3.9400847,-3.9305358,-3.963344,-3.9528048,-3.9384303,-3.9525125,-3.9371543,-3.9115782,-4.051455,-4.0016603,-3.1310372,-3.669986,-3.5750613,-3.880034,-3.8363554,-3.8600135,-3.8796062,-3.919487,-3.9989882,-3.9590793,-3.9538865,-3.9797592,-4.0281,-3.9855375,-3.930129,-3.894317,-3.8619778,-4.105923,-4.0344925,-3.9195225,-3.3386724,-3.5089967,-3.7621489,-3.8375983,-3.9089608,-4.0909023,-4.230204,-2.8301907,-2.802671,-3.4193158,-3.5788567,-3.7233424,-3.882465,-4.0040526,-4.012555,-3.987195,-4.0292845,-4.14347,-4.175063,-4.0694084,-3.9996514,-3.929855,-3.9171414,-3.8844373,-3.7207394,-3.846061,-3.8341606,-3.8180442,-3.9095354,-3.8557072,-3.9091098,-3.8562768,-3.9327033,-3.9243255,-3.8119793,-3.863027,-3.8597014,-3.9127185,-3.961215,-3.9066713,-3.8369627,-3.8331285,-3.8799486,-3.9306188,-3.8800528,-3.813762,-3.7987318,-3.8423195,-3.922985,-3.9419827,-3.8915472,-3.8644934,-3.8229847,-3.7238615,-3.7718804,-3.8535118,-3.7577968,-3.7317526,-1.28208,-2.2294598,-2.704383,-3.0566823,-3.3879783,-3.5407028,-3.644096,-3.9023278,-3.9401684,-3.8492045,-3.8546572,-3.857351,-3.937949,-3.9318285,-3.7769494,-3.768283,-3.7472782,-3.8019824,-3.8723788,-3.8036125,-3.8031118,-3.723506,-3.7756276,-3.7677708,-3.7597437,-3.738436,-3.7534652,-3.74859,-3.7393258,-3.6949658,-3.7611077,-3.707282,-3.7964163,-3.6415563,-3.6311865,-3.679061,-3.606166,-3.6311784,-3.6180217,-3.6007924,-3.6753328,-3.5557313
+-0.9785666,-1.3172468,-1.4939297,-1.81979,-1.9234005,-2.233037,-2.3737335,-2.491022,-2.447676,-2.787088,-2.8696532,-2.7400453,-2.4565148,-2.7306147,-2.7681525,-3.0171933,-3.1244807,-3.1960812,-3.1170864,-3.0552397,-3.0704248,-2.997342,-2.4942803,-2.546299,-2.1710308,-2.841465,-2.9119718,-3.0056543,-2.9230905,-2.8733892,-2.794022,-2.8023062,-2.9065108,-2.9895124,-3.0031633,-2.598351,-3.0616946,-3.055791,-1.6214079,-2.4459896,-2.545051,-2.714728,-2.7266603,-2.9548106,-2.974161,-3.0061765,-2.9082048,-2.6959867,-2.380584,-2.1500127,-2.1878579,-2.5593169,-2.674374,-2.7272546,-2.5789216,-2.5889072,-2.4268262,-2.5245605,-2.6808665,-2.441042,-2.512291,-2.5350564,-2.4525793,-2.3822007,-2.5781114,-2.5280304,-2.673748,-2.7386608,-2.747231,-1.5503482,-2.4521167,-1.5449775,-2.2259834,-2.6495743,-2.4133673,-2.530829,-2.0638833,-2.4179819,-2.5115209,-2.036372,-2.5966444,-1.4840668,-2.0827842,-2.6198182,-2.2184262,-2.1469378,-2.2917974,-2.3086221,-2.5494037,-2.1352599,-2.421597,-2.323679,-2.4562578,-2.5532377,-2.783793,-2.555365,-1.7659267,-2.0142124,-2.4668741,-2.2082753,-2.3461895,-1.4062283,-2.2059307,-2.3742368,-2.4373121,-2.543888,-2.2953725,-2.5076203,-2.5477176,-2.4589713,-2.4137301,-2.662949,-2.2483773,-1.6721627,-2.2323387,-2.501073,-1.7736163,-1.8908415,-2.3890576,-2.4396152,-2.4729295,-2.2217996,-2.3662014,-2.8681269,-1.0332959,-1.854924,-2.5438797,-2.561678,-2.0487652,-1.7405679,-2.342832,-1.9924532,-2.3707976,-2.3531656,-2.458879,-2.3223517,-2.2451816,-2.5027623,-2.2529323,-2.1643791,-1.9780203,-2.4716458,-2.6153705,-2.6906257,-1.261988,-1.9167674,-2.2267237,-2.2154872,-2.6539602,-2.6698613,-2.7596188,-2.4220004,-2.5359163,-2.3005605,-2.203829,-2.4661708,-2.8399992,-2.099958,-2.478785,-2.1113572,-1.8841039,-2.2115452,-2.525092,-2.080669,-2.4887414,-2.7094958,-2.8704958,-3.0466123,-3.0172627,-2.8443713,-2.524146,-2.4097877,-2.830025,-2.70642,-1.5319835,-2.3202882,-2.4764755,-2.8195996,-3.0381365,-3.0940332,-3.0900302,-3.057956,-3.0849514,-2.8713844,-2.9703732,-2.998551,-2.0082886,-2.5278003,-2.4928532,-2.703146,-2.5863667,-2.8094578,-2.345778,-2.3614526,-2.483798,-2.3556757,-2.603413,-2.5056171,-2.7660682,-2.780128,-2.660675,-2.7150202,-2.8486495,-2.7854187,-2.8975787,-3.0267363,-3.1447186,-3.1585908,-3.1504297,-2.952908,-2.1732361,-2.6792758,-2.846736,-2.2694573,-2.5324244,-2.7180715,-2.8777156,-3.060588,-3.234873,-3.3392792,-3.2409453,-3.2561169,-3.341237,-3.3459938,-3.2763863,-3.3987544,-3.2901154,-3.01761,-2.8234751,-2.9252453,-2.9090285,-3.0425425,-3.026877,-2.9286747,-2.7208738,-2.8977494,-2.8698866,-2.7895331,-2.8403995,-2.8743854,-3.0341296,-3.1835895,-3.4536028,-3.652583,-3.5928829,-3.4786072,-3.000591,-3.0541916,-3.1488996,-3.443586,-3.4137962,-3.439602,-3.4379785,-3.339841,-3.4315376,-3.4754376,-3.409511,-3.561269,-3.5743163,-3.508522,-3.6500494,-3.3530562,-2.7423697,-2.6603527,-2.392184,-2.74169,-2.9789171,-2.883518,-3.0884466,-3.2016568,-2.741785,-2.790873,-2.9896986,-2.6446934,-2.8814154,-3.063528,-3.3011837,-3.252008,-3.1778886,-3.2256126,-2.9428866,-2.8950486,-3.0976028,-2.8289604,-2.7621403,-2.8798697,-2.935268,-3.081847,-3.1839488,-3.0813568,-2.9905114,-2.5250595,-2.2445426,-2.2226596,-2.2633896,-2.7306511,-2.6146264,-2.841403,-2.9807127,-3.0124664,-3.0626888,-2.9064548,-2.3608124,-2.2657928,-2.378268,-2.6796775,-2.9320903,-3.0226607,-3.159083,-2.929993,-2.5795662,-2.2803614,-2.3290133,-2.3876386,-2.1231656,-1.5203005,-1.8691583,-2.1390035,-1.9620577,-1.6561499,-1.3784347,-1.5231564,-1.4563305,-1.6650687,-1.7950745,-1.5706867,-1.4794443,-1.6526319,-1.9646088,-1.8061951,-1.8335773,-1.8679396,-2.056323,-2.1319506,-2.1411967,-2.0058188,-1.6646323,-1.5002317,-1.7224296,-1.774908,-1.9404533,-2.1595197,-2.1271732,-2.0268514,-1.9044737,-2.0003753,-1.6657983,-1.3520337,-0.79197085,-0.8660346,-1.0458139,-1.7287291,-1.6756412,-2.1025848,-2.380403,-2.002088,-1.8258296,-2.0853329,-2.2860231,-2.4174995,-2.7112541,-2.4974406,-2.4785995,-2.4829385,-2.6495285
+-0.795569,-1.1069189,-1.2232305,-1.5496835,-1.6868175,-2.3987246,-2.4064198,-2.5660057,-2.5508847,-2.524345,-2.7517757,-2.6141834,-1.8955089,-2.593882,-2.3750284,-3.145267,-3.071506,-3.0383515,-2.9525418,-2.8790202,-2.7678344,-2.7776814,-2.6662126,-2.250313,-2.3466115,-3.0137303,-2.9068332,-2.9949534,-2.9158278,-2.9026532,-2.8562222,-2.7819157,-2.8272243,-2.9212754,-3.0267544,-1.9399714,-2.5333087,-2.8742564,-1.5694982,-2.4728022,-3.0020113,-2.8127675,-3.1049094,-2.906931,-2.7813473,-2.5729098,-2.6871505,-2.5163338,-2.2660904,-2.368613,-2.606692,-2.8975637,-2.893552,-2.8274589,-2.8993225,-2.5419688,-2.5496264,-2.5306246,-2.7140849,-2.436786,-2.415862,-2.746089,-2.5319524,-2.5290482,-2.740262,-2.874917,-2.9563537,-3.1055317,-2.3626032,-2.4776978,-2.3277917,-1.6925023,-2.575654,-2.9649315,-2.1285002,-2.5366733,-2.3819857,-2.8711724,-2.6958077,-2.5088851,-2.9330873,-2.8574467,-2.943142,-3.2349327,-1.4670707,-2.3713164,-2.8193455,-2.734085,-2.7844722,-2.1378593,-2.371317,-2.705493,-2.9045277,-1.7053952,-2.7293777,-3.1420512,-1.7352232,-2.113003,-2.9469123,-1.7147583,-2.0050645,-1.6979488,-2.8585272,-2.9164104,-2.8721898,-2.6376505,-2.5528994,-2.4524853,-2.2150636,-2.4409094,-1.9554269,-2.5952306,-3.0277748,-3.0202477,-3.2834074,-3.5138202,-3.4498205,-1.0093142,-2.2881284,-1.7448794,-2.5544264,-2.9753628,-3.4473026,-3.8660462,-3.7267065,-3.4607906,-3.8728201,-3.7866585,-3.6127853,-3.5270977,-3.568581,-0.78007036,-2.009229,-2.1538897,-2.3774698,-2.6544614,-2.6724155,-3.0239768,-3.3338528,-1.0054578,-2.0262935,-2.8253567,-2.8769662,-2.9544713,-2.8441772,-2.297484,-2.433692,-2.7139027,-3.1248298,-3.144517,-3.497043,-3.738977,-3.8631587,-2.6292772,-2.6680014,-3.1283948,-0.95710355,-1.8059219,-2.7725775,-2.8825083,-2.8949423,-2.696913,-2.9229522,-2.763341,-2.5852914,-2.92897,-3.049346,-2.8163862,-2.9651566,-3.0468497,-2.6552384,-3.13431,-3.2674224,-1.3650683,-1.4986728,-2.5006318,-2.7668717,-3.0614073,-3.2891345,-3.3339233,-3.3231664,-3.3901944,-3.4874463,-3.5744312,-2.3281536,-1.9345242,-1.6756815,-2.286561,-2.4910333,-2.8337445,-2.8698719,-3.0899558,-2.528582,-2.4664884,-2.608984,-2.5653262,-2.6011946,-2.9408245,-3.0057077,-3.1582131,-3.0692196,-3.2128081,-3.3099415,-3.1325796,-2.8759966,-3.2423186,-3.2661238,-3.241669,-3.0790079,-3.2185106,-2.5056462,-3.0907288,-3.1950195,-1.8545562,-2.893096,-3.3586652,-3.4696002,-3.5685673,-3.4163933,-3.5357835,-3.596657,-3.5307686,-3.5495057,-3.5779233,-3.5586011,-3.580514,-3.5270634,-3.4654543,-3.5104196,-3.2522316,-3.3738642,-3.5386596,-3.6053777,-3.4565477,-3.5217466,-3.6491342,-3.724981,-3.6952684,-3.8386602,-3.7393432,-3.7824013,-3.7778087,-3.9513726,-4.159396,-3.4998066,-3.7031791,-3.7116234,-3.7111025,-3.767916,-4.178188,-4.094491,-4.2156835,-4.2683096,-3.911963,-3.9909077,-4.0237117,-4.3674526,-4.510064,-4.3048897,-4.084893,-4.2717834,-4.333953,-3.8136039,-3.5258174,-3.6152225,-3.8962438,-3.9773755,-3.7584767,-4.0780954,-4.1866245,-3.7957652,-3.8255796,-4.0353928,-3.5097642,-4.052098,-3.962307,-4.3016777,-4.2916546,-4.236574,-4.302108,-4.0310097,-4.1159983,-4.1656065,-3.4461646,-3.51752,-3.691308,-3.8208613,-3.9383783,-3.953171,-3.8097982,-3.7917242,-3.2842789,-2.8914526,-2.8029852,-2.837041,-3.5846324,-3.5969996,-3.2387938,-3.2903204,-3.3461614,-3.2892072,-3.2581372,-2.917887,-2.8178656,-2.9783194,-3.196323,-3.5728555,-3.4615445,-3.530196,-2.9218102,-2.9394143,-2.8246245,-2.6454883,-2.5752215,-2.285162,-1.6516382,-2.2331274,-2.5715106,-2.5569725,-2.4419532,-2.127066,-1.7954929,-1.8011256,-1.8904685,-1.6734089,-2.111936,-2.064959,-2.4157863,-2.3016148,-2.2493737,-2.2174115,-2.2378578,-2.4240472,-2.2075548,-2.042505,-1.5806012,-1.4431931,-1.4194314,-1.4137176,-1.7301413,-2.2736323,-2.439879,-2.3400116,-2.2429655,-1.8558116,-1.8097115,-1.6389062,-1.0342586,-1.1635455,-1.5254444,-1.892537,-1.5917727,-1.8481085,-2.452353,-2.615105,-2.398305,-2.5541801,-2.8989038,-2.671602,-2.924305,-2.817928,-2.7223494,-2.8739033,-2.733385,-2.740139
+-1.2865268,-1.5571028,-1.6454636,-1.8292406,-2.1947014,-2.293661,-2.2995024,-2.4799747,-2.6548796,-2.6157458,-2.7312303,-2.6977015,-2.391594,-2.5257638,-2.9673622,-3.2108445,-3.337356,-3.1575117,-3.0139532,-3.1094902,-3.0335917,-3.1299186,-2.5913572,-2.708334,-3.2455401,-3.1592596,-3.135747,-3.009651,-3.0124063,-2.9440591,-3.0792603,-3.163135,-3.2066138,-3.3079305,-3.359052,-2.9976552,-3.0408983,-3.1765509,-2.1364417,-3.05416,-3.1562262,-3.051723,-3.1974583,-3.1036603,-3.143877,-3.268381,-3.3437288,-3.050943,-3.18373,-3.0405576,-2.8178039,-2.9208899,-3.0431857,-2.8621416,-2.9125419,-3.0711055,-3.1580863,-3.2120438,-3.1159759,-3.117457,-3.0534277,-3.0378919,-3.0473557,-2.9361606,-2.9569411,-3.0050685,-2.96466,-2.4317498,-2.1938486,-2.6271749,-2.8362691,-2.7794557,-2.3530283,-2.8187387,-2.7149324,-2.5935173,-2.6218143,-2.9412563,-2.7465458,-2.6938694,-2.9918332,-3.086015,-3.2103653,-3.4335775,-1.8006105,-2.187771,-2.7940912,-2.9779792,-3.0922546,-1.8955171,-2.5746186,-2.5464406,-3.0242834,-2.570672,-2.5593421,-3.156054,-3.0215364,-3.0260112,-3.5461938,-2.3224294,-1.2913401,-2.3277216,-2.8510857,-2.7307472,-2.7422194,-2.7258658,-1.8261511,-2.5261278,-2.4300914,-2.6824903,-2.969421,-3.1753323,-3.33739,-3.1340833,-3.4086623,-3.5756662,-1.5425829,-2.1413612,-2.0097284,-2.6570556,-2.8691716,-3.0375881,-3.3998497,-3.592083,-3.3980794,-3.3582485,-3.6169968,-3.4099631,-1.7393785,-1.7949027,-2.785185,-2.9494257,-3.0124583,-3.0668778,-2.1710591,-2.9066648,-2.8031697,-3.257348,-3.5877695,-2.522324,-1.2990775,-2.5539303,-2.7539158,-2.8449073,-2.8551736,-2.9155405,-2.9413257,-3.1128173,-3.1509795,-3.2388947,-3.4374812,-3.5181155,-3.674968,-3.6971388,-2.1386027,-2.7523127,-1.2295175,-2.3762708,-2.7729082,-2.8237622,-2.7957356,-2.7829957,-2.700757,-2.8496635,-1.7175448,-2.5309567,-2.7437773,-2.6202123,-2.8911924,-2.959128,-2.6124406,-2.701943,-2.9761705,-2.0816545,-1.8675736,-2.5844522,-2.579325,-2.7103271,-2.852518,-3.021792,-3.189374,-3.114644,-3.1107168,-3.3923967,-2.7866,-1.8896412,-2.450478,-2.4871442,-2.5729802,-2.6958756,-2.721578,-2.843145,-2.8504555,-2.223812,-2.6827707,-2.7569318,-2.5896845,-2.769523,-2.6923583,-2.8754704,-2.8552966,-2.8617282,-2.9762712,-2.808826,-2.8573246,-3.024297,-3.0754406,-3.0774827,-3.0969357,-3.1590595,-3.0917578,-2.2967145,-2.813259,-2.0774155,-2.5241938,-2.837873,-3.0601778,-3.308975,-3.431248,-3.3745377,-3.4001746,-3.4069533,-3.4917583,-3.4680126,-3.5462456,-3.6547818,-3.464713,-3.4218354,-2.8983746,-2.423438,-2.9310317,-3.4195647,-3.0507004,-3.086725,-2.9882283,-3.331387,-3.3337264,-3.056817,-3.3650641,-3.1665225,-3.3618572,-3.3451943,-3.3657203,-3.9964132,-3.3419194,-3.304387,-3.460853,-3.2475197,-3.5857105,-4.0345793,-4.2929354,-4.2234697,-4.1226106,-3.5126746,-3.8188384,-3.6273694,-4.0124445,-4.2758665,-2.9331865,-3.2261257,-3.3329241,-3.359838,-3.0014725,-2.5207229,-2.8551607,-3.2023623,-3.1979911,-2.4697285,-3.0685987,-3.137394,-2.8962326,-2.9049678,-2.9550273,-2.123975,-2.5579748,-2.5998435,-2.8301888,-2.6798928,-2.8552103,-2.9789956,-2.9416356,-3.0598521,-2.663539,-1.9359802,-2.1697915,-2.5355859,-2.7806318,-2.8129287,-2.8813574,-2.8710485,-2.8816996,-2.5072038,-2.033351,-1.9671084,-1.8619242,-2.6176348,-2.5840292,-2.366376,-2.8353724,-2.9155755,-2.815719,-2.8292336,-2.5671587,-2.3096688,-2.5118556,-2.5272555,-2.8258226,-2.7826672,-2.7684803,-1.813084,-1.7236918,-1.5935532,-2.1325731,-2.174028,-1.3342091,-1.3601865,-1.5489819,-1.9222959,-1.8904612,-1.7878004,-1.6944472,-1.4393207,-1.7434078,-1.526647,-1.6078683,-2.0601861,-1.4130287,-1.9823357,-2.1242137,-1.9455594,-2.2974052,-2.0344026,-2.0778112,-2.2005036,-2.1294856,-1.8029464,-1.493869,-1.3399783,-1.465542,-1.8833919,-2.028751,-1.578801,-1.9765688,-1.8121631,-1.4606177,-1.0720948,-1.4750539,-1.1980704,-1.1392804,-1.537857,-1.8632663,-1.3902029,-1.5964108,-2.3252404,-2.365067,-2.4581485,-2.5285316,-2.9309359,-2.5903008,-2.9998279,-2.7559936,-3.1759143,-2.9197803,-3.063757,-3.4001038
+-2.037735,-2.1247854,-1.8830558,-1.7799395,-1.8103435,-2.3498812,-2.2609622,-1.680318,-1.8696983,-2.2428455,-2.3031394,-2.486159,-2.1639314,-1.9942027,-2.410594,-2.788219,-2.8630872,-2.1914783,-2.2983117,-2.1989913,-2.5736446,-2.5426726,-2.079746,-2.3400903,-2.0631106,-1.7945102,-2.2910714,-2.2573266,-2.2283645,-2.3429437,-2.4037828,-2.6672683,-2.6220417,-2.5392654,-2.474774,-1.670755,-1.1661179,-1.9363167,-2.498631,-2.4798813,-2.4147923,-2.570514,-2.551437,-2.4420614,-1.5666589,-1.9754313,-2.1345923,-2.2989569,-2.4985466,-1.8530282,-2.2717152,-2.4408891,-2.4968228,-2.4144254,-2.2228258,-2.3545377,-2.3924356,-2.5672522,-2.6225379,-2.055819,-2.8576164,-3.4771173,-3.811316,-3.9013312,-3.975078,-4.1750693,-4.101574,-3.9779935,-3.7619038,-4.0911913,-4.2255535,-4.2243977,-0.9505031,-1.6671618,-2.4463224,-2.8691454,-3.3919244,-3.7109618,-4.028079,-4.218791,-4.284323,-4.255327,-4.3064756,-4.358073,-4.3460493,-4.4841404,-4.736341,-4.7643595,-4.704113,-4.5068645,-1.9675349,-1.4620237,-2.6013412,-3.2610927,-3.6692202,-3.8886716,-4.0449705,-4.1397314,-4.311288,-3.7920876,-4.232649,-4.2720156,-4.51424,-4.597079,-4.6359015,-4.69957,-4.571837,-4.5128517,-4.451805,-3.1485403,-3.0558612,-4.0183153,-4.13369,-4.2833824,-4.55773,-4.5890594,-4.485858,-4.4357657,-4.462162,-4.459795,-4.3878717,-1.3787439,-2.7820249,-3.6090643,-3.2453897,-4.054514,-4.2135105,-3.7045422,-1.904415,-1.2872252,-2.801779,-3.4166012,-2.3447385,-3.0608573,-3.7715743,-4.179731,-4.265627,-4.3099756,-4.320161,-3.8761945,-3.8126178,-4.014567,-4.405073,-4.452654,-4.5083675,-4.6246586,-4.6066103,-3.2926612,-3.9229698,-4.3166056,-4.483203,-4.469758,-4.422026,-4.273116,-3.9235454,-2.8810194,-1.4086914,-1.637633,-2.9467144,-3.4484317,-3.8145256,-4.171441,-4.475179,-4.4990816,-3.768358,-2.9588299,-0.68288535,-1.9645666,-2.491045,-2.7372694,-2.789778,-2.9987752,-3.3316457,-3.575415,-0.8073347,-1.5406327,-2.2852018,-2.5913777,-2.7786255,-2.8455095,-2.9867377,-2.9966426,-2.763262,-2.7623632,-1.6492525,-1.3676914,-2.1201854,-2.4449182,-2.3847103,-2.8105621,-3.005188,-3.1820807,-3.1730027,-3.0888934,-3.1821485,-3.3362083,-3.2583733,-1.7166278,-1.2987214,-2.133,-2.2250874,-2.587058,-2.8816419,-3.0218499,-3.203782,-3.23317,-2.4709141,-2.0349562,-2.8256986,-2.9396448,-2.9977803,-1.5504304,-2.6563458,-2.2362366,-2.5663915,-2.9099956,-3.3056378,-3.4130936,-3.4092689,-3.3121326,-3.381598,-3.44587,-3.4452155,-3.43648,-3.3158288,-3.4588466,-3.432307,-3.380921,-3.5122468,-2.2452369,-1.7067652,-3.0579226,-3.4510117,-3.1921644,-2.0497622,-2.2211943,-2.8908596,-2.1365595,-3.18696,-3.4969568,-2.6300354,-2.8167741,-3.154404,-3.3934236,-3.2426486,-3.2389333,-3.350829,-3.2570279,-2.5087726,-3.4235153,-3.228942,-3.6010852,-1.7313387,-1.6210946,-1.8058835,-2.5336564,-2.8184912,-2.6222243,-1.5715646,-1.4741465,-2.6964946,-3.0219169,-2.9360294,-2.2755418,-1.7989279,-2.7602296,-2.9541547,-2.6388102,-2.389268,-2.954271,-3.115499,-2.363846,-3.087047,-3.143362,-3.136003,-3.2172954,-2.7808073,-2.901107,-1.9071156,-2.1949568,-3.0472858,-3.1044526,-2.091267,-1.4533789,-1.7506374,-1.376289,-2.0813932,-2.3358514,-2.4070175,-2.6829908,-2.822245,-2.87265,-2.809017,-2.6820765,-2.4797952,-2.4666877,-2.5837893,-1.8111922,-1.56188,-1.6764063,-2.2672184,-2.5850608,-2.623811,-2.4973238,-2.5976195,-2.5050623,-2.0504885,-2.3143,-1.96551,-1.5865384,-1.8358108,-1.7462255,-1.2742537,-1.5212369,-1.7203888,-1.9615868,-2.1157265,-2.610248,-2.9003096,-2.9924831,-2.9824257,-2.9349017,-2.6475632,-2.0565312,-2.0815344,-2.274222,-1.888078,-1.8416429,-2.185195,-2.0554683,-2.4498634,-2.7111516,-2.0787654,-2.5646274,-2.762511,-2.8156474,-2.846448,-2.8469477,-2.4905407,-2.662159,-2.6873736,-2.1020904,-2.0639014,-1.8267238,-1.9585358,-2.1674378,-2.3221157,-2.1655133,-2.1960974,-2.1945465,-2.2928817,-2.4237337,-2.13371,-1.9885746,-2.1432633,-2.3879228,-2.0765467,-2.7047524,-2.6722677,-2.6344275,-2.4878745,-2.376686,-2.9412436,-2.4186854,-2.0365393
+-1.7225727,-2.3611345,-2.5728617,-2.7339773,-3.021676,-3.3400314,-3.2980647,-3.361933,-3.2666788,-3.1760118,-3.3168845,-3.4127922,-3.4751592,-3.0795047,-2.6883688,-3.34258,-3.339199,-3.378852,-3.3375711,-3.018207,-3.3964512,-3.5657043,-2.667668,-3.0895894,-2.8579612,-2.6693258,-2.9368055,-3.0537233,-3.3461885,-3.3710089,-3.6168098,-3.6985626,-3.6509843,-3.6570852,-3.6937404,-2.3353631,-2.9975183,-2.5078433,-2.9573236,-3.516724,-3.6343064,-3.6560838,-3.74764,-3.6254478,-1.6857607,-2.6346126,-2.867069,-3.3407092,-3.4047017,-3.308987,-3.1348052,-2.9683022,-3.4401143,-3.4933872,-3.6173368,-3.7705972,-3.7494466,-3.6897788,-3.7642896,-3.8628812,-3.9737172,-4.020793,-4.078677,-4.0376577,-3.9465642,-3.9673147,-3.9299245,-3.827507,-3.730865,-3.798201,-3.9287488,-3.571935,-3.437704,-3.5011415,-3.625036,-3.9010072,-3.9866133,-3.996426,-4.0839834,-4.143468,-4.128378,-4.0999646,-4.0863533,-0.9154317,-2.3909607,-3.0787606,-3.6700325,-3.915309,-3.9854517,-3.9888496,-1.9646541,-1.9243721,-2.733542,-2.9437962,-3.214583,-3.463575,-3.7895882,-3.9855337,-4.089078,-4.086363,-4.128789,-4.146323,-4.292978,-4.2903175,-4.3025546,-4.304533,-4.2550793,-4.217222,-4.1695385,-3.7780554,-3.8019404,-3.7967029,-3.8341296,-3.9086094,-4.0833325,-4.165358,-3.9520488,-4.0446696,-4.144651,-4.1633544,-4.143225,-1.5330039,-2.7293448,-3.262604,-2.7567327,-3.2477794,-3.5809374,-3.0048437,-2.4203382,-2.1919098,-3.0710196,-3.3965933,-3.056702,-3.621572,-4.080393,-4.264067,-4.3141627,-4.1704187,-4.2172937,-2.2576802,-2.9848456,-3.5324185,-3.990171,-3.9468076,-3.9802904,-3.9839725,-4.140167,-1.2612638,-2.4230108,-3.0760674,-3.388317,-3.7181664,-3.9303637,-4.027691,-3.4428506,-2.9455867,-1.4499665,-2.7704778,-3.2160275,-3.4094918,-3.7256083,-3.9318576,-4.179984,-4.2142687,-4.097202,-2.6467366,-1.548316,-2.75336,-3.1196816,-3.334883,-3.5781796,-3.8165498,-4.031,-3.8722014,-1.1839204,-2.9175563,-3.3126218,-3.434246,-3.481087,-3.5523782,-3.7421908,-3.0617642,-2.1328173,-2.7876134,-3.2157583,-3.3289514,-3.6083612,-3.709248,-3.7971678,-3.9346979,-4.0236464,-4.0703316,-4.000308,-3.6776752,-3.9066124,-4.07259,-4.083693,-4.045286,-4.1059127,-3.9450762,-4.0867777,-4.0883503,-4.1879883,-4.223011,-4.2417517,-4.217027,-3.4453855,-2.0311325,-3.0320237,-3.24335,-3.41535,-3.360551,-3.547055,-3.59253,-3.7927744,-3.5329328,-3.876008,-4.042917,-4.0474477,-4.0109115,-4.037039,-4.0928416,-4.1503105,-4.161862,-4.128131,-4.1320615,-4.1569915,-4.196136,-4.2276125,-4.2678022,-4.03365,-4.270669,-4.4585924,-4.2424893,-3.8118694,-3.4536028,-4.001356,-3.5041118,-4.1306157,-4.272809,-3.6769166,-4.0675945,-4.3011565,-4.395424,-4.4655457,-4.39436,-4.570095,-4.560939,-4.3209686,-4.77461,-4.6415014,-4.7934203,-4.384348,-4.195898,-3.282617,-3.771803,-4.036007,-3.98313,-3.8953178,-3.1403084,-3.5504372,-4.2125306,-4.3844194,-4.2242956,-3.9971418,-3.7390876,-3.5615478,-3.3086133,-3.2604666,-3.8103342,-4.1023803,-3.935234,-4.09513,-4.1244636,-4.1786757,-4.1797285,-3.6636333,-3.6036224,-3.533909,-3.4767132,-4.1928062,-4.256568,-3.695221,-3.2636704,-3.272794,-3.1398382,-3.2314835,-3.1403816,-3.0973191,-3.3826315,-3.7017748,-4.016061,-4.0212293,-3.8287423,-3.4843628,-3.401581,-3.1526842,-2.6112359,-3.0778081,-3.3138947,-3.4986656,-3.7534685,-3.8580093,-3.8100548,-3.8621802,-3.8935182,-3.913017,-3.756626,-3.763531,-3.546638,-3.7174466,-3.5837328,-3.468043,-3.4946983,-3.4283667,-3.356843,-2.9226751,-3.157024,-3.4310112,-3.711773,-3.799234,-3.924176,-3.5879884,-3.352573,-3.2367835,-3.337574,-3.2199793,-3.3767216,-3.226797,-3.5249848,-3.9291577,-4.1402793,-3.8029885,-3.8505225,-4.1123147,-4.2254786,-4.244201,-4.115119,-3.8786907,-3.8274682,-4.1133533,-3.7759933,-3.735859,-3.6284842,-3.635193,-3.7028716,-3.7643943,-3.700602,-3.6437235,-3.6250544,-3.6312473,-3.6228375,-3.6300154,-3.650415,-3.6402936,-3.5772104,-2.2246478,-3.3031378,-3.432304,-3.4102507,-3.505766,-3.578187,-3.724134,-3.5072174,-2.8820128
+-2.2995358,-2.9637442,-3.2409508,-3.5277977,-3.7072582,-3.9343808,-4.0324388,-4.1067047,-3.782518,-3.6673045,-3.8401928,-3.9722548,-4.0431595,-4.0275936,-2.701334,-1.7787541,-2.7528596,-3.0892506,-3.4260435,-3.669725,-4.01396,-4.1361303,-4.190481,-3.9694934,-3.6395726,-1.2153355,-2.369211,-0.8873915,-1.9421881,-2.3479936,-2.8562136,-2.985756,-3.2035434,-3.599298,-3.8255558,-3.9332194,-2.6361272,-1.9288121,-1.364272,-2.3232493,-3.0728865,-3.6570566,-4.0033226,-4.1874347,-4.067667,-1.6439711,-1.1961015,-1.9687716,-2.393402,-3.00319,-3.4419708,-3.5932665,-3.9220276,-4.1199555,-4.0335264,-4.2821608,-4.303421,-4.249618,-4.3587203,-4.376317,-4.4763045,-4.5558314,-4.6105824,-4.6474485,-4.586617,-4.6081877,-4.6110864,-4.6041307,-4.454056,-4.5061636,-4.530141,-4.4712405,-4.3184967,-4.1241603,-4.1959286,-4.401212,-4.404312,-4.4602957,-4.51248,-4.524139,-4.499016,-4.4898796,-4.445119,-4.1710887,-4.324652,-4.4176097,-4.5506563,-4.5992336,-4.5846395,-1.2808884,-2.8084643,-0.98972744,-1.3646991,-2.6216125,-3.2220027,-3.45152,-3.9296496,-4.18041,-4.314704,-4.3214045,-4.3322067,-4.46665,-4.651665,-4.6797514,-4.6683125,-4.6745195,-4.5775414,-4.5190353,-3.9075468,-0.8661055,-2.564427,-3.251545,-3.402491,-3.3462868,-3.8688822,-4.2159233,-4.2805977,-4.333227,-4.474639,-4.5433345,-4.329536,-2.2265878,-3.531386,-3.9544835,-3.593453,-1.3422064,-2.49386,-1.1316234,-2.5346408,-1.7142549,-3.028035,-3.5481374,-3.7810435,-4.1249437,-4.40061,-4.555594,-4.6154437,-4.4671316,-4.41321,-4.352089,-1.4129611,-3.499344,-4.082075,-4.1165266,-1.0039612,-1.3573768,-3.185318,-3.585745,-3.673318,-2.7873545,-3.6207666,-4.0720625,-4.2215366,-4.2064753,-3.3349752,-0.39785072,-1.8589598,-2.9742165,-3.6121101,-3.821995,-4.067889,-4.246965,-4.356929,-4.470442,-4.22671,-1.580562,-2.7696333,-3.4793026,-3.9455624,-4.204376,-4.3319316,-4.379355,-4.2125635,-1.771755,-0.8591066,-1.8768171,-2.7709875,-2.9491415,-3.4449313,-3.8304906,-4.055149,-1.6054912,-1.0051805,-2.2126315,-2.8978424,-1.7634534,-2.933197,-3.49092,-3.7023118,-3.9290123,-4.1235466,-4.2455654,-4.133057,-3.684535,-3.8620648,-4.165506,-4.1349726,-4.0470824,-4.0149317,-4.010026,-3.9010093,-4.1489363,-4.254002,-4.3570204,-4.3981705,-4.406933,-4.3354073,-0.2884806,-2.1438093,-2.6373854,-3.0699198,-3.3276355,-3.5432668,-3.6258395,-3.6761541,-3.8294523,-3.944537,-4.0981083,-2.7256966,-3.3507016,-3.6958728,-3.9335158,-4.065386,-4.0697317,-4.0902476,-4.045983,-4.072113,-4.1205497,-4.1419373,-4.128618,-1.2589102,-3.3120718,-3.5750568,-3.5862517,-0.8579059,-2.077188,-2.859829,-3.159451,-3.7036018,-3.853579,-3.4631996,-3.648812,-3.8429205,-4.100095,-4.008363,-3.9771795,-4.289956,-4.3187847,-4.065576,-4.429076,-4.3979406,-4.5473413,-3.947186,-4.09916,-3.7773237,-3.9368587,-4.0107503,-3.9195032,-3.7804186,-3.4066308,-2.5152357,-4.2928925,-4.487951,-4.4165487,-4.312182,-3.8209941,-2.0173202,-2.5539734,-2.111523,-2.9075587,-3.6254888,-3.7514033,-3.997374,-4.1183825,-4.13864,-3.9747934,-3.3951194,-3.4204586,-3.2952955,-1.8685232,-3.3707776,-3.8037314,-3.1061187,-2.1212118,-2.5201826,-2.3425708,-2.1938913,-2.4164004,-2.909812,-3.0023086,-3.2627754,-3.7148774,-3.8388681,-3.5823987,-1.9597396,-2.5514488,-3.117157,-2.2435846,-3.0449853,-3.5470147,-3.7613358,-4.0627537,-4.1732926,-4.0938573,-4.147996,-4.1476374,-4.1235523,-3.7941155,-3.8362994,-3.776717,-3.7712278,-3.558451,-3.483576,-3.412622,-3.5469117,-3.4771748,-2.094409,-2.565567,-2.9343028,-3.5823874,-3.8086371,-3.9330187,-3.6834502,-2.832283,-1.4930693,-2.4978387,-2.8235478,-2.95631,-3.0315385,-3.5918972,-3.7840276,-4.0523176,-3.3919876,-2.7793021,-3.9660559,-4.0105753,-4.091364,-3.9673538,-3.4977877,-3.5273454,-4.0032682,-3.8724387,-4.03246,-4.1012726,-4.103204,-4.125413,-4.2348323,-4.284704,-4.3251643,-4.258744,-4.344036,-4.379363,-4.2833796,-4.304101,-4.3228903,-4.2445664,-2.3600888,-3.2749295,-2.8909464,-2.813466,-3.4695957,-1.2719437,-2.8028445,-3.2994926,-2.8074725
+-1.7338188,-2.5779424,-2.9340768,-3.3151252,-3.6350744,-3.9506457,-4.202896,-3.9187064,-1.0358917,-2.328089,-2.5674577,-2.906077,-3.2365441,-3.4162838,-3.3401477,-1.7114028,-2.628222,-2.8450048,-3.006722,-3.5703282,-3.930292,-4.1706486,-4.311742,-4.2545366,-4.2555275,-1.9236168,-2.0541985,-1.7509928,-1.991337,-1.8811418,-1.8379798,-2.1418874,-2.5110388,-3.1461008,-3.5276601,-2.8848872,-2.1309314,-2.8475218,-2.0396695,-3.005752,-3.609258,-4.0928593,-4.46192,-4.5701256,-4.139299,-2.766405,-2.1488295,-1.8505049,-2.8134787,-3.466077,-3.9040546,-4.066098,-4.410968,-4.463693,-4.4524646,-4.413155,-4.385421,-4.4620605,-4.6067476,-4.7136517,-4.657134,-4.7054224,-4.760025,-4.812439,-4.7115154,-4.608387,-4.6485395,-4.655364,-4.50768,-4.428812,-4.4872694,-4.295902,-4.240448,-2.6575172,-3.8596272,-4.2718735,-4.456142,-4.494528,-4.668624,-4.6589284,-4.61427,-4.5897675,-4.4858704,-4.3651605,-4.3477454,-4.442575,-4.6202683,-4.6513367,-4.61641,-4.487592,-3.893182,-3.0149782,-1.9549417,-3.4493992,-3.8943563,-4.165538,-4.347172,-4.3566833,-4.368121,-4.391136,-4.369075,-4.5138793,-4.604557,-4.635216,-4.699564,-4.6809454,-4.526722,-4.4952145,-2.6958816,-2.2574134,-2.955483,-3.7913258,-3.8687544,-3.3001428,-4.1476383,-4.2906876,-4.243,-4.351591,-4.5179386,-4.563356,-4.308591,-2.2671757,-3.5326223,-3.377999,-3.463818,-2.542829,-1.3377068,-1.8336161,-2.3098662,-2.991963,-3.5497355,-2.7782912,-3.2382956,-4.040147,-4.4112153,-4.547866,-4.622531,-4.47456,-4.420267,-4.1449695,-4.2076797,-4.4432707,-4.511879,-4.123784,-2.1400104,-2.2012029,-2.4191918,-2.2507102,-1.8451812,-1.5919603,-2.5982256,-3.3040833,-3.802558,-3.9486454,-3.4791665,-2.1627955,-3.0353255,-3.6688259,-4.0937185,-4.257064,-4.492285,-4.584964,-4.6131225,-4.5707912,-4.149291,-4.1658936,-3.9098055,-4.245065,-4.5158634,-4.612157,-4.6797714,-4.6779537,-4.5013523,-2.021106,-2.382578,-1.8135996,-2.9774709,-3.6033835,-4.0664663,-4.3856964,-4.431222,-1.2782832,-1.7562761,-2.135615,-2.8986497,-3.1464844,-3.647301,-3.829347,-3.964315,-4.30718,-4.467639,-4.337618,-4.2325735,-4.1788726,-4.147904,-4.4106994,-4.3681593,-4.393532,-4.401431,-4.3186855,-4.062496,-4.4048133,-4.4800773,-4.6398325,-4.580059,-4.527447,-4.440033,-1.554181,-2.9013147,-3.4446268,-3.8445234,-3.9244916,-3.9676085,-3.9872546,-3.8454866,-4.0766544,-4.201435,-3.6790643,-2.8730783,-2.9239314,-3.5946703,-3.9663033,-4.2908163,-4.352425,-4.3539734,-4.315972,-4.235334,-4.3037653,-4.3646765,-4.3056955,-3.8776343,-4.25372,-4.1631827,-4.1408176,-1.1490926,-2.1607656,-2.9756074,-3.493954,-4.017688,-3.999178,-3.6258855,-3.4905295,-3.3496616,-4.048112,-3.8718433,-3.5780516,-4.1133795,-4.250736,-4.1456013,-4.2708755,-4.3074903,-4.3464804,-3.73025,-4.033557,-3.6541824,-3.7568254,-3.8884063,-3.7685082,-3.6552706,-3.3229427,-2.1674745,-3.8042216,-4.1791472,-4.185542,-3.9550097,-2.2135708,-2.090291,-2.5533,-2.373729,-3.3995836,-3.6194484,-3.6941621,-3.889563,-4.0366817,-2.3531883,-2.629387,-2.5287797,-2.6335292,-2.5620155,-2.0728226,-2.4951506,-3.443139,-2.4789896,-1.8375962,-2.1749382,-2.3231678,-2.3292682,-2.1535277,-1.8464035,-1.7121075,-2.088898,-2.6628199,-2.9920735,-2.6751468,-1.8669482,-1.76746,-2.3237786,-1.9084615,-2.1134186,-3.1571667,-3.2020578,-3.6834426,-3.7850075,-3.6105347,-3.693594,-3.7885666,-3.7762957,-3.6384664,-3.4245825,-2.7054172,-3.1985693,-2.7401419,-2.4152222,-2.5299382,-2.6369028,-2.7290914,-2.7246895,-1.9580331,-2.1428766,-3.0367427,-3.4824324,-3.6956267,-3.2495399,-1.5359732,-1.9553659,-2.303825,-2.5559793,-2.7534695,-2.777759,-3.3141813,-3.6872132,-3.479809,-2.740329,-1.8130367,-3.308914,-3.6943085,-3.8105774,-3.5863853,-3.1549563,-3.094973,-3.6899195,-3.632462,-3.785252,-3.876881,-3.9214168,-4.023064,-4.1509337,-4.2989283,-4.470643,-4.40304,-4.435482,-4.353553,-4.3739524,-4.402761,-4.309281,-4.0946765,-2.604723,-3.0627224,-3.6161897,-3.0095181,-3.4028006,-1.6407491,-2.3571434,-3.1475792,-2.102622
+-1.6651839,-2.6775815,-2.8887556,-3.2182379,-3.596211,-3.8394537,-4.0614986,-1.8499006,-1.8824605,-2.063926,-2.838263,-2.3550673,-3.039967,-3.3022435,-2.032454,-2.031905,-2.9601922,-2.976716,-3.2500176,-3.6901603,-3.9570951,-4.0524774,-4.1109524,-4.267932,-4.217883,-3.944193,-3.8290725,-3.9520755,-3.6979446,-2.0669618,-2.0860014,-2.8403296,-2.9899714,-3.4986105,-3.7442284,-3.7943687,-3.8230362,-4.0308914,-4.02775,-4.3082027,-4.3965254,-4.476852,-4.5253916,-4.6036987,-4.3206263,-4.3450236,-2.309679,-1.8879677,-2.8827906,-3.495221,-3.8356519,-4.103406,-4.352263,-4.402232,-4.4954534,-4.531559,-4.5523133,-4.634105,-4.602104,-4.6335964,-4.6365557,-4.6214914,-4.6100993,-4.5855403,-4.6236286,-4.664143,-4.68522,-4.673269,-4.719656,-4.6846976,-4.677805,-4.624559,-4.635005,-4.539989,-4.686512,-4.691015,-4.6963477,-4.7568674,-4.747345,-4.6626782,-4.5950575,-4.6241746,-4.6155634,-2.7143912,-4.0956354,-4.5011764,-4.5218506,-4.5489397,-4.567068,-4.512982,-4.6019797,-2.8597674,-1.4950095,-3.080791,-3.5877182,-4.1297655,-4.427961,-4.5316014,-4.580116,-4.6567397,-4.636442,-4.651631,-4.6883063,-4.714873,-4.705024,-4.6547747,-4.685254,-4.7087708,-4.566021,-3.0521107,-1.2642654,-1.9083335,-1.9383525,-2.9066553,-3.55202,-3.939553,-3.733642,-4.1392555,-4.2778826,-4.21876,-4.357543,-4.4061193,-1.1740645,-1.6960605,-1.9003485,-1.6958789,-2.021174,-2.1584136,-2.6067665,-3.0121908,-3.4274287,-3.6080747,-3.4755774,-3.9487557,-4.254453,-4.3848677,-4.4858193,-1.9614404,-2.6716065,-3.341291,-3.5864346,-4.069845,-4.2218285,-2.3271651,-2.1021295,-1.770613,-3.0885694,-3.5190337,-3.7156005,-2.5049002,-3.3654237,-3.9000874,-4.116759,-3.8742783,-2.5286093,-2.878964,-3.6012497,-3.9878922,-4.2697487,-4.1502905,-3.9191518,-4.3271437,-4.4481745,-4.4947186,-4.2920666,-4.236491,-4.1567245,-4.172399,-4.4442267,-4.4926434,-4.497081,-4.4986134,-4.5321817,-2.438775,-2.998639,-2.4156332,-3.6330543,-4.020776,-4.3594055,-4.454153,-4.170552,-2.4076376,-2.1267776,-3.0822554,-3.1697674,-1.9668192,-2.5172417,-3.301097,-3.4919753,-3.9947033,-4.2155666,-2.4718704,-3.1335201,-3.5362103,-3.728276,-4.0024834,-4.1426363,-4.1746173,-4.170721,-4.158854,-3.9616165,-4.223627,-4.3113317,-4.443857,-4.353841,-4.045808,-4.130089,-2.0755517,-3.1787667,-3.6319826,-3.8393056,-3.764495,-3.8018017,-3.7648034,-3.6321416,-3.6244304,-3.32613,-1.5399996,-2.395724,-2.6921153,-3.1115756,-3.2605023,-3.5203981,-3.7134068,-3.837617,-3.8458316,-3.8662295,-3.973137,-4.0571127,-3.8663685,-3.7772954,-4.1290016,-3.975749,-3.921994,-1.3756776,-2.7478971,-3.1286685,-3.5585938,-3.9006598,-3.7000306,-3.2694376,-2.4483175,-3.4198456,-3.876356,-3.8374596,-3.7119122,-3.8789282,-4.117463,-3.8997812,-3.5945141,-3.817672,-3.828856,-3.5542154,-3.5432715,-3.4020205,-3.3958192,-3.5120604,-3.4517126,-3.435166,-2.0056734,-2.997191,-3.7717204,-4.153163,-4.2172117,-3.6967351,-1.5919595,-2.179171,-2.6632051,-2.62426,-3.3652492,-3.538993,-3.5531592,-3.7441597,-3.8112721,-2.2233188,-2.142342,-2.5732894,-2.678906,-2.6035373,-2.4113743,-2.5557303,-3.4786472,-2.6165643,-2.3853507,-2.7325976,-2.7721667,-2.8793807,-2.667738,-2.4505563,-2.0355287,-2.551887,-2.8832717,-3.1269195,-3.1148138,-2.338294,-2.150281,-2.9029431,-2.180932,-2.4104743,-3.2718692,-3.357461,-3.7396822,-3.9566936,-3.8461003,-3.796093,-3.773884,-3.6835945,-3.6076314,-3.1918197,-3.1835585,-3.2875726,-2.9068217,-2.7184095,-2.8446183,-3.0188339,-3.0989532,-3.1191926,-2.9831543,-2.0327597,-2.8798726,-3.2461596,-3.4356747,-2.9782324,-2.5226617,-2.3507397,-2.8475597,-2.9142904,-2.7202733,-3.047833,-3.3967283,-3.9177442,-3.4984736,-3.0891855,-1.856935,-3.052009,-3.6481264,-3.5462217,-3.159545,-2.8491077,-3.0507188,-3.3547006,-3.28284,-3.4566793,-3.4952252,-3.5999122,-3.6965022,-3.8592415,-4.1089554,-4.244302,-4.2053833,-4.192745,-4.132763,-4.140824,-4.1739664,-4.097264,-3.946659,-1.2573131,-2.859609,-2.9377866,-2.871328,-3.0550604,-1.9498311,-3.1785393,-3.3291123,-1.7622243
+-1.719169,-2.5583086,-3.1498747,-3.6787117,-3.9954472,-4.184141,-4.3043413,-0.98886615,-1.8010416,-2.411643,-2.1127398,-2.559148,-2.4232492,-3.071183,-3.4612541,-1.3961765,-2.1904569,-2.5501022,-3.4024658,-3.8844056,-4.18797,-4.256788,-4.2357216,-4.297231,-4.286419,-4.0589843,-3.8601208,-3.9638386,-2.8448868,-1.5325817,-2.086005,-2.4236705,-2.5632517,-3.0966988,-3.4292908,-3.6516097,-2.975514,-1.7537605,-2.1432617,-3.12699,-3.669546,-4.018379,-4.337056,-4.1066074,-4.0785093,-3.5505157,-1.9562112,-1.6162803,-2.4178476,-2.749165,-3.1559753,-3.586373,-3.984219,-4.239722,-4.3898506,-4.4070845,-4.383004,-4.4185247,-4.452309,-4.5095797,-4.4365067,-4.5126505,-4.5262737,-4.5548077,-4.5676613,-4.5214567,-4.4951963,-4.5208826,-4.510553,-4.228135,-4.272333,-1.3324176,-3.1059155,-3.6705945,-4.138954,-4.369254,-4.476125,-4.5667768,-4.6204133,-4.5660014,-4.405813,-2.7134774,-3.6268716,-4.0393586,-3.965529,-2.3350723,-3.186926,-3.5925946,-3.8545046,-1.8407428,-1.39943,-1.7117262,-2.1120224,-2.2484035,-2.83363,-3.2599845,-3.5818434,-3.6124423,-3.71739,-3.9426773,-3.9998708,-4.1429725,-4.274643,-4.316817,-4.298716,-4.297379,-4.227971,-1.4587277,-1.380234,-2.085343,-2.5947928,-1.0540516,-1.802718,-1.9139806,-2.677844,-2.8633237,-1.8362461,-2.570303,-3.397344,-3.6505501,-3.295658,-1.6751465,-1.61294,-1.1859891,-1.7782325,-2.1463864,-1.3273944,-2.119116,-2.4946945,-2.3268416,-1.585061,-1.6585968,-1.4809728,-2.4328985,-3.3193717,-3.8041234,-4.090658,-4.0561013,-4.0612965,-3.9634542,-2.2278976,-3.1425743,-2.6613674,-1.3571402,-1.372592,-2.1597233,-1.9347099,-1.8870944,-1.6462513,-2.1609707,-2.6237617,-2.6091728,-2.5738387,-2.3339334,-2.221887,-2.3914623,-2.987589,-3.4911587,-3.8032398,-3.6516972,-3.0077593,-3.745383,-4.1152596,-4.0329003,-1.571644,-2.0002809,-1.9918455,-2.8306417,-3.3877726,-3.839881,-4.2073126,-4.416435,-4.4040174,-2.5850065,-3.27561,-2.181933,-3.2872012,-3.765101,-4.106224,-2.2740936,-1.3036927,-1.2949847,-2.221617,-2.5226347,-2.58429,-1.6760937,-2.570669,-2.756279,-2.8893225,-3.252493,-2.8990865,-1.3584787,-2.5375628,-2.7819788,-3.1138742,-3.4366794,-3.7756484,-3.786821,-3.8258238,-3.8192966,-3.7560496,-3.8159995,-4.119155,-4.2800198,-4.1768174,-3.867192,-3.8783183,-1.0558721,-2.6228704,-2.9685607,-3.0896604,-3.2130375,-3.3720388,-3.3072717,-3.2401168,-3.271368,-1.232427,-2.0902734,-2.5350251,-2.918199,-3.1028478,-3.1565034,-3.2844932,-3.4615483,-3.5682964,-3.6713653,-3.7185206,-3.8229594,-3.985918,-3.8788328,-3.6527362,-4.018698,-4.018505,-4.107037,-1.0163183,-2.3723812,-2.9025657,-3.1842425,-3.508669,-3.4685059,-2.468309,-2.5270774,-2.944824,-3.612626,-3.7294888,-3.3132005,-3.176564,-3.8495228,-3.7678783,-3.3991106,-3.5336046,-3.5582914,-3.5592833,-3.59102,-3.4225173,-3.3806734,-3.3833303,-3.4400759,-3.5215116,-1.4953055,-2.282851,-3.2691925,-3.8003807,-3.9270885,-3.0745854,-1.5946265,-2.2144222,-2.53066,-2.4812677,-3.0796268,-3.3622146,-3.3114777,-3.4976602,-3.421844,-2.2233558,-2.2329538,-2.436027,-2.5323405,-2.4815009,-2.5990171,-2.4056664,-3.2130332,-2.6492012,-2.542441,-2.6039958,-2.6861744,-2.751441,-2.679059,-2.4450326,-2.1915872,-2.5382438,-2.495131,-2.5995374,-2.6370244,-2.2773912,-2.2311473,-2.6365452,-2.2187328,-2.1045735,-2.3473577,-3.2437506,-3.7049026,-3.9499917,-3.9136562,-3.9129698,-3.9062872,-3.8194685,-3.6276436,-3.3004847,-3.3762832,-3.4556973,-2.8589163,-2.7801876,-2.8615775,-2.989307,-3.0753574,-3.0298898,-2.751359,-2.0299706,-2.356534,-2.7797534,-2.9805243,-2.7022595,-2.4808025,-2.1275742,-2.4233081,-2.6193187,-2.653297,-2.7153056,-3.2324653,-3.645625,-3.0479593,-2.7383804,-1.9824885,-2.6780455,-3.2829528,-3.4642344,-3.0783653,-2.910684,-3.1474242,-3.4055085,-3.4680767,-3.5728235,-3.5537663,-3.5479836,-3.6661978,-3.8547926,-4.011135,-4.127877,-4.0222692,-3.9474015,-3.9747581,-3.9652033,-4.0485945,-3.9897466,-3.898806,-1.3059244,-2.2769654,-2.7803535,-2.8830128,-3.1062279,-1.665569,-2.1990328,-2.8969934,-1.8101957
+-1.9657372,-2.9687133,-3.4035668,-3.8550768,-4.0649786,-4.1395183,-4.1555686,-1.3306602,-2.3379617,-2.0082562,-1.8606282,-2.0488045,-2.317296,-2.7852945,-3.069563,-3.2129695,-3.471439,-3.7839305,-3.9869409,-4.099983,-4.2252617,-4.2364755,-4.1508074,-4.0826035,-4.0696344,-3.9389744,-3.9841752,-4.0440507,-3.886483,-3.524477,-1.7910274,-2.79915,-3.5580187,-3.9650197,-4.024575,-4.0372763,-3.8108878,-3.787531,-3.7255538,-3.9283047,-4.0117817,-4.119244,-4.180355,-3.6358247,-3.1169891,-3.9158192,-2.902087,-1.2412438,-2.6960273,-3.2678778,-3.770782,-3.9152913,-4.006979,-4.121244,-4.1787415,-4.0673695,-4.016391,-4.151139,-4.2510786,-4.159193,-4.1083584,-3.8533502,-4.025154,-4.1510468,-4.1419306,-4.1621237,-4.167634,-4.1967416,-4.044282,-3.6813993,-3.8670897,-1.840724,-3.205604,-3.6677284,-3.9618373,-4.1456685,-4.172764,-4.203904,-4.196867,-4.159396,-4.124057,-1.7089242,-3.3153305,-3.883029,-3.824624,-3.9950695,-3.9505773,-3.9375148,-3.9059815,-2.0964885,-1.4367367,-1.6497121,-2.3084388,-2.682732,-3.151174,-3.449538,-3.7122242,-3.8383408,-3.9080453,-4.0518217,-4.085518,-4.0867476,-4.1037264,-4.133194,-4.1651664,-4.1594687,-4.140522,-3.8686662,-2.5967944,-3.4765244,-1.4391596,-2.982529,-2.5610416,-3.211804,-3.664275,-3.603664,-3.550662,-1.638069,-2.0973861,-2.454076,-2.091257,-1.8523715,-2.4676352,-2.2061038,-2.0926774,-1.9973468,-2.4177585,-2.4505339,-2.446415,-2.782652,-3.1387234,-2.5198975,-2.1062288,-2.7370615,-2.6751354,-2.0026045,-2.909563,-2.0443642,-2.6001616,-3.2551458,-3.4078486,-2.7779794,-2.5176287,-2.8150759,-2.8996224,-3.2612882,-3.6094794,-2.7741265,-1.928073,-2.9396935,-3.3537693,-3.5158348,-3.597119,-2.168333,-2.658679,-2.887384,-3.5585868,-3.8632512,-3.9041605,-0.34634772,-2.025625,-2.6291509,-2.8631334,-3.0634122,-2.8257875,-2.3110862,-1.6598425,-2.6452665,-3.0721836,-3.4208326,-3.6957238,-3.8108673,-3.9815426,-3.7454653,-3.7229483,-2.4936953,-2.9647937,-3.4669774,-3.6265178,-3.026833,-2.5373633,-2.0639257,-1.5122811,-2.5621243,-2.9089217,-1.7553957,-2.721364,-3.0668979,-3.3131022,-3.5283017,-3.6654344,-1.8520435,-2.8519545,-3.1626072,-3.488083,-3.6680856,-3.8207562,-3.89035,-3.8779273,-3.8513157,-3.7791038,-3.7917228,-3.7987733,-3.823159,-3.9376934,-3.890161,-3.9247751,-3.7258198,-3.7316883,-3.877172,-3.9563367,-3.8791878,-3.896297,-3.7783718,-3.6710315,-3.5427897,-1.6302911,-1.1117624,-2.6555555,-2.760582,-2.935176,-3.0660753,-3.2288969,-3.3595018,-3.421195,-3.529481,-3.6273055,-3.7782907,-3.894744,-3.9862947,-3.8463476,-3.828638,-3.8615665,-3.8749764,-0.6998362,-2.551351,-2.8954926,-3.01338,-3.2026057,-3.2332344,-3.0250545,-2.0631642,-2.6812024,-3.3458946,-3.4185266,-3.21492,-3.232066,-3.4650064,-3.479758,-3.4697266,-3.510178,-3.475123,-3.503408,-3.52466,-3.5665836,-3.5919046,-3.5896516,-3.6070347,-3.6343274,-2.1127372,-1.7301787,-2.845346,-2.8336492,-2.9726248,-2.5581207,-1.6827353,-2.4462783,-2.5693142,-2.122519,-2.552733,-2.7305832,-2.9701328,-3.2230024,-3.2013884,-1.5641903,-2.3491468,-2.4410233,-2.5897722,-2.715667,-2.8934824,-2.6319919,-3.1525507,-3.0846577,-3.3176885,-3.3008094,-3.335225,-3.3432736,-3.3422997,-2.5959616,-1.4816407,-2.2541995,-2.564976,-2.7015433,-2.5414243,-2.1687055,-2.0445857,-2.3218772,-2.292628,-2.230641,-2.343205,-2.7778852,-3.114276,-3.357633,-3.2693615,-3.2125754,-3.2635891,-3.300837,-3.295909,-3.2843332,-3.348751,-3.3746083,-3.3328729,-3.2957006,-3.333808,-3.3322499,-3.4069448,-3.4450467,-3.4246225,-1.382736,-2.3335,-2.7029276,-2.9200444,-2.8660667,-2.7313197,-1.8536866,-2.354375,-2.7777162,-2.8974504,-2.8653324,-3.1199484,-3.2372108,-3.1874874,-3.1041205,-1.7628568,-2.7489989,-3.042041,-3.081932,-3.0787418,-2.7410967,-2.9310412,-3.3533783,-3.3724015,-3.5793812,-3.6703625,-3.702166,-3.7016535,-3.7515554,-3.7949493,-3.9124465,-3.966322,-4.080899,-4.119215,-4.1535187,-4.1663685,-4.0841217,-4.0972557,-2.0440106,-2.566934,-3.4068618,-3.5453238,-3.766328,-3.1950202,-3.4524665,-3.8973427,-3.8971872
+-2.6145983,-3.941749,-4.388527,-4.737385,-4.8282185,-4.838626,-4.460113,-1.4700599,-2.6422267,-2.0554662,-1.8154055,-2.1121051,-2.9581642,-3.8637025,-4.318057,-4.532638,-4.6198025,-4.7283125,-4.914872,-4.994807,-5.0368624,-5.001253,-4.8823595,-4.7709217,-4.8155603,-4.767128,-4.805703,-4.8734756,-4.5942335,-4.476907,-4.604821,-4.6208725,-4.7805824,-4.84606,-4.7481494,-4.647238,-4.513838,-4.465309,-4.3858595,-4.554549,-4.566461,-4.7242284,-4.7402315,-2.0094318,-2.0643897,-3.9483771,-4.3220835,-4.362608,-4.3599443,-4.6000247,-4.735507,-4.7504435,-4.7861614,-4.8360453,-4.7967587,-4.747032,-4.75801,-4.875626,-4.831959,-4.681099,-4.8018827,-4.745027,-4.6628304,-4.719267,-4.749215,-4.751747,-4.7157364,-4.7445955,-4.585762,-4.454672,-1.6560106,-2.0188212,-2.0489068,-3.4491832,-4.0740175,-4.586299,-4.844727,-4.926578,-4.9124317,-4.8782935,-4.763214,-4.58819,-4.507028,-4.6222086,-1.3483744,-2.0640674,-2.0359988,-2.2227407,-3.2067316,-1.6184139,-1.85155,-1.3368706,-2.0946078,-2.372452,-2.764359,-3.170703,-3.179427,-2.8898532,-3.1139183,-3.6119976,-4.034009,-4.2766395,-4.336496,-4.34455,-4.2468824,-4.2950864,-4.072739,-0.7093659,-1.5043014,-2.237739,-1.3931953,-2.3919451,-1.8581983,-2.5886686,-2.9936059,-1.9042361,-2.712407,-1.4460236,-1.7468631,-2.5914528,-2.0635245,-1.4652592,-1.46906,-1.6822971,-2.4161448,-2.2381053,-2.507801,-1.9482694,-2.0463629,-2.5067062,-1.7975835,-2.1981356,-2.3211756,-2.3192825,-2.2748785,-2.6224766,-3.065074,-3.4143672,-3.6054306,-3.7772212,-3.8826394,-3.5320027,-2.0084224,-2.846404,-3.3695407,-3.7121677,-2.5797343,-1.3675421,-2.388103,-3.1251657,-3.636838,-3.8184395,-3.2694585,-1.2625872,-1.5054345,-2.221564,-2.814877,-3.3204985,-3.4893627,-0.67493474,-2.1755757,-2.5637977,-2.9558036,-2.0823536,-2.0959232,-2.109878,-2.8488433,-3.193834,-3.4998755,-3.8084717,-4.122978,-4.3286223,-4.01944,-2.083821,-2.5255888,-3.1479974,-3.4788246,-3.973405,-1.2528604,-1.9445745,-2.130056,-2.0843458,-2.1116788,-2.9993267,-2.9216945,-2.124487,-3.175206,-3.5983787,-3.829443,-3.989654,-3.903937,-2.4053874,-3.3479853,-3.7838593,-4.2089305,-4.479854,-4.6987467,-4.733427,-4.683057,-4.646329,-4.6047125,-4.569415,-4.6925497,-4.6302032,-4.815697,-4.5726976,-4.4824705,-4.1315374,-4.1850996,-4.43775,-4.456131,-4.2705975,-4.3598595,-4.2360916,-4.0657454,-2.9000401,-1.8070253,-2.8110123,-3.3641472,-3.7446482,-3.984582,-4.2832327,-4.402523,-4.396904,-4.291498,-4.394211,-4.4149837,-4.6471786,-4.76316,-4.786872,-4.50668,-4.400211,-4.59788,-4.61461,-4.197328,-3.9163823,-4.169393,-4.492324,-4.5442896,-4.3686233,-4.1930165,-2.0676193,-1.8836595,-3.8426971,-3.9114916,-3.7701063,-2.3678317,-3.2502236,-3.847454,-3.9459276,-3.896793,-3.7169545,-3.8846602,-4.060453,-4.2352376,-4.135729,-4.0759544,-4.1234064,-4.383648,-2.187711,-1.672006,-3.6040015,-3.2876256,-3.6037288,-2.7863863,-1.2261778,-2.4982815,-2.8791356,-2.4507852,-2.985513,-3.2751749,-3.5381584,-3.6310427,-3.313414,-1.8255218,-2.440748,-2.7339334,-3.1559944,-3.3312104,-3.4684772,-3.5115223,-3.6447375,-3.7308342,-3.8812366,-3.9248028,-4.0074034,-4.017181,-3.958703,-3.620133,-1.0701276,-2.4076028,-2.563715,-2.9763966,-3.3441234,-2.936997,-2.0196457,-2.789177,-3.1594367,-2.920556,-3.1025376,-3.6916895,-3.8711834,-4.070831,-4.127138,-4.1429496,-4.209293,-4.2743025,-4.3030815,-4.3241186,-4.360871,-4.3702145,-4.396432,-4.316457,-4.2910414,-4.377385,-4.6384363,-4.631035,-2.7868223,-1.43358,-2.5243063,-2.8891106,-3.3474782,-3.4177544,-2.5878959,-1.5849055,-2.277441,-2.8562245,-3.3354404,-3.4518285,-3.8362615,-4.0107164,-3.9515245,-3.7738028,-3.9757037,-3.936644,-4.411565,-4.4714727,-4.502218,-4.322742,-4.2688317,-4.60254,-4.8067064,-4.883084,-4.9069586,-4.91617,-4.863696,-4.889504,-4.9324574,-4.9279604,-4.912305,-4.8813906,-4.9063463,-4.9028034,-4.9071293,-4.808748,-4.7928934,-3.549299,-4.3846807,-4.7585597,-4.7071295,-4.649044,-2.1041715,-3.7447884,-4.4058185,-4.4960117
+-2.3433995,-3.4777598,-4.080952,-4.5179925,-4.7028513,-4.779007,-4.5292463,-4.1399593,-4.476742,-4.3672657,-2.5430932,-3.1307828,-3.692955,-4.2885942,-4.467654,-4.5331135,-4.6302443,-4.695276,-4.7570257,-4.8159757,-4.849559,-4.84181,-4.773394,-4.6339684,-4.7168207,-4.595731,-4.6795206,-4.7402287,-4.544058,-4.6255856,-4.6923246,-4.7319465,-4.792431,-4.8560133,-4.7466917,-4.689021,-4.579005,-4.52446,-4.4325294,-4.435191,-4.3234367,-4.489397,-4.5601854,-4.34784,-4.5124,-4.657604,-4.692252,-4.638612,-4.527283,-4.688114,-4.7500887,-4.669894,-4.729452,-4.758847,-4.6767364,-4.6607122,-4.71006,-4.8504043,-4.6790276,-4.508188,-4.7049756,-4.745349,-4.6238346,-4.666969,-4.7438827,-4.815992,-4.7520466,-4.7838693,-4.6309385,-4.0938487,-1.2855855,-2.9802868,-3.1618214,-3.5581746,-4.0073643,-4.4537826,-4.644032,-4.5990868,-4.724625,-4.755391,-4.5977015,-3.7509413,-4.074402,-4.1139317,-1.9784979,-1.9331948,-2.6150813,-2.7294848,-2.4907565,-1.5864346,-2.075436,-2.0265977,-2.5649667,-2.448566,-2.7380385,-2.9525018,-3.09757,-3.4298296,-3.0031886,-2.718772,-2.8869658,-3.2825804,-3.742672,-2.6993942,-2.4252362,-3.0985146,-3.1914837,-1.9248849,-2.2449198,-2.1625447,-2.833341,-2.7434826,-2.1360073,-2.3692203,-1.7106143,-1.9880399,-2.5006022,-1.7763082,-2.3315983,-2.7093987,-2.4275355,-1.3053585,-2.6705003,-2.282673,-2.7363896,-2.9699237,-2.9283,-2.9529912,-3.1411018,-2.8503022,-1.989376,-2.848548,-2.727344,-2.6593244,-2.531544,-2.511867,-3.0433955,-3.4250364,-3.6734877,-3.668877,-3.1741657,-2.9348235,-3.091044,-3.1836672,-3.4525695,-3.4887033,-3.568262,-2.969157,-3.330079,-3.662436,-3.9688463,-4.1031475,-3.3772252,-3.295397,-3.47555,-3.747245,-4.0295305,-4.274434,-2.4193697,-0.97648925,-2.5999956,-2.8583965,-3.0985985,-3.3907208,-3.0077655,-3.1460354,-3.3050113,-3.5334864,-3.7134256,-3.9271183,-4.0905523,-4.018734,-3.780456,-3.8374527,-3.9048088,-3.9929676,-3.9299986,-3.115068,-2.8240113,-3.208489,-3.6505218,-3.6356678,-2.9868646,-3.24548,-3.7346373,-3.5215437,-3.8380806,-4.127236,-4.178003,-4.350657,-4.3278065,-4.2342644,-4.3401966,-4.3780103,-4.473523,-4.576359,-4.721801,-4.6886125,-4.620717,-4.5839562,-4.5754766,-4.557885,-4.8075314,-4.816656,-4.8569446,-3.69282,-3.8808455,-3.8439698,-4.1886487,-4.587273,-4.620429,-4.398031,-4.5547533,-4.396311,-4.286062,-4.177867,-4.291898,-4.3842916,-4.4971704,-4.5550394,-4.6588817,-4.7742662,-4.776016,-4.7997403,-4.798894,-4.8090963,-4.778932,-4.908003,-4.948327,-4.9573746,-4.7442126,-4.558527,-4.8076744,-4.895343,-4.7224874,-4.178625,-4.5349746,-4.8324695,-4.8082743,-4.742899,-4.473979,-4.251688,-4.236272,-4.392618,-4.4457836,-4.2548227,-2.3574476,-3.1990767,-3.7170713,-3.8657708,-3.9210095,-3.9732275,-4.333536,-4.551671,-4.5211873,-4.5363274,-4.5213203,-4.6013665,-4.6811037,-4.562466,-3.8296642,-4.1865864,-4.5457478,-4.6983213,-4.442503,-0.9063275,-3.008927,-3.2512455,-2.788405,-3.5700016,-3.8428383,-3.9974508,-4.100234,-4.022168,-3.5423398,-1.9640349,-3.2980762,-3.565126,-3.765647,-3.893662,-3.895965,-4.0123906,-4.2250233,-4.398317,-4.3339624,-4.301324,-4.40049,-4.3942423,-3.2949867,-1.7136439,-3.167149,-3.4627342,-3.52998,-3.7397757,-3.5692377,-1.5385467,-2.9898248,-3.52489,-3.613529,-3.6690297,-3.8534946,-3.8521593,-3.839156,-3.871139,-3.9714699,-4.1184125,-4.1665096,-4.3032126,-4.392675,-4.4556026,-4.502487,-4.500387,-4.47019,-4.367628,-4.620875,-4.676735,-4.611636,-4.648208,-3.0914557,-3.4622903,-3.7733479,-4.040702,-4.0734444,-1.4380071,-2.591831,-3.0444376,-3.2561784,-3.6658483,-3.6699364,-3.898528,-4.169898,-4.2392926,-4.1995273,-4.264183,-4.202602,-4.5850534,-4.6665454,-4.5898857,-4.436369,-4.41342,-4.756886,-4.830766,-4.8242617,-4.84622,-4.863352,-4.810732,-4.8764143,-4.880825,-4.8529387,-4.848755,-4.847354,-4.859029,-4.8537264,-4.777626,-4.835533,-4.831852,-4.5534477,-4.684412,-4.821468,-4.7130647,-4.710294,-4.445251,-4.6253085,-4.6886253,-4.5788164
+-2.5620265,-3.6352577,-4.0972886,-4.356883,-4.470274,-4.4744635,-4.266323,-3.4692848,-3.7703483,-4.0758653,-3.8220327,-3.8783407,-4.2252884,-4.4535146,-4.4836597,-4.52623,-4.5396237,-4.5556917,-4.5504575,-4.5576425,-4.554061,-4.522129,-4.452979,-4.460677,-4.5250454,-4.5658255,-4.627718,-4.6194687,-4.499628,-4.62516,-4.5559254,-4.6043644,-4.6499662,-4.592246,-4.5196633,-4.4412622,-4.1705103,-4.368011,-4.32753,-4.2314963,-4.233674,-4.423204,-4.568204,-4.163921,-4.394944,-4.5694695,-4.5834293,-4.5476966,-4.543002,-4.601733,-4.610603,-4.541642,-4.5685205,-4.541977,-4.449685,-4.4006033,-4.6656203,-4.6345434,-4.4894066,-4.217137,-4.445503,-4.549824,-4.5230045,-4.4965544,-4.490917,-4.5189095,-3.9857635,-4.4368515,-4.427039,-3.8993895,-2.6420043,-3.6245747,-3.42401,-4.2923565,-4.472762,-4.5763607,-4.55441,-4.4530535,-4.4772305,-4.5527625,-4.380825,-3.9318128,-2.0396855,-3.0810547,-2.1020427,-2.16503,-3.1732576,-2.2843394,-1.7935658,-1.5199636,-2.1938639,-2.3526385,-2.4483638,-2.6431494,-2.240197,-2.8915224,-1.569173,-2.5894055,-2.9339523,-2.1600826,-2.8222969,-3.3767638,-3.6708045,-1.6454259,-1.4141419,-2.1752038,-2.1856608,-2.1216908,-2.3632822,-1.7565019,-2.4451337,-2.7514157,-2.1245852,-1.3388916,-1.6097889,-1.865853,-1.9226595,-2.362794,-1.7286639,-2.0649529,-2.1901927,-2.4987588,-2.6807318,-2.75665,-2.5353742,-2.062951,-2.5542142,-2.5901692,-2.847274,-2.9391608,-1.132725,-2.3676174,-2.6895218,-2.3392258,-2.2963479,-2.3553638,-2.777101,-2.890611,-2.8921,-3.0523243,-2.4374015,-1.8236121,-2.5118864,-2.3888834,-2.6301157,-2.584692,-2.7567487,-2.510024,-2.8321266,-3.1039033,-3.2884989,-3.4872236,-2.7019894,-2.8059855,-3.0730324,-3.287396,-3.4850523,-3.6796665,-0.6332813,-1.9191648,-2.59512,-2.8614845,-2.9453645,-2.8669636,-2.3959365,-2.9329462,-3.0532708,-3.187692,-3.4149957,-3.5656798,-3.6582415,-2.9433608,-3.0654197,-3.2381976,-3.3879786,-3.5482287,-3.604762,-3.6345365,-2.844855,-2.833724,-3.3416705,-3.3060904,-2.6719065,-2.9901693,-3.0139997,-3.1151319,-3.529145,-3.8335972,-3.9460673,-3.9472442,-3.9054809,-3.9731274,-4.0912757,-4.1878967,-4.3079243,-4.4046593,-4.49531,-4.5010233,-4.441308,-4.3963165,-4.4116025,-4.366438,-4.4943085,-4.6520047,-4.5826163,-4.4072266,-4.3551974,-4.1761923,-4.2860513,-4.54047,-4.534892,-4.3823004,-4.363472,-4.257925,-4.2561836,-4.294866,-4.3071146,-4.2882147,-4.565054,-4.575953,-4.655652,-4.719337,-4.7117558,-4.7120667,-4.6727467,-4.7094913,-4.7428126,-4.7536936,-4.7616696,-4.7943497,-4.679639,-4.518355,-4.672147,-4.777524,-4.7321196,-4.1366053,-4.332884,-4.6525555,-4.702717,-4.717325,-4.3659096,-3.9497464,-4.0248,-3.7414238,-3.9495244,-4.109351,-2.369936,-3.0798998,-3.6416426,-3.8813682,-3.9503677,-3.9887362,-4.2932367,-4.5504055,-4.556643,-4.6505365,-4.6960173,-4.703266,-4.7046022,-4.595284,-4.5042534,-4.118264,-4.5560246,-4.6950173,-4.601631,-1.0215973,-3.0146623,-3.284478,-3.165625,-3.4518666,-3.7957375,-3.943225,-4.124832,-4.13096,-3.9081001,-2.5332334,-3.1374803,-3.4968886,-3.7250397,-3.9543035,-4.0301495,-4.106195,-4.302785,-4.5789657,-4.55766,-4.506261,-4.4779673,-4.6393957,-3.6013823,-1.7347778,-3.112924,-3.287053,-3.346992,-3.5308108,-2.1595879,-2.4574566,-2.9868546,-3.2976828,-3.309818,-3.2703438,-3.4956114,-3.6546357,-3.7930121,-3.9608827,-4.127726,-4.2754426,-4.1779556,-4.259049,-4.3955827,-4.500887,-4.4890194,-4.479861,-4.475028,-4.490619,-4.616001,-4.6260004,-4.5959377,-4.5575256,-3.5925112,-3.6002548,-4.2087593,-4.1197243,-3.8972914,-1.113327,-2.7919784,-2.908237,-3.0760236,-3.4360285,-3.4353354,-3.5936904,-3.8206143,-3.9881916,-4.0749383,-4.147194,-4.0788407,-4.3546057,-4.3999724,-4.3101826,-4.3487062,-4.245201,-4.4474187,-4.521399,-4.4932604,-4.493007,-4.5136886,-4.5125985,-4.5198555,-4.5255585,-4.511166,-4.5255156,-4.5271716,-4.5497875,-4.531392,-4.518305,-4.5379987,-4.5596676,-4.245923,-4.5391855,-4.6087008,-4.565261,-4.54755,-4.4366245,-4.5747986,-4.6221557,-4.547216
+-1.6550684,-3.4687207,-3.9910583,-4.1880913,-4.2547226,-4.274405,-2.9778686,-3.3990955,-3.848149,-4.1320457,-4.1039853,-4.1309223,-4.214703,-4.2975082,-4.2532983,-4.341473,-4.3858404,-4.3586698,-4.3763466,-4.385146,-4.3934813,-4.349575,-4.3854733,-4.3640943,-4.396592,-4.475025,-4.469716,-4.4317036,-4.276721,-4.4304957,-4.323025,-4.3408647,-4.4299994,-4.3805504,-4.323515,-4.282942,-4.1358557,-4.203374,-4.2095447,-4.2222795,-4.179283,-4.191064,-4.2743754,-4.025349,-4.1179643,-4.212879,-4.2759514,-4.2440357,-4.27608,-4.343335,-4.348168,-4.3505487,-4.4091434,-4.3547125,-4.3371906,-4.087735,-4.2616415,-4.305274,-4.2540355,-4.1380825,-4.304432,-4.3311543,-4.31901,-4.285822,-4.243918,-4.228129,-4.189212,-4.1715584,-4.1914864,-4.072921,-3.8307614,-4.107066,-4.1762633,-4.174628,-4.2003202,-4.2335973,-4.193225,-4.1167417,-4.097411,-4.114437,-4.0293317,-3.9552896,-3.70822,-4.0423684,-3.8950894,-3.604055,-3.7421646,-2.1814024,-1.7866925,-0.99587625,-2.0045676,-1.8932141,-2.5793524,-1.9952024,-2.5575624,-3.0302632,-0.85625976,-2.1550927,-2.5949454,-2.8245165,-3.1173983,-2.8700264,-3.247778,-1.9123665,-2.5266764,-1.467049,-1.7336023,-2.1278932,-2.582911,-2.537065,-2.9314597,-3.032405,-2.87625,-2.4501796,-1.8245859,-1.8408078,-2.3625696,-2.0955915,-1.3835324,-2.0046926,-1.7784079,-2.272509,-2.3612566,-2.6064637,-2.7696798,-2.5549905,-2.874165,-2.8806615,-3.1481934,-2.088521,-1.422383,-2.1758513,-2.1086187,-2.0282025,-1.2002846,-1.6196576,-1.9528893,-2.2675326,-1.5770582,-2.637032,-1.8249223,-1.4922462,-1.9648226,-2.0607204,-1.7372751,-2.218398,-2.5737307,-2.7500763,-2.9403512,-3.1052668,-3.2796211,-3.431356,-2.244516,-2.7147973,-2.9189613,-3.1073747,-3.2499774,-3.5290964,-0.84842855,-1.8420982,-1.9978479,-2.1224542,-2.3659801,-1.4452589,-1.9786896,-2.2090707,-2.5118997,-2.7224083,-2.923861,-3.1080122,-3.2880716,-2.7959774,-2.481686,-2.8377042,-2.9557798,-2.7556438,-3.2612467,-3.2264788,-3.1616645,-2.8993664,-3.2935472,-3.3723512,-3.5517778,-3.3023498,-3.6370916,-3.4254236,-3.6323328,-3.7088013,-3.7956777,-3.8038316,-3.8182569,-3.8638568,-3.8469567,-3.8759146,-3.923418,-4.0127516,-4.0298233,-4.0202055,-4.0434155,-4.060646,-4.0454407,-4.0281644,-4.049041,-4.0654044,-4.0626664,-4.026501,-4.051054,-3.9506326,-4.018236,-4.0735493,-4.0737596,-4.049715,-4.066404,-4.073531,-4.121038,-4.0774817,-4.038476,-4.059854,-4.378622,-4.198895,-4.246311,-4.3190837,-4.2829294,-4.231639,-4.2055225,-4.346177,-4.3789043,-4.386301,-4.3350487,-4.353207,-4.2409477,-4.200493,-4.351006,-4.3164783,-4.362426,-4.1304865,-4.162814,-4.3549247,-4.3651667,-4.3602858,-4.223798,-4.091655,-4.1327915,-4.214141,-4.1577644,-4.289124,-3.2888403,-3.8212924,-4.025955,-4.0941887,-4.1153507,-4.1184783,-4.2292457,-4.359671,-4.3652697,-4.421842,-4.4409847,-4.450016,-4.363514,-4.326542,-4.2830625,-4.246646,-4.420328,-4.3523426,-3.5126839,-1.8019086,-2.9343443,-3.1621478,-3.4255438,-3.614523,-3.9217496,-4.0943184,-4.2341986,-4.091347,-4.069708,-3.8965878,-3.947505,-4.0623436,-4.2615113,-4.3339906,-4.275694,-4.2639694,-4.3688326,-4.285936,-4.3526773,-2.9952416,-3.6845088,-4.0407715,-4.1755614,-1.2984889,-2.5541952,-3.0519826,-3.2794142,-3.4850438,-3.0010548,-3.205844,-2.516884,-3.162971,-3.4941435,-3.539727,-3.8087118,-3.9214108,-4.0343943,-4.019273,-4.1480994,-4.2109632,-4.1506615,-4.2118406,-4.2853594,-4.250783,-4.22217,-4.255966,-4.3276486,-4.36677,-4.345079,-4.232272,-4.2388945,-4.23634,-4.0998907,-4.116965,-4.4244175,-4.1077824,-4.137373,-0.60438067,-1.8447536,-2.247546,-2.6218498,-3.0581806,-3.2756827,-3.3976643,-3.6003115,-3.8308985,-3.9187155,-4.0848985,-4.052388,-4.216343,-4.2377663,-4.069853,-4.1276865,-4.1653495,-4.1666856,-4.2939215,-4.2019014,-4.2162976,-4.2188873,-4.233369,-4.228142,-4.204883,-4.1980395,-4.200217,-4.201298,-4.220765,-4.245437,-4.245308,-4.289439,-4.2902193,-4.2877965,-4.3074408,-4.342418,-4.2975464,-4.3069572,-4.3642383,-4.362835,-4.357077,-4.280481
+-0.8025839,-1.2022282,-1.8546982,-2.037012,-2.0343978,-2.6721358,-2.673538,-2.631928,-2.7227983,-3.0885215,-3.0217524,-2.951742,-2.5765102,-2.8596687,-2.550987,-3.0109832,-3.0355427,-3.0472784,-3.0847616,-3.0023937,-3.0345135,-3.0370283,-2.9189973,-2.48114,-2.5026195,-2.8696227,-2.9717183,-2.8485022,-2.9310968,-2.9560442,-2.9830577,-2.9549267,-3.0268645,-3.1919003,-3.3045511,-2.8457727,-3.2826467,-3.3303437,-1.5507618,-1.723179,-2.2598171,-2.5300837,-2.5999594,-2.7651434,-2.8346143,-2.862401,-2.9422596,-2.9984486,-2.7918382,-2.3460555,-2.1915479,-2.156196,-2.228148,-2.1538904,-2.2844408,-2.2480447,-2.1606312,-1.9853097,-2.319727,-2.13036,-2.141007,-2.2331972,-2.3475466,-2.237553,-2.599072,-2.6835744,-2.848302,-2.956224,-3.0749433,-1.9250315,-2.7383199,-1.3980206,-2.0578225,-2.5946317,-2.399345,-2.2728288,-1.8361348,-2.4076428,-2.337389,-1.9090204,-2.487225,-1.5964172,-1.8437363,-2.408496,-1.8893715,-1.7182875,-1.8060068,-1.873228,-2.4422789,-1.8113133,-2.270186,-2.1021934,-2.2449894,-2.3226902,-2.6258311,-2.248329,-2.1351385,-2.0256653,-2.7500205,-2.0604272,-2.1609766,-1.2178522,-1.5966074,-1.8362714,-1.7482967,-1.8967029,-1.7289685,-1.831156,-2.1302974,-2.232997,-2.0941818,-2.6361885,-2.6222281,-1.5893899,-2.345856,-2.747608,-1.4261559,-1.8125074,-2.3634133,-2.7043443,-2.799052,-2.0826843,-2.7367897,-3.1426225,-1.2097265,-1.6916251,-2.410617,-2.599192,-2.032145,-1.6236724,-2.191216,-1.6007262,-1.7992831,-1.9875952,-2.3509388,-2.1280036,-2.0423272,-2.565709,-2.12957,-2.1604786,-1.9872307,-2.6733756,-2.9299262,-2.9291236,-2.3318934,-2.106026,-2.489187,-2.1574187,-2.7925794,-2.9240654,-2.954453,-3.0244937,-3.047275,-3.1007824,-3.0344963,-3.4148657,-3.5653045,-1.8318115,-2.5745873,-2.5530725,-2.369755,-2.2755842,-2.888434,-2.3942451,-2.937348,-3.1166782,-3.2028794,-3.347912,-3.3779798,-3.6471496,-3.4502218,-3.21141,-3.6162393,-3.0982187,-1.9182303,-2.39185,-2.4482374,-2.8056386,-3.3165822,-3.4149332,-3.3078732,-3.264978,-3.2194107,-3.197236,-3.1435714,-2.1117084,-1.9868504,-1.9966921,-2.1781437,-2.3031163,-2.2513223,-2.4779553,-1.9770206,-2.1208158,-2.3243065,-2.475163,-2.5060925,-2.4828382,-2.8148298,-2.7810273,-2.7678246,-2.9907498,-3.1934896,-3.1745315,-3.087447,-3.2184494,-3.3632627,-3.4017656,-3.4087567,-3.3906322,-2.45432,-2.99865,-3.149755,-2.383469,-2.6623032,-2.9292123,-3.1373172,-3.307313,-3.4937358,-3.6442814,-3.5267482,-3.6338549,-3.677926,-3.4839368,-3.6826367,-3.7564945,-3.7041044,-3.5771515,-3.3883605,-3.4358232,-3.647843,-3.6659904,-3.6591609,-3.5443487,-3.3783429,-3.5692863,-3.5816581,-3.5063212,-3.574499,-3.5962992,-3.6299748,-3.77209,-3.9161777,-4.0909424,-3.9945612,-3.9277115,-3.7491884,-3.7946389,-3.5390017,-3.9449744,-3.910523,-3.905611,-3.8455372,-3.7548375,-3.7849739,-3.862311,-3.801634,-3.9724312,-4.093689,-3.9019635,-4.081056,-4.1403947,-3.7108502,-3.760357,-3.139227,-3.6265163,-3.8830166,-3.5560293,-3.5491593,-3.6661534,-3.5330288,-3.5374146,-3.7579205,-3.6160219,-3.8173463,-3.6131206,-3.7338636,-3.8629308,-3.9227655,-4.0948725,-3.7819219,-3.8212502,-4.033058,-3.7196088,-3.6245399,-3.800911,-3.8379498,-3.8946338,-3.931426,-3.845334,-3.719449,-3.5005212,-3.1893678,-3.1754436,-3.2225912,-3.6353786,-3.5655098,-3.883904,-3.8708117,-3.951535,-3.9750957,-3.7719634,-3.3384972,-3.2871797,-3.1812243,-3.6054897,-3.8357608,-4.0691237,-4.0906897,-3.748654,-3.6538818,-3.1849961,-3.218727,-3.2935696,-3.0017636,-2.4330938,-2.7900138,-3.100419,-3.0650725,-2.9663708,-2.7220647,-2.2954972,-2.174745,-2.4836884,-2.3756654,-2.416021,-2.1453946,-2.26424,-2.4878323,-2.34416,-2.3510933,-2.2274203,-2.6092882,-2.6780076,-2.7388434,-2.6600194,-2.4375753,-1.9642507,-1.9065,-2.1586187,-2.4565363,-2.629588,-2.5726051,-2.3233185,-2.244769,-1.9881324,-1.9380486,-1.8206779,-1.3028648,-1.0642567,-1.2764369,-1.2442617,-1.3173121,-1.6453483,-1.5826951,-1.3260449,-1.3937796,-1.5761329,-1.8864621,-2.1601284,-2.318099,-2.3209486,-2.4751413,-2.4150386,-2.4240575
+-0.688597,-0.81626666,-0.99071676,-1.209473,-1.2598585,-2.0426178,-2.1254277,-2.3447452,-2.3826394,-2.446353,-2.6298888,-2.6069036,-2.1377678,-2.3636549,-1.2670931,-2.6486263,-2.8127966,-2.6813636,-2.4822485,-2.4849806,-2.3369656,-2.3274636,-2.391405,-2.393664,-1.3667821,-2.498385,-2.5345027,-2.5912719,-2.679264,-2.7162585,-2.6882238,-2.5663111,-2.6039376,-2.68814,-2.85815,-1.8727058,-2.4304209,-2.8406243,-0.7824026,-0.7936012,-1.234043,-2.0174181,-2.3026452,-2.5069346,-2.5055673,-2.3390224,-2.3470695,-2.3789458,-2.3431933,-1.3096269,-1.9597411,-2.4436355,-2.3992257,-2.4297369,-2.3364906,-2.2578673,-2.196784,-2.2700367,-2.3364987,-1.9977194,-1.8810729,-2.3065038,-2.2666388,-2.3170137,-2.5410738,-2.3510752,-2.59935,-2.8391411,-2.9303672,-1.2450111,-2.1314173,-0.69549567,-1.8998119,-2.2367902,-2.0901225,-2.0846465,-1.7345537,-2.2241027,-2.0989501,-1.9111767,-2.347757,-2.3844461,-2.6461954,-2.9086492,-1.6107442,-1.1312987,-2.0885186,-2.155044,-2.1825328,-1.8844913,-2.2644758,-1.8055226,-1.7656121,-1.5788504,-2.382808,-2.8188772,-1.4424751,-1.7159896,-2.4988618,-1.7994341,-0.9446316,-0.9206111,-1.8654505,-2.1554132,-2.2518153,-2.1905618,-2.0733695,-2.0739589,-1.6653923,-1.8626372,-2.053849,-2.4122696,-2.8452318,-1.691839,-2.4696984,-2.9477677,-3.0012312,-0.33616838,-1.6345388,-1.9729813,-2.1668913,-2.4410365,-2.8598552,-3.1811843,-3.1724625,-3.0975103,-3.3943868,-3.506242,-3.4007387,-2.7652411,-3.1887677,-0.460124,-1.5896032,-1.5294834,-2.0842597,-2.367167,-2.6059706,-2.8901417,-3.0717134,-0.597989,-1.827933,-2.5380716,-2.6351352,-2.7598946,-2.7945094,-2.5137954,-2.7735808,-1.3495685,-2.2756557,-2.5396957,-2.8266187,-3.0601375,-3.2935996,-3.4875066,-3.5136976,-3.4666271,-2.124616,-1.2662168,-2.4998815,-2.62961,-2.6816063,-2.4606225,-2.7572656,-2.8100536,-2.2800257,-2.6744475,-2.8623204,-2.2044773,-2.7112882,-2.867329,-2.611566,-3.0150518,-3.2551825,-1.1100032,-1.3473684,-1.9252218,-2.2267642,-2.6424634,-2.9462905,-3.037891,-3.119827,-3.1218834,-3.1535242,-3.2136714,-2.5067608,-0.99184436,-0.43684664,-1.691013,-1.9016773,-2.307845,-2.6559815,-2.8649518,-2.7322392,-2.56885,-2.8823204,-2.8402424,-2.8747473,-2.9862938,-2.6038713,-2.9189696,-2.8454092,-2.9630582,-3.0648632,-2.9850774,-3.0853677,-3.137682,-3.165915,-3.2018933,-3.2237287,-3.2583444,-3.2505836,-3.1847148,-3.1818113,-1.4191746,-2.5179563,-2.8718007,-3.0250573,-3.1803966,-3.1903548,-3.1974046,-3.1593437,-3.20784,-3.1962945,-3.2191439,-3.2438488,-3.2000122,-3.1398716,-3.1199265,-3.1731634,-3.1362762,-3.1227422,-3.1150658,-3.2412019,-3.1622005,-3.235014,-3.2701852,-3.3779385,-3.3554363,-3.4897518,-3.3933854,-3.4446626,-3.1826012,-3.2069602,-3.706775,-3.284369,-3.1667767,-3.162135,-3.3127458,-3.2911723,-3.9027686,-3.8867261,-3.914712,-3.8131428,-3.6682875,-3.9247284,-3.7496333,-4.164365,-4.301531,-4.069688,-3.8647814,-4.0388393,-4.240186,-3.778025,-3.6715918,-3.6156292,-4.1122,-4.1656165,-3.8948205,-4.1268415,-4.227856,-4.055415,-3.9674234,-4.1840916,-3.6554422,-4.1720147,-3.97791,-4.2381973,-4.255327,-4.2852364,-4.360941,-4.1426,-4.1320834,-4.2792215,-3.5779474,-3.6210456,-3.8130603,-3.9097376,-4.0102506,-4.1558237,-4.135208,-4.0722413,-3.7456648,-3.1757681,-3.1193342,-2.956283,-3.7264347,-3.7720318,-3.619613,-3.8105083,-3.9385557,-3.906477,-3.7492528,-3.1745872,-2.9954133,-3.026383,-3.291766,-3.7620282,-3.755595,-3.8268409,-3.5172172,-3.4218907,-3.5489292,-3.505317,-3.4206948,-3.0814202,-2.201189,-2.711611,-3.1268039,-2.9326725,-2.8224607,-2.4330118,-1.9893855,-1.9391962,-2.059587,-1.9573183,-2.1283555,-1.9053249,-2.04203,-2.097189,-2.0243354,-2.0969012,-2.0351481,-2.2341752,-2.2045834,-2.0408123,-1.8045453,-1.8429924,-1.612075,-1.7169691,-1.6547532,-2.152736,-2.2405128,-1.908518,-1.8793646,-1.5993034,-1.5234878,-1.525097,-1.0784014,-0.6753581,-0.8358337,-1.1492467,-1.2035557,-1.3504752,-2.0879803,-2.4781969,-2.2269354,-2.1655054,-2.4251993,-2.2613125,-2.444585,-2.2696114,-2.31959,-2.4470143,-2.3567278,-2.3253276
+-1.3629678,-1.9246064,-2.1385183,-2.3683233,-2.2689059,-2.4803224,-2.5761971,-2.829226,-3.156608,-2.9632983,-3.0993328,-3.468244,-2.9510179,-1.8193514,-2.5291743,-3.024373,-3.3838925,-2.769649,-2.9335122,-3.09762,-3.232177,-3.312802,-3.298839,-2.285966,-2.8469963,-3.0960574,-2.8439186,-2.8425653,-3.0641117,-3.1276665,-3.2472842,-3.4495497,-3.5888977,-3.7029152,-3.8402586,-3.746582,-3.5068808,-3.7987857,-1.5859774,-2.8813887,-3.1500697,-3.2859678,-3.1823301,-3.3745437,-3.4357142,-3.2849712,-3.3619998,-3.4594755,-2.9545379,-2.349229,-2.6329517,-3.2349682,-3.2571397,-3.1358604,-2.959167,-2.803358,-2.6445756,-2.9432585,-3.2118392,-2.4865046,-2.9280362,-3.1537352,-3.3106415,-3.333226,-3.6215372,-3.8547292,-3.7330947,-3.7837744,-0.96254915,-2.646225,-1.9442285,-2.5669727,-2.7615943,-2.459966,-2.6553679,-1.8653737,-2.5755377,-3.0270607,-3.0666487,-3.449759,-3.802862,-3.8463404,-3.942051,-3.99645,-2.4571633,-2.8178065,-3.5406435,-3.849024,-3.8828902,-3.8418531,-3.773343,-2.357583,-1.9215404,-1.7792178,-2.8794675,-3.3414855,-3.5391712,-1.6576014,-3.045736,-2.9444804,-0.8230499,-2.4855504,-2.8878403,-3.1113958,-3.2183406,-3.262728,-1.6138004,-2.4667406,-1.947857,-2.7871006,-3.1262732,-3.4818964,-3.6857615,-3.6226554,-3.8785138,-3.2080162,-2.9131315,-1.8936877,-2.5009708,-3.119166,-3.5410204,-3.6671598,-3.8599868,-4.0291085,-3.9384346,-4.0094175,-4.2240267,-4.058274,-0.7106847,-2.1592455,-2.8068907,-3.03088,-3.3319736,-3.314063,-3.0867767,-3.6173253,-2.9507718,-3.2271023,-3.699092,-1.7356077,-2.0548408,-2.9583037,-3.1709056,-3.2474174,-3.4689813,-3.5327082,-3.5990877,-2.7434816,-3.295897,-3.5810914,-3.8610506,-3.9373074,-3.9397259,-3.8637304,-3.7163866,-3.5952406,-1.2516934,-2.3439755,-2.801254,-3.2452383,-3.3518116,-3.361232,-3.4319775,-3.5589359,-1.8039935,-2.8365927,-3.0901132,-3.2084308,-3.2966652,-3.3810964,-3.3059206,-3.5561538,-3.735872,-2.3334,-2.1296864,-2.6985903,-2.7777488,-2.9542317,-3.2917266,-3.3587875,-3.5397036,-3.490867,-3.5337884,-3.6855407,-3.2644467,-1.5751053,-1.8772994,-2.6000876,-2.9916186,-3.1635492,-3.2607417,-3.3707237,-3.4140372,-2.1681485,-2.9008315,-3.2475953,-3.519625,-3.5070684,-3.483771,-3.5184774,-3.4323258,-3.4291964,-3.5933478,-3.74191,-3.7153635,-3.7287774,-3.7436187,-3.8119605,-3.8613677,-3.8313265,-3.5053492,-2.6504622,-3.290062,-3.2717304,-3.532761,-3.6563807,-3.7695687,-3.8467278,-3.9171247,-3.9751387,-3.9303842,-3.9720125,-3.9931612,-3.952381,-3.875205,-4.012797,-3.950335,-4.0035796,-3.4359448,-3.5920842,-3.0497627,-3.447693,-3.6398654,-3.6504254,-3.7311134,-3.7544873,-3.9296463,-3.945124,-4.084839,-4.051981,-4.1662345,-4.020303,-4.0594225,-4.474664,-4.0360684,-3.9133792,-4.058584,-4.1081095,-4.1750937,-4.7187576,-4.9409156,-4.980972,-5.0016136,-4.758364,-4.996256,-4.758107,-5.0686603,-5.208379,-4.5605955,-4.4054637,-4.615644,-4.6693735,-4.23138,-3.8133352,-4.0016747,-4.3487406,-4.419223,-4.2733016,-4.358059,-4.5008802,-4.2611475,-4.310689,-4.4799232,-3.6988196,-4.3341765,-4.4299355,-4.4608474,-4.480567,-4.629221,-4.78129,-4.8170033,-4.7905235,-4.757372,-4.384344,-4.470631,-4.473092,-4.6818438,-4.68587,-4.726559,-4.6936016,-4.6939754,-4.367116,-3.7912438,-3.78236,-3.1453898,-3.9308336,-4.2002354,-4.2116637,-4.148017,-4.455237,-4.413237,-4.412097,-4.0923715,-3.7584825,-3.764354,-3.6994011,-4.241004,-4.4607863,-4.617729,-4.33622,-4.286032,-4.4260683,-4.2354827,-4.099566,-3.4519362,-2.8929534,-3.219402,-3.6304343,-3.5548596,-3.4939895,-3.311996,-3.1003613,-3.166596,-3.002033,-2.9410067,-3.1371746,-3.0276263,-2.969688,-3.1958175,-3.262886,-3.7222292,-3.963101,-3.9293542,-4.074444,-4.101145,-3.4505665,-3.3119795,-3.380897,-3.3305721,-3.3300514,-4.0327272,-3.5577097,-2.9273791,-3.1340027,-3.3163981,-2.825232,-3.071488,-2.5231838,-2.6066551,-2.4599075,-2.9860415,-2.8419557,-3.0610528,-3.443407,-3.3683214,-3.5020018,-3.4155226,-3.7239974,-3.5186162,-3.716674,-3.588929,-3.178098,-3.6527638,-3.3302517,-3.2612066
+-1.5118377,-1.9029814,-2.096741,-2.3432684,-2.5508723,-2.8448355,-2.8889725,-2.963515,-3.0244217,-3.00492,-3.0684605,-3.1553516,-3.1188679,-1.9898075,-2.9013858,-2.847188,-3.2302594,-2.4024825,-2.210298,-2.7919245,-2.886694,-2.8491855,-2.306662,-2.2564054,-2.708354,-2.7977705,-2.672848,-2.6705267,-2.6407437,-2.880804,-3.0643928,-3.0540962,-3.1555448,-3.2124534,-3.3113523,-3.3861337,-2.7281742,-3.197661,-1.8443289,-2.5674152,-2.7826471,-2.9923372,-2.791517,-3.2067199,-2.647149,-2.0361047,-2.735052,-2.8385549,-2.7798486,-2.1027217,-2.4785616,-2.570687,-2.935453,-2.6153297,-2.2736356,-2.471589,-2.645883,-2.3697586,-2.9139528,-2.436537,-2.964408,-3.193912,-3.370685,-3.5201786,-3.695906,-3.8626592,-3.8962574,-3.8820348,-3.7985458,-2.7270133,-3.139884,-3.5077329,-2.988003,-1.7460598,-2.8217146,-2.957718,-3.3703704,-3.656662,-2.334523,-3.2914262,-3.685775,-3.805955,-3.9118438,-3.9492419,-3.987506,-4.077414,-4.3025026,-4.224577,-4.137721,-4.0409126,-2.7938485,-2.9927797,-1.8160466,-2.5334334,-2.127982,-2.9465415,-3.479808,-3.48051,-3.8818097,-3.859718,-1.8054223,-1.8631166,-2.8726273,-3.4280322,-3.7576733,-3.8945932,-3.645883,-3.768981,-3.8328185,-3.807334,-3.9434252,-4.0283694,-3.6399288,-3.7809174,-4.058329,-4.174089,-4.1137166,-3.8751595,-1.5945888,-2.9102564,-3.1503246,-3.6046247,-3.8586724,-4.0260143,-4.0332813,-4.0414166,-4.27159,-4.2619147,-1.713178,-2.7004352,-3.3724291,-3.708566,-3.7016108,-3.6990404,-3.6852827,-3.8760848,-3.9533572,-4.0740733,-4.127474,-2.3723736,-1.3299873,-2.6015506,-2.9571214,-3.2363963,-3.6009731,-3.7146304,-3.4514074,-1.6024057,-2.3061898,-3.1340146,-3.4703422,-3.7074292,-3.735667,-3.808185,-3.521841,-3.6183887,-1.2056234,-1.8864206,-2.803193,-3.1245818,-3.356083,-3.0429082,-3.353562,-3.6246529,-1.1254212,-2.389142,-2.8115726,-2.6593528,-3.0536156,-3.154079,-3.2842739,-3.1186674,-3.3998473,-3.4447212,-3.3412995,-1.0229762,-1.6477906,-2.43969,-2.9357717,-3.0399175,-3.184022,-3.2149448,-2.387298,-2.9344106,-2.5578308,-1.3065373,-2.3555818,-2.7823348,-2.7249007,-2.9013767,-3.108141,-3.143843,-3.2185423,-2.4508197,-2.742044,-2.9898343,-3.1507692,-3.1809921,-3.1279557,-2.697256,-2.9461126,-3.2066865,-3.219358,-3.3207264,-3.4312692,-3.5339546,-3.4257684,-3.408117,-3.3794718,-3.3630304,-3.0319104,-1.3117964,-2.5768967,-2.892052,-3.1109393,-3.1782503,-3.250893,-3.338577,-3.4139516,-3.4728668,-3.6268165,-3.500631,-3.519657,-3.6530652,-3.4969707,-3.5192895,-3.5763876,-3.4921184,-3.5114686,-3.499721,-2.7532372,-3.408535,-3.5643907,-3.6105418,-3.1432,-2.5348883,-3.1848285,-3.3362393,-3.6457486,-3.8011549,-3.7852054,-3.7765265,-3.5091534,-4.2942915,-4.010206,-3.707839,-4.0224752,-3.8999197,-3.8921907,-4.5697775,-4.781451,-4.833972,-4.6960745,-4.036247,-4.0866737,-4.379656,-4.580587,-4.644754,-3.5394523,-3.6929986,-4.1261425,-4.0862117,-3.9571478,-3.6143186,-3.6945786,-4.2869787,-4.408185,-3.8608894,-3.960175,-4.137076,-4.133144,-4.1005764,-4.311226,-3.8351238,-3.915319,-4.219902,-4.3744535,-4.3935413,-4.352292,-4.471752,-4.320102,-4.332816,-4.059381,-3.0871816,-3.5685956,-3.3325067,-3.6789618,-3.937237,-4.1378508,-4.1684184,-4.2151585,-4.046608,-3.7083597,-3.57593,-3.1042788,-3.9202647,-3.764853,-3.739916,-3.7983234,-3.8047514,-3.765069,-4.0304346,-3.7621496,-3.3913045,-3.3644502,-3.1051416,-3.4844465,-3.630734,-3.5470834,-2.9660368,-2.7918003,-2.8007317,-2.6997235,-3.2130861,-2.3114948,-2.141621,-2.5568576,-3.3827753,-3.346489,-3.430256,-3.3082714,-2.938149,-3.0905652,-2.785754,-2.7321038,-2.9295866,-2.5480752,-3.065648,-3.1598911,-3.338723,-3.4269357,-3.5626736,-3.4831057,-3.5888677,-3.4972613,-3.032928,-3.184301,-3.1309366,-3.0913658,-2.8930883,-3.5334663,-2.9096904,-2.8154984,-2.6707983,-2.8441918,-2.7395163,-2.8625634,-2.5157032,-2.7112207,-2.8601966,-3.2977166,-3.0695071,-3.1686425,-2.809402,-2.5438917,-2.8105402,-2.7972069,-3.10513,-2.7710238,-2.9507866,-3.066877,-2.903606,-3.159585,-2.5596042,-2.7574842
+-1.4879868,-2.1919243,-1.7939969,-1.8358016,-2.242175,-2.4035575,-2.3326414,-2.50484,-2.6428614,-2.7707934,-2.7512565,-2.9926,-3.0657413,-2.6609645,-3.1727164,-3.1030083,-3.3027716,-2.3123167,-1.7937654,-2.5233576,-2.8345068,-2.8925583,-2.9405866,-1.8589317,-2.6228712,-2.3358784,-2.571278,-2.4737778,-2.6618304,-2.5276587,-2.6638403,-2.865044,-2.9111905,-2.946712,-2.9990487,-2.9622557,-1.3218437,-2.497661,-2.6758003,-2.8861532,-2.8810248,-3.0779386,-3.052536,-3.0004237,-2.6652532,-2.3077526,-2.8612685,-2.8380904,-2.951027,-2.7244315,-2.9710546,-3.0437753,-3.4683146,-3.2723255,-2.3501484,-3.2685862,-3.3460476,-2.374467,-3.3330402,-3.5658858,-3.7450771,-3.8507955,-4.093796,-4.205024,-4.1809206,-4.2316985,-4.2555027,-3.8331487,-2.7721705,-2.536203,-3.4679961,-3.8604312,-3.6541247,-1.5683898,-2.2632046,-3.1831527,-3.5561624,-3.923426,-4.1245995,-4.3620005,-4.4242353,-4.382969,-4.49294,-2.434482,-3.5379467,-4.1459365,-4.6150737,-4.670365,-4.649724,-3.3568723,-2.2044368,-2.138416,-3.3376582,-3.7250473,-3.9965138,-4.303239,-4.4220977,-4.5107694,-4.629988,-4.5674963,-4.5496454,-4.620783,-4.738579,-4.766263,-4.755877,-4.6983414,-4.651156,-4.626142,-4.570279,-4.4306593,-4.5010033,-4.560712,-4.5366793,-4.4809904,-4.6152134,-4.6027036,-4.560864,-4.4158792,-2.271629,-3.5551114,-3.8750517,-4.223716,-4.4358053,-4.488983,-4.379872,-4.5682173,-4.5856705,-4.486476,-2.6592708,-3.5417533,-4.081928,-4.300165,-1.9193257,-2.2907355,-3.4260092,-3.8590045,-4.0898285,-4.3187213,-4.4172907,-2.1009316,-1.5702101,-2.9203005,-3.545846,-3.9272034,-4.329174,-4.5525336,-1.2952844,-2.1753316,-3.1870217,-3.6292276,-4.123106,-4.2785115,-4.3262568,-4.313245,-3.9501886,-3.127059,-2.225986,-2.090457,-3.3354464,-3.7115371,-3.986147,-4.2208858,-4.34617,-4.5204244,-3.9959211,-1.4068643,-2.2995164,-3.1999702,-3.388033,-3.5944827,-3.6675332,-3.8297105,-4.023437,-4.216185,-2.519494,-1.3438748,-1.903664,-2.5414274,-3.1471767,-3.335587,-3.5235038,-3.6203287,-3.5081367,-3.6991892,-2.812986,-1.3147589,-2.3722248,-2.9173205,-3.242084,-3.3454404,-3.4884253,-3.5939019,-3.6309917,-3.6603708,-3.5527363,-3.8034575,-3.7186441,-3.7333508,-3.6349916,-1.3232018,-2.8449752,-3.2839746,-3.4065118,-3.4739177,-3.555637,-3.6477132,-3.689662,-3.718866,-3.783128,-3.7842965,-3.8261764,-2.6578727,-3.4470317,-3.4460702,-3.7736268,-3.8846033,-3.9957705,-4.0300236,-4.1047363,-4.109128,-4.0990753,-4.0919166,-4.066735,-4.0743484,-4.041114,-4.096489,-4.0728254,-4.0080523,-3.9946766,-4.0256186,-1.7583454,-3.0773423,-3.5295753,-3.49685,-3.2610934,-2.7469451,-3.3629804,-3.5539804,-3.9173164,-4.06947,-3.8930273,-3.9373937,-3.9983969,-4.4931226,-4.3724003,-4.187333,-4.489458,-4.4778795,-4.202297,-4.910984,-4.7707973,-4.9485598,-4.7593575,-4.394995,-4.267628,-4.644371,-4.7997837,-4.8173437,-4.382498,-4.009266,-4.4038496,-4.6148963,-4.579131,-4.298045,-4.1575985,-4.6896114,-4.7305937,-4.22869,-3.000225,-3.4405084,-3.7297683,-3.689396,-4.0713797,-3.9860353,-3.9611359,-4.279136,-3.7939432,-3.9615946,-3.6511445,-3.9168625,-4.023966,-4.1543713,-3.9995747,-3.3465471,-3.6446276,-3.6984057,-4.1847925,-4.295373,-4.3895526,-4.46104,-4.489638,-4.4235415,-4.328783,-4.2292256,-3.8972783,-4.294238,-4.218211,-4.0800524,-2.7044086,-3.3188465,-3.736692,-3.9318795,-3.927647,-3.7646022,-3.7289448,-3.6733766,-3.7231672,-3.8696172,-3.9887958,-3.8720036,-3.796698,-3.7380033,-3.231648,-3.2022398,-3.315804,-2.5823708,-2.4521022,-3.524199,-3.6692305,-3.7002673,-3.6787925,-3.4352403,-3.3934112,-3.1747532,-2.9247983,-3.126926,-2.746272,-2.384233,-2.2053344,-2.155237,-2.7808628,-3.081816,-2.9671435,-3.2267163,-3.3615105,-3.2215977,-3.1267152,-2.9815187,-2.692337,-2.6184568,-3.17056,-2.7525995,-2.2363048,-2.1776342,-1.867329,-2.2346175,-2.4198267,-2.008452,-1.9391124,-2.1168613,-2.4233882,-2.4638445,-2.3169577,-2.4143744,-2.4758706,-2.4710233,-1.7975384,-2.6223364,-2.878898,-2.9208205,-3.0825882,-2.9159265,-3.1017618,-2.9015355,-1.102844
+-1.9764875,-2.1501555,-1.8263551,-1.7257909,-1.9006494,-2.2708952,-2.1224005,-2.1832292,-2.151537,-1.447575,-2.1380315,-2.449915,-2.3870852,-2.0661001,-2.295446,-2.4556494,-2.5827498,-2.2533522,-2.148923,-2.3464766,-2.5566635,-2.5097566,-2.297876,-2.0859077,-2.3738794,-1.8988768,-2.1354403,-2.3921661,-2.481904,-2.3133926,-2.5331163,-2.827509,-2.7642703,-2.6531553,-2.5676122,-1.6607505,-1.6047913,-2.0787277,-2.620298,-2.6287425,-2.644154,-2.7418027,-2.6589017,-2.4689631,-2.0542521,-2.0553684,-2.1701603,-2.4432387,-2.5992198,-2.3809462,-2.666468,-1.0914634,-2.430039,-2.549113,-1.900407,-2.6771188,-1.732158,-2.5494657,-3.029086,-3.2762666,-3.687427,-3.9897509,-4.213861,-4.228278,-4.290562,-4.300105,-3.6349406,-3.4585078,-3.8236637,-4.0345488,-4.2739353,-4.3273535,-1.3002865,-1.691665,-2.5059261,-3.3241572,-3.853118,-4.054507,-4.2391644,-4.3959575,-4.4828644,-4.4455376,-4.448601,-3.3050318,-3.9566004,-4.3983097,-4.70158,-4.739627,-4.6427035,-4.517811,-2.1863878,-1.3736259,-2.3315852,-2.2804575,-2.9118745,-3.445445,-3.8437178,-4.0609646,-4.3129797,-4.3265886,-4.341551,-4.3773804,-4.5725584,-4.6034236,-4.650967,-4.7084208,-4.580203,-4.4925613,-4.1341696,-1.085642,-2.247798,-3.0665421,-3.4425972,-3.8980951,-4.306713,-4.473527,-4.468465,-4.437455,-4.407403,-4.374308,-4.364917,-2.203437,-2.1334715,-3.4245832,-3.7641797,-4.1962376,-4.2375603,-3.8088636,-3.6955369,-2.0116773,-2.8314204,-3.573865,-2.9150329,-3.3623333,-4.0920486,-4.3857245,-4.4076233,-4.419281,-3.2957363,-1.4058372,-1.9125589,-2.5912073,-3.5397956,-3.9642115,-4.217208,-4.4426627,-4.4094105,-2.8713574,-3.454111,-4.046789,-4.40607,-4.4300537,-4.343808,-4.293347,-3.8567867,-3.014556,-1.2588657,-2.0913916,-2.872244,-3.382567,-3.7991285,-4.1565723,-4.437212,-4.4777203,-4.3391533,-2.3271847,-0.9989825,-1.7190622,-2.5466309,-2.918181,-3.0265346,-3.2907894,-3.6217246,-3.6505837,-0.48468438,-2.1219702,-2.3268747,-2.6293874,-2.793449,-2.9029956,-3.106267,-3.0431266,-2.8489094,-2.823119,-2.521774,-1.0161508,-1.8357046,-2.5279393,-2.756483,-2.9304366,-3.030726,-3.1786833,-3.1804638,-3.126544,-3.1911886,-3.3297167,-3.2257426,-3.0763426,-2.5257282,-1.4267477,-2.592096,-2.6028495,-3.1964657,-3.1872478,-3.2810555,-3.3679852,-3.2855787,-3.0840955,-3.2334137,-3.2916772,-3.237843,-2.7595725,-2.9968984,-2.2540805,-2.9111216,-3.0747712,-3.539401,-3.5926838,-3.5666037,-3.557475,-3.6049955,-3.6972823,-3.6613476,-3.6723456,-3.6060874,-3.6535609,-3.642203,-3.604136,-3.6572304,-3.65834,-1.6567174,-2.928915,-3.4495947,-3.3289614,-3.1006267,-2.6967695,-3.34171,-2.7695708,-3.6127527,-3.7664075,-3.3306086,-3.5813644,-3.6016743,-3.9923725,-3.812604,-3.7088542,-4.0109425,-3.963286,-3.3965464,-4.197014,-4.054541,-4.289159,-3.7090325,-3.1236706,-3.0221,-3.8423584,-4.004067,-3.8599882,-3.11899,-2.3278956,-3.3625076,-3.9212584,-4.0170097,-3.5372062,-3.0693836,-3.6067185,-3.772946,-3.4981666,-3.2239628,-3.8144512,-3.9735723,-3.431209,-3.9713464,-3.9384284,-3.9532497,-4.0440426,-3.5080016,-3.8127997,-3.3641417,-3.7519798,-4.0739865,-4.0932417,-3.358118,-1.9471298,-2.5451345,-1.5541828,-2.6172752,-2.8842783,-2.9696534,-3.3929894,-3.5166545,-3.5817842,-3.5247645,-3.464839,-3.157629,-3.3971019,-3.3682957,-2.5161421,-2.2544832,-2.8546977,-3.4026794,-3.5156121,-3.4520364,-3.310958,-3.3022904,-3.2010155,-2.8457859,-3.2953382,-3.0911887,-2.8634572,-2.9245272,-2.865025,-2.2020533,-2.445089,-2.1877213,-1.8588556,-1.5061044,-2.981687,-3.2526894,-3.3786936,-3.3749676,-3.3686428,-3.2983475,-2.408789,-2.4264936,-2.8394103,-2.2106707,-1.9515717,-1.3564614,-1.9031779,-2.5704281,-2.8752713,-2.4268873,-2.8252196,-3.0466418,-3.0630379,-3.0778036,-3.1366549,-2.8321419,-3.0335677,-3.199226,-2.4424322,-2.5362291,-2.2421722,-2.047238,-2.4019234,-2.4966793,-2.2133422,-2.2921507,-2.2929277,-2.2028623,-2.125874,-2.0773883,-2.0570292,-2.0106568,-2.0806444,-1.6169595,-2.2636623,-2.5841818,-2.2899456,-2.466836,-1.6754378,-2.3092844,-2.351111,-2.2680337
+-1.746797,-1.8475493,-1.8022162,-1.9695731,-1.9821056,-2.5727026,-2.5822427,-2.7462094,-2.5164003,-1.877363,-2.0392303,-2.5174587,-2.525812,-2.3788347,-1.5760814,-2.5948515,-2.5355902,-2.575688,-2.4792826,-2.5391786,-2.7233968,-2.6763253,-2.399582,-2.5244045,-2.7936063,-1.8303202,-2.5790672,-2.6970856,-2.8057618,-2.7798276,-3.0925603,-3.0070775,-2.944034,-2.8042407,-2.7797596,-1.8514913,-2.0318034,-2.7775297,-2.952369,-3.0256329,-2.8745942,-2.912185,-2.8783102,-2.8899841,-1.7509532,-2.188856,-2.5658255,-2.6824276,-2.6292834,-2.4525104,-2.4891496,-2.18992,-2.8447876,-3.0134776,-3.0045388,-2.9538372,-1.9598571,-2.686831,-2.5993915,-3.0809088,-3.4292254,-3.7294462,-3.9743347,-4.0535455,-3.9998894,-4.0609264,-3.908532,-3.0848532,-3.4365754,-3.7020874,-3.9186134,-3.9774618,-3.438112,-3.2189913,-3.385184,-3.9716816,-4.114004,-4.1852427,-4.2313805,-4.2947016,-4.3096156,-4.2223186,-4.1888514,-3.978015,-3.851766,-3.8849428,-4.3637233,-4.511866,-4.4103956,-1.5510558,-1.6546537,-1.4579355,-1.8536617,-2.2507505,-2.5550623,-2.8171115,-3.2142496,-3.6807842,-3.8285623,-3.8418174,-3.8846047,-4.07862,-4.290445,-4.454155,-4.4759035,-4.4658566,-4.285367,-4.288188,-2.2551737,-2.2262917,-2.5670934,-1.6427969,-2.4550357,-3.0623062,-3.5965354,-3.8691673,-3.88537,-3.910355,-4.110168,-4.199461,-4.184843,-4.001772,-3.845995,-4.1060677,-3.8215845,-4.074887,-3.6506205,-2.8911393,-2.1013145,-1.8088318,-2.8094409,-3.2254453,-3.3212252,-3.7753258,-4.1700983,-4.3349676,-4.4489884,-4.2161527,-4.181963,-2.140415,-1.8817612,-2.937159,-3.6906242,-3.7859087,-3.6285563,-3.7210503,-4.032423,-3.7111464,-1.9894913,-2.960917,-3.708571,-4.0480757,-4.129055,-4.1368947,-3.628818,-2.000465,-1.3138288,-2.647396,-3.133594,-3.325224,-3.6588612,-3.9277215,-4.155737,-4.182123,-4.081789,-2.962844,-1.3689138,-2.4086719,-2.8755322,-3.430979,-3.5933385,-3.823869,-3.9377718,-3.486206,-0.59692186,-2.0636065,-2.4708748,-2.6775067,-2.9233336,-3.2095847,-3.4505281,-1.8404533,-2.277119,-2.4517405,-2.5315597,-1.4672378,-2.4512782,-2.6922898,-2.8403425,-3.045348,-3.1453276,-3.179284,-3.09646,-2.1262574,-2.532371,-2.970905,-2.881361,-2.9790447,-3.01975,-2.7036493,-2.9651194,-3.2810974,-3.5708456,-3.6598027,-3.5631247,-3.64747,-3.488176,-0.8591196,-2.3599248,-2.6039348,-2.6156757,-2.3558974,-2.648554,-2.341453,-2.798889,-1.8848941,-2.9989235,-3.226283,-3.3026729,-3.186438,-3.3786173,-3.5358152,-3.6175988,-3.7297127,-3.662242,-3.5223489,-3.6115134,-3.5671525,-3.464371,-3.2463655,-2.887752,-3.2506423,-3.6848323,-3.173152,-1.6640933,-2.1802983,-2.7643285,-2.8726044,-3.5221853,-3.689413,-2.9598856,-3.3199773,-3.51124,-3.832984,-3.8822563,-3.5990522,-4.0292554,-4.0809126,-3.7285032,-4.308856,-4.2206216,-4.3917484,-3.5071478,-3.273036,-2.934777,-3.6553524,-3.9621058,-3.7767117,-3.1842918,-2.433456,-3.2280502,-4.1369123,-4.252979,-3.9666252,-3.5348613,-2.9444108,-2.9024868,-2.840109,-2.520351,-3.4701934,-3.80163,-3.5203238,-3.89995,-3.910236,-3.9217753,-3.9742336,-3.0543957,-3.049333,-2.1608155,-2.644723,-3.6469169,-3.7203293,-3.0732727,-2.0410988,-2.2151752,-1.9405297,-2.0294838,-1.9674541,-1.980781,-2.7607684,-3.1689677,-3.5224903,-3.4961696,-3.4338946,-2.1195922,-2.3401484,-2.5243478,-1.8214322,-2.535563,-2.7033675,-2.961865,-3.3417974,-3.43099,-3.3516936,-3.357681,-3.2921314,-3.2997346,-3.060485,-3.1254816,-2.8370392,-2.7707791,-2.5971873,-2.407805,-2.4385312,-2.351232,-2.1417222,-1.5305923,-2.5012913,-2.7716305,-3.3494575,-3.40667,-3.4138823,-3.177771,-2.3719525,-2.4517632,-2.6146846,-2.3516796,-2.3658197,-2.5512404,-2.6983576,-3.1958747,-3.5694706,-2.91827,-2.9127433,-3.406089,-3.6763668,-3.7658625,-3.5835829,-2.8830104,-2.8338535,-3.5174603,-3.163728,-3.14741,-3.0266857,-2.893841,-3.0380726,-3.0902584,-2.925993,-3.0476265,-3.0938258,-3.2159832,-3.1061318,-3.2026775,-3.2048452,-3.1179829,-3.0108638,-2.128549,-2.8022747,-2.8742182,-2.6286716,-2.657867,-2.1657832,-3.15528,-2.7226846,-2.5194979
+-1.6152624,-2.3254373,-2.204761,-2.4184327,-2.6149893,-3.0538893,-3.0251155,-3.1948452,-2.5865617,-2.7211351,-2.9948378,-3.0785832,-3.27027,-3.3218312,-2.060325,-2.8797805,-3.2259717,-3.1794083,-3.1480763,-3.1779332,-3.3660545,-3.4227505,-3.401976,-3.3435225,-3.2146182,-2.7674382,-3.1468053,-2.917715,-3.462881,-3.3440628,-3.3778667,-3.3080428,-3.5922189,-3.5341697,-3.4862585,-3.1324463,-2.859418,-3.180892,-3.04536,-3.5692701,-3.514672,-3.5462914,-3.5050693,-3.514215,-2.807914,-2.7051082,-2.9463677,-2.987831,-3.1631246,-3.2697039,-3.3903835,-3.528639,-3.8015006,-3.8367887,-3.8473966,-4.078513,-3.209815,-2.9374866,-3.4215038,-3.758186,-3.9177427,-4.064685,-4.226282,-4.372978,-4.306322,-4.2828665,-3.8794262,-4.0947237,-4.147788,-3.988453,-4.2385435,-4.3023386,-4.164998,-2.967669,-2.4973793,-3.4224539,-3.859541,-4.169039,-4.3302298,-4.4311743,-4.346119,-4.2800913,-4.156855,-3.7427886,-3.9219322,-4.038052,-4.334032,-4.4966836,-2.535075,-3.2386904,-2.1574843,-2.0287275,-2.8633604,-2.945668,-3.146604,-3.1589632,-3.390397,-3.7198267,-3.9375172,-4.015157,-4.027469,-4.2229714,-4.4329967,-4.5406857,-4.52913,-4.530143,-4.3761425,-4.3167887,-3.4839613,-1.3358892,-2.6097765,-2.8354387,-2.4231281,-2.1487215,-3.1617503,-3.5239768,-3.5474496,-3.7560017,-4.0158257,-4.0696836,-3.9719157,-3.1109648,-3.0148144,-3.5826495,-2.7019968,-2.103967,-1.7356114,-2.7402604,-2.810709,-2.7226458,-2.9876668,-2.642117,-3.1093569,-3.5613544,-3.9744463,-4.133852,-4.1964765,-4.11364,-3.2782433,-2.7372475,-2.5735106,-3.3273382,-3.8752851,-3.0953333,-2.4646087,-2.9131036,-3.2583084,-3.420401,-3.0098,-3.0937366,-3.5051682,-3.7979543,-3.9783778,-3.5308084,-1.3966826,-2.485625,-2.6586685,-3.288054,-3.653193,-3.8042073,-4.062848,-4.1551332,-4.2724524,-4.243047,-2.9313002,-2.7078578,-2.936427,-3.329616,-3.8243532,-4.1414175,-4.2676463,-4.2940893,-4.140978,-2.9247022,-1.7785264,-1.9549996,-2.9627023,-3.0288212,-3.3023882,-3.5104384,-3.6732345,-2.4827728,-2.3381503,-3.0197537,-3.1820326,-2.3161101,-3.2122612,-3.5399036,-3.039915,-3.670587,-3.8293104,-3.6897902,-3.7098408,-3.6098878,-3.6646793,-3.904449,-3.9238868,-3.8294225,-3.7778184,-3.6938746,-3.6310558,-3.9083588,-4.1009555,-4.225795,-4.1497564,-4.1243954,-4.0327406,-1.6103877,-2.9647763,-3.2488678,-3.2924266,-2.962789,-3.2772841,-3.4761658,-3.5877895,-3.616914,-3.8549914,-3.9401453,-2.3522382,-2.6877332,-3.3389513,-3.6248574,-3.8486295,-3.9740815,-4.0161066,-4.0040555,-4.0136566,-4.0710583,-4.0823765,-4.0105267,-3.3141267,-3.7048419,-4.1645947,-3.7787237,-2.5942755,-2.5195813,-3.1569743,-3.4006453,-3.963768,-4.0596094,-3.36574,-3.4086187,-3.2416797,-3.5321274,-3.7595277,-3.3880417,-3.9180088,-4.092655,-3.7222779,-4.1036835,-4.189155,-4.3693733,-3.357647,-3.6489997,-3.1061974,-3.5712674,-3.8806095,-3.4679115,-3.2134762,-1.7953211,-2.6153224,-3.0917125,-3.4141908,-3.425597,-3.4764466,-2.9098036,-2.811367,-2.7210584,-2.7935114,-2.871712,-2.8637102,-2.680497,-2.8155956,-2.8980267,-2.876174,-2.8211696,-2.3347282,-2.2745597,-2.0582328,-2.173451,-2.163214,-2.0167754,-1.952431,-2.0662827,-2.036813,-1.7991331,-1.9867076,-1.8848289,-1.8892249,-1.5770279,-1.4680395,-1.930329,-2.0426924,-2.1777618,-1.9203626,-1.9498593,-1.8869962,-1.6800045,-1.9091969,-2.0880475,-2.089211,-2.352984,-2.3459153,-2.3144426,-2.3043132,-2.2884042,-2.2865944,-2.0767026,-2.0923004,-1.9770993,-2.1253505,-2.0351267,-2.1972551,-2.2193089,-2.2203417,-2.186892,-2.0501132,-2.1391904,-2.2911215,-2.7047677,-2.891089,-3.0405927,-2.8275676,-2.515625,-2.5976973,-2.6027951,-2.4901063,-2.6982818,-2.965312,-3.1934183,-3.1056495,-3.3921955,-3.0078332,-2.6404297,-3.0556788,-3.272616,-3.2566636,-3.1173954,-2.824366,-2.9009805,-3.4551353,-3.0998046,-3.1839933,-3.2344577,-3.211245,-3.2377365,-3.371658,-3.213104,-3.2331588,-3.1980352,-3.2364922,-3.2551713,-3.3107276,-3.3507926,-3.2933269,-3.2706728,-3.0524824,-3.4087536,-3.547407,-3.443301,-3.4656253,-3.065772,-3.6799564,-3.403357,-3.3299265
+-0.7478805,-1.6209112,-1.9518346,-2.014031,-2.3027472,-2.8624957,-2.896985,-2.71094,-2.8813016,-3.2668173,-3.2580452,-3.240225,-3.2486787,-3.2195911,-3.2943196,-3.0683944,-3.438418,-3.4221287,-3.4854279,-3.4188995,-3.3834443,-3.3704658,-3.195755,-3.5049782,-3.4649673,-3.4586666,-3.6170015,-3.4321961,-3.6268249,-3.7176533,-3.4897356,-3.5293403,-3.6613636,-3.5549564,-3.484828,-3.279643,-3.3538961,-3.5664682,-2.9198775,-3.5336769,-3.475875,-3.5098603,-3.562334,-3.470399,-3.1719193,-3.2482557,-3.4483159,-3.233757,-3.4583025,-3.482542,-3.476616,-3.5441914,-3.825286,-3.7889786,-3.931395,-3.8914337,-3.92625,-3.9767437,-4.030902,-4.1816244,-4.1234875,-4.0953183,-4.2285757,-4.3129277,-4.314029,-4.299297,-4.3158484,-4.407071,-4.443171,-4.3128366,-4.438889,-4.06472,-4.014203,-2.9573536,-3.3624215,-3.945108,-4.2330723,-4.4618297,-4.5616426,-4.6343565,-4.5607905,-4.40154,-4.4661307,-4.308804,-4.2564316,-3.9824314,-4.375484,-4.422831,-3.9370015,-3.4327416,-1.6345738,-2.185893,-2.7043667,-3.0521734,-3.2312357,-3.3304348,-3.5200546,-3.7499824,-4.044168,-4.2564077,-4.3458605,-4.4827404,-4.6111345,-4.6548223,-4.729432,-4.733672,-4.6791015,-4.5609627,-4.247546,-2.7555783,-2.4846358,-2.4924629,-3.0008848,-3.5517097,-4.0982847,-4.348544,-3.9751277,-4.319068,-4.4396443,-4.573423,-4.4695587,-2.0983267,-2.5820408,-3.004475,-2.9911678,-2.1045284,-2.3055668,-2.7488215,-3.1379566,-3.293422,-3.4153728,-3.4073303,-3.5222273,-3.7366164,-4.0387993,-4.2844276,-4.4560084,-4.3732862,-3.0782995,-3.2743332,-3.6310985,-3.3847835,-3.7785807,-3.2035518,-1.5754832,-2.787089,-3.2969046,-3.3336306,-3.173545,-2.9230156,-3.0409532,-3.3832092,-3.5239477,-3.6419458,-2.0763512,-2.8306298,-3.1856265,-3.3447933,-3.5419772,-3.7985425,-4.0074997,-4.222306,-4.3955708,-4.4481783,-3.3647823,-3.1011367,-2.6030574,-3.0946436,-3.71024,-3.973238,-4.215661,-4.4312325,-4.3832693,-1.8216366,-2.330492,-2.1275437,-2.9307265,-3.1424205,-3.3971112,-3.55967,-3.688728,-2.8060808,-2.850809,-3.2370043,-3.466352,-3.429552,-3.568201,-3.816595,-3.6115963,-4.03476,-4.014976,-3.6122622,-3.139628,-3.6610308,-3.7762485,-3.9872074,-4.057312,-4.117735,-4.1077557,-4.1685014,-4.1038933,-4.221615,-4.444436,-4.3681326,-4.332919,-4.27341,-4.3249087,-2.8231363,-3.5446959,-3.8086827,-4.010448,-3.791614,-4.036138,-4.0133123,-4.0943875,-4.1125827,-4.2835526,-2.542418,-2.7119174,-3.419525,-3.4893532,-3.6547542,-3.7458282,-3.8391194,-3.9388144,-4.019039,-4.020266,-4.05384,-4.21399,-4.1974373,-3.0449882,-3.8933802,-3.8893046,-3.9114618,-1.8566475,-2.5378013,-2.4342067,-2.9122639,-3.4006648,-3.5327895,-3.1873155,-3.228288,-3.1530862,-3.1140394,-2.956165,-2.7264988,-2.2424388,-2.1782088,-2.1302545,-2.2472515,-2.3380053,-2.2716117,-1.8686835,-1.9570678,-1.8737326,-1.7879404,-1.8378439,-1.591854,-1.8302488,-2.1501307,-2.1503966,-1.6070982,-1.596804,-1.7739505,-1.8074666,-1.5795428,-1.6995506,-1.5045255,-1.6255151,-1.391631,-1.3725194,-1.3766208,-1.5433125,-1.6328902,-1.4238473,-1.2693752,-1.2589669,-1.323203,-1.3235025,-1.456691,-1.6936918,-1.2479454,-1.2029418,-1.6179104,-1.6332467,-1.5652541,-1.7138284,-1.598046,-1.8334249,-1.8563896,-1.8226771,-1.5976511,-1.4211594,-1.4523073,-1.3406763,-1.5206404,-1.2338084,-1.2876581,-1.5336739,-1.332539,-1.167798,-1.2852541,-1.3245732,-1.3312507,-1.3065785,-1.3547167,-1.3538994,-1.3058612,-1.2672678,-1.283461,-1.4582063,-1.3698024,-1.8225911,-1.767537,-1.8927102,-1.9940604,-2.2139673,-2.4071343,-2.5816455,-2.4821353,-2.6338985,-2.8210845,-2.836031,-2.629552,-2.7060463,-2.8459911,-2.926282,-3.053049,-3.3773913,-3.6155586,-3.7603955,-3.639226,-3.3108387,-2.8853903,-2.86463,-2.749908,-2.704537,-2.6081936,-2.5824502,-2.7632103,-2.924058,-2.7213252,-2.7122798,-2.834365,-2.815141,-3.0121942,-3.2835987,-3.3709674,-3.4250612,-3.3550048,-3.4069624,-3.3647478,-3.5121887,-3.5911756,-3.6421638,-3.5826988,-3.5149648,-3.5306563,-3.7486575,-3.6043088,-3.7580352,-3.3270617,-3.5217893,-3.5538375,-3.4560666
+-2.1258726,-3.0570703,-3.6078095,-3.9802136,-4.258727,-4.396778,-4.530795,-1.5937482,-1.2561659,-2.6080956,-2.656727,-2.6446948,-3.3080707,-3.8076632,-2.3910966,-0.8168922,-1.924276,-2.3442237,-2.8008575,-3.2694392,-3.6938996,-3.9229622,-4.0465703,-4.280242,-4.3702607,-3.090663,-3.6832628,-3.9688702,-1.957363,-1.2039105,-1.0051681,-2.3287268,-2.485762,-3.035707,-3.4057405,-3.6678572,-3.2481265,-3.6659665,-3.948373,-4.1827164,-4.327853,-4.4390693,-4.5733275,-4.456439,-4.2788963,-4.1022787,-1.3649677,-1.0695375,-2.2416067,-2.9046447,-3.5296597,-3.9814067,-4.2816916,-4.451253,-4.5537467,-4.5844765,-4.5624976,-4.610677,-4.631688,-4.725214,-4.6737423,-4.695019,-4.681629,-4.708849,-4.7308326,-4.643411,-4.6550894,-4.709716,-4.47961,-4.4435754,-4.60981,-4.56518,-4.4958487,-4.5745854,-4.646105,-4.735708,-4.787075,-4.802758,-4.8219185,-4.780881,-4.738311,-4.5622196,-4.57292,-4.5138793,-4.426919,-4.456412,-4.4875193,-4.466342,-4.4011955,-4.15913,-1.7260052,-1.064176,-1.5772427,-2.333023,-2.3321753,-3.3388977,-3.9743948,-4.1846075,-4.3120394,-4.429134,-4.484821,-4.5610332,-4.627201,-4.6605678,-4.67198,-4.6752224,-4.6631365,-4.510704,-2.8965416,-1.2066447,-1.2782266,-1.2792125,-2.100439,-2.6901104,-2.377315,-2.7644305,-2.6751328,-3.2771115,-4.0158625,-4.012038,-3.045702,-3.2886755,-1.0282913,-2.0890985,-0.73323363,-1.046646,-1.7206419,-1.0492649,-1.7754016,-2.3424027,-2.9262004,-3.3696566,-3.7052283,-4.033967,-4.3488464,-4.448784,-4.4715137,-4.3545,-3.829374,-1.9344965,-2.9853437,-3.3488908,-2.945327,-1.1696779,-1.7748064,-1.2535589,-2.5334008,-2.4128337,-2.146275,-1.9825193,-2.9460554,-3.5528998,-3.8340535,-3.9294078,-0.9488172,-1.6107028,-2.6622128,-3.3723395,-3.7836318,-3.852202,-3.9702377,-4.2851634,-4.3941355,-4.3532596,-1.6848046,-2.3822837,-2.5668616,-3.3510365,-3.858407,-4.1684804,-4.3519144,-4.463022,-4.3643,-0.5968242,-1.5556059,-1.4455827,-2.4340215,-2.8229096,-3.3843176,-3.7642817,-2.7816515,-0.26966357,-1.858281,-2.4737182,-2.8645287,-2.29348,-3.081561,-3.569237,-3.780921,-3.9356098,-2.6976056,-0.8104989,-2.318152,-2.8586345,-3.3687706,-3.7329602,-3.9188173,-4.031766,-4.075857,-4.107243,-4.0320797,-4.051109,-4.1996074,-4.2841387,-4.2826467,-4.224574,-4.176937,-0.9185038,-2.2456985,-2.844697,-3.3018122,-3.633982,-3.7102063,-3.805781,-3.7513094,-3.8263755,-3.3991342,-0.5753843,-1.4643205,-2.3220081,-2.5434358,-2.8498106,-3.1958876,-3.4406104,-3.6654937,-3.7874446,-3.8296173,-3.929112,-4.076316,-3.9946122,-3.9258273,-3.8331757,-3.8168645,-3.9149084,-0.15806676,-1.8826137,-2.0144176,-2.915341,-3.4113724,-3.405877,-2.6696253,-1.754155,-1.6349075,-3.394319,-3.5980082,-3.3098354,-3.5636053,-4.0079136,-3.8376482,-3.6769042,-3.9522333,-4.0291705,-3.7682333,-3.7779813,-3.810286,-3.6689155,-3.7914476,-3.7217746,-3.668294,-0.75974786,-1.4887425,-3.0132625,-3.8020802,-4.0298014,-3.6322231,-1.011023,-1.8421949,-2.3274271,-2.586978,-3.1828933,-3.5016928,-3.6627321,-3.9888964,-4.028696,-2.151266,-1.772142,-2.5387268,-2.814591,-2.8903112,-1.6445965,-1.6071086,-3.2867055,-2.7604885,-1.8161713,-2.521524,-2.7201376,-2.6076915,-2.7249668,-2.6415503,-1.2734662,-2.0571766,-1.9039754,-2.656097,-2.633037,-2.010379,-1.3551866,-2.7827206,-2.3695958,-1.612552,-3.2367892,-3.3067966,-3.7505481,-3.9402492,-3.7855763,-3.7408502,-3.8276393,-3.9696784,-3.900014,-3.7036154,-3.7381408,-3.8806481,-3.622657,-2.7023053,-3.2864008,-3.3635802,-3.339717,-3.329359,-3.2239323,-0.84055424,-2.0073757,-2.8088899,-3.3127227,-3.3063755,-3.056224,-1.7861152,-1.674431,-2.7055745,-2.9477878,-2.9486063,-3.0744338,-3.7240968,-3.4340718,-3.1981,-0.9215937,-2.7436705,-3.489718,-3.678973,-3.4729307,-3.2509441,-3.1964731,-3.607771,-3.6959777,-3.8218207,-3.9544733,-4.082581,-4.207377,-4.319232,-4.410622,-4.473511,-4.429752,-4.367758,-4.286062,-4.300974,-4.3405924,-4.2367926,-4.104867,-1.5356723,-2.0728621,-3.1248183,-1.052417,-2.4588995,-2.0802324,-2.61463,-3.3973484,-0.94543606
+-1.9150974,-2.3414936,-2.3232055,-2.3575537,-2.6352816,-3.060089,-3.4116683,-0.41087767,-1.5535778,-2.1225586,-1.8031414,-1.7363247,-2.1488812,-2.3407216,-2.3684294,-1.2859297,-1.9205459,-2.1537104,-2.4963462,-2.7376118,-2.883346,-3.0994465,-3.2659273,-3.4747891,-3.5705988,-3.4170513,-3.418745,-3.5681703,-1.3082337,-1.3155028,-1.6604549,-2.298785,-1.9403869,-2.2480602,-2.2848105,-2.4691572,-2.696667,-2.2776382,-2.63509,-3.0788612,-3.3619914,-3.5078719,-3.835205,-3.8920703,-3.2514493,-3.6402204,-0.64690125,-1.6624451,-2.2071304,-2.4943092,-2.8341713,-3.2138867,-3.5046651,-3.7584364,-3.8803945,-3.91436,-3.8771825,-3.9653854,-4.108513,-4.19829,-4.1364202,-4.1275797,-4.167207,-4.2934494,-4.3414087,-4.2440305,-4.3073196,-4.315243,-4.2996807,-4.1565537,-3.8996997,-3.0540442,-3.481733,-3.8531234,-4.011716,-4.1785917,-4.216498,-4.265169,-4.3487396,-4.3735337,-4.276594,-4.028719,-4.047862,-3.9397929,-1.7548424,-2.700984,-0.72232497,-1.9712118,-2.4717612,-1.9506247,-0.98628706,-1.3739456,-1.9365368,-2.4247525,-2.6352081,-2.8757553,-3.2499008,-3.4097483,-3.5068326,-3.700988,-3.8248668,-3.9830341,-4.1431203,-4.2385488,-4.292424,-4.3444295,-4.261505,-4.0834103,-1.6684229,-1.3154588,-0.9486011,-1.517546,-2.4491644,-2.462841,-1.543843,-1.6733,-2.213426,-2.1843798,-2.60256,-2.5120988,-2.630087,-1.9556254,-1.5839083,-1.567506,-0.9275175,-1.31283,-1.5820547,-1.6660079,-1.6544122,-1.6367718,-2.176332,-1.7618629,-1.4489068,-2.2591228,-2.3862987,-2.735323,-2.9691055,-1.5492541,-1.3097504,-1.7247628,-2.0144126,-2.3424716,-2.1210432,-1.450935,-1.4361738,-1.8715221,-2.2495275,-1.9878668,-1.5932509,-2.0522585,-1.6156285,-1.1435362,-2.2679727,-1.7729385,-1.6387237,-2.2068162,-2.5447924,-2.9968226,-3.2338014,-1.6258012,-0.98140234,-2.5935335,-2.8637297,-1.9627336,-1.7782177,-2.1067533,-2.0266514,-2.549634,-2.9460766,-3.4087954,-3.8383172,-4.1215506,-4.2913003,-3.6885428,-3.5873494,-3.1849983,-3.387998,-3.5828013,-3.702607,-3.5359044,-3.1379814,-0.8263149,-1.5630829,-1.9613212,-2.4991212,-1.7665588,-2.571004,-2.8615208,-3.0716362,-3.342217,-0.93302923,-1.1640433,-1.6708924,-2.4472187,-2.6915052,-2.9104607,-3.1809232,-3.2989964,-3.3891265,-3.4758227,-3.5122826,-3.5384817,-3.5657945,-3.617992,-3.7301674,-3.6337805,-3.645391,-1.9462446,-2.7450523,-3.0996084,-3.254151,-3.2872,-3.3908055,-3.2394342,-3.1993542,-3.2554865,-2.7860558,-0.6861461,-2.0351505,-2.3251293,-2.632946,-2.6093078,-2.6718552,-2.827449,-2.8764086,-2.9725523,-3.0594344,-3.1659079,-3.1989026,-3.228075,-3.040328,-3.5036767,-3.3302999,-3.1786897,-0.7800676,-1.8602211,-2.5596037,-2.9081616,-3.0558066,-2.9714541,-2.7032046,-2.4997306,-2.6115565,-3.3881247,-3.499825,-2.8882124,-2.9753036,-3.5785446,-3.5432312,-3.2136393,-3.4980197,-3.5550072,-3.4153757,-3.3317397,-3.165377,-3.1152163,-3.0112958,-3.0558865,-3.116374,-1.7432946,-1.6664242,-3.2377834,-3.6631837,-3.6603594,-2.9856832,-1.3329545,-1.7447795,-2.4177814,-1.9752558,-2.9571495,-3.0527585,-3.1550455,-3.0611486,-2.959343,-1.8614922,-1.9000578,-2.3106077,-2.4321067,-2.372748,-2.376206,-1.9575311,-3.0527096,-2.46558,-2.4731321,-2.5239325,-2.6505055,-2.7741795,-2.704435,-2.2662773,-1.4352802,-1.5173488,-2.2156205,-2.8042088,-2.6704443,-1.965727,-2.0479937,-2.344674,-1.838628,-1.6331935,-1.9843827,-2.4368968,-2.6549282,-2.7554054,-2.7160516,-2.6301866,-2.5310009,-2.4789982,-2.5482478,-2.5710504,-2.8024702,-2.776905,-2.6606917,-2.686326,-2.6218133,-2.5502431,-2.6014907,-2.780596,-1.9065413,-1.6888698,-1.8602754,-2.5602677,-3.0190363,-2.949146,-2.4307432,-2.2657928,-2.5665646,-2.580612,-2.5849519,-2.6170442,-2.9461958,-3.3498187,-3.105466,-2.9176688,-1.9613966,-2.8092527,-3.1224945,-2.9719052,-2.6455498,-2.637043,-2.7540622,-2.8884106,-2.8195653,-2.8640609,-2.9176083,-2.974923,-2.9847746,-3.1311195,-3.2390184,-3.326739,-3.379024,-3.3925953,-3.3308825,-3.4166517,-3.4935455,-3.485909,-3.4712906,-2.325341,-2.348415,-2.9739408,-2.7817557,-2.8362656,-1.8076288,-2.008028,-2.7348738,-1.936806
+-1.9348686,-2.8539581,-3.2442515,-3.3129218,-3.436863,-3.6674285,-3.7102838,-2.704303,-3.0053625,-3.2241917,-2.9201298,-2.8733397,-3.3316736,-3.313331,-3.3781188,-3.439248,-3.4020839,-3.6657581,-3.8779478,-3.952057,-4.0610623,-4.0706725,-4.0475254,-4.0110593,-3.9346037,-3.8749363,-4.002471,-3.9780889,-3.8995483,-3.9297745,-3.7491448,-3.6983476,-4.0204935,-4.143378,-4.106915,-4.055172,-4.02122,-4.096673,-4.06551,-4.181503,-4.2359514,-4.2788463,-4.293905,-4.191669,-4.06087,-4.1156244,-2.4795487,-2.0864422,-3.1097803,-2.985456,-3.2493103,-3.5896645,-3.8727384,-4.014916,-4.0962343,-4.036918,-4.0725784,-4.174675,-4.191076,-4.089272,-3.5149424,-3.583414,-3.9029071,-4.1441975,-4.1875973,-4.0717487,-4.0656195,-4.1367087,-4.146571,-3.9967766,-2.6496983,-3.3295393,-3.7390623,-3.9793081,-4.091425,-4.238366,-4.299344,-4.3514833,-4.4101562,-4.3784943,-4.218286,-4.006503,-4.087649,-3.8186505,-3.4921846,-2.0841107,-2.519298,-1.8838599,-2.9160917,-2.3641715,-2.791809,-1.8173211,-2.9357295,-3.0896354,-3.2276838,-3.3691554,-3.6171963,-3.191094,-2.7245388,-2.8544044,-3.268312,-3.6127858,-3.9235575,-4.070612,-4.1435437,-4.1780014,-4.0814266,-3.052001,-2.498886,-2.547606,-2.6613526,-2.7202554,-2.3648949,-3.1507764,-3.2852082,-3.4141097,-2.7688284,-3.05264,-3.203254,-1.6446435,-2.880816,-3.1991415,-3.0494614,-2.5429635,-2.987446,-2.9131413,-2.4093986,-3.1346374,-2.8115726,-3.1493268,-2.1301227,-2.643619,-2.7905664,-3.1179824,-3.2408156,-3.0688896,-3.1953049,-2.2786105,-3.1437967,-3.2257996,-3.3229206,-2.856977,-2.9140909,-2.577964,-3.062457,-3.2641704,-3.2071147,-3.0713277,-2.9123614,-2.6580806,-3.1174,-2.9134119,-3.0891092,-2.3605933,-3.0030704,-3.0636,-3.221303,-3.4733596,-3.743153,-0.7930848,-1.6166483,-3.0533166,-3.4036136,-3.5474157,-3.4968631,-3.5432918,-3.5730207,-3.6596327,-3.7292624,-3.8340678,-3.9690962,-4.0682726,-4.1013064,-4.0894775,-3.9740062,-3.8737803,-3.804924,-3.9051988,-3.754709,-2.9995556,-3.4196181,-1.4594802,-1.5758618,-3.1014683,-3.3246691,-3.3816423,-3.4048142,-3.4304466,-3.4960802,-3.624528,-3.5310183,-2.26329,-3.267225,-3.3835738,-3.4945185,-3.6243925,-3.7892325,-3.9051433,-3.9501,-3.962329,-3.9766574,-3.929512,-3.9498594,-3.9419913,-3.9285588,-3.8830023,-3.950076,-3.876771,-3.7733681,-3.9232259,-3.9415255,-3.905395,-3.926612,-3.9074914,-3.8144903,-2.852087,-2.6172335,-1.6392385,-3.0844486,-3.1641865,-3.2427425,-3.3892622,-3.4706569,-3.568429,-3.494987,-3.529963,-3.538403,-3.5405242,-3.641199,-3.7373786,-3.5388117,-3.7894554,-3.882964,-3.813385,-2.2352731,-2.9457312,-3.458452,-3.479022,-3.6821976,-3.55343,-3.1734948,-2.882843,-3.2426708,-3.8814857,-4.09577,-3.8163993,-2.9021578,-3.5155065,-3.752437,-3.699306,-3.6226237,-3.6518686,-3.6589499,-3.5517082,-3.2534776,-3.188405,-3.1289659,-3.1148477,-3.190888,-2.9610307,-2.3433585,-3.3948214,-3.585388,-3.4715736,-3.19125,-1.6392751,-2.5605488,-2.5530353,-2.776609,-2.6881828,-2.8144436,-2.8939455,-2.9556637,-2.910479,-2.2404747,-2.306068,-2.2704864,-2.412253,-2.5388274,-2.5997844,-2.6611607,-2.955511,-2.786014,-2.904593,-3.0304985,-3.3280365,-3.5039911,-3.4986186,-3.0638509,-2.1780262,-2.519353,-2.5315394,-2.464569,-2.279345,-2.0654092,-1.7040722,-1.947989,-1.8096851,-1.9666914,-2.1286814,-2.3627248,-2.3776965,-2.426453,-2.471808,-2.5660768,-2.6316686,-2.6639853,-2.7246528,-2.7911549,-2.8879452,-3.0523758,-3.0068324,-3.0561223,-2.9047956,-3.0192115,-3.1019216,-3.2570152,-2.467065,-2.4331136,-2.8575985,-2.9620821,-3.3716812,-3.3083453,-3.0314674,-2.7414553,-2.9204645,-2.8038945,-2.8797593,-3.1246781,-3.7314115,-4.0828943,-3.706019,-3.7557428,-3.4256735,-3.8468914,-3.9118624,-3.9495592,-3.684108,-3.5601044,-3.6781917,-3.9489498,-3.8786426,-3.8349347,-3.8129754,-3.8019009,-3.846896,-3.8242207,-3.8702044,-3.9086425,-3.9250853,-3.9672632,-4.022806,-4.0764875,-4.091302,-4.105918,-4.097541,-3.6358964,-3.6078014,-3.9041896,-3.8863516,-3.9540772,-3.1316576,-3.3248506,-3.6737967,-3.3196554
+-2.6272407,-3.575653,-3.9586194,-4.271322,-4.335369,-4.3229046,-4.3314,-3.7260876,-3.8453078,-4.139286,-1.4286624,-1.7106385,-3.1582673,-3.8630483,-4.1286798,-4.143344,-4.1098895,-4.098735,-4.227255,-4.298106,-4.318815,-4.18239,-4.1904726,-4.2381988,-4.2565823,-4.222495,-4.215988,-4.3047833,-4.207035,-4.0223665,-4.1972256,-4.0115786,-4.1566887,-4.157698,-4.0707593,-4.132575,-4.1800623,-4.237873,-4.137825,-4.203982,-4.2346754,-4.3010244,-4.1965566,-3.953728,-3.527381,-4.18091,-3.506681,-2.4962287,-3.4444156,-3.9361663,-4.1951337,-4.2448516,-4.2625203,-4.301344,-4.242882,-4.2390385,-4.2733736,-4.303341,-4.0187497,-3.644549,-3.8911204,-4.1475773,-4.027495,-4.2553496,-4.2026143,-3.942391,-3.0898848,-3.9911098,-4.1072206,-4.17102,-1.3411691,-1.9636356,-2.0216074,-3.4763186,-4.003297,-4.316606,-4.41949,-4.43948,-4.429619,-4.379557,-4.201907,-4.0003333,-4.1498137,-4.2099533,-3.294804,-3.7929149,-3.925635,-3.6115258,-3.697132,-1.4118539,-1.5677153,-1.4777166,-1.8235964,-2.959313,-3.685523,-4.0072002,-4.116707,-4.009121,-1.4301599,-2.9963148,-3.7315028,-4.0538044,-4.1653466,-4.199057,-4.19631,-4.217982,-4.184185,-4.1967325,-1.0481007,-2.3990483,-2.7993386,-3.2893121,-2.5220745,-3.5127718,-3.894283,-1.1338657,-2.7032685,-1.6906201,-2.0814862,-2.9214013,-3.3524263,-3.222505,-2.6487546,-1.3569034,-1.8131875,-1.9150856,-2.4321303,-2.3395293,-1.6737117,-2.6195436,-2.2665257,-2.6907983,-1.4087129,-2.0131397,-2.2196515,-1.4303131,-2.3147619,-2.8758335,-3.336594,-3.683011,-3.9123979,-3.884137,-0.99139565,-1.7938347,-2.6165779,-3.3093548,-3.667459,-3.1355858,-1.9911507,-2.0812206,-3.0123925,-3.0627794,-3.2545428,-2.2021844,-1.3275754,-2.080108,-2.8914957,-3.4969141,-2.5275726,-0.8805806,-1.9386832,-2.7069411,-3.0841613,-3.3058376,-3.6431074,-3.772113,-3.8842273,-3.897112,-4.110051,-4.187995,-4.257003,-4.285969,-4.226368,-4.077105,-3.962038,-4.084376,-3.934541,-4.145641,-1.0925999,-2.06737,-2.760415,-3.119987,-1.2164893,-2.8021894,-3.4377756,-3.2068954,-3.8772779,-4.056026,-4.147327,-4.1589875,-3.9490018,-1.1226403,-1.6338215,-3.059267,-3.6024847,-3.9186096,-4.1523542,-4.267774,-4.3003907,-4.3185616,-4.3210115,-4.308343,-4.2046795,-4.1384006,-4.2424216,-4.293924,-4.306578,-4.1901073,-4.2133,-4.217249,-4.2229958,-4.1992397,-4.2986956,-4.264963,-4.1710854,-3.260272,-3.9142315,-3.6516695,-4.0270033,-4.059025,-4.101372,-4.114678,-4.027039,-3.8723526,-3.8690083,-3.931819,-3.960507,-4.1373982,-4.1833463,-4.239692,-4.1508446,-4.109822,-3.9724145,-4.0251904,-4.0552397,-3.891153,-3.9257774,-4.0090647,-3.993184,-3.8383276,-3.907758,-3.5631273,-3.548645,-3.9255443,-3.8774111,-3.8130705,-0.5300175,-2.3602238,-2.9964175,-3.0056086,-3.0964184,-3.0996945,-3.2378469,-3.4003232,-3.6102526,-3.6830873,-3.757259,-3.8282964,-4.0121694,-3.9754953,-1.6007911,-3.6250517,-3.0877886,-3.5155578,-3.6683664,-0.674234,-2.2083063,-2.654651,-1.9257337,-2.9441276,-3.001859,-3.3650665,-2.4102325,-1.5856856,-1.6955098,-2.0066261,-2.5083969,-2.8928716,-3.0504422,-3.2705245,-3.2775536,-3.3937945,-3.3747897,-3.6125817,-3.7495923,-3.7986746,-3.8465455,-3.860618,-1.5198344,-1.10823,-2.2622466,-2.5033684,-1.8389632,-2.7146466,-2.7078977,-1.134072,-2.4229102,-2.5875046,-2.6757731,-2.6891584,-3.2102697,-3.271055,-3.4552274,-3.5191562,-3.5803432,-3.700341,-3.791798,-3.8977647,-3.921976,-3.9471526,-3.9597337,-4.018814,-4.0221577,-4.0832834,-4.2458982,-4.396092,-4.3792405,-1.1630427,-1.5093174,-2.4668136,-2.6245341,-3.0527873,-3.1600199,-3.0070786,-1.3383418,-2.1710808,-3.0939057,-3.4735546,-3.6629312,-3.786173,-3.874251,-4.0640116,-3.9992714,-4.029949,-3.9736538,-4.032777,-3.9744663,-4.018921,-4.128238,-4.0120893,-4.1091146,-4.1272764,-4.295124,-4.2850695,-4.331167,-4.2647705,-4.2911315,-4.299233,-4.33671,-4.35155,-4.3285046,-4.329564,-4.3224154,-4.3022614,-4.291663,-4.2951145,-2.3376257,-3.6747503,-4.094139,-4.174968,-4.1543665,-1.4645785,-3.1589384,-3.8268232,-4.089448
+-2.2707891,-3.691941,-4.0643573,-4.455159,-4.6463137,-4.6308236,-4.6741686,-4.0612144,-4.320484,-4.4234724,-4.0445538,-4.324158,-4.366216,-4.69318,-4.764222,-4.731091,-4.7572336,-4.825143,-4.849579,-4.8796387,-4.889471,-4.8095226,-4.692572,-4.767684,-4.8158026,-4.8206425,-4.905373,-4.972879,-4.84383,-4.86925,-4.919249,-4.838774,-4.96746,-4.9481726,-4.705715,-4.789487,-4.5812387,-4.718838,-4.6854715,-4.6782827,-4.624018,-4.673163,-4.804475,-4.405796,-4.5315084,-4.6921988,-3.021515,-3.7233696,-3.5548654,-4.4583817,-4.7722406,-4.7589445,-4.8302937,-4.848962,-4.7173767,-4.681944,-4.8869534,-4.9513736,-4.7004375,-4.4770417,-3.9280713,-3.9737606,-4.558555,-4.703521,-4.711633,-4.670883,-4.7017536,-4.6687574,-1.4315995,-2.5096378,-2.3044064,-2.5848188,-2.6953096,-3.3293436,-3.9662418,-4.378994,-4.6332073,-4.737287,-4.8185463,-4.8015275,-4.6921363,-4.4168496,-4.5295706,-4.4306684,-2.3353937,-2.2399473,-2.233482,-2.646605,-3.186245,-2.5899134,-2.1424737,-2.0150676,-2.3732343,-2.6811495,-2.9734378,-2.965952,-2.6076875,-2.835817,-2.0566623,-2.591996,-2.7480955,-3.2182016,-3.4738593,-3.5386195,-2.9458568,-3.5522969,-2.606697,-1.7694999,-1.9183253,-2.3863811,-2.9068654,-3.2449021,-2.4195855,-2.8111866,-3.2032547,-2.7487063,-1.7257104,-2.0250416,-2.7394104,-2.9590516,-3.084869,-1.4964265,-2.436577,-2.111464,-2.484802,-2.8857555,-2.8662689,-2.8709564,-2.5756068,-2.0201135,-2.3015065,-2.8188026,-2.678504,-2.8141785,-2.2591386,-2.5834563,-2.8964295,-3.1253886,-3.32167,-3.5284967,-2.3113337,-2.225985,-2.69763,-2.8010356,-1.8144189,-2.306724,-2.8137226,-2.9802754,-3.1738966,-3.263659,-3.3520088,-3.6423814,-2.7660203,-2.6839652,-3.1505125,-2.5595207,-3.195462,-3.4533658,-1.9512547,-1.9297727,-2.6307173,-2.88555,-3.1721532,-3.1394026,-2.4936187,-2.7906933,-3.2436073,-3.4239187,-3.534204,-3.7934911,-4.006329,-3.923531,-3.8657274,-3.8027287,-3.4068084,-3.685419,-3.8534274,-3.1277318,-1.4764698,-2.815058,-3.1830142,-3.2811894,-2.4816804,-3.0777183,-3.5045562,-3.429339,-3.548091,-3.9313927,-4.120334,-4.2242994,-3.615296,-3.5543182,-3.8161252,-3.9011054,-4.0418134,-4.1948977,-4.354414,-4.3817735,-4.3179336,-4.326469,-4.334207,-4.28304,-4.4533167,-4.3904634,-4.410428,-4.3065214,-4.251022,-4.1592617,-4.1764035,-4.426067,-4.4098606,-4.2748504,-4.388657,-4.2606277,-4.1975055,-3.8894153,-4.0692844,-4.202719,-4.225289,-4.134631,-4.116784,-4.3904023,-4.350036,-4.3171725,-4.2609186,-4.2825956,-4.2517824,-4.4582095,-4.5904255,-4.6499977,-4.506646,-4.02796,-4.4635105,-4.4127316,-4.482832,-3.8030157,-4.1796665,-4.4529557,-4.46931,-4.324897,-4.3132877,-3.7893245,-3.8820953,-4.056389,-4.2487936,-4.264509,-1.5111908,-3.2105904,-3.438911,-3.3308508,-3.3870573,-3.6372008,-3.6952238,-3.912912,-3.896342,-4.02662,-4.1087656,-4.1267376,-4.2046547,-4.007677,-3.6425176,-4.139002,-3.970975,-4.1442585,-2.8392792,-1.279266,-2.9308195,-3.2526035,-2.9195611,-3.4657946,-3.6162357,-3.7853355,-2.7410002,-3.29574,-3.1564262,-2.6208863,-3.1880693,-3.524946,-3.7471738,-3.756295,-3.7225769,-3.9038696,-4.010932,-4.1002398,-4.0351715,-4.0775476,-4.225687,-4.3065405,-2.2288477,-2.7234597,-3.4481773,-3.304419,-3.3690343,-3.5536358,-3.3844333,-2.1737566,-3.1065664,-3.4101644,-3.325248,-3.7178285,-4.1405296,-4.1583233,-4.011196,-4.101896,-4.1636877,-4.16319,-4.224498,-4.3193507,-4.3235397,-4.357972,-4.3950024,-4.4524655,-4.485568,-4.4416027,-4.4970527,-4.6464515,-4.6456366,-4.4362774,-2.4807634,-3.338564,-3.3843532,-3.8091378,-3.700325,-3.7555,-1.9970442,-3.189692,-3.3492837,-3.6627479,-3.5870645,-3.9451146,-4.3957796,-4.2958803,-4.2993727,-4.473284,-4.441397,-4.5380845,-4.6221905,-4.556531,-4.4304066,-4.409637,-4.682982,-4.7661753,-4.7969975,-4.730065,-4.7958684,-4.702786,-4.739046,-4.8029237,-4.8077636,-4.7835255,-4.744443,-4.7919984,-4.789208,-4.734171,-4.769335,-4.8298583,-4.726286,-4.6625214,-4.913805,-4.8939705,-4.8282347,-4.707524,-4.659477,-4.871804,-4.8350587
+-2.0394726,-2.831856,-3.18516,-3.365459,-3.6544192,-3.8287158,-3.8854346,-3.095364,-3.5482168,-3.4361372,-3.6159427,-3.7585394,-3.8714817,-3.9901733,-4.037646,-4.008196,-4.07234,-4.115064,-4.12926,-4.1403046,-4.153012,-4.1117883,-4.0284643,-4.115502,-4.1394563,-4.089299,-4.17612,-4.221207,-4.120552,-4.207794,-4.229968,-4.2571635,-4.2587757,-4.247122,-4.197436,-4.30555,-3.926362,-4.068606,-4.0541725,-4.1291656,-4.136405,-4.1404495,-4.2019367,-4.0036354,-4.155323,-3.9984512,-4.059252,-4.2089734,-4.144654,-4.2064743,-4.22159,-4.172638,-4.2112746,-4.223059,-4.2473288,-4.1065483,-4.191761,-4.0146885,-4.265782,-3.563622,-2.4472265,-2.1818755,-3.079083,-3.619809,-4.0523033,-3.5911717,-3.4073083,-3.914981,-2.4016066,-1.5798923,-2.7176673,-2.67868,-2.669074,-2.9111485,-3.140068,-3.3595045,-3.5563295,-3.659607,-3.8248005,-4.0255365,-3.9765544,-3.5048418,-1.9260963,-1.9831694,-1.8659687,-2.3791094,-1.9073943,-2.4489055,-2.727186,-2.3358324,-2.882392,-3.1537035,-2.5257545,-2.9327025,-2.9475918,-2.1349325,-2.9430752,-2.9514618,-2.5302324,-2.7770827,-2.607984,-2.9328008,-2.5709877,-2.4300344,-2.521575,-2.958508,-2.94816,-2.5611718,-2.8615208,-2.971259,-3.1198082,-3.0466287,-3.2644806,-2.3210897,-2.806995,-2.7838285,-2.698889,-2.8951445,-3.1226408,-3.0028486,-3.1182857,-3.227469,-2.9577022,-3.1875572,-3.1728249,-3.2659333,-3.2343411,-3.1004262,-3.065621,-2.4081197,-2.7713609,-3.1832058,-2.9825907,-3.1162934,-3.117094,-3.0674815,-3.3767958,-3.4662807,-3.3667386,-2.6059442,-3.0459611,-3.0988338,-3.164483,-3.1099987,-3.0701246,-3.2141874,-2.8619685,-3.180785,-3.183065,-3.157229,-3.1345906,-2.5828624,-3.2319682,-3.2882566,-3.142459,-3.1031256,-3.0998096,-2.9524949,-1.596924,-3.136841,-3.2525716,-3.1750114,-3.1458454,-2.4000812,-2.922721,-3.1824117,-3.1413383,-3.1526365,-3.1584187,-3.220892,-3.0910456,-2.8109179,-2.922402,-3.178444,-3.1700723,-3.1824443,-3.205755,-3.0021625,-2.1672726,-3.0281882,-3.3328028,-3.2427576,-2.7881255,-3.1483254,-3.3198345,-3.1790748,-2.9748502,-3.2565103,-3.3449366,-3.0381103,-3.312945,-3.4037976,-3.2993612,-3.3034291,-3.471953,-3.5941818,-3.6747737,-3.7340267,-3.7407713,-3.7510538,-3.753442,-3.7862968,-3.9515924,-4.045572,-3.9951591,-2.7958717,-3.4248471,-3.468803,-3.6529946,-3.9311857,-3.9942126,-3.850488,-3.9193335,-3.900191,-3.9260027,-4.0175667,-4.119178,-4.1461105,-4.2069263,-4.0851583,-4.1663446,-4.274958,-4.253471,-4.3136845,-4.215277,-4.1824102,-4.19259,-4.1921415,-4.285705,-4.3370547,-4.1461916,-4.128173,-4.311638,-4.305268,-4.0593214,-3.8360863,-4.131205,-4.2880783,-4.216791,-4.2101316,-3.9713378,-3.9324522,-4.030754,-4.2166004,-4.303089,-3.3825374,-2.8168752,-3.9341161,-3.9689956,-4.068666,-4.00015,-3.9929352,-3.977828,-4.0084653,-3.9750657,-4.0055876,-4.0530167,-4.1262608,-4.217688,-4.117582,-3.9327595,-4.1026626,-4.2831564,-4.104254,-4.165253,-2.3479989,-3.031796,-3.9747496,-3.8785427,-4.108303,-3.9510632,-3.8442762,-3.41358,-3.6213326,-3.6398544,-3.2497945,-3.918108,-3.9331653,-3.8307216,-3.8493109,-3.802312,-3.9847279,-4.0648265,-4.1280365,-4.0590568,-4.097457,-4.216849,-4.2404637,-3.5651276,-2.4212513,-3.929005,-4.0288353,-3.82075,-3.890853,-3.9287472,-2.4313192,-3.638054,-3.9087002,-3.8971498,-4.048853,-4.098814,-4.1156588,-4.0129375,-3.9790606,-4.0864196,-4.0348864,-4.0556383,-4.0515137,-4.053926,-4.095072,-4.100255,-4.078881,-4.0660152,-4.093766,-4.177862,-4.175315,-4.1414433,-4.136202,-3.9258566,-3.9782953,-4.1265297,-3.9117463,-3.8247414,-3.5845666,-2.1174345,-3.714652,-3.5732877,-3.5222328,-3.3900642,-3.54886,-3.6916387,-3.7288282,-3.8350377,-3.8850205,-3.98942,-4.0551825,-4.1159496,-3.839636,-4.0849752,-3.9527137,-4.0822678,-4.150905,-4.1311035,-4.104444,-4.108183,-4.069224,-4.095532,-4.141387,-4.130868,-4.161949,-4.134077,-4.14487,-4.1639132,-4.0115705,-4.1010065,-4.154257,-4.1267457,-4.146969,-4.2452354,-4.159547,-4.149583,-4.098897,-4.0886307,-4.211771,-4.186645
+-1.3539956,-2.645595,-3.1801858,-3.5259323,-3.7928421,-4.0299053,-3.2807574,-2.756714,-3.4614153,-3.7908683,-3.961153,-4.11479,-4.216758,-4.27538,-4.3143673,-4.395588,-4.423552,-4.428718,-4.3989244,-4.3762484,-4.3451385,-4.3188887,-4.1370516,-4.378506,-4.4582295,-4.5019307,-4.52193,-4.5658383,-4.5827017,-4.610617,-4.6390114,-4.6006403,-4.549149,-4.4762783,-4.4371605,-4.4866223,-4.215691,-4.3007956,-4.1501284,-4.212927,-4.023602,-3.9954624,-4.21839,-3.7472944,-3.9548187,-3.9849715,-4.371506,-4.4904737,-4.4187446,-4.4657493,-4.5093718,-4.437298,-4.5001655,-4.536134,-4.4200325,-4.0154,-4.4268875,-4.424507,-4.476531,-4.023278,-4.2616134,-4.220987,-4.224603,-4.371641,-4.3898287,-4.4405465,-4.306025,-2.934991,-2.3334699,-2.0084455,-2.1939073,-2.1813445,-2.689602,-2.8644853,-3.1695402,-3.4354916,-3.61717,-3.6379533,-3.9076743,-4.129979,-4.054741,-2.164122,-1.5949247,-1.9373317,-2.0614803,-2.1544728,-2.608512,-2.2359154,-2.7501073,-2.6951776,-2.8408055,-2.8652024,-2.609511,-2.8751326,-2.8752627,-2.6631079,-2.810884,-2.8206072,-2.9228983,-2.679877,-2.489941,-2.6305952,-2.7788742,-2.8063073,-2.7534714,-2.7821221,-2.8858955,-2.8084302,-2.768937,-2.7793367,-2.7421622,-2.890658,-2.7199821,-2.8741965,-2.41435,-2.7904809,-2.6997213,-2.7482562,-2.7413218,-2.8481488,-2.9112992,-2.9861271,-3.0405936,-3.0633922,-3.0932207,-2.800204,-2.9412725,-2.6667452,-2.905942,-2.7787926,-2.4057417,-3.0032172,-2.6429334,-2.852579,-2.9250102,-2.953451,-3.0395083,-3.0903227,-2.6729379,-2.7613688,-2.7632923,-2.9999783,-2.9002988,-2.7114856,-2.7320523,-2.9643664,-2.7314136,-2.935099,-2.5413182,-2.6535602,-2.9152703,-2.7442174,-3.043769,-2.9453263,-2.7960796,-2.4353561,-2.7780201,-2.617159,-1.847191,-2.801711,-2.9357243,-2.9582555,-2.7780356,-2.1520581,-2.7016318,-2.858432,-2.8122933,-2.9355006,-2.9095676,-2.908189,-2.0556045,-2.4823065,-2.4655547,-2.698573,-2.7320006,-2.802463,-2.9601364,-2.9268048,-2.8163035,-3.074193,-3.1278853,-2.6388373,-2.9170184,-2.805072,-2.8640954,-2.81119,-2.7505553,-2.854344,-2.960139,-3.0194347,-2.8774476,-2.8710613,-3.1031208,-3.0924258,-3.1740413,-3.30891,-3.3745413,-3.4274883,-3.3411367,-3.3473258,-3.3379211,-3.297728,-3.3067179,-3.6259565,-3.5400906,-2.974372,-3.1567793,-3.2345567,-3.270652,-3.5921354,-3.6911483,-3.5329182,-3.5165482,-3.503023,-3.5390894,-3.6431646,-3.7047734,-3.821175,-4.0236473,-3.739429,-3.7572012,-3.941881,-3.9645624,-3.172185,-2.4538107,-3.391811,-3.612563,-3.6389487,-3.756817,-3.8701813,-3.7532187,-3.734592,-3.992353,-4.0128336,-3.948897,-3.6675873,-3.8705878,-4.002416,-3.9199276,-3.9382396,-3.7481809,-3.769824,-3.891849,-3.9235923,-3.937527,-2.1449783,-2.8735175,-3.48173,-3.4267583,-3.5833392,-3.6243098,-3.624349,-3.6976795,-3.7865887,-3.7299743,-3.8595626,-3.8956208,-3.995717,-3.9785976,-3.85221,-3.7892976,-3.7651029,-4.014245,-4.011671,-3.9317362,-3.234827,-2.3147473,-3.3991668,-3.6043746,-3.754342,-3.8100886,-3.7649508,-3.1344156,-2.9235337,-2.859758,-3.2214239,-3.5017579,-3.5909889,-3.677493,-3.6255054,-3.654539,-3.8751385,-4.086495,-4.1306047,-4.007864,-3.9281735,-3.9613962,-4.0257587,-1.9516703,-2.3527286,-3.3531249,-3.5691361,-3.6062293,-3.6620595,-3.7916317,-2.4272976,-3.17035,-3.54984,-3.5462642,-3.713832,-3.8733082,-3.893969,-3.851227,-3.8318865,-3.9374113,-3.8655295,-3.7320364,-3.8252115,-3.8969846,-3.8857229,-3.862286,-3.8961804,-3.9799476,-4.024128,-4.1154537,-4.075939,-4.0313168,-4.033265,-3.9593136,-3.832417,-4.128593,-3.5331316,-2.9242764,-2.4601362,-2.2675726,-3.141523,-3.2868462,-3.407205,-3.3381853,-3.4033284,-3.568694,-3.6871173,-3.8160443,-3.9613347,-4.040161,-4.169403,-4.1859407,-1.9287664,-3.0516572,-3.33501,-3.6479912,-3.86831,-3.7697322,-2.9619088,-2.6539052,-3.3269787,-3.6180902,-3.862407,-3.9833188,-4.147853,-4.1249065,-4.205022,-4.1549296,-4.0964704,-4.2197175,-4.278925,-4.2428036,-4.283329,-4.3985023,-4.3619647,-4.371167,-4.426797,-4.30602,-4.443917,-4.481305
+-0.8706309,-2.3355985,-3.1580906,-3.5798163,-3.8693485,-4.1233473,-4.133791,-3.3389592,-3.6664038,-4.007618,-3.7710717,-3.7800362,-3.9511912,-4.0497255,-4.006875,-4.022443,-4.0720506,-4.1067247,-4.1057205,-4.113305,-4.14011,-4.1767406,-4.190387,-4.0953016,-4.129443,-4.159293,-4.1635027,-4.1281595,-4.0659256,-4.1619787,-4.204992,-4.135317,-4.2314963,-4.1529894,-4.1684275,-4.2550898,-4.0816383,-4.143215,-4.07629,-3.983615,-3.864494,-3.9469671,-4.0389414,-3.7851477,-3.737032,-3.950695,-4.0837536,-4.1031747,-4.0844984,-4.163603,-4.1844673,-4.1826587,-4.1956253,-4.1991878,-4.254247,-3.7752295,-4.0203,-4.1372423,-4.27596,-3.8756669,-3.6658306,-4.0375023,-4.064108,-4.1285157,-4.1244135,-4.1165457,-4.091553,-3.9169998,-3.117376,-2.2514644,-1.757172,-1.9051627,-2.8238363,-3.3037066,-3.5973616,-3.7957916,-3.8024812,-3.7351105,-3.7027397,-3.83318,-3.8095093,-3.5470233,-1.9600579,-2.039358,-1.1454765,-1.9392151,-2.085341,-1.2617868,-1.5465466,-1.4775666,-1.8498086,-1.9205528,-1.5876595,-1.8453959,-1.3708965,-1.3988928,-1.8060771,-1.8839434,-1.8371338,-1.7902908,-1.7037774,-1.6933694,-1.8163856,-1.5254139,-1.9754318,-1.7663523,-1.2818857,-1.8033156,-1.5387257,-1.8126533,-2.0755522,-1.1878998,-1.4743239,-1.7091731,-1.880325,-1.8348114,-1.8577259,-1.9644638,-1.8618206,-1.8012661,-2.0598776,-2.2466435,-2.3020878,-2.169849,-2.2724764,-2.171677,-2.3512387,-1.8360701,-2.3395057,-2.2104661,-1.6963289,-1.95295,-1.7832428,-1.9143236,-1.4346555,-1.8509287,-2.1705236,-2.2073164,-1.682525,-2.0170147,-1.7926921,-2.1432757,-2.3712664,-2.4480326,-1.8666877,-2.2826931,-2.1087558,-2.3116617,-2.3499155,-2.3610616,-2.501535,-2.4676974,-2.5837417,-2.622573,-2.7714982,-2.8704453,-2.859554,-2.2945619,-1.3068764,-1.9924678,-2.1332078,-2.3056962,-2.2733831,-1.6002889,-2.0791342,-2.2267315,-2.4175658,-2.555759,-2.6507173,-2.744942,-2.2749155,-2.2244797,-1.9597464,-2.310408,-1.4315542,-1.9223443,-1.9493449,-2.0400667,-2.3125927,-2.5812678,-2.4845486,-2.3219948,-1.4836001,-2.1034431,-2.3618171,-2.3977666,-2.5743868,-2.7177424,-2.856549,-2.899632,-2.9584894,-3.0212188,-3.0352182,-3.0657778,-3.0727596,-3.0728335,-3.1099553,-3.1888487,-3.2255032,-3.2041724,-3.2388659,-3.1156802,-3.1505656,-3.2064383,-3.361751,-0.7604285,-2.1763453,-2.5731995,-2.8094723,-3.01046,-3.1655078,-3.274579,-3.2784343,-3.3049684,-3.3615026,-3.3795202,-3.397017,-3.4224782,-3.6061177,-3.533986,-3.4317534,-3.5028784,-3.5973475,-3.5062213,-2.881223,-3.206452,-3.4305625,-3.5500925,-3.5913827,-3.643421,-2.8981652,-3.1435895,-3.4090705,-3.6467366,-3.80412,-3.572883,-3.5074,-3.6680396,-3.67966,-3.7166555,-3.6188958,-3.4728513,-3.3647237,-3.3341985,-3.3638809,-2.4212513,-2.0162766,-2.2271886,-2.687872,-3.035959,-3.2514553,-3.3372285,-3.5103025,-3.6474292,-3.7124124,-3.7742724,-3.8237405,-3.858522,-3.8350906,-3.763637,-3.657038,-3.5543475,-3.7826667,-3.899796,-3.8612065,-3.6570559,-3.2053928,-3.229022,-3.2637372,-3.4304342,-3.814454,-3.8900275,-3.9399796,-2.709161,-2.7332907,-3.1713448,-3.1903162,-3.439907,-3.7150507,-3.8057292,-3.790152,-3.8202024,-3.8681002,-3.9193308,-3.9409873,-3.939388,-3.8653698,-3.9372654,-3.7748404,-1.2888907,-2.1762555,-2.675718,-2.9436696,-3.0346818,-3.1800494,-2.7362869,-2.868977,-3.2785988,-3.4939833,-3.5828052,-3.5986638,-3.6276069,-3.6758006,-3.6437624,-3.7490833,-3.730163,-3.625756,-3.6761901,-3.7977653,-3.8552792,-3.8585858,-3.8448493,-3.8795576,-3.919805,-3.9141412,-3.928795,-3.9764395,-3.943811,-3.7479467,-3.6821096,-4.108181,-2.617412,-3.0995717,-1.4583759,-1.388145,-2.1254873,-2.5654657,-2.7724605,-2.949161,-3.0394573,-3.2422838,-3.4770455,-3.5667465,-3.7043312,-3.777832,-3.8686252,-3.9699278,-1.1574439,-2.237052,-2.6489077,-2.9655194,-3.3181863,-3.5999389,-3.78192,-3.8363526,-3.8939013,-3.9180179,-3.9341998,-3.9473948,-3.9911675,-3.9933352,-3.9822655,-3.9500637,-3.985341,-3.9890647,-4.00379,-3.930076,-3.8572521,-3.9366376,-3.915735,-3.9649553,-3.969221,-3.972382,-4.043593,-3.977601
+-0.4159264,-0.80122524,-1.0764247,-1.2591342,-1.2795857,-1.5592803,-1.560526,-1.426828,-1.615502,-1.430724,-1.6551409,-1.6772554,-1.6478786,-1.5709845,-1.6332742,-1.6461772,-1.6723384,-1.680872,-1.7237686,-1.7177459,-1.776061,-1.6967324,-1.8298681,-1.8304151,-1.8407791,-1.8731929,-1.8509794,-1.8617984,-1.8520716,-1.8613838,-1.9010228,-1.893397,-1.8307003,-1.7649901,-1.7337769,-1.6904789,-1.8640484,-1.981275,-1.9915291,-2.022368,-2.0098097,-1.9581767,-1.9627239,-1.9387182,-1.8586882,-1.886665,-1.9188391,-1.9047493,-1.8804542,-1.8432516,-1.7952441,-1.7891473,-1.7979735,-1.7017353,-1.8420179,-1.9154781,-1.9038972,-1.8648072,-1.7462207,-1.8988253,-1.8962605,-1.8760226,-1.8414792,-1.8101512,-1.7457901,-1.731682,-1.7799383,-1.8677293,-1.9018544,-1.9271337,-1.94102,-1.9024949,-1.8596646,-1.8167739,-1.7975267,-1.8023871,-1.8402717,-1.8891299,-1.7713147,-1.7940983,-1.6548375,-1.555585,-1.0856646,-1.6294411,-1.793656,-1.8407164,-1.8582233,-1.0769558,-1.5397891,-1.0545126,-1.508127,-1.5709963,-1.7102991,-0.9232294,-1.128595,-1.374864,-1.2035004,-1.5505255,-1.6575843,-1.7122782,-1.7190474,-1.6148193,-1.5447936,-0.3057304,-1.0989714,-1.3198744,-1.0632373,-1.2443545,-1.4207467,-1.6055454,-1.6498729,-0.9725427,-0.9697141,-0.71399575,-1.3029193,-1.0292356,-1.693741,-1.7063075,-1.1524444,-2.7014675,-3.1237538,-2.990221,-2.0806918,-1.7960986,-1.8302115,-1.6833518,-1.7711747,-1.4938874,-1.5656381,-0.5155109,-1.8502324,-1.7887486,-1.8324,-1.8086575,-1.5630888,-1.7725536,-1.2162429,-1.7450589,-2.122983,-2.5495706,-3.350584,-3.6398993,-3.4522505,-3.6558976,-4.1818886,-3.0652652,-2.3901732,-2.2009773,-2.0105925,-1.9564732,-1.8169887,-1.4527537,-1.8702228,-1.7382096,-1.8154304,-1.7768335,-1.6915325,-1.714255,-1.021747,-3.4489005,-2.5163555,-2.0119784,-1.7462281,-1.6626257,-1.6970547,-1.6664532,-1.8082339,-1.8784361,-1.8360866,-1.8080462,-1.2797704,-1.5382618,-1.6841229,-1.760418,-0.48707023,-2.1023278,-1.8816466,-1.8579115,-1.7593094,-1.7882155,-1.7556716,-1.542621,-1.565308,-2.7770634,-2.4764566,-2.1450071,-1.9414078,-1.8920588,-1.8916252,-1.8872327,-1.8833393,-1.9302412,-1.8852555,-1.8589491,-1.8255484,-1.7822663,-1.7255512,-1.7441534,-1.8219403,-1.8063618,-1.7516481,-1.6784439,-1.9016405,-1.6766478,-1.641735,-1.3659357,-1.6703141,-1.7214463,-1.7767552,-1.729401,-1.6837996,-1.7464604,-1.7343316,-1.7282199,-1.824397,-1.7742397,-1.7288786,-1.7612139,-1.7628809,-1.7135038,-1.8208636,-1.8201993,-1.7182504,-1.7164907,-1.8042754,-1.8042809,-1.7236406,-1.7079667,-1.7187744,-1.7283219,-1.7678356,-1.8162924,-1.7810837,-1.69018,-1.7840115,-1.8085858,-1.798969,-1.7498227,-1.7771956,-1.7947855,-1.7999096,-1.7963641,-1.7613804,-1.8081604,-1.7838789,-1.9096916,-1.513986,-1.6788226,-1.729037,-1.7213558,-1.7020699,-1.8029859,-1.8390125,-1.8688217,-1.8177499,-1.7941917,-1.7932248,-1.8071605,-1.7708176,-1.7851478,-1.8511472,-1.8884982,-1.8826973,-1.9112307,-1.8767185,-1.8996539,-1.9194843,-1.9039387,-1.8797843,-1.8943315,-1.9226295,-1.9353163,-2.0452259,-2.038618,-1.5149999,-1.8309227,-1.8538224,-1.8227483,-1.8118377,-1.8197501,-1.7982097,-1.8319652,-1.7987947,-1.7322311,-1.6565031,-1.6777354,-1.683065,-1.6590774,-1.6941875,-1.2889649,-1.6674272,-1.7218827,-1.7254292,-1.7085887,-1.6798316,-1.6776991,-1.7276305,-1.6593544,-1.6604718,-1.7018328,-1.729526,-1.7059789,-1.6669539,-1.6016973,-1.7307992,-1.6745255,-1.6891636,-1.6771448,-1.6304882,-1.603695,-1.6083701,-1.6043319,-1.6012423,-1.5991513,-1.5778626,-1.5726773,-1.58403,-1.5612572,-1.6164159,-1.677998,-1.657347,-1.3840998,-1.6251905,-1.3669094,-1.8678733,-3.4591575,-3.0465686,-2.3975463,-1.9863003,-1.7917079,-1.679647,-1.5744557,-1.5329891,-1.5472976,-1.5718156,-1.5453345,-1.6711761,-1.2457985,-1.397656,-1.5497218,-1.5635287,-1.5544366,-1.6403745,-1.6573995,-1.6367655,-1.6688627,-1.7041658,-1.7414823,-1.7051378,-1.6784089,-1.7188464,-1.7207493,-1.7568921,-1.6964022,-1.7349381,-1.6623334,-1.6908083,-1.7116239,-1.7101223,-1.7336406,-1.743364,-1.7486844,-1.7730428,-1.7802168,-1.8265027
+-0.7711808,-0.98946816,-1.6879975,-1.8697689,-1.8046668,-2.2701852,-2.4049597,-2.2799957,-2.3617525,-2.76382,-2.5088663,-2.5240784,-2.371224,-2.4746919,-2.1236472,-2.6416922,-2.6010509,-2.599073,-2.5668805,-2.5480003,-2.558581,-2.4497876,-2.40825,-2.4392307,-2.6452217,-2.4012637,-2.8070338,-2.8010082,-2.610019,-2.723629,-2.8245163,-2.8021998,-2.7714622,-2.753961,-2.8382354,-2.488903,-2.7669258,-2.7125835,-2.4385428,-0.7787605,-1.4227557,-1.855357,-2.2110674,-2.2814112,-2.4438908,-2.4094455,-2.380634,-2.4929361,-2.3727026,-2.3040974,-2.0767078,-1.6444451,-1.8390697,-1.8227984,-2.0885782,-1.5256013,-1.8102317,-1.7165464,-2.0633328,-1.6906391,-1.4662615,-1.6700281,-1.8715198,-1.7147273,-2.0473192,-2.227182,-2.3474927,-2.3907542,-2.499156,-1.8126547,-2.33433,-0.9895578,-0.9766299,-1.9462615,-1.8753489,-1.6502979,-0.7776244,-1.6813346,-1.6443166,-1.0178746,-1.7813188,-1.6033771,-0.76045805,-1.6753229,-1.271098,-0.87159234,-1.0651215,-1.1092386,-1.7509466,-1.400097,-1.4405986,-1.3862278,-1.4846292,-1.3682948,-1.9397806,-1.1365526,-1.5387181,-1.2867786,-2.0571048,-1.3334635,-1.4083505,-0.69417,-0.79626745,-1.2056667,-1.217537,-1.501796,-1.508931,-1.5834416,-1.8187258,-1.9602588,-1.8728006,-2.2942338,-2.4901934,-1.4101514,-2.120228,-2.4462628,-1.26299,-1.3599037,-1.9123853,-2.1417966,-1.9853312,-1.4775461,-2.0639558,-2.5086544,-0.800785,-1.0076568,-1.8333286,-2.0914745,-2.027873,-1.4021212,-1.7949529,-1.2532221,-1.3516018,-1.8556585,-2.1606112,-1.7970895,-1.8562545,-2.3656821,-1.8307511,-1.699406,-1.6519715,-2.3655777,-2.6941304,-2.904801,-2.4533803,-1.4409051,-2.2177448,-1.6208916,-2.2579937,-2.563441,-2.7407012,-2.8790753,-2.9598753,-3.1319137,-2.919987,-3.204543,-3.3648698,-1.2089678,-1.9834627,-2.104068,-2.114418,-1.7531456,-2.5071607,-2.4112573,-2.6933532,-2.8626647,-2.9234982,-3.0839083,-3.1778564,-3.2991552,-2.866295,-3.1002426,-3.4239135,-2.9516547,-1.6957452,-2.072211,-2.2849963,-2.4848793,-3.0232277,-3.1619153,-3.236912,-3.1477475,-3.1070042,-3.199428,-2.887793,-1.2961876,-1.2471238,-1.0168084,-1.3934369,-1.7271516,-1.9857756,-2.492276,-2.0424066,-2.2484574,-2.195109,-2.2285037,-2.6488986,-2.7988782,-2.9773717,-2.9357486,-2.9325275,-2.954895,-3.053552,-3.1642034,-2.8793986,-2.9689684,-3.0207307,-3.1268833,-3.1431842,-3.2210255,-2.810191,-2.954875,-3.0752246,-2.281231,-2.6861029,-2.7764144,-3.0136697,-3.1704335,-3.2983272,-3.466216,-3.4150448,-3.4404907,-3.584779,-3.439989,-3.407834,-3.5377352,-3.5745301,-3.483422,-3.2665715,-3.0974588,-3.1543853,-3.1589558,-3.1718123,-3.1101642,-3.0679889,-3.1322494,-3.1994128,-3.114458,-3.1815758,-3.1573958,-3.1577535,-3.309388,-3.2308996,-3.3475645,-3.2408524,-3.3299167,-3.2322676,-3.2590275,-2.771647,-3.2894788,-3.3028605,-3.3260193,-3.419961,-3.4919136,-3.3560085,-3.3827844,-3.3851414,-3.5275292,-3.6056936,-3.5870402,-3.626261,-3.633431,-3.339737,-3.3234456,-3.099207,-3.2542944,-3.4408488,-3.38562,-3.384678,-3.4994411,-3.3887959,-3.352982,-3.4563158,-3.368121,-3.397141,-3.3720586,-3.4707565,-3.5238478,-3.5211964,-3.5159926,-3.4848785,-3.4883428,-3.5329523,-3.3447642,-3.3790274,-3.3803623,-3.4578342,-3.4181561,-3.4857569,-3.4434981,-3.3347697,-3.1341267,-2.780149,-2.7574072,-2.7259102,-2.877218,-2.8951724,-3.102382,-3.0095747,-3.1042006,-3.1732821,-3.113853,-2.8363497,-2.7536516,-2.628666,-2.9789982,-3.1283157,-3.1685812,-3.2015758,-3.0784712,-3.0211103,-2.7133532,-2.8720737,-2.9010444,-2.7995207,-2.4853427,-2.5964699,-2.7451828,-2.671599,-2.5725474,-2.3111315,-1.971984,-1.8339192,-1.9119837,-1.7545449,-1.7855843,-1.5290743,-1.6646037,-1.825131,-1.82173,-1.9528403,-1.9355408,-2.0873654,-1.9636949,-1.9448593,-1.9591618,-1.8290869,-1.5002471,-1.320867,-1.6114148,-1.9587741,-2.0764422,-1.983899,-1.9111716,-1.875912,-1.8039489,-1.7350596,-1.6220049,-1.3556108,-1.1386987,-0.96550125,-0.8571052,-1.1266619,-1.4760225,-1.5415797,-1.0625112,-1.0883414,-1.2172569,-1.3589464,-1.5673864,-1.7044486,-1.7539595,-2.0421023,-2.1311088,-2.2764566
+-0.72613025,-0.81552035,-0.9792815,-1.2234205,-0.98577803,-1.8686227,-2.3004448,-2.4323063,-2.6624722,-2.8498926,-2.687861,-2.7494652,-2.8060174,-2.8116007,-0.45095217,-1.8056548,-2.3197274,-2.7712662,-2.721478,-2.8465466,-2.9478297,-3.055747,-3.1265728,-1.1306957,-1.736379,-1.8984839,-1.8428423,-2.096532,-2.4641557,-2.7585855,-3.006562,-3.2351713,-3.3125534,-3.3080912,-3.5403452,-3.4876585,-3.475335,-3.4871125,-2.561637,-0.45387498,-0.9028479,-1.3048402,-1.7971439,-2.1845443,-2.4785137,-2.6618242,-2.7039344,-2.838368,-2.889022,-2.2039683,-1.7599331,-1.4585799,-1.9487911,-2.0030837,-2.0442874,-1.6246296,-1.946883,-1.764761,-2.1796699,-1.795968,-1.4767305,-1.9050785,-2.238946,-2.5013068,-3.002022,-3.3037531,-3.408028,-3.4227977,-3.366353,-1.427214,-1.4463866,-1.2322497,-1.2931125,-2.0789433,-2.396226,-1.2028011,-1.5114393,-2.2840543,-2.3930736,-1.6256777,-2.4544501,-2.3089561,-1.8151363,-2.674189,-1.8804152,-0.90250474,-1.9295412,-1.9446303,-2.375661,-2.7800272,-3.0721421,-2.197125,-2.5409489,-0.68297744,-2.0132694,-2.579648,-2.4811778,-1.9607114,-2.8519092,-1.8218278,-0.45039776,-1.1227667,-1.4778847,-1.6816825,-1.7415402,-2.3961074,-1.465138,-1.9909137,-2.1783957,-1.3611456,-2.265009,-2.7853553,-3.021209,-3.0407462,-3.3628244,-3.4657722,-3.398644,-0.23494467,-1.1728214,-1.7365874,-2.099885,-1.9498357,-2.4709187,-3.0581098,-3.2500844,-3.2891958,-3.6088986,-3.5260735,-3.5037055,-3.2418594,-3.4914231,-1.0564317,-2.0165699,-1.184357,-2.0324867,-2.7636132,-2.9699767,-3.344884,-3.394922,-1.842908,-0.9365117,-2.1010618,-2.5699453,-2.9543035,-3.1709251,-3.0063303,-2.8416007,-2.8000264,-3.2043009,-3.3892732,-3.5140247,-3.5754952,-3.5628576,-3.5836244,-3.347883,-3.4107647,-3.577887,-0.4321332,-1.4821104,-1.6005615,-1.9842116,-1.6914808,-2.3272028,-2.6790516,-2.8741379,-2.8673058,-3.1017418,-3.2185254,-3.2434564,-3.2328203,-3.0515666,-3.39636,-3.4206495,-0.635414,-1.4780933,-1.8392774,-1.9788536,-2.2933357,-2.8630075,-3.0810223,-3.153583,-3.0805483,-3.1577077,-3.1164484,-1.4618064,-0.95362085,-0.7467754,-1.1972185,-1.8044531,-2.1554985,-2.5031974,-2.8749218,-2.9475393,-3.0313606,-2.732338,-2.9309497,-3.087028,-3.2715278,-2.97991,-3.2907307,-3.28931,-3.3990135,-3.3632116,-3.4807897,-3.4605145,-3.5215201,-3.3949466,-3.4098973,-3.389982,-3.4266796,-3.4729075,-3.4622478,-3.2166815,-1.1411406,-2.1868532,-2.6093001,-2.9139585,-3.0479033,-3.1052744,-3.1881242,-3.295228,-3.2004867,-3.263667,-3.338437,-3.152042,-3.2931633,-3.3551369,-3.224128,-3.199806,-3.2835746,-3.115378,-3.1134558,-2.7569351,-2.8278718,-2.8789847,-2.9643395,-2.7824593,-2.8258696,-2.8826246,-2.881065,-2.9105446,-2.9553323,-3.0059566,-2.9674656,-2.7982345,-2.7599308,-2.613966,-2.860197,-2.9773245,-3.4453049,-3.4348693,-3.3389235,-3.1729348,-3.1015515,-3.2632315,-3.2876458,-3.467495,-3.5687609,-3.3816836,-3.3442426,-3.426506,-3.5168793,-3.3405535,-3.162787,-2.969965,-3.457652,-3.6487346,-3.32788,-3.5807707,-3.649381,-3.601027,-3.6905813,-3.8618731,-3.4420571,-3.8323135,-3.5220861,-3.905106,-3.96027,-3.9791007,-4.070401,-3.916779,-3.892445,-4.1094007,-3.9811063,-3.9163005,-4.16368,-4.1330214,-4.064338,-4.150852,-4.1274705,-4.1501236,-3.9018471,-3.3793852,-3.345945,-3.0838175,-3.612718,-3.7127786,-3.6291428,-3.6573582,-3.757903,-3.8674512,-3.8613343,-3.4051583,-3.2942939,-3.2791328,-3.4331107,-3.6417542,-3.780699,-3.671417,-3.5172105,-3.3720293,-3.3922272,-3.3919578,-3.240283,-2.944384,-1.9854289,-2.450701,-2.8612566,-2.8974218,-2.8554163,-2.6540742,-2.0795279,-1.8922118,-1.9335703,-1.7073112,-1.7630903,-1.6533235,-1.6776477,-1.7035667,-1.4926459,-1.5380951,-1.6978706,-1.8884056,-1.9427043,-2.041428,-1.8888955,-1.5782537,-1.4370332,-1.3150389,-1.7196609,-2.0387344,-2.2173395,-2.22648,-2.4476686,-2.2302155,-2.217024,-2.0032187,-1.700524,-1.0480356,-0.7759816,-0.9356878,-0.8858052,-1.2665594,-1.830839,-2.093151,-1.8283335,-2.0397975,-2.2198064,-2.2776468,-2.2853506,-2.239325,-2.3108284,-2.3347542,-2.4359732,-2.3519719
+-1.475567,-1.6645766,-1.6587762,-1.7594413,-1.180498,-2.1115167,-2.2822156,-2.356542,-2.554659,-2.7220857,-2.6651201,-2.8928413,-2.940167,-1.1945508,-1.4860973,-2.345938,-2.6323133,-2.1534872,-2.1287346,-2.395964,-2.632559,-2.681235,-2.6690955,-0.8941931,-2.5610147,-2.642813,-2.429801,-2.4413495,-2.5046833,-2.7861967,-2.864375,-3.0337214,-3.0748596,-3.1123,-3.2015061,-3.2078316,-3.1381688,-3.2942665,-3.0653787,-0.64419836,-1.430118,-2.3848288,-2.4384284,-2.5177166,-2.5802622,-2.5791166,-2.6124587,-2.7776113,-2.7732081,-1.3991611,-1.8652924,-1.6418163,-2.2740598,-2.5380003,-1.3142606,-1.945225,-2.2158175,-2.122569,-2.5008314,-1.2655255,-1.7446032,-2.2229486,-2.4119205,-2.5955253,-3.0240474,-3.2609575,-3.2243779,-3.2868292,-2.9236517,-3.0363297,-0.81071264,-1.7933608,-1.1104434,-1.2938259,-1.9400493,-2.3145113,-2.5665474,-2.7016025,-2.0034487,-2.6000657,-3.2857766,-3.3498392,-3.393489,-3.5008967,-3.4517689,-3.3810124,-3.8085728,-3.8259945,-3.5731277,-3.547371,-3.4776201,-3.4512968,-3.4571843,-0.93892753,-2.1736007,-2.2968233,-3.0197291,-1.7970884,-3.0482416,-3.3492882,-0.7988693,-0.9762936,-1.9232494,-2.5050101,-2.9441304,-3.2045853,-0.5166294,-1.7448951,-2.2054863,-2.6981514,-3.223024,-3.4750447,-3.5656104,-2.7310274,-3.5364847,-3.63581,-1.7691052,-0.8198151,-1.9290866,-2.486372,-3.0296254,-3.247508,-3.394043,-3.5979204,-3.4061885,-3.5293388,-3.7660182,-3.7031417,-0.45086038,-0.91449094,-2.185131,-2.5760908,-3.0503433,-3.1387186,-3.2213554,-3.4595451,-3.3956285,-3.210866,-3.439341,-0.3041429,-1.2616602,-2.3617678,-2.6333828,-2.7534823,-3.1738691,-3.1672757,-3.0955374,-2.9540215,-3.1571724,-3.318641,-3.4626544,-3.4196053,-3.4215326,-3.3985903,-3.433734,-3.2256632,-0.43204996,-1.7901706,-2.3233273,-2.6508453,-2.77921,-2.8095586,-2.9330578,-3.1265519,-1.6939052,-2.440122,-2.6145725,-2.7468314,-2.9100652,-3.0680408,-3.275489,-3.5810728,-3.3190782,-2.9711442,-1.5151095,-1.5652646,-1.2766064,-1.9962806,-2.5282612,-2.762401,-2.849256,-2.876652,-3.0669804,-3.1732478,-2.6368146,-1.4497374,-1.3670356,-2.2176933,-2.7511888,-2.912939,-3.0445266,-3.1037326,-3.1086497,-2.6541681,-2.4720256,-2.6878674,-2.9811277,-3.0347488,-3.1281545,-3.145887,-3.1866186,-2.852088,-2.9287214,-3.2332695,-3.2359076,-3.167215,-3.0767353,-3.2905836,-3.314468,-3.286312,-3.3033242,-2.1777651,-2.5419245,-2.9388099,-3.000106,-3.105371,-3.210649,-3.296241,-3.2581396,-3.3264422,-3.3651378,-3.3067434,-3.306656,-3.3120492,-3.0162492,-3.2451653,-3.2930965,-3.3555632,-3.3756208,-2.9583182,-3.1323838,-3.1029763,-3.0410664,-3.0091205,-3.149284,-3.187593,-3.0275538,-3.111668,-3.1728132,-3.200182,-3.3869205,-3.2814388,-3.4012845,-3.3637419,-3.3432553,-3.2334273,-3.2094088,-3.291389,-3.4898005,-4.050799,-4.1766996,-4.226282,-4.252657,-4.0793204,-4.3267756,-4.108831,-4.356844,-4.4423976,-4.186268,-4.1549234,-4.259104,-4.3049593,-4.0317464,-3.6631203,-3.6771696,-4.202527,-4.4314613,-4.366003,-4.354692,-3.8981938,-4.030848,-3.9913592,-4.2561607,-3.4581864,-4.104035,-4.2902923,-4.2464037,-4.3753347,-4.464512,-4.4835167,-4.504652,-4.4343204,-4.5657287,-4.2779064,-4.3061476,-4.3998346,-4.5388045,-4.579622,-4.643937,-4.6067104,-4.527448,-4.34096,-3.6215935,-3.7047505,-3.1249123,-3.8034575,-4.1320677,-4.14647,-3.7957494,-4.1012926,-3.8251622,-4.0088797,-3.628815,-3.4213216,-3.4004922,-3.4901555,-3.8798275,-3.9348707,-4.22133,-3.931857,-3.902285,-3.9895535,-4.1331997,-4.1367517,-3.6958447,-2.6901674,-3.1109455,-3.65423,-3.6083658,-3.539206,-3.3292408,-2.818262,-2.673982,-2.7943664,-2.93515,-2.5754457,-2.4377544,-2.5144026,-2.7565503,-2.8963857,-2.9646506,-3.0958648,-3.0315676,-3.243118,-3.2077289,-2.734684,-2.5561929,-2.5844312,-2.5243044,-2.4985576,-3.1908464,-3.0162663,-2.8552969,-2.9272864,-2.9411292,-2.797519,-3.0420356,-2.3075387,-2.0592408,-2.0882215,-2.378621,-2.004475,-2.1549397,-2.3842478,-2.3668928,-2.4067283,-2.5083919,-2.6211119,-2.5715082,-2.6975236,-2.6296396,-2.1984344,-2.627717,-2.5666652,-2.4985094
+-1.4129463,-1.5878597,-1.5779037,-1.4215499,-1.5143262,-1.701177,-1.6806855,-1.697377,-1.8999364,-1.9026527,-2.016043,-2.1723187,-2.1859188,-1.6728705,-2.0667367,-2.0055103,-2.0134373,-1.4268806,-1.8582973,-2.5500298,-2.5459,-2.4759092,-2.3347926,-0.65051717,-2.0798688,-2.3802817,-2.435697,-2.4255934,-2.3858213,-2.4321651,-2.3629022,-2.5931568,-2.5370212,-2.6097496,-2.6848125,-2.7868261,-1.9029485,-2.252178,-1.5204605,-1.744907,-2.5813456,-2.5708025,-2.3323672,-2.6727638,-2.327205,-2.2415156,-2.3816457,-2.407075,-2.2292743,-2.0606909,-1.995973,-1.8395177,-2.563303,-2.428932,-1.1230025,-2.2291865,-2.3050923,-2.2052224,-2.3455477,-1.7690953,-2.1114013,-2.5321689,-2.373462,-2.5853105,-3.0786495,-3.2680473,-3.3647604,-3.3206015,-3.2954936,-3.3610194,-3.3046255,-3.1381588,-2.0855975,-0.6951423,-1.9412405,-1.9868034,-2.3215094,-2.4665694,-1.428763,-2.0845113,-2.5882726,-2.9448347,-3.3362954,-3.3594007,-3.3144932,-3.5760863,-3.8037424,-3.7321138,-3.522746,-2.2190566,-1.5295347,-1.7256798,-1.3373715,-1.8641702,-1.6029731,-2.1198845,-2.0406895,-1.5126456,-2.6586528,-2.1179163,-2.9745002,-0.7863763,-2.2111814,-2.2590573,-3.0075932,-3.2459862,-2.210235,-2.6213126,-3.0967975,-3.4539757,-3.4957807,-3.6952097,-3.917389,-3.863098,-3.836137,-3.8744345,-3.7792623,-2.9331784,-0.7721124,-2.0784085,-2.347176,-2.790565,-3.3568835,-3.4747353,-3.697253,-3.7997527,-3.8659973,-3.7961345,-1.8892915,-0.3849382,-1.9311713,-2.305153,-1.8291996,-2.2730453,-1.823089,-2.3703113,-2.9276252,-3.0709872,-3.356939,-0.32185414,-1.80774,-2.3743596,-2.6021757,-2.8665018,-3.1603234,-3.2071984,-3.1887236,-2.5518136,-2.932114,-3.308829,-3.4918625,-3.4438887,-3.4497693,-3.386873,-3.204634,-3.3117685,-1.523745,-0.9741933,-2.2157035,-2.3140497,-2.525231,-1.8226111,-2.5182962,-2.6068423,-1.0680228,-2.3787189,-2.7049885,-2.494476,-2.7743833,-3.0057545,-2.8866792,-2.5710225,-2.8265605,-2.8354294,-1.9939684,-1.473528,-0.6842186,-2.0246458,-2.5108256,-2.7964516,-2.7593052,-2.730705,-2.7700996,-2.8664794,-2.8458974,-1.8301146,-1.9159207,-2.6056569,-2.663927,-2.5984914,-2.932032,-2.9673343,-3.046321,-2.480778,-2.4972434,-2.9825783,-3.0029652,-2.8686142,-2.9519048,-2.2806525,-2.8707576,-2.9652176,-3.0738883,-3.2312055,-3.3229673,-3.3306684,-3.1755297,-3.2967103,-3.3890724,-3.4324307,-3.5992827,-1.076453,-2.58645,-2.8194287,-3.0377805,-3.1233935,-3.2882714,-3.3527613,-3.5211134,-3.6232314,-3.578764,-3.636291,-3.7463565,-3.6743703,-3.5080683,-3.6978347,-3.6450586,-3.598799,-3.512194,-3.569255,-1.1632972,-2.3413346,-2.4418209,-2.6926465,-2.9500356,-2.7722747,-3.0409548,-2.9142087,-3.2113683,-3.2819295,-3.38066,-3.273944,-3.032432,-3.466496,-3.1925404,-3.040397,-3.2625813,-3.2796502,-2.5104392,-3.2686126,-3.5707135,-3.904704,-3.7664704,-3.0529644,-3.076849,-3.290481,-3.3461673,-3.5996764,-3.1361089,-2.396783,-3.1482928,-3.274849,-2.8450313,-2.3273613,-2.380139,-2.869467,-3.0222409,-2.5845642,-2.555732,-2.57748,-2.8315885,-2.7015498,-2.9498022,-2.083841,-2.4600437,-2.9893248,-3.0466704,-3.1570082,-3.1601224,-3.2863827,-3.2597277,-3.2865236,-3.192895,-2.2549047,-2.5973706,-2.3068805,-2.7875247,-2.9724207,-3.219451,-3.2664971,-3.2879133,-2.916427,-2.1488395,-2.0895734,-2.1491275,-2.5115237,-2.6538448,-2.7455835,-2.4806554,-2.6363802,-2.597997,-2.6249704,-2.18175,-2.02499,-2.084768,-1.891745,-1.8973733,-2.2137918,-2.4097335,-1.7886761,-1.5921799,-1.4542274,-1.7872304,-1.9171642,-1.3355767,-1.2823327,-1.6288534,-2.1805143,-1.8985254,-1.907463,-1.6793344,-1.8183345,-2.1464128,-2.1553273,-2.0248418,-2.1615825,-2.2060785,-2.4180489,-2.2727027,-2.5735931,-2.736495,-3.0413823,-2.9899292,-3.1846018,-3.1299355,-2.42163,-2.4648385,-2.540504,-2.4183156,-2.4268296,-2.9226325,-2.7095675,-2.1722333,-2.3241806,-2.3499103,-2.52136,-2.6065485,-2.3668857,-2.4705336,-2.4159307,-2.5532875,-2.337972,-2.3790042,-2.2690547,-2.1972942,-2.564608,-1.9228548,-2.36299,-2.5570378,-2.4028158,-2.617591,-2.1424146,-2.5260627,-2.6027346,-2.0009623
+-1.8927883,-2.0162516,-1.6218935,-1.5265418,-1.8658739,-2.1029248,-1.9467047,-2.053513,-2.1648612,-2.1054754,-2.0413547,-2.346388,-2.363478,-2.2850184,-2.501048,-2.5850148,-2.3940902,-2.094818,-2.0130267,-2.3376238,-2.5225987,-2.4436452,-2.425079,-1.4601974,-2.8231745,-2.3737016,-2.7216978,-2.4269593,-2.5747519,-2.5835254,-2.5675902,-2.7274961,-2.6283538,-2.6959023,-2.620082,-2.418929,-2.0527189,-2.8541584,-2.8376613,-2.97368,-2.835894,-2.8938832,-2.7243388,-2.769061,-2.6778572,-2.3399467,-2.8214936,-2.8285382,-2.849335,-3.0095115,-2.66472,-2.5265183,-2.8424149,-2.567017,-2.3385196,-2.681004,-2.793867,-2.1600971,-2.7926593,-2.3141851,-2.8914425,-3.061246,-3.273109,-3.3697567,-3.4726832,-3.107859,-3.4398181,-3.6628635,-3.5905738,-3.7359931,-3.8267307,-3.8931942,-3.6607323,-1.3238059,-2.1881218,-2.4983075,-3.090685,-3.4689229,-3.731461,-3.8966546,-3.8890584,-4.0620985,-4.101137,-2.5564556,-1.7231842,-2.961057,-3.8369622,-4.034981,-3.0987327,-3.5015066,-1.4557023,-1.6228436,-2.282544,-2.4476938,-2.6992579,-3.181716,-3.4880319,-3.6296644,-4.0057535,-4.0226374,-4.0810943,-4.040366,-4.3277426,-2.8457203,-3.6778207,-4.00369,-4.1922874,-4.245538,-4.1844854,-4.092153,-4.2259607,-4.3359094,-4.2831955,-4.2818346,-4.401176,-4.383663,-4.4070044,-4.3324738,-4.021698,-3.9987354,-4.1349382,-4.14157,-4.3168964,-4.406393,-4.2829905,-4.4232745,-4.425901,-4.2649884,-3.9781466,-2.765838,-3.7773557,-4.0914664,-1.2958689,-1.9288791,-2.8731806,-3.374942,-3.8585076,-4.0668406,-4.1460943,-1.608136,-1.4087415,-2.39471,-3.0633843,-3.5401003,-4.013714,-4.256757,-0.9146928,-2.0656905,-2.3558922,-2.712017,-3.3211098,-3.520171,-3.6344488,-3.7381823,-2.4487073,-2.9710784,-1.5570211,-1.4102932,-2.4719663,-2.8266244,-2.9830394,-2.1825173,-2.8206756,-3.350075,-1.9592651,-1.704133,-2.5185604,-2.5250793,-2.772315,-2.6279821,-2.814457,-3.1261108,-3.403411,-3.6532614,-0.9426276,-1.9702271,-2.033939,-2.4793742,-2.8938522,-3.0655491,-3.1992893,-2.9803276,-2.9642189,-3.2095857,-3.0704153,-1.9692768,-1.9498969,-2.6570752,-2.4457753,-2.5876474,-2.7671015,-2.892601,-2.9283571,-3.0515342,-2.8836408,-3.1708012,-3.0539198,-3.1245918,-2.9677355,-1.35973,-2.5761578,-2.5342607,-2.888793,-2.8052945,-2.9619513,-3.1529663,-2.764577,-2.9419127,-3.0268667,-3.050148,-3.0955162,-2.8177948,-2.9863362,-2.7802746,-3.2229311,-3.4312503,-3.5110755,-3.552065,-3.6698833,-3.6446145,-3.7488108,-3.691805,-3.6179354,-3.7644796,-3.7338786,-3.672108,-3.687014,-3.5444326,-3.5393336,-3.6956832,-1.9873763,-2.969943,-3.204235,-2.819692,-2.3866603,-2.2151248,-2.8622391,-2.7910874,-3.2625794,-3.372548,-3.148375,-3.2728057,-3.5192666,-3.9110036,-3.6950746,-3.352071,-3.6623993,-3.7058601,-2.8868852,-3.7733307,-3.9403532,-4.0311975,-3.7998374,-3.0051453,-3.3016853,-3.7814424,-3.9405346,-4.0286045,-3.3889217,-3.1356716,-3.376118,-3.525577,-3.4512885,-2.946921,-2.9705114,-3.4998977,-3.5419161,-3.0443738,-2.889157,-3.005825,-3.1709166,-3.15649,-3.396699,-2.9521925,-3.093203,-3.3216915,-3.2539515,-3.3576093,-3.2412415,-3.4218683,-3.5046968,-3.571889,-3.2380161,-2.1649158,-2.663247,-3.1438153,-3.5049624,-3.5723417,-3.611132,-3.727066,-3.770793,-3.6470695,-3.356626,-3.2996383,-2.8393393,-3.4736733,-3.387628,-3.1975315,-2.877343,-3.1221278,-3.3843098,-3.4638958,-3.3930025,-3.0705814,-2.9872625,-3.039034,-3.1956322,-3.4107475,-3.4615204,-2.8951025,-2.9693775,-2.6910982,-2.3508215,-2.8647494,-2.3171968,-1.8272374,-1.7762407,-3.2333813,-3.3318148,-3.3884797,-3.2007322,-2.855281,-2.8076434,-2.6976948,-2.3266096,-2.7504945,-2.316012,-2.0803318,-2.634091,-2.6942534,-2.9891307,-3.180303,-2.9981534,-3.2147522,-3.3760364,-3.2952757,-3.1496007,-3.0493917,-2.8347034,-2.5835567,-3.2888556,-2.8248534,-2.4488099,-2.4967556,-2.0997882,-2.578208,-2.7493744,-1.9491204,-2.1639614,-2.250619,-2.5479708,-2.2164555,-2.2846084,-2.3882403,-2.3640192,-2.3364992,-1.9724668,-2.6056726,-2.6911702,-2.661993,-2.9591951,-2.7405605,-2.9205775,-2.808936,-2.4983919
+-2.2067113,-2.7716482,-2.4984443,-2.2223847,-2.2338986,-2.8703241,-2.4480734,-2.4805474,-2.1384668,-1.8806714,-2.4937918,-2.4245965,-2.427211,-2.1632385,-2.017597,-2.512144,-2.5376725,-2.4795964,-2.4514432,-2.552166,-2.9856014,-2.934263,-2.8504856,-2.235745,-3.2392678,-2.5864491,-2.547503,-2.8326418,-2.906397,-2.6234827,-3.0793238,-3.4788926,-3.235603,-3.0261557,-2.9985693,-2.2914336,-2.3833542,-2.752738,-2.9386086,-3.1443195,-3.5221405,-3.4169683,-3.3531728,-3.2567604,-2.621156,-2.6431289,-2.8312597,-3.1882772,-3.2152684,-3.150587,-3.1569736,-2.2728627,-2.7906218,-3.117776,-2.8459997,-3.4403656,-3.3868654,-3.458569,-3.647462,-3.5826473,-3.8591113,-3.8855488,-4.242282,-4.2550964,-4.2609525,-4.2345533,-4.2340746,-4.117281,-3.318252,-4.0832534,-3.879538,-4.2854304,-4.044281,-1.9530231,-2.6579828,-3.7495034,-4.188329,-4.2616134,-4.3973203,-4.48759,-4.3994474,-4.41447,-4.367949,-2.3484802,-2.276274,-3.2794085,-4.0971327,-4.4239173,-4.420913,-3.1042056,-2.1685114,-1.7633725,-2.0410995,-2.0859294,-2.4404001,-2.6445243,-3.4877229,-3.8941395,-4.2387695,-4.361946,-4.4294558,-4.442815,-4.5785484,-4.5484786,-4.6800594,-4.711196,-4.5075865,-4.3778396,-3.5840213,-3.736334,-3.5180097,-2.7744641,-3.5517645,-4.060135,-4.3869514,-4.51976,-4.5403934,-4.4813104,-4.3151603,-3.792283,-4.29617,-4.106351,-3.6691256,-4.4115458,-4.278577,-4.3995123,-4.304866,-3.946108,-3.9634547,-3.7975554,-4.2978325,-4.3708334,-2.844353,-3.5599713,-4.330929,-4.466975,-4.4908686,-4.482081,-3.2809024,-2.2006512,-1.9642621,-3.0944595,-3.8722916,-4.2365017,-4.3846517,-4.411747,-4.1175456,-3.0220861,-3.937552,-4.261783,-4.5823345,-4.4618087,-4.277089,-4.326657,-2.481075,-2.3809307,-1.4723028,-2.5738862,-2.9770315,-3.177309,-3.5487232,-3.957212,-4.2551184,-4.2962637,-4.2817283,-3.3578281,-2.9172974,-1.5292733,-2.8321218,-3.1725297,-3.2999456,-3.7616966,-4.0612864,-3.9344418,-2.040891,-1.6801844,-2.1886573,-2.731574,-3.1158977,-3.3801847,-3.717915,-3.2972276,-2.447475,-3.252726,-2.9905963,-2.4118478,-2.4699206,-2.8668199,-3.0850124,-3.0916474,-3.3675175,-3.5482879,-3.513332,-3.151381,-3.4391527,-3.5552664,-3.3773146,-3.3480313,-3.3250558,-1.3576795,-2.973908,-2.2931018,-3.3350115,-3.1808584,-3.2118454,-3.2613902,-3.2141967,-2.9861486,-3.1664624,-3.2022693,-3.1846676,-2.5162716,-3.0451646,-2.4372709,-2.680429,-2.7962532,-3.3774717,-3.4160724,-3.4792619,-3.3878827,-3.5036316,-3.632808,-3.5631719,-3.6464262,-3.6627595,-3.5643775,-3.5905786,-3.5002997,-3.545434,-3.5506334,-2.9807925,-3.5188336,-3.9069686,-3.7151573,-3.3725152,-1.8299651,-3.0980437,-2.6789966,-3.4376154,-3.5557294,-2.9400022,-3.029119,-3.0699525,-3.478847,-3.3890967,-3.1875012,-3.38911,-3.3087292,-2.9158773,-3.531685,-3.2861204,-3.4583406,-2.8813708,-2.5820801,-2.5854766,-3.2760444,-3.382428,-2.99451,-2.642318,-2.0088623,-2.9580004,-3.2361805,-3.3978324,-3.1943226,-2.9984722,-3.1671674,-3.3210359,-3.2300615,-2.273649,-3.141303,-3.3028266,-3.0906477,-3.5294929,-3.5079217,-3.5354192,-3.606341,-3.0634947,-3.1574361,-2.6365423,-3.0733376,-3.0927396,-3.0590115,-2.7124825,-1.8493015,-2.161052,-1.7327465,-2.5945017,-2.167913,-2.2319422,-2.8020492,-3.0167923,-3.1276207,-3.1069312,-3.099633,-2.7389643,-2.9957604,-2.866724,-2.4278402,-2.4712288,-2.6528091,-2.907136,-3.0729032,-3.0066907,-3.0042653,-2.9970703,-2.9804907,-2.7753708,-2.99151,-2.9088044,-2.901123,-2.9139047,-2.9330077,-2.5952697,-2.7210658,-2.577803,-2.6488457,-1.5616568,-3.1905034,-3.2234778,-3.2661705,-3.2012095,-3.2190692,-3.2458167,-2.838091,-2.564459,-2.8273563,-2.7485664,-1.6354986,-2.214863,-2.388741,-2.6550932,-2.8617878,-2.485383,-2.347821,-2.6569808,-2.765594,-2.9400985,-3.0369775,-3.0023704,-2.8216872,-3.177587,-2.8115253,-2.6896954,-2.5612764,-2.2138882,-2.9018369,-2.9578524,-2.3777404,-2.74984,-2.7801795,-2.699862,-2.8840299,-2.7997239,-2.8537326,-2.8282251,-2.9464374,-2.7999816,-2.737988,-3.4043941,-2.3404908,-3.1962993,-2.0294468,-2.979116,-2.7323613,-2.3254032
+-1.3947339,-2.2569323,-2.476896,-2.3789308,-2.323,-2.6005936,-2.6489174,-2.0475454,-1.7311875,-2.6003194,-2.5359612,-2.4780312,-2.6370344,-2.8579242,-2.4439383,-1.5883734,-2.1862957,-2.2942972,-2.888454,-3.0096095,-2.9554267,-2.7249298,-2.5617683,-2.8542347,-3.0237575,-2.9265392,-3.0413637,-2.7367327,-1.3476387,-2.473333,-2.162936,-2.731979,-2.883206,-2.8554642,-2.753488,-2.7393541,-2.9033928,-2.9163399,-2.890171,-3.119718,-3.1904085,-3.2993011,-3.4539475,-3.4569209,-2.0075834,-2.886547,-2.836949,-1.6214074,-2.4689443,-2.8794193,-3.2263694,-3.4544082,-3.5862327,-3.6890223,-3.77796,-3.7771578,-3.7389555,-3.8079963,-3.8706415,-4.067017,-4.012333,-3.8225865,-3.7893715,-4.0815935,-3.9886918,-3.872364,-3.850136,-3.897647,-4.0405087,-3.9996653,-3.978671,-3.8461256,-3.6975813,-3.8558173,-3.9506412,-4.162532,-4.258649,-4.341795,-4.4139743,-4.43654,-4.1452637,-3.9576318,-3.881532,-3.896871,-3.7955492,-3.7451868,-1.9671034,-2.8341544,-3.0322795,-2.0321045,-2.5320966,-2.0281577,-1.8846381,-2.6471004,-2.038361,-2.6862016,-3.1776412,-3.4332078,-3.5655146,-3.6428144,-3.689479,-3.7811952,-3.9512572,-4.0413322,-4.1375265,-4.10925,-4.0218906,-3.8934739,-3.7432318,-3.0676422,-2.9043403,-3.164676,-3.4141905,-3.5137677,-3.5999618,-2.8299031,-1.9844283,-1.9248037,-2.2434573,-2.2369258,-2.206153,-1.667263,-1.8245147,-2.348508,-2.4184043,-2.1203775,-1.9942409,-2.3977423,-2.6805563,-2.4920483,-2.7067456,-2.6771717,-1.1178782,-2.5714347,-2.6546867,-2.8280587,-3.0700998,-2.9154375,-2.7601416,-2.760166,-1.922839,-2.1879728,-1.6083757,-2.1624098,-2.4217885,-2.614389,-2.7786222,-2.917289,-2.8679335,-2.681144,-2.8961463,-2.9340553,-2.9541616,-2.9591527,-2.481093,-1.7182043,-2.5104687,-2.7409186,-2.6984015,-2.9486127,-3.1147583,-3.417181,-3.4248333,-3.2962518,-2.4178872,-2.5321903,-2.7189684,-3.1094751,-3.3505898,-2.6979458,-3.1966658,-3.661518,-3.8733287,-1.409036,-1.175411,-2.2222474,-2.6755292,-2.994884,-3.14107,-3.2415679,-3.2813892,-3.3653011,-2.1845267,-2.7700033,-2.8231015,-2.548369,-3.0688832,-3.358259,-3.3694522,-3.5652587,-2.8248396,-1.6907214,-2.7525995,-2.9819036,-3.1640167,-3.3839414,-3.3999586,-3.4655023,-3.514391,-3.5421844,-3.532303,-3.535478,-3.608181,-3.615149,-3.6294856,-3.6007967,-3.6031513,-1.9799603,-2.918899,-3.2447987,-3.2937932,-3.289628,-3.4009295,-3.3448305,-3.3876717,-3.450935,-3.3943605,-1.0658882,-2.3607662,-2.6733284,-3.0264366,-3.268989,-3.4430175,-3.6219394,-3.6173325,-3.6231413,-3.6997898,-3.7859845,-3.7760053,-3.680258,-3.2183604,-4.026466,-3.9712386,-3.7441766,-1.5010382,-2.3374457,-2.7787127,-3.3277283,-3.61133,-3.6512399,-2.6105452,-3.15375,-2.754444,-3.459084,-3.4574313,-3.1939244,-3.2859812,-3.6545243,-3.6940055,-3.5344763,-3.7281294,-3.9825487,-3.8563533,-3.7711344,-3.496562,-3.654551,-3.756093,-3.5874224,-3.6711664,-2.7350862,-2.0558946,-3.17906,-3.534091,-3.6934664,-3.5517535,-1.9893168,-2.1242566,-2.2119608,-1.967821,-2.42244,-2.6250682,-2.6738105,-2.7570713,-2.8142562,-2.4371443,-2.0807457,-2.2799296,-2.3692198,-2.439136,-1.9707493,-1.8034832,-2.3931108,-2.140279,-2.1735651,-2.3525648,-2.33999,-2.5220742,-2.4069157,-2.3927016,-1.7917546,-2.040615,-2.0571027,-2.1290452,-2.3311791,-1.9952158,-1.756318,-2.104353,-1.7814039,-1.7173223,-2.131329,-2.2810802,-2.306069,-2.365121,-2.3593607,-2.3701286,-2.3227482,-2.3545003,-2.419669,-2.3363397,-2.3786669,-2.3756363,-2.3403916,-2.1208076,-2.1204376,-2.2208843,-2.4019022,-2.5538363,-2.5073237,-2.6150618,-2.5984097,-3.0902128,-3.2997785,-3.166387,-2.757772,-2.637549,-2.8463397,-2.8492925,-2.8547459,-3.001422,-3.0431771,-3.7375183,-3.529365,-3.3115606,-2.4437213,-3.2123044,-3.5936139,-3.6143677,-3.3238933,-3.2847972,-3.0497422,-3.5109262,-3.5907278,-3.4863138,-3.363655,-3.286293,-3.3667815,-3.3820167,-3.373854,-3.3715339,-3.2686243,-3.1973562,-3.0927398,-3.0759768,-3.0965765,-3.07197,-3.025775,-2.6222873,-2.0543556,-3.2728262,-3.0434356,-3.1690717,-2.8667603,-2.9465709,-3.4028955,-2.9872327
+-2.428462,-3.0469437,-3.7421508,-4.1322145,-4.3080964,-4.378239,-4.447447,-1.421743,-1.0643039,-2.0091715,-1.557485,-1.295932,-2.0313087,-2.732659,-3.1324828,-1.3777813,-1.1983259,-1.2679646,-2.4341013,-3.2748995,-3.8388393,-3.150723,-3.509832,-4.0701923,-4.123543,-4.1579437,-3.9122267,-3.9306748,-1.7827832,-1.1489146,-1.228098,-1.4899553,-2.0524328,-2.8803108,-3.3296247,-3.5368843,-3.865361,-3.798852,-3.6851346,-3.9268968,-4.0516195,-4.090827,-4.0791078,-4.1899815,-3.25286,-3.8549283,-1.6862701,-0.9613971,-1.9987131,-2.390595,-3.124236,-3.7582235,-4.0718374,-4.2291303,-4.342207,-4.2546487,-4.1358757,-4.227249,-4.2737956,-4.297584,-4.077551,-1.5800217,-1.4753942,-3.3584561,-3.7959847,-3.6362472,-1.3523036,-3.094847,-3.6641693,-3.9343889,-3.994052,-3.8284113,-3.2952504,-3.8722534,-4.028282,-4.1471786,-4.2206187,-4.292037,-4.34666,-4.2178345,-3.8360004,-3.620286,-3.6800172,-1.8860861,-1.4501671,-3.0125132,-3.1913342,-1.1131337,-2.5508506,-3.0962605,-1.1895033,-1.4336275,-1.4463934,-2.787015,-2.4756725,-3.4850144,-3.9479167,-4.0180874,-3.967678,-4.0572357,-4.089881,-4.157647,-4.2081122,-4.2197666,-4.2470055,-4.1464853,-4.089447,-4.0668516,-3.7157593,-3.386142,-1.2960142,-2.3544064,-1.6755859,-3.1228313,-3.401915,-2.2051845,-2.561977,-1.2440097,-2.098574,-1.4343626,-1.4057152,-1.6736171,-2.6224957,-2.8601608,-3.0894814,-0.84434456,-1.4770561,-1.5631766,-2.0730753,-1.9811224,-1.8714751,-1.3352741,-1.8100188,-2.9038043,-3.350552,-3.4395742,-1.9735607,-3.0286593,-3.4166362,-2.398522,-1.1162213,-2.6129918,-1.2002162,-1.4712377,-1.8287889,-2.3107333,-3.0266285,-3.3922768,-1.3215896,-2.7783794,-3.324263,-3.449368,-3.440443,-3.5795279,-3.6101744,-3.4625294,-3.7464795,-3.8451328,-1.6411357,-1.1521468,-1.2874163,-3.1507125,-3.5401917,-3.5430226,-0.9428504,-2.2240806,-2.7995396,-0.7035467,-1.6854317,-2.5931163,-3.5287085,-4.162509,-4.1543546,-3.9118223,-1.7254425,-2.4720333,-3.4909828,-3.9649196,-3.9950027,-3.7412505,-3.8521638,-3.7183247,-1.0726532,-1.0641356,-2.6352763,-2.8832104,-3.7844763,-4.127093,-4.2100945,-4.2999573,-3.6113038,-0.1884048,-1.739174,-2.368372,-2.9187553,-3.2480628,-3.8791203,-4.1418753,-4.306769,-4.312193,-4.3672276,-4.44003,-4.406581,-4.345018,-4.293707,-4.3143435,-4.3024225,-3.6787596,-4.0549374,-4.211945,-4.113409,-4.0698705,-4.1443233,-4.1089354,-4.052682,-4.0466304,-0.797197,-1.0345683,-1.8783942,-1.7114462,-2.607307,-3.0250814,-3.3041077,-3.4152412,-3.453848,-3.5117002,-3.6403246,-3.8569174,-4.029439,-4.0773816,-4.015406,-4.244155,-4.120624,-4.058796,-0.8648981,-1.3847041,-2.7361064,-3.2233005,-3.5966277,-3.547999,-3.2180915,-3.397386,-3.2880406,-3.9691648,-4.0221734,-3.6526225,-3.4076757,-4.1047726,-4.1247535,-3.9588497,-4.0359707,-4.006701,-3.9959307,-4.0707035,-4.0361013,-4.0147786,-3.9520035,-3.9400864,-3.9600549,-2.4818525,-1.0388768,-3.3163776,-3.696506,-3.8633509,-3.507399,-1.2360698,-1.8449919,-2.6830642,-2.7291884,-3.458239,-3.589061,-3.7851636,-3.8054729,-3.7477725,-1.5722139,-2.307577,-2.3542037,-2.885948,-2.930942,-3.1105974,-1.6381506,-3.4342701,-3.1221938,-3.2852674,-3.4790797,-3.4855824,-3.5479426,-3.4511971,-3.334583,-0.48889807,-1.7949766,-1.8854401,-2.7343504,-2.9693928,-2.3544445,-1.8489667,-3.1436505,-2.674749,-2.9581852,-3.580822,-3.8389308,-4.032575,-4.1791697,-4.169464,-4.1832514,-4.1740932,-4.195244,-4.155209,-3.958898,-4.008173,-4.112394,-3.950013,-3.8798103,-3.9020321,-3.93782,-3.9532297,-3.9911718,-3.810397,-0.7402726,-1.8410032,-2.7221,-3.1093614,-3.2525868,-2.9837532,-1.60257,-2.810038,-3.2519653,-3.4305274,-3.6180277,-3.7817109,-4.0675716,-3.8730514,-3.5379562,-3.4641232,-3.8925729,-4.1050987,-4.205098,-4.013471,-4.116889,-4.0960093,-4.2185826,-4.377449,-4.489169,-4.515167,-4.5474443,-4.422882,-4.4848127,-4.5028477,-4.555155,-4.587107,-4.595926,-4.527466,-4.5078335,-4.5868053,-4.503301,-4.3668203,-4.228569,-4.0527616,-4.2120166,-4.201274,-4.11693,-1.2794437,-1.387798,-3.0374608,-3.4472222
+-2.8052645,-3.8616498,-4.4365616,-4.8394103,-4.9140306,-4.9338493,-5.0713644,-3.0240774,-1.2170373,-3.2533593,-3.5168548,-0.8659955,-2.0792806,-2.6758041,-2.9860916,-3.2721605,-3.246626,-3.7167554,-4.226059,-4.657774,-4.8301926,-4.7759714,-1.4436613,-3.5450807,-4.2194777,-4.5323257,-4.6035814,-4.794878,-4.732312,-4.570473,-2.478728,-3.1847808,-4.140419,-4.541151,-4.7120066,-4.60839,-4.706731,-4.744028,-4.470977,-4.5958295,-4.6734986,-4.7893257,-4.6798525,-4.755016,-3.5276363,-4.6224995,-1.3992549,-1.6794286,-1.954099,-2.8720486,-3.7222972,-4.2888236,-4.6168184,-4.814398,-4.8621516,-4.8301964,-4.749763,-4.852253,-4.9064,-2.6544273,-2.2756677,-2.0984335,-3.4202824,-4.259097,-4.621242,-4.1517653,-1.4489276,-2.833474,-3.7673082,-4.340475,-4.501325,-4.4593487,-4.1096506,-4.583247,-4.6836314,-4.8096356,-4.8250017,-4.8355985,-4.849075,-4.857599,-4.641839,-4.3681145,-4.4412246,-4.54157,-3.2916567,-3.6294675,-4.1207523,-3.8968706,-2.501298,-3.3394516,-3.9732418,-1.5590092,-2.4696288,-3.5149455,-3.6749067,-3.9263263,-4.417414,-4.3406243,-4.205905,-4.0680237,-4.512686,-4.553817,-4.5748205,-4.632122,-4.664747,-4.7151527,-4.602044,-1.7478241,-3.5104623,-1.5961179,-1.334309,-2.632307,-3.122232,-3.7038274,-4.086752,-3.4935784,-1.4605826,-2.8529804,-1.650904,-3.1063924,-3.137174,-0.91227865,-2.2185452,-1.6507603,-2.4785461,-2.841981,-1.478149,-1.3041667,-1.8660456,-2.9003985,-3.3989916,-2.297069,-1.1159481,-2.951822,-1.4061464,-1.8348895,-2.8441303,-3.3931203,-3.8010635,-4.0880604,-4.0187793,-4.2184563,-3.205762,-0.5873969,-2.1852727,-2.7245498,-2.8872209,-3.3908644,-2.4202337,-2.3845263,-3.2403293,-3.517311,-3.362916,-2.03691,-2.538519,-3.04483,-3.7636814,-4.0798388,-2.422112,-0.5655792,-1.8021613,-2.3794394,-3.083418,-3.206918,-2.0542374,-1.5455083,-2.938033,-3.2689505,-3.8024852,-4.286255,-4.6133842,-4.868056,-4.838482,-4.598402,-4.542583,-4.613166,-4.5351143,-4.769538,-4.6644263,-1.0540882,-3.1108487,-3.4471173,-0.838502,-2.3613133,-3.054119,-3.2787547,-3.758267,-4.159885,-4.4178057,-4.7131276,-4.4198985,-0.99160963,-2.405324,-3.1320734,-3.694771,-4.0509624,-4.5649443,-4.768323,-4.876175,-4.908592,-4.9910793,-5.006288,-5.0402246,-4.8466225,-4.868081,-4.936022,-5.0070066,-4.929308,-4.8706822,-4.976629,-4.867421,-4.836425,-4.925544,-4.8757286,-4.797518,-3.8248265,-2.0354629,-0.854901,-2.0475647,-2.5674567,-3.0447462,-3.370337,-3.5706496,-3.5017602,-3.5340943,-3.563021,-3.5764625,-3.7300093,-3.9377282,-4.034017,-4.067261,-4.463894,-4.291554,-4.313231,-4.065767,-4.079023,-4.307419,-4.4131265,-4.5846243,-4.260311,-4.1631765,-4.047612,-3.5741277,-4.2507687,-4.1717396,-3.8777056,-2.6025443,-4.0301576,-4.1458597,-4.072074,-3.9416976,-3.8661847,-3.7322435,-4.0039425,-4.056451,-4.2136745,-4.214972,-4.298688,-4.36176,-4.3496146,-3.93219,-4.3291664,-4.028661,-4.1068287,-4.1681128,-0.6896379,-2.0675635,-2.9542813,-2.9584806,-3.46489,-3.609034,-3.814445,-3.8024893,-3.4306374,-1.8283881,-2.310153,-2.9959967,-3.2717052,-3.2514143,-3.4448,-3.071288,-3.8574278,-3.3105683,-3.7145033,-3.86719,-3.8495011,-3.9771652,-3.9679632,-3.8418872,-0.80181015,-2.3970456,-2.3785994,-2.947198,-3.099043,-3.1604977,-1.8974885,-3.1173658,-3.1505818,-3.2288866,-3.5641913,-3.9361932,-4.014065,-4.161477,-4.1730337,-4.164105,-4.167268,-4.271792,-4.352913,-4.2784433,-4.2650266,-4.4588766,-4.3437862,-4.3275614,-4.2631893,-4.513275,-4.6702642,-4.7994323,-3.427123,-1.013383,-2.353417,-2.9543953,-3.2067585,-3.2901886,-3.064135,-2.2247787,-3.0080352,-3.360897,-3.6015148,-3.595039,-3.866722,-4.1895027,-4.155346,-4.0347767,-4.2872496,-4.3819304,-4.6887317,-4.762127,-4.5529394,-4.6708655,-4.628353,-4.7864656,-4.9501524,-5.0560045,-5.024295,-5.035997,-4.8813715,-4.882931,-4.9421873,-4.987984,-4.9762735,-4.9666967,-5.019345,-5.0053415,-5.0187836,-4.9930525,-4.9235964,-4.842531,-4.48911,-4.830802,-4.707789,-4.773474,-1.640148,-1.5187942,-3.0334692,-3.9859824
+-2.6508803,-3.7148836,-4.2517486,-4.518857,-4.5804048,-4.626179,-4.4940696,-1.9960183,-2.0428457,-3.5765061,-3.9356346,-1.9898142,-3.0264049,-3.9750423,-4.430539,-4.604573,-4.672533,-4.6839485,-4.7468433,-4.781768,-4.7820897,-4.529872,-3.805138,-4.57205,-4.687058,-4.7220926,-4.7345815,-4.771441,-4.777018,-4.698475,-4.725438,-4.518536,-4.587893,-4.632443,-4.416468,-4.42702,-4.4135437,-4.61563,-4.6330714,-4.665634,-4.6665974,-4.681674,-4.4349885,-4.4705,-3.9856052,-4.541519,-2.4152944,-1.8483932,-1.7733771,-3.5368266,-4.328591,-4.67017,-4.7532115,-4.816651,-4.7918143,-4.77361,-4.8342547,-4.8264217,-4.6637964,-3.7916038,-3.1923087,-4.0827675,-3.7967262,-4.4281063,-4.3930793,-4.191018,-3.913948,-4.301989,-4.281535,-4.348317,-3.8597994,-4.1624703,-4.285095,-4.4901986,-4.616102,-4.604477,-4.643242,-4.640333,-4.6018457,-4.426792,-4.252188,-4.0672693,-4.1941743,-4.287678,-3.1350625,-2.9059434,-2.5039754,-2.338067,-2.4185562,-3.1170573,-3.7559848,-3.497535,-1.9384567,-3.5527534,-4.2159767,-4.1492634,-3.8615215,-4.322875,-3.9410658,-4.3660345,-4.4586067,-4.521089,-4.524988,-4.5456324,-4.5379114,-4.5152407,-4.3563347,-4.3116946,-3.8107069,-3.167613,-3.8662732,-3.974659,-4.049226,-4.168961,-4.2784805,-2.5213332,-3.360754,-1.4074126,-2.71312,-3.441073,-3.7202911,-3.800044,-2.2169375,-2.419426,-1.7182993,-2.3146837,-3.167973,-2.9820254,-3.593793,-3.7858968,-1.7743713,-1.8879629,-2.0631714,-1.9072376,-1.4647683,-1.6086217,-2.7096858,-3.3621724,-3.8615777,-4.003621,-4.100726,-2.0536141,-1.2454643,-1.7014693,-2.5317025,-2.0192456,-3.169479,-3.3870244,-2.6654797,-1.8840541,-2.8842328,-3.0318956,-2.22832,-2.2131019,-2.501401,-2.0062015,-3.016069,-3.5448136,-2.0999691,-1.1522819,-2.1606898,-2.6583598,-3.3373132,-3.48915,-3.9291475,-4.1220436,-4.2242384,-3.6279678,-4.2874317,-4.506974,-4.592333,-4.6049814,-4.459172,-4.1429768,-4.050224,-3.7302487,-4.139814,-4.404403,-2.1063948,-1.1399466,-2.6179678,-2.99551,-0.78992015,-2.0505455,-2.9988542,-3.2854056,-3.9629126,-4.330442,-4.423792,-4.5362096,-4.035789,-3.8491845,-4.0035987,-4.2318716,-4.378233,-4.4054317,-4.5701685,-4.5777245,-4.5734997,-4.591036,-4.6131754,-4.6199045,-4.6084485,-4.391677,-4.3888197,-4.4509764,-4.4741964,-4.4328136,-4.452836,-4.436651,-4.3266697,-4.343484,-4.433481,-4.3474717,-4.296958,-4.08527,-4.040481,-2.4440215,-1.0809833,-2.565596,-3.0690272,-3.6310592,-3.8257487,-3.7590313,-3.8731732,-3.9941387,-4.116642,-4.3221574,-4.4402294,-4.4518585,-4.438652,-4.4948053,-4.267947,-4.3091264,-4.254756,-4.1571865,-4.283248,-4.363556,-4.3494387,-4.030964,-4.1333566,-4.065263,-3.9056704,-4.08836,-4.120541,-4.0788703,-1.3520073,-2.6828997,-3.4085646,-3.7292495,-3.850638,-3.8040519,-3.6262567,-3.9447432,-4.129797,-4.1798897,-4.1934576,-4.189483,-4.265842,-4.2138386,-3.9347365,-4.110596,-3.887988,-4.1028767,-3.6739895,-0.86711884,-1.8945464,-2.6204212,-2.9284601,-3.1404452,-3.3744624,-3.6083527,-2.8747663,-1.7950686,-1.3644642,-1.7912498,-2.3367877,-2.9662895,-3.2245526,-3.4551268,-3.5576625,-3.4741864,-3.603059,-3.8417163,-4.139294,-4.2247047,-4.2789383,-4.2109785,-2.4584568,-0.6774102,-2.228508,-2.1438437,-2.639466,-2.954967,-3.0812995,-1.1334165,-2.628661,-2.7847066,-3.093448,-3.2245867,-3.5401957,-3.4754515,-3.716177,-3.9344065,-4.06114,-4.213848,-4.286388,-4.371894,-4.3541307,-4.3966665,-4.5286446,-4.5207925,-4.5015116,-4.364071,-4.445693,-4.535754,-4.55948,-4.3543825,-0.9185512,-2.3300607,-2.705758,-3.3604207,-3.668451,-3.727141,-3.090507,-3.7571554,-4.1774683,-4.386835,-4.4852896,-4.524708,-4.5257587,-4.4259768,-4.494188,-4.480912,-4.4846997,-4.5493937,-4.426982,-4.443959,-4.490754,-4.5079765,-4.6028776,-4.6135035,-4.7148786,-4.724849,-4.6859674,-4.5953684,-4.6732597,-4.659232,-4.705614,-4.703964,-4.718251,-4.702398,-4.6518483,-4.6348076,-4.6366277,-4.6380997,-4.6197824,-4.592575,-4.6722326,-4.671091,-4.6717567,-4.571239,-4.4753537,-4.5956173,-4.6457844
+-3.2407658,-4.005127,-4.354554,-4.5098553,-4.5237317,-4.6260777,-4.4997883,-2.2433703,-3.401762,-4.0194445,-4.004409,-3.75849,-4.1009855,-4.375119,-4.4435925,-4.426172,-4.4998198,-4.55011,-4.580164,-4.6145086,-4.632126,-3.4492967,-3.8340187,-4.2122993,-4.3408604,-4.37521,-4.5012465,-4.564315,-4.49842,-4.4179177,-4.4938183,-4.288948,-4.3045974,-4.403873,-4.2921724,-4.444673,-4.1432624,-4.3202095,-4.238061,-4.2980604,-4.277009,-4.4350767,-3.9855556,-2.4139228,-3.128747,-3.9081051,-4.0836334,-3.6456819,-4.0058165,-4.2086554,-4.3318415,-4.3108287,-4.30536,-4.363699,-4.2013454,-4.127167,-4.4639173,-4.516207,-4.309624,-2.5016346,-1.4926163,-2.6442003,-3.3676357,-3.9093962,-4.1203957,-4.1085835,-4.1912165,-4.2819786,-4.21305,-4.1020384,-2.0282395,-1.3807763,-1.8989697,-2.786704,-3.598609,-3.8910804,-4.0325747,-4.182361,-4.359482,-4.3824477,-4.289132,-4.145603,-4.102025,-4.058222,-3.036362,-1.499494,-2.9276428,-2.8569698,-1.605395,-2.3799975,-2.0467126,-1.458074,-1.4147345,-2.1397588,-2.8675861,-3.371914,-1.9650129,-1.2661973,-1.5230324,-2.3869698,-2.5120692,-3.2417054,-1.8693675,-2.6583114,-3.4806695,-3.7726245,-3.5904057,-2.1229374,-1.2523664,-2.0753758,-2.9005244,-3.460864,-3.71202,-3.8068624,-3.733787,-1.7905849,-1.7120134,-2.2432828,-2.861042,-3.534332,-3.4942427,-2.083764,-1.8074546,-2.3761315,-1.1108931,-1.5271889,-1.8916091,-2.1251426,-2.9938598,-2.0620441,-1.1342624,-1.6939641,-1.3434302,-1.6626168,-0.93334544,-1.8347284,-2.672912,-3.310961,-3.6406286,-3.3136737,-3.513516,-3.181026,-3.4082875,-1.5666928,-1.9168698,-0.9187129,-2.2229023,-2.651579,-2.720365,-2.1280932,-1.8682932,-2.263185,-1.2229562,-1.7616895,-2.2734437,-1.7570115,-2.4455695,-3.0277352,-1.3633827,-1.1663097,-2.1969213,-2.4537263,-2.741146,-2.8896537,-2.2594547,-2.8384886,-3.2972274,-3.4928305,-3.7169414,-3.921791,-4.0619297,-4.053909,-4.0894127,-3.968234,-3.1321564,-3.6705184,-3.6746666,-1.6576813,-1.0617102,-2.0233626,-2.4701762,-2.1192658,-0.9245574,-2.0556836,-2.9725327,-3.1352773,-3.374086,-3.7008767,-3.7724102,-3.9797182,-1.0703233,-1.9917151,-2.7282295,-3.18496,-3.5946417,-3.9361022,-4.1220994,-4.105683,-4.047481,-4.0667524,-4.0797834,-4.152874,-4.299862,-4.1066203,-4.1195965,-4.2264795,-4.3304205,-4.2367225,-4.236204,-4.3205643,-4.2783,-4.279227,-4.3966403,-4.3786774,-4.280309,-4.2249284,-4.2853856,-2.4786625,-2.73629,-3.6737132,-3.942427,-4.2619987,-4.213743,-4.003132,-3.6613712,-4.047237,-4.096969,-4.256547,-4.5084467,-4.587223,-4.439746,-4.4223814,-4.440365,-4.3957987,-4.367276,-3.9232204,-4.3553705,-4.4841547,-4.5310497,-4.2145357,-4.2358294,-4.007365,-3.707801,-4.2011137,-4.2833548,-4.1402497,-0.7861846,-2.3920012,-3.016049,-3.3519838,-3.4877462,-3.611813,-3.5355072,-3.7180643,-3.9604912,-4.0805664,-4.067289,-4.129496,-4.3316545,-4.3006816,-3.8505354,-4.2216024,-4.0667286,-4.205246,-4.251643,-1.1414226,-1.6355163,-3.121614,-3.2988591,-3.5144744,-3.7401757,-3.9300265,-3.3721461,-2.4010496,-3.1663222,-1.8930632,-2.4016209,-3.2016807,-3.5359967,-3.6111777,-3.6751513,-3.8473163,-3.9653745,-4.175398,-4.2490234,-4.322191,-4.423156,-4.409362,-4.1097546,-1.1272236,-2.616798,-3.0163524,-2.470407,-3.0396936,-3.2980895,-1.3334352,-2.6421,-3.1918068,-3.2403862,-3.1047003,-3.6480026,-3.7579532,-3.8021514,-4.0212784,-4.1396194,-4.193962,-4.1629066,-4.331275,-4.452137,-4.5069885,-4.573134,-4.585211,-4.484367,-4.27993,-4.532671,-4.6535397,-4.6143827,-4.651415,-3.5932672,-2.0568485,-3.2494307,-3.848937,-3.8522024,-4.009861,-3.915118,-3.9115038,-4.1682334,-4.461361,-4.4300327,-4.4729357,-4.52904,-4.5486536,-4.545364,-4.4613824,-4.366509,-4.58036,-4.5375338,-4.338057,-4.429929,-4.373333,-4.5989475,-4.6999,-4.763688,-4.7880754,-4.751996,-4.732854,-4.7396135,-4.729807,-4.722599,-4.7002807,-4.704218,-4.7582574,-4.6788254,-4.646785,-4.6564627,-4.7154546,-4.672722,-4.5027504,-4.6924458,-4.6718187,-4.64139,-4.5271454,-4.3879137,-4.5922956,-4.6239057
+-2.6407433,-3.4762688,-3.9493406,-4.374112,-4.4752245,-4.5619407,-3.6027772,-2.424482,-3.6758385,-4.1120863,-4.165228,-4.350666,-4.3227425,-4.412683,-4.66288,-4.737977,-4.716913,-4.7323027,-4.756752,-4.7508526,-4.7417097,-1.9659122,-1.6208273,-3.6181784,-4.337762,-4.706356,-4.8580136,-4.9733186,-4.9612355,-4.931897,-4.9307485,-4.7358065,-4.5368776,-4.414443,-4.310532,-4.365242,-4.209792,-4.418402,-4.399867,-4.3566484,-4.36796,-4.4798193,-3.5591855,-2.5715938,-2.1471393,-3.7374144,-4.158362,-4.2952313,-4.3952374,-4.537743,-4.5983157,-4.524206,-4.502003,-4.3944397,-4.1230745,-4.135604,-4.525613,-4.6123037,-4.157457,-1.8282871,-1.6372248,-1.9512472,-3.175982,-3.8116875,-4.0842485,-4.084725,-4.180459,-4.296513,-2.8561912,-1.4576313,-2.6284456,-2.6637635,-1.7411118,-3.0624359,-3.5337486,-4.0245686,-2.9539373,-3.9785585,-4.3802824,-4.476989,-4.165442,-3.9643798,-3.0502238,-1.9016277,-2.603117,-2.28433,-1.8914872,-1.7284857,-2.0349667,-2.3895473,-1.7571527,-2.4336853,-1.1746899,-1.7426349,-2.247202,-2.053484,-1.7330016,-1.8123894,-1.8068985,-1.932639,-2.5876312,-2.182032,-1.7552707,-1.9468349,-2.1585116,-2.0708728,-2.6604743,-2.6792815,-1.8403957,-1.621253,-2.044787,-2.528445,-2.9431367,-3.3157377,-1.5740834,-1.7018672,-2.442852,-1.9316219,-2.6956565,-1.4317423,-1.8057189,-2.1324673,-2.0129437,-2.5059433,-1.4146022,-1.9943153,-1.8070968,-2.2985144,-2.393752,-2.1305952,-1.897329,-1.4475416,-1.9023448,-2.0104299,-1.5918785,-1.9883467,-2.3683536,-2.529248,-2.681576,-2.3215337,-1.7965668,-2.6663141,-2.3357735,-1.3865418,-1.711501,-1.9626216,-1.9190813,-2.3753552,-2.1527383,-2.1439025,-1.5957838,-1.9273605,-2.0192661,-2.160997,-2.1353118,-2.4145656,-2.5351076,-2.720363,-1.1794909,-1.466093,-2.4056072,-2.503484,-2.5874557,-2.627953,-2.2604418,-2.6754968,-2.9860826,-3.0062551,-3.254735,-3.3704069,-3.3698773,-3.4417613,-3.1830142,-3.0021396,-3.0414717,-2.1015449,-2.850894,-1.3047222,-1.46712,-2.4564157,-2.3426068,-2.1449785,-1.6243654,-2.0590835,-2.6134026,-2.869812,-3.0949247,-3.25906,-3.3881547,-3.3218532,-0.6752209,-1.7919594,-2.4194663,-2.711663,-3.0066948,-3.2179036,-3.32589,-3.4946892,-3.5705657,-3.6814628,-3.7495368,-3.8406336,-3.887147,-3.5954628,-3.6247945,-3.7068017,-3.8817053,-3.7815807,-3.8368988,-3.8147347,-3.7110116,-3.7954178,-3.86772,-3.884431,-3.9300961,-3.7839046,-3.78093,-3.4890668,-3.3427975,-3.6032565,-3.8913884,-3.907608,-3.6605945,-2.5698462,-2.8205707,-2.388515,-2.9746256,-3.329813,-3.6485372,-3.8810606,-3.856675,-3.8787527,-3.7097528,-3.739081,-3.701651,-3.6315966,-3.800765,-3.7199335,-3.5564213,-3.35535,-3.6202698,-3.7745612,-3.9468288,-3.830222,-4.0183024,-2.4085789,-1.1424123,-2.402843,-2.5925777,-3.230416,-3.3349957,-3.308547,-3.3384485,-3.5017989,-3.679171,-3.6791348,-3.744565,-3.8016288,-3.8226588,-3.868905,-3.692437,-3.8632555,-3.4368494,-3.5426064,-3.466595,-1.7131809,-2.8284738,-3.192171,-3.407747,-3.7333863,-3.4713445,-3.4997737,-2.6089373,-1.708178,-2.855184,-2.0028744,-2.9703302,-3.4598904,-3.557879,-3.7203054,-3.8307672,-3.9329123,-3.866197,-3.9147837,-4.032064,-4.1258893,-4.182675,-3.9394882,-3.719246,-1.2340539,-3.0738983,-2.9270031,-3.0263352,-3.5523357,-3.6923819,-1.8130282,-3.08399,-3.1120296,-3.3482347,-3.7132862,-4.038395,-4.105463,-3.9557164,-4.303239,-4.2972956,-4.229929,-4.2700324,-4.358527,-4.37429,-4.333651,-4.429573,-4.563571,-4.60522,-4.548314,-4.4490275,-4.59902,-4.6194086,-4.439488,-3.0592651,-2.1626205,-2.962722,-2.928402,-3.6591444,-3.664796,-2.6146293,-3.6554143,-4.057543,-4.434251,-4.5754805,-4.690076,-4.805624,-4.817047,-4.756851,-4.7292943,-4.6836395,-4.6286345,-4.1895947,-1.7469183,-3.333932,-3.8773327,-4.4061904,-4.418826,-4.385909,-4.4124684,-4.4591703,-4.4897327,-4.6009216,-4.627347,-4.746053,-4.7772284,-4.742792,-4.730546,-4.571022,-4.526894,-4.66681,-4.751026,-4.765731,-4.8295965,-4.941296,-4.931342,-4.85684,-4.8802547,-4.828764,-4.875236,-4.944376
+-1.6160432,-2.9347277,-3.191969,-3.5103137,-3.81142,-3.9268575,-4.149328,-3.6596732,-4.0703206,-4.2983418,-4.386941,-4.591271,-4.5925345,-4.6627812,-4.6540422,-4.7358065,-4.762843,-4.7821083,-4.7502103,-4.701013,-4.6562166,-1.8788688,-2.3335009,-3.1373234,-3.7696772,-4.1819053,-4.5846405,-4.7688665,-4.8511963,-4.9103937,-4.9673285,-4.915323,-4.8630657,-4.7272468,-4.5862494,-4.5451355,-4.4793944,-4.6150002,-4.5595684,-4.5016594,-4.393571,-4.499485,-4.1355057,-3.1453192,-2.655487,-2.5200722,-3.330111,-4.217088,-4.4614773,-4.6832027,-4.7126474,-4.5150304,-4.5769253,-4.561664,-4.1475277,-2.917067,-4.330428,-4.4728804,-2.7545295,-2.5494065,-3.2358274,-2.2962446,-2.3570256,-3.498096,-3.952957,-4.054185,-4.2598553,-4.0824385,-2.6993105,-1.9195002,-1.7625178,-2.394448,-2.328888,-2.4968345,-2.3759747,-2.6786673,-2.0279574,-2.7282178,-3.4205558,-3.883978,-3.684866,-1.3802687,-1.9693013,-1.7501508,-1.8447505,-2.35391,-2.3839965,-1.971913,-1.9341058,-2.4602551,-2.127324,-2.1833708,-2.432184,-2.460161,-2.6461148,-2.6713195,-2.5134368,-2.491426,-1.9774791,-2.1696596,-2.514586,-2.5756001,-2.3539505,-2.470695,-2.6936677,-2.6078157,-2.3885798,-2.6274736,-2.5247774,-2.4366941,-2.4256558,-2.5940394,-2.596799,-2.706452,-2.6217046,-1.345378,-2.0597425,-2.4262385,-2.4624417,-2.4407132,-2.3531835,-2.536893,-2.6515155,-2.7212734,-2.374928,-2.492797,-2.6568568,-2.6423404,-2.3917089,-2.442079,-2.2463374,-2.58212,-2.6418703,-2.6822658,-2.7815773,-2.2483253,-2.3742828,-2.6386585,-2.579371,-2.5732453,-2.2617774,-2.518051,-2.314476,-2.4272175,-2.5327601,-2.6412587,-2.62744,-2.5379338,-2.6168156,-2.603081,-2.3836527,-2.4992523,-2.5358999,-2.5600371,-2.564579,-2.5593052,-2.5419042,-2.6236258,-2.0444903,-2.5508826,-2.5508065,-2.5720434,-2.3993204,-2.3953915,-2.4276881,-2.4185085,-2.261194,-2.6498637,-2.5781703,-2.692906,-2.6100655,-1.7481648,-2.2361462,-1.8686329,-2.3392892,-2.2835941,-2.500321,-2.421772,-2.5799441,-2.5887656,-2.6572719,-2.5649352,-2.458842,-2.4113824,-2.5725007,-2.6130762,-2.6164405,-2.6757498,-2.7203841,-2.809844,-2.530188,-1.3852853,-2.2727304,-2.5652294,-2.664618,-2.82514,-2.834088,-2.9140048,-2.4391708,-2.7509437,-2.8670578,-2.9066546,-3.1077385,-3.1158614,-3.2284665,-2.7371037,-3.023238,-2.8022022,-2.9299803,-3.1594605,-3.311412,-3.3491023,-3.4218564,-3.51262,-3.4230778,-3.4506907,-3.6041224,-3.602826,-3.6367664,-3.4907136,-3.490495,-3.6018543,-3.395582,-2.8037112,-2.5432043,-2.7492228,-3.1105876,-3.1743891,-3.284489,-3.4607508,-3.4226637,-3.41251,-3.54192,-3.5865855,-3.5147357,-3.4491444,-3.5355053,-3.6291647,-3.6059647,-3.5995789,-3.503628,-3.4765046,-3.5628793,-3.8121562,-3.838544,-1.5105269,-2.6860585,-2.8842356,-2.917633,-3.0642269,-3.1640878,-3.3600535,-3.4121742,-3.4693096,-3.4418452,-3.4951599,-3.53018,-3.6025085,-3.6622481,-3.6266367,-3.5737062,-3.7093725,-3.7132928,-3.6974306,-3.6379251,-3.611517,-2.2106724,-3.1258483,-3.156887,-3.5007064,-3.5609288,-3.488648,-2.3325515,-2.1208594,-2.7905817,-3.0105639,-3.2505617,-3.2889616,-3.3454235,-3.4000874,-3.3981233,-3.6516895,-3.6513584,-3.7411222,-3.692243,-3.7355437,-3.8661308,-3.9191267,-3.872102,-1.6136764,-3.1725907,-3.3109326,-3.4422114,-3.4711924,-3.4539175,-2.9907165,-3.2933543,-3.4005146,-3.3098736,-3.4571967,-3.7298098,-3.802894,-3.9868279,-4.1890726,-4.0132875,-3.70473,-3.7184825,-3.8273845,-3.8791435,-3.881905,-3.920849,-3.9723272,-4.0257998,-4.0733967,-4.1464467,-3.8506303,-4.063188,-4.1030507,-4.148266,-4.0131063,-3.5534024,-2.9459012,-2.5757244,-3.2235513,-2.218371,-3.1363788,-3.2500844,-3.2365487,-3.3314285,-3.536397,-3.7558742,-3.776299,-3.9681883,-4.1270666,-4.299173,-4.3201504,-4.289314,-1.4812046,-2.8639426,-3.0325694,-3.2972279,-3.4181213,-3.008786,-2.679368,-2.8647094,-3.3400211,-3.47369,-3.7522707,-3.869553,-4.034235,-4.113881,-4.253902,-4.3309746,-4.255736,-4.3556204,-4.457682,-4.5427666,-4.6348624,-4.7098074,-4.7316933,-4.7467785,-4.773604,-4.7395234,-4.8189917,-4.882434
+-2.164038,-3.1188598,-3.235675,-3.3588562,-3.483963,-3.5731976,-3.719649,-3.4457207,-3.4334617,-3.0724096,-3.4301038,-3.7846687,-4.0319767,-4.07603,-4.021162,-4.0569134,-4.107738,-4.1588354,-4.16507,-4.0644326,-4.0020823,-2.6891537,-3.0252585,-3.4831262,-3.8233287,-3.948427,-4.133379,-4.2020874,-4.1745367,-4.2473373,-4.296458,-4.3463316,-4.2777786,-4.2302437,-4.087327,-4.204147,-4.049816,-3.9325042,-3.9322362,-4.0743394,-4.037701,-4.0372696,-3.34077,-3.0875597,-2.5055346,-1.9033539,-2.7795873,-2.983999,-3.1513758,-3.3583922,-3.503522,-3.603291,-3.7486968,-3.8263865,-2.310181,-2.7257433,-3.221433,-3.5386608,-3.881268,-3.5397594,-1.9878885,-2.336092,-2.784368,-3.0742579,-3.3753855,-3.59479,-3.7478476,-3.3854654,-1.6847425,-1.672784,-2.8588724,-2.9152267,-2.9142823,-2.8815153,-2.8894482,-2.8503573,-2.8312201,-3.0101228,-3.345751,-3.6887488,-3.6526482,-2.509089,-2.2389696,-2.3783395,-2.2814217,-2.7176976,-2.9375193,-2.7041552,-2.9849575,-3.1990895,-2.96526,-3.0948074,-3.1312206,-3.1532798,-2.925177,-3.1103318,-3.073725,-2.9084973,-2.4818764,-3.0519834,-3.1591187,-3.062047,-3.0521202,-3.055118,-3.049417,-2.7202654,-3.0222,-3.0798616,-2.822669,-2.8852115,-3.0735478,-2.9088376,-3.1502876,-3.0476146,-2.6322727,-2.9026332,-2.6175017,-3.1272693,-3.1486053,-3.0866554,-3.2537549,-3.0330737,-2.835771,-3.177763,-2.779254,-3.1698833,-3.26011,-3.156261,-3.3319912,-3.0802858,-2.667614,-3.2035894,-2.9623394,-3.0001884,-2.587543,-2.5274086,-2.8887882,-3.138226,-3.0324936,-3.0639098,-2.598151,-2.8092036,-3.0345035,-3.2673867,-3.2274156,-2.9232647,-2.6134324,-2.8281121,-3.0885303,-2.9587092,-3.1273537,-3.22437,-3.275815,-3.2076826,-3.1715765,-3.1468167,-2.9379985,-2.8425045,-2.2046885,-3.0760484,-3.086679,-3.0400565,-2.8487494,-2.8289807,-3.0842447,-3.0669565,-3.0699873,-3.0357842,-2.97023,-2.9970589,-2.271339,-2.3556414,-2.8796172,-3.1172824,-3.1596758,-3.0868235,-2.6859198,-3.1123104,-3.2472696,-3.3311794,-3.1649137,-2.7615461,-2.9161232,-3.0830126,-3.0854468,-3.0843897,-3.0360484,-3.0775151,-3.0508506,-3.2032244,-2.6987681,-2.6555612,-3.2776186,-3.1673656,-3.1736073,-3.2340097,-3.260089,-3.072359,-3.0000901,-3.0887775,-2.7766986,-2.7967358,-3.253253,-3.240932,-2.5439057,-3.1145594,-3.313221,-3.3582609,-3.258068,-3.3947513,-3.512703,-3.5255075,-3.558974,-3.5608876,-3.567319,-3.6968622,-3.7738369,-3.8219714,-3.7664459,-3.5599265,-3.6417618,-3.6721387,-3.6286888,-3.8738403,-3.7052104,-3.8559012,-3.8496099,-3.7971804,-3.8241353,-3.934856,-3.7979674,-3.8403919,-3.9006333,-3.981801,-3.826323,-3.7527568,-3.9365761,-4.0099163,-3.9764986,-3.9338365,-3.7702537,-3.6178546,-3.6827326,-4.0081987,-4.0397453,-3.807941,-2.1076784,-2.3424263,-2.8621297,-3.253449,-3.5358665,-3.7177145,-3.7410915,-3.8448064,-3.8886762,-3.9000194,-3.8631163,-3.881306,-3.849779,-3.8345194,-3.7296996,-4.033707,-4.0276356,-3.9922624,-3.8753123,-3.902028,-2.439639,-3.7057261,-3.5409565,-3.9515498,-3.8623064,-3.7369158,-3.4354053,-3.3413904,-2.8405533,-3.4302936,-3.6462014,-3.830428,-3.7429523,-3.7155676,-3.6488914,-3.7693672,-3.823905,-3.8674812,-3.7548892,-3.7722187,-3.9316661,-3.9956894,-4.009243,-2.2923632,-3.7105577,-3.7939234,-3.8434246,-3.8337107,-3.8548045,-3.2376962,-3.646163,-3.8107421,-3.5247393,-3.4128194,-3.8757262,-3.8544996,-3.957669,-3.964459,-3.9845219,-3.8360915,-3.8333507,-3.9110973,-3.9808903,-4.0092907,-3.984717,-3.9471936,-3.8701854,-3.8800628,-1.8199204,-3.1713777,-3.2656424,-3.351788,-3.431401,-3.7415636,-3.6157055,-2.9923964,-3.5202007,-3.4732366,-2.3588982,-3.2981951,-3.627078,-3.704407,-3.6161773,-3.707768,-3.7118073,-3.5509198,-3.6599157,-3.6597703,-3.838708,-3.917245,-3.9403021,-2.1384695,-3.4082413,-3.4990382,-3.581138,-3.6001604,-3.3949618,-3.5077336,-3.4289207,-3.3111963,-3.3680086,-3.591806,-3.5572128,-3.7284608,-3.755179,-3.9070613,-3.9393158,-3.8418884,-3.8882027,-3.9723039,-3.9778442,-4.0777707,-4.1532927,-4.1227503,-4.1658487,-4.1051416,-4.121338,-4.233484,-4.19878
+-1.8299173,-2.467196,-2.722928,-2.937325,-3.2139058,-3.5021658,-3.5933247,-3.185307,-3.1375077,-2.775041,-3.037954,-3.1462824,-3.2583783,-3.3646727,-3.4581008,-3.4879553,-3.477797,-3.4974055,-3.505561,-3.5230823,-3.557379,-3.4969504,-3.4896863,-3.5676322,-3.5855372,-3.6178908,-3.613761,-3.6715534,-3.646732,-3.6452277,-3.7174902,-3.6801777,-3.7596176,-3.679873,-3.689781,-3.7140076,-3.662961,-1.6713995,-2.5634046,-2.828342,-3.1252463,-3.2797809,-3.2215405,-3.1424599,-3.0277324,-2.997468,-3.0339806,-3.2434387,-3.337799,-3.4011512,-3.4997206,-3.518378,-3.5296586,-3.5563698,-3.439005,-3.3616633,-3.409185,-3.5314007,-3.6494455,-3.425264,-1.3987831,-2.3371303,-2.6060567,-2.9333715,-3.1975822,-3.3931665,-3.4231272,-3.3406157,-3.2816517,-3.2458344,-3.1749382,-3.1914415,-3.280598,-3.3118486,-3.3258445,-2.9722319,-2.2347457,-2.2781937,-2.0313728,-2.7511673,-3.0048628,-2.4997323,-1.4228078,-1.7213734,-2.8721964,-3.0946689,-2.6847043,-2.9828107,-2.8144572,-3.251638,-3.1928766,-3.2403042,-3.1932833,-2.9596777,-3.131228,-3.0820808,-2.9968493,-3.094645,-3.0289137,-2.9430952,-2.9909177,-2.4859545,-3.021326,-2.8713636,-3.0003042,-2.9945698,-2.919074,-2.957113,-3.0740619,-2.8216796,-3.1242964,-2.9074168,-3.04666,-2.4815545,-2.6910386,-3.1497183,-3.2332904,-3.0934634,-2.935491,-3.23756,-3.2847764,-3.252681,-3.0897264,-3.1450458,-3.061678,-2.986226,-2.9491868,-2.9177861,-2.8308172,-1.8397343,-3.0334668,-3.0065541,-3.0206048,-2.9762926,-2.9235082,-2.979413,-2.9200437,-2.8159335,-3.0155392,-2.7306297,-2.891478,-3.0929985,-3.0663714,-2.9535894,-2.8322802,-3.0908773,-3.159297,-3.1210644,-3.0687995,-3.0125191,-3.1000845,-2.8022232,-3.0940275,-2.9936628,-2.9164767,-2.8975663,-2.7446415,-2.9634063,-2.7213736,-3.0697193,-3.0271263,-2.9551158,-2.4522235,-3.026676,-3.0295782,-3.0412211,-2.958746,-2.8795176,-2.9158845,-2.9524252,-2.2009141,-3.0670257,-2.9778385,-2.9332972,-2.7837946,-2.9219103,-3.004829,-2.8635964,-3.1223543,-3.1866157,-3.0685117,-2.659912,-2.8717628,-2.9768794,-2.9263334,-2.6883872,-3.0020204,-3.0005772,-2.991516,-3.0663712,-3.0831127,-2.937214,-2.997663,-2.986142,-2.9835196,-3.0516987,-3.1547074,-2.9476695,-3.0414286,-3.0662246,-2.6825309,-2.8835492,-3.1448889,-3.17484,-3.085368,-2.9089127,-3.337445,-3.3401277,-3.3670466,-3.4535222,-3.5493858,-3.5730748,-3.530541,-3.5112233,-3.5388033,-3.6367445,-3.7413397,-3.8121972,-3.7981434,-3.6356187,-3.722987,-3.7823758,-3.6389809,-2.507717,-3.4778895,-3.5211697,-3.5591767,-3.556238,-3.6343803,-3.7388918,-3.6356845,-3.7620387,-3.869475,-3.9163303,-3.8079424,-3.6446214,-3.828579,-3.8786335,-3.8476923,-3.891786,-3.7108834,-3.6596494,-3.678632,-3.740734,-3.746474,-3.1058743,-2.5050256,-3.283413,-3.4760888,-3.7797835,-3.6598568,-3.937708,-3.9059153,-3.8503332,-3.8645167,-3.8290825,-3.840223,-3.8795562,-3.8444586,-3.9305997,-3.8335438,-3.8923988,-3.9108615,-3.9336832,-3.875999,-3.8239927,-2.212095,-3.441215,-3.44122,-3.5205376,-3.4395466,-3.5046172,-3.4550982,-3.4483862,-2.1799958,-3.3978484,-3.5522778,-3.5301816,-3.5173748,-3.535331,-3.571474,-3.669684,-3.8350956,-3.9242308,-3.9123783,-3.8863602,-3.886095,-3.882245,-3.7735715,-2.7810283,-3.6235,-3.5381854,-3.6380644,-3.6605916,-3.7329783,-3.624463,-3.6755672,-3.7008357,-3.6099477,-3.4734385,-3.6494582,-3.6550267,-3.6827874,-3.6602244,-3.6502128,-3.1887913,-3.3557887,-3.663547,-3.6602921,-3.6921005,-3.6733146,-3.6543055,-3.685018,-3.7487483,-3.8204393,-3.828689,-3.8230872,-3.8010468,-3.705615,-3.6480012,-3.7418935,-3.2578356,-3.5531197,-3.4169621,-1.5693164,-3.4246626,-3.3977158,-3.4549527,-3.4789515,-3.509056,-3.4695249,-3.4720716,-3.5939987,-3.636025,-3.6664877,-3.6898355,-3.7663288,-2.5340097,-3.2647564,-3.2880259,-3.4226682,-3.559552,-3.581248,-3.544189,-3.4707475,-3.5157752,-3.468687,-3.5809565,-3.5803745,-3.6387243,-3.632402,-3.6262279,-3.626049,-3.6352055,-3.6795986,-3.7138894,-3.6799033,-3.724689,-3.8579674,-3.8121784,-3.8169792,-3.7847986,-3.7300243,-3.731807,-3.8088677
+-0.8095828,-0.907336,-1.3525518,-1.6475545,-1.8707013,-2.1452584,-2.2645688,-2.0970817,-2.140089,-2.5224965,-2.5376723,-2.3987484,-2.3739307,-2.349714,-1.9156573,-2.530488,-2.394422,-2.4433584,-2.3924794,-2.381344,-2.4491577,-2.3677714,-2.338334,-2.457344,-2.6513596,-2.4777503,-2.813302,-2.7946494,-2.742286,-2.772553,-2.8645434,-2.9104972,-2.9771795,-2.9899912,-3.1092188,-3.0085912,-3.0998273,-3.0621169,-2.489058,-1.5754343,-1.290799,-1.7175149,-2.0558147,-2.234631,-2.3834887,-2.391533,-2.478209,-2.5872893,-2.6740286,-2.7397604,-2.7003574,-2.6529164,-2.8286219,-2.3512006,-2.353982,-1.6335441,-1.9829477,-1.8964733,-2.0024235,-1.9278969,-1.0973463,-1.3312428,-1.7855457,-1.7442797,-2.0710793,-2.2274628,-2.2883027,-2.4292307,-2.4343362,-2.1073895,-2.504568,-1.5845801,-1.4294304,-2.1296303,-2.2548816,-2.25489,-0.8835098,-1.7016939,-1.8053811,-1.0521619,-1.416768,-2.035284,-0.685206,-1.5124052,-1.2305638,-0.96681875,-1.0627011,-1.0675713,-1.389584,-1.2725002,-1.4784248,-1.4086922,-1.4449207,-1.2950069,-1.6847594,-1.0416235,-1.5350884,-1.23241,-2.0167139,-1.2377319,-1.6028868,-1.0276263,-0.5900581,-1.0356573,-1.1924328,-1.2880665,-1.2917355,-1.210797,-1.5012041,-1.8231183,-1.9836711,-2.4152875,-2.5725594,-2.1626813,-2.3903399,-2.56783,-1.9037033,-2.064871,-2.3931618,-2.2097917,-2.2352614,-1.8881942,-2.3311076,-2.6847792,-1.7567161,-1.6550897,-2.1977108,-2.5125172,-2.4971724,-1.4872838,-1.9547697,-1.7018663,-2.0485902,-2.2875867,-2.424337,-2.0535412,-2.1482923,-2.632463,-2.277553,-1.8906567,-2.1976542,-2.598816,-2.952356,-3.2073064,-3.0624743,-1.9099215,-2.5680666,-2.1534228,-2.4152102,-2.8755884,-3.0594006,-3.2335649,-3.2988946,-3.3625484,-3.3794262,-3.4522762,-3.765857,-1.7758162,-2.3196502,-2.2277734,-2.3513744,-1.8808402,-2.581783,-2.677231,-2.8285213,-2.938683,-3.07655,-3.28396,-3.4468837,-3.5913882,-2.972355,-3.4053602,-3.7708902,-3.2567234,-2.871838,-2.0131288,-2.3676782,-2.2371912,-2.85073,-3.193445,-3.3912048,-3.4619045,-3.5027556,-3.548014,-3.4196243,-1.6159979,-2.1801214,-1.2824419,-1.3426219,-1.6330643,-1.7660109,-2.3527122,-1.8824443,-2.1418839,-2.0562353,-2.267894,-2.749076,-2.8584309,-3.0385404,-2.9705675,-2.9319093,-2.9471602,-3.0635185,-3.165814,-2.5916557,-2.7660522,-2.9035556,-3.1007981,-2.9837022,-3.1309104,-3.0350156,-2.9226317,-3.1297226,-2.6105013,-2.7746336,-2.8208563,-3.110792,-3.2736304,-3.4806552,-3.6306272,-3.474667,-3.651526,-3.7454877,-3.4564404,-3.6395345,-3.8060508,-3.6954527,-3.7173934,-3.462309,-3.3405194,-3.2457,-3.445037,-3.4498262,-3.2854314,-3.2494648,-3.283649,-3.4146235,-3.345818,-3.4046435,-3.3707745,-3.3531964,-3.4448009,-2.9139967,-2.9177527,-2.857045,-2.919795,-2.9541073,-3.0961556,-2.717941,-2.8027358,-2.7820575,-2.825189,-2.8707974,-2.8274608,-2.7695005,-2.7969015,-2.832387,-2.8387594,-2.8561213,-2.8471682,-2.8374636,-2.834304,-2.7283664,-2.7239842,-2.709469,-2.7678008,-2.89223,-2.862798,-2.6500516,-2.6904938,-2.7082438,-2.6995964,-2.7990165,-2.7674758,-2.767826,-2.8270278,-2.8019078,-2.803308,-2.7645733,-2.7683976,-2.7797542,-2.7703192,-2.7563043,-2.586861,-2.6487026,-2.6302185,-2.6891372,-2.6566799,-2.780631,-2.8001606,-2.740333,-2.583403,-2.237647,-2.2534204,-2.2745671,-2.2809951,-2.2649546,-2.395683,-2.3687625,-2.4527187,-2.5625982,-2.5307157,-2.3466835,-2.2360082,-2.0376797,-2.3252263,-2.4951823,-2.5385816,-2.6171026,-2.4643052,-2.4196732,-2.204906,-2.2798214,-2.3206306,-2.3240156,-2.2025092,-2.260739,-2.4148111,-2.3715827,-2.3205922,-2.052433,-1.6812764,-1.4691228,-1.687173,-1.8145764,-1.7475177,-1.5853328,-1.8274946,-2.0901349,-2.1071606,-2.0928683,-1.9398651,-2.002127,-2.01162,-1.9814008,-2.066641,-2.1874545,-1.9057293,-1.7198519,-1.5922482,-1.8786023,-2.2039123,-2.0414758,-1.866598,-1.8143181,-1.7232,-1.8413516,-1.798806,-1.5155696,-1.0278469,-1.0005041,-1.0075649,-0.67211664,-1.1094278,-1.6662728,-1.3498703,-0.74494714,-1.1333278,-1.0629117,-1.1033458,-1.3542739,-1.5526272,-1.5645319,-1.6764721,-1.7467567
+-1.0826231,-1.5219055,-1.7179271,-2.0661125,-2.1088436,-2.3692746,-2.6581814,-2.8051145,-2.8953629,-2.8239822,-3.2557168,-3.017304,-3.000393,-3.0772476,-1.6102706,-3.126378,-3.2226782,-3.064519,-2.9229527,-3.0397096,-3.1019826,-3.1856308,-3.2123194,-2.1323571,-2.847999,-3.023263,-3.0552974,-3.1763659,-3.1873384,-3.1595159,-3.2823305,-3.3031254,-3.3555012,-3.4905376,-3.6159463,-3.629361,-3.7623725,-3.8075418,-3.4568295,-1.3952892,-2.8327987,-2.9987435,-3.1561246,-3.1999578,-3.3456817,-3.3672085,-3.4439592,-3.5642042,-3.580773,-3.5581145,-3.3999324,-2.425724,-2.9354665,-2.9962337,-1.8346324,-2.4734206,-2.5962596,-2.32168,-2.9386127,-1.5298805,-2.5233803,-2.760614,-2.9999714,-2.8894634,-3.13831,-3.3117383,-3.4969711,-3.5932317,-3.6438224,-3.6072712,-3.4301598,-1.6703295,-1.6943892,-2.6647668,-2.6361508,-2.5421193,-1.9101633,-2.5948946,-2.754751,-2.0366201,-2.5632153,-2.844975,-2.1279492,-2.7137473,-2.8624003,-1.1331347,-2.0928483,-2.829896,-2.718168,-2.7503717,-2.8641086,-2.4093685,-2.4207516,-1.7388746,-2.3319905,-2.1735806,-2.3931458,-2.6020503,-3.0005145,-2.2323484,-1.8136061,-2.191585,-2.2883768,-2.4753087,-1.683575,-2.3370545,-1.7852079,-2.0690312,-2.5140169,-2.422604,-2.6474848,-2.972043,-3.47722,-2.9691076,-3.301774,-3.7318487,-3.5246215,-0.86802655,-2.2267885,-2.7921395,-2.9810123,-2.8280265,-2.503359,-3.2612524,-3.5318632,-3.491032,-3.8782952,-3.9783554,-3.9164243,-1.2210898,-2.709199,-2.9258509,-2.9670606,-2.8571095,-2.9644547,-3.5946836,-1.735269,-2.6058369,-3.2507806,-3.3309865,-1.6133243,-2.5092964,-2.9555194,-3.2434604,-3.3968773,-3.2206113,-2.8762355,-3.1411686,-3.5132241,-3.7540631,-3.8941107,-4.0791464,-4.159274,-4.190296,-4.1009016,-3.8681316,-3.7967825,-1.1776773,-2.617763,-2.5695524,-2.9546719,-2.8198152,-3.0647209,-3.2393553,-3.314857,-3.3080099,-3.466836,-3.2724323,-3.455063,-3.7219439,-3.3763518,-3.7636533,-3.9249597,-1.3182554,-2.70889,-2.59793,-2.6673036,-2.8143778,-3.217709,-3.5027246,-3.6327052,-3.7205276,-3.7701716,-3.9035053,-2.614627,-2.139871,-2.4721107,-2.7287369,-2.8471599,-2.8676348,-3.0173135,-3.330738,-3.4651191,-3.4409661,-3.4653912,-3.6656635,-3.725541,-3.745552,-3.5794806,-3.8196857,-3.8064177,-3.9032922,-3.9164488,-3.9190063,-3.985664,-4.0151405,-3.9437652,-3.7701197,-3.9590452,-4.004473,-4.073325,-3.8365335,-3.885629,-2.1272447,-3.250852,-3.587817,-3.765253,-3.8684783,-3.9260912,-3.9887838,-3.9752321,-3.995376,-4.0653496,-4.103391,-4.0416036,-4.1290054,-4.1663866,-4.1251354,-3.8858955,-3.9078887,-3.9909625,-4.0419884,-4.0207105,-3.9462624,-3.9107962,-4.033816,-4.0689936,-4.0920544,-4.262905,-4.178146,-4.120121,-4.0655127,-4.115754,-4.14874,-4.0729475,-4.1270766,-4.049591,-4.147897,-3.704507,-4.249365,-4.375724,-4.3418045,-4.3623714,-4.3032336,-4.166795,-4.0506372,-4.144064,-4.341286,-4.351043,-4.2474966,-4.3459,-4.456685,-4.073948,-3.9096704,-3.769162,-4.115817,-4.326946,-4.307199,-4.253852,-4.1318545,-4.242632,-4.135309,-4.2608128,-4.014582,-4.2722144,-4.077261,-4.2288327,-4.3808103,-4.335291,-4.3965616,-4.2823925,-4.362311,-4.3639154,-4.180574,-3.9934082,-4.144361,-4.207725,-4.1797724,-4.2494226,-4.2601967,-4.229045,-4.087077,-3.6414523,-3.637425,-3.6367717,-3.7715213,-4.0244827,-4.0812263,-4.003771,-4.0611362,-4.2420874,-4.1411057,-3.813952,-3.6563265,-3.726482,-3.9127474,-4.2071114,-4.390499,-4.41085,-4.084336,-4.020875,-3.9907126,-4.126309,-4.2077847,-4.1152406,-3.285907,-3.5892582,-3.927436,-3.8808308,-3.8200498,-3.540749,-3.1898263,-3.0283122,-3.0306878,-3.2148373,-3.01056,-2.8282523,-2.7563612,-3.189174,-3.2843442,-3.0930514,-3.2501123,-3.4997244,-3.7132275,-3.423578,-3.5174618,-3.3820782,-3.0529253,-2.8134115,-2.902216,-3.4650478,-3.607808,-3.5655613,-3.6774616,-3.57476,-3.3799982,-3.3154926,-3.042395,-2.6374853,-2.280908,-2.1003742,-1.917979,-1.7299569,-1.8951927,-2.7021408,-2.5856655,-2.054555,-2.2151198,-2.4701045,-2.7635827,-2.8474867,-2.8645082,-3.0723462,-3.0242782,-2.9863145
+-1.7488364,-2.0983348,-2.2666667,-2.4597056,-1.4758328,-2.4862866,-2.7332597,-3.071472,-3.1245644,-3.0184598,-3.4246733,-3.3743892,-3.536265,-3.4668329,-1.8370996,-2.486384,-3.2599876,-2.332168,-2.7260466,-2.9241407,-3.1081393,-3.191031,-3.067307,-0.7838905,-2.7118957,-2.9596498,-2.629826,-2.6837773,-2.844377,-3.0231102,-3.1645331,-3.3752527,-3.5245206,-3.6911898,-3.7808566,-3.8337417,-3.748763,-3.9302568,-3.714075,-1.1068176,-2.4267666,-2.6946836,-2.8047864,-3.0398374,-3.2508035,-3.2292237,-3.325308,-3.5161216,-3.6236236,-3.5711448,-3.2771227,-1.924986,-2.9904585,-3.3536859,-1.5397514,-2.4985776,-2.8425047,-2.970814,-3.2403054,-1.7773621,-1.8112608,-2.6515646,-2.9853377,-2.7864616,-3.2089803,-3.5436988,-3.7051775,-3.8493896,-3.8103218,-3.7388844,-1.3069723,-2.0839589,-1.7971059,-1.967682,-1.7812046,-2.5597677,-2.6997569,-2.0377424,-1.8520274,-1.9562472,-2.840365,-3.2730112,-3.4704337,-3.7736542,-3.7335486,-3.391163,-3.9304333,-4.090099,-4.0977407,-4.077544,-4.051824,-4.0239506,-1.5331329,-2.0427926,-3.036192,-3.6665645,-2.3373427,-2.5987701,-3.5684757,-3.8056757,-2.1877952,-1.3503499,-2.3212802,-2.8720357,-2.6108856,-2.9547648,-0.9553526,-2.383997,-2.9039936,-3.3226833,-3.684836,-3.9238782,-4.1058917,-3.7946148,-3.118342,-3.882996,-1.852131,-1.60013,-1.9718968,-2.7914124,-3.3944106,-3.6548903,-1.8119107,-2.846686,-3.2626982,-3.5892074,-4.105605,-4.221751,-3.9062586,-1.5310404,-3.0692306,-2.8034153,-3.287571,-2.9631498,-3.3861003,-3.9286363,-2.690696,-3.4985018,-3.9348426,-3.497335,-0.866867,-2.4449978,-2.9961524,-3.2139657,-3.4336073,-3.5327897,-3.5216677,-3.72062,-3.927319,-3.9933953,-4.096913,-4.0976915,-4.094755,-4.013337,-3.9529989,-3.9718304,-0.6808589,-2.5007792,-2.9495258,-2.78084,-3.1829915,-2.9718156,-2.9179711,-3.3333988,-3.2349124,-3.21879,-3.3356562,-3.0068889,-2.566391,-3.3542142,-3.4513502,-3.7959607,-3.5337534,-2.7327669,-2.0389333,-2.202394,-1.8715335,-2.3576021,-2.7448323,-3.1252937,-3.3914537,-3.4726286,-3.602602,-3.6957746,-3.4210527,-2.2278588,-2.1013708,-2.6686807,-2.9719076,-3.23693,-3.4374344,-3.51001,-3.623441,-2.8319173,-3.1676207,-3.4331088,-3.6601093,-3.5367546,-3.6832843,-2.9538333,-2.682613,-2.0934615,-3.0744963,-3.4268274,-3.552444,-3.5605125,-3.5920436,-3.6667662,-3.7676163,-3.8240974,-3.8947086,-3.0412176,-3.424868,-3.6320958,-3.6706705,-3.8254719,-3.9118197,-4.090164,-4.1189947,-4.1990232,-4.118846,-4.1593666,-4.129155,-4.108867,-4.107581,-4.10814,-4.096308,-4.0712566,-4.125455,-4.0695605,-3.9018078,-4.0744505,-4.183367,-4.1189523,-3.9956594,-4.0337777,-4.1820893,-4.1037455,-4.3415594,-4.3534603,-4.4426928,-4.031717,-3.084218,-3.7337708,-4.0117674,-3.7758832,-3.8175416,-4.0542145,-4.096306,-4.7365346,-4.8324986,-4.8876314,-4.916491,-4.7845387,-5.0025306,-4.6776185,-5.058355,-5.1466413,-4.9251013,-4.685335,-4.7425885,-4.8614073,-4.622524,-4.162901,-4.0556774,-4.7122207,-4.9730663,-4.858227,-4.7570844,-4.632828,-4.30069,-4.149655,-4.4519854,-3.7461977,-4.440606,-4.5270343,-4.3604054,-4.5251102,-4.545149,-4.590872,-4.5316687,-4.5421333,-4.672978,-4.350588,-4.377445,-4.3682165,-4.3220415,-4.378826,-4.587166,-4.672908,-4.6807394,-4.5706043,-3.9906569,-4.0795527,-3.9428554,-4.1527104,-4.5866117,-4.6080227,-4.3678684,-4.550276,-4.523121,-4.5212955,-4.0137825,-3.9213023,-3.950966,-3.9302797,-4.428082,-4.553377,-4.7759566,-4.4120083,-4.494022,-4.427408,-4.6206727,-4.6770124,-4.3265457,-3.3533258,-3.6602564,-4.347598,-4.400198,-4.3829393,-4.1706495,-3.7156556,-3.4093766,-3.492205,-3.443768,-3.1605258,-2.7661464,-2.5089395,-3.359779,-3.4365096,-3.4114864,-3.509344,-3.6203787,-3.8305664,-3.655144,-3.3370218,-3.0532286,-3.1321769,-3.0179605,-2.4727423,-3.1190567,-3.5386288,-3.4240713,-3.4815679,-3.1878724,-3.091606,-3.4161763,-2.6460638,-2.3454258,-2.3698049,-2.6918375,-2.6573868,-2.7412004,-2.5438647,-2.8690958,-2.8803408,-2.7762012,-3.070682,-3.0260773,-3.1622553,-3.2500823,-3.2148664,-3.3466718,-3.3217907,-2.4508352
+-1.7648146,-1.6956165,-1.7380627,-1.677744,-1.4270911,-2.0067172,-2.1052978,-2.192277,-2.2944243,-2.216763,-2.3396542,-2.5687547,-2.5214486,-1.9418578,-1.9025596,-1.9179224,-2.040044,-2.0651724,-2.4458506,-2.6118152,-2.6487768,-2.5240784,-2.5860076,-1.0359567,-2.2569342,-2.5257435,-2.3803537,-2.44869,-2.4939148,-2.6646228,-2.673564,-2.8714097,-2.879725,-2.9363377,-2.9655774,-3.119948,-2.0686424,-2.5368938,-2.6249034,-1.0433,-2.085311,-2.2933218,-2.0945547,-2.6316733,-2.475387,-1.8409704,-2.3508909,-2.5038757,-2.5707679,-2.0218322,-1.7549227,-1.7395805,-2.6382415,-3.00535,-1.189528,-1.9967831,-2.468388,-2.4739723,-1.7115905,-1.8340175,-2.0383074,-2.4296637,-2.7100306,-2.875102,-3.293957,-3.5477467,-3.5325809,-3.5292275,-3.4529972,-3.448215,-1.4244015,-2.2678614,-0.87103003,-1.7981873,-2.2355902,-2.2925837,-2.5310702,-2.6087747,-1.0573196,-2.102358,-2.4818206,-2.777979,-3.1736803,-3.0654426,-3.0691793,-3.3985906,-3.716248,-3.6752148,-3.3539917,-3.4465837,-3.4142122,-2.6236258,-1.4947513,-2.1401982,-1.8049172,-2.5553386,-3.0257826,-1.7192577,-2.8817306,-3.2828734,-3.643096,-2.060903,-2.910985,-3.619244,-3.7978802,-3.7164178,-0.82312673,-1.5891832,-1.8614397,-2.514506,-3.2203982,-3.3827038,-3.564613,-2.5966368,-3.0209584,-3.4073572,-3.2865927,-2.6885402,-0.6581463,-1.9599622,-1.7898078,-1.7441471,-1.9564626,-1.6038257,-2.300416,-2.8260784,-3.2439697,-3.393196,-2.949008,-0.40255216,-1.7568623,-2.4808168,-2.430487,-2.8828485,-2.8992631,-3.1104536,-2.9065137,-1.7867025,-2.6069887,-1.5874922,-1.5081955,-2.5037336,-2.6698115,-3.0045643,-3.3410592,-3.3703723,-3.275313,-3.209466,-2.4189625,-3.1092248,-3.464025,-3.4271822,-3.390155,-3.3050303,-1.5437344,-2.3739982,-1.4235271,-1.5466484,-2.367093,-2.3764806,-2.7734537,-1.7906829,-2.4800348,-2.8820941,-2.9378617,-1.591346,-2.4330807,-2.6603036,-2.736051,-3.0003154,-3.2464643,-3.1881878,-3.3799849,-3.3200336,-2.2255096,-1.2354877,-0.71238226,-2.3832045,-2.8781228,-2.958479,-3.030363,-3.0013175,-3.075027,-3.1847458,-3.2034183,-1.6408826,-2.1955228,-2.78017,-2.9451149,-2.9331768,-3.1384358,-3.1580448,-3.398487,-3.00555,-2.893131,-3.2717597,-3.4248517,-3.3847709,-3.292768,-2.4354649,-2.8805003,-3.0823889,-3.0119057,-3.3761678,-3.527038,-3.5802097,-3.5588055,-3.5455632,-3.5172918,-3.5151305,-3.6679254,-1.7276775,-2.662867,-2.9675193,-3.104741,-3.2505574,-3.3376079,-3.592523,-3.7355723,-3.774588,-3.8276272,-3.704176,-3.7187712,-3.783735,-3.5976195,-3.649588,-3.788113,-3.6879568,-3.7453325,-3.7794216,-1.6882731,-2.9453626,-3.0855992,-2.9550314,-2.8395739,-2.9655666,-3.106081,-3.050792,-3.2697265,-3.3341074,-3.481822,-3.2850885,-3.0262737,-3.4742203,-3.6448028,-3.4597454,-3.6323047,-3.6718245,-3.0947165,-3.8319573,-4.122363,-4.244606,-4.283712,-3.998304,-4.00662,-4.016698,-4.089671,-4.3421564,-4.0290003,-3.4566908,-3.726838,-3.8486562,-3.568987,-3.0865173,-3.168614,-3.7214346,-4.0073547,-3.8153934,-3.4589562,-3.185226,-3.2738123,-3.3411336,-3.6055446,-2.8608682,-3.313154,-3.7530017,-3.5959425,-3.7562604,-3.7598803,-3.8039186,-3.7940602,-3.7225413,-3.7069027,-3.0978541,-3.4653,-3.4226382,-3.7218802,-3.764297,-3.8645704,-3.8464024,-3.8425775,-3.6027741,-3.1513038,-3.2243378,-3.1418936,-3.2322679,-3.6232882,-3.5334618,-3.4498749,-3.5093482,-3.4562387,-3.6469483,-3.2833648,-3.1037683,-3.1341238,-3.102983,-3.2252502,-3.6691275,-3.5846095,-3.2278845,-3.4298096,-2.8547559,-3.4784346,-3.4996257,-3.023901,-2.350894,-2.3234096,-3.3413281,-3.2552397,-3.30029,-2.92872,-2.532264,-2.487505,-2.3668544,-2.1557252,-1.9728512,-2.083265,-2.270663,-2.447566,-2.8395717,-2.7688336,-3.2197623,-3.1424274,-3.0376558,-3.0873692,-2.3269424,-2.273054,-2.3779383,-2.3509016,-2.2706096,-3.2752395,-2.9755392,-2.7945728,-2.6064477,-2.1569273,-2.124422,-2.513152,-1.9530203,-2.06288,-2.2189708,-2.3945203,-2.2256076,-2.3959265,-2.4085495,-1.6594106,-2.2717962,-1.6805004,-2.391327,-2.5344033,-2.3350906,-2.5863976,-2.59009,-2.6033554,-2.52754,-2.5286868
+-1.7550334,-1.6427832,-1.5637039,-1.5856744,-1.7732496,-1.9842976,-1.9959294,-2.0423589,-2.060926,-1.8398591,-1.9939135,-2.1818335,-2.2970724,-2.1853888,-1.9389439,-1.6332353,-1.775113,-2.1643217,-2.229348,-2.358326,-2.3942099,-2.279789,-2.4573994,-0.705743,-1.8909824,-1.0227339,-2.0494492,-2.2808156,-2.2927132,-2.1336532,-2.5786967,-2.7413402,-2.7067635,-2.5827224,-2.5269256,-2.5717797,-0.70749074,-1.8816427,-2.0678556,-2.1716752,-2.4334753,-2.522168,-2.4248624,-2.4461021,-2.159509,-0.91997653,-1.7992785,-2.167036,-2.1027186,-1.9257487,-2.0539427,-1.5866326,-2.133811,-2.3180447,-1.551284,-2.1399603,-2.4849248,-1.950727,-2.5279794,-1.5362225,-1.4252614,-2.2777154,-2.5422783,-2.979599,-3.2808022,-3.482207,-3.6573513,-3.5727973,-3.6416235,-3.6880338,-1.8686868,-2.7152872,-2.8759599,-0.6680881,-1.4314529,-2.2583537,-2.694647,-2.917225,-2.8998008,-3.2703843,-3.3496299,-3.3837414,-3.7147224,-3.7424245,-3.8043218,-3.9730644,-4.2959614,-4.2023344,-3.9305258,-3.956352,-0.6928886,-1.3140422,-2.1024666,-2.4877691,-2.9474,-2.2467752,-2.139662,-2.2504218,-3.173146,-3.561963,-3.835803,-3.9513826,-4.1738954,-4.338071,-4.3171444,-4.1072874,-3.948279,-3.9833627,-3.072383,-3.4470172,-3.8469305,-3.9416223,-3.1365056,-1.7723444,-2.8110313,-3.3035154,-3.7248218,-2.8025506,-2.0918584,-1.6757518,-1.7410303,-2.8079798,-3.5101902,-3.658173,-3.6748035,-3.977622,-4.038045,-3.8693767,-3.609726,-2.061987,-2.9424806,-3.4413924,-1.3965942,-1.6319723,-2.6705961,-3.1578412,-2.4918597,-1.19656,-2.4514337,-2.6667395,-0.6907659,-1.9512956,-2.4270158,-3.0636532,-3.6100001,-3.968274,-0.6334461,-1.9557656,-2.1632776,-2.7824395,-2.085277,-2.5001652,-2.9487126,-3.2205858,-3.351431,-2.1751013,-1.5610837,-1.3872279,-2.324343,-2.6556277,-3.1759543,-1.4201411,-2.3388724,-3.1454616,-2.0343976,-1.2838095,-1.7444427,-2.2801342,-2.709688,-2.9690156,-3.2576666,-3.455245,-3.53177,-3.6707346,-1.6575441,-1.4658943,-1.261767,-2.3945222,-2.7268255,-2.8018987,-3.0961618,-3.0893621,-3.0899525,-3.2171268,-3.2201238,-2.9970918,-2.338993,-2.9626317,-1.5682095,-2.0352838,-2.7097383,-3.031743,-3.2967231,-3.5117974,-3.3218033,-3.6418574,-3.6076677,-3.516377,-2.7724237,-2.3294966,-2.8720412,-2.797836,-3.1919281,-3.4680216,-3.7104359,-3.8454828,-3.7500072,-3.600036,-3.6564062,-3.6119888,-3.557829,-3.2138987,-3.3563354,-3.3939896,-3.5833302,-3.7195911,-3.7924485,-3.9598193,-3.9783525,-3.925802,-3.9177926,-3.9432425,-3.851042,-3.8336787,-3.7769694,-3.7269268,-3.787156,-3.7659163,-3.7422667,-3.7743824,-2.7769957,-3.189198,-3.5278964,-3.4192803,-3.3553882,-1.3850856,-2.5285082,-2.5157852,-3.0643828,-3.2375984,-3.1459162,-3.0318985,-2.9562116,-3.5892606,-3.6331406,-3.3211393,-3.6438782,-3.7447472,-2.9551084,-3.9159021,-3.945422,-4.079575,-3.9451613,-3.1489403,-3.0093484,-3.7042198,-3.9037004,-3.9946747,-3.388742,-3.2465615,-3.619506,-3.9315817,-3.832697,-3.3096156,-3.259214,-3.752543,-3.759202,-3.2138042,-3.247998,-3.389395,-3.64216,-3.6122386,-3.880247,-3.3420162,-3.215571,-3.66962,-3.5618405,-3.7870407,-3.688666,-3.8893094,-3.9904957,-3.9577785,-3.6277409,-2.7311718,-2.93997,-3.3488584,-3.6584828,-3.6984525,-3.6513338,-3.846688,-3.90024,-3.8555913,-3.4957345,-3.4476237,-3.0540082,-3.3452415,-3.4708364,-2.9841213,-3.0743933,-3.253497,-3.621966,-3.7282848,-3.5269837,-3.3052807,-3.2271285,-3.0649903,-3.161766,-3.4631329,-3.6216269,-3.196207,-3.120702,-2.8833728,-2.593658,-2.8918722,-2.8761559,-2.6044145,-2.455552,-3.1335495,-3.3005302,-3.2287502,-3.1607869,-3.0416062,-3.0545454,-2.84097,-2.6019523,-2.656033,-2.617854,-2.1999512,-1.9814361,-2.4492726,-3.219432,-3.6401267,-3.1112251,-3.3587031,-3.7399368,-3.4985218,-3.4875345,-3.4253702,-3.1668382,-2.2560525,-3.3775373,-3.2191195,-2.8968549,-2.6335702,-1.7267215,-2.2763634,-2.5294023,-2.4566183,-2.5282164,-2.6126833,-2.6493683,-2.592875,-2.773354,-2.8085284,-1.1851773,-1.8369333,-2.0639858,-2.3356435,-2.3918757,-1.6250168,-2.3577833,-2.086143,-2.0894394,-2.4387295,-1.2435528
+-1.900545,-2.6578956,-2.2376246,-1.8671201,-2.057718,-2.7099013,-2.1448083,-2.1646981,-2.0885706,-2.1620488,-2.7376885,-2.7045567,-2.6074052,-2.467837,-2.6229672,-3.241973,-2.8861182,-2.8440366,-2.64991,-2.6779423,-3.023862,-2.7340643,-2.6512523,-2.3444445,-3.0110812,-2.4854374,-2.8231187,-3.1400309,-2.9005988,-2.8691518,-3.0355034,-3.2967005,-2.980673,-3.011756,-2.7614255,-2.6203775,-2.4972181,-2.5579941,-2.8855705,-2.9610164,-2.8366733,-2.882751,-2.6959152,-2.7183552,-2.6969573,-2.616524,-2.8585472,-2.7100248,-2.6837316,-2.6568584,-2.7358222,-2.6084871,-2.7921417,-2.761137,-2.7815406,-2.8264031,-2.8384352,-2.877372,-2.9006176,-2.8335307,-2.3663077,-2.8731954,-2.8788152,-2.9227867,-3.030694,-3.0694356,-2.4971037,-2.9064474,-2.776494,-2.8007505,-3.183858,-3.216464,-1.4998856,-2.222908,-2.6504664,-3.0115767,-3.159123,-3.3545747,-3.3267145,-3.5094275,-3.6632056,-3.7302842,-3.9415207,-3.7851303,-2.0370083,-2.4067106,-3.4406314,-3.8791194,-3.9891057,-2.9169638,-2.0439615,-2.1263838,-2.564773,-2.9411738,-3.010059,-2.4774117,-3.1711698,-3.769187,-3.4017177,-3.8940787,-4.072719,-4.330441,-4.4529095,-4.5673447,-4.6049395,-4.524333,-4.237806,-4.2231646,-2.4898245,-3.2472265,-3.701009,-3.940502,-4.0903935,-4.149999,-4.325102,-4.1887136,-4.3562927,-4.4465356,-3.7392657,-2.9899013,-3.4820633,-3.857385,-4.1480875,-3.2907717,-3.5698285,-3.9944415,-3.9227872,-1.7273594,-1.8246306,-2.1403317,-3.0277305,-3.272509,-3.3425584,-3.6578383,-2.7777586,-3.548891,-3.0650523,-1.9751843,-3.0471733,-2.3712869,-2.0630288,-3.0537791,-3.5420125,-3.8229609,-4.192874,-2.488755,-3.2355943,-3.0213342,-3.5634313,-3.9282503,-4.291269,-4.2462196,-4.177643,-4.136144,-3.8167722,-3.1453946,-1.6499096,-2.9964542,-3.430977,-3.6301382,-3.8283887,-4.148587,-4.1924243,-4.4251094,-2.306696,-2.4157734,-2.777234,-2.2965183,-3.0943358,-3.375116,-3.509687,-3.8681214,-4.0922384,-4.1900067,-2.6906977,-1.8156337,-1.7874722,-2.955905,-3.313908,-3.5132756,-3.7242174,-3.8067381,-3.2038443,-3.6110623,-3.6223545,-3.6399755,-3.0770326,-3.4424279,-2.4480057,-3.4615707,-3.5277734,-3.6807802,-3.8157578,-3.5652242,-3.7705722,-3.9067373,-3.9013803,-3.9820337,-3.8837495,-2.163966,-3.0561328,-1.9563136,-3.1898062,-3.1381767,-3.3629346,-3.5201333,-3.5403898,-3.4608164,-3.6411662,-3.6857972,-3.7146652,-3.27986,-3.5879858,-3.4834728,-2.7165859,-1.8488389,-3.2790425,-3.4167027,-3.5909193,-3.5713592,-3.7510374,-3.788109,-3.7807713,-3.954834,-3.8273926,-3.7963302,-3.9312596,-3.8225887,-3.8679702,-3.9343805,-2.9126358,-3.8058295,-4.0347967,-3.565212,-3.3874536,-2.1404765,-3.3288162,-3.2270713,-3.7004468,-3.7128592,-3.3584619,-3.5453918,-3.7031069,-4.1061673,-4.162383,-4.057808,-4.229254,-4.2391357,-3.6885319,-4.194019,-3.9163754,-4.203943,-3.8654954,-3.117405,-3.319584,-3.9301608,-4.0718966,-3.944129,-2.7588744,-2.6302185,-3.456535,-3.7323184,-3.8063266,-3.209858,-3.1312246,-3.5142634,-3.5004249,-3.184154,-2.7848873,-3.6888547,-3.831644,-3.3839433,-3.981649,-3.636928,-3.7878394,-3.9832945,-3.6712403,-3.6776237,-3.381411,-3.4869957,-3.7443876,-3.8427987,-3.228622,-2.2051597,-2.7674246,-2.3671474,-2.9922194,-2.9095469,-2.6496658,-3.3319871,-3.6137497,-3.873609,-3.6529746,-3.6417882,-3.349908,-3.7777953,-3.6333876,-2.9997387,-2.986203,-3.4326377,-3.7007895,-3.8354366,-3.7001944,-3.376291,-3.2714639,-3.2182524,-3.2903771,-3.499652,-3.467524,-3.0643218,-3.1232865,-2.9936352,-2.5652654,-2.518034,-2.6927662,-2.4010425,-2.1274614,-3.4651055,-3.4978287,-3.7039695,-3.5685964,-3.3301477,-3.25491,-2.9647996,-2.779468,-2.946031,-2.8678296,-2.5250776,-2.4136968,-2.8293507,-3.0335352,-3.2920299,-3.1016517,-2.9444838,-3.4372978,-3.3903904,-3.301615,-3.190451,-2.9313812,-3.2066314,-3.697,-3.1366718,-2.7417264,-2.571215,-2.0586698,-2.5726097,-3.0899825,-2.0672636,-2.2045805,-2.4417613,-2.3652856,-2.2935576,-2.3244853,-2.36701,-2.3444657,-2.6030998,-2.526683,-3.013861,-3.4059405,-2.628133,-3.0188081,-2.631824,-2.9481125,-2.9641886,-2.7932696
+-1.4382277,-2.2319357,-2.6141343,-2.4452982,-2.6632633,-3.3529391,-3.1529744,-3.2370796,-3.1556973,-3.3932567,-3.2099035,-3.5041802,-3.6502953,-3.655396,-3.8176222,-3.5619369,-3.6677492,-3.6718743,-3.5748985,-3.382314,-3.4276,-3.3929474,-3.166475,-3.4498322,-3.6306963,-3.9483414,-4.029812,-3.7168937,-3.3495507,-3.4916172,-3.6173024,-3.4656444,-3.5527387,-3.5046158,-3.564035,-3.4796448,-3.5853543,-3.9336894,-3.7038841,-3.687624,-3.9261093,-4.028101,-4.1691737,-4.084632,-3.7707298,-3.6223717,-3.2293506,-3.692824,-3.8244424,-3.7895763,-3.761559,-3.7738135,-3.9423056,-4.0187283,-4.0800333,-3.8608136,-3.757863,-3.9807844,-3.9634094,-4.089397,-3.9954753,-3.7540207,-3.8069634,-3.9297392,-3.9341416,-3.8478127,-3.3634598,-3.3025708,-3.6614518,-3.6104527,-3.5507462,-3.8472142,-3.3461728,-2.9350379,-3.5809603,-3.8347116,-3.9469087,-4.084769,-4.1182528,-4.2589364,-4.24695,-1.5992136,-2.9468021,-3.3550467,-3.555194,-3.4695232,-3.3305793,-3.5349345,-3.7693331,-3.5483334,-3.668869,-2.387568,-3.040406,-3.1764398,-3.4819393,-3.5574222,-3.8309155,-4.000488,-3.5714974,-4.008938,-4.147284,-4.220642,-4.372965,-4.478006,-4.4652786,-4.147092,-4.346301,-4.450318,-3.9139318,-2.9483104,-2.9474864,-2.936623,-2.9224818,-3.2100348,-3.5926838,-3.6549578,-3.887569,-4.0977693,-4.3114233,-4.041995,-3.9135232,-3.7924623,-3.779048,-4.267506,-3.3681347,-2.7045784,-2.443235,-3.1017478,-3.3183022,-2.784069,-3.4553993,-3.4792655,-3.639155,-3.6671004,-3.5227861,-3.555983,-4.045843,-4.0652847,-2.7332163,-3.1419177,-3.4767385,-3.161583,-3.7369018,-3.503338,-3.3336225,-2.1890879,-3.3431978,-3.4656787,-3.6088068,-3.594408,-2.0707448,-3.1327271,-3.4622931,-3.5383565,-3.1256933,-3.4239073,-3.4712148,-3.675861,-3.89349,-4.0039325,-4.2720156,-4.320043,-4.3097115,-4.3860254,-4.37323,-2.9416075,-3.5544856,-3.781127,-4.058779,-4.190537,-4.3524265,-4.4518833,-4.4664016,-3.9941397,-4.202772,-4.004119,-3.8928928,-4.17309,-4.349381,-4.446714,-4.504692,-4.363662,-3.4029844,-2.0577788,-3.2816708,-3.0625522,-3.8469725,-4.1916986,-3.841496,-4.4825063,-4.3883476,-4.2308474,-4.3389864,-4.112772,-4.3044825,-4.4286785,-4.425249,-4.4240885,-4.3622875,-4.247699,-4.375511,-4.6017065,-4.835506,-4.6547422,-4.582077,-4.5975666,-4.545479,-4.4350643,-4.536994,-4.6119685,-4.550166,-4.5207133,-4.5176563,-4.407114,-4.499118,-4.63468,-4.718354,-4.6485806,-4.226324,-4.40642,-4.453045,-4.6965275,-4.7834835,-4.771652,-4.6930127,-4.6922894,-4.7052794,-4.7149363,-4.6909695,-4.5275984,-4.640502,-5.0173516,-4.8765225,-4.5596733,-4.054516,-3.4236927,-4.346412,-4.567257,-4.8263173,-4.981453,-4.584888,-4.9316416,-4.9889517,-5.0516253,-5.041354,-4.843776,-4.873556,-5.029924,-4.781294,-5.061263,-4.957513,-5.1026015,-4.817165,-4.6714406,-4.4773097,-4.9321713,-4.9994135,-4.85717,-4.490939,-4.30447,-4.6519594,-5.1738625,-5.111863,-4.7612863,-4.671177,-4.512334,-4.275752,-4.471779,-4.4175653,-5.0728307,-4.8741035,-4.730347,-4.9122434,-4.8300934,-4.8978624,-4.9225144,-4.9222703,-4.919796,-4.7615037,-4.6590533,-4.8320575,-5.0397243,-4.631853,-3.9322124,-4.331651,-4.4065547,-4.5339613,-4.316623,-4.255926,-4.2733583,-3.7347083,-4.0946283,-4.6171536,-4.6480827,-4.34484,-4.7118998,-4.683939,-4.3717766,-4.5108757,-4.874654,-4.8361073,-4.777231,-4.777834,-4.6225,-4.59984,-4.525544,-4.5988774,-4.659825,-4.63006,-4.543596,-4.6064606,-4.6155076,-4.461729,-4.269349,-4.3537817,-4.034976,-4.1063523,-3.5134554,-3.8141112,-4.381184,-4.5357018,-4.521145,-4.5538445,-4.331601,-4.2154117,-4.3499374,-4.2874537,-4.2725215,-4.579735,-4.954437,-4.909468,-4.9334307,-4.813117,-4.4500904,-4.8559775,-4.8090134,-4.822155,-4.789164,-4.67208,-4.6634293,-5.11,-4.803203,-4.666399,-4.5933685,-4.351226,-4.6649017,-4.7123785,-4.2991805,-4.3564405,-4.3776007,-4.2851324,-4.168627,-4.098199,-4.1593943,-4.096529,-4.0218234,-3.8941936,-3.521709,-4.1255913,-3.768276,-4.0657926,-3.8001127,-3.7157621,-3.9855042,-3.6439753
+-0.8305531,-2.0978453,-2.4316463,-2.2296147,-2.2938344,-2.7426517,-2.600556,-2.70809,-2.79742,-3.0495975,-2.8178043,-3.1848602,-3.251458,-3.3971581,-3.3487487,-2.0004964,-3.0395145,-2.8680315,-3.2640007,-3.3837607,-3.3243964,-3.392727,-3.2926326,-3.3430166,-3.419457,-3.3663425,-3.7039309,-3.2213564,-3.046698,-3.486801,-3.4743998,-3.5872464,-3.7900913,-3.6975722,-3.5683186,-3.2433643,-3.3475966,-3.556831,-3.562948,-3.721666,-2.961049,-3.5562239,-3.71539,-3.7468014,-2.4847116,-3.0146418,-2.8799663,-3.1442509,-3.2634368,-3.3855915,-3.4792926,-3.5168414,-3.7503262,-3.9611802,-4.0926695,-3.8556385,-1.9137422,-2.9588728,-3.218822,-3.4096103,-3.492072,-2.5403233,-2.5736046,-3.2453992,-3.5128756,-3.7273912,-2.9072251,-3.5216782,-3.7340283,-3.9177709,-4.134556,-4.204575,-4.143611,-4.207361,-4.3434734,-4.5433207,-4.6119866,-4.6913915,-4.5909495,-4.599231,-4.4638076,-4.1468296,-2.4458585,-2.927317,-3.253406,-2.8689785,-3.5578978,-3.7887611,-3.7203465,-3.5777445,-1.8622499,-2.1587687,-2.6417115,-2.5517826,-2.6490896,-3.0470257,-3.3454823,-3.6054218,-3.87093,-4.0095024,-4.121479,-4.236644,-4.4136457,-4.456129,-4.5102067,-4.4526305,-4.397922,-4.406617,-3.2855506,-2.9450235,-3.460406,-3.8105211,-3.8896327,-3.788063,-3.4747107,-3.7484832,-3.679511,-3.7491875,-4.04462,-3.1703632,-2.7288566,-3.2797923,-2.3352776,-3.04886,-2.9141273,-1.9136986,-2.3923016,-2.8665366,-2.8053646,-2.7632992,-2.5267956,-3.0116987,-2.9053812,-2.977639,-2.9484618,-3.325175,-3.6342392,-2.9580102,-2.9783978,-3.4677474,-2.2066936,-2.617745,-2.8271554,-3.3476458,-3.1886506,-1.7230331,-2.6431293,-3.1550305,-3.412051,-3.4551244,-2.5116472,-2.4841151,-2.80892,-3.2686787,-2.6346927,-2.8302143,-3.191599,-3.476833,-3.8270864,-3.987342,-4.1522655,-4.2762623,-4.2557073,-4.2345867,-4.26723,-3.5034318,-2.0832505,-3.3607845,-3.4955401,-3.229885,-3.8698971,-4.1728845,-4.195581,-3.0847127,-2.5952659,-2.847507,-2.962096,-3.7236667,-3.9907084,-4.183196,-4.281026,-4.187475,-3.4251585,-3.727391,-3.953011,-3.2215824,-3.743943,-4.2347984,-4.317582,-3.8334026,-3.7989352,-3.950356,-4.052841,-4.1239686,-4.226833,-4.2746935,-4.3097925,-4.282439,-4.251915,-4.084649,-4.350522,-4.418091,-4.5564575,-4.5423794,-4.4808793,-4.4404697,-4.3563313,-4.1168118,-4.1275253,-4.2611513,-4.23757,-4.105999,-4.146719,-4.00783,-4.125074,-4.205476,-4.253913,-4.1727786,-1.9428271,-2.9425435,-3.5829558,-3.8708928,-4.0909014,-4.226672,-4.143444,-4.2030506,-4.216818,-3.7075992,-4.1078243,-4.0368385,-3.493844,-4.5609665,-4.5540757,-4.2271323,-2.2083337,-2.7789233,-3.5440078,-4.0071898,-4.4031267,-4.603858,-2.6323733,-3.295082,-3.3838933,-3.708612,-3.6559708,-3.4536126,-3.6086652,-3.7317996,-3.6173673,-3.7298017,-3.5696712,-3.856688,-3.7766056,-3.6476007,-3.4185357,-3.7448199,-3.8446946,-3.844358,-3.6094284,-3.2834728,-2.3074257,-2.863222,-3.0155869,-2.8814838,-2.5372047,-1.9829098,-1.875156,-2.142725,-2.0199578,-2.196939,-2.2924986,-2.2943437,-2.5052242,-2.6337783,-2.6333892,-2.278883,-2.435485,-2.5233026,-2.4558766,-2.293264,-1.905184,-1.8476754,-1.8820734,-1.7929053,-1.9627899,-2.1304302,-2.3283796,-2.2298727,-2.1274223,-1.9071984,-1.897061,-1.7530991,-1.9510032,-2.2167847,-2.024918,-2.1319778,-2.2452006,-2.0836523,-1.9521817,-1.9433068,-1.9588517,-1.9482301,-2.0796556,-2.1808174,-2.282711,-2.335668,-2.426679,-2.502673,-2.4967728,-2.5739052,-2.6251938,-2.668924,-2.6267595,-2.5031776,-2.5622935,-2.4701023,-2.4398413,-2.251647,-2.193058,-2.151257,-2.441859,-2.6343122,-2.6634912,-2.4855123,-2.3354084,-2.5002418,-2.5205157,-2.429626,-2.5701678,-2.9401798,-2.9196768,-2.9094748,-2.9249277,-2.3426757,-2.7640073,-2.9303808,-3.0043595,-2.932776,-2.7398763,-2.4301448,-3.0897152,-2.9353056,-2.8821108,-2.907679,-2.8741078,-3.0127244,-2.995393,-2.9999433,-2.9970622,-3.0800436,-3.1446962,-3.0481777,-3.0122194,-3.128078,-3.0843997,-3.0186164,-3.0000982,-2.657915,-3.2333403,-3.3420587,-3.5002563,-3.5008771,-3.4808674,-3.6287615,-3.5968735
+-1.0608529,-1.4629045,-1.7255062,-1.9137881,-2.2527664,-2.5998223,-2.6163049,-2.5129173,-2.6113923,-2.4682784,-2.4737844,-2.5142822,-2.5224838,-2.493917,-2.4265509,-1.9272156,-2.212161,-1.9002942,-2.1169577,-2.1357007,-2.31046,-2.2305005,-2.2028663,-2.4121037,-2.4805028,-2.585316,-2.6745062,-2.6439219,-2.1094806,-2.5608735,-2.3119164,-2.3918505,-2.5164676,-2.6086414,-2.6253157,-2.7334743,-2.6332989,-2.7707067,-2.7019012,-2.6392984,-2.6567812,-2.7073731,-2.7236838,-2.7400994,-2.1851857,-2.4453354,-2.6309114,-2.5426173,-2.5881538,-2.6158252,-2.6086812,-2.6625435,-2.745304,-2.7905028,-2.8780532,-2.8234658,-2.8748536,-2.9566555,-2.9748785,-2.96962,-2.6650512,-2.6774795,-2.7139757,-2.8012223,-2.5752196,-2.6027753,-2.5584893,-2.6413968,-2.7302113,-2.5792677,-2.7774224,-2.5532804,-2.6144662,-2.330624,-2.6264606,-2.866013,-2.9526632,-3.05396,-3.071029,-3.0915585,-2.9315343,-2.858121,-2.7280374,-2.644324,-2.3167667,-2.576563,-1.8613591,-2.3146062,-2.2618113,-2.5476677,-2.6272683,-1.6722139,-1.9943508,-2.3679879,-2.561563,-2.693345,-2.8937988,-3.0314596,-3.106221,-3.1548426,-3.2040348,-3.2006106,-3.2776814,-3.3245988,-3.2366843,-3.1500208,-3.1697764,-3.2381506,-3.083551,-2.8574934,-2.8335023,-2.9635935,-3.1180744,-3.180251,-2.8600366,-2.8144503,-2.7533355,-2.8471055,-2.9629283,-2.5844307,-2.602827,-2.694729,-2.592175,-2.0658276,-2.0517082,-1.969987,-1.7719247,-2.1456246,-2.2576954,-2.4221306,-2.7033286,-2.7238197,-2.564602,-2.360352,-1.8819023,-2.4142168,-2.5852852,-1.9295123,-2.271295,-2.4773645,-2.1586814,-2.027389,-2.05951,-2.136334,-2.4154406,-2.4226654,-2.5715158,-1.7744086,-2.405674,-2.4850028,-2.2785354,-2.3146012,-1.9915375,-2.3481271,-2.4244933,-2.4514554,-2.5263271,-2.505028,-1.229924,-2.1709518,-2.4325757,-2.6849692,-2.6833816,-2.7156906,-2.7398798,-2.76132,-2.793815,-2.8065176,-2.3826785,-2.0401394,-2.6117718,-2.9075058,-2.9993248,-3.0228612,-1.7021004,-1.9457052,-2.3552532,-2.727638,-2.755579,-2.8935556,-2.9936094,-3.0523977,-2.943622,-2.8138433,-2.939829,-2.1703112,-2.514587,-2.845743,-2.83255,-3.1001344,-2.496838,-2.4570198,-2.5908785,-2.6480448,-2.8109841,-2.8483677,-2.9149778,-2.948619,-2.923385,-2.8712618,-2.9964955,-3.028716,-3.0819495,-3.0808668,-3.071498,-3.2101328,-3.1489172,-3.016018,-2.99376,-3.0348778,-3.0141659,-2.9501512,-3.0137053,-2.862455,-2.8716831,-3.0212743,-2.9056454,-2.8051414,-1.0733846,-1.6196057,-2.3792925,-2.6284523,-2.7735085,-2.9368148,-2.9623194,-2.9423692,-2.9849048,-3.0470076,-3.0202959,-3.0961847,-2.8815014,-3.230053,-3.2850585,-3.2224545,-2.4693274,-1.0909679,-1.8035344,-2.1013637,-2.4526489,-2.551444,-1.7416024,-2.0021098,-1.6982002,-1.8727038,-2.025132,-1.9265856,-1.8686185,-2.065888,-2.0633516,-2.1123347,-2.1426678,-2.2226624,-2.1261253,-2.0804682,-2.036006,-2.1491292,-2.1715074,-2.1022213,-2.17915,-1.8877636,-1.7516606,-2.181404,-2.2030764,-2.1478796,-2.1014824,-1.4262834,-1.512856,-1.768609,-1.6539325,-2.018457,-1.8156787,-1.8843786,-2.0305772,-2.1135263,-2.0373707,-1.991875,-2.0432212,-2.0468097,-2.0214355,-1.8326174,-1.1465949,-1.8129102,-1.7552778,-1.6167569,-1.8748449,-1.9666473,-2.0358124,-2.0386815,-1.9595222,-1.2939333,-1.5184599,-1.5044461,-1.634107,-1.7104892,-1.5870636,-1.598934,-1.7387861,-1.6027049,-1.5582724,-1.678943,-1.7552102,-1.7825949,-1.8787214,-1.8471321,-1.8511509,-1.8171817,-1.8345232,-1.9730934,-1.9344065,-1.9814533,-1.9836115,-1.9981529,-1.871606,-1.7966405,-1.8932654,-1.9380081,-2.1172338,-2.0939825,-1.7172447,-1.7066886,-1.8050631,-1.9441401,-1.9517851,-1.8153673,-1.9120033,-2.1245337,-1.9062327,-2.0876243,-2.4128313,-2.518226,-2.6834993,-2.5067563,-2.4674659,-1.9316359,-2.188395,-2.2478302,-2.3650584,-2.2500827,-2.2112448,-2.4185033,-2.6652632,-2.4508271,-2.357137,-2.438999,-2.4912698,-2.6228478,-2.5055792,-2.530374,-2.7765367,-2.8755875,-2.9890442,-3.058809,-3.0998352,-3.173118,-3.1571355,-3.1723936,-3.0829408,-3.1315303,-3.128366,-3.1231253,-3.252264,-3.066279,-3.0840673,-3.1457226,-3.1693954
+-1.9418837,-2.404448,-2.7385483,-2.9842203,-3.3060048,-3.675178,-3.8254323,-0.6519273,-1.8615737,-2.532349,-1.7075124,-2.236824,-2.5108495,-2.8423784,-3.1283786,-3.1842017,-2.7999792,-1.0847058,-1.7940754,-2.658298,-2.9642248,-3.0551877,-2.4489942,-3.1137972,-3.4566932,-3.5680883,-3.503764,-3.679875,-0.9035076,-1.6812025,-1.645103,-1.9051552,-2.419661,-2.7733724,-3.2027314,-3.4465818,-3.5820198,-3.7615337,-3.6784015,-3.777564,-3.912728,-3.819712,-3.7919397,-3.7186575,-0.7558245,-2.2727656,-1.3940197,-1.7892555,-2.0845332,-2.3344061,-2.6511602,-3.162055,-3.4948497,-3.759242,-3.946208,-3.9714108,-4.0164766,-4.077081,-4.0898137,-3.804634,-1.1233149,-1.7520545,-2.1394825,-2.6246133,-3.0693045,-2.7687263,-0.997449,-1.3605264,-2.0172193,-2.2298923,-2.7019923,-1.7099594,-1.4767591,-2.31352,-3.034982,-3.4808192,-3.7613473,-4.043686,-4.1756787,-3.999793,-3.717143,-3.6432366,-3.672123,-1.7109683,-1.2208315,-1.7548815,-1.9150422,-1.5658815,-2.1851015,-2.3390868,-2.656703,-1.4119519,-1.6857532,-2.2627597,-2.9074566,-3.274198,-3.5431285,-3.6731696,-3.7303863,-3.796304,-3.7980514,-3.8499155,-3.9616923,-4.027153,-4.108719,-4.0065975,-3.8431396,-3.828322,-3.4926672,-3.494608,-3.3716362,-3.4547334,-3.4167159,-1.8015057,-1.1578404,-1.7818292,-2.0481682,-1.6955858,-1.4801668,-1.7478646,-1.653102,-1.7847325,-2.103529,-1.5344192,-1.7069405,-2.1039004,-1.806574,-1.3438901,-1.7119329,-2.0134516,-2.2283826,-1.8299162,-1.688533,-1.8830653,-1.2449816,-1.2706114,-1.9972109,-2.0106874,-2.0445201,-2.262755,-2.632964,-2.7321045,-1.094803,-1.3187392,-2.0367393,-1.5164524,-2.2426357,-1.9867638,-1.3967834,-1.3857857,-2.109737,-1.4650089,-1.6592045,-1.8407701,-2.0990186,-1.6497,-2.091113,-2.2305489,-0.60091275,-1.5683296,-1.7602171,-2.40055,-2.3101149,-2.3410587,-2.5303679,-1.683169,-1.5875305,-1.1692376,-1.8362083,-2.1486971,-2.5008602,-3.0535045,-3.1697578,-1.9262663,-0.88924825,-2.051746,-2.4601378,-3.0536435,-3.1836672,-3.115982,-3.1838074,-3.3163323,-2.9344645,-3.0104375,-3.1853151,-3.2514412,-3.4132197,-3.5724401,-3.612581,-3.8041184,-3.2812881,-0.5029466,-1.9793631,-2.3618917,-2.5698738,-2.777467,-3.0146525,-3.295585,-3.4664595,-3.5547051,-3.6622574,-3.672067,-3.7674322,-3.54357,-3.5896196,-3.7342262,-3.8774068,-3.7141705,-3.6969805,-3.7079325,-3.546702,-3.5574033,-3.6716123,-3.557806,-3.5448737,-3.2844806,-0.8636106,-1.7762101,-1.9902428,-2.3660183,-2.5033202,-2.7754304,-2.9090252,-2.9149668,-3.0054126,-2.9730058,-2.9743068,-3.1859202,-3.238595,-3.1530106,-3.0092301,-3.5133202,-3.3735228,-3.2845364,-3.1351995,-1.3675101,-2.5950084,-2.9336553,-3.1905422,-3.097662,-2.835866,-3.0785913,-3.2307575,-3.584497,-3.7343063,-3.4234233,-3.0509868,-3.6675603,-3.6936226,-3.5801177,-3.5161583,-3.5609062,-3.5749066,-3.5996878,-3.4384217,-3.4786596,-3.435278,-3.422046,-3.3795516,-3.2531831,-2.475541,-3.4266312,-3.6877909,-3.8175256,-3.6608508,-1.5560422,-1.9110988,-2.5624595,-2.4735403,-3.0174527,-3.1994553,-3.3356552,-3.5577917,-3.3861442,-3.0977697,-3.0397766,-3.2715938,-3.4068184,-3.2044554,-3.0795197,-2.0975895,-3.1120281,-3.0412393,-2.9488246,-2.9574265,-3.16502,-3.2569823,-3.1363733,-2.9228601,-1.1655493,-1.9965404,-1.9780983,-2.2774553,-2.5928962,-2.4042354,-2.3071966,-2.9427762,-2.7056127,-2.077062,-3.0506117,-3.4861174,-3.622265,-3.778543,-3.7681797,-3.7291555,-3.6345224,-3.6649137,-3.5722463,-3.4056435,-3.3763185,-3.5038998,-3.3787441,-3.2936487,-3.4049459,-3.4184232,-3.3867736,-3.395955,-3.4339666,-1.4670256,-1.8358665,-2.8019142,-3.0070791,-3.0577822,-2.970326,-2.9710279,-3.1840615,-3.3438263,-3.287982,-3.179469,-3.4169312,-3.5902429,-3.4402988,-3.3119645,-3.1704254,-3.5116992,-3.6934047,-3.4833329,-3.3759918,-3.3686078,-3.2327075,-3.606505,-3.5413728,-3.6215966,-3.6896596,-3.6555085,-3.5673406,-3.663889,-3.6421542,-3.734947,-3.6999865,-3.8272948,-3.7567968,-3.7069764,-3.8068824,-3.7726264,-3.7191856,-3.4918327,-3.4867234,-3.686347,-3.576177,-3.6618404,-0.9808065,-2.089223,-2.7449825,-2.8770983
+-1.9380083,-2.5039918,-2.656621,-2.7555757,-2.8644257,-3.0637243,-3.232851,-3.1693766,-2.1620588,-2.6999164,-2.7598047,-2.5301068,-2.7973027,-2.8009024,-2.7472935,-2.816289,-2.5491385,-2.7573993,-2.6028817,-2.7733464,-2.925828,-2.82862,-2.5830426,-2.7178383,-3.1331363,-3.258141,-3.358918,-3.7033653,-3.6453857,-3.251345,-2.446908,-2.678931,-2.7670045,-3.0289009,-3.2916389,-3.4959006,-3.646316,-3.8238785,-3.6971598,-3.8701367,-3.987936,-4.011579,-3.9549909,-3.076505,-2.1534145,-3.098773,-3.185343,-1.9930936,-2.614871,-2.6036332,-2.8855395,-3.2067108,-3.5302215,-3.8711648,-4.0118403,-4.0002923,-4.0330467,-4.136806,-4.138154,-3.6646976,-2.6925159,-2.7539983,-2.7159767,-2.5211194,-3.2961721,-3.5123386,-3.6189032,-3.851547,-3.465479,-3.855545,-3.9864454,-1.7993919,-2.398935,-2.9484386,-3.3901172,-3.8221145,-4.0495443,-4.2725363,-4.4216766,-4.28644,-4.0943995,-4.0524645,-3.714565,-2.3910499,-1.7054459,-2.6392918,-2.5265012,-2.4890668,-2.7245016,-2.8899302,-3.0811145,-3.247627,-3.125837,-3.485502,-3.8031213,-3.977086,-4.030095,-4.0180197,-3.4668293,-3.9433749,-4.0451603,-4.0888724,-4.1376505,-4.241888,-4.37209,-4.413251,-4.1870933,-4.196712,-4.2023916,-4.1962647,-4.1465044,-4.180618,-4.1749163,-4.1936574,-4.0390415,-4.1549134,-2.5123506,-2.439806,-3.3155475,-3.7482128,-3.8523197,-2.4364152,-2.224409,-2.1028757,-2.5416555,-2.9500947,-2.7263408,-2.8764243,-3.1325068,-3.456933,-2.7668095,-2.4700038,-2.1552112,-2.4829116,-1.8306781,-2.5908902,-2.8553162,-3.1779768,-3.3555708,-3.5038624,-1.7579783,-2.5465114,-2.433331,-2.8693027,-2.9213777,-2.8797405,-2.9950366,-2.8048477,-2.3851378,-2.5009146,-2.238543,-2.834621,-2.9160662,-2.7487817,-2.8944805,-3.0358577,-3.1551008,-3.288993,-2.2305355,-2.2849648,-2.6817117,-3.041586,-3.1484225,-3.3057923,-3.2987225,-3.0100708,-3.4342034,-3.0017924,-2.3438697,-3.111236,-3.3638787,-3.674237,-3.824428,-3.6260867,-3.7315645,-3.7917657,-3.77736,-3.9364228,-3.9556208,-2.8230126,-3.5806293,-3.8791707,-2.9131083,-3.2726865,-3.6254056,-3.7156625,-3.8863025,-4.0499306,-4.0409966,-4.1685944,-3.5281625,-2.0124586,-2.302545,-3.0851827,-3.4157324,-3.41666,-3.6422853,-3.8458047,-3.998313,-4.075288,-4.2060194,-4.187672,-4.141655,-4.108282,-4.1560097,-4.2003765,-4.3179536,-4.206867,-4.0726986,-4.1488943,-4.0421953,-4.08451,-4.144807,-4.0863028,-3.827344,-3.4884698,-3.59446,-2.6675935,-2.0874536,-3.0540593,-3.2856615,-3.511002,-3.6628525,-3.791489,-3.8249333,-3.8454251,-3.8989263,-4.0067444,-4.1482067,-4.157488,-3.9772196,-3.9904513,-4.1322403,-4.218419,-4.052917,-3.0321736,-3.7202542,-3.9553707,-4.1492662,-3.9834833,-3.7704163,-2.85637,-3.2033684,-3.724124,-3.9579778,-3.941713,-3.3344336,-3.5670629,-3.8212988,-3.9245517,-3.9276066,-3.959673,-4.0318184,-4.10869,-4.064886,-4.0094643,-3.9975052,-3.9970136,-4.035321,-3.8610854,-1.8455821,-3.3514884,-3.6168144,-3.7124314,-3.7421782,-1.5509864,-2.8357582,-3.2183146,-3.3458095,-3.5410445,-3.6351805,-3.700942,-3.836844,-3.68833,-2.4705024,-2.993226,-3.206007,-3.5079737,-3.4841094,-3.4858952,-2.714333,-3.4555042,-3.371013,-3.3740716,-3.4812946,-3.555275,-3.690153,-3.7942421,-3.7076263,-1.3784052,-2.8644028,-3.0720773,-3.0599208,-3.0745578,-3.0937192,-3.0342085,-3.0063636,-2.9894292,-3.0493088,-3.4207273,-3.7299025,-3.850825,-3.9626093,-3.8673117,-3.8320477,-3.7271261,-3.7887592,-3.931737,-3.9710941,-3.9181638,-4.0141296,-3.9033253,-3.755427,-3.6447082,-3.7770865,-3.8959093,-3.9271255,-3.0232112,-2.8555164,-3.1493156,-3.2393694,-3.3940723,-3.4608364,-3.376036,-3.436435,-3.0750914,-3.2498283,-3.306278,-3.219067,-3.402515,-3.8566127,-3.767103,-3.7201538,-3.4909692,-3.6512837,-3.8983219,-4.018094,-3.8610914,-3.7960658,-3.5807796,-3.8246765,-3.9205563,-3.9587035,-4.0315866,-4.063606,-3.91913,-4.008593,-4.0538206,-4.193585,-4.1947327,-4.2163515,-4.2505116,-4.2237153,-4.284689,-4.216282,-4.2358456,-4.173232,-3.733902,-4.1613016,-4.140919,-4.208743,-3.795419,-3.1965246,-3.6867273,-4.082701
+-2.0051093,-2.7555501,-3.64915,-4.083434,-4.298544,-4.4898586,-4.513461,-2.5808382,-1.2543932,-2.841495,-2.9991045,-3.3015623,-3.276667,-3.7881331,-4.0704494,-4.2118797,-4.267398,-4.257722,-4.179987,-4.421976,-4.475541,-3.1187787,-3.6640465,-4.0931234,-4.2723846,-4.287862,-4.319555,-4.4525557,-4.3754563,-4.1704683,-4.240332,-3.651027,-4.054035,-4.225223,-4.295061,-4.3283715,-3.89081,-4.188733,-4.1027765,-4.165243,-4.225362,-4.2808113,-3.7785025,-3.852992,-3.621461,-4.0160675,-3.3182983,-3.2728763,-1.6875067,-3.2351317,-3.8351655,-4.0183077,-4.1104174,-4.220975,-4.1575093,-4.0775394,-4.226285,-4.302998,-4.262904,-2.0208912,-1.8563455,-1.4724958,-1.8500937,-2.603283,-3.1418185,-2.8849459,-3.2862978,-3.6177049,-2.8167624,-1.7742596,-1.9996563,-1.7444524,-2.332737,-3.2416122,-3.745587,-3.9809918,-4.059318,-4.209429,-4.339449,-4.2440434,-3.9736118,-3.8060389,-3.886241,-3.9710832,-3.8538914,-3.8911123,-1.245638,-1.5727452,-1.175465,-1.5683202,-2.0116646,-2.4220624,-2.537705,-3.013837,-2.932632,-3.4942856,-3.6233559,-3.5879009,-0.9564274,-1.748726,-2.541834,-3.2280736,-3.5189128,-3.7415338,-3.9184027,-3.9810042,-2.8013134,-3.2587328,-3.536331,-3.5865774,-3.6876786,-3.7487347,-3.8164258,-3.9220471,-4.014071,-3.9267392,-1.5668803,-1.7185895,-2.4871368,-3.0340157,-3.297183,-1.2518467,-1.9556626,-2.6954896,-1.7563704,-1.9892653,-2.6112304,-2.4819772,-2.9577415,-1.6898701,-1.993025,-1.9101577,-1.8427271,-1.7473313,-1.4308316,-1.7158781,-2.3458679,-2.8994994,-3.2536025,-3.3836331,-1.2468361,-1.8752416,-0.45224217,-1.6447152,-1.8141382,-1.043259,-1.9949168,-2.2080145,-1.8904052,-1.6723114,-1.35822,-1.3333524,-1.8462069,-1.801313,-1.9351679,-2.1549497,-2.3541815,-2.5044498,-2.7530603,-0.7005069,-1.6232475,-2.1055925,-2.3653636,-2.6208622,-2.8525057,-3.0440178,-2.4412513,-0.8258105,-1.7524489,-2.4639745,-2.9076102,-3.377918,-3.434739,-3.4161897,-3.532374,-3.625174,-3.6931872,-2.6091146,-1.2242768,-1.8723156,-2.4395041,-2.7192726,-0.7894326,-1.9604653,-2.5807755,-2.0194418,-2.6602397,-3.1227956,-3.377882,-3.716237,-2.4867072,-1.179,-2.3399007,-2.7833319,-3.12878,-2.950163,-3.5666113,-3.9164133,-4.056574,-4.1660004,-4.2458143,-4.3137865,-4.355711,-4.3096347,-4.385057,-4.4120364,-4.5254335,-4.472995,-4.556648,-4.581375,-4.563932,-4.5087605,-4.625855,-4.6329527,-4.5364265,-4.1670036,-3.9129987,-0.9858169,-1.6530553,-1.7092865,-2.6587412,-3.061552,-3.3011317,-3.2552505,-1.1131374,-2.3268533,-2.8261576,-3.1418324,-3.406755,-3.576995,-3.6214867,-3.8999183,-3.9860334,-3.99833,-3.9539244,-3.896214,-4.066696,-4.1384654,-3.718975,-3.6504943,-3.8627234,-3.9220073,-3.7935848,-4.2603416,-4.26295,-4.101548,-0.9714441,-2.1351986,-2.8893933,-3.3052208,-3.3406968,-2.8406787,-3.3930783,-3.5622072,-3.7011118,-3.776774,-3.7937746,-3.799161,-3.9098802,-3.953826,-3.7871497,-4.2637186,-3.6899912,-4.119648,-4.032156,-1.3198141,-1.890904,-2.9305983,-3.2896898,-3.503426,-3.7552938,-3.837616,-3.7248654,-1.9568563,-1.9367853,-2.2469049,-2.3320336,-3.0230517,-3.2689323,-3.5401807,-3.5682812,-3.882085,-3.9532785,-3.8983905,-3.9494708,-4.010221,-4.118752,-4.0774117,-3.800243,-0.7279801,-2.2503324,-2.6933308,-2.5645852,-3.0143497,-3.0904207,-1.7012721,-3.0908911,-3.2949867,-3.46876,-3.3998249,-4.004671,-3.9954233,-4.1658955,-4.316737,-4.333048,-4.3317833,-4.3186865,-4.3731318,-4.3082094,-4.268607,-4.446495,-4.5124063,-4.560637,-4.4389462,-4.5289426,-4.66982,-4.6919374,-4.527257,-1.284306,-2.1607263,-3.0070784,-3.5281758,-3.6084552,-3.559834,-3.7079835,-3.8524027,-4.158441,-4.291233,-4.4126635,-4.528373,-4.5916095,-4.6249948,-4.5471807,-4.5111547,-4.5425916,-4.682624,-4.508868,-4.43136,-4.5102134,-4.458251,-4.678501,-4.7438793,-4.8184843,-4.7957006,-4.763775,-4.437784,-4.6479726,-4.6097546,-4.745863,-4.7728996,-4.7399836,-4.7758245,-4.732804,-4.685214,-4.631788,-4.6578197,-4.6462164,-4.4579883,-4.6054115,-4.574309,-4.4992924,-4.460253,-3.8568892,-4.1862774,-4.4994297
+-2.3644137,-3.2021666,-3.8965535,-4.2462373,-4.3403053,-4.551038,-4.494586,-3.710207,-2.3639457,-3.5268655,-3.9630327,-2.8480687,-3.7403922,-4.2391047,-4.398137,-4.5861506,-4.65927,-4.62621,-4.6372833,-4.681243,-4.7347164,-4.5252,-2.418176,-3.6863437,-4.295102,-4.569908,-4.669785,-4.740151,-4.776409,-4.7308445,-4.7233005,-4.3370404,-4.4431343,-4.6521373,-4.6138744,-4.257597,-4.110974,-4.52761,-4.6125364,-4.6563134,-4.6753616,-4.6267815,-2.6007428,-3.3429184,-1.2630785,-2.7949252,-2.9422846,-1.9087073,-1.725582,-3.2693079,-3.9966397,-4.4767084,-4.669665,-4.6803546,-4.5478973,-4.5119944,-4.6929383,-4.7830944,-4.449868,-1.7383438,-1.4260924,-1.5567946,-1.71368,-2.5897934,-3.4982271,-3.8885093,-4.0621996,-4.1714926,-4.2953715,-4.2683487,-4.18686,-3.6942573,-1.2726592,-2.972311,-3.7337627,-3.2794797,-4.112048,-4.4438877,-4.5803394,-4.506595,-4.2315025,-4.0544233,-4.0968885,-2.7309985,-1.5283982,-1.8972714,-2.415485,-1.7110332,-0.8636076,-1.6037596,-2.2397337,-1.2383605,-1.4357163,-2.2923658,-3.262298,-3.716826,-3.819713,-3.2701101,-1.600506,-1.5712538,-2.407775,-2.902792,-3.4583275,-3.963369,-4.079094,-4.1210003,-3.1586764,-3.6320472,-3.853272,-3.9120395,-3.9182346,-3.9377494,-4.0260487,-4.1321716,-4.1728644,-2.0511549,-2.7017763,-1.6403345,-2.742157,-3.1922143,-3.312975,-3.34321,-0.8995828,-1.7288672,-2.1863713,-1.6504941,-2.299913,-2.867991,-3.28233,-2.5941634,-2.932466,-1.4770705,-1.6958424,-1.7486454,-1.7949399,-1.7909327,-2.451548,-3.1007824,-3.5743093,-2.152495,-1.1498071,-1.9166408,-1.5120748,-1.4381479,-1.6009969,-2.0984716,-1.7425088,-2.1639304,-1.8856052,-1.1024216,-1.9701558,-1.5106161,-1.6995268,-1.9413058,-1.8989755,-2.2703104,-2.2809608,-2.519042,-2.4391701,-0.859627,-1.9252352,-2.3203254,-2.582849,-2.7557838,-2.73131,-2.7942946,-2.815723,-3.0151343,-2.207571,-2.0271358,-1.8195376,-2.6456091,-3.1780577,-3.440021,-3.6412916,-3.8444037,-3.987154,-1.598926,-1.6360235,-2.227106,-2.5361655,-2.6705542,-1.5959237,-1.5476056,-2.4667258,-2.8576465,-3.0727596,-3.486392,-3.7289276,-3.913962,-0.3727226,-1.5932726,-2.2461047,-2.4764712,-2.7473,-3.1610107,-3.4486547,-3.6814818,-3.9274898,-4.0038667,-4.1321855,-4.266716,-4.3532696,-4.0350056,-3.910315,-3.9751186,-4.1714373,-4.1350174,-4.2693577,-4.2448144,-4.028862,-4.070266,-4.234746,-4.09326,-4.110713,-4.1733594,-3.9260921,-3.4767714,-2.0759425,-1.8265277,-2.72084,-3.1540825,-3.277297,-3.1238189,-1.8944145,-2.3033779,-2.768358,-3.2313395,-3.6650496,-3.8272874,-3.8908744,-4.0465493,-3.9043303,-3.7373302,-3.7256596,-3.696908,-3.848009,-3.8562522,-2.1221373,-2.410801,-2.9068978,-3.1856794,-3.3701682,-3.6064792,-3.7353797,-3.7303758,-0.7927893,-1.9477826,-2.3500538,-2.6131053,-2.706533,-2.8265414,-2.869514,-2.8792634,-3.0526114,-3.3538573,-3.4850893,-3.5011172,-3.59986,-3.6071515,-3.6882691,-3.7982378,-3.6252246,-3.7985983,-3.9208047,-2.4033842,-1.813614,-2.605614,-2.9683905,-3.269554,-3.523687,-3.7513542,-1.2912034,-1.9462914,-2.2813234,-2.428873,-1.7590393,-2.579575,-2.830607,-3.028865,-3.104158,-3.3636627,-3.370194,-3.4966774,-3.6415303,-3.7287283,-3.896543,-3.9093392,-3.597951,-0.77677435,-2.0293763,-2.3252034,-2.431427,-2.6872358,-2.8508635,-1.3271016,-2.348267,-2.485139,-2.592351,-2.8415017,-3.314114,-3.498598,-3.6489906,-3.978156,-4.077857,-4.2082396,-4.273597,-4.3885064,-4.321677,-4.1690025,-4.309634,-4.3564606,-4.347454,-4.2465777,-4.26675,-4.305879,-4.4347916,-4.4133034,-3.4273424,-1.7471937,-2.9223163,-3.3413057,-3.6617446,-3.771183,-3.9100857,-3.945805,-4.1432905,-4.274542,-4.3319626,-4.4361897,-4.5478516,-4.5268593,-4.5633907,-4.433639,-4.4194937,-4.514128,-4.3745165,-4.2241077,-4.0517454,-4.2381897,-4.4581223,-4.5011907,-4.380961,-4.576007,-4.506918,-4.4177437,-4.5029607,-4.4484935,-4.604595,-4.619029,-4.641991,-4.685665,-4.6226287,-4.571172,-4.601737,-4.580737,-4.492223,-4.528055,-4.5141964,-4.6017146,-4.6020517,-4.444892,-4.474367,-4.5286913,-4.526429
+-2.9169705,-3.712935,-4.204039,-4.499285,-4.5592537,-4.6970654,-4.449819,-3.9208412,-4.232747,-4.287778,-4.104617,-4.3456984,-4.2835016,-4.4076624,-4.438285,-4.4631934,-4.550311,-4.123143,-4.4044046,-4.4568243,-4.548522,-1.5807217,-1.4777321,-3.0659313,-3.889656,-4.303972,-4.533271,-4.736826,-4.7036777,-4.724114,-4.760587,-4.4330187,-4.0619926,-4.3496647,-4.380351,-4.2992067,-3.0661955,-4.002593,-3.9679694,-4.2715034,-4.3204775,-4.2599373,-2.6216073,-1.2756437,-1.6995384,-2.3802555,-2.1750474,-2.9701786,-2.805585,-3.9755511,-4.214714,-4.387328,-4.4458523,-4.4236984,-4.0573263,-3.7346408,-4.308014,-4.5008745,-3.5373163,-3.3465343,-1.3550551,-1.4646963,-2.2246375,-2.2649827,-3.1709344,-3.5829587,-3.919037,-4.0758576,-4.198968,-3.5428271,-3.955387,-1.3430512,-1.7382587,-2.9934776,-2.4635167,-3.4467206,-1.1210368,-2.8675065,-3.7811248,-4.0515203,-3.813387,-3.6646156,-3.7000935,-3.8784642,-3.7735147,-2.380166,-2.8564181,-1.3827096,-2.0320628,-1.4800926,-2.3198853,-1.1752118,-1.5750701,-2.0700126,-2.980798,-2.0860465,-2.5778928,-2.1910887,-1.8537618,-2.5210676,-2.1047392,-2.9243703,-2.166812,-2.9433236,-2.906027,-2.2584558,-1.800678,-2.7793298,-2.603318,-3.2769127,-3.4703338,-3.5507052,-3.7516923,-3.85945,-3.899721,-1.7238625,-2.8249993,-1.9173702,-2.7199454,-0.70944875,-1.4569771,-2.2520914,-1.4543277,-1.7348117,-1.9677342,-1.9933923,-2.607193,-3.120813,-2.3568988,-2.4414244,-2.1283062,-0.9580293,-1.8953484,-1.8849487,-2.277426,-1.1498019,-1.819158,-2.26542,-2.127276,-1.9602686,-1.2323773,-1.631335,-1.875868,-1.7031959,-2.2812352,-1.4971888,-1.7639555,-1.9227724,-1.7384254,-1.631209,-1.7115568,-1.7570041,-1.7307645,-2.0659895,-1.9563591,-2.3404512,-2.5411944,-2.8820002,-1.1362346,-1.4573703,-2.1395802,-2.4544683,-2.8212109,-2.87715,-2.386106,-1.4485339,-2.4752173,-2.54596,-2.8919742,-3.188201,-2.919273,-3.3629189,-3.6383116,-3.7246008,-3.8213696,-3.8347054,-2.2843714,-1.0656174,-1.1139042,-2.001217,-2.253138,-2.3901582,-2.030668,-1.5501443,-2.4963899,-2.9216907,-3.1197991,-3.4545093,-3.5247152,-3.6245542,-2.6442423,-0.66103363,-1.7455415,-2.174635,-2.5303526,-2.8568816,-3.0768516,-3.380318,-3.6883073,-3.846822,-3.9808264,-4.224393,-4.3535547,-3.9619317,-3.9625902,-4.057488,-4.283327,-4.184553,-4.290984,-4.24662,-4.150034,-4.194179,-4.3197074,-4.2810574,-4.3224926,-4.282584,-4.197097,-2.047307,-1.8684225,-2.5949955,-3.447903,-3.8601928,-2.9870112,-3.2977557,-1.1322216,-1.4478471,-2.1889253,-2.704309,-3.182431,-3.4568481,-3.6221194,-3.8526137,-3.7699246,-3.7724311,-3.8758025,-3.8191588,-4.0507927,-4.0126243,-3.8685112,-3.6764812,-3.6861777,-3.9787626,-4.046763,-3.9849572,-4.0569744,-2.3682895,-0.96987003,-1.9746388,-2.176617,-2.7367768,-2.9483333,-3.0683172,-2.9661834,-3.0877788,-3.315937,-3.533672,-3.67894,-3.8405292,-3.9269934,-3.9858112,-3.9431148,-3.9806662,-3.6858773,-3.7854595,-3.9211328,-3.7722807,-3.7962751,-3.9692721,-4.107889,-4.118482,-4.0458136,-4.06792,-4.1573515,-3.0485535,-3.2874415,-3.6556368,-3.5445225,-3.927904,-4.0747795,-4.158712,-4.1952944,-3.969264,-3.8458166,-4.087598,-4.1762486,-4.3044744,-4.3872523,-4.253337,-3.995328,-1.6827358,-2.789617,-2.551795,-3.2837548,-3.7513397,-3.9511418,-3.738157,-3.6410656,-3.8850803,-4.169192,-4.108842,-4.095539,-4.123392,-4.0064397,-4.246351,-4.272155,-4.394656,-4.426161,-4.4815793,-4.3470373,-4.1814013,-4.312413,-4.4392967,-4.4331455,-4.3607054,-4.351883,-4.4050264,-4.5343046,-4.5225534,-3.9188747,-2.720912,-3.3901584,-3.5582485,-3.6892345,-3.8574712,-3.8867428,-3.4916725,-4.029531,-4.3025885,-4.3882966,-4.419429,-4.5302963,-4.524582,-4.4795456,-4.4139767,-4.423454,-4.35396,-4.149157,-1.9749037,-3.2127616,-3.8386354,-4.2933903,-4.2180085,-3.8972204,-4.243143,-4.0906935,-4.1547327,-4.248564,-4.2420845,-4.427026,-4.5063996,-4.518646,-4.5411406,-4.4488945,-4.430793,-4.466749,-4.4991665,-4.4493055,-4.4042053,-4.5669565,-4.5705476,-4.555255,-3.4633543,-4.139304,-4.340184,-4.402376
+-3.1483312,-3.8861418,-4.333558,-4.5685463,-4.639667,-4.659009,-4.5851974,-4.2624993,-4.2570114,-4.3930864,-4.3062115,-4.5604343,-4.4223967,-4.490921,-4.5323825,-4.65977,-4.626032,-4.5984106,-4.5283465,-4.391683,-4.549508,-1.6939343,-1.6157426,-2.331386,-3.4871922,-4.185138,-4.609404,-4.7686157,-4.8584733,-4.8941298,-4.891765,-4.7506824,-4.1105356,-4.3407087,-4.5444803,-4.493328,-4.338524,-4.2652097,-4.101219,-4.3714123,-4.4625225,-4.419863,-3.0904412,-1.1289636,-2.1147003,-2.7095196,-3.486836,-3.9570336,-3.9791489,-4.392237,-4.425249,-4.4640894,-4.438564,-4.4267244,-4.029036,-3.9994516,-4.297782,-4.542563,-4.4258614,-3.471128,-1.1130292,-1.8901149,-2.0271573,-3.055073,-3.6005254,-3.8015032,-4.1146564,-3.7279534,-4.21354,-4.089347,-3.1299324,-1.7549156,-2.5488656,-3.4068732,-1.6342784,-2.0541635,-1.7692578,-2.8716798,-3.6461618,-3.9819388,-3.811918,-3.60107,-3.5923052,-1.5872651,-1.804537,-2.2498336,-1.8022964,-1.4787585,-2.0442863,-2.0553725,-2.6119108,-2.8108222,-0.8670104,-2.1316752,-2.670484,-2.85937,-3.0604248,-1.452418,-1.811509,-1.977055,-1.5544358,-2.7510767,-2.7273054,-2.5015814,-3.0472243,-2.4819834,-2.1442192,-3.134527,-3.179697,-3.5792637,-3.4045062,-3.5483084,-3.7520742,-3.8263476,-3.8582282,-3.4567661,-3.648277,-2.29699,-1.364585,-1.6208729,-1.9067365,-1.9247309,-1.8585471,-1.8949817,-2.2761931,-1.954357,-2.9068365,-3.2738,-3.4206424,-1.8572172,-1.9195834,-1.3454077,-1.8107612,-2.1582975,-0.97795004,-2.0196178,-2.2472882,-2.629663,-2.4430547,-1.6891083,-2.1665576,-2.3393934,-2.0637512,-2.3275485,-2.6445303,-1.7693261,-2.2243843,-2.4115276,-2.356307,-2.441821,-1.5318067,-2.152515,-1.8267707,-1.8480211,-2.5309706,-2.775125,-2.837904,-3.0551481,-2.645459,-1.4171008,-2.6585681,-3.0141873,-3.0701168,-3.0591068,-3.354557,-3.0802755,-3.5437472,-3.5368795,-3.4528625,-3.5315967,-3.6432877,-2.1802552,-3.2042568,-3.5767717,-3.8442845,-3.8480363,-1.496003,-1.4746228,-1.8668642,-1.8967258,-2.6421378,-2.9255679,-2.276224,-1.8875333,-2.8706396,-3.1694977,-2.4270794,-3.1626391,-3.5546117,-3.7201142,-3.7719905,-0.8764507,-1.8624126,-2.7389529,-3.2069283,-3.5439482,-3.7706995,-3.8700314,-3.998601,-4.1228743,-4.219526,-4.4304266,-4.6151047,-4.2922087,-4.3099284,-4.2923026,-4.584201,-4.5233626,-4.572145,-4.586602,-4.541263,-4.6075163,-4.7477217,-4.7401314,-4.6976566,-4.7073956,-4.5264196,-2.3132434,-3.3503578,-3.78471,-4.3376446,-4.5377502,-4.1689763,-4.217444,-0.9660334,-1.8328457,-2.696548,-3.1621761,-3.533052,-3.848331,-3.994423,-4.297517,-4.3112745,-4.3176126,-4.431617,-4.3238974,-4.40992,-4.331481,-4.0482597,-4.2366915,-4.3599024,-4.4976215,-4.62318,-4.620986,-4.6704764,-4.6027327,-0.87920815,-1.8045975,-2.2106078,-2.9523444,-3.2863038,-3.4580088,-3.3795657,-3.5339181,-3.7544835,-3.952789,-4.20452,-4.3614054,-4.4955516,-4.4769917,-4.482441,-4.4592347,-4.317824,-4.365444,-4.4917326,-4.5870194,-4.0352736,-4.3080072,-4.506481,-4.652275,-4.343873,-4.381503,-4.4428105,-3.529546,-2.5282784,-3.843378,-4.239421,-4.5377374,-4.653878,-4.727546,-4.7356434,-4.641169,-4.4698935,-4.7126837,-4.6893454,-4.7429633,-4.7747145,-4.7380996,-4.6157856,-4.4641113,-4.5109878,-4.4463587,-4.5078125,-4.573024,-3.8809507,-4.407859,-4.319454,-4.564899,-4.6514015,-4.5639677,-4.418617,-4.5889254,-4.0257835,-4.5252004,-4.648698,-4.6930056,-4.693863,-4.7304688,-4.68916,-4.5840797,-4.743204,-4.7359753,-4.792854,-4.7843113,-4.7860613,-4.7255607,-4.7952633,-4.78137,-4.5917654,-4.4877806,-3.958857,-3.816932,-3.798975,-3.9965124,-3.9717484,-2.3166718,-4.152088,-4.540737,-4.678917,-4.7628193,-4.8160353,-4.776929,-4.7809753,-4.7784963,-4.7671943,-4.619932,-4.4294996,-1.3948556,-2.8814254,-3.7246742,-4.324236,-4.338648,-2.949518,-4.106293,-4.174982,-4.474659,-4.4778566,-4.6131544,-4.616002,-4.6504183,-4.6326566,-4.5978484,-4.5683537,-4.570174,-4.621585,-4.6271286,-4.6075935,-4.721366,-4.7769775,-4.7866144,-4.7939267,-4.7758145,-4.7116117,-4.730377,-4.763962
+-2.6105871,-3.1732366,-3.5465083,-4.024694,-4.234519,-4.333009,-4.3047724,-2.0609937,-3.0406222,-3.6274276,-3.6582775,-4.303235,-4.467372,-4.354564,-4.5487943,-4.614216,-4.688429,-4.6832275,-4.6510906,-4.5330877,-4.439453,-2.2211213,-1.5305008,-2.7517023,-3.513157,-4.063479,-4.4421945,-4.6187143,-4.6943603,-4.782832,-4.825279,-4.8041306,-4.2580233,-4.272952,-4.3979907,-4.377659,-4.2852693,-4.0812945,-4.0548496,-4.051751,-4.416423,-4.453523,-1.3346041,-2.0399966,-1.9047054,-2.43288,-3.0519228,-3.598535,-4.0923996,-4.3460064,-4.41636,-4.318,-4.364951,-4.3822823,-4.0212493,-4.011053,-4.086109,-4.4724417,-4.459444,-3.0568547,-1.52007,-1.9925786,-2.1956332,-3.2028677,-3.8457813,-4.066981,-4.4011,-4.4596314,-4.2780704,-4.084094,-2.1445127,-2.6422877,-2.259894,-3.2905684,-1.2630277,-1.8700622,-2.2253592,-2.1743453,-2.9423418,-3.6267953,-3.7562985,-3.284856,-2.1595728,-3.1634579,-1.8631855,-2.611171,-2.162333,-0.9643312,-1.3034254,-2.2816,-2.1560423,-2.5995355,-2.3435264,-2.5727537,-2.5918803,-2.5311527,-2.5181441,-2.5411873,-2.2804184,-1.8264385,-2.1417727,-2.2613776,-2.6622334,-3.0170996,-3.259324,-3.4090896,-2.2924461,-2.9104457,-3.3148174,-3.5142398,-3.175888,-3.4682653,-3.7178233,-3.6694374,-2.4342146,-1.5946695,-1.8939351,-1.8563616,-2.124045,-2.1734083,-2.0281372,-2.408409,-2.172697,-2.351275,-2.3415327,-1.8603634,-2.4562125,-2.434544,-2.2183957,-1.8646141,-1.8040782,-1.7536436,-1.9093919,-2.405119,-1.6939852,-1.3956124,-2.4343452,-2.5596395,-2.4771585,-2.2067347,-2.1805034,-2.5815694,-2.1824536,-2.5025275,-2.624991,-2.0269482,-2.5927904,-2.687149,-2.762902,-2.4529653,-1.5269722,-1.8422054,-2.1381335,-2.4667187,-2.4888299,-2.6395683,-2.6979632,-2.8145359,-2.131505,-2.37882,-2.3524127,-2.321944,-2.1092248,-1.9880856,-2.4163766,-2.4077961,-2.4198952,-2.359778,-2.6311102,-2.7902522,-3.033597,-2.4756737,-2.9753206,-3.270166,-3.5146942,-2.7798803,-1.1365659,-1.9516789,-2.1240065,-2.480966,-2.4933105,-2.4317515,-1.608129,-2.2665195,-2.6260104,-2.860421,-2.2054017,-2.6605673,-3.030247,-3.1614785,-3.178869,-2.2962291,-2.4194038,-2.9725933,-3.3113587,-3.502798,-3.4144735,-3.3585513,-3.5929592,-3.7310193,-3.6206825,-2.9400373,-1.5794001,-2.1777105,-2.7565508,-2.1213217,-2.8316345,-3.1000347,-3.2796268,-3.4101691,-3.5773745,-3.743698,-3.838043,-3.905054,-3.9470043,-3.989255,-3.9358315,-2.7182178,-1.014329,-2.4371002,-2.916638,-3.1489406,-3.1426287,-3.0001445,-2.5717795,-2.2116601,-2.2969475,-2.8708534,-3.1674557,-3.4819703,-3.7371712,-3.6660385,-3.592247,-3.6588256,-3.8088703,-3.7461183,-3.8419087,-3.779632,-3.768768,-3.6241093,-3.7371984,-3.8695893,-4.0853534,-4.1489863,-4.0955124,-3.7176032,-0.9698941,-1.8073179,-2.4631524,-2.9881854,-3.2701435,-3.4573178,-3.203072,-3.385397,-3.6970115,-3.9081883,-4.067355,-4.138727,-4.178309,-4.131529,-4.06541,-4.028846,-3.7285337,-3.7813988,-3.9644728,-3.869899,-2.9914885,-3.3868542,-3.7158413,-4.10069,-4.1838617,-3.9687662,-4.055865,-3.6028259,-3.3704286,-3.5552225,-3.7874956,-4.2865934,-4.3544617,-4.317258,-4.342099,-4.405642,-4.280771,-4.4886174,-4.4381723,-4.4505634,-4.533502,-4.519412,-4.231128,-3.5460045,-4.070824,-3.9710245,-3.9175572,-4.187711,-4.4493623,-4.041762,-4.2064867,-4.4817715,-4.374526,-4.0419106,-4.1080713,-4.3847017,-3.6762567,-4.4871635,-4.349099,-4.2583895,-4.0908966,-4.414304,-4.4255714,-4.2652454,-4.4644694,-4.5975485,-4.6704254,-4.6845827,-4.6061325,-4.5661335,-4.593375,-4.599626,-4.409044,-4.3450313,-3.745173,-2.2869008,-2.8964558,-3.4659224,-1.9794449,-3.0541582,-3.9551344,-4.426327,-4.5310636,-4.644311,-4.760109,-4.703424,-4.6401043,-4.617069,-4.639238,-4.5860987,-4.4442954,-1.28893,-2.3834014,-3.0248413,-3.714389,-3.6489267,-1.9445294,-2.256307,-2.2674913,-2.5188098,-2.903556,-3.6763794,-4.009959,-4.2070475,-4.2751627,-4.3485546,-4.403204,-4.416136,-4.4990497,-4.5785,-4.555026,-4.7079945,-4.8305726,-4.8143945,-4.810172,-4.76186,-4.812403,-4.8462224,-4.749569
+-2.6551666,-3.623268,-3.7241817,-4.1306343,-4.31736,-4.385244,-4.3887,-4.136942,-4.1556225,-4.455761,-4.5816293,-4.6391106,-4.699233,-4.580409,-4.6218147,-4.7106333,-4.7628226,-4.7594323,-4.7153883,-4.6305046,-4.5565057,-3.5820692,-2.087439,-3.3889823,-4.096958,-4.51179,-4.7604628,-4.8300967,-4.8339972,-4.86446,-4.8835287,-4.8315,-4.7354746,-4.5366497,-4.286608,-4.5564604,-4.424406,-3.1364465,-3.0161688,-3.9046478,-4.1743636,-4.4175606,-3.224687,-3.279757,-2.4540663,-2.39717,-3.472034,-4.0868278,-4.5010524,-4.6725397,-4.7321424,-4.591196,-4.662773,-4.599889,-4.327157,-4.24937,-4.3924603,-4.477578,-4.50324,-4.3200474,-3.8021717,-2.2984862,-2.211152,-3.4171312,-3.9193978,-4.060049,-4.3808317,-4.4626646,-4.412381,-4.1136785,-2.478519,-3.0204554,-3.4266825,-3.2686958,-2.362605,-1.7977934,-2.454833,-2.4151125,-2.3015504,-3.1816027,-3.4402547,-1.6563989,-2.3909388,-2.4538581,-2.381195,-2.4372842,-2.2730484,-1.3439239,-2.0930283,-2.0285728,-2.5722296,-2.4748297,-2.522225,-1.8151327,-2.335052,-2.571011,-2.5700874,-2.054693,-2.4373276,-2.1805527,-2.5324426,-2.3823733,-2.2924953,-2.0148773,-2.3374174,-2.3239253,-2.0563464,-2.073371,-2.2636309,-2.0352232,-2.01764,-2.2401092,-2.5528634,-1.9804114,-1.9181834,-2.2561402,-2.0658774,-1.8068008,-2.0293899,-2.4426475,-2.6213799,-2.3536973,-2.6635263,-2.4523246,-2.4838507,-2.4031386,-2.0979228,-2.4799037,-2.3787074,-2.4192035,-2.106102,-2.3438463,-2.453739,-2.5476956,-2.533297,-2.3445327,-2.5396445,-2.803997,-2.8895316,-2.7186933,-2.9284132,-3.0002887,-2.7180095,-2.9038544,-2.8636868,-2.9323256,-2.741703,-2.8075905,-2.6863227,-2.4714882,-2.272984,-2.5746477,-2.7058477,-2.7568502,-2.7115078,-2.5081015,-2.682495,-2.4949067,-2.4153008,-2.872858,-2.670609,-2.6146684,-2.5099406,-2.5753098,-2.4689655,-2.4538813,-2.2154233,-2.6048636,-2.645131,-2.7758644,-2.4916146,-2.548316,-2.484227,-2.8344755,-3.1236205,-2.974435,-1.9951946,-2.3236966,-2.5792432,-2.6391075,-2.7418914,-2.7305236,-2.0262923,-2.610423,-2.836532,-2.8235397,-2.5530162,-2.8845274,-3.09473,-3.2094917,-3.2318192,-3.3179746,-3.3412533,-3.4611983,-3.661615,-3.803306,-3.8140237,-3.42345,-3.6076882,-3.8391037,-3.5352345,-2.1309958,-2.444157,-2.8391266,-3.1179438,-2.9967804,-3.21939,-3.3717506,-3.3932304,-3.4592688,-3.6687686,-3.8474252,-3.978643,-4.017147,-4.0875187,-4.2073584,-4.2877398,-3.9746194,-3.9090247,-3.2234206,-3.155592,-3.1927173,-2.9295106,-2.4958289,-2.896047,-3.032352,-2.9294033,-3.1412427,-3.1560426,-3.5058687,-3.765829,-3.7285976,-3.6822767,-3.7953439,-3.8876667,-3.804168,-3.7735093,-3.8844783,-3.9848366,-3.9294653,-4.00564,-4.009115,-3.9851623,-4.273943,-4.2732306,-3.955816,-1.7117159,-2.93592,-3.4644003,-3.632918,-3.799924,-3.9358609,-3.79846,-4.045089,-4.132863,-4.3051777,-4.3907146,-4.4880095,-4.5334706,-4.4725647,-4.3769393,-4.5359335,-4.486305,-4.3443613,-4.250157,-4.0991488,-4.0951457,-4.0521173,-4.1141105,-4.490119,-4.552533,-4.3171606,-4.3642426,-4.0462136,-4.0650654,-3.7800856,-4.1999245,-4.6666656,-4.662076,-4.5610933,-4.5363464,-4.599971,-4.4708557,-4.6886425,-4.6594753,-4.694351,-4.7446685,-4.773522,-4.5831237,-4.274753,-4.363333,-4.2670894,-4.054938,-4.367429,-4.666733,-4.161258,-4.578217,-4.7179666,-4.623519,-4.2765274,-4.3982944,-4.67614,-4.484829,-4.059724,-4.2593665,-2.9118276,-3.2035255,-4.214083,-4.4617834,-4.48968,-4.674677,-4.7727714,-4.804349,-4.8061967,-4.763315,-4.7468348,-4.7891064,-4.722682,-4.626318,-4.6482644,-4.6165857,-2.2651043,-3.35955,-3.54416,-2.3327107,-3.4272895,-3.6507492,-3.933617,-4.043763,-4.3181543,-4.5518093,-4.549617,-4.6679974,-4.7055464,-4.755971,-4.6798553,-4.484435,-2.1440125,-2.6212234,-3.3835797,-3.9269323,-3.303918,-2.3641338,-3.1129103,-2.455287,-2.785235,-3.0441837,-3.5349853,-3.8139658,-4.120246,-4.258111,-4.3718095,-4.428815,-4.510838,-4.6087523,-4.659289,-4.6282797,-4.741018,-4.843154,-4.7509403,-4.834735,-4.786831,-4.8349876,-4.912033,-4.882449
+-0.8466031,-0.5886522,-0.7165244,-0.94947857,-1.4404663,-1.8169256,-1.8140191,-1.5609835,-1.6080511,-2.0585766,-2.058987,-1.8479217,-1.8338548,-1.9289634,-1.4148201,-2.3108325,-2.1070862,-2.052932,-2.048245,-2.0606637,-2.0340352,-1.8839765,-1.8483179,-2.0638425,-2.1369033,-2.2082894,-2.510846,-2.3699522,-2.2639904,-2.2767448,-2.4254208,-2.481485,-2.5400488,-2.5485473,-2.7353096,-2.808524,-2.819249,-2.779966,-2.0995936,-1.2778312,-1.965315,-2.1737013,-2.4002461,-2.3776953,-2.3228667,-2.244145,-2.2512097,-2.2464333,-2.3340783,-2.3792982,-2.369852,-2.5011687,-2.691557,-2.4421687,-1.9602484,-1.210146,-1.835072,-1.9035541,-1.8761728,-1.9094361,-0.98881835,-1.3763634,-1.7789229,-1.5931041,-1.8595427,-2.0168808,-2.1166801,-2.2162862,-1.8823284,-1.8209568,-1.9706649,-1.9321423,-0.7135162,-1.9203826,-1.9785401,-1.8206726,-0.8331452,-1.857634,-2.1185982,-1.026674,-1.7915652,-2.212123,-0.96118873,-1.9467729,-1.9739116,-1.172429,-1.2638996,-1.2692753,-1.7690791,-1.8812158,-1.8629967,-1.974871,-1.5531291,-1.793484,-1.703238,-1.2190965,-1.582294,-1.1878519,-2.0004747,-0.6736248,-1.288751,-1.28745,-1.0276557,-1.0923609,-1.4240576,-1.5732613,-1.5615541,-1.5744067,-1.7925925,-1.5656295,-2.1435084,-2.4195833,-2.5839787,-1.9711212,-2.146761,-2.4568255,-2.0703182,-2.156579,-2.2934954,-2.3615398,-2.5915945,-1.8921291,-2.1981277,-2.555691,-1.9705127,-1.6432654,-2.2100453,-2.5221238,-2.576027,-1.9336337,-2.0000758,-1.1938167,-1.8570555,-1.9790183,-2.3152275,-2.2949715,-2.2186446,-2.506456,-2.3867338,-1.2284673,-1.9650096,-2.2494235,-2.659907,-2.8846247,-2.8994613,-2.4376664,-2.654109,-2.0955508,-2.3708968,-2.8894687,-2.8486495,-3.1622753,-3.2658637,-3.223371,-3.1524773,-2.797873,-3.2285829,-0.99358875,-1.9584792,-2.0403824,-2.3921819,-1.9986039,-2.765161,-2.918683,-2.8288674,-2.747494,-2.9095757,-3.086958,-3.2077527,-3.2749002,-2.3800774,-2.844007,-3.2424934,-2.7396874,-2.810866,-1.7336599,-2.3237493,-2.1477854,-2.7199228,-3.1366897,-3.2589383,-3.2582097,-3.17145,-3.2072082,-2.9776363,-1.5287107,-1.962962,-2.0358157,-2.0709789,-2.308987,-2.3729608,-2.8469558,-2.5946136,-2.678277,-2.4500966,-2.4281542,-2.9244616,-2.961063,-3.1028118,-3.0615027,-2.946587,-3.0639722,-3.0208366,-2.9625902,-2.17347,-2.6521819,-2.8320482,-3.0867329,-3.031998,-3.1023967,-3.0790684,-2.983338,-3.0814333,-2.4771423,-2.7115583,-2.8629804,-3.1175356,-3.2734575,-3.3175611,-3.4298215,-3.4535017,-3.5092192,-3.685297,-3.4468126,-3.4766188,-3.687985,-3.6674948,-3.5765119,-3.3953786,-3.284719,-3.1570501,-3.320919,-3.4354572,-3.2884011,-3.3488977,-3.3926177,-3.4501495,-3.3708277,-3.3185794,-3.276276,-3.298469,-3.3348725,-2.7535508,-2.7358642,-2.7731094,-2.8425,-2.8054671,-3.0180821,-2.4673843,-2.523959,-2.6087713,-2.653882,-2.7799242,-2.8637106,-2.7234585,-2.7557018,-2.8102298,-2.8029432,-2.9030075,-2.8503346,-2.8835783,-2.9060788,-2.699379,-2.631627,-2.731098,-2.7599826,-2.8394752,-2.807196,-2.6247275,-2.4244328,-2.5982,-2.5748837,-2.589417,-2.5780187,-2.6518762,-2.766924,-2.7152576,-2.7899427,-2.746957,-2.7496848,-2.8410304,-2.998441,-2.8388107,-2.6409254,-2.6513233,-2.7141902,-2.7510128,-2.6727104,-2.7504065,-2.8205447,-2.9174156,-2.9152675,-2.4844365,-2.4261699,-2.533929,-2.4990091,-2.402841,-2.4325094,-2.4264495,-2.4636974,-2.5660367,-2.5719104,-2.443221,-2.2778163,-2.0433373,-2.0585427,-2.3769217,-2.4915605,-2.5647268,-2.4763415,-2.4899871,-2.307916,-2.2427485,-2.4577348,-2.3263717,-2.1036057,-2.155239,-2.348018,-2.3412147,-2.2716053,-2.137323,-1.7597959,-1.5402182,-1.7273028,-1.6195639,-1.5596024,-1.4443079,-1.5301049,-1.5626912,-1.7924381,-1.8331593,-1.835692,-1.8246616,-1.9117583,-1.7238033,-1.7253588,-1.9428396,-1.7503977,-1.4442635,-0.8392156,-0.94180924,-1.0798752,-1.0597302,-1.2104019,-1.2568231,-1.2537519,-1.327857,-1.2590189,-1.0080837,-0.5177539,-0.3546436,-0.49932328,0.06428197,-0.0016882159,-0.5464526,-0.66050345,-0.34002116,-0.2825255,-0.21098027,0.048940387,-0.03764299,-0.3174968,-0.28984362,-0.045866396,-0.21349326
+-1.1529125,-1.6539812,-2.0206966,-2.2460356,-2.2599177,-2.6786003,-2.8322895,-2.77661,-2.799529,-3.0579805,-3.306989,-3.0462284,-3.078667,-3.1787844,-2.1373696,-3.1744046,-3.1597304,-3.0888803,-2.9541264,-2.9070022,-2.8966255,-2.8803742,-2.8971026,-1.5996209,-2.3489103,-2.7005072,-2.7459314,-2.6588564,-2.791655,-2.7819724,-2.9417634,-2.9683354,-3.1346924,-3.2530556,-3.4266446,-3.5392869,-3.715191,-3.7014058,-3.5533075,-1.6336988,-2.515771,-2.7572289,-2.9871898,-2.9029205,-3.062058,-3.166382,-3.2980144,-3.447226,-3.465324,-3.4986892,-3.453404,-3.1749368,-3.638627,-3.5422912,-1.2296766,-2.5590749,-2.7296662,-2.5259259,-2.694572,-2.4466462,-2.1996365,-2.568482,-2.813142,-2.4931145,-2.6322184,-2.7811236,-2.9451294,-3.0580971,-3.2542024,-3.2341747,-2.0392318,-1.7529527,-1.9665521,-2.5588179,-2.24829,-2.2879672,-2.4991999,-2.5065327,-2.442845,-1.9960974,-2.3258848,-2.7797806,-2.085572,-2.5569885,-2.7085571,-1.271033,-2.0621893,-2.317549,-2.504589,-2.8097236,-2.8368783,-2.1089568,-1.997146,-2.512164,-2.79435,-1.4587713,-2.0640154,-2.3115048,-2.6184604,-2.3852253,-2.3799567,-2.0979438,-1.9430451,-2.0377588,-1.9605073,-2.1158066,-2.2721,-1.928027,-2.423891,-2.3282475,-2.7412846,-3.0440862,-3.5381303,-1.1610984,-2.1791873,-2.7967625,-2.8852406,-2.3277266,-2.3380408,-2.9371445,-3.3680387,-2.287387,-1.698814,-2.9068816,-2.8275971,-3.095233,-3.6100872,-3.8654118,-3.7813785,-3.795365,-2.0145726,-2.1016374,-2.3783007,-2.016469,-1.9965008,-3.0831661,-3.446593,-3.655167,-3.9974384,-3.804048,-1.2155057,-2.29101,-2.8971357,-3.2048554,-3.376307,-3.4531014,-2.9017801,-3.5443063,-3.6742952,-4.0096197,-4.010454,-4.1866083,-4.1723347,-4.149807,-4.153704,-2.6491718,-1.4741503,-2.098332,-2.5422423,-2.0764234,-2.7832823,-3.0790784,-2.8867197,-3.2781677,-3.3757355,-3.2367694,-3.443469,-1.5690428,-2.5492735,-3.209314,-3.0723145,-3.453082,-3.7058635,-1.6940392,-2.72469,-2.3182945,-2.5613227,-2.6264234,-2.9520652,-3.372442,-3.5685337,-3.5555625,-3.4069412,-3.635945,-3.5809684,-2.6106873,-2.5436802,-3.054503,-3.2837656,-3.2488112,-3.1856594,-3.4796963,-3.6262379,-3.1884491,-3.2785847,-3.4932365,-3.6816504,-3.7613215,-3.5994291,-3.6926203,-3.3715553,-3.6393719,-3.6888807,-3.812828,-3.9845757,-3.9539757,-3.8375459,-3.7660663,-3.9365408,-4.0229077,-4.1436024,-3.7565722,-3.784439,-2.1536994,-2.9861712,-3.4661562,-3.6909213,-3.8143482,-3.8881266,-3.9065003,-3.9934788,-3.9731631,-4.0184393,-4.1111603,-4.0990095,-4.1142254,-4.194724,-3.9922466,-4.09791,-4.0076466,-3.9128747,-4.103091,-4.022008,-3.8618882,-3.7766664,-3.8723435,-3.9675856,-3.9372845,-4.0697637,-4.0287986,-3.958035,-3.6431935,-3.5646837,-3.367674,-3.3552241,-3.5279617,-3.3759627,-3.4824576,-3.403848,-3.8297908,-3.931774,-3.9109626,-3.9894514,-3.8541076,-3.7334268,-3.718206,-3.6787596,-3.8401372,-3.8541102,-3.7699804,-3.7961156,-3.8502123,-3.5215812,-3.4415479,-3.3672695,-3.6446507,-3.9106712,-3.9996305,-3.8219018,-3.5977569,-3.7176232,-3.6620662,-3.8837285,-3.71588,-3.906674,-3.8830662,-3.7546806,-3.846443,-3.70218,-3.7265062,-3.6893644,-3.8157218,-3.7416258,-3.5920787,-3.5803792,-3.7023585,-3.7451615,-3.7258754,-3.7419293,-3.7074687,-3.693376,-3.5878701,-3.268868,-3.2614675,-3.349916,-3.4056149,-3.4950223,-3.6395628,-3.4848745,-3.424427,-3.6016762,-3.6182618,-3.404502,-3.214264,-3.1839294,-3.5151231,-3.8382688,-3.998088,-3.9116406,-3.6446803,-3.554073,-3.484715,-3.4315875,-3.504906,-3.4461062,-2.6336784,-2.8523378,-3.2406335,-3.2792459,-3.297729,-3.1002414,-2.722583,-2.473113,-2.6077313,-2.7572525,-2.5066445,-2.3314238,-2.1456149,-2.6225057,-2.950863,-2.7702599,-2.7349114,-2.7724566,-2.9620519,-2.6490703,-2.875616,-2.7367475,-2.5744116,-2.428866,-2.384014,-2.7362943,-2.9937105,-2.9304001,-2.9725103,-2.7479548,-2.592008,-2.5455136,-2.2189624,-1.8565427,-1.6258373,-1.3081324,-1.5395962,-0.8338966,-0.91848713,-1.8827417,-1.8763674,-1.0096169,-1.2734228,-1.1034585,-0.8300001,-1.351601,-1.7260698,-1.8160517,-1.9322499,-2.384315
+-1.586255,-1.9376559,-2.2165108,-2.456808,-2.482572,-2.8577905,-2.9784346,-3.0619223,-3.1002367,-3.2001677,-3.3574357,-3.1584253,-2.7679968,-3.050074,-2.9450223,-3.0057838,-3.143185,-2.8101506,-2.9813585,-3.3353024,-3.4535685,-3.5012648,-3.2703133,-2.046574,-3.004558,-3.1653423,-2.4987786,-2.9178672,-2.9426286,-2.956606,-3.1262975,-3.36729,-3.4752147,-3.4986522,-3.5065074,-3.653723,-3.5844488,-3.55693,-3.1784148,-2.0496237,-2.8261638,-3.154189,-3.199276,-3.24398,-3.3882725,-3.3521943,-3.3740838,-3.3873618,-3.301559,-3.1050696,-2.877777,-2.9282937,-3.2249432,-3.456749,-2.8835826,-2.7324054,-3.1253405,-3.2351637,-3.3924794,-1.7143161,-2.597096,-3.1349745,-3.2950335,-3.0486522,-3.2598367,-3.3386164,-3.4025283,-3.3762417,-3.3988862,-3.4899397,-1.7939523,-2.505742,-2.358212,-2.6766455,-2.5531042,-2.9719112,-3.0698228,-2.2029505,-2.4686027,-2.81985,-3.137764,-3.2356133,-3.3176064,-3.5148752,-3.5015616,-3.2714412,-3.605987,-3.8837662,-3.8735113,-2.0465057,-2.7405334,-2.850769,-3.025624,-1.5064663,-2.664081,-3.0237885,-1.1899493,-2.424882,-2.9209187,-2.8480196,-0.73929363,-2.3718362,-2.5145702,-2.7017117,-2.5043123,-2.4008002,-2.499433,-2.721805,-2.8151078,-2.9132433,-2.6980436,-3.232399,-3.6248777,-1.184445,-2.503418,-2.942229,-1.9508373,-2.2769694,-2.0148263,-2.7283123,-2.9316967,-3.0197527,-1.546821,-2.6834815,-2.91986,-3.0875573,-3.5653903,-3.609069,-3.5481224,-2.8406103,-3.4879475,-2.1782377,-2.5377703,-2.474903,-2.669169,-3.3452992,-1.8830231,-2.7438705,-3.2201085,-3.1990285,-1.42317,-2.6398556,-3.160773,-3.2340999,-3.404537,-3.440669,-3.406478,-2.8359346,-2.5567453,-3.2702127,-3.6313472,-3.3743181,-3.588637,-3.7214773,-3.799236,-3.9112558,-1.0258652,-2.6618495,-3.1275868,-2.5726638,-3.1325376,-2.9062986,-3.0116282,-3.3208356,-3.4789412,-3.2925448,-3.349915,-2.8348634,-2.6721127,-3.31314,-3.257443,-3.4865847,-2.7109203,-3.0976572,-3.292893,-1.6126506,-2.6040554,-2.2270498,-2.7794352,-3.1816623,-3.3337517,-3.3203697,-3.3406034,-3.4674487,-2.9530802,-1.8842568,-2.940369,-3.036967,-3.1495206,-3.202937,-3.3594499,-3.5669236,-3.6218374,-3.4557734,-3.3594737,-3.5871716,-3.82056,-3.8179681,-3.8502226,-3.0089955,-2.787924,-2.824359,-3.2970529,-3.5746207,-3.6977282,-3.7262387,-3.6776943,-3.7037377,-3.8707163,-3.8840857,-3.9733353,-3.1074781,-3.4752636,-3.669958,-3.7920027,-3.9240437,-4.0158043,-4.0976057,-4.133383,-4.1536465,-4.1677184,-4.0965037,-4.1974096,-4.2159243,-4.0242505,-4.1601343,-4.1984215,-4.1794825,-4.219043,-4.2006707,-4.024729,-4.044661,-4.006029,-3.9387732,-3.9445782,-4.1398187,-4.0313563,-4.002429,-4.0580187,-4.0535374,-4.0500774,-3.9791145,-3.8561044,-3.9787283,-3.964624,-3.9800925,-3.8645391,-3.9784484,-4.032381,-4.378967,-4.5588083,-4.580124,-4.5951214,-4.415427,-4.6072373,-4.5408955,-4.803379,-4.874507,-4.653654,-4.500547,-4.700929,-4.822825,-4.489237,-4.0901213,-4.014618,-4.4406505,-4.6999636,-4.5230737,-4.4639697,-4.5349803,-4.55313,-4.2241406,-4.5150685,-4.0384855,-4.4848967,-4.4991,-4.352466,-4.6566696,-4.710305,-4.6702404,-4.700128,-4.6339054,-4.687641,-4.4298277,-4.526477,-4.644417,-4.757886,-4.668277,-4.743761,-4.6732044,-4.58029,-4.418665,-3.7516744,-3.8212454,-3.94065,-3.988285,-4.331666,-4.3045793,-4.3145757,-4.304926,-4.3710246,-4.223424,-3.824082,-3.674909,-3.6982372,-3.8925781,-4.2520075,-4.4604454,-4.56565,-4.286641,-4.310996,-4.145068,-4.378226,-4.440978,-4.184017,-3.2714171,-3.4905295,-3.9848938,-3.9756947,-3.9974437,-3.6963923,-3.3825386,-3.2512536,-3.3670454,-3.1586099,-3.0500567,-3.1347208,-2.644261,-3.372638,-3.7032013,-3.5443985,-3.605616,-3.5119615,-3.5783815,-3.5929706,-3.5052652,-3.1303039,-2.9603388,-2.877375,-2.875072,-3.3137386,-3.6187668,-3.4464798,-3.9001503,-3.7210488,-3.6572711,-3.8413086,-3.2881315,-2.819761,-2.6497335,-2.7481346,-2.6729069,-2.9100127,-2.184819,-2.80912,-2.8302639,-2.8937235,-3.0360413,-3.2064517,-3.143993,-3.3113227,-3.3125784,-3.2949226,-3.337235,-2.7766428
+-1.1618534,-1.1163464,-1.1380994,-1.6327792,-2.041767,-1.9984089,-2.4126456,-2.4080584,-2.5255494,-2.4420838,-2.6598828,-2.7175546,-2.708723,-2.5760703,-2.1665025,-2.378324,-2.1262403,-2.6387734,-2.6034865,-3.044039,-3.3257232,-3.3097305,-3.2641296,-2.4755874,-3.0439708,-2.5595367,-2.7358425,-2.8082268,-2.93848,-3.203248,-3.4531627,-3.5498366,-3.4937615,-3.4597428,-3.3661866,-3.482676,-3.3705173,-2.7110817,-2.795708,-2.1540632,-2.6299655,-2.7681155,-2.4483035,-3.0610673,-3.0011382,-2.9668775,-3.1112342,-3.0882373,-3.0405211,-2.714542,-1.654703,-2.3217125,-2.1791883,-2.8163385,-1.7149146,-1.9620217,-2.4189928,-2.1476343,-2.3819532,-2.4198122,-2.4202852,-2.7215056,-2.9892952,-3.1154304,-3.3903008,-3.543529,-3.5851676,-3.4008584,-3.338113,-3.2444887,-2.276023,-2.9508276,-2.8870478,-0.7197626,-2.093133,-2.487515,-2.7568016,-2.9446359,-1.0535806,-2.2118697,-2.7078094,-2.238877,-2.6085024,-3.0837321,-3.011037,-3.3769631,-3.6699853,-3.6599298,-3.3648863,-3.3831654,-3.337909,-3.0524957,-3.1505342,-3.1122918,-2.8267689,-2.2627606,-0.4581861,-1.5545274,-2.519185,-2.7050238,-2.916708,-3.1641812,-3.2471733,-3.6093175,-3.6304903,-3.452074,-1.6687349,-1.0096852,-1.8553559,-2.1254969,-2.6614172,-3.0036473,-1.789337,-1.2256225,-2.0703368,-2.6287508,-1.7866987,-2.2626626,-1.3388222,-2.1463265,-2.6253088,-1.9630805,-2.4493003,-2.801868,-1.7678326,-2.4765291,-3.1277862,-3.3566556,-3.2644732,-0.8625001,-2.1334717,-2.6495764,-1.9063274,-2.5979807,-1.7899692,-2.6067793,-2.2259703,-1.6999842,-2.2258658,-1.5439649,-1.9898177,-2.5590277,-3.2329836,-3.3213885,-3.5005178,-3.6219707,-3.659313,-2.0422363,-2.4884152,-3.0102515,-3.4098556,-3.3392015,-3.5163324,-3.5329995,-3.5181367,-3.6202512,-1.3161048,-1.7526134,-2.7150404,-3.012823,-3.2313585,-3.0713825,-3.250906,-3.365174,-3.555797,-1.8224329,-2.8621585,-2.6246748,-2.315693,-3.115699,-3.1619012,-3.480257,-3.5194874,-3.4096828,-3.3450851,-2.9113488,-1.596451,-2.645083,-3.1504202,-3.3691921,-3.4684165,-3.27636,-3.3109677,-3.4127505,-3.461679,-2.224193,-2.627975,-2.9709592,-3.236116,-3.289548,-3.464837,-3.5123892,-3.5994132,-3.7644005,-3.4022374,-3.5968738,-3.6082823,-3.7045956,-3.648388,-2.515546,-3.0447836,-2.5833101,-3.1058698,-3.337975,-3.6412528,-3.7193093,-3.5943353,-3.708737,-3.6853337,-3.6554348,-3.7724628,-1.2902688,-2.7604704,-3.2210965,-3.477081,-3.7262855,-3.6593034,-3.7421193,-3.816731,-3.8225543,-3.865842,-3.824152,-3.8799906,-3.9281046,-3.7353878,-3.839762,-3.8543148,-3.868937,-3.8389664,-3.8821335,-2.2831697,-2.9588602,-2.8874245,-2.8770573,-3.00209,-3.4657109,-3.15923,-3.3734128,-3.238879,-3.275481,-3.215655,-3.494539,-2.1753516,-2.867978,-2.7180204,-2.5651708,-2.5159316,-2.5688796,-1.8376695,-2.7839522,-2.9379292,-2.903068,-2.7750502,-2.5221314,-2.4968798,-2.5408483,-2.6203532,-2.8412683,-2.6392212,-2.3634572,-2.3627298,-2.7195387,-2.584217,-2.2753432,-2.2691524,-2.576529,-2.7720342,-2.4600596,-2.8805177,-2.8607042,-2.6737106,-2.573813,-2.908288,-2.3376255,-2.685941,-2.8088772,-2.8658814,-2.9742568,-2.904367,-2.8504565,-2.9842548,-2.8133936,-2.8598661,-2.390955,-2.5003858,-2.4497712,-2.7584085,-2.7812133,-2.9469056,-2.986277,-2.9073632,-2.7735782,-2.2286842,-2.3332596,-2.3690963,-2.0797417,-2.4383779,-2.250795,-2.4785373,-2.4191751,-2.4685154,-2.4222991,-2.1839323,-1.956664,-1.9089743,-2.0051613,-2.17901,-2.5018182,-2.4657497,-2.1877072,-2.176622,-1.7883183,-2.280145,-2.2862234,-2.1092148,-1.7930398,-1.9108986,-2.1891227,-2.1119885,-2.0883439,-1.848366,-1.7917255,-2.1050763,-2.3018887,-2.465267,-2.6175346,-2.76993,-2.8926735,-2.810006,-3.022148,-3.0163481,-3.0561013,-2.7311463,-2.692273,-2.8835008,-2.5826056,-2.255643,-2.3095303,-2.4618378,-2.539946,-3.015818,-2.9230833,-2.6800954,-2.7260122,-2.6092463,-2.5587058,-2.647819,-2.1927562,-1.9902581,-2.103786,-2.3299344,-2.2940173,-2.528345,-2.6780467,-2.40694,-2.4989626,-2.481607,-2.6731176,-2.9758482,-3.044963,-3.174247,-3.2856073,-3.2609925,-3.31396,-3.174636
+-1.3401476,-1.4630626,-1.5200953,-1.8878026,-2.1616297,-2.3832793,-2.4006352,-2.6070616,-2.628927,-2.7324615,-2.6487951,-2.7840986,-2.8554149,-2.5915556,-1.3515097,-1.5879389,-2.030996,-2.6959512,-2.7350895,-2.9690876,-3.0812771,-3.0912771,-3.0594301,-3.0036454,-3.1235998,-0.7941252,-2.6801963,-2.8879058,-3.0775056,-3.237818,-3.4991217,-3.6168933,-3.5598936,-3.5665822,-3.394211,-3.34829,-1.5732018,-2.4680295,-2.4464693,-2.8418546,-3.0756574,-3.2881637,-3.2330332,-3.273506,-3.036502,-1.7419246,-2.850617,-3.04724,-3.008303,-2.697881,-2.884949,-2.4376025,-2.3754337,-2.4416947,-2.1840284,-2.7594504,-2.6478882,-2.473905,-2.7472649,-2.4439793,-2.474156,-3.0109477,-3.1018038,-3.3270545,-3.5673587,-3.7114058,-3.6735501,-3.4020247,-1.3795367,-2.3317535,-1.3291911,-2.294591,-2.7014072,-0.5551471,-2.1029422,-2.4686513,-2.7795854,-3.103594,-3.237633,-3.4340615,-3.404638,-3.478211,-3.7022026,-3.5985928,-3.543035,-3.6090426,-3.8128948,-2.728644,-0.8021609,-1.4753355,-1.6852921,-1.1210021,-2.350906,-2.7197306,-2.660951,-2.7941074,-1.7172823,-2.4371526,-3.0330596,-3.261854,-3.4194374,-3.564322,-3.7476923,-3.9222293,-3.8398056,-3.5508637,-3.2885065,-2.87885,-1.1099497,-1.894375,-2.7823923,-3.1950786,-1.3469114,-1.4112891,-2.475272,-2.8112714,-1.3693916,-1.121952,-1.2273847,-2.2562227,-2.5135336,-1.9545609,-2.5199916,-2.3396301,-1.8575705,-2.1612892,-2.8639967,-2.651341,-2.9851332,-1.2959702,-1.9430622,-2.042525,-2.326789,-2.159681,-2.298935,-2.2357678,-1.8568352,-1.827981,-2.5819378,-1.6693083,-1.7714187,-2.8609333,-3.2192063,-3.1882694,-3.4889107,-3.683412,-1.5744164,-2.5351095,-2.024342,-2.692318,-3.251029,-3.382377,-3.5007436,-3.498642,-3.316846,-3.3222349,-1.0539718,-1.8761927,-2.238649,-2.5431218,-2.9920337,-1.7688798,-2.5907626,-2.9614453,-3.3441558,-1.6076027,-2.511535,-1.7343454,-2.5445788,-2.8818388,-2.9719124,-3.3540478,-3.472232,-3.4763331,-3.237615,-2.728218,-0.9570902,-2.4547095,-2.9227996,-3.0083737,-3.0656736,-3.1047547,-3.2714338,-3.4090567,-3.4265442,-1.5867876,-2.2170644,-2.9069107,-2.8269737,-3.139758,-3.3478913,-3.374769,-3.4481573,-3.5749445,-3.4466755,-3.6095266,-3.5338635,-3.5629764,-3.5155935,-3.4390674,-3.5494418,-2.7802272,-3.3459373,-3.555266,-3.7004895,-3.7471023,-3.6582,-3.6215143,-3.678169,-3.6602197,-3.520046,-2.6071453,-2.8960347,-3.1876426,-3.314443,-3.5739827,-3.574245,-3.6785746,-3.777165,-3.5892575,-3.7047405,-3.639008,-3.68841,-3.7273407,-3.4157734,-3.5101411,-3.6862338,-3.5691137,-3.586278,-3.6659303,-2.123207,-3.1835604,-3.5068893,-3.4402454,-3.3094683,-2.457244,-2.9688926,-3.1392374,-3.2479796,-3.3213727,-3.257538,-3.2712505,-3.3978572,-3.5150378,-3.7144842,-3.5699823,-3.5775876,-3.5432181,-3.48135,-3.832024,-3.915221,-3.8872163,-3.6811996,-3.4355822,-3.3302097,-3.5032792,-3.637929,-3.674657,-3.3050857,-2.6000617,-2.862895,-3.116913,-3.0920475,-2.7239976,-2.5482006,-3.0446324,-3.0232806,-2.7936764,-2.7289653,-3.008317,-3.1028473,-2.96702,-3.2153726,-2.9466405,-2.8916235,-3.1185632,-3.1232386,-3.274419,-3.1870406,-3.371952,-3.4821148,-3.369169,-3.2248979,-2.6397834,-2.7505562,-3.0970774,-3.2639432,-3.2993875,-3.2122142,-3.3036811,-3.2572203,-3.2547567,-2.9015446,-2.862184,-2.7840917,-2.588421,-2.894269,-2.6244628,-2.6413836,-2.878707,-3.0163593,-2.9786353,-2.7689822,-2.5510862,-2.4189076,-2.3308666,-2.1384568,-2.5085454,-2.5827923,-2.2630405,-2.1515923,-1.8398882,-1.9125274,-2.1618474,-2.0918393,-1.5915974,-1.3940475,-1.9143615,-1.9627951,-1.9212817,-1.7857996,-1.6073905,-1.597501,-1.5341737,-1.728759,-2.10121,-2.2810106,-2.430749,-2.5087113,-2.8160849,-2.9093244,-3.1344492,-3.0557404,-2.8890557,-3.2199717,-2.9658618,-2.8283157,-2.8478034,-2.798862,-2.8839672,-3.312646,-3.0798388,-2.8783126,-2.9301848,-2.6113336,-2.6498911,-3.0267096,-2.7650037,-2.654541,-2.809398,-2.972568,-2.9776263,-2.9683332,-2.9504209,-2.3906894,-2.6660824,-2.810279,-2.8934293,-3.0373204,-2.5966818,-2.920528,-1.5270686,-2.6763444,-3.0266528,-2.7254376
+-1.0728658,-1.2863531,-1.4988943,-1.8812292,-2.2183247,-2.6047747,-2.5695052,-2.7716522,-2.9016464,-2.5786397,-2.7582047,-3.0461006,-3.1701784,-3.2084398,-2.2561169,-2.7112672,-2.4621472,-2.5785916,-2.680513,-3.0349026,-2.967289,-3.181041,-3.236853,-3.0525184,-3.028417,-1.7395388,-2.5997055,-2.7867596,-2.9978204,-2.615133,-3.0487254,-2.9460373,-2.9949944,-3.1835332,-3.2941847,-3.4158442,-2.3968036,-2.4567955,-2.966004,-2.9516888,-3.0188146,-3.0694404,-3.0958111,-2.8333814,-2.814145,-2.4096305,-2.989971,-3.0871239,-3.1012697,-3.0359771,-3.0838323,-3.2224565,-2.4309607,-2.965766,-3.0005937,-2.7393136,-2.6341176,-2.953479,-3.1188378,-3.0113444,-2.863688,-2.5788546,-2.8989158,-3.1582332,-3.3392532,-3.5753906,-3.7522898,-3.8558836,-3.9758434,-4.0653753,-4.2247205,-3.8320763,-3.9701037,-1.1155063,-2.4888518,-3.104279,-3.5019333,-3.845961,-3.970892,-4.136008,-4.1667504,-4.236743,-4.426623,-1.5921136,-2.5788717,-3.20784,-3.7721388,-3.947353,-3.8550982,-2.4923158,-2.8820283,-2.870852,-2.7048836,-3.3790224,-3.774739,-1.1620331,-2.2032638,-2.9454064,-3.3888018,-3.6932745,-3.949916,-4.200228,-4.437417,-4.5932436,-4.590467,-4.4747,-3.582211,-3.8672042,-2.389694,-3.2043512,-3.7370515,-4.0820484,-4.1211047,-4.10865,-4.439049,-4.265297,-3.8826184,-2.2928145,-1.8042598,-2.355544,-2.0910006,-2.868656,-3.210318,-2.2763076,-2.6315484,-3.2721698,-2.671854,-2.796237,-3.2562225,-1.548807,-2.8357615,-3.266061,-3.1516542,-1.7033924,-2.8815017,-3.4048023,-3.7577562,-3.8436222,-4.076135,-4.2758408,-1.4611723,-2.7189722,-3.2489376,-3.306415,-3.3417997,-3.516478,-3.6191776,-3.6113915,-3.9350622,-4.200062,-4.186137,-4.2718296,-4.258403,-4.1692057,-4.111732,-3.793077,-3.8114696,-4.165546,-3.1860714,-3.0769882,-3.8242636,-4.1090994,-4.1810102,-4.3850756,-4.426402,-1.948871,-3.0890856,-1.3429993,-2.6793451,-3.1453042,-3.2264638,-3.4296377,-3.7327847,-3.965476,-4.0389547,-3.4914742,-1.3195041,-2.7373064,-3.147284,-3.449751,-3.6704538,-3.8374794,-3.9482334,-4.035339,-4.202518,-2.6322937,-3.020934,-3.4685884,-2.8039098,-3.5327706,-3.888588,-4.099411,-4.18717,-3.9750152,-3.701377,-4.1037846,-4.1822143,-4.2791386,-4.279178,-4.189773,-4.122567,-1.2418927,-2.6303382,-3.030921,-3.3324819,-3.611697,-3.7869236,-3.9027674,-4.051259,-4.1686287,-4.232131,-4.268694,-4.21041,-4.269905,-4.29565,-2.9575524,-3.8293352,-4.1014385,-4.277528,-4.259446,-4.34441,-4.3538423,-4.3642,-4.400055,-4.2459946,-4.237758,-4.3806343,-4.3333015,-4.3493023,-4.4081993,-3.0445375,-3.3190885,-3.9546716,-3.8102884,-3.7183108,-2.6852894,-3.3588767,-3.4858289,-3.708852,-3.842899,-3.7701528,-3.8199964,-3.9088364,-3.9220514,-4.231948,-4.1792555,-4.168559,-4.224655,-4.066906,-4.521248,-4.52294,-4.678941,-4.4991417,-4.139534,-3.8366473,-4.224366,-4.265167,-4.4054117,-4.009223,-3.9865646,-4.4740567,-4.5782714,-4.4419193,-3.8307703,-3.8357875,-4.136092,-4.0134068,-4.010495,-3.0921562,-3.7242975,-3.8094802,-3.5831666,-4.013576,-3.6671405,-3.6546597,-3.8850546,-4.07098,-4.2202635,-3.967987,-4.0542197,-4.288027,-4.3192806,-3.9922714,-3.2799916,-3.5247529,-3.8332894,-4.107403,-3.8714585,-3.6160417,-3.7852616,-3.8102365,-4.066392,-3.9096413,-3.8308454,-3.5710526,-3.6145709,-3.6902664,-3.419238,-2.839405,-3.3165026,-3.6806703,-3.6952806,-3.5130749,-3.19319,-3.0461202,-2.9223785,-3.2686555,-3.593133,-3.5702116,-3.1736848,-3.0332747,-2.7549505,-2.8278654,-3.2278366,-2.8808613,-2.6699293,-2.7441273,-3.1648784,-3.4890723,-3.5422018,-3.4535012,-3.324744,-3.3790946,-3.410578,-3.4501476,-3.3559892,-3.407484,-3.5900807,-1.9886259,-2.9663854,-3.3026395,-3.461362,-3.4101272,-3.1243167,-3.5037384,-3.459827,-3.3302877,-3.173549,-3.099188,-3.1084063,-3.1959617,-3.065199,-2.9979851,-3.1301644,-2.3593035,-2.7616937,-3.050146,-2.9132106,-3.15503,-3.2494287,-3.4812384,-3.544724,-3.6152496,-3.7921405,-3.598726,-3.5114715,-3.6552734,-2.7500596,-3.4491715,-3.5070257,-3.5496392,-1.5022272,-2.9329357,-3.347899,-2.3049393
+-1.9542619,-2.1595514,-2.249365,-2.355288,-2.5976686,-2.872128,-3.0746913,-3.118201,-3.1869674,-3.3674479,-2.3165212,-2.8857646,-3.2519505,-3.3856292,-3.4765785,-1.1815108,-2.449563,-2.3974698,-2.7810276,-2.4645941,-2.819177,-2.9126654,-3.0255752,-3.0022225,-2.9954157,-1.6772727,-2.1444678,-2.4973214,-1.7336605,-2.468194,-2.5418634,-2.8214715,-2.9989922,-3.1865954,-3.0575466,-3.105351,-0.9350578,-2.1398273,-2.4160137,-2.4406362,-2.4181435,-2.7960882,-3.1635213,-2.405861,-2.4558878,-1.6647949,-2.21449,-2.5609412,-2.7294633,-2.7621102,-2.8142905,-2.9347596,-2.0731664,-2.0580742,-2.406355,-1.729346,-1.8639786,-2.3952045,-2.719761,-2.6463888,-2.6418073,-1.6511601,-2.241514,-2.7460136,-2.7812285,-3.044495,-3.2039747,-2.9279275,-3.356429,-3.5693552,-3.7042084,-3.7112727,-3.535246,-0.8326263,-1.5415772,-2.4949832,-2.8524382,-3.0791855,-3.1463675,-3.3488073,-3.3993673,-3.4051716,-3.6980517,-3.5311089,-2.7803917,-3.5249875,-3.1364572,-1.9657534,-2.905334,-2.250781,-1.4006447,-2.041348,-1.8976456,-2.478539,-2.8790936,-3.1379232,-3.472991,-3.8082526,-3.5891266,-3.7621992,-3.8542476,-4.0726714,-3.8860524,-3.8012686,-3.9285967,-3.896016,-3.6958213,-3.8267736,-1.3777791,-1.4256245,-2.4081879,-2.9315372,-3.4623656,-3.4341671,-1.7460959,-0.9772081,-2.1979299,-2.7290435,-2.6972003,-2.055901,-2.3115106,-3.04347,-3.2858336,-3.571776,-2.058991,-3.0394416,-3.6736202,-2.9640908,-3.2575982,-3.3509035,-3.6257973,-2.366191,-2.995107,-2.168952,-3.1813626,-3.034085,-2.8587356,-2.26875,-3.2042103,-3.5472512,-3.2912283,-3.1539564,-3.8335867,-3.8859107,-4.081336,-4.109221,-3.6422691,-3.4659452,-3.8604007,-4.0026345,-1.2522949,-1.994819,-2.8495054,-3.08954,-3.2533498,-2.5345066,-1.2667376,-2.5050564,-2.9086783,-3.017511,-3.198144,-3.6733286,-3.6304913,-4.0768256,-4.349023,-2.6814232,-3.383626,-2.5585546,-3.080577,-3.5557473,-3.9519343,-4.3414044,-4.4256325,-4.4977665,-4.2658744,-4.1440682,-3.6537042,-3.888504,-4.0343885,-4.222381,-4.5029883,-4.3195024,-4.2213063,-3.7008376,-4.0756826,-3.8724449,-3.8279486,-3.8681574,-1.1524566,-2.3605623,-3.050131,-3.2974834,-3.5277133,-3.7608256,-1.2345239,-2.7116957,-3.232398,-3.6615644,-3.8665605,-3.9677863,-3.8414838,-3.8424306,-3.721512,-3.997013,-4.3353395,-4.5109234,-4.2744274,-4.068525,-3.8541489,-4.1265497,-4.2618494,-4.3629613,-4.0452633,-4.061306,-4.204072,-3.9432266,-3.958326,-4.156768,-4.141659,-3.840942,-3.8089805,-3.9000025,-3.945815,-4.1022577,-3.9338226,-3.8579469,-3.9204693,-3.8809133,-4.0240574,-4.242531,-3.107107,-2.1983647,-3.3713632,-2.989067,-3.383965,-1.6443526,-2.7181766,-2.988555,-3.3139434,-3.5326073,-2.784937,-3.374689,-3.4538999,-3.656023,-3.956132,-3.7153518,-3.642681,-3.916033,-3.6921723,-4.1694245,-4.095234,-4.5923114,-4.4208417,-3.9939818,-3.0737278,-3.9430094,-4.053335,-4.2102547,-4.0448227,-3.7118223,-4.108047,-4.4344683,-4.4374037,-3.5202498,-3.5020013,-3.4066513,-3.3859372,-3.5615833,-1.664627,-2.9242227,-3.2853532,-3.1627407,-3.5468051,-3.3087173,-3.6027997,-3.760977,-3.7378569,-3.9153275,-3.9789782,-3.6083632,-4.007984,-4.200837,-3.822187,-2.8533812,-3.115335,-3.1460018,-3.483378,-3.4076147,-3.1770127,-3.221234,-2.4176154,-3.2537622,-3.4060004,-3.3368416,-3.0906262,-3.4297404,-3.3294532,-3.2989132,-3.2787147,-3.642374,-3.867225,-3.8513448,-3.474491,-3.2972271,-3.3132625,-3.2975302,-3.1512685,-3.547496,-3.6188133,-3.3308501,-3.262268,-3.218461,-3.1947646,-3.1457448,-3.0610323,-3.1105232,-3.1735759,-2.8309443,-3.072899,-3.311957,-3.3040497,-3.3094225,-3.5225563,-3.3590088,-3.4388895,-3.3854907,-3.4726782,-3.5642688,-1.8117944,-2.672867,-3.379418,-3.7580273,-3.585056,-3.3897467,-3.5979354,-3.6790805,-3.5515935,-3.5993195,-3.661377,-3.7177963,-3.8927834,-3.6279325,-3.8606517,-3.5514264,-3.0556657,-3.3363073,-3.4516087,-3.7357366,-3.8485444,-4.172778,-4.2625504,-4.158771,-4.2625074,-4.298291,-4.1324196,-3.7820044,-4.061448,-1.0391374,-2.6731496,-2.8875036,-2.942377,-2.2953029,-2.3788905,-2.9786284,-2.5016158
+-1.892016,-1.7989142,-2.0685015,-2.1868823,-2.757273,-3.4423609,-3.9486363,-3.9950342,-3.9733806,-3.8115587,-0.6838198,-1.8522254,-2.1680727,-2.3773568,-2.5425556,-0.66363555,-1.7495483,-2.238429,-2.1480737,-2.276485,-2.4298337,-2.2449923,-2.3884485,-2.7119431,-3.0666351,-3.209144,-3.2584338,-1.6659111,-0.8259303,-2.120759,-2.4869657,-2.539168,-2.6111798,-2.5947523,-2.5562127,-2.631668,-2.1559181,-2.9029083,-3.2965333,-2.9894056,-0.89630383,-1.9908494,-2.4127004,-2.3311357,-2.1340454,-1.1975038,-1.8434275,-2.16285,-2.347889,-2.3058019,-2.5077224,-2.9331613,-3.1208866,-3.2617462,-3.6447742,-0.50019294,-1.179354,-2.1394198,-2.1333363,-2.152274,-2.2502818,-1.3361398,-1.9331247,-2.1193235,-2.2239728,-2.3692255,-1.2199792,-1.2624683,-1.8057375,-2.1116958,-2.571529,-2.852682,-2.939701,-0.6833938,-1.3897702,-2.33971,-3.194587,-3.727486,-3.5914292,-3.6426196,-3.403957,-1.4821368,-2.207779,-1.308977,-1.7856328,-1.3304499,-1.512755,-2.1152606,-1.7605529,-1.4851952,-1.7448547,-1.3833373,-1.5644534,-1.8457717,-2.1755235,-2.727007,-3.1970124,-3.6727674,-1.0545552,-1.5830699,-2.4337115,-3.2762358,-2.9820604,-3.3372722,-2.263693,-2.6907136,-3.1635642,-3.3398514,-0.9114371,-1.7042359,-1.9025933,-1.635374,-2.3812904,-1.847426,-1.4188071,-1.7457752,-1.542646,-1.5358822,-2.0763912,-0.90568495,-1.7168205,-2.1407232,-2.0417233,-2.6538525,-2.9227018,-3.1316395,-2.8194013,-0.88094825,-1.2589859,-1.4398419,-1.8541228,-1.8716412,-2.2852793,-1.4145335,-1.6677734,-1.5564402,-2.3151665,-2.008893,-1.1279588,-2.0977407,-1.9827832,-1.3106936,-2.202375,-2.5483768,-2.9124298,-3.2775583,-2.8134365,-2.4435928,-2.6498613,-1.9811457,-0.96593744,-1.4997966,-1.975057,-2.0249016,-2.259263,-2.420795,-2.7382364,-3.0552654,-3.0491717,-3.0034857,-3.3163693,-3.7064786,-3.668049,-3.988575,-4.024106,-1.5399936,-2.108612,-2.375624,-3.0484686,-3.0630774,-3.6526365,-3.9991555,-3.904653,-3.6928473,-3.5518856,-3.4860992,-3.434807,-3.9435406,-3.9858255,-4.0273895,-4.1877294,-3.8556101,-3.582382,-2.7839298,-2.676585,-2.99572,-3.5704925,-4.1171713,-4.149619,-4.0105753,-4.258454,-4.1298075,-3.9854155,-3.9670658,-3.7279992,-3.694639,-3.9582794,-4.076133,-4.121025,-4.0277624,-4.1160836,-4.2012053,-4.241163,-4.394456,-4.436011,-4.5068493,-4.179925,-3.8489888,-3.9883642,-3.9627533,-4.0341463,-4.074329,-3.8204024,-3.661022,-3.9605455,-3.9849749,-4.0146494,-3.7819517,-3.4357016,-3.2038603,-3.6510894,-3.8609295,-3.887317,-4.2900634,-4.2061505,-3.8440213,-4.1638227,-4.2332897,-4.2716637,-4.139177,-3.582337,-2.77448,-3.4996052,-3.7128105,-2.6138928,-1.5675071,-2.7470431,-3.077138,-3.4869304,-3.8065488,-3.3833418,-3.649262,-3.7164333,-3.8873153,-4.0313387,-3.62004,-3.5641794,-3.8849702,-3.6964421,-4.2019954,-3.9951372,-4.2192354,-3.83279,-3.2933688,-3.1503363,-3.5967314,-3.9020128,-3.9406605,-3.7923079,-3.1986806,-3.1942496,-3.9529,-4.0488596,-3.2611742,-3.3401518,-2.9288507,-2.8513024,-3.0703106,-1.3120565,-2.986612,-3.043833,-2.8677783,-3.2912524,-3.1856766,-3.4699695,-3.5047555,-3.4333606,-3.891353,-3.8213966,-3.2279315,-3.6340947,-3.8556135,-3.1125972,-2.6988692,-2.910147,-2.8764918,-2.9335046,-2.9064229,-2.6655245,-2.0579216,-2.0137446,-2.1675684,-2.6677575,-2.9118674,-2.3741403,-2.9699752,-2.986368,-2.8960598,-2.9800632,-3.7001348,-3.9620295,-3.8793945,-3.642686,-3.3474965,-3.4284096,-3.380392,-3.2965841,-3.698872,-3.6447773,-3.269291,-3.2977266,-3.2821875,-3.2471595,-3.2228923,-3.2426805,-3.1646762,-3.1521802,-2.6761336,-2.781129,-3.102313,-3.435886,-3.5444305,-3.6488354,-3.4222817,-3.1544237,-3.3356786,-3.4413424,-3.4384604,-1.5810395,-2.5442657,-3.0304127,-3.4275336,-3.2871933,-3.006539,-3.3149414,-3.6033852,-3.5123954,-3.4781368,-3.4722376,-3.3761582,-3.8478098,-3.6085036,-3.8530185,-3.8650942,-3.8421016,-3.825451,-3.8956358,-4.037206,-4.1802635,-4.3211584,-4.430418,-4.344902,-4.3719473,-4.5184,-4.4433727,-4.1128283,-3.658918,-0.77409595,-2.1750684,-2.3596702,-2.397916,-2.2020528,-2.1700947,-2.6056201,-2.3478584
+-1.6651837,-2.1833768,-2.3180082,-2.532323,-2.8705397,-3.3562984,-3.6920877,-3.636243,-3.7070968,-3.803997,-1.2295761,-2.5273628,-2.7880049,-2.8748317,-2.9125137,-1.1477972,-2.526089,-2.7768388,-2.680425,-2.9243145,-2.93215,-2.8886974,-2.90036,-3.1892471,-3.4393992,-3.5311322,-3.6206963,-3.2458718,-1.2378361,-2.7989976,-2.9321675,-2.9082603,-3.1437938,-3.163847,-3.1463156,-3.082106,-3.1394343,-3.4929748,-3.7659414,-3.8980677,-1.8437961,-2.4936352,-3.16358,-3.2181063,-3.0438385,-2.8896987,-2.0676613,-2.5271878,-2.7887826,-3.1618478,-3.3709376,-3.5207653,-3.8515441,-4.020133,-4.176611,-4.2389245,-1.0117294,-2.6173038,-2.7912412,-3.0400276,-3.3038287,-1.3731116,-2.6154342,-2.6543875,-2.590781,-2.5947566,-2.7307396,-1.4626293,-2.5484684,-2.876652,-3.2384124,-3.2652035,-1.347376,-1.4959034,-2.4446492,-2.9082036,-3.3184323,-3.790504,-3.881164,-3.6151812,-3.4262538,-3.4364471,-3.5962183,-3.4550817,-3.233743,-3.4935958,-3.488821,-3.7034655,-3.5305176,-1.657262,-2.5415266,-2.7540832,-0.9386764,-2.2232394,-2.102988,-2.6573443,-3.2159908,-3.5578878,-3.6817222,-3.529902,-3.727685,-3.8398957,-3.970026,-3.984231,-4.0206223,-0.55076903,-2.165349,-2.6790848,-3.0341551,-3.090498,-1.9539021,-2.6080203,-3.2770982,-3.5311942,-3.535493,-3.3210316,-3.3326082,-3.3798165,-3.6502976,-3.2870388,-2.174687,-2.1333175,-2.944322,-2.269541,-2.2570171,-2.9437087,-1.1923875,-1.7496239,-2.4432576,-2.5883336,-2.0188828,-2.6015794,-2.9274597,-2.730123,-1.152289,-2.2692616,-2.6689825,-3.0676453,-1.8900936,-2.2785153,-2.0644426,-1.4088672,-2.452198,-2.5214276,-2.8727887,-1.9170793,-1.676567,-2.4633315,-2.807815,-3.1064076,-2.9717627,-3.0001373,-1.2170253,-2.205066,-2.3535862,-2.1570017,-2.609447,-2.9256752,-3.0204635,-3.0047452,-3.2822914,-3.603357,-3.7272363,-3.9791236,-3.9373083,-1.5728788,-1.6307863,-2.5935605,-3.1067998,-3.3509884,-3.721264,-4.036948,-3.9994583,-3.6334715,-2.049104,-1.9367458,-2.7723994,-3.4507055,-3.793264,-3.9580927,-4.125616,-4.0186477,-3.9033077,-3.5344129,-3.8378317,-3.6954358,-3.8128026,-4.2584233,-4.2185326,-4.2057385,-4.3551736,-3.4193845,-3.646056,-3.8923087,-3.970212,-3.8367844,-4.1340494,-4.1456094,-4.168847,-4.0809255,-4.295989,-4.145366,-4.1994176,-4.3369923,-4.444328,-4.485768,-4.376152,-4.195173,-4.190075,-4.177971,-4.1775312,-4.097146,-4.216015,-3.9512153,-4.1384444,-4.0765634,-4.044709,-4.0176897,-2.3700428,-2.2926555,-3.098188,-3.4666939,-3.7727823,-4.0427527,-3.9644747,-3.881456,-4.0091524,-4.045147,-4.0812483,-3.994526,-3.828638,-3.7066193,-3.9506638,-3.9698591,-3.8994055,-1.15914,-2.7798324,-3.181828,-3.4983618,-3.8031492,-3.271451,-3.702098,-3.985713,-4.16773,-4.2501755,-4.1933136,-3.9424229,-4.215682,-3.921014,-4.454295,-4.66225,-4.723778,-4.5617933,-3.8205118,-3.8798597,-3.98598,-4.1295257,-4.246483,-4.311246,-3.6129234,-4.125926,-4.9593463,-4.8968053,-4.091612,-3.7342727,-3.7602365,-3.4810457,-3.6568828,-3.156713,-4.0133324,-3.8926792,-3.6920338,-3.946593,-3.864624,-4.007271,-3.8362627,-3.8665962,-4.219144,-4.279081,-4.71163,-4.747979,-4.9389305,-3.9757671,-3.2461548,-3.3377643,-3.2287583,-3.510158,-3.7346358,-3.305359,-2.6234303,-2.660564,-2.8909757,-3.151625,-3.3526688,-3.075368,-3.4250083,-3.4429526,-3.364725,-3.3017695,-3.9022925,-4.31868,-4.3496323,-4.3197026,-3.856339,-3.7007651,-3.5468643,-3.7129247,-4.2726784,-4.3071136,-3.7738106,-3.6225526,-3.5136447,-3.49331,-3.4563746,-3.452344,-3.338131,-3.3744187,-3.1620169,-2.2607472,-3.0231514,-3.3619354,-3.454489,-3.6751516,-3.5892293,-3.2804155,-3.6172752,-3.697711,-3.680766,-3.6588268,-3.9545622,-4.10275,-4.039829,-3.843201,-3.7155278,-3.9146032,-4.0976715,-3.9713583,-3.9632158,-3.9250789,-3.637554,-4.0653625,-3.9769425,-4.249588,-4.118552,-4.1552258,-4.082673,-4.14118,-4.2243295,-4.273013,-4.2895813,-4.359006,-4.2707596,-4.2675385,-4.3650246,-4.4176064,-4.228194,-4.138834,-1.2309699,-2.7575908,-2.7145636,-3.0412433,-3.0152402,-2.0994458,-2.9444826,-2.986619
+-1.719758,-2.0551047,-2.2554011,-2.4322557,-2.740201,-3.2286358,-3.4918785,-3.3036323,-3.2597125,-3.5386477,-2.2157044,-2.5679255,-3.0078964,-3.335119,-3.0863376,-1.1079047,-2.2157722,-2.2000659,-2.1627498,-2.8570828,-2.7372375,-2.3972075,-2.3619869,-2.911547,-3.4192896,-3.616178,-3.7956276,-3.7100577,-0.8427101,-2.3839207,-2.020509,-2.756135,-2.8532038,-2.917087,-3.0784416,-3.2481656,-3.4906223,-3.700077,-3.8756585,-3.9975824,-3.730703,-3.0285606,-3.7120674,-3.708432,-3.4979026,-0.83630097,-2.3545513,-2.1701522,-2.4732728,-2.6329813,-2.9207559,-2.8541818,-3.4356036,-3.757512,-3.9282384,-3.9795308,-3.9180887,-3.6812742,-3.350695,-3.7135541,-1.2030267,-1.4770304,-2.344952,-2.3678355,-2.5186164,-2.8535438,-1.187471,-1.4167095,-1.3382894,-1.6886208,-2.00075,-2.5958877,-2.331922,-0.8522027,-2.1446285,-2.9124658,-3.3472266,-3.826259,-4.1079664,-3.8037696,-3.6625233,-3.7640076,-3.7879076,-1.9314027,-0.74838036,-1.4782745,-1.6060517,-2.1055298,-2.4458387,-2.8516226,-1.935253,-1.9930872,-1.2952508,-2.1144156,-1.6638539,-2.426406,-3.1482759,-3.6180737,-3.602457,-1.8959869,-2.6983128,-3.32997,-3.9024749,-4.0552945,-4.146407,-2.8670194,-3.36945,-3.6731024,-3.7164211,-3.6484616,-3.746438,-3.7593994,-3.7882168,-3.7591074,-1.9427654,-0.8323067,-1.356156,-2.1078918,-1.3305149,-1.1944032,-1.9661983,-1.8902407,-1.9993764,-1.4918005,-1.4873035,-1.6006099,-1.3214401,-1.018591,-1.5906332,-1.772925,-1.9204099,-2.069226,-1.7295566,-1.1026995,-1.3955046,-1.4596562,-2.161655,-2.4185243,-2.2417684,-2.4559212,-0.84014505,-1.3868285,-1.9036835,-1.6547219,-2.2102556,-1.9497908,-1.5109617,-1.3967296,-1.985794,-1.672465,-1.3024236,-1.7915213,-1.7073015,-0.806204,-1.8155837,-2.1951213,-2.3141234,-1.8667797,-1.3042419,-2.065557,-2.290915,-2.4893758,-1.6768609,-2.3278177,-2.5681727,-2.6898313,-0.9415151,-1.4982113,-2.0613914,-1.843278,-2.4345703,-2.925086,-3.0325398,-2.9284637,-2.1623204,-1.1182163,-1.7448765,-2.686924,-3.1899836,-3.463173,-3.5487611,-3.5448117,-3.4364128,-1.2233888,-2.2833471,-2.5201144,-2.973896,-3.5722907,-3.7211995,-3.8373678,-3.825056,-2.431808,-2.4043605,-2.8456473,-3.2819958,-3.4125328,-3.5323663,-3.5045154,-3.5250225,-3.473094,-3.8616102,-3.8857083,-3.8993406,-4.015806,-3.923293,-3.8964965,-4.001825,-3.7235913,-3.817162,-3.8013728,-3.660269,-3.6054442,-3.8370206,-3.6256216,-3.628789,-3.7316194,-3.6712081,-3.7529454,-1.2397975,-2.0050998,-2.9869404,-3.2085807,-3.5632658,-3.6669214,-3.6561682,-3.680087,-3.7466862,-3.8390298,-3.8337362,-3.698094,-3.4952526,-3.8032455,-3.9656324,-4.077045,-3.2355049,-2.367996,-3.1986094,-3.5221732,-3.8420491,-3.9247317,-3.4376643,-3.8377986,-4.062562,-4.2009926,-4.2032895,-3.8838425,-3.5598445,-3.9519908,-3.9299393,-4.0719132,-4.171297,-4.357191,-4.2102175,-3.786271,-3.8058295,-3.8455813,-3.8931634,-3.8681056,-3.8973238,-3.666273,-2.9158385,-4.2643766,-4.504679,-4.12972,-3.8047838,-3.0946524,-3.0533545,-3.5156913,-2.9397764,-3.9216142,-3.8319209,-3.8817468,-3.9974847,-4.1504016,-4.03019,-3.9160213,-3.9915886,-4.020935,-3.94114,-4.1236777,-3.484741,-3.6793425,-3.4626176,-2.9345846,-3.030422,-3.0381608,-3.1963646,-3.250173,-3.0249739,-1.623968,-2.4016047,-2.7935677,-3.0422292,-3.3073955,-3.3420508,-3.2955937,-3.4986324,-3.4953582,-3.5022848,-3.8888521,-4.270521,-4.2135973,-4.379022,-4.1515465,-4.0297403,-3.889046,-3.8126528,-4.067091,-4.050872,-4.050597,-3.9453092,-3.8751807,-3.8440366,-3.7759678,-3.7451284,-3.6798618,-3.5991433,-3.506331,-1.4733688,-2.8235903,-3.1697526,-3.24481,-3.330862,-3.259225,-3.1689541,-3.40383,-3.5356867,-3.5870106,-3.6092074,-3.7630713,-4.157443,-4.072083,-3.953861,-3.8297675,-3.9696598,-4.0864496,-4.0181437,-4.002597,-3.9693255,-3.814727,-3.9752512,-4.0514426,-4.089905,-4.114627,-4.050226,-3.9807286,-4.12592,-4.1326213,-4.1260448,-4.080967,-4.1807594,-4.151924,-4.044878,-4.121607,-4.2089148,-4.166319,-3.5885434,-1.3206469,-2.9520783,-3.1508815,-3.4854527,-1.3534318,-2.1898603,-3.0957644,-2.9725418
+-1.6430746,-2.0572925,-2.3073049,-2.7598367,-3.105791,-3.677196,-3.9502046,-3.0793586,-1.4976486,-2.5625827,-2.590158,-2.3980842,-2.3152905,-2.983829,-3.2562404,-3.4483006,-3.1380713,-2.9946427,-1.3320197,-2.42686,-2.698257,-2.8531795,-2.603858,-2.9466238,-3.6349277,-3.9221694,-3.9716206,-4.139662,-1.1940726,-2.167669,-2.2353,-2.3768878,-2.6884584,-3.1561556,-3.5310798,-3.6732068,-3.7606611,-4.062168,-4.098529,-4.2471623,-4.3330116,-3.9609632,-3.3985336,-3.4151247,-1.5978819,-2.2334216,-2.2174613,-2.1404243,-2.7083669,-2.7071166,-2.9444647,-2.1004286,-3.104052,-3.639812,-4.028364,-4.1386805,-4.318962,-4.363652,-1.9650332,-2.8435512,-3.4004703,-0.8582896,-1.8054951,-2.1018229,-2.1273322,-2.298018,-1.621298,-1.5379938,-1.9900392,-2.017066,-2.3811655,-2.6872683,-2.9513862,-1.3533775,-1.627355,-2.89443,-3.347218,-3.7482953,-4.0837846,-3.8698785,-3.7783825,-3.8195968,-3.8851154,-3.8119931,-3.5571191,-1.5974642,-1.4099866,-2.0443075,-2.3342085,-2.594388,-2.94319,-3.1142945,-2.7650893,-2.8170557,-3.5672798,-3.8155026,-3.9536395,-4.0278907,-4.103854,-3.9059324,-4.0289,-3.3305779,-4.039551,-4.20595,-4.3092318,-4.155891,-4.067137,-4.180129,-4.098241,-4.0411353,-4.062609,-4.0684423,-4.093952,-4.1365504,-4.082013,-2.3417063,-1.2734704,-2.407847,-1.9844853,-2.585906,-2.0729585,-1.7936709,-2.8143544,-3.036687,-2.9409413,-3.0640678,-3.3311727,-3.4596372,-1.4134516,-2.0480509,-1.4948207,-2.4542403,-1.9026227,-1.5932369,-1.9211572,-2.768797,-2.7769432,-3.114733,-3.339428,-3.4476686,-1.5928713,-1.5303255,-2.097611,-2.0667286,-1.9716443,-1.99728,-2.1252396,-2.6507082,-1.6925907,-1.9538608,-1.8755987,-1.5738009,-2.1435456,-2.3917851,-2.1299167,-2.4726753,-2.7300675,-2.929191,-1.0483295,-1.5746104,-2.0927472,-2.5479698,-1.9647619,-2.4816718,-2.8498993,-3.0625548,-1.3637072,-1.2501074,-2.1065621,-2.3111284,-2.412996,-2.7877593,-3.0024264,-3.1050048,-3.1967287,-3.3395073,-2.3362393,-3.3128765,-3.5716395,-3.574719,-3.7631412,-3.7930832,-3.7171168,-3.3888853,-3.6579518,-3.7650056,-3.805087,-4.106181,-4.130535,-4.1636615,-3.846149,-2.0301294,-2.1029046,-3.1877046,-3.5536656,-3.2928157,-3.5204172,-3.7771854,-3.9639869,-4.0561953,-4.297225,-4.089528,-4.128253,-3.924561,-3.9405935,-4.1951103,-4.3074465,-4.086255,-4.062667,-4.077105,-3.9597397,-3.9267642,-4.1758175,-4.0302,-4.0327272,-2.1004696,-2.8401618,-3.1400642,-1.6346803,-2.2423768,-2.8546765,-3.106752,-3.285068,-3.2251084,-3.189739,-3.2696614,-3.2699656,-3.5649595,-3.653017,-3.647235,-3.5641277,-3.9320545,-3.9733,-3.8004599,-3.7808738,-2.6865904,-3.2580242,-3.5281594,-3.8561318,-3.6165645,-3.3926497,-3.4230318,-3.6793556,-3.7573867,-3.9974995,-3.7884216,-2.3284101,-3.1432552,-3.2972572,-3.4613059,-3.6182775,-3.635299,-3.6695457,-3.3464532,-3.3758616,-3.5014946,-3.5462573,-3.5217757,-3.467386,-3.4431596,-3.126955,-4.17156,-4.2453547,-3.9395225,-3.6403394,-3.2378316,-2.4328346,-3.0462534,-2.9935577,-3.4658241,-3.533898,-3.6321359,-3.8901615,-3.802897,-3.5592906,-3.4854412,-3.4692686,-3.5686405,-3.448456,-3.6911192,-3.4586167,-4.0183387,-3.6025345,-2.8419518,-3.0150318,-3.1078668,-3.4171796,-3.367095,-3.1745906,-1.6272343,-2.594254,-2.8689895,-2.7363367,-2.7621808,-2.9845142,-3.1090589,-3.2040787,-3.0985963,-3.0963464,-3.5320013,-3.9477162,-4.0861845,-4.1356974,-3.891292,-3.8200142,-3.7997737,-3.9290118,-3.8945618,-3.8909209,-3.773992,-3.794288,-3.777189,-3.7786098,-3.843711,-3.7001362,-3.8012683,-3.882751,-3.9782448,-1.4267831,-2.493908,-2.7895935,-2.8953943,-3.0254595,-3.164911,-3.0827255,-3.2514825,-3.5274432,-3.720797,-3.680786,-3.8188713,-4.104058,-3.9131248,-3.909922,-3.8841226,-4.0880213,-4.189333,-4.115717,-4.0842857,-4.1354566,-4.1138577,-4.2291055,-4.2966595,-4.480176,-4.528287,-4.259197,-3.8449328,-4.155217,-4.14022,-4.2264814,-4.3192315,-4.337449,-4.2995405,-4.3259153,-4.3399954,-4.367744,-4.2803106,-4.1428576,-1.8721114,-3.3181133,-3.7127583,-4.0117693,-1.674827,-2.0116239,-2.5303664,-2.599699
+-0.83251524,-1.9509445,-2.27491,-2.7420115,-3.1869276,-3.857142,-4.2305083,-3.6375587,-1.2581048,-2.9140959,-3.5311937,-1.0650443,-2.1994176,-2.9239159,-3.4829092,-3.9657555,-4.261603,-4.1977005,-4.046708,-4.2220244,-4.4221287,-4.3348126,-4.294339,-4.4011755,-4.5145864,-4.5701294,-4.5901184,-4.5827036,-4.6453457,-4.5808907,-2.5962539,-3.3280196,-4.218257,-4.536293,-4.5889764,-4.3702874,-4.287251,-4.590514,-4.642411,-4.610491,-4.616398,-4.5069313,-4.019182,-3.5745625,-1.2513846,-3.033965,-2.4316769,-1.317794,-1.7852427,-2.6247776,-3.092298,-3.7289143,-4.230673,-4.497722,-4.641569,-4.6431026,-4.783728,-4.8045406,-3.3509247,-4.0898595,-1.7348663,-1.720874,-2.7237086,-3.48489,-3.977735,-4.091329,-2.1625452,-3.3477073,-3.8796601,-4.1832666,-1.6464485,-2.5420394,-2.1602218,-3.2816455,-4.146441,-2.1784744,-3.1935987,-4.0883646,-4.385804,-4.189846,-4.184112,-4.2196074,-4.2062893,-4.1293507,-1.9320163,-3.2382526,-2.1375136,-2.9454641,-3.619687,-4.020974,-4.1462874,-4.1600065,-3.7650385,-3.9166145,-4.3322697,-4.310937,-4.28752,-4.2965918,-2.4435978,-2.5107193,-3.5607219,-4.053961,-4.3196254,-4.348358,-4.288914,-4.1312256,-4.173913,-4.220556,-4.1589327,-4.172195,-4.1624575,-4.1610317,-4.145974,-4.1967344,-4.1511726,-3.3599758,-1.2215832,-2.4746084,-2.821575,-3.6562634,-3.956878,-4.0995317,-4.1577883,-1.5537866,-0.9943078,-2.1306295,-1.9575591,-2.841741,-3.4291065,-3.5900419,-1.8482014,-0.8521742,-1.5286909,-1.6969533,-1.4682841,-2.5340533,-3.088981,-3.5583534,-3.8367724,-3.8879213,-3.979941,-3.9554834,-0.27079806,-1.7420477,-2.0454383,-0.9756064,-1.9506769,-2.4180474,-2.9473524,-0.52909845,-1.4618025,-0.63465387,-1.5406867,-1.8577224,-2.0640383,-2.3564332,-2.6843038,-2.9487193,-1.8398327,-0.9426616,-2.0825815,-2.5304604,-2.6824198,-3.1656332,-2.3040233,-2.953042,-2.5377226,-0.565586,-1.5248803,-1.9379506,-2.4435277,-3.1136389,-3.4147196,-3.5151577,-3.6121528,-3.75232,-3.8710248,-4.0093656,-3.8745055,-3.682352,-3.898645,-3.9233232,-3.7877002,-3.6236515,-3.7907715,-3.9581804,-4.0607185,-4.145038,-4.142995,-4.1577396,-3.676088,-1.0121222,-1.4895235,-2.6617777,-3.2294173,-1.5560075,-2.392465,-3.105843,-3.6738548,-3.966535,-4.1553564,-4.1580467,-4.1911163,-4.1153345,-4.042675,-4.0538774,-4.1505623,-3.963313,-4.113323,-4.15166,-3.9954739,-3.9684172,-4.1334324,-4.02423,-4.047221,-2.1680346,-1.4497231,-2.3505023,-1.2113236,-2.1346512,-2.624186,-2.9614136,-3.3102922,-3.2169719,-3.3075888,-3.4052682,-3.5009274,-3.7852159,-3.9368277,-3.9691615,-4.019323,-4.136186,-3.8382592,-3.8469949,-3.7726145,-3.828559,-3.7781563,-3.8223386,-3.8377838,-3.5109549,-3.5202227,-3.7895098,-3.805367,-3.8392944,-3.9571166,-3.7504048,-1.0640439,-2.0619807,-2.4019988,-2.747888,-2.7296255,-2.7879474,-2.9858236,-2.9857621,-3.2345753,-3.2852447,-3.3843615,-3.4032102,-3.066658,-3.4105597,-3.6335506,-3.5810206,-3.6890101,-3.738587,-3.8081737,-2.625517,-2.2701814,-2.8696194,-3.1070187,-3.334215,-3.5295477,-3.75882,-3.8055792,-3.5274758,-3.356779,-3.353746,-0.7329357,-2.2747097,-2.5053682,-2.685657,-2.276111,-3.3904014,-3.1825495,-3.2697158,-3.3331409,-3.3905969,-3.5566788,-3.3029726,-2.9825296,-0.77508706,-2.0880387,-2.2270513,-1.605256,-2.506064,-2.7694044,-2.9491968,-3.1603131,-3.2431288,-3.4500544,-3.4994688,-3.8053265,-3.8345714,-4.1992555,-4.212089,-4.2104073,-4.1963644,-4.26491,-4.0166073,-3.7976444,-3.6718812,-4.0622005,-4.090104,-4.0981116,-4.0568156,-3.995247,-4.04426,-4.100477,-4.017625,-0.97453254,-1.9055511,-2.702102,-2.911932,-3.1865497,-3.489561,-3.5624204,-3.891675,-4.1986594,-4.300661,-4.2339,-4.3346715,-4.2823114,-4.229249,-4.288849,-4.2642884,-4.3390102,-4.2989645,-4.20607,-4.2052774,-4.153027,-4.207673,-4.3766603,-4.3534236,-4.4226475,-4.4781017,-4.2524204,-3.4021544,-4.043111,-4.1863585,-4.3423095,-4.352749,-4.4572763,-4.402008,-4.387535,-4.3531704,-4.3600855,-4.3754783,-4.281525,-4.3839116,-4.4490185,-4.495577,-4.5251274,-4.345471,-1.3628227,-2.94658,-3.5817397
+-1.4228297,-1.8763446,-2.7763321,-3.3949585,-3.8288713,-4.2860656,-4.605524,-4.334437,-1.2463989,-3.3567243,-3.549265,-2.019904,-2.1632638,-3.4150348,-4.061289,-4.417691,-4.405245,-4.0305414,-2.3923695,-3.735193,-4.381837,-3.9356685,-3.974369,-4.185684,-4.5367384,-4.5503225,-4.5001,-4.6511636,-4.6358213,-4.357956,-4.2290382,-3.1177197,-3.7183998,-4.3352,-4.4593215,-4.4727545,-4.246111,-4.4021177,-4.28088,-4.424329,-4.534614,-4.2180133,-3.5874655,-3.5034475,-1.900453,-2.5040631,-3.8361168,-1.147807,-1.5889057,-3.0093265,-3.491835,-3.5153913,-4.288395,-4.4623327,-4.4696407,-4.1426134,-4.469517,-4.591706,-3.9115195,-4.116443,-1.701354,-1.504981,-1.5196728,-2.4775338,-3.0152984,-3.2986865,-3.6045926,-3.7908719,-3.9235086,-3.8185654,-1.2717072,-1.5651612,-1.9181936,-3.0172243,-3.7575402,-2.4722896,-3.1542056,-3.8980913,-4.3038635,-3.9784012,-3.8129044,-3.7314317,-3.853105,-3.9009204,-3.8137054,-3.9746614,-3.4903674,-1.0590028,-1.3651239,-2.3475351,-2.9696498,-2.433701,-2.4164634,-3.3025084,-3.8162594,-4.0140343,-3.680708,-3.2884674,-1.4690833,-2.218507,-3.0607896,-3.5894532,-3.837761,-3.9987192,-4.0167046,-3.9864812,-1.0139474,-2.4941075,-2.8903713,-3.1738265,-3.3635974,-3.506743,-3.7173538,-3.8282218,-3.9225187,-3.780609,-1.4379728,-1.6214614,-2.6864476,-3.1858823,-3.3577027,-2.7396598,-0.7926326,-1.9460117,-1.9673675,-2.636112,-3.0167103,-3.3695686,-3.4417405,-3.3663402,-1.4017476,-1.402557,-1.2564443,-1.8681108,-1.3380356,-2.4759026,-2.8588147,-3.0620327,-3.1965623,-3.195567,-3.2733135,-1.1684817,-0.23964247,-1.5367904,-1.4635977,-1.2193619,-1.8128934,-2.000798,-2.2852504,-2.5626907,-2.060777,-0.65166295,-1.5943922,-1.797572,-2.1597614,-2.3112302,-2.627699,-2.8435123,-3.0124416,-0.5418585,-1.9201564,-2.5077372,-2.659967,-2.814405,-3.005066,-3.10095,-3.1268735,-0.83115417,-1.4261333,-2.472516,-1.3381118,-2.6505833,-3.0911791,-3.198255,-3.31412,-3.4898605,-3.5610251,-0.6286813,-1.4869903,-1.8832487,-2.5020306,-2.8278947,-2.9466202,-2.7831485,-3.142108,-3.3744128,-2.9789991,-3.6195605,-3.7178855,-3.7379735,-0.6218942,-1.6639105,-2.270497,-2.734324,-3.0361094,-3.0271802,-3.126486,-3.4954212,-3.7614284,-3.9870157,-4.161625,-4.237786,-4.299765,-4.102374,-4.1123333,-4.118459,-4.132659,-3.9150958,-3.9396493,-4.22939,-4.0781245,-4.0980825,-4.239891,-4.2158194,-4.3138003,-3.9376512,-0.25008473,-1.8491105,-1.4147619,-1.4867469,-2.4589026,-2.8499844,-3.0379944,-2.6918917,-2.6283495,-2.9177277,-3.0843542,-3.334206,-3.402864,-3.5140123,-3.6105404,-3.765308,-3.7019353,-3.6934595,-3.694347,-3.572249,-3.6821375,-3.7070847,-3.4750888,-1.5417179,-2.6523833,-3.1066833,-3.3862944,-3.6323895,-3.6485727,-3.5578337,-0.5180773,-1.9194607,-2.5303187,-2.938552,-2.8885832,-2.8554845,-2.630135,-2.761808,-3.0081367,-3.2530289,-3.3356133,-3.277039,-3.1702936,-3.432809,-3.5054488,-3.7525165,-3.2041268,-3.4997125,-3.6507707,-3.4871457,-2.7767932,-3.2891374,-3.4062235,-3.4200718,-3.6188507,-3.7975698,-4.005988,-3.4254866,-3.2746823,-3.4755268,-0.76127607,-2.3984833,-2.7489629,-3.0623667,-3.2082667,-3.5460525,-3.324554,-3.4728217,-3.684109,-3.8322372,-4.037772,-3.686944,-3.2284613,-0.4387078,-1.9775933,-2.8289788,-2.4234319,-2.9047942,-3.0540295,-3.0506635,-3.12538,-3.3093696,-3.5058577,-3.4509873,-3.87681,-3.7866278,-3.3234646,-3.9985662,-4.165768,-4.3447504,-4.537739,-4.440012,-4.0204287,-3.6395829,-4.4121866,-4.5670824,-4.5635586,-4.3094444,-4.4612665,-4.6279182,-4.7374024,-4.694429,-1.3159825,-1.8877581,-2.5725393,-3.1424222,-3.5918217,-3.788772,-3.9864483,-3.8670156,-4.384028,-4.54699,-4.705365,-4.7027574,-4.6897,-4.7721806,-4.691495,-4.777373,-4.3760147,-4.4681115,-4.4148903,-4.1997232,-3.7388759,-4.4796686,-4.7139463,-4.455716,-4.3855915,-4.79496,-4.2808037,-1.0547153,-2.8837981,-3.1710835,-4.0135164,-4.178315,-4.5737324,-4.7587376,-4.406831,-4.620998,-4.6795387,-4.7278404,-4.6558285,-4.5316305,-4.5457525,-4.6725416,-4.57872,-4.5908623,-3.9415307,-3.7967849,-4.682288
+-1.5075935,-2.1302176,-2.6173003,-3.0283349,-3.3265944,-3.9290557,-4.1530876,-3.7729397,-2.9536648,-3.687748,-3.741685,-1.7209765,-2.599297,-3.319865,-3.6757622,-4.0873246,-4.3143244,-3.9350579,-3.5676308,-4.175822,-4.5060177,-3.9771714,-3.6484003,-4.0239563,-4.2916436,-4.3637676,-4.389109,-4.5517855,-4.503561,-4.4121423,-4.440466,-3.596116,-3.920863,-4.309843,-4.4893937,-4.3654723,-3.1889758,-3.7100098,-4.118346,-4.1534557,-4.378024,-4.1747713,-1.701608,-1.7658883,-2.0168967,-2.2514732,-2.107451,-2.4145057,-1.6010321,-2.6115704,-2.893653,-3.350142,-3.8795795,-4.247058,-4.2577124,-4.250003,-4.393289,-4.636054,-4.4250717,-1.2815398,-1.5391047,-1.7660314,-1.9152775,-2.1782098,-2.4796264,-2.8260279,-3.2024567,-3.523532,-3.791494,-2.4192042,-2.6234589,-1.9356977,-1.8223284,-2.799799,-3.4020958,-1.2831796,-2.2994266,-3.1315196,-3.9089594,-3.5252616,-3.6428037,-3.7669654,-3.9444308,-3.9312997,-4.0751777,-2.4075031,-1.7465106,-1.4741305,-1.4356581,-2.1618314,-2.578381,-2.9235601,-2.5142038,-2.5123034,-3.2946737,-2.8739715,-2.6935325,-2.304855,-1.7538471,-2.0146134,-2.591011,-2.9260893,-2.082098,-2.3217201,-2.3501482,-2.8364964,-2.982991,-2.5626187,-2.019073,-2.5138066,-3.019982,-3.3987188,-3.7010694,-3.9149246,-3.9464,-3.8479183,-3.9528913,-3.2058964,-3.6294746,-2.5333457,-2.0394533,-1.3559538,-2.2599802,-2.009409,-2.5205016,-2.9708624,-3.4071453,-3.6734586,-1.8752283,-2.3903065,-1.0187757,-1.6969444,-1.9897941,-1.8579761,-1.736997,-2.3833833,-2.481307,-2.5594084,-2.7234359,-0.83430535,-1.6967089,-2.2188659,-2.149396,-2.0078764,-1.6372191,-1.4535456,-1.8295308,-2.2742505,-2.3940454,-1.9081,-2.269418,-2.0738738,-2.2594934,-1.7081481,-2.0724232,-2.1976285,-2.470862,-2.6285484,-2.6632133,-2.2915568,-2.778355,-3.0347786,-2.273012,-2.6481974,-2.8639746,-2.1602204,-1.9099425,-2.642356,-2.7124748,-2.329404,-2.5183601,-2.8717504,-3.1804514,-3.3373291,-3.4594622,-3.5300603,-2.8310242,-0.79988986,-2.0768905,-2.5808787,-2.7160013,-2.8198195,-2.2881126,-2.2168283,-2.8393087,-2.9723005,-2.3300586,-2.9645472,-3.1446767,-3.1932833,-1.4356109,-2.1121538,-2.7196512,-2.9408813,-3.099187,-3.2205694,-3.2297223,-3.347639,-3.5231223,-3.6206865,-3.7857552,-4.0026836,-4.0177383,-3.7043185,-3.6889207,-3.6320496,-3.694879,-2.6761448,-2.6108289,-3.1431267,-3.2628584,-3.4322338,-3.6489496,-3.6445537,-3.7250957,-3.7835164,-3.0859578,-2.6355019,-2.861607,-2.8335211,-3.233679,-3.3125854,-2.8254762,-2.9455936,-1.5947528,-2.3877537,-2.7553165,-2.9586897,-3.2210016,-3.3019233,-3.3049657,-3.5146966,-3.6161387,-3.3385565,-3.362862,-3.3364422,-3.5076153,-3.3688965,-2.2500215,-2.4939504,-2.7440753,-2.7077072,-2.9478974,-3.0960379,-3.190032,-2.7532039,-1.1899649,-2.431725,-2.5314126,-2.9870327,-2.9759843,-2.9010227,-2.941758,-2.8933287,-3.027366,-3.199194,-3.2457438,-3.2696476,-3.314441,-3.4329143,-3.4154916,-3.4541624,-3.3398747,-3.4419937,-3.5621777,-3.512861,-3.329932,-3.3371506,-3.344689,-3.4003558,-3.5008538,-3.5831556,-3.5739996,-1.2231287,-2.4397013,-2.201756,-2.0024352,-2.921306,-2.875051,-3.0234752,-2.9301448,-3.448253,-3.1472578,-3.210906,-3.3337033,-3.3547516,-3.4809198,-3.3329444,-2.9981747,-0.7751208,-2.5065737,-2.6768236,-2.7550712,-2.7370777,-2.8112597,-1.810306,-2.7810297,-2.7034154,-2.7010827,-2.850263,-3.1696534,-3.112039,-3.1131856,-3.5083861,-3.6095688,-3.633827,-3.5714922,-3.658742,-3.4924693,-3.214919,-3.5368395,-3.7277708,-3.8125036,-3.8539217,-3.7456925,-3.9090848,-4.1110497,-4.214301,-3.0930274,-2.6650467,-3.3707943,-3.434857,-3.43577,-3.614481,-3.8066597,-3.5140686,-3.8965666,-4.0657787,-4.1291122,-4.0850153,-4.24183,-4.2167416,-4.2229156,-4.2779703,-4.1337757,-4.0451164,-3.8810372,-3.5198047,-3.6094947,-3.8792868,-4.19335,-3.7687857,-3.7091131,-4.2393923,-3.791935,-2.9260242,-3.6094742,-3.5888016,-4.2513084,-4.2632036,-4.379613,-4.534137,-4.4004383,-4.3515754,-4.4565916,-4.5020485,-4.3946857,-2.0952172,-2.5659604,-3.5991244,-4.004071,-4.1848345,-4.0350194,-4.000826,-4.3548055
+-2.3439984,-3.1193547,-3.6777525,-4.038947,-4.1367855,-4.3389077,-4.305069,-4.1430244,-3.9435596,-4.1453085,-4.238231,-4.121865,-4.1879797,-4.2862163,-4.2600164,-4.4255824,-4.380783,-2.0141242,-2.8926034,-3.678512,-4.179165,-4.0499706,-3.9325848,-4.20065,-4.394641,-3.643284,-4.347373,-4.4879465,-4.6363106,-4.6545615,-4.568823,-3.8399606,-4.0554066,-4.3197575,-4.3875046,-4.1986933,-4.2100344,-4.0159907,-4.4005046,-4.458985,-4.456922,-4.273673,-2.2517138,-1.8606955,-1.4303278,-2.2693617,-1.8849176,-2.491796,-2.3306596,-3.2578638,-3.5930247,-4.024456,-4.2325344,-4.351714,-4.188436,-2.9069118,-4.065665,-2.1045737,-2.4157546,-1.6152803,-1.2909484,-1.5071449,-1.6635367,-1.8252789,-1.7784742,-2.649582,-3.4209313,-3.8528252,-4.075951,-4.041978,-3.986621,-3.2571487,-3.4596853,-3.8474393,-3.4242356,-2.0623631,-1.7436949,-2.8382711,-3.6154242,-3.8395994,-1.5096835,-2.5505764,-3.1380565,-3.6095433,-3.8333704,-3.811889,-1.9836324,-1.5163345,-1.6238984,-1.3294076,-2.3226566,-2.9591541,-1.3566982,-2.2851095,-3.027122,-3.4156947,-3.6169095,-3.7658644,-3.062571,-1.8318967,-2.4871795,-3.2049003,-3.6338587,-3.6954594,-3.7655365,-3.233304,-3.7305999,-3.8604903,-3.881438,-3.8970952,-3.8680565,-3.8690505,-3.9612207,-3.9957447,-4.0264544,-3.0317729,-3.7217844,-2.4870124,-3.2633338,-2.3392103,-3.0363472,-3.5214963,-3.3361137,-3.6931896,-3.750029,-3.8847265,-3.9335442,-3.9444277,-3.873654,-3.3274124,-2.1975691,-2.1965775,-2.0898342,-0.7258807,-1.3294178,-1.3121554,-1.7720274,-1.4246498,-2.2219524,-1.829724,-1.0277294,-1.5381614,-1.6786153,-2.063804,-1.8572268,-2.1018028,-1.7388376,-0.75052094,-1.7777021,-1.6298941,-1.0834802,-1.3016101,-1.8689072,-2.0635543,-2.2505744,-1.5925062,-2.1118193,-2.6176844,-2.8344412,-3.0273285,-3.407066,-3.5881963,-3.1093655,-3.392014,-2.1230392,-1.9029578,-2.455667,-2.1800675,-2.7728589,-3.2230477,-3.4383664,-3.587739,-3.733408,-3.762638,-3.814722,-3.8247004,-1.8305265,-0.647475,-1.678953,-2.104497,-2.1677938,-2.2113366,-2.486836,-2.6109304,-2.8953924,-3.2199001,-2.6724136,-3.2532334,-3.3472877,-3.4697216,-3.5289817,-2.0083706,-2.7376523,-3.2466037,-3.537704,-3.641779,-3.623591,-3.605617,-3.7102196,-3.8206563,-3.9083886,-4.012932,-4.0044403,-3.7576149,-3.7443762,-3.7216797,-3.767226,-3.7346644,-3.7590342,-3.7674901,-3.7069306,-3.790316,-3.8035235,-3.7746952,-3.8502889,-3.7931566,-3.5859413,-1.6223718,-2.1518893,-2.161436,-2.8640559,-3.229703,-1.7496947,-2.3442206,-1.7445532,-2.1901307,-2.6330647,-3.0770433,-3.4293368,-3.5581846,-3.5835423,-3.680725,-3.5376801,-3.5773125,-3.557608,-3.592535,-3.65521,-3.5707426,-2.8750606,-3.021068,-3.3142152,-3.6901126,-3.713235,-3.649067,-3.6115253,-2.0621445,-0.9511139,-1.8468302,-1.422049,-2.1807475,-2.3908434,-2.5073862,-2.413397,-2.656177,-2.9114637,-3.2727804,-3.441609,-3.489993,-3.4367838,-3.4689193,-3.6575663,-3.5261483,-3.182989,-3.3921313,-3.6252613,-3.5368557,-2.9239464,-3.1384854,-3.2095127,-3.419971,-3.5727692,-3.6189938,-3.5924172,-3.1567407,-3.1165528,-3.3843617,-2.878354,-3.256647,-3.5150688,-3.664766,-3.4975238,-3.1853442,-3.3261683,-3.6141763,-3.6891673,-3.6944025,-3.7153056,-3.5558257,-3.146821,-1.6678073,-2.403099,-2.7249174,-1.6722795,-2.620738,-3.0872285,-3.3951263,-3.4276233,-3.6029058,-3.765255,-3.7211428,-3.679967,-3.7041519,-3.660313,-3.8396673,-3.9018521,-3.9914641,-4.0111127,-3.948969,-3.8143492,-3.6420565,-3.6704383,-3.8465698,-3.920621,-3.9745317,-3.8982022,-3.8670292,-3.954309,-3.9270608,-3.5326605,-1.2092456,-2.4798856,-2.9564767,-3.3576877,-3.5690255,-2.1186152,-1.725162,-2.7957659,-3.3994136,-3.7366447,-4.00914,-4.1168947,-4.1416526,-4.201597,-4.1624722,-4.175658,-4.036421,-3.9921222,-1.8632307,-2.7236829,-3.5350437,-3.909818,-3.8689198,-3.7157733,-3.8427463,-3.6247866,-3.7677474,-3.8525946,-3.7782302,-4.096294,-4.050109,-4.153899,-4.147734,-4.111893,-4.091851,-4.1682987,-4.1480083,-4.096842,-4.2259445,-4.285682,-4.3757143,-4.4012923,-1.981553,-3.1787305,-3.854219,-4.1729703
+-3.406273,-4.0087147,-4.569477,-4.9308743,-4.963255,-4.9612913,-4.707314,-4.220666,-3.546598,-4.371399,-4.4792967,-4.496824,-4.6248736,-4.810747,-4.6604905,-4.824934,-4.893815,-4.7958517,-4.455284,-1.1684842,-2.6350255,-1.8681768,-1.898408,-2.4142213,-3.2647338,-4.0428176,-4.577505,-4.8408704,-4.964835,-5.1042414,-5.1793385,-4.80054,-4.558865,-4.7244387,-4.917017,-4.655597,-4.445472,-3.9181066,-4.3643117,-4.6292152,-4.5668573,-4.2394285,-1.3713623,-1.6511561,-1.7576395,-2.6283562,-3.3661633,-3.7736616,-3.710124,-4.185153,-4.09972,-4.389638,-4.4729614,-4.593139,-4.246969,-4.0229764,-4.4796033,-3.6785223,-4.1651125,-1.8779312,-1.427584,-2.0866337,-2.0405185,-2.967887,-3.6347852,-4.0685964,-4.4104223,-4.5428076,-4.611473,-4.414479,-2.5328398,-1.6416806,-2.6454134,-3.3810945,-3.890993,-1.8494428,-1.5976521,-1.9572617,-2.9892488,-3.6932988,-1.9387149,-2.7756472,-3.3235743,-3.8457117,-3.0076127,-2.9645967,-1.0706092,-1.6773146,-1.9790863,-2.1195931,-2.8664432,-2.382269,-1.8213614,-2.8128943,-3.3865104,-2.2335384,-2.1399705,-2.895639,-2.7464008,-2.1815424,-2.1720672,-3.1908317,-3.6314664,-2.3321977,-3.0852818,-2.3694315,-2.7971709,-3.4337516,-2.7093732,-3.2042751,-3.5755906,-3.830555,-4.084752,-4.147587,-4.209165,-3.3466034,-3.8558936,-3.8830323,-2.1870127,-2.1505065,-2.9116151,-1.3004967,-1.8249906,-2.633676,-2.7389848,-3.400958,-3.7196422,-3.9208431,-3.9521146,-2.446068,-1.755329,-1.6343827,-1.699655,-1.7550331,-1.4000002,-1.9319943,-2.1954827,-2.457127,-2.3746414,-1.6286844,-2.1316252,-2.2329788,-2.149194,-2.3089433,-2.2874384,-2.1199248,-1.4811598,-2.1607,-2.3385315,-1.7208749,-2.0481129,-2.2047958,-2.1631753,-1.8496431,-2.3155925,-2.0208879,-2.3908534,-2.700441,-1.7116941,-2.4120085,-2.9473383,-2.1655672,-1.2414509,-1.9947687,-2.4010208,-2.0787432,-2.6666996,-3.018468,-3.2693963,-3.4743743,-3.6853242,-2.5628052,-3.3259308,-3.8074422,-4.0469313,-4.0964346,-4.133153,-0.58241785,-1.7856627,-2.1968977,-2.55058,-2.5718029,-1.9664806,-1.9860462,-2.5268097,-2.8728871,-2.3542619,-3.0997832,-3.2488809,-3.4985642,-3.6019716,-2.1448498,-2.7877517,-3.3604298,-3.8031487,-4.0666475,-4.004312,-4.004369,-4.11785,-4.2878876,-4.4012957,-4.502358,-4.550133,-4.298676,-4.2765827,-4.2467318,-4.4024734,-4.07145,-4.123908,-4.342917,-4.385774,-4.522589,-4.587746,-4.57183,-4.553417,-4.467423,-3.7101793,-0.7423135,-2.071227,-2.4744928,-2.8221843,-3.1000886,-3.1618338,-2.457733,-2.1013336,-2.1134682,-2.799242,-3.220409,-3.577369,-3.8475518,-3.946987,-4.2077,-4.102478,-4.0854473,-4.1425734,-4.164419,-4.335012,-4.104304,-4.0151696,-3.901704,-3.9329386,-4.3927097,-4.5805807,-4.6117516,-4.473795,-3.0612366,-1.2412969,-1.7521551,-2.3461375,-2.992365,-3.3051405,-3.3470078,-3.320461,-3.4176383,-3.6362562,-3.906568,-4.0830917,-4.183632,-4.218611,-4.314668,-4.4565315,-4.3961716,-4.0026145,-4.047083,-4.183465,-4.245859,-3.8588817,-2.7188346,-3.5065494,-4.115444,-4.0898857,-4.0886226,-3.9470305,-3.331125,-2.511035,-3.545049,-4.0148153,-4.35526,-4.4336133,-4.6235313,-4.666917,-4.3807726,-4.2341084,-4.479334,-4.615514,-4.6904106,-4.813051,-4.618458,-4.110652,-3.0456882,-3.9954762,-3.9823236,-4.3814354,-4.543606,-4.6608615,-4.3786407,-4.477177,-4.603183,-4.6897197,-4.6461096,-4.5754156,-4.4742517,-4.17442,-4.634964,-4.6826334,-4.754387,-4.783628,-4.841303,-4.5399075,-4.2765307,-4.4665937,-4.7978544,-4.8038287,-4.841861,-4.8321085,-4.7645283,-4.9005136,-4.8391194,-4.2346644,-3.1531892,-3.5889502,-1.1008133,-2.2697346,-2.8040442,-1.8118414,-2.5605936,-3.1339622,-3.6722631,-4.035485,-4.3486223,-4.7163434,-4.7679763,-4.8248253,-4.8851795,-4.9582605,-4.7883415,-4.491243,-0.82072824,-2.3741775,-2.9907908,-3.5285268,-3.587349,-2.722197,-3.2050326,-3.5928504,-4.039604,-4.3124585,-4.452571,-4.764866,-4.8135653,-4.8553104,-4.7917147,-4.7783318,-4.8356614,-4.9389896,-4.870206,-4.8524528,-4.8974047,-5.0510206,-5.0355425,-5.091009,-5.0009165,-4.9358044,-5.077419,-5.042946
+-3.598729,-4.0776243,-4.431237,-4.7824516,-4.8771806,-4.7551446,-4.604906,-4.4741087,-3.611263,-4.3906026,-4.4431505,-4.5982637,-4.571748,-4.406326,-4.478217,-4.860746,-4.8824873,-4.807167,-4.4324627,-2.1390357,-1.7786977,-3.65865,-1.070627,-2.2142358,-3.4809823,-4.160478,-4.5585666,-4.7781553,-4.889601,-5.0095453,-5.062936,-4.653102,-4.211138,-4.372433,-4.6809974,-4.6202507,-4.5936794,-2.0051057,-3.1113946,-3.9844003,-4.3453035,-4.08484,-1.9391812,-1.4965779,-2.451838,-3.342352,-3.8145583,-4.0467963,-3.9195905,-4.1304398,-3.992855,-4.411483,-4.4416447,-4.537691,-4.4287124,-4.2946725,-4.4351187,-4.705577,-4.3515544,-1.7432965,-1.924404,-1.7807423,-1.9225703,-3.0732665,-3.6229808,-3.9027467,-4.2025323,-4.3788157,-4.4479837,-4.177515,-3.1682856,-2.0243533,-3.2153475,-3.762311,-4.022712,-4.047041,-1.8165048,-1.5896527,-2.9097137,-3.691093,-3.7554982,-3.6227582,-3.825782,-4.12617,-4.1759152,-4.122324,-2.4371452,-0.90467215,-1.5369107,-2.0942805,-2.834185,-1.5086203,-1.6428685,-1.585637,-2.5578926,-1.7533649,-2.895843,-3.2795463,-3.6557155,-3.6899517,-1.1070663,-2.454852,-3.0984333,-3.4490972,-3.7093263,-3.8952847,-3.9835024,-3.999773,-3.7715364,-3.600728,-3.8699267,-3.9388137,-4.1200714,-4.054391,-4.1574025,-4.012702,-4.0522947,-4.0066757,-1.6867015,-0.89602906,-1.8587171,-2.039453,-2.7918615,-3.294427,-3.4604206,-3.7543323,-3.8410745,-3.5931497,-3.8241222,-1.3535227,-2.8081427,-1.110735,-1.4009255,-1.6909084,-1.218076,-1.5929161,-1.7515093,-2.1925654,-1.9188251,-2.212429,-1.6007249,-2.0283568,-1.7858833,-2.2404773,-2.4680629,-2.354928,-1.0722067,-2.0628335,-2.4551713,-1.3371819,-1.677056,-1.6295669,-2.181839,-2.3276575,-2.5719724,-2.8600392,-3.1090422,-3.3091698,-1.446226,-2.503652,-2.875439,-2.3488994,-2.128604,-1.4088274,-2.6371002,-2.1367142,-2.7955785,-3.1963644,-3.4557512,-3.6558409,-3.7138152,-3.8088148,-3.9448426,-4.0804253,-4.1102695,-4.12998,-1.4370233,-2.5065894,-0.71983665,-1.6826926,-2.2450264,-2.56904,-2.5308194,-1.4986407,-2.605847,-2.9743376,-2.860449,-3.383245,-3.375184,-3.609384,-3.7684724,-3.7802572,-3.8346055,-4.01864,-4.229841,-4.323311,-3.4697835,-3.8529146,-4.113836,-4.33165,-4.401861,-4.343631,-4.0622883,-4.1417847,-4.201666,-4.089412,-4.390932,-4.1921005,-4.263604,-4.3954525,-4.511741,-4.699095,-4.724581,-4.7224464,-4.7614985,-3.9242988,-4.4003725,-0.43564406,-2.0569866,-2.2491312,-2.9938817,-3.3802173,-3.4413362,-1.5831372,-2.428278,-1.9171382,-2.905639,-3.3620381,-3.61798,-3.9789057,-4.208313,-4.40026,-4.2078924,-4.332986,-4.372452,-4.356868,-4.4420156,-4.366893,-4.360921,-4.3676605,-4.3998594,-4.614092,-4.768754,-4.870924,-4.8281665,-4.21684,-1.3161982,-1.3910004,-2.7321377,-3.3738449,-3.8938646,-3.9187799,-3.6573272,-3.9516284,-4.234171,-4.5170326,-4.6293483,-4.7159305,-4.75875,-4.7133574,-4.7327433,-4.7790856,-4.5275755,-4.53718,-4.5943356,-4.596728,-4.4686832,-4.603385,-4.6658354,-4.8417883,-4.542579,-4.467055,-4.498233,-4.198299,-4.186531,-4.5664554,-4.6474752,-4.880562,-4.95485,-4.962446,-4.995616,-4.845454,-4.832114,-4.963879,-4.972082,-5.013381,-5.092161,-5.0417767,-4.6667204,-4.689907,-4.8764534,-4.516061,-4.74469,-4.7653923,-4.985276,-4.891318,-4.879887,-5.0016165,-4.9634004,-4.8088264,-4.8265467,-4.9360685,-4.183239,-4.9127426,-4.8257093,-4.7745953,-4.8814335,-4.9677773,-4.856475,-4.6317387,-4.749914,-5.047208,-5.0581484,-5.109014,-5.0449657,-5.0265007,-5.070003,-5.026806,-4.788347,-4.970823,-4.512224,-1.0042272,-2.5598578,-3.3827937,-1.7813019,-2.9646704,-3.8996563,-4.3763065,-4.6286325,-4.8179674,-4.9946156,-5.0063524,-4.9842606,-4.998863,-5.050121,-4.950041,-4.757803,-0.74219555,-2.668954,-3.3901877,-3.936132,-3.7640088,-0.7721944,-2.230198,-2.2224767,-2.4151447,-3.2730742,-3.6671853,-4.2072797,-4.414545,-4.5404744,-4.592143,-4.5821257,-4.621105,-4.7983875,-4.8484755,-4.844988,-5.033677,-5.1963615,-5.1753945,-5.154848,-5.1436424,-5.177084,-5.211417,-5.175829
+-2.8933928,-3.4769554,-3.8271053,-4.325694,-4.5169935,-4.552911,-4.5588727,-4.569,-4.1832676,-4.4696593,-4.4914,-4.4848003,-4.62516,-4.2925825,-4.544366,-4.63676,-4.6884413,-4.706891,-4.6106434,-4.5018654,-4.521486,-2.4856029,-1.9843904,-2.7698336,-3.982358,-4.4350057,-4.673095,-4.7375565,-4.746682,-4.783477,-4.76985,-4.709878,-4.1780586,-4.251635,-4.450342,-4.5451803,-4.507541,-4.3048115,-2.246232,-3.566418,-4.168475,-4.247637,-1.1725476,-2.1326542,-2.3855376,-2.4134746,-3.169037,-3.7701502,-4.155843,-4.317085,-4.276805,-4.368406,-4.194458,-4.3603544,-4.41284,-4.291243,-4.3381486,-4.569366,-4.5093317,-4.280363,-4.0144434,-1.5833728,-2.1291475,-3.1113958,-3.7123637,-3.9072773,-4.2809362,-4.4906073,-4.537919,-4.3755264,-3.5264354,-2.3200727,-3.5298965,-3.996316,-2.3152976,-3.4845893,-3.6529565,-2.4975722,-3.6575816,-4.3246994,-4.385045,-4.1644316,-4.193736,-4.440893,-4.459282,-4.467523,-1.978047,-1.9023985,-2.0263739,-2.3530493,-2.7644563,-3.2036219,-2.0440612,-1.6606623,-2.5577893,-2.8684118,-3.1979403,-3.579854,-3.892466,-4.095682,-0.6551672,-2.1095974,-2.449885,-2.9878159,-2.1346483,-2.1374452,-2.9112024,-3.4168572,-3.71221,-3.9162254,-3.9969778,-4.072974,-4.2033267,-4.1025567,-4.2182045,-4.28454,-4.224536,-1.386125,-2.1741867,-1.2934659,-1.5604287,-2.7048178,-2.7362177,-2.8052897,-2.8163733,-2.9586525,-2.7013931,-2.0343394,-2.7267556,-3.045632,-2.3811328,-1.5593865,-2.0778396,-1.6775624,-2.3514514,-1.5528063,-2.3432627,-2.6056933,-2.6343584,-2.4408998,-2.5981925,-2.4651713,-2.3996058,-2.6108122,-2.7401261,-2.7565424,-1.7445599,-2.5459101,-2.4276242,-2.2325277,-2.556417,-1.8749295,-2.3724995,-2.5670798,-2.631116,-2.48507,-2.6767433,-2.9787776,-2.283363,-2.7657704,-3.052009,-3.3146322,-3.5219295,-3.5764961,-3.6112473,-3.3368454,-3.5970182,-3.725463,-3.8570933,-2.8893857,-3.3599167,-3.700291,-3.9188316,-4.125652,-4.223087,-4.23827,-1.8035809,-2.2212214,-1.7397095,-2.1924605,-2.5221741,-2.8165,-1.9254887,-2.1734328,-2.6815228,-2.9858646,-3.1107583,-3.2348442,-3.4151871,-3.4852366,-3.5901265,-3.7250118,-3.8505554,-3.9678802,-4.0871716,-4.1750956,-3.8678663,-3.9761333,-4.140872,-4.2667146,-4.3361473,-4.323121,-4.3165474,-4.1006513,-3.1713734,-2.2704372,-2.9473562,-3.3899527,-3.7636757,-3.9432855,-4.1644993,-4.3318005,-4.4203773,-4.4108467,-4.4393373,-4.1697626,-4.337204,-4.2394495,-4.2567997,-2.5959396,-3.0961452,-1.9537495,-2.5323143,-2.5350726,-2.8388157,-3.0299878,-2.5938644,-3.0877917,-3.3770337,-3.6953332,-4.01228,-4.199563,-3.9478798,-4.0450687,-4.097209,-3.3702145,-3.7410207,-3.93153,-4.103548,-4.086939,-4.1491165,-4.233048,-4.241537,-4.3412056,-4.319474,-4.1483088,-2.5825417,-2.2470698,-3.0015633,-3.7497811,-4.2171307,-4.392174,-3.87226,-3.9310944,-4.2240496,-4.4300823,-4.5125933,-4.5564327,-4.5702085,-4.4755907,-4.4206867,-4.542998,-4.296069,-4.2068906,-4.197588,-4.180807,-4.1790323,-4.2814226,-4.2440534,-4.4583507,-4.4458084,-4.277895,-4.3523254,-4.097641,-4.36304,-4.112872,-4.1967506,-4.585471,-4.7191143,-4.662265,-4.6346245,-4.5630326,-4.4149637,-4.6638527,-4.6649876,-4.6716948,-4.709061,-4.7444487,-4.53715,-4.3502045,-4.3923273,-4.284485,-4.1170344,-4.1858864,-4.597615,-4.4707603,-4.6197453,-4.73849,-4.6123314,-4.3497953,-4.4763193,-4.590468,-4.09671,-4.2428274,-4.5169454,-4.3345876,-4.3901253,-4.6352897,-4.6566906,-4.448257,-4.5714407,-4.7074347,-4.771496,-4.7882,-4.7715726,-4.75532,-4.7329435,-4.719199,-4.6503134,-4.6218886,-4.56696,-3.1366754,-2.5059652,-3.8671854,-2.762994,-3.7131715,-4.420229,-4.7059793,-4.721659,-4.7654343,-4.813224,-4.79235,-4.763592,-4.7663145,-4.7694726,-4.697486,-4.583221,-1.1881588,-2.6161587,-3.1464686,-3.7083266,-3.6415157,-1.5680629,-2.330731,-2.5456736,-2.3573868,-2.893602,-3.5631285,-3.9910502,-4.2673373,-4.4033194,-4.505657,-4.5547633,-4.591614,-4.638915,-4.66143,-4.6683865,-4.700074,-4.8295636,-4.85364,-4.8340807,-4.834188,-4.8411903,-4.886384,-4.82046
+-0.8172778,-0.86141926,-1.0352285,-1.4022814,-1.4840552,-1.7766545,-1.7085917,-1.7531116,-1.7870735,-1.856316,-1.9887923,-1.8148091,-1.5382515,-1.5218681,-0.83323485,-1.9492823,-1.7011033,-1.5358578,-1.540091,-1.5021541,-1.4762431,-1.4773406,-1.4263875,-1.5786453,-1.4788878,-1.449083,-1.702425,-1.6660589,-1.582971,-1.5320247,-1.5631276,-1.7437298,-1.7151842,-1.8707042,-2.0465899,-2.2072825,-2.2050052,-2.3705726,-2.1015527,-1.7833968,-2.243391,-2.4259992,-2.2546067,-2.2648697,-2.2550573,-2.1597893,-2.1781018,-2.2630334,-2.2289438,-2.2794967,-2.2788472,-1.992823,-2.180006,-2.0884724,-1.6038728,-1.0390197,-1.3126663,-1.739339,-1.79645,-2.1044593,-0.77239555,-1.3684396,-1.9557421,-1.6565479,-1.8756614,-1.9034588,-1.9096578,-1.9316189,-1.9879779,-1.9260572,-1.9608878,-2.0266151,-0.93479246,-1.6566056,-1.9362928,-2.0423622,-1.9622146,-1.8868568,-2.0355897,-0.98558646,-1.4893578,-1.8941787,-0.979781,-1.6558398,-2.0177312,-1.4124719,-1.6720003,-1.8850864,-1.9078017,-2.0837657,-2.0163279,-2.0401044,-1.8768277,-1.7573425,-2.0706973,-2.0267897,-1.9918114,-1.6983001,-1.9395888,-1.4040912,-1.9352897,-1.8222743,-1.6453539,-1.5235102,-1.8576795,-1.9619669,-1.9586812,-1.9219549,-1.9587207,-1.9896144,-2.152124,-2.2191772,-2.3199968,-0.80594933,-1.654613,-2.0544243,-2.1027665,-2.1846538,-2.218214,-2.278393,-2.4102974,-2.197151,-2.1244774,-2.3001742,-2.4885874,-2.388986,-2.4771652,-2.619493,-2.5298393,-2.2169094,-2.4223301,-2.1347144,-2.2593966,-2.3316693,-2.3402355,-2.440767,-2.1956344,-2.4557314,-2.683295,-2.2358398,-2.6271904,-2.6922321,-2.9348903,-3.214639,-3.423085,-2.287334,-2.4876685,-2.79767,-2.8830934,-3.2655988,-3.2827282,-3.446663,-3.4413073,-3.5120318,-3.5477118,-2.7408605,-3.2588673,-2.1793594,-2.774852,-2.3176756,-2.7436342,-2.6230965,-2.8920016,-3.0259724,-2.9572601,-2.7963696,-2.8051028,-2.9517136,-3.0583007,-3.2792187,-2.8790717,-2.9388576,-3.2933068,-2.898958,-3.014543,-1.8071278,-2.6704648,-2.5480309,-2.8312712,-3.15904,-3.209385,-3.287755,-3.3417604,-3.125348,-2.9372234,-1.5585096,-1.32013,-2.2109818,-2.1287074,-2.3891745,-2.5830302,-3.0578363,-2.9552703,-2.984964,-2.577043,-2.5039454,-3.00444,-3.0042036,-2.8779123,-2.9287744,-2.7390323,-2.7531445,-2.8154821,-2.8799744,-2.681149,-2.6408973,-2.7490077,-3.0450208,-3.0787156,-3.0927143,-3.1305702,-3.007568,-3.0533805,-2.1944456,-2.8410985,-2.8916118,-3.1156325,-3.2579503,-3.4121194,-3.5374875,-3.333974,-3.5323,-3.5627923,-3.3632665,-3.4012012,-3.6057265,-3.49117,-3.6272593,-3.4421592,-3.3525229,-3.0275047,-3.133006,-3.230774,-3.2013946,-3.0944972,-2.9845037,-3.0517955,-2.975705,-2.9071674,-2.8672972,-2.8168712,-2.7422688,-2.3795128,-2.3042884,-2.2548356,-2.1624453,-2.073258,-2.1715465,-1.9184178,-1.8336899,-1.7563083,-1.7724776,-1.7787601,-1.7589923,-1.7482246,-1.7497026,-1.7537779,-1.7961198,-1.794127,-1.797964,-1.7935377,-1.7653252,-1.7759478,-1.7723557,-1.8852795,-1.8287107,-1.9143281,-1.9835435,-1.8393154,-1.5663527,-1.669355,-1.717769,-1.8142129,-1.7300879,-1.6983206,-1.8218851,-1.7972602,-1.7238393,-1.6832293,-1.7129471,-1.717652,-1.7152277,-1.690324,-1.6494505,-1.6976855,-1.6823771,-1.7250472,-1.6654924,-1.7300988,-1.7491418,-1.7704346,-1.6782054,-1.5401115,-1.5969763,-1.6637195,-1.736196,-1.6275784,-1.6420131,-1.6944187,-1.704388,-1.7048262,-1.7344159,-1.7240491,-1.6802227,-1.6047746,-1.6543632,-1.7332125,-1.7744402,-1.7590628,-1.7080851,-1.6541487,-1.6455272,-1.6273791,-1.594029,-1.5909774,-1.7167645,-1.6437163,-1.6776956,-1.6636962,-1.7004027,-1.6712385,-1.5006994,-1.2818912,-1.5376139,-1.629335,-1.6675743,-1.5212855,-1.7034384,-1.8603992,-1.9037613,-1.9121891,-1.8985947,-1.9424831,-1.9117267,-1.9270617,-1.9447674,-1.9082832,-1.7500386,-1.6073993,-1.2704853,-1.383494,-1.436599,-1.5639278,-1.4860922,-1.5460327,-1.5287563,-1.547309,-1.5694667,-1.4939533,-1.2010905,-1.1312574,-1.4242743,-0.9448884,-0.9671325,-1.5733954,-1.6090027,-1.2015991,-1.4110321,-1.223758,-0.8784146,-0.9021664,-1.1205264,-0.83623475,-0.89498013,-0.7486561
+-0.7901864,-0.9018247,-1.605472,-1.6832916,-1.9039577,-2.2219777,-2.516511,-2.3765507,-2.0965161,-2.9338505,-2.709566,-2.3212438,-2.520184,-2.8891866,-2.0733857,-2.5737214,-2.6585088,-2.7074885,-2.587092,-2.6030428,-2.6146789,-2.378171,-2.5147495,-1.7410676,-2.323288,-2.4184482,-2.3200235,-2.29006,-2.2757008,-2.4183204,-2.5287995,-2.9386454,-3.112341,-3.181869,-3.3676038,-3.5086887,-3.3537736,-3.160645,-3.2687564,-1.7238449,-3.0675282,-2.677321,-2.7637644,-2.9433243,-2.9132123,-3.035507,-2.9477065,-2.9953318,-3.049377,-3.0869906,-3.0220854,-3.263572,-3.2386894,-3.1875668,-1.9930731,-2.6070266,-2.602971,-2.4496121,-2.552672,-1.7322782,-1.2233789,-1.593661,-2.0312757,-2.260084,-2.444669,-2.7173657,-2.8359885,-2.7988348,-2.9613228,-3.1127615,-1.189236,-1.4508113,-1.688429,-2.0333416,-1.8556622,-1.9273261,-2.219258,-2.545088,-2.3741245,-1.5131601,-2.3189242,-2.708732,-1.3950704,-2.3835979,-2.4448338,-1.4144768,-1.974362,-2.290667,-2.572631,-2.9104447,-2.2936106,-2.4062963,-2.260942,-2.3883219,-2.6630483,-1.3349375,-2.4840388,-2.1157236,-2.6256623,-2.5482152,-2.359572,-2.0177436,-2.0792425,-1.985556,-2.3600166,-2.2310011,-1.5980953,-1.9024992,-2.3866844,-2.1898956,-2.6240761,-2.9669266,-3.2235007,-1.1010698,-2.2897813,-2.701425,-2.8496494,-1.0203203,-2.0626192,-2.1804562,-2.6206102,-2.268685,-1.8274308,-2.6456065,-2.788681,-3.1903462,-3.369627,-3.4061716,-3.3723183,-3.3973174,-2.9426856,-2.303642,-2.425087,-2.8882766,-2.1032212,-3.1086075,-2.7162452,-3.2643142,-3.4293118,-2.367127,-2.3488812,-2.9625719,-3.2907376,-3.5054593,-3.689113,-3.3381195,-3.224568,-3.5492048,-2.7570205,-3.511891,-3.698339,-3.694128,-3.5659037,-3.4615545,-3.4642196,-2.8699734,-2.1009257,-2.9313383,-3.1025672,-2.7821898,-3.1192517,-2.9342246,-3.3480928,-3.5882802,-3.0215077,-3.3423314,-3.3789778,-2.2288616,-2.3056688,-3.1435986,-3.3044975,-3.5770109,-3.876,-2.4709046,-3.0192578,-1.3846503,-2.2004676,-2.032988,-2.7756114,-3.1852312,-3.3502865,-3.3801045,-3.059946,-3.3939896,-3.5903957,-1.4406222,-1.7183379,-2.3015032,-2.4131467,-2.554457,-2.0763783,-2.7239766,-3.0405142,-2.7723927,-2.619408,-2.6612382,-3.229349,-3.6972604,-3.2359853,-3.56113,-3.685947,-3.4761786,-3.585777,-3.8396416,-3.8311028,-3.7772384,-3.6215534,-3.5327544,-3.7847955,-3.843033,-4.0207033,-3.7089062,-3.6489139,-2.5980153,-3.3551264,-3.5186527,-3.677034,-3.7766373,-3.7709823,-3.7676044,-3.840108,-3.8424897,-3.9732552,-3.9566472,-3.8155575,-3.992486,-4.1083612,-4.0510674,-3.96772,-4.0174537,-3.7386775,-3.8898313,-3.7496176,-3.3306851,-3.3255396,-3.580504,-3.619679,-3.4775152,-3.6572232,-3.683635,-3.3874154,-2.7394352,-2.425817,-2.257279,-2.3870034,-2.457933,-2.259295,-2.4445472,-2.4533794,-2.3893437,-2.6454098,-2.7255864,-2.63742,-2.3578858,-2.3167412,-2.4775915,-2.5652661,-2.7363899,-2.5115647,-2.6282656,-2.5171285,-2.422785,-2.4011993,-2.3852718,-2.37531,-2.475988,-2.7060401,-2.7858768,-2.8428118,-2.9870899,-2.8359866,-2.8296318,-2.980777,-2.8578053,-2.9741437,-2.98471,-2.8255165,-2.945233,-2.826384,-2.8351872,-2.714741,-2.5736036,-2.4781613,-2.380327,-2.5484996,-2.4308445,-2.5390463,-2.3593209,-2.5372155,-2.644033,-2.8254113,-2.742947,-2.383462,-2.435385,-2.5507677,-2.6243734,-2.7247305,-2.856882,-2.8529582,-2.8238907,-2.9069884,-2.9240503,-2.8140202,-2.5884213,-2.4447703,-2.7848861,-2.995573,-2.995018,-2.908777,-2.8866184,-2.8807976,-2.7164237,-2.6170082,-2.6730828,-2.5674005,-2.0198445,-2.2847052,-2.5969944,-2.6266468,-2.6599889,-2.3653042,-2.0966961,-1.9030684,-2.050931,-1.8956095,-1.7927697,-1.7614008,-1.7295059,-2.149207,-2.2871685,-2.2912107,-2.256157,-2.245156,-2.1442158,-2.0985873,-2.1316152,-1.9286822,-1.7233742,-1.6439279,-1.5760574,-2.123604,-2.42548,-2.328147,-2.1422403,-1.8811706,-1.7219008,-1.7048965,-1.486057,-1.313858,-1.2218317,-1.2457546,-1.376768,-1.0187974,-1.2323393,-1.6816695,-1.3242849,-1.0317674,-1.2493522,-1.0898184,-1.0821325,-1.2787617,-1.375455,-1.3596743,-2.0886793,-2.1464314
+-1.3220447,-1.6370219,-2.3597498,-2.2049809,-2.3860645,-2.686558,-2.8939247,-2.7423844,-2.571909,-3.1782224,-3.3073993,-2.8561487,-2.8893743,-3.088677,-1.5492868,-2.8926864,-3.1155307,-2.4920354,-2.3592625,-2.5217843,-2.7197685,-2.639752,-2.5417461,-2.2914,-2.6779752,-2.886813,-2.172894,-2.6913114,-2.7694764,-2.7024822,-2.771717,-3.0534658,-2.9302773,-2.9430294,-2.9589486,-3.3004498,-3.2294006,-3.0635798,-2.5034113,-2.2385747,-2.7403376,-2.6930468,-2.689278,-2.835051,-2.7844234,-2.8234508,-2.92766,-2.9179306,-2.9008007,-2.8617592,-2.763016,-2.9343064,-3.053515,-3.111672,-2.6494055,-2.769785,-3.025795,-2.3335986,-2.6141672,-1.7057289,-2.2431655,-2.3192935,-2.4705763,-2.2703495,-2.7194061,-2.953754,-3.1155133,-2.9989743,-3.0325232,-3.033667,-2.4513083,-2.5192316,-1.0735341,-2.326622,-2.0603166,-2.480455,-2.5996988,-1.6885849,-2.1865225,-2.627289,-3.037189,-3.0122857,-0.7637903,-2.1574585,-2.154155,-1.8689786,-2.5227606,-2.4880364,-2.8663225,-1.967801,-2.5006094,-2.3850093,-2.4879775,-2.7070458,-3.0943303,-3.413206,-2.8992643,-0.64000964,-2.0615313,-1.9076928,-1.9900964,-1.0458233,-1.6387063,-2.0343347,-2.3100462,-1.7052866,-1.7337232,-2.3028598,-2.4773228,-2.595053,-2.8852744,-3.3360248,-3.2287912,-1.7752281,-2.462995,-2.7814765,-0.51827914,-1.644285,-1.995953,-2.3341813,-2.6247969,-2.6615784,-2.2446,-2.7196202,-2.8398223,-3.103255,-3.4763532,-3.3735685,-3.2665434,-3.312041,-3.7744644,-1.227632,-2.16248,-2.447957,-2.627736,-3.147517,-3.086464,-3.619269,-3.4432855,-3.4299169,-1.2662283,-2.235567,-2.7038174,-2.9783437,-3.370122,-3.3617496,-3.3206315,-2.3266072,-2.5391722,-3.0493696,-3.56033,-3.4327426,-3.4366815,-3.4536076,-3.5426292,-3.5615468,-1.230282,-2.4710116,-2.8648896,-1.6647243,-2.7267544,-2.8991418,-3.0624046,-3.3379052,-3.633769,-3.316173,-3.269527,-2.409802,-2.2930784,-3.0417008,-3.2757177,-3.4488423,-3.2127419,-3.2810936,-3.4431546,-2.1945097,-1.8005956,-2.209633,-2.9780269,-3.2480545,-3.3110645,-3.296059,-3.383669,-3.4812787,-3.5348666,-1.9621457,-2.553555,-3.0101948,-3.0875163,-3.1708984,-3.1308188,-3.3015382,-3.4142706,-3.7078938,-3.4301872,-3.6032038,-3.728692,-3.9261446,-3.942664,-3.4130526,-3.4091125,-3.638499,-3.6010265,-3.7933135,-3.8909438,-3.9470317,-3.7700458,-3.7400484,-4.0208025,-4.029409,-4.2621975,-2.8648343,-3.5583081,-3.6318796,-3.8356624,-3.9851294,-4.0716715,-4.148606,-4.171072,-4.125493,-4.2030954,-4.22746,-4.2618647,-4.287857,-4.266202,-4.298028,-4.345931,-4.380781,-4.486678,-4.281952,-4.127799,-4.233581,-4.107179,-3.9027514,-3.836141,-3.9742074,-3.9878092,-3.8376005,-4.070594,-4.0904016,-3.806417,-3.2700346,-3.6608987,-3.4892094,-3.5879993,-3.708614,-3.388111,-3.454119,-3.5638242,-3.9317145,-4.1274047,-4.1498666,-4.172306,-4.0252666,-4.0641785,-4.110282,-4.3622293,-4.4359465,-4.2994757,-4.081741,-4.2363477,-4.32483,-4.0383654,-3.8105974,-3.7870865,-4.111129,-4.4203925,-4.2506056,-4.061484,-4.1114073,-4.216309,-3.9659204,-4.2662134,-3.8324313,-4.2644835,-4.259894,-4.00124,-4.291397,-4.3289003,-4.268798,-4.238567,-4.3649154,-4.265955,-4.0551324,-4.102057,-4.260411,-4.381002,-4.264183,-4.3140244,-4.251746,-4.222372,-4.121933,-3.4529734,-3.5236175,-3.6787217,-3.846259,-4.069702,-4.059383,-4.002195,-3.9677076,-4.0849867,-4.030878,-3.7325556,-3.5083787,-3.5951788,-3.8311534,-4.0744567,-4.2847595,-4.334568,-4.0226345,-3.9641542,-3.9272883,-4.061429,-4.0715,-3.9553978,-3.023559,-3.2763171,-3.815073,-3.783472,-3.7537124,-3.4466317,-3.101334,-2.900789,-2.9663968,-2.7125318,-2.5291605,-2.7235744,-2.6105216,-3.2468786,-3.6411414,-3.2996807,-3.3111072,-3.2778423,-3.4468598,-3.308941,-3.403627,-3.0625246,-2.7347677,-2.4658701,-2.2372508,-2.9452467,-3.6233962,-3.4153945,-3.549707,-3.3614736,-3.4097838,-3.453843,-3.1036081,-2.8198996,-2.1701696,-1.9685663,-2.043531,-2.1078176,-2.0608754,-2.3393984,-2.338611,-2.368476,-2.374882,-2.475553,-2.8143563,-2.6462722,-2.6992872,-2.51886,-2.7483866,-2.7752066
+-1.40915,-1.4746162,-1.5762035,-1.5997963,-1.7273539,-1.8965153,-1.997379,-2.2953634,-2.280415,-1.8957185,-2.492075,-2.4330664,-2.5193033,-2.5110335,-1.5064688,-2.4651375,-2.8562133,-2.618102,-2.9508276,-2.7342613,-2.7507744,-2.7788057,-2.7018964,-2.6021914,-2.7131195,-1.9838432,-2.3198805,-2.6210866,-2.524285,-2.6908865,-2.5951314,-2.7313333,-2.667686,-2.7596204,-2.7359042,-2.841845,-2.7541623,-2.642206,-1.4506603,-2.3017216,-2.7634425,-2.590895,-2.5601315,-2.658623,-2.765622,-2.600563,-2.6622586,-2.6811252,-2.5916483,-1.8852797,-2.098368,-2.2635775,-2.1555696,-2.6111846,-1.814199,-2.2618923,-2.314001,-2.3940966,-2.3032851,-2.378768,-2.4069295,-2.3682058,-1.8681793,-1.9159273,-2.4870677,-2.6832356,-2.9288223,-2.9282973,-2.938377,-3.0877275,-1.655636,-2.4389231,-2.589114,-2.5554838,-0.97490865,-2.224114,-2.2823381,-2.0460734,-1.7697316,-2.3409858,-2.6286197,-2.6464963,-2.7078238,-2.934538,-2.9999988,-1.5173025,-2.6526484,-2.8480783,-2.9299407,-1.2985209,-2.07982,-2.5090911,-2.375938,-2.6363945,-2.8270743,-1.3797053,-1.3828121,-2.3074627,-2.448869,-2.3625586,-2.6486015,-2.6194377,-2.8754883,-2.888184,-2.860866,-3.0608685,-2.3652475,-1.2587749,-2.2750156,-1.6656467,-2.4644299,-2.8458347,-3.179675,-2.9266877,-3.3443685,-3.3222017,-2.929393,-3.113842,-1.2021264,-1.9932679,-2.4703991,-2.5325274,-1.4436709,-2.2666063,-1.3442885,-2.2408648,-2.699077,-2.888402,-2.75172,-2.4352293,-1.4965894,-2.4084764,-2.1682155,-2.3232977,-2.4768107,-2.9021962,-1.6131753,-2.0072818,-2.6492317,-2.2751257,-1.6617811,-2.4287848,-2.8082798,-2.8869526,-3.197805,-3.154653,-3.0881915,-1.6437243,-2.076483,-2.8258784,-3.23636,-3.1764665,-3.3529615,-3.5254238,-3.6174045,-3.5114193,-2.0451665,-1.8194913,-2.1751864,-2.70332,-3.052693,-2.9583693,-2.921616,-3.2329552,-3.3451385,-1.712479,-2.4955556,-2.2078633,-2.354653,-2.9895492,-3.0476673,-3.3004436,-3.5774174,-3.5557883,-2.9006584,-1.6889646,-1.675006,-2.3933892,-2.8478699,-2.9244008,-3.0786548,-3.0940814,-3.2178204,-3.335543,-3.4722538,-2.9198494,-2.151698,-2.7280405,-2.9688184,-2.9741268,-3.1276965,-3.263998,-3.6005986,-3.3966937,-3.1418164,-3.4622269,-3.5775154,-3.667182,-3.7215526,-3.5447197,-1.625292,-2.8291728,-2.928979,-3.1239958,-3.4577646,-3.5505755,-3.555388,-3.5286822,-3.7110384,-3.76891,-3.947743,-1.6458677,-2.6019669,-2.946166,-3.2319818,-3.363628,-3.4278398,-3.651662,-3.742325,-3.6684785,-3.6861522,-3.7826154,-3.8017094,-3.8795686,-3.8469367,-3.8449106,-3.9222913,-3.8373327,-3.8345084,-3.8447866,-2.2625096,-2.852787,-3.315726,-3.5931437,-3.5931554,-3.3589926,-3.560749,-3.5498369,-3.720936,-3.6796508,-3.8297215,-3.5578837,-3.4892764,-3.3507342,-3.4956331,-3.5845442,-3.6637478,-3.7096944,-3.587566,-3.9528375,-4.1405706,-4.22345,-4.2903943,-4.190195,-4.171812,-4.073679,-4.1134224,-4.2654877,-4.246042,-3.558524,-3.4559531,-3.46309,-3.3249428,-3.0504813,-3.0524487,-3.356742,-3.4607694,-3.621665,-3.109704,-2.7983878,-3.0495496,-2.9889295,-3.177651,-3.0127754,-3.177772,-3.451221,-3.081886,-3.192243,-3.3102355,-3.3872156,-3.482738,-3.5486479,-3.5353239,-3.48102,-3.410246,-3.455347,-3.5148692,-3.5237339,-3.5889692,-3.6358385,-3.5655894,-3.55915,-3.2900252,-3.4498053,-3.4642723,-3.3314238,-3.5496714,-3.580893,-3.4591255,-3.3144512,-3.398972,-3.2952676,-3.0117388,-2.7652688,-2.8641474,-2.7854123,-2.9840097,-2.9926944,-2.98039,-2.9807355,-3.0485077,-3.1142302,-3.2008424,-3.0410886,-2.979523,-2.6535897,-2.634923,-3.1437643,-3.2436764,-3.181924,-3.0963867,-2.7988331,-2.6503677,-2.6225173,-2.5689864,-2.410798,-2.6097512,-2.4870782,-2.6158795,-3.356077,-3.5338902,-3.5409768,-3.3879337,-3.57674,-3.3637652,-3.1028297,-3.0791698,-2.9457185,-2.9220934,-2.7673717,-3.1925514,-3.454089,-3.343776,-3.7491453,-3.589707,-3.643636,-3.7039697,-3.5812874,-3.239197,-2.580521,-2.5103118,-2.732409,-2.5866072,-2.6731136,-2.7827072,-2.7997408,-2.64899,-2.6200204,-2.7436981,-2.4235222,-2.7335148,-2.8701792,-2.994523,-3.0719771,-2.9190662
+-1.4282533,-1.4750736,-1.6076514,-1.8430831,-1.9891747,-2.0555706,-2.0815125,-2.3341453,-2.2510715,-2.2863941,-2.4795928,-2.3790333,-2.5069876,-2.2587802,-0.98046654,-1.7311893,-2.0348303,-2.551619,-2.6069436,-2.735476,-2.8290024,-2.8519142,-2.7563252,-2.526449,-2.4675593,-2.1630864,-2.758234,-2.7545934,-2.582704,-2.673132,-2.6788993,-2.879021,-2.7432246,-2.945179,-2.9371943,-2.9739423,-2.0620296,-2.2857714,-2.4134429,-2.703864,-2.8044698,-2.828845,-2.7126923,-2.9030106,-2.6983209,-2.0670252,-2.7285318,-2.6968026,-2.512188,-2.3061957,-2.1250849,-2.2533283,-2.4441442,-2.7120047,-1.351951,-2.5230794,-2.2038755,-2.3506792,-2.1571126,-2.4478564,-2.1020334,-2.5369658,-2.716496,-2.9587817,-3.1257417,-3.3966196,-3.4579816,-3.2763,-3.01345,-3.1891618,-3.210561,-3.1784673,-3.055087,-0.7604118,-1.9239199,-2.3933926,-2.312077,-2.491485,-2.4317575,-2.6551502,-2.8834434,-2.933219,-3.125792,-3.1167936,-3.1155531,-3.3261914,-3.588647,-3.3768835,-1.1201481,-1.4313333,-1.7942072,-1.2967619,-2.2891932,-2.5087328,-2.0087883,-2.341093,-1.649436,-2.2685342,-2.0409405,-2.2412057,-1.9526494,-2.2358067,-2.8235126,-3.2982426,-3.3173041,-0.4513137,-1.8748952,-1.7236235,-1.9770237,-2.2762442,-2.6889563,-2.930132,-3.0284197,-2.3593924,-2.8191385,-2.9017081,-2.7771657,-1.0915468,-1.5676357,-2.0044055,-1.8397486,-1.0822135,-2.146412,-2.3754368,-2.68615,-1.3579601,-2.4165642,-2.5404918,-2.4917407,-1.5082893,-0.92138565,-1.8709924,-1.4461353,-1.7465127,-2.1246116,-2.4694493,-2.4949841,-2.8686519,-3.0671399,-3.2142873,-0.94766366,-2.0863955,-2.6250026,-2.5209253,-2.9109538,-3.2262764,-2.3699055,-1.1028203,-2.073145,-2.58652,-2.9055,-2.878256,-3.0076482,-3.0967083,-3.172822,-3.125022,-1.6387513,-1.2506787,-2.2754805,-2.4648533,-2.726081,-2.8099768,-2.8788419,-3.167193,-3.214244,-3.036862,-2.8972661,-1.8563745,-2.4210565,-2.8647165,-3.1266623,-3.4608054,-3.477378,-3.2859473,-3.1619062,-2.910921,-1.4809929,-2.125216,-2.633432,-2.8701189,-3.2234612,-3.2652445,-3.3158355,-3.3473632,-3.3949409,-1.8821251,-2.2871566,-2.781433,-2.763121,-2.967757,-3.2550225,-3.272335,-3.3969975,-3.4131691,-3.1025565,-3.285099,-3.418394,-3.7029743,-3.5528166,-3.6507452,-3.4439268,-1.3674909,-1.863041,-2.696062,-2.9238763,-3.1467006,-3.1407447,-3.2444494,-3.355057,-3.3995705,-3.5877066,-2.1960435,-2.3402092,-2.684554,-3.0587082,-3.164475,-3.317966,-3.54205,-3.5317209,-3.410075,-3.5458324,-3.6526139,-3.5398695,-3.6958606,-3.6049376,-3.453855,-3.7172608,-3.6734257,-3.7295754,-3.7406979,-2.8474479,-2.727165,-3.2366862,-3.1073408,-2.8787792,-3.0898495,-3.0984092,-3.014512,-3.0902648,-3.1573763,-3.1714745,-3.1551995,-2.566794,-2.8674922,-2.9306307,-2.8881128,-2.89015,-2.9462128,-2.82475,-3.555721,-3.8877585,-4.0193176,-4.058943,-3.8507566,-3.7861726,-3.872405,-4.060043,-4.2480855,-3.4345512,-2.5395377,-2.9908612,-3.234695,-3.1744437,-2.7163582,-2.556194,-3.050306,-2.941515,-3.0238297,-3.2398715,-3.006401,-3.034553,-2.8538978,-3.218183,-2.8630695,-2.8506312,-3.2872784,-3.5227294,-3.4504128,-3.5079973,-3.5308108,-3.8278885,-3.8655648,-3.7784214,-3.3788192,-3.3686807,-3.7348835,-3.8386014,-3.8131175,-3.791171,-3.8017347,-3.8326392,-3.8451812,-3.3772764,-3.4684172,-3.489932,-3.0461326,-3.5574925,-3.4204073,-3.0083756,-2.9621944,-2.9961486,-2.9636989,-2.7261274,-2.5519586,-2.4654372,-2.4079218,-2.7890568,-2.9752958,-3.103006,-2.486321,-2.838999,-2.1382396,-2.9213223,-3.0167818,-2.6482606,-1.6344763,-1.6307204,-2.271247,-2.172831,-2.2168765,-2.0546482,-1.87137,-1.9882444,-2.010414,-2.125181,-2.1756144,-2.0250626,-1.9279048,-2.2217913,-2.3267794,-2.579161,-2.6534057,-2.771687,-2.658139,-2.9668727,-2.8086019,-2.6281168,-2.4287195,-2.2999275,-2.3604646,-2.7991302,-2.9333262,-2.983539,-3.0373344,-2.7401392,-2.537189,-2.8656812,-2.4923224,-2.103599,-2.397406,-2.5225806,-2.599884,-2.5742207,-2.640874,-2.2948773,-2.4451394,-2.5099046,-2.6472101,-2.6935034,-2.58816,-2.7222738,-1.5702683,-2.717301,-2.8786774,-2.7771668
+-1.6001734,-2.0650225,-2.296788,-2.54058,-2.8137674,-2.9442627,-3.0494163,-3.1457825,-3.08378,-2.6844501,-2.479319,-3.2174687,-3.5188346,-3.6404014,-2.862878,-1.6067045,-2.5587637,-3.2149646,-3.4239168,-3.683088,-3.5583992,-3.584056,-3.6491113,-3.003581,-3.5386128,-2.2715,-3.2485187,-3.3081799,-2.7516365,-1.8339578,-2.8948188,-3.2549872,-3.2255917,-3.5781279,-3.5286329,-3.6082537,-3.2685587,-1.4905744,-3.5604553,-3.670344,-3.441998,-3.43364,-3.6686685,-3.2795115,-3.473625,-3.3341165,-3.3688126,-3.3293648,-3.3382804,-3.3031354,-2.8959165,-3.465704,-3.3358932,-3.2899818,-2.1226397,-3.426034,-2.214466,-3.2263274,-3.1883483,-2.909569,-2.7140021,-3.3539827,-3.3341343,-3.62664,-3.6740043,-3.8521206,-3.9360728,-3.873319,-3.9458983,-4.058972,-4.0682425,-4.14145,-3.6059155,-1.6010693,-1.9387703,-3.336608,-3.544271,-3.7254977,-3.809582,-3.915467,-3.8963926,-3.9858208,-4.15622,-4.091145,-2.422434,-3.5895352,-3.9314096,-1.884641,-2.0482624,-2.4282885,-2.5260513,-3.3773952,-2.7780485,-3.4400768,-3.6677144,-3.8437698,-2.9506092,-3.6370034,-3.7799067,-3.9339063,-4.049535,-4.0484304,-4.1495485,-4.2620506,-3.9830136,-1.986539,-3.6380901,-3.8407688,-3.6353111,-1.396563,-3.4531393,-3.8126981,-2.51662,-1.9906925,-3.4607465,-3.6646657,-3.7947354,-3.5172877,-1.61093,-3.4201636,-3.2636135,-3.6896014,-3.9216483,-3.9993587,-3.7879446,-3.912973,-3.9017794,-3.6977897,-3.6615558,-3.147415,-3.8776498,-4.1169243,-2.8652735,-1.9785665,-3.6976147,-3.8696904,-3.992155,-3.9438057,-4.1084023,-3.696105,-1.7869685,-3.1781743,-3.8068366,-3.836382,-3.9738708,-4.2076197,-4.2186747,-1.385005,-3.3173037,-3.7450032,-3.448175,-3.8408213,-4.001637,-4.086286,-4.1943893,-4.1861377,-3.4437852,-2.7377849,-2.4750059,-3.19912,-3.9287806,-4.0345774,-3.9909687,-4.142193,-4.2720604,-3.9783354,-4.0834394,-1.723623,-3.470765,-3.8592045,-3.9628134,-4.1624827,-4.337899,-4.4956636,-4.306998,-4.3764567,-2.7873259,-3.714229,-4.025757,-4.2322226,-4.3027744,-4.421111,-4.44953,-4.4264956,-4.2162695,-4.3361745,-4.358378,-4.285596,-1.4455205,-3.4322562,-3.922514,-4.011096,-4.060336,-4.165293,-3.115676,-3.9849896,-4.2045183,-4.42418,-4.45121,-4.4994674,-4.223052,-3.3407118,-2.5805216,-3.9101112,-4.1669188,-4.2629633,-4.3082876,-4.4320965,-4.4283843,-4.5004635,-4.5624657,-4.581911,-4.448059,-4.5282545,-4.4567776,-4.4814367,-4.3801227,-4.4766684,-4.510808,-4.4834237,-4.53614,-4.4402657,-4.360617,-4.3846507,-4.2916384,-4.0856047,-4.2500477,-4.214621,-4.2963243,-4.4030066,-3.8601463,-2.2314398,-3.3112535,-3.1107366,-3.0783978,-3.253787,-3.2608466,-3.3206503,-3.3863976,-3.4441173,-3.1935594,-3.187369,-3.0254683,-2.9809828,-3.528464,-3.5098548,-3.428348,-3.4575408,-3.386537,-3.8638637,-3.8466709,-4.155923,-4.0215793,-3.7069302,-3.2694025,-3.6149056,-3.7831821,-4.0138993,-3.5409753,-3.6791205,-4.083399,-4.2836256,-4.246459,-3.2648568,-3.0275054,-3.4199412,-3.2145712,-3.288599,-2.755859,-3.4198017,-3.585361,-3.2016916,-3.7353263,-3.2845473,-3.1178613,-3.5284462,-3.7438078,-3.9400754,-3.6704926,-3.7325883,-3.9897223,-3.9305253,-3.5994205,-2.8481388,-2.8244376,-3.2428303,-3.5319514,-3.1140466,-2.9417272,-2.8397987,-2.1923084,-3.0286713,-2.81571,-2.7971685,-2.5899496,-2.331078,-2.6613004,-2.4900708,-2.1821163,-2.5540576,-2.8736916,-2.9029694,-2.7612214,-2.4657035,-2.4566386,-2.2559104,-2.8005524,-3.0075076,-2.8661203,-2.5207126,-2.3754861,-2.2778053,-2.496951,-2.9909527,-2.6061213,-2.733107,-2.9894772,-3.1048398,-3.1985826,-3.1797118,-3.0337772,-2.9914627,-3.1528034,-3.2832236,-3.5992994,-3.7702334,-3.5773113,-3.7179785,-1.9607743,-2.8965235,-3.257498,-3.502265,-3.4180152,-3.0966694,-3.4465222,-3.2420049,-3.0337358,-2.755178,-2.7963057,-2.8766112,-2.8159502,-3.0161483,-3.1136906,-3.060156,-2.532133,-3.3071353,-3.2534404,-3.0494728,-3.3567693,-3.4717157,-3.5666304,-3.4262323,-3.5948558,-3.6112165,-3.317522,-3.1480136,-3.6088748,-2.490839,-3.2017272,-2.7780051,-3.4271364,-1.4564997,-3.1367784,-3.5544033,-2.6203847
+-1.3230268,-1.5787133,-1.7140702,-1.964696,-2.0887952,-2.4625711,-2.5277467,-2.6398664,-2.5639763,-2.7581038,-2.4377582,-2.5842705,-2.363521,-2.5119863,-2.5396354,-1.7873884,-3.0614781,-2.980185,-3.0650835,-2.9262185,-2.9624557,-3.0651927,-3.0540047,-3.2203257,-3.1442952,-2.6087308,-3.033123,-3.195522,-2.4873881,-2.9398887,-2.9086092,-3.1357062,-3.0722296,-3.1755893,-2.9971704,-2.9832923,-2.432715,-2.4400947,-2.8218963,-2.7174854,-2.528482,-2.9174342,-2.9127889,-2.9611812,-2.9106593,-2.6095014,-2.915125,-2.9830916,-2.950656,-2.9100678,-2.8772953,-2.942167,-2.9500103,-2.0598254,-2.5687537,-2.4180212,-2.676461,-2.5472546,-2.786984,-2.571618,-2.5479312,-2.6656213,-2.0234509,-2.550714,-2.5255427,-2.6749558,-2.6485376,-2.718985,-2.9999747,-1.8860681,-2.7368073,-3.1434045,-1.6320654,-2.5536501,-1.8748928,-2.5067472,-2.6462398,-2.8532758,-2.8409228,-3.0769033,-3.2125778,-3.3009558,-3.533307,-3.3721476,-1.2067263,-2.4915276,-2.7761931,-1.6683096,-2.143437,-1.9094065,-2.4874437,-2.3059263,-2.4681206,-2.5793138,-2.6432312,-2.287158,-2.5352483,-2.6576176,-2.3272567,-2.2595382,-2.8809712,-3.304085,-3.3389392,-1.9273112,-2.1117694,-2.768242,-3.2068129,-3.2484255,-2.5418057,-1.5878915,-2.305551,-1.9948839,-2.6742926,-1.924825,-2.5908663,-1.5656494,-2.6515453,-2.8671122,-1.9117647,-2.5703583,-2.927607,-3.1112556,-1.7142551,-2.6892502,-2.2377098,-2.789109,-3.4510489,-2.8664525,-2.9657354,-3.2882452,-3.4527922,-2.2189674,-1.5983773,-2.2243295,-2.704554,-2.9618921,-3.2211885,-3.3746533,-3.4942837,-3.6428645,-3.2174282,-3.3518152,-3.6231909,-3.6963496,-3.854405,-3.9065561,-3.832249,-2.9653888,-3.3273368,-2.0846877,-2.867186,-2.0204709,-1.8714463,-2.8261757,-2.4639885,-2.030807,-2.2776604,-2.8954415,-3.2512789,-3.3608966,-3.521007,-3.6371732,-3.738668,-3.7716177,-4.015783,-3.7894335,-3.636877,-2.9513884,-2.172654,-1.8930862,-2.7143898,-3.095182,-3.5058846,-3.533401,-3.7654648,-3.6360104,-2.875659,-3.2135854,-3.7541175,-3.9123383,-4.071648,-4.0585384,-3.9260185,-3.8042855,-3.898129,-2.6863284,-3.199977,-3.6560798,-1.3499016,-2.682556,-3.1806698,-3.2928767,-3.3859527,-3.185916,-2.3889058,-3.1435802,-3.339665,-3.478478,-3.687462,-3.7878804,-3.8614037,-3.9515204,-3.938966,-3.9387815,-4.098961,-4.2605224,-4.1589203,-4.052129,-4.0025234,-4.0183268,-4.03753,-4.183667,-4.07012,-3.9840884,-4.121386,-4.1910734,-4.067234,-4.0264025,-3.985073,-3.6662252,-3.7627597,-3.9778962,-3.9223983,-4.0827165,-4.151994,-3.930891,-4.109795,-4.0699286,-4.043999,-4.142852,-2.5904808,-2.5867298,-3.3205805,-3.1538591,-3.2363253,-3.5188174,-3.37391,-3.385469,-3.454947,-3.5403185,-3.4994586,-3.4015925,-3.5301356,-3.4464962,-3.6918,-3.6261353,-3.4137304,-3.5544672,-3.353979,-3.806507,-3.8441882,-4.085678,-3.9816885,-3.6494324,-3.222149,-3.568061,-3.615871,-3.7713466,-3.665811,-3.6121154,-4.069168,-4.4601,-4.368396,-3.4252295,-3.0873806,-3.2239285,-2.9764323,-3.3197465,-2.5347738,-3.269591,-3.5406954,-3.3552284,-3.6420932,-3.3732462,-3.5293028,-3.5591316,-3.5726745,-3.9886007,-3.957613,-4.0462546,-4.3625894,-4.403644,-4.011733,-2.8261878,-3.0260553,-3.2400372,-3.5924172,-3.5384197,-3.2611938,-2.7424755,-2.2551804,-2.71528,-2.874906,-2.8507042,-2.6242073,-2.6261506,-2.6999853,-2.5608847,-2.7534463,-2.8174744,-3.1363978,-3.212303,-2.770735,-2.38967,-2.322587,-2.2193437,-2.5736692,-3.0316336,-3.0854187,-2.6998508,-2.3242497,-2.364327,-2.5165243,-2.7443464,-2.6334918,-2.678047,-2.9905891,-3.104238,-3.1086679,-3.2346282,-3.1650558,-3.1850352,-3.3888054,-3.3290331,-3.3119302,-3.439077,-3.4173253,-3.5314956,-2.5657952,-2.7855444,-3.3792515,-3.4836826,-3.3958259,-3.1569617,-3.2848344,-3.2630832,-3.1089356,-3.1202881,-3.3546004,-3.1441636,-3.4048991,-3.2916212,-3.48954,-3.2021613,-2.996798,-3.1308289,-3.3175123,-3.2459574,-3.3150775,-3.4587643,-3.7986248,-3.5949283,-3.727533,-3.9069743,-3.7757738,-3.4197948,-3.728831,-1.4516379,-2.5759273,-3.077818,-3.1028886,-2.6655846,-3.1997113,-3.318727,-3.379186
+-1.8191569,-1.9283975,-1.9742309,-2.0579026,-2.1798072,-2.6572108,-3.1008377,-3.0847373,-3.049384,-3.2168825,-0.668498,-2.047255,-2.26062,-2.1009703,-1.2360822,-0.9184106,-2.0986733,-2.2156277,-2.5658565,-2.4740646,-2.5358992,-2.5573444,-2.4852452,-2.592784,-2.7870317,-2.7507622,-1.784815,-2.3362806,-1.0484146,-2.356373,-2.4100845,-2.3920307,-2.6026435,-2.70127,-2.5150042,-2.507451,-1.8459691,-2.4647784,-2.8514977,-2.8846908,-1.5035133,-2.153568,-2.6297007,-2.2682142,-1.9754068,-1.7349887,-2.2695067,-2.431108,-2.3036408,-2.29937,-2.2633352,-2.442,-2.5120277,-2.5919893,-3.1169229,-3.1690395,-0.7902284,-2.178349,-2.2309408,-2.1484752,-1.6503934,-2.0972464,-2.2763128,-2.343607,-2.4422848,-2.8355315,-2.0993767,-2.4376507,-2.796483,-1.9810921,-2.531196,-2.8471022,-2.8701952,-0.37538806,-1.9098624,-2.1257875,-2.4952915,-2.9441533,-2.871713,-2.9628716,-2.919148,-3.0365891,-3.1771064,-2.9943337,-3.0248828,-3.0169377,-2.0319488,-0.75669557,-1.5329937,-1.7859138,-1.9312229,-1.6139283,-2.1782691,-2.2635334,-2.1043768,-2.1738644,-2.0126622,-2.513301,-1.453947,-2.173204,-2.577954,-3.0173922,-2.5785146,-2.8851662,-0.6097937,-1.5894076,-2.0210857,-2.3327973,-1.5567905,-2.19892,-2.5960083,-2.5519984,-1.5116539,-2.2588875,-2.1487703,-0.6347699,-1.8379455,-1.3205222,-1.9530823,-1.6259054,-2.0715177,-2.2846394,-2.2924616,-2.3010664,-2.636742,-2.8094742,-3.0322263,-1.2542237,-0.8141899,-1.9628884,-2.0473032,-2.1923602,-2.2014852,-1.5854981,-2.0581493,-2.238906,-2.7213686,-0.67683524,-1.9266723,-2.1783342,-1.7378184,-1.6035466,-2.309002,-2.45581,-2.3605685,-3.0971975,-2.6253667,-2.8034534,-2.0715666,-2.5093236,-1.792473,-1.4986597,-1.6922189,-2.238997,-2.4249802,-1.5708984,-1.889705,-2.3517308,-2.6123016,-2.5367398,-2.7950697,-3.0964494,-3.2284765,-3.5024023,-3.554437,-2.088145,-2.4906983,-2.8374133,-3.3647246,-2.299351,-2.886713,-3.5198662,-3.584155,-3.5531137,-3.1118913,-1.3900034,-1.3812577,-2.783135,-3.1034818,-3.3290741,-3.7243292,-3.4557781,-3.367314,-3.329033,-3.459055,-3.410974,-3.4830084,-3.8787374,-3.6604843,-3.4557848,-3.7097168,-3.646815,-3.172474,-3.518983,-1.7596682,-2.4251919,-2.8878288,-3.4747264,-3.7047071,-3.822925,-4.017391,-3.9008822,-3.7903543,-3.8534756,-4.0733337,-4.361354,-3.8273506,-3.7195716,-3.8548899,-3.6706676,-3.7816648,-4.035742,-3.7217188,-3.5938396,-4.090133,-3.854388,-3.8994856,-3.6917195,-3.4761515,-3.025762,-3.1531036,-3.5679917,-3.5647852,-3.8875635,-3.902265,-3.590783,-3.8280373,-3.9975858,-4.0689297,-3.9797459,-2.6953635,-2.3870897,-3.323053,-3.2433968,-3.4323602,-2.8287766,-3.0821214,-3.367485,-3.6714947,-3.988007,-3.4680762,-3.7915096,-3.8062856,-3.8313496,-4.1833386,-3.9208422,-3.6161695,-3.987969,-3.7376614,-4.2219725,-4.004138,-4.52593,-4.3634233,-3.8611522,-3.5999804,-3.8877716,-4.1906962,-4.3160744,-4.346445,-3.57262,-4.3220863,-4.6917024,-4.6523657,-4.0339403,-3.6985743,-3.302299,-2.994523,-3.455286,-1.8551334,-3.1512234,-3.4491172,-3.2057004,-3.6153796,-3.4445424,-3.7558906,-3.469123,-3.4656296,-4.044804,-4.4054127,-4.207725,-4.407034,-4.527207,-4.026002,-2.9815745,-3.103516,-3.0415468,-3.333841,-3.5844154,-3.2210174,-2.0236678,-1.9315479,-2.0130131,-2.3059592,-2.4800782,-2.3341398,-2.6248083,-2.4987798,-2.4967887,-2.5960457,-3.3493931,-3.747405,-3.8360858,-3.3130362,-3.0802057,-3.1244001,-3.1083884,-2.7735045,-3.447411,-3.657364,-3.257997,-3.1282487,-3.1273477,-3.1482854,-3.191274,-3.1121414,-3.2418294,-3.2988825,-1.5492467,-2.2149692,-2.7318184,-2.8687625,-3.0312614,-3.4489803,-3.3926516,-3.094915,-3.3778548,-3.389721,-3.5974007,-3.4676073,-3.2768898,-3.646183,-3.9409976,-3.6759248,-3.5934553,-3.6092772,-3.953271,-3.696662,-3.7322116,-3.7770727,-3.5684762,-3.7656987,-3.7447479,-4.1086845,-3.6434216,-3.2611878,-3.2940614,-3.600716,-3.5726647,-3.5415542,-4.0291123,-4.230624,-3.8889298,-4.107383,-4.448513,-4.138054,-3.4725027,-3.8869305,-0.92952853,-2.163443,-2.5414236,-2.5634773,-1.9820117,-2.4725094,-2.6552718,-2.7836075
+-1.7892219,-2.20365,-2.6052206,-2.970026,-3.422657,-3.8331475,-4.004194,-3.857553,-3.8116884,-3.949396,-0.5338412,-1.9949223,-2.1295867,-2.144977,-2.1910713,-0.62644356,-2.2980592,-2.4942026,-2.1397645,-2.5510476,-2.2253428,-2.436717,-2.5625029,-2.4056878,-2.928066,-3.20669,-3.406172,-3.1980207,-0.5913364,-2.43064,-2.5209322,-2.2858617,-2.5890183,-2.5898967,-2.6183271,-2.6525373,-2.9206095,-3.3238354,-3.5673513,-3.617619,-2.7983577,-1.0941985,-2.4002323,-2.4251251,-1.6860082,-1.2936568,-1.6839277,-2.047698,-1.9711143,-2.424776,-2.5932512,-2.9582615,-3.1121113,-3.3798697,-3.7351146,-3.8261714,-3.3137717,-3.4953384,-0.57952076,-1.4579657,-1.2690109,-1.8465141,-2.1611176,-2.3174312,-2.4303038,-2.8226848,-2.95584,-0.76054764,-2.080403,-2.4355042,-2.8318706,-3.0321589,-3.057746,-1.1125798,-1.119033,-2.6372814,-3.0250306,-3.5941873,-3.5516295,-3.3435326,-3.19975,-3.407935,-3.3854928,-0.90182155,-1.6628902,-2.2359006,-1.3222548,-2.1462216,-0.3292385,-1.439837,-1.3981656,-1.2920506,-1.5467565,-1.8385602,-1.8064393,-2.1489801,-2.630869,-3.1324453,-2.849423,-3.0490894,-3.22976,-3.3649378,-3.3210013,-3.3596923,-3.267083,-2.6644905,-1.925726,-2.02593,-2.792897,-3.14214,-3.2738624,-2.730491,-1.2735282,-2.2739422,-2.7360926,-2.6018653,-2.8398151,-0.90599924,-1.4682713,-1.4602824,-1.8803812,-2.0508811,-2.5949278,-2.809439,-2.7647474,-0.44931653,-1.2235438,-1.5482353,-1.5847986,-1.9050026,-1.64576,-2.0829492,-2.2442212,-2.032094,-2.4813786,-2.6987586,-2.98105,-3.0706506,-3.226392,-3.2580547,-3.2443192,-0.83472306,-1.7841741,-2.382904,-2.685246,-3.185042,-0.4066136,-1.420132,-1.724666,-1.4772217,-1.85878,-2.0652726,-2.1803546,-2.237011,-2.4446084,-2.3062947,-2.7003598,-2.925232,-1.199205,-1.7875527,-2.089675,-2.3990932,-2.9031792,-3.2293577,-3.0933366,-2.8734322,-2.828237,-3.0946145,-3.0466046,-2.142109,-2.5597968,-3.3949485,-3.3275933,-3.244602,-1.9642094,-2.5226274,-2.1157467,-3.2124045,-3.5678668,-3.6659553,-3.7984843,-3.5582101,-3.4411912,-1.9056414,-1.699116,-2.4697423,-2.8360498,-3.5855782,-3.6640944,-3.6786613,-3.8501894,-3.3492777,-3.0206661,-3.3974164,-2.3672361,-2.65421,-3.1270041,-3.5478535,-3.7880926,-3.8258085,-3.947338,-3.8856826,-3.8803277,-4.0106797,-3.9260125,-3.944706,-3.6840825,-3.648264,-3.6656113,-3.5758588,-3.5029714,-3.563353,-3.5402055,-3.4757347,-3.625372,-3.5113437,-3.5539894,-3.6286845,-3.2709603,-1.2344818,-2.3295338,-2.779689,-3.2292717,-3.478385,-3.586216,-3.5678015,-3.6123948,-3.7347965,-3.8061166,-3.6608415,-3.609417,-3.5470479,-3.6859415,-3.9297385,-3.3900228,-2.6884158,-3.059359,-3.4954853,-3.7332149,-3.8886523,-3.573872,-3.7914839,-4.00758,-4.058006,-4.126946,-3.8752022,-3.361641,-3.920906,-3.894195,-4.079711,-4.2511454,-4.2583976,-4.126547,-3.6724129,-3.7900105,-3.795783,-3.8613274,-4.0445337,-4.067898,-3.577186,-3.823957,-4.585478,-4.5346375,-3.8895354,-3.6934485,-3.232378,-2.9578,-3.3196688,-2.8745575,-3.6088119,-3.7517538,-3.7627308,-3.8066282,-3.79072,-3.9516406,-3.6102316,-3.7785068,-3.925519,-4.149499,-4.4475536,-4.3556967,-4.597391,-3.798067,-3.0858216,-3.1485844,-3.2016873,-3.307428,-3.4544191,-3.0100505,-1.816867,-2.555588,-2.5730295,-2.8698053,-2.9900918,-3.0362082,-3.1250935,-3.1017995,-3.2018933,-3.1803093,-3.472236,-3.9849434,-4.076103,-3.9327047,-3.666277,-3.6733055,-3.5654528,-3.520615,-3.7538922,-3.892358,-3.4883084,-3.5253534,-3.5879736,-3.580759,-3.6176453,-3.566803,-3.5765913,-3.688364,-3.7688372,-2.6806128,-3.4134805,-3.629077,-3.8931468,-4.009601,-3.990315,-3.6430001,-3.8902822,-4.0786133,-4.0889697,-4.090019,-3.7384105,-3.938296,-4.141261,-3.9561534,-4.0093837,-4.1761503,-4.3010187,-4.215345,-4.199687,-4.197579,-4.101907,-4.249238,-4.3792067,-4.3563232,-4.1907406,-3.9757495,-4.0004425,-4.1741457,-4.2162232,-4.119224,-4.16996,-4.2902503,-3.9853888,-3.9493794,-4.1360707,-4.1611514,-3.7902937,-3.9044402,-2.9447274,-3.4956632,-3.8020868,-3.7495751,-0.63371325,-2.5563884,-2.6889954,-2.4719043
+-1.8874695,-2.8689537,-3.1953292,-3.5297518,-3.7199383,-4.010227,-4.1668434,-3.9713435,-3.9524205,-4.096737,-3.7101393,-3.5798857,-3.8814743,-3.9095597,-0.46540806,-0.9978594,-2.5244508,-2.6971922,-1.5784295,-1.971378,-2.359909,-2.4925644,-2.4742785,-2.7359278,-2.9829412,-3.2282913,-3.4733138,-1.4781688,-1.3268963,-2.321313,-2.2664704,-2.5758362,-2.6955478,-2.862411,-2.9554584,-3.0558536,-3.1857872,-3.5284462,-3.8220057,-3.9091015,-3.821713,-0.7954802,-2.0900226,-2.4910064,-2.5815597,-1.4269611,-2.2342186,-2.626217,-2.3114307,-2.5099983,-1.9372257,-1.2777628,-2.0214484,-2.2725387,-2.6850452,-3.0907736,-3.5104604,-3.675821,-2.692606,-2.215257,-2.0079122,-1.0707316,-2.0447423,-2.4318495,-2.9352117,-3.2349238,-3.3751454,-0.5914734,-1.7121146,-2.19973,-2.4016676,-1.37262,-2.321844,-1.7501925,-1.0580987,-2.494771,-3.060124,-3.6078486,-4.0282226,-3.7439203,-3.6976428,-3.8456497,-3.9373899,-0.9600995,-1.3285031,-2.494307,-2.5122647,-3.2265942,-3.541377,-3.6554785,-0.7333951,-2.1666975,-2.7262568,-2.0906482,-0.9585619,-2.402793,-3.1357083,-3.7233305,-3.9549644,-3.8912144,-3.9524202,-4.0364885,-4.237812,-4.2665696,-4.235778,-4.065382,-3.7616093,-3.970837,-0.3730829,-1.6696751,-2.37192,-3.0276608,-3.4262881,-3.6611767,-3.6578636,-0.8396023,-2.2344222,-2.7550642,-3.2639332,-2.5076084,-0.5373016,-1.5060316,-2.3254428,-2.7845213,-0.51999474,-1.7100612,-1.0122327,-1.6406991,-1.7574979,-2.2539253,-0.7641366,-1.8195896,-1.9524592,-2.37265,-2.8848994,-2.6209254,-3.1065083,-3.3750148,-3.5119715,-3.5771337,-2.9999027,-0.6574519,-1.9741546,-2.2209158,-2.4068947,-1.4465905,-1.3203512,-2.2112808,-1.7233945,-1.3868868,-2.106091,-1.8900954,-1.9863342,-2.5691326,-2.801038,-2.900211,-2.899489,-1.9955114,-1.6549872,-0.5871851,-1.713744,-2.239275,-2.6121736,-2.72169,-2.7998009,-2.9019334,-2.7700453,-1.8451697,-2.5466175,-1.9560505,-1.7396281,-2.6550248,-2.9110005,-3.0425844,-2.7495837,-3.0645645,-1.3041214,-2.8320072,-3.3287177,-3.4799364,-3.615334,-3.5774503,-3.5693913,-3.4986842,-3.4812388,-3.414802,-3.5978932,-3.8640559,-3.9296386,-3.9854546,-3.8931239,-3.4840374,-1.0210794,-2.5012789,-2.9322708,-3.1004717,-3.3100352,-3.4666932,-3.5465646,-3.652399,-3.979751,-3.944685,-3.9438622,-3.9302735,-3.8633163,-3.887814,-3.7956128,-3.774231,-3.8097868,-3.7211657,-3.7283545,-3.7455196,-3.8232915,-3.7161717,-3.758235,-3.653585,-3.7185652,-3.8490906,-3.5776353,-0.9286351,-2.3857708,-2.6651287,-2.8143768,-2.9056242,-3.0673604,-3.1417675,-3.198824,-3.388136,-3.4725404,-3.46341,-3.5043168,-3.6816473,-3.7185688,-3.7981567,-3.7245357,-3.3679461,-3.5169444,-3.663178,-3.7138672,-3.6291265,-3.308775,-3.5993624,-3.8213544,-3.9293716,-3.993534,-3.718712,-3.1667168,-3.6229715,-3.643486,-3.786588,-4.008679,-4.015864,-4.046313,-3.7100527,-3.722994,-3.6651707,-3.689498,-3.7731564,-3.9367185,-3.5210066,-3.5848658,-4.3508387,-4.4578,-4.0747614,-3.8574326,-3.2651515,-2.5653434,-3.2395148,-2.7420506,-3.4209938,-3.52142,-3.5855222,-3.6309586,-3.651929,-3.7134159,-3.604432,-3.6452913,-3.6773503,-3.85717,-4.1317096,-4.1551948,-4.4395423,-3.9682312,-3.4110367,-3.500043,-3.4810066,-3.5389295,-3.4580545,-3.0990338,-1.5297586,-2.102425,-2.6529932,-2.7859583,-3.0016112,-3.111309,-3.0954258,-2.518963,-3.0093443,-3.0936403,-3.2879097,-3.495409,-3.5715818,-3.795042,-3.6299732,-3.5069923,-3.4322872,-3.3884583,-3.5767884,-3.848258,-3.5110884,-3.4597096,-3.4323096,-3.456242,-3.4487307,-3.442943,-3.5300562,-3.5626507,-3.6640217,-2.4317355,-3.2974987,-3.514463,-3.5485907,-3.5923364,-3.6022568,-3.4767463,-3.6394966,-3.7926984,-3.816222,-3.8746755,-3.96387,-3.9603696,-3.9958377,-3.9385676,-3.9234705,-4.1029572,-4.1550493,-4.0599117,-4.051762,-4.0993853,-4.028455,-4.2579613,-4.3039036,-4.2842464,-4.298629,-4.028453,-3.972731,-4.1815367,-4.1898327,-4.0526285,-4.086013,-4.146672,-4.0721016,-4.082369,-4.074381,-4.243588,-4.0913134,-1.9517268,-1.3592652,-2.791648,-3.0752296,-3.341908,-0.86283535,-2.285641,-2.6624877,-2.777017
+-1.6099256,-2.418379,-2.8917124,-3.2791538,-3.2528098,-3.466427,-3.5738864,-3.4914021,-3.2260013,-2.5642889,-1.7310705,-2.5237665,-1.5521036,-2.3144164,-2.451889,-2.538373,-2.9646578,-3.186735,-1.0246781,-2.0897312,-2.3196335,-2.6152701,-2.8767428,-3.1217828,-3.4230742,-3.6389525,-3.5880413,-3.7806106,-0.86893135,-2.1437297,-2.3135967,-2.4486957,-2.7390728,-3.1596863,-3.42205,-3.5000446,-3.540426,-3.5966692,-3.6416032,-3.7482593,-3.7789993,-3.6232677,-3.6370916,-3.3456335,-1.9169763,-2.7144375,-2.2612367,-1.5826026,-1.9238302,-2.2641072,-2.4661083,-1.414909,-2.3607137,-2.9395332,-3.301337,-3.5922914,-3.6642632,-3.811387,-1.5555094,-1.1257064,-2.0288918,-0.9681974,-2.0435395,-2.3404381,-2.45013,-2.6326704,-2.347094,-2.1225739,-2.8333907,-3.2291474,-3.2684839,-3.4078515,-3.2409625,-3.4363632,-2.9308112,-3.41471,-3.6182294,-3.6420455,-3.8704894,-3.7428038,-3.6148722,-3.626502,-3.6286502,-3.6635273,-3.6189568,-3.6266317,-1.2793123,-1.8737237,-2.4787679,-3.025985,-1.6045355,-1.5886866,-2.6863596,-3.1632395,-1.9796225,-2.4009638,-3.2520442,-3.5947895,-3.777576,-3.6306267,-3.5525897,-3.5726366,-3.7713687,-3.8578835,-3.8846476,-3.8062017,-1.271974,-2.7901587,-3.2477925,-3.455389,-3.5342758,-3.5906005,-3.6486106,-3.6717489,-3.7030659,-0.7722926,-1.763641,-1.5766088,-2.4951725,-2.918,-0.49981222,-1.9706563,-2.5009656,-2.8536758,-0.059494797,-1.8208231,-2.5157778,-2.8744035,-3.1938033,-0.838216,-0.9604309,-2.046371,-2.5859876,-2.8189783,-3.21132,-3.5547066,-3.5880933,-3.5836034,-3.6496804,-3.6065261,-3.5794082,-1.9562165,-2.8765173,-3.1943712,-3.2338428,-3.5034592,-3.5643322,-3.2792735,-0.6281771,-1.5041136,-1.8103576,-1.2327296,-1.456371,-2.2525716,-2.477786,-2.4719992,-2.5669365,-2.7866046,-2.2245057,-0.54830045,-1.6498873,-2.1343775,-2.346703,-2.6344018,-2.897542,-3.1308322,-1.524558,-1.2168857,-1.8129662,-2.182692,-2.5507197,-2.9792175,-3.1925297,-3.3248477,-3.3520136,-3.3565593,-3.4001648,-3.6935089,-3.6953845,-3.5866032,-3.589543,-3.594348,-3.4504485,-3.421999,-3.3921323,-3.3384647,-3.3675032,-3.6109881,-3.6708567,-3.6790488,-3.522421,-1.512039,-2.4522355,-2.9620929,-3.231513,-2.1585379,-2.61805,-3.0852957,-3.4033432,-3.568872,-3.919497,-3.7023997,-3.6891766,-3.634253,-3.565299,-3.664174,-3.7681553,-3.604506,-3.667061,-3.7136033,-3.557397,-3.6275053,-3.8562827,-3.6408064,-3.705297,-1.6250409,-2.1609561,-2.7731318,-1.2580031,-2.1939886,-2.6133204,-2.900571,-3.0315175,-3.0818853,-3.1332989,-3.1374664,-3.2006173,-3.5285094,-3.6024683,-3.65166,-3.7132518,-3.8082066,-3.7098851,-3.6928985,-3.5101895,-2.8986244,-3.3058062,-3.5615895,-3.6859784,-3.5626278,-3.4523022,-3.5317268,-3.7740645,-3.8723922,-4.072272,-3.7868178,-2.4505572,-3.0863404,-3.393662,-3.606794,-3.791102,-3.9600568,-3.9680657,-3.7128901,-3.3972151,-3.4386473,-3.4095569,-3.4624763,-3.746033,-3.3956137,-3.3100624,-4.1741877,-4.276759,-4.134479,-3.65315,-3.3524961,-3.104063,-3.2704072,-3.1545522,-3.6241457,-3.637435,-3.558917,-3.7160954,-3.8685756,-3.630219,-3.5479543,-3.4930735,-3.5638595,-3.6232748,-4.0280814,-3.997449,-4.0165453,-3.841146,-3.3044276,-3.2173429,-3.5473173,-3.664286,-3.4630957,-2.106295,-2.053903,-2.410207,-2.6009715,-2.8156872,-3.0088143,-3.200613,-3.3887002,-3.3466663,-3.3822434,-3.3380334,-3.58774,-3.8369715,-4.023365,-4.055727,-3.767087,-3.677207,-3.639353,-3.6409416,-3.6609192,-3.8536818,-3.7410846,-3.5236435,-3.4653118,-3.4615335,-3.583213,-3.6247306,-3.692278,-3.8069777,-4.031117,-1.4688526,-2.9946651,-2.9806294,-3.0703392,-3.0998535,-3.1139455,-2.998673,-3.0892005,-3.3812432,-3.425021,-3.4845781,-3.6838348,-3.7508326,-3.6841588,-3.6462798,-3.6754754,-3.7341104,-3.707356,-3.6515427,-3.6374006,-3.597611,-3.575819,-3.7339373,-3.6555524,-3.7518766,-3.8245645,-3.5425406,-3.3652053,-3.6369007,-3.5858567,-3.5133264,-3.543842,-3.7413156,-3.7203379,-3.619638,-3.6835523,-3.810798,-3.708943,-3.391645,-3.1651316,-3.5957007,-3.6395736,-3.6907926,-1.0608662,-1.0462661,-2.1090965,-2.5226436
+-0.87568325,-2.242118,-2.4294708,-2.6857247,-2.9658127,-3.5476735,-3.914503,-3.7455235,-1.1621107,-2.484471,-3.0945272,-1.0476848,-2.2787833,-2.6009603,-2.8457537,-3.2698102,-3.7130928,-3.7820413,-1.8374269,-3.0175862,-1.2067109,-2.5760064,-3.015686,-3.5174508,-3.8953848,-4.140129,-4.304599,-4.285731,-4.247038,-4.2724996,-4.1925554,-4.0556655,-4.2965107,-4.381002,-4.3635025,-4.2823267,-4.2590294,-4.024002,-4.2622776,-4.3880463,-4.381346,-4.2990227,-4.1912794,-0.9268363,-1.8487359,-2.550891,-2.9115078,-1.2484862,-1.9385407,-2.5455327,-2.849505,-2.9959323,-3.4249668,-3.692884,-3.9984388,-4.1292114,-4.2510056,-4.3469095,-4.170644,-3.946381,-1.3603107,-1.2659434,-2.2319384,-2.601294,-3.0191789,-3.4348826,-3.7351332,-3.905487,-4.0333714,-4.094617,-0.8167515,-2.3331466,-0.84758633,-2.1052597,-2.6704137,-1.3799583,-1.3899002,-2.4452028,-3.1731815,-3.2026744,-3.6398897,-3.849455,-3.9238937,-3.940157,-4.0086017,-4.0698037,-4.0231953,-3.9532013,-1.2765383,-2.7593868,-3.3953762,-3.6959414,-3.9021573,-4.048327,-4.159437,-3.2610126,-3.7730086,-3.9382463,-3.9275734,-3.9008446,-3.9050653,-1.7779034,-3.159627,-3.7719316,-2.216679,-3.0587435,-2.6196027,-3.650018,-3.981399,-4.0700817,-4.0898533,-4.1023684,-4.1022615,-4.1029453,-4.083253,-4.0613565,-4.014817,-3.774736,-3.649551,-3.9463172,-4.0164332,-4.0542707,-4.0690207,-4.046612,-3.9349818,-4.007977,-4.0285416,-4.04309,-4.028334,-3.6923196,-1.6712421,-3.0970187,-2.218955,-1.1345769,-1.934168,-3.0424197,-3.573351,-3.884171,-4.005335,-4.035399,-4.0244207,-1.0785965,-2.569233,-3.1881669,-2.772803,-0.7690994,-2.2056122,-2.6299129,-3.0344567,-1.5499473,-0.70821095,-1.6540333,-1.919024,-2.1927176,-1.8397986,-2.5724854,-2.777987,-3.0344205,-3.2057517,-2.2158873,-2.88372,-3.215188,-1.0225284,-2.3679066,-2.5716424,-2.2943099,-2.6017675,-1.6082772,-1.5871333,-2.103239,-2.589078,-2.9143646,-3.1263416,-3.293578,-3.3912005,-3.5331542,-3.496996,-2.3270915,-2.6990662,-3.3893888,-3.650012,-3.7595782,-3.8120246,-3.6644297,-0.9186619,-2.393115,-2.8462179,-3.3130803,-3.589993,-3.727707,-2.1583672,-1.5487672,-2.1012883,-2.8359766,-3.128336,-1.4827093,-2.5782096,-2.8733227,-3.2137766,-3.4973512,-3.7034073,-3.7892919,-3.882359,-4.07302,-4.065808,-3.9822845,-3.9108696,-3.7624202,-3.7626462,-3.8620102,-3.9274523,-3.9099703,-3.8938975,-3.914309,-3.9555027,-3.6524925,-0.8842531,-2.5490346,-2.2576544,-2.2823112,-2.1132722,-2.908771,-3.1954207,-3.0508823,-3.2923884,-3.3440473,-3.4382293,-3.580707,-3.6611707,-3.7223463,-3.7434232,-3.937061,-3.927998,-4.0299997,-4.022114,-3.978382,-4.0170794,-4.0911913,-4.000512,-3.952055,-3.6912072,-3.8975508,-4.0900884,-4.187308,-4.185912,-3.8855064,-1.3891062,-2.535637,-2.8984785,-3.214724,-3.2038307,-3.329529,-3.348599,-3.3697085,-3.4866161,-3.4204922,-3.5485587,-3.4517074,-3.3418508,-3.4983244,-3.5422103,-3.7129793,-3.7982955,-3.755427,-3.8859034,-3.6936352,-3.3184743,-3.6594493,-3.47733,-3.7959886,-3.920353,-3.9866562,-3.982553,-3.813206,-3.8423004,-3.917402,-1.0964302,-2.8603082,-2.851884,-3.1628647,-3.506009,-3.780703,-3.4003391,-3.505626,-3.5204873,-3.506049,-3.5898547,-3.297902,-1.9359648,-1.2076083,-2.3174272,-2.838111,-2.6097236,-3.0796876,-3.1727896,-3.1688414,-3.4337988,-3.552898,-3.5542693,-3.7369208,-3.8658738,-3.8321648,-4.0199585,-4.1092863,-4.149675,-4.194127,-4.2472615,-3.963665,-3.753244,-3.7732062,-4.0651226,-4.0834284,-4.102324,-4.104804,-4.095523,-4.090549,-4.008833,-4.073717,-1.2908759,-2.302233,-3.0682006,-3.226026,-3.3998613,-3.551496,-3.5452676,-3.7698665,-4.007785,-4.062937,-4.0688405,-4.235053,-4.104246,-4.1821165,-4.1853333,-4.1151533,-4.2293625,-4.158702,-4.1318097,-4.117997,-4.1081986,-4.055444,-4.1518965,-4.1726313,-4.098666,-4.0968494,-4.0586214,-3.8219738,-4.017804,-4.1536784,-4.070259,-4.1970663,-4.1712456,-4.1385517,-4.1536694,-4.0846205,-4.108999,-4.11275,-4.141127,-4.1743307,-4.3594294,-4.318489,-4.3211193,-4.2170544,-2.1663811,-3.4687529,-3.8401706
+-0.9589409,-2.429553,-2.6207085,-3.0255723,-3.4299173,-3.775982,-4.1293125,-3.6558928,-0.79526395,-2.4434123,-3.1238692,-1.3106623,-2.256897,-2.68359,-3.2849832,-3.633122,-4.019285,-3.3147855,-3.2994246,-0.80813974,-2.59242,-3.0991797,-3.5114193,-3.8399665,-4.1814013,-4.1949387,-4.424469,-4.606591,-4.4560194,-4.5413933,-4.1891656,-1.4731349,-3.266624,-4.0164924,-4.365995,-4.3799925,-4.3244,-3.9350631,-4.3743725,-4.6006823,-4.5251493,-4.1266418,-3.6563325,-3.8429794,-3.259338,-3.9966288,-3.0645337,-0.74239767,-1.9561889,-2.7711508,-3.117722,-1.6513349,-2.9284456,-3.5950232,-4.1151056,-4.1286564,-4.298747,-4.62212,-4.1515117,-3.9299655,-0.69781464,-1.4031125,-1.9135827,-2.0336509,-2.36437,-2.878087,-3.324432,-3.5703053,-3.5847702,-3.7223907,-1.5469891,-2.4919138,-0.5461358,-1.9930881,-2.565986,-2.976015,-0.7477271,-2.2549772,-3.033615,-3.2583346,-3.3816876,-3.4332814,-3.6312747,-3.6869652,-3.682093,-3.6916382,-1.0353862,-0.83537906,-1.9784797,-2.6220875,-3.1100423,-3.3368344,-3.1390576,-3.5140224,-3.9812179,-3.259727,-3.057014,-1.6932214,-1.3903197,-2.463461,-3.1315894,-3.4842405,-3.5594862,-3.721715,-3.7671347,-0.7587014,-2.4707594,-3.1371527,-3.4178824,-3.483911,-3.4828513,-3.6374822,-3.7574646,-3.7309866,-3.7401595,-3.493755,-0.66192585,-1.0811678,-2.3574595,-2.5396576,-3.0787685,-3.4111128,-3.563304,-3.1398983,-2.2636254,-3.2305737,-3.5025854,-3.541822,-3.52808,-3.5694132,-1.0642676,-1.4181277,-2.5287333,-0.4365818,-1.538947,-2.5655024,-2.9620085,-3.1970406,-3.1599226,-3.126216,-3.250091,-3.0108895,-3.113247,-2.1144855,-2.4559216,-0.31255367,-1.4027699,-1.5906614,-2.2711232,-2.3900564,-0.7592779,-2.0458577,-1.9976753,-1.2450022,-2.1803353,-2.5997412,-2.7439876,-2.8197145,-2.8949075,-2.7450643,-0.28249285,-2.1671429,-1.4002701,-2.0092444,-2.5197947,-2.7993798,-2.8483987,-2.6664557,-2.1127262,-0.9738812,-0.91231173,-2.1545038,-2.657657,-2.9228644,-2.9985647,-3.1914735,-3.098792,-2.097908,-0.9695441,-1.5093356,-2.7051215,-2.9238048,-3.0278265,-2.9867084,-3.0097504,-3.175414,-3.3882024,-3.6289582,-3.4085364,-3.0261064,-0.38251352,-2.0594873,-2.4691124,-2.785139,-2.966422,-2.90983,-2.9485984,-3.0897086,-3.295257,-3.4542248,-3.535221,-3.4386747,-3.6057446,-3.656423,-3.584927,-3.5499399,-3.2724538,-2.9436631,-2.8469691,-3.2549164,-3.258626,-3.3862228,-3.4164767,-3.4420376,-3.5748715,-1.9228103,-0.59950644,-2.029342,-1.5421171,-1.39356,-2.7033057,-2.49227,-2.816959,-2.8833437,-2.8715186,-2.927576,-3.0085523,-3.162744,-3.3471923,-3.4555368,-3.455674,-3.485687,-3.682231,-3.47826,-3.397006,-3.392692,-3.468977,-3.4454608,-3.063525,-0.90209866,-2.4643245,-2.8271308,-3.156082,-3.5681589,-3.6312094,-3.178762,-0.98048884,-2.4410758,-2.8059444,-3.0080903,-2.6018014,-2.6099842,-2.9834797,-3.1276813,-3.1750293,-3.2311428,-3.2834203,-3.1658425,-3.1569126,-3.312304,-3.5361,-3.6260262,-3.6848598,-3.760619,-3.6153796,-3.5622485,-3.3103685,-3.2853503,-3.2427301,-3.4926257,-3.583377,-3.5358028,-3.6303463,-3.0892582,-3.426086,-2.1936622,-1.640634,-2.9174585,-3.15525,-3.3274865,-3.5905418,-4.129521,-3.9041,-3.6554203,-3.6715186,-3.689099,-3.6704285,-3.2118957,-2.0809383,-0.99628216,-2.6736856,-2.626723,-2.6000729,-3.0325677,-3.234723,-3.351152,-3.4936507,-3.6236773,-3.6336932,-3.7360659,-3.8956544,-3.6072807,-3.5677736,-3.9948773,-4.0540047,-4.0749154,-4.1475496,-4.0462413,-3.8663864,-3.5744164,-3.7927117,-3.9060612,-4.044925,-4.128376,-4.0915575,-4.0615826,-4.06394,-4.1543427,-0.96471304,-2.2490926,-3.1268744,-3.3686779,-3.6028416,-3.736361,-3.2894633,-3.1863332,-3.9066164,-4.1525183,-4.2272334,-4.342146,-4.4151835,-4.342307,-4.365995,-4.4026737,-4.3533397,-4.392267,-4.3266697,-3.8853693,-3.6827679,-4.050879,-4.2477093,-4.009406,-3.7377748,-3.8794677,-3.686862,-0.71630263,-2.3912897,-2.816517,-3.1553364,-3.4727125,-3.8712904,-3.901229,-3.9336317,-4.006498,-4.0834904,-3.9765472,-3.8338506,-2.5050282,-3.8156943,-4.2097015,-4.3519545,-2.4997778,-1.7341493,-3.2767982,-3.9241
+-1.0554157,-1.5604762,-1.909482,-2.243273,-2.589273,-3.025877,-3.4479828,-3.7498589,-3.427217,-3.6188793,-3.7096252,-2.3328066,-2.4919,-3.0302548,-3.287055,-3.3915396,-1.8304769,-1.7071304,-1.7289765,-2.0945532,-2.420187,-2.722991,-2.186558,-2.4698937,-3.150799,-3.695795,-4.0579653,-4.066702,-4.1668825,-4.327073,-3.8698504,-3.1032581,-3.5952172,-3.9332523,-4.1865964,-4.1042624,-4.0070696,-3.2703295,-2.8813844,-3.8631666,-3.8837402,-3.6318712,-3.612699,-3.5598307,-3.2056155,-1.0053247,-1.9852632,-1.676925,-1.280793,-2.1211,-2.1632938,-2.4045477,-2.0985746,-2.5883756,-2.2232509,-2.0687857,-3.001596,-3.75284,-3.6943803,-3.4321551,-1.4358773,-1.6233441,-0.9897981,-1.9235927,-2.1024137,-2.1797636,-2.554391,-2.9000044,-3.2252414,-3.4905586,-3.6385942,-0.03618226,-1.6780921,-2.3047385,-2.5476627,-2.904522,-0.73407346,-2.0975657,-2.7699966,-2.745883,-3.1286602,-3.4314265,-3.7722836,-3.9258544,-3.9751558,-3.954753,-1.456593,-1.1954032,-2.1585236,-2.4654021,-2.9694524,-3.3267276,-1.7017441,-1.8360018,-2.692709,-3.2587218,-3.5923142,-1.5838679,-1.92969,-2.5781238,-3.082996,-2.3700004,-2.5124106,-3.2903554,-3.7125237,-3.8854203,-3.9789062,-4.05966,-4.0514927,-4.0221705,-4.006559,-4.025119,-4.019052,-3.9929519,-4.002669,-3.8790464,-1.3125402,-1.2648884,-2.268102,-2.7505894,-3.1949935,-3.5463076,-3.6910076,-2.155877,-2.745913,-3.333172,-3.6588712,-3.8102298,-3.838439,-3.79951,-3.7849374,-1.3208921,-2.0248065,-2.5168705,-0.55854654,-1.9891485,-2.1957827,-2.5433338,-2.539869,-1.4719505,-1.9592515,-2.0989995,-2.5672019,-2.508521,-1.5188376,-2.1245065,-1.6317086,-1.0358623,-1.7290453,-2.096391,-1.3865572,-1.883542,-1.7890011,-2.0673914,-2.422958,-2.406797,-2.5908613,-2.7855186,-2.9662335,-3.0121286,-3.1265094,-2.9923487,-1.2891371,-1.8504987,-1.3919516,-1.8252236,-2.1637921,-2.406532,-2.6025448,-2.5207725,-2.7791426,-3.0927932,-3.3406234,-3.4832416,-3.5251994,-3.5957878,-2.6285856,-0.8855346,-1.6052731,-2.1525269,-2.568321,-2.5376904,-2.8085778,-2.8674154,-2.8027136,-2.785016,-1.9130148,-2.6364264,-2.7036614,-2.9119134,-1.6246926,-2.2040296,-2.4707341,-2.6985354,-2.927565,-3.0616035,-2.9828005,-3.0219526,-3.260049,-3.4473047,-3.6803193,-3.6512196,-3.816238,-3.6861541,-3.7841008,-3.8338141,-3.536006,-3.279244,-3.1132536,-3.3982754,-3.366174,-3.5783556,-3.6322632,-3.5581124,-3.722899,-3.4360838,-2.6117723,-2.8561692,-2.4074106,-0.5414812,-1.9764179,-2.211246,-2.1187258,-2.159855,-2.3507185,-2.570243,-2.6203995,-2.7943435,-3.0200527,-3.141219,-3.154408,-3.1993403,-3.262261,-3.2788868,-3.2903514,-3.364719,-3.4231062,-3.3871088,-2.1980472,-2.1799417,-2.4582248,-2.7984905,-3.1561365,-3.2989225,-3.2299914,-2.9589784,-1.4752566,-2.0377815,-2.042499,-2.5714345,-2.5864413,-2.753979,-2.7597814,-2.6747046,-2.6925578,-2.9756544,-3.122651,-3.003899,-2.7480338,-2.8941298,-3.2954712,-3.0456347,-3.1654048,-3.2349715,-3.5538166,-3.5099962,-3.0860894,-2.8803744,-2.7484488,-3.053513,-3.3188498,-3.3587425,-3.7559848,-1.3937737,-2.2944558,-1.8432785,-1.7126131,-2.446771,-2.6908891,-2.820127,-2.9062042,-3.4495437,-3.1962214,-3.1237378,-3.2878702,-3.3092637,-3.2210686,-2.7335482,-2.570519,-0.32970107,-2.1495068,-1.9574562,-2.4183745,-2.480821,-2.524737,-2.5264463,-2.4236312,-2.4514997,-2.7652798,-2.883685,-2.9785192,-3.1479807,-2.7659025,-3.2495532,-3.3348794,-3.398199,-3.520684,-3.4525983,-3.1048942,-2.8079424,-2.9981136,-3.2121103,-3.5548933,-3.672363,-3.6137156,-3.5075846,-3.688386,-3.6874175,-3.06044,-1.0666249,-2.3892896,-2.467754,-2.2776923,-2.3759174,-1.9661211,-2.0925362,-2.5840755,-3.0038872,-3.269127,-3.5128167,-3.436493,-3.4485466,-3.5965917,-3.7313333,-3.7683816,-3.593012,-3.536963,-3.1797466,-2.929438,-3.2621174,-3.6522427,-3.2785153,-3.2367096,-3.266896,-3.275082,-2.4665546,-2.9427156,-3.0712318,-3.258604,-3.334751,-3.6467745,-3.5347917,-3.5994387,-3.6929848,-3.811615,-3.8040743,-3.5636353,-3.5242105,-3.9721203,-4.0305614,-4.078488,-3.817378,-1.1059802,-2.348998,-2.8321276
+-2.5546966,-3.2535954,-3.9975276,-4.3928046,-4.5369153,-4.6093135,-4.598321,-4.587484,-4.199539,-4.497794,-4.559659,-3.2980068,-3.6409771,-4.328044,-4.5088234,-4.5723605,-3.7383049,-2.9388938,-2.7837763,-3.5120368,-4.0573487,-4.0794783,-3.05928,-3.6780686,-4.2686324,-4.5665464,-4.7530427,-4.7765055,-4.80917,-4.820345,-4.4790516,-4.011209,-4.3059235,-4.533242,-4.6872864,-4.616641,-4.574518,-3.303391,-4.214991,-4.580415,-4.545886,-4.439736,-2.919889,-2.321307,-1.8151972,-2.2615056,-2.2850764,-2.1691759,-1.911115,-2.7490127,-3.024049,-3.4431076,-3.722559,-3.9836507,-4.219176,-1.910672,-2.450457,-3.5225894,-3.803183,-1.9654206,-1.8078517,-2.4220629,-2.110601,-2.4353123,-2.771489,-3.3126645,-3.7832246,-4.170523,-4.3761306,-4.478024,-3.3046227,-1.1620405,-2.570356,-2.9253583,-3.1337755,-2.8596964,-2.8467357,-3.2933521,-3.8195832,-2.34927,-2.785859,-3.3442962,-3.8169093,-4.147923,-4.3720894,-2.5629654,-1.4725904,-1.7452439,-2.5680163,-2.5768623,-3.0488048,-2.8488278,-2.766573,-2.7579055,-3.3210158,-3.7463822,-4.0351872,-4.230627,-3.6799998,-2.5056098,-3.2509503,-3.7709558,-4.1007495,-4.3259425,-3.2419977,-3.427565,-3.9065862,-4.3300915,-4.488986,-4.558384,-4.5863457,-4.6112723,-4.648111,-4.652934,-4.6527715,-4.6398,-3.0498939,-1.4483019,-2.6655622,-3.187089,-3.664982,-3.9908485,-4.2815266,-4.378703,-4.4800277,-4.562604,-4.6115894,-4.6178136,-4.607794,-3.0714135,-1.5825883,-2.0434728,-2.0605426,-2.7239165,-1.3358148,-2.608003,-2.699896,-2.82227,-2.4279726,-1.7107087,-2.0674496,-2.6767435,-2.7935266,-1.6982685,-2.7264688,-2.6216269,-2.3171632,-2.149488,-2.2197866,-2.7033741,-2.4094155,-2.8111324,-2.9526129,-2.934198,-2.5799842,-1.9020474,-2.59404,-2.8369157,-2.875939,-2.9113321,-3.0305278,-2.8238103,-2.0865803,-2.6159954,-2.563942,-1.9634539,-2.844968,-2.9929318,-3.230578,-3.0715492,-3.3951287,-3.6586666,-3.8692021,-4.0386524,-4.163432,-4.228471,-2.7786007,-1.2712506,-2.1535134,-2.7988484,-3.054055,-3.0164886,-3.2970843,-3.0396104,-3.1934838,-3.4093943,-2.5498579,-3.2574391,-3.42488,-3.2791014,-3.2663717,-3.666506,-3.808606,-4.0156245,-4.1292396,-4.2082567,-4.1262503,-4.091977,-4.159731,-4.26416,-4.3471375,-4.4379234,-4.5165324,-4.395521,-4.483746,-4.572631,-4.4317617,-3.5765254,-2.8910203,-3.4829993,-3.7928994,-4.117992,-4.262514,-4.3088603,-4.400838,-4.3696947,-3.8764057,-2.5054264,-3.1547081,-3.167939,-3.1803188,-3.091,-2.83552,-2.9002852,-2.7329278,-3.2130275,-3.338199,-3.5241904,-3.6959925,-3.879527,-3.9766607,-4.099781,-4.20238,-4.2165666,-4.1857004,-4.2607603,-4.3162875,-4.249406,-3.950091,-3.9202032,-3.7566795,-4.0649858,-4.386758,-4.433672,-4.406494,-4.2549934,-3.067379,-1.6913484,-2.5241456,-3.0248523,-3.2663655,-3.289132,-3.4258053,-3.4564147,-3.4263365,-3.6505024,-3.7876503,-3.7935576,-3.7201056,-3.703302,-3.9736876,-3.8997974,-4.107734,-4.083342,-4.1979513,-4.1367927,-3.905765,-2.6317608,-3.124811,-3.5084233,-3.7826798,-3.9425206,-4.1031733,-2.4376154,-2.6789708,-3.2942595,-3.4821386,-3.8922868,-4.1694245,-4.3234425,-4.1038246,-4.3808594,-4.3485746,-4.287449,-4.4339747,-4.4116354,-4.353672,-4.1383705,-3.9528818,-2.1132078,-2.8813872,-3.2317567,-3.3454585,-3.6057358,-3.9278789,-4.1491904,-3.5335898,-4.3344307,-4.5537615,-4.4411106,-4.4306345,-4.441332,-4.056279,-4.5106883,-4.526616,-4.5718527,-4.6295004,-4.5912876,-4.3450365,-3.993176,-4.1285973,-4.3153324,-4.440587,-4.632183,-4.614998,-4.57062,-4.645829,-4.612997,-4.17707,-1.311355,-2.783296,-3.1067877,-3.0169635,-3.3797371,-2.4989343,-2.4449694,-2.9569683,-3.3899682,-3.6960564,-4.0327024,-4.365316,-4.46747,-4.5594544,-4.610591,-4.636055,-4.57971,-4.5385327,-2.5047534,-3.0379248,-3.693513,-4.1443515,-4.2166586,-4.2267294,-4.325986,-4.24407,-4.2263765,-4.35526,-4.2680693,-4.52304,-4.511362,-4.626791,-4.586062,-4.593665,-4.63398,-4.7102985,-4.671754,-4.5484266,-4.564552,-4.7597437,-4.777957,-4.785212,-4.7565613,-4.357892,-4.7590284,-4.725972
+-3.152096,-3.4226108,-4.1298947,-4.6555853,-4.7642155,-4.7268395,-4.7349777,-4.721091,-2.518083,-3.7259336,-3.9917321,-2.9478183,-3.124128,-3.8489394,-4.169066,-4.4654183,-4.396858,-3.1229978,-3.619394,-2.2006016,-3.1256254,-2.7541304,-1.8542674,-2.4632294,-3.1795053,-3.7672362,-4.274968,-4.5660944,-4.767374,-4.9098463,-4.786479,-4.284381,-4.2990437,-4.426314,-4.729352,-4.6655874,-4.711817,-2.2457232,-3.2821138,-3.9036002,-4.0257406,-4.1580935,-3.3079093,-2.1184864,-1.626118,-2.156672,-2.6545873,-2.6615272,-2.697103,-3.12633,-3.3624744,-3.5841818,-2.571867,-1.73221,-3.208404,-2.7119489,-3.0593786,-3.7861207,-3.7389445,-2.065078,-2.0780172,-2.5268722,-2.1148167,-2.7036111,-2.857759,-3.2240322,-3.6196046,-3.9341712,-4.12079,-4.2256517,-2.9965496,-2.4962783,-2.7429516,-3.2009635,-3.2546363,-3.0598679,-2.9800143,-3.0365033,-3.634728,-3.9593315,-2.585721,-3.2405546,-3.6761453,-4.024298,-4.1965723,-3.8796024,-1.7040285,-1.8734099,-2.4100533,-2.453497,-2.939669,-2.793518,-3.1674302,-3.3555908,-3.163801,-3.5873775,-3.8781095,-4.089564,-3.9048424,-2.7825556,-3.085034,-3.5320816,-3.8526025,-4.10835,-3.7423732,-3.2763567,-3.915436,-4.181999,-3.7841394,-4.227004,-4.344881,-4.490304,-4.548107,-4.517969,-4.592432,-3.3502076,-2.9558883,-2.6697595,-3.006866,-2.1811297,-2.5217028,-3.1535597,-3.5783021,-3.8766892,-4.092927,-4.322894,-4.4407043,-4.5063086,-4.55011,-3.3815603,-2.9259753,-2.3191497,-1.9848603,-2.2592347,-2.1446195,-1.9796728,-2.5269794,-2.6849265,-3.179257,-1.824459,-2.0996222,-2.533564,-2.6254606,-1.9506689,-2.540878,-2.542116,-2.29077,-2.5325518,-2.4077442,-2.471809,-2.5013638,-2.7750793,-2.9643497,-2.7478256,-2.4553416,-2.0537987,-2.4782457,-2.736492,-2.5922422,-2.9478083,-3.248097,-3.2574456,-2.7413898,-1.8706361,-2.8272583,-2.371552,-2.7942014,-2.9475513,-3.2471108,-3.429132,-3.6282184,-3.8333454,-3.9868279,-4.1571665,-4.191614,-4.227047,-2.7415051,-1.3744482,-2.0312269,-2.5780425,-2.8994744,-2.8943639,-3.2080865,-2.054473,-2.8763173,-3.2122068,-3.0050893,-3.3931603,-3.3843002,-2.5640135,-2.894118,-3.2443304,-3.5302477,-3.7601132,-3.9428778,-4.05433,-4.0012164,-4.086261,-4.2420926,-4.346018,-4.4125443,-4.3573055,-3.6881466,-3.2817893,-3.8425217,-3.73426,-4.055878,-3.7895312,-3.4264722,-3.8641577,-4.128764,-4.3379955,-4.433796,-4.4287014,-4.484464,-3.6591883,-3.0834672,-1.4029588,-2.804034,-2.929895,-3.2361603,-3.0142083,-3.2365584,-2.410962,-2.8385835,-2.9460454,-3.3014472,-3.5640724,-3.7800756,-3.955435,-4.032832,-4.1760125,-4.141882,-4.167305,-4.2226114,-4.246563,-4.3117113,-4.1175666,-3.7930205,-3.8734922,-3.5835643,-3.9997187,-4.4137173,-4.5722427,-4.4378567,-3.4330778,-1.2977153,-2.008567,-2.615831,-3.1955104,-3.4308693,-3.3504748,-3.459066,-3.5468855,-3.6154692,-3.9429996,-4.038723,-4.1217036,-4.062621,-4.130691,-4.210784,-4.278128,-4.054949,-3.9941654,-4.260009,-4.3221054,-3.9867811,-3.0824068,-3.5349674,-3.9816718,-3.9608073,-4.093273,-4.261883,-2.9681368,-3.0738966,-3.6471548,-3.9043837,-4.2749367,-4.358022,-4.4717793,-4.3644075,-4.253068,-4.374298,-4.3867846,-4.5751476,-4.602733,-4.6863675,-4.4029236,-4.0420866,-3.0945535,-3.8133264,-3.8348668,-4.00144,-4.286292,-4.5467596,-4.4349775,-4.136462,-4.5731325,-4.720679,-4.667588,-4.6192646,-4.3759537,-3.6721048,-4.505344,-4.6270885,-4.6839733,-4.7189813,-4.7523704,-4.351662,-4.1831956,-4.4260883,-4.611499,-4.7646775,-4.828105,-4.7862606,-4.692247,-4.878566,-4.90454,-2.1928875,-2.5077856,-3.102217,-1.9995469,-2.7226644,-3.2423692,-2.7644374,-2.1920202,-3.1626182,-3.6273475,-3.9911547,-4.348413,-4.644971,-4.5544324,-4.735979,-4.8009024,-4.914104,-4.687399,-4.345008,-1.0993173,-2.6048636,-3.1259286,-3.5953867,-3.5358555,-3.8049445,-4.027145,-4.0452695,-4.1873636,-4.28411,-4.285844,-4.606921,-4.548483,-4.721671,-4.6772614,-4.6606703,-4.718832,-4.8659925,-4.8432693,-4.6468487,-4.7650433,-5.0030246,-5.0037584,-5.0708714,-4.843463,-4.828545,-4.994048,-4.9365706
+-3.5375142,-3.9314082,-4.4667206,-4.9094543,-5.002426,-4.897005,-4.8580265,-4.848074,-2.0470486,-3.592111,-4.1290274,-4.2687597,-3.8553252,-4.2595196,-4.4320035,-4.830096,-4.9319415,-4.5673294,-4.484129,-2.4726558,-2.668272,-3.715105,-1.9899603,-2.0373094,-3.233103,-3.86139,-4.4007463,-4.6449747,-4.8545055,-4.9711313,-4.987657,-4.503188,-4.2815824,-4.4401984,-4.7186174,-4.747696,-4.7540436,-3.9196596,-1.731332,-3.350219,-3.7816327,-3.8370547,-4.094597,-1.351011,-1.6427554,-2.1594653,-2.6228664,-2.747389,-2.853605,-3.2364712,-3.4777396,-3.6742444,-3.4810205,-4.141609,-4.34801,-4.2068706,-4.4495544,-4.548853,-4.287653,-2.9306626,-2.6569972,-2.2073956,-2.2628462,-3.1751003,-3.5757196,-3.754902,-4.177844,-4.4742975,-4.537618,-4.4179454,-3.0969343,-3.794805,-3.986042,-4.3069963,-4.4097843,-4.2933736,-3.1650035,-2.8011136,-3.7805572,-4.2853312,-4.346939,-4.3244047,-4.4456506,-4.6201487,-4.558434,-4.5582557,-3.8305445,-2.0355675,-2.2799096,-3.2326643,-3.6861846,-3.9679995,-2.8265586,-3.3453324,-3.897068,-4.1516833,-4.3677554,-4.460313,-4.5692434,-1.8839903,-2.2856796,-2.7357202,-3.374796,-3.790538,-4.046181,-4.289773,-4.477339,-4.478938,-4.12411,-4.447028,-4.405862,-4.485274,-4.532831,-4.4968095,-4.5478797,-4.5319743,-3.4476175,-2.2646246,-3.1912212,-2.0861607,-2.6361635,-3.062032,-3.6574225,-3.9762545,-4.221005,-4.409892,-4.49852,-4.517429,-4.4118385,-3.4807136,-4.0514784,-3.1262236,-2.1500838,-1.4541599,-2.4612231,-2.2151804,-1.8334123,-2.3887324,-2.687242,-2.6813517,-2.0771317,-2.4430084,-1.8100457,-2.352838,-2.4371855,-2.4701624,-2.4286413,-1.9073633,-2.7176766,-2.3469505,-1.9123651,-2.3591046,-2.4553843,-2.9634285,-2.0032792,-2.7340412,-3.0756903,-3.3924117,-2.1956298,-2.9060338,-3.3814511,-3.7132144,-2.580987,-2.1794355,-3.133286,-2.1363769,-2.87252,-3.2809107,-3.5741165,-3.84448,-4.012127,-4.2114453,-4.3456326,-4.5328245,-4.5226746,-4.544032,-1.7456386,-1.6139339,-1.6989149,-2.3677945,-2.6450472,-2.5769515,-2.9663134,-1.9107066,-2.657011,-2.9685314,-3.277608,-3.432568,-3.4101377,-3.3040864,-3.0457487,-3.4975836,-3.7725866,-4.054246,-4.261719,-4.3833456,-4.298873,-4.369585,-4.509845,-4.6902094,-4.7910156,-4.677993,-3.0400145,-2.0729692,-3.2673388,-3.1188493,-3.656071,-3.9154227,-4.1979814,-4.384104,-4.5298243,-4.7006407,-4.7678776,-4.745089,-4.8077097,-4.7567654,-4.4255,-1.5428787,-2.7174482,-2.6772258,-3.313198,-2.7329361,-2.944263,-2.6516104,-2.1197789,-2.9205675,-3.2580256,-3.6534202,-3.8643374,-4.174145,-4.334011,-4.523189,-4.26363,-4.482829,-4.52456,-4.5390186,-4.5530014,-4.529546,-4.534989,-4.5457544,-4.553567,-4.7425013,-4.803827,-4.9042487,-4.892035,-4.735713,-1.2956175,-1.8639756,-2.510271,-3.2628717,-3.4934468,-3.377915,-3.4597657,-3.5712004,-3.683727,-4.0914197,-4.229716,-4.391301,-4.419686,-4.426715,-4.5060053,-4.596413,-4.2866745,-4.2875824,-4.4707127,-4.5564785,-4.3917546,-4.543273,-4.556055,-4.7848167,-4.496424,-4.500909,-4.625011,-4.3542266,-4.404742,-4.457548,-4.6273746,-4.8098254,-4.861233,-4.85664,-4.816304,-4.4930987,-4.6122847,-4.7027836,-4.8208637,-4.8793364,-4.9659505,-4.778601,-4.60641,-4.6396527,-4.925748,-4.471642,-4.589484,-4.727713,-4.8549347,-4.758022,-4.8082643,-4.9243674,-4.9560814,-4.8498654,-4.845153,-4.8060794,-3.8818378,-4.623131,-4.698756,-4.7013855,-4.705982,-4.9376516,-4.685313,-4.55418,-4.6510878,-4.8418303,-4.935182,-5.0457335,-5.0442915,-4.941719,-5.089875,-5.0634975,-4.7210984,-4.7922273,-4.6852083,-2.3695498,-2.1441138,-3.6603076,-3.2312841,-3.6076117,-4.377969,-4.7603483,-4.91547,-5.0526686,-5.117907,-4.945589,-5.0750675,-5.099208,-5.1079993,-4.898961,-4.660152,-1.2442703,-2.5773482,-3.2423706,-3.8977904,-3.806088,-3.1103234,-3.8075554,-4.0112,-3.9857454,-4.3298044,-4.449341,-4.8557467,-4.792987,-4.966029,-4.8986297,-4.7987633,-4.88776,-5.053995,-5.0745993,-4.952469,-5.0889406,-5.1659703,-5.1830106,-5.1715555,-5.144259,-5.0881405,-5.1832285,-5.0994005
+-3.3735971,-3.625736,-3.8605564,-4.2093935,-4.373696,-4.3165607,-4.2763357,-4.405993,-4.0444965,-4.2756624,-4.2672024,-4.229316,-4.2208796,-3.9609365,-4.1117144,-4.536987,-4.5650463,-4.471248,-4.1703815,-2.9418335,-3.6367779,-1.1629851,-2.1465168,-2.1237671,-3.3641148,-3.9699163,-4.3155003,-4.459217,-4.585268,-4.6785464,-4.7075043,-4.4489946,-4.005845,-4.0662994,-4.1877956,-4.249588,-4.1816244,-4.1711135,-2.0094492,-3.2520013,-3.879005,-3.9209194,-2.8160806,-0.7362978,-1.604303,-1.7442025,-2.6882968,-2.973581,-3.2199376,-3.4705253,-3.6025095,-3.7154343,-3.579812,-3.917616,-4.0555673,-3.3766272,-3.9563744,-4.17844,-4.1082435,-4.0999603,-3.8909483,-2.6074743,-0.99597913,-2.6309147,-3.0797842,-3.4521692,-3.7471185,-4.0023475,-4.120151,-3.9583545,-3.6408179,-1.7465607,-2.5866013,-3.2586317,-3.6291401,-3.8430831,-3.966299,-2.2922196,-2.811828,-3.7706146,-3.822816,-2.744392,-3.2584658,-3.9404943,-4.046528,-4.0871964,-2.48798,-2.7346282,-2.9730132,-3.5707552,-3.691368,-1.1665964,-0.99751943,-1.6997652,-2.4872956,-2.507199,-3.1898901,-3.505353,-3.7470818,-3.5001829,-0.3672065,-1.8600684,-2.5359612,-2.8022304,-3.3325143,-3.7318058,-3.9391494,-3.9861689,-3.984785,-4.013821,-3.9823828,-4.0567923,-3.7731245,-2.7461157,-3.5150487,-3.9123526,-4.0092983,-2.4191368,-0.7422139,-1.126606,-1.4327897,-1.8678359,-2.5830197,-2.876764,-3.13698,-3.32257,-3.577867,-3.7034924,-2.6530876,-2.0367336,-2.2023642,-1.9678696,-0.92202705,-1.3022,-2.1344807,-1.6466581,-1.3801475,-1.7649745,-1.7638601,-2.2635703,-1.5388764,-2.1599085,-1.5520096,-2.1067505,-2.3327637,-2.7751045,-2.1263242,-1.1412411,-1.7526486,-1.9404243,-2.312252,-1.8043835,-2.075137,-2.6009345,-2.6062098,-2.8448153,-3.0776854,-2.6200485,-0.8947018,-2.1932807,-2.5814624,-3.1686718,-3.5482187,-3.5584848,-3.542644,-3.745183,-2.5314867,-2.9929452,-3.4280548,-3.5764492,-3.7628064,-3.8932858,-3.9714417,-4.1031604,-4.106205,-4.1253395,-0.51277107,-2.179484,-0.8282074,-1.4776033,-2.2005007,-2.3533907,-2.1154213,-1.423206,-2.3565545,-2.722404,-3.0790813,-3.3038886,-2.4851308,-2.8766923,-3.3466067,-3.5815353,-3.7489042,-3.8958726,-4.0168257,-4.0787215,-3.9753418,-4.019006,-4.127759,-4.2406616,-4.327336,-4.2457647,-2.0572665,-2.6109822,-3.1505783,-3.5044336,-3.7884681,-3.8532634,-3.9846377,-3.998858,-4.0730352,-4.169727,-4.2504487,-4.184044,-4.242631,-4.1841764,-4.115046,-4.0250244,-4.044191,-2.9442616,-3.4752972,-2.3341455,-2.8878202,-1.3074648,-2.2760406,-2.3481011,-1.9736713,-2.7104468,-3.1287248,-3.5782304,-3.8454318,-4.077784,-3.8912454,-3.9511852,-3.9520726,-4.07267,-4.081959,-3.9964666,-4.0384226,-4.019242,-4.042779,-4.1922197,-4.0124817,-4.177457,-4.1927,-4.1665535,-2.2390409,-0.8927048,-2.4073467,-3.0582933,-3.6020365,-3.758535,-3.4763439,-3.243749,-3.082899,-3.7520382,-4.0328274,-4.239343,-4.310581,-4.1586905,-4.257116,-4.3371515,-3.898796,-3.9340563,-3.9854083,-4.003378,-3.9537144,-4.0943394,-4.177123,-4.33344,-4.118495,-4.071845,-4.1907253,-3.9807868,-4.1590385,-3.9763527,-4.084352,-4.2816534,-4.4211044,-4.487719,-4.5279913,-4.165242,-4.1503186,-4.2413826,-4.444886,-4.5899754,-4.6848865,-4.6330643,-4.3206544,-4.3366213,-4.5042553,-4.3185606,-4.2262383,-4.1561327,-4.40227,-4.4162245,-4.345094,-4.465007,-4.5468006,-4.3570824,-4.392313,-4.397047,-3.7578995,-3.976925,-4.2981486,-4.305743,-4.343451,-4.451867,-4.303454,-4.177966,-4.2613564,-4.498011,-4.6688843,-4.694854,-4.677327,-4.5945306,-4.6864567,-4.694307,-4.435213,-4.5415697,-4.2722235,-3.284638,-2.3725655,-3.5444474,-3.8239334,-3.9188387,-4.2959814,-4.5126796,-4.6177044,-4.644826,-4.7029276,-4.524049,-4.7035413,-4.714883,-4.7491236,-4.562152,-4.396892,-1.0501583,-2.341543,-3.390241,-4.030279,-3.5671272,-0.82079005,-2.0613856,-2.5177288,-2.0589092,-2.6809797,-3.2369375,-3.832644,-4.010096,-4.1637545,-4.2334676,-4.1303225,-4.2307453,-4.4563484,-4.5272646,-4.517711,-4.6074963,-4.802388,-4.7649593,-4.823351,-4.7793493,-4.7810135,-4.785142,-4.7939034
+-1.2797754,-1.1423628,-1.7542928,-1.646624,-1.5233524,-1.3196664,-0.960921,-0.8861753,-0.8667647,-0.8646526,-0.96636134,-0.8074989,-0.4148737,-0.2678118,-0.2802564,-1.580874,-1.9415513,-1.6106728,-1.4598469,-1.415843,-1.5609322,-1.5719385,-1.589389,-1.7498018,-1.556937,-1.6400505,-1.8257084,-1.7681652,-1.7566229,-1.7567167,-1.7859756,-1.8261205,-1.8524595,-1.9036068,-2.023199,-2.1817153,-2.218075,-2.3109598,-2.229238,-2.0459952,-2.345739,-2.47675,-2.5738726,-2.204922,-2.1611328,-2.1253798,-2.159764,-2.1490197,-2.051879,-2.1103525,-2.0662146,-1.9766542,-1.8990706,-1.9539547,-1.6223918,-0.21815398,-0.55780476,-1.5132746,-1.5797281,-1.8261951,-0.5439474,-1.2976177,-1.7255801,-1.4924725,-1.6105781,-1.7195171,-1.7425203,-1.783079,-1.7370218,-1.6371511,-1.4261005,-1.8903517,-0.46611145,-1.2766144,-1.6273198,-1.6520413,-1.7069803,-1.8535764,-1.9162639,-0.2660002,-1.1184341,-1.5111002,-0.25008857,-1.2451018,-1.7275139,-0.8306142,-1.3554713,-1.4966964,-1.6207684,-1.7734352,-1.7338917,-1.8833117,-1.7105395,-0.57064605,-1.2603203,-1.457124,-1.6728591,-0.73505324,-1.4302486,-1.4229636,-1.5951511,-1.165185,-1.383667,-1.1119946,-1.5109247,-1.7250576,-1.7255296,-1.7365674,-1.7790918,-1.7806762,-1.5058981,-1.8081267,-1.910631,-0.12136811,-1.1105703,-1.475051,-1.6254514,-1.710105,-1.7722925,-1.8239994,-1.9046087,-1.8466555,-1.3817842,-1.8407341,-2.0292788,-1.7373768,-1.9754978,-2.129662,-2.0997248,-1.9538846,-2.0707693,-2.1584187,-2.094325,-2.1550112,-2.1223412,-2.2336984,-2.0177455,-2.1873188,-2.3838587,-1.8835623,-2.357093,-2.3616319,-2.561986,-2.6171346,-2.4565387,-2.3437471,-2.1038337,-2.6113207,-2.4994087,-2.664734,-2.5622149,-2.853811,-2.7869625,-2.8625925,-2.8939989,-2.9068751,-3.142705,-2.5340567,-2.5648818,-2.0253901,-2.0535839,-2.2452214,-2.6441565,-2.807524,-2.7329502,-2.7083511,-2.6630282,-2.8291874,-2.7897975,-2.936451,-2.6718602,-2.6069486,-2.8855615,-2.807045,-2.8449342,-1.6520184,-2.0510688,-1.552694,-2.2548168,-2.6779037,-2.825924,-2.843603,-2.990865,-2.9559767,-2.569302,-1.5739579,-1.1442765,-2.3470464,-2.384441,-2.5141354,-2.6827166,-2.9376304,-2.797873,-2.8631592,-2.6746545,-2.5944388,-2.9359026,-2.7883606,-2.1115823,-2.62722,-2.6698077,-2.8123274,-2.9019966,-2.8555012,-2.7804618,-1.7402792,-2.477618,-2.9155984,-2.5653553,-2.7306666,-2.9293652,-2.978744,-2.973667,-1.5189956,-2.2517958,-2.6220708,-2.8973708,-3.070243,-3.1943235,-3.2790775,-3.2823539,-3.375712,-3.4980059,-3.3635278,-3.440774,-3.6107097,-3.7275548,-3.7254853,-3.6004677,-3.389554,-3.4270134,-3.4931605,-3.5236685,-3.4660225,-3.4191828,-3.2977684,-3.3712258,-3.2504265,-3.1930385,-3.233948,-3.2053804,-2.8888392,-2.8034801,-2.6344266,-2.6395197,-2.6095662,-2.526134,-2.518162,-2.5369184,-2.1755235,-2.189626,-2.378455,-2.6029053,-2.7784984,-2.61243,-2.4768195,-2.4898012,-2.6585171,-2.8193498,-2.7774649,-2.8307605,-2.8598285,-2.5992286,-2.3554852,-2.6174927,-2.594258,-2.6432376,-2.6841002,-2.52117,-1.6818727,-1.9720756,-2.067108,-2.0821939,-2.0994277,-2.1209025,-2.2710981,-2.285057,-2.0915334,-2.0706298,-2.0929422,-2.1628642,-2.2679653,-2.1219618,-1.93673,-1.763249,-1.8295714,-1.8634722,-1.9026186,-1.9509194,-2.0027137,-2.002201,-1.9728881,-1.8299881,-1.752705,-1.8792616,-1.8566628,-1.872453,-1.7989194,-1.9175776,-2.0088272,-2.087449,-2.1500933,-2.1356418,-2.0742154,-1.5833913,-1.4937533,-1.9200644,-2.0214376,-2.0232084,-1.895594,-1.7302346,-1.5994247,-1.5799156,-1.6171579,-1.6288484,-1.4283578,-1.4864583,-1.4785,-1.5716357,-1.6545911,-1.7316717,-1.6201528,-1.4621342,-1.5953633,-1.6963178,-1.6841403,-1.6672794,-1.7395183,-1.6783077,-1.7969967,-1.8959435,-2.0302405,-1.947706,-1.9378289,-1.8341933,-1.8319741,-1.9426166,-1.7389963,-1.5243556,-1.4589974,-1.300517,-1.2929131,-1.5707238,-1.7780201,-1.6925651,-1.5495743,-1.6877106,-1.6783262,-1.6040653,-1.4915365,-1.2819028,-1.5492934,-1.1982154,-1.1107153,-1.5849487,-1.6801407,-1.3922465,-1.4024719,-1.3158622,-0.82082665,-0.9776246,-1.1739041,-1.17813,-0.64761174,-0.39591762
+-1.0881166,-0.7120434,-0.6806356,-1.1816248,-1.7705036,-2.2025185,-2.0438118,-2.0101397,-2.1577733,-2.2675014,-2.390976,-2.415943,-2.2809649,-2.3189757,-1.3984894,-0.9042969,-1.7351671,-2.0730033,-2.0426362,-1.9320421,-1.9866697,-2.002161,-2.058924,-0.81766325,-1.1020325,-1.9665293,-2.0120087,-2.0584767,-2.076912,-2.0638556,-2.2189322,-2.3282952,-2.3663497,-2.48952,-2.7720828,-2.8808708,-2.78484,-2.8868532,-2.7376854,-1.842444,-2.5443254,-2.2748563,-2.4700541,-2.492618,-2.5224302,-2.5278296,-2.5953403,-2.7572474,-2.749753,-2.679709,-2.6436665,-2.7598968,-1.9162287,-2.3777645,-1.6766813,-1.6690382,-1.6552149,-2.1394396,-2.0655897,-1.9620117,-0.9651815,-1.4212989,-1.9303054,-1.5493081,-1.9331199,-2.2252986,-2.3341303,-2.3151238,-2.4976063,-2.6264067,-0.2572722,-1.1990553,-1.1006384,-1.7146446,-1.839019,-1.966961,-2.1773837,-1.5811745,-2.1984158,-1.1754963,-1.9975673,-2.171525,-0.65730226,-1.6083168,-2.014215,-1.2787051,-1.928966,-2.117367,-2.3412464,-2.539604,-2.4185338,-2.4109912,-1.2624274,-1.9328357,-2.1714787,-1.3770807,-1.8461908,-1.7114959,-2.195683,-2.421605,-2.219063,-0.52092445,-1.4688705,-0.9755742,-1.6497592,-1.9997281,-0.034320984,-1.0771204,-1.6736712,-1.9092935,-2.1583214,-2.2568562,-2.421568,-0.28354558,-1.4453814,-1.8654677,-1.959569,-1.7461232,-2.0512319,-2.2202759,-1.8812977,-2.2531753,-2.1809578,-2.580556,-2.8296347,-3.00877,-3.047183,-3.064076,-3.1166487,-3.1684256,-3.1688824,-2.1792045,-1.9090992,-2.1687193,-2.1909864,-2.7011285,-2.892546,-3.090131,-3.2130275,-0.33668563,-2.0363224,-2.258637,-2.508137,-2.8164854,-3.045024,-3.0087545,-2.630042,-3.126627,-2.9840252,-3.3467016,-3.4740963,-3.6752443,-2.5677817,-2.9520726,-3.1619344,-3.3306942,-1.6329514,-2.3327937,-2.710691,-1.4876754,-2.3967764,-2.5817366,-2.8987813,-3.088199,-2.8561964,-2.9660363,-3.1338184,-1.7105955,-1.0727586,-2.5144265,-2.821474,-3.0102243,-3.408585,-2.3813405,-2.937147,-1.8291198,-1.9633478,-1.7349923,-2.5691013,-3.0432746,-3.1854725,-3.2277193,-3.3881435,-3.452146,-3.4615686,-1.6565572,-1.8601456,-2.6115654,-2.9528444,-3.0653567,-3.2828383,-3.3441403,-3.441647,-2.7926278,-3.04535,-2.9845543,-3.3348012,-3.3539517,-3.5466766,-3.492357,-3.4979422,-3.409427,-3.5482187,-3.5645123,-3.7205186,-3.6047232,-3.5381706,-3.6903114,-3.3714375,-3.5339003,-3.561139,-3.3961177,-3.538567,-2.8347178,-3.0194633,-3.3549123,-3.5826902,-3.6610155,-3.736902,-3.783747,-3.6949348,-3.7654881,-3.9094863,-3.7667725,-3.6502037,-4.0108595,-3.996212,-3.9239006,-3.9710221,-3.9383216,-3.6851451,-3.7313223,-3.8470511,-3.7298594,-3.7152052,-3.6980326,-3.7399445,-3.708674,-3.6531992,-3.6331255,-3.5722709,-2.1050034,-2.1186137,-1.8646992,-1.9629308,-1.9762384,-1.9850522,-1.9905671,-2.1215518,-1.590846,-1.7714361,-1.8182178,-1.6799089,-1.675407,-1.5788829,-1.6162518,-1.6702161,-1.7182227,-1.7526118,-1.6932743,-1.7611026,-1.764412,-1.7072141,-1.6584803,-1.7235487,-1.8321009,-2.0644934,-2.1310039,-1.9672977,-1.6066929,-1.6890662,-1.7300006,-1.8747569,-1.9232951,-2.0087245,-2.0548475,-1.6087741,-1.6151764,-1.6402463,-1.6486058,-1.6556581,-1.75626,-1.70124,-1.6494536,-1.6514443,-1.7206622,-1.7518222,-1.7579408,-1.7755605,-1.7689785,-1.7839499,-1.8097438,-1.6620489,-1.7109451,-1.8329864,-1.9244777,-1.9129452,-1.9735132,-1.9533957,-1.9436259,-1.9157842,-1.9784197,-2.000442,-1.8612303,-1.7334515,-1.6771017,-2.0322647,-2.0869973,-2.1021624,-2.0015988,-1.9838187,-1.9523059,-1.9887956,-2.020041,-2.0326555,-1.6693658,-1.8048865,-1.8724053,-1.8645523,-1.8794912,-1.8156856,-1.6239525,-1.4341878,-1.5512153,-1.5062668,-1.364061,-1.2831098,-1.2579755,-1.4052773,-1.4692078,-1.5620158,-1.6707039,-1.6891853,-1.5045947,-1.5480136,-1.5490451,-1.6252924,-1.5301328,-1.3817344,-1.4138886,-1.5257379,-1.5377005,-1.5523204,-1.719252,-1.749863,-1.6709186,-1.5165192,-1.4584229,-1.5040219,-1.2418907,-0.97262985,-1.3384006,-0.6783728,-0.8609806,-1.3742232,-1.3926693,-0.82579356,-1.0301211,-0.72117084,-0.37982008,-0.38041285,-0.4520143,-0.4263811,-0.5233763,-1.4223424
+-1.3480824,-1.6055062,-2.1027892,-2.2925348,-2.4482179,-2.7138324,-2.9029908,-3.039714,-2.8935337,-3.2324243,-3.3026948,-3.0739667,-3.0791602,-3.031039,-2.5341675,-2.2131796,-3.063975,-3.0352197,-2.6796517,-2.8727152,-2.9994075,-2.916943,-2.848321,-2.8076482,-2.2033234,-2.758158,-2.5304058,-2.7850327,-2.8541052,-2.8365846,-2.8998098,-2.9619467,-2.81809,-2.965085,-3.0069437,-3.1518557,-3.3416886,-3.3494835,-3.108643,-2.4301212,-3.0546443,-2.7724395,-2.6486247,-2.9976118,-3.032045,-3.079033,-3.1607008,-3.1678863,-3.1003683,-3.080872,-3.055528,-3.1039848,-2.5337148,-2.823173,-2.550281,-2.590578,-2.9471693,-2.3364952,-2.4769926,-2.693871,-2.4254155,-2.483833,-2.73491,-2.517273,-2.4365473,-2.7177691,-3.0516772,-3.068671,-3.221735,-3.4334655,-3.09586,-3.2371802,-3.5002465,-3.6039307,-1.7711388,-2.6951823,-3.0128083,-1.5766319,-2.306119,-2.659605,-2.7684846,-3.063075,-2.279479,-2.8018546,-2.9280982,-3.1511571,-3.2299972,-3.5797555,-3.6120472,-2.5939667,-3.2034168,-3.2249036,-3.2931967,-3.5545979,-2.5475035,-3.2389536,-2.8999963,-1.5381199,-2.6073718,-2.2852983,-2.4452095,-1.6700368,-2.079433,-2.547594,-2.561782,-2.6049578,-2.4992263,-2.5823247,-2.870603,-2.990759,-3.3137386,-2.6525047,-2.8127248,-1.1959742,-2.2508645,-2.6482873,-2.1220388,-2.2850409,-2.6725976,-2.6324875,-2.293726,-2.5414407,-2.867765,-3.0510669,-3.1674817,-2.1458092,-2.9201605,-3.3600283,-3.4898586,-3.5462441,-3.8623397,-0.69444263,-2.2261043,-2.6665502,-2.6660485,-3.0012488,-3.194866,-3.247088,-3.5378199,-3.6817095,-2.0138154,-2.6384993,-3.050928,-3.2644415,-3.4497247,-3.5246096,-3.5296786,-3.8313456,-3.7812166,-4.0200377,-4.2584114,-4.307866,-4.1838827,-4.1321774,-3.9738631,-4.0300474,-2.7939239,-2.920216,-3.4036846,-1.2912009,-2.7782493,-3.104165,-3.1337333,-3.3402104,-3.534754,-3.4766297,-3.4417796,-2.8817508,-2.6865854,-3.0554705,-3.2938948,-3.4838047,-3.0341058,-3.337374,-3.725959,-2.4127622,-3.104854,-3.1100938,-3.46408,-3.7375903,-3.830337,-3.8086693,-3.898697,-3.963995,-3.8089414,-2.7037654,-2.5609798,-3.2817862,-3.4689636,-3.6566868,-3.7263758,-3.770341,-3.840925,-3.9257765,-3.8071268,-4.0355797,-4.085155,-4.1731253,-4.1990986,-3.4823081,-3.574751,-3.8949938,-4.033865,-4.1494827,-4.277935,-4.2671814,-4.090253,-4.083887,-4.2059593,-4.2301974,-4.426369,-4.1763115,-4.1029186,-4.220102,-4.3497386,-4.4627886,-4.488684,-4.547574,-4.497017,-4.342037,-4.427041,-4.506154,-4.418772,-4.5502663,-4.6046133,-4.505204,-4.588978,-4.6418877,-4.6747103,-4.624707,-4.385131,-4.4349837,-4.477322,-4.282008,-4.2275867,-4.152807,-4.319519,-3.8982978,-4.1479683,-4.206088,-4.158499,-1.7144035,-2.742269,-2.528665,-2.6503458,-3.0556383,-2.8979533,-2.9378192,-2.945962,-3.0399854,-3.2104504,-3.2183077,-3.2890215,-3.0875733,-2.8883824,-2.8769417,-3.0324833,-3.2478626,-3.1128979,-3.0069456,-3.0706177,-3.0533674,-3.106812,-2.9175348,-2.9482262,-3.2415528,-3.4813957,-3.5657845,-3.41462,-3.1283245,-3.1954224,-3.1230206,-3.3452673,-3.151876,-3.4073231,-3.543432,-3.1163287,-3.2009225,-3.1190214,-3.1690822,-3.1449637,-3.3142526,-3.2340426,-3.0760846,-3.0786448,-3.091219,-3.196399,-3.091796,-3.2394056,-3.2953086,-3.3527155,-3.322383,-2.889368,-3.003955,-3.016262,-3.0922189,-3.2961779,-3.376175,-3.3043106,-3.1466026,-3.2358704,-3.3537886,-3.1538968,-2.9474921,-2.9429798,-3.1828084,-3.4661283,-3.629461,-3.668226,-3.5980837,-3.5401464,-3.4851909,-3.4846897,-3.5426953,-3.5399375,-2.7724555,-2.8076515,-3.3710198,-3.421998,-3.4031315,-3.3155167,-2.9165757,-2.6763463,-2.82295,-2.7106822,-2.363062,-2.4486914,-2.265653,-2.476414,-2.768702,-2.6013265,-2.5985756,-2.6223295,-2.7900252,-2.6483953,-2.7170064,-2.6012063,-2.571495,-2.3403296,-2.1409125,-2.6383061,-2.9397519,-2.9786491,-3.0082493,-2.918502,-2.8332767,-2.7214816,-2.2956452,-2.1882572,-1.7538176,-1.6951826,-2.0730505,-1.9272248,-1.895409,-2.5858717,-2.6962614,-2.4292378,-2.635747,-2.4841757,-2.370635,-2.5866013,-2.737259,-2.839245,-2.857667,-2.9269042
+-0.8331227,-0.93556315,-1.4011201,-1.4706286,-1.973771,-2.2973719,-2.6076326,-2.6017208,-2.2424302,-2.6477075,-2.5802035,-2.4582572,-2.873479,-2.6602263,-1.078975,-0.56673837,-0.9120477,-0.59467214,-0.74605536,-1.5235852,-2.1591496,-2.116842,-2.2518945,-2.4035528,-2.3588314,-2.058754,-1.3785405,-1.694448,-1.7810283,-2.2230885,-2.290289,-2.4381146,-2.606378,-2.8393135,-2.9379168,-3.1644223,-3.216939,-3.0760188,-1.1669824,-1.8673786,-2.452405,-2.5231705,-2.3501232,-2.5934756,-2.6904712,-2.9190114,-3.0938675,-3.0807667,-3.0543303,-2.892027,-2.8369584,-2.9231644,-1.8381577,-2.7870998,-0.50343907,-1.7895585,-2.2479317,-2.2775762,-1.8716183,-1.7274792,-1.8913356,-2.309808,-2.831789,-1.1953267,-2.323162,-2.762109,-3.179341,-3.1058812,-3.165075,-3.3562765,-0.53553325,-2.0214152,-2.4356487,-2.5875776,-0.86156285,-1.8608804,-2.330934,-2.5743594,-0.3331533,-2.0835476,-2.5518208,-2.6769044,-1.834634,-2.5336268,-2.8221416,-3.2592309,-3.5542572,-3.6816869,-3.451695,-2.1465151,-1.2697543,-2.356644,-2.4104497,-2.882072,-3.2080579,-1.8062636,-1.4039971,-1.1785085,-2.1889932,-2.4710064,-2.944479,-2.2294827,-2.9304163,-3.5603747,-3.6221437,-1.6429116,-1.3649827,-1.4732367,-2.4480171,-2.872139,-3.0815187,-3.1145422,-3.1848183,-2.1660006,-2.436826,-3.1077933,-3.1578393,-1.5189047,-0.95995885,-1.4281102,-2.131098,-1.5715929,-1.8308879,-2.4392781,-1.3883709,-1.6214892,-2.7277975,-3.074544,-3.2165926,-3.4057367,-1.465502,-1.9743038,-1.6318406,-1.5409757,-2.5362563,-3.0088332,-0.8887217,-1.4902338,-2.4337182,-2.6862602,-1.8484175,-2.6186166,-3.0100837,-3.261598,-3.5482416,-3.813888,-3.8797011,-1.3040961,-2.0348268,-2.7322562,-3.0259175,-3.2887297,-3.5046873,-3.7069817,-3.7459054,-3.7248254,-3.5481653,-1.2776376,-1.6528162,-2.1808083,-2.7562037,-2.7009792,-2.991735,-3.3232698,-3.5873942,-3.3818119,-3.2718735,-2.5928493,-2.426894,-3.1196167,-3.4633055,-3.5887227,-2.938959,-3.265751,-3.2259364,-1.6366278,-2.4382513,-2.8609693,-3.4193697,-3.6187015,-3.64263,-3.5081365,-3.451553,-3.5181255,-3.5501614,-3.1416998,-0.84037995,-2.4990344,-3.0187964,-3.2128463,-3.156856,-3.1755662,-3.3608913,-3.5037904,-3.4643228,-3.3660192,-3.6942883,-3.7713175,-3.7273438,-3.6795778,-2.5474107,-2.749307,-2.1109967,-2.9346442,-3.3784983,-3.7031934,-3.337018,-3.1676383,-3.5917988,-3.6278162,-3.7639835,-1.8857449,-2.6611655,-3.1079612,-3.2871807,-3.5127063,-3.569237,-3.699383,-3.775558,-3.6832275,-3.8078303,-3.82511,-3.6648636,-3.916316,-3.7162411,-3.4368918,-3.8561568,-3.7298121,-3.7441342,-3.701489,-3.1348283,-2.9569955,-3.006507,-2.8992462,-2.8816824,-3.1664352,-3.1595087,-3.0273805,-3.1023126,-3.1352897,-2.8545241,-2.7586727,-3.0887678,-2.4561813,-2.8217676,-2.7034607,-2.593437,-2.8129034,-2.76701,-3.2887037,-3.496359,-3.479052,-3.4365869,-3.2758265,-3.3188279,-3.4150743,-3.4370446,-3.5916276,-3.4253318,-3.002449,-3.1245513,-2.8654454,-2.83428,-2.4584649,-2.5387092,-2.8607652,-2.8513112,-2.9990354,-2.6143508,-2.4540079,-2.6979995,-2.504807,-2.8156047,-2.6106975,-2.8073738,-2.906214,-2.792634,-3.0994325,-3.1329684,-3.0359073,-3.0499482,-3.0141988,-2.9639144,-2.8928423,-2.8888597,-2.851296,-2.9600348,-2.970365,-3.034254,-3.1062424,-3.148569,-3.0893726,-2.6632867,-2.8139186,-2.809505,-2.7815485,-2.992948,-2.8895981,-2.7213876,-2.7449222,-2.8592706,-2.8046608,-2.5499387,-2.4163017,-2.4125094,-2.4276514,-2.6625328,-2.8784714,-2.881325,-2.7679768,-2.8529317,-2.8903096,-2.930942,-2.9187312,-2.8296618,-2.2363594,-2.2204547,-2.4506226,-2.4144897,-2.463074,-2.2741702,-2.153554,-2.1778064,-2.0461314,-1.9472331,-2.2439892,-2.3931406,-2.7327018,-2.667432,-2.8906114,-2.8037245,-2.6802402,-2.4853802,-2.4277515,-2.6248116,-2.700706,-2.413447,-2.368105,-2.635893,-2.8298764,-2.8394265,-3.0184903,-2.708819,-3.003756,-2.8797376,-2.8485975,-3.0410817,-2.6251073,-2.491031,-2.2135146,-2.2722054,-2.2410777,-2.4930441,-2.6635835,-2.4146886,-2.1716573,-2.420144,-2.714819,-2.5109105,-2.3659322,-2.5940218,-2.335728,-2.4004498,-2.1931639,-2.4143672
+-1.1314155,-1.2931539,-1.522075,-1.7690462,-2.09904,-2.30718,-2.4061413,-2.4188807,-2.4610116,-2.6910875,-2.7067513,-2.6171598,-2.7089515,-2.6417499,-2.1347952,-1.3205532,-2.0798562,-2.508771,-2.5467126,-2.726513,-2.7133849,-2.8873818,-2.8058896,-2.982592,-2.7814472,-2.1808305,-2.3348608,-2.5182543,-2.5791616,-2.3421638,-2.6716886,-2.8048031,-2.8630874,-2.8799188,-3.021991,-3.0009503,-2.4854267,-2.4651852,-2.527368,-2.9139233,-2.8674667,-2.8232193,-2.8987408,-2.7414525,-2.7107234,-2.5833216,-2.9082837,-2.921464,-2.6658225,-2.5198183,-2.3862178,-1.5281943,-1.7719445,-2.6296062,-2.3247461,-2.7075725,-2.5014992,-2.2742982,-2.600127,-2.257399,-2.471015,-2.4179087,-2.40114,-2.3031282,-2.5166488,-2.8118114,-2.9926295,-2.973933,-2.9007723,-3.0558143,-3.1893125,-3.2495008,-2.7969902,-2.4641085,-0.63949716,-2.1903691,-2.167328,-2.2029896,-2.1351554,-2.3142607,-2.6708694,-2.7178805,-2.4736967,-2.8918357,-2.9510887,-3.1883583,-3.5979748,-3.0038586,-3.0445511,-1.1608245,-1.5717902,-2.3164263,-2.4265766,-2.4740252,-2.015601,-2.389494,-2.0534143,-2.046486,-2.445963,-2.4247108,-2.6582432,-2.7094126,-3.2963219,-3.648969,-3.6039648,-0.57077223,-2.0262272,-1.544522,-2.2311692,-2.1189861,-2.5278258,-2.787663,-3.107862,-2.8174636,-3.3093195,-3.2340162,-1.768999,-0.9583037,-2.1624894,-2.2607508,-2.324121,-1.7884575,-2.181391,-2.2652836,-2.5995853,-2.8573954,-3.2798042,-1.7790369,-1.7960027,-2.3918872,-1.2241555,-2.165821,-0.7921949,-1.8495165,-2.5293837,-2.6503685,-2.220581,-2.563232,-2.8314047,-3.0085652,-1.1592547,-2.0413563,-2.9052901,-2.7707193,-3.0943623,-3.3400035,-3.4055758,-1.2807332,-2.2643557,-2.669989,-2.9421554,-3.0793722,-2.5499358,-3.014547,-3.2784796,-3.2833824,-1.9582849,-1.3941239,-2.0899339,-2.5664797,-2.9528646,-2.7112982,-2.943554,-3.2805283,-3.4352915,-3.3560195,-2.95734,-2.22267,-2.6665716,-3.1523533,-3.398531,-3.649926,-3.6729863,-3.5185013,-3.144043,-2.3254895,-2.2783246,-2.5743961,-3.1159186,-3.4465346,-3.728144,-3.6555445,-3.609974,-3.695263,-3.7113574,-3.540187,-0.9202615,-2.57831,-2.1515996,-2.9235988,-3.3448777,-3.3466716,-3.3548822,-3.2715888,-3.1675582,-3.4531012,-3.4992697,-3.687366,-3.6022398,-3.7544045,-3.4650323,-2.4703717,-2.157426,-3.2450006,-3.5469258,-3.6060102,-3.541385,-3.4084282,-3.631937,-3.7390766,-3.930789,-2.641264,-2.9440713,-3.2580397,-3.7080073,-3.493266,-3.8405104,-3.989644,-3.9185572,-3.707727,-3.863559,-4.12263,-3.98833,-4.130986,-4.1478376,-3.9937835,-4.2211823,-4.179988,-4.1754656,-4.196497,-2.4032674,-2.6241112,-3.2427168,-3.149046,-3.0811179,-3.2601223,-3.3463566,-3.1899116,-3.3369784,-3.4727497,-3.4974387,-3.3073578,-3.3781927,-2.8028138,-3.1123958,-3.1999466,-3.0274906,-3.2065296,-3.1323593,-3.6803253,-3.9596038,-4.0083222,-4.083011,-3.607926,-3.642986,-3.8446612,-3.933383,-4.14422,-3.6118178,-3.3082352,-3.5585372,-3.8455515,-3.7713375,-3.154717,-2.975058,-3.4910905,-3.2194023,-3.5677652,-2.125546,-2.570355,-2.8173208,-2.5914538,-2.930274,-2.6545582,-2.7308178,-3.0995793,-3.2419453,-3.4146216,-3.5407925,-3.473908,-3.8198566,-3.8460343,-3.701859,-3.4265537,-3.3634043,-3.719109,-3.6944182,-3.4088984,-3.531208,-3.4598453,-3.4036047,-3.568337,-3.1316967,-3.166981,-3.177215,-2.860837,-3.3194637,-3.184302,-2.4656398,-2.5015702,-2.3033023,-2.1280422,-1.7301575,-1.4944221,-1.4215764,-1.5469801,-1.6956142,-1.9192032,-2.069357,-1.8028418,-2.109557,-1.7112542,-2.1651807,-2.03185,-1.8616514,-1.0202852,-1.374265,-1.3695107,-1.4055568,-1.4238225,-1.2779621,-1.4654814,-1.8662392,-2.2527575,-2.4123392,-2.1560297,-2.5889864,-2.4917579,-2.0542865,-2.3976274,-2.4663782,-2.660334,-2.7866802,-2.5165622,-2.7330418,-2.703824,-2.6238706,-2.745741,-2.851159,-2.666936,-2.896503,-2.9120927,-3.1281514,-3.197682,-2.9075346,-2.8875465,-3.2210236,-2.9826188,-2.4732957,-2.4257479,-2.7591522,-2.6842496,-2.7557921,-2.8462892,-2.5000095,-2.7616425,-2.7410703,-2.8840294,-2.9090114,-2.8860075,-2.8861625,-2.0437217,-2.8724222,-3.0820627,-2.9356773
+-1.7389516,-2.1093948,-2.6419094,-2.8678372,-3.1121354,-3.1571069,-3.370376,-3.3562834,-3.1195974,-3.392106,-2.668349,-3.0418122,-3.422688,-3.391377,-3.247641,-0.8687353,-1.5613106,-3.0139632,-3.4859283,-2.867558,-3.4496937,-3.5360243,-3.5490625,-3.608522,-3.6107802,-2.261547,-2.4098303,-3.4059887,-3.318728,-1.8270578,-2.904207,-3.4820385,-3.2199166,-3.696103,-3.685925,-3.6921957,-3.490588,-1.7564646,-3.235047,-2.804725,-3.1837668,-3.5296993,-3.7983735,-3.4631262,-3.5994968,-3.2641056,-3.3763175,-3.6192143,-3.4637542,-3.4064736,-3.3595273,-3.3251953,-2.1205785,-3.3023138,-1.9798383,-3.230675,-2.1982243,-3.2357159,-2.8668058,-2.9502056,-2.838836,-3.2728114,-3.4040856,-3.6294298,-3.717517,-3.8619213,-3.8972354,-3.683364,-3.6692536,-2.983603,-3.4745784,-3.6662455,-1.6169654,-2.3369617,-1.8121073,-3.2506475,-3.3188767,-3.023937,-1.9471143,-3.0671315,-3.2962205,-3.4895072,-3.70344,-3.6321793,-3.5362082,-3.6576843,-3.7145395,-1.2330894,-2.9362717,-2.110777,-2.5455852,-3.0095196,-2.8126085,-3.1572175,-3.3735356,-3.7505429,-3.3023953,-1.6955192,-3.0766299,-3.28621,-3.5576544,-3.6025162,-3.7280755,-3.768564,-3.7664282,-1.4436312,-2.9355872,-3.275841,-3.415432,-1.4105644,-3.1212478,-3.511002,-2.6330404,-2.0284617,-3.2984667,-3.4111433,-3.5718074,-1.918985,-2.3975089,-3.1913133,-3.3147855,-3.011242,-3.0073586,-3.2743332,-3.5870695,-3.6460528,-3.8680527,-3.297964,-2.902071,-2.9894977,-3.4047105,-3.637648,-3.4422834,-1.6271412,-3.3358107,-3.449688,-3.6062841,-3.0207138,-3.468422,-3.724277,-1.929086,-2.7166004,-3.4687972,-3.5880303,-3.710575,-3.865145,-3.9342484,-2.0778136,-3.142861,-3.5034113,-3.6355376,-3.6409678,-3.6326213,-3.7171621,-3.7413888,-3.672106,-3.6219006,-1.8768387,-2.5833693,-2.895257,-3.4447987,-3.5733466,-3.7626777,-3.825953,-3.9583707,-3.7542744,-3.6892076,-2.3720775,-3.0422277,-3.633779,-3.5461657,-3.8836536,-3.8642464,-3.8928819,-3.6490233,-3.7729878,-2.7036517,-3.4533527,-3.8133636,-3.9823165,-3.9609365,-3.917234,-3.847962,-3.8110003,-3.8424854,-3.8370667,-0.6207286,-3.711771,-2.4460468,-3.5455637,-3.834806,-3.7871146,-3.7837927,-4.0194483,-3.1519284,-3.591331,-3.8939264,-4.0045624,-3.9514484,-4.1174846,-4.1005783,-2.445342,-2.8816934,-3.7155929,-3.918356,-4.0636845,-3.8460712,-4.0043106,-4.136437,-4.097595,-4.154141,-4.115734,-3.961882,-4.061204,-4.1527085,-4.110256,-4.12401,-4.1637163,-4.076645,-3.9304485,-3.9898014,-4.037039,-3.968295,-4.1793985,-4.0130067,-3.8271837,-4.165777,-4.1741443,-4.1894517,-4.130188,-3.9651551,-2.2254114,-3.2639608,-2.952888,-2.8777888,-3.0647578,-3.2591605,-3.318844,-3.2941954,-3.298282,-3.1449857,-3.1403372,-3.1286564,-3.1140707,-3.2467227,-3.398454,-3.2116377,-3.1816883,-3.1041355,-3.4740746,-3.4972227,-3.7391422,-3.6028678,-3.1774113,-2.8731236,-3.2509723,-3.467472,-3.552295,-3.1928902,-3.0653472,-3.409478,-3.6953433,-3.472874,-2.570056,-2.5228384,-2.9673433,-2.557581,-2.9173012,-1.294412,-2.1954343,-2.3268785,-2.0658445,-2.5491462,-2.30892,-2.2202334,-2.6107776,-2.809442,-2.9882689,-2.6571712,-2.920391,-3.3086329,-3.2754307,-2.9530044,-2.3178751,-2.076053,-2.6748264,-3.1112318,-2.6018867,-2.442996,-2.0554285,-1.3683554,-2.315815,-2.2454033,-2.1629248,-2.1387506,-1.9150714,-2.4379797,-2.3086905,-2.1066494,-2.387681,-2.5222898,-2.4937353,-2.1798873,-2.0660803,-2.0843534,-1.9270877,-2.2498093,-2.8630407,-2.7365594,-2.3089724,-2.1710489,-2.056584,-2.4886851,-2.9731932,-2.634964,-2.3971848,-2.2682192,-2.747323,-2.879126,-3.0373297,-2.8452034,-2.8438282,-3.1547284,-3.2264376,-3.4147835,-3.6846447,-3.5775733,-3.8886602,-2.5677097,-2.5807502,-3.0134444,-3.1121747,-3.1249619,-2.9118543,-2.972393,-2.8499656,-2.5886095,-2.504981,-2.6322012,-2.778565,-2.7643983,-3.12606,-3.4021926,-3.1795604,-2.6918333,-3.0957959,-3.2671099,-2.9740791,-2.9728074,-3.5657032,-3.710432,-3.4883275,-3.9367702,-3.7395687,-3.3870692,-3.0648742,-3.463799,-1.5338081,-3.4074092,-3.359645,-3.50274,-2.3586936,-3.0196724,-3.4634297,-3.6440487
+-1.2986145,-1.5883907,-1.6570525,-1.8046343,-1.8554968,-2.1299229,-2.6753058,-2.8531685,-2.6949353,-3.2223172,-2.809228,-2.7534282,-3.0780458,-3.1099792,-2.2560406,-0.30689067,-0.8403216,-1.6078161,-2.215557,-2.5278282,-2.612289,-2.842534,-2.7184896,-2.859167,-2.9989989,-2.629394,-1.9122297,-2.7187743,-2.9012165,-2.5090916,-2.5855243,-2.8046603,-2.833676,-3.0105662,-3.0618675,-2.9246378,-2.9669552,-3.003334,-2.1520905,-2.8866043,-2.0450172,-2.885271,-2.9433947,-2.9388785,-2.912199,-2.1899831,-2.7031655,-2.7807388,-2.6464076,-2.6648223,-2.5767941,-2.534909,-2.190526,-2.4993713,-2.3297198,-2.3110366,-2.1580944,-2.782202,-2.8192012,-2.5824962,-2.2849836,-2.6409836,-2.545615,-2.6795506,-2.7980814,-3.212695,-3.3848124,-3.261177,-3.358914,-3.1609092,-3.4442277,-3.51975,-2.6073818,-1.2844795,-2.3162167,-2.993367,-3.3841825,-0.83025575,-1.1428035,-2.0949073,-2.32381,-2.5221236,-2.9750223,-3.0310636,-2.569806,-2.973764,-3.2180655,-3.0518577,-1.2857119,-1.7700855,-2.6850636,-2.5315857,-1.671498,-2.5074084,-2.8186054,-3.0917034,-3.1606557,-0.92361677,-2.3785088,-2.6597152,-2.9744053,-3.3100326,-3.6990721,-1.2762576,-2.5137687,-2.541248,-2.863831,-3.130566,-3.3654103,-1.5002419,-2.5468936,-3.0423546,-3.272458,-1.5216771,-3.1025205,-2.827621,-3.2789364,-2.9551132,-0.8556221,-2.2003207,-2.5944605,-2.8273263,-2.9838262,-3.1004488,-3.4452734,-3.5347528,-3.9242768,-2.5965662,-1.6307696,-2.704265,-3.0165823,-3.3045297,-3.3927712,-1.4498613,-2.0223706,-2.2490025,-2.9908712,-2.8287864,-3.4516048,-3.6421072,-1.1584114,-2.3135095,-3.035137,-3.0714178,-1.7569761,-3.1939826,-3.2004056,-1.5346503,-1.590201,-2.416692,-1.9289411,-2.2721558,-2.207364,-2.7981193,-2.9163308,-2.4805982,-1.1596075,-2.2836833,-2.414113,-2.7966483,-3.1100123,-3.3042436,-3.5874877,-3.7118773,-3.9009778,-3.7202632,-3.3381882,-3.664257,-1.413813,-2.1195316,-2.2016532,-3.0078773,-3.162541,-3.366764,-3.4927032,-3.4839666,-2.6631207,-3.3123982,-3.7455018,-4.0067244,-4.240752,-4.126514,-3.9666853,-3.860579,-3.8212354,-3.464458,-2.258667,-3.404908,-3.4428592,-3.380106,-3.7690659,-3.9705224,-3.8550608,-4.032941,-1.5274314,-2.9079342,-3.0834503,-3.439149,-3.6998837,-3.9521282,-3.9932442,-4.058695,-3.518731,-3.9277349,-4.280386,-4.3396964,-4.172899,-4.0384855,-4.0770836,-4.094557,-4.139234,-4.2788963,-4.0309615,-4.0598497,-4.379081,-4.194704,-4.2633667,-4.1738105,-4.124032,-3.855451,-3.6082673,-3.9888387,-4.049345,-4.203482,-4.1646934,-4.1750937,-4.123643,-4.2394266,-4.2745676,-4.31076,-4.1189356,-1.9969472,-3.5675979,-3.512516,-3.138673,-2.3656251,-3.0036786,-3.2003176,-3.3817177,-3.6028447,-3.4146395,-3.3456898,-3.58081,-3.4736748,-3.6855536,-3.781988,-3.473247,-3.7237597,-3.6534011,-4.1329985,-3.966834,-4.546075,-4.5875635,-4.2801914,-3.7614326,-4.11843,-4.259575,-4.380042,-4.2515697,-4.1625824,-4.568938,-4.9071584,-4.8099513,-4.113521,-3.5415606,-3.6877627,-3.0111818,-3.9304583,-2.1783953,-2.7106528,-3.01517,-2.7862186,-3.2996764,-3.1214347,-3.1705718,-3.4614928,-3.5318608,-3.9673204,-4.1865373,-4.005667,-4.3490043,-4.440789,-4.178654,-3.5748622,-2.9089851,-3.3036227,-3.8797264,-3.7103982,-3.5168002,-2.2919817,-2.2518246,-2.5752664,-2.6556935,-2.5041332,-2.4116492,-2.2961895,-2.4480247,-2.5986848,-2.7737262,-2.6743517,-3.1070936,-3.2538583,-2.8132815,-2.5674067,-2.745716,-2.9303885,-3.0726128,-3.543188,-3.3053317,-3.2136903,-2.8901954,-2.8512938,-3.0113158,-3.3943267,-3.376854,-2.9956038,-3.0785384,-2.9986749,-3.1324658,-3.273366,-3.2086325,-3.1702683,-3.2559822,-3.158801,-3.032153,-3.1982937,-3.0859878,-3.2072964,-3.0042791,-3.3095956,-3.4513109,-3.2993917,-3.2869735,-3.2141666,-3.180822,-3.222773,-3.092227,-3.0295799,-3.0786157,-3.0229175,-3.0668178,-2.9804125,-3.111883,-2.8101206,-2.5476828,-2.8066874,-2.9866886,-2.6881547,-2.6969588,-2.9902987,-3.1537356,-2.8901217,-3.1965156,-3.3023856,-3.0201497,-2.7017198,-2.9548974,-1.1390975,-2.7654414,-3.1135368,-3.220365,-1.8785295,-2.6879876,-2.814979,-3.0294907
+-1.7533541,-2.097289,-2.2760851,-2.6232352,-2.6029148,-2.6989245,-3.131606,-3.1845992,-3.0261357,-3.179785,-1.8769368,-2.1888137,-2.5655289,-2.611648,-2.4064112,-0.10036595,-2.079484,-2.5076883,-2.6826272,-2.7661476,-2.8395255,-2.8834004,-2.7819738,-2.904603,-3.234759,-2.9387352,-1.7354134,-2.5581257,-0.863838,-2.5916233,-2.9084892,-2.6226144,-2.772043,-2.8502328,-2.8493476,-2.8121595,-2.8351011,-2.1912184,-2.5762289,-2.8989553,-1.7501928,-2.3996186,-2.7186077,-2.6485634,-2.655582,-2.061145,-2.3415596,-2.6806445,-2.458736,-2.4829082,-2.4123564,-1.8291677,-2.2932143,-2.3582177,-2.7270222,-2.8194711,-1.425182,-2.4186442,-2.6889424,-2.3322196,-2.2599182,-2.5139523,-2.558788,-2.6917548,-2.787419,-3.1967359,-3.1208696,-2.9497023,-3.0521374,-2.5968425,-1.9321078,-2.3803754,-2.5905042,-0.51311046,-2.2568567,-2.4242768,-2.5150895,-2.5135098,-1.6156622,-2.196875,-2.3489044,-2.6093006,-2.8800282,-2.7971637,-2.7251968,-2.5315745,-2.5206563,-1.8296221,-1.8090125,-1.1287235,-2.2309518,-1.2378379,-2.0304298,-2.2141435,-2.2032335,-2.3358145,-1.4520593,-2.1109142,-1.2368653,-1.9786471,-2.1515894,-2.4575343,-1.757185,-1.9089893,-1.763121,-2.249048,-2.4449394,-2.6423652,-2.6640406,-2.8086214,-2.8535008,-2.8460474,-2.5945973,-2.4589345,-1.6593492,-0.83999556,-2.0354984,-1.9610418,-1.420523,-2.0298858,-2.1595426,-2.3246002,-2.543233,-2.093002,-1.7190764,-2.177187,-1.6565644,-1.8529929,-1.0271838,-2.1291814,-2.2218728,-2.3283224,-2.5219693,-1.8167907,-2.404945,-2.2229326,-2.6015139,-2.7638571,-2.9489439,-2.9796364,-1.4867872,-1.9756573,-2.5949404,-2.6041007,-2.5824013,-3.2576327,-0.8751584,-2.1522303,-1.8310256,-2.1826868,-2.031908,-2.1017766,-2.072872,-2.1444902,-2.3729002,-0.9090577,-2.1067753,-1.6734153,-2.1514332,-2.1486998,-2.3583763,-2.5308738,-2.813816,-2.9545918,-2.8839357,-1.6470532,-2.507997,-2.5074546,-2.4328885,-2.8004026,-2.197752,-2.8734307,-2.9278913,-3.0102918,-2.9824524,-2.981063,-1.8160385,-2.4657393,-2.9787016,-3.2164094,-3.427679,-3.2141347,-3.1993537,-3.2274678,-3.2606974,-3.1896892,-3.1903708,-3.4410684,-3.1745243,-3.0997345,-3.3276162,-3.2678127,-3.129995,-3.2712898,-2.8399804,-3.0701282,-3.243315,-3.3987145,-3.50907,-3.6513293,-3.483706,-3.4556112,-3.238334,-3.4281359,-3.6197095,-3.6765876,-3.4451218,-3.4354098,-3.4229093,-3.4536424,-3.372721,-3.5601096,-3.3167832,-3.3632073,-3.6933413,-3.388862,-3.506396,-3.5568612,-3.4157262,-3.258596,-3.158217,-3.3724098,-3.5145528,-3.5216389,-3.5614069,-3.420747,-3.5070064,-3.6849585,-3.7551255,-3.6874998,-3.1784654,-2.8264115,-3.276219,-3.263418,-3.5175295,-3.3231335,-3.3299944,-3.385201,-3.518261,-3.5189443,-3.1016974,-3.4611468,-3.5082192,-3.409285,-3.6657593,-3.6774402,-3.2522955,-3.4896944,-3.450578,-3.8584402,-3.6659765,-3.8994124,-3.9624434,-3.6579037,-3.4238007,-3.562978,-3.8388247,-3.9846716,-3.80388,-3.7215538,-3.8909812,-4.2428303,-4.15081,-3.6970785,-3.303657,-3.1877508,-2.7648933,-3.3087535,-1.9208307,-2.8310852,-3.0689914,-3.0481098,-3.283271,-3.159508,-3.4275663,-3.3323658,-3.3805852,-3.6687412,-4.051734,-3.871952,-4.154101,-4.2116985,-3.8826485,-3.0345426,-3.0589817,-3.110681,-3.5402067,-3.6222491,-3.0751405,-2.007239,-1.8538412,-2.0991116,-2.208002,-2.2180023,-2.4296389,-2.5393887,-2.7992568,-2.7969346,-2.905598,-3.1113615,-3.4516423,-3.5415108,-3.2253456,-3.1411252,-3.140822,-3.2434354,-3.1677039,-3.4251866,-3.4539857,-3.161407,-3.2076442,-3.1656861,-3.33112,-3.2168217,-3.262205,-3.2908847,-3.4212856,-3.2554898,-2.464654,-3.205349,-3.2308788,-3.2440176,-3.3864899,-3.3879027,-3.2675865,-3.4871323,-3.4583175,-3.4330297,-3.2226486,-3.3120685,-3.4635258,-3.5072508,-3.367896,-3.4708352,-3.3705063,-3.664926,-3.4209075,-3.445743,-3.511106,-3.3778708,-3.3926377,-3.5441875,-3.6917064,-3.331043,-3.1016192,-3.033383,-3.4380116,-2.9892764,-3.033751,-3.5385056,-3.8063211,-3.546092,-3.6183095,-3.8946183,-3.4960723,-3.204575,-3.2912767,-1.4490058,-2.490816,-2.545378,-2.5560875,-1.6350803,-2.475292,-2.7920115,-3.0036292
+-1.9430469,-2.7368343,-3.0959566,-3.2765641,-3.4374986,-3.6767716,-3.9832845,-3.9452853,-3.937789,-3.859149,-0.94328517,-2.5862215,-2.6650028,-2.595383,-2.4165144,-0.78768593,-1.8625649,-2.4233277,-2.0136008,-2.6612597,-2.7067993,-2.8662271,-2.7260275,-2.830432,-2.9497519,-2.9093475,-3.211804,-3.417894,-0.36749205,-2.6451173,-3.0933986,-3.0001712,-3.0566423,-2.9670117,-2.7816052,-2.7322602,-2.8569567,-3.0623274,-1.8322068,-2.7062716,-2.94973,-1.949323,-2.8483624,-3.0661497,-3.1113133,-1.4345094,-2.078618,-2.644888,-2.6711178,-2.7027164,-2.636374,-2.5177424,-2.7235532,-3.0405283,-3.3465426,-3.476345,-3.3350563,-3.5640695,-3.685674,-3.6744795,-0.6051498,-2.0717506,-2.354784,-2.459696,-2.703751,-3.1692877,-3.307507,-1.4214859,-2.5566926,-2.8904405,-0.4208323,-1.9545296,-2.182644,-0.8384792,-1.6684202,-2.1563802,-2.1660676,-1.6598545,-1.194352,-1.9672142,-2.2851584,-2.71889,-3.1086211,-2.0046968,-0.69207823,-1.7111138,-1.093563,-2.1420279,-2.1314409,-1.0840188,-2.0189035,-1.9334868,-1.6691884,-2.2522137,-2.1067886,-2.1236567,-2.2884216,-2.6713953,-2.4984133,-2.8159103,-2.9806194,-3.1426456,-3.217343,-3.3451767,-2.391406,-0.8294691,-1.5260046,-1.9444222,-2.4088893,-2.7929895,-3.1034322,-3.309856,-1.8901345,-2.7512999,-1.587591,-0.8872551,-1.9727539,-1.954641,-1.5619211,-1.2083519,-2.0019445,-2.233372,-2.69691,-2.9874892,-3.2388778,-1.5608217,-1.0530044,-1.5520016,-1.593107,-1.96707,-1.0208863,-1.5593263,-1.6714855,-1.5630466,-2.118507,-2.5872104,-2.927074,-3.2180269,-3.418952,-3.4712632,-3.390956,-3.4084527,-3.708866,-3.6825218,-3.6038098,-2.603806,-0.9477466,-2.1362357,-2.1330738,-1.3805338,-1.3150606,-1.852957,-2.0651524,-1.8086754,-2.0707927,-2.169505,-2.424911,-2.6543598,-2.8446481,-0.7485793,-1.7614609,-2.2669086,-2.6522994,-3.0654883,-3.016549,-1.955548,-2.4579325,-2.768673,-2.9535558,-3.0696144,-3.2536325,-3.4386387,-3.4244533,-3.4430232,-3.4792714,-3.3866599,-3.1496272,-3.6916542,-4.0634284,-4.0893555,-4.06102,-3.9251404,-3.927629,-2.8790033,-1.488943,-1.6982119,-2.5548885,-3.1818995,-3.5017872,-3.6123414,-3.328668,-1.6595577,-1.7151417,-2.6281965,-2.9552531,-3.1388817,-3.210052,-3.3316526,-3.4398415,-3.5607433,-3.8961873,-3.9704752,-3.861438,-4.0008817,-3.9518242,-3.838411,-3.6555152,-3.6257353,-3.5547252,-3.6951923,-3.6781888,-3.623631,-3.6205707,-3.6829057,-3.713128,-3.6546884,-3.6148982,-3.8802483,-3.728391,-2.6295543,-2.1621618,-2.9000878,-3.3306527,-3.5362227,-3.5857003,-3.7619631,-3.7733512,-3.7792046,-3.8350275,-3.7558613,-3.7104135,-3.5763662,-3.981503,-4.0806932,-4.0960636,-3.8382707,-3.661174,-3.885443,-3.9357882,-3.9541185,-3.7313416,-3.801227,-3.9570274,-4.0105104,-4.1410756,-3.801171,-3.1486626,-3.0280924,-3.5742161,-3.8136337,-3.8532503,-4.0839124,-4.2176075,-4.078612,-3.6041012,-3.813388,-3.9304044,-4.2346654,-4.4616756,-3.664737,-3.7758358,-4.429655,-4.393073,-4.223547,-3.7353754,-3.5687318,-3.3366656,-2.2717667,-2.2084327,-3.08696,-3.4498668,-3.5073447,-3.6825695,-3.7905872,-3.8166175,-3.738675,-3.7506456,-3.8029156,-4.409525,-4.477379,-4.4455857,-4.69909,-4.518852,-3.7326825,-3.5541778,-3.5351558,-3.5556207,-3.8846495,-3.1645513,-1.5712408,-2.31844,-2.6599023,-2.9394603,-3.0113509,-3.1165128,-3.1536083,-2.5896058,-3.089714,-3.207339,-3.3626757,-3.7398617,-4.00733,-3.913786,-3.7767365,-3.6637173,-3.6046975,-3.5855443,-4.040109,-4.419141,-3.9494874,-3.852106,-3.7895327,-3.7617292,-3.687552,-3.6245058,-3.8575056,-3.719954,-3.5779767,-3.4250126,-2.7489216,-3.5015166,-3.6923804,-3.733344,-3.718029,-3.509393,-3.5113761,-3.7218664,-3.8018622,-3.761821,-3.635528,-4.1448383,-4.1116695,-4.023309,-3.98814,-3.9963555,-4.331318,-4.1765776,-3.9960876,-3.9424586,-3.9312239,-4.0874567,-4.3559823,-4.3237495,-4.146297,-3.7266884,-3.7163897,-4.0683336,-4.0476284,-3.927184,-4.1466823,-4.1080456,-4.1148586,-4.024643,-3.9797964,-4.1233115,-4.087481,-3.7248392,-0.93619376,-2.7213469,-2.7623641,-2.8830748,-0.8554562,-1.8751713,-2.6745439,-2.984828
+-1.7340931,-2.2726583,-2.6414733,-2.9919343,-3.2143688,-3.4067829,-3.6409585,-3.6181889,-3.6028242,-3.727425,-2.386683,-2.666143,-2.9104025,-3.2269921,-3.2343094,-1.4204996,-1.7334799,-2.8216875,-2.4212036,-2.8306203,-3.061659,-3.077251,-3.0106306,-3.2022154,-3.423822,-2.8073723,-3.19819,-3.5331323,-1.2619766,-2.3221278,-2.917716,-2.8590827,-3.0029035,-3.0643132,-3.064449,-3.0364451,-3.020565,-3.2304063,-3.402536,-3.6373858,-3.5770183,-1.3590633,-2.5000696,-1.8316416,-2.7254865,-2.4626164,-2.5525055,-2.7114549,-2.866041,-2.7261162,-2.6975658,-2.3378193,-2.241446,-2.5958176,-2.9642236,-3.141654,-3.3038242,-3.350306,-0.68974876,-2.1696954,-2.3727798,-1.9530283,-2.4610643,-2.660811,-2.7674708,-3.0204926,-3.1381886,-1.9922572,-2.7025166,-3.033824,-0.8132472,-2.1352043,-2.576313,-1.875222,-1.2334019,-2.3629837,-2.6287508,-3.012928,-3.2582498,-3.2155635,-3.3523889,-3.5014274,-3.5714612,-3.546138,-2.4472272,-3.0893927,-3.3761463,-3.072554,-2.0428648,-1.4672474,-1.9672035,-2.0434573,-2.36374,-2.6863055,-2.9000876,-2.2392073,-2.869468,-3.3372085,-2.0803761,-2.562931,-3.1252942,-3.4783607,-3.6427045,-3.714066,-3.7617826,-3.1111777,-0.85528547,-2.3236296,-2.820102,-3.0752068,-3.3373942,-3.5589645,-3.7517881,-3.8791025,-3.6772165,-1.3128135,-2.5345263,-2.5960639,-1.2705815,-2.3985252,-2.6703296,-2.97422,-3.307691,-2.097976,-2.4373262,-2.1799037,-1.5238093,-2.301188,-1.8109257,-1.792555,-1.97657,-2.4635963,-2.292323,-1.6015477,-2.559795,-2.9893827,-3.031428,-3.2305007,-3.4737377,-3.5715303,-2.5696805,-1.317369,-2.4786406,-2.700641,-2.8081174,-2.427741,-2.3555608,-2.8458652,-1.0741247,-1.7921838,-1.5123233,-2.1016307,-2.5935767,-2.684744,-2.797069,-2.8067417,-2.8500519,-2.9616232,-3.0395603,-0.87747943,-2.031478,-2.5995257,-2.1518054,-2.7234344,-2.779714,-2.9661865,-2.0995946,-2.2717514,-2.755001,-2.827909,-1.2667937,-2.4011261,-2.6713958,-2.854228,-3.0058665,-3.1583261,-3.0236015,-2.5904608,-3.140722,-3.3827,-3.6227255,-3.6666777,-3.5942593,-3.6030967,-3.60424,-3.5767655,-3.6010466,-3.8435793,-3.9299717,-3.7819223,-3.7255197,-2.4787927,-1.4438704,-2.6996393,-3.0246775,-2.750767,-3.0507126,-3.2471268,-3.4102452,-3.5430305,-3.8805892,-3.8773875,-3.7338595,-3.721859,-3.7570598,-3.8526628,-3.780606,-3.6837912,-3.6416943,-3.825996,-3.762115,-3.797845,-3.9386353,-3.8058941,-3.901424,-3.676115,-3.4650867,-3.8182425,-3.718871,-1.8261842,-2.3934736,-2.8147774,-3.1377058,-3.2659373,-3.348329,-3.502287,-3.5085206,-3.6298676,-3.758424,-3.8122706,-3.7837229,-3.790266,-4.0230813,-3.9616508,-4.0119505,-3.7502139,-3.267981,-3.7602947,-3.9204352,-3.7838798,-3.5965235,-3.7826202,-4.0506315,-4.1104965,-4.2729077,-4.023636,-2.2080064,-3.0151448,-3.2829218,-3.4974084,-3.795743,-3.9090638,-4.1648455,-4.1116915,-3.812591,-4.0239024,-4.05178,-4.280881,-4.4852104,-3.8072433,-3.9371915,-4.6681466,-4.7291684,-4.418446,-4.027038,-3.8795476,-3.5892196,-3.7355208,-3.2600107,-3.868443,-4.044208,-3.9596534,-4.097411,-4.233731,-4.1249933,-4.097076,-4.02313,-4.005928,-4.4028215,-4.416486,-4.588673,-4.7621593,-4.3104815,-3.808831,-3.537202,-3.6198053,-3.7235355,-3.7670352,-2.385583,-2.262545,-2.9295573,-3.0197353,-3.3008046,-3.2932818,-3.3733246,-3.1280355,-2.8286195,-3.1338024,-3.3539786,-3.2453108,-3.5507197,-3.7708578,-3.7830734,-3.4912295,-3.353578,-3.3953247,-3.4079225,-3.7811828,-4.2410574,-4.055836,-3.6489906,-3.630478,-3.577321,-3.59825,-3.5367365,-3.6397872,-3.6700125,-3.6376877,-2.2151837,-2.9760342,-3.3323436,-3.4893286,-3.507123,-3.5044327,-3.3891134,-3.432549,-3.6342022,-3.729726,-3.789576,-3.7913084,-4.193928,-3.944469,-3.9257982,-3.892488,-3.976922,-4.1061697,-4.0829935,-3.9784884,-3.8619874,-3.8265824,-4.084822,-4.032566,-4.1230383,-3.9698286,-3.3784776,-3.3866763,-3.7290893,-3.8065085,-3.6934628,-3.8613944,-3.9350972,-3.8443139,-3.8766472,-3.947713,-4.031831,-3.726109,-3.7385566,-1.0416573,-2.569408,-2.972444,-3.043678,-1.1617091,-2.372645,-2.6367788,-3.0173755
+-2.4052687,-3.0707679,-3.6676693,-4.0669303,-4.0284,-4.182502,-4.269224,-4.0497065,-3.9058013,-4.045864,-0.9492435,-2.813171,-2.6722689,-3.1810822,-3.0973861,-1.7535404,-2.6246982,-3.0161018,-2.1483564,-2.8034735,-2.4416323,-3.1124992,-3.2318182,-3.3633685,-3.7335982,-4.046397,-4.1404967,-2.110713,-2.1889963,-3.0758154,-3.2788105,-3.1949792,-3.572176,-3.9304342,-4.1919622,-4.186515,-4.112192,-4.310953,-4.340392,-4.5161543,-4.484874,-2.5549943,-3.5415883,-1.8105568,-2.142435,-2.8960986,-2.2552025,-2.8817797,-2.676847,-2.9830654,-3.075261,-2.4600549,-1.5763474,-2.036087,-2.792301,-2.9921699,-3.341972,-3.6665606,-1.2278228,-1.9773365,-2.558618,-1.9896222,-2.3517685,-2.4682517,-2.504517,-2.84336,-3.0563412,-3.3600895,-3.5915055,-3.719206,-3.6633768,-2.627236,-3.0604022,-3.3127189,-2.262082,-1.0164343,-1.2530301,-2.3619163,-2.6273422,-1.4655609,-2.258522,-2.6704216,-2.870072,-3.1758037,-3.389255,-3.5544107,-3.5409598,-3.6475372,-3.726499,-1.1899267,-2.0761352,-2.659986,-2.8612368,-3.0508995,-2.1702676,-1.9618124,-2.8144999,-1.0971873,-2.2196457,-2.6316578,-2.9238217,-3.34973,-3.6868644,-3.7427616,-0.8299784,-1.9310838,-1.3117024,-2.3502362,-2.7888346,-3.09261,-3.3739085,-3.5970757,-3.7814007,-3.9038045,-3.8315825,-1.0871176,-2.0971189,-2.708033,-3.1668863,-3.4821374,-1.0236361,-2.4603555,-3.0060072,-3.3182411,-3.5960293,-3.7460504,-3.8184943,-3.8531356,-3.9141154,-1.6885017,-1.3719817,-2.4883785,-2.8168664,-1.829079,-2.6059651,-3.3317409,-3.4415965,-3.8688803,-4.0329494,-4.0136952,-3.6475973,-0.8841097,-2.5385394,-2.9363637,-2.7667794,-1.6337186,-1.8627567,-2.5535378,-2.710098,-2.5402699,-1.840319,-2.007195,-2.3734856,-2.5400758,-2.3272119,-2.6325002,-2.6905289,-2.7967024,-2.9673996,-1.7027266,-2.4062793,-2.903879,-3.020627,-3.409553,-3.4709945,-1.4734334,-2.3975606,-2.1468,-2.161105,-2.4697576,-2.7784762,-2.9739985,-3.0979574,-3.2743788,-3.4055972,-3.5086038,-3.2414565,-3.134517,-3.5091708,-3.959462,-4.1057854,-4.0313463,-4.042305,-4.0729165,-4.0844007,-4.016601,-4.0419917,-4.269682,-4.2583246,-4.152958,-4.1328144,-3.1289024,-3.5355077,-3.9150345,-4.0053573,-1.4605037,-3.0369182,-3.186239,-3.360341,-3.5320234,-3.9679532,-3.992855,-4.005764,-4.1248083,-4.152817,-4.2189636,-4.168211,-4.0976925,-4.0472593,-4.1402974,-4.1386914,-4.1466455,-4.2677073,-4.203204,-4.2467837,-3.1670914,-1.958463,-3.2783878,-3.4609346,-2.6552348,-2.3606548,-3.0447545,-3.4731343,-3.594873,-3.600268,-3.637292,-3.7534833,-3.8487606,-4.020257,-4.074009,-4.0587955,-4.1725416,-4.2968073,-4.319932,-4.415714,-4.1875024,-4.290408,-4.405326,-4.3889055,-4.336186,-4.08694,-4.254406,-4.421587,-4.4587355,-4.545344,-2.4916847,-2.2385945,-3.167964,-3.5260224,-3.6414433,-3.4867432,-3.4283512,-3.232247,-3.49046,-3.724565,-3.7892337,-3.7740417,-3.743711,-3.7983413,-3.838519,-4.0865493,-4.233053,-4.588773,-4.1006756,-3.8674588,-3.686529,-3.4940264,-3.9160228,-3.7212152,-3.9761033,-4.089241,-4.2223215,-4.1475263,-4.1550217,-4.22627,-4.038101,-2.4952507,-3.589724,-3.587028,-3.8173308,-3.7101252,-3.9855494,-3.6588414,-3.2388768,-3.2577128,-3.437101,-3.7256188,-3.4762192,-2.4066286,-2.2350693,-2.8443599,-2.9887466,-3.0556421,-3.3061175,-3.42805,-3.5768468,-3.6488073,-3.744781,-3.7775617,-3.907056,-4.0778913,-4.2179527,-4.252947,-4.1258926,-4.1395206,-4.1670246,-4.189917,-3.9764814,-4.032654,-3.9776268,-4.167366,-4.1453547,-4.181319,-4.3249664,-4.1144896,-4.3275948,-4.306038,-4.466502,-1.5336463,-2.6238818,-3.047483,-3.493834,-3.6495593,-3.550633,-3.517293,-3.6167278,-3.8463178,-4.0008125,-4.0315766,-4.107724,-3.962057,-4.1657753,-4.219805,-4.265298,-4.321163,-4.2242002,-4.2769794,-4.27574,-4.1736403,-4.194792,-4.3687935,-4.3027925,-4.3182387,-4.2823515,-3.896682,-3.2916582,-3.8380027,-3.9879217,-3.8492098,-4.063734,-4.115299,-4.0315967,-4.1529694,-4.231037,-4.4116898,-4.1077566,-4.0994797,-2.4661229,-3.2819424,-3.8467855,-4.088237,-1.1943337,-1.5057269,-2.7402663,-2.9661374
+-1.2268838,-2.2731924,-2.7459722,-3.146343,-3.44864,-3.7312176,-4.0453453,-4.226653,-0.94309705,-2.3787293,-2.650865,-2.350638,-2.624867,-2.8821733,-2.9790938,-1.0282731,-2.2075074,-2.5931194,-2.5344038,-2.0366182,-2.3900065,-2.8277779,-2.8937008,-2.954513,-3.2486577,-3.5820742,-3.8027382,-4.0142317,-3.8037145,-3.8656666,-3.9082255,-3.6575441,-3.6411798,-3.9321458,-4.181942,-4.245205,-4.2379985,-4.240736,-4.296071,-4.394795,-2.1616023,-1.8039371,-2.7803965,-1.1883539,-2.625401,-2.7025957,-2.4429634,-1.9146415,-2.7172136,-2.8221593,-2.9007967,-2.3424702,-2.1076963,-2.492897,-3.0248399,-3.3352103,-3.6014748,-3.9043598,-0.7532651,-1.8499603,-2.5791984,-2.117225,-2.4244473,-2.5798755,-2.7979221,-3.1319418,-3.4543989,-3.6437886,-3.7706428,-3.8247871,-3.7582588,-3.4911764,-0.70962095,-2.3565328,-2.758174,-3.1838388,-2.2508047,-3.0651448,-3.6165674,-0.6375125,-2.3793204,-2.8848119,-3.3038917,-3.6712413,-3.8416326,-3.8982925,-1.8954355,-2.0147672,-2.8344994,-3.3613095,-3.7221258,-3.8001285,-2.693665,-2.4820414,-3.4946055,-3.8779917,-4.005821,-3.9953203,-4.077868,-0.84742755,-2.6730292,-3.097537,-3.518377,-3.8340416,-3.9928427,-3.4760737,-1.3219718,-2.9974174,-3.4562175,-3.7978861,-3.9512465,-4.0228233,-4.087203,-4.1171064,-4.1291375,-3.9936056,-2.0236614,-1.8893054,-2.4180746,-3.3430884,-3.7935848,-1.9018111,-3.263135,-3.6709325,-3.9419508,-4.077269,-4.1366267,-4.164023,-4.1731176,-3.1902668,-0.7981418,-2.163075,-2.781397,-2.3175464,-2.9723916,-3.6969528,-3.875702,-4.074007,-4.1373124,-2.2091262,-2.039864,-1.640438,-2.5816746,-2.5556283,-2.6849384,-1.7049447,-1.876247,-2.741716,-2.4707298,-1.9337268,-2.2400575,-2.1649408,-1.9587251,-2.057604,-1.8841931,-2.5574594,-2.7277203,-3.0175161,-3.0937366,-3.0147,-0.4266974,-2.0869675,-1.8542448,-2.5730934,-2.7890224,-2.1120174,-1.4121848,-2.4800396,-1.2247996,-1.9155831,-2.431067,-2.7225862,-2.9068403,-3.0578532,-3.1077502,-3.1542077,-1.6711413,-1.2613314,-2.6014864,-3.104796,-3.2219474,-3.2477674,-3.3190532,-3.4159417,-3.4845142,-3.5119257,-3.5497098,-3.6992204,-3.7117226,-3.5292058,-3.4905334,-3.3032656,-3.4833856,-3.7097297,-3.7206776,-1.4659618,-2.304946,-2.7076077,-2.9086225,-3.0866508,-3.3313968,-3.4258041,-3.5875955,-3.7877672,-3.8756466,-3.8916817,-3.7674952,-3.7017927,-3.5700078,-3.7599864,-3.7153184,-3.780692,-3.8216166,-3.878902,-3.904822,-0.50198215,-1.4544865,-2.4477339,-2.7432091,-1.5955168,-2.3262036,-2.5396671,-2.822556,-2.944882,-3.0165615,-3.0438793,-3.1312447,-3.2688107,-3.397858,-3.420434,-3.3343759,-3.5395856,-3.656704,-3.853054,-3.865552,-3.829403,-3.9165597,-3.9433742,-3.8830628,-3.856004,-3.6129937,-3.7383132,-3.9476075,-4.1050577,-4.092003,-2.225859,-1.5787576,-2.5535762,-2.9620247,-3.1573822,-3.1909711,-3.1613946,-3.2066612,-3.496993,-3.5456376,-3.5538664,-3.5252008,-3.5401168,-3.5889115,-3.6422367,-3.814972,-3.9288988,-4.5225983,-4.18521,-4.1349087,-3.9059405,-3.8378835,-3.884226,-3.7187037,-3.974948,-4.028573,-4.068186,-3.9945655,-4.107628,-4.0933766,-4.050167,-2.6976593,-3.612455,-3.5861213,-3.795259,-4.050037,-4.542086,-4.443363,-3.9777327,-4.0356793,-4.0501575,-4.018383,-3.669025,-3.3627076,-1.1530659,-2.317164,-2.582666,-2.7866225,-3.1607528,-3.4084244,-3.5056944,-3.4417768,-3.5088205,-3.5762076,-3.6936135,-3.8033924,-3.9315171,-4.1405773,-4.1212683,-4.138428,-4.162739,-4.183239,-3.9532895,-4.0115867,-4.040387,-4.1469183,-4.212954,-4.2495346,-4.2449884,-4.0782833,-4.2153206,-4.128764,-4.281877,-0.6804409,-2.5224292,-3.0207195,-3.573159,-3.6819887,-3.672946,-3.4873853,-3.535737,-3.7838044,-3.8062594,-3.8500705,-3.9772902,-3.7603626,-4.119639,-4.212481,-4.241411,-4.1811757,-4.1151047,-4.2452354,-4.2664933,-4.0579944,-4.1781197,-4.224192,-4.3047676,-4.1848783,-4.129239,-3.858788,-3.465373,-3.7277536,-4.077012,-3.9865422,-3.917281,-4.0524726,-3.9142673,-4.0188556,-4.102126,-2.500197,-3.126575,-3.5860934,-3.5770154,-4.0525713,-4.3512106,-4.374795,-0.68339413,-1.9214727,-2.7556455,-3.0464973
+-2.264357,-2.1738708,-2.8818812,-3.4002006,-3.6386425,-3.9122334,-4.0798397,-4.1264825,-0.8439166,-2.4703875,-2.6455646,-1.3526833,-2.4511583,-2.7850814,-2.7453203,-2.4059312,-1.5412291,-2.440344,-2.631525,-1.8939564,-2.3552716,-2.54733,-2.6580505,-2.6518388,-2.910828,-3.1512227,-3.5722017,-3.8432395,-3.9063363,-4.0490685,-3.841686,-1.1403053,-2.5404763,-2.7878528,-2.9415798,-3.0938954,-3.1565406,-0.8961404,-2.2495925,-2.7637644,-2.9777126,-2.421606,-2.75811,-1.6880704,-2.3642492,-2.7685385,-2.3121965,-1.6501627,-2.478708,-2.6771455,-2.6751513,-2.70019,-1.2143906,-2.1254559,-2.8323998,-1.6683735,-1.6335899,-2.6940918,-1.6776111,-2.2452152,-2.2761965,-1.8053342,-2.297224,-2.2682123,-2.3045313,-2.4100647,-2.666634,-2.911891,-3.1423597,-3.412037,-3.5479736,-3.164804,-0.66332686,-2.32347,-2.5250504,-2.736991,-1.8389164,-2.6125145,-2.9502923,-0.7679824,-2.205062,-2.677033,-3.0172942,-3.3582044,-3.6068416,-3.6462617,-0.2904562,-2.080792,-2.4585524,-2.4357367,-2.6610897,-2.874565,-3.107861,-3.373455,-3.7070606,-3.809651,-2.9116993,-3.5735106,-3.8849394,-2.011897,-3.1175103,-3.582291,-3.655249,-3.9663749,-4.161381,-1.7664803,-3.186419,-3.686471,-3.9841223,-4.0795527,-4.1107903,-4.1899323,-4.259946,-4.2620134,-4.2170353,-4.125027,-4.11093,-3.3827863,-3.6009028,-2.2446527,-3.3338375,-3.4733233,-4.042603,-4.1953893,-4.2054663,-4.2623105,-4.24389,-4.221524,-4.179509,-4.206367,-4.209402,-0.59008473,-1.8281764,-2.0965137,-2.0645108,-1.5542711,-2.3174038,-2.8082504,-2.1752384,-2.3801856,-2.64844,-0.91740316,-2.0372221,-1.8448182,-1.681257,-2.0398064,-2.187086,-1.4568499,-2.1604393,-2.034456,-2.261086,-2.4964457,-2.016951,-1.7434051,-1.3710725,-2.2145085,-2.399066,-2.6296349,-2.8989491,-3.103008,-3.3477407,-3.59381,-0.25114897,-1.833344,-2.48628,-2.4715095,-1.6543903,-1.6945292,-2.1926281,-1.3865875,-2.0068693,-1.5515023,-2.1568851,-2.3914099,-2.4451103,-2.5422611,-1.1067297,-0.8502936,-1.835007,-2.2819881,-2.5376735,-2.473792,-2.5959594,-2.733067,-2.8096366,-2.8607855,-2.6375651,-3.0052338,-3.0580778,-2.100134,-1.8394417,-2.4292364,-2.713947,-2.8744714,-3.0092793,-2.9661908,-1.9025475,-2.3398032,-2.6598167,-2.8992248,-3.143584,-3.2232742,-3.2254167,-3.3321552,-3.4890149,-3.5794945,-3.4625974,-3.387525,-3.3424892,-3.427289,-3.4064174,-3.4529922,-3.490858,-3.5160494,-3.4847822,-3.3214126,-0.5892061,-2.3356256,-2.5316086,-1.3477194,-2.4445646,-2.586485,-2.8667269,-1.8647815,-2.4789867,-2.626483,-2.7742684,-2.8220346,-3.0187182,-3.1055777,-3.0287182,-2.9542093,-2.9474335,-3.2805886,-3.3110542,-3.2033026,-3.268711,-3.3348367,-1.9451603,-1.9003147,-2.6720333,-2.7650511,-2.9366014,-2.983738,-3.0420423,-2.8036265,-1.830114,-2.657426,-2.6876712,-2.5573888,-2.717463,-2.8077114,-2.5345418,-2.6777594,-3.0298305,-3.0418763,-3.0043063,-2.95932,-2.8948557,-3.056328,-3.2365565,-2.6891522,-3.1509528,-3.2291322,-3.3800113,-3.1925054,-3.230091,-3.1843405,-3.0835564,-3.312642,-3.2440746,-3.266931,-3.1928768,-3.3579144,-3.2276225,-3.0389965,-2.1995063,-2.9860396,-2.9848466,-3.0581727,-3.3065844,-3.7697694,-3.646079,-3.1869063,-3.3628438,-3.5141397,-3.4714508,-3.147357,-2.6103134,-1.2399546,-2.5379071,-1.8162032,-2.3468494,-2.596676,-2.829642,-3.0130239,-2.8977456,-2.9128926,-3.0700116,-3.0605462,-3.0812354,-3.0681334,-2.8730774,-3.1888819,-3.2747793,-3.43117,-3.5086534,-3.280623,-3.18186,-3.2529585,-3.3681898,-3.4358978,-3.5422604,-3.6013875,-3.4774473,-3.5291698,-3.5249038,-3.5073853,-2.3110168,-1.1148363,-2.3345797,-2.6667206,-2.8420172,-3.0080647,-3.0431023,-2.774437,-3.0337532,-3.103032,-3.1229625,-3.2391548,-3.2653062,-3.4821699,-3.6069818,-3.711068,-3.796485,-3.7698483,-3.7826278,-3.6723855,-3.4848404,-3.671667,-3.7682083,-3.753633,-3.7544932,-3.6702666,-3.676846,-3.1413922,-3.4679923,-3.5998037,-3.6743462,-3.683094,-3.7580628,-3.7596612,-3.8318439,-3.893204,-3.6222632,-2.2015638,-2.7522197,-3.3125992,-3.871398,-4.070126,-4.2249956,-1.6267713,-1.9909276,-2.803147,-3.0012157
+-2.0724454,-2.1104686,-2.7817855,-3.2906656,-3.5195522,-3.522512,-3.6559982,-3.8014107,-2.3181307,-2.2636762,-2.5261962,-0.99472255,-2.3732247,-2.8838758,-3.0038698,-2.9819794,-1.51995,-2.3022869,-2.9222426,-3.0021877,-2.845553,-2.884377,-3.048582,-2.5032754,-2.9433038,-3.3343537,-2.9483504,-3.6415007,-3.4927087,-3.7178648,-3.93918,-3.1686258,-3.434294,-3.6913874,-3.8907464,-3.9593935,-3.9368148,-3.7048275,-2.8313875,-3.658095,-3.7364464,-2.2720306,-1.402505,-2.2852325,-2.7362652,-2.7238536,-2.3352108,-2.1101253,-2.0060806,-2.747183,-2.9898353,-2.997994,-2.9508655,-3.1530628,-3.4049678,-2.707818,-2.934768,-3.5969224,-2.4342928,-1.4064819,-2.6870103,-2.7980084,-2.245782,-2.5464678,-2.8108625,-2.8264656,-3.060095,-3.296064,-3.5344868,-3.6551442,-3.733978,-1.7812227,-2.0970795,-2.8634648,-3.2526605,-3.5271227,-3.6759772,-3.7609272,-3.8394415,-1.2598878,-2.3252892,-2.8319416,-3.2632933,-3.5861845,-3.7527041,-3.8066182,-2.160962,-0.6196172,-1.9660376,-2.5576468,-2.8664007,-3.1886406,-3.4497013,-3.3435626,-3.6845853,-3.8669658,-3.8944993,-3.9146256,-3.9377418,-3.9004695,-3.9366267,-3.9928808,-4.0110703,-4.040551,-4.0941257,-4.159613,-4.179879,-4.1811657,-4.1836824,-4.1448994,-4.137952,-4.1696796,-4.1898093,-4.2054267,-4.201086,-4.1586046,-4.085934,-2.7256622,-1.6232641,-2.8485613,-3.4260983,-3.8079314,-4.0259876,-4.08711,-4.097305,-4.1789303,-4.1756816,-4.183443,-4.193445,-4.19084,-4.2132106,-4.168296,-3.9844198,-1.4972627,-1.1021161,-2.6902323,-2.963153,-3.0391183,-2.0215197,-2.8771632,-3.0495093,-2.0448601,-3.0281518,-2.96483,-3.0259748,-3.1644323,-3.3963501,-3.481061,-3.3960075,-1.9943002,-2.5614061,-2.8823357,-1.7578834,-2.272204,-2.9510503,-3.1274369,-3.0896468,-3.1321015,-3.2775967,-3.4090557,-3.5654178,-2.2343588,-2.0736318,-2.7646296,-2.9956884,-2.1431699,-1.9725698,-2.7429378,-2.999185,-3.1159317,-2.9811893,-2.7117162,-3.1048918,-3.4214015,-3.5358074,-3.5641718,-3.5526,-0.53623587,-2.3674905,-3.0401607,-3.20326,-3.124846,-3.1884425,-3.3079758,-3.3009236,-3.2896218,-3.165925,-3.3215175,-3.3979,-2.9703844,-3.1592715,-3.3737392,-3.4925754,-3.5305014,-3.5190244,-3.5060854,-3.4727464,-3.3832293,-3.3987982,-3.4045587,-3.442061,-3.4617882,-3.475746,-3.4526381,-3.611867,-3.6608539,-3.478756,-3.4409173,-3.3884969,-3.4347959,-3.420538,-3.4242775,-3.436676,-3.460236,-3.4614663,-3.4072554,-1.7960411,-2.7286499,-3.0137262,-2.1388004,-3.2725735,-3.3969603,-3.345387,-2.4830718,-3.2253199,-3.559776,-3.651591,-3.6904209,-3.749127,-3.7750287,-3.666767,-3.5288582,-3.4437742,-3.7725294,-3.7532163,-3.3761678,-3.535228,-3.5857277,-2.2806015,-3.0393677,-3.2712436,-3.2842164,-3.5788164,-3.5744972,-3.5973535,-3.0264034,-2.3716395,-2.9800987,-2.4595373,-2.9800534,-3.3672404,-3.4064848,-2.99534,-3.2116148,-3.5973446,-3.56655,-3.5111842,-3.472702,-3.430978,-3.4402351,-2.8957517,-3.0768168,-2.9327793,-3.405719,-3.7919846,-3.5697849,-3.521385,-3.231151,-3.301954,-3.3293424,-3.3682976,-3.4194827,-3.4834597,-3.2653875,-3.4780507,-2.362443,-2.235763,-3.2550268,-3.432104,-3.4825714,-2.8322914,-3.1234806,-3.3005366,-3.3255095,-3.6034627,-3.5252457,-3.3888438,-3.297522,-2.8844018,-1.6041019,-2.6237144,-2.4349515,-3.0593472,-3.3198528,-3.5407252,-3.6487894,-3.5155997,-3.556794,-3.6543407,-3.6511111,-3.446273,-3.4551764,-3.3056169,-3.4994402,-3.6017692,-3.56932,-3.5789404,-3.4185734,-3.2439299,-3.326702,-3.3376617,-3.3408868,-3.5093627,-3.6972582,-3.5223598,-3.467895,-3.3628316,-3.3315966,-1.9052966,-1.6104704,-2.8443432,-3.1704965,-2.90372,-3.2444596,-3.2131557,-2.918874,-3.2677984,-3.4875817,-3.488622,-3.556135,-3.508389,-3.64397,-3.5481496,-3.6459818,-3.806686,-3.6276572,-3.7199295,-3.650088,-3.3904152,-3.4958076,-3.4007094,-3.480405,-3.4772592,-3.4109328,-3.4196358,-3.2947116,-3.3587632,-3.3990698,-3.4638624,-3.4279037,-3.4542003,-3.4701328,-3.5201702,-3.5242434,-3.5412362,-3.5383856,-3.4718227,-3.443912,-3.8246472,-3.8773158,-3.9979491,-3.903956,-0.8710111,-2.4954655,-2.9889643
+-1.6084033,-2.3851776,-2.9173796,-3.2667012,-3.5687747,-3.4587128,-3.522862,-3.6305723,-3.4488573,-3.613737,-1.6086298,-2.6314452,-1.1213192,-2.464143,-2.8971462,-3.2401721,-1.8790148,-1.1515373,-2.353282,-2.6982205,-3.0126734,-3.0206945,-3.1855526,-1.9062375,-2.7368526,-3.1526508,-3.3900127,-3.723165,-3.2938104,-2.9970684,-1.7815272,-1.9240434,-2.6994672,-3.0812747,-3.3680804,-3.6967635,-3.8310513,-3.6480763,-3.6999555,-3.7438216,-3.6331522,-3.5975099,-3.5925922,-3.5753188,-3.3899293,-1.8942567,-2.81617,-2.5005887,-1.530209,-2.660427,-2.996956,-3.2249959,-3.36765,-3.529351,-3.3809958,-3.5229378,-3.5570152,-3.6865165,-3.5134144,-3.5489066,-3.2095122,-3.446411,-0.26930156,-2.1294663,-2.5749369,-2.870439,-3.1889315,-3.3576865,-3.5312228,-3.6632848,-3.362432,-3.6070273,-3.633309,-3.6740284,-3.6920924,-3.740351,-3.7406402,-3.7221475,-3.7509146,-3.6666646,-3.5299888,-3.576331,-3.7686849,-3.807538,-3.7607684,-3.7608142,-1.2045766,-2.6811874,-3.0591373,-2.9806855,-3.2789555,-3.558,-3.7093625,-3.7293267,-3.7732954,-3.83005,-3.8615322,-3.8767762,-3.8436518,-3.755866,-3.7798882,-3.8741124,-3.91082,-3.9050035,-3.889454,-3.8817735,-3.926363,-3.8912094,-3.8792243,-3.8412585,-3.806809,-3.8505478,-3.8243504,-3.8064885,-3.8155198,-3.7722259,-2.316726,-2.7085962,-3.188339,-3.4139948,-3.5660434,-3.7162023,-3.8412356,-3.8005056,-3.7552028,-3.7664962,-3.7652638,-3.7835348,-3.7749987,-3.7598133,-3.7971797,-3.7456436,-3.6428006,-3.62919,-0.032273818,-1.5082442,-2.5212445,-2.699388,-1.7124314,-1.9546036,-1.9386744,-1.5457329,-2.4745922,-2.2654672,-2.5145864,-2.9055712,-3.1515727,-3.247075,-3.3041923,-3.2558157,-1.7199649,-1.7022328,-2.2185888,-2.5713468,-2.8366575,-2.872477,-2.9152625,-3.1259975,-3.321868,-3.3870945,-3.602285,-3.6781359,-3.2318077,-2.796036,-3.2959037,-0.11452785,-2.2467303,-2.534904,-2.8143466,-3.044958,-3.153182,-3.2616224,-3.3638124,-3.4324408,-3.47134,-3.463417,-3.3973136,-0.23815897,-2.0318904,-2.5205133,-2.6089582,-2.7396045,-2.872715,-2.9147563,-3.031992,-3.1516435,-3.2026834,-3.2350383,-3.2272234,-2.5571942,-2.6940851,-2.901217,-3.1156697,-3.2468638,-3.318708,-3.2721994,-3.1348476,-3.2149463,-3.2703784,-3.2714431,-3.2357793,-3.2002244,-2.8660364,-3.2389622,-3.4443727,-3.4448264,-3.2842286,-3.3022263,-3.2895665,-3.2788234,-3.2642422,-3.3199422,-3.3657055,-3.3378792,-3.2772243,-3.0678349,-2.5278943,-0.620755,-2.3351684,-2.4951162,-2.6552525,-2.7391202,-2.282668,-1.7767451,-2.5218482,-2.6737916,-2.7761166,-2.795359,-2.9402802,-3.0475988,-2.9866424,-2.9794252,-3.1640692,-3.231947,-3.2859883,-3.222951,-3.273716,-3.2780519,-3.0582206,-2.9611354,-2.870729,-3.1392293,-3.2931154,-3.4521008,-3.5021763,-3.139348,-1.0123857,-2.3603044,-1.6830856,-2.5131645,-2.7044458,-2.7204967,-2.7591162,-2.8009481,-3.009818,-3.0349746,-3.0031416,-3.0224848,-2.913837,-2.941904,-2.995426,-3.0113673,-2.880718,-3.1232011,-3.2328084,-3.313822,-3.109231,-3.0553658,-3.0408335,-2.9890366,-2.8616967,-2.8829207,-2.951332,-2.9519129,-2.8792596,-3.1689286,-3.2945497,-3.4185672,-3.4032722,-3.3754635,-3.1802185,-3.1134949,-3.3616827,-3.3912902,-3.482667,-3.4055688,-3.3109646,-3.0509238,-3.0051417,-2.9671059,-2.4957142,-2.3666685,-2.5432198,-2.9444237,-3.150744,-3.2396073,-3.5310798,-3.5169106,-3.5684817,-3.5687447,-3.6266541,-3.5162604,-3.2835977,-3.6537862,-3.7241294,-3.7316258,-3.758062,-3.7241497,-3.4194093,-3.1731162,-3.4011674,-3.4042778,-3.4825244,-3.5629883,-3.6187072,-3.5996976,-3.5314903,-3.438192,-1.5087444,-1.9793626,-2.690129,-2.9369302,-3.102168,-3.2998743,-3.3148384,-2.0274515,-2.872148,-3.1239157,-3.4347458,-3.5650725,-3.6889863,-3.7315242,-3.7090914,-3.7282896,-3.6726952,-3.7097712,-3.633709,-2.1626177,-2.4230456,-2.9283094,-3.0402257,-3.19039,-3.2646914,-3.3167603,-3.3530028,-3.2994952,-3.348554,-3.5113792,-3.5619843,-3.5911524,-3.646615,-3.6424644,-3.6915758,-3.698217,-3.7080631,-3.7044806,-3.7365594,-3.7630672,-3.7847939,-3.8097768,-3.756415,-3.6478665,-1.2837325,-2.6571915,-3.2173426
+-1.9782184,-2.7374203,-3.5660868,-4.0057936,-4.200981,-4.242653,-4.3790216,-4.337198,-1.4006277,-2.8385441,-2.654478,-3.441749,-1.1966085,-2.671839,-3.0415473,-3.446464,-3.6725512,-1.5669609,-2.0125241,-2.6578555,-3.1311007,-3.4379997,-3.4563332,-0.8544784,-2.3598168,-2.7868462,-3.257379,-3.637116,-3.9173841,-4.1104417,-4.183169,-3.3690262,-3.3513284,-3.9922428,-4.44284,-4.4615583,-4.3943,-3.9021604,-4.055601,-4.266321,-1.7919866,-2.7835176,-3.3442626,-2.2347085,-1.5330633,-2.1664288,-2.5765862,-1.6285683,-2.4240468,-2.5662367,-2.617029,-2.8089514,-2.971842,-0.6520477,-2.1972091,-2.5453439,-2.9542499,-3.252287,-2.7862937,-2.3738282,-2.0729055,-2.7386672,-0.9451687,-2.2591853,-2.4638608,-2.7442324,-3.2096496,-3.635612,-3.8246765,-3.9393127,-3.8612936,-3.8701723,-3.837152,-3.9197469,-3.9605103,-4.02428,-4.073252,-4.069727,-4.1815434,-4.177725,-3.4104753,-3.6104414,-4.1621633,-4.273119,-4.212613,-4.191262,-3.8729894,-3.5772858,-1.8247368,-1.516586,-1.8784921,-2.8000913,-3.3005955,-3.6471572,-3.8813112,-4.0680842,-4.1574025,-4.219609,-4.227418,-4.0645027,-3.8733115,-4.1937,-4.315172,-4.3210115,-4.319278,-4.34504,-4.4077277,-4.380615,-4.364298,-4.299805,-4.2117987,-4.2776747,-4.288141,-4.309872,-4.28355,-1.8076998,-1.6202612,-1.6587217,-2.1833801,-2.3588562,-1.7689742,-2.6686573,-3.1663344,-3.5735428,-3.780904,-3.9302046,-3.9989347,-4.042223,-4.065812,-4.064554,-4.0905595,-4.0108347,-3.9131162,-3.6266232,-2.500904,-0.53424454,-1.7554739,-2.010371,-2.1300082,-2.139628,-2.1673942,-2.1550653,-1.5615416,-1.3051387,-2.2011557,-2.4867816,-2.7248936,-2.9399595,-3.152112,-2.1900516,-1.7948467,-1.6348678,-1.9488426,-1.9705578,-1.2667207,-1.9680268,-2.2666495,-2.5459661,-2.9378507,-3.2587583,-3.616631,-3.8438647,-0.6252168,-1.7344092,-2.5020475,-2.021695,-2.2673454,-2.34272,-2.4427488,-2.7549753,-3.0142999,-3.2525291,-3.505968,-3.7162123,-3.7683454,-3.791153,-3.7383676,-0.49998024,-0.974806,-1.9313926,-2.071948,-2.2269301,-2.4355435,-2.588962,-2.6905386,-2.8403854,-2.9970818,-3.1772273,-3.2798877,-0.9494692,-2.037232,-2.434629,-2.6733224,-2.835814,-3.0502038,-3.2220595,-3.1968963,-3.3675532,-3.4941254,-3.590506,-3.6601102,-3.6818204,-2.6955771,-3.0501218,-3.4979768,-3.684097,-3.7399344,-3.7384133,-3.775886,-3.7753508,-3.8652487,-3.9433856,-3.9880323,-3.8246026,-3.8987498,-3.8759913,-0.70270675,-1.4089278,-2.1138878,-2.3151064,-2.389733,-2.1063318,-2.2730758,-1.988978,-2.0745902,-2.3639967,-2.6396604,-2.7978497,-2.9980013,-3.2372022,-3.246472,-3.2417755,-3.5003285,-3.5920095,-3.684229,-3.6983757,-3.7571502,-3.7876613,-2.619243,-2.5390756,-2.8187537,-3.1473422,-3.633921,-3.920672,-4.0455956,-3.9231076,-1.1633137,-1.9480671,-2.171053,-2.5103855,-2.714314,-2.5487318,-2.7523851,-2.7651994,-2.5785227,-2.8371136,-2.9641788,-3.0205605,-2.9885159,-2.955993,-3.1781964,-3.355908,-3.2079492,-3.2447412,-3.503542,-3.5318718,-3.4727516,-3.5043154,-3.4809666,-3.500545,-3.2577062,-3.417331,-3.5296545,-3.762009,-3.8206313,-3.8948636,-4.1249566,-4.313678,-4.3090935,-4.1858034,-3.6932225,-3.5193422,-3.8696508,-3.772172,-4.018449,-4.1162133,-4.1351223,-3.8545287,-3.7525477,-3.7663836,-3.8770995,-3.5934627,-3.1235242,-3.6346054,-4.115122,-4.221669,-4.3275113,-4.472615,-4.50808,-4.58698,-4.4963894,-4.502125,-3.2117105,-4.0651298,-4.408822,-4.540697,-4.585279,-4.6334705,-4.238842,-3.554666,-3.7196383,-4.1443367,-4.3507957,-4.4399004,-4.5590053,-4.402463,-4.411708,-4.3858757,-1.2099398,-2.738093,-3.0364983,-3.253022,-3.3968508,-3.6031322,-3.8138685,-1.4266013,-2.7416675,-3.0405176,-3.3289046,-3.7042003,-4.0118446,-4.1830683,-4.329933,-4.443021,-4.4900017,-4.4022827,-4.3634615,-1.0647913,-2.5353222,-2.8384347,-2.9555612,-2.734624,-3.0166597,-3.2489867,-3.3920574,-3.3925374,-3.593645,-3.8745475,-4.1175776,-4.2069397,-4.242061,-4.1859217,-4.226474,-4.286346,-4.3439813,-4.33725,-4.325146,-4.291584,-4.54797,-4.6238155,-4.6449127,-4.4045477,-3.7598653,-4.415535,-4.5540504
+-3.0797255,-3.710044,-4.404896,-4.690055,-4.7125015,-4.7005663,-4.70049,-4.6491003,-1.740632,-3.2445476,-3.705472,-4.155491,-2.0550065,-3.3087754,-3.8872821,-4.2872353,-4.477745,-4.1439266,-4.281334,-3.4204302,-4.136993,-4.3391523,-2.3579926,-1.4708806,-2.7500157,-3.2353766,-3.782631,-4.096116,-4.302784,-4.471734,-4.4688296,-4.243331,-3.9771762,-4.1326523,-4.5802526,-4.6028786,-4.54012,-2.2576041,-1.9446589,-3.163845,-3.6495426,-3.990036,-4.21047,-3.743297,-0.7593722,-1.9877814,-2.2116616,-2.280748,-2.5222926,-2.7718234,-3.1255589,-3.436,-3.6487231,-1.7727536,-2.242517,-2.064929,-2.963142,-3.2835522,-3.5021672,-3.4153352,-1.0305033,-2.5030196,-1.3796419,-2.6008308,-2.6812177,-2.2866328,-2.7627735,-3.2576315,-3.6177034,-3.7433126,-3.896738,-3.5620952,-3.836061,-4.090275,-4.1634755,-4.2705755,-4.317123,-4.3496294,-4.4251537,-4.4748745,-1.8174505,-1.8049284,-2.9084892,-3.4776134,-3.8649817,-4.0850635,-4.2102327,-4.1690073,-1.3565347,-2.6844435,-2.4200692,-3.1135464,-3.6154037,-3.8794308,-4.097771,-4.2492867,-4.333124,-4.3793287,-4.4141817,-1.9780082,-1.645691,-2.601077,-3.227995,-3.7121964,-4.001302,-3.4523396,-3.9724555,-4.2310534,-4.299706,-4.3209295,-4.335696,-4.4556513,-4.454541,-4.4819446,-4.483078,-4.4719667,-2.6012073,-1.6812817,-2.888588,-2.2968297,-1.7383095,-2.4823477,-3.0537791,-3.5875278,-3.920645,-4.141857,-4.28654,-4.3744297,-4.3767643,-4.413452,-4.2654705,-4.07372,-3.8493762,-3.0537243,-3.1120484,-1.5553033,-0.95301956,-2.3600426,-2.8519044,-3.0285573,-2.5497775,-2.810603,-0.9775745,-2.402494,-2.8168812,-3.0210695,-3.286418,-3.5111885,-3.695059,-2.2153459,-1.9089423,-2.5409622,-1.8963364,-2.6620684,-2.8563817,-3.1110432,-3.291347,-3.5167012,-3.7615023,-3.9079554,-4.1066294,-4.251633,-2.945643,-2.6629577,-3.2183735,-2.8615441,-3.1416235,-3.427503,-3.6134892,-3.9810028,-4.158868,-4.310072,-4.3951883,-4.5171165,-4.52105,-4.544862,-3.4532156,-0.7678806,-1.4837109,-2.4812746,-2.666359,-2.79772,-2.9806147,-2.4500823,-2.8573196,-3.0701838,-3.3723936,-3.547789,-3.598627,-1.2139736,-2.2731707,-2.8636057,-2.9922764,-3.3225086,-3.5904918,-3.790748,-3.8477166,-3.918107,-4.0434675,-4.118756,-4.1984515,-4.1895175,-2.1297612,-1.7341896,-2.9540493,-3.2405233,-3.2786055,-3.5311902,-3.7408729,-3.9053438,-4.011703,-4.0975275,-4.179635,-4.2082276,-4.2161717,-4.1388674,-3.7351642,-0.7917343,-2.4068427,-2.282971,-2.8041582,-1.411997,-2.5236096,-2.581318,-2.9124358,-2.4168825,-2.9020405,-3.079886,-3.2660277,-3.5137174,-3.5751777,-3.7449455,-3.5724797,-3.9131413,-3.9625673,-4.0141373,-3.9694004,-4.0173244,-3.9621725,-3.8993397,-3.8116608,-4.128174,-4.359069,-4.5357223,-4.4520617,-4.2665434,-1.8165989,-1.4909694,-2.6964703,-3.096098,-3.170189,-2.1979098,-2.9039438,-3.0964282,-2.836843,-3.2230225,-3.4839365,-3.5686128,-3.4946914,-3.5597792,-3.8841534,-3.9951649,-3.6071496,-3.761833,-3.905144,-3.9665766,-3.8316183,-3.8959548,-3.8394508,-3.9750032,-3.924519,-3.934751,-4.06545,-3.7324774,-4.033237,-3.1256804,-3.7412415,-4.178527,-4.314762,-4.347303,-4.033904,-3.9965363,-4.4511647,-4.14351,-4.4013767,-4.4068,-4.4196305,-4.253031,-4.0344357,-3.9901795,-4.2574725,-4.2501,-4.2505727,-4.3720613,-4.6346264,-4.676102,-4.4813733,-4.9823575,-4.873635,-4.938179,-4.8553963,-4.6886854,-1.5399134,-2.94702,-3.4590554,-3.8997927,-4.2225194,-4.4029655,-4.298662,-4.0649676,-4.3095164,-4.429867,-4.6043715,-4.717455,-4.8015246,-4.635188,-4.683378,-4.6291428,-4.231083,-4.4334335,-4.5313206,-4.758621,-4.1549892,-4.6738715,-4.7792187,-4.463266,-4.796875,-4.8962274,-4.871848,-4.8597975,-4.938414,-4.66904,-4.829091,-4.803779,-4.9046597,-4.7617097,-4.7220535,-1.1822358,-2.395298,-2.8761208,-3.4114025,-3.1681206,-3.5398202,-3.3388085,-3.746438,-3.2935894,-3.8437707,-4.122047,-4.3975863,-4.45984,-4.51851,-4.522731,-4.567636,-4.629934,-4.689254,-4.681198,-4.5865393,-4.630103,-4.8491964,-4.809546,-4.8093166,-4.713266,-4.7958174,-4.8383656,-4.770337
+-3.8474088,-3.8264756,-4.097125,-4.551889,-4.557147,-4.577053,-4.477665,-1.820785,-3.150525,-3.6277523,-3.92156,-4.037609,-4.0032034,-3.9928608,-4.2034593,-4.5090065,-4.622036,-4.3633757,-3.408614,-2.0662112,-3.2633548,-2.357367,-2.05391,-3.1040668,-3.686061,-4.0469437,-4.4562,-4.4622717,-4.5194063,-4.7180448,-4.7046494,-3.7842155,-3.722093,-3.9983664,-4.2859297,-4.3822536,-3.5228846,-2.0815878,-1.7832676,-2.9599118,-3.1228983,-3.3630934,-3.5308442,-1.3967218,-2.4911602,-2.7610579,-3.490365,-3.3225121,-3.6308684,-3.6965756,-3.7665982,-3.86486,-2.7951262,-3.415862,-2.3102355,-2.2779138,-3.0157173,-3.5354583,-3.674873,-2.7430005,-1.6567574,-2.2479837,-2.5815134,-3.1789784,-3.1943572,-2.6839952,-3.2366433,-3.525576,-3.6414895,-3.614342,-3.735581,-2.3927653,-2.3467505,-2.793474,-3.252445,-3.670399,-3.825654,-3.8384683,-3.9903736,-4.0920043,-2.7823262,-2.8287435,-3.724885,-3.9939294,-3.0932183,-2.492702,-2.2261188,-2.4046512,-2.3513348,-2.6749144,-3.3066523,-3.391316,-2.7567692,-3.2600574,-3.666728,-3.8563612,-3.9654627,-3.3709927,-3.2399907,-3.029282,-2.4381163,-2.5103068,-3.3655145,-3.500471,-3.7290132,-4.0162163,-4.1096773,-2.511056,-2.2047126,-2.7802396,-3.3087525,-3.6595445,-3.5425038,-3.8649712,-3.4250846,-3.6843007,-3.444514,-3.1528373,-1.7238725,-2.0695643,-2.4196093,-2.4662013,-3.024419,-3.2678342,-3.02282,-2.9198499,-3.18228,-3.157857,-2.6483288,-3.0354671,-3.3524384,-3.0275502,-2.6897116,-3.2964568,-2.8352861,-2.5514934,-1.8441356,-2.6123095,-2.5192895,-2.8975117,-3.1942348,-2.5676315,-2.5717547,-2.9929552,-3.4139261,-3.452509,-3.4332469,-3.4606333,-3.3780112,-2.787685,-3.0107331,-2.8471365,-2.783702,-3.0640266,-3.1696372,-3.2612917,-3.1556835,-3.478478,-3.6043115,-3.7088468,-3.1257524,-3.255787,-3.640741,-3.6734834,-3.775084,-2.4372628,-2.4797611,-2.94809,-2.2570236,-2.987618,-3.3822324,-3.6058335,-3.7322261,-3.889688,-3.9086642,-3.9035404,-1.984085,-1.8716534,-2.377807,-2.7721453,-3.0339715,-3.1536596,-3.2199554,-3.221432,-2.8349938,-3.2433205,-3.5469677,-3.6430552,-3.5771632,-3.6161397,-2.818549,-3.2918735,-3.6647658,-3.837967,-3.9780817,-4.0212326,-3.9473233,-4.0183463,-4.1394997,-4.265457,-4.328516,-4.22972,-3.74076,-2.369399,-3.3678875,-3.6854868,-3.848617,-3.883685,-3.9980068,-4.0147915,-4.077712,-4.1751976,-4.1672525,-4.11346,-4.189065,-4.103529,-2.0088654,-1.9260813,-2.9663022,-3.2784126,-3.420769,-3.1593692,-3.3194585,-1.6539208,-3.0425625,-2.8542202,-2.2708812,-3.135847,-3.3486562,-3.5379853,-3.627491,-3.6301026,-3.3783808,-3.6309485,-3.666172,-3.7011728,-3.6862297,-3.6916447,-3.7152343,-3.7122107,-3.7742026,-3.9536152,-4.11807,-4.15407,-4.0661473,-3.9511218,-2.517617,-1.5997955,-2.9777026,-3.563877,-3.7841215,-2.9786153,-3.286,-3.4927998,-3.2538915,-3.654961,-3.8937078,-3.9452186,-3.937009,-3.9370863,-4.0758033,-4.0800123,-3.855636,-3.857596,-3.8452055,-3.8904505,-3.8741026,-3.9935803,-4.139225,-4.1963806,-4.025477,-4.03876,-4.0927734,-3.7633777,-3.8835683,-3.9459608,-4.190834,-4.316512,-4.34482,-4.361921,-4.279123,-4.0207615,-4.2005386,-4.2860584,-4.3964634,-4.4837327,-4.5567355,-4.355773,-4.080773,-4.0653405,-4.2371674,-4.066311,-3.924061,-3.9671116,-4.3338847,-4.384125,-4.3105574,-4.6958504,-4.644327,-4.648032,-4.5708013,-4.456588,-1.7465378,-3.3682508,-3.624538,-3.7919002,-4.118278,-4.1883287,-4.0544605,-3.8710194,-4.0705404,-4.314126,-4.478445,-4.5911956,-4.60645,-4.515691,-4.5633144,-4.5229325,-4.304144,-4.432218,-4.19635,-4.321456,-4.41346,-4.6585374,-4.5596647,-4.2729664,-4.7225027,-4.901595,-4.8928485,-4.8603096,-4.9318476,-4.687647,-4.838756,-4.8271112,-4.8061194,-4.6216207,-4.571526,-1.0484186,-2.7262464,-3.2750576,-3.4430885,-2.6179314,-2.7289386,-2.3410354,-3.1092398,-2.1702132,-3.2512336,-3.4027226,-3.5668106,-3.6756816,-3.8490627,-3.8806736,-3.9076095,-4.0388994,-4.2426305,-4.3266373,-4.27019,-4.338372,-4.507488,-4.526919,-4.573639,-4.576154,-4.6657314,-4.7663116,-4.741061
+-1.190747,-1.6890513,-2.133164,-1.9987205,-1.7025952,-1.5761658,-1.4627112,-1.624836,-1.6489521,-1.279454,-1.5556335,-1.5308841,-1.1931716,-1.1372974,-1.115967,-1.7998343,-2.2796807,-2.0878038,-1.9388267,-1.8552313,-2.0812063,-2.2625024,-2.2899299,-2.3420236,-2.2326477,-2.283541,-2.3670547,-2.35921,-2.411311,-2.4565263,-2.5255818,-2.5573635,-2.5072145,-2.5977616,-2.494442,-2.4328446,-2.5773754,-2.6180906,-2.6676378,-2.538772,-2.9684668,-2.7903564,-3.0158472,-2.7979627,-2.7583811,-2.7464113,-2.7776184,-2.8096933,-2.6469462,-2.738274,-2.7379146,-2.2058208,-2.4106808,-2.5321894,-2.0901976,-0.5226062,-0.7425055,-1.4606891,-1.7443813,-2.0120854,-0.6432556,-1.1291467,-1.620986,-0.8126502,-1.0681123,-1.3181577,-1.6681913,-1.9025513,-2.1319656,-2.1606348,-1.5602626,-2.0905287,-0.17505997,-0.94663715,-2.012559,-1.6736144,-1.9672633,-1.9517672,-2.269229,-0.24317107,-0.8842522,-1.3798062,-0.16753866,-0.8842722,-1.7445909,-0.5108166,-1.1887683,-1.4027592,-1.5755128,-1.8142905,-1.8748964,-2.1444933,-2.2720706,-1.4984484,-1.2299756,-1.2255857,-1.482273,-0.7783658,-1.2547622,-1.6179214,-1.7422836,-1.4845902,-0.94877076,-0.42796236,-1.1499859,-1.5420836,-1.6914481,-1.6744734,-1.8559146,-1.9762434,-1.2477915,-1.3175532,-1.7259935,-0.20614845,-0.7187287,-1.1965528,-1.4450482,-1.7421335,-2.0500014,-2.321403,-2.4313045,-2.2656178,-1.6158867,-1.8899814,-1.9859291,-1.4076878,-1.6684859,-2.0658379,-2.4386907,-2.295679,-2.23733,-2.286508,-2.469467,-2.4936461,-2.4141467,-2.7733529,-1.7279395,-2.3481112,-2.6288707,-1.6050832,-2.409096,-2.5537786,-2.6305604,-2.7521133,-2.746622,-2.6556718,-1.996364,-2.692764,-2.6419404,-2.787676,-2.3163633,-2.7626576,-2.697349,-2.823319,-2.8942437,-3.0499,-2.8110533,-2.8438993,-2.9850445,-3.094636,-2.095676,-2.4679112,-2.9311225,-3.1056118,-3.0122585,-3.0053887,-2.969923,-2.9664161,-2.8387578,-3.034766,-2.8406124,-2.598526,-2.8813794,-2.9566069,-3.0655742,-2.548767,-2.8154378,-1.245194,-2.1240656,-2.6830907,-2.953683,-3.0905194,-3.2431452,-3.1485538,-3.2318747,-2.15435,-1.8074082,-2.8562326,-2.6921477,-2.8834224,-3.1248648,-3.3855371,-3.27992,-3.2804284,-2.997315,-2.9639144,-3.3742266,-3.2653027,-2.5216901,-3.0911982,-2.975641,-3.070241,-3.266352,-2.9206195,-3.191362,-1.8800107,-2.6016483,-3.0667076,-3.018578,-3.012207,-3.1863446,-3.2271209,-3.2926147,-1.8420659,-2.2556746,-2.5442348,-2.8043315,-3.0075622,-3.1865408,-3.357902,-3.3071742,-3.34584,-3.4732332,-3.462635,-3.2688737,-3.5001993,-3.6587124,-3.7076845,-3.4059463,-3.3875513,-3.250389,-3.1230488,-3.1810613,-3.186759,-3.1946635,-3.062937,-3.1396766,-3.1064172,-3.02011,-2.9683826,-3.023841,-2.3826246,-2.4099927,-2.2434623,-2.2951367,-2.3606272,-2.2374964,-1.9932443,-2.0191722,-1.5455908,-1.5638728,-1.7775337,-2.102811,-2.2742865,-2.2667263,-2.1371932,-2.1207786,-2.267222,-2.309396,-2.3040886,-2.3330548,-2.3157775,-2.125093,-1.7189282,-2.04007,-2.0029302,-2.0970688,-2.2592843,-2.1933417,-1.3589566,-1.8291914,-1.872671,-1.8458896,-1.814211,-1.8715074,-1.9725474,-2.0066867,-1.8839763,-1.8526175,-1.8684722,-1.9003874,-1.9895049,-1.8959057,-1.7787955,-1.5984071,-1.6705059,-1.7582027,-1.8380935,-1.8773202,-1.8583585,-1.8021578,-1.715901,-1.5353515,-1.4558636,-1.6225032,-1.5480565,-1.6107368,-1.4868226,-1.566596,-1.6891681,-1.7781512,-1.845386,-1.8591228,-1.8611192,-1.2869543,-1.3480273,-1.7864865,-1.8555136,-1.8701904,-1.8416288,-1.7415745,-1.6074877,-1.6092037,-1.6251693,-1.6824192,-1.439637,-1.5590329,-1.4960351,-1.5281515,-1.5288424,-1.6269888,-1.5033993,-1.2663416,-1.3061146,-1.5994989,-1.493584,-1.4895544,-1.5504433,-1.4864036,-1.6061003,-1.7082578,-1.7943975,-1.7684062,-1.8548118,-1.7554885,-1.8029081,-1.8720509,-1.6950115,-1.4328468,-1.4856465,-1.2548894,-1.2013015,-1.5068986,-1.6290108,-1.6313202,-1.625692,-1.6687766,-1.6365987,-1.5086128,-1.387058,-1.074072,-1.4377041,-0.8982557,-0.8734676,-1.4618707,-1.7203999,-1.382944,-1.2581409,-1.3307949,-0.78598726,-0.7975609,-1.2895082,-1.038033,-0.72363734,-0.6459949
+-0.90258616,-1.0331972,-1.4289268,-1.9076755,-2.1487231,-1.9633628,-1.81687,-1.9208852,-2.285692,-1.9206437,-2.1190147,-2.3857012,-2.0754085,-1.8838083,-1.9082836,-1.2755954,-1.0995398,-1.3538738,-1.5889472,-1.7562135,-1.9100252,-2.0163603,-2.1120787,-1.757362,-2.3427534,-2.3283365,-2.167546,-2.2961347,-2.3246462,-2.2702386,-2.3320203,-2.305829,-2.2934408,-2.3785758,-2.5461786,-2.6089082,-2.4846995,-2.615169,-2.5750837,-2.3308725,-2.1412804,-2.0331416,-2.2860408,-2.510347,-2.5568116,-2.3867104,-2.4706004,-2.614389,-2.5892563,-2.5631804,-2.5624294,-2.7048364,-1.186339,-2.0855517,-1.2077805,-1.570918,-1.7162935,-1.9957498,-1.6354673,-1.2466856,-0.06374128,-0.29840508,-1.0157751,-0.3381245,-0.6023668,-1.2058138,-1.5699503,-1.6820587,-1.9431707,-2.1435163,0.20644605,-0.5928595,-0.10683209,-0.7819514,-0.85069674,-0.75676376,-1.411909,-0.37334022,-1.3947456,-1.4734831,-1.8268977,-1.9456214,-0.064956784,-0.93161076,-1.4965996,-1.2372574,-1.5147392,-1.5538691,-1.8307915,-2.0336266,-1.4675884,-1.9537867,-1.5018424,-1.947343,-1.432068,-1.8918868,-2.0509915,-0.72538805,-1.0699788,-1.3115445,-1.2046907,-0.2962121,-0.4401397,-0.7940027,-1.2240651,-1.5372105,0.1791305,-0.55898124,-1.1636415,-1.5412394,-1.7668885,0.002209019,-1.5469471,0.09678307,-0.9039892,-1.4976369,-1.7761115,-1.4756016,-1.8186394,-2.017934,-1.5242879,-1.0978365,-1.5334818,-1.8400532,-2.258128,-2.003096,-2.226142,-2.3095527,-2.4741402,-2.7598429,-2.754753,-1.596395,-0.108716235,-1.5185398,-1.6706145,-2.120617,-2.3962827,-2.2501612,-2.6945047,-0.19270277,-1.7267953,-1.9133097,-2.187479,-2.5417519,-2.6441898,-2.7539105,-2.6870904,-3.01057,-2.930408,-3.144526,-3.1600056,-3.32693,-3.2006052,-3.1429589,-3.220159,-3.2500346,-0.528274,-2.1641707,-2.4064894,-1.183539,-1.9918422,-2.326642,-2.3871527,-2.6914415,-2.8284245,-2.7576818,-2.9054458,-2.490793,-1.9819447,-2.4664345,-2.7269754,-2.8000484,-3.1079755,-2.8001986,-3.0598202,-1.6351285,-1.7010067,-2.1507816,-2.2552323,-2.718723,-2.900324,-2.9883692,-3.0857809,-3.2153244,-3.198193,-3.0849197,-1.9532231,-2.6781495,-2.6040435,-2.6848884,-2.8594117,-3.0632834,-3.2357543,-2.8661675,-2.9515188,-3.1438885,-3.3388858,-3.3944402,-3.3418741,-3.4406524,-3.3689184,-3.1989405,-3.2898755,-3.4750767,-3.5964837,-3.4593253,-3.3689928,-3.449438,-2.7332487,-3.187927,-3.2539442,-3.1206965,-3.2856994,-2.8445377,-2.9823358,-3.256449,-3.4083798,-3.4904,-3.5876274,-3.6551473,-3.5619879,-3.5554667,-3.756278,-3.6571805,-3.4840758,-3.795106,-3.8068576,-3.7135537,-3.7749953,-3.7280693,-3.4435735,-3.4344807,-3.6224537,-3.5304775,-3.4843965,-3.3220985,-3.291701,-3.251514,-3.2930417,-3.3210564,-3.2684164,-2.526495,-2.398936,-2.4814582,-2.5599232,-2.6020153,-2.5688477,-2.5639892,-2.5151453,-1.9322951,-1.9660927,-2.0489154,-1.9897426,-1.8902631,-1.8680358,-1.8782111,-1.9060715,-1.9249364,-1.9240569,-1.9256324,-1.930834,-1.9113554,-1.9370022,-1.7172095,-1.8329828,-1.9229473,-2.0442913,-2.0859237,-2.0404184,-1.907677,-2.0847054,-2.0825262,-2.166246,-2.3083174,-2.3473444,-2.4040463,-2.3268003,-2.262507,-2.1994429,-2.0878358,-2.0159564,-1.9921051,-1.9736036,-1.920399,-1.9226955,-1.9300181,-1.9682161,-1.9545836,-2.0027442,-2.0505166,-2.0439215,-2.022193,-1.7534918,-1.7691977,-1.8133014,-1.7812877,-1.8573494,-1.9297909,-2.0980892,-2.0843537,-2.197248,-2.3289986,-2.3531435,-2.3200943,-2.0429277,-1.9430183,-2.394475,-2.3709173,-2.3766441,-2.3919911,-2.3797417,-2.347014,-2.0425024,-1.9657174,-1.9294318,-1.7252703,-2.036456,-2.158424,-2.252611,-2.2683053,-2.3048885,-2.1033068,-1.9147055,-2.035256,-1.9634413,-1.7672046,-1.6369072,-1.6186604,-1.80549,-1.935689,-2.103431,-2.171337,-2.1872332,-2.1625972,-2.106412,-2.1071076,-2.1899338,-2.0794945,-1.985552,-1.7174305,-1.8478498,-1.9770325,-2.1052108,-2.0435033,-2.0506067,-1.8932536,-1.9437252,-1.9752833,-2.020185,-1.680489,-1.3222582,-1.8744735,-1.4901947,-1.4077414,-1.830317,-1.9852418,-1.5442567,-1.5542887,-1.4476671,-1.1393808,-1.2784162,-1.4600371,-1.5871297,-1.6251086,-1.9287935
+-1.0518234,-1.3916792,-1.5746632,-1.6988426,-1.7384259,-1.896988,-1.9305888,-1.9169172,-2.1953547,-1.9964286,-2.0512176,-2.0953584,-1.9510719,-2.019534,-1.9868375,-0.74570984,-2.0027535,-2.2751832,-2.0042958,-1.9679502,-2.040342,-1.9935719,-2.01864,-1.3824583,-0.9396796,-1.7966574,-2.106181,-2.2715588,-2.0816107,-1.913695,-2.0213413,-1.9853255,-2.1190875,-2.1544385,-2.2654128,-2.4381337,-2.3647208,-2.375469,-1.9628476,-2.1056352,-2.111772,-2.1006427,-2.0983498,-2.245543,-2.2153559,-2.26345,-2.230898,-2.3017447,-2.3038268,-2.3268023,-2.3329306,-2.4599843,-0.77899075,-1.9991764,-2.133691,-1.7022825,-1.9804405,-2.1714382,-2.1286855,-1.8753928,-1.0335618,-1.7520416,-1.951938,-1.472799,-1.9657,-2.1334555,-2.2043352,-2.0478292,-2.0898337,-2.2153146,-1.0835696,-2.0256298,-1.8044035,-2.0810676,-0.31224445,-1.5450795,-1.8915435,-2.029556,-1.8555981,-2.1435184,-2.382576,-2.4548523,-0.5213844,-1.6707968,-1.8461062,-2.0774164,-2.453443,-2.2897825,-2.2937841,-2.4348586,-2.2936335,-2.1074095,-2.1474307,-2.4218445,-1.7934793,-2.6722527,-2.4325666,-0.34973767,-1.8826319,-1.8121277,-1.4687052,-0.10808127,-1.1483512,-1.8300306,-2.129476,-2.1588953,-2.1596568,-2.2152648,-2.3745563,-2.4030287,-2.6634064,-2.982386,-2.0808911,-0.73890525,-1.999519,-2.3478184,-1.0193688,-1.4548213,-2.1701586,-2.2167711,-2.1349385,-2.3888175,-2.7198415,-2.864034,-3.1861916,-1.7850422,-2.5843492,-2.873117,-3.1030185,-3.229488,-3.4719312,-0.082778275,-1.8241976,-2.0686436,-2.426043,-2.6737065,-2.811778,-3.0143383,-3.170015,-3.0192175,-2.430024,-2.0605428,-2.505097,-2.830331,-3.1957889,-3.3778625,-3.4463005,-3.444873,-3.1807303,-3.5454538,-3.653804,-3.6996717,-0.7820528,-2.6159945,-2.8826058,-3.0171237,-1.7543201,-0.6402355,-2.1466362,-0.98542446,-2.2051458,-2.4262052,-2.2692332,-2.7549746,-3.0233798,-3.0107284,-2.982349,-2.983792,-3.2218564,-2.8166368,-3.504568,-3.632512,-1.6052536,-2.7289007,-2.9162786,-1.3494576,-2.4787722,-2.7699893,-3.0120027,-3.115169,-3.143653,-3.2207549,-3.3819873,-3.6551385,-3.5875483,-3.5900981,-2.7429075,-3.2271037,-2.987485,-3.1651487,-3.2819896,-3.282382,-3.458596,-3.3460956,-3.2981515,-3.2665558,-3.3850448,-3.824296,-3.7196264,-2.0493705,-2.7086363,-2.918227,-3.1009707,-3.2906773,-3.521762,-3.4971235,-3.4534755,-2.3162518,-2.9737802,-3.1651742,-3.362958,-3.2048326,-3.3964183,-3.432672,-3.6284175,-3.624281,-3.7287252,-3.803942,-3.8065414,-3.8199363,-3.8036091,-3.63863,-3.7161958,-3.7617192,-3.5759358,-3.6384754,-3.7874935,-3.7380598,-3.808893,-3.7436686,-3.464227,-3.4115427,-3.7446046,-3.6651063,-3.5876727,-3.453662,-3.50464,-3.4305568,-3.4747863,-3.4852767,-3.428874,-2.2252445,-2.6805654,-2.7332428,-2.7771778,-2.7346263,-2.8049402,-2.803039,-1.6147406,-1.7985312,-1.929383,-2.1397984,-2.2949252,-2.149516,-1.9144756,-1.9108601,-2.0137372,-2.1219108,-2.2449546,-1.9972922,-1.9980851,-2.0616856,-1.9920598,-1.7576909,-1.9110614,-2.1950538,-2.2925718,-2.2557518,-2.0941403,-1.8773746,-2.0011075,-1.9306058,-2.0987816,-2.1314995,-2.201188,-2.1766534,-1.9480487,-2.0441506,-2.1159382,-2.0534353,-2.021381,-2.0768454,-2.0120153,-1.798685,-1.7098607,-1.7369901,-1.7630646,-1.760697,-1.7970153,-1.8988367,-1.945259,-1.9493521,-1.6822654,-1.8500465,-1.8111854,-1.8683804,-1.9728364,-2.0194442,-1.949138,-1.976607,-2.0358903,-2.086934,-2.082674,-2.073887,-1.963276,-1.999189,-2.2722635,-2.3540218,-2.3454392,-2.1982982,-2.260701,-2.2673416,-2.263352,-2.315429,-2.3287551,-2.0255108,-1.9984664,-2.246488,-2.2579055,-2.25758,-2.2539024,-2.1543403,-1.8224416,-1.8820827,-1.8787221,-2.1438313,-1.8906888,-1.8244687,-2.0042202,-2.1636732,-2.20116,-2.176591,-2.1566725,-2.2302768,-2.204924,-2.2351277,-2.2496116,-2.2955163,-1.9485238,-1.7211295,-1.9415897,-2.2808824,-2.455721,-2.583097,-2.35223,-2.1137438,-2.1742194,-2.1188693,-2.1297283,-2.040054,-1.5294102,-1.8603245,-1.5653757,-1.5610775,-1.8939728,-2.1826413,-1.7977861,-1.4398316,-1.7819415,-1.8758467,-1.87249,-2.036693,-1.9355179,-1.8992475,-1.8291247
+-1.1724869,-1.4186639,-1.6656855,-1.965356,-2.075389,-2.333717,-2.6285248,-2.888558,-3.143648,-3.0028677,-3.4018,-3.1486182,-3.1388762,-3.0568006,-2.1628017,-2.1355457,-2.5754173,-2.0292983,-2.6181116,-2.6710691,-2.7057655,-2.7621613,-2.7452989,-2.5937452,-2.734841,-2.768727,-1.5077002,-2.667552,-2.5070343,-2.6337008,-2.630567,-2.7798254,-2.721172,-2.9174528,-2.956955,-3.1164937,-3.2084255,-3.1202414,-1.2672663,-2.6636205,-2.621922,-2.5027971,-2.7570434,-2.629531,-2.746235,-2.929115,-3.0644007,-3.1483145,-3.1026187,-3.127478,-3.1232653,-3.0634203,-1.5011142,-2.6011968,-1.7394389,-2.502231,-2.613897,-2.5904367,-2.5368364,-2.574394,-1.9839629,-2.0832362,-2.4612164,-1.8659664,-2.3145523,-2.3170576,-2.5029588,-2.4011173,-2.498921,-2.8473954,-3.116973,-3.3327255,-1.832995,-2.5194368,-1.1333555,-2.2170794,-2.3991957,-2.438484,-1.8218777,-2.2734137,-2.5551338,-2.7958326,-2.1028275,-2.6105866,-2.7817209,-3.1946683,-3.3238287,-3.5663903,-3.176766,-3.4862418,-2.469934,-3.2828045,-3.3208869,-3.3692925,-3.6457882,-1.5606173,-2.0618148,-1.4643337,-2.367225,-2.561882,-2.1178465,-2.3232803,-2.616136,-3.041881,-3.241716,-1.8630286,-1.8203107,-1.9771978,-2.7310252,-2.9264166,-3.2885978,-3.3241427,-2.9352083,-1.8081453,-2.8054323,-3.2958589,-1.9300869,-2.6765666,-2.5928946,-2.5324507,-3.1727662,-2.2502995,-1.9617525,-2.8166237,-0.89148045,-2.2521853,-2.7784421,-3.1259966,-3.3381782,-3.4416218,-1.1374079,-2.3923535,-0.9812183,-2.385646,-2.61736,-2.9005804,-1.9369098,-2.46171,-2.7787886,-2.6609972,-2.3925436,-2.5713425,-2.808418,-2.9712076,-3.1627114,-3.398272,-3.4730625,-2.1089578,-2.6430292,-3.2222693,-3.5545375,-3.7317367,-1.7754631,-2.9806805,-3.2043965,-3.4547024,-3.3245013,-1.1071093,-2.3755589,-2.7685006,-3.0443337,-3.1404452,-3.1473591,-3.396038,-3.5457482,-3.5988216,-3.4498034,-3.6226943,-1.5430405,-2.6719537,-3.1084466,-3.0950146,-3.3256269,-3.4657574,-3.2259793,-1.7458245,-2.7784781,-3.079194,-3.4003882,-3.6351874,-3.7080328,-3.7562418,-3.7640836,-3.9698944,-3.9602742,-3.8967466,-0.9324791,-2.6143892,-3.1099606,-3.2428033,-3.2914834,-3.385796,-3.5689516,-3.6033792,-3.4922504,-3.714682,-3.8433857,-4.067651,-4.0012627,-3.7076333,-2.2710137,-3.3249767,-2.9263396,-3.4882822,-3.7267597,-3.8792565,-3.7339525,-2.7077584,-3.0155191,-3.5000849,-3.8251529,-2.4175155,-3.3520923,-3.5467114,-3.7270844,-3.7587833,-3.8317027,-3.94576,-4.0352263,-3.9664688,-4.1330767,-4.189295,-4.174611,-4.3054504,-4.3273745,-4.297235,-4.342344,-4.3496203,-4.2913275,-4.2890472,-3.6925793,-3.290586,-3.7871916,-3.82709,-3.8327942,-3.3980684,-3.5351026,-3.4102905,-3.5165854,-3.6217537,-3.3657162,-2.541794,-2.8681269,-2.9811244,-2.9398708,-2.9599,-3.0097744,-3.0531933,-3.0727017,-3.3834534,-3.635821,-3.6534278,-3.79266,-3.6087174,-3.4602623,-3.621964,-3.7602773,-3.9831314,-3.8710923,-3.5294056,-3.6540697,-3.6215253,-3.4518533,-3.0976279,-3.1123612,-3.361442,-3.2749033,-3.5707686,-2.6393893,-2.429761,-2.5845563,-2.371292,-2.6056352,-2.530238,-2.6750894,-2.8181465,-2.3599045,-2.4658837,-2.7488997,-2.6378098,-2.6473053,-2.776626,-2.6658144,-2.5656798,-2.487078,-2.4692175,-2.5262012,-2.4941328,-2.6105716,-2.6411002,-2.717822,-2.7334921,-2.515341,-2.5317988,-2.2777066,-2.275209,-2.492722,-2.5467,-2.2622468,-1.9759444,-1.9082983,-2.2009194,-2.044241,-1.793282,-1.8217791,-1.8225955,-2.1801524,-2.6960626,-2.852397,-2.703181,-2.8266072,-2.7629573,-2.7735927,-2.8024213,-2.7578201,-2.1008236,-1.5891308,-1.8269488,-2.0721407,-1.9546378,-1.9954776,-1.7334112,-1.5137335,-1.5414401,-1.8807269,-1.9867216,-1.7928782,-1.5958532,-2.0229077,-2.7258513,-3.1383758,-3.010031,-2.803465,-2.5444088,-2.6325734,-3.1448874,-3.1537688,-2.7727675,-2.416233,-2.0203285,-2.2797174,-3.0801866,-3.1630025,-3.8454578,-3.7998111,-3.6750112,-3.6489651,-3.2208655,-2.9903378,-2.3573318,-1.8949724,-2.1867328,-1.9655105,-1.8419263,-2.0060349,-2.378025,-2.4692326,-2.600027,-2.6634712,-2.7612698,-2.7173238,-2.7827635,-2.7837884,-2.8094106,-2.7255898
+-1.210471,-1.1075577,-1.5946008,-2.0897894,-2.4192781,-2.8161678,-2.8072028,-2.8761184,-2.7049072,-3.0845346,-3.016021,-2.7530289,-2.919463,-2.6771855,-2.3831973,-2.1021569,-1.4535477,-1.9319443,-2.3509517,-2.6962843,-2.9468083,-3.0185857,-3.1134453,-3.1715803,-3.3381639,-2.9910579,-1.9820963,-2.8905292,-3.0692255,-2.8494108,-2.7261643,-2.5187705,-2.518783,-3.0035415,-3.2818346,-3.2864094,-3.1900284,-2.903186,-2.4268181,-2.4018226,-2.8789773,-3.1061807,-3.564663,-3.4009652,-3.2130315,-3.1438951,-3.2702975,-3.1631308,-2.9267583,-2.8828025,-2.8059855,-2.7035396,-0.8827924,-2.5763152,-2.0285852,-2.7786312,-2.4783957,-2.7193666,-2.9678426,-2.9175732,-2.5887818,-2.8778245,-3.12464,-2.5535164,-2.8380184,-3.171693,-3.46445,-3.3423715,-3.1594958,-3.2950997,-3.1940293,-3.3053966,-1.9123245,-2.257474,-1.5319631,-2.546468,-2.8017628,-3.0221639,-2.6159687,-2.8119836,-3.2335527,-3.0106196,-3.0827498,-3.2924042,-3.0545297,-3.3276477,-3.5300748,-2.829948,-2.9944022,-3.1608632,-1.736637,-2.4943206,-2.1636803,-2.4663455,-2.7646456,-2.864017,-2.9202619,-2.0732484,-2.7275305,-2.831758,-3.008078,-3.0745082,-3.3339162,-3.662282,-3.6300309,-1.5540826,-2.2533534,-1.9776136,-2.5919182,-2.3906062,-2.5625734,-2.8243403,-3.0353484,-1.7394507,-2.683837,-2.807876,-2.8085942,-0.92669123,-1.6516598,-2.0235863,-1.981651,-2.3481462,-2.3603458,-2.7811966,-2.994409,-3.0678234,-3.3787966,-3.4293084,-3.2040794,-3.1837044,-3.174911,-3.1813853,-1.406084,-1.7865795,-2.5588748,-3.1486287,-2.389143,-2.9471521,-3.1560042,-3.1510975,-1.8099152,-2.692251,-3.2545097,-3.2662497,-3.2800438,-3.825166,-3.8431544,-3.6359577,-3.448087,-3.403267,-3.4267182,-3.4216504,-3.452911,-3.5379436,-3.2681632,-3.1532552,-3.1210253,-1.0528995,-1.6565828,-2.747001,-3.2645597,-3.0413337,-3.4002762,-3.5660605,-3.7238421,-4.0425024,-3.5120158,-2.0295324,-2.6152692,-3.342825,-3.558876,-3.7118301,-3.5545344,-3.4729624,-3.4894862,-3.3588667,-3.3591514,-3.7065477,-3.9521437,-4.0412045,-4.038967,-3.7191815,-3.527807,-3.559883,-3.5463445,-2.9135864,-1.6598057,-3.035178,-2.8092506,-3.0555377,-3.4499636,-3.6143231,-3.5976205,-3.6710548,-3.807513,-3.6323323,-3.6776202,-3.8731642,-3.639157,-3.9301112,-4.00663,-3.1929455,-3.3593976,-3.620794,-3.804816,-3.993898,-3.7146006,-3.627647,-3.814498,-3.8289716,-4.03646,-4.053726,-3.744604,-3.855423,-4.1268945,-4.0761595,-4.1078253,-4.1383266,-3.9823728,-3.7562912,-3.9920454,-4.1794925,-3.9235768,-4.2496185,-4.0767446,-3.7144694,-4.1920385,-4.2010546,-4.21081,-4.130208,-3.9216251,-2.892839,-3.2877336,-3.0183592,-2.9486847,-3.1872268,-3.3444648,-3.1822505,-3.2207203,-3.313513,-2.821603,-2.7822342,-3.2509205,-3.7193284,-3.3997989,-3.0930753,-2.8030035,-2.8414817,-2.8134778,-3.2270746,-3.5095873,-3.5178885,-3.640361,-3.4425218,-3.330223,-3.5726814,-3.6029863,-3.6821294,-3.5817723,-3.345501,-3.712747,-3.7598028,-3.5927753,-2.9710035,-2.8407156,-3.1704392,-2.6685336,-3.174047,-2.026144,-2.1835718,-2.4168255,-2.1192555,-2.4333496,-2.2824545,-2.2003853,-2.377439,-2.27671,-2.692512,-2.8199203,-2.785461,-2.7948833,-2.816951,-2.6993597,-2.5744848,-2.5104938,-2.7951136,-2.7258992,-2.5003023,-2.53174,-2.4078555,-2.215831,-2.4925423,-2.198551,-1.9316314,-1.8448465,-1.7888956,-2.1627831,-2.0170135,-1.3191397,-1.5190736,-1.6652932,-1.8663882,-1.779817,-1.5364274,-1.5246819,-1.5032185,-1.7976565,-2.147315,-2.0948725,-1.9101135,-2.1388953,-1.8416368,-2.1919873,-2.260746,-2.0815506,-1.4319702,-1.7213953,-1.545626,-1.5342418,-1.6324548,-1.560537,-1.8232809,-2.1395812,-2.4129922,-2.420975,-2.4373918,-2.915164,-3.2572217,-2.7447276,-3.000792,-2.754314,-2.5351386,-2.4852295,-2.4375234,-2.436105,-2.5607278,-2.3581576,-2.1587772,-2.3026824,-2.748898,-2.847433,-2.821003,-2.8349695,-3.0370288,-2.8928385,-2.7620144,-3.1573584,-2.965191,-2.493829,-2.18512,-2.5470824,-2.5865107,-2.8548436,-2.997796,-2.9815211,-2.5180411,-2.7502851,-3.0418687,-2.918229,-3.0111756,-3.1491191,-2.8795338,-3.0364037,-2.964307,-3.0577006
+-1.5636934,-1.7247559,-2.0368483,-2.3428617,-2.5528853,-2.7484946,-2.8836312,-2.9670906,-2.7728786,-3.0966363,-3.0506887,-2.7708197,-3.0490856,-3.115382,-2.9150777,-1.9028145,-1.4547055,-2.330029,-3.0867965,-3.1463497,-3.277243,-3.3603535,-3.3550968,-3.3865895,-3.5145786,-3.0278716,-1.1060436,-2.9582295,-3.6132336,-1.3847429,-2.3115296,-3.2244523,-3.3638048,-3.4750283,-3.5231526,-3.4151418,-3.3154278,-2.181992,-2.7015057,-3.1786885,-2.7063453,-3.2840667,-3.4201727,-3.1965795,-3.2865846,-2.6261177,-3.1448317,-3.3025782,-3.1787872,-3.0945344,-3.1384292,-3.0079107,-2.2766786,-3.000009,-2.4956908,-3.0916748,-2.726644,-2.5409925,-3.1198275,-2.9553256,-2.7025783,-3.1445582,-3.108261,-3.1335456,-3.2679868,-3.5097518,-3.571886,-3.4429507,-3.293829,-1.7515106,-3.038158,-3.366294,-3.0105457,-2.4037244,-1.9973911,-3.1793623,-3.2433891,-3.2888694,-1.9009255,-3.08144,-2.9933412,-3.2239432,-3.5797415,-3.6605473,-3.423246,-3.6039946,-3.8033075,-3.429698,-2.6494732,-1.861308,-2.5855463,-3.3187542,-2.2251477,-3.0876846,-3.1656985,-3.4942486,-3.3663669,-1.7710711,-3.1751013,-3.185152,-3.3105137,-3.3589582,-3.654326,-3.0523787,-3.4935477,-1.4892999,-3.064037,-3.191241,-3.1609583,-1.8577317,-3.0786781,-3.4302473,-3.5520718,-2.248959,-3.5095193,-3.680378,-3.627738,-1.4335167,-2.9309547,-2.522142,-2.604444,-2.7353623,-3.0943213,-3.0373468,-3.3446016,-3.492295,-3.8864126,-4.166941,-2.211509,-3.333676,-3.4775124,-3.5902288,-2.8319678,-2.2805574,-3.5919428,-3.7454019,-3.7751107,-3.078854,-3.0431774,-3.611813,-3.0721102,-3.2323434,-3.8717961,-3.7116485,-3.2029927,-3.87706,-4.282173,-3.9873285,-3.549755,-3.922987,-3.9782457,-3.040756,-3.651526,-3.9801617,-3.935112,-3.9150486,-3.8590279,-2.2098465,-2.3434827,-2.642892,-3.4834416,-3.5974529,-3.3702848,-3.6777716,-3.8803976,-4.045678,-3.6816082,-3.16602,-3.0803237,-3.9043477,-3.8894005,-4.1385565,-3.9475927,-4.0368857,-3.9005427,-3.9796033,-3.8494296,-4.0416884,-4.2881155,-4.3838634,-4.413414,-4.215812,-4.0979404,-4.182372,-4.125846,-4.0709257,-2.621838,-3.6353052,-2.9167776,-3.7255154,-4.035184,-4.0466075,-3.862399,-4.1573853,-3.9962673,-3.7384186,-3.868903,-4.1279616,-4.061036,-4.3103056,-4.3518434,-3.7910156,-3.255737,-3.9820185,-4.260599,-4.427742,-4.175744,-4.1361165,-4.322357,-4.3107786,-4.3304825,-4.5704193,-4.2703514,-4.1889243,-4.5926504,-4.477266,-4.4804816,-4.481448,-4.3628483,-4.199457,-2.09285,-4.0366035,-4.0203776,-4.318717,-4.22241,-3.8877385,-4.116062,-4.3165693,-4.316172,-4.1941786,-4.28295,-3.296145,-3.69979,-3.3198833,-3.1921144,-2.231283,-3.1746573,-3.3253074,-3.3191178,-3.392485,-2.6493487,-3.0609963,-3.3230839,-3.2578,-3.2575347,-3.4918575,-3.2273045,-3.0672767,-2.905848,-3.483605,-3.737755,-3.8993483,-3.836309,-3.4372334,-3.292512,-3.564607,-3.809554,-4.002613,-3.7361798,-3.4759593,-3.8785334,-3.9555466,-3.9183898,-3.3589752,-3.0169187,-3.4478846,-2.542554,-3.4467974,-2.1032262,-2.4978514,-2.586202,-2.3894882,-2.8669295,-2.7231138,-2.5467546,-2.7137733,-2.729082,-3.2453556,-3.486284,-3.2640548,-3.3526332,-3.4157186,-3.173695,-2.8963933,-2.7491958,-3.0785084,-3.1434386,-2.9334404,-2.8969946,-2.4764795,-1.7432086,-2.4913716,-2.282254,-2.0078557,-2.0094316,-1.88845,-2.3503263,-2.4280956,-2.1268528,-2.086451,-2.2675734,-2.4479678,-2.1847105,-2.076448,-1.9447707,-1.9309009,-2.229803,-2.7463636,-2.3454874,-2.270388,-2.517579,-2.0382895,-2.346436,-2.6008961,-2.3475807,-1.6622638,-2.0057502,-2.2924252,-2.6129103,-2.6710944,-2.5706306,-2.5452719,-2.6721725,-2.7413979,-2.8758912,-3.2719157,-3.5621526,-3.7244337,-2.975872,-2.6687713,-3.111881,-3.1067705,-3.0919123,-2.9790046,-2.8170497,-2.876183,-2.9542189,-2.8329387,-2.5936399,-2.7660553,-2.9884403,-3.169935,-3.1729186,-3.3224132,-2.904705,-3.012711,-3.2876136,-3.3226166,-2.6907082,-2.4853477,-2.9471066,-3.0249014,-3.3652935,-3.5647607,-3.4004753,-2.8111236,-3.20899,-1.267219,-2.6884463,-3.4298353,-3.550971,-3.650786,-3.0838523,-3.3738866,-3.5009649
+-1.4987962,-1.7449639,-1.9949836,-2.3488157,-2.5332317,-2.9154675,-3.0988145,-3.2646017,-2.9854665,-3.2310672,-3.2483091,-3.128782,-3.1994038,-3.1669412,-2.947628,-0.23591587,-0.31611732,-0.63580817,-1.9821025,-2.126401,-2.4715009,-2.586147,-2.7868686,-3.0403602,-3.2172656,-2.9373598,-0.69487876,-1.968973,-2.4965155,-2.04205,-2.3291092,-2.4745743,-2.5696576,-2.7242649,-2.8760939,-2.9694757,-3.0355723,-2.9357266,-1.3722848,-2.1418786,-1.5443994,-2.3457804,-2.4773326,-2.761609,-2.8103943,-2.026991,-2.200377,-2.5777736,-2.6417513,-2.7115955,-2.6717482,-2.6636071,-1.7080064,-2.2627463,-1.3129495,-1.5489829,-1.5632336,-1.5013231,-1.7605842,-2.012076,-1.5807382,-2.0393429,-2.2778518,-2.475613,-2.7189372,-2.961658,-3.059986,-3.045562,-3.0970068,-3.1208894,-3.083983,-3.130249,-3.1168191,-0.51465154,-1.9980813,-2.608839,-2.6237097,-2.8118079,-0.38784668,-1.7801404,-2.2068372,-2.5929997,-2.955337,-3.1476383,-3.0592697,-3.085209,-3.1568196,-1.9426742,-2.0143614,-1.0675799,-1.119102,-1.9645723,-1.9846095,-2.3298697,-2.6562,-2.0761676,-2.008574,-0.9843288,-1.95549,-2.473029,-2.730537,-2.9073443,-3.209888,-2.346046,-1.9310948,-0.8992709,-1.8891975,-1.6802111,-2.1152163,-2.5219169,-2.870603,-3.0021548,-2.7641368,-1.9489927,-2.781024,-2.8793836,-3.142045,-1.4052203,-1.0314125,-1.9551287,-2.4867673,-1.4659871,-2.3123226,-2.628335,-2.9699223,-3.0901349,-1.7866068,-2.3633716,-1.8452896,-2.3818595,-2.7191496,-2.9816349,-2.6797724,-1.1134015,-2.3506732,-2.4892616,-2.9995613,-3.2062016,-3.3275504,-3.3679256,-1.6374233,-2.2870622,-2.8956447,-2.953888,-0.9519295,-2.238173,-2.7484033,-2.9676838,-1.2554494,-2.1611652,-1.8624051,-1.9394827,-1.263543,-2.164397,-2.7780068,-2.8599284,-0.987292,-1.8400687,-2.4898424,-2.1961882,-2.5992866,-2.4144902,-3.026276,-3.3104002,-3.0179057,-2.7262173,-3.066368,-3.0532439,-1.1169605,-2.441784,-2.1447415,-2.8040807,-3.0982747,-3.214501,-3.3479238,-3.4873927,-3.1998644,-3.621729,-3.805026,-3.8496008,-3.8860898,-3.7114646,-3.663829,-3.8086739,-3.6659627,-3.6083295,-3.687944,-3.8648229,-3.7603338,-3.677763,-3.7396803,-3.7653713,-3.7446632,-3.796114,-2.4736738,-3.2479005,-3.3279374,-3.4970763,-3.7123015,-3.8138814,-4.113325,-4.114623,-2.649237,-3.3850045,-3.7126305,-3.9041526,-3.8774834,-3.7210758,-3.9156184,-3.9631424,-3.857392,-3.9981246,-3.7513628,-3.7723982,-4.13188,-3.9006877,-3.9928918,-4.0246763,-3.880066,-3.8007078,-1.5873791,-2.4872928,-3.094302,-3.3222394,-3.3527343,-3.4934874,-3.5394764,-3.7236738,-3.7833605,-3.7400038,-3.7809963,-2.7413836,-3.4708228,-3.5221405,-3.4979753,-2.8212016,-3.1287713,-3.2918816,-3.4405847,-3.5844626,-2.942327,-3.3154125,-3.5941443,-3.6070557,-3.687935,-3.805537,-3.7244487,-3.782199,-3.8418024,-4.035914,-4.2043924,-4.5150065,-4.5150394,-4.311371,-4.029001,-4.1811543,-4.2375345,-4.3689785,-4.2030225,-4.1339264,-4.215171,-4.601694,-4.3805084,-4.0773296,-3.8125074,-3.847486,-3.1030838,-3.4305754,-2.208241,-2.4512944,-2.6721883,-2.7236502,-2.923555,-3.01399,-2.9265428,-3.2258644,-3.211668,-3.6123216,-4.0518017,-3.8815653,-4.212323,-4.171535,-3.9572356,-3.635519,-3.069868,-3.2087717,-3.7314446,-3.7392602,-3.7187657,-3.4470515,-1.8462249,-2.0564988,-2.0596154,-1.9304289,-1.8730396,-1.9004956,-1.8497151,-2.2590044,-2.310124,-2.2896261,-2.6027372,-2.85036,-2.6157832,-2.2576668,-2.257939,-2.41397,-2.5712342,-3.1423998,-3.3542905,-3.085825,-2.7094223,-2.5510292,-2.5582294,-3.0892224,-3.2974143,-2.767025,-2.7031112,-2.8595006,-3.2491808,-3.0484989,-3.0369911,-3.0612674,-3.0774863,-3.04277,-3.109334,-3.1731853,-3.2786076,-3.406867,-3.0387926,-3.2813768,-3.748261,-3.5720916,-3.3741841,-3.3077912,-3.3371117,-3.4268985,-3.2365334,-3.1668863,-3.074187,-3.1546402,-3.2323709,-3.339235,-3.4559908,-3.3033252,-3.2488837,-3.1222181,-3.3578348,-3.2766993,-3.1425672,-3.1713247,-3.4792643,-3.4008415,-3.3967516,-3.5549974,-3.4945102,-3.3681016,-3.109294,-1.6877733,-2.682917,-2.8780165,-2.7701914,-2.683988,-1.9237074,-2.4371233,-2.6809735
+-1.6001174,-1.8366355,-2.1394565,-2.4688616,-2.4446087,-2.8195677,-3.1303892,-3.337585,-3.084474,-3.2996817,-3.2702756,-3.0567667,-3.290051,-3.2970974,-2.9778817,-0.18273897,-0.3147242,-0.37706628,-1.6674576,-2.2522244,-2.567743,-2.7294405,-2.7447462,-2.828808,-2.9719882,-2.6482148,-2.1794345,-2.7619514,-1.2007529,-2.2157283,-2.4000592,-2.418507,-2.6040292,-2.8442419,-2.9494066,-2.9394073,-2.7084284,-2.4475915,-2.1173706,-2.8813944,-2.5415576,-2.7113867,-2.8118098,-2.8247242,-2.9203825,-2.0333047,-2.4962935,-2.7222128,-2.7404408,-2.493907,-2.397779,-2.3108802,-2.1973574,-1.7421248,-1.608566,-2.223913,-2.1895418,-2.0497339,-2.5100684,-2.5152574,-2.1310675,-2.322217,-2.5093923,-2.551346,-2.6644638,-3.1304965,-3.384467,-2.603722,-3.128436,-3.2080345,-3.279583,-3.337687,-3.3143392,-1.4119374,-2.4311523,-3.1454315,-3.1059613,-1.8968074,-1.0248786,-2.08329,-2.205318,-2.5421996,-2.9608374,-3.0542717,-2.8631418,-1.7072121,-1.0694536,-2.1779175,-1.971824,-1.979642,-1.7008667,-2.1689668,-1.6045874,-1.8731507,-2.27074,-2.169172,-1.4559666,-2.0227866,-2.1058183,-2.2229884,-2.4548516,-2.7125673,-0.87452376,-1.509018,-2.0700462,-2.3314319,-1.9378754,-1.9578553,-2.3903842,-2.7613783,-2.994081,-3.117693,-2.8178349,-1.9891886,-2.6672256,-0.79713243,-2.214204,-1.5409707,-2.0133162,-2.1037133,-2.4173117,-2.186883,-2.3927088,-2.62533,-2.714481,-2.9274287,-0.6715937,-2.0952709,-1.6344606,-2.1737506,-2.26471,-2.2831616,-2.0400438,-1.7941622,-2.4980493,-2.8250546,-3.076417,-3.2221277,-3.3895526,-3.467413,-1.921197,-2.247855,-3.0524518,-3.079566,-3.2351518,-2.208905,-1.3542322,-2.5858607,-2.136856,-2.4833221,-2.234711,-2.1295233,-2.0500035,-2.3750272,-2.6213005,-2.4062276,-1.4637544,-1.9974355,-2.2401104,-1.5563437,-2.1489325,-2.3797207,-2.6054344,-2.8619962,-2.7438984,-2.7739925,-2.768086,-2.9140456,-1.6585051,-2.7245643,-2.5400705,-2.8709202,-2.943884,-3.0647693,-3.1542645,-3.2682576,-1.967336,-2.3809876,-3.1762562,-3.4318826,-3.7375617,-3.6661656,-3.7006042,-3.6973958,-2.284797,-2.240718,-2.7181735,-3.4877357,-3.2448006,-3.5009084,-3.722362,-3.6142015,-2.7146823,-3.2018619,-3.3788524,-3.5879364,-3.5741267,-3.6360714,-3.804142,-3.8756173,-4.0662293,-4.056403,-3.812831,-3.9374704,-3.9909325,-4.050172,-3.9191694,-3.7993798,-1.9357371,-3.1657267,-3.1882722,-3.4688263,-3.568851,-3.5343847,-3.9032106,-2.7246213,-3.332049,-3.741384,-3.7060876,-3.2243571,-1.7134805,-2.8956227,-3.4510534,-3.685186,-3.7086692,-3.7382128,-3.7289362,-3.8818932,-3.95268,-3.8884528,-3.951465,-3.7492785,-3.9975605,-3.9479089,-3.957815,-3.8168,-3.8636963,-3.898966,-4.095055,-4.041332,-3.119264,-3.7889628,-3.9358582,-3.8806949,-4.0729103,-4.1738977,-3.1684575,-2.8553338,-3.3702698,-3.84864,-3.8433104,-4.117464,-4.3450923,-4.1773973,-3.8743281,-4.1011147,-4.3766885,-4.5697937,-4.329613,-4.0744815,-4.2694,-4.8778205,-4.84126,-4.6020703,-4.0704536,-3.8773718,-3.1290777,-3.692618,-1.820273,-2.9993412,-3.2781074,-3.2898555,-3.433495,-3.4893477,-3.6373405,-3.6399336,-3.5451584,-3.7366877,-4.4348173,-4.324217,-4.6995173,-4.856385,-4.596532,-3.9128075,-3.245535,-3.4162073,-3.9733305,-4.0988655,-3.2859411,-1.9749838,-2.237864,-2.3991091,-2.3764482,-2.3191118,-2.372184,-2.6830554,-2.7876983,-3.163641,-3.1205018,-3.1541786,-3.4277139,-3.6002898,-3.3517337,-3.189776,-3.1769705,-3.3079405,-3.371012,-3.706934,-3.7289796,-3.6731606,-3.4273405,-3.4004984,-3.553663,-3.7553377,-3.968235,-3.3268325,-3.4993672,-3.536255,-3.0862727,-3.3263261,-3.5619097,-3.5039167,-3.632917,-3.6526873,-3.4652748,-3.60755,-3.7947772,-3.7765775,-3.4361558,-3.6327162,-3.9972892,-3.7563474,-3.7023177,-3.7300048,-3.6909847,-3.9081788,-3.7823064,-3.6766775,-3.588178,-3.529018,-3.8887582,-3.8269882,-3.9716434,-3.6499598,-3.2219431,-3.3674846,-3.5823236,-3.3331432,-3.1700177,-3.4962258,-3.7480173,-3.6361609,-3.684557,-3.918408,-3.5574725,-3.2488956,-3.2624722,-2.5521483,-2.9275556,-2.6053529,-2.6992798,-1.8601197,-2.374922,-2.6280055,-2.8602376
+-1.5426797,-2.1490295,-2.571537,-2.8808584,-2.9620275,-3.1434555,-3.536346,-3.6943479,-3.8601077,-3.884564,-1.1623589,-3.0615,-3.1987956,-3.0425808,-2.6626043,-1.4989759,-1.639522,-2.573681,-2.701056,-2.7358994,-2.7670906,-2.8178096,-2.7926395,-2.8102775,-2.9586718,-3.018661,-3.0698085,-3.229545,-0.61712277,-2.4733157,-2.841289,-3.057819,-3.0187542,-3.088267,-3.0870128,-3.018042,-2.8701348,-2.661089,-2.9471936,-3.2412634,-3.143839,-3.2298646,-3.5193715,-3.2695205,-3.443315,-1.9696981,-2.6306016,-3.1303148,-3.0505738,-3.132419,-2.9737654,-2.694159,-2.628512,-2.545032,-2.708415,-1.6481876,-2.342225,-2.8434598,-2.9364438,-2.9885945,-1.5374416,-2.5248616,-2.7443485,-2.7823098,-2.8455591,-3.0959377,-3.256289,-3.0507236,-3.4048707,-2.8272917,-3.2546926,-3.6733775,-3.7305284,-0.9421853,-2.3679323,-2.9143493,-2.9602199,-3.3042765,-1.1269878,-2.4170313,-2.7426386,-2.9241288,-3.2583961,-2.4338355,-1.3388608,-2.3276043,-2.25833,-2.7473578,-2.6700044,-2.542277,-3.0381083,-1.4000491,-2.3296113,-2.6607323,-2.7775083,-2.7867806,-2.8112864,-3.1410942,-1.3036832,-2.326041,-2.855485,-3.0475261,-3.3055472,-3.5301952,-0.7560281,-2.2533422,-1.7427117,-2.4071286,-2.8521068,-3.0912738,-3.3320088,-3.5579157,-3.7152662,-3.8411193,-3.7163084,-0.79264855,-2.3726177,-2.6289127,-2.4937885,-1.7369665,-2.6753862,-2.7770176,-3.1112626,-1.6379136,-2.801847,-2.8419752,-1.9798263,-1.9122545,-2.5735693,-2.697106,-2.7618942,-1.9746934,-2.042675,-1.8092345,-2.656375,-2.8462899,-3.0049834,-3.2758837,-3.5258112,-3.698304,-3.6749127,-3.3028297,-3.6394353,-3.6975312,-3.6811795,-2.6091301,-1.0860528,-2.4984746,-2.787724,-2.056951,-1.9457057,-2.501698,-2.6824691,-2.5945463,-2.8700268,-2.8276796,-2.5983849,-2.6865458,-2.839534,-2.5892372,-2.493596,-1.4176048,-1.7723583,-2.7417636,-2.6219327,-2.6567569,-2.390457,-2.755403,-2.9938493,-3.0786538,-3.3051407,-3.4709163,-3.424841,-3.2584105,-3.2640796,-3.3283179,-0.89543587,-1.9327697,-2.9170115,-3.0739903,-3.2502816,-3.1570327,-3.2788134,-2.6588361,-2.11993,-2.2690682,-2.7539535,-3.2508564,-3.3430612,-3.2480104,-3.5014281,-2.4139304,-1.8057768,-2.8064973,-2.2769513,-2.9299154,-3.0008187,-2.9919431,-3.2642887,-3.2612305,-3.5968392,-3.6424835,-3.3836746,-3.5480855,-3.6206338,-3.5805335,-3.4660625,-3.3624887,-1.2667556,-2.6598473,-2.8469856,-2.9984913,-3.1076944,-3.2108798,-3.3969579,-3.3375516,-3.2540822,-3.4775581,-3.5038512,-1.4075139,-2.3870173,-2.961203,-3.3283608,-3.5273452,-3.4152298,-3.4137568,-3.55125,-3.5533743,-3.5453897,-3.4787974,-3.4549928,-3.346128,-3.7774892,-3.8742533,-3.8251162,-3.578249,-3.448122,-3.6943552,-3.7651849,-3.7667377,-3.1529725,-3.415787,-3.719257,-3.7846055,-4.0608497,-3.900412,-2.8978314,-2.8571322,-3.4621434,-3.6739335,-3.6505644,-3.8247118,-3.9662313,-3.9215186,-3.724719,-3.8940206,-4.033189,-4.270504,-4.354822,-3.7913404,-4.05819,-4.279598,-4.2943687,-4.3337016,-4.0583878,-3.901406,-3.4836345,-3.6223438,-2.5772798,-3.262258,-3.6487126,-3.7285073,-3.783721,-3.8285918,-3.9803681,-3.898655,-3.8592615,-3.849032,-4.3267646,-4.3178973,-4.1992416,-4.392826,-4.318018,-4.0764565,-3.5520205,-3.490198,-3.967012,-4.045987,-3.2286463,-2.2773652,-2.736605,-2.5702279,-2.7713733,-2.735341,-2.8030708,-3.1007328,-3.1856065,-3.37434,-3.530001,-3.4890761,-3.7441065,-4.0260005,-3.9538002,-3.7750351,-3.6673477,-3.74552,-3.8056576,-4.202947,-4.602736,-4.382743,-4.053013,-3.9366126,-3.8534698,-3.9791226,-4.3685036,-4.0322742,-3.9499211,-3.702189,-3.5343432,-3.5268922,-3.9629216,-4.008559,-3.980595,-3.8939233,-3.69271,-3.7398958,-3.7661765,-3.7840838,-3.7557073,-3.6209624,-4.379884,-4.254754,-4.130812,-3.912441,-3.8843954,-4.0519495,-4.0701556,-3.8837557,-3.673441,-3.599222,-3.756974,-3.8857026,-3.9325497,-3.651603,-3.450056,-3.7237558,-3.8006577,-3.7979994,-3.8072255,-3.7966661,-3.7328153,-3.7481883,-3.8647177,-3.8005748,-3.6370506,-3.357007,-3.4236994,-2.8249118,-2.9347267,-3.2567434,-2.1366172,-1.9176496,-2.4085314,-2.8625019,-2.8656657
+-1.7630821,-2.575541,-3.1366143,-3.566604,-3.7479317,-3.9354248,-4.1999917,-4.286997,-4.2530193,-4.09304,-2.9209037,-3.5815625,-3.1568499,-3.6754143,-3.9060457,-2.9047363,-1.6517469,-3.1506994,-3.1281452,-3.469586,-3.6157331,-3.827909,-3.9372654,-3.9377155,-4.0710287,-2.9820075,-3.6492825,-4.099775,-2.8078961,-3.6060805,-3.823255,-3.9081187,-3.9788132,-4.2459097,-4.309518,-4.2848682,-4.3217473,-3.8132532,-4.0562143,-4.4927754,-4.4791155,-4.390153,-4.6365376,-3.2319562,-3.072771,-3.014254,-3.2860982,-3.6767182,-3.5171049,-3.631825,-3.6896667,-3.6573558,-3.1552203,-3.4757423,-3.805939,-3.1886992,-2.4339097,-3.418939,-3.5441198,-3.6176329,-3.658584,-2.6583617,-2.3280282,-3.1471796,-3.3912287,-3.8892689,-3.9967422,-4.1231465,-4.1374836,-4.2644305,-4.255509,-4.319256,-4.268882,-1.4321398,-3.0027137,-3.2477722,-3.3235698,-3.5861704,-2.3704877,-3.098836,-3.556057,-3.840983,-4.0971546,-4.1438894,-1.8509742,-3.0638797,-3.008266,-2.9069662,-3.110631,-3.1411927,-3.0922606,-2.8769798,-3.3241165,-2.7884839,-3.3665938,-3.649033,-3.8199787,-4.099822,-2.5331059,-3.2502723,-3.833696,-4.0458765,-4.2547865,-4.3714056,-2.035413,-2.6021433,-2.3134336,-3.0782704,-3.4514542,-3.6423907,-3.809479,-4.065994,-4.292732,-4.460843,-4.456222,-3.1135216,-3.7177136,-3.9324255,-4.238895,-1.7110761,-3.045988,-3.5664148,-3.9358978,-4.1284056,-4.3137364,-2.7745438,-2.521103,-3.5573092,-2.326663,-2.5456676,-3.3597474,-3.7237825,-3.9628348,-2.0472507,-3.2210293,-3.691246,-3.817991,-4.093599,-4.3487425,-4.4726963,-2.7544134,-2.6143622,-3.5940142,-3.815454,-3.3737726,-2.4254317,-3.0671315,-3.6680717,-3.8314695,-2.3064337,-3.1390877,-3.225226,-3.0789719,-3.4577703,-3.6131244,-3.823553,-3.7769942,-3.8093963,-3.9430692,-3.046431,-3.636251,-4.0194597,-2.3540604,-3.5378802,-3.6582556,-3.5017605,-3.6232388,-3.6221895,-3.7926598,-3.5974193,-2.7741396,-3.5180416,-3.7706335,-3.8620238,-3.9735289,-4.0346327,-1.6349722,-3.1911068,-3.9078825,-4.138523,-4.2299633,-4.1702127,-4.2244997,-4.3080673,-4.3544874,-4.262639,-4.222485,-4.3961735,-3.4186273,-2.9090471,-3.795259,-3.7486877,-3.8767772,-4.0417223,-4.1466026,-3.5330763,-3.8730383,-3.8498507,-3.9806862,-4.029686,-4.3870096,-4.4171968,-4.4667234,-4.459124,-4.4418097,-4.417656,-4.3844185,-4.3375416,-4.347906,-4.388564,-4.3964915,-4.3684955,-4.374694,-4.404088,-4.4543943,-4.4395103,-4.398567,-4.4804153,-3.8322158,-2.6938517,-3.2093923,-3.5929236,-4.019189,-4.2461343,-4.3048306,-4.4161367,-4.392764,-4.440487,-4.55035,-4.492553,-4.3263845,-4.525537,-4.6285686,-4.5263996,-4.6703563,-4.4968634,-4.6047316,-4.693002,-4.7299414,-4.637969,-4.3081574,-4.5609136,-4.7510757,-4.797752,-4.8651915,-4.736227,-2.6330705,-3.6526892,-3.8369617,-4.08039,-3.9244785,-3.892881,-3.8028731,-3.871343,-3.9274395,-4.0341177,-4.0480633,-4.2057123,-4.3796597,-3.8551278,-4.128579,-4.3889523,-4.6740446,-4.6627197,-4.254072,-4.1260705,-3.7813091,-4.085885,-2.7823725,-3.761765,-4.1307764,-4.2424164,-4.31841,-4.2267237,-4.4212985,-4.268336,-4.2541122,-4.3492556,-4.3311033,-4.564205,-4.392453,-4.387574,-4.202191,-3.8862052,-3.6562219,-3.800139,-4.1707263,-3.9593916,-2.5902605,-2.2783656,-3.1103644,-3.1557624,-3.3739378,-3.4914103,-3.6762128,-3.825082,-3.442725,-3.7917113,-3.9007187,-4.052323,-4.1133113,-4.2655926,-4.2916336,-4.114302,-4.0681705,-4.250222,-4.29067,-4.1948037,-4.321912,-4.167324,-4.2573237,-4.3033338,-4.3723054,-4.4838943,-4.342286,-4.379241,-4.4986415,-4.4458413,-2.840992,-3.255515,-3.663933,-3.9471235,-4.0356746,-4.0962844,-4.089673,-3.975657,-4.3382215,-4.430756,-4.481659,-4.641037,-4.5155964,-4.4873366,-4.5555997,-4.493,-4.6183805,-4.614839,-4.5763597,-4.483098,-4.3109136,-4.30136,-4.568344,-4.4897823,-4.6115522,-4.4581623,-3.599996,-4.008243,-3.9413214,-4.2508206,-4.2593155,-4.3182383,-4.401105,-4.4523816,-4.5776405,-4.5921793,-4.5834455,-4.245389,-4.4733267,-3.5458922,-3.4963355,-4.2265854,-4.3761654,-2.153796,-2.5837255,-3.373612,-3.6835647
+-1.9637564,-2.4713898,-2.9877834,-3.262156,-3.3824887,-3.4322143,-3.5870516,-3.6381822,-3.6545599,-1.7251714,-1.4266363,-2.8538523,-2.7695224,-3.1751862,-3.3577833,-3.299625,-1.1153545,-2.6534297,-2.7019553,-2.779092,-2.7044451,-2.9856477,-3.2632635,-3.3320997,-3.3955896,-3.0700836,-3.1281157,-3.60962,-2.261897,-3.151064,-3.3634667,-3.5046015,-3.6257439,-3.718874,-4.0092134,-4.0709496,-4.014382,-3.6729763,-3.6877701,-3.9506583,-4.03967,-2.5450118,-1.7783515,-2.474647,-2.176808,-2.7839108,-2.3040187,-2.847561,-2.8670573,-3.051486,-3.262446,-3.2157319,-1.0211709,-2.3951836,-2.742074,-3.1290293,-2.9569616,-3.4590292,-3.3385582,-2.0397367,-2.7741802,-2.3775306,-2.366732,-2.744244,-2.9797769,-3.26551,-3.5728602,-3.8392522,-4.0113316,-4.059928,-4.0025206,-3.9591756,-3.7748141,-0.8695539,-2.2136483,-2.9054763,-3.184742,-3.4385223,-3.6873221,-0.8465312,-2.6791162,-3.2408285,-3.4461498,-3.7388425,-3.883728,-3.9758162,-2.585361,-2.6676264,-3.3836799,-1.526395,-2.81281,-3.2821126,-3.483732,-1.9770564,-2.960583,-2.3610559,-3.1587982,-1.4514681,-2.7150226,-1.6009291,-2.9142187,-3.1711574,-3.5439668,-3.7553663,-3.968624,-2.1759133,-1.4815491,-2.8161407,-3.361065,-3.6254592,-3.8244603,-3.9777355,-4.08319,-4.1130986,-4.08016,-3.9921722,-3.6491678,-3.7783527,-3.8434944,-3.1220016,-1.4259754,-2.9457638,-3.4537349,-3.8063438,-3.9940028,-4.0249104,-4.053325,-4.079538,-4.142027,-0.69275445,-2.366997,-2.5322685,-3.0966775,-2.689839,-3.086983,-3.775383,-3.9483776,-4.1345634,-4.1382637,-4.0445986,-2.7669358,-1.4209281,-3.056232,-3.5231137,-3.2908032,-2.7700076,-2.1798859,-3.1400516,-3.483696,-3.7065566,-3.8249128,-1.2658182,-2.2371945,-2.574484,-3.0262384,-3.319676,-3.4724882,-3.5594385,-3.6384974,-3.6997833,-2.3504496,-3.132669,-1.2917665,-3.1929233,-3.4640486,-2.7441893,-2.6166863,-3.2373528,-2.6114986,-2.9243155,-2.4737334,-3.0756607,-3.4145837,-3.5423808,-3.6259155,-3.6823313,-1.3612883,-2.4393935,-3.0387723,-3.53538,-3.622035,-3.5690346,-3.6340477,-3.7963073,-3.9076343,-3.9025178,-3.8245587,-3.8353338,-2.645492,-1.9379828,-3.2548022,-3.54922,-3.6597333,-3.6949115,-3.6691878,-2.4633038,-3.2498817,-3.357399,-3.3820124,-3.4532914,-3.6690323,-3.7885265,-3.8204622,-3.9413638,-3.9594016,-3.958878,-3.880686,-3.8825166,-3.8730974,-3.8401902,-3.8657622,-3.8310866,-3.8144455,-3.8437853,-3.816064,-2.6905913,-1.6891195,-3.1728654,-3.1541977,-2.803761,-2.9093637,-3.2623854,-3.6663072,-3.7385616,-3.721211,-3.7330956,-3.838194,-3.7650084,-3.8498092,-3.8365693,-3.7768874,-3.8910823,-3.8436158,-3.9296625,-3.9469633,-3.9018576,-4.029123,-3.9909563,-3.9698992,-4.048109,-3.7905128,-3.8474362,-3.937618,-4.050039,-3.9736147,-3.6529365,-1.6120013,-3.2242022,-3.5260305,-3.5359914,-3.4645524,-3.4770887,-3.4021661,-3.526197,-3.9339142,-3.8024697,-3.7756057,-3.6390283,-3.6685553,-3.902996,-3.9684515,-3.9749875,-4.148273,-3.9534721,-3.7002182,-3.524704,-3.4620972,-3.6966152,-2.7508295,-3.58744,-3.750282,-3.9217145,-3.7915154,-3.9246702,-4.036235,-3.9043977,-3.391565,-3.837908,-3.8224788,-3.8996644,-3.8992083,-3.9428027,-3.837442,-3.6042228,-3.4543705,-3.6194372,-3.646644,-3.5343766,-3.078703,-1.9885155,-2.3176122,-2.7198005,-2.9427137,-3.2760046,-3.575602,-3.7803059,-3.7330341,-3.8371701,-3.9425607,-3.906089,-3.8974314,-4.003695,-4.041455,-4.0840244,-4.085944,-4.0492554,-3.9440916,-3.857583,-3.8598182,-3.848329,-3.9015152,-3.800386,-3.9537868,-4.00637,-3.757963,-3.9803,-3.9026852,-3.9848013,-1.087856,-2.3882854,-2.9161186,-3.328535,-3.5995975,-3.5777898,-3.463912,-3.0966823,-3.5750833,-3.747265,-3.7769306,-3.8426154,-3.8540154,-3.923002,-3.9428382,-3.9810061,-4.039777,-4.0203915,-4.0603943,-4.0299354,-3.8456774,-3.8717768,-3.9721823,-4.0575485,-3.9532034,-3.917553,-3.7375996,-3.4371233,-3.1450963,-3.6398711,-3.647068,-3.7140853,-3.6843765,-3.6891031,-3.7631025,-3.7621655,-3.7472014,-3.6144414,-3.779913,-3.4125326,-3.4873228,-3.764844,-3.7585075,-2.0001469,-0.7859898,-2.493337,-3.0445755
+-1.3580455,-1.8078935,-2.4293027,-2.9129987,-3.183782,-3.3695993,-3.5437279,-3.6570237,-2.167537,-2.7707605,-0.968546,-2.2095237,-2.1026332,-2.43501,-2.7472792,-2.8034775,-1.6093984,-2.2788372,-2.2458038,-2.1118956,-1.9822611,-2.2777948,-2.5731955,-2.7956753,-2.9997463,-2.8242283,-1.7253944,-2.4817293,-2.848249,-2.9627473,-2.8900657,-2.4681807,-2.4018774,-2.5854993,-3.2076237,-3.655148,-3.8120973,-2.98145,-2.0408645,-3.1179934,-3.338038,-1.1747297,-2.3119822,-1.822359,-2.5356433,-2.2381644,-1.856031,-1.9884919,-2.019887,-2.2228875,-2.4870527,-2.69819,-2.7094946,-3.0476441,-3.4075677,-2.8506079,-2.4206114,-3.3524559,-1.6499432,-1.0592419,-1.9218683,-2.3222039,-2.4359415,-1.840634,-2.0422287,-2.3250206,-2.707601,-3.0518134,-3.4137628,-3.6759615,-3.822523,-3.308498,-2.7775373,-3.3503866,-3.6632686,-3.785979,-3.802993,-3.79464,-3.8582683,-2.2796397,-2.9026456,-3.5244524,-3.7495375,-3.7940922,-3.793737,-3.796764,-1.4793558,-2.335507,-1.2356869,-2.0440845,-2.7725189,-3.1938639,-3.2851388,-0.8867492,-1.978789,-1.8792106,-2.3962772,-3.1357975,-3.56215,-1.0184623,-2.4695072,-3.096695,-3.317514,-3.673481,-3.930836,-0.6011843,-1.5954756,-2.2869978,-3.010915,-3.4511065,-3.689928,-3.8190994,-3.9575553,-3.9823065,-3.9476135,-3.961928,-3.9189138,-3.7768953,-2.4561799,-3.3616843,-3.8669007,-4.094204,-4.2050977,-4.2415466,-4.265291,-4.260927,-4.2693768,-4.26532,-4.298831,-1.8511631,-0.95798534,-2.3975346,-2.9251823,-2.9324162,-2.674057,-3.5153532,-3.820353,-4.0876217,-2.8340948,-0.8238844,-1.6702052,-2.1184294,-2.3149035,-2.7032247,-2.529057,-2.780532,-3.3333323,-3.6568322,-1.5114971,-2.339674,-2.9097223,-3.0091128,-3.188071,-1.3927362,-2.2301347,-2.8233838,-3.0380359,-3.334841,-3.4895291,-3.545396,-3.4551568,-3.0453205,-0.78843296,-2.4966726,-2.8590336,-2.9675965,-1.1113359,-2.0824783,-2.3984807,-2.568651,-2.7005098,-2.814467,-3.1833637,-3.522335,-3.6787236,-3.7858517,-2.1612449,-0.96657115,-2.2707484,-2.6356606,-2.8408532,-2.8953054,-3.012582,-3.276854,-3.5318522,-3.704699,-3.7662196,-2.9809918,-2.4836423,-1.8986434,-2.335075,-2.7511234,-3.0688286,-3.1865396,-3.2768002,-2.675126,-2.6015942,-2.9888756,-3.2060137,-3.374001,-3.5429049,-3.6209178,-1.5069983,-2.69803,-3.0844254,-3.2036376,-3.2645326,-3.3665454,-3.5012727,-3.6312525,-3.6915925,-3.7580216,-3.8312938,-3.8579764,-3.8722415,-3.8414414,-0.8356657,-2.5769746,-2.4069102,-2.1464715,-2.3235903,-2.589117,-2.9096255,-2.9184527,-2.9819922,-3.0278888,-3.1069617,-3.213404,-3.3768427,-3.4834127,-3.497073,-3.5725536,-3.4443045,-3.676326,-3.70388,-3.6762297,-3.850102,-3.7956104,-3.7579937,-3.86528,-3.6963682,-3.6912735,-3.837108,-3.9322324,-3.8382742,-2.3871477,-1.8420712,-2.6191158,-2.7276578,-2.8354132,-2.9398887,-2.95176,-2.5928264,-2.986041,-3.3942318,-3.2783022,-3.2706792,-3.1162167,-3.0470166,-3.5245092,-3.5984952,-2.9065657,-3.1962376,-3.1160326,-3.4377985,-3.2841578,-3.2763171,-3.3951554,-3.45326,-3.56951,-3.527542,-3.6222622,-3.509621,-3.6620111,-3.6745381,-3.4359674,-3.229129,-3.4906938,-3.1309035,-3.1267214,-3.307835,-3.4099107,-3.1860323,-2.896646,-3.1125443,-3.2946665,-3.2979288,-3.0844417,-2.5527823,-2.2639432,-1.998586,-1.9794415,-2.075371,-2.4786594,-3.0907063,-3.355936,-3.4327874,-3.3426678,-3.4756255,-3.4482453,-3.2801535,-3.442648,-3.4553933,-3.5578055,-3.6361203,-3.6192968,-3.550807,-3.3401575,-3.1386538,-3.3414702,-3.3767111,-3.4383297,-3.6414413,-3.6874878,-3.4360898,-3.6328483,-3.533151,-3.6022258,-1.9697796,-2.0487554,-2.592937,-2.8121195,-3.1212668,-3.130527,-3.082471,-2.0559921,-2.666149,-3.0182376,-3.159306,-3.2639427,-3.0080166,-3.3871844,-3.4207072,-3.6615758,-3.752452,-3.6175015,-3.7125034,-3.7242155,-3.4456162,-3.5044546,-3.6642735,-3.7858195,-3.5867429,-3.532212,-3.443234,-3.212192,-3.2446103,-3.4942775,-3.5145912,-3.5056837,-3.5050385,-3.4977415,-3.6037695,-3.7691064,-3.744432,-3.554402,-3.7033012,-3.7834833,-3.65339,-3.7645774,-3.8220904,-2.6455798,-0.825204,-2.4442906,-2.8638036
+-2.0097456,-2.134153,-2.6205726,-3.065498,-3.448172,-3.5355766,-3.7060933,-4.1107016,-0.93413705,-2.6823354,-2.9442537,-3.0603406,-2.5035336,-3.2146401,-3.4478884,-3.3836653,-1.2151707,-2.5143914,-2.963903,-2.3059134,-2.4871144,-2.857401,-3.1284418,-3.1825578,-3.3105736,-3.5036426,-2.0351503,-3.1130319,-3.4836116,-3.6238332,-3.8048186,-2.0523305,-3.0394602,-3.2073722,-3.4854357,-3.7147288,-3.9112725,-3.4801495,-1.2387258,-2.6033306,-3.1643069,-1.69974,-2.8602674,-2.973126,-3.3220584,-3.359559,-3.3763428,-2.1512787,-2.79364,-3.1280174,-3.2640681,-3.3857012,-3.4310775,-3.5961087,-3.8047204,-2.8737144,-0.9031065,-2.5048637,-3.1011424,-1.3709056,-2.501474,-2.8241296,-2.7517838,-2.5585616,-2.906671,-2.5483146,-2.9049776,-3.0708532,-3.2938395,-3.4629393,-3.719191,-3.3982892,-2.764102,-3.5150108,-3.8914003,-4.096946,-4.1953087,-4.23786,-4.2791905,-4.2405415,-4.107933,-4.115606,-4.1677723,-4.1419916,-4.1022654,-4.1045027,-1.2736859,-2.8163962,-1.124336,-2.8694673,-3.3677697,-3.6059618,-3.766995,-4.0183606,-4.186015,-3.0811284,-3.7170258,-4.093196,-4.195956,-4.1732006,-3.8807468,-4.0982304,-4.1201615,-4.134217,-4.179699,-4.202295,-4.263599,-4.27594,-4.251194,-4.2149296,-4.209161,-4.268758,-4.3290625,-4.3154507,-4.275117,-4.239436,-4.2106066,-4.0519443,-1.4509215,-2.4404955,-3.2914274,-3.7519407,-4.090187,-4.244696,-4.2521815,-4.2847977,-4.3256373,-4.318818,-4.286524,-4.2824125,-4.203446,-4.173751,-4.2143416,-1.1318494,-1.173461,-2.9329202,-2.569388,-2.972061,-2.8133833,-2.8446527,-3.028028,-2.9287038,-3.3022625,-2.7251525,-3.0545697,-3.381658,-3.750843,-3.9851546,-3.0753276,-3.0288587,-3.6620312,-3.5175664,-3.2095268,-1.643806,-2.870676,-3.4037747,-3.569744,-3.7125707,-3.9304266,-4.078094,-4.2090874,-4.248936,-0.90577155,-2.782298,-3.3455122,-3.5653112,-2.4878302,-2.6318064,-2.3506408,-2.8137038,-3.3328137,-3.5322452,-3.711023,-3.8745124,-3.9831161,-4.080755,-4.093842,-0.59969765,-2.7769868,-3.4219477,-3.636467,-3.668898,-3.7406945,-3.8521585,-3.9798994,-4.083062,-4.1313896,-4.2300744,-4.266958,-1.334741,-3.1266382,-3.4890494,-3.661464,-3.745498,-3.8244953,-3.8514566,-2.8022497,-3.5274563,-3.7842772,-3.9112258,-4.0618105,-4.1563435,-3.9834018,-4.1195006,-4.2645187,-4.4005966,-4.335108,-4.326873,-4.2892075,-4.313931,-4.2535677,-4.2237916,-4.238287,-4.264455,-4.2444067,-4.1954155,-0.43415585,-2.4526918,-3.166729,-2.1682236,-2.9294384,-3.1794043,-3.4687033,-3.55396,-3.6278281,-3.635138,-3.7698064,-3.8065295,-3.9255164,-4.0151043,-3.9305167,-4.0162354,-3.9173307,-4.20383,-4.2364454,-4.1756287,-4.2930927,-4.264744,-2.686603,-2.986028,-3.665772,-3.6721687,-3.9308178,-4.0186224,-4.051897,-3.4726593,-2.542263,-3.6071804,-3.5522661,-3.5039265,-3.6775239,-3.6055112,-3.2615113,-3.5690515,-3.8831134,-3.9542737,-3.9798937,-3.9351625,-3.9622002,-4.0321693,-4.0287,-3.5716996,-3.868398,-3.9327016,-4.164778,-4.1022887,-4.065239,-4.0296316,-3.858344,-4.1174927,-4.161583,-4.1827664,-4.127484,-3.750086,-4.0879564,-3.6796803,-1.784204,-3.353428,-3.625515,-3.4154828,-3.402026,-3.4839358,-3.5651975,-3.5655384,-3.8476658,-4.010507,-3.9843755,-3.8143253,-2.1993365,-3.0005088,-2.5305343,-2.7987828,-2.9982622,-3.4440546,-3.7359695,-3.9050682,-3.8627794,-3.9596834,-4.082828,-4.1178246,-3.876495,-3.953538,-4.0137997,-4.020239,-4.063511,-4.091503,-4.1710205,-3.9914007,-3.8059523,-3.8633404,-4.0599127,-4.087821,-4.1879063,-4.3013997,-4.0942173,-4.184106,-4.1242976,-4.145302,-3.6953478,-1.5065057,-3.1498241,-3.4647388,-3.6993685,-3.8212373,-3.2006567,-2.0693746,-3.1809516,-3.6803622,-3.7844973,-3.8941464,-3.657712,-3.9479837,-3.9225874,-4.0528636,-4.163829,-4.010584,-4.1458244,-4.1906185,-3.777249,-4.043046,-4.045524,-4.1494703,-4.1866145,-4.1524944,-4.144993,-3.6251898,-3.7042508,-3.9281096,-3.974648,-3.9746337,-4.029839,-3.9474244,-3.9940367,-3.9965925,-3.984148,-3.9419017,-3.9807177,-2.7653785,-3.5122883,-3.9455802,-4.0925126,-3.9886637,-0.9832391,-2.6613634,-3.269449
+-1.8058926,-2.349277,-2.5625186,-2.8013232,-3.027782,-3.2284806,-3.3944662,-3.7590053,-3.6789913,-3.8274608,-3.980101,-1.5578691,-2.2603528,-3.2338972,-3.3320637,-3.2589447,-1.824829,-2.6921782,-3.0573926,-2.8008647,-2.1702807,-2.8521922,-3.246189,-3.198152,-3.2476273,-3.320369,-2.1016607,-3.178378,-3.1667738,-3.1993465,-3.294366,-2.7049294,-3.1505198,-3.290039,-3.6506698,-3.8040416,-3.9904356,-3.9954462,-4.056342,-4.2067513,-0.8032782,-3.0134034,-3.1356087,-3.2829075,-3.1582842,-3.2965684,-3.460198,-1.1534442,-1.8416028,-2.9819517,-3.271213,-3.2312026,-3.0845587,-3.152374,-3.3549132,-3.5271149,-3.8048363,-3.814149,-1.1668798,-1.9168816,-1.909392,-3.0236254,-3.0029993,-2.5841134,-2.924449,-2.965935,-3.1579208,-3.1753087,-3.2847152,-3.431452,-3.551178,-3.6397529,-2.4141483,-3.1666627,-3.494944,-3.7061749,-3.8926516,-4.041831,-4.1322465,-4.0787263,-4.064413,-4.1107864,-4.236156,-4.2668495,-4.2432413,-4.2185335,-4.1399393,-3.931325,-1.4592993,-2.9080381,-3.3194606,-3.5637336,-3.729745,-4.0551414,-4.2079744,-4.290884,-4.3342686,-4.371721,-4.3896265,-4.353725,-4.1875286,-4.2887774,-4.3461432,-4.376947,-4.409281,-4.4085693,-4.439653,-4.4113026,-4.379528,-4.344006,-4.3180757,-4.3594456,-4.368416,-4.3534164,-4.333541,-4.3112164,-2.3141007,-2.187741,-3.4164734,-2.612862,-3.3773634,-3.7366219,-4.0847597,-4.301179,-4.3073716,-4.347564,-4.361931,-4.3509283,-4.3219604,-4.315286,-4.323163,-4.331475,-4.3031554,-2.013715,-1.1780881,-3.001782,-3.2698894,-2.7935243,-2.6787622,-2.8503797,-3.490621,-2.0436435,-3.2487416,-3.5285382,-3.4139166,-3.5418143,-3.7504904,-3.8637156,-3.917901,-3.3815846,-3.6573215,-3.6400628,-3.7567298,-1.5701233,-2.3398895,-3.2677603,-3.244955,-3.3739188,-3.4056005,-3.5563447,-3.7652745,-3.9249105,-3.801261,-3.8766456,-4.013298,-3.9040475,-3.9141712,-3.9339168,-3.9797182,-4.019581,-4.0326166,-4.067158,-4.0889716,-4.1363215,-4.1409636,-4.1401815,-4.14371,-0.5880415,-2.510385,-3.3173416,-3.478786,-3.5372195,-3.544363,-3.6885934,-3.6350446,-3.6412046,-3.5965142,-3.7121117,-3.7796788,-3.0174832,-3.4299943,-3.6664672,-3.8216014,-3.909213,-3.9454222,-1.9306155,-3.1049314,-3.2624211,-3.3432057,-3.4566984,-3.6125112,-3.7003214,-3.6779594,-3.730238,-3.8966057,-4.0584097,-4.0174136,-4.0568094,-4.0498247,-4.0473785,-4.0418296,-4.062248,-4.122694,-4.1763296,-4.117998,-4.041826,-3.030941,-3.3853202,-3.6791203,-1.69035,-3.5046408,-2.432447,-2.6974316,-3.2434962,-3.5555794,-3.6687305,-3.7289453,-3.7360325,-3.8566375,-3.9665432,-3.8325315,-3.8035486,-3.8044167,-3.9158444,-3.966669,-3.8881354,-3.9784212,-4.0313997,-3.9012518,-2.5580635,-3.5629313,-3.6646788,-3.8257117,-3.8989658,-3.8477867,-2.6740756,-2.0036788,-3.2370248,-2.7315545,-3.1051521,-3.3737817,-3.5583162,-3.038599,-3.2384605,-3.540759,-3.690413,-3.6832347,-3.7193217,-3.7276192,-3.6300633,-3.7746594,-3.4543056,-3.249827,-3.6381972,-3.892508,-3.9013267,-3.880253,-3.8429267,-3.6415062,-3.7996533,-3.8356917,-3.8467207,-3.974369,-3.9912891,-3.7419884,-3.9400325,-1.7810733,-3.505755,-3.8393734,-3.7745469,-3.1990283,-3.1949198,-3.3946316,-3.6937132,-3.835886,-3.9003968,-3.86114,-3.8917212,-3.724888,-3.600349,-2.103815,-3.3381405,-2.935553,-3.4699066,-3.7163153,-3.833287,-3.5839028,-3.7346535,-3.8508077,-3.9019032,-3.7666907,-3.7743247,-3.7345428,-3.8263974,-3.8853533,-3.9196703,-3.9552808,-3.8902361,-3.7131772,-3.6568594,-3.8803434,-3.8971887,-3.9372325,-4.0588646,-3.8990538,-3.9235098,-3.9449756,-3.9800596,-2.0937836,-2.2927456,-3.3789315,-3.5415325,-3.6325588,-3.7559006,-3.7932997,-2.1860552,-3.3269234,-3.657847,-3.6622815,-3.6995964,-3.5941348,-3.6859646,-3.7956672,-3.874598,-3.954395,-3.7225175,-3.81433,-3.0569844,-3.0864258,-3.4809446,-3.5806756,-3.6120033,-3.665257,-3.749738,-3.6812024,-3.11069,-3.2812128,-3.5451808,-3.6635044,-3.7435446,-3.833579,-3.9568276,-3.9951034,-4.024342,-4.073597,-4.0930905,-3.9757814,-2.6941202,-3.3490005,-3.8001547,-3.9937916,-4.081347,-1.216672,-3.0703502,-3.1046035
+-1.468071,-2.1452723,-2.5403764,-2.8943744,-3.2821589,-3.474332,-3.7034485,-4.1295757,-3.9843016,-3.7733927,-1.7605186,-2.9508657,-1.0894756,-2.8292508,-3.0215597,-3.0404396,-2.7969165,-2.4193492,-3.0720334,-3.1215243,-3.080595,-3.1458993,-3.2744744,-2.921951,-3.264689,-3.555559,-1.5996412,-2.8393586,-3.1468136,-2.382634,-3.068656,-3.2681117,-3.3886297,-3.7216463,-4.272561,-4.3591065,-4.4484606,-3.634188,-4.066374,-4.452325,-2.8354561,-3.6390748,-4.158578,-0.58336145,-1.8574921,-2.8176067,-2.9326286,-2.2858324,-1.4253558,-2.6241386,-2.87217,-2.9701183,-2.974843,-3.019486,-3.0307221,-3.182622,-3.3655243,-3.5133119,-0.35902306,-2.2414265,-1.8322562,-2.5913918,-1.6796207,-2.5822077,-3.033142,-2.9249854,-2.947991,-2.9203973,-2.9908395,-3.0999155,-3.2090368,-3.337168,-3.4685292,-3.5808966,-3.6458745,-3.8070447,-3.909447,-4.0121474,-4.143736,-4.171342,-3.9913006,-4.0689197,-4.258132,-4.313927,-4.332201,-1.2725346,-2.1882472,-2.9884698,-3.458644,-3.791823,-4.08414,-4.2501698,-4.33622,-4.3663034,-4.400178,-4.439566,-4.4190187,-4.418741,-4.4267197,-4.4395485,-4.4265347,-4.4097843,-4.408129,-4.377844,-4.4136677,-4.4650707,-4.514469,-4.440465,-4.4419193,-4.462372,-4.401802,-4.425125,-4.463278,-4.4616947,-4.4718375,-4.481218,-0.88133574,-1.502922,-2.6176178,-2.7612948,-2.9654524,-3.2779977,-3.6943827,-3.9814754,-4.1721535,-4.3179083,-4.37451,-4.429355,-4.4510784,-4.459369,-4.4811864,-4.4522886,-4.4281325,-4.4537373,-1.825754,-1.1692553,-1.6772,-1.9423866,-2.078343,-2.590752,-2.9292374,-1.0671966,-1.9011346,-2.4886866,-2.7657745,-2.9666255,-3.0451083,-3.1170478,-3.2299547,-3.3763995,-3.1363358,-1.3782173,-2.3849325,-2.5010152,-2.3170838,-2.8164387,-2.7795877,-2.6003,-2.9141955,-3.1022317,-3.340467,-3.503495,-3.3926744,-3.4303067,-3.6141174,-0.8446078,-2.2626798,-2.7892756,-2.869423,-2.967527,-3.1153023,-3.2674775,-3.4805174,-3.642803,-3.70917,-3.7434385,-3.728913,-0.63534915,-2.2397995,-2.9335313,-3.0563233,-3.1070037,-3.0878015,-3.2708726,-3.1959233,-3.216001,-3.2859778,-3.3761835,-3.4157462,-3.3620985,-3.4223285,-3.5522733,-3.6843636,-3.7406888,-3.732712,-2.3878877,-2.9335055,-3.2734904,-3.4488077,-3.5694084,-3.6242735,-3.6498332,-3.5147035,-3.810419,-3.9836016,-4.113817,-3.965366,-4.0145135,-4.0032883,-3.8627033,-3.845341,-3.942725,-4.0579667,-4.1129103,-3.9980726,-3.8416772,-1.1704401,-2.2350206,-2.9103918,-3.0158453,-3.1307058,-2.152216,-2.5348344,-3.185885,-3.172567,-3.3892994,-3.438442,-3.4406843,-3.4617136,-3.6008425,-3.5461476,-3.4528644,-3.7087555,-3.7208376,-3.7307718,-3.611425,-3.636645,-3.72475,-3.597017,-3.6074207,-3.581535,-3.731543,-3.948204,-4.0392127,-3.9055595,-1.5701486,-0.869856,-1.8368937,-1.5974132,-2.580507,-3.2171211,-3.4185333,-3.4767094,-3.5132985,-3.4194317,-3.4704103,-3.46698,-3.5077834,-3.478413,-3.5832214,-3.5000832,-3.6269279,-3.3224156,-3.7603474,-3.765919,-3.7051015,-3.5411067,-3.4503303,-3.4067023,-2.943811,-3.067182,-3.3575149,-3.413528,-3.7646484,-3.60085,-3.5757105,-3.5975242,-3.7539845,-3.6907372,-3.555561,-3.3960907,-3.243867,-3.564549,-3.7329729,-3.5939252,-3.5217009,-3.472247,-3.296578,-3.3539894,-2.9966257,-1.3778083,-2.8046136,-3.3397732,-3.4150698,-3.523094,-3.6093128,-3.7129965,-3.6353602,-3.612097,-3.5967805,-3.6046622,-3.5289903,-2.9371867,-3.4260569,-3.5888073,-3.61819,-3.6298199,-3.6897545,-3.592289,-3.4320424,-3.447712,-3.519061,-3.5896764,-3.9724097,-3.8434138,-3.680283,-3.6596007,-3.6849742,-3.6728196,-1.3183169,-3.2692494,-3.3822699,-3.3335867,-3.2861586,-3.2173817,-1.9158186,-3.2480323,-3.5050921,-3.4263368,-3.4542747,-3.3717434,-3.3774376,-3.3539677,-3.3807395,-3.4996722,-3.4987922,-3.7520752,-1.487429,-2.6128416,-3.1605244,-3.1542952,-3.1082263,-3.215787,-3.1867347,-3.0359805,-3.2300377,-3.2324033,-3.2339497,-3.1934633,-3.2424326,-3.3199496,-3.3687322,-3.4211524,-3.4399848,-3.4382186,-3.4709349,-3.525196,-3.541965,-3.9598923,-3.934981,-3.9213428,-3.9997115,-0.76478237,-2.8650367,-3.0333912
+-2.2117112,-3.0857205,-3.7171645,-3.981022,-4.0827465,-4.0804324,-4.147769,-4.298154,-2.1289015,-3.2143576,-3.4755774,-2.9204776,-1.1083761,-2.5932953,-2.8465319,-3.1910849,-2.576088,-0.9490313,-2.3722925,-2.6282773,-2.8019166,-3.054165,-3.3821921,-0.60407597,-2.5700588,-2.8708754,-3.1758404,-3.5398984,-3.8020115,-4.0140676,-4.0468526,-3.878076,-3.961193,-4.110373,-4.351284,-4.389084,-4.3907824,-3.7752285,-1.5220789,-3.0735297,-3.413444,-3.7656317,-3.9622464,-0.0001755245,-2.4187527,-2.5389032,-2.6006794,-1.6137058,-1.6447817,-2.540393,-2.5639524,-2.6113563,-2.781641,-3.0600014,-3.304712,-3.5579994,-3.7735786,-3.9359062,-3.9092607,-3.0118005,-2.5262456,-1.360714,-1.7297639,-2.4980838,-2.5571918,-2.5270946,-2.8721719,-3.2997463,-2.7154589,-3.13569,-3.4735572,-3.779841,-3.9298704,-4.018612,-4.0348454,-4.130084,-4.1491523,-4.1404543,-4.174464,-4.108622,-2.7475395,-2.9373245,-3.631113,-3.889415,-3.9366386,-3.8942273,-2.585928,-2.5897124,-3.2086775,-3.3391912,-3.6282635,-3.726203,-3.9049158,-3.976595,-4.042571,-4.099566,-4.1379137,-4.169918,-4.163455,-4.1512427,-4.14657,-4.198023,-4.224853,-4.230555,-4.241234,-4.243846,-4.252548,-4.223037,-4.2183614,-4.051386,-3.4348297,-4.0284476,-4.0934668,-4.1209736,-4.1475277,-4.1263685,-0.9366441,-2.423014,-2.591086,-2.165275,-1.9626371,-2.6974459,-3.3034801,-3.7243454,-3.955073,-4.0866075,-4.1352386,-4.1705937,-4.1770554,-4.1680675,-4.174265,-3.9842167,-4.075092,-4.097328,-3.5772035,-0.5545104,-0.65484804,-1.8786937,-2.374627,-2.5954409,-2.6833901,-2.9218554,-0.66434187,-2.3140953,-2.561862,-2.8643472,-3.11232,-3.3086402,-3.5558515,-3.5225024,-3.1338303,-2.5684297,-1.9430522,-2.463844,-1.9866983,-2.5135248,-2.7043324,-2.9783847,-3.3762524,-3.7080705,-3.9042144,-3.9943314,-2.9164562,-3.1363564,-3.5020194,-3.3329306,-0.77729756,-2.4419026,-2.5701053,-2.8316119,-3.100583,-3.4445322,-3.749383,-3.9031081,-3.911037,-3.9673004,-3.92932,-2.131319,-0.6556166,-1.8697882,-2.5449164,-2.681824,-2.652308,-3.0169957,-3.0280938,-3.1349983,-3.353552,-3.5173686,-3.542719,-3.364968,-3.1842198,-3.4277053,-3.742159,-3.9642243,-3.9889836,-3.9723053,-3.931727,-4.022303,-4.0090613,-4.050345,-4.059068,-4.003492,-3.0072284,-3.4237535,-3.9039252,-4.1693172,-4.050869,-4.129668,-4.064443,-4.009219,-4.009562,-4.1233835,-4.1252065,-4.1262684,-4.1373367,-4.066289,-3.9841924,-1.3310996,-2.7047062,-2.9389765,-3.065786,-1.7199174,-2.1476731,-2.6005573,-2.7639961,-3.0118005,-3.0852842,-3.135244,-3.2801561,-3.519583,-3.56179,-3.5616171,-3.8571882,-3.9929247,-4.1042156,-4.1430435,-4.10525,-4.15343,-4.114397,-4.1443815,-4.110283,-4.210829,-4.4286084,-4.491433,-4.520391,-3.953954,-0.84505177,-1.5293161,-2.032565,-2.9381995,-2.9805708,-2.967509,-3.1575546,-3.1838222,-3.1700826,-3.1780233,-3.1969495,-3.208456,-3.1773825,-3.2171328,-3.3368158,-3.3938463,-3.2969503,-3.8179755,-3.8475397,-3.422885,-3.5102806,-3.668858,-3.7983804,-3.8387218,-3.8743608,-3.9098983,-4.023316,-4.299394,-4.141668,-4.079684,-4.246865,-4.4149446,-4.455744,-4.2071495,-4.007621,-3.593535,-3.84354,-4.231986,-4.316577,-4.3638487,-4.2908278,-4.289384,-4.227044,-4.228692,-4.122944,-4.1292467,-3.5443416,-3.2344985,-3.850903,-4.0954967,-4.3425884,-4.527778,-4.6126595,-4.6139235,-4.6041846,-4.5189085,-4.554003,-4.460511,-4.647681,-4.692195,-4.6511936,-4.624564,-4.498047,-4.2297025,-4.107786,-4.3441124,-4.431823,-4.6251197,-4.640834,-4.4932675,-4.510756,-4.514655,-4.225924,-3.0543237,-3.8106003,-4.2805486,-4.3833694,-4.560074,-4.4615927,-0.6529904,-2.8180733,-3.1187756,-3.4865234,-3.8987603,-4.13746,-4.1978064,-4.2816553,-4.3276834,-4.382275,-4.4777584,-4.603449,-0.52208203,-2.989147,-2.9004695,-2.9401526,-2.9648337,-2.0611572,-2.5838442,-2.7952213,-2.9286728,-3.0122802,-3.1468277,-3.3376565,-3.6283126,-3.8840585,-3.9670982,-4.0553026,-4.0924296,-4.088611,-4.120679,-4.1724405,-4.1320972,-4.333265,-4.357435,-4.302743,-4.3064137,-4.297163,-4.4935207,-4.5125504
+-2.5034823,-3.4906793,-4.0798507,-4.31778,-4.4298515,-4.4275146,-4.417611,-4.4214754,-3.0932925,-3.9075801,-4.1365194,-3.5785213,-3.7380936,-4.0134172,-4.3066688,-4.33547,-4.2799916,-2.460844,-2.7189755,-3.4338741,-0.5901149,-2.0876234,-1.4062474,-1.6898845,-2.2984552,-2.8537414,-3.215019,-3.4773905,-3.5366194,-3.6816258,-3.749114,-1.3301739,-2.3421366,-2.808872,-3.4036813,-3.7815142,-3.8862836,-3.8659163,-2.7086446,-3.293841,-3.7004547,-3.8973455,-3.9815474,-1.7017423,-2.2510781,-1.6878629,-2.6268926,-0.6685963,-1.8727776,-2.1385636,-2.3700857,-2.6882563,-2.7628593,-3.0397675,-3.3817813,-1.7568437,-2.0404022,-2.915339,-3.2824066,-3.4933832,-3.4965596,-0.46695736,-1.2022748,-2.0850854,-2.2714596,-1.5840394,-2.4995878,-2.9418612,-3.195405,-3.33153,-3.3986385,-3.5932555,-3.6896813,-3.8899343,-4.015501,-4.16304,-4.2185326,-4.224267,-4.257724,-4.233877,-2.142696,-2.8049707,-3.4791024,-3.9515376,-4.034996,-4.1025085,-4.000449,-3.9864063,-3.9973774,-2.7561777,-3.3485227,-3.7009645,-3.9700375,-4.0531826,-4.121902,-4.176774,-4.20456,-4.2376337,-4.25941,-4.2604737,-4.229868,-4.2594724,-4.2868485,-4.3000917,-4.3266354,-4.35403,-4.3556356,-4.320322,-4.3120832,-2.6717572,-2.2293854,-2.9662929,-3.62566,-3.8379045,-3.9468322,-3.960732,-3.3983755,-2.1651807,-2.189821,-2.9442847,-1.9644092,-2.9160683,-3.5872998,-3.874054,-3.9801006,-4.0484533,-4.075572,-4.100362,-4.1016693,-4.1091137,-3.8429317,-2.6024933,-3.4243755,-3.83097,-3.8816147,-0.07023887,-1.7185895,-1.0488323,-1.8508551,-2.353423,-2.792044,-3.1261816,-0.49524298,-2.0432901,-2.7164357,-3.3345952,-3.5544496,-3.6827693,-3.724783,-2.8319297,-3.0889418,-2.0292091,-2.4579468,-1.3517528,-2.105109,-2.128393,-2.295016,-2.8722258,-3.4591584,-3.7277236,-3.9048216,-3.988576,-3.3779216,-1.7037481,-2.4618406,-3.0572138,-2.5472984,-2.864582,-3.1456842,-3.4122047,-3.6324284,-3.7750154,-3.865244,-3.9368052,-3.8355298,-3.8704977,-3.9010599,-3.78594,-0.03772502,-1.3345224,-1.9401524,-1.9769496,-2.357829,-2.5214376,-2.5363653,-2.8488188,-3.0505614,-3.2561078,-3.246904,-2.313645,-2.4574218,-2.9798756,-3.3928032,-3.639152,-3.7293558,-3.6918817,-3.6784008,-3.801041,-3.7968094,-3.8298273,-3.8678114,-3.82082,-2.5852494,-2.5854936,-3.4821842,-3.7744997,-3.6783218,-3.830768,-3.8560224,-3.840771,-3.835232,-3.8894248,-3.9361794,-3.9479427,-3.913239,-3.7438068,-2.7965767,-0.97848386,-1.8521724,-2.0581796,-2.2126818,-2.0280652,-1.8312169,-2.001299,-2.3550675,-2.601931,-1.909015,-2.4700003,-2.782214,-3.298285,-3.3904433,-3.3461297,-3.7365265,-3.9415934,-3.9693637,-3.8582308,-3.7991245,-3.8252282,-3.819547,-3.8091574,-3.8602204,-3.9481962,-4.1998115,-4.261976,-4.370903,-4.0512543,-3.031909,-1.3332534,-2.3677049,-2.7585871,-2.9805746,-2.2553997,-3.0312505,-3.18235,-2.9935467,-2.9695802,-3.2787232,-3.4298458,-3.2479157,-3.4452343,-3.5403972,-3.7531338,-3.7979715,-4.004883,-3.9810858,-3.793944,-3.6182466,-3.749247,-3.76962,-3.7182255,-3.7230623,-3.7862475,-3.8156977,-4.2950535,-4.1471133,-4.0326123,-4.0902467,-4.3061852,-4.378116,-4.14322,-4.057723,-3.9569118,-4.034914,-4.1938,-4.246121,-4.223758,-4.110228,-4.0229917,-4.016323,-4.0390863,-3.9444041,-3.9997592,-3.977786,-4.0347943,-4.239785,-4.303082,-4.3707724,-4.4346743,-4.434645,-4.386842,-4.380283,-4.441905,-1.4230477,-3.0680294,-3.7137103,-3.9525645,-4.034086,-4.091694,-4.0504184,-3.4594312,-3.7708702,-3.9524412,-4.015741,-4.192711,-4.277401,-4.219443,-4.173662,-4.1445694,-4.0846634,-4.029295,-4.1121364,-4.3588734,-4.3590193,-4.3990865,-4.3680363,-2.55995,-3.576004,-4.1391897,-4.315926,-4.3741164,-4.4266624,-4.267632,-4.249731,-4.208904,-4.2053003,-4.381206,-4.4279823,-0.40248755,-2.1764917,-2.3853981,-2.5839639,-1.4290701,-2.1189768,-2.224476,-2.3420517,-2.153686,-2.8362036,-3.13605,-3.432271,-3.6237953,-3.757853,-3.7966344,-3.875637,-3.9362485,-3.965982,-3.9756923,-4.0151687,-3.9978452,-4.0641265,-4.101063,-4.0667143,-4.0629897,-4.0655756,-4.2884097,-4.3194084
+-2.0266223,-2.9897914,-3.7705264,-4.141028,-4.3444004,-4.3365936,-4.2766676,-4.248719,-4.1891747,-4.181878,-4.2506847,-4.1434164,-3.6247241,-3.9267745,-4.232214,-3.2744462,-3.526154,-0.7936926,-1.3802643,-2.3836212,-2.49235,-2.6865916,-1.4362868,-1.5998927,-2.3063986,-2.714838,-3.0255647,-3.2601347,-3.5330365,-3.7897983,-3.9762764,-0.7408594,-1.8976382,-2.2922747,-2.7966034,-3.2966201,-3.6741984,-3.4092097,-3.6008725,-2.9842975,-3.5493672,-3.9512727,-2.3005106,-1.5088378,-1.6091688,-2.021659,-2.4860039,-1.4246066,-2.216392,-2.1566126,-2.5650122,-2.7199316,-2.7438571,-3.0525742,-3.1987746,-2.7547045,-2.3161047,-2.9251497,-2.061061,-2.7746408,-2.9330568,-1.4027742,-1.8647696,-2.0047631,-1.7856234,-1.6451771,-2.2229362,-2.7655106,-3.0994532,-3.220163,-3.2864428,-2.9904656,-3.4029422,-3.658264,-3.9250627,-4.153353,-4.253222,-4.2863173,-4.3004594,-2.4909172,-0.9520119,-2.2668066,-2.5821085,-3.127624,-3.51547,-3.810075,-3.8586185,-3.1595192,-2.9125767,-3.295655,-3.1372933,-3.6450262,-4.0050526,-4.1717587,-4.2681046,-4.3038607,-4.31516,-4.2962837,-4.3127036,-4.2974133,-4.304837,-4.285283,-4.313443,-4.3322034,-4.353388,-4.422084,-4.4044156,-4.3592315,-4.348501,-3.0675564,-2.1530213,-2.0123856,-2.7789679,-3.4292586,-3.908607,-4.0978155,-3.9587243,-0.7199086,-2.0594263,-2.7418141,-2.764793,-3.2395823,-3.7312531,-4.0274525,-4.2126374,-4.262971,-4.260042,-2.8254569,-3.398631,-3.997058,-4.2389727,-2.065751,-2.983236,-3.6412401,-2.1140618,-0.9273138,-2.0461373,-1.6901495,-2.231332,-2.455921,-2.6526675,-2.8723044,-1.6438279,-1.5013881,-2.2436368,-2.7403197,-3.1451628,-3.4073992,-3.649241,-3.6871467,-1.3030161,-1.504363,-1.5230652,-1.9837152,-2.1862712,-1.988372,-2.0304568,-2.583432,-2.8123546,-3.2373757,-3.5845942,-3.8287232,-3.9894443,-2.8599808,-3.2927983,-2.6386642,-2.1000173,-2.6158104,-2.4460309,-2.9150696,-3.3233109,-3.2358556,-3.6196852,-3.9069245,-3.928892,-3.417305,-3.8912854,-0.76442426,-0.9118631,-2.093204,-2.2858696,-2.3477473,-2.471791,-2.3622837,-2.4398952,-2.441483,-2.6212273,-2.8646693,-3.0449474,-2.8558667,-1.0029901,-2.21096,-2.515542,-2.6836152,-2.92242,-3.1349964,-3.2720335,-3.4856591,-3.6456847,-3.7556958,-3.8477008,-3.8901744,-3.1652308,-0.8893466,-2.2249117,-2.4618945,-2.6492476,-2.6127284,-2.849946,-3.087801,-3.1985698,-3.4197378,-3.6224864,-3.7899203,-3.853146,-3.776319,-2.1438904,-0.9959493,-2.0539787,-2.2914782,-2.300335,-1.5969567,-2.0392435,-2.1401198,-2.2131586,-1.7402451,-1.8819321,-2.1565764,-2.331945,-2.354395,-2.3936057,-2.4085884,-2.3606954,-2.601513,-2.8394248,-2.9953222,-3.0988045,-3.2259061,-3.307609,-3.292599,-3.0932007,-3.3576593,-3.6037586,-3.7580688,-3.9024673,-3.822977,-3.335687,-1.6137401,-2.148632,-2.586141,-2.7249253,-2.3302555,-2.7632563,-2.8427575,-2.8170443,-2.9481623,-3.0199337,-3.0515242,-2.7309513,-2.8703218,-3.019115,-3.0868287,-3.2131155,-3.4872792,-3.5652847,-3.83174,-2.78194,-3.0857453,-3.2817268,-3.4169936,-3.4972408,-3.5910528,-3.0756283,-1.8429179,-2.6259453,-2.8933883,-3.0554943,-3.2384856,-3.11691,-3.265252,-2.7383409,-2.70384,-3.0602872,-3.4565332,-3.8104725,-3.9654226,-3.9647465,-3.8622153,-3.8259149,-3.8653522,-3.8873866,-3.942125,-3.8478804,-3.1669865,-3.4250288,-3.8336766,-4.185708,-4.247799,-4.2922897,-4.3900833,-4.350709,-4.301894,-0.93620265,-2.228341,-2.5560157,-2.786428,-2.9704385,-3.2461543,-1.6269311,-2.0739748,-2.4654486,-2.6910594,-2.9168925,-3.20882,-3.4800766,-3.6404831,-3.8734841,-3.987239,-4.0302153,-4.0029926,-4.0617714,-4.268722,-4.0913725,-4.4128265,-4.361996,-3.594612,-4.0592747,-4.4609747,-4.5067263,-4.564661,-4.4012365,-4.38037,-4.3810835,-4.31719,-4.219286,-4.3614597,-4.361121,-0.79045266,-2.0637975,-2.5330281,-2.7775779,-1.4652597,-2.0755732,-1.6933826,-1.6981326,-1.5125705,-1.9972204,-2.1862524,-2.4429674,-2.5981257,-2.811296,-3.0348544,-3.2698753,-3.4919019,-3.669563,-3.8234377,-3.9026031,-3.9653873,-4.1054754,-4.1602883,-4.2172785,-4.2316813,-4.246897,-4.427085,-4.4163313
+-1.2378999,-1.2368304,-1.4746023,-1.2539285,-1.0681529,-0.7617139,-0.4217442,-0.4551452,-0.6575482,-0.46564576,-0.30671886,-0.2832429,0.22264227,0.36739245,-0.035934385,-0.5837993,-0.939806,-1.1514049,-1.06358,-1.1997577,-1.3273649,-1.3637941,-1.4386047,-1.5186111,-1.4730847,-1.5271353,-1.65442,-1.6715586,-1.7004715,-1.6984524,-1.7390488,-1.7864456,-1.8270298,-1.8522683,-2.0009198,-2.0669227,-2.0094545,-2.1887853,-2.2594974,-2.2272332,-2.1810393,-2.100801,-2.557239,-2.4458709,-2.2424276,-2.137729,-2.1318226,-2.183515,-2.1934233,-2.2346325,-2.2769341,-2.0957818,-1.4852759,-1.9900149,-2.0928142,-0.5664696,-1.2000809,-1.3450116,-1.6580395,-1.7988122,-0.4063308,-0.7451363,-1.0410258,-0.7640899,-0.9389597,-1.2056235,-1.1827296,-1.5022408,-1.6237489,-1.7181631,-0.73911923,-1.3362988,0.30075648,-0.7992713,-1.4917269,-1.1962283,-1.3992983,-0.89412695,-1.4734151,0.08024141,-0.8049006,-1.1088666,-0.5530432,-1.0157697,-1.3828946,-0.16204396,-1.0769734,-1.2084991,-1.2534287,-1.043371,-1.2586057,-1.3940712,-1.5149264,-1.5208725,-1.0441107,-0.90836054,-1.2851782,-0.61041653,-0.9493141,-1.2801903,-1.3452702,-1.0875276,-0.31181845,-0.53755075,-0.9751777,-1.2117859,-1.0463423,-1.2178022,-1.4215835,-0.8909232,-1.0047799,-0.6185531,-1.224559,-0.921333,-1.160566,-1.3981513,-1.4735198,-1.5386746,-1.5216877,-1.5925981,-1.7092962,-1.7376996,-1.0867399,-1.4162487,-1.6054126,-0.2522364,-1.2950205,-1.5243222,-1.6316078,-1.5483817,-1.3032142,-1.7989316,-1.7106701,-1.7620108,-1.9031371,-1.8133575,-1.1775664,-1.1810058,-1.9057491,-1.0606239,-1.7269157,-1.9514503,-1.9495121,-2.018486,-1.9979247,-1.876634,-1.2967505,-2.0718827,-1.9993514,-2.1121936,-1.509934,-2.131206,-2.193298,-2.2813215,-2.2531257,-2.1824846,-1.341504,-1.9258645,-2.3674452,-2.4383478,-1.8111897,-1.9354229,-2.2297,-2.3157759,-1.9854845,-2.187602,-2.2816873,-2.3472686,-1.5186343,-2.2653296,-2.3103304,-2.1659744,-2.3442001,-2.4863706,-2.5602655,-2.781588,-1.8496228,-1.0412987,-1.9192353,-2.347324,-2.4480972,-2.4904928,-2.4957433,-2.495813,-2.5063748,-2.517128,-2.0366733,-2.4399893,-2.6720588,-2.7826366,-2.9193845,-2.9518561,-2.9051886,-2.846903,-2.7824283,-2.6835594,-2.8960414,-2.7096906,-2.2207205,-2.4536638,-2.4154673,-2.624259,-2.7775784,-2.5601234,-2.6835365,-1.708934,-2.4029899,-2.669643,-2.4261823,-2.5457318,-2.7319324,-2.809047,-2.7119322,-1.6980397,-1.8394445,-2.3372722,-2.5419414,-2.63722,-2.7438524,-2.784381,-2.7639565,-2.8363984,-2.8894873,-2.8511097,-2.8764558,-3.0803893,-3.2127469,-3.1329718,-2.7808316,-2.7902548,-2.990769,-2.9285533,-2.9019747,-2.9254873,-2.9514337,-2.6224267,-2.7665062,-2.733817,-2.6055646,-2.5648234,-2.669509,-2.1648378,-2.1611257,-2.0718217,-2.0264783,-2.1141372,-1.9445074,-1.8781329,-2.056213,-1.2817367,-1.3762313,-1.5064954,-1.7698909,-1.9600201,-2.010928,-1.9258957,-1.9848763,-2.0226665,-2.0865421,-2.0560622,-2.1017957,-2.1442773,-1.963931,-1.7494656,-1.8874301,-1.8333763,-1.9196192,-2.0157332,-2.0620034,-1.2871019,-1.635922,-1.5765141,-1.5437403,-1.5539623,-1.5658067,-1.5731301,-1.6632345,-1.6105986,-1.6631112,-1.7023543,-1.7288831,-1.797886,-1.7783549,-1.7184024,-1.4794831,-1.6623673,-1.7763915,-1.8367323,-1.7736164,-1.669807,-1.6029097,-1.5325712,-1.4031029,-1.333966,-1.3846511,-1.2541937,-1.2675368,-1.2155528,-1.243801,-1.3272401,-1.3597854,-1.4818181,-1.5174167,-1.468675,-1.4586825,-1.3131598,-1.6536546,-1.7056952,-1.68921,-1.6458104,-1.5961862,-1.5870872,-1.5109868,-1.6527182,-1.6774988,-1.4051943,-1.4179536,-1.369672,-1.3329538,-1.3026229,-1.3230217,-1.2377814,-1.0389639,-0.9778634,-1.2894034,-1.0669502,-0.9941792,-1.0613216,-0.9928799,-1.1591312,-1.2003512,-1.1800816,-1.225811,-1.2902128,-1.2725906,-1.3059095,-1.3501985,-1.1065062,-0.9404629,-1.1547576,-1.1020514,-1.1647037,-1.3050371,-1.391701,-1.403032,-1.4216397,-1.441511,-1.4382992,-1.275968,-1.196948,-0.6768427,-0.86404216,-0.56985706,-0.33019575,-0.8567235,-0.9924492,-0.73700315,-0.4469535,-0.4071631,0.05560079,0.24033943,-0.41364658,0.017880078,-0.028689507,0.19864957
+-1.0634861,-1.2839233,-1.6122111,-1.8236108,-1.8268718,-1.1640176,-0.9561626,-1.1269103,-1.5474483,-1.2122229,-1.0472775,-1.3508632,-0.82225364,-0.9271962,-1.429624,-1.0537361,-0.7661745,-0.51436526,-0.72473675,-1.0782655,-1.4964048,-1.6030071,-1.8543097,-1.8646859,-1.6716852,-1.9814686,-1.99098,-2.1221716,-2.201046,-2.2294364,-2.3953285,-2.4766202,-2.4636571,-2.50663,-2.678656,-2.7013087,-2.6666706,-2.7338738,-2.7257667,-1.6769261,-2.310051,-2.1033065,-2.298357,-2.4522178,-2.5140138,-2.323244,-2.583846,-2.7416418,-2.7522693,-2.7607985,-2.7536254,-2.7661185,-0.17338794,-1.3644532,0.1895381,-0.24821231,-0.8694713,-0.5002653,-0.11244401,-0.34757853,-0.24339342,-0.275337,-0.48987612,-0.6776425,-0.8486176,-1.2611889,-0.23955408,-0.89261425,-1.3734913,-1.825302,0.2734213,-0.71928465,-0.5296803,-1.0506083,-0.512658,0.1972611,-0.76422864,0.10853355,-0.6789646,-0.6728284,-1.1176467,-1.3483669,-0.6409154,-0.94101995,-1.379619,-1.4759797,-1.713195,-1.6262506,-1.7476708,-1.829617,-0.4963589,-1.3765345,-0.7111828,-1.3332348,-0.93770534,-1.1627628,-1.6242702,-0.048760686,-0.7553937,-0.7358195,-0.2914933,0.02305543,-0.0040932633,-0.37521353,-0.419366,-0.7805699,-0.79643065,-0.5778606,-0.99036926,-1.3658565,-1.5405686,-0.48596546,-1.3155625,0.08842367,-0.6358077,-1.0874707,-0.9687683,-0.5753972,-1.2539033,-1.4297535,-0.48138168,-1.278118,-1.3326887,-1.5297076,-2.0845308,0.0011149012,-1.0220056,-1.3460943,-1.6345013,-1.9877986,-1.8467569,-0.57240975,0.3214758,-0.87315696,-1.270183,-1.5446196,-1.7929841,-1.4170941,-1.9849676,0.0003325902,-1.1894406,-1.2481809,-1.6678429,-2.027732,-2.0811725,-2.2822442,-2.292294,-2.3882804,-2.2349763,-2.3698359,-2.482866,-2.7418857,-2.817429,-2.850853,-2.8130841,-2.8023365,0.30673972,-0.25924197,-1.1560603,-0.6298824,-0.48916337,-1.2833622,-1.7485043,-2.1143918,-2.3202038,-2.2982216,-2.496575,-2.7288938,-2.1937232,-2.388063,-2.6623633,-2.6642692,-2.8601098,-1.9265064,-2.4128506,-2.1756282,-0.67949706,-0.6873904,-1.1421527,-1.9483536,-2.30645,-2.4511852,-2.5637834,-2.7313633,-2.8296466,-2.8260794,-1.5607537,-2.4072857,-2.3347454,-2.4683278,-2.6785033,-2.8839884,-3.0547314,-2.7998927,-2.902785,-2.9172297,-3.3168983,-3.139027,-3.2694697,-3.3497624,-3.2925053,-3.0026302,-3.1258373,-3.3145657,-3.4744515,-3.2030084,-3.2124252,-3.3549328,-2.107233,-2.8519464,-2.9681401,-2.8441648,-3.0306764,-2.9379115,-3.0313382,-3.1620739,-3.2642677,-3.333953,-3.403077,-3.3475144,-3.3928535,-3.364262,-3.5068,-3.5010152,-3.1959963,-3.4677517,-3.6992016,-3.5142674,-3.6065774,-3.5243917,-3.3273294,-3.2395158,-3.3476548,-3.321741,-3.3655057,-2.6406667,-2.6984,-2.7270513,-2.7521477,-2.8567543,-2.8957436,-1.424616,-1.7018602,-1.7672106,-1.7496303,-1.9000765,-1.8077997,-1.7312284,-1.8111783,-1.2810639,-1.350744,-1.5261825,-1.5103003,-1.2957529,-1.1942784,-1.2811549,-1.333845,-1.4346842,-1.3106887,-1.3448216,-1.3720506,-1.324548,-1.3837953,-1.2927446,-1.2300225,-1.2975136,-1.3742288,-1.5862509,-1.609632,-1.4931576,-1.628049,-1.5773969,-1.641501,-1.6180581,-1.6624968,-1.7220702,-1.6370414,-1.5878097,-1.58016,-1.5479394,-1.4631983,-1.4736168,-1.3654091,-1.3779107,-1.3878784,-1.384956,-1.4082994,-1.3609318,-1.4105517,-1.4400858,-1.4511739,-1.4217817,-1.2735466,-1.2252253,-1.1610193,-0.991643,-1.0279251,-0.99931544,-1.2418377,-1.2366071,-1.3398516,-1.5149585,-1.5526112,-1.5325826,-1.3766257,-1.1088942,-1.5004643,-1.4936278,-1.528525,-1.5292228,-1.5736881,-1.5043491,-1.2434851,-1.2793939,-1.266669,-1.0975206,-1.2853265,-1.4036447,-1.4576992,-1.4461433,-1.4230735,-1.3014511,-1.0431682,-0.9807815,-0.85342795,-0.72853756,-0.51616365,-0.59516233,-0.8456141,-0.8680087,-1.0514619,-1.1536051,-1.252342,-1.2103757,-1.2488178,-1.1583132,-1.2669821,-1.1949409,-1.0432838,-0.8031654,-0.9892147,-1.0660986,-1.1923903,-1.2990271,-1.3010935,-1.2670622,-1.2733709,-1.3780407,-1.2551743,-1.0499502,-0.57747036,-0.7619431,-0.46536508,-0.21742278,-0.5945148,-1.154549,-0.76839316,-0.17693186,-0.30741125,-0.31025213,-0.03542957,-0.3747811,-0.26638183,-0.9135911,-1.4256523
+-1.0113643,-1.1841859,-1.3378631,-1.9446212,-2.2471302,-2.168305,-2.304416,-2.4697452,-2.5707288,-2.5750103,-2.501794,-2.642948,-2.415937,-2.3023462,-2.4750755,-1.3538202,-2.0196195,-2.3149962,-0.8514192,-1.3317612,-1.9479201,-2.1013577,-2.3594587,-0.46678331,-0.12079033,-0.9733929,-1.4010264,-1.5311182,-1.8771559,-2.0937564,-2.1985044,-2.4771073,-2.432259,-2.5463777,-2.665269,-2.6801014,-2.6719398,-2.7538042,-2.1079545,-2.2180686,-1.4790362,-1.9993447,-2.3213296,-2.5375695,-2.5522046,-2.571816,-2.6579926,-2.794807,-2.8122919,-2.7640047,-2.7462578,-2.8770401,-0.49378493,-1.6511698,-0.3038807,-0.26524386,-1.0305997,-1.1289734,-1.3659983,-1.870529,-0.11580777,-0.6828783,-1.2159697,-0.43504778,-0.9379044,-1.4322995,-1.7746489,-1.7890586,-2.1052217,-2.272923,-1.895832,-2.200733,-1.3899139,-1.5727757,0.8208656,0.42606577,-0.6807146,-1.0239307,-0.14112368,-0.8341643,-1.4158744,-1.673863,-0.50348085,-1.1474817,-1.6370151,-1.7986895,-2.1380913,-2.0836926,-2.1654654,-2.27981,-0.69249344,-1.6949887,-2.0759315,-2.4419942,-2.3730445,-2.1981025,-2.4858255,-1.5411896,-1.9679059,-1.9177526,-0.11258286,0.49585837,-0.4679413,-1.2257817,-1.4777943,-1.559555,-1.7977154,-1.7104951,-1.9643489,-2.1185126,-2.1341712,-2.2066264,-2.4311354,-2.2794318,-2.366553,-2.5551805,-0.3157588,-0.75293285,-1.5122159,-1.7587893,-2.100429,-2.329701,-2.4954176,-0.07934594,-1.7852576,-0.24331018,-1.4774693,-1.9193231,-2.2807176,-2.5407271,-2.7247028,0.27928513,0.11219862,-0.91590315,-1.3369324,-1.4794393,-1.5094798,-1.8624688,-1.8392329,-0.06504321,-1.0496492,-1.0625143,-1.5187868,-1.9219085,-2.191799,-2.4091945,-2.4630637,-2.3619366,-2.0487676,-2.4066901,-2.5419788,-2.9401324,-3.1086326,-3.1261187,-3.0623772,-3.0653403,-3.104807,-0.76545614,-1.5509344,-0.2414715,-1.6012377,-2.0968366,-2.0037866,-2.4567661,-2.6891806,-2.6961248,-2.8784103,-3.0042539,-2.5202627,-2.6544385,-2.9848318,-3.0550356,-2.362245,-2.6608462,-2.6049132,-1.184858,-2.409722,-2.6831849,-2.713672,-2.916865,-3.0477827,-3.1976528,-3.2875643,-3.544618,-3.4903958,-3.479657,-1.3629965,-2.6287603,-2.82341,-2.9535074,-3.2222219,-3.4053369,-3.44623,-3.3162117,-3.235158,-3.2973075,-3.6569605,-3.5222836,-3.8093638,-2.733141,-3.0996895,-3.1833732,-3.355447,-3.6313074,-3.7013717,-3.5904374,-3.528633,-1.5767627,-2.178873,-2.7712088,-3.052366,-3.0635576,-3.2568703,-3.356214,-3.398388,-3.4566686,-3.540842,-3.589418,-3.6579266,-3.615995,-3.6408677,-3.6269,-3.651987,-3.7887464,-3.5331926,-3.4938354,-3.9396303,-3.8308082,-3.805761,-3.7582831,-3.5017872,-3.0630455,-3.3340387,-3.3432868,-3.387996,-2.3011925,-2.463463,-2.4804106,-2.4122102,-2.5129185,-2.6015882,-1.4711808,-1.9670275,-2.027719,-1.9789833,-1.961279,-2.0001597,-1.9617575,-1.8059198,-1.539123,-1.7291907,-1.7357496,-2.0073857,-1.8630813,-1.537465,-1.5526363,-1.5557479,-1.7261379,-1.732467,-1.513162,-1.5282714,-1.4906008,-1.5212559,-1.490743,-1.5335399,-1.7024583,-1.8116717,-1.9799582,-1.0541631,-0.9947352,-1.3495859,-1.392806,-1.5691807,-1.6127172,-1.729581,-1.8010776,-0.92468745,-1.089257,-1.0658715,-1.088185,-1.0864547,-1.1740763,-1.1707679,-1.2340659,-1.1950916,-1.248113,-1.280792,-1.2800025,-1.3116773,-1.3178226,-1.3280517,-1.3085303,-1.2171285,-1.2283782,-1.1805457,-1.1116251,-1.13807,-1.2365977,-1.2088388,-1.1209005,-1.238396,-1.5178448,-1.560237,-1.5409399,-1.3419377,-0.9926105,-1.4566809,-1.4829785,-1.5139505,-1.5317239,-1.5569241,-1.6076401,-1.5404718,-1.5875063,-1.6055118,-1.4340584,-1.3492347,-1.3916428,-1.4520799,-1.361074,-1.4275304,-1.2925869,-1.0728554,-0.9595936,-0.88662946,-1.0574028,-0.7826788,-0.5716618,-0.8013123,-1.0479476,-1.1734024,-1.2035118,-1.1472449,-1.2415315,-1.2636638,-1.3754021,-1.427521,-1.267876,-0.9156577,-0.6427842,-0.8997826,-1.2006766,-1.1746527,-1.4648427,-1.4040784,-1.1879972,-1.250082,-1.3752323,-1.3143451,-0.93807817,-0.43811628,-0.63409895,-0.52894956,-0.64340943,-0.958465,-1.6742557,-1.2879785,-0.5580717,-0.90918946,-1.075471,-0.8614715,-1.3523824,-1.716959,-2.0421174,-2.0956964
+-0.8600189,-0.7334359,-0.9684059,-1.1569039,-1.335344,-1.6113762,-1.7541876,-1.8217884,-1.9040239,-1.9265817,-2.042524,-2.0535445,-1.908144,-1.9002596,-1.9333308,-1.8944107,-1.7260187,-1.4370283,-1.7206424,-1.928095,-2.1249204,-2.0604005,-2.0816448,-2.1646352,-1.8678783,-2.1191092,-1.2153296,-1.9304888,-1.9511193,-2.2567568,-2.0861185,-2.2639484,-2.111466,-2.1136642,-2.1892529,-2.260579,-2.2993827,-2.2929864,-1.5752779,-1.6881657,-1.8300778,-1.9763836,-1.876889,-2.0971744,-1.9774536,-1.951794,-1.9380387,-2.0493793,-2.0055754,-2.028475,-2.1038074,-1.8197733,-1.1253785,-1.9506794,-0.89567864,-1.4237736,-1.0384523,-1.4066967,-1.5575806,-1.7524647,-1.4646133,-1.6768941,-1.9105381,-0.52506727,-1.338108,-1.6392297,-1.812617,-1.8164413,-1.9622678,-2.0360336,-2.0419264,-2.2042212,-2.0280547,-2.1577072,-0.87805134,-1.6260732,-2.1113653,-1.9704283,-1.935193,-2.0597072,-2.3464417,-2.5579078,-1.9530085,-2.18715,-2.4451747,-2.3224235,-2.6158175,-2.6175532,-2.6010828,-2.6584413,-2.7220945,-2.6810317,-2.67737,-2.614512,-2.574242,-2.0602705,-2.3408642,-0.45052326,-1.697389,-2.0122368,-0.8597744,-1.5803097,-2.050976,-2.3172798,-2.3443365,-2.370047,-2.1997442,-0.95748407,-2.1425648,-1.9608732,-2.1231263,-2.441023,-1.3069675,-1.2840817,-1.9392666,-2.3887734,-0.47400752,-1.4278976,-2.0618112,-2.1301315,-2.3088045,-2.3517177,-2.4296887,-2.5533752,-2.8937259,-0.6842007,-2.0122366,-2.407744,-2.5375361,-2.552085,-2.7032182,-2.786902,0.006044816,-0.8306027,-1.8908609,-2.131844,-1.7989453,-1.7836479,-2.2968366,-2.1384332,-2.0232906,-1.796179,-2.36877,-2.4844093,-2.5245223,-2.703778,-2.732202,-2.7916818,-2.6345038,-2.7558599,-2.814616,-3.0318742,-0.59587795,-2.2874732,-2.528401,-2.5221148,-2.629125,-1.1763564,-1.5598599,-2.2546847,-2.2046018,-1.896057,-2.2027304,-2.5716095,-2.6668236,-2.8785043,-2.7455845,-2.480569,-1.9055897,-2.5009103,-2.7346501,-2.8652766,-2.9862921,-2.9196057,-2.853608,-2.4065742,-2.6755002,-2.8084054,-2.7511082,-2.9373543,-3.0522337,-3.08591,-3.0521474,-3.1616936,-3.2106514,-3.233216,-1.1834972,-2.3030806,-2.6386623,-2.6862016,-2.7807474,-2.8517282,-2.8607914,-2.900134,-2.83962,-2.6806245,-2.9294577,-3.066075,-3.1721854,-3.0926697,-2.7196536,-2.8238764,-2.8456073,-2.944879,-3.0561123,-3.016025,-2.9171739,-2.0476978,-2.5180407,-2.8222117,-2.9827528,-2.3269768,-2.7797022,-2.989396,-3.064822,-3.2423172,-3.1822176,-3.2285428,-3.244535,-3.1297135,-3.1187906,-3.0581765,-3.1442165,-3.2382956,-3.0497994,-3.2208576,-3.4294105,-3.3642695,-3.295166,-3.2486513,-3.087244,-2.1073716,-2.5989556,-2.5960476,-2.6684752,-2.7599716,-2.5994043,-2.534614,-2.401554,-2.4103284,-2.432872,-2.0807981,-2.4005604,-2.4748888,-2.4411674,-2.3937173,-2.3341045,-2.2933311,-2.3569643,-2.3278806,-2.4135854,-2.38741,-2.5406666,-2.367145,-1.6447119,-2.0299454,-2.2569485,-2.320551,-2.3854342,-2.1561494,-2.1125536,-2.3749783,-2.388143,-2.1782465,-1.9967693,-2.1021023,-1.9053355,-1.9464837,-1.0013788,-1.0607519,-1.4034866,-1.4199876,-1.4522233,-1.4618908,-1.457892,-1.5737433,-1.2199746,-1.3600746,-1.6377139,-1.5084765,-1.6130484,-1.7685393,-1.8686148,-1.7877767,-1.6743106,-1.7601608,-1.8125027,-1.85239,-1.8955675,-1.9328381,-1.854671,-1.8791869,-1.740556,-1.6226645,-1.3478975,-1.1200228,-1.2250348,-1.2984413,-1.1704745,-1.1399461,-0.96330684,-1.184972,-1.1830766,-1.0070205,-0.94464934,-0.88547945,-1.0214285,-1.3289467,-1.4663742,-1.33776,-1.3284873,-1.3973125,-1.2536532,-1.4457968,-1.5219116,-1.107085,-0.9073129,-0.68079746,-0.7385854,-0.5807248,-0.512171,-0.36607903,-0.16024274,-0.19893989,-0.28924522,-0.5915663,-0.6246791,-0.83530444,-0.6840029,-1.0663722,-1.1501234,-0.69500583,-0.5396946,-0.56833464,-0.8001599,-1.0268408,-0.7674752,-0.4935582,-0.33999225,-0.4946963,-0.8283814,-1.2043341,-1.9401997,-2.204439,-2.1588023,-1.2799755,-1.242678,-1.1233726,-1.1049186,-0.69369215,-0.23153278,-0.33910695,-0.4028493,-0.30231103,-0.5131367,-1.4037906,-1.2702795,-0.54724735,-0.7604665,-1.0952798,-1.287788,-1.4599229,-1.5868989,-1.6280123,-1.6572495
+-1.1369153,-1.3219855,-1.576914,-1.6772658,-1.8316752,-2.3408074,-2.460463,-2.5425105,-2.544438,-2.6074367,-2.82038,-2.5866244,-2.656004,-2.6360328,-2.4747305,-2.505644,-1.83613,-1.3292621,-2.0854218,-1.7563281,-1.7444866,-2.0003672,-2.1991491,-2.3972096,-2.6491444,-2.5135999,-0.47364345,-1.5554914,-1.902603,-0.983676,-1.6225833,-2.0400486,-2.269551,-2.3523247,-2.5800538,-2.6590688,-1.7506986,-2.2383506,-1.5046858,-1.3597746,-1.3231221,-1.8066684,-2.2731953,-2.4983256,-2.4548736,-2.4384537,-2.5695233,-2.5585718,-2.497005,-2.5877538,-2.532912,-2.5268466,-0.5875398,-1.6419768,-1.1732867,-1.394188,-1.5207199,-1.0555443,-1.6545595,-0.90651184,-1.5502846,-1.783711,-2.0236478,-1.5797201,-1.6621728,-2.019604,-2.2081387,-2.3348646,-2.311059,-2.3845363,-2.5047626,-2.6493802,-2.7333755,-1.6659987,-0.7951452,-1.4286888,-2.0099053,-2.1884708,-0.31107894,-1.592041,-2.2237403,-2.6772497,-2.6152039,-2.8799052,-2.7987504,-2.866517,-3.159813,-2.8150191,-2.8233342,-2.899242,-3.0618334,-3.176352,-2.1211364,-2.4272099,-2.685741,-2.758049,-3.0402002,-0.6734043,-2.1242507,-2.3155422,-2.1442537,-2.430652,-3.0574267,-3.161182,-3.2685504,-2.5091007,-2.7776084,-0.27694178,-2.0751762,-2.0184326,-2.381683,-2.6998472,-2.8938766,-1.5565865,-1.9578027,-2.6083417,-2.7933083,-0.7084419,-2.0230083,-1.3868707,-2.3293576,-2.4652772,-2.0532339,-2.4442158,-2.838406,-3.019868,-3.374364,-3.4499266,-3.0467744,-3.0916631,-3.1085248,-2.212313,-0.36792865,-1.0163659,-2.2805402,-2.7449164,-2.1830487,-2.6394155,-2.9615717,-3.1321354,-1.1643095,-1.7061034,-2.6261306,-2.822362,-2.9150975,-3.2747617,-3.5986488,-3.6159704,-3.2511053,-3.2821121,-3.256416,-3.330326,-3.281662,-3.4502816,-3.289738,-3.202657,-3.2045145,-0.6141651,-1.5079693,-1.4356629,-2.2236462,-1.5516337,-2.460823,-2.8951955,-2.9897628,-3.307804,-3.2620344,-0.57679284,-1.7841922,-2.595293,-2.896798,-3.1138353,-3.221644,-3.15032,-3.1634438,-3.1280172,-2.4039044,-2.9667332,-3.4311693,-3.607954,-3.647557,-3.640554,-3.5880508,-3.642744,-3.6728523,-3.5603275,-0.8464383,-2.3391082,-1.8266126,-2.306334,-2.7195387,-2.9430711,-3.0900626,-3.1490524,-3.3245993,-3.303328,-3.2853355,-3.4474254,-3.3977337,-3.3914602,-3.661419,-2.0159063,-2.6843386,-3.0782628,-3.2017784,-3.3577766,-3.2743125,-3.3251553,-3.4075258,-3.4927619,-3.6374698,-3.5571814,-3.5645278,-3.5656886,-3.8291483,-4.0812387,-3.9907331,-4.0395412,-3.9755464,-3.8368351,-3.0215523,-3.4508977,-3.6249971,-3.734458,-3.723311,-3.8115497,-3.925385,-4.0097985,-4.0469146,-3.8488574,-3.804247,-2.389734,-3.1172075,-2.9930825,-3.106121,-3.0764484,-2.5189164,-2.760057,-2.8154707,-2.8618681,-2.3817081,-2.3201492,-2.4705315,-2.6892548,-2.7317164,-2.6361504,-2.7375019,-2.7814066,-2.9076686,-3.3261755,-3.6445153,-3.6155868,-3.7756934,-3.4456449,-3.315999,-3.7569616,-3.8577156,-3.8977976,-3.9095435,-3.3066025,-3.4457152,-3.8257525,-3.650307,-3.1717148,-2.9771452,-3.192251,-2.7146263,-3.0345993,-2.0591376,-1.9355414,-2.0188093,-1.82277,-2.0145636,-2.0324543,-1.9373813,-2.0533454,-1.7598846,-2.1960697,-2.339042,-2.337853,-2.3065827,-2.30398,-2.2600842,-2.1953595,-2.0683713,-2.1545904,-2.206084,-2.1053047,-2.0606346,-2.0004659,-1.8582408,-2.00018,-1.873977,-1.5243644,-1.3772326,-1.343429,-1.6040686,-1.5858334,-1.2394909,-1.1643208,-1.0799539,-1.2008088,-1.2737814,-1.1070637,-1.100926,-1.0701792,-1.2577032,-1.5976591,-1.5828714,-1.3604269,-1.4996468,-1.279771,-1.4560009,-1.7522149,-1.6105713,-1.1706036,-1.2897667,-1.2990643,-1.1770803,-1.1479927,-1.0753947,-0.982385,-1.2204016,-1.5496719,-1.584211,-1.8227022,-2.1488452,-2.2508106,-2.2205281,-2.2552214,-2.4325454,-2.396276,-2.4041438,-2.22958,-2.0350764,-2.0948317,-2.2564073,-2.0279655,-1.6482847,-1.9470972,-2.3868332,-2.3429415,-2.4847007,-2.9966428,-3.063985,-3.0451162,-3.1601257,-3.309416,-3.149643,-2.4387014,-2.1604404,-2.0167723,-2.058733,-2.380711,-2.5871959,-2.6955318,-2.4527338,-2.3638437,-2.3946624,-2.3039594,-2.3701394,-2.3035793,-2.3908036,-2.5696073,-2.576693
+-1.3473514,-1.9681438,-2.3799949,-2.6211147,-2.8610046,-3.0359023,-3.1966395,-3.3863883,-3.4363077,-3.4447038,-3.5569134,-3.5605752,-3.59803,-3.5639858,-3.4728203,-2.9596188,-1.6784817,-1.7965695,-2.7540472,-1.9160466,-1.9278476,-2.5427237,-2.9498239,-3.1636682,-3.0807087,-2.9773912,-1.0914031,-2.2490704,-2.779434,-0.90001374,-1.5850068,-2.2088618,-2.7236037,-2.7939224,-2.9960036,-3.1253483,-3.0746584,-2.8770664,-1.3954682,-2.2603056,-0.7407668,-2.000241,-2.6567664,-2.8671486,-2.9805923,-1.5871232,-2.5706475,-2.8522568,-2.8976617,-3.0461783,-3.020404,-3.0455966,-1.6484107,-2.5523372,-1.773439,-2.0772083,-2.3007765,-0.94220823,-2.0140247,-2.0952044,-1.5148275,-2.273644,-2.6966932,-2.9315748,-2.865209,-3.0159812,-3.0652118,-3.1149077,-3.0465002,-2.7056618,-3.0736341,-3.2363105,-3.3125515,-1.8377709,-1.8409398,-2.2691803,-2.4252224,-2.6748857,-0.18358853,-1.8887737,-2.1459796,-2.2896814,-2.648557,-2.889074,-2.8986967,-3.0685425,-3.2566504,-3.22921,-3.325642,-2.9089468,-3.2619483,-3.4469821,0.15611136,-1.9096256,-2.0095072,-2.350892,-2.2690163,-1.1509874,-2.1044903,-2.366222,-2.6277485,-2.812884,-2.9700947,-2.9726336,-2.529608,-0.6822279,-2.1805143,-2.3645473,-2.4527946,-2.4440317,-2.7788434,-3.0715692,-3.112197,-2.2942188,-2.7816114,-3.180994,-3.2367055,-2.1709673,-2.1453562,-2.4277737,-1.9856147,-1.6265982,-2.4218314,-0.7093784,-1.9321023,-2.314434,-2.5508127,-2.9972818,-2.9341578,-3.1266472,-3.2604125,-3.361733,-2.070541,-1.8832829,-2.6587014,-2.932935,-3.106873,-2.5541625,-2.8635025,-3.244063,-3.2968311,-3.131598,-3.6469488,-3.5173101,-2.2184577,-2.726165,-3.2066207,-3.4641972,-3.1729417,-3.4369228,-3.2580943,-2.1130474,-2.902527,-3.2855277,-3.3640132,-3.3914547,-3.4655151,-3.494249,-2.3212438,-2.8542266,-3.201809,-2.475031,-3.0060053,-3.3860083,-3.357473,-3.351924,-3.3679366,-3.245857,-1.5267577,-2.8762999,-3.1568916,-3.22124,-3.262727,-3.3202333,-3.0896418,-3.3537357,-2.729289,-2.964871,-3.4006965,-3.6525319,-3.7033277,-3.713725,-3.6950254,-3.7301087,-3.6727843,-3.6027372,-2.2223253,-2.95579,-2.814144,-3.3066072,-3.5552325,-3.523325,-3.560133,-3.642838,-3.6123333,-3.7273896,-3.8011277,-3.7667532,-3.607273,-3.757227,-3.8968894,-4.1705275,-3.974803,-3.9383192,-4.0576777,-4.1748343,-3.972911,-3.8526318,-3.961566,-4.0089135,-3.9987626,-4.1288824,-3.9618392,-3.9560766,-4.2858553,-4.2746077,-4.404124,-4.426235,-4.2846537,-4.1199503,-2.2954235,-3.5438905,-3.6788073,-3.9094727,-3.8519416,-3.779145,-4.0900583,-4.3585215,-4.2807236,-4.0730247,-4.170823,-2.6568978,-3.158136,-3.0922928,-3.0106688,-2.9814532,-3.1971083,-2.9614606,-3.0988667,-3.1758127,-2.3027406,-3.0090892,-3.2502236,-3.396041,-3.2584047,-3.12125,-2.968454,-2.9485211,-3.1120975,-3.2579174,-3.5069938,-3.5147657,-3.5180159,-3.2307916,-3.2100642,-3.200274,-3.3527527,-3.3978112,-3.289906,-3.014631,-3.035639,-2.9933653,-2.9116592,-2.8036127,-2.7516825,-2.9285138,-2.4224281,-2.7019775,-2.1218975,-2.497919,-2.6659064,-2.6080184,-2.9003534,-2.8493757,-2.798492,-2.58503,-2.276815,-2.8365035,-2.76925,-2.711266,-2.6050591,-2.59197,-2.460292,-2.401415,-2.4095368,-2.4721608,-2.347105,-2.383634,-2.4539957,-2.1561313,-1.477999,-1.7743316,-1.9373158,-1.7063869,-1.7818962,-2.0612557,-2.099278,-1.9781297,-1.3270986,-1.7601525,-1.7329682,-1.9439628,-1.9747175,-1.8446052,-1.893943,-1.9479055,-2.0032165,-2.162861,-1.8780919,-1.70632,-1.9042826,-1.607219,-1.8276199,-1.5054631,-1.5878284,-1.5832235,-1.9561552,-2.3345675,-2.522177,-2.553679,-2.6408577,-2.7457852,-2.7496014,-2.8524187,-3.0325916,-3.0450475,-3.3329296,-3.4452133,-2.8496566,-2.4575715,-2.9751527,-2.9873717,-2.958799,-2.764801,-2.7959042,-3.0435877,-3.0310864,-3.0119348,-3.0522132,-3.313632,-3.2496665,-3.3537612,-3.3335986,-3.6158469,-3.3730288,-3.2856565,-3.3638415,-3.5171843,-3.279108,-2.9742255,-3.1266494,-3.2901742,-3.201458,-3.2827258,-3.42855,-3.2207503,-3.3156419,-1.9360906,-2.843039,-3.2474356,-3.2507443,-3.253823,-2.2775958,-2.7276149,-3.1453247
+-1.4219986,-1.6865261,-1.9261477,-2.2671118,-2.3470526,-2.9445634,-3.1623008,-3.22906,-2.870932,-3.03997,-3.179293,-3.0050478,-2.994624,-3.0290594,-2.863192,-2.5972786,-0.34912762,-1.0713378,-2.0758016,-1.4564706,-1.9405241,-2.1939545,-2.5153143,-2.367453,-1.9757851,-1.4202448,-1.3082445,-1.7202506,-2.0642762,-1.3120219,-1.94593,-2.046781,-2.224177,-2.4122565,-2.6246285,-2.7706547,-2.827587,-2.063431,-0.8839938,-1.8262718,-1.2771677,-2.038476,-2.33787,-2.4994793,-2.44105,-1.4534987,-1.9437683,-2.1745596,-2.3043308,-2.367718,-2.44531,-2.4932513,-2.0465517,-1.08124,-1.093251,-0.9410027,-1.034009,-1.2600917,-1.7350343,-1.7057868,-1.2136532,-1.7353991,-1.952709,-1.8129314,-2.0182443,-2.3282578,-2.4896884,-2.5228555,-2.5175037,-2.5709314,-2.5816298,-2.6284807,-2.645974,-2.7388306,-2.7409885,-2.8734229,-2.752819,-2.8296075,-2.5426052,-2.8500607,-3.0188022,-3.0667596,-3.193745,-3.2568445,-3.1190243,-1.9608873,-2.070035,-2.7372575,-0.7108813,-1.8146702,-2.4013374,-2.7343025,-0.6897276,-1.3010803,-2.0546145,-2.2423167,-2.2031507,-0.72382057,-1.7187983,-2.31593,-2.6217217,-2.755666,-2.0121808,-1.9003218,-2.565776,-1.1675414,-2.0175452,-2.1750865,-2.4861584,-2.7845006,-2.8843617,-2.9233727,-2.266852,-2.5617976,-2.8751059,-2.9847484,-3.1417818,-3.0241475,-2.9519722,-2.2302175,-0.84845275,-1.8215688,-2.4766793,-1.7334969,-2.3486667,-1.5087677,-1.0101404,-2.165863,-1.2250546,-1.8747131,-2.2467265,-2.6357975,-2.2465613,-1.2896092,-2.35034,-2.8145363,-3.0633214,-3.190497,-3.2318027,-2.9683099,-0.32956606,-1.5998145,-2.5296874,-2.7635758,-2.9029222,-1.8386253,-2.0239644,-2.6409516,-1.765133,-2.3538184,-1.0267291,-1.281475,-1.3734909,-2.0700045,-2.6616096,-1.172413,-1.3330784,-1.7929448,-2.3810291,-1.7423731,-2.1404362,-1.5723711,-2.0409038,-2.8703928,-2.855311,-1.8187298,-2.2546751,-2.4534755,-1.0810165,-2.3766358,-2.738559,-2.9294074,-3.1290655,-3.1634257,-3.193569,-3.3749666,-1.9525262,-2.1695402,-3.122316,-3.3217983,-3.430039,-3.4503179,-3.5448835,-3.6329947,-3.5749874,-3.5290275,-0.8306107,-2.0779748,-1.9950978,-2.438336,-3.0259511,-3.21108,-3.2015069,-3.2774084,-3.2025294,-3.4135838,-3.281645,-3.169024,-3.2529743,-3.4154484,-3.799878,-3.8761349,-3.4606543,-3.582819,-3.6146166,-3.7324657,-3.6753001,-3.6409993,-3.649587,-3.791456,-3.6349175,-3.6825776,-3.5960717,-3.621657,-3.7791915,-3.7418966,-3.9365945,-3.968491,-3.84476,-3.8834944,-1.7663599,-2.5471036,-3.0284114,-3.249669,-3.2341022,-3.4749613,-3.5316737,-3.6546006,-3.6861603,-3.6568956,-3.7284193,-2.6424513,-3.418982,-3.4802885,-3.489639,-2.7425508,-3.053193,-3.258737,-3.4062219,-3.5308871,-2.6333873,-3.055753,-3.3004138,-3.415049,-3.3968694,-3.4895234,-2.486763,-2.936186,-3.1229022,-3.2250075,-3.61407,-3.8779845,-4.014166,-3.7028565,-3.3720555,-3.5753531,-3.655527,-3.8918142,-3.856295,-3.7076192,-3.701562,-4.2421255,-4.047804,-3.7934275,-3.6174512,-3.4959064,-3.2637246,-3.0607786,-1.9179225,-2.0917099,-2.2685058,-2.3296576,-2.5177097,-2.6541693,-2.5252335,-2.8331554,-2.5079448,-2.8654764,-3.5096114,-3.5179706,-3.7882323,-3.756206,-3.570119,-3.3003302,-2.8192763,-2.6860318,-3.3027213,-3.3307424,-3.315823,-2.5880322,-1.7244819,-1.823546,-1.6218306,-1.4482627,-1.696127,-1.8443906,-1.8572112,-2.2749066,-2.1178021,-2.2628345,-2.5629299,-2.7937603,-2.5569167,-2.2121286,-2.2071161,-2.3117142,-2.4174073,-3.0045483,-3.145759,-2.8410006,-2.555244,-2.321469,-2.1624517,-2.889004,-3.1538668,-2.368536,-2.177474,-2.42625,-2.8827915,-2.658566,-2.6078253,-2.535254,-2.5439987,-2.436839,-2.5356164,-2.6676154,-2.7603111,-2.8324635,-2.7520957,-2.339664,-2.95584,-2.766051,-2.6401262,-2.607085,-2.6561372,-2.6960185,-2.635677,-2.606217,-2.5851328,-2.6148362,-2.7025683,-2.633288,-2.7186208,-2.8924036,-3.0059948,-2.8957505,-3.0729785,-3.244413,-3.0362208,-2.6754837,-2.9401662,-2.9232512,-2.9128785,-3.0444355,-3.0484986,-2.9995043,-2.8280644,-2.368834,-2.4811237,-2.8484561,-2.3203747,-2.7771037,-1.376583,-2.3535404,-2.5610464
+-1.1095685,-1.4838485,-1.8019402,-2.2277422,-2.4551265,-2.102554,-2.7759576,-3.151665,-3.3362179,-3.51647,-3.391313,-3.6044428,-3.7139919,-3.7570403,-3.6080036,-3.4730453,-0.6826131,-2.0952327,-2.486133,-1.9189836,-2.4725556,-2.7520366,-2.8316543,-2.3439324,-2.539203,-2.4858234,-2.2544484,-2.535322,-1.0765731,-2.0321844,-2.288518,-2.4186795,-2.4890976,-2.6812844,-2.8365273,-2.9496512,-3.0229278,-3.0489714,-1.7695297,-2.6056952,-1.5890596,-2.3378944,-2.5839052,-2.7685363,-3.0584564,-1.9537464,-2.363259,-2.5875626,-2.5822687,-2.63282,-2.6896508,-2.5758133,-2.1330204,-1.8679582,-1.8411239,-1.954154,-1.5739621,-2.1292214,-2.180334,-2.137907,-1.6954638,-1.9693683,-2.2485595,-2.3210788,-2.5565672,-2.7595751,-3.0650759,-2.4390306,-3.0045848,-3.3398833,-3.4709568,-3.6045043,-3.653481,-3.691465,-3.7119308,-1.3331679,-1.4403229,-2.3238554,-1.6810945,-2.1883402,-2.441082,-2.8217134,-3.1711264,-3.4366696,-3.3798218,-3.354259,-0.7467056,-2.1787744,-1.8865552,-2.4760776,-2.8762174,-2.1892881,-1.3090502,-1.9884685,-2.1484313,-2.3421898,-1.9085929,-2.1912928,-2.2763844,-2.4408717,-2.8524213,-3.0926633,-0.36537012,-1.6520922,-1.96792,-2.377837,-2.388801,-2.4463634,-2.6279354,-3.0735056,-3.3352718,-3.5415778,-3.6785715,-3.5327241,-2.3805423,-1.3097975,-2.4155421,-2.784121,-3.1254568,-1.3846406,-2.553916,-1.7448381,-2.3937728,-1.4205848,-2.404593,-2.5562544,-1.5020196,-2.1921885,-1.4999613,-2.2271867,-2.5438209,-2.6959338,-2.4159684,-1.463145,-2.5111537,-2.960817,-3.258545,-3.4594402,-3.6444163,-3.795312,-0.5465991,-2.096622,-2.7818131,-2.8940425,-2.977928,-2.924662,-1.3012174,-2.1339383,-1.910963,-2.5212893,-2.0250752,-1.4331411,-1.0930327,-1.9832133,-2.3795505,-2.528494,-2.188809,-2.308354,-2.4742622,-2.5771542,-2.2100823,-2.0056884,-2.612141,-2.9443614,-2.9852061,-1.6294397,-2.392937,-2.6459665,-1.6047219,-2.5534444,-2.6352458,-2.7041962,-2.9129496,-2.915474,-3.0291595,-3.330086,-1.4850745,-2.0607145,-2.9719143,-3.210128,-3.4423323,-3.3754268,-3.5406687,-3.726623,-3.7207437,-3.7288747,-0.97238106,-2.2284188,-2.6140308,-2.9731498,-3.1614614,-3.368503,-1.645173,-2.6880763,-2.8591678,-3.068443,-3.1313996,-2.956266,-3.067634,-3.218594,-3.711119,-3.7641714,-3.5620012,-3.8156037,-3.88693,-3.9633698,-3.8622963,-3.8703022,-1.4497305,-2.6677692,-2.8307056,-3.0006356,-3.1950402,-3.2931132,-3.5507927,-2.7642694,-3.1814084,-3.5906677,-3.8015616,-3.84683,-1.4204406,-2.596535,-3.0427365,-3.3427591,-3.4732628,-3.4604173,-3.5852425,-3.7159388,-3.7764132,-3.8004189,-3.6824675,-3.6775148,-3.7312791,-3.8504221,-3.7998643,-2.7682028,-3.2578232,-3.3887718,-3.584487,-3.6742136,-3.4080672,-3.7551923,-3.7480106,-3.7128043,-3.890161,-3.9736452,-2.9912577,-2.530367,-3.2302837,-3.3460789,-3.4761448,-3.7013092,-3.886746,-3.7414203,-3.4527397,-3.6162102,-3.7526455,-3.9135313,-3.9167962,-3.5519056,-3.7195807,-3.9487808,-3.9281957,-3.8651257,-3.7086706,-3.6263852,-3.2797794,-3.4084659,-2.6736465,-3.1219811,-3.3071368,-3.332173,-3.499412,-3.6988277,-3.6951141,-3.7990494,-3.5177443,-3.5542216,-3.9842477,-3.9463508,-3.878949,-3.8613393,-3.8517592,-3.6645722,-3.0826104,-3.3407059,-3.8009775,-3.9279425,-3.6383367,-2.892291,-2.7046118,-2.7018995,-2.6184053,-2.5376554,-2.660407,-2.7741535,-2.9418702,-3.279349,-3.2658262,-3.3416567,-3.481687,-3.5942771,-3.5756779,-3.3895032,-3.3466125,-3.402442,-3.5500169,-3.898466,-3.992494,-3.9013405,-3.7160413,-3.592791,-3.5144298,-3.795521,-4.103388,-3.519959,-3.4629428,-3.425249,-3.6461546,-3.506352,-3.7313013,-3.7231848,-3.7184732,-3.680385,-3.6217995,-3.4433427,-3.6625605,-3.705507,-3.412882,-3.4569135,-3.9972353,-3.946849,-3.8219671,-3.7426457,-3.6359882,-3.8878345,-3.8947418,-3.6046226,-3.3177357,-3.2264576,-3.6680615,-3.7248769,-3.781614,-3.6205158,-3.5222058,-3.7998538,-3.686974,-3.7961907,-3.839743,-3.445274,-3.656475,-3.653543,-3.5985897,-3.71282,-3.394874,-3.3395114,-3.2101233,-3.4745185,-2.099136,-2.3198428,-2.8035977,-3.052569,-1.6901978,-2.586873,-2.731957
+-1.5328127,-2.0978522,-2.5002465,-2.7908294,-2.7199826,-2.867602,-3.1408553,-3.3196688,-3.4097443,-3.4994607,-1.0897702,-2.6237533,-2.856523,-2.84801,-2.7593443,-2.682834,-0.91824293,-2.3402963,-2.5858288,-2.6769822,-2.5995274,-2.5722218,-2.7749655,-2.8086789,-3.0549157,-2.745798,-1.6519146,-2.456852,-1.7657301,-2.459921,-2.5750048,-2.6175675,-2.6118438,-2.7861478,-3.013639,-3.0720174,-3.2373683,-1.6399848,-1.544989,-2.5268831,-2.6392646,-2.728921,-2.5039992,-2.7867281,-3.2461152,-1.3554641,-2.1105623,-2.4461608,-2.6377306,-2.5544944,-2.518725,-2.4710634,-1.5783325,-2.1736295,-1.6780756,-2.0790405,-1.9766487,-2.1977367,-2.4751954,-2.6111803,-1.5690316,-2.1457307,-2.3348818,-2.4823465,-2.6599536,-2.9188924,-3.2440753,-3.4703915,-3.5972388,-3.6777644,-3.70568,-3.8428144,-3.8107827,-3.7120228,-3.7935553,-3.8791177,-3.8199725,-3.8423097,-0.7382529,-2.3507369,-2.4809198,-2.6744971,-2.9209328,-2.4691234,-1.2295226,-2.190729,-1.3848399,-2.1831193,-2.5836115,-2.9307327,-3.0761023,-1.7234143,-1.4602429,-1.8742608,-2.2731934,-2.3353224,-2.341838,-2.566668,-1.5505358,-2.1416273,-2.634441,-2.8596148,-3.3306084,-3.58794,-0.26168737,-1.8511482,-2.2744722,-2.4480882,-2.9346442,-3.278462,-3.475373,-3.672729,-3.8107903,-3.881462,-3.986464,-0.8182979,-2.3115122,-2.792214,-3.0782294,-1.0279719,-2.3099618,-2.3323483,-2.674492,-3.03881,-3.2997477,-3.1535835,-1.1799165,-1.6722885,-2.5129962,-2.0110579,-2.2799714,-2.4629216,-2.6010935,-1.5089638,-2.1705894,-2.5296402,-2.6837306,-2.8767896,-3.1253982,-3.3666725,-3.397565,-1.3457751,-2.4979827,-2.8194861,-3.0359585,-2.5455964,-1.271258,-2.377872,-2.742401,-0.85627943,-1.947148,-2.0398307,-2.3114939,-2.2300615,-2.4616528,-2.7667286,-2.656889,-2.936261,-3.1433344,-3.3083572,-1.0623611,-0.9141588,-1.6870238,-2.5087144,-2.661294,-2.8451087,-2.8136168,-2.8591604,-1.9130992,-2.5213509,-2.8026283,-2.91855,-3.0538473,-3.1832674,-3.334855,-3.493917,-0.51366276,-1.7198039,-2.8114195,-2.9913607,-3.133421,-3.0586934,-3.106712,-3.2505724,-2.5958366,-3.0007348,-1.2901407,-2.330636,-2.1144557,-2.505713,-2.8562102,-2.8678224,-2.0515666,-2.6389093,-2.196406,-2.706286,-2.8422127,-2.8148062,-3.0450559,-3.013176,-3.4204972,-3.4735937,-3.479995,-3.488633,-3.487897,-3.6156688,-3.5961556,-3.550591,-2.588538,-3.2060235,-3.2615726,-3.3188887,-3.4944887,-3.4363089,-3.5482967,-3.6637187,-3.568173,-3.6918952,-3.7549365,-3.7733684,-1.1968865,-2.7428854,-2.9464035,-3.0995746,-3.1648993,-3.1161175,-3.1841362,-3.2576265,-3.393704,-3.4549072,-3.3417778,-3.354023,-3.4583168,-3.52516,-3.6401598,-2.9545357,-3.295888,-3.4891534,-3.5487053,-3.603067,-3.1926131,-3.5026999,-3.6310623,-3.6602476,-3.8303466,-3.80478,-3.0213153,-2.246492,-3.1468303,-3.3817096,-3.281096,-3.6308694,-3.9690247,-3.8982902,-3.8335254,-4.008407,-4.0026507,-4.376606,-4.5213947,-3.7491708,-3.7982774,-4.386182,-4.448082,-4.4642105,-4.2902565,-4.165545,-3.6441936,-3.8022635,-2.021379,-3.2150598,-3.482381,-3.5218883,-3.515183,-3.6548953,-3.7201202,-3.6293023,-3.4962893,-3.4438908,-3.9556308,-4.1781254,-4.323231,-4.551426,-4.3955503,-4.2401323,-3.959735,-3.8264103,-3.8653417,-3.6992302,-2.8472679,-1.6876537,-1.220893,-2.3828287,-2.6201618,-2.7865045,-2.859953,-2.951087,-2.3861217,-2.6156962,-2.897048,-2.9197469,-2.9109902,-3.1392639,-3.1721253,-3.0882125,-3.142835,-3.3151994,-3.191296,-3.248308,-3.5903888,-3.6539803,-3.5686593,-3.4901524,-3.6894498,-3.5281494,-3.6687226,-3.4462943,-3.9084506,-3.7968335,-3.7061121,-2.7458386,-3.3725924,-3.4445806,-3.5223775,-3.6464775,-3.6616607,-1.2032632,-2.8019671,-3.188661,-3.2528386,-3.1976788,-3.1568809,-3.2831368,-3.409433,-3.483386,-3.5918849,-3.585336,-3.6489315,-3.4300413,-3.4066465,-3.4515967,-3.5573611,-3.5579457,-3.7667797,-3.5996084,-3.4532425,-3.5966544,-3.681906,-3.5962882,-3.5387454,-3.577785,-3.8706841,-3.8180988,-3.8545508,-3.9520972,-3.8096225,-3.6507936,-3.7007742,-3.7253819,-2.1854017,-2.6143005,-2.1895523,-2.7785215,-1.7826606,-2.6689525,-2.9111047
+-1.4693347,-2.1791577,-2.5938904,-2.9633465,-2.9799705,-3.1976588,-3.2858706,-3.411961,-3.4256895,-3.424321,-0.5266093,-2.6388001,-2.4856439,-2.8122678,-2.9659567,-2.849387,-0.74601215,-2.5469728,-2.7471251,-2.5635538,-2.6016245,-2.5885515,-2.7242386,-2.6372607,-2.7903872,-2.8402905,-1.3755611,-2.5258694,-2.2185001,-2.4959576,-2.7443395,-2.6777914,-2.8155751,-2.9285512,-3.1864736,-3.2683578,-3.42082,-3.2182355,-2.1237645,-2.9760103,-3.4144266,-3.2631502,-3.391428,-1.2731572,-2.6017597,-1.6335465,-2.161723,-2.505025,-2.4998102,-2.5523775,-2.475746,-2.4775958,-2.3086514,-2.5037522,-2.6789985,-2.854898,-2.8816228,-3.148069,-3.3797503,-2.1303577,-0.99401575,-1.839444,-2.2994788,-2.4024467,-2.471491,-2.4140425,-2.7043848,-2.9189491,-3.0694509,-3.27604,-3.2859366,-3.4992464,-3.3872418,-2.5486674,-2.1810572,-2.992032,-3.2209766,-3.336223,-0.14204611,-1.8922411,-2.5701675,-2.8088622,-3.0030277,-3.2634249,-3.447474,-3.475308,-0.08394641,-1.4367843,-2.2012362,-2.1872573,-2.4217792,-1.0644261,-1.9111588,-1.3321604,-1.8437995,-2.339686,-2.5574713,-2.8746371,-0.95860845,-1.8587216,-2.6639938,-2.5521998,-2.9452786,-3.2652087,-1.8381679,-0.9265436,-2.1414962,-2.2583039,-2.6782985,-2.929159,-2.9877105,-3.1308637,-3.2999997,-3.4318113,-3.5930045,-3.4531152,-1.8243735,-2.007483,-1.2994133,-1.3847357,-2.1486855,-2.1673703,-2.4265132,-2.6601224,-2.9914594,-0.94794744,-2.225964,-2.6975524,-3.1047716,-0.12016992,-1.8198453,-2.4868267,-2.7585301,-2.6367526,-3.0096667,-3.3791256,-3.400205,-3.504088,-3.7309985,-3.8111577,-3.7263236,-0.9332406,-2.6704607,-2.992295,-3.0737634,-2.702537,-2.2795749,-2.9523144,-3.405149,-3.6073232,-1.0884604,-2.0992103,-1.2915179,-1.314054,-2.4180722,-2.7015061,-2.687974,-2.7788744,-2.9231577,-2.9852576,-3.0836043,-3.2217164,-0.7008999,-2.476871,-2.6056056,-2.5874772,-1.5304775,-2.3916485,-2.5645719,-1.9762746,-2.2267122,-2.4834223,-2.6622205,-2.8230433,-3.072081,-3.1900084,-1.5766091,-0.90108854,-2.604518,-2.9781783,-3.08925,-3.072727,-3.157875,-3.1996648,-3.3915334,-3.4102843,-2.7360306,-2.060314,-1.1925887,-2.4370928,-2.9244094,-2.924121,-2.8974206,-3.1216078,-3.342126,-2.8269782,-3.1742194,-3.0705466,-3.0983691,-2.9446142,-3.435388,-3.5013337,-3.4398017,-3.5734246,-3.588907,-3.6337323,-3.6734252,-3.5692909,-3.6379764,-3.647029,-3.573629,-3.4603953,-3.5926094,-3.6306646,-3.5210402,-3.548539,-3.368538,-3.5347807,-3.7281234,-1.3417001,-2.1951473,-2.6900492,-3.0184884,-3.3655736,-3.331862,-3.290432,-3.417791,-3.4277508,-3.54498,-3.554819,-3.272245,-3.4547207,-3.574241,-3.5814342,-3.669949,-3.4780488,-3.531594,-3.6747854,-3.7076843,-3.764416,-3.2127562,-3.5358465,-3.6936371,-3.7245278,-3.8803098,-3.7903678,-1.761245,-2.9193707,-3.3650203,-3.4148285,-3.150895,-3.254872,-3.522759,-3.4689608,-3.572732,-3.5695953,-3.5455565,-3.7904758,-4.0710444,-3.3546941,-3.6852918,-4.0338116,-4.5972815,-4.5350485,-4.1597466,-3.935745,-3.4161658,-3.6644943,-3.2953267,-3.7817874,-3.8115773,-3.9746761,-3.881394,-3.9227898,-4.0147514,-3.8598804,-3.9559205,-3.8444405,-3.9355705,-4.1695204,-4.3465204,-4.669887,-4.4998207,-4.126232,-3.7527647,-3.6650887,-3.8486042,-3.116778,-2.3736477,-2.125637,-2.05028,-2.517418,-2.8475199,-3.0324714,-3.207161,-3.3115642,-2.7720222,-3.1528559,-3.2606268,-3.280396,-3.335526,-3.4615674,-3.5348864,-3.5364296,-3.695456,-3.818091,-3.6135974,-3.4484084,-3.6408193,-3.6622066,-3.8094316,-3.8197744,-3.9103234,-3.8258467,-3.6847973,-3.5106769,-3.796108,-3.7935455,-2.247699,-1.9049166,-2.9024532,-3.1791723,-3.2157,-3.278717,-3.2192516,-1.091211,-2.757564,-3.1627116,-3.199708,-3.1680808,-3.3093996,-3.3679001,-3.4482183,-3.3905745,-3.5166297,-3.7034135,-3.706123,-3.461153,-3.2450652,-3.3010561,-3.6552567,-3.5526125,-3.7651196,-3.6640754,-1.815379,-3.2133133,-3.274323,-3.3839493,-3.4041107,-3.243848,-3.5157483,-3.490203,-3.5420587,-3.5412765,-3.6734843,-3.2917972,-3.4654908,-3.2200058,-1.8889087,-3.0968251,-3.3463013,-2.5887876,-0.68864274,-2.2925642,-2.748569
+-1.3015152,-1.9816936,-2.7069159,-3.1905172,-3.4506056,-3.5407434,-3.6852021,-3.7217634,-3.862591,-3.762578,-1.0982305,-2.859673,-2.891934,-3.3495998,-3.4698195,-3.4691527,-1.2974697,-2.1181126,-2.226143,-2.228674,-2.874093,-3.0939274,-3.279767,-3.3257248,-3.3791451,-3.412886,-2.4059644,-3.175075,-2.3618202,-3.1051474,-3.1652086,-3.1640306,-3.2398381,-3.288371,-3.3086894,-3.4480338,-3.6263728,-3.6369433,-2.7051964,-3.2594976,-3.59222,-2.6716185,-3.3459883,-2.34289,-3.3618374,-3.3797626,-2.1062195,-3.0825188,-3.0733018,-3.3147297,-3.3257194,-3.3766491,-2.0728374,-2.9068108,-3.0632105,-3.163268,-2.2514927,-3.0864925,-3.2526715,-3.2542038,-3.165258,-2.5969057,-2.212737,-2.916512,-2.925008,-3.06657,-3.1325827,-3.3046355,-3.4739509,-3.681198,-3.901059,-2.9830022,-0.90095973,-1.8165313,-2.2143154,-2.4515996,-2.8973494,-3.0308535,-3.3073177,-3.0676985,-3.5291593,-3.770996,-3.9523044,-4.1545444,-4.284549,-4.3326974,-3.8251743,-1.9762799,-3.3749042,-3.7060018,-3.9391313,-3.6819842,-4.029695,-2.9461436,-3.1992507,-3.8083587,-4.06734,-4.263464,-4.3787403,-1.0295051,-3.1053998,-3.471845,-3.779122,-4.075245,-4.3270636,-2.8267117,-1.5824046,-2.975635,-3.500712,-3.8401396,-4.094432,-4.276441,-4.4176903,-4.469984,-4.471198,-3.7945695,-3.0490997,-3.607509,-3.9255672,-2.8678126,-3.452812,-2.752301,-3.6866782,-4.0653405,-4.3388634,-4.352868,-3.9732008,-4.1607046,-4.327593,-4.065009,-2.3118386,-3.5467992,-4.0034366,-4.142227,-3.6203046,-4.3299484,-4.355816,-4.3703575,-4.4772844,-4.443467,-2.5828505,-1.5704983,-3.0982542,-3.4264596,-3.36907,-3.7154322,-4.0827847,-4.336182,-2.8268738,-2.641222,-3.6301808,-3.7798057,-2.8102431,-2.3177295,-3.4309587,-3.6885715,-3.7456214,-3.9400966,-4.137646,-4.262681,-4.3667727,-3.7288418,-1.2180359,-3.1918073,-3.4813452,-3.6103153,-1.6560069,-3.1860628,-2.784594,-3.2985125,-2.1254964,-3.3557026,-3.6095166,-3.66531,-3.7526882,-3.9061115,-3.5353198,-1.2795323,-2.994752,-3.6490288,-3.7174356,-3.7259521,-3.791729,-3.8837934,-3.974124,-4.0377417,-4.0196066,-4.0499477,-4.1469145,-1.9386594,-3.447908,-3.6995685,-3.7953212,-3.8349555,-3.9664316,-3.2166095,-3.473822,-3.712291,-3.7489955,-3.787297,-3.9683428,-4.0816383,-2.0707862,-3.6409867,-3.902039,-3.896638,-3.909379,-3.9386854,-4.011596,-4.045912,-4.089201,-4.13383,-4.218102,-4.2754016,-4.309506,-4.3353057,-1.9012061,-3.641202,-3.904234,-2.956081,-2.9504485,-3.505756,-3.9279778,-3.9765244,-4.024511,-4.02174,-4.075692,-4.103684,-4.1586046,-4.163234,-4.051518,-4.143145,-3.7785518,-4.0809464,-4.2641273,-4.186903,-4.228049,-4.1957207,-4.1893854,-4.261906,-3.9557357,-4.1860256,-4.2315407,-4.1801853,-4.1619077,-4.2402644,-2.460999,-3.5784504,-3.943403,-4.022229,-3.7986505,-3.3859556,-3.1641197,-3.649468,-4.183696,-3.9950972,-4.0675573,-3.4683514,-3.3706162,-4.0905657,-4.239643,-3.2622542,-3.3314357,-3.3044338,-3.6291513,-3.602203,-3.7046294,-3.8793788,-3.5931938,-4.097597,-3.9326208,-4.253585,-3.8481882,-3.7018518,-4.2133493,-4.1676984,-3.5134673,-4.1035113,-3.3466973,-3.1592803,-2.2348278,-2.3146794,-2.2648878,-2.5196347,-3.0623431,-3.4106722,-3.921811,-3.6632104,-3.6535368,-2.849389,-1.998676,-3.1969864,-3.2054555,-3.719762,-3.9277494,-4.092887,-4.0953245,-4.129712,-4.28207,-4.1842737,-3.639413,-3.6637402,-3.7788475,-4.080205,-4.3140364,-4.36609,-4.22731,-3.735898,-3.4111614,-3.918419,-4.218174,-4.2500362,-4.2831845,-4.256846,-3.5899065,-4.253878,-4.2150755,-4.1555533,-3.0507195,-1.4827796,-2.9818802,-3.600648,-3.9235053,-3.9390297,-3.8748612,-2.1096303,-3.500392,-3.9520593,-3.9228537,-3.9357898,-3.4154534,-3.8037643,-4.008405,-4.02036,-4.0124187,-3.7477198,-3.9319715,-4.186337,-3.9143724,-3.985219,-4.129957,-4.115391,-4.1495275,-4.0643616,-3.7755134,-3.6663947,-3.648054,-3.6431293,-3.705924,-3.9021492,-3.9313753,-3.968482,-4.0920053,-4.2031803,-4.238858,-3.9574714,-4.226705,-4.213135,-3.9960556,-4.161883,-4.0211363,-4.035263,-0.66931725,-2.8652108,-3.5682402
+-1.4410965,-2.0947325,-2.729176,-3.188293,-3.5306156,-3.586605,-3.7339985,-3.7937021,-3.2414243,-3.5263395,-2.1727762,-3.5436482,-3.2005544,-3.5944288,-3.68509,-3.4907892,-0.8152258,-2.0530791,-2.8593307,-2.2748392,-2.3038878,-3.1164563,-3.4845588,-3.422839,-3.3601742,-3.3368373,-2.6257455,-3.4538922,-3.3236122,-3.4709873,-3.4950056,-3.1879444,-3.4229195,-3.459724,-3.6589103,-3.730512,-3.776476,-3.6606495,-1.5619494,-3.224217,-3.5828815,-3.2648926,-3.5900912,-3.5933151,-3.5891259,-3.5453181,-2.2128954,-3.0836952,-2.9679146,-3.4077399,-3.4907744,-3.3898191,-2.6042724,-3.1453276,-3.168294,-3.1929293,-2.613579,-3.3528154,-2.547848,-1.9452711,-2.825171,-3.4178195,-2.5050178,-2.3269832,-2.7057755,-3.3145423,-3.45288,-3.4778562,-3.5723002,-3.6318913,-3.7682238,-3.5124915,-2.6122465,-3.3074646,-3.4225814,-3.4691553,-3.6164906,-3.8519933,-4.082926,-4.091447,-4.2083673,-4.339351,-4.3466077,-4.371992,-4.412091,-4.386776,-4.3621345,-4.292729,-4.195268,-4.2543817,-4.388745,-4.3863344,-4.3948917,-4.149499,-1.3632833,-2.6444707,-3.367506,-3.699929,-3.9831305,-3.0006533,-3.6392066,-3.862057,-4.0971336,-4.2510986,-4.417242,-3.0804,-3.8687253,-4.1353116,-4.2831483,-4.30773,-4.3258758,-4.3861585,-4.4465837,-4.4685597,-4.39882,-4.25213,-4.1876845,-1.6832427,-3.0434465,-3.3207006,-3.6385736,-3.9382915,-4.2218285,-4.3425846,-4.3441534,-4.313606,-4.274414,-4.187442,-4.2275043,-4.203672,-4.305752,-4.224687,-3.9076405,-2.2571812,-1.3919479,-3.1724482,-3.4144816,-3.7237368,-3.2633274,-1.9511615,-1.2228371,-2.1662462,-2.9962087,-3.3277075,-3.2961698,-3.5594842,-3.8663347,-4.1000023,-4.240382,-4.36078,-4.0520725,-4.1706223,-4.2384114,-2.8406649,-2.6270359,-3.6926818,-3.9315984,-4.1104918,-4.2575426,-4.31592,-4.4194627,-4.4415627,-1.310794,-3.4899516,-3.7690978,-3.7642748,-3.1646674,-3.635284,-3.5015836,-3.907987,-3.9646564,-4.118597,-4.237307,-4.418046,-4.4402275,-4.4392414,-4.4175224,-0.83804184,-2.6783714,-3.5841208,-3.814248,-3.8359456,-3.8570216,-3.883361,-3.965043,-3.9977365,-3.8403306,-3.951229,-4.0744267,-0.9772963,-3.2864773,-3.8278105,-3.8467326,-3.7953653,-3.84471,-3.7926934,-3.797978,-3.7090302,-3.7353582,-3.78367,-3.9348693,-4.085516,-3.218099,-3.9484715,-4.051161,-4.0679064,-4.1421165,-4.1609974,-4.202518,-3.3260276,-3.9290533,-3.9717731,-4.1132183,-4.1531763,-4.15715,-4.150242,-1.5621428,-3.7596083,-3.8800306,-3.7703815,-2.6526866,-3.4975276,-3.9305649,-4.0793505,-4.131899,-4.1224985,-4.138665,-4.1852827,-4.255062,-4.1667476,-3.9872913,-4.1977882,-4.052989,-4.2653484,-4.3461227,-4.1493263,-4.0231466,-4.1962433,-4.25809,-4.3436637,-4.115966,-2.4651146,-3.9396303,-4.2109456,-4.159893,-4.2067156,-3.1005754,-4.007371,-4.2309036,-4.2670956,-4.2202835,-4.013276,-3.4751678,-3.8677154,-4.3030233,-4.2639203,-4.2263384,-4.0628266,-4.0800905,-4.2269025,-4.2570133,-3.5430589,-3.6937108,-3.5380323,-3.9708633,-3.9818163,-4.0156665,-4.0015655,-3.9071665,-4.1012707,-4.046227,-4.153559,-4.0339117,-4.0422173,-4.2375546,-3.905159,-3.4538016,-4.0703278,-3.7906225,-3.5335343,-3.6200173,-3.624118,-3.4047298,-3.3941243,-3.9328098,-4.041622,-3.9991837,-3.459746,-3.4687035,-3.4272418,-2.6719766,-3.6253572,-3.2594159,-3.862781,-4.154708,-4.2851906,-4.2622375,-4.2317305,-4.277545,-4.2760844,-3.8993917,-4.0578637,-3.9970832,-4.150924,-4.195199,-4.1770353,-4.1742153,-4.031744,-3.6909642,-3.8543005,-4.0037336,-4.03747,-4.060114,-4.128524,-3.8043115,-4.1026945,-4.016857,-4.023056,-3.6849558,-1.8740962,-3.7446146,-4.0023546,-4.122569,-4.0715446,-3.9269238,-2.0620317,-3.5822544,-4.126661,-4.010487,-4.095511,-3.6693912,-4.0068417,-4.0085225,-3.9577594,-4.058999,-3.7295666,-3.8892648,-4.0977926,-3.7044234,-3.893611,-3.9853206,-4.0587487,-4.0783863,-4.057942,-3.7055721,-3.4552512,-3.7619634,-3.707087,-3.734292,-3.7489333,-3.9116597,-3.9839258,-4.0827074,-4.1576233,-4.191064,-4.1292424,-4.150996,-3.676768,-3.8765748,-3.857863,-3.8947668,-3.9412684,-1.3536578,-3.3000705,-3.740195
+-1.127554,-1.3649551,-1.7367977,-2.0661228,-2.3776703,-2.6231496,-2.8568134,-3.1245155,-1.6301714,-2.4050708,-2.5483975,-2.2695432,-1.9564326,-2.788424,-2.8548474,-2.8347254,-0.5353097,-1.8467833,-2.5825033,-2.083037,-2.4182372,-2.722654,-2.9029434,-2.8529062,-2.7270322,-2.6611412,-2.1751597,-2.6483312,-2.104105,-2.5934281,-2.7878604,-2.8991427,-2.8112612,-2.7758121,-2.7567062,-2.7291052,-2.7835712,-2.8234076,-2.624313,-2.5199456,-1.5172992,-2.1529005,-2.618854,-2.4725318,-2.84453,-2.722039,-2.6972902,-2.5722156,-2.370681,-2.6400795,-2.6696963,-2.6255965,-2.564878,-2.5688663,-2.5622149,-1.8836492,-1.1462797,-2.5457933,-2.6623712,-2.606917,-2.0383976,-2.7534232,-1.753057,-2.596017,-2.842587,-2.7454908,-2.7603936,-2.770403,-2.8283587,-2.9149368,-2.9997942,-3.0809793,-3.1167402,-2.071476,-2.6894732,-2.8560715,-3.1053593,-3.3584447,-3.5669308,-3.513725,-3.6977255,-3.816801,-3.9000597,-3.9557784,-4.026963,-4.0588026,-4.0425186,-4.1076064,-0.653755,-2.3042731,-2.7607265,-2.7996159,-2.925877,-3.1814044,-1.8504161,-2.067546,-2.7647662,-3.0332146,-3.3267438,-3.5452175,-2.7797928,-3.3512287,-3.753217,-3.9589703,-4.14918,-4.216159,-4.336465,-4.3572845,-4.343091,-4.344309,-4.338248,-4.4001064,-4.4501305,-4.4485817,-4.4102526,-4.1974115,-4.11804,-3.8901134,-1.0440348,-2.2604446,-2.8587718,-3.2943153,-3.8052263,-4.1474266,-4.3196783,-4.3985057,-4.4514284,-4.441822,-4.436484,-4.1938763,-4.323406,-4.362742,-4.360083,-1.2113601,-1.4078541,-2.555312,-1.9251577,-1.9266446,-0.8932422,-1.9878112,-2.294713,-1.7706456,-2.5408957,-2.580791,-2.7604816,-2.8583071,-2.935145,-2.8435574,-2.2843518,-2.9186532,-2.92059,-2.8215408,-2.977611,-2.9498563,-2.9630766,-3.101704,-3.2623281,-3.3087382,-2.6630185,-2.9963222,-3.2692356,-3.5092418,-1.6011417,-2.6258187,-2.8390863,-2.8975549,-1.8141285,-2.6214914,-2.8170846,-2.7834687,-2.8967297,-3.0748608,-3.2902656,-3.4321036,-3.6254425,-3.6896343,-3.7380738,-0.32811898,-2.075774,-2.7567585,-3.0588288,-3.1268353,-3.1042824,-3.0674899,-3.1194615,-3.1351094,-3.1518357,-3.2137644,-3.2976243,-1.0687692,-2.8750236,-3.0685213,-3.0766191,-3.0767837,-3.0359757,-3.0429134,-1.7673947,-2.843555,-2.8515496,-2.8747702,-2.9381042,-2.989348,-2.939892,-3.027483,-3.1417336,-3.1858034,-3.1654377,-3.202306,-3.2524996,-3.2867918,-3.3264368,-3.347567,-3.3964746,-3.4335103,-3.4261823,-3.2248175,-0.554603,-2.3949518,-2.1571555,-2.4874527,-2.924962,-2.6597204,-3.0144286,-3.215458,-3.434664,-3.4891233,-3.4111638,-3.480803,-3.470334,-3.4791226,-3.4206333,-3.4155583,-3.4295073,-3.5070367,-3.635595,-3.4204361,-3.455993,-3.5416498,-2.7116065,-3.2954392,-3.3453412,-2.8959117,-3.4749374,-3.5257595,-3.5051384,-3.202611,-2.6850696,-3.5356631,-3.1901174,-3.4125528,-3.5043359,-3.645737,-3.1503904,-3.2894545,-3.6138532,-3.5849226,-3.5273337,-3.554215,-3.5590923,-3.608062,-3.522528,-3.0383883,-2.8042653,-3.1688943,-3.6538143,-3.5920467,-3.5082095,-3.3742628,-3.3697648,-3.4474316,-3.5826027,-3.5432055,-3.58739,-3.6719775,-3.571413,-2.3647275,-2.4805164,-3.3986146,-3.528391,-3.1641235,-2.930358,-2.530158,-2.5042229,-3.093955,-3.4048586,-3.4137297,-3.3276727,-3.3617587,-3.541239,-3.2519572,-2.5439281,-3.3110363,-3.0876863,-3.2375276,-3.4706078,-3.5627513,-3.6357255,-3.5564363,-3.5069315,-3.486265,-3.2552028,-3.3120527,-3.4764528,-3.502211,-3.5635066,-3.5175586,-3.4378738,-3.3737516,-3.24325,-3.3559594,-3.3775847,-3.3770022,-3.472327,-3.5389545,-3.230905,-3.3459625,-3.4350848,-3.4352582,-3.5368938,-1.4840219,-3.198236,-3.391386,-3.4557447,-3.385912,-3.2417996,-2.445672,-3.2558613,-3.3488693,-3.2071214,-3.2028017,-2.9981976,-3.1561503,-3.1525707,-3.156242,-3.2622285,-3.0580373,-3.1264443,-3.0830598,-2.2279954,-2.869112,-2.9358168,-3.0480082,-3.0157597,-3.0784025,-3.1730566,-2.3859062,-2.7590065,-2.892446,-2.8965507,-2.8927763,-3.0312,-3.1425512,-3.2660189,-3.359486,-3.4222317,-3.4666777,-3.53061,-1.7950794,-2.4751296,-2.7132473,-2.4644415,-2.856748,-1.2522907,-2.8797967,-2.8552408
+-0.907618,-1.8127316,-2.2376652,-2.4916391,-2.7096698,-2.9055455,-3.0589533,-3.6416528,-3.4082386,-3.5990567,-3.8267589,-3.6716585,-1.1134534,-3.0835829,-3.257629,-3.2498963,-1.7440442,-2.211598,-3.1859012,-3.1507525,-3.1239257,-3.3499775,-3.2843633,-3.2271395,-3.094348,-3.1467035,-1.8659092,-2.994633,-3.0451388,-2.9519632,-3.204834,-3.109434,-3.1539054,-3.1772826,-3.357445,-3.4978714,-3.6692731,-3.0557036,-3.3991904,-3.7725885,-2.100399,-2.6408896,-3.2500114,-1.146989,-3.1580553,-3.1609263,-3.3287468,-2.8067698,-1.8735499,-3.039212,-3.2753093,-3.2068367,-3.098696,-3.053863,-3.0779853,-3.1152956,-1.8828256,-3.0469065,-2.8766122,-2.4612026,-2.6101985,-3.1557863,-2.2160206,-3.1332073,-3.022512,-3.1599443,-3.0757484,-3.0237827,-3.1176338,-3.2959242,-3.3941448,-3.5196958,-3.6594074,-3.8321075,-4.011176,-4.149853,-4.255921,-4.3446054,-4.4245596,-4.0504055,-4.1973743,-4.348178,-4.3994346,-4.424786,-4.4118533,-4.1624928,-4.2746105,-4.375944,-2.5350423,-2.7771869,-3.4934921,-3.917664,-4.1734595,-4.3513765,-4.4405107,-4.4974766,-4.470728,-4.497413,-4.5017695,-4.514204,-1.8523033,-3.306106,-3.8385487,-4.2014623,-4.4441185,-4.520504,-4.5459256,-4.5393057,-4.515977,-4.4954014,-4.492582,-4.531893,-4.5505123,-4.5482616,-4.542677,-4.4953256,-2.2018723,-2.4902673,-3.4472904,-3.9073071,-4.2812967,-4.455903,-4.55355,-4.5772414,-4.5822554,-4.5931625,-4.5784698,-4.582975,-4.5642414,-4.5522413,-4.527346,-4.5330143,-4.5342255,-4.448199,-0.5410201,-2.0571704,-1.3728744,-1.4087024,-1.7767842,-2.2393827,-2.7034354,-2.5271459,-2.7039073,-3.1192436,-3.295011,-3.2847831,-3.2833772,-3.2455435,-2.2217212,-3.0835385,-3.0033274,-3.1331313,-3.2959297,-3.332407,-2.4305825,-3.1792083,-3.270345,-3.0865092,-3.2096505,-3.299015,-3.5101156,-3.6852283,-2.7466676,-3.1994233,-3.6090353,-3.299416,-2.8071623,-3.256445,-3.4275746,-3.6883013,-3.869513,-4.0984883,-4.2357965,-4.223346,-4.2556615,-4.26441,-3.4792957,-1.1386433,-2.350923,-3.1579995,-3.3325095,-3.3803804,-3.2980306,-3.4541826,-3.4375985,-3.5906045,-3.671198,-3.7760806,-3.8086243,-3.502203,-3.3434076,-3.6929002,-3.849152,-3.9350042,-4.03444,-3.9779234,-3.1905773,-3.5417752,-3.738218,-3.836368,-3.9196997,-3.9159942,-3.5730548,-3.7646651,-3.9402027,-4.1271806,-4.130933,-4.1061106,-4.1006966,-4.066268,-4.0414195,-4.1146536,-4.1415634,-4.1688013,-4.119215,-3.690733,-0.6628651,-3.0568824,-3.318122,-2.25304,-3.0830183,-2.4169426,-3.1497943,-3.496725,-3.6845365,-3.7303925,-3.6563597,-3.6840632,-3.6635263,-3.6734257,-3.5728166,-3.3131356,-3.6144624,-3.6780324,-3.7925024,-3.572155,-2.8172808,-3.6830828,-3.5908823,-3.760404,-3.792305,-3.7172165,-3.814314,-3.8715587,-3.8512626,-2.9855497,-2.557096,-3.5524478,-3.2627459,-3.517954,-3.6169224,-3.8393672,-3.414289,-3.7238383,-3.770591,-3.7096474,-3.6809933,-3.6806765,-3.6632385,-3.6360435,-3.5429938,-3.5361245,-3.0730429,-3.5898151,-3.8855553,-3.7762663,-3.6603,-3.4576254,-3.4926388,-3.5317025,-3.2903476,-3.575056,-3.626205,-3.8646195,-3.8069904,-3.6827908,-2.2497418,-3.5899782,-3.817039,-3.640902,-3.3489432,-3.0733294,-3.2026243,-3.8169634,-3.822193,-3.7478135,-3.657175,-2.716624,-3.513374,-3.6360025,-2.7841315,-3.4155307,-3.1275768,-3.5486846,-3.6837394,-3.7356713,-3.7144623,-3.7454648,-3.6612206,-3.5915515,-3.511725,-3.6145787,-3.664947,-3.6534188,-3.6742306,-3.6714897,-3.6860046,-3.7235093,-3.6670773,-3.6931338,-3.6455827,-3.6750133,-3.7633479,-3.9138935,-3.7160275,-3.737115,-3.8692963,-3.8799655,-3.8297327,-1.413224,-3.4798608,-3.5509465,-3.592726,-3.511755,-3.4361444,-2.0154593,-3.3445094,-3.5428596,-3.4547696,-3.4100223,-3.3464,-3.465767,-3.439265,-3.4841058,-3.5738559,-3.48842,-3.6709452,-2.2597487,-3.2679503,-3.5990064,-3.5537572,-3.5446467,-3.4909956,-3.411492,-2.7197227,-3.1091306,-3.5983646,-3.476213,-3.475305,-3.3495488,-3.3206434,-3.390698,-3.4733381,-3.5837677,-3.6810117,-3.785205,-3.859743,-2.938455,-3.26381,-3.5807812,-3.5837302,-3.8393805,-1.2566215,-3.0972705,-3.2276814
+-1.5327576,-2.283108,-2.9697287,-3.3432899,-3.53686,-3.6432824,-3.7270062,-3.9653134,-3.9386365,-3.8218355,-2.9374752,-3.4836721,-1.0467677,-2.4436781,-2.7535353,-2.8890793,-2.0587645,-1.5190221,-2.4833128,-2.7463958,-1.489594,-2.4760585,-2.8658466,-3.208921,-3.4920528,-3.342493,-1.5323672,-2.8010886,-3.097908,-1.3514458,-2.5368378,-2.7684808,-2.9856784,-3.4495354,-3.7626352,-3.8850617,-4.0257845,-3.8238938,-3.8034222,-4.0540056,-0.55793506,-2.467749,-2.936432,-2.1201313,-1.2949892,-1.759444,-2.5940075,-1.0301932,-1.337907,-2.2664611,-2.3748255,-2.5272355,-2.6876628,-2.9741113,-3.2433417,-3.482407,-3.6498508,-3.7182202,-0.755837,-1.6493381,-0.99525493,-2.2260866,-1.3373692,-1.9651476,-2.2977586,-2.26127,-2.4557662,-2.7856705,-2.6536787,-2.948971,-3.187052,-3.4579074,-3.5997546,-3.709322,-3.7799215,-3.8585594,-3.8981514,-3.894738,-3.9209719,-3.942133,-1.6429485,-2.4817538,-3.1109762,-3.4978292,-3.8245387,-2.631761,-3.1725636,-3.4460669,-3.4350839,-1.5531584,-2.8079357,-3.1649072,-3.5535622,-3.8580952,-3.9761782,-4.043447,-4.0702047,-4.0818567,-4.093442,-4.103172,-4.0950894,-4.137486,-4.1495275,-4.1663847,-4.1633415,-4.1590977,-4.160405,-4.1802626,-4.2068095,-4.110051,-4.0933914,-4.0336595,-4.045382,-4.0338774,-4.0440955,-4.0582128,-0.49056527,-1.3844856,-2.0222309,-2.5629296,-2.9690552,-3.361422,-3.6534088,-3.8186262,-3.889261,-3.966477,-3.9993095,-4.0033154,-4.0229473,-4.027154,-4.048648,-4.080101,-4.0831623,-4.0926304,-0.43210757,-1.8236613,-0.87738985,-1.3891965,-1.6884367,-2.1333792,-2.3732748,-2.2447884,-1.0268449,-1.9833959,-2.1516368,-2.4945278,-2.8171504,-3.065026,-3.3056102,-3.097857,-1.2677456,-2.010257,-2.0750575,-2.4795291,-2.4501545,-2.5131233,-2.206141,-2.5073938,-2.4893818,-2.8124905,-3.1724226,-3.4295921,-3.5388057,-3.3577101,-3.5776281,-3.6798587,-3.7360766,-3.7065754,-3.6707032,-3.727083,-3.7953305,-3.855619,-3.884528,-3.857952,-3.8706026,-3.8558862,-2.6091192,-1.5201606,-0.99931794,-2.3106308,-2.3585687,-2.687837,-2.9965782,-3.4812546,-3.6329882,-3.7562697,-3.803256,-3.830492,-3.8258054,-3.5992064,-3.5846403,-3.7580929,-3.928462,-4.018111,-4.0496597,-3.9958963,-3.052172,-3.4271622,-3.6199174,-3.7408834,-3.8615317,-3.911494,-3.8156044,-3.8977501,-4.05565,-4.159763,-3.9772692,-4.0364323,-4.059647,-4.035698,-4.0568857,-4.0962687,-4.119169,-4.1323767,-4.0761013,-3.2735405,-2.3526392,-2.7078142,-3.181634,-1.7313699,-1.8858057,-1.3480613,-2.0486927,-2.6901736,-3.0325766,-3.2192035,-3.2018623,-3.3521576,-3.3625436,-3.6686156,-3.7942348,-3.8580866,-3.9168375,-4.05812,-4.165721,-4.1712728,-4.038944,-4.1127424,-4.076832,-4.011901,-4.073658,-4.1071095,-4.209613,-4.2374463,-4.2771835,-1.9936043,-0.9130487,-1.5585195,-1.3757869,-2.3558643,-2.4468057,-2.8345268,-3.1874523,-3.4301524,-3.5723143,-3.6147704,-3.6214273,-3.6097503,-3.5889106,-3.634553,-3.759303,-3.5808816,-3.4229567,-3.9592254,-4.081606,-4.156413,-4.1185265,-4.133297,-4.0806904,-3.9859715,-3.8491704,-3.9030318,-3.9956117,-4.211401,-3.9182048,-4.054384,-3.5748096,-3.9935913,-4.0233283,-3.9953337,-3.6803842,-3.6497798,-3.8311658,-4.026352,-4.15083,-4.1226153,-4.1462474,-3.616346,-3.7787354,-3.8502944,-1.0733956,-2.337967,-1.6886641,-2.2948875,-3.0294032,-3.2804542,-3.4582934,-3.6826546,-3.8197322,-3.9173818,-3.9834456,-3.9863195,-4.1762543,-4.2569695,-4.298854,-4.341981,-4.3233976,-4.2699995,-4.1230783,-3.9755197,-4.176083,-4.2097197,-4.2559743,-4.2884836,-4.2726135,-4.282765,-4.281103,-4.26651,-4.2229595,-0.98716253,-2.9761288,-3.3186224,-3.4484458,-3.6502137,-3.738897,-0.9895852,-2.9553735,-3.1824648,-3.3889887,-3.6056137,-3.7026982,-3.9148881,-3.9817991,-4.0224223,-4.070127,-4.075465,-4.318656,-0.8668851,-2.328088,-2.8695362,-3.0746276,-3.2192354,-1.9295444,-1.2149221,-2.1498609,-2.3912587,-2.8853092,-3.0627303,-3.2560759,-3.372694,-3.6267147,-3.830264,-3.9417098,-4.032673,-4.066165,-4.0708594,-4.0917797,-4.100727,-4.072913,-4.0927944,-4.093748,-4.084201,-0.6408834,-2.7129612,-3.0935712
+-1.7879802,-3.0014675,-3.6390262,-3.972096,-4.1241684,-4.151477,-4.1697865,-4.2451916,-2.754891,-3.72445,-3.8864439,-3.0556793,-2.5129046,-3.5243115,-3.693932,-3.6449976,-3.4146729,-0.63411045,-2.8264163,-3.0595455,-3.3033378,-3.4971817,-3.6401062,-3.2632542,-3.5074596,-3.8954964,-3.688906,-3.5031343,-3.9169106,-4.110896,-4.1931124,-3.9891176,-4.0282583,-4.3526773,-4.566505,-4.6089115,-4.6322184,-4.2189617,-1.449144,-3.419078,-3.602779,-3.9725761,-4.1781387,-1.6983274,-1.3104227,-2.132815,-2.8444796,-2.7879195,-1.6054769,-2.6475444,-2.899047,-3.0228114,-3.2457356,-3.5433793,-3.7897115,-3.9671783,-4.2071257,-4.3021784,-4.2293367,-2.3463666,-1.0791869,-1.6940625,-2.049271,-1.7424629,-2.174403,-2.3672583,-2.7575727,-2.9644716,-2.9286852,-3.266924,-3.4470906,-3.6356046,-3.7646747,-4.018811,-4.20535,-4.3312793,-4.377331,-4.3326435,-4.370678,-1.5469705,-3.16812,-3.4466825,-3.660355,-4.0163383,-3.9991813,-2.457228,-3.4043698,-3.648405,-3.8330777,-2.2037988,-3.3974276,-3.634945,-4.040552,-4.2115583,-4.3009315,-4.372992,-4.355654,-4.3996983,-4.403982,-4.4191093,-4.446369,-4.398285,-4.4057703,-4.3863215,-4.4162307,-4.435775,-4.405389,-4.371238,-4.380803,-4.3154655,-4.280652,-4.3040113,-4.337988,-4.285209,-4.314934,-4.346816,-1.7338881,-1.1201648,-2.9484327,-3.254846,-3.1735096,-3.5895362,-4.0395126,-4.214989,-4.230651,-4.315346,-4.075482,-4.252823,-4.3249984,-4.3145328,-4.3422413,-4.3716426,-4.3465667,-4.4153776,-3.2057312,-0.33074424,-0.8565821,-0.92058843,-1.7744504,-2.445086,-2.7624154,-2.933733,-0.8349821,-1.7090894,-2.4306068,-2.8442593,-3.1177628,-3.3730273,-3.3926816,-3.439358,-2.9465282,-2.8441648,-2.750773,-1.9538741,-2.4444551,-2.5875125,-2.2599444,-2.9914484,-3.006218,-3.3474016,-3.7576478,-3.9861336,-3.5430465,-3.0198998,-3.5986676,-3.85532,-3.8034296,-3.7932448,-3.8712845,-4.076701,-4.216434,-4.3185196,-4.3492827,-4.2131157,-4.1097436,-4.2293215,-4.202336,-3.1578007,-0.55122554,-2.2460046,-2.7470832,-2.9213512,-3.2050343,-3.4659622,-3.655705,-3.8257895,-3.9378896,-4.0483074,-3.9807138,-1.0634576,-2.5672884,-3.1365085,-3.418247,-3.6875477,-3.8166313,-3.7512703,-3.8563828,-3.9588609,-4.0444045,-4.079301,-4.0734134,-3.9106574,-3.6810699,-3.8789468,-4.290215,-4.439741,-4.1576586,-4.095742,-4.222048,-4.2023764,-4.2035465,-4.3353767,-4.3950424,-4.2215815,-4.252182,-4.1773458,-3.3488069,-3.6598015,-3.1086812,-3.3019555,-2.708562,-1.9059498,-2.976407,-3.3286371,-3.5883732,-3.7816365,-3.766875,-3.8110967,-3.9352407,-4.027915,-3.9184554,-3.5396845,-3.7705193,-4.0978837,-4.2660856,-4.2435904,-4.223018,-4.28107,-4.22803,-3.931816,-4.141511,-4.355055,-4.499373,-4.555138,-4.679347,-3.3792782,-2.9411619,-1.0131481,-1.5092874,-2.557119,-3.027006,-2.7468934,-3.1153116,-3.3423,-3.368454,-3.4292645,-3.3636727,-3.4146197,-3.262189,-3.375816,-3.3120084,-3.4415061,-3.2783267,-3.5492043,-3.6940875,-3.822884,-3.800208,-3.7472785,-3.675406,-3.6634314,-3.7127304,-3.8545318,-3.8662055,-3.9645863,-4.1466303,-3.7302032,-4.1931524,-4.3692355,-4.382537,-4.3636813,-3.7166576,-3.8250754,-4.0830407,-4.207143,-4.451698,-4.432535,-4.3713746,-4.1399894,-4.0696335,-4.191164,-4.0092025,-2.956491,-2.5599027,-3.2526608,-3.354553,-3.8623774,-3.848556,-4.100496,-4.2394633,-4.2337832,-4.3529463,-4.441147,-4.22262,-4.4795856,-4.6651964,-4.7446604,-4.697649,-4.549591,-4.3437757,-2.4886055,-3.599515,-3.822749,-4.0282707,-4.1369276,-4.2872095,-4.3601737,-4.4491405,-4.454761,-4.2975645,-1.7614313,-3.1309133,-3.6066647,-3.6891458,-4.0061235,-4.059652,-0.6632477,-3.167297,-3.436615,-3.565553,-3.679913,-3.7772036,-3.971006,-4.1387625,-4.2758446,-4.285789,-4.3714333,-4.31404,-0.7987115,-1.6533006,-2.7589676,-3.0253377,-3.061006,-2.0711052,-1.4479337,-2.3853817,-2.8836937,-3.1241894,-3.366798,-3.2532825,-3.3371978,-3.4302025,-3.6641884,-3.8840523,-3.9723,-4.0337954,-4.1335697,-4.167288,-4.192735,-4.284757,-4.3401303,-4.344117,-4.266275,-3.3853772,-3.9129543,-4.2291937
+-1.6173075,-2.540059,-3.2478817,-3.503498,-3.6020067,-3.7102075,-3.74182,-3.8186843,-3.8296247,-3.8667214,-3.9078372,-3.961648,-3.6861677,-3.7353477,-3.878253,-3.9302397,-3.9429295,-3.7096305,-2.454046,-3.5343945,-2.9868414,-3.551528,-3.790855,-2.960279,-2.1534884,-3.3748462,-3.6596284,-3.7925065,-3.892795,-3.9112809,-3.8811355,-3.7330208,-3.7415364,-3.8715873,-4.1181483,-4.1287875,-4.100088,-3.9886012,-3.492705,-3.8366957,-3.9710789,-4.0213385,-4.001193,-0.20428416,-2.1233332,-2.959171,-3.447143,-2.8873155,-3.3441098,-3.4774556,-2.9137585,-3.2381716,-3.3816862,-3.7266967,-3.9275503,-3.878541,-3.970964,-3.9818015,-3.9482946,-2.6412325,-3.3969774,-0.23197299,-1.4080969,-2.43365,-2.907421,-2.7035275,-3.3633814,-3.5579557,-2.7056293,-3.1456556,-3.0088358,-3.4222112,-3.6535378,-3.6225722,-3.7169333,-3.7898118,-3.7896662,-3.734189,-3.7532635,-1.8382974,-2.8765311,-2.8151927,-3.35195,-3.6888592,-3.7993987,-2.7580483,-3.35764,-3.5691643,-3.720217,-3.797279,-3.8642719,-3.8187044,-3.8325458,-3.830238,-3.8945973,-3.8903039,-3.8610573,-3.8642821,-3.8529508,-3.8772297,-3.9808884,-3.9273152,-3.931792,-3.92456,-3.898297,-3.9914608,-2.4945898,-3.57905,-3.8074389,-3.7910457,-3.892743,-3.9200497,-2.2311902,-3.3632689,-3.6325662,-3.891614,-3.954635,-3.9751806,-4.02141,-4.0328264,-4.0128355,-3.9735737,-4.0218306,-4.0654664,-4.002493,-4.0407887,-4.0425143,-4.0004845,-4.0020494,-3.9589498,-4.033947,-4.0020437,-3.9613428,-4.074353,-4.065262,-2.83881,-2.5744934,-2.675271,-3.1837497,-3.5892453,-3.7592154,-3.8696084,-2.605803,-2.7578468,-3.6035314,-3.812306,-3.89165,-3.9051137,-3.8992941,-3.8467922,-3.7934287,-2.334276,-2.5575716,-3.170312,-3.244368,-2.4321585,-2.6461718,-3.349626,-3.1542015,-3.3390226,-3.6354866,-3.8488286,-3.5094047,-3.4128652,-3.674364,-3.8454363,-3.8441145,-3.179305,-2.55361,-2.7191496,-3.5416126,-3.6990962,-3.8129187,-3.8752027,-3.3984523,-3.7118702,-3.8457909,-3.5932887,-2.9319901,-3.243029,-3.4314036,-3.5857542,-3.6984806,-3.8720458,-3.7950172,-3.8089356,-3.8666809,-3.9249275,-3.883491,-2.976818,-3.3767898,-3.6365342,-3.749029,-3.8578367,-3.885367,-3.8980298,-3.8940682,-3.9097204,-3.9424698,-3.963554,-3.978077,-3.927727,-2.8540573,-2.5185034,-3.5410643,-3.7417893,-3.8043234,-3.8624086,-3.8281736,-3.8187232,-3.8905308,-3.8990512,-3.911617,-3.9166234,-3.9601574,-3.955019,-3.948021,-3.2570102,-3.1790705,-3.5545197,-2.9367867,-2.429125,-3.0386982,-3.5133061,-3.5863774,-3.6910841,-2.940514,-3.5961351,-3.676947,-3.8575315,-3.8484592,-3.8457286,-2.0261903,-3.5103905,-3.7060454,-3.732065,-3.822847,-3.8067312,-3.9059458,-3.5002708,-3.8505766,-3.9039412,-3.9877114,-4.041916,-4.196758,-3.1945677,-3.7250051,-2.7656057,-2.816017,-3.6781297,-3.786652,-2.839397,-3.5862775,-3.6344695,-3.7779322,-3.8963299,-3.8907616,-3.886345,-3.8784816,-3.612001,-3.8882065,-3.6974554,-3.7464373,-3.9714785,-3.9775224,-4.02785,-3.9272423,-3.0424685,-3.61352,-3.7919145,-3.863605,-3.8665159,-3.9692016,-3.8539555,-3.9218292,-3.9413536,-4.0289893,-4.1389074,-4.1238494,-4.0047297,-3.6980019,-3.500442,-3.93152,-4.1106744,-4.116105,-4.0402255,-3.9949446,-4.023239,-3.4490166,-3.8287115,-3.945314,-3.9725823,-3.9178638,-2.589354,-3.5087109,-3.7261524,-4.021452,-4.228434,-4.1759086,-4.098324,-4.201147,-4.293097,-4.094337,-4.2717896,-4.414239,-4.3542027,-4.2156982,-4.159864,-4.0204988,-1.8742737,-3.478728,-3.664012,-3.77248,-3.9133854,-3.9967613,-3.9856381,-4.0056553,-4.016937,-4.00374,-4.012351,-4.0090966,-4.2336297,-3.217686,-3.8910556,-3.9850645,-1.7808834,-3.3843713,-3.8157208,-3.9005935,-3.9497154,-3.9195988,-4.0172772,-4.0232124,-4.0265737,-4.018528,-4.106324,-4.167854,-1.6503552,-2.99497,-3.454497,-3.6111534,-3.144306,-2.3471544,-2.849525,-2.9402585,-3.2826679,-3.385483,-3.7088761,-3.6732965,-3.6818488,-3.7390404,-3.789882,-3.839115,-3.8931751,-3.9137375,-3.941623,-3.9805088,-4.009591,-3.968647,-4.0158567,-4.011241,-4.04752,-3.9786835,-3.9942617,-4.082664
+-0.47783086,-1.335954,-1.9755391,-2.3358328,-2.511168,-2.5359662,-2.5672245,-2.6593533,-2.6658444,-2.4737287,-2.4605532,-2.5068264,-2.0303357,-2.4033573,-2.8919344,-2.9573126,-2.921443,-1.497614,-0.640499,-1.1982179,-1.2985307,-1.3273436,-1.3497971,-0.45638868,-0.73823875,-0.9612455,-1.1551965,-1.4517329,-1.6407086,-1.8872031,-2.1914608,-2.047501,-2.1244407,-2.2908514,-2.7936933,-3.11133,-3.0702229,-2.7433672,-2.7361233,-2.0507922,-2.5061064,-2.8029647,-2.9446735,-2.9531121,-0.15807761,-1.0050386,-1.0672092,-0.5382458,-0.8828335,-0.8553874,-0.35558653,-0.65745395,-0.76005244,-1.0316064,-1.3565139,-0.30404064,-0.804432,-1.0422896,-1.1211737,-1.2546892,-1.3631237,-0.14384277,-0.64438117,-0.58193403,-0.49993488,-0.46339414,0.03145471,0.111338824,-0.12315735,-0.111817285,-0.42197898,-0.58238345,-0.86207056,-1.1736097,-1.4965285,-1.7072883,-1.8957003,-1.9837006,-2.1972682,-1.9571394,-0.5271993,-1.0267205,-1.2777308,-1.6550101,-1.8727325,-1.500083,-1.6336626,-1.7326463,-1.9113752,-2.1505337,-2.383704,-2.4661553,-2.5860362,-2.6890554,-2.8395915,-2.9199054,-2.9438868,-2.9502003,-3.0480394,-3.182813,-3.2542598,-3.2085748,-3.1385605,-3.1255608,-3.268865,-3.4262052,-3.300861,-3.1599212,-3.2071269,-3.176315,-1.9604255,-1.9254742,-2.0071087,-2.4427752,-2.7424877,-2.9393632,-3.0479279,-2.2612343,-2.850268,-1.988937,-2.4852436,-2.8241653,-3.127,-3.1978035,-3.3087845,-3.3808188,-3.3580048,-2.1824532,-1.839099,-2.619504,-2.9921365,-3.0922475,-3.2482371,-3.4669359,-3.3719652,-1.8176669,-1.9439219,-0.9864555,-1.5131576,-1.7305478,-2.084972,-2.3381839,-1.7596768,-1.7619649,-2.0127313,-2.3600745,-2.595127,-2.798962,-2.0903823,-2.2316017,-2.3823555,-2.0622058,-0.9712412,-1.0769888,-1.3475341,-1.3196527,-1.1714305,-1.3359438,-1.4890866,-1.6625893,-1.9945594,-2.2005062,-2.3612401,-2.1975005,-2.4236202,-2.671695,-2.3454654,-2.0605817,-2.2794685,-2.479981,-2.7552762,-2.8268666,-2.6891408,-2.793901,-2.1011028,-2.4888492,-2.6895473,-2.825518,-1.118919,-1.1580473,-1.0936235,-0.8781541,-0.7322532,-0.8077503,-0.8523544,-0.89801204,-1.1839885,-1.3967184,-1.554731,-1.093028,-0.8896784,-0.95471275,-1.1089615,-1.4239659,-1.6549376,-1.7826154,-1.9498366,-2.1411,-2.217889,-2.3139944,-2.4061055,-2.3612962,-1.8307778,-1.437327,-1.8515667,-1.9361953,-1.8571155,-1.9815472,-2.137545,-2.220583,-2.2604609,-2.505651,-2.6468997,-2.7360718,-2.7548497,-2.5746112,-1.9962882,-1.846407,-1.7912498,-1.9890298,-1.8806003,-0.9354274,-0.7007197,-0.64015454,-0.48499063,-0.5190171,-0.3352948,-0.27330855,-0.51582307,-0.5864191,-0.86106914,-1.0219077,-0.4913573,-0.847698,-0.90182143,-1.048117,-1.070866,-1.072519,-1.0986508,-1.0641686,-1.2788422,-1.61283,-1.7689283,-1.9857234,-2.2297168,-1.558026,-1.5356035,-1.2896773,-0.9276406,-1.3199275,-1.3425337,-0.64811677,-1.438444,-1.596952,-1.3437382,-1.2470239,-1.1444944,-1.1199572,-0.90166014,-1.0221826,-1.231778,-1.1228868,-2.138477,-2.5205727,-2.2823856,-2.141154,-1.994778,-1.9111103,-1.8643574,-1.7729452,-1.6394429,-1.6588961,-1.40706,-1.3594689,-1.5994736,-1.5858829,-1.7391871,-2.2490702,-2.3279567,-2.252334,-1.875454,-2.4341836,-2.8616464,-2.829821,-2.7190006,-2.550423,-2.481113,-2.3920674,-1.9124085,-2.0570033,-2.129531,-2.0748732,-2.025385,-1.5733901,-1.7714691,-2.0621107,-2.6417978,-3.2560334,-3.002696,-3.021055,-3.301914,-3.221756,-1.1978202,-2.1543093,-2.743409,-2.6611958,-2.4759598,-2.4495769,-2.115186,-0.96285945,-1.2726141,-1.2824957,-1.3374141,-1.5242554,-1.7206684,-1.895291,-2.0686407,-2.1440253,-2.17201,-2.255748,-2.628656,-3.3442535,-3.0331876,-3.2304149,-2.8476753,-1.5513865,-2.1996439,-2.9041448,-3.0203345,-3.1254263,-3.382794,-3.144435,-3.0471883,-2.960054,-2.7853076,-1.4627241,-2.0370123,-1.5350964,-1.1036667,-1.4171484,-1.3648515,-0.6708054,-0.8084188,-0.7033238,-0.5840923,-0.45321226,-0.4829459,-0.66674566,-0.94147307,-1.234751,-1.5599272,-1.7292473,-1.9607393,-2.1770165,-2.3078792,-2.3748207,-2.4469838,-2.5911531,-2.6507957,-2.8140466,-2.8721218,-2.836947,-2.9436352,-2.485009,-3.1670725
+-0.83622074,-1.0190442,-1.3758944,-1.1929,-1.0227346,-0.65962297,-0.7293495,-0.6961167,-0.8652146,-0.67574316,-0.45957235,-0.21217659,0.046935167,-0.24863794,-0.6692122,-0.5820504,-0.7852484,-0.32138026,-0.3716914,-0.5500628,-0.8600905,-0.668496,-0.8035218,-0.8595176,-0.8482555,-0.9176233,-1.0160141,-1.096049,-1.1869762,-1.1971432,-1.1748561,-1.2080082,-1.2499899,-1.2461406,-1.2487487,-1.3979291,-1.3254064,-1.4479107,-1.5110718,-1.7014171,-1.8199772,-1.8731861,-2.1660213,-2.1413083,-1.7453781,-1.6851434,-1.543724,-1.492877,-1.4825169,-1.5130477,-1.5410992,-1.492071,-1.0756128,-1.6298602,-1.8278736,-1.4286684,-1.6662852,-1.8353689,-1.8046647,-1.6870869,-1.4769024,-1.9489716,-1.394842,-1.9026475,-1.7322556,-1.4604439,-1.4735091,-1.5727988,-1.8097225,-1.5994478,-1.3844205,-1.5295383,-0.9496932,-1.3575042,-1.7215377,-1.7461871,-1.6479107,-1.362759,-1.5422848,-0.5749412,-0.89221853,-1.0560578,-1.5852191,-1.2213281,-1.3590823,-0.7957471,-1.3189048,-1.2335349,-1.261454,-1.2937628,-1.3517336,-1.158662,-1.2905413,-1.4908499,-1.1961389,-1.1079582,-1.3654934,-1.5159043,-1.4191126,-1.5181859,-1.5138024,-1.4896003,-1.351185,-1.1696715,-1.2937307,-1.1767582,-1.3226484,-1.2072283,-1.3041605,-1.4961387,-1.3643138,-1.4056515,-1.4707144,-1.511727,-1.3837646,-1.4357258,-1.5344399,-1.717528,-1.6288573,-1.6638254,-1.6260264,-1.6451838,-1.1649034,-1.5680467,-1.6737765,-0.8234665,-1.1587116,-1.4941679,-1.76415,-1.7038814,-1.5861865,-1.990362,-1.8913785,-1.7045306,-1.5876561,-1.8665032,-1.719904,-1.1509587,-1.8995503,-1.2015375,-1.652446,-1.7331387,-1.988572,-1.7949127,-1.9780973,-1.644937,-1.5804633,-2.1040833,-1.9509162,-2.231494,-2.0719519,-2.3037655,-2.3795729,-2.355661,-2.1711888,-2.1608877,-0.72256523,-1.8265954,-1.8538444,-2.2055898,-1.8623506,-2.0032587,-2.1785693,-2.2720425,-1.7613822,-2.0395699,-2.2184148,-2.329079,-1.7065601,-2.1348205,-2.4657621,-1.9646269,-2.2444258,-2.359002,-2.4984226,-2.6972685,-2.0005884,-1.4106039,-1.6329521,-1.9546422,-2.1038177,-2.3736386,-2.516071,-2.4372377,-2.6003718,-2.5654771,-2.5322683,-2.5084705,-2.33275,-2.599628,-2.7113261,-2.9335403,-2.8579066,-2.9463568,-2.7166646,-2.6160784,-3.052645,-2.7310336,-2.6664765,-2.5891595,-2.6185727,-2.5545921,-2.7495186,-3.0738816,-2.92242,-2.5826132,-2.8295965,-3.0023851,-2.9355574,-2.9102192,-3.0472836,-2.9187703,-2.775762,-2.4578633,-2.2950573,-2.6066847,-2.8415298,-2.8349962,-3.0722284,-3.1436636,-3.0060532,-3.1035185,-3.1926012,-3.0998673,-3.098466,-3.2183495,-3.3146763,-3.2750218,-2.9546227,-3.1810803,-3.0353117,-3.0072556,-2.8572245,-2.8473718,-2.8092105,-2.3973002,-2.836782,-2.8479009,-2.7446084,-2.3787405,-2.3361764,-2.0768523,-2.4194415,-2.627429,-2.1756914,-2.1117687,-2.033411,-1.9696926,-1.9472334,-1.017355,-0.47404185,-0.996026,-1.2304556,-1.3522209,-1.4604793,-1.3865643,-1.3432329,-1.4477297,-1.3585368,-1.4782103,-1.4649242,-1.375222,-1.392856,-1.0417198,-1.1382807,-1.1245118,-1.1295398,-1.3389136,-1.2400466,-0.025185976,-0.528003,-0.76484686,-0.881625,-0.9848594,-1.0801274,-1.0765442,-1.0820322,-0.7022463,-1.0838532,-1.2158743,-1.2071446,-1.2458762,-1.1705064,-1.2605245,-1.1076688,-1.2310706,-1.213204,-1.2293847,-1.2639167,-1.2159985,-1.2316558,-1.1353307,-0.9826341,-0.7409657,-0.7356372,-0.6145284,-0.75833595,-0.68924105,-0.6366994,-0.62976414,-0.5947909,-0.7705844,-0.90340227,-0.8161024,-0.7543687,-0.80290526,-1.0763144,-1.1077892,-1.0757495,-1.170617,-1.0675819,-1.077277,-1.0876403,-1.126401,-1.1146367,-1.1028558,-1.0247886,-0.8072196,-0.8038352,-0.7036187,-0.81347644,-0.62006336,-0.39735666,-0.18208933,-0.29332125,-0.37547007,-0.12398632,-0.047941092,-0.28104532,-0.6129903,-0.7497755,-0.74846107,-0.7675073,-0.69667107,-0.75918293,-0.86949855,-0.796189,-0.4621394,-0.13569456,-0.064077005,-0.50439584,-0.67374474,-0.83662176,-1.0135996,-1.0272137,-0.99924105,-0.9375866,-0.82818615,-0.6787525,-0.41346547,0.4215975,0.51013017,0.60696405,0.665539,0.23849869,-0.21329859,0.2532774,0.5804082,0.6161185,0.2602706,0.19647177,0.005413454,0.18948162,-0.48738793,-0.9693927
+-1.0139071,-1.6337942,-2.0901053,-2.308487,-2.327545,-2.1562057,-2.2529511,-2.3450234,-2.4250445,-2.2910748,-2.1786342,-2.4062102,-2.0773423,-2.102076,-2.0124145,-1.7645906,-1.2510111,-0.9948228,-1.1675671,-1.3534374,-1.6951994,-1.9932917,-2.206049,-1.8098955,-0.935853,-1.3332348,-1.5794249,-2.0004244,-2.2076068,-2.2782907,-2.4948385,-2.702448,-2.7231832,-2.78388,-2.9731774,-2.9665656,-2.970439,-3.0630567,-3.0246475,-1.8916873,-2.119466,-2.2837896,-2.4251635,-2.6285968,-2.9857836,-2.585209,-2.8289692,-2.9502444,-2.940397,-2.927866,-2.9671412,-3.0160477,-0.4575518,-1.308189,0.053434353,-0.50074285,-0.70000714,-0.71568865,-0.3843232,-0.9941998,0.23778428,0.10445875,-0.2509336,0.027073245,-0.057713006,-0.36206397,-0.089482054,-0.61625206,-1.1007872,-1.4716648,-0.38134944,-0.9108928,0.17440599,-0.508618,-1.1654086,0.43131098,-0.28158477,0.570474,-0.32566193,-0.46009788,-0.87470204,-1.2852422,0.017319229,-0.31602374,-0.9112794,-1.2299289,-1.449764,-1.4928392,-1.7686766,-1.9374527,-1.8357109,-2.0590615,-2.49338,-2.4119632,-2.4540396,-1.0446982,-1.5247712,0.05812457,0.47676358,-0.32138097,0.29625317,0.3302712,0.18619373,0.1355855,0.10359961,-0.15951468,-0.5259109,0.15254036,-0.31877163,-0.8219982,0.5735292,0.5970045,0.049937706,0.24330659,0.016689818,-0.5040973,-0.9216805,0.0051554106,-0.77085906,-1.3759392,-0.891128,-1.1806756,-1.6039337,0.110881925,-1.2469518,0.8081265,0.30637613,-0.09583011,-0.6554561,-1.2336324,-1.620904,-0.36051157,0.69929475,-0.005659286,-0.5096388,-0.9809386,-1.5122255,-1.2931372,-1.6974568,-0.64935595,-1.1179603,-1.3891348,-1.8401297,-2.2243924,-2.2204456,-2.3036354,-2.4876742,-2.6399903,0.33874333,-1.1074533,-0.97819036,-1.6613384,-2.1478558,-2.3738248,-2.4440281,-2.5000458,0.49009857,0.54752094,-0.13714336,-0.28681177,0.19235654,-0.44741562,-0.90372455,-1.4360677,-1.2408142,-1.455645,-1.9361292,-2.3583097,-1.2704295,-0.81023866,-1.7121131,-2.0201988,-2.4449596,-2.0290675,-2.2522643,-2.4094439,-0.8537285,-1.3072648,-0.31752446,-1.25136,-1.7773005,-2.2886462,-2.428227,-2.7104697,-2.7345057,-2.3228958,-1.9134477,-0.8357517,-1.6907568,-2.2440805,-2.4581778,-2.7133641,-2.9043975,-2.6836672,-2.7636638,-2.9770849,-3.102425,-3.1087499,-3.1213188,-3.1283708,-3.2648554,-3.0883036,-3.1983685,-3.191792,-3.4260843,-3.2812386,-3.3410926,-3.2721596,-1.7987596,-2.6991851,-2.8351393,-2.781496,-3.0212553,-3.0870464,-3.2619457,-3.2833471,-3.4103673,-3.4565787,-3.5515316,-3.53251,-3.6715012,-3.588573,-3.6199007,-3.8492608,-3.4299297,-3.4187863,-3.863051,-3.7577267,-3.8142,-3.7000327,-3.5740142,-3.3677425,-3.352162,-3.197561,-3.2157588,-2.0528543,-2.360931,-2.3830445,-2.3628545,-2.3452284,-2.4409642,-1.5391661,-2.1683671,-2.1627445,-2.0952148,-2.1982985,-2.161857,-1.8898906,-2.0454447,-1.2257348,-1.1130182,-1.3604926,-1.5367808,-1.5892073,-1.48197,-1.4091462,-1.5862495,-1.7499563,-1.6953502,-1.7103331,-1.741651,-1.5126029,-1.4359748,-1.326427,-1.3518246,-1.4227723,-1.4316499,-1.572141,-1.420052,-0.7710089,-1.117121,-1.1024284,-1.30906,-1.2474219,-1.2997047,-1.3656123,-1.246019,-0.76270837,-1.0303913,-1.1801232,-1.1530247,-1.2490494,-1.1537653,-1.0759186,-0.88943034,-0.98916405,-1.0938145,-1.115801,-1.20903,-1.2706654,-1.3209258,-1.3198327,-1.2460998,-1.1976126,-1.0718155,-1.0394223,-1.0597212,-1.1388236,-1.2951691,-1.2623813,-1.3009704,-1.3875546,-1.4308873,-1.3982452,-1.0962212,-1.1295482,-1.2937275,-1.2229403,-1.2276322,-1.1686987,-1.2186397,-1.1546482,-1.0933428,-1.1655769,-1.1843374,-1.0988654,-1.20694,-1.2586696,-1.233878,-1.2786286,-1.2015274,-1.1222932,-1.0397962,-1.044233,-0.95219976,-0.5847282,-0.59240127,-0.73885775,-0.9332618,-1.1336583,-1.1459366,-1.0847032,-1.1265174,-1.1519594,-1.2005349,-1.1478903,-1.094799,-1.0074276,-0.9472478,-0.56298095,-1.1027948,-1.1975917,-1.2851428,-1.2830789,-1.2585346,-1.1828529,-1.194356,-1.259353,-1.2323678,-1.0571004,-0.5308474,-0.52085096,-0.5551556,-0.42483428,-0.6898309,-1.2086064,-0.6084175,0.15317717,-0.015914638,-0.24260932,0.35842094,0.3451293,-0.11139533,-1.0476438,-1.6675533
+-1.1021398,-1.733229,-2.2317004,-2.455444,-2.5796762,-2.7757435,-1.5807837,-2.1201901,-2.4143734,-2.4396553,-2.494802,-2.6731262,-2.5896792,-2.5184984,-2.5322385,-2.264445,-1.3689569,-1.8577904,-0.590405,-0.9223998,-1.4349266,-1.7051796,-2.124755,-0.71898717,0.2504443,-0.26037243,-0.30565873,-1.133093,-1.4542764,-1.7429897,-2.074017,-2.4418063,-2.4894063,-2.6049592,-2.7095194,-2.6450772,-2.719919,-2.8718865,-1.958754,-1.9188095,-0.97752017,-1.6458956,-2.0865264,-2.3615837,-2.602073,-2.5992615,-2.7841816,-2.8864148,-2.7711396,-2.7227814,-2.7220159,-2.7324991,-2.396738,-2.6647053,-0.12695763,-0.70672554,-0.96548265,-0.88070506,-0.9275473,-1.2549417,0.09086993,-1.0341488,-1.3805207,-0.5820053,-0.6084478,-1.2010084,-0.63660604,-1.433472,-1.9923137,-2.1634014,-2.1867669,-2.3594987,-1.1570877,-1.386979,-0.47160432,-0.10417384,-0.9390064,-1.0010275,-0.31547037,-0.9268031,-1.6566842,-2.0505307,-0.557315,-1.117911,-1.6999757,-1.9857014,-2.357849,-2.3607924,-2.4026031,-2.604449,-1.3593346,-2.3312209,-2.6045218,-2.6366005,-2.6782155,-2.5729885,-2.7240696,-2.0594099,-1.8375541,-2.488642,0.6525041,0.84027416,0.27239913,-0.23202091,0.06940314,-0.10327558,-0.4969733,0.12463398,-0.46892783,-0.8707641,-1.0812594,0.31446734,-0.6063574,-1.0627993,-0.14813733,-1.0993193,-0.5944244,0.16818357,-0.5677289,-0.62978727,-1.2066594,-1.5591813,-1.8279587,-1.8439729,-2.2391288,-0.35736504,-1.1414082,-1.6392685,-2.062302,-2.311762,-2.2142076,0.81277937,0.6298488,-0.03953803,-0.15535179,-0.52451426,-0.6983886,-1.085836,-1.5798653,-0.47725752,-0.5127396,-0.7198395,-1.1673352,-1.7222672,-2.1558661,-2.3322458,-2.5001125,-2.6241965,-0.40086293,-1.4114364,-1.6223718,-2.0953348,-2.4980617,-2.5954657,-2.648477,-2.6704068,-2.6933885,-0.4154568,-0.4216029,-0.10622083,-0.12576067,-1.2328076,-1.3280368,-2.0444016,-2.3990507,-2.3208883,-2.7274163,-1.0905309,-0.031026784,-0.79901224,-1.4779317,-1.9841992,-2.2506638,-2.3620243,-2.2193294,-1.5014592,-1.0467163,-1.0597855,-1.5232635,-2.2457945,-2.4426935,-2.7418156,-2.8213158,-2.9125562,-2.9484313,-2.9252257,-1.6986542,-1.0292529,-1.8345488,-2.4235244,-2.8524032,-3.03856,-3.1959062,-3.1322749,-3.0436692,-3.2061198,-3.412234,-3.5360746,-3.5149593,-3.17576,-3.0411963,-2.823147,-3.2026317,-3.3644066,-3.6884203,-3.629147,-3.580273,-2.2991207,-1.6750836,-2.412418,-2.6591089,-2.6225123,-2.8856578,-2.926927,-3.2348433,-3.2830932,-3.464184,-3.5325084,-3.5625882,-3.516761,-3.6624804,-3.5347838,-3.5435581,-3.780507,-3.476139,-3.2254333,-3.8378758,-3.7786098,-3.7131255,-3.6537867,-3.4406357,-2.45012,-2.6989353,-2.704133,-2.8052936,-2.1641903,-2.3899937,-2.4696774,-2.4771867,-2.551775,-2.5306513,-1.7384813,-2.0912483,-1.760566,-1.8869468,-1.861939,-2.0455093,-1.9054085,-2.011591,-1.7011708,-1.5619081,-1.5320674,-1.642553,-1.6435127,-1.3278029,-1.4432328,-1.5882034,-1.8140148,-1.3616078,-1.4936234,-1.230457,-1.2177937,-1.425525,-1.5363249,-1.4965333,-1.553857,-1.4801546,-1.5279189,-1.2227112,-0.9335728,-1.2140821,-0.9306018,-1.2395406,-1.2717565,-1.3616134,-1.3825889,-0.8614392,-0.931499,-0.9340919,-1.048678,-1.0971364,-1.1635832,-0.9677543,-0.8279911,-0.860419,-0.8188948,-0.8260289,-0.76290965,-0.9050899,-1.013073,-1.1895242,-1.2151469,-1.2409962,-1.2740965,-1.173485,-1.0516813,-1.0301645,-1.2302878,-1.1835798,-1.1416262,-1.172563,-1.2853875,-1.3005577,-1.2707962,-1.2007116,-1.0662864,-1.3152436,-1.188034,-1.1531023,-1.1487514,-1.2644047,-1.2650586,-1.1490793,-1.1606015,-1.1442361,-1.1881653,-1.1982242,-1.2540854,-1.3260875,-1.2686721,-1.2999824,-1.2069148,-1.0636278,-0.999942,-0.99880546,-0.88645566,-0.73832583,-0.53707516,-0.6011525,-1.1281463,-1.2157731,-1.4578112,-1.396855,-1.2980732,-1.355363,-1.480348,-1.5515797,-1.3484598,-1.1301271,-1.1242448,-1.3095329,-1.2624633,-1.5893704,-1.8141291,-1.767988,-1.5864229,-1.6912632,-1.8262882,-1.7775072,-1.3211983,-1.1830714,-1.2461331,-1.3036882,-1.2065717,-1.2700806,-2.1609173,-1.797695,-1.3130394,-1.4161626,-1.7276934,-1.9051601,-2.0583603,-2.1633582,-2.2259207,-2.2548957
+-1.0791267,-1.0963218,-1.3236337,-1.576831,-1.8785497,-1.96481,-2.1512272,-2.1300898,-2.3618107,-2.3575854,-2.23419,-2.399135,-2.318729,-2.1862936,-2.189044,-2.3350222,-2.278736,-1.1821617,-1.495436,-1.9226528,-2.208654,-2.361887,-2.548312,-2.1710305,-0.8423042,-1.1799425,-0.6281937,-0.4660699,-0.79685533,-1.8081309,-2.1359541,-2.3669446,-2.3682544,-2.4713955,-2.4584928,-2.4608545,-2.3935556,-2.5485575,-1.9132318,-1.8479836,-1.2537272,-1.6233969,-1.493929,-2.0780063,-2.158895,-2.232851,-2.307115,-2.4355025,-2.4638472,-2.4986353,-2.4453492,-2.6122918,-1.3997985,-2.0229723,-1.4066947,-1.4453682,-1.2771887,-0.7224366,-0.98950547,-1.873619,-0.37409982,-1.1972839,-1.5883787,0.4184766,-0.5162954,-1.0466022,-1.6753598,-1.8175033,-1.905264,-2.071791,-2.034511,-2.1647615,-2.026193,-1.3525766,-0.99183697,-1.247995,-1.8814055,-0.99967533,-1.0310003,-1.8736469,-1.8362099,-2.2338004,-1.4560748,-1.9404601,-2.1996932,-1.7341933,-1.9839569,-2.196725,-2.272969,-2.4011617,-2.4330482,-2.4664626,-2.486728,-2.5159142,-2.5614023,-0.29678684,-1.2593478,-0.23992392,-0.6496501,-1.6049075,0.6817853,0.65938276,-0.28211656,-1.0877804,-1.6088573,-1.8720986,-2.1065865,-0.35004067,-1.3587118,-1.7286872,-2.0924702,-2.2444818,-2.3205702,0.40650174,-0.73418254,-1.3631463,-1.6386329,-0.8433883,-1.4974475,-1.7612208,-2.1424067,-2.2626214,-2.2843258,-2.3710752,-2.6124015,-0.62818265,-1.6150588,-2.070187,-2.3424087,-2.4738681,-2.4862225,-1.8973596,0.43358022,0.42483285,-0.69877476,-1.4034873,-1.781029,-0.29830983,-0.7817778,-0.3684841,0.18764916,-0.072252184,-0.9196989,-1.7360132,-2.3155913,-2.4494348,-2.4859643,-2.4891753,-2.1639793,-1.348612,-2.0569756,-2.1536267,-2.575299,-2.699545,-2.7828214,-2.7971864,-2.8112478,-0.28188077,0.16352499,-0.81047696,-1.5015904,-0.089975104,-1.1144238,-1.9581898,-2.400454,-2.529812,-2.6803977,-1.3429574,-1.2055987,-1.9085656,-2.4644437,-2.5818992,-2.7757132,-2.6634052,-2.0184326,-0.9775688,-1.1754732,-2.1164436,-2.3922398,-2.630258,-2.6822586,-2.8214273,-2.9254527,-2.9659536,-3.049369,-3.129535,-1.1748558,-1.1062356,-1.5415531,-1.3390074,-1.9730741,-2.4778783,-2.7689104,-2.7875803,-2.607916,-2.720939,-3.0302906,-3.1093569,-3.3839297,-3.3605814,-3.2183795,-3.2770512,-3.2805915,-3.3298244,-3.5184102,-3.481032,-3.278582,-3.0367177,-1.9811898,-2.7262697,-3.0114589,-2.2165942,-2.560272,-2.8419836,-3.1245046,-3.2735753,-3.395235,-3.481675,-3.5843685,-3.5183814,-3.5359426,-3.553276,-3.4810586,-3.655284,-3.3405657,-3.0818639,-3.5728595,-3.569922,-3.5657187,-3.4859354,-3.3589435,-1.7404518,-1.7998669,-1.9978343,-2.0674956,-1.7885314,-1.7242688,-1.6114568,-1.6467679,-1.7029283,-1.6000595,-1.9261559,-1.9248841,-1.8581936,-1.6921581,-1.6264184,-1.656615,-1.56837,-1.4923217,-1.4459329,-1.4195498,-1.3554553,-1.3435978,-1.2250882,-0.6148087,-0.9052104,-1.0050572,-1.1402825,-1.0798451,-0.9646687,-0.81498283,-0.73576564,-1.0435909,-1.2782236,-1.2086337,-1.2947943,-1.151486,-1.1935858,-0.6376343,-0.8779482,-0.96585053,-1.0449926,-1.1883289,-1.1910897,-1.2653314,-1.3147668,-0.89936715,-1.1781508,-1.1752609,-1.1934448,-1.1511103,-1.188979,-1.1437016,-1.0112326,-0.9996043,-0.975174,-0.98257047,-0.9565441,-1.0362751,-1.1133975,-1.2299404,-1.341128,-1.3548832,-1.2320668,-1.0666393,-0.8415343,-0.7325253,-1.0667462,-0.9156597,-0.8126434,-0.9864785,-1.161722,-1.1655141,-1.1802906,-1.1200908,-0.81038165,-1.1150856,-1.2248255,-1.3171344,-1.3575042,-1.3535448,-1.3470366,-1.2830603,-1.2952937,-1.3475987,-1.2421035,-0.6821946,-0.8850074,-1.0744447,-0.8367559,-1.088076,-0.8339413,-0.9238041,-1.149357,-1.520223,-1.8076906,-1.9468564,-1.945114,-1.9845308,-2.0783324,-2.3786604,-2.3170197,-2.1890028,-2.0984535,-2.0293608,-2.134593,-2.1073518,-1.9836403,-1.7548903,-1.6956816,-1.7185006,-1.8173656,-2.18286,-2.5342295,-2.5856004,-1.9678086,-2.0027235,-1.9722878,-1.8651663,-1.547859,-1.0621078,-1.1696581,-1.2476485,-1.4036211,-1.3253617,-2.0798905,-2.022502,-1.3138016,-1.2520903,-1.3994702,-1.7733858,-2.055873,-2.3869517,-2.2331328,-2.0630937
+-0.67544794,-1.0512861,-1.5220121,-2.0013645,-2.2408206,-2.5700116,-2.8001459,-2.917613,-2.7077217,-2.7217083,-2.913525,-2.6977108,-2.6869612,-2.7008812,-2.6325302,-2.6471677,-2.7220824,-0.9712859,-2.184439,-1.7347385,-1.5642891,-1.9515387,-2.3574338,-2.3014748,-1.8917964,-2.3278573,-0.43956068,-1.1199281,-1.4482831,-1.1129355,-1.7112395,-1.8853737,-2.2907314,-2.529356,-2.7268536,-2.8980942,-1.848073,-2.0395415,-1.2712162,-1.6225368,-0.9765281,-1.5819823,-2.1185398,-2.4491112,-2.591841,-2.7052925,-2.7756689,-2.6987236,-2.6442115,-2.6435227,-2.6352558,-2.778326,-0.4253492,-1.7765759,-1.5901948,-0.9357011,-1.607675,-0.3751898,-0.8756426,-1.1777674,-0.9390519,-1.6053569,-1.9140697,-1.6038266,-1.171695,-1.7727432,-2.2094393,-2.4717987,-2.1131148,-2.278028,-2.6110508,-2.6680818,-2.4632263,-1.9013067,-0.95097756,-1.5440083,-1.9673597,-2.14887,-0.38149393,-1.615588,-2.182561,-2.4721382,-1.7980126,-2.2938032,-2.4124835,-2.2437444,-2.4039712,-2.7347426,-2.7455857,-1.0150257,-1.8834184,-2.2409747,-2.3841765,-2.464106,-2.6071358,-2.7407455,-2.8255558,-0.26816443,-1.6679454,-1.9536248,-1.962763,-2.0824804,-2.505457,-2.198581,-2.510015,-2.757061,-2.7274902,-1.6448034,-2.2495232,-0.3482165,-1.5062802,-1.8340961,-2.0486598,-2.003552,-2.333593,-2.6369255,-2.706498,-2.7378802,-2.8607183,-2.7258055,-2.8768206,-1.9806701,-0.9975006,-1.8293089,-2.1374812,-2.3093803,-2.617239,-2.982036,-2.8444824,-2.7846124,-2.826147,-2.545981,-0.23425558,-1.1695069,-1.5970074,-2.1899762,-1.5424403,-1.7654952,-1.969663,-2.223213,-2.3579175,-1.7557403,-2.5573096,-2.644299,-2.126721,-2.0619104,-2.5521255,-2.9117978,-1.8843433,-2.3409371,-2.3933902,-2.5751832,-2.980114,-3.185848,-3.036981,-3.1756177,-1.9088191,-1.0657909,-1.566985,-1.1816311,-1.6943518,-0.76836914,-1.6546514,-2.3655632,-2.5773964,-2.8307843,-2.9054904,-0.22927591,-1.0109693,-1.5266658,-2.0199294,-2.1637974,-2.2840924,-2.2235804,-1.9548064,-1.8051356,-1.3162982,-1.7823265,-2.3844514,-2.810773,-3.0668418,-3.1184192,-2.9549844,-3.0086837,-3.033553,-2.9912348,-1.6534355,-1.5552629,-1.7932893,-1.9310511,-2.3920121,-2.4630249,-2.7718406,-2.8569524,-2.9877877,-3.0458405,-3.2424603,-3.2302256,-2.9995618,-2.984387,-3.1977067,-3.165822,-3.2842526,-3.3966632,-3.423182,-3.5300543,-3.3384647,-3.2839456,-2.9288142,-3.2129567,-3.3556666,-3.2354875,-3.0719209,-3.27745,-3.5260541,-3.6494207,-3.775394,-3.8353324,-3.6581206,-3.5753412,-3.6724439,-3.7889714,-3.8561234,-3.9885216,-3.8642232,-3.6430047,-3.880319,-4.0206423,-3.868419,-3.6544359,-3.6882944,-2.3422663,-2.7038355,-2.5155241,-2.5003915,-1.7537842,-1.9148138,-1.9365932,-2.095141,-2.2138596,-1.8804568,-2.3994923,-2.5363603,-2.6504326,-2.6497743,-2.7639492,-2.570414,-2.6011267,-2.6928067,-2.9413404,-3.1722085,-3.2930412,-3.3615754,-3.0209856,-2.8876243,-3.0471463,-3.0634487,-3.112846,-3.042436,-2.6515806,-2.5130062,-2.5963268,-2.5770848,-2.4199636,-2.3619819,-2.4748015,-2.1252294,-2.1662385,-1.223756,-1.3995322,-1.6026167,-1.6508497,-1.9309803,-1.7920555,-1.8018647,-1.5745476,-1.4607892,-1.6633312,-1.8793576,-1.8691938,-1.8446926,-1.8543197,-1.7478436,-1.7314882,-1.7138172,-1.7236118,-1.8738534,-1.7174624,-1.7374188,-1.7064732,-1.5879415,-1.7187694,-1.5967935,-1.3259798,-1.2598431,-1.5335858,-1.3458582,-1.2596844,-1.4388387,-1.2687242,-1.0804837,-1.2995272,-1.39575,-1.3379273,-1.3209434,-1.3471347,-1.3939849,-1.6117142,-1.6064283,-1.3847195,-1.547178,-1.2804734,-1.4326931,-1.5894458,-1.5755658,-1.2559645,-1.6598996,-1.7424587,-1.3933549,-1.5276033,-1.5508982,-1.5615402,-1.9294115,-2.2186265,-2.0797553,-1.8523115,-2.2588346,-2.468072,-2.676428,-1.7729198,-2.341822,-2.5333233,-2.611061,-2.4613934,-2.4022245,-2.5400276,-2.4206443,-2.2267728,-2.2753103,-2.7356324,-2.8950143,-2.9368405,-2.9608192,-3.2890248,-3.2603035,-3.0095348,-3.076636,-3.2279563,-3.1520143,-2.6448584,-2.525145,-2.676324,-2.5099688,-2.7891226,-3.0495243,-2.8379502,-2.8908658,-1.9665438,-2.5657506,-2.787161,-2.8085341,-2.7560773,-2.6894073,-2.7385893,-2.8663456
+-1.0951978,-1.5326473,-2.0568473,-2.4447405,-2.408724,-2.6997051,-2.962637,-3.1185472,-3.0358882,-2.8493397,-3.2417455,-3.0456178,-2.97389,-3.0466545,-3.0322752,-2.878837,-2.807305,-0.9923057,-1.855681,-0.5563294,-1.6053482,-1.668736,-2.045698,-2.0302563,-1.9049493,-2.1926913,-0.6654302,-1.2819544,-1.5954214,-0.7638277,-1.2495191,-1.3635188,-1.9113827,-2.3386729,-2.6259432,-2.8319924,-2.7527401,-2.8134918,-0.7660061,-1.63458,-0.8384905,-1.333853,-1.9496497,-2.4343603,-2.6188457,-1.5727085,-2.2098093,-2.399838,-2.490286,-2.671626,-2.5958652,-2.71699,-1.1558886,-1.255096,-1.9265975,-1.9421037,-2.1345172,-1.1029097,-1.9259087,-2.3336627,-2.1101997,-2.6085463,-2.8050447,-1.8154155,-1.7079252,-2.359013,-2.6663961,-2.7906897,-2.709291,-2.824941,-2.838486,-2.8766665,-2.9252636,-2.4995856,-0.8380411,-2.029802,-2.4154181,-2.5231729,0.29531094,-1.1931119,-0.9656238,-1.4066688,-1.9459133,-2.3650942,-2.435526,-2.5893972,-2.7195072,-2.7914212,-2.8154576,-1.5433117,-1.5761384,-2.1275468,-0.0636283,-1.1483815,-1.3909258,-1.8565186,-1.7185675,-0.7364854,-1.6659217,-2.0145113,-2.2288923,-2.3997803,0.09951495,-1.2711539,-1.8122942,-1.6003511,-1.9739414,-1.7795033,-0.8897647,-1.6629714,-1.8480604,-2.1838913,-2.3776488,-2.500288,-2.7311547,-2.8640137,-2.8734143,-2.798657,-2.86441,-2.8479548,-2.897582,-2.3658495,-1.6486281,-1.2878555,-2.0274322,-2.3604434,-2.4330707,-2.877283,-2.8108146,-2.781559,-2.9044075,-2.9109383,-1.1281191,-0.74525386,-1.8731107,-2.4278848,-2.7378752,-1.1652888,-2.1038456,-2.312818,-2.085178,-1.4794484,-2.5243664,-2.8351614,-2.9122384,-0.19549325,-2.0107064,-2.3567784,-2.4114478,-2.5496798,-2.5536802,-1.0976816,-2.1661675,-2.6414137,-2.6952748,-3.0051122,-2.4298553,-2.4565892,-2.6106396,-2.3374267,-2.5598311,-1.5663991,-2.277518,-2.8696723,-2.911724,-1.5526941,-2.1686707,-1.3195044,0.087916225,-1.6866311,-2.0377214,-2.2379766,-2.4692998,-2.549934,-1.6403657,-2.2308905,-1.8860601,-1.331227,-2.4494216,-2.8691645,-3.102395,-3.2751014,-3.3029957,-3.3505955,-3.2806664,-3.2352474,-1.6074939,-1.3386732,-1.7251327,-1.9772137,-2.6519852,-2.8647122,-2.971261,-3.031813,-3.2431388,-3.3564677,-3.3687863,-3.0913117,-3.0997279,-3.1334076,-3.4231582,-3.6117227,-3.119946,-3.446021,-3.474625,-3.604003,-3.5470676,-3.286496,-3.268848,-3.449424,-3.3030338,-3.4355414,-3.4969847,-3.3850446,-3.6231189,-3.609476,-3.835747,-3.791947,-3.6494775,-3.540832,-3.492733,-3.4919257,-3.7274313,-3.7795532,-3.7969458,-3.582905,-3.5777154,-3.8396864,-3.784461,-3.606574,-3.5937796,-2.324869,-2.8413863,-2.8499925,-2.778997,-2.1048717,-2.5430794,-2.1655715,-2.4697802,-2.5644848,-2.3799927,-2.606011,-2.8467617,-3.0177202,-2.8448195,-2.8883069,-2.498651,-2.3945315,-2.377966,-2.621198,-2.934668,-3.0541015,-3.082852,-2.8396685,-2.7712119,-2.8540053,-2.998513,-3.0285811,-3.06281,-2.887185,-2.8754344,-2.9310913,-2.9455767,-2.8065438,-2.6953855,-2.742551,-2.344783,-2.4161391,-1.2204865,-1.6317618,-1.9247018,-1.9799415,-2.2607503,-2.3254938,-2.2744722,-2.1973772,-1.9357816,-2.3539317,-2.4601398,-2.3823934,-2.3973193,-2.3661218,-2.2397554,-2.187074,-2.0726948,-2.0890436,-2.1206474,-2.1890674,-2.2097287,-2.0152428,-1.0892414,-1.515923,-1.640505,-1.403845,-1.6188277,-1.9447109,-1.8416995,-1.8133676,-1.7553636,-1.8697722,-1.8561245,-1.8734674,-1.8507161,-1.7727641,-1.7626635,-1.779958,-2.0614734,-2.2647862,-2.1302104,-1.9151286,-2.1347659,-1.8843327,-1.9781379,-1.7474171,-1.9158651,-1.7091317,-1.8120079,-2.179439,-2.3321157,-2.2906175,-2.4133303,-2.491468,-2.5547917,-2.4293003,-2.7141755,-2.798563,-3.1103268,-3.2248812,-3.2248187,-1.9698087,-2.3923779,-2.6368155,-2.6425796,-2.451753,-2.6158397,-2.8649273,-2.9042118,-2.7907832,-2.8516617,-3.0486696,-3.0026474,-3.0691607,-3.0707197,-3.4079278,-3.1458569,-2.8307528,-2.9541192,-3.0538285,-3.1052814,-2.6561751,-2.7327008,-2.9346344,-2.7991605,-2.7994313,-2.8912654,-2.9338813,-2.862232,-1.7028903,-2.1908994,-2.4481375,-2.6671762,-2.9168854,-1.5270647,-2.314844,-2.5796666
+-0.8361854,-1.0648274,-1.5825804,-1.9605509,-1.9542302,-1.9284672,-2.6026108,-2.8581321,-2.5793219,-2.6391802,-2.9088106,-2.7731693,-2.7467015,-2.740618,-2.6487288,-2.5020354,-1.9628254,-0.5869068,-1.4938301,-0.9577207,-1.4419733,-1.5259737,-1.8877358,-2.1916125,-1.7794875,-1.188777,-0.9128066,-1.4195616,-1.7169894,-1.1500317,-1.5845243,-1.5279397,-1.6862108,-2.0654051,-2.4088058,-2.7640584,-2.7809722,-2.6938453,-0.57215273,-1.2793398,-1.2640941,-1.4675323,-1.7536291,-2.1026552,-2.3626819,-1.29862,-1.5793003,-1.7024599,-1.9575611,-2.0838003,-2.1873436,-2.3355498,-1.9416994,-1.5382209,-0.84035826,-1.1839703,-1.2414012,-1.6749669,-1.5048062,-1.5923499,-1.6102625,-1.8489115,-2.2289832,-2.4688065,-1.3577014,-2.0137503,-2.4215856,-2.5865536,-2.6186855,-2.723312,-2.7292268,-2.8028123,-2.8539038,-2.8978791,-2.8859217,-2.9491248,-2.723093,-2.8653524,-0.3305747,-1.651596,-2.0935488,-2.3936448,-2.7694194,-2.9146662,-2.9166422,-2.7877007,-2.12092,-2.4724417,-2.5183148,-2.577681,-2.8171434,-2.9401753,-0.6803622,-1.3332506,-1.5143867,-2.046722,-2.4843154,-0.57050234,-1.672841,-2.2262402,-2.593484,-2.8428097,-2.2519565,-2.1964245,-2.5810025,-2.4182558,-2.6074715,-2.5228834,-2.1516385,-2.4944043,-2.7887444,-2.9483151,-2.9232407,-2.4810712,-2.8411274,-2.9883199,-3.0373347,-2.9795175,-2.8879094,-2.4839034,-0.959467,-1.694601,-2.037625,-0.58486193,-1.6310755,-2.2512949,-1.7429734,-2.337061,-1.4278841,-1.6801783,-2.1017199,-2.446812,-2.7074132,-0.78608316,-1.8286337,-2.5161967,-2.858456,-2.982493,-2.9835477,-1.9498647,-0.31933382,-0.95697635,-1.9445568,-2.4852612,-2.7672677,-1.5945417,-1.6802443,-2.2724934,-1.8710445,-1.7782508,-0.6346945,-0.9891235,-1.2021898,-1.5428156,-1.6669579,-2.1190066,-2.362403,-2.696516,-2.970142,-2.4633112,-2.7702441,-2.6944509,-2.3415048,-2.9932504,-3.1133506,-0.67217857,-1.4896381,-1.7543081,-1.4366974,-2.1624117,-2.6161828,-2.8884833,-3.0721784,-3.0957174,-3.20777,-3.4291525,-0.91058105,-1.2740601,-2.3497717,-2.7992253,-3.0942593,-3.2290199,-3.3033872,-3.411953,-3.4360743,-3.399658,-2.1628373,-2.1491046,-1.659801,-1.8925618,-2.3700771,-2.8289058,-2.0086915,-2.5387592,-2.6405518,-2.8331604,-3.0352201,-3.0499587,-3.1149516,-3.3051662,-3.6135488,-3.67965,-3.020572,-3.394021,-3.405655,-3.5156274,-3.5305967,-3.4159653,-3.548123,-3.6041212,-3.4842315,-3.5847135,-3.6427279,-3.5569184,-3.660543,-3.3951573,-3.711884,-3.817819,-3.7142136,-3.6600504,-3.2792873,-3.4715905,-3.5225906,-3.5914927,-3.5893302,-3.4836502,-3.5015283,-3.6473417,-3.6182117,-3.558077,-3.5497322,-3.5093768,-3.4622114,-3.4118016,-3.1884441,-1.9442265,-2.5183907,-2.3863745,-2.6331043,-2.7522166,-2.7605832,-2.915563,-3.002263,-3.2698686,-2.9483798,-2.9006815,-2.1776738,-2.1847038,-2.308843,-2.3331797,-2.5852625,-2.6652513,-2.7913392,-2.557609,-2.377734,-2.5964756,-2.7365332,-2.874538,-2.9406796,-2.6405337,-2.7962332,-2.8658547,-2.979096,-2.8731453,-2.6838284,-2.6657848,-2.2972317,-2.250265,-1.600797,-1.7706989,-1.8296381,-1.8415962,-2.1599746,-2.3254528,-2.1926963,-2.232896,-1.8933719,-2.0620522,-2.3437953,-2.0762355,-2.248075,-2.2567644,-2.258328,-2.048234,-1.6116432,-1.5344013,-1.7975365,-1.8885206,-1.8784798,-1.1611238,-0.7235675,-0.72022694,-0.74274254,-0.7670243,-1.2474791,-1.56869,-1.5781406,-1.8199337,-1.6852925,-2.0015047,-1.8777047,-1.9776844,-1.8993146,-1.7917231,-1.949756,-2.273117,-2.2899375,-2.445697,-2.428856,-2.3258374,-2.1980934,-1.9974815,-1.9248616,-2.3463244,-2.4313169,-2.0881498,-1.8918456,-2.1912036,-2.8057108,-2.6365767,-2.618381,-2.6608226,-2.787869,-2.740538,-2.8487368,-2.714931,-2.8352776,-2.9381142,-2.8316708,-2.4934344,-2.5356457,-2.516046,-2.463468,-2.587469,-2.7610106,-2.7310536,-2.6393218,-2.7781942,-2.8545203,-2.8930771,-2.9573426,-2.9668627,-2.8188453,-2.8628535,-2.7603855,-2.6607199,-2.7044418,-2.8042984,-2.8413167,-2.5163345,-2.6017003,-2.7368205,-2.602282,-2.6384287,-2.6454961,-2.4606276,-2.4265816,-2.236136,-1.845628,-2.5011833,-2.3081903,-2.538332,-0.38598758,-1.1249365,-1.4546123
+-0.56390566,-0.85183066,-1.2348508,-1.8095154,-2.038853,-1.7455196,-2.2132592,-2.530533,-2.7362962,-2.733138,-2.8310583,-3.013125,-3.1276798,-3.21278,-3.172062,-2.9941163,-1.2197374,-1.9778346,-2.5540705,-1.744145,-2.3160443,-2.620655,-2.716896,-2.7389727,-1.9270153,-1.9457115,-1.9145806,-2.1237278,-1.9867414,-2.0549238,-2.2806804,-2.5458322,-2.427305,-2.596449,-2.7126713,-2.7840662,-2.8776903,-2.2452445,-2.2654755,-2.4499853,-2.3435464,-2.475106,-2.2461696,-2.6529107,-2.881971,-1.5926185,-2.4155545,-2.432871,-2.3486316,-2.4357765,-2.5544896,-2.5780292,-2.1952677,-2.0311542,-2.0060518,-1.7519871,-1.3041592,-2.1107855,-2.080326,-2.0703044,-2.1748796,-2.2630806,-2.3371453,-2.4941504,-2.0126414,-2.560911,-2.7977269,-2.9909186,-3.173025,-3.3686342,-3.4282212,-3.4919567,-3.530255,-3.5503316,-3.5717578,-3.534538,-2.2618856,-2.9826663,-3.016646,-3.2388778,-3.3622088,-3.4659257,-3.5921273,-3.4994955,-2.4655657,-3.0259278,-1.8440226,-2.715659,-1.0611311,-2.3236895,-2.6753573,-2.7870898,-1.1437819,-1.283472,-1.8916173,-2.1482046,-2.368362,-2.3636265,-2.524926,-2.7161918,-2.9868622,-3.216956,-1.446109,-1.9010618,-2.3676953,-2.6879427,-2.8795457,-3.0799108,-3.3145702,-3.4650023,-3.5284784,-3.633959,-3.3743305,-2.4582613,-2.1421716,-0.8836971,-2.0756907,-2.437166,-2.6336293,-1.6478888,-2.4203825,-1.4806284,-2.2569792,-2.7277684,-2.9841743,-3.1516633,-0.7452716,-1.9987825,-1.8381506,-2.2002115,-2.4844947,-2.6502657,-2.8532376,-1.2471454,-2.3723373,-2.6985068,-2.8474813,-2.9929357,-3.1779306,-3.3793457,-1.0095822,-1.7019669,-2.5050573,-2.7325659,-2.8758576,-2.4134812,-1.5940664,-2.2662988,-1.8328933,-2.2539804,-2.4345436,-2.3217282,-1.8847841,-2.440186,-2.665172,-2.9054012,-2.8796053,-3.1021972,-3.2566032,-2.7915866,-1.5523039,-2.2875826,-1.8535894,-2.5973175,-2.7849498,-1.1813648,-1.9003637,-2.2497628,-1.8328968,-2.3270035,-2.444525,-2.566235,-2.7004497,-2.8252225,-2.9585414,-3.1537595,-0.7377038,-1.8233339,-2.2979267,-2.46548,-2.6471395,-2.7855735,-2.8247402,-2.9269273,-2.996534,-3.1081529,-2.7719693,-1.4528149,-2.2253556,-2.129139,-2.5843074,-2.8305912,-2.0709958,-2.6882677,-2.639619,-2.7186537,-2.8620577,-2.8412774,-2.9368935,-2.9376745,-3.1842437,-3.1660624,-2.8927798,-3.261029,-3.297054,-3.3821568,-3.3860033,-3.4263506,-1.1990317,-2.5884473,-2.821324,-2.8588247,-2.9986339,-3.0799632,-3.1486275,-3.126765,-3.1678715,-3.4071918,-3.4701989,-3.5414913,-2.9683099,-3.0428016,-3.3580174,-3.5193298,-3.4671428,-3.4532657,-3.666955,-3.615683,-3.6356153,-3.6748853,-3.6197586,-3.550754,-3.5977209,-3.6893966,-3.6198802,-2.7534752,-3.2028794,-3.3385284,-3.4790506,-3.4925532,-3.3712642,-3.5352838,-3.413436,-3.3341186,-3.3722801,-3.5044432,-3.2409778,-1.9922136,-2.8824468,-2.7656326,-2.9139473,-3.029325,-3.2397432,-2.9098592,-2.6520808,-2.9108977,-3.0620623,-3.3893867,-3.4077659,-3.0330124,-2.996294,-3.2520518,-3.2663317,-3.1049938,-2.891018,-2.7469065,-2.4550295,-2.3587785,-2.244701,-2.396784,-2.5444574,-2.5386925,-2.664538,-2.9493685,-2.886284,-2.9703317,-2.4433231,-2.6927102,-2.991656,-2.8588977,-2.9671926,-3.0183482,-3.0196192,-2.8198934,-2.307539,-2.5593371,-2.7580872,-2.9793599,-2.7359157,-1.9466747,-1.6068243,-1.6891315,-1.7661194,-1.9036206,-1.8507613,-2.1344047,-2.3436577,-2.4799395,-2.765679,-2.9783502,-2.835537,-2.7585683,-2.7835228,-2.825248,-2.9961843,-3.1028545,-2.9791193,-3.053249,-3.1122074,-3.14236,-3.0107183,-3.0280356,-3.2062469,-2.9822104,-3.0502038,-2.860701,-3.107008,-3.0506334,-3.0660694,-3.0343876,-3.1732175,-3.175933,-3.2774906,-3.2097113,-3.132705,-1.7538923,-2.735684,-3.014886,-2.8630066,-3.1987205,-2.9274144,-2.9099479,-3.1529968,-3.2537756,-3.0878096,-2.927896,-3.0060334,-2.8762155,-2.906744,-2.8958898,-2.692144,-2.929134,-3.0202913,-2.8095284,-2.6666398,-2.8821783,-2.814191,-2.918703,-2.9612083,-2.6605392,-2.9352293,-2.791677,-2.8260612,-2.9316218,-2.8568015,-2.7114673,-2.8573177,-2.0844438,-1.7604434,-2.3608375,-2.040695,-2.3162496,-1.1345814,-1.713076,-2.1086562
+-0.88376004,-1.211258,-1.7024958,-2.1739597,-2.4786859,-2.609713,-2.8908336,-3.0386384,-3.2170494,-3.1532006,-0.7784563,-2.454165,-2.9118361,-2.7585735,-2.788165,-2.8628495,-1.463598,-2.112673,-2.6213157,-2.512789,-2.5162249,-2.7584522,-2.754939,-2.7038546,-2.7975836,-2.8089423,-1.5926359,-2.4298086,-2.066413,-2.439569,-2.675406,-2.8546236,-2.5681257,-2.5827537,-2.6872828,-2.8027604,-2.9104557,-2.0395644,-2.534319,-1.7783879,-2.374559,-2.48307,-2.4573812,-2.1301303,-2.8804474,-1.8922111,-1.3223028,-1.9909767,-2.4531543,-2.6304696,-2.7126558,-2.54031,-1.8721288,-2.4064584,-1.1853322,-2.1606584,-2.4116726,-2.4546864,-2.3582788,-2.347046,-2.259591,-2.2745898,-2.299162,-2.2695725,-2.1788654,-2.3664956,-2.4529014,-2.5828204,-2.7290487,-2.918262,-3.0850594,-3.2586932,-2.8200755,-3.0493538,-3.2914732,-3.338213,-2.1912646,-2.9128196,-1.7588431,-2.208935,-2.671161,-2.8586483,-3.1386774,-1.1989942,-1.9833945,-2.459649,-2.6334114,-1.6020509,-2.4735785,-2.6609745,-2.1738124,-2.1142516,-2.0960898,-0.71906507,-1.9487604,-2.1769497,-1.7989348,-2.2322812,-2.4852462,-2.5656593,-2.6203508,-2.806913,-2.0834258,-2.5395565,-1.4538628,-2.3477378,-2.516457,-2.667,-2.9979625,-3.2452817,-3.422582,-3.6285312,-3.7866528,-3.9171956,-3.8185825,-0.63359416,-2.3703055,-2.6750236,-2.4329605,-2.1435614,-2.695857,-2.758933,-2.9885378,-3.3199916,-3.4946897,-3.7578294,-1.662041,-1.8327565,-2.5288734,-1.7273914,-2.3819475,-2.5900178,-2.7345161,-1.5878843,-2.4660275,-2.7042446,-2.8379788,-2.897782,-3.0604053,-3.2542396,-3.1993277,-1.1590434,-2.4425159,-2.653532,-2.43637,-2.626162,-0.9170982,-2.207142,-2.5067632,-2.2803078,-2.5382626,-2.717304,-1.7831371,-2.6223357,-2.6581593,-2.7830987,-2.8261237,-2.9321527,-3.0927882,-3.2451901,-1.338447,-0.6001043,-1.6139117,-2.2834954,-2.5154486,-2.7151515,-2.823103,-2.6943247,-1.5533905,-2.617454,-2.7400749,-2.7539225,-2.7652159,-2.8640454,-2.9859638,-3.096251,-3.001307,-0.7587882,-2.1870074,-2.5852528,-2.8392415,-2.9086273,-2.8992243,-2.9467628,-2.9825888,-3.0701847,-3.1263905,-1.6189928,-1.3891673,-2.2280233,-2.6387997,-2.8284647,-2.8432498,-2.9298644,-2.2763863,-2.9556556,-2.8907273,-2.7957792,-2.8630989,-2.8559432,-3.091225,-3.0781155,-3.1771135,-3.2005403,-3.2144518,-3.2249546,-3.2125478,-3.294949,-1.8269773,-2.8824115,-2.964311,-2.9687476,-3.031032,-3.1123514,-3.1572466,-3.1277192,-3.1424785,-3.2610183,-3.3430877,-3.3861513,-2.8070817,-2.9972148,-3.2317393,-3.380505,-3.3714776,-3.3211896,-3.5533707,-3.4594374,-3.4732032,-3.4942183,-3.5831242,-3.466687,-3.3677695,-3.6350317,-3.677051,-3.4102387,-3.483167,-3.5309932,-3.5066848,-3.5882273,-3.393333,-3.5107741,-3.5967607,-3.5135465,-3.584199,-3.6105216,-3.4775598,-2.2997303,-3.2921636,-3.1614351,-3.1785297,-2.9211705,-2.8554716,-2.9887738,-3.1401389,-2.9847946,-2.95043,-3.0290167,-3.1972716,-3.0241265,-3.0209146,-2.9469976,-2.8276906,-2.825033,-2.8094587,-2.8329978,-2.8024578,-2.8600998,-2.4278474,-3.1201873,-2.924821,-3.265252,-3.2585695,-3.3049102,-3.4605713,-3.424075,-3.5579553,-3.5048118,-3.0958254,-3.1716568,-3.1191773,-3.0065567,-2.956712,-2.8752809,-2.765397,-3.1211286,-3.1086822,-2.943564,-3.0271366,-1.37715,-1.5740467,-1.7283517,-2.1734846,-2.6753967,-3.0209155,-3.280365,-3.0132623,-2.9846187,-3.4041576,-3.3664198,-2.961082,-2.8290641,-3.077077,-3.4437494,-3.654139,-3.6375952,-3.2757368,-2.9357388,-3.0311465,-3.1605,-3.3789139,-3.5381267,-3.5858297,-3.410717,-3.1396105,-3.4176154,-3.570221,-3.4263582,-3.363458,-2.978538,-3.1981049,-3.3446314,-3.3227465,-3.1982694,-3.1153557,-1.3773266,-2.898747,-3.1701088,-3.1112964,-3.2373633,-2.9697838,-3.293074,-3.4465625,-3.342849,-2.9023004,-3.1161423,-3.1916173,-3.2070894,-3.0692005,-3.119955,-2.8905559,-3.1857932,-3.1569438,-2.9487548,-3.0003667,-3.0984628,-3.0677073,-3.030818,-3.1289232,-3.2117882,-3.1201,-3.194065,-3.389531,-3.3194206,-3.2622814,-3.1759944,-3.379251,-1.9555924,-1.9764775,-2.749886,-2.3797553,-2.818628,-0.88768774,-2.2245045,-2.7182376
+-0.4226327,-0.99650925,-1.9988712,-2.6611395,-3.0004625,-3.06674,-3.189063,-3.2704525,-3.4126406,-3.3924563,-0.83519894,-3.158144,-3.0638921,-3.4519286,-3.5704923,-3.5733917,-1.9779154,-1.835921,-2.580153,-2.526171,-2.9851627,-3.159698,-3.2529035,-3.2955077,-3.3419647,-3.1830516,-2.5495653,-3.1343665,-3.1417575,-3.2241044,-3.2816784,-3.310823,-3.230082,-3.2508316,-3.3166356,-3.438846,-3.5041368,-3.5706348,-3.4283166,-3.4826865,-3.6716218,-3.2162066,-3.480082,-3.342708,-3.4624307,-1.967651,-2.8876832,-3.177503,-3.4489415,-3.1880352,-3.3485093,-3.4350505,-2.8017151,-2.505363,-2.2254477,-2.9223206,-3.295329,-3.2835367,-3.401678,-3.3099422,-2.7026265,-3.1118257,-3.1377354,-3.2545605,-3.4495187,-3.3651764,-3.4449642,-3.5812154,-3.700533,-3.796616,-3.8880928,-3.9694586,-3.6645253,-3.8417385,-3.9882312,-4.032114,-4.0503902,-4.1122603,-3.5750735,-3.8296263,-4.0331173,-4.1855454,-4.237775,-4.2922525,-4.322194,-4.3551826,-4.1928535,-1.5841337,-3.4546351,-3.758825,-3.7971394,-2.5096602,-3.449012,-1.5641025,-2.5416074,-3.195254,-3.3877788,-3.521905,-1.95325,-3.151349,-3.4781847,-3.6346717,-3.8187108,-3.958508,-1.0940546,-2.73227,-3.2997313,-3.406643,-3.6616793,-3.8564973,-3.9904852,-4.1147738,-4.2274075,-4.24788,-4.244693,-3.9700522,-1.7612526,-1.8391331,-3.1751883,-3.3096285,-2.7671618,-3.3567405,-3.545231,-3.8032265,-3.9947844,-3.8978667,-2.930398,-1.8392612,-3.4325595,-3.7175202,-3.7257628,-3.9943676,-4.172414,-3.0719118,-3.5930462,-3.9664907,-4.103633,-4.189046,-4.315547,-4.3346434,-4.2904005,-3.0591328,-3.8026085,-4.073983,-3.420267,-3.9303353,-4.1230316,-0.8448725,-2.4777756,-3.3354363,-3.3793957,-3.5036385,-1.9407171,-2.8990006,-3.4355206,-3.564427,-3.6570258,-3.8339255,-3.9976692,-4.1345944,-4.2060566,-2.8581648,-2.1882308,-3.4529426,-3.6163998,-3.8032668,-3.8785121,-3.9044673,-3.281537,-3.874175,-3.314586,-3.877499,-4.0702686,-4.1206474,-4.2025647,-4.2875357,-4.367067,-1.4477966,-3.2690825,-3.6753871,-3.831111,-3.9391398,-4.0046434,-4.1104126,-4.167891,-4.2331753,-4.2383738,-2.5215745,-2.9122152,-2.3631902,-3.4234414,-3.771228,-3.8154318,-3.910267,-3.6971025,-3.7866096,-3.887964,-3.898913,-3.9057395,-3.897856,-4.0894165,-4.1785975,-4.1729794,-4.206275,-4.2796235,-4.334508,-4.3019943,-4.251739,-2.749179,-3.8767462,-4.044469,-4.050845,-4.169953,-4.2000403,-4.180483,-4.240752,-3.680078,-4.144347,-4.276153,-4.3545156,-3.7644112,-2.8387675,-3.9638805,-4.186408,-4.1899433,-4.1366224,-4.2361813,-4.205274,-4.2525268,-4.2623158,-4.2355022,-4.3094473,-4.0536137,-4.179547,-4.3786163,-4.2587147,-3.704253,-4.1925936,-4.263669,-4.309375,-4.2259502,-4.334439,-4.3041277,-4.2971816,-4.255081,-4.3284492,-3.9225507,-3.6725633,-4.1879263,-4.230711,-3.8994865,-3.3219876,-3.1957228,-3.405531,-4.0455413,-3.8367314,-3.9214141,-3.4060292,-3.1274548,-4.01954,-4.0742373,-3.079618,-3.142983,-3.0845604,-3.1460557,-3.3058534,-3.5461009,-3.7014675,-3.4643507,-3.9505663,-3.8834858,-4.263889,-3.943976,-3.6333108,-4.1484194,-4.0645638,-4.218704,-4.206497,-3.2554193,-3.128271,-3.0730891,-3.0612025,-2.9420838,-2.9385188,-3.560488,-3.8775866,-4.0140357,-3.419887,-2.8739202,-2.5265472,-1.9599645,-3.1134593,-3.8800254,-4.106289,-4.1862164,-4.268469,-3.365516,-3.8158715,-4.182078,-4.12334,-3.5415392,-3.4447446,-3.5641875,-3.9101562,-4.1420403,-4.2134304,-3.9824314,-3.5554504,-3.0510588,-3.432114,-3.9661512,-4.0602303,-4.118724,-4.0486593,-3.3373752,-4.122449,-4.0793095,-4.015119,-3.8677,-1.7549301,-3.2823427,-3.7973235,-4.086479,-4.0559115,-3.9992862,-2.5983992,-3.6554904,-4.00058,-4.0230236,-4.001565,-3.4691687,-3.8051853,-3.9695601,-4.002574,-3.951057,-3.583589,-3.7325137,-3.9492981,-3.8588886,-3.9332786,-2.9332347,-3.4227908,-3.7337694,-3.6813612,-2.6917784,-3.389968,-3.6364465,-3.3886943,-3.2927308,-3.6196918,-3.713708,-3.6737118,-3.7592194,-3.8201032,-3.8891554,-3.6316051,-3.946917,-4.0878687,-3.3977208,-3.682822,-3.5467615,-3.7700496,-0.9928313,-2.9419658,-3.490035
+-0.7225904,-0.98582345,-1.4448712,-1.8505131,-2.2552767,-2.3886318,-2.571806,-2.830216,-1.3227271,-1.7304533,-1.5616895,-2.2487216,-2.354991,-2.4972107,-2.6826758,-2.6897798,-1.3285528,-2.005548,-2.1769865,-2.1011252,-2.266313,-2.4246113,-2.500349,-2.6305938,-2.704242,-2.7341034,-1.9470626,-2.5768082,-1.885608,-2.3004856,-2.4695988,-2.4765744,-2.4304647,-2.4282,-2.5207403,-2.5799112,-2.6984296,-2.6254616,-1.4262146,-2.4072113,-2.5882735,-2.2306023,-2.4847383,-2.5731835,-2.5712085,-2.4629998,-2.024611,-2.4717379,-2.5468497,-2.523227,-2.5615,-2.612557,-1.8540196,-2.4005227,-2.213788,-2.5458426,-2.6949573,-2.4199724,-2.43645,-2.0782862,-2.1208067,-2.533255,-1.8118806,-2.2862973,-2.3656075,-2.4031808,-2.39286,-2.511013,-2.6849675,-2.8947506,-3.0460896,-3.22122,-0.9792746,-2.3248358,-2.4313388,-2.5484428,-2.7198176,-2.7034013,-2.758478,-2.4901848,-2.8359494,-3.0381436,-3.1779368,-3.3265514,-3.497376,-3.6259012,-3.7263274,-2.7689528,-3.2694383,-3.7026448,-3.8906746,-4.008261,-4.087872,-1.8699859,-2.022987,-2.7594943,-2.921954,-3.1517,-3.416054,-0.6619273,-2.3696692,-2.7738128,-2.9828324,-3.3068206,-2.9827452,-1.2004911,-2.6279488,-3.0011387,-3.3390217,-3.603296,-3.777216,-3.947148,-4.0683813,-4.148775,-4.190762,-4.1683555,-2.5241075,-2.080682,-2.9128113,-3.279746,-3.373877,-2.7074168,-3.3136458,-3.74481,-4.0100307,-4.168309,-4.160412,-2.9793377,-3.6772442,-0.84145004,-2.5490139,-3.0743575,-3.517908,-3.061109,-3.0079668,-3.614714,-3.9527378,-4.070597,-4.220461,-4.035898,-2.6917508,-1.7939872,-2.7811203,-3.1051872,-3.3438404,-3.6573277,-3.9730768,-2.9854612,-3.4286637,-3.1669748,-3.0575142,-2.4855342,-2.8634076,-2.4610944,-2.798193,-3.2272928,-3.5500035,-3.8854342,-4.028571,-4.0588446,-4.078854,-4.1146874,-1.1600546,-2.4240046,-3.033396,-3.4480982,-2.682056,-1.9415392,-2.3531425,-2.6465077,-1.5696281,-2.7906253,-3.1037533,-3.199253,-3.311718,-3.5073352,-3.5634904,-0.75379276,-2.578548,-2.856985,-2.849297,-3.0259707,-2.9780567,-3.133307,-3.2454095,-3.4640896,-3.6510546,-3.7877994,-3.9179158,-1.0967093,-2.7997289,-3.0422688,-3.0699725,-3.1913154,-3.3099687,-3.0309901,-2.7140021,-3.0924225,-3.2807846,-3.4097738,-3.5685868,-3.6704688,-1.203184,-2.816725,-3.1027017,-3.1215587,-3.1932213,-3.2560418,-2.107196,-2.6490543,-3.0347779,-3.1301692,-3.222808,-3.3457768,-3.504169,-3.5407977,-2.0697484,-2.77488,-3.068383,-3.3927026,-2.722799,-2.4769912,-3.0539708,-3.1938477,-3.26225,-3.286744,-3.3918748,-3.4460807,-3.5444102,-3.65659,-3.7943947,-3.7067485,-3.42414,-3.6339555,-3.8893855,-3.8833401,-2.2045956,-3.3189871,-3.372364,-3.4449792,-3.5424595,-1.9342217,-3.1094718,-3.283266,-3.2865953,-3.5114512,-2.1742444,-2.7354493,-3.1315503,-3.26657,-3.2962475,-2.775951,-2.5502105,-3.059855,-3.4973311,-3.5385656,-3.446627,-3.225891,-2.976027,-3.4567406,-3.604508,-2.5730743,-2.6952868,-2.8775592,-3.0658479,-3.1046546,-3.2663255,-2.8730087,-3.3310375,-2.928687,-3.3040729,-3.5174682,-3.3414607,-3.146294,-3.5700622,-3.4433794,-2.160154,-3.185482,-2.7791877,-2.5747635,-1.4087538,-1.3787663,-1.5631679,-2.0658357,-2.7507591,-3.181555,-3.4467132,-3.009586,-2.490624,-2.377296,-1.5479321,-2.6168299,-2.742379,-3.144878,-3.3476667,-3.4974675,-3.4944959,-3.312095,-3.4980114,-3.3857381,-2.9995918,-2.9448252,-3.092909,-3.3241816,-3.459916,-3.5490084,-3.475215,-3.217869,-2.7765326,-3.0584364,-3.42424,-3.514814,-3.4897823,-3.4335876,-2.983448,-3.4686956,-3.5145862,-3.3783092,-3.1680286,-0.70738924,-2.210861,-2.6884632,-3.129385,-3.2492917,-3.2316942,-2.1978676,-2.8057523,-2.9465158,-3.0113516,-2.953021,-2.6757357,-2.9388864,-3.0460703,-3.1365564,-2.5378482,-2.739958,-2.910813,-3.210359,-3.134092,-2.9551713,-2.335424,-2.957598,-3.1127186,-3.0564916,-3.0890105,-2.6942735,-2.3826516,-2.8389058,-2.9653888,-3.1691418,-3.3203964,-3.3592193,-3.5566726,-3.635766,-3.7147703,-3.7010286,-3.7910857,-3.7243745,-3.5020707,-3.5739355,-0.85143584,-2.6674151,-1.6697222,-2.4807525,-2.795744
+-1.1261176,-1.5560087,-1.6141266,-1.7812313,-2.0407257,-2.1918337,-2.3010464,-2.3590927,-2.5600085,-2.2643414,-0.55277246,-2.038509,-1.879885,-2.0672092,-2.0655391,-1.8686129,-1.2448063,-1.7814106,-1.9540868,-1.8596123,-2.3910742,-2.3263798,-2.0101528,-1.9146968,-1.7947519,-1.6513798,-1.1436652,-2.0638902,-1.6493956,-2.102128,-1.9727916,-1.9465315,-1.9972035,-2.0468955,-1.9303595,-1.9004581,-1.9028269,-1.9590372,-1.4719676,-1.7708519,-1.862723,-1.9288715,-1.8672347,-1.965721,-1.8620664,-1.8247203,-2.2934527,-2.4430392,-1.9410833,-1.89757,-1.842578,-1.6708385,-1.5443417,-1.6418434,-1.8364347,-1.8335906,-1.6076792,-1.8540086,-2.0014958,-1.6635762,-1.4144145,-1.7019677,-1.8030276,-1.9383398,-1.9913872,-1.8800856,-1.8745385,-1.7254654,-1.6557512,-1.556822,-1.5675992,-1.6739031,-1.0070488,-1.5577015,-1.4261891,-1.4718817,-1.5099617,-1.5126377,-1.410282,-1.4419218,-1.7222399,-1.9503716,-2.1157117,-2.2245872,-2.3744786,-2.480569,-2.5735486,-2.6870627,-2.8090158,-2.9642437,-3.0884202,-3.2687864,-3.3347898,-3.3276765,-2.0243106,-2.3604965,-2.248573,-2.6451101,-2.773807,-1.5343395,-1.9222444,-2.094996,-2.5240827,-2.6350856,-2.8213713,-1.4627094,-1.9373927,-2.262086,-2.4634724,-2.6032372,-2.810291,-3.062028,-3.2334871,-3.3246021,-3.3461115,-2.4397821,-1.1297389,-1.7671136,-1.9995054,-2.4476385,-2.6870127,-2.8478756,-2.9843426,-3.095606,-3.1510677,-3.179359,-3.2000942,-3.206607,-3.2435627,-3.259283,-3.2758985,-3.293624,-3.2759995,-2.3446355,-2.38795,-2.7534473,-2.1082788,-2.5535984,-2.788912,-2.2640436,-0.29137614,-0.57892233,-1.2524484,-1.5484446,-1.7063658,-2.2173433,-2.4940224,-1.7160795,-1.778817,-2.1581695,-2.038947,-1.8370095,-1.9694241,-1.5283906,-1.7987769,-1.9915062,-2.339353,-2.4944162,-2.5345016,-2.576784,-2.6436303,-2.7480745,-1.5816456,-1.9426283,-2.3008132,-2.4515972,-2.514854,-1.8575026,-1.9887999,-2.3627188,-1.8664116,-2.024416,-2.3324776,-2.4879348,-2.6338806,-2.5754066,-2.6281543,-0.008583356,-0.45570987,-1.1721658,-1.6122044,-1.9419613,-2.0803885,-2.306648,-2.4698663,-2.5366676,-2.5507717,-2.5944636,-2.6113696,-0.75893253,-1.5137912,-1.8080239,-2.1891556,-2.3324313,-2.3988032,-2.376718,-2.3695955,-2.404385,-2.4595098,-2.494947,-2.561247,-1.6459477,-0.9652341,-1.6018373,-1.9355357,-2.1236157,-2.2102544,-2.260624,-2.301402,-2.3871896,-2.441311,-2.524372,-2.6135721,-2.6482224,-2.647789,-2.6587567,-0.9168456,-1.6268435,-1.7240907,-1.8228413,-0.852253,-1.1863606,-1.2973591,-1.6835505,-1.900168,-2.0387979,-2.1411743,-2.2645311,-2.441421,-2.445031,-2.4363399,-2.6199307,-2.5122747,-2.5501537,-2.4244208,-2.4538178,-2.4472075,-2.327253,-2.5491407,-2.6039395,-2.4243236,-1.8913919,-2.2437782,-2.5733554,-2.5556836,-2.5546007,-2.0253506,-2.27599,-2.437087,-2.3951154,-2.4297688,-2.4026988,-2.2623026,-2.2932682,-2.264233,-2.7082539,-2.6782672,-2.6393337,-2.5575628,-2.368907,-2.7629747,-2.3591182,-2.3796005,-2.3684893,-2.4486277,-2.6465101,-2.741886,-2.8893876,-2.4999871,-2.6858177,-2.9326985,-2.8164895,-2.9770079,-2.7481155,-2.536808,-3.0144641,-2.5314636,-2.689079,-2.6118836,-2.506817,-2.471706,-2.3905725,-2.292568,-2.2751844,-2.364647,-2.531751,-2.613542,-2.7013578,-2.6657658,-2.8624184,-1.536645,-2.3247561,-2.17939,-2.2543583,-2.3803864,-2.4617844,-2.5346718,-2.5559597,-2.5847995,-2.6994889,-2.5978568,-2.5870438,-2.5451736,-2.5855303,-2.6329556,-2.585748,-2.5949652,-2.6217961,-2.4521563,-2.4394138,-2.4655056,-2.5996351,-2.7728345,-2.9815931,-2.7860904,-2.601091,-2.7247179,-2.9871218,-2.9595685,-1.1307212,-2.4170618,-2.628645,-2.5974956,-2.6103053,-2.515522,-1.9772836,-2.419767,-2.6328962,-2.557085,-2.6508222,-2.4695315,-2.434259,-1.9168627,-2.0541017,-2.435112,-2.4881845,-2.4959366,-2.5779128,-2.281846,-2.1590564,-2.6632116,-2.5259075,-2.3930225,-2.5576077,-2.5925825,-2.5190818,-2.6118045,-2.512727,-2.525223,-2.484473,-2.5393078,-2.7080693,-2.8662384,-2.9627907,-3.0797927,-3.1368098,-3.1497324,-2.1003835,-2.4752688,-2.5391502,-2.1678271,-2.344099,-1.9997939,-2.442413,-2.4673948
+-0.8247375,-1.5530151,-1.5937747,-1.5429446,-1.7401049,-2.0334218,-2.4752119,-2.560046,-2.3634186,-2.5168219,-2.6969113,-1.8768669,-1.7619841,-1.97057,-2.1228132,-2.2028818,-0.4837201,-1.4888744,-3.0804548,-3.2562551,-3.77171,-3.6339805,-3.1217415,-2.3970556,-1.9785222,-1.7897416,-1.2766182,-2.249619,-1.7627224,-2.2471936,-2.2866256,-2.591992,-2.6718583,-2.1494455,-1.8063933,-1.7753117,-1.9364277,-1.6071008,-1.8528274,-2.2829366,-0.31810892,-1.9137255,-1.5643997,-1.7260933,-1.682592,-1.4014959,-1.5687748,-1.8059245,-1.5390223,-2.5693254,-2.494445,-1.8997136,-1.6800319,-1.6359698,-1.7541474,-0.7239211,-2.1411042,-2.3785892,-1.888884,-1.9481701,-1.918027,-1.6340176,-2.458187,-3.6017265,-3.31568,-2.6997504,-2.2140317,-1.7101835,-1.6411413,-1.7220086,-1.8737648,-2.007192,-1.9973792,-0.5975071,-2.1400857,-1.746802,-1.4712278,-1.4820491,-1.5703149,-1.7146814,-1.9250573,-2.1395962,-2.2268946,-2.4890163,-2.7677152,-2.8781629,-2.9984396,-3.1768723,-2.269598,-2.651411,-3.0180922,-3.282494,-3.3496563,-3.4178815,-0.11972439,-1.791983,-1.5417384,-1.8945571,-2.334455,-2.6547709,-2.2189782,-2.6629007,-3.0413864,-3.1391182,-3.3297522,-3.3543472,-3.4552453,-3.4929595,-3.4960535,-3.5157473,-3.568269,-3.6502304,-3.683302,-3.6866512,-3.6914692,-1.8815283,-2.6598136,-2.8094726,-2.153028,-1.9132946,-2.502317,-2.9674933,-3.295164,-3.4605727,-3.532846,-3.5814877,-3.6112885,-3.617642,-3.6097052,-3.557763,-3.5466187,-3.5250454,-3.5215678,-3.0448015,-1.2169374,-1.428564,-0.6223745,-1.6450995,-2.0234523,-2.9545543,-3.1583538,-3.4001157,-3.1812963,-3.0833101,-2.4388974,-2.06774,-1.9901346,-1.8824612,-2.1253834,-2.19109,-1.6533375,-1.9792012,-2.1339846,-2.2726398,-2.3553023,-2.4031699,-2.5369625,-2.6853876,-2.7202988,-2.8726854,-3.0282311,-3.1083107,-3.0056846,-3.1970642,-3.2358692,-3.1950102,-3.192372,-3.184897,-3.1894379,-3.2721815,-3.2620947,-3.3278713,-3.2834558,-3.3586686,-3.389436,-3.2821183,-3.132673,-0.045127053,-1.9829401,-2.0892923,-2.282529,-2.5212493,-2.6963148,-2.9784741,-3.1191955,-3.2521195,-3.2196634,-3.2307613,-3.2293851,-3.3070302,-3.4183517,-3.5159044,-3.6608605,-3.569427,-3.4952297,-3.5502443,-0.37571248,-1.9812869,-2.1158185,-2.3178988,-2.503814,-2.6863244,-1.3658029,-2.267634,-2.471988,-2.5859618,-2.7615,-2.8507233,-2.9375935,-3.0552216,-3.1282587,-3.1922212,-3.2583683,-3.3245595,-3.2265491,-3.1898832,0.0652767,-1.8220327,-1.0948386,-1.9701573,-1.8995738,-2.1720972,-2.3523307,-2.45255,-2.5982628,-2.7134368,-2.756669,-2.6613603,-2.9276028,-2.9645982,-2.9155142,-2.9791522,-2.9344792,-2.965276,-3.054605,-2.991778,-1.7440593,-2.471736,-2.4748278,-2.5783343,-2.4168534,-1.9087931,-2.5626407,-2.7613716,-2.7224054,-2.8681395,-0.717093,-2.3032556,-2.1503596,-2.3630848,-2.3921242,-2.605615,-2.3759828,-2.4511762,-2.4445457,-2.7383945,-2.744872,-2.8137026,-2.7444358,-2.5733614,-2.7925851,-2.602539,-2.3910394,-2.751845,-2.9964595,-3.0645947,-2.8537169,-2.1750512,-2.2345037,-2.419848,-2.6807358,-2.5755253,-2.9202695,-2.8970313,-2.9729042,-3.045868,-1.6028854,-2.4968662,-2.4737773,-2.33114,-2.3909411,-2.1950014,-2.317851,-2.563442,-2.5108178,-2.4941783,-2.5008123,-2.706558,-2.8408089,-2.6764297,-1.0475193,-2.44546,-1.7627484,-3.0108738,-3.2627425,-3.3129222,-3.4635746,-3.0900154,-2.6486187,-2.706846,-2.4698195,-2.3269978,-2.4200344,-2.4105525,-2.5192513,-2.626345,-2.6336198,-2.7603962,-2.620551,-2.910046,-2.9946775,-3.0522199,-3.2338943,-3.4460335,-3.299059,-3.2777398,-3.3106337,-3.420047,-3.741646,-0.2791002,-2.424819,-2.2329907,-2.1348796,-2.1674619,-2.2379537,-0.9105884,-2.5245879,-2.3384247,-2.1243627,-2.222013,-2.1608424,-2.2318175,-2.368545,-2.3908563,-2.7945337,-2.820908,-2.986784,-2.4520352,-1.4956859,-1.9301895,-2.1413126,-2.4516912,-2.3718526,-2.664381,-2.6499934,-0.98867136,-2.1477165,-1.9858438,-2.0511065,-2.150313,-2.3703134,-2.7063015,-2.8695798,-3.0444694,-3.1705446,-3.190551,-3.2447271,-1.0362071,-2.1077452,-2.2119918,-1.360643,-2.0775352,-0.71983176,-2.0595477,-1.9738635
+-1.2021769,-1.3810502,-2.0451818,-2.5305653,-2.8564615,-3.0385046,-3.1559756,-3.2663722,-3.2634237,-3.266947,-2.9146605,-3.2611387,-0.9216792,-2.277791,-2.3601437,-2.521468,-2.2035353,-1.1965778,-1.8827789,-1.4298773,-1.5214473,-1.6904391,-1.9057462,-2.087674,-2.1757002,-2.3947487,-1.0395333,-2.0866156,-2.2236116,-1.1740938,-2.0622945,-1.7020394,-1.9680878,-2.2591982,-2.521987,-2.7303948,-2.9864206,-2.7868671,-3.0258083,-3.2845678,-1.944364,-2.8058615,-2.936943,-0.51008344,-2.1265495,-1.663772,-2.305515,-1.732963,-1.150767,-2.0295405,-1.1792326,-1.6719612,-1.8067843,-1.9316928,-2.1562479,-0.96859366,-1.4253455,-2.147718,-1.978361,-2.0009384,-2.082121,-1.4268042,-1.5431851,-1.769943,-1.5282062,-1.6987271,-1.596498,-1.676622,-1.9441373,-2.1650245,-2.2949953,-2.5127084,-2.1667197,-2.493047,-2.7116046,-2.9653625,-3.158928,-3.2648785,-3.3052144,-3.0194097,-2.550541,-2.8650525,-3.112631,-3.28928,-3.3826494,-2.8969145,-3.2167335,-3.4258437,-0.14075725,-2.2575507,-2.368957,-2.6497467,-2.8353858,-3.0052283,-3.221182,-3.4429212,-3.4677057,-3.541297,-3.56453,-3.6174474,-3.6514015,-3.7069435,-3.777776,-3.7202969,-3.7757323,-3.8272467,-3.8128095,-3.8202224,-3.836472,-3.8024242,-3.8011813,-3.8095448,-3.8164523,-3.8056526,-3.7999253,-2.927077,-3.1543298,-1.9700297,-2.838499,-3.0343616,-3.3696856,-3.577486,-3.7437716,-3.876447,-3.9147758,-3.936477,-3.947058,-3.951916,-3.9451776,-3.9396122,-3.8691604,-3.892439,-3.9084709,-3.877657,-0.99580234,-0.6031794,-1.0436674,-1.3873887,-1.4517318,-2.0332322,-1.9465083,-1.823644,-1.3883251,-1.860313,-2.1341324,-1.9993981,-1.9749023,-2.1418784,-2.2415829,-1.436285,-1.7152683,-2.038931,-1.333124,-2.1804717,-2.4769645,-2.771911,-2.7329123,-1.4398404,-2.3968363,-2.500391,-2.6028447,-2.8073308,-3.002638,-2.942295,-3.2296996,-3.3552363,-3.4941194,-3.559231,-3.586316,-3.5479808,-3.6242478,-3.6795359,-3.6574235,-3.7345917,-3.787571,-3.7505765,-2.779927,-1.1049279,-1.9470468,-2.485891,-2.594971,-2.8520708,-2.9362905,-3.2577214,-3.3623133,-3.4820914,-3.484396,-3.5317917,-3.4358459,-3.6127596,-3.5982826,-3.4987507,-3.6729817,-3.7691758,-3.8070712,-1.1255382,-1.2416047,-2.3236592,-2.4877954,-2.621489,-2.7939591,-2.9148629,-3.0173774,-2.9418461,-3.0843282,-3.1933017,-3.3252466,-3.3464024,-3.4154525,-3.5055995,-3.551207,-3.5960724,-3.6642067,-3.6955116,-3.2963939,-3.496133,-2.88471,-2.777021,-2.0739732,-1.6771353,-1.607001,-2.1548984,-2.2883615,-2.601821,-2.9427967,-3.0749607,-3.160438,-3.143488,-3.31457,-3.3716898,-3.3216074,-3.2441819,-3.2826526,-3.266455,-3.4414082,-3.4471192,-1.2707919,-2.851318,-2.4075155,-2.9204164,-2.9504013,-3.0497642,-3.0021183,-3.39622,-3.4108357,-3.396165,-1.0241553,-2.0698533,-1.3407563,-2.144972,-2.2055154,-2.311256,-2.4041557,-2.4302635,-2.6578536,-2.8752093,-2.8589668,-2.7864828,-2.734219,-2.6572628,-2.9239783,-2.8750033,-2.4979424,-2.8230846,-2.9387867,-3.3007321,-2.6321142,-2.9321964,-2.9017153,-2.8948748,-3.0513928,-3.0667548,-3.1910892,-3.153605,-3.0879755,-3.2719412,-1.1137743,-2.7862568,-2.9851885,-2.9098017,-2.8686392,-2.6921213,-2.821464,-2.9227014,-3.1532862,-3.2043452,-3.189625,-3.2008111,-3.1779494,-2.626883,-1.6190487,-1.8942388,-1.4254242,-2.1624095,-2.3718204,-2.593647,-2.6542633,-2.8328586,-2.8410976,-2.9032807,-2.8459935,-2.8312874,-3.0803156,-3.2504625,-3.3549821,-3.4453926,-3.5215707,-3.530346,-3.2968006,-3.327475,-2.847553,-3.264173,-3.4475436,-3.5574594,-3.4984145,-3.5253735,-3.6014652,-3.6729705,-3.0538096,-1.3101741,-2.599014,-2.820877,-2.873888,-3.0751305,-3.1591702,-1.0664684,-2.2927847,-2.411746,-2.5620809,-2.6896453,-2.6865675,-2.6848516,-2.7452292,-2.8657563,-2.913867,-2.863669,-3.0574145,-1.9424199,-1.8565036,-2.3487835,-2.5795212,-2.176283,-2.6332192,-2.6847708,-2.2876706,-2.4807873,-2.6945994,-2.783895,-2.8899174,-2.8675513,-3.1151848,-3.2678828,-3.3519554,-3.4523768,-3.5257454,-3.5606728,-3.5791852,-1.5793854,-2.655155,-3.0112119,-2.2739735,-2.9733596,-0.9140859,-2.3872514,-2.7626834
+-0.9615299,-1.4082206,-2.1871777,-2.6440825,-2.8695087,-2.955984,-3.077693,-3.3217468,-3.4478369,-3.3596854,-3.2167978,-1.819945,-0.85390157,-1.6780263,-1.685507,-1.8176099,-1.9752184,-0.94081694,-1.6079272,-1.8913106,-2.0666795,-2.039126,-1.8276802,-1.2871453,-1.6706487,-1.5719918,-1.7391132,-1.7836517,-1.7119079,-1.8720595,-2.0115964,-1.7610217,-1.9378341,-2.1815858,-2.4660742,-2.686102,-2.8516011,-2.847067,-2.0828836,-2.6693807,-2.3577402,-2.8717136,-3.0303195,-2.8393831,-0.28699395,-0.8520013,-1.4618918,-0.8120584,-1.1457235,-1.8600825,-1.5840148,-1.6876099,-1.4176801,-1.4690803,-1.6965759,-1.9569893,-1.011208,-1.3346821,-1.3474965,-1.4811684,-1.6096983,-1.1060588,-1.7034421,-2.0245352,-2.3762896,-2.1689901,-1.6646916,-1.4870524,-1.629019,-1.3086814,-1.3371407,-1.3180317,-0.7298527,-1.2263074,-1.3066422,-1.5940043,-2.0365465,-2.33808,-2.499175,-0.0007768236,-1.4190365,-1.5026997,-1.7019442,-2.0898914,-2.3249936,-1.8539628,-2.291391,-2.3412719,-0.44198266,-1.2516042,-1.2768371,-1.5320041,-1.7651155,-2.1494513,-2.4898415,-2.7112813,-2.7986174,-2.8780365,-2.9880269,-3.0898564,-3.1920414,-3.2947009,-3.338831,-3.3643851,-3.4335237,-3.4893332,-3.54723,-3.607309,-2.1854105,-2.4281037,-1.8177587,-2.307748,-2.720605,-3.1254811,-3.389846,-1.9089714,-0.7895318,-1.6958685,-1.7194575,-1.985468,-2.3189626,-2.571658,-2.8370059,-3.0578272,-3.2090864,-3.3227668,-2.6898832,-3.10536,-3.405756,-3.6018116,-3.688436,-3.6320655,-3.659572,-3.6775587,-0.38363817,-0.40286827,-0.6718444,-1.5041789,-1.7789706,-2.221726,-2.198291,-1.6903746,-1.7701524,-2.5312462,-1.6693145,-1.5678378,-1.7200629,-2.022609,-2.1765203,-2.0553637,-2.0974996,-1.7481525,-1.0449432,-1.6252126,-1.8463068,-0.88092905,-1.1445707,-1.549827,-1.5112185,-1.4594644,-1.5220045,-1.8037677,-1.9959,-2.249014,-2.4184837,-2.609915,-1.4988086,-2.0832076,-2.200841,-2.3085291,-2.4103284,-2.58416,-2.7818851,-2.7813978,-2.3869236,-1.8886969,-2.201646,-2.141378,-2.3752973,-2.551986,-2.6505613,-2.8310156,-2.9019444,-3.0677419,-3.1903052,-3.2856083,-3.2468162,-3.2993104,-1.5579075,-2.4558716,-2.626328,-2.7176716,-2.8643441,-3.0479786,-3.1500049,-2.568423,-2.862463,-2.903781,-3.0051298,-3.0662782,-3.1485937,-3.297095,-3.4665108,-3.4483309,-3.4024563,-3.4306848,-3.5295606,-3.4963555,-3.5004227,-3.587813,-3.609236,-3.5799499,-3.584855,-3.5426018,-1.8024318,-2.439908,-2.6339724,-0.88107604,-1.8542203,-0.8610224,-1.200243,-1.4096607,-1.6447421,-1.6266906,-1.865524,-2.0095446,-2.1549644,-2.2683482,-2.4205236,-2.5779665,-2.583599,-1.0850406,-2.1709986,-2.0367827,-2.151742,-2.1597133,-2.1013372,-2.2880678,-2.2941754,-2.414783,-2.413552,-2.5308447,-2.7442436,-2.927157,-2.9422894,-2.966738,-0.90128833,-1.0502106,-1.8279933,-2.1639752,-2.2208152,-2.3431926,-2.424182,-2.3378315,-2.307301,-2.368955,-2.3889818,-2.406227,-2.3824549,-2.3656795,-2.4532156,-2.5400777,-2.306492,-2.6186042,-2.904683,-2.9733498,-2.799475,-2.7201848,-2.6812086,-2.6882567,-2.7743556,-2.7164607,-2.8130426,-3.0617354,-2.1723819,-2.5219502,-2.4403498,-2.6291604,-2.7445495,-2.7342112,-2.6177075,-2.274352,-2.330461,-2.6457129,-2.7555814,-2.7805605,-2.7762709,-2.810285,-2.8239255,-2.6445093,-1.7426387,-1.7880956,-1.3578104,-2.1098285,-2.3663673,-3.006111,-2.828833,-2.6359816,-2.4701953,-2.3348455,-2.5743833,-2.5174582,-2.7071385,-2.753285,-2.8402545,-2.8792326,-2.874227,-2.9082816,-2.8309731,-2.7987387,-2.6359768,-2.723163,-2.8756976,-2.9566927,-2.9877717,-2.9379187,-2.943889,-3.0044851,-3.0475326,-0.7999443,-2.0280871,-2.0509415,-1.8136317,-2.0410023,-1.9872922,-1.3105947,-2.2172503,-2.155562,-2.079062,-2.0916612,-2.3208306,-2.2681189,-2.2919884,-2.4399047,-2.6207786,-2.8276696,-2.8444448,-2.4291778,-0.94083804,-1.815153,-1.4978594,-2.0555975,-2.0610232,-2.1236162,-1.8235109,-2.8548954,-2.359414,-2.3449645,-2.1304677,-2.091845,-2.2110102,-2.330649,-2.4197035,-2.542896,-2.6575139,-2.7442367,-2.813508,-2.0997815,-2.0419197,-2.3822532,-2.51745,-2.6769185,-0.39382413,-1.6156063,-1.6942545
+-1.1845304,-1.4823521,-1.7076418,-1.881131,-2.1919155,-2.6742315,-2.5665796,-2.1848109,-2.265749,-2.2114234,-2.2242732,-2.0298326,-1.9228584,-1.9414946,-2.2807941,-2.354962,-2.3992045,-2.501244,-2.1604462,-2.3752284,-2.7010646,-2.3953605,-2.5583644,-1.0667071,-0.69263256,-1.7815093,-1.6935922,-2.2610788,-2.278389,-2.3504238,-2.3260288,-2.3577993,-2.5913963,-2.5243201,-2.5937688,-2.8744931,-2.8440197,-2.7575343,-2.771552,-2.564261,-2.3991039,-2.8075223,-2.9586194,-2.513399,-2.7775712,-2.7445612,-2.6232834,-2.568243,-2.6442611,-2.7124677,-2.8172264,-2.8842573,-2.7027135,-2.4816403,-2.5840635,-2.7760823,-2.881575,-3.010452,-2.770987,-3.0531423,-1.7747916,-2.8337817,-2.6887665,-2.6010919,-2.8542683,-3.0541718,-3.0643013,-3.1926627,-3.0656326,-3.0180795,-3.1180613,-3.3938618,-2.981789,-2.971523,-2.7492514,-2.919051,-3.1155572,-1.4401892,-2.5935812,-2.8722544,-3.132123,-3.359355,-3.3168764,-3.2627282,-3.3918524,-3.2106864,-3.5491164,-3.5252504,-3.346588,-3.4815147,-3.1906383,-3.2512927,-3.372244,-3.3415408,-3.4225721,-3.1959174,-2.9153109,-3.109295,-2.6836414,-3.1707807,-1.3206102,-0.8236523,-1.5320035,-2.3153229,-2.0037642,-2.5065644,-2.7985687,-1.39138,-2.3568614,-2.6715624,-2.7302928,-1.5935045,-2.7509713,-2.1348805,-1.7782261,-2.6414533,-2.7863636,-1.8568865,-2.8673918,-2.9378848,-3.130803,-3.184676,-3.2326007,-3.325385,-3.475387,-2.430869,-3.2423081,-3.3672209,-3.4194663,-3.4458518,-3.5048647,-0.8859826,-1.5763307,-2.4176908,-3.014781,-3.2159672,-3.193828,-3.2118149,-3.475668,-2.9682357,-3.3252587,-3.1669974,-3.4323657,-3.4352958,-3.3799002,-3.595578,-3.655331,-3.6213584,-3.466741,-3.4312668,-1.0803361,-2.92203,-3.4145463,-3.4331286,-3.43183,-3.4269478,-3.4000547,-1.9803756,-2.7665722,-3.3247395,-1.5826066,-2.9367967,-3.2595358,-3.3924258,-3.439516,-3.5784621,-3.5050173,-3.3338137,-3.448085,-3.527311,-3.6047795,-3.6855755,-3.7063904,-3.6363711,-3.648032,-3.4546556,-3.5556211,-3.1192122,-3.4265246,-3.8114734,-3.7407804,-3.6715178,-3.6443958,-3.6184,-3.6318207,-3.6259227,-3.2738862,-1.9362162,-3.37584,-3.2974696,-3.6713762,-3.7035382,-3.6622248,-3.6524467,-3.7792974,-3.6793988,-3.7758336,-3.7505865,-3.753576,-3.675978,-3.7269151,-3.2561693,-3.6451488,-3.7832212,-3.8118596,-3.817718,-3.8008938,-3.8475983,-2.7511783,-3.5859666,-3.6215591,-3.6497226,-3.665423,-3.711175,-3.7342975,-3.7992573,-3.7875662,-3.7840912,-3.7590406,-3.7060971,-3.6864011,-3.7619376,-3.8303506,-3.8760293,-3.799399,-3.7918687,-4.002504,-3.967473,-3.9142115,-3.9919882,-3.9559653,-1.9505334,-2.850589,-2.6483765,-2.6020663,-2.607584,-2.956663,-2.9885783,-2.7105918,-2.5392823,-2.46864,-1.730037,-2.2669954,-2.2763486,-2.5910354,-2.1360333,-2.195396,-2.028638,-1.9712719,-1.6792672,-1.6402372,-1.6059918,-1.9124155,-2.0516524,-1.4427533,-1.8981804,-2.0910466,-2.1172807,-2.1852643,-2.0153878,-1.882039,-2.1398883,-2.0608819,-1.8146068,-1.8216608,-1.8109728,-1.8026077,-1.7859048,-0.93068874,-0.9697756,-1.4200406,-1.6147178,-1.5748756,-1.8125489,-1.8039247,-1.8333832,-1.6113572,-1.2733247,-1.8709471,-2.0213869,-2.0421264,-2.0558543,-2.0238032,-1.9596435,-1.2734016,-1.8110704,-1.9873887,-2.0606914,-2.0059922,-1.9665612,-1.8527215,-1.7725627,-1.6810514,-1.491088,-1.5741016,-1.6328465,-1.6815609,-1.5411006,-1.6193762,-1.5501095,-1.5898612,-1.7346627,-1.6530446,-1.7036949,-1.641012,-1.555623,-1.7452416,-1.9006777,-1.926525,-1.7907771,-1.7318887,-1.6595957,-1.6221875,-1.877652,-1.9008964,-1.6481344,-1.4344547,-1.3598762,-1.539089,-1.3418446,-1.6425455,-1.530252,-1.415927,-1.4435711,-1.556861,-1.4544911,-1.5081422,-1.5679315,-1.299595,-1.4780041,-1.3666011,-1.4227027,-1.5174907,-1.483314,-1.5371128,-1.6728202,-1.6830966,-1.2869428,-1.3624984,-1.6951804,-1.5975143,-1.5401094,-1.8433709,-2.0430071,-2.0270293,-1.8138072,-1.7274762,-1.6817964,-1.5411915,-1.2115353,-1.5111921,-1.3145319,-1.4585229,-1.6175421,-1.2288204,-1.8222207,-1.901846,-1.5810801,-1.5014426,-1.8566014,-2.4185066,-2.2267442,-2.195021,-2.0403738,-2.1825025
+-0.6659931,-0.9166344,-1.2788798,-1.497665,-1.6661776,-1.8447219,-1.4656037,-1.7008818,-1.9953121,-1.9321979,-1.9051307,-2.0560524,-2.089254,-2.03416,-2.031448,-2.0868378,-2.229372,-1.6474445,-1.7056218,-2.262315,-0.8737659,-2.019135,-2.1164384,-1.9485663,-0.17568766,-0.9245947,-0.36005196,-0.13940915,-0.451077,-0.9858325,-1.6015118,-2.1854467,-2.4763722,-2.7038321,-2.7344918,-2.6794798,-2.8436408,-2.9462733,-1.048722,-1.1346825,-0.49267545,-0.75653744,-0.76550716,-1.6721821,-2.2777567,-2.4216216,-2.504881,-2.629456,-2.6315837,-2.565929,-2.631112,-2.7713213,-0.77446836,-0.5317306,-0.65628,-1.1345683,-1.5040141,0.1279011,-0.32954267,-1.308983,0.39215156,-1.0613815,-1.6864724,-0.9697582,-0.25545254,-1.3366531,-2.0308783,-2.2774792,-1.8099121,-0.89128333,-1.8650708,-2.1835501,-2.2287087,-0.23566598,0.39412987,-0.37291846,-1.1653267,0.6460192,0.16063762,-0.5412457,-0.03192014,-0.9535218,-1.2315332,-1.7458683,-2.0435293,-1.3352112,-1.9070346,-2.2955496,-2.2943444,-2.4244552,-1.0311389,-1.9686364,-2.261722,-2.387239,-2.4962327,0.8139449,0.4958781,0.0741597,-0.14441356,-0.90455765,0.58662546,-0.21563181,-0.6903345,-1.2566386,-1.7238694,-1.8831395,-2.182482,0.5436385,-0.57253534,-0.9932942,-1.4151763,-1.8036157,-2.2148688,0.28558585,-0.5235969,-1.2127851,-1.8493997,-2.1496487,-2.355922,-2.3792572,-2.5033097,-2.4441864,-2.3885555,-2.5523796,-2.741521,-0.069944724,-1.4163356,-2.0946822,-2.3593702,-2.5233436,-2.5702176,-1.3133371,0.168333,0.065339506,-0.53370196,-1.1457411,-1.5683881,-1.3610283,-1.9440668,-1.4221398,-0.27258137,-0.31385422,-1.0052671,-1.6194738,-1.8382013,-0.90160245,-1.6416425,-2.189527,-0.4662195,-0.46022466,-1.1603082,-0.7300013,-1.5420092,-2.1094813,-2.3830864,-2.5310102,-2.2738752,-0.084708646,0.0011328273,-0.46276525,-1.1112831,-0.9551343,-1.5335472,-2.2413552,-2.5298448,-2.6823936,-2.8493333,-0.103291616,-1.164085,-1.7154573,-2.262347,-2.5300193,-2.7527618,-2.6058073,-2.114396,-1.409856,-0.9038659,-0.5326124,-1.3142294,-2.2936888,-2.4304252,-2.6535482,-2.7464728,-2.7642274,-2.9174962,-2.872786,-2.421066,-0.6055818,-1.4934568,-0.7806596,-1.4443878,-2.2025278,-2.5118098,-2.6116014,-2.482349,-2.7402656,-2.7876606,-2.899167,-2.9941092,-2.814404,-3.1912692,-3.3995514,-3.378097,-3.2969093,-3.5088258,-3.518263,-3.4054427,-2.471935,-1.3633292,-2.2883418,-2.631714,-2.3309028,-2.588541,-2.7301672,-3.0188177,-3.1147647,-3.3049843,-3.2984767,-3.3346255,-3.2777023,-3.4028008,-3.5975666,-3.5290134,-3.7146266,-3.4852338,-3.2928953,-3.6211493,-3.6028748,-3.4948492,-3.359166,-3.3311322,-1.590743,-1.9292324,-1.9940273,-2.0605726,-1.5793332,-1.5940291,-1.4976941,-1.5608286,-1.516575,-1.5657762,-1.7937013,-1.874593,-1.7440867,-1.6098484,-1.6289066,-1.8573545,-1.8171744,-1.7551203,-1.9726709,-2.1882665,-2.1957474,-2.1941688,-2.1287732,-1.4725095,-1.7464083,-1.744599,-1.8420311,-1.7241219,-1.6454854,-1.5679477,-1.4594728,-1.6693773,-1.7478195,-1.6587884,-1.6592957,-1.5355645,-1.5360352,-0.6219709,-0.9523835,-1.1310607,-1.3326744,-1.3046976,-1.3664984,-1.3696085,-1.3919985,-1.2340213,-1.2675725,-1.2796592,-1.3585254,-1.387988,-1.3442032,-1.309513,-1.3627707,-1.3484973,-1.2171183,-1.3197275,-1.3060066,-1.38111,-1.4390174,-1.4976887,-1.4986695,-1.4450204,-1.3463632,-1.1495157,-1.0629025,-0.9321994,-0.98062843,-0.96079105,-1.1280687,-0.94665545,-1.1341429,-1.1965727,-1.2784961,-1.3021919,-0.9567534,-1.1933315,-1.3482456,-1.4202138,-1.5432934,-1.5269359,-1.5140978,-1.4224976,-1.40175,-1.473914,-1.4765402,-1.0019113,-1.1542282,-1.2319727,-1.1519943,-1.3886567,-1.2017136,-1.2714915,-1.4568478,-1.5250323,-1.2007812,-1.6707984,-2.0606477,-2.0370471,-1.9454812,-2.2407374,-2.3601384,-2.3222132,-2.0827293,-2.1251512,-2.3586855,-2.6706533,-2.38896,-1.9282421,-1.72493,-1.8152624,-1.8550282,-2.0971897,-2.3580942,-2.5463161,-2.315236,-2.2692316,-2.3860335,-2.4262853,-2.2615707,-1.7881199,-1.8423826,-1.7375683,-1.8835768,-1.849479,-2.3977156,-2.0572934,-1.8071429,-1.7742825,-1.6969769,-1.9304686,-1.9073721,-1.5764939,-1.6817999,-1.867009
+-0.34840325,-0.97170395,-1.5805093,-1.9843472,-2.40586,-2.3558893,-2.3461144,-2.240398,-2.7261343,-2.5605612,-2.6229236,-2.731501,-2.5717573,-2.6350112,-2.6545985,-2.712553,-2.7025228,-1.6619122,-1.964511,-1.3864827,-1.8151686,-2.3138213,-2.7264593,-2.0877395,-1.0322229,-1.9369811,-0.6161398,-1.0495034,-1.1963742,-0.49731353,-1.0877403,-1.5897349,-2.2614665,-2.5812452,-2.8296404,-2.914235,-1.686234,-2.7265038,-0.42778006,-1.3050706,-1.0767931,-1.7040653,-1.57625,-2.0645719,-2.4522243,-2.7357278,-2.60396,-2.7476199,-2.8199809,-2.7160528,-2.9468439,-3.0624168,-1.3933767,-1.1267976,-1.8885832,-1.0151572,-1.747639,-0.67408055,-0.9830033,-1.2276996,-0.79660004,-1.636896,-1.9529953,-1.4763421,-1.7866029,-2.0415525,-2.2713032,-2.353476,-2.5278666,-2.572095,-2.3235288,0.0045713633,-1.8836658,-2.0877762,-0.30783346,-1.4554437,-1.8392156,-2.0071545,-0.7828621,-2.0554316,-2.2075176,-2.6313233,-0.21665394,-1.6834024,-2.1194456,-2.4659576,-2.6645327,-2.7468395,-2.7176287,-1.5517701,-2.3027172,-2.5984173,-2.6620507,-2.7330213,-2.5917284,-2.9071212,-2.7981057,-0.06498532,-1.9212502,-2.282257,-0.17003572,-1.8989598,-0.92879695,-1.4573888,-2.0805323,-2.2904348,-2.5796378,-0.24409899,-1.839434,-0.6261119,-1.480217,-1.8010422,-1.7530905,-1.3949555,-1.8911103,-2.323288,-2.673126,-2.7860188,-2.6879017,-2.6193194,-2.8332624,-2.7638187,-1.9202803,-2.4401352,-2.727479,-2.8892214,-3.1236205,-3.3347013,-3.3428464,-3.2622097,-3.1970968,-3.1741285,-0.25267503,-1.3151773,-2.2847652,-2.73111,-2.956132,-2.935821,-3.026916,-3.1859345,-3.1485593,-2.1109436,-3.1148782,-3.286273,-0.58656615,-1.7017664,-2.6827524,-3.1527205,-2.2096925,-3.0022888,-3.11654,-2.9320047,-3.3846457,-3.5742497,-3.4351802,-3.5783322,-3.5428576,-0.8613799,-1.8080078,-1.4497303,-2.3842678,-1.175021,-2.0668766,-2.7125113,-2.9797006,-2.8266225,-2.8222938,-0.61279774,-1.0007408,-2.0975423,-2.6776896,-2.8287387,-2.8940988,-2.8739552,-2.6758654,-1.122882,-2.1225762,-1.6016133,-2.0705094,-1.109115,-2.065397,-2.4645963,-2.664762,-2.705712,-2.9593995,-3.125917,-2.033567,-0.78692526,-1.9238173,-1.2888415,-2.206218,-2.561911,-2.9821298,-3.111144,-2.880321,-3.0809393,-3.3225017,-3.3991563,-3.200945,-3.217681,-3.3575451,-3.6411293,-3.55198,-3.7744665,-3.8223727,-3.7909057,-3.622694,-3.5471015,-1.3717129,-2.798481,-3.2669241,-3.117082,-3.1537762,-3.4216504,-3.4090323,-3.4606292,-3.7043724,-3.8531811,-3.903608,-3.9007018,-3.9276063,-3.8465168,-3.9100938,-4.0278654,-3.774161,-3.776026,-3.893845,-3.924298,-3.886631,-3.838018,-3.6898394,-2.3457522,-2.9616604,-3.0665846,-3.0287752,-1.7452494,-1.716663,-1.8613986,-2.1127863,-2.3025823,-2.2288523,-1.8780643,-2.355867,-2.296791,-2.4113684,-2.4019067,-2.5263755,-2.5731003,-2.7033281,-2.6270742,-2.7982774,-2.7830296,-2.7233398,-2.4961236,-2.1433842,-2.2669795,-2.2436228,-2.1998801,-2.1455762,-2.0549874,-2.0895717,-1.8860085,-1.9214895,-1.8761722,-1.8995754,-1.930158,-1.8349613,-1.8293046,-0.96655184,-1.2527629,-1.5128151,-1.6062887,-1.6954807,-1.7621617,-1.7358439,-1.7854086,-1.6291136,-1.7836808,-1.8691194,-1.8998066,-1.9128152,-1.8940542,-1.8350897,-1.863371,-1.8131663,-1.8881111,-1.8408521,-1.8737504,-1.8262047,-1.8341674,-1.6442323,-1.4238341,-1.488061,-1.5352179,-1.4314476,-1.5183476,-1.524366,-1.603413,-1.5904673,-1.2290263,-1.3104786,-1.5496454,-1.6340936,-1.6720418,-1.5931863,-1.4582118,-1.6085802,-1.7013155,-1.7453028,-1.6458507,-1.7738923,-1.7413138,-1.5784377,-1.8416783,-1.7329229,-1.5887028,-1.5701239,-1.6781595,-1.677086,-1.6894672,-1.79119,-1.7026745,-2.0367157,-2.2465992,-2.2510962,-2.0192502,-2.4651284,-2.6864545,-2.4705377,-1.270009,-1.6067027,-1.8159603,-2.0124118,-1.8322883,-1.6559836,-1.942512,-1.988074,-1.9027914,-1.8491509,-2.1755056,-1.9937273,-2.240501,-2.2442305,-2.6345396,-2.7478085,-1.9083302,-1.9215616,-1.984043,-2.0489542,-2.0563536,-1.8075324,-1.9689268,-1.962838,-2.2655804,-2.1250381,-2.2900777,-2.2546344,-1.4456547,-2.167927,-2.2171988,-2.4496028,-2.5517132,-1.5638626,-2.0824564,-1.9131321
+-1.0296061,-1.3562555,-1.8688651,-2.152236,-2.1122031,-2.2718027,-2.5386794,-2.6342454,-2.7421696,-2.6368742,-2.85483,-2.8993027,-2.8328574,-2.8830576,-2.8979635,-2.8084874,-2.824194,-1.0740473,-1.9965304,-0.87534285,-1.5073335,-1.8575362,-2.2316508,-2.36103,-1.7358125,-2.1300058,-0.9276854,-1.5026175,-1.7968504,-0.52263767,-0.9256045,-1.193097,-1.8700761,-2.1801066,-2.4668925,-2.5318074,-2.2235334,-2.422217,-0.6531781,-0.80888474,-0.9476352,-1.1204872,-1.6408504,-2.1503487,-2.3150072,-2.1994038,-2.3406134,-2.386239,-2.5542254,-2.4893346,-2.6227555,-2.7384212,-0.9670175,-1.0765399,-1.3152592,-0.7572858,-0.70860386,-0.7268179,-0.91849405,-1.4093596,-0.67818266,-1.2844197,-1.8116802,-2.266233,-1.6802713,-2.0442533,-2.2806892,-2.3820162,-2.4392223,-2.4510553,-2.448658,-2.5124912,-2.625806,-0.76012886,-0.9479933,-1.7315872,-2.0827749,-2.1764789,-2.3032844,-2.4570584,-1.4999335,-1.8718548,-2.2455926,-2.4149652,-2.542194,-2.2923307,-2.4098358,-2.6127834,-2.6255932,-1.6910788,-1.1861413,-1.918158,-0.73684293,-1.4529306,-1.6875968,-1.947921,-1.6047832,-0.55995226,-1.0988759,-1.6415588,-1.9723066,-2.1891725,-0.009258125,-0.97064346,-1.3761201,-1.9062403,-2.2163363,-1.5347911,-0.50534487,-0.010533813,-0.45345753,-0.9361984,-1.4303539,-1.8601583,-2.1325593,-2.3898604,-2.4611228,-1.5225918,-1.7699174,-2.0778694,-2.2828965,-2.2485633,0.39625624,-0.23375309,-0.4963849,-0.85370237,-1.3163275,-2.0082493,-2.09627,-2.1069279,-2.212863,-2.1270654,-1.4012328,-0.28543922,-1.0987327,-1.5842649,-1.9577315,-2.07829,-2.2060766,-2.378697,-1.0145664,-0.8111963,-1.829342,-2.360057,-2.448975,-1.431458,-1.9322993,-1.7696608,-1.8157331,-2.00348,-1.4352566,-1.4622701,-1.8216273,-2.2412596,-2.3893518,-2.5906215,-1.6199399,-1.9406244,-2.0343769,-1.1275913,-1.5623109,-0.03558341,-0.91326386,-1.6274031,-1.928806,-0.61457247,-1.0902758,-1.461181,0.46155056,-0.7126968,-1.3188342,-1.5617378,-1.7436062,-1.8595487,-1.9444395,-2.0529678,-0.5859682,-0.683044,-1.7801597,-2.311279,-2.5821137,-2.670144,-2.4422622,-2.3330436,-2.4542303,-2.6440516,-0.8050905,-0.58233577,-1.12858,-1.3658639,-1.9982127,-2.3613021,-2.4551115,-2.565651,-2.5335622,-2.7809381,-2.8100405,-2.5924187,-2.3803837,-2.4232736,-2.7536647,-2.9860287,-2.898131,-3.145916,-3.2270918,-3.2859135,-3.2128358,-2.9837413,-2.9759617,-3.1183507,-3.034932,-2.9655147,-3.0973094,-3.0876546,-3.1349225,-2.8478246,-3.3113036,-3.4468791,-3.4244728,-3.3728566,-3.3980527,-3.4414585,-3.5096664,-3.510191,-3.4988618,-3.2414823,-3.2707691,-3.4807982,-3.4730814,-3.3104298,-3.2633858,-3.19282,-3.0461705,-3.088668,-2.9679294,-1.7859479,-2.2683,-2.0339282,-2.3005605,-2.3900175,-2.00492,-2.4822755,-2.5600643,-2.647365,-2.5502481,-2.6799145,-2.197032,-1.8702426,-2.0395892,-2.2755656,-2.4901447,-2.7007017,-2.7761996,-2.6319838,-2.5095224,-2.6189172,-2.7601666,-2.7671642,-2.8233426,-2.7653031,-2.6483963,-2.604012,-2.6457481,-2.5365388,-2.4139159,-2.4146872,-1.5413703,-1.7675912,-1.2677463,-1.3997867,-1.6740386,-1.7104269,-1.9524275,-1.9939352,-1.9580536,-1.8972751,-1.7032064,-1.9595377,-2.0637007,-2.010062,-2.1007435,-2.0624406,-1.9428338,-1.8224674,-1.7086959,-1.6624968,-1.9654015,-1.9451228,-1.9345527,-1.8068569,-0.907892,-1.3848071,-1.4326919,-1.2872045,-1.5785581,-1.7597003,-1.6741145,-1.756116,-1.633318,-1.612966,-1.6380211,-1.6803762,-1.7347513,-1.7645708,-1.7181588,-1.7443241,-1.9588139,-2.1322877,-2.1143904,-1.8849748,-2.076809,-1.8204867,-1.8482052,-1.9825855,-1.9193941,-1.668866,-1.910938,-2.2178936,-2.358659,-2.24821,-2.3248296,-2.3561473,-2.4436662,-2.3659692,-2.6961963,-1.7626895,-2.4106908,-2.6416695,-2.677793,-1.3155636,-1.6648172,-1.9887174,-2.0493834,-2.1940122,-2.3971286,-2.5392313,-2.5826392,-2.5605602,-2.7838273,-2.761384,-2.6190982,-2.8562665,-2.8784912,-3.0132728,-2.847125,-2.7242827,-2.630207,-2.8128197,-2.9201608,-2.4869456,-2.6095245,-2.70453,-2.5773945,-2.557176,-2.5266013,-2.642642,-2.6014614,-2.1219974,-1.6192777,-2.0387025,-2.1561177,-2.399656,-0.70511293,-1.669944,-2.098817
+-1.1431653,-1.6465276,-2.0654314,-2.3036823,-2.336009,-1.6087352,-2.2660341,-2.6345263,-2.6448853,-2.6315546,-2.8208067,-2.9418235,-2.8030572,-2.8521507,-2.8539147,-2.755107,-2.777279,-0.8613193,-1.849713,-0.63964075,-1.258702,-1.7402279,-2.290478,-2.537255,-1.4377315,-0.8478532,-0.16132239,-0.69841987,-0.9951971,-0.3693271,-0.7187305,-0.69098157,-1.1295568,-1.6490699,-2.1170576,-2.33813,-2.2677076,-2.1612194,-1.4857104,-0.7765487,-0.7895536,-0.9236761,-0.4461003,-1.2250553,-1.771087,-0.84651953,-1.3080118,-1.5552964,-1.9412047,-2.113445,-2.2380688,-2.2782996,-2.2010608,-1.6313096,-1.7115552,-0.9435995,-0.70292026,-0.7738086,-0.70386916,-0.97335523,-1.0527915,-1.2406645,-1.9301498,-2.2093644,-1.268577,-1.8083011,-2.2102618,-2.3588421,-2.4139938,-2.5123901,-2.5304136,-2.6225255,-2.7175145,-2.7746568,-2.7005937,-2.8880162,-2.9431126,-2.9273176,-2.9642704,-3.0169694,-2.357115,-0.67291075,-1.5415331,-1.809505,-2.1681504,-2.0783455,-0.19918448,-1.1311537,-1.4500189,-1.673677,-1.9045461,-2.2652183,-0.6255222,-0.8065981,-0.8328035,-1.2190253,-1.66324,-0.23644486,-0.96361727,-1.6743165,-1.9463235,-2.2201798,-0.12588158,-0.6217944,-0.96571773,-1.5382286,-1.9711136,-2.1553974,-0.7174739,-1.1822469,-1.4406713,-1.8237473,-2.128557,-2.244019,-2.4071572,-2.6072001,-2.768766,-2.807253,-2.7504907,-2.7829137,-2.666408,-2.5181625,-1.8530145,-2.17516,-2.3778882,-2.535859,-1.7486517,-2.277618,-2.4114327,-2.2648783,-2.3935153,-2.4547844,-2.6282327,-0.20122099,-1.1428057,-1.6062953,-1.9642338,-2.213295,-2.3234131,-2.5420713,-2.5596557,-1.2675573,-2.2523541,-2.6362207,-2.6963274,-0.3850554,-0.845177,-0.9913358,-0.9811596,-1.1810417,-1.2086982,-0.8741073,-0.9059754,-1.535852,-1.8705915,-2.217204,-2.4285038,-2.516979,-2.634653,-2.3362021,-2.152708,-2.329467,-1.8538074,-2.6024768,-2.7245383,-0.88785154,-0.96610576,-1.5320197,-1.6155658,-2.0994983,-2.513765,-2.6072102,-2.5698934,-2.495401,-2.5326521,-2.7661572,-1.7869651,-0.74683005,-2.067523,-2.4435167,-2.6739006,-2.8190246,-2.9752173,-2.9953787,-2.8436437,-2.9717956,-1.8287538,-1.1597885,-1.5271868,-1.6131932,-2.3683262,-2.757637,-1.980874,-2.0032368,-2.1734214,-2.5961628,-2.7851038,-2.5979257,-2.4073462,-2.5186987,-2.8919816,-3.1184094,-3.2793117,-3.3517303,-3.346551,-3.4166112,-3.4076767,-3.2027526,-2.0059478,-2.5134158,-2.6438668,-2.5812454,-2.7961016,-2.8712878,-2.8843045,-2.6280246,-3.050743,-3.3062868,-3.3565905,-3.3314672,-3.296575,-3.4018917,-3.5303745,-3.5250797,-3.6432424,-3.4062257,-3.3314054,-3.6388865,-3.6034648,-3.4468079,-3.2904253,-3.4596868,-3.3184655,-3.2725487,-3.0796695,-2.651401,-2.285244,-2.2863967,-2.6757243,-2.6345577,-2.613883,-2.781735,-2.878343,-3.2165604,-3.0789979,-3.0430331,-2.8602853,-1.6058834,-1.9649163,-2.243548,-2.5578406,-2.5875592,-2.6381867,-2.495696,-2.3512127,-2.4624953,-2.6571567,-2.7329583,-2.7998526,-2.6299043,-2.6789193,-2.7114925,-2.632655,-2.6337194,-2.6013439,-2.5187967,-2.255397,-2.1936102,-2.0594687,-2.0961423,-2.236776,-2.1853259,-2.329684,-2.460301,-2.4066496,-2.3174608,-2.012453,-2.306951,-2.556656,-2.3112593,-2.4189634,-2.3611736,-2.2736812,-2.1555908,-1.85445,-1.7533206,-2.1955328,-2.2699242,-2.1423895,-1.7478645,-0.9999959,-1.2940255,-1.338406,-1.3073006,-1.7496946,-2.0818832,-1.9288356,-2.2511897,-2.1489675,-2.4240413,-2.5695372,-2.5871906,-2.5491896,-2.5459397,-2.5854373,-2.7114809,-2.8965406,-3.0625572,-3.0436382,-2.927313,-2.807117,-2.5320036,-2.5465722,-2.825717,-2.9345176,-2.5484915,-2.5412788,-2.7427003,-3.067473,-2.9664986,-2.9605715,-2.918508,-2.8360176,-2.8444107,-2.8295841,-2.6129348,-2.6928601,-2.7634692,-2.742302,-2.9394424,-2.8076634,-2.6792996,-2.5528634,-2.7367935,-2.6964412,-2.878851,-2.8173175,-2.7257028,-2.8293107,-2.8782005,-2.4244153,-2.955497,-2.7616298,-2.9326384,-2.843804,-2.7026322,-2.7352748,-2.7753882,-2.8589892,-2.6051934,-2.6115792,-2.7672586,-2.6229935,-2.6048095,-2.6973333,-2.8301473,-2.7646549,-1.6453692,-1.5423417,-1.9633611,-2.021222,-2.1856065,-0.90406173,-1.2898844,-1.610855
+-0.94642586,-1.3353126,-1.7026944,-2.1110892,-2.198536,-2.2440681,-2.4073875,-2.518118,-2.498811,-2.5146306,-2.674491,-2.6922019,-2.7063897,-2.8136652,-2.8355715,-2.7510138,-2.8372974,-1.1730359,-2.5602305,-2.049273,-2.5072088,-2.539867,-2.710958,-2.725306,-1.815273,-2.2045422,-0.9530682,-1.7431483,-2.0986311,-1.869998,-1.9501184,-1.9278995,-1.7508429,-1.8609995,-1.998896,-2.3404756,-2.573956,-0.985717,-2.0799246,-1.9742101,-1.3627132,-1.6584775,-1.712134,-1.6791581,-2.1501927,-1.3050832,-1.8738312,-1.7720736,-2.0609174,-2.0375485,-2.034142,-2.0151172,-1.6465899,-1.8294309,-1.6611712,-1.3909845,-1.0176082,-1.4998926,-1.3583409,-1.6222186,-1.8281844,-1.8612875,-2.1169395,-2.4009895,-1.1984676,-2.0077343,-2.2841275,-2.4866319,-2.7189121,-2.8225415,-2.8488824,-2.9349513,-2.9907255,-1.3996205,-2.365409,-2.4884624,-1.2183671,-2.2850397,-2.5226216,-2.7663198,-2.833514,-2.9036012,-3.0522885,-3.1681166,-3.214242,-3.1537156,-0.71295196,-2.3724587,-2.6372955,-1.8273989,-1.9512715,-2.796947,-1.2028521,-1.4611521,-1.7423376,-1.7149509,-1.9142185,-1.2107217,-1.6194599,-1.7881663,-1.6336092,-1.8445793,-1.2056755,-1.4001101,-1.6020463,-2.061683,-2.3306966,-2.4834015,-2.6545205,-2.7278304,-2.8002028,-2.9027426,-3.0237076,-3.1526499,-3.2411566,-0.97700316,-2.6031606,-2.933928,-3.0677495,-1.4392833,-2.2126586,-2.2932706,-2.6328027,-2.9290338,-3.1301806,-3.245163,-3.19271,-2.496443,-1.7912341,-2.234478,-2.740811,-2.8856115,-2.8923717,-1.0198392,-2.4348073,-3.0454884,-3.2252011,-3.3925493,-3.4065711,-3.4817004,-3.420438,-1.1843141,-2.6194217,-3.0277288,-2.9828026,-2.615646,-1.3871943,-2.382071,-2.1254528,-2.2031927,-2.3902638,-1.6072377,-1.7022524,-2.339407,-2.6613364,-2.7655156,-2.9207914,-2.9310884,-3.001696,-3.0764184,-1.0408403,-1.7689027,-1.3574835,-2.4997826,-2.5985727,-2.670659,-1.8002815,-2.3083813,-1.5121737,-2.2813175,-2.6651044,-2.6813202,-2.6804469,-2.8111622,-3.0298142,-3.3319235,-3.1379876,-1.3682534,-2.60013,-2.991579,-3.1808171,-3.195302,-3.360886,-3.4866323,-3.4777043,-3.669742,-3.3148751,-1.9147669,-2.310522,-2.278425,-3.0265899,-3.3738635,-3.0814302,-3.351396,-2.6640816,-2.9377692,-3.1347194,-3.0881472,-3.0948257,-3.1761944,-3.5642219,-3.62318,-3.5006554,-3.761929,-3.8346605,-3.9340253,-3.9242058,-3.8901687,-2.5767183,-3.2751207,-3.4371145,-3.426906,-3.6830282,-3.794464,-3.7366781,-3.6306617,-1.9110138,-3.2856088,-3.6743677,-3.7499368,-3.6230652,-3.3270576,-3.6103134,-3.736151,-3.7964644,-3.6912043,-3.8019662,-3.9352746,-4.013162,-4.016083,-3.7840686,-3.900476,-3.5004065,-3.700677,-3.683189,-3.5753524,-3.670325,-3.6919837,-3.7371478,-3.6603475,-3.4409976,-3.5309453,-3.8130426,-3.681942,-3.5609593,-3.6037788,-3.6672807,-2.2190022,-3.2008944,-2.8617072,-2.9180646,-2.7768443,-2.6723454,-2.5273356,-2.8816624,-2.6908362,-2.6205978,-2.6490388,-2.6515477,-2.4596097,-2.5782404,-2.493701,-2.363277,-2.3418212,-2.3546026,-2.3561444,-2.5200245,-2.6803422,-2.8202646,-2.9521718,-3.043121,-2.9743805,-2.9763694,-3.0704937,-3.0380445,-3.0092852,-3.1383152,-3.2096195,-2.8242078,-2.323544,-2.3272178,-2.2754486,-2.277091,-2.2419097,-2.3949356,-2.7996244,-2.7014074,-2.632105,-2.5694919,-2.5202951,-1.5676059,-2.132126,-2.5053093,-2.8651612,-3.140122,-3.246703,-3.23449,-2.8887568,-3.088461,-3.0226536,-2.7231512,-2.6839721,-2.7551146,-2.9248188,-3.2062535,-3.381853,-3.2228246,-2.9884672,-2.920837,-2.9481146,-2.912034,-3.0958896,-3.3935025,-3.1056595,-3.0076127,-2.792767,-3.3229947,-3.3468537,-3.2376976,-3.2548468,-3.2235007,-3.0996585,-3.162892,-3.2789826,-3.315821,-2.972241,-3.519614,-3.3874793,-3.3788059,-3.3507774,-3.238242,-3.0774477,-3.0289123,-2.9663074,-3.0215955,-3.0850189,-3.050171,-2.7403,-2.558606,-2.4125834,-1.997032,-2.818461,-2.8355155,-2.806768,-2.6999927,-2.7291832,-2.8018823,-2.9867318,-2.9341073,-2.4004416,-2.9859283,-2.8578877,-2.7252665,-3.221703,-3.0057757,-2.8036184,-2.56635,-2.5024788,-2.812399,-2.9497962,-2.13731,-3.0489657,-1.4074001,-2.4090357,-2.4904108
+-0.3269097,-0.6844736,-1.2508124,-1.8016332,-2.2178464,-2.1172605,-2.3100917,-2.596436,-2.8810148,-2.991911,-0.7760432,-2.2121482,-2.4526324,-2.4709587,-2.530007,-2.6558218,-2.1351585,-1.9011613,-2.2395034,-2.200737,-2.218145,-2.3659933,-2.3491669,-2.4572139,-2.5311882,-2.608447,-1.3846213,-2.2389526,-2.260301,-2.1862965,-2.2903836,-2.485917,-2.2623615,-2.2216592,-2.3010385,-2.3615217,-2.5124617,-2.6254783,-2.3701887,-1.8633555,-2.171409,-2.3666363,-2.2776592,-2.3097467,-2.760295,-1.5514402,-1.320448,-2.1747398,-2.2158184,-2.2580473,-2.3038507,-2.2924001,-2.1796892,-1.933722,-2.1100898,-2.381106,-2.105434,-2.2064745,-2.3162591,-2.0360775,-2.0740676,-1.978772,-2.1412752,-1.9967192,-1.6897352,-2.0804877,-2.1255345,-2.2996159,-2.541194,-2.8400896,-3.1271064,-3.3308282,-2.0834877,-2.699335,-2.9299521,-3.226806,-3.1269264,-3.4003172,-3.631114,-3.8315554,-3.891596,-3.973249,-3.9893007,-3.4174168,-1.3624352,-2.5615802,-2.9172459,-1.9713959,-2.8767433,-3.221909,-2.1210814,-2.8674197,-2.7344465,-1.4153137,-2.2270067,-2.5230129,-1.8893075,-2.3195033,-2.020234,-2.4544754,-2.463531,-2.531219,-2.0329633,-2.2677648,-1.5319058,-2.2950585,-2.476377,-2.6321733,-2.9745903,-3.2858586,-3.5080857,-3.7210765,-3.9070268,-4.0451393,-4.0532665,-0.9609956,-2.7063007,-3.03472,-2.826388,-3.1154375,-3.2913275,-3.5689592,-3.7516346,-3.9622574,-4.051609,-4.1509027,-3.4558973,-1.3949443,-2.3871517,-2.3797846,-2.803142,-2.6664374,-2.892767,-2.5622997,-2.8458037,-3.0854306,-3.286942,-3.4129543,-3.6393237,-3.841638,-3.95441,-1.3271731,-2.5917306,-2.9068553,-2.9801383,-3.101395,-3.2431033,-2.353003,-2.666493,-3.036423,-3.3043008,-3.4383528,-1.5188024,-2.7593923,-3.0581443,-3.2218242,-3.4273334,-3.5616035,-3.704844,-3.7700787,-1.9247298,-1.6104773,-1.821546,-2.6083682,-2.7920039,-2.929112,-2.4026208,-2.6335053,-1.3985416,-2.4954057,-2.6750362,-2.7047424,-2.7588165,-2.8510036,-2.9350293,-3.111165,-3.2598228,-2.1939795,-2.6153734,-2.7684894,-2.8938336,-2.9923692,-3.1237056,-3.2418797,-3.3829212,-3.5730376,-3.8393934,-2.1408005,-0.7389954,-1.7827111,-2.3814118,-2.4215016,-2.5014784,-2.653656,-1.8374101,-2.4930422,-2.1577635,-2.685793,-2.8954668,-2.9241,-2.9585319,-2.8343973,-2.975617,-2.75475,-2.7818208,-2.8634248,-2.996745,-3.1669788,-2.370113,-2.8944545,-3.0516644,-3.1644328,-3.196503,-3.2750044,-3.4780402,-3.553842,-2.755858,-3.2455497,-3.4502401,-3.556529,-2.3661344,-2.571691,-3.0887167,-3.233035,-3.3314035,-3.165998,-3.3210442,-3.2959132,-3.382381,-3.4379203,-3.588176,-3.7013917,-3.292264,-3.423407,-3.6756735,-3.495294,-3.473037,-3.5229774,-3.456339,-3.4916704,-3.6671302,-3.560716,-3.587516,-3.6022005,-3.370601,-3.5145855,-3.4304612,-2.2704244,-3.020544,-2.9893398,-2.8742352,-2.5713515,-2.4675667,-2.5641465,-2.9778833,-2.5353012,-2.559167,-2.4592903,-2.5589156,-2.6226733,-2.9537046,-2.748498,-2.8304305,-2.7045803,-2.510755,-2.4572177,-2.3770962,-2.4041097,-2.382853,-2.0620022,-2.351935,-2.849316,-2.6807814,-2.642674,-3.0451689,-2.9872136,-3.255551,-3.3584929,-2.5714402,-2.6020002,-2.6990497,-2.6785288,-2.596069,-2.4591897,-2.6579676,-2.9387615,-2.9092684,-2.262514,-2.6578493,-1.2999103,-1.8290638,-2.0587943,-2.4389358,-2.6605635,-2.9864354,-3.1269627,-2.2370076,-2.5356793,-2.9053802,-2.8407226,-2.4791665,-2.1617637,-2.3061733,-2.7593498,-3.001381,-3.0792632,-2.8409734,-2.395275,-2.373413,-2.5677552,-2.9680104,-3.036263,-3.1867414,-3.0429907,-2.4575074,-3.1077456,-3.3598313,-3.3921628,-3.0734463,-2.86278,-2.9520862,-3.1388097,-3.2790992,-3.1812205,-3.2502832,-2.170257,-2.8264093,-2.9779005,-3.0382638,-3.0779889,-2.608098,-3.1282663,-3.2158103,-3.2564652,-2.4630895,-2.509955,-2.8391645,-3.0273995,-3.1625051,-3.2092,-1.6222183,-2.4604988,-2.7655692,-2.7157664,-2.7229161,-2.6774004,-2.8057418,-2.6924443,-2.5542846,-3.0271454,-3.074524,-2.9707718,-3.0779016,-3.15404,-3.163229,-2.9859476,-3.422306,-2.8342032,-2.4331264,-2.8398619,-1.9037462,-2.6574636,-1.7663575,-2.5692906,-2.709436
+-0.29290512,-0.67276615,-1.1088153,-1.4986142,-1.7749211,-1.9496855,-1.9250671,-1.8949248,-2.0400515,-1.8714105,-1.9930083,-2.1614757,-2.3244126,-2.510598,-2.5314763,-2.373192,-1.7751877,-2.071816,-2.2218547,-2.3672042,-2.5025573,-2.6196039,-2.6552496,-2.6291559,-2.6369958,-2.7229352,-1.8158914,-2.290536,-2.0506513,-1.8471287,-2.1603756,-2.3757486,-2.3251133,-2.2781172,-2.3341672,-2.401041,-2.5419614,-2.6959643,-2.4874296,-2.562068,-2.6748772,-2.2272058,-2.1887784,-2.5405204,-2.6094556,-2.5347185,-2.5903811,-2.4519036,-2.6737237,-2.5796049,-2.766181,-2.7744849,-2.7232985,-2.6951842,-1.2113278,-2.1801703,-2.2742548,-2.5113795,-2.5856752,-2.501515,-2.720745,-2.7355576,-2.583284,-2.0758727,-2.219952,-2.3701687,-2.555356,-2.7638664,-2.949708,-2.9416125,-3.0228448,-3.0986233,-1.6490415,-2.263299,-2.5921993,-2.7434607,-2.8545475,-2.9242532,-3.0284667,-3.1147091,-3.150763,-3.1489553,-3.12085,-3.1369162,-3.185812,-3.227416,-3.211534,-3.0901484,-3.3944464,-3.465585,-3.388513,-3.288498,-3.047951,-1.9409634,-2.3354259,-2.4231377,-2.6915412,-2.9201615,-3.020667,-3.0634103,-3.0786047,-3.1127877,-3.1751215,-3.2760403,-1.3916352,-2.385254,-2.8078432,-3.0098252,-3.10111,-3.2249982,-3.2189326,-3.3079798,-3.367757,-3.3869305,-3.4100325,-3.371301,-2.8546228,-3.2172875,-3.1380758,-3.1266727,-2.0398765,-2.6414168,-3.0379572,-3.2844896,-3.393777,-3.487,-3.2883344,-1.8101448,-2.8494415,-3.2461803,-3.2113676,-3.2760322,-3.3530483,-3.2715087,-3.41175,-3.431858,-3.4206533,-3.4788833,-3.5441525,-3.2186494,-3.3065062,-2.974138,-3.3491447,-3.5184536,-3.3908374,-3.3728867,-3.5403886,-2.8691773,-3.3468802,-3.4426017,-3.5844963,-3.385182,-3.0858731,-2.49813,-3.2093248,-3.4647946,-3.54172,-3.4934502,-3.4675293,-3.47398,-3.4207492,-2.8173914,-2.4060078,-3.0165267,-3.2675524,-3.4760237,-3.3853636,-2.5460267,-2.852092,-3.272285,-3.3884077,-3.4246774,-3.5268412,-3.6059651,-3.6784468,-3.7323825,-3.6362088,-3.0093293,-3.017178,-3.3669066,-3.5210285,-3.5316606,-3.6436586,-3.7129245,-3.7317047,-3.7679822,-3.697724,-1.3844174,-2.6574178,-2.18755,-2.8049874,-3.3077292,-3.4678001,-3.549809,-3.214259,-3.188478,-3.075768,-3.1621509,-3.3041368,-3.290648,-3.569668,-3.4314253,-2.813972,-3.1251109,-3.3147998,-3.4118173,-3.585098,-3.6146784,-3.4361978,-3.623269,-3.6812458,-3.6581368,-3.7737582,-3.8104239,-3.7487073,-3.768933,-3.903121,-3.8416495,-3.9395266,-3.9538813,-4.050662,-2.801856,-3.5631325,-3.7660885,-3.8709753,-3.6874833,-3.8664985,-3.8776155,-3.922752,-3.8962388,-3.806087,-3.9007936,-3.497806,-3.6509433,-3.9647603,-3.6459675,-3.33148,-3.635063,-3.838935,-3.728803,-3.723971,-3.646711,-3.7515228,-3.787266,-3.5577893,-3.8208544,-3.5695782,-3.1883397,-3.5232182,-3.742744,-3.6083097,-3.0068233,-2.8975406,-3.2177973,-3.6380002,-3.666008,-3.7108316,-3.493863,-2.8042843,-3.4362426,-3.9053335,-2.7979383,-2.6824603,-2.6963701,-2.9343677,-3.1174946,-2.68293,-3.3968291,-3.4646091,-2.7135565,-2.8948386,-3.4331732,-3.33507,-2.9093857,-3.4197383,-3.6333554,-3.5309925,-3.8197262,-2.9058614,-2.8474483,-2.5076513,-2.3781986,-2.3311448,-2.5590873,-3.1982942,-3.6344528,-3.7628298,-3.4970446,-1.4335297,-2.2239113,-2.17084,-2.72903,-3.0879822,-3.1942492,-3.3450923,-3.3864684,-3.0121267,-3.1458926,-3.310391,-3.4151156,-2.866334,-2.6526692,-2.7291691,-3.167169,-3.3081574,-3.261073,-3.096641,-3.021428,-2.6406028,-2.966261,-3.3457155,-3.3570285,-3.3655655,-3.2898564,-2.6791768,-3.1278682,-3.3102045,-3.29024,-3.150821,-1.5955403,-2.119658,-2.4688282,-3.1377034,-3.207693,-3.1193469,-2.732101,-3.1000607,-3.210433,-3.2084105,-3.238044,-2.7194335,-2.9966397,-3.1423078,-3.1554685,-3.1122446,-2.5497928,-2.6428857,-2.814796,-2.902914,-2.832088,-2.5168843,-2.5425887,-2.902728,-2.6799417,-2.3462274,-2.3010473,-2.69811,-2.8220518,-2.4389515,-2.779837,-3.039759,-2.889731,-2.951178,-2.9517283,-2.839115,-2.7492409,-2.909146,-2.5578294,-3.0441945,-2.9826002,-2.7877135,-3.000651,-2.8126845,-3.3654923,-3.054904
+-0.65652126,-0.9262607,-1.1842989,-1.3011122,-1.5413815,-1.6876109,-1.6875024,-1.6940258,-1.9544889,-1.9394408,-0.5384243,-1.7032558,-2.1455648,-2.1174083,-2.1171012,-2.0826864,-1.4865184,-2.1948428,-2.2171195,-2.1341472,-2.1222456,-2.0330029,-2.0423415,-2.1934323,-2.2729938,-2.3213685,-1.2436225,-2.0742877,-1.4821671,-2.3199954,-2.5344954,-2.1890996,-2.1360223,-1.9598365,-1.9620293,-1.9857835,-2.1333544,-2.3657339,-1.1502429,-2.23765,-2.1808715,-2.0452847,-2.1067798,-2.1127725,-2.0567257,-1.9887613,-1.987573,-2.1472785,-2.1738858,-2.1831346,-2.1365287,-2.1366339,-1.921225,-2.2243104,-1.4447843,-2.3698761,-2.2797408,-2.188895,-2.1910987,-2.1170745,-1.8783761,-2.2603598,-2.0992188,-2.2152247,-2.1952703,-2.1614702,-2.1237955,-2.1864452,-2.3374887,-2.4235563,-2.47247,-2.5174239,-2.0375776,-2.3440108,-2.3762043,-2.2489913,-2.249013,-2.3189297,-2.3548467,-2.4462557,-2.6151576,-2.5730817,-2.5705757,-2.5397425,-2.635018,-2.750134,-2.7321806,-2.6775389,-2.6589534,-2.7972956,-2.817432,-2.8551288,-2.7828946,-2.7704253,-1.1574737,-2.18243,-2.3154922,-2.3616884,-2.413346,-2.4634871,-2.5733604,-2.7590847,-2.8290005,-2.8151708,-0.8947876,-2.1986427,-2.4911823,-2.5716698,-2.7228768,-2.7664995,-2.8030741,-2.8686755,-2.8976724,-2.8770213,-2.826737,-2.7052317,-2.7423122,-2.7499669,-2.8306668,-2.7111335,-2.0116577,-2.5720818,-2.8567626,-2.9137325,-2.9925833,-3.0367174,-3.053162,-3.022644,-1.4867681,-2.5216398,-1.6663632,-2.4754245,-2.7154136,-2.8340902,-1.2536173,-2.3369927,-2.3793516,-2.4673634,-2.587839,-2.1316192,-2.186616,-1.5752983,-2.264972,-2.4832761,-2.527071,-2.6258712,-2.7438345,-1.3635505,-2.1575553,-2.5004666,-2.5807142,-2.6715217,-2.663814,-1.3374748,-2.3012767,-2.549933,-2.7203183,-2.7829957,-2.8214362,-2.846453,-2.882606,-2.9446306,-2.7819,-2.6806717,-3.0239992,-3.0112786,-2.966663,-2.9654055,-2.6827176,-2.1129413,-1.566248,-2.4746473,-2.445071,-2.575448,-2.7287402,-2.8007445,-2.8110542,-2.8504739,-2.2543528,-2.6361136,-2.7860527,-2.6679692,-2.8290107,-3.0741134,-3.07521,-3.1453345,-3.2439609,-3.1898284,-3.0686378,-2.3581147,-2.5282493,-2.8911343,-3.1163406,-3.1398592,-3.0506854,-2.782662,-2.789369,-2.9720616,-3.02708,-2.9791288,-2.9457853,-3.044963,-1.5368645,-2.5287251,-2.7720175,-2.7726393,-2.9469576,-3.0477057,-2.1161282,-2.623108,-2.9087238,-2.8837695,-2.9049907,-3.0179057,-3.063892,-3.079301,-2.816585,-2.911027,-3.1423547,-3.2724028,-3.2903318,-2.9690697,-2.9425228,-3.0358393,-3.1350265,-3.0537071,-3.1626983,-3.2441816,-3.0904913,-3.1494799,-3.1125832,-2.3931966,-2.595765,-2.848897,-3.118244,-2.9726179,-1.7121499,-2.7257748,-2.7911282,-2.8422856,-3.0072362,-1.3831615,-2.5375502,-2.6692257,-2.5270147,-2.8750277,-2.2372065,-2.608262,-2.7873006,-2.5095496,-2.736104,-2.649189,-2.2459054,-2.4483066,-2.6284308,-2.7172627,-2.6553006,-2.66576,-2.5831618,-2.6220691,-2.5305772,-2.38187,-2.2407002,-2.514104,-2.7488205,-2.72088,-2.650733,-2.561668,-2.5795984,-2.5223162,-2.4946203,-2.5095358,-2.4429271,-2.4717627,-2.5034723,-2.5590754,-2.4085126,-2.5088606,-2.6680045,-2.624179,-2.574606,-2.3677187,-2.424463,-2.5303674,-2.5496175,-2.716301,-2.576996,-2.4758592,-1.9986762,-2.2981977,-1.7814921,-2.4497764,-2.244587,-2.4527512,-2.4902453,-2.5701487,-2.3743439,-2.4315543,-2.5516229,-2.3443604,-2.3191087,-2.3306408,-2.3594441,-2.4193366,-2.417573,-2.3582227,-2.3631082,-2.4877436,-2.3865342,-2.4885235,-2.6498818,-2.5596519,-2.4049006,-2.371451,-2.296896,-2.6063952,-2.4819975,-2.2944136,-2.549911,-0.6868145,-1.9898003,-2.3409896,-2.4530342,-2.4516296,-2.4584205,-1.869918,-2.3389301,-2.376737,-2.4142742,-2.2059758,-2.1963787,-2.3057187,-2.286625,-2.457221,-2.0824764,-2.1708007,-2.3172934,-2.427743,-2.208354,-2.3070815,-1.5063225,-2.3416514,-2.2258472,-2.2388701,-2.3367567,-2.1805253,-2.0045362,-2.227346,-2.0557034,-2.2349777,-2.2609227,-2.1797304,-2.297198,-2.3128994,-2.2750502,-2.341938,-2.5038722,-0.7900061,-2.011287,-2.2839537,-1.9156083,-2.1664302,-2.0516653,-2.1038818,-2.118606
+-0.09465131,-0.35965028,-0.6480537,-0.9552541,-1.1338968,-1.4007314,-1.5584857,-1.5545605,-1.824824,-1.8613584,-0.918929,-1.355939,-1.2903754,-1.3898691,-1.4722778,-1.4286629,-1.343786,-2.5736918,-2.5440936,-3.0680976,-3.2134056,-3.3466394,-3.0930173,-2.68381,-2.39824,-2.1259518,-1.8976451,-2.7123826,-3.095914,-3.417302,-3.7067282,-3.925475,-4.0551567,-3.7492406,-3.059744,-2.5502625,-2.2941928,-2.1616378,-1.7745394,-1.8005619,-2.1121294,-2.1212528,-2.1090384,-1.9651972,-1.9236435,-1.9129183,-1.9356079,-2.0189848,-1.0791906,-1.6889518,-1.8012557,-1.6738299,-1.4431138,-1.6056491,-1.7791986,-1.5758392,-1.5331153,-1.7755038,-1.8588396,-1.689654,-1.5582808,-2.5257125,-2.8611388,-3.1685278,-3.1934257,-2.7942767,-2.4141645,-2.1694727,-2.087664,-2.0995457,-2.1976547,-2.3522615,-2.4643292,-0.9082913,-1.5520476,-1.8685654,-2.0344706,-2.2353334,-2.303153,-2.2255366,-2.3401237,-2.381617,-2.470559,-2.6324115,-2.7474594,-2.8159597,-2.8918812,-2.4534175,-2.7154717,-2.718203,-2.8435907,-3.0109768,-3.1037178,-3.181573,-3.2475305,-3.360767,-3.4243088,-3.4796736,-3.522351,-3.5545087,-2.7262268,-3.2556763,-3.4223547,-3.520502,-3.638074,-1.8093675,-2.644747,-2.939011,-3.1664724,-3.3298764,-3.4139643,-3.512852,-3.5896838,-3.531984,-1.4102772,-2.8439946,-3.1157048,-2.7331045,-3.0840926,-2.9657784,-2.6629882,-2.9634652,-3.2419634,-3.4491453,-3.5208795,-3.5410347,-3.550067,-3.5237355,-2.4677944,-2.241524,-2.8009598,-2.9918103,-2.938986,-2.4691038,-2.4694219,-2.4163628,-1.2744485,-1.70073,-1.7179592,-1.2954572,-1.4953746,-1.311627,-1.600902,-1.2434274,-1.4225479,-1.6820848,-1.9427215,-2.1273534,-2.1893895,-1.7148222,-2.0240037,-2.34068,-2.5627818,-2.1894577,-2.4778798,-2.5427125,-2.7495236,-2.8707528,-2.9272413,-3.0342343,-3.1521258,-3.2223554,-3.324136,-3.3176565,-3.4004147,-3.437706,-3.5091863,-3.593626,-3.5503874,-3.1996193,-1.2630265,-2.2897403,-2.712477,-2.7781062,-2.9563243,-3.0647953,-3.1495743,-3.3002114,-3.5592003,-3.4663217,-3.5858233,-3.6303582,-3.65053,-3.8039713,-3.7919822,-3.7533607,-3.7442496,-3.6470923,-3.5595186,-3.4642134,-3.6313143,-3.6399426,-3.7913702,-3.795332,-3.8141396,-3.9177597,-2.8552985,-3.1195798,-3.1699955,-3.2381785,-3.3643496,-3.4328754,-2.06706,-2.5968695,-2.8647099,-3.0785918,-3.369619,-3.3864188,-3.284741,-3.0837924,-3.2161446,-3.3213243,-3.4374633,-3.5169952,-3.4366927,-3.3535273,-2.9526682,-3.2813869,-3.3296707,-3.6064754,-3.596157,-3.2852716,-3.5380387,-3.4117432,-3.7192168,-3.898204,-3.6532967,-3.7841818,-3.8123431,-3.8567617,-3.6651726,-1.0984174,-2.4684358,-2.6957042,-2.9533634,-2.943996,-1.3166497,-1.9962505,-2.3227172,-2.441031,-2.6693645,-1.2210206,-1.8839715,-2.2423959,-2.308013,-2.387854,-1.4381586,-1.9032782,-2.026144,-1.936473,-2.0247002,-2.1330166,-1.9812311,-2.1506798,-2.2087235,-2.3035865,-2.201468,-2.2656357,-2.2124484,-2.2739372,-2.381772,-2.488832,-2.4315012,-2.6741037,-2.7328982,-2.663924,-2.6012917,-1.030276,-2.04199,-2.7988122,-2.9661703,-3.0909429,-3.0356116,-2.629908,-2.2406466,-2.602231,-2.1834135,-2.7524908,-2.6185393,-2.4179864,-2.1694703,-1.9768595,-2.048345,-2.2813723,-2.1934326,-2.476988,-2.5763078,-2.747263,-2.3520923,-2.8142931,-2.8147917,-3.5067332,-3.476974,-3.9165576,-4.3216105,-4.442998,-4.051697,-3.7135077,-3.4882045,-3.384112,-3.243511,-2.7948709,-2.5352325,-2.4515023,-2.3975663,-2.3836277,-2.35221,-2.350451,-2.2419548,-2.4212217,-2.2852097,-2.265432,-2.2664332,-2.2525072,-2.2000036,-2.361541,-2.388215,-2.3886013,-2.3651443,-0.9073063,-1.7989551,-1.964115,-2.1132817,-2.166046,-2.111291,-1.9085051,-2.944691,-2.9619617,-3.0725589,-2.9877267,-2.8297162,-2.3669603,-2.0326812,-2.8309913,-3.0049272,-2.7986984,-2.3600488,-2.2805786,-1.8590149,-1.9605991,-2.0086956,-2.1509457,-2.0637317,-2.0652351,-1.8843465,-1.9280206,-1.7222451,-1.9347872,-1.9328738,-2.0757642,-2.1098204,-2.1541452,-2.1902714,-2.335131,-2.4281244,-2.373088,-2.4620667,-1.0503389,-1.4858057,-1.7039859,-1.6580784,-1.6928488,-1.2879305,-1.6117444,-1.7462395
+-1.1317743,-1.507417,-1.7262515,-1.9403406,-2.3008833,-2.535203,-2.6862211,-2.946561,-3.1894474,-2.6838949,-2.1966076,-1.7761472,-2.489057,-2.5246217,-2.5556192,-2.6144311,-2.8119507,-1.029175,-2.0059876,-1.8794831,-1.9314343,-2.0546556,-2.1686475,-2.2685854,-2.4353585,-2.5015874,-1.1779202,-1.9564025,-2.4254432,-1.2406384,-1.886593,-1.939063,-1.9072466,-2.042314,-2.190682,-2.2516608,-2.4138584,-2.6332517,-2.6771848,-2.8501375,-2.8563933,-2.978933,-2.928183,-2.9910998,-2.657573,-2.3472824,-2.6792645,-2.009337,-1.7537559,-2.212789,-2.3179374,-2.4356556,-2.5580196,-2.7026477,-2.8285084,-0.78699714,-1.533007,-2.0218818,-2.0373065,-2.185997,-2.3965602,-2.0135274,-1.4676219,-1.7172952,-1.9650444,-2.2014534,-2.2862582,-2.2955759,-2.4013054,-2.5022974,-2.628786,-2.5300677,-2.210848,-1.4250374,-1.7083626,-2.1488883,-2.357592,-2.5546691,-2.7378244,-2.7538705,-2.8419216,-2.900303,-2.8763077,-2.9585953,-2.9302464,-3.12837,-3.1854122,-3.3144617,-2.36143,-2.8059282,-2.9156008,-3.0742972,-3.1862996,-3.3449192,-2.9126632,-3.3440557,-3.3942454,-3.4856756,-3.5632133,-3.6137948,-1.9303811,-2.8206735,-3.1438086,-3.394587,-3.5180364,-3.6156573,-3.6355367,-3.7113454,-3.7198424,-3.6834466,-3.6922517,-3.6850574,-3.7227132,-3.745437,-2.4955766,-2.305758,-2.4309835,-2.7891428,-2.6314106,-2.7988904,-2.863984,-3.158451,-3.3733935,-3.5340028,-3.5937855,-3.6580236,-3.691175,-3.7019472,-3.6979175,-2.266251,-3.0518203,-3.1134033,-3.2925766,-3.457679,-1.9355,-2.1698804,-1.7549301,-1.8486851,-1.8650113,-1.8316014,-2.0289812,-2.155087,-1.621157,-1.6441566,-1.7208118,-2.1542957,-2.5365932,-2.590518,-2.2525702,-1.9402486,-1.6021674,-1.5023885,-1.8318887,-2.2593608,-2.4849908,-2.5165367,-2.746609,-1.7508677,-1.9758159,-2.2229729,-2.4452524,-2.6610494,-2.8136063,-2.7924905,-2.878606,-2.9887953,-3.1380372,-3.241108,-3.246361,-3.1780968,-3.0835674,-2.7807152,-3.0443778,-3.0119574,-3.1139574,-2.9901423,-3.0364032,-1.9638795,-1.7864952,-2.484116,-2.667424,-2.8496342,-2.8872316,-3.068798,-3.2240026,-3.2912848,-3.3222017,-3.3491175,-3.3809206,-3.5414913,-3.555659,-3.4408247,-3.5180843,-3.6103072,-3.647316,-3.5740452,-1.7948183,-2.6743093,-2.7897785,-2.850396,-2.9723308,-3.0730417,-2.6374068,-2.8368022,-2.8845856,-3.00098,-3.3705418,-3.3808403,-3.4227579,-3.5000672,-3.527173,-3.5411482,-3.5810823,-3.6008346,-3.558838,-3.4897206,-3.577444,-3.1260602,-2.4111912,-3.1136487,-2.6675296,-2.9979453,-2.9871337,-3.0196826,-3.1664338,-3.356981,-3.4308262,-3.4410107,-3.602533,-3.6057448,-3.5435228,-2.7708025,-2.967457,-3.018805,-3.2318635,-3.3712902,-0.7833317,-2.1664295,-2.5586114,-2.6662974,-2.761708,-1.905169,-2.525018,-2.5963728,-2.6713297,-2.782855,-0.88897115,-2.0615454,-2.297025,-2.3714724,-2.5443606,-2.6442742,-2.4817283,-2.6233547,-2.5917554,-2.8211665,-2.7952752,-2.8728614,-2.7205026,-2.6307962,-2.7482107,-2.7600245,-2.672728,-3.055832,-2.9128733,-3.0613275,-2.7625892,-2.9139652,-2.7995527,-1.8366058,-2.1849363,-2.3942962,-2.4990463,-2.5559855,-2.740912,-2.7029347,-1.8116665,-2.2996871,-2.6899097,-2.750892,-2.8062959,-2.5612273,-2.6676438,-2.9453566,-2.7904124,-2.8655186,-2.8151264,-2.7945533,-2.4003053,-2.5068946,-1.373701,-1.8117436,-1.8034741,-2.0715022,-2.2163696,-2.3928294,-2.3037467,-2.4053087,-2.4191687,-2.5478153,-2.4769459,-2.5461574,-2.5758586,-2.630889,-2.655537,-2.6920981,-2.7560377,-2.929374,-2.8207638,-2.9559295,-2.1574817,-2.6174946,-2.6276772,-2.7027197,-2.683571,-2.7852964,-2.98078,-3.07799,-3.0903602,-0.66479963,-2.279502,-2.442337,-2.8060124,-2.625473,-2.5801654,-1.0496012,-2.0766375,-2.3557687,-2.3076677,-2.4263048,-2.3711894,-2.5271025,-2.5350764,-2.6041837,-2.6147966,-2.3959775,-2.4951506,-2.065953,-2.163897,-2.397274,-2.2899659,-2.3609014,-2.4977884,-2.0977316,-1.862532,-1.907864,-2.1922865,-2.1848423,-2.2115917,-2.3567789,-2.4826407,-2.6133504,-2.635534,-2.6772523,-2.735268,-2.8164244,-2.9202018,-1.0053558,-1.6767263,-1.9832934,-2.2448668,-2.3914216,-1.3598329,-2.0049667,-2.232821
+-1.4416173,-3.4715216,-4.190383,-4.295525,-4.161256,-4.300845,-4.2651653,-3.9090614,-3.7385054,-3.6577196,-3.0188143,-4.464815,-4.23402,-5.187985,-5.2523556,-5.0843573,-4.715887,-3.8203423,-5.1320515,-4.9980235,-4.9947824,-5.0500994,-5.162174,-5.0409565,-5.0105133,-4.9415483,-4.4916744,-5.0593443,-5.08558,-3.9668398,-5.0811944,-4.860746,-5.050094,-5.2193346,-5.222772,-5.1235647,-4.959596,-4.8629355,-4.76147,-4.6956387,-4.561385,-4.5209885,-4.249355,-4.2109327,-4.601487,-5.008231,-5.0987372,-5.1858325,-4.696822,-5.0903273,-5.1619573,-4.956766,-5.0057297,-4.9456496,-4.8014526,-4.2510824,-3.8195052,-5.007101,-5.214609,-5.2351236,-5.1544447,-4.534832,-4.756882,-4.957387,-5.0243444,-4.970553,-5.063758,-5.04115,-5.0140495,-5.0086374,-4.8475895,-4.8161335,-4.7575493,-5.065978,-5.025997,-5.037486,-4.9529357,-4.8240767,-4.674947,-4.5706778,-4.4123974,-4.934058,-4.801645,-4.6789823,-4.449279,-4.3022766,-4.2984114,-4.024268,-3.9703383,-4.848446,-4.7663784,-4.4998717,-4.3357716,-4.2214003,-4.0398836,-3.9207673,-3.8641803,-3.751041,-3.6400044,-3.610645,-4.1939144,-3.880206,-3.5540748,-3.4666123,-3.4231894,-3.2301137,-3.0906549,-2.9396799,-2.8981829,-3.1782815,-3.8574185,-3.5160599,-3.1411078,-3.0019598,-2.9361544,-2.8049874,-4.4300222,-4.438776,-5.0253935,-5.0941453,-5.165406,-5.103121,-4.9852614,-4.8535304,-4.626282,-4.390801,-4.1803737,-4.0044956,-3.7350621,-3.5563436,-3.3271873,-3.289393,-3.314188,-3.1526554,-3.8420997,-4.504764,-4.7945786,-4.8105965,-5.015122,-4.8268538,-5.063788,-5.043117,-4.820686,-5.0707917,-5.006392,-5.048766,-5.0945644,-4.9440174,-5.106347,-5.124704,-5.0724163,-5.060073,-5.1393995,-5.096859,-4.9022026,-4.8260884,-4.5321827,-4.856004,-5.109718,-5.0867505,-4.987413,-4.42028,-5.0606256,-5.081724,-4.9570293,-4.7782497,-4.579031,-4.419319,-4.3280644,-4.3984585,-4.390623,-4.1514387,-4.1542873,-3.983633,-3.932345,-3.8096359,-4.4100823,-4.7705293,-5.039587,-5.141366,-5.133626,-5.1736684,-5.1490045,-5.000218,-4.7721043,-4.555745,-4.422905,-4.2871504,-4.1922297,-4.2481585,-4.24332,-4.4202976,-4.271879,-3.683589,-4.603448,-4.606241,-4.324097,-4.383259,-4.3540983,-4.360939,-4.344182,-4.2420835,-4.343093,-4.8454947,-4.698292,-4.518405,-4.197237,-4.1403837,-4.048505,-3.9000666,-3.826861,-3.9219942,-3.9689236,-3.9100447,-3.5539205,-4.292794,-4.148325,-3.9487352,-3.6971335,-3.642327,-3.800858,-5.109418,-5.2155824,-5.215375,-5.207542,-5.1309533,-4.939804,-5.002354,-5.097668,-5.01346,-5.017366,-4.990223,-5.032448,-4.9983788,-5.0879054,-4.903345,-4.264498,-5.110357,-5.2275515,-5.183288,-5.076485,-4.652041,-5.172217,-5.2145696,-5.038706,-5.0452056,-3.9823847,-4.731143,-4.7772503,-5.0300236,-5.2165856,-5.2407146,-5.018528,-5.0449185,-5.0607457,-5.2129498,-5.2587366,-5.1991878,-5.127368,-5.0031166,-4.9631424,-5.1878147,-4.669671,-4.693343,-4.734579,-5.0648174,-4.9676332,-4.8692794,-4.882273,-4.7248783,-5.1748996,-5.1456604,-5.2018747,-5.007372,-4.9446144,-5.1531267,-4.516095,-5.0974183,-5.2051783,-5.2558537,-5.045987,-4.589671,-4.441434,-4.778386,-5.0646067,-5.128227,-5.06717,-4.84849,-5.156374,-5.0516157,-4.7752876,-4.910369,-4.483592,-5.0566106,-5.1490345,-4.7280784,-5.0308576,-5.18278,-5.2059717,-5.2588305,-5.1720314,-5.0955467,-5.077589,-5.1364565,-5.080798,-5.0707273,-5.074349,-5.1611214,-5.0988455,-4.875798,-4.7890587,-4.9697304,-4.988167,-5.0001664,-5.0686665,-4.982213,-4.859025,-4.9519424,-4.7594757,-4.2212577,-5.0420938,-5.2155333,-5.1173725,-5.2014456,-5.153288,-4.2939496,-5.131645,-5.279725,-5.2761507,-5.2525644,-5.219177,-5.154318,-5.03424,-4.9762297,-5.056012,-4.995947,-4.91976,-4.6278286,-4.8929024,-4.6713,-4.8715434,-4.9913588,-4.9734707,-5.068183,-4.944038,-5.169215,-5.15751,-5.2055864,-5.1390004,-4.9519815,-4.9810376,-5.0134234,-4.984404,-4.971337,-4.9411297,-4.876816,-4.7712154,-4.538586,-4.130163,-5.0864253,-5.216242,-5.1202354,-4.6151643,-5.1363873,-5.1715493
+-0.9710446,-1.1064843,-1.2248329,-1.4350327,-1.6624364,-1.5434403,-1.4626044,-1.3238117,-1.1378118,-0.9040397,-1.1187998,-0.8725222,-1.0132031,-1.0431126,-0.89290375,-0.5853648,-0.66936773,-0.8303761,-1.1357915,-1.1489673,-1.3540195,-1.3808352,-1.4058312,-1.7413079,-1.2686943,-1.6385598,-1.6038122,-1.6476207,-1.6211461,-1.518447,-1.3993436,-1.3112708,-1.1777207,-1.2474104,-1.0019228,-0.9914761,-1.0796152,-1.0940076,-1.0243493,-1.4793338,-1.7810396,-1.5584456,-1.6848161,-1.7484058,-1.5215694,-1.4873658,-1.358307,-1.149044,-1.0355711,-0.99461025,-0.9836692,-0.9323495,-1.1283382,-1.130977,-1.0914773,-1.0864197,-1.1564049,-1.1233363,-1.1530666,-1.0666351,-1.130494,-1.5005987,-1.5691698,-1.602131,-1.6941658,-1.6536672,-1.6745809,-1.5871433,-1.553511,-1.3633647,-1.2216057,-1.234164,-1.1984001,-1.183962,-1.4523628,-1.4568266,-1.4904306,-1.3588954,-1.2427224,-1.2225465,-1.3234936,-1.3502198,-1.4545097,-1.364149,-1.211636,-1.0268768,-1.3449038,-1.615034,-1.4190465,-1.3307046,-1.4675187,-1.3690513,-1.3367597,-1.2926229,-1.2406632,-1.2330238,-1.2777287,-1.2752295,-1.14593,-1.4035145,-1.2587849,-1.3635544,-1.4039873,-1.2987332,-1.676304,-1.4975755,-1.383928,-1.1874216,-1.2803777,-1.2475368,-1.1294329,-1.0411297,-1.2614702,-1.1867008,-1.1314081,-1.133707,-1.0993414,-1.248773,-1.3928698,-1.3359238,-1.2818625,-1.2388436,-1.2512668,-1.0446821,-1.3860037,-1.1056607,-1.4330186,-1.4331082,-1.2627168,-1.2304343,-1.2112354,-1.2812346,-1.4283751,-1.3078601,-1.3565445,-1.4330181,-1.3027217,-1.2443882,-1.2171259,-1.2549282,-1.3319241,-1.2260476,-1.509226,-1.3918443,-1.2651833,-1.2467964,-1.3521994,-1.3932605,-1.3017529,-1.5806785,-1.1055543,-1.5403862,-1.628805,-1.5372082,-1.5731816,-1.5383693,-1.4467647,-1.4137882,-1.6028527,-1.5758172,-1.354623,-1.552111,-1.5731447,-1.4999928,-1.4626566,-1.6465217,-1.7037334,-1.7379395,-1.4385642,-1.715577,-1.6320525,-1.5441322,-1.671409,-1.8540078,-1.8963115,-1.9848906,-1.830968,-1.6668053,-1.784687,-1.8346775,-2.0094156,-1.8613538,-1.8029903,-1.8145673,-1.6625127,-1.6946815,-1.7894472,-1.753388,-1.8403639,-1.9689323,-2.1055756,-1.9410075,-1.8904619,-1.5954107,-2.0132024,-1.9482864,-1.9650782,-1.9159267,-2.0030303,-1.8221062,-1.986571,-1.9612433,-1.9544603,-1.8650527,-1.9793621,-2.1046264,-2.0845478,-2.0835469,-2.3068397,-2.2852316,-2.2187004,-2.3202434,-2.1473432,-2.1504335,-2.2883592,-2.186255,-2.247899,-2.2514057,-2.1925895,-2.1365027,-2.0233166,-2.0883846,-2.1835423,-2.232572,-2.0899959,-2.1123688,-2.3721151,-2.3797784,-2.396579,-2.303068,-2.4334347,-1.1082171,-1.8392512,-1.6528183,-1.5237534,-1.4257131,-1.6284734,-1.8612486,-1.9332098,-1.7702222,-1.6652197,-1.3823776,-1.7662531,-1.8516394,-2.0122921,-1.8312665,-1.6846766,-1.6117702,-1.6930004,-1.3365586,-1.3237187,-1.2271068,-1.0857724,-0.9530229,-0.8664401,-0.80678815,-0.81739175,-0.79071444,-0.83607405,-0.83218557,-0.8219855,-0.9225797,-0.86502886,-0.7503734,-0.8426104,-0.78372234,-0.782345,-0.7632587,-0.72004765,-0.7977639,-0.8033715,-0.93338495,-0.70317024,-0.90992147,-0.8935769,-0.8509242,-0.959016,-0.6996877,-0.8972799,-0.99301916,-1.0094556,-0.9636019,-1.0226339,-1.0554422,-0.94657004,-1.062943,-1.1539677,-1.1291214,-1.1457119,-1.1274115,-1.0584892,-1.0016488,-0.94556314,-0.88960737,-0.71833915,-0.8506693,-1.015134,-1.1545962,-1.0828258,-1.0774916,-1.141338,-1.0299139,-0.969994,-0.90615344,-0.923841,-0.8955098,-0.87858725,-0.8951846,-0.93031543,-1.0177703,-0.990392,-1.0564514,-1.0310236,-1.0325544,-1.0365491,-0.9281789,-0.92704195,-0.9027817,-0.9145522,-0.8193056,-0.87066966,-0.88557464,-0.88622576,-0.8464088,-0.9139438,-1.0351362,-1.0948316,-1.324287,-1.107416,-1.1156842,-1.104564,-1.0753921,-0.9971573,-0.94098055,-0.9631794,-0.96944636,-0.9508187,-0.93825334,-0.8649358,-0.900461,-1.3267692,-1.1394666,-0.9389549,-0.8354811,-0.8699108,-0.924251,-0.9282197,-0.93528754,-0.9373328,-0.91145,-0.8155014,-0.68538004,-0.94533604,-1.1644055,-1.0010885,-1.1952484,-1.0847167,-1.1260651,-1.0909272,-1.2384113,-1.3201556,-1.3866918,-1.3972303,-1.3213207,-1.3237194
+-0.56408745,-0.85858303,-1.1644833,-1.5350066,-1.7201794,-2.0394278,-1.971392,-1.8463649,-1.7230662,-1.6867734,-1.7509176,-1.65848,-1.8835582,-2.185863,-2.2700522,-2.350285,-2.5106354,-2.45558,-1.9671279,-2.4886777,-1.582126,-2.2234075,-2.3590152,-1.7742001,-1.9022387,-2.0376318,-1.6911262,-1.6336452,-1.4086655,-1.6930217,-1.8142182,-2.0894547,-2.4647336,-2.4275763,-2.678215,-2.8571186,-2.8417864,-2.873213,-1.8410567,-1.8689878,-1.8887655,-1.884247,-1.7355466,-1.877716,-2.3191237,-2.528661,-2.4598875,-2.489819,-2.62843,-2.664156,-2.8579826,-2.9316313,-2.7502232,-1.900227,-1.8567246,-2.1325192,-1.8398616,-2.0186138,-1.953162,-2.5206976,-2.3862884,-2.822156,-2.8858895,-1.9584357,-2.3513777,-2.6444125,-2.810977,-2.841602,-2.9502206,-1.1646048,-1.8641887,-1.9842547,-1.9451112,-1.4923425,-1.8932303,-1.8881034,-1.8796479,-2.087481,-2.035286,-2.6130414,-1.72836,-2.6739867,-2.5700138,-1.7686425,-2.6617703,-2.6626005,-3.0213113,-3.003519,-2.9217863,-3.041535,-2.7146535,-2.9728034,-3.0397325,-3.05192,-2.9780273,-1.4627618,-1.4252127,-1.8731292,-2.1003392,-2.4012806,-1.3666124,-1.9700304,-2.1739924,-2.5288537,-2.6567838,-1.4594804,-2.5143461,-1.4006643,-2.3063703,-2.4975624,-2.5918589,-2.1020713,-2.457204,-1.4376374,-1.9476614,-2.220093,-2.5206223,-1.763361,-2.202001,-2.3254397,-2.4585967,-2.5786738,-2.5451336,-2.6700308,-2.736948,-1.1057839,-2.29259,-2.5299077,-2.6837497,-2.8637915,-2.5861049,-2.673387,-1.3355379,-2.1883337,-2.0393372,-1.9968616,-2.290032,-1.7197009,-2.0650215,-2.2112737,-1.9137098,-2.2569284,-2.0627327,-2.3846886,-2.5370665,-1.5779052,-2.2489924,-2.5317285,-1.99516,-2.4591866,-2.561339,-1.6244472,-2.273611,-2.374332,-2.5873466,-2.7313695,-2.7184024,-1.4734942,-2.0102878,-2.0841293,-2.288338,-1.8883415,-2.284233,-2.5957608,-2.7039404,-2.7020779,-2.8336277,-1.4196204,-2.03436,-2.4231195,-2.6565232,-2.6921797,-2.77324,-2.4076705,-1.8191639,-2.2703571,-2.1773868,-2.204762,-2.284051,-2.4849,-2.4994555,-2.5704656,-2.6202374,-2.6079702,-2.7539346,-2.8249574,-2.4687884,-1.7626914,-2.2960882,-1.6600119,-1.9949816,-2.1949918,-2.4789681,-2.6308913,-2.588526,-2.5512419,-2.6554847,-2.7978437,-2.7441187,-1.757631,-2.2994556,-2.4641066,-2.4139054,-2.480264,-2.6612184,-2.6911016,-2.6312037,-2.3807206,-1.8492569,-2.4052901,-2.4274147,-2.4251049,-2.4763255,-2.5184004,-2.6901698,-2.7210863,-2.756895,-2.7910094,-2.841309,-2.8198228,-2.9163966,-2.8251414,-2.7746348,-2.873176,-2.6998482,-2.4941247,-2.66204,-2.8015456,-2.7936096,-2.7844539,-2.7040257,-1.84358,-1.8137214,-1.7454797,-1.7685127,-1.6320391,-1.4245468,-1.580236,-1.6395882,-1.7244438,-1.7859448,-1.554853,-2.284176,-2.1087472,-2.0985627,-1.8052927,-1.8308946,-1.7274889,-1.7569375,-1.6652819,-1.8393413,-1.8910437,-2.0582256,-2.176465,-1.5612154,-1.8115431,-1.8976989,-1.9389604,-1.9449619,-1.8713496,-1.6392704,-1.6786429,-1.7695613,-1.5732739,-1.6810769,-1.7724618,-1.8187411,-1.7379593,-1.1813178,-1.1592458,-1.2508156,-1.3247802,-1.4013125,-1.5776979,-1.4763877,-1.572522,-1.5336064,-1.5319823,-1.9063364,-1.8554003,-1.8236984,-1.7758933,-1.7668848,-1.6690127,-1.5896398,-1.545815,-1.6306154,-1.7034514,-1.6377002,-1.6304162,-1.4515646,-1.4831463,-1.4691658,-1.4781677,-1.7500706,-1.6760478,-1.5969472,-1.5223844,-1.4708103,-1.6783868,-1.4696108,-1.5862048,-1.6463672,-1.6803772,-1.6284088,-1.549182,-1.6225812,-1.8312334,-1.7416188,-1.5350676,-1.5557774,-1.3578964,-1.4473598,-1.7190708,-1.6715387,-1.4190747,-1.284712,-1.4312024,-1.340669,-1.3950007,-1.5465344,-1.3755304,-1.4023966,-1.816296,-2.0275116,-1.0786617,-1.9330258,-2.19892,-1.978516,-1.6151619,-1.8011006,-1.6237977,-1.5735018,-1.9609066,-1.950296,-1.910412,-2.0654576,-1.6347051,-1.7761215,-2.0827694,-2.4215963,-1.9631172,-2.033051,-2.2858212,-2.4419112,-2.3065202,-2.2590804,-2.1103396,-2.0160658,-1.8022,-1.621168,-1.5801357,-1.6385491,-2.2389007,-1.9032019,-1.7649267,-1.8160572,-2.2380316,-2.0810266,-2.331572,-2.3852823,-2.3203416,-2.278133,-2.3423824,-2.2300465
+-0.8915518,-1.3419931,-1.9817089,-2.1656642,-2.194766,-2.497395,-2.5738034,-2.5585575,-2.7933488,-2.5926292,-2.6528676,-2.8314507,-2.7912452,-2.8514419,-2.8524637,-2.8708024,-2.915588,-2.9324927,-2.7644277,-1.7891394,-2.58399,-2.5935845,-2.6235986,-2.822383,-2.411988,-2.695772,-1.3513154,-2.1282077,-2.2007399,-0.8991991,-1.508946,-1.9638559,-2.53164,-2.705766,-2.9299235,-3.0706477,-2.7898474,-3.1189985,-0.5932024,-1.516574,-1.3941109,-1.9802121,-1.6276315,-2.1688948,-2.5986886,-2.7582831,-2.4700317,-2.8749635,-2.9445941,-2.7738233,-2.970745,-3.1201382,-1.3267816,-2.0463102,-1.9474665,-0.7741249,-1.183035,-0.49373177,-0.6825161,-1.4189702,-0.24299318,-1.1923634,-1.7192215,-1.8151795,-0.4347265,-1.3975712,-1.9851867,-2.3316705,-2.0433621,-0.84522897,-1.3461384,-0.09230633,-1.0035052,-0.45571485,-0.023891691,-0.46026024,-0.8296774,-1.352892,-1.7727392,-2.2395105,-2.1738126,-2.5726898,-0.032005873,-0.8442572,-1.5488541,-1.7897036,-0.65348035,-1.6741793,-2.0896122,-2.4276834,-1.3490278,-1.9956166,-2.408189,-2.5634584,-2.6211805,-2.5827332,-1.5085038,-0.21768937,-0.9258017,-1.6935434,0.19885519,-0.8485014,-0.19990385,-1.1511801,-1.842694,-2.2019978,-2.507757,0.086327344,-0.8141442,-0.45799947,-1.1219515,-1.284728,-1.267953,-0.68301016,-1.0660964,-1.6998123,-2.176241,-2.384993,-1.3378955,-1.4018928,-0.8472758,-1.0147768,-1.4515582,-1.7460537,-2.1440997,-0.99168664,-1.6564252,-2.2277188,-2.5720305,-2.7613525,-2.7299416,-2.6149516,-1.0969814,-0.41633537,-1.2458643,-1.9188464,-2.3960414,-2.658143,-0.34593266,-1.451038,-0.800049,-0.43602344,-1.4336299,-2.279726,-0.16420506,-0.19473094,-0.8901982,-1.6041683,-1.2345513,-1.8405367,-2.176033,-2.551185,-2.7787533,-2.8412402,-2.9573903,-3.0419497,-3.0260606,-1.6318895,-2.2080746,-0.64051014,-1.4773574,-0.4764562,-1.167773,-2.0131943,-2.4630845,-0.70218235,-1.5498337,-0.6127783,-0.14051427,-1.1418056,-1.8912743,-2.293738,-2.6412272,-1.4730668,-0.4601592,-0.69060695,-0.9362124,-0.55403453,-1.4651638,-2.282755,-2.5381813,-2.7131114,-2.7333956,-2.7246125,-2.9421272,-3.018844,-2.876936,-1.3215805,-1.9931377,-1.2341707,-2.1931715,-2.61523,-3.073001,-3.1924424,-2.368223,-2.8893404,-3.2259555,-3.293834,-3.0499303,-3.0676205,-3.3197496,-3.6074777,-3.484261,-3.519083,-3.671469,-3.6682653,-3.4805996,-3.4185019,-1.0308762,-2.2676272,-2.8957253,-2.7359576,-2.8220196,-3.0715165,-3.1353812,-3.1408257,-3.3465579,-3.4009392,-3.5808725,-3.62252,-3.6822984,-3.6858723,-3.6957314,-3.9078612,-3.5741973,-3.5082226,-3.7340744,-3.866815,-3.789658,-3.686448,-3.611895,-3.369574,-3.0645459,-3.261526,-3.1606922,-1.9723495,-1.8284127,-1.8432155,-2.154384,-2.2086825,-2.1651933,-2.515831,-2.7867656,-2.5487185,-2.3418713,-2.3367348,-2.4229274,-1.8032267,-1.9867374,-2.0055344,-2.2551887,-2.2625995,-2.2319381,-1.8822951,-1.3020821,-1.6327182,-1.727301,-1.7800803,-1.7156171,-1.5577416,-1.3907082,-1.2216057,-1.4958469,-1.6678082,-1.5085459,-1.4838045,-1.158032,-1.3490313,-0.9400236,-1.2286814,-1.3107629,-1.4478701,-1.3845458,-1.4742509,-1.4283292,-1.4909948,-1.4588385,-1.5509833,-1.4541692,-1.5057396,-1.5538807,-1.547167,-1.4888767,-1.5873617,-1.5491898,-1.5822732,-1.6571612,-1.5873905,-1.6072105,-1.6061668,-1.22012,-1.3378786,-1.3906902,-1.3859448,-1.4894572,-1.1991265,-1.1015542,-1.2734884,-1.3983508,-0.36721888,-0.6734496,-0.9648439,-1.1087973,-1.2733598,-1.3813704,-1.2600816,-1.444702,-1.5443393,-1.6030482,-1.6472026,-1.6624738,-1.6384115,-1.4865844,-1.6219112,-1.6058098,-1.5687072,-1.4201477,-1.4367253,-1.5435518,-1.4686307,-1.6639041,-1.5255141,-1.5617343,-1.7260039,-1.9740213,-1.0001782,-2.0257018,-2.3341627,-2.2325563,-0.90381485,-1.1821417,-1.6790508,-1.823469,-1.6332203,-1.7370754,-1.8636054,-1.9246382,-1.8123289,-1.7821171,-2.1590087,-1.7019358,-2.2411447,-2.493324,-2.7228575,-2.9120827,-2.3781857,-2.077758,-2.3516178,-2.3801105,-2.2934682,-2.0263953,-2.0138748,-1.8983072,-2.0119321,-2.1306412,-2.7517524,-2.197457,-1.9436256,-2.065558,-2.2444878,-2.3343217,-2.3329163,-1.2555591,-1.7391835,-1.9031296
+-0.9792642,-1.7882892,-2.443183,-2.7730594,-2.7731225,-2.3057365,-2.872301,-2.6938736,-3.074276,-3.2861233,-3.2759178,-3.3138127,-3.1886134,-3.2737474,-3.3095167,-3.2833705,-3.2461746,-3.0315032,-2.7668126,-1.8200098,-2.7274873,-3.0863547,-3.3523211,-3.3761587,-3.2455497,-3.3762097,-1.8086389,-2.0531106,-2.6975164,-1.2506791,-1.879732,-2.5040827,-2.9511437,-3.1540341,-3.3449516,-3.3405156,-3.3389435,-3.3450289,-1.7389637,-2.8093963,-2.6450448,-2.8955307,-2.5536122,-2.7328916,-3.1569319,-3.2985644,-2.9617822,-3.2607608,-3.3732383,-3.2162633,-3.2735467,-3.3775637,-3.2294786,-2.7737904,-1.7632316,-1.313985,-1.0810746,-1.4088086,-2.2600927,-2.6847467,-1.124313,-2.216981,-2.596212,-2.8788435,-2.6775978,-2.636146,-2.7853396,-2.8956456,-3.0608752,-2.9455914,-2.8749619,-0.1277393,-2.1100516,-2.3343472,-2.2478054,-0.9827327,-2.1895084,-2.4446647,-2.6787617,-2.8812146,-2.6104298,-2.9294548,-1.9866179,-2.4480727,-2.883561,-2.8400197,-0.40459973,-2.3618078,-2.5745468,-2.7214713,-1.0360521,-2.3698401,-2.7741833,-2.8043325,-2.7483468,-2.7439954,-1.2174546,-0.55451125,-1.8325797,-2.2755075,-1.8246561,-2.2766047,-0.4649485,-1.3853117,-1.9333084,-2.3524585,-2.715046,-0.6373857,-0.516689,-0.28994545,-1.0123475,-1.1630341,-1.3969942,-1.7132062,-1.9715873,-2.3705797,-2.6769996,-2.817156,-2.796321,-2.8476777,-2.932805,-2.9388773,-2.27524,-0.7450962,-1.9837908,-2.2996433,-1.8791734,-2.6646051,-2.8673909,-3.1508207,-3.0045574,-1.5729121,-0.966309,-0.67540735,-1.6409978,-2.0937252,-2.41359,-2.7292004,-2.087479,-2.5468493,-2.842268,-1.152502,-2.2893867,-2.860856,-3.032789,-2.3111222,-1.9155687,-2.5454693,-2.3667493,-2.8186436,-0.9728171,-1.9701663,-2.435407,-2.8471737,-3.1221118,-3.4074914,-3.2950008,-3.3178596,-3.2387805,-1.5273653,-1.4523963,-1.7630789,-1.9163965,-2.964387,-3.3023977,-2.0110674,-2.5771341,-2.809959,-0.6769654,-2.2342267,-2.837967,-2.975925,-2.861837,-2.9213057,-2.933441,-1.8374542,-2.4595978,-1.2922078,-2.6094975,-3.1274128,-3.3136306,-3.3968964,-3.4908886,-3.2428722,-3.4232035,-3.49583,-3.5394003,-3.4015956,-3.3943758,-2.8670568,-3.5894787,-3.8756337,-3.958826,-2.5738282,-3.130241,-3.6259103,-3.8954527,-3.6702905,-3.3080006,-3.3723807,-3.6071415,-3.7888432,-3.9494302,-4.1274333,-4.2279134,-4.2262397,-4.1472006,-4.082221,-3.1195135,-3.72258,-3.8698196,-3.7485614,-3.8564332,-4.139177,-4.0066733,-1.7498637,-3.2260861,-3.8376315,-3.9800386,-4.128195,-4.165066,-4.111018,-4.156803,-4.30517,-4.266283,-4.0032806,-4.174356,-4.3976097,-4.320171,-4.3074536,-4.2866197,-4.242693,-3.6503901,-3.5371633,-3.3721223,-2.9512756,-2.6321268,-2.8560991,-3.248654,-3.2937148,-2.4225533,-3.2429423,-3.4309556,-3.403132,-3.2783322,-3.4131446,-3.398477,-2.3833756,-2.779067,-2.8288312,-2.7817702,-2.7746449,-2.697775,-2.5605257,-2.4229913,-2.4949868,-2.450655,-2.3861113,-2.3310986,-2.4380035,-2.3644185,-2.1583366,-2.0447268,-2.0958624,-2.0974026,-2.1083894,-1.9234258,-1.8589092,-1.4217349,-1.4811465,-1.7666379,-1.7838778,-1.7753757,-1.9550864,-1.8484,-1.8969337,-1.5641423,-1.677656,-1.9669393,-1.935286,-1.9766034,-1.9774355,-1.9450718,-1.8807757,-0.94325775,-1.3967638,-1.79628,-1.8871347,-1.7920884,-1.7450974,-0.62412614,-1.1227971,-1.3517154,-1.3091917,-1.658404,-1.6390909,-1.7860028,-1.8407639,-1.7918639,-1.751578,-1.6258394,-1.8529643,-1.9717244,-1.9382259,-1.9691347,-1.7786201,-1.8404752,-2.1355052,-2.1210651,-2.1834455,-2.0031743,-1.9342283,-1.7890403,-1.9609622,-1.9606255,-1.8559054,-1.6446086,-1.8890234,-2.2600243,-2.2542863,-2.514377,-2.580473,-2.8047256,-3.147304,-3.6234426,-2.7163439,-3.3932052,-3.5865483,-3.4683828,-2.596284,-2.6002889,-2.8199835,-2.9160113,-3.4354339,-3.195771,-3.156538,-2.985509,-2.9581354,-3.4707417,-3.5126657,-2.6352944,-3.289654,-3.1666856,-3.102884,-2.8501692,-2.899925,-2.4027882,-2.8217769,-3.0196908,-2.737101,-3.1487586,-3.2600765,-3.2586818,-3.573333,-3.3184304,-3.1797676,-3.0876477,-3.159068,-2.1503763,-2.712787,-3.0428262,-3.0853534,-1.5660367,-1.7934477,-2.0925417
+-0.69870865,-0.49317387,-0.6353369,-0.8856051,-1.017252,-0.81343484,-1.1161913,-1.2543356,-0.94181716,-1.0976459,-1.4124242,-1.2181413,-1.2226573,-1.3249019,-1.3632385,-1.397176,-1.5045412,-1.2018043,-1.6579372,-1.6498114,-1.8140708,-1.6598761,-1.7743484,-1.7400218,-1.5286571,-1.6285201,-1.8054332,-1.5770909,-1.5886208,-1.5408996,-1.9315957,-1.9442618,-1.5966679,-1.6525453,-1.7029634,-1.6533897,-1.7125171,-1.717091,-1.7311294,-1.7255434,-1.7583686,-1.7548715,-1.6175797,-1.6736426,-1.6261328,-1.1406199,-1.6126891,-1.5538815,-1.6658027,-1.690603,-1.8817126,-1.9126102,-1.9428256,-2.0034673,-2.1465502,-1.7959093,-1.433803,-1.2366574,-1.5904617,-1.8066773,-1.9863569,-2.103706,-2.206363,-2.2876635,-1.1945657,-1.8204615,-1.9700559,-2.0993433,-2.3012755,-2.3489413,-2.447681,-2.527846,-2.5872605,-2.6513214,-2.5242143,-2.6825643,-2.7949853,-2.7181864,-2.804357,-2.7775009,-1.1000272,-0.9748818,-1.5340029,-2.0135875,-2.228006,-2.1847882,-1.9824446,-2.3759155,-2.5438812,-2.4276938,-1.4040684,-2.1057613,-2.1438785,-1.8162483,-1.9393896,-2.0352492,-2.1867642,-1.6422904,-2.2006974,-2.4111886,-2.420588,-2.4645338,-0.93756926,-1.8440938,-2.0527334,-2.3546448,-2.4892387,-2.467575,-2.0590713,-1.3376752,-1.881384,-2.0268807,-2.2365274,-2.393566,-1.9310064,-2.3436844,-2.526651,-2.677496,-2.7953634,-2.8305674,-2.7957435,-2.7576466,-0.85687596,-1.7463397,-1.9747556,-2.1683955,-0.71091783,-1.8693007,-1.9616565,-1.977394,-2.0599878,-2.0600824,-1.906203,-1.4045694,-1.9008791,-2.1634123,-2.3144135,-2.3856955,-2.4508886,-2.5244427,-2.6217558,-1.3170323,-2.164969,-2.3438616,-2.3918304,-1.7955465,-1.9032036,-2.150018,-1.6458012,-1.9674269,-1.9088546,-2.1196504,-2.1815796,-2.3836248,-2.3870382,-2.4240875,-2.453034,-2.550582,-2.5504522,-2.2241054,-1.2433006,-1.9012398,-1.4098823,-2.018217,-2.04664,-1.8685904,-1.6390004,-1.9608847,-2.0453725,-2.1719685,-2.3323138,-2.2855783,-1.6884961,-2.0069435,-2.099317,-2.2851243,-2.3297977,-2.3184364,-2.393886,-2.3895068,-2.5869384,-2.6595187,-2.719173,-2.5475512,-2.5920384,-2.7442222,-2.9453373,-2.6649957,-1.5427322,-1.5804034,-2.118772,-2.2829237,-2.4011526,-2.306909,-2.4105687,-2.3685093,-2.4146583,-2.364096,-2.427411,-2.5384905,-2.7538352,-2.9069576,-2.8278008,-2.7884974,-2.770175,-2.939444,-3.033199,-2.9668508,-2.4720788,-2.8776789,-2.6935048,-2.6781683,-2.9673643,-3.015133,-2.9596076,-2.4617658,-2.803171,-3.0358613,-2.9714136,-3.1209416,-3.146133,-2.930224,-3.22386,-3.1395876,-3.2156842,-3.098361,-3.088623,-3.0681896,-3.2073183,-3.265016,-3.0701952,-3.0538564,-2.7233577,-2.6469893,-2.7493954,-2.8751802,-3.0338945,-2.917224,-2.9572172,-2.8948717,-2.5070758,-2.513245,-2.9779844,-2.8306692,-2.6559405,-2.712826,-2.6809497,-1.6917453,-2.2171078,-1.8427663,-1.5396389,-1.1778554,-1.1480619,-1.9218785,-2.2900586,-1.6219069,-1.5237364,-1.4312886,-1.5498382,-1.7913305,-1.4599643,-1.0021515,-0.95067775,-1.2465093,-1.3125178,-1.274435,-1.5476483,-1.2826098,-1.4567398,-1.6715152,-1.4841093,-1.5212177,-1.4410237,-1.4927995,-1.4691092,-1.4261494,-1.4006933,-1.7621697,-0.81879467,-0.2852064,-0.4679701,-0.58631593,-0.64026517,-0.85569197,-1.0580248,-1.2329398,-0.8003122,-0.94664925,-0.9939744,-0.9488978,-0.24116716,-0.5778417,-0.44675943,-1.1716815,-1.2983025,-1.4259316,-1.8379256,-1.6616069,-1.9000851,-1.8651469,-1.4980167,-1.1200595,-0.9909641,-1.242833,-1.3776854,-1.8388544,-2.091359,-1.4707983,-1.3078521,-1.8117615,-1.55728,-1.8788123,-2.0580304,-1.710413,-1.5309421,-1.8453846,-2.1215315,-2.2504654,-2.1880512,-2.1718345,-2.0660405,-2.143239,-2.3544934,-2.4093986,-2.3900435,-2.0768728,-2.4919276,-2.3526406,-2.5171816,-2.4307656,-1.8603592,-2.1523604,-2.1320891,-2.2110982,-2.2648227,-2.2074964,-2.0300972,-1.9362643,-2.049388,-2.1092193,-1.8060489,-2.4351146,-2.2780747,-2.2039766,-2.134603,-2.2362654,-2.482624,-2.221927,-2.221433,-2.0144663,-2.0559444,-2.1706543,-1.9630355,-2.1306045,-2.267618,-2.2627702,-1.8927485,-1.3926877,-1.6177446,-1.693547,-2.0773695,-2.022052,-1.7372816,-1.5838939,-1.580742
+-0.22550961,-0.4953756,-0.83936507,-1.1509736,-1.2907311,-1.2946559,-1.5221645,-1.5306476,-1.5195304,-1.534041,-1.6874803,-1.7020816,-1.6422487,-1.7268926,-1.8380119,-1.8849838,-2.0636258,-1.5865263,-1.6870339,-1.498098,-1.812517,-1.9300133,-1.9822816,-2.0775175,-1.9900655,-0.8167171,-1.2580334,-1.6892551,-1.9974102,-1.7492579,-1.9170158,-2.0401542,-1.8346062,-1.8155621,-1.85862,-1.8182756,-1.9465139,-1.3231529,-1.388304,-1.6748592,-1.779269,-1.9700993,-1.8243037,-1.7260853,-1.7728792,-1.0873977,-1.7175957,-1.7814323,-1.9426425,-1.7765406,-1.958256,-1.9215008,-2.0229747,-1.756109,-1.8481518,-1.0802583,-1.2732857,-1.8412067,-1.9535404,-1.8469796,-1.7845578,-1.942975,-2.1140494,-2.0865035,-1.1633035,-1.8678046,-1.9106761,-2.1718502,-2.0121715,-2.3387108,-2.476101,-2.606908,-2.6135902,-2.2702646,-2.5794508,-2.7618876,-3.1543639,-3.037064,-3.2183836,-3.289404,-3.186111,-2.1226752,-2.5940242,-2.861247,-3.190553,-3.1915464,-0.43901822,-1.7491587,-2.6499758,-2.9740746,-2.7271864,-2.7483673,-1.1281648,-0.82346386,-1.3573095,-1.4735702,-1.746571,-1.6654619,-1.6456178,-1.9037753,-1.9139258,-2.1360261,-0.7248572,-1.0456706,-1.6040424,-1.8855686,-1.8420776,-1.9949144,-2.196732,-2.3769245,-2.4953134,-2.6061954,-2.744386,-2.9512744,-3.0905824,-0.73424727,-2.1201775,-2.55144,-2.7752566,-2.9351647,-3.1066105,-1.8875862,-0.40150577,-1.356057,-1.7056677,-2.081725,-2.3855538,-2.6819234,-2.709312,-2.922802,-2.7957783,-2.9108572,-2.9946926,-2.329074,-2.7986376,-3.1977875,-3.4177675,-3.426929,-3.4825675,-3.5342197,-3.361298,-1.6363789,-2.6643758,-3.008318,-3.0830145,-2.7165222,-1.1006511,-2.0897474,-2.4361238,-2.7295315,-2.9381773,-2.7845283,-1.6402178,-2.2883418,-2.681582,-2.8509095,-3.086188,-3.1985588,-3.2165742,-3.2891722,-1.0022827,-1.195042,-0.5807681,-1.6901249,-1.9661974,-2.1293128,-1.7845424,-2.1154847,-1.7502052,-2.058808,-2.4559784,-2.5000267,-2.475173,-2.6849196,-2.9439147,-3.17069,-3.2015877,-3.1369762,-3.0986938,-3.169312,-3.3993134,-3.5746894,-3.6790767,-3.7036974,-3.7565982,-3.8940191,-3.8812423,-3.4532201,-1.2867992,-1.5611428,-2.144751,-2.5321522,-2.9249551,-2.907489,-2.7209086,-2.538733,-2.7525878,-2.8541477,-2.8925395,-2.9591541,-3.0270047,-3.3788934,-3.2783651,-3.3439693,-3.3420358,-3.5121787,-3.6859126,-3.7414272,-3.2054787,-3.5496976,-3.5982666,-3.5910912,-3.841351,-3.9141555,-3.8897648,-3.6000896,-1.8930287,-3.0185595,-3.380204,-3.49779,-3.6830015,-2.115321,-2.7363434,-2.9282134,-3.0837283,-2.9601898,-3.0889297,-3.1611354,-3.2995062,-3.3794937,-3.4871073,-3.616532,-3.1095843,-3.1052015,-3.161275,-3.3851285,-3.536365,-3.3618586,-3.3217268,-3.3141112,-3.3977132,-3.1931558,-3.5020814,-3.616146,-2.887841,-2.9969661,-3.1484835,-1.7987605,-2.3349357,-2.0996437,-2.3116956,-2.0229728,-2.0925555,-1.887568,-2.1418715,-1.9085246,-1.9626721,-1.9947652,-2.0289712,-1.661849,-2.0347,-2.0047522,-1.8306849,-1.6730788,-1.5383503,-1.4786502,-1.6313018,-1.6197255,-1.8867176,-1.8833582,-2.210734,-2.3427773,-2.2215867,-2.287045,-2.335267,-2.522223,-2.4830167,-2.8406992,-2.6493545,-2.5107508,-2.380692,-2.2379174,-2.1958475,-1.7502681,-1.6559523,-2.2900825,-2.409367,-2.4814,-2.4691663,-1.9491268,-1.9971951,-2.1577482,-1.9846429,-2.2848473,-2.3958135,-2.5824618,-2.2799802,-2.1640153,-2.3850408,-2.396721,-2.3594851,-2.0478163,-2.0899825,-2.245582,-2.2962987,-2.5669808,-2.7238803,-2.5590036,-2.6433067,-2.3077846,-2.193163,-2.227361,-2.4710674,-2.7769244,-2.55122,-2.086659,-2.5358062,-2.8763206,-2.83889,-2.793081,-2.9013777,-2.65062,-2.7778296,-2.9446483,-3.0534842,-3.0842514,-3.1231298,-3.2569664,-3.3640451,-3.0148458,-2.61264,-2.835134,-2.9007773,-3.125267,-1.6825281,-2.1054654,-2.0997095,-2.4418828,-2.670748,-2.7714264,-1.9335209,-2.3959188,-2.3629985,-2.5626447,-2.4856768,-2.5175786,-2.9059908,-2.8260374,-2.6316986,-2.4227095,-2.7334285,-2.7801034,-2.641711,-2.920464,-3.0648646,-2.7847753,-2.7100267,-1.6032571,-1.9583875,-1.7283586,-1.7170676,-2.0917451,-1.1874224,-1.2913578,-1.8934664
+-0.6017302,-0.8029442,-0.9472971,-1.3341523,-1.42286,-1.8138134,-1.7558581,-1.7372679,-1.7131375,-1.6996309,-1.2828497,-1.7382169,-2.2220497,-2.390429,-2.4825058,-2.261923,-2.3763897,-2.5737731,-2.7854414,-2.8230715,-2.7667396,-3.0181975,-3.016101,-2.8873734,-2.9756336,-2.962792,-2.2928817,-2.6888309,-2.8239543,-2.002093,-2.4105465,-2.7648678,-2.7906132,-2.5834854,-2.642795,-2.7611566,-2.76954,-2.9811032,-2.844078,-2.9893644,-3.079536,-3.1636443,-2.871797,-3.2080064,-3.1642435,-2.0036542,-1.9840747,-2.4557457,-2.7881405,-2.7647505,-2.8795872,-3.0245357,-3.0006304,-2.774178,-2.9119368,-2.9466145,-2.8938918,-2.9894,-3.1215284,-3.07683,-3.1074162,-3.090409,-3.24829,-3.1706853,-3.3469539,-3.3943622,-3.4168677,-3.513278,-3.4904976,-3.4689388,-3.4570043,-3.4689631,-3.1450338,-3.5234811,-3.4386945,-3.2634056,-3.5529857,-3.5115845,-3.5727754,-3.5877385,-3.5379863,-3.5251198,-3.435965,-3.5065253,-1.4884058,-2.932342,-3.0912278,-3.3776612,-3.44336,-3.5516295,-3.315483,-3.0440097,-3.179312,-2.197609,-2.4176764,-2.9068942,-3.0739956,-3.0554757,-3.1672106,-3.2999616,-3.292796,-3.279645,-2.998107,-3.1199048,-3.2756004,-3.4588573,-3.531999,-3.4886026,-3.544326,-3.6147065,-3.5613537,-3.5971224,-3.6170478,-3.665183,-3.671992,-3.0644584,-3.402288,-3.363698,-3.6234741,-3.65173,-3.7339709,-3.3190002,-3.4904265,-3.6217122,-3.6338325,-3.73899,-3.7330256,-3.1790047,-3.441008,-2.3000998,-3.0817852,-3.335466,-3.3992715,-2.4431355,-3.3172898,-3.4447021,-3.5340834,-3.6482651,-3.6554148,-3.6775868,-3.574677,-3.6826894,-3.8018184,-3.7720516,-3.2266815,-3.4817386,-3.6654592,-3.6304803,-3.707647,-3.722874,-3.4174635,-3.776799,-2.4545074,-3.438414,-3.5326295,-3.5458846,-3.6260347,-3.6243432,-3.5711524,-3.5804126,-2.9679742,-2.297257,-2.400393,-3.131454,-3.2975776,-3.4388156,-3.584948,-3.3634694,-2.0749142,-2.9772108,-3.1429524,-3.2201867,-3.1892376,-3.2177596,-3.3428092,-3.4805205,-3.5054798,-3.201028,-3.1785836,-3.318346,-3.5938213,-3.664548,-3.7618933,-3.781272,-3.8535614,-3.80867,-3.7000842,-2.675738,-3.3155713,-3.2681627,-3.2381067,-3.5184314,-3.546401,-3.5245824,-2.065842,-2.9866714,-3.0321865,-3.0492184,-3.1144056,-3.0326688,-3.3264341,-2.3155522,-2.675918,-2.9363973,-3.0493479,-3.133532,-3.2732153,-3.2141,-3.2217891,-3.3607574,-3.2561631,-3.1801906,-3.4460998,-3.3836153,-3.278143,-3.3310966,-2.4547873,-3.0691586,-3.3001416,-3.324163,-3.2271724,-2.9287982,-3.2200918,-3.3081737,-3.4348845,-3.0120795,-3.2006946,-3.323033,-3.5136285,-3.483411,-3.2990708,-3.3570733,-3.0034695,-2.8535767,-3.1047642,-3.1654706,-3.3637133,-3.304455,-3.370774,-3.1764846,-3.1373987,-3.0713334,-3.3259125,-3.3581367,-2.9411817,-3.1053088,-3.0948718,-2.9249632,-3.1705742,-3.187029,-2.9349966,-2.3789117,-2.1074347,-2.6722808,-2.9561577,-2.8175335,-2.9351292,-2.4077766,-2.182606,-2.626327,-3.066423,-2.037351,-1.9534179,-1.9903883,-2.291234,-2.5080824,-2.9556592,-3.0260668,-3.0504365,-2.96981,-2.757328,-2.9719412,-2.6900983,-2.3408096,-2.7607367,-2.8437858,-2.996498,-3.1169362,-2.2522087,-1.952161,-1.9605716,-1.8637127,-1.923026,-2.1525474,-2.8528552,-3.165067,-3.3146045,-1.2898961,-1.9857565,-1.5143615,-2.227335,-2.4341016,-2.7455103,-2.6523094,-2.7991972,-2.891467,-2.5558934,-2.5475917,-2.663525,-2.456915,-2.5528154,-2.0100086,-1.9620281,-2.4171708,-2.483519,-2.6264825,-2.5420575,-2.1337225,-1.8998259,-2.0202727,-2.5530224,-2.7283459,-2.9866452,-2.8679075,-2.0815587,-2.530896,-2.979709,-3.0589428,-2.6653402,-2.7165647,-2.719809,-2.5426726,-2.7782838,-3.03721,-3.014198,-2.9577537,-2.9432905,-3.0779898,-3.0551708,-3.0133572,-2.3789005,-2.4848707,-2.747272,-2.9228559,-2.759782,-2.3045368,-2.1662037,-2.3865447,-2.6184464,-2.6126459,-2.0848389,-2.169826,-2.5954318,-2.6097972,-2.66468,-2.2172203,-2.6580353,-2.6757302,-2.130042,-2.558841,-2.8875492,-2.7956724,-2.6987863,-2.9067974,-2.7003899,-2.5468483,-2.5063553,-2.3687272,-2.1600175,-2.4133215,-2.1302137,-2.3059435,-2.3603427,-2.7779138,-2.6795375
+-0.6513725,-0.87143445,-1.0796064,-1.2468253,-1.3641716,-1.5624777,-1.4394253,-1.2889444,-1.5130723,-1.5417167,-1.4790398,-1.5930383,-2.0158281,-2.054758,-1.9045746,-1.9043634,-1.908648,-1.9862155,-2.035495,-2.1612976,-2.0974073,-2.265028,-2.462244,-2.4582958,-2.5964348,-2.6456409,-1.371294,-1.9111168,-0.9141185,-1.3709892,-1.876673,-2.0882733,-2.0177693,-1.9356788,-1.9765962,-2.082954,-2.2186666,-2.5144367,-0.5620904,-1.6709449,-1.9184569,-1.4042834,-1.8157486,-2.0335157,-2.0451376,-1.9324367,-1.8715004,-1.9548749,-2.0819383,-1.8671161,-1.9748963,-2.1051822,-2.167564,-1.4028475,-0.98756784,-1.7254653,-1.8181769,-1.918541,-2.1069596,-2.1766267,-2.2548757,-2.3825355,-2.4644742,-2.3848622,-2.0681856,-2.2692757,-2.3686883,-2.4832926,-2.5244408,-2.645125,-2.701889,-2.7316983,-2.465626,-2.6088638,-2.7127275,-2.5473752,-2.5357869,-2.5215878,-2.4410033,-2.5514114,-2.7132983,-2.6757514,-2.6744661,-2.6156769,-2.418009,-2.6062796,-2.7026832,-2.3632088,-2.448303,-2.6184525,-2.705466,-2.394843,-2.644858,-1.7298108,-1.2154335,-2.0001092,-2.1503992,-2.3470368,-2.366848,-0.7885936,-1.975808,-2.3912053,-2.6061356,-2.732746,-2.5712037,-1.8488752,-2.3150969,-2.6164994,-2.7468057,-2.8063912,-2.8144093,-2.8411715,-2.831667,-2.7193708,-2.4859967,-2.3412507,-2.3400826,-2.518878,-2.6651878,-2.3413558,-2.4229496,-2.383232,-2.6570468,-2.8732913,-2.9458876,-2.9413466,-2.9322653,-0.95369714,-1.292369,-1.6797553,-1.9454018,-2.3275084,-2.4886928,-2.3513076,-1.585812,-1.7121476,-1.9407198,-2.0985367,-2.330536,-1.5905796,-1.7608804,-1.8725212,-2.146973,-2.4199028,-2.5315146,-2.7168968,-2.7771897,-2.7236404,-2.5538502,-2.671304,-2.528461,-2.6031144,-2.7769647,-2.7703023,-2.7057319,-2.93652,-2.9469504,-2.9171891,-2.8493087,-2.8509812,-2.4995835,-2.334282,-2.2319772,-2.5349,-2.8209743,-2.8854952,-2.4205923,-2.0246446,-1.5901965,-1.3454071,-2.0996408,-2.3258066,-2.4172273,-2.620103,-2.7800744,-2.846982,-2.8590937,-2.930157,-2.4484017,-2.739352,-2.925677,-2.784605,-3.0084789,-3.1660857,-3.1367702,-3.1278484,-3.102304,-1.1724056,-2.0488923,-2.4855485,-2.4711924,-2.7586927,-3.0260787,-3.0317545,-1.628833,-1.6390985,-1.9042091,-2.2899623,-2.441397,-2.511441,-2.5427692,-2.705786,-1.66937,-2.241864,-2.4546142,-2.5290809,-2.768961,-2.844219,-2.8793786,-2.911895,-2.978878,-2.9657822,-3.019896,-3.0753536,-3.1016393,-3.0755239,-3.064942,-3.0358264,-3.1732483,-3.2034574,-2.112652,-2.4407926,-2.7207503,-2.8603494,-2.9387841,-2.7517364,-2.8745832,-2.9711971,-3.0741525,-3.1006927,-3.0694351,-2.5528555,-2.5910745,-2.6019323,-2.954271,-2.9652092,-1.4229914,-2.4192975,-2.6226118,-2.615571,-2.6185236,-1.6203355,-2.3414845,-2.5155573,-2.2902265,-2.6057777,-2.4528856,-2.3664145,-2.5047789,-2.2168286,-2.5623379,-2.2159762,-1.7345443,-2.104492,-2.3771253,-2.6170182,-2.6612878,-2.5859342,-2.1938822,-2.2573996,-2.528277,-1.9414959,-1.5992185,-1.932695,-2.1609755,-2.3957486,-2.0505097,-2.3062086,-2.4571762,-2.2030227,-2.4702716,-2.4412932,-2.549777,-2.2594683,-2.359464,-2.564807,-2.411918,-2.6835816,-2.3391218,-2.346009,-1.8888494,-1.6106621,-1.6944045,-1.8293844,-2.226634,-2.359922,-2.3285213,-2.466721,-1.7697387,-2.015546,-1.8576543,-2.13974,-2.2846112,-2.167645,-2.2999277,-2.3627024,-1.463199,-2.1117973,-2.1744146,-2.2026064,-1.98094,-1.8193158,-1.8832606,-2.195227,-2.2952104,-2.3599725,-2.2682729,-2.4264212,-2.0735478,-2.2010155,-2.404339,-2.468388,-2.3153276,-2.2728996,-1.8980404,-2.13697,-2.1584375,-2.1643672,-2.1930346,-0.83509445,-1.763196,-1.9574314,-2.0746572,-2.146184,-2.126175,-2.179753,-2.0656638,-2.1584282,-2.3182836,-2.1617317,-2.0099268,-2.2320726,-2.3484292,-2.359927,-1.9882802,-1.939046,-1.9651805,-2.0068128,-2.244647,-2.1265783,-1.1916155,-1.8522377,-1.9116076,-1.726137,-1.3875092,-1.0884098,-1.4710952,-1.869075,-1.4372098,-1.8587143,-2.0889125,-1.9511982,-1.9149166,-1.7983366,-1.808979,-1.7661477,-1.8747333,-1.507172,-1.0981139,-1.7653785,-1.3180354,-1.7911096,-1.5737464,-1.7535672,-1.878132
+-0.556514,-0.54824907,-0.5973607,-0.6414035,-0.70146924,-0.8435318,-0.94861597,-1.0868462,-1.0900779,-1.0037788,0.29487845,-1.0871032,-1.3387183,-1.2424749,-1.1790537,-1.1968743,-1.2201971,-0.87456363,-1.2391124,-1.1636876,-1.2596108,-1.2791778,-1.158476,-1.1097436,-1.0805975,-1.1600727,-1.0294789,-1.230635,-0.80403787,-1.2485596,-1.5091336,-1.4455287,-1.3852135,-1.331439,-1.2832679,-1.2063164,-1.0948011,-1.1474417,-1.0470506,-1.1842132,-1.2416579,-1.1125547,-1.2568643,-1.2705051,-1.197584,-1.251222,-1.2592052,-1.1858445,-1.1448325,-1.1731862,-1.2335416,-1.202759,-1.2342798,-1.3144186,-0.9739657,-1.1197871,-1.2534968,-1.2826661,-0.7012935,-1.0636976,-1.2791072,-1.30439,-1.2451128,-1.2116224,-0.9194796,-1.2048442,-1.294252,-1.3443323,-1.3779603,-1.4289845,-1.4744483,-1.6068679,-1.3081807,-1.0337969,-1.3116413,-1.3838123,-1.4418911,-1.5622016,-1.5082096,-1.4913776,-1.5945345,-1.6300699,-1.701751,-1.7294263,-1.7634542,-1.8216453,-0.9355436,-0.7129992,-1.3178989,-1.3618172,-1.4793854,-1.3595448,-1.3146732,-1.3974756,-0.93702084,-1.243253,-1.4449633,-1.5252029,-1.6155323,-1.4570011,-1.4434758,-1.5456028,-1.6837672,-1.8358225,-0.29487595,-1.07173,-1.3151966,-1.408591,-1.537368,-1.5811497,-1.6673635,-1.7611994,-1.8370517,-1.8534584,-1.8324195,-1.1183773,-1.5203978,-1.6882223,-1.7401928,-1.6945801,-0.5425851,-1.2529981,-1.3616425,-1.5563767,-1.7045335,-1.8113978,-1.8658072,-1.9173715,-1.3436269,-0.9007929,-1.1681708,-1.3010112,-1.3742781,-1.4196957,-0.8688198,-1.4775103,-1.6564776,-1.7247114,-1.447008,-1.2631778,-1.4168745,-1.1863692,-1.8310658,-1.5885991,-1.4391884,-1.4568187,-1.5414437,-1.5412201,-1.5570728,-1.5546077,-1.5774103,-0.97632605,-1.4072622,-1.365688,-1.4054593,-1.4378062,-1.544125,-1.5948882,-1.7162807,-1.7895507,-1.8008572,-1.8343122,-1.7867986,-1.6801174,-1.8176895,-1.8690424,-1.4810565,-1.5124036,-1.6837014,-1.4443542,-0.7353485,-1.3774315,-1.4064068,-1.4971441,-1.5920568,-1.7064333,-1.7198229,-1.807372,-1.863055,-1.8164922,-2.0079026,-1.9503227,-2.1017904,-2.4475706,-2.429666,-2.3456578,-2.320719,-2.2188826,-2.2039628,-2.2720733,-2.136773,-2.1871352,-2.4753203,-2.3901296,-2.3127108,-1.4591063,-1.1663462,-1.6933069,-1.7755014,-1.8208026,-1.9576706,-2.0691924,-1.1765777,-1.7454364,-1.8983012,-1.9012235,-2.0768542,-2.1926785,-2.2184887,-2.1552043,-2.1551228,-2.1738567,-2.238562,-2.2841036,-2.2194633,-2.266634,-0.5768861,-1.8676463,-2.0459561,-2.128,-1.0948054,-2.0382323,-2.031867,-2.1592097,-2.1747863,-2.1449134,-2.0987697,-2.167182,-2.3007944,-2.2740295,-2.2111611,-0.4291141,-1.977372,-1.9633387,-2.048777,-1.5294813,-1.2037071,-1.7545527,-1.8427526,-1.8380412,-1.7171172,-1.0108668,-1.6428928,-1.8120223,-1.6228652,-1.6410962,-1.1865474,-1.5137577,-1.7262503,-1.5522453,-1.6898984,-1.755799,-1.4557936,-1.5690424,-1.5895308,-1.4094437,-1.6780391,-1.7337862,-1.4979746,-1.478845,-1.603727,-1.7708119,-1.4330183,-1.7319512,-1.8122977,-1.8243264,-1.727347,-1.2271359,-1.4675854,-1.348601,-1.695234,-1.7635361,-1.7097174,-1.6096998,-1.4667877,-1.6624604,-1.303834,-1.6447695,-1.7686416,-1.5690795,-1.6013105,-1.496683,-1.6947429,-1.8236538,-1.7587464,-1.9128933,-1.8182138,-1.6782967,-1.634937,-1.5773374,-1.2449207,-1.7635117,-1.703901,-1.699581,-1.6623896,-1.7250949,-1.6409625,-2.0064363,-1.9516448,-1.7211872,-1.7306278,-1.5834358,-1.6024806,-1.6585556,-1.6058131,-1.5356387,-1.4886369,-1.5134434,-1.3932887,-1.6186528,-1.5008851,-1.4799246,-1.2471324,-1.5335013,-1.5632402,-1.4542822,-1.4403454,-1.4689039,-1.4278541,-0.9206311,-1.6245762,-1.7080618,-1.6711568,-1.5150658,-1.5990144,-1.6104414,-1.6699075,-1.6430484,-1.6570883,-1.5893492,-1.6676341,-1.3629929,-1.3562217,-1.4742067,-1.4214447,-1.4443823,-1.4108671,-1.4013313,-1.3462796,-1.3717533,-1.2705482,-1.5586829,-1.3763043,-1.4086903,-1.3436604,-1.2578157,-1.1971167,-1.5604466,-1.361046,-1.3422173,-1.3425668,-1.3113799,-1.2141339,-1.2196208,-1.2524137,-1.1947135,-1.2238847,-0.96313125,-1.3167453,-1.6599454,-1.6455184,-1.547556,-1.4543979,-1.8435987,-1.8503312
+0.17967927,-0.9141355,-1.8184131,-2.1146007,-1.9104345,-1.8672577,-2.0133433,-1.9630212,-1.6257796,-1.3152174,-2.010432,-3.3584898,-3.4030278,-3.3081806,-3.2362075,-2.858674,-2.8330593,-3.3153174,-4.0244455,-4.0728774,-3.992587,-3.9144435,-3.7751231,-3.346952,-2.990988,-2.6423545,-2.547051,-3.7749114,-3.5456765,-3.3773766,-4.1849513,-4.2628994,-4.3063145,-4.2369003,-4.079344,-3.711086,-3.0873594,-2.6124759,-2.325357,-3.096553,-3.998159,-3.6848147,-3.546597,-2.949267,-2.4481769,-1.9387487,-2.2553575,-2.0931969,-2.4608476,-2.9808602,-2.953744,-2.494946,-2.1805892,-1.857113,-1.7107044,-1.9829057,-3.4415684,-3.5598962,-3.1667569,-2.8425899,-3.559318,-3.9332561,-4.0899186,-4.112857,-4.128541,-4.093918,-3.8841772,-3.6207664,-2.9162483,-2.4342544,-2.0551434,-1.7679647,-1.7079638,-1.9489378,-3.0450435,-2.701798,-2.378585,-2.177823,-1.917679,-1.7542653,-1.6705484,-1.6694107,-1.7702246,-1.7873756,-1.8283552,-1.8918449,-1.927356,-1.3609387,-1.6220908,-1.7096328,-1.7879034,-1.919183,-2.0325384,-2.1112783,-2.142915,-2.1618557,-2.1499379,-2.1580226,-2.157598,-2.1849663,-1.8056158,-1.4819309,-1.7420183,-1.9723994,-2.0956202,-1.4756854,-1.5029868,-1.7973944,-2.0039015,-2.1257243,-2.2226076,-2.2565575,-2.2707224,-0.6008598,-1.3649337,-1.5673702,-1.674888,-1.2463847,-1.5913045,-2.0451443,-1.9570209,-1.7496067,-1.6967098,-1.7440716,-1.8226115,-1.9259561,-2.0002835,-0.6532007,-1.6435174,-1.5823512,-1.6211435,-1.7732488,-1.8590637,-1.5996977,-1.2126042,-1.621185,-1.960291,-2.681882,-3.1325977,-3.4195733,-3.8548403,-3.789775,-3.8868818,-3.9066632,-3.932783,-3.460484,-3.141788,-2.6012404,-2.024303,-1.9205341,-2.100654,-1.824604,-1.7268544,-1.4486076,-1.5689121,-1.646027,-1.6528052,-1.6621429,-0.76838726,-1.6808348,-1.6473597,-1.6190203,-1.6373616,-1.6020435,-1.6631876,-1.7728314,-1.9451267,-2.0957885,-2.124631,-1.7989833,-1.1913761,-1.6488131,-1.8206016,-1.9037257,-2.0313263,-2.0820928,-2.1254704,-2.1746864,-2.2346554,-2.2436335,-2.4017425,-2.3330505,-2.3486996,-2.52507,-2.5364127,-2.4834878,-2.5309415,-2.4408793,-2.424602,-2.4359126,-2.4241111,-2.3976898,-2.5874152,-2.6176028,-2.4219654,-0.42540196,-1.5644791,-1.8208266,-1.7963736,-1.8011914,-1.7716233,-1.7216189,-1.5918127,-1.6645244,-1.7284935,-1.7132822,-1.7457058,-1.8601938,-1.9758111,-2.0300093,-2.0987854,-2.1207356,-2.1267931,-2.19442,-2.2027953,-2.2261868,-1.7067956,-2.0511947,-2.2024598,-2.3640585,-1.1311661,-1.9648744,-2.027995,-2.0360205,-2.06256,-2.1324635,-2.1730428,-2.2199144,-2.1972783,-2.2811298,-2.2668324,-1.0214546,-1.9189645,-1.9791228,-1.9666904,-1.7518619,-1.1100892,-2.4399028,-2.6533773,-2.8023121,-2.9571452,-2.9693797,-4.0426254,-3.9200914,-3.8397408,-3.4721594,-3.5166674,-3.992128,-4.0164976,-4.0492077,-4.1333437,-4.0796614,-3.8802748,-3.5367477,-3.3710513,-3.7328656,-3.5241241,-3.2403734,-3.060038,-2.8793511,-3.063191,-3.6282964,-2.5825646,-1.9794341,-1.9491336,-2.2789433,-2.3728223,-2.6771765,-3.8158488,-3.9093893,-4.1072865,-4.3937283,-4.2428694,-4.21548,-3.726804,-3.909616,-3.6041136,-4.339999,-4.3623333,-4.176674,-3.7971408,-2.9866095,-2.0506885,-2.175314,-2.2152348,-3.3279433,-3.6261377,-3.5902379,-3.1128876,-3.2047954,-3.213767,-4.2084556,-4.014743,-4.464029,-4.626506,-4.681923,-4.1747475,-4.477785,-4.634409,-4.341255,-4.369714,-4.048264,-3.7672584,-3.5582623,-3.354144,-3.4031177,-3.366154,-3.1221457,-3.670805,-3.1874037,-2.6171603,-3.5356178,-3.7792697,-3.7473004,-3.695853,-3.1778197,-3.0073395,-3.0031385,-2.4374442,-2.446469,-3.6265843,-3.9085033,-3.895403,-3.706059,-3.3451617,-3.2216332,-3.7466373,-3.919323,-4.0330515,-3.9274952,-4.030896,-3.233688,-3.5558712,-4.205798,-4.1742077,-4.272931,-3.8594298,-3.5215316,-3.0830865,-3.3859782,-3.6891537,-4.090312,-3.2836564,-2.9974952,-2.8796852,-3.5817177,-3.3910952,-3.9987993,-3.7307396,-3.469952,-3.150425,-2.9628825,-2.5019932,-2.3592114,-2.2883482,-1.9617504,-1.71761,-1.5521082,-2.7095466,-3.7131248,-3.5837305,-3.1057901,-2.992258,-3.4060946,-3.4287932
+-1.0639157,-1.6719412,-1.9042587,-1.8568541,-1.7207154,-1.7903509,-1.9330523,-1.9622422,-2.0530019,-2.0640469,-1.2895814,-1.753573,-1.9688753,-2.1077614,-2.1648514,-1.9870533,-1.969894,-2.611826,-3.3064098,-3.633436,-3.544677,-3.2228117,-2.7831106,-2.35575,-2.079568,-1.9439064,-1.52709,-2.4034936,-2.1784072,-2.7514086,-3.1250625,-3.4434369,-3.732121,-3.6094823,-2.9766064,-2.5503025,-2.1384244,-2.031096,-1.9318931,-1.9969648,-2.0852618,-2.1335459,-2.1302452,-2.2257738,-2.2573855,-2.3322685,-2.1785164,-2.1412625,-1.9059541,-1.9153209,-2.010957,-2.039412,-2.1248946,-2.2126894,-2.1624203,-1.8461667,-1.1391871,-2.355619,-2.070953,-1.9541386,-1.8906695,-1.393793,-2.3682652,-2.8799286,-2.4876728,-2.2958846,-2.0759358,-1.9412388,-1.8445317,-1.8404061,-1.991093,-2.0612226,-1.674122,-1.5306948,-1.486609,-1.5232483,-1.7481802,-1.9386603,-0.84103745,-1.4977729,-1.7400893,-1.8741077,-1.8328382,-1.9776381,-2.1008778,-2.2055235,-2.1137266,-1.9591775,-1.1722628,-1.7250043,-1.8875434,-2.1409957,-2.3164282,-2.287153,-2.2719784,-2.1955419,-2.1501002,-2.2238836,-2.2979012,-2.3509557,-2.2810192,-2.3398285,-2.338469,-2.2997026,-2.2988458,-2.3464189,-0.62570864,-1.6740394,-2.0539265,-2.2333086,-2.3933454,-2.54931,-2.586812,-2.6113124,-2.0694911,-1.6911,-1.8778565,-1.0912148,-1.9157027,-2.008348,-1.9354855,-1.8736718,-1.822194,-2.014204,-2.2080054,-2.3314395,-2.3887086,-1.9805802,-1.9787828,-1.019723,-1.7773567,-2.0634277,-1.413821,-1.5313722,-1.8575075,-1.294087,-1.7235502,-2.472691,-2.9901876,-2.8286726,-3.2521381,-3.019491,-2.7157376,-2.5975277,-2.432038,-2.2248445,-2.1269515,-2.073962,-1.7066138,-2.669198,-2.5615144,-2.2382922,-2.0407593,-1.9861869,-1.9690889,-2.0074494,-2.2181096,-1.8732831,-1.7108831,-1.8416414,-1.9087547,-1.9936136,-1.683164,-1.8054909,-1.8531615,-1.8311003,-1.9612764,-2.075831,-2.1677952,-2.1241603,-2.1005485,-2.2213998,-2.3047104,-2.3969474,-2.5017276,-2.459785,-2.4589517,-2.4988763,-2.4199524,-2.5931382,-2.6554003,-2.719275,-2.7613244,-2.9035044,-2.989684,-2.9841008,-2.9361012,-2.8111768,-2.7974224,-2.9289658,-2.9834723,-2.9535322,-3.064589,-3.1128888,-2.9253273,-2.884109,-1.4532455,-2.1825802,-2.2988691,-2.3782382,-2.4388156,-2.5804684,-2.3222365,-2.4109402,-2.6367884,-2.7535787,-2.9584615,-3.0509644,-3.059151,-3.083138,-3.0908613,-3.0350363,-3.032546,-3.1008,-3.01052,-2.9442227,-2.9940515,-3.076336,-3.1950908,-3.2654665,-2.1523216,-2.5731208,-2.6867466,-2.6942525,-2.8675132,-3.0377855,-3.055469,-3.0782585,-3.120203,-3.1789813,-3.051382,-1.9985002,-2.5760908,-2.7512965,-2.9403212,-2.904334,-1.0388836,-2.2016616,-2.3699641,-2.4730842,-2.6518998,-1.5180887,-1.9372289,-2.1746285,-2.3042364,-2.3914914,-1.3959066,-2.087966,-2.7493188,-2.9331446,-3.372026,-3.5133505,-3.3297658,-2.87218,-2.4810376,-2.5037603,-2.5844731,-2.5369744,-2.5451913,-2.5778303,-2.2207878,-2.8956287,-2.490859,-2.432755,-2.4515166,-2.4734676,-2.477203,-2.3288565,-2.3587222,-2.2987475,-2.4304104,-2.3701825,-2.4069054,-2.496945,-2.2767868,-2.4461246,-1.6499754,-2.9782376,-3.2756145,-3.2110682,-2.9818702,-2.547501,-2.1575737,-2.4902081,-2.285219,-2.59096,-2.6561294,-2.5614161,-2.367432,-2.5028677,-2.4977884,-2.6264956,-3.0593174,-3.5929813,-3.9695625,-3.8929543,-4.091132,-4.1508904,-3.5472455,-3.1490335,-3.4788303,-3.1171494,-2.8741605,-2.7528632,-2.5538907,-2.514028,-2.4493198,-2.4668744,-2.5703306,-2.5512137,-2.3311992,-2.2823265,-2.3450236,-2.384534,-2.4075522,-2.4727502,-2.3135946,-2.2857203,-2.544713,-1.2686312,-2.6344185,-2.5470595,-2.565218,-2.3458614,-2.2577262,-1.9703482,-2.2272453,-2.246617,-2.2676823,-2.2555423,-2.4665933,-2.4268332,-2.3123977,-2.2784414,-2.298717,-2.3661442,-2.3895113,-2.5207527,-2.0235445,-1.9446646,-1.6852826,-2.328414,-2.0919561,-2.143127,-2.1916332,-2.1038523,-2.3330998,-2.565062,-2.3999734,-2.4456005,-2.189924,-2.2632413,-2.2909834,-2.3640842,-2.3717387,-2.3723128,-2.4375567,-2.481952,-1.0752343,-2.3308191,-2.055066,-1.993945,-2.0743265,-2.048837,-2.208924
+-0.7848944,-1.7143817,-1.8976561,-1.8530678,-1.721212,-1.7651393,-1.7623969,-1.7017974,-1.7347564,-1.7407868,-1.8163902,-1.883212,-0.7558018,-2.1686263,-2.1606297,-1.9978582,-1.8928953,-1.7345244,-2.855534,-2.9489415,-3.5514367,-3.1665688,-2.973642,-2.6201165,-2.3973577,-2.3388124,-1.8357072,-2.641025,-2.2729425,-2.1163745,-3.108593,-3.259029,-3.6629064,-3.598184,-3.2972345,-3.0202627,-2.476561,-2.2582772,-2.182055,-2.26398,-2.2853513,-2.3293173,-1.9362189,-2.3524294,-1.6322056,-2.2052948,-2.430791,-2.4129937,-1.9556113,-2.1784437,-2.3097732,-1.8814712,-2.2435536,-2.2382746,-2.1551375,-1.9356722,-1.7912761,-2.9658275,-2.566045,-2.400725,-2.3484936,-1.9517815,-2.2062206,-3.1045256,-3.5953896,-3.1075687,-3.336797,-2.9519804,-2.3921394,-2.3360376,-2.0983512,-2.2601967,-2.523979,-2.689235,-2.7556682,-2.46111,-2.3670292,-2.3367777,-2.0426264,-2.2259076,-2.223545,-2.1148195,-2.280643,-2.2966566,-2.156014,-2.0207849,-2.3512435,-2.2473388,-2.0701237,-2.0066295,-2.1846523,-2.2485027,-2.218401,-2.3139741,-2.2802634,-2.31171,-2.2920754,-2.3124185,-2.191702,-2.3641071,-1.2904905,-2.2225275,-2.1954417,-2.1227276,-2.2176595,-2.3080647,-1.713517,-2.2357562,-1.5955812,-2.15978,-2.2819602,-2.3732188,-2.3457582,-2.3171768,-2.2115757,-1.5535139,-1.960347,-1.8350835,-2.026029,-2.2856061,-2.3080976,-2.2983766,-2.3131852,-2.354105,-2.3945045,-2.3899438,-2.323382,-2.4090629,-1.7181443,-2.1596742,-2.324336,-2.039863,-2.294289,-2.076556,-1.445966,-1.9681169,-2.9753494,-2.828977,-3.359123,-3.4646478,-3.2498064,-2.6516228,-2.5538568,-2.807074,-3.2028022,-2.6795986,-2.4271588,-2.320177,-2.0137467,-2.903015,-3.0788066,-2.4322596,-2.3264427,-2.3081565,-2.2444057,-2.2031584,-1.8630339,-1.8557853,-2.3618402,-2.3610091,-2.2071993,-2.3023055,-2.276246,-2.2662683,-2.1484542,-2.1695807,-2.1657693,-2.1896963,-1.9806994,-2.2536774,-2.2993226,-2.2642093,-2.3375862,-2.3694868,-2.3784359,-2.352424,-2.3804595,-2.146577,-2.2232568,-2.0293398,-2.459721,-2.566722,-2.5903368,-2.8267508,-2.9105442,-2.9263992,-2.6164055,-2.4430041,-2.602902,-2.731934,-2.8674035,-2.8611197,-2.9947553,-3.0044923,-2.905388,-2.9039845,-2.9479213,-2.9461894,-2.9168632,-2.8964431,-2.8919277,-2.9015388,-2.4183943,-2.6809697,-2.8188944,-2.894495,-2.9650507,-3.0328565,-3.0045953,-2.9973588,-3.0197268,-3.0172524,-3.0402532,-3.0763125,-2.983172,-2.8911676,-2.9764314,-3.0045366,-3.1237423,-3.1438215,-1.4971517,-2.6217008,-2.692483,-2.8462458,-2.9694972,-2.99227,-2.9574008,-3.014439,-3.0807438,-3.1277816,-3.0561905,-2.4954803,-2.5064163,-2.634327,-2.7664597,-2.7109284,-1.1667823,-2.5038218,-2.620904,-2.6405606,-2.608348,-1.8569373,-2.4559731,-1.9200144,-2.5624013,-2.3831716,-1.3502651,-2.444106,-2.6711903,-3.2066374,-3.5583372,-3.4747589,-3.7907414,-3.6982784,-3.1370168,-2.8020656,-2.6791162,-2.9504657,-3.116517,-3.1521006,-2.7046804,-3.2052457,-3.0684485,-2.9510841,-2.724868,-2.6287735,-2.4510722,-2.4475272,-2.5559301,-2.448371,-2.4883862,-2.4567118,-2.4655726,-2.5086472,-1.8756615,-3.2403202,-2.8852892,-3.6920366,-3.7106905,-3.4562035,-3.4130566,-3.4950206,-2.7009687,-2.9531999,-2.8283148,-3.2924113,-3.2133663,-2.8811781,-2.6778781,-2.692632,-2.4442976,-3.168272,-3.705243,-3.681528,-4.350304,-4.004496,-3.949442,-4.2144337,-3.9946795,-3.56331,-3.7420096,-3.4934616,-3.1745088,-3.242745,-2.921186,-2.8734572,-2.8348446,-2.3534467,-2.7081163,-3.067156,-2.6454227,-2.689073,-2.756022,-2.7629662,-2.7424257,-2.7078228,-2.5538874,-2.613976,-2.3598914,-1.7408627,-3.4666252,-3.515888,-2.8076482,-2.924678,-2.8707476,-2.5716443,-3.4531612,-2.9848251,-2.9991522,-2.9362717,-3.0892396,-2.7584896,-2.4454417,-2.4003458,-2.4113736,-2.6042366,-2.430036,-2.299651,-2.0268965,-2.3548741,-1.7999762,-2.6889434,-2.5010533,-2.309741,-2.2134044,-2.7093215,-2.7246306,-3.0024378,-2.838438,-2.5461683,-2.3613272,-2.469451,-2.3396583,-2.3336053,-2.3494148,-2.3257787,-2.287072,-2.2038224,-1.7309788,-3.3055623,-3.1101143,-2.8437176,-2.6356077,-3.4176002,-4.1056223
+-0.96658665,-1.7490271,-1.8800062,-1.8905437,-1.7021173,-1.8424448,-2.0284588,-1.8805952,-1.7325488,-1.6100131,-2.4322615,-2.481004,-2.6317303,-2.8249714,-2.7985544,-2.8089328,-2.9912684,-3.6526577,-3.8184428,-3.5281453,-3.7950144,-3.850306,-3.7445474,-4.2464633,-4.1649723,-4.3603745,-4.2097697,-4.171602,-4.1719594,-4.201974,-4.183857,-4.242389,-4.2952204,-4.3225718,-4.1537857,-4.300519,-4.363513,-4.29714,-4.2396183,-4.18979,-3.994421,-4.005722,-4.117009,-3.9249904,-3.7835586,-3.939064,-4.1957226,-4.266831,-4.2945676,-4.2698436,-4.3338337,-4.215309,-4.030836,-3.7235806,-4.3955536,-4.2736897,-3.9180155,-4.351866,-4.453791,-4.6265736,-4.4374104,-4.582491,-4.5568643,-4.65507,-4.437683,-4.6589184,-4.6322575,-4.6415215,-4.657482,-4.619587,-4.4182463,-4.7884912,-4.605913,-4.5580535,-4.745323,-4.611331,-4.800189,-4.7336807,-4.721989,-4.431408,-4.567761,-4.7031364,-4.7118993,-4.634237,-4.5950456,-4.0326724,-4.646293,-4.74627,-4.7130847,-4.5092945,-4.6132474,-4.6940823,-4.6558905,-4.5938354,-4.464992,-4.3414426,-4.5558367,-4.5010853,-4.3632884,-4.7220325,-4.6716194,-4.528164,-4.5877476,-4.479441,-4.6651354,-4.7548094,-4.660035,-4.4249115,-4.6987367,-4.6662626,-4.6094522,-4.2232056,-4.7471967,-4.7794757,-4.518933,-4.7315493,-4.465984,-4.772563,-4.764619,-4.6462092,-4.5607224,-4.4702606,-4.5232577,-4.098456,-4.712223,-4.3195553,-4.675084,-4.727851,-4.685301,-4.586446,-4.361632,-4.4564443,-4.810008,-4.676113,-4.547676,-4.684175,-4.6367316,-4.5947366,-4.5473146,-4.4897118,-4.537902,-4.2362123,-4.5591955,-4.4596725,-4.423478,-4.186551,-4.455088,-4.465645,-4.372184,-4.234176,-3.8814332,-4.731586,-4.7285557,-4.746275,-4.6417294,-4.5689974,-4.4907093,-4.0230207,-4.6973615,-4.8265486,-4.449878,-4.693399,-4.7512045,-4.656985,-4.636141,-4.621545,-4.5520544,-4.4854217,-4.343321,-4.520255,-4.622724,-4.5546255,-4.590173,-4.5632224,-4.6101255,-4.589123,-4.4272723,-4.048451,-4.5402226,-4.5844193,-4.7379727,-4.692875,-4.735528,-4.6960382,-4.614198,-4.5688267,-4.5577717,-4.4059362,-4.5259132,-4.2225666,-4.582741,-4.5776205,-4.629507,-4.591371,-4.4647555,-4.481578,-4.5509973,-4.5863657,-4.6042924,-4.581673,-4.7224836,-4.492426,-4.3651075,-4.410447,-4.5415196,-4.515777,-4.472103,-4.3911242,-4.411511,-4.4863315,-4.5747166,-4.60074,-4.420056,-4.3262634,-4.6652956,-4.6727476,-4.5341444,-4.6770434,-4.7544413,-4.6631002,-4.5918703,-4.574933,-4.4720078,-4.5619664,-4.3004227,-4.1207414,-4.2861805,-4.491846,-4.307277,-4.537957,-4.572252,-3.4860446,-3.3838372,-3.1288917,-3.1501625,-3.1356232,-3.2300913,-3.3564243,-3.2850096,-3.2584918,-3.1802678,-3.124083,-3.168056,-3.254373,-3.0619652,-2.8020046,-2.6206052,-2.2513857,-2.5392396,-2.1731095,-2.04806,-1.9845089,-1.6591104,-1.3010274,-1.0305625,-1.1528982,-1.1054697,-1.124801,-0.9362703,-0.90978485,-1.0370063,-0.85129374,-0.7053719,-1.1583228,-1.2048141,-1.2337372,-1.2294639,-1.2418997,-1.0342838,-1.1796381,-1.2628701,-1.0870476,-1.2735066,-1.1514986,-1.1166044,-1.1980468,-1.1978284,-1.3501729,-1.3119675,-1.1507617,-1.0466355,-1.1419951,-0.91623217,-1.0431457,-1.281221,-1.2386252,-0.9434477,-0.8700761,-0.893215,-0.88662577,-1.0078403,-1.1282046,-1.210211,-1.2921888,-1.5020624,-1.5303133,-1.7721442,-1.9135047,-2.0397117,-1.8993232,-1.9123222,-1.8471645,-1.7333626,-1.4862791,-1.253387,-1.3671333,-1.3747118,-1.1107875,-0.99061805,-1.1194884,-1.2773212,-1.2626246,-1.3736567,-1.2397308,-1.0287842,-1.21564,-1.2845236,-1.3361456,-1.3155514,-1.4779724,-1.3263183,-1.0693825,-1.2952858,-1.8258044,-1.9777883,-1.9920594,-2.2044272,-2.447158,-2.2289243,-1.8651049,-1.7450072,-1.6481916,-1.5474869,-1.5905495,-1.6380707,-1.6385275,-1.3642346,-1.2263604,-1.281458,-1.9004103,-1.9997395,-1.8769112,-1.630791,-1.2531873,-1.2124001,-1.2527143,-1.3025386,-1.3335391,-1.4083618,-1.3756818,-1.462062,-1.6646792,-1.6092373,-2.4341593,-2.314034,-1.7993344,-1.5347402,-1.8544282,-1.905852,-2.0113912,-2.3150754,-2.4360435,-2.4413183,-2.4242165,-2.6930003
+-1.1166621,-0.96951467,-1.1731275,-1.6272599,-1.6088406,-2.0163178,-1.8440869,-1.9034356,-1.6876954,-1.4821905,-1.8940943,-1.6359597,-1.4859605,-1.5918844,-1.6963744,-1.8699535,-1.9890813,-2.0117955,-2.1434598,-2.164194,-2.3275924,-2.3902955,-2.086043,-2.1750627,-2.3062649,-2.4972548,-2.0727456,-1.7247688,-1.7335976,-2.0862894,-2.2639077,-2.2459762,-2.3620691,-2.4220457,-2.2911034,-2.4218054,-2.520163,-2.2239203,-2.0437407,-1.8187522,-2.301879,-2.2074752,-2.1926322,-2.3287294,-2.3161201,-2.3404899,-2.2666402,-2.1440907,-2.0565066,-2.1657586,-2.346566,-2.3652391,-2.3577518,-2.3761094,-1.9447114,-2.3146474,-1.9233965,-2.263132,-2.3829255,-2.5969834,-1.8408335,-2.3935173,-2.4630682,-2.3627234,-1.8606392,-2.1573036,-2.1942043,-2.3681512,-2.4432802,-2.2804446,-2.1970432,-2.5333803,-2.310558,-1.7034129,-1.9401374,-2.0358179,-2.1941128,-2.3270898,-2.4478872,-2.5962691,-2.5939133,-2.8061287,-2.7189746,-2.4701366,-2.7190866,-2.6749837,-2.5614686,-2.8407204,-2.771307,-2.7661657,-2.0217438,-2.5953057,-2.6716619,-2.7716522,-2.7867224,-2.8497179,-1.0742382,-2.3483222,-2.5159476,-2.8506808,-2.6029296,-2.6982112,-2.1690855,-2.7425709,-2.8191128,-2.7640934,-3.0415797,-1.9836873,-2.9118228,-3.0772357,-3.0346973,-2.700337,-2.9440088,-1.7967843,-2.5287404,-2.8931446,-3.154428,-2.2884195,-2.6168594,-2.84284,-3.0932758,-2.9803383,-3.162627,-3.1862292,-3.2312324,-1.7862331,-2.9113982,-3.2029347,-3.2742484,-3.3635976,-3.3279433,-3.3098574,-0.7017744,-2.6266656,-2.8102307,-3.070089,-3.1850634,-3.2428598,-2.4239483,-3.0477085,-1.2388673,-1.3525025,-2.615642,-2.881342,-2.8985765,-1.9692405,-2.8989131,-3.157846,-2.8796527,-3.1330633,-3.215251,-3.1542296,-3.4620476,-3.409764,-3.481759,-3.4898796,-3.433379,-2.7991972,-1.0965108,-2.303482,-2.8489997,-2.580243,-2.8042767,-3.0728245,-3.0658903,-3.006105,-3.2322226,-3.1108367,-1.7286068,-2.7384603,-3.0447044,-2.9836593,-3.1598547,-1.6792575,-1.6749424,-2.315332,-2.4969444,-2.597373,-2.6435742,-2.484632,-2.701537,-2.8775702,-2.9343545,-2.879975,-3.0955205,-3.1843662,-2.9456272,-2.9118,-3.093415,-2.0693483,-2.4671965,-2.6534786,-2.7645946,-2.72607,-2.7436569,-2.7614903,-2.7273161,-2.7889862,-2.9602637,-2.3465965,-2.3245983,-2.769534,-2.6916094,-2.662065,-2.796469,-2.833724,-2.7566285,-2.6897411,-1.6709105,-2.330686,-2.502277,-2.5655901,-2.539863,-2.647588,-2.8115587,-2.848074,-2.8111148,-2.8079507,-2.8460207,-2.841439,-2.8506145,-2.8385534,-2.720225,-2.7996588,-2.7391505,-2.5493941,-2.7528353,-2.8259292,-2.8303819,-2.8309646,-2.835397,-2.4817607,-2.510248,-2.1944115,-2.0386596,-2.0846078,-2.0098197,-2.2045102,-2.2986045,-2.0796502,-1.9925617,-2.3113208,-2.334163,-2.4627767,-2.3982573,-2.0629802,-1.9790055,-1.643034,-1.650978,-1.6599156,-1.7384517,-1.7286832,-1.8311447,-1.8615717,-1.140264,-1.310342,-1.589608,-1.7897893,-1.5829592,-1.4887766,-1.0689752,-1.0697346,-1.356045,-1.4705542,-1.3519672,-1.2251427,-1.238782,-1.1546544,-0.7561608,-1.0319716,-0.8408343,-1.0591439,-1.1450166,-1.150448,-1.1408452,-1.0895389,-1.195947,-1.0637847,-1.2118536,-1.219314,-1.1493342,-1.1256617,-1.0158914,-1.1207017,-0.6879977,-0.4814386,-0.6595067,-0.7682243,-0.9130644,-0.9449567,-1.0033394,-0.74632347,-0.6351224,-0.890708,-1.1604632,-1.1482041,-1.26172,-1.4793054,-1.0381397,-1.0199653,-1.0484786,-0.83388156,-0.8962745,-0.984858,-1.0312413,-1.02759,-0.81921774,-1.001036,-1.0407178,-1.1162239,-0.98301286,-1.0384119,-1.0672356,-0.9678394,-1.034662,-1.1624607,-0.86826795,-0.7544208,-0.7759739,-0.7049913,-0.85838574,-0.9110683,-0.75005144,-0.81721044,-1.1597694,-1.2904803,-1.3200139,-1.6981194,-1.7453083,-0.44700304,-0.8407762,-1.1826274,-1.2752938,-1.5260297,-1.3034581,-1.1703799,-1.2640245,-1.095781,-1.3216214,-1.8253964,-1.603703,-1.7779459,-1.6024523,-1.7264445,-1.815354,-1.7092348,-1.5759512,-1.6459786,-1.628405,-1.3919218,-1.4715081,-1.8096901,-1.543239,-1.9840535,-1.855754,-1.6918494,-1.7175316,-2.3236256,-1.9761838,-2.3554778,-2.2986727,-2.067094,-2.0054379,-2.2406726,-2.0435677
+-0.59462076,-0.89349693,-1.5519935,-1.8844764,-2.040131,-2.2932239,-2.3616748,-2.3570795,-2.3350163,-2.1616564,-2.4541817,-2.2959335,-2.2239602,-2.300525,-2.27498,-2.3346667,-2.4908657,-2.5411928,-1.8210256,-2.5455742,-2.4553041,-2.5003393,-2.5751848,-2.5475354,-2.8227897,-2.7028556,-1.86361,-2.5534415,-2.4479601,-1.3686256,-1.9642457,-1.9950012,-2.518622,-2.517464,-2.7945607,-3.0061297,-2.7518675,-3.0559406,-1.9054016,-2.1524873,-2.0647273,-2.1275654,-1.764073,-2.3849728,-2.5174859,-2.7852292,-2.5950305,-2.7984853,-2.874688,-2.7661583,-2.9950707,-3.1095767,-2.7303548,-2.449481,-2.2336936,-1.4289478,-1.5092257,-1.6376585,-1.6057268,-2.1596894,-0.87153924,-1.4860528,-1.8820105,-2.2004933,-0.83091563,-1.4383599,-1.7115313,-1.9666878,-2.3464794,-0.9489632,-1.7260009,-0.9411375,-1.058623,-1.6463963,-1.0904654,-1.1103098,-1.2965046,-1.4603674,-1.8070565,-2.2329116,-2.4694219,-2.818865,-1.9324099,-1.8886251,-2.3087254,-2.4117846,-0.49809447,-1.6896021,-2.1294408,-2.4344187,-1.6977887,-2.3067775,-2.6435852,-2.7791393,-2.7692766,-2.7765176,-0.4469037,-0.5264817,-1.4286939,-1.7734431,-0.80017716,-1.5465833,-1.0908529,-1.7036216,-2.0634565,-2.2906551,-2.6583247,-0.38085505,-1.2763177,-1.3627852,-1.7899226,-1.7054918,-1.7179295,-0.9881578,-1.1594353,-1.4313847,-1.6952978,-2.0523994,-2.1401615,-0.6837751,-1.507306,-1.731481,-2.030216,-2.0269108,-2.166635,-0.7450301,-0.96742815,-1.5269829,-1.8258523,-2.2086127,-2.288514,-2.399909,-0.50791377,-0.899018,-1.2669836,-1.6381491,-1.9959754,-2.3306785,-0.9303655,-1.7669865,-0.91806984,-1.1000129,-1.6415656,-1.8530623,-2.201762,-0.7614917,-1.4444469,-1.680174,-1.5770835,-1.812598,-1.9770793,-2.16108,-2.3754258,-2.5890403,-2.7977767,-3.0379765,-3.0976355,-2.6176224,-2.5375896,-0.8102167,-1.5806819,-1.1535362,-1.7065004,-2.0026155,-2.1997232,-1.6314532,-1.9385952,-1.974629,-1.256233,-1.8249133,-1.9651688,-2.217793,-2.2921772,-2.092225,-1.1003016,-1.5779129,-1.547419,-1.9185989,-1.9177778,-2.098024,-2.2306018,-2.2429976,-2.2689486,-2.1978874,-2.495634,-2.6397936,-2.715106,-2.9078245,-2.9390187,-2.5448241,-2.9490573,-2.8722003,-3.2071176,-2.8079443,-2.350647,-2.6818547,-2.9424982,-3.175429,-2.9243793,-2.9179416,-3.1136317,-3.543713,-3.4135861,-3.311653,-3.543009,-3.499872,-3.3787742,-3.1751842,-0.9351446,-1.7115936,-2.2766693,-2.2131238,-2.3020492,-2.5591855,-2.5804923,-2.5804842,-2.7030618,-2.7767158,-2.9962711,-3.116997,-3.1560383,-3.200321,-3.1366744,-3.3943582,-3.2217357,-3.1935706,-3.273602,-3.3953793,-3.2741947,-3.2094579,-3.2400062,-3.475483,-3.1751485,-3.2085047,-3.157374,-2.4020126,-1.9610277,-2.0978365,-2.2195137,-2.2238965,-2.2996778,-2.2506013,-2.495562,-2.2580652,-2.2618365,-2.1881719,-2.2835498,-1.854397,-2.023542,-1.9659497,-2.3781543,-2.6118476,-2.638342,-2.3507323,-1.5753402,-1.9124728,-2.0550618,-2.1263866,-2.0498536,-1.6907398,-1.2917179,-1.5554439,-1.7067231,-1.6846144,-1.4932733,-1.5681883,-1.1540842,-1.1240741,-0.80746555,-0.9033236,-1.0013144,-1.035372,-1.1752628,-1.2344178,-1.1694981,-1.2118309,-0.979515,-1.2100773,-1.2495676,-1.3615779,-1.4137182,-1.381907,-1.3165063,-1.2778411,-0.70346993,-0.8192029,-1.0752773,-1.1296083,-1.1032188,-1.1195151,-0.7408789,-1.0123941,-0.74582374,-0.98733085,-0.9855669,-1.039609,-0.853417,-1.0393156,-1.0277163,-0.3489359,-0.7090402,-0.7704805,-0.901213,-1.0397663,-1.0646828,-0.974963,-1.0007262,-1.1260724,-1.1866726,-1.147486,-1.1853616,-1.0955638,-0.9084527,-1.1535567,-1.1521939,-1.022173,-0.96361595,-1.2243,-1.1015003,-1.0342325,-1.226072,-1.0072917,-1.0692348,-1.5671412,-1.9962677,-1.0205659,-2.1761737,-2.4774065,-2.3379192,-1.1778593,-1.1104991,-1.4203027,-1.5815643,-1.6608135,-1.6688943,-1.5436304,-1.706279,-1.4453583,-1.697904,-2.3441248,-2.3151176,-2.5419044,-2.360188,-2.482418,-2.7220583,-2.6965213,-2.1656513,-2.45191,-2.5141063,-2.4441347,-2.049924,-2.1696892,-2.1151915,-2.357253,-2.5863533,-2.5176592,-2.4856734,-2.6198149,-2.0269203,-2.294163,-2.1429915,-2.311122,-1.961073,-2.0171337,-2.0833297
+-0.80823034,-1.0414445,-1.4932754,-1.9274687,-1.9536784,-1.7211599,-2.3358855,-2.5441387,-2.3194876,-2.3796682,-2.677507,-2.495897,-2.306396,-2.2724795,-2.2395144,-2.2862105,-2.4087079,-2.4808593,-2.1385403,-2.419048,-2.3794403,-2.5273032,-2.574367,-2.6469865,-2.846498,-2.8805597,-2.1393437,-2.2560568,-2.493209,-1.6807666,-1.7863308,-1.9985927,-2.385975,-2.7263474,-3.0007617,-3.0992754,-3.0732384,-3.0016513,-1.467508,-1.7379706,-2.051813,-2.1569028,-2.1266282,-2.5900774,-2.789969,-2.9426103,-2.9679093,-3.0119805,-3.0431082,-2.9497283,-3.157588,-3.207863,-3.084577,-2.632537,-2.5542736,-2.1595523,-2.1532786,-1.2723002,-1.7577093,-2.3139453,-2.7769585,-1.6925184,-2.5105524,-2.8569512,-1.6217028,-2.075879,-2.6982493,-2.9884174,-3.1211982,-2.856453,-2.977758,-2.1559632,-2.6126275,-2.815364,-2.27223,-1.4729635,-2.4814346,-2.8748856,-3.00442,-3.072104,-3.1022117,-3.1019008,-0.4854878,-1.6528376,-2.4943984,-2.6775622,-0.8321649,-2.2171845,-2.7647364,-2.9127612,-0.20797884,-1.5715841,-2.3262172,-2.553492,-2.5951347,-2.8340642,-1.6261349,-1.8000481,-2.310281,-2.7394624,-0.962259,-1.8862754,-1.0305052,-1.0118717,-1.721934,-2.354986,-2.73632,-1.7065171,-1.3840064,-0.918976,-1.5529746,-1.992055,-0.85030204,-1.6642395,-2.0902328,-2.5967906,-2.8330653,-2.9786098,-3.0052333,-2.499736,-2.5319688,-2.8149028,-2.80301,-2.411768,-2.610003,-2.828483,-0.28882203,-2.0289397,-2.4277582,-2.653514,-2.6583245,-2.849894,-1.0758697,0.015424173,-1.2220241,-1.6532687,-2.136445,-2.4671767,-2.279572,-2.614962,-2.8296015,-1.9223279,-2.5676532,-3.0579119,-3.1129003,-2.4580894,-0.98885936,-1.9371953,-1.7038575,-1.5110728,-1.6211783,-1.5678421,-2.2466247,-2.690222,-2.8623242,-3.139921,-3.041353,-3.1947565,-3.1441278,-1.0484265,-1.0018255,-1.6312844,-1.4442958,-2.3320565,-2.7643995,-2.4128132,-2.4820948,-2.7729921,-0.9713885,-2.1058402,-2.7524834,-2.9248772,-3.046268,-3.033162,-2.7581816,-0.551043,-1.6846892,-2.098085,-2.614246,-2.9046187,-3.138305,-3.1905966,-3.1556783,-2.910656,-3.1237833,-3.231191,-3.0461454,-3.1073828,-3.260425,-2.9510071,-3.311274,-3.4410667,-3.476672,-2.4090788,-2.869305,-3.1670933,-3.2414646,-3.174304,-2.6136093,-2.694518,-3.1601162,-3.3549254,-3.486648,-3.5165944,-3.6342282,-3.676614,-3.6273968,-3.5503874,-1.1843345,-2.4098759,-2.845995,-2.8218985,-2.9728694,-3.080634,-3.077869,-2.1574388,-2.697764,-3.0743194,-3.2519965,-3.3524935,-3.3486428,-3.4772587,-3.4391184,-3.547004,-3.577441,-3.4247642,-3.4991944,-3.6849084,-3.5870905,-3.528151,-3.478147,-3.592366,-3.5233293,-3.4886596,-3.37603,-2.9490328,-2.8711858,-2.8560324,-2.9153516,-2.8869157,-2.5110617,-2.5443995,-2.7923918,-2.8939466,-2.8534203,-2.9565015,-2.9891567,-2.3028545,-2.2825394,-2.293439,-2.3647928,-2.5652566,-2.7140918,-2.61651,-2.3356373,-2.564445,-2.7643683,-2.8582702,-2.9285736,-2.7742286,-2.9109085,-2.92893,-2.901515,-2.774332,-2.6664758,-2.608142,-2.3265662,-2.2011209,-1.4877867,-1.8072182,-1.9017749,-1.8751916,-1.9999698,-2.1234608,-2.049542,-2.0337658,-1.697503,-1.4484917,-1.6969485,-1.987702,-2.089636,-2.0455506,-1.9788305,-1.725628,-1.0819703,-1.1388445,-1.6591501,-1.6308829,-1.4980818,-1.5336361,-0.81952465,-0.9899288,-0.7828295,-0.8958365,-1.2938913,-1.5080451,-1.6004437,-1.7651976,-1.8393492,-2.011139,-1.9654983,-1.8469468,-1.9691664,-2.0266762,-2.0099008,-1.8566324,-2.0906947,-2.3184395,-2.295872,-2.254202,-2.0545745,-1.7031325,-1.7212328,-2.083522,-1.9629704,-1.5788456,-1.5166036,-2.036599,-2.1608076,-2.242516,-2.3855581,-2.2981157,-2.4618604,-2.4834485,-2.5472512,-2.6829276,-2.8217344,-2.920918,-2.99536,-3.0582168,-2.9442453,-2.7889776,-2.7211072,-2.7400436,-2.8940814,-2.8902516,-3.0119877,-2.5669553,-2.8083563,-2.9395738,-2.530826,-2.8883815,-2.7910993,-2.9692657,-3.0439866,-2.934712,-2.4492397,-2.7805767,-2.9542594,-2.7164304,-2.3462758,-2.4937298,-2.2947633,-2.5346704,-2.6399457,-2.569251,-2.422359,-2.5402873,-2.3649807,-2.5264602,-2.6149015,-2.8086324,-2.1660116,-2.2683961,-2.5962791
+-0.7539156,-0.77544385,-1.0304984,-1.2600493,-1.1689984,-1.4287721,-1.5991743,-1.6756467,-1.2441859,-1.5047067,-2.0100493,-1.6342143,-1.6713918,-1.7316831,-1.821366,-1.969302,-2.1041036,-2.0512123,-1.6071233,-1.8683989,-1.8523675,-2.067566,-2.2728014,-2.3368113,-2.4085906,-1.2907537,-1.877404,-1.6199013,-1.9480351,-1.4963323,-1.806753,-1.9785308,-1.7210095,-1.980327,-1.9731725,-2.0847206,-1.5833639,-2.0334113,-1.3160607,-1.7711387,-1.8027081,-1.9044966,-1.7498881,-1.8841282,-1.9089808,-1.6904501,-1.7552303,-1.7036759,-1.9919542,-1.7634016,-2.185163,-2.2258308,-2.3702211,-2.3867738,-2.4611294,-1.747953,-1.6312946,-1.3531529,-1.8185791,-2.0634215,-2.2689643,-2.4055634,-2.554737,-2.6686244,-1.5349857,-2.2459536,-2.4201293,-2.634038,-2.6940856,-2.7334785,-2.800301,-2.8854039,-2.9683378,-2.9540231,-2.8478673,-2.395218,-2.9483023,-3.020218,-3.1155217,-3.067482,-2.8395436,-1.3569906,-2.0649092,-2.5400088,-2.8343596,-2.7751894,-2.9368825,-3.312233,-3.304174,-3.2363074,-2.2281444,-2.0895834,-1.9487312,-1.6054504,-2.101508,-2.2936716,-1.9613684,-1.1961191,-1.9752277,-2.5278254,-1.9845916,-2.388358,-0.80815804,-1.6069359,-2.0838475,-2.5055451,-2.6488945,-2.620359,-2.699604,-0.5642802,-1.4843056,-1.9625114,-0.8962819,-1.7869159,-2.2067926,-2.0691266,-2.5731466,-2.7107654,-2.5366917,-2.8435497,-3.007492,-2.953846,-2.724153,-0.8571682,-1.5980346,-1.980142,-0.8944326,-1.9251716,-2.0858262,-2.2519364,-2.2629204,-2.4173336,-2.5249457,-0.88168734,-1.7919387,-2.2619267,-2.407143,-2.588109,-2.6484106,-2.8729317,-2.9918983,-0.9713842,-2.2490134,-2.6449642,-2.7344322,-1.8200773,-0.7208646,-1.6264081,-1.3787667,-1.6660857,-1.9360586,-1.7467357,-1.9663175,-2.3040216,-2.4001353,-2.5357614,-2.5816622,-2.8458438,-2.8428328,-2.3817148,-1.0190965,-1.787772,-1.2517425,-2.02919,-2.261369,-2.2561226,-1.925135,-2.0791924,-1.7696577,-2.0053911,-2.4238634,-2.5361314,-2.6052282,-2.697998,-2.85922,-3.046514,-3.1666532,-3.2283263,-3.5098019,-3.5787919,-3.6633735,-3.6809351,-3.5942023,-3.3492758,-3.3135881,-3.4485726,-3.4626064,-2.153987,-1.4554168,-1.6619256,-2.3838644,-2.7315454,-2.94977,-2.9582462,-2.2735791,-2.4970229,-2.7557497,-2.6957695,-2.6642962,-2.7710629,-3.0453055,-3.214979,-3.3318934,-3.2990637,-3.426789,-3.5731544,-3.6207838,-3.5332432,-2.5468633,-3.0347192,-3.137939,-3.1358004,-3.2845922,-3.34005,-3.364314,-1.4520856,-2.6669838,-3.1466804,-3.305652,-3.391173,-3.3576713,-2.734048,-3.194041,-3.319343,-3.334382,-3.2024648,-3.2617345,-3.3945675,-3.477116,-3.464444,-3.4924664,-3.6321516,-3.2542233,-2.8532987,-2.8355021,-3.1677313,-3.3122845,-3.1504116,-3.1532047,-3.171551,-2.3670685,-2.6102421,-3.1716392,-3.1556053,-3.0942655,-3.1984339,-3.0874221,-1.9369541,-1.996571,-1.7601084,-1.9722992,-1.8869911,-1.8927182,-1.8679264,-1.9214035,-1.7788395,-1.7576826,-1.7846416,-1.8386658,-1.6751311,-1.7481637,-1.5067371,-1.6139755,-1.6710217,-1.5648268,-1.4587724,-1.3610606,-1.2732695,-1.3836261,-1.3901758,-1.215222,-1.5749394,-1.7674615,-1.7497422,-1.859023,-1.6919334,-1.9883751,-2.2184124,-1.9044458,-1.6195675,-1.751135,-1.7301209,-1.6880997,-1.5847378,-1.5120181,-1.7519447,-1.4542441,-1.4761186,-1.3923098,-1.4273257,-0.4488226,-0.7425705,-0.67557675,-1.1922446,-1.1298908,-1.6092454,-2.2332335,-1.9723045,-1.9936599,-1.8753988,-1.8949149,-1.6704712,-1.4036015,-1.5811766,-1.567346,-2.1053944,-2.468473,-1.9427446,-1.9621757,-2.0023427,-1.8634267,-2.0061483,-2.1453211,-1.9268644,-1.8217794,-1.7347581,-2.0713878,-2.3885155,-2.1253233,-2.2595916,-2.0896618,-2.08497,-2.680079,-2.759295,-2.802814,-2.7348285,-2.8476357,-2.949766,-2.9373927,-2.8306103,-2.328576,-2.3630981,-2.5581207,-2.876465,-2.4379115,-2.3795133,-2.0519996,-2.0782707,-2.7229939,-2.8055544,-2.0928001,-2.4292054,-2.4268837,-2.325326,-2.1708279,-2.1537178,-2.414855,-2.3220992,-2.381087,-2.072356,-2.4234881,-2.3098211,-2.2813416,-2.5738425,-2.6407027,-2.3295846,-2.3916118,-1.8936144,-1.8266459,-1.5687197,-1.8460222,-2.2372518,-1.348111,-1.4955934,-1.4453577
+-0.56478757,-0.9617583,-0.922401,-1.0171959,-0.7523887,-1.2408172,-1.4673592,-1.3798088,-1.0634617,-1.1392599,-1.503741,-1.5422689,-1.2921108,-1.2253166,-1.2115893,-1.1851441,-1.1902174,-1.2372268,-1.4180666,-1.4697251,-1.654958,-1.6461991,-1.4072958,-1.3538715,-1.4090973,-0.6946779,-1.4263693,-1.5973738,-1.3803778,-1.0880224,-1.6281147,-1.6926066,-1.6119028,-1.6179582,-1.5114518,-1.4413506,-1.6696382,-1.6292418,-1.4093957,-1.4853269,-1.6762873,-1.9488424,-2.0084457,-1.8159993,-1.7615759,-0.63129526,-1.0707229,-1.2641386,-1.5121986,-1.5101013,-1.6868696,-1.7659003,-1.9745587,-1.1664556,-1.6716305,-1.6308728,-1.1300997,-1.9416611,-1.6639729,-1.6627882,-1.6385213,-1.7164468,-1.9832462,-1.9186141,-2.0115323,-2.3717968,-2.4415047,-2.5137866,-2.5967445,-2.515782,-2.531612,-2.620815,-2.7783766,-2.8579235,-2.7688355,-2.9051611,-3.2131627,-3.128781,-3.1923227,-3.0806384,-2.952282,-1.1768636,-2.1024323,-2.6144497,-3.0184019,-2.8581433,-1.7873684,-2.4807239,-3.0095944,-3.1658895,-2.2892737,-2.6664438,-1.408847,-1.2169756,-1.8631462,-1.7670704,-1.9887716,-2.0641677,-1.9384392,-1.8876238,-1.91844,-2.1820138,-1.7985522,-1.6065346,-1.7748466,-1.9776686,-1.6681975,-1.9211923,-2.2864444,-2.590056,-2.7269611,-2.8885756,-1.9960448,-2.562416,-2.7931576,-1.1291339,-2.1320868,-2.4362621,-2.5935748,-2.9408202,-3.1834507,-2.3683052,-1.4365851,-1.7928103,-1.9477421,-1.6282617,-1.9135437,-1.9781362,-2.201145,-2.3131459,-2.2398891,-1.5587054,-1.9602596,-1.8751245,-2.0311685,-2.0243998,-2.0784423,-2.2911246,-2.5040293,-2.7308414,-2.7226923,-1.9365335,-2.5819914,-2.8162553,-2.196728,-2.529306,-2.8279145,-2.9946854,-2.8949025,-3.1099267,-2.901713,-2.6217294,-2.1774201,-2.7757251,-3.066153,-3.2472007,-3.2203386,-3.3074188,-3.0353618,-3.06894,-1.0717889,-1.9812571,-1.2399874,-2.1424007,-2.0821414,-2.209231,-2.1788187,-2.05467,-1.999787,-2.144785,-2.1440508,-2.18041,-2.2659683,-2.4309068,-2.709418,-2.9511535,-3.0383,-3.1670694,-3.0947642,-3.2136178,-3.2659945,-3.316164,-3.3675091,-3.2420368,-3.263767,-3.4204066,-3.3675501,-2.2683864,-2.3592684,-2.896494,-3.0659652,-3.3243275,-3.355196,-3.4012253,-3.4354541,-3.1787133,-3.2731895,-3.0758486,-3.146866,-3.146843,-3.6250038,-1.9379872,-2.4476538,-2.8073173,-2.9311044,-3.081479,-3.1182547,-3.1547084,-3.010219,-3.244778,-3.185324,-3.204035,-3.3275015,-3.3656728,-3.4334877,-3.0212018,-1.3519403,-2.8100924,-3.0666978,-3.1721578,-3.168242,-2.5269387,-3.0294623,-3.1193824,-3.155323,-2.9362755,-3.0235648,-3.1344168,-3.2056632,-3.1884718,-3.1093078,-3.2682924,-3.101635,-2.603987,-2.645575,-2.7296562,-3.1441114,-3.0856807,-3.0205142,-2.9845417,-3.152101,-2.8185577,-3.5060334,-3.4320176,-3.1622689,-2.9264398,-2.933066,-2.1106024,-2.6615229,-2.4259264,-2.337677,-1.5106709,-1.4533399,-1.795832,-2.5838158,-2.00342,-1.9737252,-1.6114664,-1.5626224,-1.7272323,-2.4465837,-1.3145442,-1.1666616,-1.4527587,-1.6887051,-1.8294445,-2.3480475,-2.403664,-2.5851338,-2.5095382,-2.4473965,-2.456181,-2.3909435,-1.980208,-2.1991155,-2.075395,-2.5481074,-2.7179866,-1.6764485,-1.4328827,-1.2987045,-1.281232,-1.3897952,-1.7699205,-2.4814332,-2.7274609,-2.786882,-1.9108883,-2.0471058,-1.8885404,-2.2211597,-2.3762283,-2.336533,-2.396542,-2.4865463,-2.8456664,-2.6249046,-2.6231718,-2.494374,-2.5401306,-2.4568067,-1.9493577,-1.8058727,-2.0024924,-1.9772128,-2.4295511,-2.6464882,-1.8498591,-1.5868932,-1.5546852,-2.0561743,-2.2847252,-2.5088668,-2.7219453,-1.6871897,-1.8456484,-2.4206529,-2.8183684,-2.4514277,-2.525968,-2.306394,-2.1006317,-2.4918647,-2.6336627,-2.6459594,-2.3683867,-2.2378454,-2.5124958,-2.5946996,-2.645708,-1.9915854,-1.8062329,-2.2022157,-2.4040718,-1.8347617,-2.041749,-1.6616641,-1.8864028,-2.523332,-2.4870167,-2.2702465,-2.426597,-2.0860815,-2.433314,-1.8925927,-1.855188,-2.2330725,-2.0228934,-1.3519316,-1.777479,-2.36659,-2.3662667,-2.1581647,-2.3579652,-2.3372269,-2.0864215,-2.1242232,-2.2048035,-1.3778476,-2.0094557,-1.9567546,-1.8564277,-1.8619134,-1.8690006,-2.024192
+-0.60377616,-0.7763471,-0.77085704,-1.0768021,-0.855629,-1.2875577,-1.4549481,-1.3093656,-1.091011,-1.2162224,-1.8630121,-1.7387248,-1.6226611,-1.7413412,-1.7139865,-1.6710376,-1.6626216,-1.7478184,-1.8053226,-1.93388,-1.9581294,-2.0313132,-2.0441322,-1.9495553,-1.9915403,-1.8930231,-2.3453884,-2.1595354,-2.1860192,-2.4119632,-2.2300644,-2.3002923,-2.1040044,-2.0741112,-2.0537915,-2.1824746,-2.2715535,-2.4045544,-2.3018787,-2.1824205,-2.5654445,-2.1922157,-2.3890972,-2.3755746,-2.3717499,-2.0539494,-1.6830484,-2.260497,-2.3784757,-2.561358,-2.4415822,-2.4775617,-2.4239635,-2.4320192,-2.6047866,-2.697884,-2.5403566,-2.5694933,-2.684699,-2.6347127,-2.6212866,-2.6672351,-2.4691079,-2.7129982,-2.8198414,-2.752142,-2.704831,-2.67592,-2.6610236,-2.7028813,-2.737403,-2.766275,-2.6585817,-2.853016,-2.7730412,-2.801328,-2.8764067,-2.831428,-2.7981505,-2.811602,-2.8275893,-2.8442712,-2.8542109,-2.8193164,-2.0343492,-2.85982,-2.8938882,-2.8844166,-2.9411104,-2.9264545,-2.851574,-2.8664687,-2.91235,-2.5973678,-2.243523,-2.650073,-2.771151,-2.8416402,-2.8520143,-2.8701181,-2.7699065,-2.661986,-2.67907,-2.699307,-2.7693553,-2.8648934,-2.796682,-2.8135774,-2.8560295,-2.8814013,-2.8415213,-2.8490014,-2.8882318,-2.8858907,-2.8912287,-2.4512815,-2.9830637,-2.9088173,-2.9496799,-2.8211398,-3.022664,-2.8611996,-2.9745526,-2.9307356,-2.6108086,-2.9685807,-2.928362,-2.3906236,-2.8741055,-2.8244991,-2.7755892,-2.8545833,-2.8170054,-2.8286815,-2.6962907,-2.8687453,-2.833912,-2.8303814,-2.7435875,-2.7227755,-2.7498252,-2.7491622,-2.8742268,-2.8481405,-2.7142825,-2.768117,-2.8784525,-2.7610087,-2.8296895,-2.852638,-2.8264813,-2.9056618,-2.8272226,-2.8659043,-2.8593936,-2.970698,-3.012353,-2.9687166,-2.9357693,-2.950916,-2.5637598,-2.9810405,-2.7718823,-3.0117707,-2.9376647,-2.9653373,-2.9925346,-2.842662,-2.491776,-2.5584252,-3.0210056,-2.864818,-2.7424467,-2.7215264,-2.7814243,-2.8462138,-2.840621,-2.768437,-2.5696774,-2.7757583,-2.8757608,-2.9225116,-2.9361994,-2.831638,-2.9369488,-2.9957314,-2.9670422,-2.7047884,-2.8268178,-3.0252252,-2.9254508,-3.0527103,-3.047206,-3.112589,-2.383298,-2.8123307,-2.8492632,-2.700821,-2.8532963,-2.8485546,-2.9228797,-2.6052632,-2.8382106,-2.704371,-2.66345,-2.699881,-2.8167572,-2.6918006,-2.7240286,-2.91647,-2.810062,-2.89793,-2.974124,-2.9542222,-2.9855888,-3.0036783,-2.6310785,-2.8197746,-2.7670217,-2.8061237,-2.8246357,-2.90914,-2.927486,-2.945602,-3.0117145,-2.775525,-2.8864102,-2.9514434,-3.067533,-3.0586727,-3.0389552,-2.914801,-2.9243517,-2.5911503,-2.857433,-2.964169,-2.937858,-3.1383553,-3.1852248,-3.0990357,-3.0914736,-2.7852726,-3.14063,-3.2153053,-2.9351494,-3.1430266,-3.1370249,-2.8564296,-3.0135772,-3.0190833,-3.0636106,-2.302752,-1.8359758,-2.5631282,-2.8483915,-2.8947551,-3.0235534,-2.3656235,-2.0455313,-2.4091108,-3.0011082,-1.6675674,-1.376558,-1.7798339,-2.426368,-2.6346927,-2.8183498,-2.92669,-2.9021492,-2.6674933,-2.773501,-2.695257,-2.6294127,-2.2573755,-2.6891332,-2.7339025,-2.8466687,-2.9957533,-2.1616497,-1.7299753,-1.4800825,-1.4460503,-1.6542007,-2.0156207,-2.8194602,-2.9942012,-3.1505818,-1.6245673,-1.4585665,-1.9748276,-2.4282727,-2.5154538,-2.6567197,-2.5874624,-2.6049182,-2.6692708,-2.6630995,-2.5979326,-2.3754344,-2.3819542,-2.484205,-2.012217,-2.0555787,-2.6912694,-2.5710404,-2.8525372,-2.7738173,-2.268869,-1.9024645,-1.8127108,-2.6200938,-2.7133107,-2.8406456,-3.0624025,-2.0092049,-2.4267933,-2.769817,-3.079471,-2.8121629,-2.6465974,-2.7207832,-2.5539074,-2.8171167,-2.803219,-2.8433816,-2.7420917,-2.2782125,-2.5748568,-2.6679132,-2.6261468,-2.199864,-2.1478257,-2.5822854,-2.5619857,-2.4104195,-2.173484,-1.9695157,-2.3067372,-2.6861117,-2.4525695,-2.2216303,-2.2535007,-2.2853913,-2.167171,-2.1355672,-1.6408868,-2.0061524,-2.380553,-1.6121664,-2.2054625,-2.3582313,-2.640855,-2.4728684,-2.3579931,-2.2742593,-2.350973,-2.1879451,-2.287819,-2.2254367,-2.3911495,-2.5640926,-2.3584049,-2.3381088,-2.5472414,-2.3052049
+-0.6377757,-0.78530747,-1.2135476,-1.4939426,-1.4813294,-1.7853545,-1.5658597,-1.4454204,-1.6593536,-1.8637679,-1.5902644,-1.5874003,-1.9941901,-2.1432152,-2.2093306,-2.3067598,-2.3822393,-2.5545774,-2.3984854,-2.345394,-2.27006,-2.3007433,-2.4782336,-2.5713048,-2.6434445,-2.6161034,-1.6058631,-1.9422629,-1.2770222,-1.6016107,-1.7733891,-1.9823447,-1.9149381,-1.8036033,-1.813577,-1.9020381,-2.0911186,-2.3664575,-2.0092716,-0.9674457,-1.8248459,-1.4575244,-1.6926963,-1.8359656,-1.8408275,-2.165512,-1.5382019,-1.7746265,-1.8825332,-1.7148119,-1.8594881,-2.0130503,-2.1658983,-0.9884625,-1.4297111,-1.6891822,-1.4820279,-1.7389355,-2.0249784,-1.8865511,-1.7291986,-2.0170138,-2.1637619,-1.1646968,-1.6226128,-1.8417431,-1.913735,-2.0154655,-2.1102057,-2.3717742,-2.4777668,-2.5755641,-1.6051142,-2.061456,-2.3609521,-2.3230832,-2.3998446,-2.188558,-2.252975,-2.5039701,-2.595598,-2.5626981,-2.5516973,-2.4367363,-2.0762835,-2.497837,-2.2894049,-1.1273314,-1.8621371,-2.2395823,-2.1532047,-1.2225504,-2.0520537,-2.2605608,-1.6830726,-2.0340528,-2.1855662,-2.2381644,-2.222251,-1.2749237,-2.1530745,-2.4779792,-2.5339081,-2.6443067,-1.1961321,-2.1749663,-2.4859047,-2.6159835,-2.7056022,-2.7411284,-2.781267,-2.7999587,-2.7773445,-2.6455579,-2.6777403,-2.6463397,-1.9756025,-2.0716977,-2.4080117,-1.2165715,-1.9113407,-1.9076301,-1.7032253,-2.2880478,-2.5808806,-2.6806204,-2.6607933,-0.89342195,-1.6528159,-1.7606493,-2.1894722,-2.4797604,-2.578563,-2.6377301,-1.5367047,-1.3426796,-1.5077164,-1.9856366,-2.0284603,-2.0919592,-2.1596186,-1.7172428,-2.012098,-2.2663927,-2.465548,-2.5533562,-2.6179,-2.6592145,-2.5789695,-2.6088257,-2.2436244,-2.4284747,-2.604707,-2.630174,-2.5630636,-2.700622,-2.7910972,-2.8507552,-2.539113,-2.620317,-2.569168,-2.6283393,-2.6279745,-2.597005,-2.8743057,-3.010683,-1.434754,-2.3068433,-2.5460818,-1.2096437,-2.1399574,-2.3732915,-2.6145554,-2.803627,-2.880138,-2.9619362,-2.9888551,-3.0567892,-2.9768028,-2.988204,-3.095148,-2.8866105,-3.0310488,-3.1028855,-3.1684186,-3.2147152,-3.2042654,-2.2235975,-2.6934624,-3.0580397,-2.8307738,-3.0704904,-3.3543959,-3.3171997,-3.021456,-1.2499876,-1.9971427,-2.3684106,-2.5800014,-2.673449,-2.6965272,-2.9077344,-2.4182124,-2.536081,-2.828411,-2.973619,-3.1216516,-3.153219,-3.2425413,-3.1503963,-3.1554585,-3.0614877,-3.0454607,-3.1001096,-3.0898001,-3.151542,-3.0753727,-3.0192757,-3.118999,-3.264851,-3.305017,-3.1921387,-3.0629332,-3.1344843,-3.151671,-2.967879,-3.0299234,-3.320404,-3.017137,-3.144764,-3.1788125,-1.4589499,-2.4328465,-2.3392284,-2.6238835,-2.5522804,-1.3227192,-2.3061125,-2.5677185,-2.6276054,-2.6359982,-1.8728056,-2.3395996,-2.4272676,-2.2792773,-2.4523728,-2.6617842,-2.4421372,-2.5724106,-2.183671,-2.6384122,-2.5121465,-2.0896168,-2.2685637,-2.3561013,-2.5730066,-2.6670744,-2.5024571,-2.3181646,-2.4057446,-2.5674324,-2.4089432,-2.0018065,-2.2174168,-2.3999934,-2.476018,-2.4924731,-2.0113068,-2.3693414,-2.404376,-2.5826993,-2.4856138,-2.494711,-2.2843542,-2.5206902,-2.5271604,-1.863767,-2.3558674,-2.528706,-2.3430095,-2.043573,-1.8290124,-1.8852736,-1.9038633,-2.1709623,-2.3350313,-2.3180137,-2.503951,-1.9124825,-2.148056,-2.1129174,-2.2035298,-2.4777076,-2.2720451,-2.333653,-2.4103155,-2.231502,-2.4868038,-2.4183497,-2.364868,-2.4926074,-2.1545882,-2.1005735,-2.2972574,-2.2722747,-2.3047886,-2.2314334,-2.5151541,-2.3083014,-2.4362674,-2.543897,-2.4982698,-1.6945078,-2.2715015,-2.2279916,-2.2167523,-2.3280122,-2.3548717,-2.3786569,-1.5751873,-2.0494485,-2.159211,-2.216568,-2.3009744,-2.297068,-2.2969418,-1.5676163,-2.071245,-2.3256528,-2.2529793,-2.1635032,-2.2248683,-2.4095578,-2.4209692,-1.9891576,-2.038683,-2.0669336,-2.1397054,-2.4324636,-2.3184705,-1.4439185,-1.9787198,-2.1324277,-1.929105,-2.1303744,-1.5636371,-1.7838173,-2.291347,-1.8505278,-2.0150652,-2.0814927,-2.0920079,-2.0929394,-2.1046653,-2.1124768,-1.6697581,-1.9156429,-2.3510523,-1.1126156,-1.8000957,-1.4003689,-1.9296663,-2.043065,-1.9581078,-1.988495
+-0.45633104,-0.7573402,-0.98445195,-1.1515938,-1.1763428,-1.2916422,-1.3697286,-1.3712461,-1.2904114,-1.1210052,-0.3479242,-2.2608373,-2.2662058,-2.1702862,-1.952273,-1.8005058,-1.6879238,-1.6366631,-1.0673606,-2.169057,-2.2268882,-1.9229299,-1.6900994,-1.5563362,-1.5799997,-1.6940651,-1.3185745,-1.7324609,-1.1400694,-2.3031995,-3.336358,-3.6637318,-3.651924,-3.4110272,-2.7882767,-2.0362425,-1.6616608,-1.6195941,-1.3159729,-0.8070161,-2.122124,-2.029974,-1.9173459,-1.6813365,-1.5892605,-0.90609664,-1.5375961,-1.7146039,-1.74866,-1.0743504,-1.6118429,-1.6545936,-1.8115966,-1.8998022,-1.1270381,-1.5067357,-1.1526958,-1.5789887,-1.190895,-1.2874936,-1.1184671,-2.3164427,-2.7944686,-2.9332345,-3.5152144,-3.4946623,-2.787736,-2.0548291,-1.7311821,-1.6786362,-1.7103946,-1.8874959,-1.9191298,-0.4894885,-1.317696,-1.534712,-1.677837,-1.801562,-1.8944741,-1.9420428,-1.9988114,-2.0367112,-2.0137815,-2.032117,-2.095306,-2.1284814,-2.1413615,-1.2889789,-1.2659868,-1.701584,-1.9145262,-1.2923027,-1.4008785,-1.6392866,-1.764392,-1.516848,-1.7289143,-1.8546501,-1.9273739,-1.240357,-0.6335957,-1.4107109,-1.4527203,-1.6390513,-1.7667927,-0.73130494,-2.4437466,-2.2906542,-1.9292136,-1.8245345,-1.6352811,-1.4747967,-1.7584714,-1.547459,-1.8100619,-1.8141644,-2.0368214,-1.3733596,-1.6701739,-1.233356,-1.3433897,-1.3379802,-1.5986837,-1.8151014,-2.0148377,-2.175502,-2.2655325,-1.3058769,-1.4384958,-2.1720877,-1.9487609,-1.8520774,-1.8388473,-1.8577443,-1.0340123,-1.9177942,-2.7188365,-3.449779,-3.7233834,-3.4590697,-2.958814,-3.3523655,-3.5509343,-2.7209039,-2.037219,-1.885652,-1.928781,-1.9184884,-1.7120787,-1.9698726,-1.9146668,-2.0473244,-2.172692,-2.260511,-2.2021937,-2.378119,-2.4762964,-2.3611848,-2.3074288,-2.2797844,-2.2494102,-2.2200837,-2.3125372,-2.515641,-2.632579,-2.6897001,-2.8502684,-2.5886898,-2.6804435,-2.188726,-1.0537118,-1.9079593,-2.0553758,-2.255027,-2.424579,-2.5165982,-2.5554857,-2.6616917,-2.799931,-2.8955452,-2.9368193,-2.9426842,-3.0226476,-3.016005,-2.989531,-3.0504124,-2.9851713,-2.8584948,-2.8877132,-3.0134065,-3.1040354,-3.117719,-3.2580252,-3.205909,-3.0484428,-0.69835955,-1.5351658,-1.8047307,-1.8726901,-1.9403503,-1.932932,-2.034544,-1.5908641,-1.8327785,-2.1113853,-2.1373768,-2.287135,-2.4703026,-2.5876365,-2.6266475,-2.7514944,-2.7057006,-2.6623135,-2.6183953,-2.628883,-2.6245623,-2.6301637,-2.923991,-3.0094721,-3.1361532,-3.1776872,-3.0951672,-3.2003608,-3.2211642,-3.3405972,-3.3242013,-3.175869,-3.3464205,-3.3635511,-3.3603406,-3.2343256,-1.7479109,-2.202145,-2.337853,-2.5053678,-2.5500052,-1.1740454,-1.9145256,-2.0964797,-2.179462,-2.1662233,-1.7762938,-2.9728045,-2.9626865,-3.0958185,-2.7417965,-2.3085437,-3.1840887,-3.2705858,-3.239438,-3.3899295,-3.101964,-2.7114701,-2.1572645,-2.1382384,-2.1525097,-2.85701,-3.1798635,-3.066162,-2.3002133,-2.1714768,-2.898308,-2.5500963,-1.9420395,-2.0537643,-2.464659,-2.4695053,-2.7969692,-3.7935324,-4.010024,-4.1411405,-4.1256785,-4.0344067,-3.7977629,-3.239069,-3.451541,-3.2857037,-3.8595955,-3.9148195,-3.4785619,-2.8254492,-2.139433,-1.839862,-1.8977009,-2.0614238,-2.7505307,-2.9638171,-2.915556,-2.7439609,-2.6480272,-2.341201,-2.9733052,-3.8201208,-3.7079737,-4.0278344,-4.046447,-3.7030272,-3.9297676,-4.0446587,-3.5905192,-3.6386335,-3.138308,-2.6235893,-2.3412278,-2.2894163,-2.301443,-2.3095312,-2.11582,-1.9061137,-1.7507647,-1.7906587,-1.807222,-1.4592425,-2.580757,-2.9348965,-2.5361106,-2.1891627,-2.3039494,-2.378674,-1.6520342,-2.3538089,-3.0429127,-3.1027708,-2.7827091,-2.4988072,-2.108613,-2.9729784,-3.8576488,-3.964562,-3.8084102,-3.780044,-3.1057034,-2.335596,-3.1781034,-3.2391043,-3.5837488,-3.0392332,-2.529248,-1.8039522,-2.861775,-3.5294333,-4.0359554,-3.703051,-3.1421947,-3.022746,-2.8037682,-2.4543734,-2.7417877,-2.3613513,-1.866976,-1.774253,-1.8608905,-1.7881454,-1.7712477,-1.7762911,-1.7923341,-1.7153556,-1.6899523,-0.42121115,-2.226978,-1.8071553,-2.020349,-1.6893469,-1.5773776,-1.7450761
+-1.2283559,-2.6076956,-3.4309154,-3.7922602,-3.8454275,-3.99443,-4.090166,-4.1411076,-3.986167,-3.6369538,-3.751021,-4.949071,-4.8647156,-4.841797,-4.9009695,-4.8804417,-4.8138456,-4.7139196,-4.4091425,-4.8797264,-4.972335,-4.9816713,-4.896484,-4.814601,-4.777819,-4.6866646,-4.4545884,-4.8830376,-4.683808,-4.7395983,-4.9539332,-4.9210386,-5.0024667,-5.006661,-4.9034233,-4.780976,-4.6350484,-4.636571,-4.357834,-4.4572496,-4.5382404,-4.417199,-4.3562536,-4.2854576,-4.2495537,-3.8171072,-4.187245,-4.387462,-4.1589475,-3.9769187,-4.076436,-3.9387245,-3.8188481,-3.6266253,-3.5360317,-3.6852288,-3.6055923,-4.656164,-4.6358533,-4.3559184,-4.4416094,-4.565496,-4.5476074,-4.4610233,-4.7842755,-4.7908535,-4.5918856,-4.4739676,-4.2799196,-4.1473694,-4.0057464,-3.7791958,-3.9178295,-4.353916,-4.168606,-4.79535,-4.801013,-4.8305607,-4.578124,-4.501593,-4.4815,-4.4727864,-4.3582897,-4.2064,-4.1194124,-3.8253112,-3.7788396,-3.612872,-3.4196706,-3.6544795,-3.5091991,-3.1517298,-2.9960964,-2.90937,-2.952785,-3.427329,-4.2431946,-4.0089264,-3.8398564,-3.4604099,-3.7005117,-4.3656106,-4.4474134,-4.277914,-4.171212,-3.7625308,-3.858337,-3.9172626,-3.5571446,-3.4854312,-3.2903295,-2.9494743,-2.5772061,-2.637404,-3.114428,-3.9279194,-3.7150092,-3.7549853,-4.387999,-4.7566624,-4.660943,-4.5371976,-4.753769,-4.673009,-4.4606643,-4.1796227,-3.948201,-4.0522966,-4.575611,-4.47528,-4.5902767,-4.4198394,-4.1166687,-4.018014,-4.174163,-4.5129647,-4.6420856,-4.266921,-4.880219,-4.891194,-4.89835,-4.9013395,-4.9265337,-4.8200865,-4.9190226,-4.785053,-4.6790576,-4.595199,-4.3718123,-4.1510787,-3.9315412,-3.6985903,-3.9066405,-3.6688123,-3.575883,-3.6265378,-3.3977575,-3.4139824,-3.6459076,-3.8149552,-3.7948313,-3.6887057,-3.679604,-4.2020817,-4.1545506,-3.6982598,-3.343954,-2.9428067,-2.9801693,-3.1635337,-3.3152668,-3.7715142,-3.3593721,-3.011847,-2.7522378,-2.6256776,-2.4323192,-2.3965857,-2.3861172,-2.4148328,-2.3973696,-2.438468,-2.3720584,-2.132998,-2.018818,-1.9440966,-1.9345988,-1.9331044,-1.9502584,-1.9461976,-1.9571396,-1.9147284,-1.9266139,-1.9509474,-1.9700817,-1.1990424,-1.7776288,-3.0978386,-3.5099,-3.714306,-3.7939768,-3.7368636,-3.5205066,-3.8040385,-3.9157066,-3.7301373,-3.511117,-3.187457,-3.0580637,-2.8733556,-2.6739867,-2.7603812,-2.858052,-2.6481404,-2.7308836,-2.635122,-2.5528445,-2.2461772,-2.3273458,-2.211548,-1.8944633,-2.178572,-2.3401573,-2.5550878,-2.4355445,-2.294744,-2.4140077,-2.4223285,-2.293692,-2.2659585,-2.3602145,-1.931585,-4.2625265,-4.4539747,-4.436365,-4.3649364,-4.1160808,-5.0077834,-5.030939,-4.9867597,-4.9894757,-4.2275476,-4.948053,-5.1539416,-5.174841,-5.0464306,-4.683016,-5.0520053,-4.957089,-4.9633074,-4.911307,-4.9620423,-4.6101685,-4.618189,-4.8299675,-4.7083216,-4.9519887,-4.8891873,-4.7295585,-4.75191,-4.7365065,-4.933034,-4.488327,-4.5289774,-4.78953,-5.0393696,-5.061634,-4.768685,-4.880696,-4.835329,-4.685896,-5.15773,-5.101367,-5.1045227,-4.94479,-5.0997896,-4.698095,-5.067992,-5.204862,-5.1590815,-4.820112,-4.43546,-4.319193,-4.3523917,-4.600793,-5.0219555,-5.0131197,-4.917051,-4.810424,-4.7524757,-4.498755,-4.6842937,-5.1252513,-4.9486876,-5.0423346,-5.0826,-4.883993,-5.18613,-5.22878,-5.151806,-5.135118,-4.9853683,-4.9221535,-4.9856877,-5.023513,-4.9701376,-4.9059467,-4.8817887,-5.1291714,-4.9160895,-4.831955,-5.02732,-5.049184,-5.010971,-4.955144,-4.96113,-4.876756,-4.813388,-4.576395,-4.5092382,-5.0121603,-5.0719624,-5.080056,-4.95115,-4.7344484,-4.5726533,-4.5328074,-5.1443195,-5.1733437,-5.1315746,-5.121394,-4.935063,-4.6423883,-5.0600853,-5.10301,-5.0317507,-4.9122834,-4.8898125,-4.6501675,-4.761312,-4.7733006,-5.0609865,-4.9914246,-4.7966847,-4.920006,-4.951053,-4.989913,-5.098524,-4.9458733,-4.8815503,-4.7219787,-4.735825,-4.485286,-4.5013847,-4.456105,-4.3535986,-4.2688084,-4.1798096,-4.1916122,-5.059369,-5.001952,-4.80059,-4.6471066,-4.4776673,-4.840315
+-0.42596155,-1.1421558,-1.4253374,-1.6146942,-1.7269496,-1.9446896,-1.9928178,-1.9623502,-1.8958939,-1.6877664,-1.4150347,-2.1532328,-2.2828174,-2.3964376,-2.73874,-2.8726394,-3.0490766,-3.07818,-3.032751,-3.5035942,-3.826799,-3.8881888,-3.9257574,-3.7647548,-3.499995,-3.1660483,-3.020649,-3.508534,-3.1697845,-3.3025582,-3.8306193,-3.9576464,-4.102564,-4.077386,-3.8386445,-3.6460462,-3.225328,-2.872169,-2.5379896,-2.2520466,-2.2110903,-2.1345897,-2.4077923,-2.368645,-2.185593,-1.8766669,-2.1608531,-2.3894782,-2.3696928,-2.1404917,-2.043416,-1.9937791,-1.9269942,-1.848432,-1.8234422,-1.8543358,-1.1512084,-2.1094577,-2.0147276,-1.9661158,-1.9311863,-1.9195505,-1.7178712,-1.760734,-2.1534925,-2.0634546,-1.9866842,-2.0398808,-1.9670562,-1.9391505,-1.8917445,-1.7163953,-1.5844792,-1.3330096,-1.628432,-1.6515164,-1.6246005,-1.6612873,-1.2373362,-1.3282489,-1.6329412,-1.8618964,-1.8725345,-1.8428128,-1.8186723,-1.8714558,-1.9117924,-1.4604081,-1.4917655,-1.8956617,-1.8299782,-1.9175652,-1.8872347,-1.847738,-1.7317463,-1.5798416,-1.677917,-1.8068343,-1.8679391,-1.4700886,-1.6626135,-1.8219652,-1.8825738,-1.4922305,-1.7076666,-1.550979,-1.6850358,-1.8675152,-1.9751791,-2.0168686,-2.085935,-2.112802,-1.6943856,-1.8995342,-1.4040127,-1.7810344,-1.4967529,-1.2957171,-2.145518,-2.2434263,-2.0932503,-2.0232983,-1.9040631,-1.8409293,-1.8011768,-1.8133703,-1.9017391,-1.5699619,-1.8263156,-1.4648018,-1.7107099,-1.693024,-1.6793152,-1.5435873,-1.9069797,-2.4609625,-2.7138577,-3.0902078,-3.6382017,-3.6595783,-3.763454,-3.7230601,-3.7369235,-3.5757203,-3.3702836,-2.880252,-2.7697468,-2.7159824,-2.5858297,-2.680727,-2.8593993,-2.4859717,-2.3259633,-2.1039863,-1.9762858,-2.005031,-1.9986697,-1.5927268,-2.5779395,-2.433205,-2.3605394,-2.3302944,-2.327654,-2.105093,-2.0742528,-2.088533,-2.0761743,-2.0856595,-1.9282585,-1.6564219,-1.8835518,-1.8984419,-1.9414586,-2.034734,-2.09587,-2.1168234,-2.1845832,-2.1855116,-2.1635485,-2.1421256,-2.2233567,-2.2075365,-2.1788135,-2.3531852,-2.5072608,-2.5192173,-2.5843987,-2.5648627,-2.5512714,-2.5766416,-2.598823,-2.5128477,-2.6361437,-2.7423477,-2.6531446,-2.6189392,-2.5380788,-2.479285,-2.481263,-2.440876,-2.3951402,-2.4179418,-1.5710148,-1.8097569,-2.1219785,-2.2862415,-2.4048107,-2.5327637,-2.5492506,-2.615471,-2.6449814,-2.6120505,-2.5595179,-2.5664,-2.5985856,-2.6212113,-2.5310721,-2.3293538,-2.5115805,-2.6499166,-2.526595,-2.3842614,-2.4324656,-2.4333973,-2.626799,-2.6962352,-2.6697028,-2.604983,-2.5896187,-2.6059084,-2.594127,-2.39773,-1.8931544,-2.1951303,-2.5199246,-2.6387029,-0.83223474,-1.9011708,-2.2079365,-2.2364454,-2.3781269,-1.2573961,-2.0013885,-2.4787452,-2.6974914,-2.5375056,-2.050784,-3.0330033,-3.2631035,-3.3482912,-3.933338,-4.1650476,-3.9765334,-3.8179598,-4.008502,-4.1795797,-4.1280537,-4.443861,-4.4435472,-4.539524,-4.3906636,-4.589102,-4.0519285,-3.9334807,-4.0333414,-4.320882,-4.3850183,-4.332072,-4.5095897,-4.4525146,-4.3935223,-4.5829816,-4.373312,-4.3507566,-3.9264922,-4.497671,-4.1840982,-4.5874248,-4.798647,-4.855558,-4.322212,-3.8923616,-3.3252296,-3.0368133,-3.3231978,-4.252838,-4.46623,-4.440711,-4.2193017,-4.2919426,-4.202236,-4.3012786,-4.485939,-4.1002655,-4.578947,-4.459557,-4.442625,-4.62547,-4.889653,-4.8565245,-4.854295,-4.643428,-4.4919553,-4.465522,-4.4364815,-4.441697,-4.3854837,-4.1726785,-4.2769,-3.9155564,-3.3747683,-3.9924116,-4.183694,-4.2302938,-4.1955714,-4.090557,-3.8744278,-3.9646034,-3.1544304,-2.7299232,-3.1914232,-3.6816244,-3.790556,-3.717732,-3.5955582,-3.3000832,-4.0546513,-4.382145,-4.5498657,-4.497837,-4.5230646,-4.3799834,-3.8848894,-4.2508144,-4.122145,-4.373997,-4.110879,-3.864304,-3.3560452,-3.5775657,-3.574907,-4.189352,-4.024166,-3.741591,-3.590175,-3.9511096,-4.165928,-4.377616,-4.3373113,-4.286853,-3.851841,-3.9679494,-3.5288856,-3.407228,-3.155487,-2.9968638,-2.7595606,-2.5759263,-3.179458,-4.115374,-4.1003466,-4.070695,-3.8293748,-4.1014853,-4.531803
+0.06209975,-1.2568268,-2.0601137,-2.6376224,-2.4569926,-2.2460349,-2.1249802,-1.8611885,-1.6163441,-1.5168208,-1.2709819,-1.3561898,-1.3510717,-3.1976357,-3.4281888,-3.8134208,-3.619734,-3.7671933,-3.8042293,-3.859269,-4.0527153,-4.2146726,-4.3315573,-3.900369,-3.5685925,-3.266738,-3.0517602,-4.0913086,-3.8401132,-3.588717,-3.142839,-3.9152277,-4.1472626,-4.37704,-4.3797636,-4.143245,-3.2439103,-2.587068,-2.2317817,-2.13,-1.9891931,-2.0637846,-2.2527897,-2.4034762,-2.2584066,-0.7875762,-1.5055627,-2.2441006,-2.267332,-2.4264104,-3.1266215,-2.630056,-2.2189882,-1.9493535,-1.9394192,-2.0288467,-1.7452084,-0.7306434,-2.279089,-1.9819893,-1.8983704,-1.2604618,-1.9100096,-2.5516708,-2.9945843,-3.7692935,-3.8030622,-3.5200706,-2.688654,-2.1892276,-1.7535866,-2.0041082,-2.5498676,-2.815761,-3.5497823,-3.299318,-2.6370125,-2.2198038,-1.729968,-1.8316365,-1.9304518,-1.8243464,-1.9905857,-2.1578825,-2.347286,-2.539493,-2.778633,-2.011362,-1.3197796,-1.7961308,-1.83386,-2.1226225,-2.4960537,-2.603507,-2.415772,-2.4101145,-2.0577726,-2.3172476,-1.8646871,-2.2080338,-2.0096369,-1.9556447,-1.7449417,-1.8521316,-2.1876967,-2.021715,-0.71144426,-1.4397295,-1.0770527,-1.5323889,-1.5867628,-1.935719,-2.219503,-1.9136454,-2.056079,-1.4670314,-1.1437775,-1.6124481,-2.2247086,-2.4324598,-2.0344918,-1.8355516,-1.6509796,-1.7926096,-2.031525,-2.234334,-1.8522388,-2.2381957,-1.9285226,-1.7442201,-1.8725005,-1.2015458,-1.2452115,-1.1819419,-1.0701963,-2.1880631,-2.8132586,-3.4222684,-3.669806,-3.737195,-3.8611963,-3.800497,-3.860626,-3.5481336,-3.2060308,-2.700499,-2.2551417,-2.0692353,-1.7381411,-2.2319727,-2.1155777,-2.1382055,-1.9306476,-2.0082881,-2.2027712,-2.5458264,-0.9089636,-1.5766135,-2.1980884,-2.5896451,-3.0779424,-2.9546642,-2.930152,-2.8504224,-2.8528163,-2.9195025,-3.127054,-2.8628025,-3.0924525,-3.671927,-3.7237833,-3.1485019,-2.4998307,-2.0358434,-1.8437135,-1.7781918,-1.72113,-1.7421263,-1.8398721,-1.5429516,-2.136491,-2.4696617,-2.5429165,-2.8259006,-3.310505,-3.179138,-2.631864,-2.8888164,-3.0908427,-3.351582,-3.4908292,-3.3308256,-3.3454576,-3.418532,-3.3710585,-3.4110644,-3.4379451,-3.4650745,-3.3995204,-3.3418636,-3.2934651,-3.0704782,-2.6411715,-2.9343865,-2.9500952,-3.1502495,-3.2687042,-3.3729692,-3.346811,-3.53553,-3.533773,-3.4542634,-3.4859626,-3.5724106,-3.5038714,-3.4396725,-3.529276,-3.6682513,-3.816537,-3.718983,-2.2974286,-2.9720073,-3.075728,-3.2148836,-3.512811,-3.4965477,-3.4761589,-3.409401,-3.390283,-3.5099006,-3.3560336,-3.3219254,-2.9299498,-2.8102093,-2.9634643,-3.0382385,-1.4978714,-2.285629,-2.5446925,-2.7047973,-2.6218321,-2.266776,-2.04605,-1.2980739,-2.0643492,-1.9778546,-1.4163716,-1.6192547,-2.2521338,-3.1077008,-3.9238062,-4.180654,-4.2178106,-4.0768285,-3.778662,-3.7797892,-3.9873886,-4.132907,-4.424634,-4.29145,-4.0098257,-4.3030634,-4.300186,-4.2118855,-3.932212,-3.6100252,-3.4495747,-3.6124494,-3.9211283,-3.6802847,-3.452676,-3.1029754,-3.180101,-3.5773792,-2.9087453,-3.169723,-3.4744387,-4.260263,-4.482642,-4.4564905,-4.2970715,-4.061426,-3.7594736,-4.006077,-3.7660344,-4.249255,-4.253212,-4.213675,-4.081095,-4.0345707,-3.7201748,-3.71662,-3.8664467,-3.4888558,-4.36887,-4.0939665,-4.4479833,-4.5712805,-4.517926,-4.3969517,-4.5228386,-4.512948,-4.2528925,-4.316621,-4.1057997,-3.954618,-3.8911586,-3.7928574,-3.8300502,-3.7555351,-3.2574563,-3.5931952,-3.8620758,-4.0326624,-3.9605408,-3.6626835,-3.566844,-3.7070684,-2.8296103,-2.9111435,-3.162133,-3.5391066,-2.99877,-3.1905694,-3.1090212,-2.841649,-3.5455608,-4.2572436,-4.441933,-4.453744,-4.5640507,-4.177509,-3.8480682,-3.8505511,-3.9605799,-4.3514524,-3.9132805,-3.321126,-2.6956825,-2.936716,-3.2970693,-4.1408873,-4.170904,-4.3826303,-3.9931464,-4.193853,-4.037829,-4.3350925,-4.0183077,-3.56199,-3.269515,-3.328224,-2.6992307,-2.6673026,-2.675057,-2.473762,-2.2371426,-2.0799432,-1.9469196,-3.6984954,-3.7926967,-3.5911026,-3.1474204,-2.8718047,-4.098388
+-0.5493699,-1.2959628,-1.1259356,-1.2036327,-1.1776761,-1.5843534,-1.862156,-1.8272464,-1.7656907,-1.3082306,-1.9422907,-1.9229631,-1.7244784,-1.9352072,-2.3558297,-2.7415533,-2.824513,-3.426085,-2.9155445,-2.2788265,-2.99834,-2.7717624,-2.0760865,-2.3509088,-2.736069,-3.0614042,-3.0024545,-2.9988241,-2.9100184,-3.0523002,-3.1420279,-3.2615185,-3.302483,-3.6755745,-3.2324228,-3.3958588,-3.8297515,-3.628875,-3.3929162,-3.4026673,-3.1180444,-3.535797,-3.8232107,-3.5882072,-3.3717537,-3.428662,-3.5287633,-3.6362953,-3.6434517,-3.6605554,-3.7939875,-3.6233938,-3.4635816,-3.615824,-4.214736,-4.138632,-4.040123,-3.9278917,-4.226839,-4.2484436,-4.2915115,-4.249895,-4.2408533,-4.2661405,-4.026182,-4.4568415,-4.368208,-4.2695346,-4.2192545,-4.1866584,-4.182885,-4.4134293,-4.3518653,-4.2157893,-4.3695087,-4.297656,-4.414937,-4.3471656,-4.3269663,-4.2372437,-4.189606,-4.3804936,-4.3853817,-4.332268,-4.237508,-3.8577735,-4.3545165,-4.4318457,-4.401254,-4.3576484,-4.3544707,-4.366219,-4.337104,-4.271058,-4.1440377,-4.173905,-4.265976,-4.2404776,-4.0181446,-4.399226,-4.326655,-4.2570705,-4.192876,-4.233426,-4.3452215,-4.415665,-4.2838182,-4.0412264,-4.4090643,-4.359478,-4.275895,-3.9547646,-4.3980474,-4.418281,-4.293824,-4.393318,-4.3182797,-4.375908,-4.361787,-4.2715898,-4.1960225,-4.1473804,-4.193245,-3.9699807,-4.379891,-4.220219,-4.404387,-4.44482,-4.3991294,-4.2804375,-4.1835723,-4.130195,-4.306363,-4.536173,-4.3752713,-4.421729,-4.3384013,-4.1711698,-4.3249774,-4.305783,-4.3434734,-4.0211406,-4.372432,-4.292117,-4.3406944,-4.354119,-4.3532295,-4.278314,-4.141623,-4.1861525,-4.095502,-4.4474144,-4.3778567,-4.389313,-4.253042,-4.1625476,-4.102673,-3.6872673,-4.3597736,-4.489501,-4.3279448,-4.372727,-4.4090014,-4.3465843,-4.208169,-4.348714,-4.322552,-4.2531204,-4.071936,-4.176315,-4.3759413,-4.2385364,-4.3217497,-4.282973,-4.231425,-4.365624,-4.2933125,-3.9130213,-4.381222,-4.3484635,-4.399294,-4.3986764,-4.4044766,-4.386716,-4.348463,-4.280579,-4.263713,-3.997653,-4.3159013,-4.2378483,-4.2350593,-4.183708,-4.2275457,-4.1942797,-4.1787224,-3.9595919,-4.0099535,-4.0548124,-4.3722444,-4.1248045,-4.361642,-4.1905584,-4.0080175,-3.9298325,-4.0885286,-4.0201077,-4.0310593,-3.9176183,-3.867755,-3.9695158,-4.1721363,-4.269794,-4.080205,-3.9628153,-4.243909,-4.3072367,-4.1757035,-4.1964707,-4.310723,-4.231063,-4.190783,-4.2324195,-4.080703,-4.204115,-3.861558,-3.6777508,-3.8736448,-4.1019344,-3.8350413,-4.10533,-4.15361,-3.6026819,-3.2895827,-3.1377397,-3.1183357,-3.085391,-3.062003,-3.3889418,-3.2259429,-3.108089,-3.0650115,-3.3240156,-3.8319101,-3.671548,-3.3534577,-3.0337105,-2.8535788,-2.6937995,-2.8808076,-2.994092,-2.943055,-2.7818823,-2.1892495,-1.5768106,-1.2700869,-1.2680491,-1.2870352,-1.2827727,-1.2409215,-1.1891836,-1.2362825,-1.1454724,-1.1358998,-1.4005917,-1.4732498,-1.607181,-1.5631038,-1.5561777,-1.2853707,-1.4013067,-1.5076189,-1.2930262,-1.4186329,-1.3939382,-1.3189127,-1.3333515,-1.3214611,-1.3884164,-1.4265045,-1.2578038,-1.1632158,-1.2211393,-1.1120464,-1.1807176,-1.2727419,-1.3812056,-1.1055049,-1.0522239,-1.16087,-1.2087756,-1.3179203,-1.3584956,-1.3679355,-1.437661,-1.6604936,-1.6965996,-1.7501723,-1.8049973,-1.9430856,-1.9059621,-1.8975059,-1.837574,-1.7720693,-1.5950838,-1.3682936,-1.5150062,-1.5584503,-1.4080864,-1.3322285,-1.3521849,-1.433977,-1.3979422,-1.4178503,-1.3898362,-1.2930759,-1.3092663,-1.415646,-1.3900841,-1.4438174,-1.5300362,-1.4076074,-1.1889536,-1.2257789,-1.7134523,-1.9358181,-1.7523739,-2.0901668,-2.31452,-2.0764017,-1.8225695,-1.653789,-1.5488117,-1.6561496,-1.6494278,-1.7723905,-1.6311604,-1.5490158,-1.3860847,-1.2063224,-1.6728704,-1.8784803,-1.7750009,-1.6152536,-1.3979459,-1.3778585,-1.3758857,-1.4202703,-1.5177284,-1.5875609,-1.5332005,-1.4894565,-1.6664747,-1.4424894,-1.8791612,-1.9590046,-1.7426964,-1.4354049,-1.694168,-1.67172,-1.7242383,-1.9055339,-1.8879645,-1.8632712,-1.7747765,-1.8845887
+-1.2732507,-1.3135082,-1.2502253,-1.4426755,-1.5256094,-1.5500706,-1.1870078,-1.2323533,-1.3288677,-1.412762,-1.7392206,-1.6668559,-1.7742321,-1.984034,-2.1139376,-2.184979,-2.2918715,-2.3432603,-2.3606107,-2.403925,-2.432528,-2.628222,-2.3274589,-1.7489767,-2.2884433,-2.514906,-2.352425,-2.2212434,-2.3323717,-2.3606799,-2.4957983,-2.4653006,-2.5375621,-2.4294748,-2.4753165,-2.5193934,-2.464325,-2.5278091,-2.3092241,-1.6286141,-2.37466,-2.2007554,-2.3024719,-2.4555569,-2.4688225,-2.4644685,-2.4241848,-2.4730453,-2.455748,-2.3810582,-2.4407613,-2.4870338,-2.5180764,-2.2714338,-1.5450529,-1.9513528,-2.2741401,-2.0364661,-2.164012,-2.3728251,-2.3702104,-2.0320306,-2.2817996,-2.1111796,-1.896061,-2.0964642,-2.249326,-2.378083,-2.3771892,-2.2811,-2.133028,-2.1668725,-2.4163773,-1.76446,-2.047396,-1.7291833,-2.0010262,-2.1333635,-2.2157269,-2.3739362,-2.2000308,-2.5253806,-2.4948676,-1.4886916,-2.2363205,-2.190617,-1.969637,-2.3159418,-2.42062,-2.479221,-2.0855348,-2.3176382,-2.4683328,-2.5311325,-2.5841267,-2.5510273,-1.4734782,-1.9765991,-2.2782485,-2.47124,-2.5073795,-2.5132158,-1.5967106,-2.4019146,-2.5260892,-2.2590554,-2.5952435,-1.931272,-2.426087,-2.5871775,-2.2904372,-1.5656881,-2.035008,-2.1556094,-2.257056,-2.5749202,-2.7050352,-1.6210649,-1.5235819,-2.100409,-2.2824311,-2.4744344,-2.5480576,-2.4553018,-2.6502624,-1.9763273,-2.4656684,-2.6447196,-2.8523214,-3.046115,-3.1873221,-3.1799018,-1.456673,-2.2545276,-1.9393615,-2.4330406,-2.644717,-2.7473853,-1.7994667,-2.4977741,-2.1595945,-1.9858938,-2.366008,-2.6566496,-2.773642,-2.1960845,-2.6738715,-2.886158,-2.8123279,-3.0635805,-3.144812,-3.2292686,-3.3991017,-3.363018,-3.505735,-3.5644155,-3.5679798,-3.5798762,-2.2754943,-1.8113623,-2.5990481,-1.9945241,-2.2111712,-2.7410603,-2.9050252,-2.7114253,-2.9683576,-3.0629451,-2.4907024,-2.9910307,-3.0677779,-3.0132217,-3.2346983,-1.1879226,-1.3911772,-2.1616147,-2.3903818,-2.544955,-2.8853412,-2.6429453,-2.7975273,-2.8480144,-2.9562507,-2.9635441,-3.1261673,-3.236627,-3.0925148,-2.7112427,-3.1014185,-2.373274,-2.7539096,-2.7524533,-2.921536,-2.9556053,-2.7392194,-2.9277134,-2.8350904,-3.0127025,-3.1650553,-2.6135767,-2.818281,-3.1265006,-3.0104804,-2.9675148,-2.959867,-3.0868325,-3.0085924,-2.9135284,-1.8576586,-2.5950058,-2.7916048,-2.8791285,-2.719499,-2.9509406,-3.0961723,-3.1337948,-3.1492712,-3.0976863,-3.1709898,-3.2103808,-3.256528,-3.2107139,-3.0600386,-3.1594763,-3.0935202,-2.9195712,-2.9907198,-3.101058,-3.1617665,-3.1195009,-3.1277761,-3.157793,-2.9910846,-2.7276087,-2.578267,-2.5218034,-1.9449751,-2.531604,-2.630052,-2.4302135,-2.2753215,-2.258543,-2.4339857,-2.717674,-2.7944841,-2.561937,-2.591185,-2.0654094,-2.097645,-2.1955237,-2.086072,-2.0937314,-2.1784956,-2.234998,-1.5582173,-1.8522502,-2.0077085,-2.048274,-1.9661313,-2.0064852,-1.5371858,-1.6254364,-1.7410535,-1.9518615,-1.7842542,-1.7928108,-1.5840763,-1.4497312,-1.259009,-1.0935154,-1.252656,-1.269472,-1.3425984,-1.4214182,-1.3502837,-1.4318886,-1.236634,-1.069372,-1.4334023,-1.5904163,-1.6157805,-1.6135517,-1.4277318,-1.5278546,-0.8623768,-0.698385,-0.8491509,-0.86433345,-1.165936,-1.2219939,-1.2591679,-0.7853089,-0.8578776,-0.88338184,-0.7953628,-0.97946864,-0.866299,-1.1615516,-0.9508298,-0.8969388,-0.85016745,-0.860232,-1.0447334,-1.1887947,-1.2432584,-1.1173991,-0.9839708,-1.3967451,-1.4313242,-1.5929395,-1.2792765,-1.2252665,-1.1006812,-1.0756165,-1.3941706,-1.5881648,-0.90451556,-0.7428462,-1.0108032,-0.8487138,-0.8865447,-0.9721293,-0.7228754,-0.71878153,-0.9961752,-1.2252752,-1.0739493,-1.3955666,-1.4989816,-0.9810762,-1.1002307,-1.2726393,-1.1222923,-1.1787903,-1.4433168,-1.1643965,-1.3498465,-1.1535057,-1.3870946,-1.7730504,-1.8339323,-1.648509,-1.5774728,-2.0622184,-2.219921,-2.135579,-1.9370507,-1.8129267,-1.7442014,-1.6056341,-1.7202002,-1.6270018,-1.3782238,-1.7275611,-1.6386273,-1.5172806,-1.6372758,-1.7154108,-1.5926951,-1.9822844,-2.002717,-1.9861616,-2.0541027,-2.2817426,-2.2373762
+-1.2349244,-1.1829326,-1.2483629,-1.6881446,-1.724742,-2.318966,-2.1208384,-1.975624,-1.7055056,-1.7481784,-1.9228474,-1.6645777,-1.6133182,-1.6682667,-1.710271,-1.8964324,-2.0207047,-2.0818973,-2.0689964,-2.1323547,-2.1962056,-2.2419944,-2.0403225,-2.1542153,-2.1370473,-2.2526774,-2.1508327,-2.4073615,-2.4209328,-2.0699635,-2.6585464,-2.4475217,-2.354863,-2.3729208,-2.3690805,-2.4223604,-2.517149,-2.302288,-2.1777592,-2.0556018,-2.3934822,-2.4951084,-2.3805063,-2.315124,-2.2681065,-2.3789873,-2.318239,-2.2591867,-2.2329664,-2.2636743,-2.4119575,-2.493365,-2.4171848,-2.5226793,-2.5596097,-2.4721103,-2.3032713,-2.208999,-2.266092,-2.6033225,-2.3896952,-1.9233805,-2.2974105,-2.5525851,-2.3166633,-2.217554,-2.5506258,-2.555263,-2.4731512,-1.6917735,-2.2137883,-2.0811348,-2.19725,-2.457736,-2.3137317,-2.0038576,-2.4124277,-2.5643344,-2.7449274,-2.8475325,-2.987609,-3.0584235,-2.947966,-2.954199,-3.0985556,-3.1499681,-1.4578071,-2.7832499,-2.9684503,-3.0646853,-2.6645389,-3.0403247,-3.1358442,-3.2258072,-3.2700434,-3.2881203,-1.5984527,-1.9634527,-2.8914785,-3.1961837,-3.1006331,-3.1772552,-3.02675,-3.2301378,-3.2939117,-3.1601949,-3.3205485,-1.2645112,-2.935303,-3.153222,-2.8136716,-2.9584544,-1.4558965,-1.1748374,-2.5564828,-2.9511561,-3.1559753,-3.2976165,-1.9302363,-2.4286025,-2.857306,-3.1172643,-3.231812,-3.2326105,-3.2695804,-1.5704288,-2.2409985,-3.1837893,-3.3001401,-3.4128118,-3.3643942,-3.3847957,-2.2424233,-2.3863084,-2.6141372,-3.179613,-3.3030603,-3.3263907,-2.3528862,-3.0242453,-1.6956426,-1.6041936,-2.8819196,-3.1597676,-3.2149758,-0.5028917,-2.6360013,-2.948474,-2.1242204,-2.8751357,-2.9967976,-3.129251,-3.3742895,-3.2693694,-3.5165062,-3.5552163,-3.4722877,-3.5306904,-3.4286013,-0.59597605,-2.7133043,-1.8745338,-2.5069087,-2.986412,-3.0124922,-2.0127277,-2.8064249,-2.9752002,-2.0662086,-2.8121986,-3.0734396,-2.8479788,-3.0680728,-1.6772062,-1.1350596,-2.1738334,-2.5091949,-2.6873755,-2.8522716,-2.8435438,-2.8052602,-2.9854271,-2.8733554,-2.8593812,-3.0788515,-3.1786375,-2.9662287,-3.0502677,-3.1436315,-3.1158016,-3.0559864,-3.052351,-3.176475,-3.0645742,-2.9239426,-2.962912,-2.9198878,-2.9347925,-2.977807,-2.9958785,-3.1349006,-3.0535715,-2.989056,-2.8114316,-2.9178371,-2.9946399,-2.8609648,-2.8819957,-1.4958302,-2.46134,-2.5690029,-2.6938074,-2.8145094,-2.7954876,-2.859729,-2.9202607,-2.89062,-2.8924375,-2.8898985,-2.9174292,-2.887779,-2.8717673,-2.7604926,-2.7628603,-2.7570302,-2.563414,-2.609839,-2.8296828,-2.8557043,-2.858748,-2.8707972,-2.8621519,-2.5687518,-2.4354966,-2.2903612,-2.4329896,-2.1341105,-2.4781778,-2.4249685,-2.312541,-2.3785806,-2.0833197,-2.3730223,-2.533924,-2.4269586,-2.275085,-2.1830716,-1.7078928,-1.8475593,-2.177064,-1.5840856,-1.7112287,-1.7992159,-1.8129203,-1.3552722,-1.4985663,-1.5208672,-1.5181876,-1.480137,-1.5272106,-1.2687564,-1.2123648,-1.4123509,-1.5172297,-1.426039,-1.1994942,-1.3868316,-1.2494469,-0.9986877,-1.2436088,-0.8344348,-1.1274279,-1.1613903,-1.1695678,-1.1896354,-1.1522659,-1.3933381,-1.445836,-1.0224049,-1.2453712,-1.1943939,-1.1762632,-1.0396831,-1.3904773,-0.8475153,-0.7302653,-0.9811966,-0.99777836,-1.0239139,-0.99716026,-0.86727405,-1.1270611,-0.6928255,-1.0011536,-1.6173943,-1.524196,-1.4216081,-1.685208,-1.4506668,-1.4181722,-1.1188017,-0.940671,-0.8294841,-0.9141505,-1.0535918,-1.0483975,-0.9842475,-1.0085888,-1.0332104,-1.2114578,-0.97071725,-0.9924157,-1.247212,-0.90480787,-1.0212797,-1.212139,-1.2740661,-1.2012941,-0.9199193,-0.95914215,-1.060795,-1.0485115,-1.1501011,-1.4298273,-1.7378972,-2.073512,-1.8853432,-2.304398,-2.2236426,-1.0358773,-0.81362015,-1.092221,-1.207266,-1.5612477,-1.7845842,-1.2083522,-1.2191852,-1.3267897,-1.8287901,-2.2163532,-2.113739,-1.9562147,-1.8291386,-1.7931944,-1.8126798,-1.8369527,-1.6229925,-1.8394784,-1.7708132,-1.6736883,-1.6995643,-2.0436292,-1.8162599,-2.2449121,-2.075176,-1.7523962,-2.2017877,-2.661485,-2.5765014,-2.5038276,-2.5392241,-2.4205208,-2.3806574,-2.1654994,-2.1940084
+-0.8992769,-1.3444446,-1.7639098,-2.0297801,-2.0864573,-1.8303096,-2.4693491,-2.4498029,-2.4749925,-2.3348894,-2.6436222,-2.5859663,-2.4079065,-2.4042811,-2.401403,-2.483213,-2.5987344,-2.6961615,-1.6299866,-2.4782481,-2.113341,-2.3920958,-2.769813,-2.8480277,-2.9666383,-3.0413115,-2.4259481,-2.432033,-2.6477647,-1.5037732,-1.9803327,-1.8235639,-2.3103817,-2.139944,-2.7630415,-2.9476213,-2.9400449,-3.0079334,-2.5662365,-1.7264353,-2.230392,-1.8917699,-2.007052,-2.112367,-2.641489,-2.8927958,-2.717588,-2.9629087,-3.0528996,-3.0248632,-3.1602247,-3.2156458,-3.1833682,-3.0997791,-2.6658225,-1.7952814,-2.0926938,-1.6465446,-2.0485384,-2.5264552,-2.737051,-1.2052767,-2.1761422,-2.6131673,-2.5744867,-2.0645225,-2.7286735,-2.9605432,-3.0801563,-1.0772148,-2.0049212,-2.466561,-1.820901,-2.377911,-2.1940718,-0.60344136,-1.8206289,-2.4788368,-2.7923374,-2.9378924,-3.0140345,-3.1004534,0.025433239,-0.9361829,-1.6304904,-2.028871,-0.08478442,-1.5192434,-2.0865278,-2.4919415,-2.777217,-2.659029,-2.9600446,-3.05755,-2.8173337,-2.996265,0.188747,-1.0790851,-1.2150751,-1.7010933,-1.8458979,-1.93628,-1.259715,-0.93965966,-1.5742807,-2.1089988,-2.5209398,-1.2628175,-1.8546098,-1.9762644,-0.5115121,-1.2523624,-0.36506313,-1.0186193,-0.9395596,-1.5215851,-2.0597715,-2.4554245,-2.6077673,-2.436325,-2.3904028,-2.6237316,-2.7613292,-2.4616895,-2.5267746,-2.776255,-0.32057038,-1.8482469,-2.3423796,-2.5342655,-2.6901886,-2.8076236,-0.9124556,-0.060875136,-1.1070211,-1.5242496,-1.9907109,-2.2240195,-2.5211651,-2.1506448,-2.394714,-0.6992302,-1.917322,-2.6517649,-2.8493266,-0.616376,-0.72017205,-1.4689828,-1.3294047,-1.4014839,-0.5167106,-0.6539555,-1.2105683,-1.498405,-1.991383,-2.538936,-2.7015758,-2.9365172,-2.9390411,-0.5166778,-0.4883285,-1.4445449,-1.285877,-1.9723645,-2.3919477,-2.6035573,-2.537483,-2.826765,-2.4900618,-2.8330421,-3.2061014,-3.306525,-3.287586,-2.8610506,-2.9827154,-1.5796571,-2.209095,-2.407136,-2.9623394,-3.2258904,-3.3044653,-3.2406883,-3.1624098,-2.900492,-3.2628088,-3.3494973,-3.1370695,-3.257032,-2.7332716,-1.0680404,-2.6409755,-2.970423,-3.067522,-2.986723,-3.1424878,-3.3374267,-3.3724246,-3.367844,-2.83246,-2.8159835,-3.2068486,-3.4484367,-3.5307736,-3.580818,-3.7044892,-3.6730118,-3.6513343,-3.5248241,-1.0669589,-2.2609386,-2.7160196,-2.6610923,-2.481607,-2.8172371,-2.8640277,-2.2128263,-2.6644135,-2.9591074,-3.1524887,-3.2411427,-3.2227454,-3.3835707,-3.3824797,-3.4955895,-3.558218,-3.4225419,-3.429573,-3.5508742,-3.5456126,-3.4577017,-3.3753023,-3.461442,-3.5746527,-3.441012,-3.4327679,-3.039157,-2.6395934,-2.8503442,-2.8586285,-2.8374763,-2.7705474,-1.9616286,-2.4673975,-2.5002153,-2.7023983,-2.8977714,-3.006939,-2.0654285,-1.9093456,-1.8899176,-2.088327,-2.4481502,-2.593094,-2.3512726,-1.8098735,-2.14543,-2.4928088,-2.6271427,-2.685453,-2.5634322,-2.4470272,-2.2493327,-2.4250374,-2.3672652,-2.1936905,-2.1236606,-1.851057,-1.6754925,-1.4765085,-1.4001844,-1.418732,-1.3071266,-1.4822217,-1.5879353,-1.5243468,-1.4954953,-1.2486746,-1.8169401,-1.8761206,-1.9178643,-1.9559572,-1.9704512,-1.8618232,-1.6450981,-1.2648886,-1.2655219,-1.6540325,-1.6050462,-1.4941182,-1.5379331,-0.7916094,-1.073597,-0.8773348,-1.1130425,-1.2289269,-1.5107841,-1.431546,-1.5075676,-1.5295267,-1.9489673,-2.0734992,-2.1613307,-2.3787026,-2.526228,-2.6112592,-2.3617535,-2.487637,-2.782433,-2.864272,-2.8391647,-2.603196,-2.264174,-2.0215578,-2.401926,-2.5626273,-2.26442,-1.9828242,-2.2552538,-2.5540652,-2.5196724,-2.6477242,-2.6735125,-2.5520868,-2.629464,-2.639429,-2.7864614,-2.562698,-2.8375049,-2.8077729,-2.631362,-2.7679183,-2.610663,-2.6602814,-2.3232822,-2.4656138,-2.4915352,-2.655301,-2.4353914,-2.7548087,-3.003703,-2.468143,-2.924657,-2.9480476,-3.0275674,-3.114946,-3.0878448,-2.0819526,-2.428034,-2.6798694,-2.6693025,-2.359625,-2.5594623,-2.4767623,-2.4890654,-2.871037,-2.763002,-2.5424416,-2.8031404,-1.6443423,-2.227305,-2.4394298,-2.7198262,-2.2331696,-1.400097,-1.8379894
+-0.58245873,-1.0029707,-1.4081799,-1.7657222,-1.6845057,-2.089963,-2.3604715,-2.2206411,-2.1688294,-2.038023,-2.4443676,-2.278162,-2.0640063,-2.0479028,-2.012779,-2.0120127,-2.1110396,-2.0953286,-2.0749347,-2.403491,-2.325467,-2.1652439,-2.3385093,-2.2680893,-2.3585277,-1.8765802,-2.0282488,-1.8719097,-2.2214098,-1.7140552,-2.0404303,-2.3991604,-2.4400191,-2.4817872,-2.6549535,-2.5897875,-2.5205789,-2.3365169,-1.0186179,-1.5851256,-1.9128339,-1.7462865,-1.9977816,-1.6243688,-2.167191,-2.281396,-2.09769,-2.346267,-2.3567715,-2.379766,-2.547059,-2.6343727,-2.5591874,-2.5554192,-2.6405988,-0.9646861,-1.2161481,-1.4927629,-1.7445611,-1.9968187,-2.2668023,-1.4628524,-2.2094746,-2.3634017,-2.553586,-2.7273352,-2.8305473,-2.9511669,-2.9433024,-2.7876687,-2.8985054,-2.9481554,-1.6458579,-1.9383119,-2.2630444,-2.0307612,-2.5891821,-2.7989495,-2.8852766,-2.889484,-2.7371984,-2.0238557,-1.834257,-2.3600268,-2.7902951,-2.7478123,-2.915195,-3.1854057,-3.2272034,-3.1568084,-2.5236015,-1.8084015,-2.297568,-1.698535,-2.0263393,-2.3888297,-0.95164037,-1.3458295,-1.957901,-2.563518,-1.027088,-1.7510072,-1.7081159,-1.2461325,-1.8240916,-2.3700466,-2.5881271,-1.8429381,-1.791905,-0.8341438,-0.9154456,-1.4191576,-0.9419959,-1.4221052,-1.7625704,-1.9462391,-2.3611984,-2.57118,-1.7669291,-2.242578,-2.618573,-2.70611,-2.7532969,-2.7988153,-2.8224425,-3.0324578,-0.61357695,-2.0652146,-2.2738883,-2.5882502,-2.768571,-2.840241,-2.7014809,-1.5987695,-1.4979546,-2.2647963,-2.4748507,-1.9977525,-2.452281,-2.7409525,-2.9508753,-2.0510461,-2.6352313,-2.9968195,-3.0292675,-2.7874503,-0.95957506,-1.3723131,-0.9998537,-1.5675186,-1.6567461,-1.4691027,-1.72654,-2.2159956,-2.4384704,-2.7008939,-2.6810677,-2.9197688,-2.9420133,-0.9243161,-1.0752391,-1.8672807,-1.5156113,-2.1454844,-2.3363721,-2.4967895,-2.2500315,-2.3374653,-2.1461759,-1.8780621,-2.4281914,-2.6284816,-2.7429414,-2.8008852,-3.0502036,-3.1803846,-3.2314167,-3.2843313,-3.4017582,-3.589206,-3.71489,-3.7005215,-3.6295338,-2.8509731,-2.931685,-3.204763,-3.3150358,-3.4782832,-1.3777393,-2.4260883,-2.9573927,-3.1895196,-3.40477,-3.3780198,-2.5203843,-2.8109634,-3.1597257,-3.1163776,-2.4927692,-2.7476153,-3.0878558,-3.388237,-3.4836035,-3.4322891,-3.524601,-3.6161752,-3.68678,-3.7034822,-2.4638684,-2.8279605,-3.1377563,-3.1433563,-3.3103776,-3.489772,-3.4689665,-1.4297715,-2.4530642,-2.9696484,-3.2579982,-3.3780127,-3.3988743,-3.0160556,-3.1957417,-3.2932596,-3.4189966,-3.2609189,-3.2787104,-3.5042562,-3.4763486,-3.543537,-3.5312843,-3.6171713,-3.3794746,-3.2345576,-3.141311,-2.8646307,-2.4452698,-2.8076181,-2.8082633,-2.795242,-2.90997,-2.6291296,-3.0283263,-2.9267406,-3.0616226,-3.2231126,-3.157473,-2.551441,-2.1319053,-2.2709236,-2.474666,-2.3191605,-2.317842,-2.2821918,-2.1788726,-2.083654,-2.207439,-2.3369718,-2.4167945,-2.307341,-2.2699196,-2.2449837,-2.2158055,-2.2234893,-2.1599631,-2.0568342,-1.8456033,-1.9059699,-2.0227199,-2.1177173,-2.2331257,-2.2419271,-2.2531142,-2.3047867,-2.3219829,-2.2618988,-2.382116,-2.724783,-2.2933583,-2.3465219,-2.3917067,-2.371811,-2.336959,-2.1504357,-2.192269,-2.4233074,-2.5470884,-2.3886127,-2.2855005,-2.1969457,-1.4662352,-1.851312,-1.8113991,-2.1927612,-2.3955975,-2.7050493,-2.9229107,-2.7673998,-2.835985,-2.8566604,-2.7033892,-2.6388018,-2.5139225,-2.5390093,-2.4749055,-2.5896869,-2.9268162,-2.6842837,-2.7300582,-2.6400304,-2.507603,-2.534601,-2.6575203,-2.7426915,-2.4209166,-2.232649,-2.4531991,-2.7574117,-2.703139,-2.7530625,-2.7935033,-2.6329327,-2.7970564,-2.9110217,-2.9085975,-2.8508916,-2.448866,-2.8506021,-2.8785248,-2.9059105,-2.8571646,-2.7841127,-2.809202,-2.858587,-2.3120055,-2.6566806,-2.586541,-2.4787178,-2.8710852,-3.0786223,-2.4502766,-2.840507,-2.7978463,-2.9149368,-2.768355,-2.6253667,-2.4153948,-2.6389022,-2.56122,-2.3996844,-2.6025991,-2.7135124,-2.5001483,-2.695149,-2.6849341,-2.6085615,-2.5112696,-2.6780958,-2.0463152,-2.674737,-2.4244294,-2.7109249,-2.0956745,-1.1019,-1.7780296
+-0.34841,-0.88550967,-0.75990003,-1.0211076,-0.8741492,-0.94914794,-1.3587643,-1.233023,-0.89987105,-0.9228369,-1.0930623,-1.4572846,-1.4425247,-1.4125856,-1.4046282,-1.5385419,-1.6496347,-1.8644911,-1.6173981,-1.2622472,-1.6854664,-1.4460765,-1.558216,-1.7149899,-2.129238,-0.4876624,-1.6040766,-1.6266941,-1.5807059,-1.1733991,-2.0366924,-2.2418766,-2.0894258,-1.891471,-1.6555431,-1.4538134,-1.2436769,-1.2869333,-1.239569,-1.0088879,-0.98601204,-1.4549079,-1.7133611,-1.4718779,-1.509271,-1.1405419,-1.139657,-1.605427,-1.5835656,-1.4298557,-1.5069374,-1.4960115,-1.7084109,-1.8355745,-1.9522537,-0.55944854,-1.046672,-1.4696723,-1.4603928,-1.2502152,-1.478766,-0.9914791,-1.3624002,-1.669225,-1.248269,-1.5986197,-1.7783704,-1.8785244,-1.9993409,-2.151743,-2.3422503,-2.4010901,-2.3733788,-2.2847114,-1.9578801,-2.2432027,-2.5132017,-2.4433866,-2.4962673,-2.5605018,-2.6209795,-2.3429096,-2.5231519,-2.5702653,-2.660511,-1.380443,-1.5002501,-1.6655662,-1.9468598,-2.1883302,-1.5584412,-1.2199786,-1.434126,-1.1990896,-1.8816897,-1.5215381,-1.6429948,-2.3548815,-2.2684593,-1.9261335,-1.5169839,-1.3735341,-1.4868008,-1.2619269,-1.7170483,-1.6756388,-1.530198,-1.5241829,-1.5929431,-1.7856232,-0.7410568,-1.3998333,-1.4068758,-1.5078307,-1.6181027,-1.2176418,-1.9560933,-1.7266394,-1.6819015,-1.6935695,-1.7904497,-1.863482,-0.7317348,-1.3326968,-1.6872262,-1.6225346,-1.9092606,-2.053254,-1.8536663,-1.914596,-1.8086447,-1.8207637,-1.7700398,-1.7677091,-1.2327737,-1.8916345,-2.2496371,-2.5325508,-2.0321045,-1.7570142,-1.7082148,-1.7727034,-1.9224429,-2.0590715,-1.7845727,-2.065389,-2.2085226,-2.1965227,-2.213841,-1.5551038,-2.0095446,-1.1587474,-1.7850858,-1.8314502,-1.8636199,-1.954411,-1.925393,-2.2794342,-2.2784624,-2.4314113,-0.92853564,-1.5868387,-1.6143831,-2.3015018,-2.004476,-1.8607829,-1.83804,-1.5224222,-1.4933251,-2.420847,-2.2649453,-1.9857975,-1.8508874,-1.9160255,-2.1865673,-2.2484176,-2.3568666,-2.3945591,-1.7441627,-2.3459501,-2.4895067,-2.6744652,-2.598668,-2.4249136,-2.56569,-2.709838,-2.8461146,-2.8721275,-2.8472526,-3.0266612,-3.1075606,-3.3033361,-3.354538,-3.368508,-2.9528604,-2.8024664,-3.1317697,-3.111322,-2.94631,-2.9606903,-3.1000051,-1.8270253,-1.6111871,-2.0741522,-2.1388013,-2.2878723,-2.3116713,-2.4169674,-2.4409077,-2.5358238,-2.6514091,-2.7271888,-2.7543423,-2.7549627,-2.860034,-2.9142032,-1.4074191,-2.3532758,-2.3412077,-2.4002922,-2.4214888,-2.1845145,-2.3154528,-2.4186783,-2.4812272,-2.3707263,-2.4280124,-2.5659964,-2.6583133,-2.7063298,-2.7715812,-2.7258592,-2.6581414,-2.336821,-2.3188667,-2.4719493,-2.5394769,-2.6717553,-2.5856848,-2.582459,-2.5993652,-2.2358193,-2.639973,-2.549307,-2.3933773,-2.2777581,-2.3564062,-2.1075852,-2.3259444,-2.2216418,-1.9486271,-1.7599535,-1.8577218,-1.7690902,-1.8302902,-2.2417603,-2.0100284,-2.0270326,-2.1961074,-1.823665,-2.210833,-2.2756646,-2.1993866,-1.9681453,-1.7418863,-1.8717895,-1.9633712,-2.064439,-2.1074579,-1.6663183,-2.0193458,-1.8269604,-1.8549063,-1.7004101,-1.85048,-1.8804843,-1.7052411,-2.1520538,-1.4334625,-1.574927,-1.7606149,-1.8768461,-1.8533541,-1.5752758,-1.9415696,-2.384213,-2.338896,-2.0053964,-1.5988523,-1.3886553,-1.8208138,-1.8247277,-2.0368257,-2.0007582,-1.9931384,-2.335576,-2.282317,-2.0955403,-2.080844,-2.062799,-1.9638623,-1.8069631,-1.8306087,-1.9011396,-1.91942,-2.3253598,-2.4008036,-1.9927112,-2.0046067,-2.0050507,-1.9548013,-2.221322,-2.4492204,-2.46246,-2.0363371,-1.7980732,-2.4333053,-2.5837708,-2.333665,-2.4753823,-2.331845,-2.2508273,-2.6743793,-2.7604332,-2.7807083,-2.7710128,-2.2194796,-2.6134348,-2.6430223,-2.7196202,-2.1693416,-2.160976,-2.582997,-2.5484319,-1.763929,-1.8438613,-1.4451284,-1.768428,-2.4010644,-2.3851247,-1.8426578,-2.0028672,-1.8874693,-1.8188823,-1.600068,-1.668247,-1.6384305,-1.7069165,-1.7123259,-1.4639546,-1.9690531,-2.171832,-2.0722136,-2.2734241,-2.3328953,-2.1767328,-2.121283,-2.4591732,-1.2130742,-1.875496,-1.5975592,-1.7302839,-1.7072908,-1.3735007,-2.121537
+-0.21496224,-0.27110443,-0.49866626,-0.64055383,-0.70700616,-0.9678076,-0.85377413,-0.83691484,-0.8852459,-1.2318717,-1.4160073,-1.2756904,-1.2810948,-1.2925887,-1.3359295,-1.3195659,-1.2286752,-1.1816529,-1.3106828,-1.2842574,-1.3865923,-1.3551216,-1.3404368,-1.276478,-1.2091244,-1.170066,-1.484808,-1.3558266,-1.357509,-1.3829015,-1.3566564,-1.4075345,-1.4064516,-1.2948734,-1.3392875,-1.325497,-1.2666076,-1.3836199,-1.5787547,-1.0425744,-1.4273895,-1.1541576,-1.4693171,-1.4211141,-1.3831081,-1.5361379,-1.6328992,-1.6365129,-1.4655322,-1.5464336,-1.5321711,-1.4809769,-1.4171246,-1.5331677,-1.5637258,-1.2840985,-1.2415031,-1.5113053,-1.4472371,-1.516543,-1.6165191,-1.5379593,-1.6032108,-1.6512655,-1.4807931,-1.5591964,-1.5174516,-1.5671791,-1.5855794,-1.6612395,-1.6763505,-1.686047,-1.6859487,-1.7063947,-1.8129759,-1.6761736,-1.6170565,-1.6378294,-1.5485277,-1.6748762,-1.7339754,-1.700164,-1.6878251,-1.650406,-1.7209789,-1.8486159,-1.847936,-1.1623732,-1.5362638,-1.5763351,-1.6146065,-1.6462682,-1.4245116,-1.5393733,-1.0541564,-1.452114,-1.2933949,-1.3144295,-1.336856,-1.3547881,-1.425892,-1.4393924,-1.5910832,-1.5399866,-1.6129545,-1.5881542,-1.533641,-1.5902573,-1.6481708,-1.6786684,-1.7434883,-1.7838305,-1.6937624,-1.7070729,-1.6688262,-1.7551123,-0.90666807,-1.3760787,-1.4039649,-1.3430763,-1.4214481,-1.4009093,-1.4730234,-1.598728,-1.71847,-1.6406258,-1.5221263,-1.4171853,-1.5730875,-1.7133253,-1.7763778,-1.7975205,-1.7800187,-1.7713318,-0.7359737,-1.3138542,-1.1963694,-1.7323279,-1.4857827,-1.4363344,-1.5963781,-1.6250691,-1.5694205,-1.6061836,-1.6433345,-1.6036764,-1.5793895,-1.6360646,-1.6798211,-1.7341673,-1.7180245,-1.6029636,-1.6534718,-1.517835,-1.4881172,-1.6195993,-1.6931671,-1.7704815,-1.8460603,-1.8947569,-0.92378277,-1.4679154,-1.5260435,-1.5421755,-1.6006413,-1.7128843,-1.8532864,-1.778246,-1.7578946,-1.0692304,-1.461438,-1.5097708,-1.5677904,-1.6797737,-1.7328843,-1.7874125,-1.8349876,-1.9108514,-1.6316886,-1.5758556,-1.7221807,-1.8023769,-1.7906479,-1.8648425,-2.0011432,-2.0914192,-2.1233373,-2.123756,-2.2060611,-2.145197,-1.9842976,-2.1773405,-2.395133,-2.3027864,-2.1297598,-1.4959491,-1.9474487,-1.9186671,-2.1952238,-2.1099942,-2.1023145,-2.1158998,-1.391131,-1.7791922,-1.7444686,-1.6771382,-1.8739567,-1.8762594,-1.8889776,-1.8999239,-1.9307694,-1.9283955,-2.054324,-2.1338577,-2.1494641,-2.3305042,-2.2912285,-2.123354,-2.219353,-2.3780615,-2.4596071,-2.5766969,-2.2976875,-2.2874994,-2.3579693,-2.218956,-2.1895385,-2.333274,-2.3613482,-2.3402457,-2.3737783,-1.9116502,-2.0151825,-1.9265772,-2.088039,-2.381742,-1.5489906,-2.027597,-1.9182377,-1.947492,-1.9718336,-1.112577,-1.7503644,-1.8720304,-1.7443067,-1.7267505,-1.8801605,-2.0401926,-1.9222748,-1.9209086,-1.8525087,-1.602645,-1.4201249,-1.621812,-1.8917222,-1.969396,-2.0578268,-1.5511786,-1.5559565,-1.5998026,-2.1443052,-1.3189723,-1.0658516,-1.2647498,-1.4349467,-1.5645845,-1.9199959,-1.8865722,-2.091692,-2.203032,-2.0981078,-1.8273963,-1.8768946,-1.6958356,-1.9068762,-1.9261061,-2.0121686,-2.169373,-1.7253562,-1.6833541,-1.411745,-1.2146354,-1.2682178,-1.3840277,-1.9427174,-1.8267554,-2.0547895,-1.7123761,-1.4221817,-1.7477816,-1.9102632,-1.7389765,-1.945882,-1.9520361,-1.8233002,-1.8319572,-2.0244431,-2.013407,-1.7735667,-1.8206556,-1.9005076,-1.6667459,-1.550756,-1.869434,-1.6368395,-1.8309951,-1.7421607,-1.5962752,-1.4081291,-1.4816068,-1.8579035,-1.9261124,-1.8552996,-1.8461505,-1.4980947,-1.6406159,-1.762545,-1.7024415,-1.6642753,-1.7023597,-1.5043689,-1.5152494,-1.5365444,-1.68386,-1.6539283,-1.6917137,-1.8258982,-1.5947689,-1.4912332,-1.3969182,-1.503868,-1.4472837,-1.6828115,-1.7495161,-1.5613388,-1.3776728,-1.2838281,-1.3463248,-1.8314482,-1.7298616,-1.6028169,-1.3834759,-1.4390732,-1.7038326,-1.5007999,-1.2055584,-1.5346035,-1.6485022,-1.2151444,-1.5747641,-1.7260859,-1.4999989,-1.5919367,-1.3810266,-1.5010418,-1.4045577,-1.4357624,-1.4166301,-1.5437602,-1.5698787,-1.6008273,-1.5887312,-1.5740116,-1.5852176,-1.5895653
+0.45239875,0.16032037,-0.2057456,-0.5717815,-0.65229493,-0.9411208,-1.2017289,-1.2772611,-1.161765,-1.2191242,-1.3551835,-1.4671289,-1.3354157,-1.2896842,-1.1750001,-1.3356314,-1.3160781,-1.3381163,-1.2742807,-1.5031132,-1.5668825,-1.5161207,-1.4525057,-1.2780932,-1.2979211,-1.336059,-1.0479108,-1.303629,-0.4615446,-1.5235556,-2.3789902,-2.952229,-2.8667276,-2.5582929,-2.201663,-1.7951236,-1.614592,-1.6445305,-1.2658974,-0.7107908,-1.2727872,-1.0128875,-2.0073411,-1.9040321,-1.6712837,-1.3778609,-1.1571733,-1.5170977,-1.5087734,-0.8882925,-1.5691117,-1.5584825,-1.6155585,-0.23414955,-1.0408987,-1.9313573,-2.288157,-3.1755042,-3.159656,-2.4023407,-1.9611136,-1.7862436,-1.5624422,-2.1539292,-3.1015995,-2.9324777,-2.4155293,-2.0102491,-1.8854529,-1.7944888,-1.8651493,-1.9850701,-1.8058978,-1.7614187,-1.9216571,-1.9412193,-1.7311139,-2.0801091,-2.4020767,-2.2827272,-2.326312,-2.2846265,-2.2526884,-2.2155256,-2.3031037,-2.4637818,-1.8013805,-1.4122185,-1.7598828,-2.0307443,-2.1883361,-2.1752222,-2.0295863,-2.153033,-2.0135283,-2.0039635,-1.8547782,-1.8522874,-0.99059945,-1.0810329,-1.6806101,-1.9573632,-1.5226774,-1.7183532,0.0003698282,-1.0243045,-1.5791456,-1.8562796,-1.9347297,-2.0466604,-1.5872442,-1.3355372,-1.2813019,-1.0907176,-1.1137226,-1.2534217,-1.643254,-0.9880031,-0.9893312,-0.6126887,-0.96149427,-1.2695795,-0.9577654,-1.4147779,-1.6988165,-1.9612082,-2.0557604,-2.145053,-2.5742354,-2.8270411,-2.9021134,-2.9468215,-2.9904969,-2.8787758,-1.8081728,-1.4300132,-1.4982008,-1.6692313,-1.9036813,-2.1742108,-2.6280787,-3.180954,-3.1892486,-2.5568247,-2.2409146,-1.8802569,-1.8096105,-1.6946183,-1.7542944,-1.9516277,-2.1498077,-2.3646853,-2.4121327,-2.7327948,-2.9538264,-2.9690661,-2.995736,-2.5305898,-2.6285334,-2.6274745,-2.575891,-2.496882,-1.9986819,-2.3682861,-2.5775828,-1.7871467,-2.3895984,-2.7065952,-1.9393495,-1.3084437,-1.656908,-1.6453359,-1.8148141,-2.0878015,-2.3378096,-2.5977926,-2.7746184,-2.9841213,-2.6823092,-2.9078407,-3.0585966,-3.2053995,-3.2460966,-3.2860785,-3.362992,-3.3059072,-3.3341634,-2.278748,-2.7533493,-3.1396067,-3.289833,-3.3667293,-3.4747055,-3.457273,-3.0858164,-1.8643764,-1.7906189,-2.067076,-2.1769724,-2.1698742,-2.1640477,-2.5276341,-2.3841496,-2.6923482,-2.7130837,-2.9639258,-3.1348715,-3.1456819,-3.3499331,-2.3003793,-2.6524484,-2.8358195,-2.9485278,-3.1056812,-3.2319098,-3.3485727,-3.4001436,-3.5267248,-3.5937939,-3.7162085,-3.72175,-3.221984,-3.4549067,-3.4790435,-3.5978818,-3.503828,-3.419013,-3.7013907,-3.730034,-3.7838707,-3.7103672,-2.6277432,-2.8744888,-2.921833,-3.0357466,-3.3784294,-1.8447711,-2.426048,-2.512217,-2.436699,-2.727091,-0.8388074,-1.5808883,-1.8961676,-1.9239048,-1.9302037,-1.9914721,-1.7648004,-1.8694834,-1.6215682,-1.8157947,-1.8607655,-1.2154362,-1.2265406,-2.112145,-1.9722208,-2.0910146,-1.6713959,-1.3196295,-1.6821982,-1.6664475,-1.1398269,-0.6035139,-0.76417637,-1.3865122,-1.7261316,-2.0834055,-1.613101,-1.7813749,-1.8782352,-2.9717364,-3.202693,-3.2804542,-3.0937173,-2.5596814,-2.8565993,-3.1169865,-3.5479348,-3.6694462,-2.3513887,-1.2904589,-0.978401,-0.95282245,-1.1691984,-2.0464177,-2.3730931,-2.341937,-2.16777,-1.8004135,-1.8688895,-1.7193948,-1.9837993,-2.875616,-3.2190275,-3.6456401,-4.0076094,-3.7646365,-3.5652196,-3.2841911,-3.188508,-3.0644193,-2.4638896,-2.064425,-2.040397,-1.752813,-1.732524,-1.5787324,-1.8035859,-1.695787,-1.520003,-1.9847075,-1.9209939,-1.8195683,-1.8918712,-1.7443706,-1.5478865,-1.7382717,-1.7809297,-1.6988565,-1.6802994,-1.640813,-1.5655233,-1.6941509,-1.5952176,-1.5634528,-1.5546653,-1.1478955,-1.8529961,-2.1585417,-2.3965783,-2.5100007,-1.4173619,-1.3439049,-1.3782383,-1.6632698,-2.0893035,-1.671347,-1.5368108,-1.6942362,-1.6386636,-1.4936689,-2.3746207,-2.925273,-3.2185397,-2.8546748,-2.3756418,-2.3198946,-2.4132218,-1.7726148,-1.5274352,-1.7026855,-1.8121892,-1.8119204,-1.7130293,-1.6785811,-1.6508032,-1.700585,-1.8032404,-1.9632534,-2.719658,-3.214813,-3.3115807,-3.1202226,-3.1446252,-2.772795
+0.05128805,-0.20495427,-0.5679994,-0.8859475,-0.97782475,-0.74159974,-1.0743026,-1.1772324,-0.99101037,-0.8335843,-0.1002059,-2.0444608,-2.442313,-2.2239134,-2.3899133,-3.1323278,-2.9029884,-2.5627017,-2.2614307,-2.7819734,-3.7155352,-3.698185,-3.4734397,-2.4941344,-1.8076731,-1.5398854,-1.1970856,-1.64899,-1.2835246,-3.2108967,-3.5501184,-3.8074684,-3.7933888,-3.7005036,-3.300468,-2.2690437,-1.6067686,-1.441746,-1.2411007,-0.8121442,-1.3838582,-1.3048446,-1.6218263,-1.5849432,-1.5614744,-1.3669145,-1.646331,-1.9210838,-1.8343611,-0.28403524,-1.170417,-1.275355,-1.4322888,-1.5990146,0.09670155,-1.4706626,-2.1158004,-2.9245968,-2.4782631,-1.8488033,-1.4307797,-1.6124038,-1.6120822,-1.219129,-1.7056509,-1.6490788,-1.6722986,-1.7246757,-1.7372231,-1.7899246,-1.8463402,-1.801822,-1.220375,-1.5303568,-0.98709244,-1.2551827,-1.1178724,-1.0231875,-1.3079464,-1.3354967,-1.5334958,-1.6374607,-1.5985113,-1.6428202,-1.6066142,-1.6253337,-0.9753882,-0.93142575,-1.3525591,-1.4191915,-1.5777029,-1.6915871,-1.6391381,-1.4878439,-0.312512,-1.3625332,-1.7050982,-1.6420094,-1.6398445,-1.6506474,-0.73326963,-2.1689742,-1.8217138,-1.6646258,-1.3410476,-1.5339642,-1.4444033,-1.5501887,-1.6608618,-1.0526378,-1.4106663,-1.3873298,-1.5781072,-0.6022606,-2.149187,-2.2440133,-2.0515914,-2.6483057,-3.646099,-3.943149,-3.892377,-3.91296,-3.5433698,-2.8101373,-2.183678,-1.9043323,-1.6907715,-1.8840011,-1.8734101,-1.8538399,-1.7734643,-1.633403,-1.5255569,-1.3272077,-1.2929558,-1.1331118,-1.3969543,-1.1761009,-3.111096,-2.886149,-2.4646273,-2.6223238,-3.0477157,-2.8647351,-2.3750048,-1.9190685,-1.8499227,-1.4346585,-1.7562622,-1.649957,-1.7482339,-1.8067067,-1.8586017,-1.8716909,-1.955954,-1.8960006,-1.8024498,-1.7002659,-1.7566391,-1.7448899,-1.0905544,-1.3292786,-1.2671841,-1.7848068,-1.8920023,-1.9782971,-2.2568865,-2.391678,-2.3828685,-1.481126,-1.3796426,-1.6361428,-1.9794115,-2.2440743,-2.2729938,-2.2318466,-2.297534,-2.0457523,-2.4181824,-2.6521018,-2.8596125,-2.7718391,-2.811923,-2.9393036,-3.1137583,-3.237494,-3.1275554,-2.8952696,-2.9334183,-3.0760055,-3.2299457,-3.2611349,-3.3965592,-3.3030286,-3.0143666,-2.1552498,-0.8192523,-1.1514198,-1.2765781,-1.4831702,-1.6276402,-1.7548827,-1.5346767,-1.9428967,-2.0658848,-2.2914033,-2.4971418,-2.683076,-2.7660909,-2.7692027,-2.7924113,-2.6263914,-2.540039,-2.522875,-2.6100688,-2.695912,-2.5851517,-2.7248237,-3.1762815,-3.4902382,-3.4171085,-2.1867971,-2.6286135,-2.8822427,-3.3062437,-3.434214,-3.3356078,-3.5622842,-3.4775314,-3.5325708,-3.3592544,-1.4719125,-1.7804536,-2.089883,-2.483378,-2.8329487,-1.525308,-1.9210712,-2.0899668,-2.164485,-2.223768,-1.0932871,-2.0718882,-2.9293556,-3.167799,-2.9850354,-2.6996775,-3.2953029,-3.5361767,-3.783464,-3.98526,-3.887021,-3.1979117,-2.486127,-2.0513122,-2.79782,-3.6371663,-3.9829454,-3.499575,-2.417017,-2.6218622,-3.566526,-2.8994179,-2.308259,-2.1670551,-3.1221476,-3.3074627,-3.4974804,-4.029981,-4.2804284,-4.444277,-4.163924,-4.1600657,-3.8405166,-3.273696,-3.9827929,-3.925501,-4.2691903,-4.312952,-3.6684947,-3.002592,-2.0504274,-1.3503102,-1.2793916,-1.6765395,-2.701902,-3.7216668,-4.0484223,-3.829733,-3.4648914,-3.0851123,-3.6958337,-4.1116858,-3.9907794,-4.17191,-4.1730947,-4.1212807,-4.2187977,-4.270919,-4.1305556,-4.2210655,-3.7921758,-3.3674412,-3.2321372,-2.8698535,-2.7321239,-2.8061776,-2.8485932,-2.361401,-1.4161762,-1.6013399,-1.8158084,-2.8468738,-3.5464735,-3.6694367,-2.636952,-2.3367538,-2.934441,-2.928827,-2.1638532,-1.721538,-2.3593383,-2.447381,-2.3779235,-2.4557076,-2.2318888,-2.3726232,-3.1019018,-2.9716763,-2.984685,-3.4199092,-2.0831778,-1.5835214,-2.4894605,-3.307812,-3.746837,-3.2125812,-2.417493,-1.8760493,-1.7495387,-2.8555546,-3.7285268,-3.4215622,-3.2845898,-3.4272552,-2.9020326,-2.5408857,-2.8663387,-2.025272,-1.3149391,-1.2859935,-1.5984023,-1.4670784,-1.278719,-1.3297148,-1.0513247,-1.1384187,-1.1037635,-0.58164024,-2.1695724,-2.0329385,-1.8989993,-1.5096995,-1.2294993,-1.7038449
+-0.35431114,-0.6768767,-0.64009136,-0.7657177,-0.8036551,-0.9675626,-1.144121,-1.1625632,-1.0801966,-1.1611831,0.6161872,-1.3725005,-1.8981763,-2.0172968,-1.828592,-1.5764812,-1.4362496,-1.2295319,-1.1238898,-0.91676754,-1.3518214,-1.3384929,-1.2689699,-1.1826735,-1.316486,-1.5481535,0.12883356,-1.2084447,-0.4820517,-1.0883367,-2.617255,-3.137003,-2.863569,-1.9400954,-1.3372121,-1.1234382,-1.1141843,-1.2279191,-1.429901,-1.6098725,-1.7593708,-1.1581352,-1.6511561,-1.7346419,-1.7568521,-1.811356,-1.6027234,-1.8629674,-1.9751824,-2.1188984,-2.191206,-2.1658263,-2.234653,-2.2715201,-2.2791443,-2.2384763,-1.0753741,-1.327573,-1.6184628,-1.488379,-1.524167,-1.2158009,-0.59504336,-0.6674723,-2.1101286,-2.4664736,-1.7956268,-1.5305362,-1.4840323,-1.6174083,-1.8097476,-1.0131983,-1.4550389,-0.97201234,-0.064877465,-1.0991879,-1.2461728,-1.4743965,-0.21314314,-1.3763245,-1.3713003,-1.5054115,-1.6341889,-1.7622626,-1.8088726,-1.9948891,-2.0281084,-2.108753,-1.5474999,-1.7298993,-1.991526,-2.1751413,-2.2102618,-2.1771197,-1.9701537,0.25122613,-0.97080714,-1.3489714,-1.6732692,-0.9229818,-0.19240901,-0.8638018,-1.2479166,-1.5540571,-1.6424433,-0.7533705,-1.388118,-1.6527313,-1.7034912,-1.3448786,-1.767144,-1.9367186,-1.9501854,-1.9558077,-0.14501119,-1.1352489,-1.2964618,-0.67266434,-2.9213128,-3.2756715,-2.605386,-2.1768422,-2.0569491,-1.5726253,-1.6015245,-1.6269014,-1.4975067,-0.92300016,-0.93248653,-1.2346063,-1.4698542,-0.9371855,-1.1385099,-0.82369864,-1.317251,-1.409454,-1.5606889,-1.1080209,-2.5447001,-2.6418667,-2.1987839,-2.0562901,-1.7707387,-1.857753,-3.0449672,-2.597618,-1.7771121,-1.4978373,-1.6115769,-1.6873039,-1.5061288,-1.7602001,-1.9588248,-2.035235,-2.147321,-2.206448,-2.1501355,-1.6081227,-1.9470062,-2.0562067,-2.0229878,-2.1173449,-1.8498446,-1.585559,-1.9151719,-2.0792813,-2.220701,-2.2593036,-2.2288525,-2.0895414,-0.024193127,-1.3271763,-1.6489108,-1.9135388,-2.1327333,-2.2480898,-1.8305732,-1.3532034,-1.6109006,-1.9661409,-2.2810147,-2.3791046,-2.54717,-2.700253,-2.7716746,-2.6579611,-2.5652504,-2.4928143,-2.5033062,-2.6244402,-2.6828413,-2.640932,-2.6837702,-2.6674283,-2.5416503,-2.543129,-1.2373623,-1.6175903,-1.9292792,-2.109151,-2.150142,-2.3019552,-1.2516838,-1.4775518,-1.827998,-2.1430297,-2.4385707,-2.6215777,-2.6721454,-2.7966456,-2.798839,-2.7399616,-2.782977,-2.8655615,-2.8360736,-2.7995405,-2.8295288,-2.9161284,-3.0175686,-3.1467917,-2.8738985,-1.3896979,-2.0160098,-2.380238,-2.8551984,-2.9100776,-2.8564,-2.9990897,-2.1984324,-2.709943,-2.7402039,-2.6515667,-0.24213961,-1.4382485,-1.6860713,-1.871723,-1.112787,-1.6914452,-1.9157792,-2.0910537,-2.0871067,-0.92454696,-2.6703718,-3.18214,-3.5531,-2.9304972,-2.733665,-3.5383692,-3.7062063,-3.71909,-3.521386,-3.2892842,-2.5921226,-1.7090113,-1.3677408,-1.8295274,-1.7656568,-1.7469147,-1.3979406,-0.9326979,-1.2213906,-2.0433474,-1.9987799,-1.7184025,-1.6442399,-1.8460686,-1.7422929,-1.4023987,-1.6383737,-1.6878594,-2.0771863,-1.7560284,-2.2910125,-2.7474015,-2.47677,-3.075863,-3.3506193,-3.620521,-3.4817824,-3.1679566,-2.3251123,-1.1182548,-0.76669633,-0.6201078,-1.084616,-1.744237,-1.8260044,-1.7185372,-1.6703712,-1.5986542,-1.5646895,-2.5496721,-3.526187,-3.1431053,-3.6328487,-3.6385205,-3.6540897,-3.7892983,-3.63602,-3.386403,-3.5347905,-2.9586456,-2.0529351,-1.5607074,-1.3261235,-1.2694796,-1.321653,-1.4878751,-1.4074349,-1.0314234,-1.1825558,-2.699296,-2.888297,-3.0424395,-3.0494153,-2.2329931,-1.5119768,-1.6149484,-1.6145676,-1.2383112,-1.0682398,-1.2290031,-1.0181594,-1.1053476,-1.1347387,-1.1480736,-1.0370446,-2.1087074,-1.9095273,-1.7424566,-1.934258,-1.1927396,-1.3855898,-2.8734684,-3.2136364,-3.2841523,-2.4505816,-1.4957014,-1.0938786,-1.1954165,-1.9402357,-2.9776163,-2.4029677,-2.4378567,-2.5508738,-2.8595662,-2.77224,-2.468754,-1.5921657,-0.9709709,-0.8264585,-1.1328577,-1.0477862,-1.0318327,-1.1882309,-1.1440073,-1.1023595,-1.1909305,-0.029305618,-1.6632085,-1.3430685,-1.2199832,-1.1756037,-0.0083436,-1.6751876
+-0.33992314,-1.7070738,-1.9461448,-2.0476422,-2.0305815,-2.132638,-2.1084423,-2.1547866,-2.1521225,-2.0619707,-0.7666232,-1.3113585,-2.7018456,-2.5216787,-2.8079367,-2.566386,-2.24184,-2.3378408,-2.371083,-2.2969835,-1.9057504,-2.2329307,-2.4672456,-2.4506307,-2.4522479,-2.3888292,-1.9634501,-2.4953172,-2.351489,-1.5533448,-2.0626445,-2.4473033,-2.3301444,-2.3994255,-2.353491,-2.3551173,-2.3256314,-2.381198,-2.4575331,-2.5270872,-2.571083,-2.641354,-2.6066642,-2.599286,-2.5670562,-2.5775585,-1.00888,-2.2877777,-2.3362858,-2.2300255,-2.4245028,-2.4004517,-2.5058007,-2.5964596,-2.6705585,-1.9741548,-2.4656618,-1.6949651,-2.549037,-2.6838448,-2.6767247,-2.7,-2.3198025,-2.4941971,-1.983651,-2.525539,-2.5773587,-2.5807533,-2.5653324,-2.6925697,-2.7934847,-2.8017426,-2.8197346,-2.31569,-1.9381659,-2.4264636,-2.638982,-2.6876416,-0.795198,-1.8978785,-2.3509102,-2.570813,-2.5522149,-2.6272604,-2.6862998,-2.7498398,-2.7480729,-2.3910756,-1.0135258,-2.5716944,-2.520534,-2.5729928,-2.72856,-2.7813473,-2.6808133,-2.1552997,-2.5249364,-2.634748,-2.7643466,-2.6668816,-1.6218139,-1.962874,-2.499438,-2.5281315,-2.0439837,-2.2102795,-2.542776,-2.371292,-2.5075274,-2.6878533,-2.7080536,-2.7877073,-0.9397406,-2.4400828,-1.399578,-2.6833951,-2.2895794,-1.8863257,-2.0933068,-2.6537921,-2.4757743,-1.5818036,-2.4832256,-2.385605,-2.439948,-2.551268,-1.9455909,-1.8239573,-2.2434108,-2.371607,-2.3197727,-1.7708269,-2.168016,-2.02423,-2.4461756,-2.401328,-2.278017,-2.3232803,-2.3817868,-2.1538615,-2.1480281,-2.4504094,-1.9816514,-2.4279573,-2.3386955,-2.1698632,-2.4459343,-2.159662,-2.4997547,-2.5517676,-2.5484455,-2.6118762,-2.7446785,-2.7387352,-2.7595353,-2.776504,-2.6285233,-2.0727162,-2.4561133,-2.4040315,-2.6770825,-2.770237,-2.794188,-2.1839721,-2.6250927,-2.7203097,-2.7945786,-2.8952775,-2.4785185,-1.9658705,-2.5696774,-2.7524896,-2.8003035,-2.9571977,-3.0567641,-3.034471,-3.0823483,-2.9749417,-2.917297,-3.0787592,-3.2380743,-3.2656298,-3.2732642,-3.3426547,-3.3570108,-3.3511744,-3.3333826,-3.1824367,-3.2541347,-3.3000004,-3.4127076,-3.3496552,-3.4019666,-3.400075,-3.3653827,-3.3378208,-3.3526275,-3.3383546,-3.2752194,-3.1925812,-3.1342416,-2.8109636,-2.4170513,-2.883539,-3.0843964,-3.2070327,-3.356123,-3.4546025,-3.3773656,-3.3957486,-3.4013948,-3.4189785,-3.435316,-3.455273,-3.4126313,-3.2897537,-3.3324168,-3.3406801,-3.5083196,-3.518026,-3.10409,-1.5974606,-2.8324325,-3.0371397,-3.2315407,-3.2951694,-3.2995229,-3.413289,-3.4649935,-3.5020895,-3.4318612,-3.2972171,-2.3831935,-2.871727,-3.041984,-3.0752423,-1.8718358,-2.7737086,-3.0536613,-3.0722854,-3.0168674,-1.4549187,-1.8175536,-1.8696952,-3.063295,-2.772084,-1.8389868,-2.2693546,-2.1557999,-2.560464,-2.8065462,-2.925507,-2.5877824,-2.4096851,-2.6516466,-2.2020268,-2.4372468,-2.7848926,-2.9068606,-2.7031696,-2.7237241,-2.3969922,-2.7435327,-2.491786,-2.7034507,-2.8047163,-2.7181435,-2.6777678,-2.7499788,-2.7160368,-2.531234,-2.6415043,-2.1110308,-2.9494717,-1.9295266,-2.4557257,-2.0987124,-3.3726149,-3.1503327,-2.9019704,-2.3895679,-2.350614,-1.9753569,-2.4453516,-2.6258554,-3.1789422,-3.1120396,-2.757687,-2.7816734,-2.7725503,-2.7531981,-2.6875,-2.5801158,-1.9407104,-3.4645433,-2.9336526,-3.4702797,-3.1424098,-3.0730727,-2.5798318,-3.0616388,-3.0404208,-2.8423395,-2.8448114,-2.8750215,-2.8360977,-2.7910101,-2.6654234,-2.952358,-2.6184902,-2.5621722,-2.7292142,-2.1922965,-2.879201,-3.0130792,-2.8451962,-2.7567627,-2.726247,-2.6334045,-2.6549487,-2.522908,-2.7949214,-2.692863,-2.6292443,-2.6793742,-2.7005234,-1.303081,-2.6905308,-2.7017074,-2.7013974,-2.608767,-2.5815673,-1.395432,-2.5627584,-2.5910485,-2.861036,-2.7384434,-2.6410742,-2.3194625,-2.487288,-1.596115,-2.696815,-2.5902877,-2.4660964,-2.5582323,-2.1199293,-2.4704618,-2.7273543,-2.7040374,-2.525856,-2.465868,-2.5875478,-2.5270367,-2.52451,-2.5221927,-2.5511622,-2.547761,-2.5813575,-1.1376244,-2.4986322,-2.3978438,-2.5317647,-2.5954792,-1.4768516,-2.9983137
+-0.1961273,-1.3845934,-1.7102252,-2.0448737,-1.9813327,-1.8870282,-1.7976395,-1.760017,-1.7375458,-1.611477,-1.7150546,-1.5691777,-2.1015832,-2.831985,-2.7551274,-2.4950373,-2.313937,-2.362659,-2.4826326,-2.3969345,-2.294238,-2.3017545,-2.526482,-2.415534,-2.3439398,-2.3177836,-1.9813432,-2.2801125,-2.4492612,-1.995865,-3.0036457,-3.32211,-2.9819272,-2.8229022,-2.6406193,-2.5542028,-2.32766,-2.1967363,-2.1976013,-2.3356142,-2.4093063,-2.4861732,-2.5097876,-2.5040944,-2.514782,-2.4852352,-1.2283535,-2.5412652,-2.4439025,-1.8366395,-2.7149699,-2.5087457,-2.4708743,-2.4054632,-2.390427,-2.4055548,-2.465422,-2.3709772,-2.5231943,-2.4249644,-2.4784675,-2.5095053,-2.0889716,-2.1730676,-2.742914,-2.857021,-3.0031035,-2.4640734,-2.3134964,-2.310385,-2.3642397,-2.358622,-2.4409618,-2.4585414,-1.992611,-2.4757347,-2.529085,-2.5238729,-2.1597147,-2.3909006,-2.4202595,-2.5450654,-2.5997956,-2.61705,-2.673727,-2.7483716,-2.832687,-2.6452334,-1.2288116,-2.2268324,-2.3691466,-2.3565488,-2.491043,-2.2503448,-2.4222107,-2.4501052,-2.444773,-2.425498,-2.4520538,-2.5386438,-2.3588748,-2.4274862,-2.466241,-2.331429,-1.5901383,-1.9206672,-2.4000006,-2.0089533,-2.3178728,-2.4410238,-2.4715366,-2.292316,-2.240469,-2.385539,-2.032846,-2.0835009,-2.1120472,-2.4102437,-2.4907784,-2.3898647,-2.3982139,-2.0450153,-2.3270926,-2.468525,-2.3129964,-2.008729,-2.2416928,-2.426898,-1.8951234,-2.4108796,-2.4871206,-2.2643037,-2.3506672,-1.6694963,-2.374015,-3.6550772,-3.3468623,-3.1314929,-3.014071,-2.8938107,-2.8622775,-3.0329952,-3.1885529,-3.2720964,-2.8453052,-2.706139,-2.8044782,-2.6192794,-2.5282598,-2.43427,-2.6816545,-2.6049118,-2.4581046,-2.448886,-2.5310605,-2.5211635,-1.9876341,-2.4830158,-2.5687006,-2.4878047,-2.4869223,-2.405159,-2.4647415,-2.3458393,-2.455738,-2.226245,-2.5148273,-2.4969513,-2.1561775,-2.3556957,-2.775598,-2.6865335,-2.5192869,-2.452715,-2.5103638,-2.542076,-2.5427349,-2.5929475,-2.4558415,-2.5501838,-2.6210763,-2.5351405,-2.466914,-2.5785966,-2.6009412,-2.6340685,-2.7459173,-2.738216,-2.7654383,-2.8554406,-2.8645725,-2.8175602,-2.9219832,-2.9867134,-2.9705932,-3.0024142,-3.0133138,-3.0306365,-2.959162,-2.9997413,-2.9716358,-2.9599133,-3.006887,-2.170386,-2.5997322,-2.768839,-2.8302875,-2.8837743,-2.8999665,-2.9526808,-2.9858017,-3.0176573,-3.0366786,-3.0395687,-3.0507061,-3.0469718,-3.0424798,-3.09239,-3.0046723,-3.0783734,-2.2315407,-1.579537,-2.5382493,-2.7295654,-2.6482291,-2.6074088,-2.5947466,-2.5534387,-2.5177648,-2.5372694,-2.576107,-2.6176925,-2.4897413,-2.4330897,-2.6236255,-2.6720176,-2.3607645,-2.6255195,-2.6521652,-2.6376643,-2.6346543,-2.6591847,-1.0883101,-1.8411493,-2.7125368,-2.487113,-2.1534457,-1.9679722,-2.1333144,-2.885909,-3.0707994,-3.06178,-2.9596,-3.1090112,-2.9968219,-2.7054334,-2.2596223,-3.2101026,-3.2991145,-3.314302,-2.9412827,-3.2084246,-3.31004,-3.3249564,-2.9442654,-2.8496785,-2.7238479,-2.8825684,-2.884317,-2.791852,-2.8733487,-2.7963443,-2.8085418,-2.7648842,-2.2392933,-2.4819074,-3.0608,-4.185211,-4.054802,-3.8176494,-3.8693328,-3.6467905,-3.0609426,-3.0810716,-2.7741518,-3.1536002,-3.2972393,-3.1743379,-3.1379101,-3.0934887,-2.9626927,-2.9069822,-2.8176804,-2.7188034,-3.9043665,-3.4926229,-4.222481,-3.9225779,-3.9823055,-3.884847,-3.3364458,-3.6502776,-3.057046,-3.2935612,-3.226986,-3.0929556,-3.0090566,-2.882248,-2.765047,-2.6490235,-2.5320046,-2.7002745,-2.2806025,-3.7544641,-3.6063979,-3.5327258,-3.2213984,-3.1188607,-2.5664592,-2.5110226,-2.512683,-2.9378982,-2.7676363,-2.4927378,-2.975803,-2.9318235,-2.631956,-3.2041473,-3.1384428,-3.097092,-3.0107856,-2.9508934,-2.444127,-3.1646035,-3.1457903,-2.9184535,-3.1578457,-2.851822,-2.4445384,-2.5234122,-2.053104,-3.4395864,-3.0121055,-2.8811502,-2.6513495,-3.0112271,-3.1756032,-3.1710982,-3.3701694,-3.2575374,-2.829267,-2.8689952,-2.5279942,-2.4465015,-2.409612,-2.393856,-2.3129115,-2.3088143,-1.8138465,-3.3915668,-3.1312456,-2.8934019,-2.7053504,-2.5234191,-3.6096828
+-1.0960284,-0.70650846,-1.0610138,-1.1219909,-1.2302933,-1.7128322,-1.6532685,-0.9841705,-1.0777214,-1.7975794,-1.6263787,-1.4184161,-2.0309343,-1.7713417,-1.8309559,-1.9728464,-2.0159502,-2.0230694,-2.0760782,-2.0111208,-1.9606625,-2.0674887,-2.1225545,-2.1823096,-2.4027643,-2.420764,-1.7846729,-2.4671082,-2.314219,-1.977419,-2.4138389,-2.242661,-2.265155,-2.0704203,-1.9029517,-2.1759672,-2.0850143,-2.0141675,-1.7886239,-2.0913212,-2.543364,-2.3186955,-2.4330635,-2.526771,-2.2995572,-2.3992941,-2.0351567,-2.1024327,-2.020277,-2.0323138,-2.148868,-2.1721666,-2.1292458,-2.0964608,-1.9189552,-2.3200917,-2.2507837,-2.0288696,-2.3053179,-2.4430275,-2.3961723,-2.0959136,-2.5133908,-2.4318428,-1.6353852,-2.1613824,-2.1633239,-2.4940848,-2.3667235,-2.3489082,-2.1794112,-2.1365054,-2.403306,-1.9886874,-2.2159343,-1.6894554,-2.0686393,-2.2239573,-2.325006,-2.3762848,-2.3544772,-2.4704535,-2.3676977,-1.965928,-2.4401202,-2.3611724,-1.5527312,-2.224133,-2.3715787,-2.393456,-2.2470005,-2.2727504,-2.454534,-2.4648428,-2.4874039,-2.4996812,-2.1365266,-2.2579026,-2.2366247,-2.4376574,-2.2679033,-2.339831,-1.8294224,-2.3898036,-2.4537523,-2.253703,-2.4656365,-1.7554303,-2.4084923,-2.533466,-2.3977745,-1.8601061,-2.4240227,-2.4618893,-1.920549,-2.4509554,-2.6001475,-2.1920638,-1.3184022,-2.267655,-2.360666,-2.4414067,-2.4719398,-2.314165,-2.5295546,-2.260945,-2.5240912,-2.6684546,-2.7099762,-2.7662737,-2.7877707,-2.7762198,-1.9911054,-2.4833202,-1.9985019,-2.5356827,-2.6387553,-2.6614747,-2.1316764,-2.562316,-2.2200913,-1.9808177,-2.485155,-2.6648483,-2.6090863,-1.644615,-2.4400494,-2.6265304,-2.2751784,-2.470427,-2.615357,-2.654077,-2.7682874,-2.7660503,-2.7462106,-2.7741964,-2.827551,-2.900991,-2.2169764,-1.3456746,-2.3552368,-2.2457619,-2.1883035,-2.567515,-2.6563952,-2.1406317,-2.558859,-2.6499715,-1.8195953,-2.5017204,-2.6279557,-2.5511377,-2.65833,-1.8817035,-1.41298,-2.3236566,-2.3395748,-2.0806706,-2.649865,-2.5146103,-2.6122444,-2.68865,-2.7564073,-2.6798759,-2.7940226,-2.8435702,-2.683517,-2.3969316,-2.7951574,-2.5359101,-2.6767073,-2.7008824,-2.665122,-2.7389784,-2.1331463,-2.7563555,-2.6036026,-2.6847076,-2.8022113,-2.5898,-2.878157,-2.843958,-2.9260454,-2.9439778,-2.7494583,-2.825718,-2.788647,-2.6619911,-1.5885279,-2.7776706,-2.6336439,-2.6977105,-2.4542637,-2.7563887,-2.8496969,-2.866063,-2.7710702,-2.7727697,-2.8062844,-2.7848787,-2.7645426,-2.7298095,-2.7463849,-2.8512297,-2.932316,-2.345071,-2.665196,-2.8437536,-2.8404865,-2.813981,-2.7764087,-2.7844124,-2.7033074,-2.0265589,-2.0506103,-2.116611,-2.2046456,-2.813178,-2.730161,-2.3402457,-2.275758,-1.9034019,-2.0366387,-2.1879067,-2.3547487,-2.281814,-2.3465457,-1.586027,-1.6951746,-2.1917953,-1.6476854,-1.7826102,-1.8408974,-1.6857398,-0.86278176,-1.2041794,-1.2027148,-1.21182,-1.1502081,-1.151307,-0.5587228,-0.9383277,-0.78935516,-0.9081628,-0.98153883,-0.97373074,-0.64858073,-0.80364037,-0.51618767,-0.69197893,-0.7589078,-0.5756367,-0.82328236,-0.86818504,-0.90351725,-0.73606557,-0.8232852,-0.89250726,-0.7840865,-0.8589486,-0.8959495,-0.87945,-0.7304233,-0.66286296,-0.13941962,-0.49996474,-0.68888855,-0.6253063,-0.57416874,-0.56375355,-0.5799456,-0.69435585,-0.41222996,-0.49398544,-0.8361196,-0.963092,-1.0333831,-1.5356399,-1.3357733,-1.3037692,-1.3970743,-0.97759026,-0.9343286,-0.95043254,-0.6391259,-0.84608716,-0.79821,-0.8177958,-0.72096676,-0.59401125,-0.6889236,-0.6697864,-0.90184546,-0.7845668,-0.78030485,-0.6665895,-0.63336337,-0.7624394,-0.7305794,-0.80075413,-0.8934365,-0.8279347,-0.66428334,-0.83421785,-1.2974232,-1.6065638,-1.1716527,-1.9237335,-1.7638785,-0.40489385,-0.81494707,-0.81071645,-0.913109,-1.790863,-1.2867907,-1.1701908,-0.947066,-0.7890406,-1.2299131,-2.0432186,-1.4214773,-1.6573501,-1.192159,-1.21023,-1.210941,-1.298411,-1.2871217,-1.3714367,-1.2353641,-1.143739,-1.1530612,-1.9205441,-1.4101638,-2.1530147,-1.6847197,-1.415877,-1.9278188,-1.7691858,-1.983817,-2.224062,-2.4949603,-2.145044,-1.8908712,-2.2179549,-1.8648388
+-1.0523144,-1.6252289,-1.689569,-1.9214027,-2.2174656,-2.1198478,-2.3295689,-2.27192,-2.4493806,-2.341456,-2.323185,-2.3190625,-2.4207375,-2.4658995,-2.3424387,-2.3755705,-2.5119345,-2.6168716,-2.3949924,-2.6975513,-2.6878252,-2.7223668,-2.6592855,-2.6595817,-2.7656345,-2.7047071,-2.7689805,-2.5904593,-2.833326,-2.2769372,-2.4811757,-2.5596986,-2.8404763,-2.7360826,-2.8659782,-2.9464364,-2.7623186,-2.9696019,-2.6955159,-1.765135,-2.2853527,-2.1868596,-2.305758,-2.5385733,-2.6377761,-2.7687883,-2.6972237,-2.6936698,-2.7912593,-2.7265468,-2.8950584,-3.0094461,-3.0326228,-3.0693314,-2.673121,-2.499824,-2.2146456,-2.4519045,-2.2534604,-2.5090077,-2.380898,-1.852997,-2.4463992,-2.7540383,-2.5999894,-2.4634836,-2.310379,-2.6548324,-2.8766344,-2.794447,-1.7758305,-1.6462866,-2.0517454,-2.2978406,-2.2892728,-1.0136747,-1.8302549,-2.1900084,-2.5776253,-2.8434687,-2.9801688,-3.1434994,-3.0667663,-2.6990995,-3.0062687,-3.1222317,-1.1473398,-2.2876964,-2.4622393,-2.8542356,-2.5751784,-2.031831,-2.6680732,-2.9033537,-3.0291958,-3.075358,-1.4650918,-1.3923035,-2.1936097,-2.5586972,-2.953754,-2.7900996,-2.836014,-3.119971,-3.2896276,-2.7893994,-3.1712449,-2.3498437,-2.7898095,-3.0465503,-3.1732054,-1.5570425,-1.3282343,-1.1699022,-1.5643432,-1.8692528,-2.300897,-2.6032624,-2.5881119,-2.45054,-2.753986,-2.99892,-3.1570933,-1.1412656,-2.2021728,-2.6227388,-1.4036664,-2.4029446,-2.7277017,-2.9465535,-3.27671,-3.311309,-2.7613559,-2.419279,-1.8409654,-2.6604006,-2.9915042,-3.1578178,-2.4160721,-2.9733646,-1.4654745,-1.3920215,-2.304216,-2.7338605,-2.9467258,-1.8969768,-2.2156453,-2.7769742,-1.5560229,-2.3119955,-2.620644,-2.820071,-3.0740705,-3.3039484,-3.3730283,-3.6069465,-3.617858,-3.5739233,-3.3160284,-1.4336991,-2.3089178,-2.6162949,-2.611381,-3.0564523,-3.20743,-2.606092,-2.827227,-3.0385418,-2.6737595,-2.9834616,-3.2541442,-2.731122,-1.9306804,-1.3147882,-1.8171743,-1.801092,-2.0726864,-2.3027918,-2.7806008,-2.8960018,-2.5599394,-2.7041183,-2.7877197,-2.573656,-2.94983,-3.147169,-3.2381918,-3.1679306,-3.265254,-2.6292448,-3.1035166,-3.1980107,-3.3768444,-3.297418,-2.7451296,-3.0298228,-3.164512,-3.3350446,-1.9616498,-2.491146,-2.523517,-3.086433,-3.2799196,-3.3437867,-3.4343486,-3.4827394,-3.3973851,-3.4215074,-1.424355,-2.3421955,-2.6420279,-2.7602322,-2.7921667,-3.0458236,-3.1832638,-2.5462277,-2.9569423,-3.0786407,-3.296054,-3.4046702,-3.4473307,-3.366291,-3.3797805,-3.5682893,-3.4546657,-3.5658507,-3.5801907,-3.5416803,-3.4272637,-3.4151053,-3.5135725,-3.653253,-3.6472244,-3.6972985,-3.583785,-3.3223104,-2.7585163,-3.0567808,-3.217188,-3.1962342,-3.1785538,-2.0966394,-2.4987168,-2.7218184,-2.8099647,-2.8297477,-2.9466524,-2.2177367,-2.4818625,-2.5082693,-2.6513834,-2.819703,-2.8426857,-2.8295417,-1.9578364,-2.1890414,-2.3719559,-2.4382415,-2.4292192,-2.125508,-1.6937164,-1.663808,-1.5525271,-1.6775922,-1.686825,-1.6983988,-1.534662,-1.4262042,-1.1575309,-1.594864,-1.5154508,-1.3408698,-1.4838096,-1.5385269,-1.4090018,-1.4635013,-1.2736174,-1.4189477,-1.6268483,-1.6774534,-1.6955512,-1.6801444,-1.6192054,-1.5764378,-1.3062644,-1.254489,-1.3802238,-1.3515493,-1.3729056,-1.3242321,-1.1406463,-1.2556685,-1.0928785,-1.1661719,-1.4392141,-1.4108359,-1.439873,-1.4561578,-1.5301415,-1.1732057,-1.8124936,-1.7040682,-1.7932614,-1.8538997,-1.8284239,-1.5393595,-1.5286454,-1.643829,-1.7122958,-1.6832372,-1.5238091,-1.4344236,-1.2900383,-1.4130383,-1.5031003,-1.4493568,-1.2825075,-1.320315,-1.5076911,-1.4883908,-1.4826223,-1.3713657,-1.5150194,-1.8348125,-1.8879815,-2.1984997,-2.2019217,-2.5270312,-2.4083657,-1.783833,-1.9593441,-1.8237994,-1.8000354,-2.0182304,-1.7133337,-1.8624989,-2.0861163,-1.8799185,-2.020447,-2.3871403,-2.8613818,-2.791922,-2.7537272,-3.0347273,-3.1781526,-3.1023808,-2.6081705,-2.856202,-2.8404632,-2.7248323,-2.3730092,-2.2076917,-2.141297,-2.1900535,-2.4102943,-2.483693,-2.4859653,-2.464285,-2.479478,-2.372945,-2.3149886,-2.3359823,-2.3643384,-1.8575853,-2.2533934
+-0.7761407,-1.2975434,-1.71464,-1.8841813,-2.1812153,-1.7072895,-2.0208306,-2.092768,-2.304059,-2.1432285,-2.3286598,-2.396812,-2.2291682,-2.3103435,-2.333131,-2.4272642,-2.5638385,-2.6983063,-2.1839159,-2.2686977,-1.9967703,-2.0719495,-2.508052,-2.600789,-2.6527312,-2.7551723,-1.5774828,-2.051925,-2.1048298,-1.342624,-1.7057087,-1.2986666,-1.6404265,-1.3315057,-1.9249145,-2.316861,-2.21527,-2.6072426,-2.452901,-1.0811064,-1.3816581,-0.8733416,-1.297417,-1.1475023,-1.3222414,-2.0440135,-1.9297179,-2.296826,-2.4978077,-2.5555077,-2.6490579,-2.7457833,-2.8497853,-2.900301,-1.7833493,-1.9843439,-2.1670868,-2.1669521,-1.2994019,-1.99307,-0.3826818,-1.1309636,-1.4031371,-1.8802551,-1.5053715,-1.5993394,-2.0633767,-2.3972287,-2.6736317,-1.1885349,-1.4415565,-1.9297826,-2.16491,-2.4607935,0.014907546,0.028391514,-0.8580203,-1.1807922,-1.6673764,-2.0533648,-2.4983618,-2.6283512,-0.045884702,-0.14891993,-1.0356834,-1.3367904,-1.5283293,-2.0353675,-2.2967043,-2.492837,-2.6758175,-2.613911,-2.7274067,-2.7847857,-2.76091,-2.9505515,0.057182413,-1.1211678,-1.345571,-1.7350883,-2.150515,-2.336622,-2.574458,-1.3589119,-1.4307905,-1.8042601,-2.2622333,-1.2439176,-1.2974185,-1.8852168,-2.0585387,-2.3998685,-0.2632968,-0.9891092,-0.44247854,-1.0190328,-1.4406649,-1.9464365,-1.3081027,-0.9599109,-1.2297757,-1.5691539,-2.0287483,-2.3003302,-2.528018,-2.6899128,-0.68512464,-1.7706064,-2.2433867,-2.4330254,-2.7064693,-2.832527,-2.154034,-0.4793575,-0.8851892,-1.3472315,-1.8496177,-1.9517647,-2.1624115,-0.21177903,-0.53261,-0.7058554,-1.2264647,-1.7167917,-2.196352,-0.60498697,-0.9629356,-1.30506,-0.83173484,-1.2469951,-1.096738,-1.0288876,-1.3548102,-1.3764304,-1.6377976,-2.0209255,-2.3027282,-2.6204226,-2.7706952,-1.6578783,-0.98982567,-1.5385665,-1.5367768,-2.0012019,-2.3931735,-2.6790445,-2.5727081,-2.7778692,-2.7827954,-2.7651367,-3.021174,-3.0912776,-2.8113015,-0.5156715,-1.7494103,-2.016752,-2.0839639,-2.2706332,-2.5262,-2.8766847,-2.8816957,-2.8357987,-2.7801886,-1.6914915,-2.3432019,-2.6621046,-2.6298192,-2.7833695,-1.2271477,-2.133191,-2.657534,-2.8125527,-2.972797,-3.1019177,-2.2972374,-2.5783505,-2.934267,-3.0535855,-2.2923436,-2.478572,-2.8606873,-3.1964955,-2.9695013,-3.2956524,-3.487319,-3.551002,-3.4971275,-3.4319015,-1.2369138,-2.1872923,-2.558447,-2.5596015,-2.1216612,-2.443156,-2.742409,-1.6107138,-2.159738,-2.6404858,-3.019557,-3.2186446,-3.271956,-3.4142034,-3.37895,-3.549342,-3.5163448,-3.3671718,-3.4983711,-3.7218537,-3.6477113,-3.5971498,-3.4737864,-3.607689,-3.3573418,-3.2717938,-3.3643222,-3.2073722,-2.1553807,-2.5693715,-2.4515715,-2.4638743,-2.6306782,-1.865188,-2.1371558,-2.1869678,-2.527466,-2.6990395,-2.6957223,-1.8537245,-1.9669832,-1.965556,-2.1846464,-2.494985,-2.5454364,-2.338518,-1.7379327,-1.8417904,-2.0879538,-2.1793947,-2.207183,-2.0556269,-2.0442216,-1.7490153,-1.8675321,-2.0277827,-1.8453418,-1.8802344,-1.6761745,-1.4624999,-1.4134604,-1.4459635,-1.4168378,-1.35494,-1.4036313,-1.5403405,-1.4711524,-1.5749017,-1.123284,-1.3914164,-1.7506198,-1.7792366,-1.875838,-1.9555136,-1.9024044,-1.7472174,-1.2182823,-1.2922009,-1.3449595,-1.3602676,-1.2974542,-1.3503066,-0.45435813,-0.34107485,-0.27570727,-0.7460607,-1.0248238,-1.1191611,-0.9997508,-1.2664142,-1.7374167,-2.0063508,-2.2500207,-2.3269615,-2.5367765,-2.6965055,-2.813842,-2.5898783,-2.5318952,-2.8750157,-2.9806376,-2.932869,-2.6489282,-2.3716135,-1.4101077,-1.6360883,-2.0359182,-2.0272498,-1.7068235,-1.8172196,-2.1796856,-2.1170094,-2.196587,-2.3536623,-2.1869001,-2.321797,-2.4453115,-2.5289235,-2.5102806,-2.5443819,-2.4578137,-2.4133487,-2.4788787,-2.6546795,-2.5684853,-2.3497338,-1.8590791,-1.7954222,-2.082175,-2.1248918,-2.1249704,-2.5131474,-2.2495012,-2.517653,-2.5429153,-2.52493,-2.8501525,-2.94065,-2.3481245,-2.6561108,-2.8808475,-2.8257298,-2.3399992,-2.477762,-2.3496869,-1.9877523,-2.4072149,-2.439804,-2.3143644,-2.586323,-1.5309707,-2.0741422,-2.2266579,-2.3870456,-2.0872998,-1.0771589,-1.4978509
+-1.0736393,-1.606644,-2.1171806,-2.2789934,-2.2577822,-1.6886296,-2.1955872,-2.3329597,-2.5579252,-2.0320804,-2.189094,-2.5277126,-2.5875204,-2.6491082,-2.6335402,-2.7594776,-2.8471045,-2.967217,-2.9904027,-2.695791,-1.6499419,-2.0155559,-2.4704788,-2.694917,-2.87248,-2.6217418,-1.9992422,-1.6260276,-2.1913786,-1.091366,-1.4068727,-1.9426316,-2.2679088,-1.8077501,-2.4641771,-2.7301755,-2.6809597,-1.8601977,-1.0071918,-0.8788863,-1.1614771,-1.1014229,-1.4619504,-1.0257895,-1.7078724,-2.1971202,-2.1064763,-2.3553224,-2.4766905,-2.6580296,-2.647431,-2.793622,-2.845265,-2.8920987,-2.9438696,-1.4792324,-2.2168906,-2.2386594,-0.9561169,-1.8641577,-2.0460806,-0.93255025,-1.7485949,-2.3575618,-2.0115838,-2.3358922,-2.7644742,-2.8319783,-2.9362624,-1.9282283,-2.40808,-2.7298002,-2.8252559,-2.7730505,-1.9235208,-1.0140262,-1.9239496,-2.3515935,-2.5501528,-2.727975,-2.89946,-0.88151276,0.01368504,-0.8295466,-1.4718511,-1.9398084,-1.9412113,-2.356802,-2.6267123,-2.691081,-2.1441822,-1.6863943,-2.220047,-1.2314607,-1.7274891,-2.0541224,-0.12761144,-0.704029,-1.1012952,-1.7064265,-2.119859,-2.3677535,-2.6179538,-0.5805024,-1.1021569,-1.6548396,-2.0970404,-0.60275763,-0.82811517,-0.8082598,-0.9741023,-1.3002357,-0.34082404,-1.023723,-1.2544599,-0.22340444,-0.9530876,-1.0977235,-0.9164998,-1.1834444,-1.5142068,-1.8811263,-2.2536879,-1.433333,-1.7914611,-2.1515455,-1.2026201,-1.8634602,-2.3207903,-2.5276074,-2.725524,-2.8006365,-2.8587265,-0.8496653,-0.6037385,-1.3745633,-0.0029206164,-0.3950546,-1.121494,-1.6136715,-2.0796814,-1.4140283,-1.7945777,-2.3057823,-2.6191022,-1.5906162,-0.8335311,-1.1697408,-0.35774276,-0.8994759,-1.1280878,-0.5258226,-1.0211864,-1.5030571,-2.0379176,-2.4016352,-2.5870416,-2.7923145,-2.8772867,-2.9637277,0.010227475,-1.1002797,-0.7025358,-1.4697962,-2.0301313,-2.4035487,-0.97044545,-1.452849,-1.2359494,-0.60944027,-1.4855442,-2.1878302,-2.4727473,-2.6490774,-2.8483694,-2.9000764,-2.8863225,-2.7870698,-2.1796434,-2.8726964,-3.1118608,-1.915487,-1.9788314,-1.6767508,-2.2150013,-2.5278497,-2.6028857,-2.7987087,-1.7143162,-2.363772,-2.7806985,-3.0216188,-3.1845398,-3.1795154,-2.45995,-2.4187765,-2.9082317,-3.0793755,-1.9520842,-2.3723552,-2.7117748,-2.720665,-2.0680184,-2.6340604,-3.0879211,-3.3109393,-3.3360128,-3.3341181,-2.0165462,-2.4719152,-2.873993,-2.9598825,-3.065236,-3.1806068,-3.180941,-1.4925686,-1.5937275,-2.3693557,-2.9229133,-3.1518002,-3.2161088,-2.5978646,-2.8858097,-3.2404628,-3.4226718,-3.3314846,-3.4772015,-3.7262406,-3.7710795,-3.7414842,-3.5458097,-3.5132666,-3.412798,-3.3035252,-3.3848433,-3.2515042,-2.1695693,-2.6299264,-2.6410024,-2.64553,-2.8258545,-2.229537,-2.554984,-2.525334,-2.8517056,-3.0837617,-3.0782743,-2.1759007,-2.120269,-2.2612362,-2.4853468,-2.7561116,-2.8493924,-2.7902012,-2.5459538,-2.4731243,-2.6120615,-2.734768,-2.842092,-2.6822762,-2.4709768,-2.6570835,-2.5450237,-2.60949,-2.5265155,-2.5030723,-2.2508006,-2.1558027,-2.0559022,-2.196887,-2.1090536,-2.143731,-2.3614593,-2.5120785,-2.4894457,-2.5026128,-1.8630186,-2.235225,-2.1253417,-2.3591633,-2.522026,-2.5391617,-2.4861393,-2.2701607,-2.4455345,-2.1564593,-1.9647969,-2.2147672,-1.9493581,-1.8103567,-1.7853615,-1.8308674,-1.7362556,-1.6756836,-1.8757805,-2.1584122,-2.288825,-2.3643491,-2.452503,-2.6515522,-2.9086287,-2.9090471,-2.9397044,-3.0171628,-3.0485237,-2.9669414,-3.081842,-3.1324594,-3.2541008,-3.195229,-2.9328296,-2.7003312,-2.7782311,-2.13651,-2.5999703,-2.5540013,-2.4077067,-2.5305147,-2.6461916,-2.6928523,-2.7069669,-2.938537,-2.8916078,-2.977926,-2.916571,-2.826392,-2.7325952,-2.7913523,-2.7927947,-2.8899918,-3.0295513,-3.2181935,-3.047363,-2.953886,-1.9406558,-2.3595421,-2.6626487,-2.529914,-2.753551,-2.800226,-1.957724,-2.594759,-2.7244039,-2.7700155,-3.0109522,-3.091611,-2.0817635,-2.48997,-2.9264662,-2.8744006,-2.477079,-2.5580697,-2.473502,-2.6204872,-2.597897,-2.651043,-2.617567,-2.8507864,-1.3968545,-2.1430845,-2.0337353,-2.232411,-1.963703,-0.86348784,-1.4585131
+0.30028474,0.05015957,-0.22683057,-0.76189286,-0.73091674,-1.0018173,-1.3683494,-1.3353759,-1.2501099,-1.2008814,-0.989093,-1.1919148,-1.4309126,-1.2738298,-1.1747514,-1.1810719,-1.1453433,-1.1906646,-1.2556484,-0.8116444,-1.5588456,-1.5574757,-1.4492445,-1.2385842,-1.2156297,-0.76951367,-1.9976274,-2.7011223,-2.1878529,-2.3694167,-3.167532,-3.17912,-2.5956523,-2.3501735,-1.9076582,-1.4357114,-0.97706574,-1.1593505,-1.1951755,-1.7916137,-2.6240644,-2.8639538,-2.6182978,-2.2459352,-1.9559867,-1.4306265,-1.0876082,-1.6863652,-1.4741483,-1.2156601,-1.3478807,-1.3195978,-1.1838423,-1.2112736,-1.0457081,-0.56250864,-0.9130033,-1.9871639,-1.5412104,-1.2110566,-0.7583889,-1.161168,-1.2090939,-1.1242782,-0.17980321,-0.98403805,-1.100736,-1.2439288,-1.3287863,-1.3975724,-1.7420456,-1.9158641,-1.5644345,-1.8430748,0.097359955,-0.78473204,-1.1207824,-1.2284886,-1.4523057,-1.750812,-2.0544527,-2.3086574,-2.3715453,-2.549255,-2.642749,-2.4565701,-2.5089388,-1.0966885,-1.9492803,-2.006766,-1.7062699,-1.6503576,-1.5720044,-0.4215335,-0.7448546,-0.9251987,-0.8481042,-0.963093,-1.0546305,-1.233029,-1.2217534,-1.3522295,-1.6341317,-1.1195062,-0.7816265,-1.3494195,-1.5020682,-0.6391939,-1.12308,-1.4502189,-0.14089873,-0.98451406,-1.250451,-1.5453416,-1.7586249,-1.2222242,-0.5067697,-1.1058155,-0.8281476,-1.3204081,-1.6905836,-1.8993267,-0.4379519,-1.2574414,-0.5491803,-0.96648794,-1.4182601,-1.6498691,-2.0093513,-2.2683208,-2.3551483,-2.3934863,-2.3926888,-2.4158192,-0.23781893,-0.8748927,-0.9613288,-1.429227,-1.2886597,-1.2395229,-1.2601541,-1.4619566,-1.6228826,-1.5957373,-1.5761117,-1.7599957,-1.9358556,-1.3347092,-1.7003914,-1.9403411,-2.1441004,-2.3934722,-1.761907,-2.0454428,-2.1409562,-2.4367707,-2.5541031,-2.592472,-2.617189,-2.6504123,-1.9893533,-0.56705534,-0.9500417,-1.2001485,-1.3452212,-1.4910674,-1.64616,-1.6922103,-0.45071152,-1.0238338,-1.2011124,-1.265389,-1.3586931,-1.5200012,-1.8218182,-2.1394207,-2.2758234,-1.811261,-0.97402686,-1.7673515,-2.0641923,-2.1016393,-1.5254704,-1.0823174,-1.6263584,-1.7568411,-1.7542343,-1.9390718,-2.056755,-2.4666915,-2.55091,-2.8585184,-3.032136,-2.9692569,-2.9682364,-2.8576508,-2.8390994,-2.8979123,-2.9373374,-2.8307443,-2.9483237,-1.027177,-0.79216003,-1.2960383,-1.5644896,-1.8567177,-1.7283744,-1.6647023,-1.5933925,-1.8483394,-1.935568,-2.0883875,-2.176838,-2.121317,-2.4137013,-2.6430962,-1.1394886,-1.8257908,-2.24955,-2.4954667,-2.50658,-2.4056768,-2.3799043,-2.5728977,-2.55579,-2.1982896,-2.3110008,-2.6104674,-2.815803,-2.8630586,-2.7165828,-1.7943586,-2.3698738,-1.8776132,-1.6363541,-1.9864074,-1.8391267,-2.0082536,-1.8493092,-1.8378466,-2.0455346,-1.2523857,-1.7281862,-1.8655611,-1.8200151,-1.763647,-1.7579042,-1.5910867,-1.5675546,-1.666974,-1.6137998,-1.4668769,-1.4904143,-1.4341954,-1.5667362,-1.737447,-1.727111,-1.5695354,-1.617355,-1.3580505,-1.9104257,-1.5833198,-1.483724,-1.2896179,-1.1740777,-1.2926118,-1.4761549,-1.7406842,-1.9227848,-1.7735407,-1.9220436,-1.5433897,-1.598672,-1.4055414,-1.6133358,-1.4151763,-1.640518,-1.8557051,-1.2872058,-1.4615564,-1.5225505,-1.4538869,-1.3303368,-1.0663735,-1.7678691,-2.1776464,-2.1081386,-1.793729,-1.3537816,-1.3450594,-1.7467331,-1.5571493,-1.7455685,-1.88361,-1.9079865,-2.3367262,-2.0800185,-1.6786081,-1.5529245,-1.6683753,-1.5985239,-1.4464767,-1.392749,-1.4685618,-1.4118508,-1.6352094,-1.926351,-1.6888462,-1.6966765,-1.4975145,-1.2932241,-1.7177931,-2.043584,-2.1041598,-1.6802772,-1.1074003,-1.7905988,-2.0172195,-1.6433092,-1.6406616,-1.7238647,-1.4932224,-1.6913896,-2.058845,-1.9789623,-1.7735026,-1.7773033,-1.863319,-1.8738061,-1.9213296,-1.7859224,-1.5434662,-1.5809429,-1.8345953,-1.3162866,-1.2266247,-1.0140631,-1.248325,-1.890507,-1.9684337,-1.7905253,-1.7416483,-1.7740377,-1.678044,-1.4416991,-1.3348957,-1.1969907,-1.5236326,-1.5224217,-1.1617413,-1.7235075,-1.8819352,-1.4607166,-1.6997045,-1.7772547,-1.545499,-1.3678571,-1.7782038,-1.789976,-1.7450851,-1.5111951,-1.4667317,-1.2891155,-0.9617352,-1.651154
+-0.33558592,-0.64936185,-0.66975886,-0.9852719,-0.70832103,-1.3614861,-1.609717,-1.5799724,-1.2030544,-1.425562,-1.8176337,-1.6877294,-1.4961115,-1.5828758,-1.5244998,-1.4135045,-1.4932002,-1.4686328,-1.5991226,-1.6756393,-1.6371108,-1.8984109,-2.0615551,-1.864787,-1.7895952,-1.931577,-1.969189,-1.9691879,-1.8906813,-1.6316253,-1.8994013,-2.1712785,-2.3010907,-2.162419,-1.9981979,-1.7497528,-1.6115737,-1.7945292,-1.7571222,-1.1816951,-1.8358055,-1.7240474,-2.0003357,-2.2740622,-1.8956374,-1.6478645,-1.4075626,-1.9943694,-1.880135,-1.9257196,-2.140743,-2.0122285,-1.8624676,-1.8878065,-1.8535911,-1.256915,-1.8240503,-1.7613866,-1.9095184,-2.0854132,-2.0081882,-2.0156403,-2.0903988,-2.1182482,-2.066518,-2.2952976,-2.3671079,-2.366467,-2.4473782,-2.429078,-2.5596466,-2.660277,-2.6774824,-2.5595784,-2.4362564,-2.1652837,-2.594597,-2.7328513,-2.8026557,-2.7182112,-2.8308392,-2.834989,-2.812702,-2.7862499,-3.0493383,-2.6076803,-2.6329136,-2.69596,-3.0930176,-3.1554666,-3.1888413,-2.9477277,-2.5460656,-1.7531353,-1.1095215,-1.7203568,-1.5194224,-1.560418,-1.7611645,-1.8680912,-1.9441859,-2.1097257,-2.043051,-2.195045,-2.273042,-2.5039654,-2.5281281,-2.5581179,-2.4278498,-2.4312224,-2.4185994,-2.5737896,-2.4214244,-2.5161266,-2.6417086,-2.3429983,-1.3839427,-1.9801677,-1.2822087,-1.5828058,-1.6229209,-1.7938074,-1.5949303,-1.7580266,-1.7197658,-1.8691494,-1.3820764,-1.6591707,-1.8386115,-2.2786784,-2.4344835,-2.1633081,-2.3342388,-2.5515175,-1.0001594,-1.5521184,-1.7889637,-1.9659101,-1.8319024,-1.9183031,-2.0467653,-1.920138,-2.1391397,-2.1554465,-2.1443086,-2.1372786,-2.3610709,-2.3349786,-2.1947856,-2.498847,-2.69071,-2.790384,-2.8877153,-3.0032833,-3.0419176,-3.0751731,-3.0998693,-2.7605343,-2.8045096,-2.891258,-1.3052758,-1.8615423,-2.1878176,-2.5488362,-2.6478713,-2.8302138,-2.861085,-2.6454701,-2.4216146,-1.5549016,-2.1481214,-2.555242,-2.7961743,-3.0008783,-3.1916802,-3.3133595,-3.3190308,-3.3667257,-2.7374158,-2.9337473,-3.076232,-2.8942313,-2.832893,-2.7272735,-2.9051974,-3.1365316,-3.297101,-3.129809,-3.3179235,-3.5066986,-3.4054728,-3.4358194,-3.46894,-3.4467297,-3.2978554,-3.008859,-3.0637221,-3.074258,-3.1161997,-3.1858602,-3.2025785,-3.2615545,-2.0365205,-2.712157,-2.792772,-2.9195173,-3.080602,-2.9888268,-3.166377,-2.8150153,-2.9388542,-3.0645747,-3.1705084,-3.175951,-3.3228278,-3.4241502,-3.4954224,-3.6286545,-3.5799584,-3.6450338,-3.6585383,-3.571202,-3.5479465,-3.490346,-3.5467668,-3.320695,-3.216498,-3.3879523,-3.4292097,-3.6153557,-3.557392,-2.756595,-2.7726681,-2.5481484,-2.5646448,-2.9676516,-2.1703079,-2.6791964,-2.864778,-2.7475743,-2.7827923,-1.3310844,-1.8855543,-2.353556,-2.4220812,-2.3004675,-2.3748574,-2.2744331,-2.3888135,-1.9990271,-2.1205487,-1.5312498,-1.1236907,-1.2727612,-2.0090337,-1.715941,-2.2617247,-1.4092988,-1.1036326,-1.3345801,-2.0288353,-0.8876614,-0.554998,-0.8265427,-1.2368987,-1.5537292,-2.1051786,-1.9706556,-2.2463567,-1.6801771,-2.001655,-1.6711867,-1.988016,-1.5817004,-2.0046413,-2.092279,-2.078763,-2.1073694,-1.8304396,-1.4028417,-1.0282356,-0.975568,-0.96023446,-1.5387888,-2.405748,-2.4183142,-2.5430942,-1.462498,-1.4542348,-1.6673263,-1.7464288,-1.8619314,-2.2299676,-1.997656,-2.1201472,-2.505106,-2.4977717,-2.543107,-2.2428951,-2.3673964,-2.4896696,-2.3182285,-1.849434,-2.0955758,-2.0175338,-2.2120502,-2.3025026,-1.957734,-1.5593193,-1.4486879,-1.9531932,-2.2129416,-2.2577016,-2.6084213,-1.8564128,-1.5358654,-2.1663132,-2.3824444,-2.2105355,-2.0671208,-1.9739004,-1.6267908,-1.8599752,-2.1238973,-2.20031,-2.1921396,-2.2692504,-2.223999,-2.276861,-2.2282572,-2.2735791,-1.7038636,-1.8334239,-1.886257,-2.086238,-1.9151644,-1.625084,-1.4104,-1.9752322,-2.1118424,-1.5504957,-1.7428768,-2.0860703,-2.1318977,-1.8324965,-1.228701,-1.6232551,-1.7460167,-1.1488113,-1.110047,-1.8344387,-1.932207,-1.6872038,-1.6989913,-1.8983103,-1.7115805,-1.7784804,-1.7294279,-1.9898523,-2.051351,-1.9979895,-2.1602356,-1.798458,-2.0878716,-2.1861458
+-0.47887507,-0.89701545,-1.0563515,-1.3585572,-1.3188583,-1.6560125,-1.8875164,-1.9314634,-1.8311118,-1.6305029,-1.9191979,-1.9796749,-1.9118413,-1.7579118,-1.7557541,-1.7718962,-1.9327289,-2.0207953,-2.1358254,-2.05733,-0.8036346,-1.6619171,-1.8948984,-1.9314831,-1.9855653,-1.9889916,-1.8863193,-2.1143837,-1.0843203,-1.4214352,-1.7686899,-1.7878808,-1.96462,-2.1487424,-2.2457752,-2.2116134,-2.1632187,-2.1691658,-1.9793836,-1.4661385,-1.711424,-1.5395187,-2.091954,-2.205734,-2.1541271,-1.9029232,-1.7579234,-2.003652,-2.1009455,-0.9204547,-1.7982241,-1.9486614,-1.9710199,-1.9830188,-0.6045228,-1.7449648,-1.8321344,-1.762349,-1.8171307,-1.8297933,-1.8003439,-1.2757286,-1.3722099,-1.4870265,-1.5928398,-1.8257163,-1.8265973,-1.9292822,-2.0023441,-1.9662672,-1.9680132,-2.0402179,-2.0373375,-2.0957453,-2.2284741,-1.5788592,-1.3554915,-1.7349507,-1.9112991,-2.151463,-2.385197,-2.167981,-2.3214774,-2.4428458,-2.4433174,-2.726806,-2.8789897,-0.38222662,-1.5008773,-1.8403603,-2.1602132,-2.4088624,-2.5420246,-2.7168257,-2.3361316,-2.3027787,-2.5971029,-2.6186216,-2.6637726,-2.2954047,-2.4431505,-2.5809536,-2.5624511,-2.6667726,-0.3647994,-1.580858,-1.8808875,-2.2055898,-2.4461143,-2.6344995,-2.8335845,-2.9795375,-2.717398,-2.5929542,-2.7413073,-2.8857164,-2.5833268,-2.3726926,-0.99083525,-1.6616002,-1.9676384,-2.2744315,-2.0749664,-2.0749006,-2.266844,-2.3197734,-2.440573,-2.427254,-2.4563432,-2.668725,-2.857794,-2.96109,-3.1167283,-3.1480703,-3.2548172,-2.2822995,-2.3929033,-1.510826,-1.8954732,-1.8927037,-1.2219844,-1.1517419,-1.3907229,-1.6391177,-1.8138604,-1.9962023,-2.2902884,-1.5812068,-1.8611847,-2.0950828,-2.4600601,-2.702778,-2.902348,-3.029142,-3.1430807,-3.1883378,-3.2329078,-3.2863238,-3.3521717,-3.419139,-3.4730525,-3.3323238,-3.1261697,-3.255406,-3.3614826,-3.4439735,-3.4958897,-3.5106478,-3.4704318,-0.7265683,-1.954542,-2.3661232,-2.7345233,-2.918724,-3.0429296,-3.2037249,-3.323687,-3.4441893,-2.2021964,-2.7384458,-2.9862154,-3.1328988,-3.2186937,-3.3115895,-3.4501982,-3.4840581,-3.510857,-3.548045,-3.6256642,-3.7182903,-3.7432387,-3.6252484,-3.6653957,-3.661911,-3.6447997,-3.4957128,-1.8781933,-2.6687794,-2.9024556,-3.0467,-3.2214055,-3.3296385,-3.294086,-3.4826288,-3.52009,-3.6019125,-3.672494,-3.655274,-3.7805016,-3.6671185,-3.5809045,-3.684887,-3.7481718,-3.7507918,-3.8188226,-3.8815684,-3.8605313,-3.8677504,-3.878413,-3.9553535,-3.887069,-2.9246945,-3.3507848,-3.6018608,-3.8157709,-3.7065935,-3.787435,-3.9355388,-3.6212723,-3.8480783,-3.8047886,-3.0378492,-1.672985,-2.5842185,-2.7296345,-3.0253146,-2.3965068,-2.7359273,-2.836526,-2.8376427,-3.0719755,-1.0636266,-1.9919058,-2.2295232,-2.6510997,-2.6911244,-2.7188144,-2.1715722,-2.40783,-1.1450554,-1.8368055,-2.0216768,-1.6636854,-1.5515327,-1.7639347,-1.8959666,-2.093223,-1.877386,-1.7549828,-1.7197647,-2.282721,-0.9153525,-1.0877222,-1.193011,-1.5859944,-1.6084466,-1.8398873,-1.4358004,-1.7618414,-2.0084736,-1.6747712,-2.1192622,-2.0019176,-1.8750912,-1.6994158,-1.939052,-1.8358073,-1.8777226,-2.0771518,-1.7849326,-1.7957596,-1.7404555,-1.6770366,-1.5789455,-2.0175467,-2.4604385,-2.4813347,-2.3693275,-1.976931,-2.154305,-2.0168514,-1.4850203,-2.0472298,-2.080336,-2.4045863,-2.423826,-2.1200957,-2.101725,-2.0876503,-2.102426,-2.2133362,-2.2035456,-2.1070232,-2.152278,-2.150113,-2.2416077,-2.242259,-2.3895888,-2.2835937,-2.1262555,-2.2189205,-2.2867389,-1.3236243,-1.8344115,-2.1548243,-1.8877485,-2.0693123,-2.2007756,-2.2962365,-2.1810148,-1.8133258,-2.0322652,-2.1039722,-2.0117397,-2.1222076,-2.1081204,-1.8854405,-2.033609,-2.1825306,-2.2823896,-2.4341486,-2.0980294,-2.0740862,-2.1964316,-2.0347009,-2.3487072,-2.1995807,-2.1190565,-2.2637222,-2.204255,-1.278674,-2.1647425,-2.22294,-1.6504842,-1.9719175,-1.4881057,-1.6276877,-1.9075783,-1.8995612,-1.6673304,-1.8969681,-1.6279105,-1.948284,-1.9761938,-1.8863833,-1.9734682,-2.0584002,-2.0252273,-1.8353369,-2.2015722,-1.9756328,-2.120977,-1.8929778,-2.113419,-2.1240935
+-0.23861593,-1.3260714,-1.5501641,-1.6116583,-1.6688589,-1.5560657,-1.7069684,-1.9518105,-1.8045015,-1.5802562,-1.3054835,-2.5043898,-2.6552992,-2.2537987,-2.438961,-2.6988626,-2.276425,-2.0134268,-2.0110443,-1.8277102,-1.5214788,-1.7446843,-1.9318713,-1.8063644,-1.8233417,-1.9584233,-1.6940132,-1.852084,-1.3867623,-1.9505917,-1.947703,-1.7670432,-2.1073768,-2.0270176,-2.1349738,-1.9884692,-1.8613436,-1.9090763,-2.1469173,-1.6724145,-2.0122383,-1.9134668,-1.9692506,-2.0086002,-1.9267355,-2.1412706,-2.278569,-2.1689315,-2.181247,-2.0739899,-1.9786686,-2.0689468,-2.178975,-2.46079,-1.3524354,-1.7800769,-1.9011471,-1.9876984,-2.2761602,-2.356616,-2.2526004,-2.411556,-2.5545263,-1.4211477,-1.518415,-1.7477158,-2.050736,-2.1700165,-2.0657656,-2.2153203,-2.358756,-2.4947367,-2.47916,-2.5906618,-2.4902964,-2.4111993,-1.4945594,-1.3005615,-1.9880241,-2.1375842,-2.4320774,-2.5448775,-2.620446,-2.6400166,-2.7260923,-2.8639452,-2.940129,-1.1828936,-1.9053196,-2.2253375,-2.304985,-2.5942059,-2.6994271,-2.8148365,-2.6090941,-1.0311775,-1.8115376,-2.1368232,-2.3904576,-2.530154,-0.9887809,-1.8932878,-2.0663493,-2.3393006,-2.3880858,-2.5007346,-2.4012115,-2.5240655,-2.72812,-2.7318122,-2.827753,-2.870419,-2.9175825,-0.9558783,-2.0547523,-2.3457446,-2.6054482,-2.4140716,-1.4019759,-2.0102522,-2.0070682,-2.2128956,-2.468065,-2.403287,-2.3990288,-2.1768863,-2.2047808,-2.216906,-2.3501582,-2.4372988,-2.5801115,-2.564883,-2.6500885,-2.6342475,-2.6196902,-1.3549665,-1.9015054,-1.8341024,-1.9071234,-2.037467,-1.9161142,-2.0305216,-1.9571282,-2.1242578,-2.44207,-2.6150265,-2.7396,-1.6950842,-2.292512,-2.6510537,-2.7678852,-2.9312582,-2.9968176,-2.870822,-2.8367682,-2.8323386,-3.0031788,-2.9599295,-3.0143077,-3.1019616,-3.1353197,-3.0752573,-2.7721655,-2.9479594,-3.080688,-3.1977544,-3.2109473,-3.2220588,-3.228309,-2.4482372,-2.2650497,-2.5302033,-2.7399101,-2.891572,-3.046146,-3.187202,-3.2434158,-3.237105,-3.2299445,-3.1370316,-3.22906,-3.0779448,-3.273809,-3.3843117,-3.416813,-3.2882092,-3.2257273,-3.2253413,-3.1885724,-3.1996205,-3.085776,-3.0229306,-3.1685147,-3.2456503,-3.210666,-3.3221827,-1.0745698,-2.195819,-2.4600976,-2.611442,-2.6976166,-2.8551097,-2.7089689,-2.6947517,-2.6873283,-2.8792903,-3.1504717,-3.089947,-3.219421,-3.3136,-3.3491058,-3.243942,-3.2010303,-3.2445297,-3.2203503,-3.2773066,-3.2757707,-2.3486595,-2.625187,-3.0540135,-3.118207,-2.9549892,-2.963626,-2.9127383,-3.1785269,-2.9953542,-3.0106008,-3.1984448,-2.4390342,-2.7303815,-2.9666905,-3.0277853,-2.0455146,-2.5848832,-2.7300184,-2.8837426,-2.8383021,-2.8029304,-2.899725,-2.7748485,-2.8683848,-1.6167672,-2.1763072,-1.5554836,-2.738366,-2.6374445,-2.1743414,-2.0744572,-2.3134518,-2.2247303,-2.651605,-2.8046403,-1.9897426,-1.8218923,-2.3035069,-2.130416,-2.5748394,-2.670801,-2.154245,-2.2046208,-2.528891,-1.8839246,-1.6662186,-1.5244457,-2.212946,-2.475287,-2.4934516,-2.4239225,-2.4643722,-2.6369908,-2.5056973,-2.5977764,-2.3245432,-2.4823484,-2.05061,-2.1886172,-2.1207745,-2.3793998,-3.208819,-2.6530242,-2.1595874,-1.6528535,-1.5427895,-1.8922879,-2.3185208,-2.595286,-2.6539702,-2.7397747,-2.574699,-2.4362874,-2.3253274,-2.3439066,-2.8021252,-2.41367,-3.0493736,-3.2839494,-3.4331079,-3.7262597,-3.5978212,-3.421855,-3.4846592,-3.354027,-3.008526,-2.932644,-2.545967,-2.4507585,-2.3798318,-2.4566693,-2.4796076,-1.923873,-2.1245966,-1.9137629,-2.287823,-2.5679774,-2.7268271,-2.5413814,-2.4201686,-2.5991673,-2.4913745,-2.3448503,-2.0600834,-2.1921678,-2.28423,-2.258171,-2.2051096,-2.1380413,-2.055119,-2.0549655,-2.2919245,-2.3273952,-2.504037,-2.0189404,-1.5078231,-2.2163942,-2.322504,-3.0286536,-2.4636812,-2.0079448,-2.2896707,-2.13733,-1.659535,-2.6916845,-2.3985577,-2.1678116,-2.4998822,-2.1336753,-2.0922933,-2.5885558,-2.4038258,-2.1625552,-2.0281692,-1.9663218,-2.1549544,-1.9663137,-2.041836,-1.9697095,-1.8832878,-1.9571189,-1.7530345,-1.985804,-1.953422,-1.8770702,-1.9612695,-1.9970249,-1.8216528
+-0.5508826,-1.797058,-2.4435084,-2.8637738,-3.1735947,-3.087283,-2.9983644,-3.4220996,-3.450048,-2.9259589,-3.1743321,-3.8270717,-4.582974,-4.5151997,-4.142456,-4.3894396,-4.206133,-4.15131,-3.9360914,-3.5823722,-3.469545,-3.225659,-3.5099766,-3.2456117,-2.9763043,-2.712193,-2.4685566,-3.35541,-3.0465412,-2.8890967,-3.3232772,-4.28388,-4.37068,-4.326227,-4.2712708,-4.2286816,-3.990347,-3.628954,-3.2621896,-2.8285048,-2.6413999,-2.6457515,-3.6837296,-3.8282886,-3.9729557,-3.426634,-2.9371693,-2.9883032,-2.8187387,-2.4783287,-2.4361396,-2.4540615,-2.2340229,-1.9685708,-1.9105834,-1.8953108,-1.9246377,-1.9653562,-1.9420218,-1.8622513,-1.9048663,-1.9190034,-1.2817205,-1.8072405,-2.2661433,-2.9147472,-2.8058028,-2.596983,-2.5933018,-2.4747229,-2.240546,-2.0655293,-1.981645,-1.9156038,-1.501094,-1.9484559,-1.9488112,-1.6663721,-2.1648412,-2.2723286,-2.1592155,-2.0142395,-1.9545974,-1.8872603,-1.8584067,-1.8586737,-1.4346626,-1.6030279,-1.6032482,-1.7007126,-1.7292165,-1.7630135,-1.8152668,-1.27958,-1.5062754,-1.4108384,-1.4153666,-1.5985631,-1.668668,-1.0082867,-2.179966,-2.5745332,-2.2916036,-2.1201596,-2.094432,-2.0021257,-1.9106635,-1.8909054,-1.9086258,-1.8995692,-1.8913692,-1.8811415,-1.7855743,-1.1642658,-1.8489419,-1.8812026,-1.9265653,-1.5943202,-1.5357448,-1.7940015,-1.5223591,-1.807699,-1.8477142,-1.8728123,-1.9186167,-1.6245877,-1.3120111,-2.5881767,-2.3915458,-2.295363,-2.2673368,-2.5323353,-2.6572762,-2.6518137,-2.5191965,-2.6227453,-2.8541396,-2.6208167,-2.5660825,-2.4925344,-2.8007271,-3.0508218,-2.8181117,-2.6148486,-2.2812529,-2.0890698,-1.9856142,-2.0279336,-1.964331,-1.969582,-1.9674767,-2.026795,-1.9922227,-1.9277914,-1.8438596,-1.8543808,-1.9487859,-1.9872683,-1.9815239,-2.020298,-2.047144,-2.035091,-2.0921078,-1.7373248,-1.8993167,-1.3341953,-1.5487391,-1.8783401,-2.0704021,-2.088233,-1.081505,-1.5878967,-1.8957545,-1.9661392,-2.0783024,-2.2318583,-2.2211313,-2.274261,-2.2522469,-2.1062062,-2.1515498,-2.021718,-2.1545856,-2.288884,-2.3562298,-2.1954541,-2.2440867,-2.2810564,-2.2539835,-2.2605417,-2.1270318,-2.0284123,-2.1583233,-2.240171,-2.212394,-2.1986961,-2.2983146,-2.2546504,-2.261582,-2.206862,-2.107946,-2.1141076,-1.4824315,-1.6033608,-1.8095039,-2.0191875,-2.139278,-2.1384783,-2.134172,-2.197849,-2.2127688,-2.1544104,-2.1369336,-2.1815388,-2.1822677,-2.2048283,-2.2161636,-2.2562575,-2.1750712,-2.2838328,-2.2294912,-2.2814963,-2.246726,-2.0706253,-2.2434335,-2.1399028,-2.116483,-2.1998544,-0.76774484,-1.6200069,-1.8519965,-1.9477545,-1.8183097,-2.0169492,-2.1530306,-2.1644435,-2.2106147,-2.176311,-2.177933,-2.120652,-2.192827,-0.6913411,-2.1271749,-2.2051284,-3.379339,-2.9309425,-2.735445,-2.9828453,-3.310232,-3.4868975,-3.8688297,-4.037015,-3.4768996,-2.9823909,-2.6026928,-2.5507445,-3.3647563,-3.7291398,-3.7137563,-3.238505,-3.3052788,-3.7670372,-3.7956583,-3.5240684,-3.4962,-3.7713945,-3.9765477,-3.8287106,-4.05925,-4.035615,-3.9780822,-3.7780497,-3.4751987,-3.9460104,-3.168483,-3.7077322,-3.9626489,-4.4037275,-4.5939436,-4.449459,-4.1197414,-3.5684783,-2.6088624,-2.1557796,-2.405394,-3.1066587,-3.8046956,-3.9227498,-3.7071342,-3.7003255,-3.6823435,-3.6554418,-3.3339963,-3.6117034,-4.371726,-4.2233324,-4.2188463,-4.500189,-4.561656,-4.166275,-4.6013813,-4.4948874,-4.312776,-4.449339,-4.406726,-4.3050184,-4.194879,-4.055659,-4.2857866,-3.847777,-3.4646158,-4.0868917,-4.2530837,-4.5038996,-4.6880975,-4.4576397,-4.354312,-4.3293467,-4.16381,-3.8026905,-3.6659899,-3.8437057,-3.6424582,-3.4483237,-3.2803593,-3.0783722,-2.7291822,-4.015816,-4.056697,-3.9627552,-3.867874,-3.616234,-3.387249,-4.291042,-4.134948,-4.4280577,-4.2225895,-3.8958936,-3.5361402,-3.038528,-3.2627501,-4.456996,-4.3416176,-4.0855494,-4.0719676,-4.2167034,-4.112114,-4.4145722,-4.3837276,-4.148889,-3.98942,-4.061512,-3.9258103,-3.5382233,-3.3449202,-3.206942,-2.9577255,-2.434623,-2.898493,-4.1522503,-4.014058,-3.9460266,-3.5512724,-3.296094,-3.8039894
+-0.37809208,-2.4218733,-2.411765,-2.1585555,-2.0401318,-1.957727,-1.960785,-1.988196,-1.9937357,-2.011714,-1.4756542,-1.2047883,-2.4253054,-2.5767798,-2.852374,-2.6093569,-2.3003516,-2.2333753,-2.191689,-2.133299,-1.8706552,-1.4565635,-2.167988,-1.9935755,-2.0232797,-2.1142306,-1.7183619,-2.2049565,-2.2096987,-1.11213,-1.6701347,-1.8236943,-1.9764913,-2.000991,-1.9977888,-2.0136828,-2.010117,-2.0622172,-2.3255339,-2.3255463,-2.4054666,-2.475987,-2.232175,-2.1521077,-2.1706202,-2.4217396,-0.69028336,-2.2009528,-2.0274177,-1.3220855,-2.0415611,-2.0134754,-1.9655527,-2.0115252,-2.133286,-2.2426643,-2.3840566,-2.439513,-2.4184964,-2.4477148,-2.3645926,-1.0847065,-1.6036571,-1.7206753,-1.5423084,-1.7843897,-2.00087,-1.9240237,-2.010996,-2.090763,-2.1833196,-2.3467195,-2.4150743,-2.4104416,-0.7397292,-1.9886311,-2.0103061,-1.9795402,-1.7274511,-2.013201,-2.2170253,-2.2977076,-2.3919876,-2.3722882,-2.4195259,-2.5360372,-2.3429809,-2.385466,-2.1138003,-1.7641393,-2.1923957,-2.2803512,-2.4998198,-2.5780325,-1.8780031,-2.136046,-1.8175738,-2.0933225,-2.2710817,-1.7322513,-1.6782076,-1.4895402,-1.350495,-1.7734632,-1.5998936,-1.7008723,-2.0119336,-2.1218586,-2.2077668,-2.2818508,-1.9771069,-2.3400364,-0.8742623,-2.115651,-2.2265177,-1.5740781,-2.0427287,-1.7242122,-1.4682629,-2.0832808,-1.9800476,-1.7787942,-2.2079306,-2.3755648,-1.8649518,-1.1779624,-1.9637736,-1.8137248,-2.1223671,-1.8641931,-1.2988313,-1.5355333,-2.0686839,-2.1033812,-2.0055933,-1.8279195,-1.8066372,-1.9555379,-2.0535812,-1.5894624,-1.8073024,-1.5941707,-2.0264945,-1.9328424,-2.069634,-2.194973,-2.2740386,-2.3432837,-2.3809595,-2.4311967,-2.3025045,-2.350881,-2.415319,-2.4676504,-2.4525146,-1.6985072,-1.317025,-1.9814681,-2.2295623,-2.318667,-2.408556,-2.5126991,-2.601079,-1.6959255,-2.3534281,-2.4873524,-2.5945432,-2.7093217,-1.757393,-1.3298854,-2.2056727,-2.3434916,-2.3824763,-2.5036724,-2.6502097,-2.7090335,-2.753533,-2.6580925,-2.5630674,-2.5048862,-2.6224785,-2.6602883,-2.700952,-2.898458,-3.0808682,-2.9655929,-3.0118375,-2.962287,-2.925684,-3.0417478,-2.9478216,-2.8518527,-2.9302773,-3.0231667,-3.0259418,-3.0652523,-3.0760264,-3.0429797,-3.0281682,-2.968945,-2.9139009,-2.9428208,-1.9684719,-2.1988769,-2.4751992,-2.636537,-2.8655639,-2.9534874,-3.0332847,-3.1085918,-3.1048224,-3.084538,-3.0846558,-3.0965905,-3.1052897,-3.0844533,-3.1025898,-3.1078312,-3.0364218,-3.087405,-3.085273,-1.9128438,-2.6346798,-2.6985383,-2.8564386,-2.9970179,-3.004582,-3.0288432,-3.0345893,-3.0954084,-3.0632913,-3.112224,-3.1050854,-2.8581128,-3.0095031,-3.0583553,-3.159562,-3.22783,-3.1521425,-3.0212588,-2.988476,-2.965785,-0.8196547,-1.6954778,-2.719614,-2.2815962,-2.0264874,-1.840618,-1.9608496,-2.2179036,-2.3924148,-2.5534227,-2.33619,-2.1441116,-2.3470554,-1.4728166,-1.5730964,-2.7437255,-2.836557,-2.4811616,-2.2375405,-2.03312,-2.7671626,-2.387416,-2.267593,-2.4203477,-2.4113615,-2.3156202,-2.4025831,-2.4080887,-2.5157092,-2.5163507,-1.755629,-2.4837809,-1.5552436,-1.7102557,-2.0555077,-3.022243,-2.8151326,-2.665121,-2.138898,-1.7562519,-1.6700581,-1.8417122,-1.8741513,-2.0746129,-2.2654772,-2.5478373,-2.4762087,-2.4139829,-2.4024138,-2.40553,-2.410654,-1.7090248,-2.7458422,-2.4304223,-3.0756202,-3.197391,-2.9936776,-2.6465812,-2.1801057,-2.8328137,-2.5604568,-2.5259733,-2.481134,-2.416104,-2.4157724,-2.4306748,-2.5575504,-2.345725,-2.3967154,-2.4205143,-1.1599017,-2.3740072,-2.4996634,-2.352872,-2.2735972,-2.3486848,-2.3461108,-2.2995336,-2.0443468,-2.3751802,-2.3546782,-2.1884568,-2.375085,-2.3738317,-1.131148,-2.316606,-2.2388256,-2.2548237,-2.344573,-2.2353716,-1.0244516,-2.317981,-1.9724923,-2.4274223,-2.3218608,-2.2284422,-2.276376,-2.4133384,-1.221713,-2.3820655,-2.371945,-1.8812267,-2.3314114,-2.0270708,-2.1016808,-2.3372405,-2.5821872,-2.238536,-2.1265996,-2.3489835,-2.2483768,-2.1981869,-2.26988,-2.2794337,-2.2660913,-2.3076882,-0.8117766,-2.429008,-1.8550287,-1.835914,-2.2540236,-1.756625,-2.4677167
+-0.38654432,-2.2637906,-3.279667,-3.6662307,-3.5871546,-3.3083816,-3.0809312,-2.8367133,-2.5606673,-1.8693879,-1.8370663,-1.9309474,-4.053103,-4.413836,-4.264639,-3.9485788,-3.0746112,-3.0528712,-2.8425598,-2.5457454,-2.5001626,-2.2895832,-2.2516096,-2.0821548,-1.9260842,-1.8727535,-1.6000862,-3.2737927,-4.3005886,-4.3772516,-4.487222,-4.6025844,-4.5526857,-4.708291,-4.4987326,-4.3358316,-3.6269634,-2.8622918,-2.4125993,-2.3352478,-2.170024,-2.049079,-1.9991406,-2.0199692,-1.9392118,-1.655709,-2.8589716,-4.0330467,-3.9962792,-4.126993,-4.427684,-4.324312,-4.1503973,-3.4805157,-3.0723424,-2.6385593,-2.3772626,-2.3701613,-2.3660336,-2.1476007,-2.4710135,-2.6452854,-2.660879,-3.4016623,-3.6540945,-4.3003645,-4.3174477,-4.029906,-3.6649299,-3.033719,-2.8819406,-2.8242807,-2.9970212,-3.5112038,-4.1057043,-4.2303257,-3.9126005,-3.4120505,-3.1966946,-4.0298705,-4.2408686,-3.8657875,-3.3801358,-3.121308,-2.729499,-2.2794175,-2.0371702,-3.1119838,-3.9308944,-4.1949887,-4.2460127,-3.938476,-3.3506334,-3.0333905,-2.75116,-2.6882248,-2.5768306,-2.3656204,-2.1856296,-2.4486067,-2.21198,-2.8700163,-3.8988874,-4.099935,-4.142023,-4.181388,-4.0790443,-3.6256504,-3.7357075,-3.863261,-3.8246894,-3.6907825,-3.8042164,-4.0095015,-4.0657973,-4.125449,-4.1365213,-4.3691216,-4.2632513,-4.143198,-3.997251,-4.0756583,-4.063556,-3.801488,-3.9099612,-4.121126,-4.3188796,-4.2241282,-4.154072,-4.1729884,-3.9461093,-4.219816,-3.8920302,-4.230499,-4.589591,-4.6181006,-4.564122,-4.3965597,-4.2258363,-4.212305,-4.3327365,-4.431263,-4.3911023,-4.108026,-3.6188393,-3.5830917,-3.6800349,-3.15806,-2.9210973,-3.5508456,-3.8540456,-3.2641854,-2.5765576,-2.0502079,-1.9121517,-1.9011161,-2.9484055,-3.7362194,-3.9126782,-3.9444947,-3.7216883,-3.5280929,-3.1677673,-2.801619,-3.7188601,-4.154101,-3.8963654,-3.4742641,-3.6464722,-3.9474673,-4.2400856,-4.2141137,-3.9298472,-3.673403,-3.5022247,-3.1413572,-2.6670148,-2.6649766,-2.8585582,-3.863396,-4.116873,-4.133083,-4.177066,-3.5648875,-2.670045,-2.2468987,-2.1171517,-2.0072203,-1.9429662,-1.7463514,-1.7911552,-1.8083453,-1.7654082,-1.7299795,-1.7527736,-1.6972997,-1.7033345,-1.7035724,-1.7293375,-1.793327,-2.0505679,-2.0351408,-1.9524214,-1.7634293,-2.2852275,-1.8764503,-1.7081414,-1.6118327,-1.5917609,-1.6154131,-1.5583465,-1.5739526,-1.5447811,-1.4894482,-1.607879,-1.6325091,-1.690365,-1.5873164,-1.6367053,-1.5691515,-1.581777,-3.7474012,-4.1927495,-4.4181643,-4.3528056,-4.191037,-4.0298443,-3.5241385,-3.1892908,-2.7566385,-2.7597563,-2.9171662,-2.8174937,-3.1826859,-2.7553294,-2.3599331,-2.318055,-2.2640102,-2.208368,-2.15619,-2.306361,-2.1594484,-2.154149,-3.620437,-4.5611534,-4.250843,-3.1830926,-3.7461405,-4.0347295,-4.5389767,-4.780036,-4.7546844,-4.7393365,-4.541327,-4.2951016,-4.079962,-3.9613285,-4.535724,-4.8096,-4.769291,-4.4646406,-4.3116736,-4.762598,-4.870501,-4.8452396,-4.48125,-4.1392756,-4.1638527,-4.116494,-3.9399128,-3.78585,-3.5530257,-3.8278217,-4.3668547,-3.3384662,-3.7253242,-3.5179014,-4.4201365,-4.8673925,-4.995343,-4.5457277,-4.6547575,-4.2515564,-4.416723,-4.31948,-4.6101084,-4.61561,-4.46548,-4.2569942,-4.1247234,-3.8468175,-3.494624,-3.8387837,-3.6920438,-4.674364,-4.4162407,-4.619996,-4.7912817,-4.8575325,-4.7756147,-4.541424,-4.9388514,-4.6834393,-4.4805536,-4.099084,-3.7389667,-3.7246857,-3.5716257,-3.2813866,-3.6645017,-2.9980483,-3.0504484,-3.5965,-4.6843295,-4.812333,-4.862547,-4.684615,-4.583166,-3.7941613,-3.7395115,-3.5614505,-4.176175,-3.562312,-3.977766,-4.5868,-4.482597,-4.081382,-4.5202894,-4.454956,-4.3935113,-4.235809,-4.182815,-3.3832994,-4.062716,-4.110699,-3.8880644,-4.3024774,-3.5179453,-2.3636613,-2.2704706,-2.4275105,-3.586565,-4.443289,-4.3584824,-4.0888658,-4.0470695,-4.423437,-4.6675305,-4.923404,-4.632813,-3.8134372,-3.6943483,-2.9980583,-2.6452603,-2.4842634,-2.2153199,-1.9948155,-1.8390696,-2.4825044,-4.4271297,-4.502859,-4.408863,-4.134931,-3.8720334,-4.5054092
+-1.041086,-1.4606285,-1.8395951,-1.9473965,-2.0423498,-1.5567893,-1.9815749,-1.9139872,-2.0739336,-1.7543571,-1.7975312,-2.1401613,-2.2310748,-2.406427,-2.3907814,-2.4338722,-2.515336,-2.6932545,-2.8174639,-2.3672066,-1.9566038,-1.6852756,-1.9998938,-2.3974981,-2.541079,-2.4878726,-1.7440242,-1.4475074,-1.6015346,-0.771041,-1.1098343,-1.0994921,-1.3990744,-1.154198,-1.6688582,-1.9226004,-1.8713375,-1.3076183,-1.1906792,-0.7673753,-1.0035831,-1.1034755,-1.4341519,-0.89437515,-1.5539756,-2.08329,-2.0482903,-2.2968466,-2.5239165,-2.6507049,-2.1838439,-2.6929064,-2.8638437,-2.9143217,-2.841772,-1.1624963,-1.7027673,-1.2643896,-1.2128161,-1.8090154,-2.328627,-1.1747011,-1.2728239,-1.9851803,-0.41011474,-0.86051685,-1.3178555,-1.8307368,-2.255083,-2.5864038,-2.5691204,-2.7478442,-2.7495089,-2.780326,-1.5281113,-0.9501645,-1.201888,-1.9420075,-2.4076967,-2.5744612,-2.5700302,-1.0067918,0.029249746,-0.44816035,-0.90296316,-1.4621884,-0.05687915,-0.8789235,-1.4453913,-1.9439033,-2.4205647,-1.5850657,-2.333957,-1.1300147,-1.5914029,-1.8989537,-0.48656097,-0.9081507,-1.224717,-2.0071924,-2.4764206,-2.526569,-1.0602053,-0.43478414,-0.23440549,-1.0102931,-1.4791776,-0.79234046,-0.17941357,-0.9285109,-1.0520065,-1.4218013,-0.920672,-1.4149097,-1.8666412,-0.6369682,-1.3787037,-1.93739,-1.8227711,-2.2903864,-2.2685354,-2.5108128,-2.7101474,-2.784201,-2.8576338,-2.913216,-2.954988,-2.967692,-3.1066594,-3.0256133,-3.077188,-2.996405,-3.0158901,-2.9781795,-2.4084315,-2.4898179,-0.46912703,-0.49784663,-1.3466018,-1.6182057,-1.2938818,-0.66919047,-1.2501215,-2.0009398,-2.4860897,-0.56499463,-0.701235,-1.0021156,-1.1371444,-1.3848633,-1.6173896,-2.0056515,-2.273938,-2.4535837,-2.620686,-2.7577767,-2.948374,-2.9793363,-3.007955,-3.0623991,-0.6879491,-1.5728465,-0.40068194,-1.5700997,-2.0812087,-2.3739302,-1.9401474,-2.2073433,-2.3906715,-1.6180412,-2.109779,-2.6345522,-2.851697,-2.9908109,-3.1219034,-3.1749206,-3.169528,-3.0160384,-1.7504781,-2.5963058,-2.886096,-2.416656,-1.6019851,-1.7281138,-2.3742676,-2.6469767,-2.8403528,-3.0684538,-3.1378374,-3.3150096,-3.4338489,-3.5837922,-3.588069,-3.651966,-2.8211896,-2.5801823,-3.1603332,-3.3506937,-2.7285917,-2.9401426,-3.2408824,-3.2103612,-1.8884658,-2.7010837,-3.0232644,-3.2807512,-3.2858388,-3.3532796,-2.6796246,-2.6039262,-3.1112344,-3.2993586,-3.3504066,-3.3942022,-3.5117433,-2.2605217,-1.7271198,-2.5873697,-3.180591,-3.3866198,-3.4411168,-2.606253,-2.8119512,-3.1522923,-3.3336272,-3.225548,-3.353738,-3.535263,-3.707047,-3.662366,-3.6857448,-2.4957433,-2.7050347,-2.7391434,-2.790229,-2.815209,-2.1176033,-2.427477,-2.3490102,-2.5276217,-2.6755676,-2.1380181,-2.1941986,-2.3348575,-2.647761,-3.0269067,-3.0414934,-1.9239991,-2.07793,-2.1384172,-2.1150227,-2.2403631,-2.2940505,-2.3525448,-1.9803542,-1.7691693,-1.8828197,-2.0753071,-2.1817925,-2.0860476,-1.7323278,-1.9849128,-1.8374106,-1.893942,-1.898698,-1.8374257,-1.698585,-1.6144078,-1.5424193,-1.6495081,-1.7609392,-1.9594549,-2.1540802,-2.2939956,-2.3768034,-2.3143177,-2.1416938,-1.927734,-1.7018377,-1.9510249,-2.1146197,-2.139821,-2.0911586,-2.0865684,-2.2319458,-2.2053623,-1.6910836,-1.7756717,-1.6525433,-1.6993963,-1.9456431,-1.7110728,-1.7835656,-1.6672677,-1.4413624,-1.9175478,-2.0386198,-2.0636554,-2.175388,-2.5605962,-2.6577115,-2.6564384,-2.630711,-2.653624,-2.703339,-2.680624,-2.8522325,-2.8484812,-2.918283,-2.959868,-2.6804829,-2.5720127,-1.7538967,-2.0463972,-1.698079,-1.9750303,-2.1418324,-2.3885214,-2.4111516,-2.5595722,-2.5421956,-2.7480435,-2.7778497,-2.9113708,-2.843649,-2.784754,-2.9580839,-2.9011958,-2.8476977,-3.0070388,-2.941066,-3.1708627,-2.9983842,-2.7141361,-2.1799512,-2.321497,-2.4270382,-2.4319897,-2.7015772,-3.0601213,-2.1449547,-2.5260322,-2.6727495,-2.66805,-2.7764716,-2.9035716,-2.6653357,-2.7380056,-2.903388,-2.994855,-2.7228334,-2.7237244,-2.6308758,-1.535945,-2.0278642,-2.2858717,-2.4614925,-2.7387438,-2.797797,-2.478279,-2.467515,-2.3845057,-2.350584,-1.3987042,-1.4964453
+-0.046402495,-0.5868261,-1.1044123,-1.4634551,-1.5918132,-1.8934474,-2.1009693,-2.0262744,-2.141041,-1.9552797,-1.2109861,-1.7795573,-1.8152193,-1.9001399,-2.0709949,-2.1639123,-2.21682,-2.2992244,-2.416097,-2.4845588,-1.5317425,-1.3253051,-1.8462447,-2.0556417,-2.116704,-1.4549711,-1.4158005,-1.7354183,-1.988856,-1.4147154,-1.7219783,-1.7888352,-1.9558929,-1.7057016,-1.9904612,-1.9527096,-1.9805382,-1.3757498,-1.6413094,-1.4659975,-1.4571363,-1.727276,-1.852389,-1.7975215,-1.8414997,-1.9259385,-1.4593519,-1.8141526,-1.8817261,-1.4037111,-1.8690486,-1.9498769,-2.0398343,-2.137467,-2.181221,-1.8151782,-2.0122852,-2.1221356,-2.234292,-2.4109683,-2.5423572,-2.5402713,-2.2945561,-2.749402,-0.8571979,-1.5883535,-1.8701934,-2.1440988,-2.2830296,-2.4765334,-2.5684726,-2.667952,-2.6910717,-2.694313,-1.7829206,-1.5790259,-1.9330326,-2.1863933,-2.4015923,-2.5939121,-2.680831,-2.7230413,-2.764218,-2.7394476,-2.8817716,-2.983992,-3.016941,-1.3611435,-2.4008822,-2.5753412,-2.830772,-2.872683,-2.6841125,-0.8156919,-1.0711246,-1.2651331,-1.1911985,-1.4411374,-1.461233,-1.8479866,-2.1082108,-2.2164476,-2.0326233,-2.1073596,-0.7872973,-1.6229166,-1.9250482,-2.1251693,-1.5482312,-2.0128665,-1.4890507,-1.9797918,-1.4354442,-1.8269953,-2.0339887,-2.381105,-1.9743491,-2.5371,-2.5919063,-2.2137704,-2.7432184,-2.8542995,-0.90764767,-1.8122936,-2.3093476,-2.626288,-2.8270955,-2.821165,-3.0487819,-3.1393604,-3.1875694,-3.1608384,-3.1936312,-3.2418458,-1.1669279,-1.3463032,-1.3457212,-1.533519,-1.7502428,-1.7136226,-1.8832989,-2.0765247,-2.0986252,-2.4019887,-2.5271325,-2.4353063,-2.5431442,-2.6375074,-2.3813505,-2.8026764,-2.2128084,-2.6905413,-2.8673408,-2.9343915,-3.0206304,-3.2593164,-3.3415048,-3.334985,-3.3992176,-3.4428039,-3.3059545,-2.4567916,-2.6783392,-3.066143,-3.188589,-3.2877026,-3.1784842,-3.2625694,-1.5729275,-1.4744362,-2.2216191,-2.5129728,-2.8375406,-2.98074,-3.1400182,-3.2997618,-3.3496544,-3.446303,-1.6332306,-2.5804434,-2.7376137,-2.5799963,-2.1125174,-2.5221703,-2.9226975,-3.0679283,-3.090607,-3.2230444,-3.3250813,-3.456087,-3.5507789,-3.6176403,-3.5768018,-3.6394758,-3.3975596,-3.0645008,-3.3084028,-3.490031,-3.573501,-3.5224683,-3.5556245,-2.2540123,-1.2945381,-2.4418764,-2.623661,-2.8052442,-2.87457,-2.827077,-2.9973853,-3.1474109,-3.1647768,-3.2341814,-3.4001377,-3.460019,-3.562441,-3.6328835,-3.4718225,-3.6251214,-3.7780747,-3.878778,-3.8477824,-3.2831595,-3.3099375,-3.5414875,-3.619949,-3.5913563,-3.748991,-3.8190947,-3.8973794,-3.822306,-3.8193278,-2.2770128,-2.8350773,-2.9329212,-2.9204962,-2.9725971,-1.7336482,-2.6241837,-2.589499,-2.6745481,-2.8216026,-1.5729294,-2.1621923,-2.298255,-2.5252347,-2.778211,-2.872857,-2.4420125,-2.7486281,-2.398652,-2.6934562,-2.6417823,-2.6897469,-2.6699274,-2.2083576,-2.398483,-2.4529016,-2.4647765,-2.5501256,-2.1965516,-2.0879416,-2.0745962,-2.29911,-2.1618476,-2.0182242,-1.9648689,-1.9894787,-2.0370464,-2.2729292,-2.4502213,-2.752202,-2.5849504,-2.6973104,-2.8571932,-2.787929,-2.790722,-2.7471077,-2.7249835,-2.7086418,-2.6818933,-2.7008555,-2.6803613,-2.5658257,-2.2588034,-2.4770057,-2.667078,-2.714657,-2.5275645,-2.317324,-2.4307787,-2.5022612,-2.08393,-2.3905053,-2.4096622,-1.3904021,-2.2352085,-2.2847385,-2.326025,-2.314399,-2.5510907,-2.5926127,-2.6846557,-2.7831707,-2.8594255,-2.8787317,-2.9132457,-3.1780252,-3.0286942,-3.2021565,-3.0864263,-2.6012359,-2.9530845,-2.9680877,-3.0140607,-2.7386088,-2.6184616,-2.8750238,-3.0185838,-2.8496685,-3.0720904,-2.8226905,-2.95751,-2.9278936,-3.1704764,-3.0296571,-2.9775977,-2.6722474,-2.890304,-2.9352994,-2.9298332,-2.5845208,-2.845581,-2.9169254,-2.2401395,-1.8407611,-2.05445,-2.050624,-2.1579695,-2.5087705,-2.6011944,-1.6291789,-2.0991197,-2.4032073,-2.348013,-2.445965,-2.4935665,-2.4494972,-2.7365088,-2.7064497,-2.534488,-2.585897,-2.875303,-2.7086937,-2.6322663,-2.6733396,-2.5051057,-2.379655,-2.674724,-2.811553,-2.618475,-2.5548925,-2.5638185,-2.4419537,-1.6836007,-2.3374515
+-0.05924772,-0.6398107,-0.82546777,-1.2519356,-1.0445951,-1.1696206,-1.4233826,-1.3559017,-1.256374,-1.5081497,-1.7211155,-1.7744176,-1.4969574,-1.5827378,-1.4504739,-1.4222449,-1.5083554,-1.5786856,-1.7225776,-1.88962,-1.429145,-1.8651811,-1.9008511,-1.736355,-1.7544141,-1.7605653,-1.0746866,-2.0599937,-2.3586838,-2.4464982,-2.6755595,-2.603191,-2.4570904,-1.9896582,-2.2765627,-2.0146472,-1.8893328,-1.9378694,-1.9922129,-1.0370032,-1.8927685,-1.7302064,-2.3578048,-2.4218588,-1.9478048,-1.663952,-1.5703107,-1.8750027,-1.9981259,-1.8632838,-2.228186,-2.232141,-2.073908,-1.9911658,-1.5170202,-1.8193746,-2.0245934,-2.0125475,-2.082148,-2.1016881,-2.153782,-2.402044,-1.7674017,-2.4172378,-1.8930215,-1.9501737,-2.143702,-2.165545,-2.3563254,-2.2706137,-2.4671626,-2.6274714,-2.7587924,-2.648396,-2.5271764,-1.8511907,-2.65146,-2.7876637,-2.7651052,-2.838613,-3.0407882,-2.7086108,-2.8403194,-2.9168963,-2.1734562,-2.5567892,-2.6123898,-2.3509524,-2.919057,-2.9628859,-2.970735,-2.819639,-2.6759658,-2.289785,-1.3432657,-1.8590099,-1.4979022,-0.70934016,-1.5864962,-1.875292,-1.9280087,-2.109611,-1.208686,-1.6647084,-1.2220458,-1.6769376,-1.8220344,-1.9325539,-2.1385102,-2.4568298,-2.6776876,-2.8886747,-2.332191,-2.5710692,-2.7591658,-2.543407,-2.724684,-2.3047557,-1.5064566,-2.0235727,-2.0555081,-2.2439446,-2.1861484,-2.3469203,-2.3266044,-2.5969806,-2.3592272,-2.2973294,-2.6749847,-2.924941,-2.9822276,-2.4549994,-2.6423092,-2.7950668,-2.3867934,-2.2194216,-1.5331465,-1.9467691,-2.042986,-2.1729708,-2.2802389,-2.191268,-1.8119782,-2.156744,-2.282355,-2.4441905,-2.622252,-2.7018096,-1.7166516,-2.3735101,-2.7355614,-2.9547842,-3.100434,-3.1883302,-3.2511263,-3.278132,-3.3317335,-3.2691894,-3.3072975,-3.307156,-3.2023191,-1.2031474,-1.6373646,-2.221851,-2.254774,-2.427606,-1.6537029,-2.1106162,-2.290884,-2.1522875,-2.3570921,-2.708712,-2.927658,-3.1151626,-3.2903328,-3.3954866,-3.427909,-3.4937172,-2.9553537,-3.2732549,-3.3489895,-3.3595788,-1.5826324,-2.1702828,-2.5834527,-2.7994602,-2.9043407,-2.8951936,-3.10666,-3.3674781,-3.4208841,-3.3927188,-3.4949577,-3.587482,-3.5580506,-2.3225694,-3.022855,-3.205571,-3.1785328,-3.128195,-3.13752,-3.4665916,-3.0224142,-3.0941834,-3.208507,-3.3949003,-3.5394115,-3.3414164,-3.5360115,-3.6172037,-3.5682993,-3.5939481,-3.6483617,-3.607038,-3.65685,-2.8867064,-3.3813128,-3.6210814,-3.62415,-3.7550075,-3.8097086,-3.705854,-3.2617497,-3.500912,-3.5879188,-3.4960005,-3.3229961,-3.6190257,-3.6840851,-3.7567172,-3.7217793,-3.4815235,-2.0095932,-2.1026754,-2.0565162,-2.6117344,-2.3401904,-2.5937405,-2.752339,-2.6681132,-2.598978,-1.668332,-1.8791656,-2.1295605,-2.343594,-2.2488163,-2.3736725,-1.5086367,-2.1075478,-1.3536649,-1.96442,-1.4475619,-1.1113616,-1.0353223,-1.8255744,-1.8917418,-2.4103189,-1.5835282,-1.071208,-1.2498666,-1.4841398,-0.37939438,-0.3652707,-0.4864551,-1.1617674,-1.3797966,-1.8940463,-1.7337909,-2.106742,-1.9393339,-1.8448777,-1.7547126,-2.1228063,-1.9030902,-2.0545225,-2.1331217,-2.067704,-1.9415823,-2.14366,-1.3701128,-0.8380589,-0.75629544,-0.608236,-1.2548434,-2.3674378,-2.3493798,-2.6471586,-1.3530279,-1.9006019,-1.9557095,-1.9614967,-1.9254388,-2.3092647,-2.0882263,-2.2292733,-2.6873174,-2.7718592,-2.6698089,-2.361854,-2.4715743,-2.522537,-2.3872426,-1.9338183,-2.3732219,-2.154174,-2.3699133,-2.4872465,-2.0927114,-1.5306107,-1.3228818,-2.2140114,-2.4813461,-1.9176098,-2.1988368,-1.7492334,-1.3836204,-2.2158637,-2.4350095,-2.0440192,-2.1435204,-2.016106,-1.5431362,-1.9662017,-2.1206205,-2.0407147,-2.2347164,-2.365901,-2.268526,-2.3507924,-2.3515472,-2.4680538,-1.6921924,-1.9275132,-1.4615563,-1.8651279,-2.2593794,-2.148991,-1.5276484,-1.7692367,-1.8722299,-1.8873006,-2.3732564,-2.5265877,-2.4003015,-1.7887939,-1.2837508,-1.4914807,-1.945835,-1.2794417,-0.93978435,-1.7283026,-1.9047294,-1.6275148,-1.6625723,-2.0123029,-1.6970096,-1.6905487,-1.9254042,-1.9630846,-2.0649626,-1.9377891,-2.0879216,-1.8598472,-1.7595185,-1.9758235
+-0.66624665,-0.4947267,-0.6097421,-0.7376288,-0.6995589,-1.1075445,-0.9648306,-0.92091244,-0.80260724,-1.3565414,-1.3751842,-1.2747666,-1.0942228,-1.4310035,-1.3058404,-1.3542769,-1.3314223,-1.3427625,-1.6792072,-1.904018,-1.565677,-1.9895757,-1.9258226,-1.9095913,-1.9950343,-2.197793,-1.4200321,-1.7383188,-1.921008,-1.8856285,-2.0726166,-1.3881173,-1.9063793,-1.7406124,-1.7568642,-1.7584456,-1.7396837,-1.9467613,-2.288125,-2.1391325,-2.3356977,-2.084629,-1.9822716,-1.9622363,-1.8024024,-2.1496716,-2.1037693,-2.1133916,-2.154485,-1.3386686,-1.9346586,-1.9310354,-1.9395576,-2.1589088,-2.286224,-1.7457496,-2.0000873,-2.135758,-2.268012,-2.2661734,-2.3006823,-2.343007,-2.3833475,-2.4871218,-1.66384,-1.992942,-2.1935914,-2.134437,-2.092585,-2.1717987,-2.3198614,-2.4706576,-2.5912538,-2.6232543,-2.4211392,-1.900128,-2.2981129,-2.3554535,-2.2889895,-2.4892535,-2.6369274,-2.5757418,-2.6415434,-2.5838838,-1.5152298,-2.2267108,-2.468377,-1.6513885,-2.0411162,-2.2218628,-2.202176,-2.318851,-2.393876,-2.514483,-2.469408,-1.9862319,-2.2595255,-2.0068269,-2.3039024,-1.183811,-1.9782456,-2.1797218,-2.367903,-2.401003,-1.4901952,-1.9101344,-1.3511904,-1.8946868,-2.132378,-2.3310132,-2.425956,-2.4778867,-2.2824664,-2.4094338,-2.5505552,-2.4873128,-2.3934813,-2.438568,-1.3953753,-1.8852586,-2.1068676,-2.2887526,-1.8674413,-1.3558074,-1.7900975,-1.9401762,-2.0496383,-1.8239502,-1.9451146,-2.0385895,-2.204559,-2.2397199,-2.45297,-2.5197618,-2.522036,-2.4754772,-2.3838687,-2.260529,-2.2858827,-2.1668472,-1.4999006,-1.649988,-1.6845142,-1.825522,-1.9808346,-2.1563005,-2.2507162,-2.3392205,-1.3278464,-1.9841596,-2.1841645,-2.2223723,-2.3461974,-2.29565,-2.2193935,-2.3228068,-2.5549335,-2.6837234,-2.841515,-2.910758,-2.8763678,-2.9086885,-2.443294,-2.547659,-2.6315227,-2.6776803,-2.706444,-2.7978592,-2.8790126,-1.3406605,-2.0472012,-2.3358629,-2.382224,-2.4736142,-2.6547253,-2.8468852,-2.9088967,-2.9474165,-2.8263521,-2.7708147,-2.7692752,-2.9177415,-2.9802482,-3.0896716,-3.2167475,-3.2942867,-3.2673664,-3.2314148,-3.278994,-3.3406403,-3.152387,-3.0931487,-3.2870045,-3.3210835,-3.2958422,-3.3911905,-2.539968,-2.845089,-3.0395727,-3.0434709,-3.081326,-3.195802,-2.8309646,-2.7519555,-2.7058291,-2.7930288,-3.1210673,-3.0770648,-3.2323065,-3.3122778,-3.3648674,-3.3676455,-3.3792639,-3.4320068,-3.4350817,-3.4836578,-3.466885,-3.4157226,-3.4071968,-3.5476413,-3.5557892,-3.3837073,-3.4002724,-3.2494116,-3.285715,-3.1827464,-3.1988266,-3.3065395,-3.4430466,-3.4270902,-3.4676104,-3.466898,-2.6602647,-2.4317403,-2.5475774,-2.9762366,-3.0175831,-3.0283942,-3.0969908,-2.9270988,-2.8591814,-2.5784717,-2.019713,-1.8477527,-2.1985087,-2.3016813,-2.6866426,-2.251914,-2.6373444,-1.7611657,-2.3109808,-2.2161574,-1.8340445,-1.8131081,-2.2862558,-1.707101,-2.254879,-2.112032,-1.8303981,-1.892702,-2.6715636,-1.3590833,-1.1066624,-1.2640239,-1.8382653,-2.2041504,-2.3821425,-0.94431496,-2.0333357,-2.219366,-1.806242,-1.930318,-1.8294376,-1.6624352,-1.3981289,-2.182326,-2.330075,-1.4880865,-2.0468376,-1.6584915,-1.4937071,-1.3021554,-1.2283986,-1.4848567,-2.2262058,-2.1952403,-2.409694,-2.5510406,-2.4115148,-2.5317457,-2.4651942,-1.9907726,-2.2385004,-1.9684268,-2.039259,-2.0973508,-2.199762,-2.2343903,-2.1604297,-2.3114448,-2.2820666,-2.1392028,-1.8543817,-2.0531197,-2.1159804,-2.1617966,-2.206116,-2.3461475,-1.9938325,-1.6049862,-2.1836104,-2.2390368,-2.0164282,-2.2916353,-1.9702951,-1.7324467,-2.2568312,-2.3279428,-2.0798874,-2.2590938,-1.6550418,-1.7306756,-1.9665631,-2.06461,-2.2160158,-2.1973276,-2.343165,-2.2593136,-2.187913,-2.1435606,-1.952148,-1.687698,-1.9696134,-2.1184175,-1.713518,-1.6490904,-1.5568432,-1.5078624,-1.7806638,-2.0471277,-1.5343233,-1.6750482,-1.7593871,-1.7143786,-1.6425959,-1.4223504,-1.7883817,-2.1576872,-1.616446,-1.4992963,-2.0576801,-1.8218131,-1.7141939,-1.9434241,-1.8302282,-1.9138693,-1.8889197,-1.8288673,-2.006379,-1.928087,-1.9237294,-1.8332464,-1.8554212,-1.9220933,-1.6373814
+-1.24369,-2.1762109,-2.018887,-2.008696,-2.1219454,-2.1156611,-2.077779,-2.2019653,-1.9611391,-2.195155,-1.9131522,-2.780776,-2.6442266,-2.5261955,-2.4532886,-2.4235275,-2.4576397,-2.4309583,-2.4385908,-2.4217045,-2.5544112,-2.4553819,-2.9053473,-2.9843574,-3.0461867,-3.0552788,-2.684494,-3.070993,-2.237459,-2.7264893,-2.895938,-2.8575726,-3.0395112,-2.855343,-3.0399423,-2.9975708,-3.029315,-3.0293636,-2.8828058,-2.653709,-3.0426376,-2.4523566,-2.9414306,-2.995071,-2.7878308,-3.1498532,-2.912293,-3.091051,-3.2665617,-3.2683272,-3.3563933,-3.3915896,-3.4086852,-3.395945,-3.3349278,-3.320417,-3.3539152,-3.3505716,-3.4616983,-3.5021362,-3.3412094,-3.3212473,-2.6360338,-2.8348458,-2.8925362,-2.8135552,-3.3509817,-3.4229255,-3.510942,-3.556611,-3.5781512,-3.5380406,-2.8269506,-3.1094184,-2.7086785,-2.8430526,-2.5533323,-3.1427839,-3.1947632,-3.2960715,-3.4088292,-3.4032478,-3.3957233,-3.3516786,-3.0417075,-2.935346,-2.9430268,-2.0320928,-3.1870909,-3.2144194,-3.357542,-3.4606984,-3.437334,-3.4790275,-3.3222985,-2.2688055,-2.7841716,-3.0229125,-3.2345328,-3.3198614,-2.4869456,-2.5955622,-3.062905,-3.171063,-2.2069592,-2.918548,-2.1190822,-2.9971642,-2.9698186,-3.1397157,-3.2873006,-3.3160331,-2.8980753,-3.0305538,-2.4928408,-3.1267366,-3.1234279,-3.1269507,-2.1165514,-2.7967126,-2.7786217,-2.95604,-2.9409342,-1.9108493,-3.0124881,-2.9426332,-3.0054116,-2.08905,-2.9965734,-3.0436752,-2.7199395,-2.905976,-2.960454,-2.965191,-2.8117635,-2.9029331,-2.9680738,-2.9856703,-3.2116709,-2.4572046,-2.8813863,-2.4226968,-2.6874945,-3.1719701,-3.1671586,-3.2856688,-3.334301,-2.7673032,-3.1534288,-3.4045641,-3.4997005,-3.5522606,-3.6323621,-3.586254,-3.6273537,-3.5872772,-3.548587,-3.5848901,-3.6276512,-3.5965958,-3.5565023,-3.5975776,-3.419727,-3.1752987,-3.6477997,-3.2063866,-3.5064638,-3.5000505,-3.613865,-2.8850052,-2.888073,-3.19206,-3.5355544,-3.5867276,-3.6117997,-3.5933871,-3.6145291,-3.6745496,-3.690198,-3.7193775,-3.7081614,-3.7415264,-3.6940336,-3.579418,-3.6289995,-3.7547255,-3.7819102,-3.7518654,-3.82084,-3.85039,-3.814435,-3.8840022,-3.9004464,-3.80224,-3.7482674,-3.8006303,-3.3666635,-3.6566036,-3.6570215,-3.5990667,-3.4987242,-3.5223458,-2.6054745,-3.1106038,-3.5095632,-3.6040714,-3.6745486,-3.7900047,-3.684984,-3.6451187,-3.7236214,-3.6742404,-3.6486633,-3.6642897,-3.6453333,-3.6503916,-3.602229,-3.6321745,-3.8211172,-3.7957916,-3.7830794,-3.6489725,-3.8201423,-3.8222213,-3.8406956,-3.933124,-3.880405,-3.851873,-3.669183,-3.731652,-3.718133,-3.6443598,-3.0806756,-3.293449,-3.4238605,-3.6761947,-3.5841384,-3.6589901,-3.7535133,-3.7178526,-3.6427372,-2.8793201,-2.538494,-2.1073518,-3.1380343,-3.2317867,-3.1304927,-2.3919296,-3.0362804,-2.5531874,-3.1595106,-3.1882143,-2.5929923,-2.5697331,-3.146197,-2.7890515,-3.304151,-3.3636255,-2.8055344,-2.8057563,-2.8132124,-2.591546,-2.3045983,-2.5735931,-3.0320323,-3.1668837,-3.135731,-2.838704,-2.8376145,-2.7986703,-2.645504,-3.1117496,-2.925776,-2.8705902,-3.1313236,-2.8746245,-2.9855762,-2.8609893,-3.0218115,-2.913745,-2.557172,-2.0599728,-2.052645,-2.3028698,-2.8396263,-2.9165812,-3.0779612,-2.9750113,-2.9095278,-2.8930364,-2.875957,-2.7569814,-2.9927402,-2.4491425,-3.009006,-2.9335494,-2.6661825,-2.7622871,-2.8439543,-3.0584674,-3.0344458,-2.7694187,-2.4710531,-2.9273858,-2.9032054,-2.9436681,-2.8968713,-3.0012503,-2.8541217,-2.2205307,-2.7692246,-2.8746068,-2.9959688,-2.8596385,-3.1174474,-2.7321997,-2.803384,-2.837243,-2.890225,-2.8394666,-2.6635275,-2.7673304,-2.90692,-2.928297,-2.8849068,-2.7545757,-2.7728074,-2.687529,-2.7579594,-2.7202199,-2.7347052,-2.3537936,-2.481308,-2.8518806,-2.7644043,-2.9416015,-2.5587993,-2.3398843,-2.775291,-2.4316053,-2.112052,-2.8587883,-2.751302,-1.931542,-2.801856,-2.425298,-2.571845,-2.834296,-2.2362123,-2.243432,-2.565241,-2.4834967,-2.8268065,-2.4509363,-2.481081,-2.6834252,-2.6703763,-2.4454439,-2.4674096,-2.4498172,-2.5523057,-2.6096716,-2.643555,-2.421414,-2.5203714
+-0.5154391,-1.8021011,-1.9212819,-1.9547473,-2.1218562,-2.0708404,-2.0507355,-2.2394314,-2.2998796,-2.1980906,-1.4721576,-1.7900105,-2.3924146,-2.3362093,-2.4200337,-2.4794436,-2.4661796,-2.5116653,-2.557386,-2.616484,-2.7028742,-2.3731403,-2.5763745,-2.7290487,-2.7872357,-2.844086,-2.9418063,-2.8785484,-2.5080485,-2.168867,-2.5169625,-2.5210645,-2.5292163,-2.5425265,-2.5738719,-2.644104,-2.7183733,-2.798921,-2.9934108,-2.902231,-2.9648776,-2.7961938,-1.4368765,-2.5861285,-2.570882,-2.722539,-2.996179,-2.6309183,-2.6214862,-2.8531141,-2.6982431,-2.7758098,-2.9125118,-3.0323467,-3.067599,-3.09446,-3.2164958,-3.1398792,-3.0409725,-3.0070329,-2.9784381,-3.0296087,-3.0610776,-2.891962,-2.1650953,-2.2256532,-2.0227418,-2.7009792,-2.7169118,-2.7814918,-2.8963761,-1.7692679,-2.4963098,-2.6723242,-1.5908,-1.9528586,-2.6028967,-2.2705064,-2.6619408,-2.6468222,-2.6613712,-2.679657,-2.6999166,-2.6980586,-2.7614746,-2.8655636,-2.9976783,-2.9953685,-3.0081792,-2.803938,-3.0183244,-3.0403464,-3.055249,-2.2631636,-2.7929492,-2.61801,-2.2885537,-2.6799464,-2.8094351,-2.8928099,-2.5222955,-1.741407,-2.5436864,-2.7278152,-2.773899,-1.3304182,-2.5651445,-2.0086195,-2.3830087,-2.6261754,-2.614882,-2.7271767,-2.0462112,-2.6030574,-2.8014247,-2.8868546,-2.9838896,-2.4848459,-2.6005387,-2.7553988,-2.3443925,-2.7636168,-2.944893,-2.0527198,-2.7384346,-2.9418654,-2.4714017,-2.4031804,-1.6755389,-2.1060157,-2.3161695,-2.5632346,-2.531634,-2.4212375,-2.473654,-2.4351385,-2.5909853,-2.7063975,-2.7682052,-2.10962,-1.8375447,-2.3980687,-2.3637762,-2.4707208,-2.7219577,-2.80861,-2.8130333,-2.9233296,-3.0185013,-3.1406977,-3.1787043,-3.2400703,-3.2858703,-2.8915477,-2.688918,-3.088955,-3.1404805,-3.230276,-3.278043,-3.291897,-3.2766855,-3.2982817,-3.1899295,-3.1248631,-3.142905,-2.6742687,-3.2059045,-3.3347163,-3.375166,-2.0381727,-2.7809753,-2.9909024,-3.0522661,-3.2107458,-3.352655,-3.2168837,-3.2518284,-3.364719,-2.8285317,-2.974126,-3.174813,-3.2066135,-3.1761975,-3.2930064,-3.2777462,-3.3119936,-3.4713988,-3.5200753,-3.530372,-3.4757361,-3.2447798,-3.4363427,-3.530224,-3.5809686,-3.5515385,-3.4895358,-3.4908662,-3.4966912,-3.4676723,-3.3975272,-3.2752326,-3.1912057,-3.0126019,-2.9537382,-3.1829844,-3.3411832,-3.3937187,-3.4887896,-3.4194043,-3.3844404,-3.3893833,-3.3597245,-3.3164282,-3.3387756,-3.3891292,-3.4232352,-3.3390574,-3.21976,-3.4086237,-3.5783927,-3.5925257,-3.6205232,-3.4358506,-3.4748397,-3.4694438,-3.5447502,-3.5304186,-3.5691082,-2.7618423,-3.1027422,-3.3501422,-3.4195027,-3.2750154,-3.2829237,-3.4125829,-3.4978056,-3.4846973,-3.460582,-3.3145561,-3.455583,-3.4843645,-3.4650612,-1.0201236,-1.7733372,-2.8035305,-2.9267855,-2.694132,-2.5602963,-2.2425165,-2.5488997,-2.9519243,-3.1413202,-3.0144777,-2.9940207,-3.04535,-2.9308233,-2.9640565,-2.988862,-3.0664062,-3.028161,-2.6913776,-1.9571092,-2.7112045,-2.7523782,-2.9202964,-2.8275628,-2.9246688,-2.6466548,-2.7774992,-2.7351446,-2.797823,-2.8761733,-2.3568988,-2.9409058,-2.897098,-1.8974936,-1.6061723,-2.3853862,-2.8015385,-2.8213038,-2.873366,-2.5403378,-2.4885082,-2.4713695,-2.351046,-2.3793583,-2.5143487,-2.5199332,-2.5379825,-2.57476,-2.529605,-2.4622893,-2.550846,-1.31436,-2.390007,-2.0522604,-2.152953,-2.474943,-2.773694,-2.6738186,-2.273551,-2.5354083,-2.5240035,-2.526219,-2.5933542,-2.5588179,-2.4425035,-2.4387426,-2.6207318,-2.5536444,-1.745117,-2.1014466,-1.5220178,-2.3447595,-2.5014014,-2.5526762,-2.3532133,-2.3619013,-2.3046753,-2.373359,-2.2371352,-2.512815,-2.464615,-2.4116685,-2.465932,-2.5753074,-2.0187988,-2.4055004,-2.724184,-2.6555748,-2.6470351,-2.6755953,-1.846012,-2.5430307,-2.4357874,-2.5890484,-2.713898,-2.7305784,-2.802099,-2.6950822,-1.1174757,-2.198713,-2.4817796,-2.2606966,-2.039887,-2.0161164,-2.3014379,-2.3635135,-2.5060716,-2.3321462,-2.1612368,-2.2045507,-2.2718153,-2.1581392,-2.3023248,-2.4146924,-2.4700198,-2.562979,-1.939541,-2.1763465,-2.4709651,-2.3133583,-2.6014757,-2.6944509,-2.6182752
+-0.48422626,-1.8698331,-2.0455327,-1.9910432,-1.9669386,-1.7941791,-1.6685728,-1.825641,-1.8212117,-1.6765485,-1.4284712,-1.4334797,-1.9698766,-1.9440556,-2.1094964,-2.097085,-1.9955572,-1.9721061,-1.931324,-1.9232326,-1.9133912,-1.4540502,-1.7417921,-1.8985285,-1.8970262,-1.9348025,-1.3931985,-1.7010514,-1.9182309,-2.0485258,-1.6058873,-1.5347383,-1.760857,-1.7927629,-1.7762259,-1.7985505,-1.79149,-1.831066,-2.1157563,-1.8723892,-1.9905714,-2.1607566,-1.0581208,-1.768215,-1.8545351,-1.9617718,-0.96489376,-1.5884458,-1.7932402,-1.1687185,-1.7075936,-1.8041786,-1.8312155,-1.9643115,-2.1046984,-2.2012162,-2.380011,-2.3584566,-2.3592732,-2.2980418,-1.9305782,-2.1241958,-2.3082266,-2.3693256,-0.9840513,-1.5967282,-2.0684319,-2.0157468,-2.0448885,-2.1761866,-2.2813516,-2.470137,-2.4230494,-1.8077205,-0.8985764,-1.6704873,-1.8128692,-1.3106154,-1.7223917,-1.8957368,-2.0522594,-2.0999517,-2.2846713,-2.2784176,-2.3158784,-2.4127698,-2.4062653,-1.5834588,-1.3222677,-2.0418718,-1.8859661,-1.9516943,-2.1310778,-2.2930112,-2.388403,-1.138621,-1.8859357,-2.05537,-2.1869326,-1.5843009,-1.1386827,-1.4947449,-1.7947732,-1.4641162,-1.5936582,-1.7109468,-1.3762039,-1.6599319,-1.7286227,-1.8103591,-2.0358963,-2.1398914,-1.8521069,-1.9486829,-2.229303,-2.25359,-2.1803808,-2.1726732,-2.2873487,-2.3051345,-2.4197686,-1.9059083,-1.2568288,-1.6302611,-1.9364982,-1.2295269,-1.8514446,-1.9243331,-1.716016,-1.2295748,-1.6532975,-1.5782045,-1.7456373,-1.6516424,-1.6486958,-1.5879573,-1.8253585,-1.9100758,-1.9566609,-2.0048332,-1.8734034,-1.6511314,-1.7652963,-1.674765,-2.0123851,-1.7245682,-1.2834866,-1.9021752,-2.1415706,-2.2154193,-2.2458272,-2.346272,-2.4020338,-2.3527136,-2.2977765,-2.4213731,-2.4393263,-2.4997175,-2.521195,-2.54513,-2.5658572,-2.5968928,-2.65757,-2.0409598,-1.0936748,-1.8684784,-2.182877,-2.4100137,-2.4911664,-1.8681613,-1.4535975,-2.2940516,-2.167131,-2.2766838,-2.334857,-2.4191418,-1.954868,-2.3355026,-2.2939293,-2.3521256,-2.4330485,-2.436201,-2.379537,-2.5355144,-2.7120135,-2.7962425,-2.824584,-2.7855554,-2.7835464,-2.7939992,-2.6272795,-2.5285728,-2.6432533,-2.7243755,-2.7375793,-2.7890792,-2.7674427,-2.799539,-2.8609755,-2.709622,-2.5639195,-2.5171998,-2.5651574,-2.4487526,-2.3166575,-2.4928257,-2.6143034,-2.7040114,-2.6920824,-2.7639132,-2.7484794,-2.7275355,-2.7080553,-2.714911,-2.7370334,-2.7760465,-2.7551675,-2.7235916,-2.6925097,-2.7759647,-2.7909126,-2.9809556,-2.9052699,-2.644114,-2.7327328,-2.7915974,-2.691453,-2.749722,-2.351852,-2.4631813,-2.5686507,-2.6268668,-2.6581914,-2.377392,-2.5261247,-2.6250563,-2.7017643,-2.729031,-2.6731339,-2.563935,-2.5435102,-2.6675045,-0.6065958,-1.4199878,-2.4456732,-2.272224,-2.3286088,-1.7113229,-1.8288349,-2.0551202,-2.3494291,-2.4975872,-2.19504,-2.070228,-2.3060071,-1.8896714,-1.6216371,-2.2945192,-2.5285,-2.3275795,-2.2074544,-2.0075874,-2.337813,-2.3958356,-2.3153455,-2.2798333,-2.3594966,-2.129129,-2.2629957,-2.1759992,-2.178035,-2.2518032,-2.0707462,-2.256349,-1.4739953,-1.4395438,-1.5982685,-2.3889325,-2.8858109,-2.9188082,-2.6593642,-2.270912,-1.7573148,-1.7919008,-2.1583667,-2.303637,-2.3823624,-2.3452287,-2.357047,-2.3172889,-2.226387,-2.2241158,-2.1572614,-1.7794504,-2.5701487,-2.8732944,-2.9823475,-3.1778867,-3.178155,-3.0369306,-2.6912663,-3.3060038,-3.072235,-2.8750305,-2.8225226,-2.6647992,-2.6129813,-2.4383526,-2.6463044,-2.4186454,-1.9717113,-2.29887,-1.9641718,-2.6922216,-2.8586712,-2.7591,-2.4587574,-2.4711504,-2.409974,-2.309618,-2.1185544,-2.4527194,-2.3027723,-2.2141643,-2.1803246,-2.1328814,-1.488269,-2.5681024,-2.3489137,-2.2610393,-2.2463102,-2.205923,-1.5169929,-2.1628392,-2.2076676,-2.2813618,-2.477374,-2.267077,-2.249175,-2.1071706,-2.186924,-2.0164292,-2.4894733,-2.0221715,-2.4252982,-2.2484078,-2.2382836,-2.1376474,-2.734643,-2.5455241,-2.3386602,-2.3118882,-2.3647141,-2.1199517,-2.0413737,-2.0459843,-1.9988195,-1.983795,-1.3599341,-1.9678832,-2.087576,-1.9968292,-1.9952413,-1.5473458,-1.999549
+-0.16413964,-1.1225044,-1.9100852,-2.2375388,-2.4063234,-2.0869656,-1.9420124,-1.8950586,-1.8359212,-1.4271399,-1.4135095,-1.0954884,-2.814194,-3.7195563,-3.3368173,-2.5210211,-1.7915596,-1.6918118,-1.5498551,-1.4047979,-1.4305915,-1.0130218,-1.9737524,-1.770109,-1.4473072,-1.422901,-1.5024017,-1.5291913,-1.5802387,-1.4829484,-1.1711518,-2.0973063,-1.8801265,-2.1010237,-2.051115,-1.913986,-1.6880596,-1.5735526,-1.4757121,-1.5593215,-1.4799147,-1.4982253,-1.3666004,-1.4520255,-1.4489136,-1.3347431,-0.8517644,-1.6170291,-1.5566125,-2.0182765,-2.9104197,-2.5092142,-1.9131913,-1.484367,-1.417791,-1.3812793,-1.3442589,-1.3903683,-1.4250714,-1.240597,-1.295127,-1.3772372,-1.4473699,-1.4406279,-1.1561705,-2.9374957,-3.156569,-2.0081844,-1.588508,-1.4473706,-1.4911168,-1.4075663,-1.5414752,-1.4046253,-1.6560062,-1.7897986,-1.6712567,-1.4856287,-1.158918,-2.446423,-1.7868606,-1.5024785,-1.5188853,-1.55394,-1.4796535,-1.392284,-1.3809041,-0.48717996,-2.0223274,-1.7608732,-1.6268189,-2.1823094,-1.5848402,-1.4906168,-1.4635609,-1.4240133,-1.336954,-1.5291644,-1.4789127,-1.3712419,-1.3493754,-1.2790161,-2.0799727,-2.9307127,-2.6569142,-2.118573,-2.5201325,-3.317977,-3.2816656,-2.1509705,-2.501134,-2.7809005,-2.7932382,-2.4258428,-2.3074994,-2.3757834,-2.2591848,-2.2181373,-1.7686661,-1.7147304,-1.6114347,-1.5547388,-1.5688848,-1.067667,-2.2140806,-2.2011392,-2.258078,-1.811577,-1.5420692,-1.5194849,-1.5124139,-2.4952862,-3.3969817,-3.6259928,-4.0061846,-3.6191986,-2.7542953,-2.1440198,-1.7760049,-1.7470216,-1.5846854,-2.2759595,-2.1013927,-1.871877,-1.8470937,-1.953398,-2.1271517,-1.795503,-1.6265091,-1.3991948,-1.7801185,-1.50246,-1.4764013,-1.4919974,-1.4524993,-1.046239,-1.8016034,-2.370624,-2.3856616,-1.9346648,-1.6628207,-1.537963,-1.5586253,-1.4656628,-1.4914364,-1.6300565,-1.6156985,-1.4833548,-1.1244799,-2.1480498,-2.8380191,-2.7765832,-2.1481404,-1.8374141,-1.6730181,-1.5233594,-1.4574554,-1.4658403,-1.4836756,-1.4403685,-1.4557794,-1.4197493,-1.4548749,-1.3610185,-1.3716093,-1.4035931,-1.3566843,-1.3405143,-1.3631678,-1.3301574,-1.3115531,-1.3284768,-1.2859131,-1.3155755,-1.3366324,-1.3244238,-1.3067845,-1.3080248,-1.315857,-1.3214182,-1.3408173,-1.4127,-1.3946341,-1.3571908,-1.4127063,-1.3460871,-1.3578259,-1.3707248,-1.3545331,-1.356213,-1.3408134,-1.3392254,-1.3240966,-1.3017954,-1.3297826,-1.3544682,-1.3471214,-1.3578175,-1.3757356,-1.3625321,-1.3499695,-1.4462398,-1.060677,-2.2611947,-1.6496934,-1.5172259,-1.4647127,-1.4128608,-1.445608,-1.3939983,-1.4122518,-1.3830717,-1.4469357,-1.6351997,-1.5226871,-1.4968175,-1.391865,-1.426543,-1.4648002,-1.4537572,-1.4346625,-1.2566788,-1.1760069,-1.5942,-2.692556,-1.9724358,-1.5964693,-1.7316028,-2.1988013,-3.3127036,-3.8543882,-3.9003465,-4.051551,-3.47453,-2.6031578,-2.4842432,-2.6353443,-3.609781,-4.152501,-3.8668032,-3.2326026,-3.3081756,-3.6453438,-4.247541,-4.09006,-3.3342474,-2.7559333,-2.6186938,-2.668171,-2.5715249,-2.4363654,-2.1718183,-1.9858245,-2.6040664,-1.8689392,-2.502564,-2.904272,-3.276256,-4.1360607,-4.213727,-4.1563044,-4.1570106,-4.113534,-3.6448107,-3.155278,-3.514214,-4.016629,-3.699586,-3.2970634,-2.9766107,-2.7480035,-2.7660933,-2.7259946,-2.5439124,-2.6521616,-3.8578835,-4.1091366,-4.174637,-4.0464873,-3.695153,-3.1554136,-3.690641,-3.2690947,-3.0981693,-2.7409058,-2.2803235,-2.2791986,-2.228322,-2.0584779,-2.2820907,-1.9015912,-1.842498,-2.3761976,-3.94109,-3.9211504,-3.784529,-3.1970646,-3.0211353,-2.2721684,-2.1440797,-1.8805007,-2.4717698,-2.050788,-1.7421287,-2.6937008,-2.392716,-2.8356156,-3.9662352,-3.6223438,-3.3462067,-2.9977221,-2.9586906,-2.0082147,-2.074359,-2.1085696,-2.041701,-2.5463955,-1.9343867,-1.5137881,-1.4481958,-1.5206842,-1.5716635,-3.007089,-2.7505236,-2.2930999,-2.0210586,-2.075274,-2.2414417,-3.0948837,-2.3146534,-1.7780746,-1.7909832,-1.6871957,-1.5478619,-1.5408435,-1.475463,-1.392271,-1.2778541,-1.4370817,-1.1870067,-1.9411521,-1.7818743,-1.5462025,-1.1524469,-2.8405266
+-0.4255661,-1.2117784,-1.5067052,-1.5145564,-0.8856968,-0.893036,-2.2632153,-1.8494284,-1.5003495,-0.52322483,-1.2223808,-1.2022913,-0.7335662,-0.95191294,-0.95048946,-1.0361313,-1.1225942,-1.124982,-1.1310858,-0.81382865,-0.7174292,-1.4190035,-1.5150958,-1.0179138,-0.83864063,-1.0783004,-1.961377,-1.2446839,-1.952118,-1.6509932,-1.5351931,-1.9714614,-1.4822148,-1.9660863,-2.775832,-1.7944885,-1.6653367,-1.6083745,-1.4085305,-1.0452543,-1.8172743,-1.5610718,-1.9720243,-2.5957813,-2.6552575,-1.5339874,-1.853954,-1.698651,-1.4056672,-1.4149196,-1.4819628,-1.3433977,-1.0967499,-0.98072857,-0.8830927,-0.5574016,-1.187344,-1.0810949,-1.3379054,-1.2575396,-1.2546893,-0.93759334,-1.2264462,-1.1304075,-0.77464765,-1.0835612,-1.3785716,-1.479281,-1.4523443,-0.98714644,-0.98767394,-0.96875554,-1.3170439,-0.97379357,-0.43662423,-1.0319332,-2.0111456,-1.750162,-1.2783455,-1.1771373,-1.0754123,-1.1507255,-0.98293763,-0.97240514,-1.1474509,-0.9037289,-0.41263923,-1.1795226,-1.301071,-1.2579035,-1.0166618,-0.94245,-1.1907165,-1.1338339,-1.1132714,-1.0240628,-0.9151877,-0.95927864,-0.6452279,-1.2714931,-1.0604035,-0.49180028,-1.1190108,-1.1123292,-1.0764991,-1.0838058,-1.0596019,-0.8571963,-0.96818215,-0.9171584,-0.8268728,-0.437964,-0.90445364,-1.0195657,-1.0839077,-2.4378002,-1.5984498,-1.3371044,-1.4306355,-2.7332509,-2.0803323,-1.5244464,-1.3898221,-1.2633449,-1.1124436,-1.017676,-1.0499693,-1.062094,-0.9612984,-0.8698937,-0.76480347,-0.7517945,-0.7583539,-0.16918255,-1.9796466,-1.5968729,-1.1139703,-1.007736,-1.0577766,-1.0967172,-1.0005479,-0.83993447,-2.0750158,-1.5078971,-1.1379198,-1.0773977,-1.6251558,-1.7240494,-1.3330096,-1.451861,-1.3693182,-1.1707565,-1.3444653,-1.266043,-1.1811901,-0.95788807,-0.9193948,-0.86782783,-0.88638645,-0.9398505,-2.0029507,-1.9161419,-1.9327946,-2.2896419,-1.561849,-1.3017242,-1.387551,-1.2150129,-1.0820009,-0.8250021,-1.5533501,-1.2531564,-1.2667881,-0.9835108,-1.3450596,-1.3682407,-1.3814733,-1.2281466,-1.0184013,-1.5649825,-1.3143008,-1.6207824,-1.2728217,-1.8524858,-2.2388406,-1.5593063,-1.1747073,-1.0179414,-1.6477884,-1.5732306,-2.1253533,-1.5001706,-1.2349175,-1.0848988,-1.0289675,-2.1516883,-1.6943208,-1.158502,-1.9299959,-2.202374,-1.7492958,-1.767231,-1.5992142,-1.6383078,-1.442315,-1.2473439,-1.6264248,-1.3661507,-0.9006605,-2.5624378,-2.0324779,-1.5027907,-1.9047223,-1.3899167,-1.1189208,-1.8827473,-2.8671722,-2.4789774,-1.7920063,-1.7155496,-1.5588892,-1.5181522,-1.6583585,-1.156138,-1.6449968,-1.293889,-1.0696119,-1.2958342,-1.5227578,-1.4592474,-1.1326888,-1.3941613,-1.7285835,-2.7557778,-1.8626078,-1.392461,-0.75292003,-1.3888338,-2.3570385,-2.6620936,-2.1324444,-1.7633935,-2.434377,-3.0135517,-2.4883249,-2.5392456,-1.9937063,-1.7234242,-2.110055,-1.8640468,-1.5461987,-1.1208488,-1.1362014,-0.9486512,-0.34639946,-0.9497921,-1.0114319,-0.86741877,-0.79933673,-0.7203066,-0.47298482,-0.5758562,-0.5862104,-0.38808042,-0.6995424,-0.8501165,-0.869749,-0.95785797,-0.94984174,-0.7024365,-1.3049645,-0.81176287,-0.9348049,-0.84641105,-0.69562685,-0.9031547,-0.918407,-0.9346628,-0.94080836,-0.821774,-0.5798649,-0.5614531,-0.6237824,-0.41079432,-0.18427055,-0.8186825,-0.93026966,-0.8028913,-0.5884052,-0.66060275,-0.7425774,-0.8224495,-1.0887762,-0.94292635,-1.0087441,-1.0579726,-1.0953232,-1.5068557,-1.1746701,-1.7124628,-2.1949246,-1.9527366,-1.8379673,-1.555673,-1.0529634,-0.7640541,-0.9011532,-0.6982718,-0.6546932,-0.69172335,-0.69668055,-0.8449746,-1.0105227,-1.0481918,-0.7615143,-0.62558,-0.7886632,-0.8848533,-0.8031457,-0.8861015,-1.0525798,-0.6248749,-0.5980493,-0.6927558,-1.1517855,-0.9281011,-1.105673,-1.5498103,-1.8100288,-2.5731158,-2.8376424,-2.0006347,-1.9927849,-1.9211398,-2.8415968,-2.716689,-2.0508893,-1.1383072,-0.6116058,-0.50361216,-2.2663,-2.2578619,-1.4065976,-0.91933924,-0.53824127,-0.49286655,-0.4205585,-0.401561,-0.4154321,-0.603064,-0.5739384,-0.8144519,-0.6380141,-0.5506522,-1.3832512,-0.7891925,-0.40144983,-0.8069221,-1.2658403,-1.0786217,-1.8027233,-2.1315675,-1.8467258,-2.1281083,-2.6945558
+-1.3842152,-1.7926465,-2.0359635,-2.3992481,-2.2943587,-1.5085764,-1.7062148,-1.7277374,-1.586624,-1.5979669,-1.6181154,-1.927908,-2.1505013,-2.3213406,-2.473174,-2.807637,-2.9996552,-3.231823,-3.2869716,-3.2859461,-1.2696077,-2.2523723,-2.5530655,-3.0036583,-3.1329188,-1.7873799,-2.4697325,-2.4313133,-2.7370925,-1.9288481,-2.016505,-2.0972264,-2.6609375,-1.7873085,-1.7542313,-2.5244112,-2.9079936,-2.971364,-2.9144223,-1.630917,-2.073903,-2.1904309,-2.817295,-1.6473655,-2.380018,-2.6813598,-2.8777184,-2.889356,-3.0165355,-3.2230237,-3.3620586,-3.4917278,-3.498383,-3.6500962,-3.5237134,-2.900701,-3.256804,-3.0655992,-3.2477756,-3.546225,-3.5753093,-2.893125,-3.4319646,-3.6608644,-3.0690432,-3.169802,-2.3513129,-3.3406172,-3.417904,-3.5072682,-2.9847999,-3.4355512,-3.5549524,-3.609468,-3.079339,-1.3878114,-2.7654564,-3.1510768,-3.4821324,-3.5804658,-0.61680746,-2.5873818,-2.967046,-0.98126596,-2.5855029,-3.137691,-1.9695667,-2.8171973,-3.068672,-3.2602663,-3.4377217,-2.9993038,-3.413256,-3.5253963,-3.2949133,-3.4180827,-1.6879126,-2.8276467,-2.9501946,-3.2926047,-3.3982058,-3.3796883,-3.0154197,-2.4099052,-1.6149075,-2.9411294,-3.1710465,-3.1205616,-1.9220953,-3.0327163,-3.3716826,-1.4121449,-2.2606716,-2.831023,-0.62568223,-1.6108061,-2.809525,-3.1422946,-2.9252863,-2.5514493,-2.3210804,-2.991203,-3.3204527,-3.45815,-3.5819302,-3.577414,-3.659507,-3.7662518,-3.8373327,-3.8051178,-3.7545743,-3.6303787,-3.466172,-3.486384,-1.0765072,-2.824641,-1.3425412,-0.2878175,-2.0595884,-2.4015656,-2.3878248,-1.9772319,-2.415862,-3.0854282,-3.3533466,-3.0974069,-2.2424455,-3.0774698,-1.2338477,-2.3473654,-2.83674,-1.5060015,-2.5464723,-3.1704564,-3.3891487,-3.6059074,-3.7169187,-3.6318667,-3.489088,-3.4593494,-2.586184,-3.302964,-1.3200269,-2.6493754,-3.2939749,-3.3890219,-3.3228343,-3.5681725,-3.578523,-1.217164,-2.8769789,-3.3440795,-3.459904,-3.5617523,-3.7249556,-3.6861496,-3.8043242,-3.8271997,-1.9094981,-3.3765259,-3.252971,-2.3535218,-2.2830703,-1.9736665,-2.4803984,-3.1477275,-3.2834551,-3.1425834,-2.7761142,-3.343273,-3.7333584,-3.7733,-3.8180144,-3.8269434,-1.664656,-2.4783497,-3.3349195,-3.4880989,-1.7184836,-2.7849357,-3.1616762,-3.4838324,-2.3763702,-3.3728328,-3.4733424,-3.6786675,-3.7941341,-3.7434592,-2.3682942,-2.6152356,-3.0796213,-3.3896878,-2.0401347,-2.9155865,-3.2612236,-3.4136107,-1.7371761,-2.8693244,-3.3845997,-3.572855,-3.633179,-3.472843,-3.6749,-3.9079397,-3.8970714,-3.6907644,-3.7701597,-3.8494134,-3.8255637,-3.8266606,-3.8368502,-2.746311,-2.8303761,-3.1447124,-3.060234,-3.129342,-1.9455806,-2.3882809,-2.7411988,-2.9639006,-3.1426187,-2.530734,-2.264267,-2.7820997,-3.10899,-3.2231941,-3.304255,-2.2617002,-2.33535,-2.4964058,-2.632504,-2.7295814,-2.418061,-2.5741568,-1.7964002,-1.8407341,-1.8634843,-2.081845,-2.2036142,-2.0392542,-1.640701,-1.4049845,-1.3223253,-1.4882035,-1.5516219,-1.4846028,-1.5694075,-1.4940106,-1.2508167,-1.423447,-1.2847638,-1.1695279,-1.2200515,-0.9660173,-1.2741059,-1.0694324,-1.089127,-1.159608,-0.67152345,-1.0200769,-1.1957871,-1.3213445,-1.2908527,-1.305997,-1.0840999,-1.4898704,-1.0083791,-0.8118949,-1.1880965,-0.95351785,-1.199231,-1.2334169,-1.2674328,-1.4996371,-1.4351982,-2.1218455,-2.3049192,-2.3097675,-2.4581084,-2.6192234,-2.544372,-2.817386,-2.5271692,-2.673204,-2.3937407,-2.088585,-2.279922,-2.3217819,-2.334894,-2.2317185,-2.0143485,-2.0230703,-1.1432989,-1.7383837,-1.5090019,-2.1653597,-2.4027622,-2.3998404,-2.316658,-2.5512037,-2.7391782,-2.731664,-2.6499815,-3.0348043,-3.1003304,-2.9382987,-2.8424158,-3.119927,-3.1874056,-2.0618908,-2.6794338,-2.4760022,-3.003016,-2.8014047,-1.4221216,-1.5541142,-1.5393963,-1.8159102,-2.2444382,-2.9756677,-2.894383,-2.921783,-3.0582147,-2.8981838,-2.994967,-2.9691517,-2.670182,-2.8284042,-2.8234518,-2.7481902,-2.5268862,-2.6941714,-2.5744166,-2.688925,-2.832778,-2.4222984,-2.4424913,-2.8300562,-2.129588,-1.6739002,-2.0042043,-2.3333416,-2.442261,-1.2770091,-2.070311
+-0.7480709,-1.3749156,-1.7550521,-2.0746608,-2.2070084,-2.1527085,-2.0112464,-2.0502026,-2.111782,-2.0041852,-1.4850379,-2.0387216,-2.1455607,-2.2332206,-2.322687,-2.5049453,-2.527729,-2.7227502,-2.6763158,-2.6813412,-1.1812509,-1.2703258,-1.7152025,-2.2244356,-2.4112844,-2.3714614,-2.1504097,-1.187172,-1.8309106,-1.1647208,-1.5609177,-0.84057647,-1.3364965,-1.1979324,-1.2001816,-1.402983,-1.6903085,-1.9874238,-1.4809486,-1.6594769,-1.5942932,-1.1459754,-1.5063145,-1.5160636,-1.7996966,-2.1317809,-2.061914,-1.9927863,-2.1399412,-2.240612,-1.4089421,-1.8888348,-2.1408055,-2.4748495,-2.5497036,-2.3304262,-2.5150027,-2.63,-2.6831148,-2.8580434,-2.883293,-2.342092,-2.6333256,-2.9562252,-0.06597224,-1.3585747,-1.7528253,-2.1845322,0.21112923,-1.3439676,-1.1302259,-1.4073435,-1.6540916,-2.0780733,-0.22583932,-0.53493094,-0.69124043,-0.909959,-1.3854092,-1.9119968,-1.8808995,0.13954133,-0.7834081,-0.7893911,-1.074323,-1.0560684,-1.1340207,-0.72752637,-1.0786299,-1.4237043,-1.8923676,-1.7936252,-1.6821741,-0.9889769,-1.4071221,-1.3724346,-1.0519315,-1.2672127,-0.3636558,-0.98813146,-1.4495423,-1.8268559,-2.0333989,-0.21172172,-0.23106477,-0.86703116,-1.3174658,-1.6523929,0.13159856,-0.6297805,-0.92414033,-1.2334235,-1.3666227,-1.7252952,-1.9896244,-2.2405539,-2.6319842,-2.7549386,-2.8495626,-2.1488652,-1.7747189,-2.1267552,-2.4586842,-2.6726046,-2.8127596,-2.4491203,-2.7574222,-2.88593,-3.0932693,-3.0713682,-3.1804743,-3.0843568,-2.8683476,-3.0842767,-2.73707,-2.706627,-0.91690636,-1.3913099,-1.6844281,-2.0203948,-2.385017,-0.77555925,-1.527716,-2.1659713,-2.7586827,-0.97802156,-0.8179694,-1.0288236,-1.2042146,-1.3222197,-1.3724042,-1.3140928,-0.83639866,-1.391801,-1.6514658,-2.0358562,-2.4836926,-2.8210974,-2.9453783,-3.0841544,-2.282756,-2.7666352,-0.83706844,-2.0709007,-2.551463,-2.9175794,-3.0253885,-3.0946417,-1.888568,-0.8295105,-1.6395348,-2.04897,-2.6073823,-2.9206243,-3.1955986,-3.3168373,-3.3477602,-3.4693463,-2.1193821,-2.7584362,-2.3093896,-2.5018365,-1.357977,-1.8475013,-1.8562135,-2.1981957,-2.638524,-3.0220828,-3.2638578,-3.456884,-3.5648265,-3.6462965,-3.5874143,-3.7288094,-3.3112803,-2.3439858,-2.988024,-3.3109612,-2.7760878,-3.0227506,-3.2074246,-2.8168879,-1.0280213,-1.9766709,-2.304202,-2.7209015,-2.8783803,-3.1037202,-3.1683414,-2.9807038,-3.2051578,-3.4179678,-3.565187,-3.585186,-3.6901152,-3.5353591,-3.3569503,-3.605443,-3.8332474,-3.866544,-3.8034744,-2.8139787,-3.1330166,-3.508501,-3.5472274,-3.5887897,-3.7571425,-3.7793958,-3.8337824,-3.7913465,-3.7952971,-3.066987,-2.4763422,-2.927186,-2.9444938,-2.8440967,-2.1045463,-2.5480804,-2.503224,-2.6908183,-2.797328,-2.228102,-2.3041568,-2.567152,-2.6243536,-2.9080024,-2.9855304,-2.2280283,-2.521246,-2.4624538,-2.565452,-2.5490336,-2.660283,-2.8265536,-2.2632227,-1.9219774,-2.096481,-2.6665108,-3.091854,-2.7550309,-1.94677,-1.9683641,-2.5180035,-2.5623097,-2.5368614,-2.365377,-2.2057297,-2.1299462,-2.1254768,-1.8418622,-2.2777758,-2.338984,-2.3126683,-2.434648,-2.4644625,-2.609782,-2.4899714,-1.7629012,-1.9221683,-2.027512,-2.2965615,-2.5500858,-2.7664542,-2.43558,-1.9213456,-1.946483,-1.7744417,-2.034704,-1.6962545,-1.8814735,-2.0323234,-1.8131831,-2.0616264,-2.050611,-1.441456,-2.1463253,-1.9616276,-1.9999951,-2.129421,-2.4613464,-2.503388,-2.4344697,-2.5221343,-2.5368474,-2.7287078,-2.6164582,-2.8111126,-2.8816178,-3.2270799,-3.4256701,-2.7933168,-2.7733364,-1.9389361,-2.5706785,-2.2114515,-2.311235,-2.4372087,-2.2732387,-2.5049734,-2.5698867,-2.580608,-2.6505718,-2.7768734,-3.0565968,-3.0822725,-2.9547558,-3.1076791,-3.1383722,-3.0747068,-2.9589348,-2.4769523,-2.760037,-2.7350197,-2.5638404,-1.8868572,-2.18644,-2.2282948,-2.1761594,-2.4484801,-2.4830494,-1.9974188,-2.3999586,-2.5865552,-2.6843438,-2.8437912,-2.9153576,-2.76965,-2.9138536,-2.9819143,-3.075491,-2.5829978,-2.806104,-2.8694768,-1.2877604,-2.146893,-2.2956934,-2.3141594,-2.69973,-2.7953727,-1.3022869,-1.8828982,-1.807372,-2.001429,-1.6014234,-1.6639718
+-0.41888666,-0.97011095,-0.9482565,-1.2874898,-1.046679,-1.2053695,-1.5422201,-1.5582331,-1.2578106,-1.6454223,-1.7213079,-1.7261777,-1.6286001,-1.6819597,-1.5899386,-1.5994147,-1.6209179,-1.7736739,-1.9265963,-1.9765285,-1.7741406,-2.2752159,-2.04666,-1.9251131,-1.9252869,-1.850887,-1.7237765,-1.9883417,-1.8802812,-1.9065737,-1.8525596,-1.8099128,-1.8365544,-1.6815192,-1.7427777,-1.7344565,-1.5541649,-1.6753812,-1.6668938,-1.8297637,-1.758572,-1.7900892,-1.6975751,-1.6213602,-1.6929954,-1.5325102,-1.6202537,-1.700105,-1.552049,-1.6303027,-1.6933388,-1.7840499,-1.6965748,-1.7947649,-1.9260749,-1.7815679,-2.0877864,-2.0445428,-2.209251,-2.343928,-2.343762,-2.4485064,-1.6409789,-2.227294,-2.1359878,-2.1850717,-2.2279603,-2.2675307,-2.2503355,-2.351575,-2.474597,-2.625041,-2.4643595,-2.4677472,-1.3743658,-2.1130304,-2.1883397,-2.0812068,-1.8984481,-2.2728071,-2.4281807,-2.4571605,-1.4622389,-1.976817,-2.2633228,-2.2780328,-2.3356194,-2.2531624,-2.437914,-2.3132906,-2.3906946,-2.611548,-2.5638037,-1.5649911,-1.9333693,-1.9389194,-2.0374246,-2.1338327,-2.0494552,-2.0701678,-2.1625361,-2.200317,-2.3140395,-2.4719284,-2.2347035,-2.459692,-2.4837265,-2.5646849,-1.679355,-2.3111799,-2.2165606,-2.4828672,-2.4605904,-2.4334607,-2.5005097,-2.4501941,-2.21726,-2.5728154,-1.6546805,-2.1628525,-2.3884065,-2.470178,-2.3425586,-2.5542774,-2.5408804,-2.442333,-2.3985546,-2.4600203,-2.5802028,-2.6230526,-2.6827407,-1.8724039,-2.2325912,-2.3368707,-1.575806,-1.9231833,-1.9747502,-2.03298,-2.0969038,-2.0174155,-2.1030078,-1.9633993,-2.0568373,-2.1679435,-2.1765664,-2.3213646,-2.4320235,-2.4136486,-2.0130796,-2.3720784,-2.4143763,-2.5355947,-2.439946,-2.5220866,-2.4890647,-2.7428818,-2.9330747,-2.936224,-3.012238,-3.0476615,-2.977581,-2.344486,-2.4089026,-2.6992362,-2.7227964,-2.9413471,-3.100852,-3.1247559,-2.7600274,-2.6165986,-2.8524837,-2.978468,-3.1325512,-3.273625,-3.4071724,-3.464793,-3.4760573,-3.4494495,-2.3791711,-2.5517855,-2.4840136,-2.5751362,-2.360915,-2.5113533,-2.6633573,-2.7312338,-2.9057908,-3.014758,-3.1144786,-3.3159266,-3.3943186,-3.3785994,-3.4205618,-3.4487357,-3.3639088,-3.2598271,-3.270826,-3.3913386,-3.3602986,-3.3329394,-3.2833822,-2.031062,-2.0478702,-2.3009403,-2.3773377,-2.4293673,-2.5542064,-2.3612351,-2.393441,-2.608221,-2.6436234,-2.7201686,-2.84023,-2.6963463,-2.9679503,-3.078851,-3.1059482,-3.201445,-3.2414463,-3.32015,-3.2914438,-3.0602942,-3.1404786,-3.1542587,-3.2271469,-3.0554762,-3.0530128,-3.2088442,-3.3592896,-3.3968115,-3.3201513,-3.34862,-2.0967731,-2.2691765,-2.0672388,-2.4064631,-2.619527,-2.5408645,-2.7400327,-2.5383236,-2.5973215,-2.3036885,-2.353557,-2.458138,-2.5311873,-2.6509943,-2.6282575,-2.3587267,-2.453433,-2.1983843,-2.101247,-1.5558125,-1.4693651,-1.4786263,-1.8004812,-1.7848049,-1.720666,-1.2449985,-0.91460013,-1.1380724,-1.9197975,-0.900436,-0.4213525,-0.7348016,-1.112992,-1.374855,-1.862141,-1.9555172,-2.471424,-2.433358,-2.4320292,-1.7491521,-1.9986223,-1.7369546,-2.0527096,-2.1202793,-2.392045,-2.477199,-1.9699317,-0.94975525,-0.8087564,-0.7584563,-0.72614306,-1.0581383,-2.060964,-2.0380979,-2.2748456,-2.541509,-1.8986775,-1.8102268,-2.006255,-2.1531086,-2.3378367,-2.2729673,-2.1685505,-2.3314724,-2.320302,-2.4187937,-2.277131,-2.4066298,-2.3553936,-2.1298294,-1.7375684,-2.1866107,-1.7275417,-2.2030044,-2.6431563,-1.7665147,-1.5182414,-1.3185794,-2.0887187,-2.5188832,-2.386894,-2.7767363,-1.6097214,-1.4141308,-2.3798776,-2.5390017,-2.0965624,-2.2422218,-2.2134016,-1.7553884,-2.2489276,-2.6111891,-2.4847374,-2.4390316,-2.129889,-2.1850238,-2.3926263,-2.0692537,-2.4606714,-1.5713679,-2.2986555,-2.048973,-1.9831918,-1.7626116,-1.6041108,-1.3786194,-1.7308819,-2.166557,-2.1482728,-1.9535247,-1.9861718,-2.0866294,-1.3154715,-1.1448895,-1.4234059,-1.540105,-1.2716097,-1.1525837,-2.0752215,-2.3117933,-2.028156,-2.0897088,-2.177577,-1.55875,-1.3840796,-2.0201209,-1.9273375,-2.0749443,-2.1396246,-2.1819248,-2.0059562,-1.9472693,-2.1400316
+-0.77262884,-1.252648,-1.3444606,-1.651592,-1.4550915,-1.3787926,-1.5723091,-1.8642012,-1.5507814,-1.9548835,-2.041254,-2.2352278,-1.7439777,-1.887573,-1.9870032,-1.9770316,-1.9932884,-2.078357,-2.109507,-2.2210412,-2.1739373,-2.5834103,-2.556512,-2.475346,-2.4180963,-2.4363694,-1.8177631,-2.2817495,-2.4461284,-2.4920921,-2.6614873,-2.7245746,-2.7436702,-2.5371375,-2.4661913,-2.425137,-2.2666092,-2.4625056,-2.3881073,-2.2932143,-2.5304503,-1.8003854,-2.345714,-2.4177237,-2.0520597,-2.251246,-2.1224432,-2.3460186,-2.2126322,-1.6369051,-2.3289545,-2.4400315,-2.462999,-2.5051403,-2.6137629,-2.0877285,-2.4319034,-2.6139607,-2.71182,-2.8738136,-2.8140922,-3.0350533,-2.7315888,-3.1813173,-2.8380032,-2.803688,-3.07414,-3.0264068,-3.0476723,-3.044866,-3.1591282,-3.213603,-3.2191634,-3.1840522,-1.3723797,-2.7219114,-3.09031,-2.9725902,-2.7807899,-2.9994602,-3.1485283,-2.897382,-3.0830753,-2.8376226,-1.0249952,-2.570255,-2.822731,-2.49234,-2.9909823,-2.969135,-2.9160514,-3.0245402,-3.0847025,-2.9058523,-1.3900713,-2.2350287,-2.2737756,-2.0070777,-2.1758955,-2.4259992,-2.672407,-2.8344162,-2.1564677,-2.6548746,-2.5867832,-2.9871993,-3.1091027,-2.9802985,-3.0531576,-3.0425138,-3.1395583,-3.2510471,-3.2778826,-3.1628706,-3.2501872,-3.1052694,-3.2554553,-2.931717,-1.6577595,-2.6652167,-2.8638642,-2.954403,-2.983028,-3.006966,-3.0189533,-3.058482,-2.2136672,-2.948019,-3.179596,-3.0951843,-3.0043306,-2.936254,-2.950695,-2.9980311,-3.0302196,-2.7149806,-2.0690968,-2.7196674,-2.1786215,-2.4838102,-2.841758,-2.5449238,-1.9501007,-2.6166513,-2.7434592,-2.881117,-2.96362,-3.0560086,-3.0940175,-3.11306,-3.1694784,-3.2623281,-3.0179663,-3.3437948,-3.161898,-3.2350397,-3.3320277,-3.39493,-3.4701302,-3.4772437,-3.4219217,-2.5732646,-2.0882776,-3.083482,-3.060078,-3.2102017,-3.310307,-3.3807929,-3.0341725,-1.9789342,-3.002225,-3.0930352,-3.140506,-3.1786547,-3.2432363,-3.3925436,-3.4677658,-3.5115283,-3.351745,-3.2980795,-3.0607924,-3.2265673,-2.5087056,-2.8735085,-3.199403,-3.2968535,-3.3124838,-3.281047,-3.380269,-3.465713,-3.5308628,-3.3624444,-3.466233,-3.5143304,-3.4788692,-3.045641,-3.405474,-3.2862353,-3.3632898,-3.309398,-3.2389846,-3.4683652,-2.2061899,-2.8528426,-2.9555192,-2.9875798,-3.1369061,-2.852622,-3.072667,-3.1518035,-3.184737,-3.2973545,-3.3351412,-3.3840144,-3.3859174,-3.4354155,-3.4985194,-3.5519166,-3.47769,-3.5375164,-3.6229744,-3.5823238,-3.444289,-3.4761562,-3.5478508,-3.2883484,-3.2081418,-3.5216727,-3.593589,-3.5887015,-3.6044574,-3.5458887,-2.660977,-2.7302678,-2.6062331,-2.8502188,-2.9631076,-2.9409175,-3.1487963,-2.9180293,-2.7541866,-2.4856641,-2.436214,-2.555956,-2.672246,-2.5781848,-2.6296105,-2.6438704,-2.8442364,-1.902885,-2.4410596,-1.9949979,-1.6753656,-1.586742,-2.1091642,-1.5429931,-2.4915035,-2.002661,-1.320963,-1.4474384,-2.455397,-0.9889712,-1.2202399,-1.1429569,-1.678613,-1.9080175,-2.3872993,-2.3715606,-2.6963372,-2.8366973,-1.8954089,-2.0637186,-1.9324073,-1.6222588,-1.6327688,-2.2863226,-2.5076194,-2.5367641,-2.5412033,-1.5059088,-1.0637487,-0.8541035,-0.8331157,-1.3686903,-2.3680155,-2.5505972,-2.8115222,-1.6164654,-2.4349504,-2.2930512,-2.498525,-2.1982741,-2.6253817,-2.5032208,-2.2921777,-2.6047688,-2.6968446,-2.7137256,-2.5850825,-2.7756271,-2.7091932,-2.610492,-2.1546812,-2.6496205,-2.3394327,-2.4369981,-2.6502767,-2.3966486,-1.7820339,-1.4728779,-2.2391558,-2.6584568,-1.5652035,-2.4543514,-1.7086333,-1.6317555,-2.444679,-2.7883644,-2.2151127,-2.4625897,-2.4643183,-1.9765064,-2.2173562,-2.59063,-2.6184022,-2.6334343,-2.6790533,-2.6315548,-2.8783765,-2.7820902,-2.6147723,-2.0684042,-2.3722308,-2.6214156,-2.1489987,-2.0329936,-1.9552081,-1.7453152,-1.9204174,-2.3030448,-2.1760383,-2.0494704,-2.151668,-2.1910405,-1.8977407,-1.5117038,-2.0009995,-2.2720146,-1.6000468,-1.4120779,-1.9755865,-2.1710987,-2.1806498,-2.3034315,-2.4710283,-1.9521459,-2.030997,-2.0113697,-2.2002268,-2.4102335,-2.5679176,-2.445527,-2.4049363,-2.4387274,-2.6013803
+-1.2478541,-2.0859723,-2.078535,-2.002994,-1.9818436,-2.0621555,-2.2955313,-2.4140327,-2.38312,-2.4159467,-2.3524861,-2.444322,-2.313373,-2.215642,-2.3045468,-2.250928,-2.2726083,-2.333466,-2.3424501,-2.3793206,-2.34712,-2.338308,-2.6456616,-2.6181526,-2.6132681,-2.6575668,-2.6311822,-2.7225306,-2.8455572,-2.6919127,-2.6372437,-2.688319,-2.8124409,-2.3645787,-2.7865844,-2.9009085,-2.8537781,-2.841983,-2.7255569,-2.705341,-2.345562,-2.635335,-2.9005497,-2.9527066,-2.7716928,-2.7820582,-2.3804402,-2.6794899,-2.932146,-2.0691843,-2.803547,-3.032256,-3.1133838,-3.112012,-2.9955406,-2.7478502,-3.0734084,-2.6400864,-3.0208995,-3.0563827,-3.0582604,-2.5174491,-2.099001,-2.69432,-2.26607,-2.1559443,-2.8108048,-2.9810765,-3.0639148,-3.064425,-3.0669436,-3.0670514,-2.985032,-2.8076086,-2.491219,-2.4194822,-2.871824,-2.9838014,-3.0415232,-3.0458927,-3.0684562,-2.9708886,-2.971653,-2.9442267,-1.2800759,-2.8497431,-2.8271513,-2.0469558,-2.9137259,-2.9437242,-3.020378,-2.9773529,-2.987186,-2.8568168,-2.8645797,-1.8519701,-2.2587256,-2.0773842,-2.6212282,-2.5309453,-2.8702834,-2.837565,-2.8356977,-2.9389853,-2.1128914,-2.8660684,-2.8768659,-2.9755676,-2.9653966,-2.94058,-2.9578009,-2.9686177,-2.9530752,-2.9131932,-2.8794796,-2.8796537,-2.936244,-2.7403097,-2.5917969,-2.020675,-2.7372532,-2.7603202,-2.8482327,-2.8186667,-2.8534245,-2.8810241,-2.0805657,-2.7400913,-2.6891677,-2.961842,-2.964517,-2.9342754,-3.0073438,-3.005128,-2.9841917,-2.9312177,-2.9835777,-2.926567,-2.9428763,-2.0819752,-2.5017033,-2.409072,-2.1557052,-3.0067985,-3.080757,-3.0167217,-2.984783,-3.0191803,-2.5427134,-2.9070382,-3.0313115,-3.0910854,-3.1407945,-3.1330404,-3.128045,-3.1028724,-3.0868483,-3.0672488,-3.081514,-3.1038547,-3.0710893,-3.0549517,-2.8581777,-2.7758405,-3.0756595,-2.642342,-3.020354,-3.157988,-3.149544,-2.8046186,-1.9604589,-3.1253073,-3.1384947,-3.121872,-3.1758738,-3.2269,-3.2306533,-3.242071,-3.2343473,-3.1789262,-3.114904,-3.0985923,-3.0671186,-3.0557704,-3.120617,-3.1965837,-3.2284334,-3.2149093,-3.239076,-3.2388935,-3.1925611,-3.040041,-3.1025538,-3.1465368,-3.104622,-3.1762414,-3.1585908,-3.1858227,-3.1923988,-3.1858447,-3.1679788,-3.187385,-1.9603709,-2.6150699,-2.9328637,-3.0423427,-3.1103392,-3.1199374,-3.2038577,-3.1787605,-3.2076516,-3.2182097,-3.1961825,-3.2224112,-3.2269108,-3.2452915,-3.252056,-3.2380013,-3.1301947,-3.1945467,-3.2424483,-3.211944,-3.161732,-3.1176429,-3.1071558,-3.0106854,-3.0636923,-3.1519022,-3.199132,-3.1772416,-3.1930423,-3.1792383,-2.5874755,-2.6516504,-2.7303097,-3.0278141,-3.2657752,-3.184872,-3.2616682,-3.0699708,-3.0300102,-3.0632372,-1.8137052,-1.7959725,-3.022366,-2.8878746,-3.0089974,-2.599163,-2.9478226,-2.4826784,-2.9498334,-2.8646827,-1.8963654,-1.7819797,-2.4099536,-2.0533304,-3.0069842,-2.832367,-2.2124803,-2.1070027,-2.7429078,-1.7625812,-2.0884311,-1.9084934,-2.565901,-2.8717413,-2.856916,-2.1992955,-3.1220057,-2.9730902,-2.553247,-3.1495173,-2.8951113,-2.7380092,-2.6630106,-2.753841,-3.0249422,-2.6467094,-3.1143074,-2.696072,-2.2400062,-1.4619933,-1.205526,-1.8720126,-2.7126226,-2.7104177,-3.061988,-3.123089,-2.9476824,-2.9365292,-2.9497323,-2.658449,-3.0387142,-2.893527,-2.7795272,-3.1206813,-3.0149863,-2.9343827,-3.0418723,-3.0204902,-3.0234652,-3.0261784,-2.8494158,-2.7333326,-2.9407747,-2.972316,-3.15549,-3.1612346,-2.9649181,-1.8574283,-2.855772,-2.91656,-2.4870696,-2.9959435,-2.6329122,-2.4818087,-2.796217,-2.9755924,-3.0766852,-3.0802398,-2.4946647,-2.601647,-2.8754342,-2.9979653,-2.9563565,-3.0816383,-2.9905987,-2.942307,-2.9870098,-2.9675512,-2.7203987,-2.7325544,-2.9503846,-2.697948,-2.457438,-3.2775655,-2.8475215,-2.5031252,-2.725947,-2.6806543,-2.540795,-3.152512,-3.1202114,-2.5284142,-2.842883,-2.30989,-2.524208,-2.9101853,-2.2091131,-1.9106517,-2.754812,-2.5344715,-2.805419,-2.8742952,-2.7399673,-3.0846558,-3.0309095,-2.7689662,-2.9091609,-2.8469758,-2.8960814,-2.9259493,-3.0000813,-2.968655,-2.8403397
+-1.4987354,-3.2027242,-3.6232069,-3.7103038,-3.791213,-3.2972887,-3.7215652,-4.2548,-4.1797795,-3.6777782,-3.6301203,-4.4886575,-4.4132056,-3.722991,-4.0186205,-3.3640919,-3.3570113,-3.0126758,-2.5985045,-2.19984,-2.0822392,-2.0002694,-2.260529,-2.0251796,-1.965712,-2.0263917,-2.0480158,-2.193924,-2.2374759,-1.6652142,-2.0484593,-1.855596,-2.2357829,-2.3395247,-2.572491,-2.5173345,-2.378038,-2.2179918,-2.086427,-2.0973346,-2.2677624,-1.8851612,-1.9706677,-2.5513144,-2.3356898,-2.3081198,-2.091114,-2.1922882,-2.3579407,-2.1598744,-2.2001476,-2.4192338,-2.4024994,-2.4517665,-2.389903,-2.4026697,-2.3648195,-2.2196846,-2.509586,-2.4721603,-2.4764824,-2.0550852,-1.6365821,-2.296952,-2.2004454,-1.612631,-2.2591987,-2.4857452,-2.4418876,-2.4298878,-2.5173833,-2.5527358,-2.2145214,-2.4571187,-2.4117625,-2.0915515,-1.56199,-2.3822227,-2.3020363,-2.338688,-2.4959521,-2.5522962,-2.495986,-2.4468164,-2.3860612,-2.3212047,-2.0969343,-2.07924,-2.0995512,-2.3952823,-2.467375,-2.5996528,-2.5544286,-2.4693224,-2.4362617,-0.971688,-2.1777694,-2.1845174,-2.3540356,-2.4051473,-1.7335392,-2.0933578,-2.2498991,-2.401606,-2.2816858,-2.4216428,-2.3107338,-2.3949382,-2.280324,-2.3248436,-2.5091915,-2.5158453,-2.0400698,-2.1759331,-2.1565104,-2.318818,-2.3349524,-2.351914,-1.6122814,-2.1331449,-1.7110087,-2.2369752,-2.3702435,-1.4642566,-2.254007,-2.3023643,-2.3128946,-2.3902543,-2.430509,-2.1734016,-2.167959,-2.1861205,-2.2295501,-2.321653,-2.366581,-2.3270159,-2.4469771,-2.4215486,-2.4372783,-1.8482293,-2.146213,-1.9718796,-2.1339529,-2.4163325,-2.519599,-2.1461778,-2.3680394,-2.1409268,-2.2023911,-2.214231,-2.441953,-2.5735817,-2.6390054,-2.3340955,-2.6110275,-2.4147851,-2.4996085,-2.5476294,-2.6521635,-2.6842637,-2.666201,-2.6620154,-2.5772057,-1.838436,-2.3914566,-2.4109054,-2.5977244,-2.769767,-2.7836661,-2.5502157,-1.987182,-2.2297926,-2.4927506,-2.5108235,-2.6509552,-2.7457402,-2.829891,-2.893474,-2.7636733,-2.843548,-2.9467306,-2.7977448,-2.74808,-2.6712978,-2.8283846,-2.9486454,-2.9057274,-2.9273877,-2.9671586,-3.0167928,-2.935577,-2.9326332,-3.0465791,-3.0509286,-3.0257063,-3.133378,-3.0889778,-2.9634194,-2.8235312,-2.8559253,-2.726132,-2.7354326,-2.1666732,-2.504209,-2.4915123,-2.729921,-2.8739905,-2.9383266,-2.9192023,-2.928106,-3.0370126,-3.0074377,-2.9818044,-3.0107083,-2.9226727,-2.924675,-2.8860445,-2.959044,-3.0622506,-3.0990949,-3.0848355,-3.000751,-3.1306252,-2.9530792,-3.0069,-2.9829364,-3.0068378,-3.1192303,-2.9585037,-3.066529,-3.139464,-3.0484235,-2.8173966,-2.3561463,-2.4738584,-2.719991,-2.8721805,-2.816269,-2.9766612,-2.748682,-2.6719694,-2.5983007,-1.3873898,-1.2403809,-3.2321534,-4.0608377,-4.2127504,-3.7895343,-4.2990637,-4.2432203,-4.5146437,-4.6315,-4.2736645,-4.2023106,-4.0815954,-3.6961699,-4.557107,-4.621174,-4.31591,-3.9118252,-3.4919834,-4.279243,-4.419354,-4.499958,-4.5631433,-4.5286646,-4.2673035,-3.7481642,-3.5604231,-3.2922773,-3.4351597,-4.470358,-4.274816,-4.4408865,-4.311844,-4.0571547,-4.487678,-4.5182734,-4.719714,-4.458111,-4.4324036,-4.0733433,-3.9063568,-3.5417,-3.4303696,-3.378721,-4.3049207,-3.9598699,-3.638296,-3.427376,-3.160788,-3.1863468,-3.274981,-2.7996144,-3.791702,-4.3021684,-4.154449,-3.6438437,-4.5515776,-4.602131,-4.5740337,-4.5361586,-4.381877,-4.4722204,-4.4597993,-4.4240274,-4.3099594,-4.0884194,-4.292382,-3.8167639,-3.4901505,-4.153646,-4.032058,-4.4824357,-4.489372,-4.3235693,-4.3863087,-4.356906,-4.5466256,-4.203342,-3.9953299,-4.369215,-4.277128,-3.9982114,-4.32958,-3.798587,-3.2562907,-4.052679,-3.9449608,-3.6588845,-4.0784297,-4.168992,-3.620615,-4.0637255,-4.48682,-4.613046,-4.394125,-4.1061916,-4.065914,-3.6326003,-3.8522625,-4.6269283,-4.5455503,-4.207906,-4.544511,-4.2930064,-4.2436757,-4.442698,-4.2817717,-4.0738153,-3.9467924,-4.1206174,-4.582148,-4.333722,-3.916825,-4.044475,-4.3069625,-3.6669278,-3.4520597,-4.000058,-4.4502077,-4.0367694,-4.440983,-4.192564,-4.050736
+-0.48014387,-1.5279661,-2.0097592,-1.9436377,-2.0967119,-2.1538024,-2.058316,-2.2384434,-2.1270266,-2.0000477,-1.7692968,-2.4537592,-2.6588707,-2.8075821,-2.8097754,-2.5680697,-2.5025826,-2.4752402,-2.2665725,-2.088749,-2.1264012,-1.8592545,-2.0452275,-1.9863504,-2.0550618,-2.0630188,-2.1124616,-1.9973649,-2.0610905,-1.3487462,-2.0060184,-2.1492112,-1.9688317,-1.9349544,-1.7099183,-1.8378843,-1.7650917,-1.806263,-2.0073185,-2.125217,-2.1171756,-2.0741134,-1.6622784,-1.8332118,-1.8188878,-1.9334027,-1.8941041,-1.7893105,-1.9069515,-1.6712226,-2.0363197,-1.8788035,-1.8989513,-2.0111952,-2.1688075,-2.2633972,-2.374722,-2.4452143,-2.3043885,-2.299735,-2.3649762,-1.1841465,-2.0596042,-2.2092218,-2.1665516,-1.6130095,-1.9854616,-2.0075047,-1.9427183,-2.032242,-2.196785,-2.4157863,-2.366436,-2.03775,-1.1295632,-1.9438399,-1.2140073,-1.6446157,-1.8977388,-1.9445635,-2.002355,-2.0824904,-2.155933,-2.1391482,-2.1874285,-2.2664387,-1.0239989,-1.8622284,-1.9222529,-1.9562709,-1.9791645,-2.059534,-2.2365346,-1.9351444,-2.184093,-1.930003,-1.6781878,-1.9362204,-2.0821447,-1.705304,-1.8472738,-1.5924435,-1.3218201,-1.6390785,-1.694695,-1.7858406,-1.8410848,-2.0733309,-2.1233964,-1.8836488,-2.107119,-1.7743797,-1.1181719,-2.0199928,-2.130674,-2.1819444,-2.2498631,-2.1797528,-1.8673581,-1.854165,-1.8391904,-2.0706503,-1.8109422,-0.99215955,-2.0497646,-2.0802598,-2.1485116,-1.9381573,-2.0247624,-1.0467743,-2.029739,-2.068978,-1.8640763,-2.006004,-1.8813753,-2.1208186,-2.2433133,-2.316698,-1.6901771,-1.6730425,-1.7131482,-1.6550256,-1.5387714,-1.7243028,-1.9595158,-2.1672122,-1.4165926,-2.1039991,-2.198953,-2.258011,-2.3225195,-2.4501157,-2.4734411,-1.9908112,-1.6178327,-1.5051917,-2.0765,-2.1941764,-2.2943873,-2.389462,-2.4663048,-2.5000696,-2.5389798,-2.2533493,-2.237395,-2.48909,-2.5471997,-2.6738946,-2.7543464,-2.4202662,-2.092975,-2.039664,-2.2487125,-2.5321012,-2.6384385,-2.6355963,-2.6428957,-2.7865698,-2.7462206,-2.3907056,-2.3825364,-2.4579172,-2.4605687,-2.6027274,-2.7927606,-2.785947,-2.8387775,-2.8550467,-2.8671756,-2.8470848,-2.7009976,-2.6762502,-2.86776,-2.913007,-2.907159,-2.9668221,-2.97012,-2.950759,-2.9996526,-2.905615,-2.8327422,-2.6747594,-2.6791196,-2.4858422,-2.4170117,-2.732019,-2.8794417,-2.9219642,-2.9138615,-2.9678235,-2.9013925,-2.9056659,-2.8728137,-2.8820496,-2.9490216,-2.954183,-2.9247336,-2.8040028,-2.845513,-2.9666538,-3.1027098,-3.0958357,-3.023856,-2.8648105,-2.910249,-2.9782841,-2.9565887,-2.9832711,-2.928645,-2.8425243,-2.8485794,-2.9078178,-2.720436,-2.48838,-2.7242982,-2.922507,-3.00375,-3.0568721,-2.8210564,-2.684049,-2.783517,-3.077115,-0.767176,-1.7040967,-2.6576605,-2.4281666,-2.3453097,-2.3112903,-2.1390324,-2.2922916,-2.4151564,-2.5397651,-2.0938644,-2.006954,-2.212398,-2.4745169,-2.547642,-2.28307,-2.351101,-2.152012,-2.530728,-2.0042949,-2.2574172,-2.2283502,-2.3614492,-2.4304695,-2.412858,-2.360899,-2.3409963,-2.3557568,-2.2825994,-2.2777328,-1.7192081,-2.2459009,-1.9800867,-1.8449184,-1.5117012,-2.3402572,-3.0820508,-2.846458,-2.6916986,-1.8778082,-1.4734727,-1.4894477,-2.0495496,-2.192449,-2.5451622,-2.5938044,-2.5193796,-2.4812467,-2.490322,-2.4735603,-2.15734,-2.1403441,-1.997579,-2.8682907,-3.110891,-3.9726758,-3.8989742,-3.6560345,-3.435997,-3.7305465,-3.1312895,-2.8901997,-2.7378845,-2.7291856,-2.6795897,-2.2990065,-2.3601217,-2.236542,-2.1150062,-2.2243655,-2.0759056,-2.768595,-2.6934743,-2.5628464,-2.541778,-2.535983,-2.6089697,-2.587935,-2.696621,-2.9982285,-2.7070732,-2.4669015,-2.4440625,-2.5125964,-2.2452345,-2.7686644,-2.6832433,-2.7173238,-2.261918,-2.261851,-2.0273218,-2.4248304,-2.3172731,-2.2695422,-2.341178,-2.0580852,-2.323497,-2.323032,-1.6431631,-2.786273,-2.7450848,-2.4583292,-2.4726448,-2.6580758,-2.439307,-2.4171546,-2.671349,-2.193911,-2.2066321,-2.0610886,-2.4790435,-2.363333,-2.2822127,-2.287691,-2.2837653,-2.2318933,-1.9705759,-2.3664155,-2.8187056,-2.4754949,-2.4116516,-2.225836,-2.1802154
+-0.16675991,-2.0538096,-2.421598,-2.3293169,-2.189413,-1.9313022,-1.9077724,-2.1075158,-2.0849104,-2.0162148,-2.101048,-1.3529779,-2.0429568,-2.3490467,-2.2449462,-2.2480464,-2.042882,-2.118175,-2.074975,-2.2197297,-2.3187766,-1.2797929,-2.0322769,-2.1676335,-2.2565908,-2.3985834,-1.5775703,-1.6369686,-2.1422555,-2.3826103,-2.1542897,-1.9276975,-2.270362,-2.1995652,-2.1127431,-2.1053634,-2.165965,-2.2822409,-2.5063267,-2.5942621,-2.6361566,-2.6976697,-2.2411904,-2.3182192,-2.3598084,-2.4405706,-2.7985938,-2.0868921,-2.529035,-1.5074192,-2.3038435,-2.2412786,-2.273728,-2.4014244,-2.559684,-2.6873302,-2.7455993,-2.8645945,-2.8679247,-2.8717146,-2.8397322,-2.6064827,-2.778285,-2.8566039,-1.5613095,-1.767221,-2.3994048,-2.4177084,-2.5160797,-2.6123667,-2.7353964,-2.9178185,-1.6886477,-2.5093904,-2.3628833,-1.5354472,-1.6932682,-2.4618363,-2.3219173,-2.2250328,-2.5293067,-2.6309946,-2.7287624,-2.791068,-2.8351402,-2.9060795,-1.8385972,-2.5988743,-2.636705,-2.738441,-1.1358246,-2.232712,-2.509076,-2.604102,-2.7668786,-2.5092225,-1.5857755,-2.4125266,-2.4875023,-1.4199892,-1.3716122,-2.0330076,-1.7962259,-1.9408123,-2.0605369,-2.2721796,-2.3838372,-2.5037718,-2.5753145,-2.5804212,-2.7160244,-2.3488703,-2.0222745,-2.515336,-2.6156158,-2.6885715,-2.0340073,-2.287643,-2.5399466,-2.6170135,-2.7118583,-2.666133,-2.5717897,-2.1152375,-2.2677047,-2.6245153,-2.462906,-2.5533664,-2.70264,-1.6353635,-2.5139642,-2.41511,-2.2569642,-2.1829016,-1.9585233,-2.1815479,-2.4987035,-2.5300605,-2.6460137,-2.6576076,-2.696339,-2.679369,-2.7116752,-2.58222,-2.7147315,-2.7589676,-1.577251,-2.518017,-2.6417718,-2.691247,-2.8379993,-2.924946,-2.934421,-3.0566368,-3.0398893,-3.1446738,-2.6154025,-2.814602,-2.9824467,-3.0464416,-3.1398008,-3.1773572,-3.2487478,-3.186617,-2.6484792,-3.0386066,-2.985276,-3.093396,-3.1533763,-1.9872845,-1.7227718,-2.5501797,-2.6909122,-2.7828674,-2.9028468,-2.9748654,-3.0554714,-3.1289408,-3.127994,-3.129634,-3.1404357,-3.1403315,-3.0633307,-3.119809,-3.2286892,-3.2829335,-3.3143005,-3.2687635,-3.2950609,-3.2905498,-3.2925365,-3.2581923,-3.2332652,-3.2271502,-3.2681808,-3.3378763,-3.3126743,-3.2957613,-3.335636,-3.2596796,-3.2270641,-3.2181518,-3.269171,-3.2229092,-3.0723495,-3.122819,-3.2628906,-3.272228,-3.2210827,-3.297338,-3.3184934,-3.3254097,-3.3298593,-3.3507984,-3.346372,-3.3421125,-3.387869,-3.3453205,-3.2724543,-3.2835875,-3.39142,-3.41043,-3.4622622,-3.286196,-3.3028276,-3.377204,-3.3045273,-3.3655033,-3.3735135,-3.4055798,-3.327634,-3.282953,-3.2849479,-2.799791,-2.900704,-3.0081868,-3.1277442,-3.3114984,-3.3305032,-3.156376,-3.029314,-3.1607375,-1.3559321,-1.5866557,-2.6637635,-2.5791273,-2.7368689,-1.9026638,-1.8566035,-2.135435,-2.484371,-2.721335,-2.2622185,-2.1433413,-2.5137348,-2.7468815,-1.8783523,-2.2511876,-2.6606882,-2.3135068,-2.4686236,-2.8433595,-1.8760098,-2.623064,-2.5552359,-2.486723,-2.6877937,-2.5697856,-2.5645957,-2.5759797,-2.6608357,-2.7166686,-2.6850414,-2.4632168,-2.5084357,-1.2601494,-1.3750247,-1.8747506,-3.0939271,-3.023322,-2.7173493,-2.451093,-2.0023646,-1.6946584,-2.214346,-2.1729836,-2.4892693,-2.5781956,-2.4326153,-2.4041152,-2.3707585,-2.4100947,-2.452344,-2.2868009,-2.259593,-2.1912613,-2.9620967,-3.6885371,-3.4323869,-2.9800828,-2.642003,-3.0941257,-2.8856184,-2.655193,-2.6277542,-2.5055861,-2.5164058,-2.52757,-2.4267743,-2.575541,-2.5468996,-2.4232879,-1.6280769,-2.5855393,-2.8794808,-2.8098342,-2.6074347,-2.440793,-2.5006125,-2.4565163,-2.1294875,-2.7859015,-2.586009,-2.3388896,-2.5031004,-2.4745622,-1.6696593,-2.6750538,-2.388738,-2.3663085,-2.5031211,-2.29879,-1.710771,-2.412468,-2.392448,-2.8356504,-3.0407124,-2.5013537,-2.438199,-2.2694209,-2.4474354,-1.8892947,-2.6306899,-2.086227,-2.582593,-2.2831817,-2.4085398,-2.1959636,-2.9104912,-2.4977055,-2.342853,-2.450592,-2.4182913,-2.3639748,-2.4273827,-2.5134125,-2.3670425,-2.3744524,-2.5002291,-0.98973984,-2.1056843,-2.306213,-2.2971568,-2.434764,-1.7359997
+-0.3091654,-2.0014768,-2.0561678,-1.9702591,-1.6726675,-1.4709383,-1.5173763,-1.4868859,-1.5782017,-1.4911983,-1.4149588,-1.0551757,-2.2968802,-3.4249668,-2.4716074,-1.9384426,-1.6197299,-1.5953602,-1.4525062,-1.3572614,-1.2852017,-1.1169974,-2.2375174,-1.5551795,-1.3213185,-1.3148366,-1.3236207,-1.263738,-1.1666459,-1.1289245,-1.1395572,-1.0816618,-0.7411981,-1.7552127,-1.6975352,-1.6186546,-1.4759675,-1.4147207,-1.371278,-1.2081352,-1.1498945,-1.1147966,-1.1286458,-1.113502,-1.106977,-1.1295105,-0.5536638,-1.0471205,-0.9841513,-1.8379655,-2.484755,-1.6731869,-1.4379061,-1.2380654,-1.1640744,-1.1177672,-1.070543,-1.0250291,-1.0269006,-0.9855202,-0.89409,-0.9705575,-1.0200144,-0.9900022,-0.1702712,-2.8948085,-2.964885,-1.4350034,-0.9927092,-0.99607843,-1.0397516,-0.99199766,-0.96418256,-0.8011293,-0.98508424,-1.1381654,-2.495665,-1.4289501,-1.426215,-1.2043673,-1.1789848,-1.1755625,-1.1514207,-1.0987328,-1.0654492,-0.9896379,-0.90566605,-0.89853555,-0.9637107,-0.7949205,-0.61888385,-1.3460649,-0.985797,-1.0212212,-0.971986,-1.0363317,-0.9850406,-1.044038,-0.99933475,-0.8338639,-0.9364583,-1.1965162,-1.2432867,-1.9289092,-1.3756613,-1.1342417,-1.0526918,-1.1336095,-1.6912231,-1.0692345,-1.0882586,-0.93825984,-1.122214,-1.6512891,-1.6017483,-1.6454524,-1.5469912,-1.3824877,-1.14298,-1.084324,-1.0466497,-1.1936558,-2.180408,-2.5590186,-1.5948356,-2.586951,-2.3217473,-1.5946034,-1.6406499,-2.599586,-2.7967005,-2.8675961,-3.3251565,-3.8068113,-3.0493326,-2.2747042,-2.4082727,-2.0363326,-2.0186265,-1.5251143,-1.4009761,-1.3649191,-1.348817,-1.7706952,-1.6916387,-1.8555225,-2.8826861,-1.3903986,-1.1808678,-1.3391308,-1.5189767,-1.2252504,-1.2249209,-1.3488164,-1.1666671,-1.1177267,-2.6177893,-2.0559309,-1.7080966,-1.2318438,-1.1509799,-1.0932089,-1.0493351,-1.0495988,-0.89999574,-1.0263712,-0.99773175,-1.0199224,-1.0896536,-1.1944544,-1.5689453,-1.7590686,-1.7005742,-1.3456522,-1.3361179,-1.265711,-1.2296374,-1.2289078,-1.275269,-1.2343551,-1.2087163,-1.2022977,-1.3223473,-1.3231975,-1.3019742,-1.283082,-1.17297,-1.1401217,-1.2808641,-1.1954445,-1.1335584,-1.1639465,-1.2320554,-1.2404529,-1.1954112,-1.1654186,-1.162356,-1.113536,-1.1037486,-1.1037539,-1.0986634,-1.1002282,-1.1011399,-1.240714,-1.3672358,-1.4014758,-1.4112622,-1.4002934,-1.3363148,-1.265656,-1.2308813,-1.2323072,-1.2340037,-1.2342294,-1.2206327,-1.2272439,-1.2106037,-1.2738996,-1.2762796,-1.3733327,-1.0054406,-1.1494621,-1.0961046,-1.3286039,-1.4284155,-1.4764105,-1.4707835,-1.4589819,-1.480662,-1.4254489,-1.4500021,-1.4256414,-1.457867,-1.647768,-1.6728244,-1.7254928,-1.5972775,-1.4953858,-1.4598864,-1.5140599,-1.5943388,-1.4540536,-1.4385544,-0.9121701,-2.775806,-2.3617876,-1.673541,-1.2284414,-2.0037572,-2.3442585,-3.2252364,-3.3710601,-3.5925632,-2.9296434,-2.3206735,-1.8786277,-2.450111,-3.3010316,-3.4554095,-3.1192331,-2.201152,-2.3550894,-3.991644,-3.369665,-3.1117113,-2.3598943,-1.9088942,-1.830947,-1.6720954,-1.5997902,-1.5709635,-1.5965557,-1.6575114,-2.185709,-1.5900427,-2.4365535,-3.611296,-3.1055984,-3.4916623,-3.3533933,-3.1843576,-4.019352,-3.6957905,-2.8150854,-2.2866385,-2.2583551,-2.347242,-2.0856054,-1.8732948,-1.753151,-1.6823529,-1.6814374,-1.6416842,-1.6202022,-2.191195,-3.2641878,-3.540681,-3.9998436,-3.4343324,-2.87636,-2.4152656,-2.8604808,-2.7253397,-2.543027,-2.21038,-1.9487025,-1.8210592,-1.7004331,-1.7313992,-1.9057704,-1.7652751,-1.6230303,-1.509966,-3.5964503,-3.0288522,-2.8781304,-2.3203247,-2.054231,-1.7487522,-1.7077442,-1.7032405,-1.8595299,-1.770897,-1.6249007,-1.6238911,-1.5953163,-2.3180501,-3.8745632,-2.9700894,-2.3525052,-2.1716428,-2.2320738,-1.8508594,-1.6973404,-2.0253363,-1.9111849,-2.473126,-1.9680015,-1.6698997,-1.5109023,-1.5659026,-1.2017468,-2.033862,-1.7144262,-1.6726905,-1.5734516,-1.8318009,-2.4664369,-3.0848835,-2.522317,-1.9143735,-1.872212,-1.642995,-1.6274885,-1.5914513,-1.4366862,-1.3375825,-1.273466,-1.3440522,-0.7434237,-1.8969846,-1.622377,-1.43008,-1.3775448,-2.3495595
+-0.6560133,-0.88130075,-0.8942868,-0.9745924,-0.94634944,-0.91923445,-0.8111388,-1.0872061,-1.1516842,-1.0639511,-0.9313096,-0.98018426,-0.8833282,-0.90944284,-1.2348753,-1.3495101,-1.2140241,-1.049433,-1.2427164,-1.5016612,-1.3603739,-1.031153,-1.2527105,-1.1783534,-1.1394323,-1.2055947,-1.3842845,-1.316341,-1.4378895,-1.3643225,-1.149668,-0.9775891,-1.0319217,-1.1882254,-1.096252,-0.8729489,-0.9888181,-0.88619184,-0.8984609,-0.8411456,-0.82238966,-0.8749556,-0.95133877,-0.84357685,-0.8890488,-1.0363077,-1.0851759,-1.0233998,-0.9848797,-1.0377864,-1.1289748,-1.0424155,-0.9688489,-0.96997184,-1.3531905,-1.398995,-1.3091975,-1.335411,-1.4978358,-1.4710221,-1.5962667,-1.344711,-1.5595468,-1.5225279,-1.3944129,-1.2178403,-1.4067003,-1.414039,-1.4870484,-1.5286177,-1.3194133,-1.1318994,-1.6893789,-1.4661773,-1.5223794,-1.5415539,-1.5475616,-1.5302165,-1.4873624,-0.9216082,-1.1703103,-1.2882515,-1.3876151,-1.4765385,-1.4225072,-1.0408483,-1.2345488,-1.41262,-1.582342,-1.4152194,-0.83979696,-1.4721662,-1.478336,-1.5380641,-1.0358018,-1.4426142,-1.3488386,-1.2602916,-1.4054397,-1.560081,-1.575645,-1.6129739,-0.7960925,-1.3154349,-1.24325,-1.5321165,-1.4167922,-1.1117164,-1.4454949,-1.5343784,-1.4021084,-1.078106,-1.3463274,-1.4190775,-1.2116754,-1.1929885,-1.4544941,-1.5115408,-1.4788693,-1.510993,-1.5530213,-1.5293788,-1.5190264,-1.0031272,-1.3926646,-1.336402,-1.0427932,-1.4454166,-1.4232014,-1.4511638,-1.3580259,-0.9626059,-1.374726,-1.4532796,-1.078821,-1.3096154,-1.3148271,-1.4491557,-1.2642119,-1.482289,-1.1176646,-1.177246,-1.1346787,-1.44344,-1.3350916,-1.5026373,-1.2855088,-1.4984552,-1.4479569,-1.0845095,-1.442984,-1.3849508,-1.4317845,-1.3901945,-1.438472,-1.504136,-1.5986027,-1.5352501,-1.3823913,-1.3350126,-1.1364704,-1.5074594,-1.4205484,-1.4723101,-1.1223191,-1.5564255,-1.4850502,-1.4473299,-1.3132073,-1.4329845,-1.4728624,-1.4703695,-1.634131,-1.7070054,-1.674277,-1.6742191,-1.7206279,-1.7532495,-1.0071205,-1.5771488,-1.5051615,-1.6283003,-1.6074121,-1.6649808,-1.7102201,-1.6952692,-1.7043611,-1.725566,-1.3498284,-1.3638755,-1.397884,-1.3276101,-1.5407523,-1.3565986,-1.5741149,-1.3252689,-1.5296909,-1.4126507,-1.5855547,-1.0580333,-1.4881167,-1.5152899,-1.4851271,-1.3364829,-1.2909976,-1.500677,-1.4745194,-1.2284132,-1.1624511,-1.1800817,-0.6484956,-1.0351931,-1.117813,-1.223878,-1.1918842,-1.4653096,-1.1291565,-0.89479834,-1.3160633,-1.3540024,-1.548354,-1.6258634,-1.1075162,-1.7262574,-1.1792556,-1.1960025,-1.5004584,-1.391122,-1.2112609,-1.6312531,-1.6298941,-0.23721108,0.41539428,0.054155882,-0.0942817,-0.25439277,-0.48491266,-0.6190978,-0.67454964,-0.68421453,-0.7073744,-0.7471146,-0.53033787,-0.89949197,-0.8620473,-0.65326774,-0.6067582,-0.7338258,-0.6334037,-0.69800615,-0.6395883,-0.5597839,-0.6398667,-0.7745105,-0.9389583,-1.0341043,-1.0789819,-1.1399615,-1.1886673,-1.1974136,-1.3040172,-1.2652255,-1.2225081,-1.0559921,-1.0845809,-1.0992554,-1.0396825,-1.1507164,-1.1594088,-0.7623687,-1.1198171,-1.0349303,-1.0885459,-1.1009957,-1.0909476,-1.2018656,-1.2625047,-1.1374646,-1.1787483,-1.1118646,-1.067953,-1.1706141,-1.2802461,-1.2221984,-1.0559498,-1.1275243,-1.131306,-1.3111892,-1.3315923,-1.350314,-1.2248853,-1.2078121,-1.1726401,-1.0986282,-1.013469,-1.0152613,-1.144937,-1.0269333,-1.1663817,-1.1677927,-1.0850719,-1.0826687,-1.0215306,-0.9740407,-1.0065867,-0.9469817,-1.0300796,-1.0501534,-1.1715621,-1.2725583,-1.1770245,-1.1666398,-1.1180975,-1.1684831,-1.1139463,-1.0790201,-1.1357849,-1.0532905,-1.1008329,-1.0509071,-1.1244115,-1.0399653,-1.0370524,-1.0272685,-1.11898,-1.0330701,-1.0185432,-0.8932285,-1.1132513,-1.1739367,-1.0219539,-0.99521476,-1.0334891,-0.99447256,-1.0547453,-1.1812782,-1.2662168,-1.1935908,-1.2438723,-1.2391213,-1.1240562,-1.217033,-1.2944959,-1.2259343,-1.216443,-1.2475477,-1.240964,-1.2663193,-1.2482413,-1.2395312,-1.1230825,-1.1626662,-1.0775818,-1.3402969,-1.2439692,-1.3230687,-1.2394475,-1.1540114,-1.1151395,-1.1585041,-1.0859151,-0.98757404,-0.95295894,-0.8150503,-0.9046199
+-0.8338334,-1.2704607,-1.4423479,-1.642248,-1.5172223,-1.1964778,-1.3315837,-1.2988108,-1.338807,-1.2507163,-1.2789091,-1.3663552,-1.327141,-1.1517009,-1.2821856,-1.5759073,-1.999684,-2.1917176,-1.999159,-1.8804153,-2.2521653,-2.626671,-2.2664032,-2.5721564,-1.8122396,-1.7318305,-1.9389102,-2.0514417,-2.2472067,-2.0783353,-2.4118574,-2.3277178,-2.2299519,-1.3485508,-2.0815039,-2.279511,-2.4672713,-2.3094358,-2.136916,-2.0110753,-2.1521168,-2.3114877,-2.749538,-2.439701,-2.3488436,-2.4719877,-2.3547263,-2.27782,-2.211093,-2.1955404,-2.2663817,-2.294002,-2.1693516,-2.2641146,-1.784238,-2.3721352,-2.6765249,-2.6997876,-2.7410512,-2.7275639,-2.4981952,-2.443162,-2.6358554,-2.6782174,-2.5970638,-1.9796604,-2.579704,-2.7779408,-2.4984267,-2.4537103,-2.3888612,-2.0194702,-2.3171797,-2.7124705,-2.7009244,-1.867978,-2.2348435,-2.494718,-2.7270162,-2.7150214,-2.7549121,-2.6142082,-2.460372,-2.4543948,-2.5078883,-2.507855,-2.2659416,-2.6750674,-2.634425,-2.4887867,-2.5405884,-1.9793156,-2.5484362,-2.6552882,-2.62818,-2.6717575,-2.6474776,-2.4702678,-1.206467,-2.4353662,-2.511848,-2.6169825,-2.372865,-2.712772,-2.8016582,-2.4014819,-2.6306922,-2.2695763,-2.6792493,-2.7181675,-2.7575412,-2.287686,-2.7366557,-2.804809,-2.7768497,-2.579914,-2.748273,-2.6420472,-2.665782,-2.4902735,-2.5020533,-2.4513588,-2.549965,-2.6251345,-2.7017767,-2.7023702,-2.7364743,-2.6154914,-2.5408864,-2.5168338,-2.5402672,-2.6668696,-2.6824584,-2.2492654,-2.000129,-2.7531846,-2.8517368,-2.7704134,-1.8561293,-2.7137952,-1.6976565,-2.074972,-2.3474715,-2.7373505,-2.6564403,-2.703731,-2.78372,-2.8401022,-2.4373653,-2.62279,-2.7604618,-2.5160284,-2.668507,-2.8131227,-2.7151332,-2.7507377,-2.7435412,-2.7386413,-2.270522,-2.676071,-1.8926935,-2.7344377,-2.1313763,-2.48586,-2.800301,-2.5877218,-2.7772386,-2.8030026,-2.7826858,-2.4712777,-2.863988,-2.5308218,-2.8797815,-2.9349322,-2.6971726,-2.3250275,-2.7993994,-2.8021712,-2.1418982,-2.429618,-2.7685976,-2.7199373,-2.7907429,-2.332564,-2.602507,-2.7842631,-2.7829194,-2.4495716,-2.6510754,-2.815133,-2.9128458,-2.8453965,-2.7941484,-2.8617516,-2.0354724,-2.5521197,-2.8330011,-2.8188462,-2.2329035,-2.6543198,-2.8036551,-2.939466,-2.8681366,-2.8171349,-2.7645211,-2.898357,-2.672132,-2.788499,-2.2002006,-2.1487386,-2.7594423,-2.8397033,-2.8278203,-2.7991018,-2.8263392,-2.8835225,-2.861412,-2.8057625,-2.869144,-2.8447962,-2.8575096,-2.5097046,-2.7872963,-2.8403425,-2.7823987,-2.6143115,-2.7481053,-2.8680348,-2.85921,-2.6879191,-2.8103352,-2.8110476,-2.2823846,-2.1291165,-1.8216823,-2.0008073,-1.6268468,-2.1577377,-2.4910975,-2.4661918,-2.4674225,-2.4168456,-2.2056146,-2.6774712,-2.4926128,-2.6436357,-2.5650907,-2.3546398,-2.0505967,-2.141491,-2.1801903,-1.8623976,-1.9874052,-1.8029587,-1.537941,-1.5389432,-1.4346997,-1.1204914,-1.0199488,-1.2428374,-1.1306673,-1.2471629,-1.2638491,-1.2409123,-1.2098017,-1.2035868,-1.2690166,-1.1592909,-1.1850383,-1.0059044,-1.3286358,-1.2800661,-1.3288401,-1.0682446,-0.90935546,-1.0472866,-1.0920235,-1.3554486,-0.9967719,-1.1664945,-1.2522402,-1.2305933,-1.0645996,-1.0786802,-0.94856495,-0.9355235,-0.946933,-1.1206533,-1.1696994,-1.1941811,-1.1420952,-0.8229454,-0.90521187,-0.98864824,-1.0708238,-1.0995408,-1.393525,-1.5565957,-1.4409827,-1.5514252,-1.1702894,-1.1033455,-1.076836,-1.154795,-1.215112,-1.1858233,-1.0140625,-1.1393706,-1.1975929,-1.163908,-1.1597099,-1.1057106,-0.8174429,-0.9831714,-1.1248285,-1.1328899,-0.96219283,-0.8729071,-0.8817019,-1.0541418,-1.1412145,-1.1669064,-1.1042043,-1.0666112,-1.2206024,-1.0826012,-1.4926668,-1.94569,-2.0924182,-0.40544778,-1.1782502,-1.4899248,-1.4495573,-1.4343754,-0.92055804,-0.9794467,-1.0144222,-1.1225832,-0.9790855,-1.5743271,-1.6571082,-1.720748,-1.5011998,-1.6750104,-1.6797696,-1.6949028,-1.6325463,-1.5850645,-1.4989716,-1.4056119,-1.1309851,-1.4175776,-1.3340149,-1.7325226,-1.7231671,-1.8121067,-1.7338511,-1.381615,-1.3754268,-1.18637,-1.631265,-1.3518189,-1.4515382,-1.645342,-1.7883171
+-0.8505421,-1.5466586,-2.2994757,-2.231369,-2.4034634,-1.792578,-2.29884,-2.0279968,-1.9846426,-1.8297731,-1.7946744,-1.7727112,-1.8481537,-1.8540617,-2.0979216,-2.225715,-2.306274,-2.459527,-2.3533838,-2.3340058,-2.500261,-2.9023497,-2.6281486,-2.6582875,-2.6250167,-1.7641729,-2.1783414,-2.7683258,-3.1419225,-2.9542308,-2.6438017,-2.873242,-2.9137144,-1.8912908,-2.151515,-2.6633341,-2.9919286,-3.0818028,-2.9155378,-2.321834,-2.9823866,-2.0207052,-2.3716097,-2.0406091,-2.2849607,-2.8990242,-2.8387141,-2.778351,-2.9094434,-2.8887904,-2.921974,-2.9979174,-3.029161,-3.172294,-3.1222978,-2.4522626,-2.8644333,-2.7392035,-2.8156905,-3.0689926,-3.1962636,-2.8846583,-3.120977,-3.3584535,-3.358512,-2.4032733,-2.9211254,-3.2908,-3.258936,-3.490536,-3.4105232,-3.3642507,-3.430045,-3.6014767,-3.4626317,-2.9970708,-2.302086,-2.90528,-3.260666,-3.3006837,-3.1160986,-3.380305,-3.5622334,-3.4001331,-3.5656118,-3.5838757,-3.3350828,-3.4873073,-3.7439668,-3.665513,-3.6631014,-1.8845497,-2.9915953,-3.1611364,-3.3054981,-3.3520954,-3.5620625,-3.5434203,-1.1967702,-2.5596366,-3.105059,-3.3644779,-2.9471788,-2.7015996,-2.9338393,-3.3633986,-3.4439764,-3.5978394,-3.5928671,-3.6527925,-3.6826894,-2.802453,-3.2927344,-3.5367165,-2.1510363,-2.9020994,-3.3521972,-3.0442624,-3.288502,-3.331778,-2.734462,-3.1880994,-3.3349223,-3.4492135,-3.5692596,-3.5554547,-3.5951204,-3.7191796,-3.8129127,-3.8008995,-3.7928202,-3.7521138,-3.6292048,-2.305006,-1.7660732,-2.964777,-3.2112155,-1.085769,-2.2460902,-2.6810515,-2.993909,-1.4124106,-2.262241,-2.8675714,-3.1318007,-3.2824893,-3.1086428,-3.4390085,-1.3982245,-2.4961963,-3.0083315,-3.254378,-3.3409212,-3.5366902,-3.5610673,-3.6379175,-3.7358372,-3.7794867,-3.7645876,-3.3882198,-2.3173127,-3.267622,-3.5023336,-3.7382183,-3.8643272,-3.9194903,-3.9551148,-3.972704,-3.989232,-2.4922714,-3.384461,-3.7804365,-3.8945525,-2.9732053,-3.6443162,-3.772019,-3.683127,-3.861672,-3.536433,-3.709087,-3.5843742,-2.522012,-2.3863316,-2.536583,-2.3538494,-3.0168266,-3.2697692,-2.7482128,-3.0125155,-2.5524004,-3.2517452,-3.6532466,-3.6999116,-3.9926686,-3.3031132,-3.1905122,-3.6386495,-3.8529963,-2.015462,-2.9244688,-3.2625172,-3.6885707,-3.7295125,-3.7908654,-4.0528374,-4.1750655,-4.1704473,-4.2248983,-2.4145908,-2.8693905,-3.2774882,-3.6743145,-3.6337664,-3.778586,-3.9870048,-2.5350866,-2.5465229,-3.1963,-3.685246,-3.8673074,-4.011097,-4.1962156,-4.1092696,-4.2011795,-4.1901336,-3.9706364,-4.0377817,-4.343174,-4.413434,-4.3806686,-4.244399,-4.38074,-3.3102365,-3.9274874,-3.523406,-3.395341,-2.3088183,-3.1367865,-3.2510664,-3.4250598,-3.3038034,-3.1228137,-2.9042249,-3.27849,-3.415294,-3.6106849,-3.7037444,-3.3203135,-2.8462765,-2.9208922,-2.9289865,-3.0922928,-3.0835218,-3.0770867,-2.2654548,-2.4376428,-2.631608,-2.4369102,-2.5366347,-2.3542318,-1.6657952,-2.050783,-2.1440456,-1.9856328,-1.9232782,-1.7740316,-1.7947103,-1.5255047,-1.4671193,-1.3301224,-1.2711856,-1.2703559,-1.3733023,-1.5293052,-1.4170831,-1.3814843,-1.3948568,-1.2196726,-1.1727986,-1.2599925,-1.4066305,-1.488953,-1.5151185,-1.244342,-1.0346273,-1.2794877,-1.2972034,-1.0690628,-1.1097068,-1.1585773,-1.3514005,-1.1117202,-1.3896825,-1.4768273,-1.6475923,-1.6171982,-1.7433077,-1.8865584,-1.9492422,-2.1694975,-2.408083,-2.6959994,-2.7222602,-2.7694552,-2.72474,-2.3857536,-2.4432368,-2.6207485,-2.7989018,-2.6972733,-2.3420048,-2.3857946,-1.2554421,-1.5474379,-1.7222686,-1.6499184,-1.3370609,-1.5869559,-1.4351735,-1.4444925,-1.7429768,-1.519332,-1.2679945,-1.6848377,-1.9698251,-1.8542715,-2.275084,-2.7284396,-2.8286688,-2.1087568,-2.172222,-2.3174589,-2.4643812,-2.909142,-2.1010528,-1.926516,-2.1039677,-2.2993336,-2.1304245,-2.659014,-2.6359253,-2.9064984,-2.9404597,-2.9993238,-3.1617274,-3.1086698,-2.556572,-2.8187847,-2.8313956,-2.4787679,-2.49747,-2.5724802,-2.3590949,-2.7686167,-2.6907544,-2.751927,-2.8151069,-3.0970342,-2.788424,-2.9136152,-3.1064095,-3.0185595,-2.7145457,-1.4357448,-2.6382875
+-1.1374549,-1.2991675,-1.391666,-1.7654122,-1.6593117,-1.8113483,-2.012477,-1.2027498,-1.2827159,-1.3121225,-1.323809,-1.4972954,-1.479973,-1.6462127,-1.6999923,-1.8868259,-2.0138438,-2.1975965,-2.326046,-2.2135422,-2.2537303,-2.1314902,-2.2022386,-2.3227515,-2.4996738,-1.668258,-2.0532148,-1.7280067,-2.166511,-1.7553511,-1.510476,-1.5510914,-1.7067543,-1.7047842,-2.06772,-2.1189132,-2.2787127,-2.2726004,-2.2371426,-1.7807918,-1.9616157,-1.7720078,-1.7414742,-1.6889242,-1.7798823,-1.9912595,-1.9801801,-2.231841,-2.2585585,-2.248685,-2.2879436,-2.625007,-2.4411607,-2.6361403,-2.7357554,-2.804626,-2.92631,-3.0109677,-3.0985556,-3.2001407,-3.2488337,-3.0718684,-3.249091,-3.2596636,-1.3257475,-2.19883,-2.608344,-2.9412823,-2.9234977,-3.0650797,-2.9629261,-3.1485457,-3.2092695,-3.1148114,-3.1397667,-2.1626027,-1.7382431,-2.7933826,-3.0347972,-3.1722226,-3.2455487,-2.7591074,-3.2332807,-0.926538,-2.51636,-2.9222703,-1.8136237,-2.4042182,-2.924086,-3.0186727,-3.0205317,-2.0998783,-2.8631203,-3.022567,-3.0707233,-3.1389778,-3.2981892,-3.3365655,-1.2903768,-2.319778,-2.968131,-3.1240816,-3.265592,-2.3588777,-1.9362987,-2.8795743,-3.088902,-3.1867385,-1.673606,-2.923664,-3.1714053,-2.4440782,-3.0636854,-3.291231,-1.6876925,-1.9982342,-3.086791,-3.2793865,-3.3422623,-2.2975495,-1.4837664,-2.02386,-2.9039469,-3.2195547,-3.3850322,-3.456863,-3.0306554,-3.4247134,-3.4804025,-3.4487555,-3.5320425,-2.3524418,-3.0265973,-2.6211784,-1.1993093,-1.8657092,-2.3982692,-1.017983,-2.0643382,-2.4897015,-2.7879305,-2.4550328,-2.6888347,-3.0588748,-3.2631798,-2.7836351,-2.595326,-3.0589886,-2.4235396,-2.6777663,-3.1524105,-2.6281762,-1.5971602,-2.8494656,-3.1045492,-3.280025,-3.4399428,-3.530099,-3.5441597,-3.5732393,-3.03584,-3.4002638,-1.2693887,-2.9728684,-3.2122908,-3.2441664,-3.2138002,-3.3129528,-3.4628544,-2.0109649,-2.730134,-3.3527637,-3.4407794,-3.5833654,-3.7079468,-3.7080846,-3.680503,-3.7309213,-2.6012292,-3.229508,-2.7732286,-1.5499569,-1.868428,-1.8112601,-2.6182327,-2.9944525,-3.0174801,-3.2376666,-3.2907863,-3.5104537,-3.5360548,-3.4501445,-3.4264557,-3.6513994,-3.1985848,-2.6571522,-3.2575645,-3.441761,-2.0266972,-2.9256003,-3.22751,-3.388828,-1.507459,-2.3104324,-2.736218,-2.9120271,-3.057207,-2.8585682,-2.1695764,-2.1128726,-2.352216,-2.9701948,-2.455539,-2.7497764,-3.0724661,-3.2841365,-1.7950636,-2.5810957,-2.850353,-3.027163,-3.083931,-3.3104467,-3.2924957,-3.2476242,-3.3843317,-3.0242443,-3.074139,-3.2315364,-3.3177214,-3.3107069,-3.4093776,-3.5705674,-2.793498,-3.2530718,-2.7012568,-2.6923726,-1.9293886,-2.425081,-2.5222266,-2.6967,-2.7395253,-2.241155,-2.2685623,-2.474658,-2.7926455,-2.8377233,-2.8845696,-2.427888,-2.1436667,-1.9391707,-2.310102,-2.403111,-2.3353457,-2.2560751,-1.6125091,-1.5549335,-1.5787163,-1.7905178,-1.8271612,-1.775303,-1.5377694,-1.358958,-1.299446,-1.4701648,-1.485653,-1.305427,-1.4199868,-1.3814532,-1.056113,-1.6399177,-1.1342634,-0.9659464,-1.051574,-1.1580828,-1.344906,-1.0210392,-1.1900414,-1.3893949,-0.8495955,-1.1582307,-1.1466507,-1.2380514,-1.2073084,-1.1928569,-0.86413014,-1.1031853,-0.9463038,-0.77010316,-1.2525105,-1.0569358,-1.2651975,-1.3720403,-1.2944783,-1.3438146,-1.6890752,-2.1898265,-2.3191185,-2.194938,-1.9774722,-2.1782024,-2.604351,-2.5930276,-2.260644,-2.400368,-2.3429985,-1.8442395,-2.1562319,-2.0435607,-2.0903873,-2.0319753,-1.7769071,-1.7025145,-1.3212072,-1.5109802,-1.0812186,-1.5400673,-1.9002777,-1.9040043,-1.6955057,-1.876211,-2.1179044,-1.994569,-1.9841293,-2.3520584,-2.573137,-2.412303,-2.6780267,-2.67213,-2.7037404,-2.3751528,-2.343625,-2.0919127,-2.3627715,-2.3472419,-1.921535,-1.5977674,-1.5322466,-1.4780279,-1.3958915,-2.580748,-2.9917881,-2.752676,-2.671916,-2.5262427,-2.5882168,-2.6270616,-2.3217232,-2.7002654,-2.6174731,-2.3957283,-2.1055539,-2.5073862,-2.357573,-2.5179682,-2.508966,-2.2222228,-1.9120182,-2.5510752,-2.580235,-2.1113322,-2.251598,-2.4469094,-2.2596886,-1.082597,-1.7138929
+-0.4230396,-1.2965716,-1.5159605,-1.916942,-2.0213432,-2.067803,-1.9196616,-2.0478935,-2.0085647,-1.9613622,-1.3499783,-2.2873306,-2.2780015,-2.3589282,-2.371624,-2.4707508,-2.4789698,-2.6013935,-2.5852888,-2.5255723,-2.2051353,-2.2344987,-2.237085,-2.3886895,-2.5294964,-2.364654,-2.1355367,-1.3620895,-1.9891628,-1.3353602,-1.7202444,-1.2579964,-1.8190808,-1.7953,-2.055133,-2.1223145,-2.3071365,-2.4669104,-2.0142303,-1.9369168,-2.0215697,-1.7976218,-1.4356552,-1.5562861,-1.7281862,-2.029614,-2.1656756,-1.9297045,-2.0904717,-2.1155767,-1.8653725,-2.0711608,-2.15029,-2.4002419,-2.495943,-2.2649143,-2.5002403,-1.4142338,-1.6839134,-1.8645164,-2.2486353,-2.0956783,-2.1510954,-2.4797578,-1.5637146,-1.7219138,-2.1167998,-2.3902006,-2.5801919,-2.7695074,-0.6984218,-1.5140641,-1.94301,-2.331766,-2.285561,-0.3347933,-0.8626198,-1.3817319,-1.9123839,-2.3988843,-2.232393,-1.6159756,-1.9478464,-0.556189,-1.4094648,-2.0983238,-2.3155956,-1.3797793,-1.9281765,-2.2161984,-2.5379815,-2.169033,-2.5310137,-2.1378815,-2.1611915,-1.8430928,-1.9656199,-2.0916386,-2.2869806,-2.4658933,-2.5713103,-2.7187624,-2.7462687,-2.2589486,-1.174292,-1.7472147,-2.114397,-2.422237,-0.18452606,-1.1958671,-1.9884421,-1.9057436,-1.5846691,-1.9282625,-2.2255757,-2.3835244,-2.7167287,-2.6874976,-2.8739195,-2.1387353,-1.9979004,-2.2020879,-2.514289,-2.6826186,-2.741455,-2.7564983,-2.797196,-2.5554643,-2.9011166,-2.9595084,-3.0038502,-0.4946778,-1.7831209,-2.3237178,-1.4375954,-0.9033417,-0.75898236,-0.9661576,-1.1444478,-1.3850297,-1.408281,-1.1630191,-1.3218433,-1.8067728,-2.3468037,-2.3557515,-0.6336556,-1.2708122,-1.27831,-1.5557224,-1.4495715,-2.061107,-0.6476787,-1.4656848,-1.8344237,-2.1795921,-2.6151636,-2.9123251,-2.9315116,-3.0178072,-2.4588313,-2.248035,-1.6347765,-2.2754545,-2.7127392,-2.9511628,-3.042867,-3.0609465,-2.963085,-0.7864557,-1.8611194,-2.379283,-2.8471851,-3.090704,-3.2922077,-3.395455,-3.4292014,-3.520924,-2.343272,-2.7423759,-1.8556718,-2.1529713,-1.8782562,-2.009954,-1.9499598,-2.337017,-2.6388116,-3.0004566,-3.0637164,-3.2562087,-3.308916,-3.486211,-3.440053,-3.6550207,-3.5070963,-2.8463445,-3.1973855,-3.4068067,-3.056429,-3.1717486,-3.300975,-2.9693806,-0.8021557,-1.5118226,-2.1945715,-2.6323447,-2.8264947,-3.0714395,-3.0034199,-2.8543553,-3.089335,-3.2595286,-3.4540207,-3.397715,-3.5838292,-3.678502,-3.7644954,-3.770592,-3.8793094,-3.8727953,-3.8836641,-3.369322,-3.3606288,-3.7739313,-3.7647705,-3.7942069,-4.0613756,-4.0437317,-3.9084692,-3.8034515,-3.8321722,-3.8295524,-2.5559368,-3.290875,-3.2979016,-3.315679,-2.7741637,-2.9111156,-2.828507,-2.986329,-3.0134246,-2.4615872,-2.4644547,-2.7580504,-2.8824573,-3.0979118,-3.0877297,-2.5093381,-2.5712378,-2.0536973,-2.4887428,-2.4148827,-2.404752,-2.4862535,-2.032371,-1.8129886,-1.9112478,-2.3532069,-2.7097514,-2.4778059,-1.6125928,-1.4356648,-1.6936439,-1.9698104,-2.0505154,-1.9519504,-1.951837,-1.9603454,-1.838816,-2.0664482,-1.9237682,-2.3586564,-2.3844428,-2.3498814,-2.4941134,-2.5798044,-2.415939,-1.5560439,-1.9353696,-1.7400246,-1.9725624,-2.1414351,-2.2059145,-2.041346,-1.8942921,-1.7321056,-1.1886429,-2.0440087,-1.7044736,-1.8926605,-1.9039327,-1.7418579,-2.2781754,-2.2934532,-1.4945233,-2.3624058,-2.3275063,-2.2282617,-2.2152238,-2.4390006,-2.4907782,-2.5232491,-2.441055,-2.599968,-2.5676088,-2.5936432,-2.7413368,-2.789375,-3.1227827,-3.3632517,-2.738197,-2.759619,-1.7131176,-2.5621197,-2.1195912,-2.0074158,-2.3602605,-2.209054,-2.5363402,-2.5479734,-2.5634248,-2.5936852,-2.6595368,-2.9272618,-3.0345852,-2.9072237,-3.0549343,-3.0244803,-3.0286727,-2.6009521,-2.494027,-2.6473207,-2.8032603,-2.6090906,-1.4882706,-2.0425324,-2.1396594,-2.255904,-2.2257304,-2.0589013,-2.05553,-2.417451,-2.6996489,-2.6890638,-2.794129,-2.9505744,-2.8300247,-2.7859037,-2.7499745,-2.7988884,-2.889701,-2.8543754,-2.7405276,-1.1791857,-1.9720644,-2.0927696,-2.0345187,-2.556091,-2.8695743,-2.1452909,-2.4492795,-1.8680816,-2.1359606,-1.481055,-1.6350807
+-0.940597,-1.5649494,-1.498875,-1.7568604,-1.6396371,-1.5042108,-2.0111308,-2.1994922,-2.07644,-2.0760493,-2.0557423,-2.03331,-1.8736836,-1.904776,-1.8607903,-1.8288909,-1.7964524,-1.8742763,-1.9576879,-1.8767618,-1.9171582,-2.358972,-2.5357704,-2.1282783,-1.9823586,-2.169115,-2.0633745,-2.230588,-2.4527836,-2.3413107,-2.370306,-2.481813,-2.554067,-2.4815965,-2.3985243,-2.1792946,-2.1566806,-2.0996122,-2.4988022,-2.2660403,-2.4634566,-2.4068933,-2.4570298,-2.423424,-2.287138,-2.0882955,-2.2095087,-2.4074752,-2.1739733,-2.178,-2.4986715,-2.4306574,-2.2039957,-2.1378741,-2.1595702,-2.2424924,-2.3738923,-2.4025817,-2.4026842,-2.404647,-2.3399081,-2.352231,-2.3697505,-2.5539303,-2.3159845,-2.666987,-2.5023139,-2.4904728,-2.34143,-2.3033686,-2.210832,-2.5637374,-2.588348,-2.5650053,-2.6198797,-2.4747248,-2.4338167,-2.7910008,-2.6526632,-2.7750945,-2.834015,-2.8017821,-2.2133505,-2.4288607,-2.85533,-2.917334,-2.9476838,-3.0272167,-3.0172415,-2.948464,-2.9170368,-2.8170707,-2.9202886,-2.0550346,-2.381855,-2.699821,-2.766069,-2.8583064,-2.4978342,-2.8916686,-2.9095883,-2.913159,-2.609971,-2.9079046,-2.497849,-2.7959595,-2.8714266,-2.8504543,-2.563209,-2.8601322,-2.8709013,-2.9751801,-3.0016818,-2.9752169,-3.0218089,-2.9625237,-2.542161,-2.9243157,-1.6379458,-2.8413224,-2.5265965,-2.7834938,-2.4878454,-3.0016255,-3.0109305,-3.0158787,-3.0642512,-3.084487,-3.168899,-3.1096787,-2.7182293,-2.743603,-2.8418236,-2.9147723,-2.892074,-2.8285158,-1.8304545,-2.6642919,-2.512868,-2.8880403,-2.7669106,-2.6044416,-2.6665118,-3.0573218,-3.0307598,-3.0691693,-3.0519147,-3.031239,-2.997023,-2.6262522,-2.4651146,-3.086058,-3.036431,-3.2075672,-3.2693624,-3.3182049,-3.3274357,-3.3074856,-3.2755113,-3.1920004,-3.176412,-2.6357453,-2.682911,-3.2256653,-3.1779573,-3.2457876,-3.2555895,-3.2364755,-2.9892592,-2.8205614,-3.105306,-3.2333028,-3.2228866,-3.218824,-3.2242863,-3.2181451,-3.2400892,-3.255086,-2.382536,-2.857847,-2.3480012,-3.0243948,-2.842877,-3.004002,-2.9526682,-2.9536867,-3.0593617,-3.1826599,-3.2702498,-3.2940671,-3.291339,-3.1487226,-3.177145,-3.160139,-3.1154277,-2.9970303,-3.153925,-3.0466938,-3.027896,-2.975128,-2.9391668,-2.7916408,-1.8240601,-2.795609,-3.0653002,-2.8814106,-3.098763,-2.996177,-3.0670729,-3.0289416,-3.0824988,-3.0577397,-3.0534244,-2.9698052,-3.014703,-3.0598898,-2.9377508,-3.1095738,-3.0378838,-3.083003,-3.0856671,-2.9012966,-2.7644093,-3.0948205,-3.0850716,-2.9159384,-2.73492,-2.8370874,-2.99128,-3.0683942,-2.9993305,-2.9785445,-2.4325566,-2.5801196,-2.1423464,-2.390065,-2.960071,-2.8193653,-3.1200442,-3.0146718,-2.8198972,-2.5685823,-2.5536995,-2.6350555,-2.9585629,-3.1216388,-3.1008863,-2.838131,-2.7302458,-2.2374742,-2.4736862,-1.922581,-1.6840895,-1.6831418,-2.2137341,-2.1720672,-2.0740504,-1.6778525,-1.0821154,-1.2428823,-2.194026,-0.9476517,-1.4521118,-1.1170055,-1.4213773,-1.7348626,-2.0822759,-2.2768936,-2.799643,-2.6682816,-2.6539705,-2.168697,-2.3327987,-2.1493063,-2.146789,-2.4921827,-2.6216402,-2.4564738,-2.4913998,-1.300595,-0.9168965,-0.8917696,-0.87282556,-1.0762138,-2.451274,-2.3556104,-2.5131505,-2.7552824,-2.168889,-2.4245687,-2.5420713,-2.5214493,-2.7622046,-2.6984339,-2.5392992,-2.752963,-2.8292313,-2.7774973,-2.824014,-2.8519804,-2.7575443,-2.591834,-2.108454,-2.5492516,-1.9466556,-2.176714,-2.79427,-2.02383,-1.6591735,-1.2846569,-2.0755062,-2.5085063,-2.354177,-2.8880517,-1.9212049,-1.4080942,-2.2835364,-2.5958357,-2.335477,-2.3301978,-2.3462806,-2.0193512,-2.0967884,-2.6089287,-2.5772328,-2.6618004,-2.5693974,-2.6124268,-2.7318807,-2.5840058,-2.687301,-1.9493567,-2.5316522,-2.1519055,-1.578763,-2.1903148,-2.018341,-1.6547452,-1.7082487,-2.6114295,-2.4606342,-2.3595967,-2.2939024,-2.3154244,-1.7048794,-1.4175633,-1.6785747,-1.9771582,-1.5559953,-1.4194267,-1.7538135,-2.2231052,-2.1352167,-2.0590107,-2.7248342,-2.2370815,-1.7674172,-2.1930237,-2.2938387,-2.2078395,-2.6563904,-2.530992,-2.5381157,-2.4817169,-2.288824
+-1.00917,-1.436132,-1.3766078,-1.649257,-1.4304191,-1.5566496,-2.1700277,-2.0501838,-1.8985304,-2.074757,-1.9048669,-2.1064258,-1.7034811,-1.7392623,-1.749497,-1.672145,-1.6669077,-1.8032581,-1.9411696,-1.8772352,-1.766469,-1.9741257,-2.1514227,-1.9749459,-1.9720758,-1.9927148,-1.608182,-2.3607955,-2.3534377,-2.5730834,-2.4400089,-2.5098283,-2.4760237,-2.518931,-2.3978512,-2.3192232,-2.1596873,-2.3790066,-2.5221086,-2.3118732,-1.9921206,-2.2989612,-2.360371,-2.5326154,-2.2349758,-2.2964523,-2.3511012,-2.575852,-2.3851068,-2.1776676,-2.500389,-2.5584722,-2.4528303,-2.4837646,-2.4809797,-2.1597037,-2.5641022,-2.6185782,-2.7127757,-2.775603,-2.763371,-2.7925777,-2.6339326,-2.9573684,-2.80726,-2.6825633,-2.959368,-2.8454778,-2.8763838,-2.8341713,-3.0083575,-3.0347729,-2.9859319,-3.0154457,-2.8328445,-2.7275343,-3.0056472,-2.9819083,-2.9728935,-3.016656,-3.0456786,-2.4499574,-2.7922487,-2.804387,-2.6102953,-3.197657,-2.9559348,-2.8714592,-3.2012603,-3.1142263,-3.037333,-3.0028741,-3.111695,-2.9006693,-1.6984228,-2.6419024,-2.711349,-2.1825666,-2.4910657,-2.5563762,-2.8156252,-2.7702508,-2.7065527,-2.8892014,-2.747995,-2.9952772,-3.0303297,-3.0390222,-2.876669,-3.027349,-3.0817728,-3.1897807,-2.995778,-2.7111697,-3.1606839,-2.8743694,-2.9562037,-3.036283,-2.1640842,-2.7744179,-2.7731562,-2.852581,-2.917371,-2.3632972,-2.7822433,-2.7644072,-2.8597584,-2.820251,-2.945942,-2.8894577,-2.7565365,-2.7623196,-2.8054838,-2.8308122,-2.843546,-2.8367739,-2.859105,-2.8434815,-2.9047081,-2.9780445,-2.954101,-2.7965457,-2.4192028,-2.8815346,-2.9574132,-3.019437,-2.9333854,-3.0103068,-3.0520053,-2.5487084,-3.1174593,-3.193231,-3.2426999,-3.1754827,-3.0735044,-3.1752326,-3.282703,-3.2888756,-3.354971,-3.2233753,-3.1870213,-3.0630317,-3.0161908,-3.119123,-3.1920836,-3.3214145,-3.3708487,-3.4114275,-3.3629856,-2.767639,-2.5239472,-3.1781685,-3.275248,-3.2411242,-3.2820716,-3.3065124,-3.3352733,-3.333395,-3.31642,-3.171686,-2.798254,-2.8764396,-2.9302497,-2.9328315,-2.9814067,-3.060092,-3.126592,-3.2124498,-3.3067508,-3.3386035,-3.382382,-3.0905218,-3.1048508,-3.2417107,-3.1963131,-3.2064595,-3.3118432,-3.250094,-3.2280989,-3.153666,-3.0718417,-3.2565055,-2.6836708,-2.6216087,-2.762577,-2.7984586,-2.909903,-2.6355107,-2.8653917,-2.9552107,-2.9888215,-3.0442812,-3.0714643,-3.0640903,-3.1803737,-3.25456,-3.2418046,-3.2238474,-3.1145794,-3.1351452,-3.2712693,-3.247911,-2.9260838,-2.9271903,-2.9690366,-2.8117452,-2.7612004,-3.035927,-3.1597185,-3.1652884,-3.2638135,-3.2462082,-2.6499171,-2.4252052,-2.303066,-2.595479,-3.1460953,-2.865504,-2.9860983,-2.7975922,-2.7465043,-3.0062542,-2.4843779,-2.3376904,-2.6088028,-2.4981804,-2.6220095,-2.6284473,-2.706581,-2.570506,-2.3848329,-2.122066,-1.7699711,-1.6088573,-2.067003,-1.8672414,-2.4549294,-2.1456747,-1.2454437,-1.3108217,-2.424243,-1.8146682,-1.4762262,-1.3735927,-1.8175088,-2.133369,-2.3310997,-2.4063878,-2.6803434,-2.6835127,-2.6286938,-2.1830082,-2.039628,-1.823893,-1.7470127,-2.267767,-2.4758465,-2.6512544,-2.4661732,-1.7416726,-1.2574977,-0.94410574,-0.7849735,-1.0935739,-2.2252886,-2.438025,-2.7652178,-2.7928138,-2.5638452,-2.6012263,-2.6108072,-2.5752568,-2.611168,-2.593684,-2.6558309,-2.7002704,-2.5875893,-2.4444768,-2.440905,-2.5456128,-2.5160387,-2.4058752,-2.0416553,-2.4191742,-2.0398145,-2.3205986,-2.6371512,-2.2555003,-1.7672391,-1.2801365,-2.120255,-2.325541,-2.594087,-2.6677332,-2.0871902,-1.7515701,-2.5231879,-2.635457,-2.2029715,-2.4314628,-2.254976,-1.9607729,-2.12816,-2.5909052,-2.3951912,-2.3935416,-2.4853277,-2.257101,-2.5243998,-2.4086313,-2.3828998,-1.9315518,-2.1859612,-2.4775913,-2.4443276,-2.058218,-1.9372996,-1.8075151,-1.928547,-2.421929,-2.49922,-2.2486405,-2.1959596,-2.2218122,-1.8801935,-1.5782224,-1.8494501,-2.090135,-1.6357805,-1.4358054,-1.2368151,-2.0967367,-2.1530704,-2.3907094,-2.461012,-2.0447595,-1.6999866,-1.9402095,-2.1356282,-2.3679872,-2.5954623,-2.5990858,-2.454266,-2.4253685,-2.6128397
+-0.5186866,-1.1344064,-1.2581233,-1.3531202,-1.5298041,-1.4415151,-1.933415,-1.8293273,-2.033146,-1.8491659,-1.6427526,-1.697242,-1.6431841,-1.5468007,-1.535704,-1.4718757,-1.4103612,-1.3905106,-1.4165121,-1.409356,-1.3239964,-1.2994565,-1.48215,-1.4049523,-1.3584172,-1.3566473,-1.3326279,-1.3741002,-1.4255564,-1.3959283,-1.3015002,-1.3222622,-1.3470451,-1.382857,-1.4712088,-1.4868581,-1.3239645,-1.3825766,-1.4591218,-1.5173362,-1.1179605,-1.264188,-1.3725389,-1.4358014,-1.439474,-1.4414274,-1.4182005,-1.4693955,-1.4207927,-1.3878239,-1.4641889,-1.5322229,-1.52259,-1.5725855,-1.6660153,-1.6447101,-1.701569,-1.7771261,-1.8160758,-1.8116771,-1.7752922,-1.6836115,-1.7333938,-1.6969608,-1.5540854,-1.0333797,-1.4163817,-1.5757033,-1.5830668,-1.5870389,-1.6788251,-1.8413644,-1.8775578,-1.8529481,-1.7063569,-1.7949284,-1.8287005,-1.7843422,-1.78681,-1.9893063,-2.032135,-1.9841949,-1.9512926,-1.9377043,-0.83047944,-1.4905298,-1.6508831,-1.3206927,-1.2952114,-1.5417116,-1.6516587,-1.797388,-1.922674,-1.5222192,-1.7148255,-0.7057274,-1.2371032,-1.1029109,-1.2536373,-1.3551904,-1.5826485,-1.7478617,-1.5568584,-1.7260159,-1.7185963,-1.8209628,-1.6689861,-1.6828258,-1.7119716,-1.7206872,-1.8508135,-1.9305996,-1.9851996,-1.3088185,-1.5867879,-1.8555479,-1.9429282,-1.8232778,-1.116517,-1.3150774,-1.4486474,-1.437103,-1.695745,-1.7853278,-1.8644992,-1.4227854,-1.2430454,-1.6035228,-1.3097764,-1.5174762,-1.7297059,-1.9432584,-2.0108802,-2.0638404,-2.1283822,-2.2150536,-2.1196349,-2.0691495,-1.5530161,-0.8995857,-1.2930979,-1.3696765,-1.1298157,-1.4422117,-1.6485274,-1.8241686,-1.8848988,-1.8691448,-2.0130467,-1.974218,-1.8806363,-1.9185485,-1.798284,-1.9358937,-1.9367989,-2.0672092,-2.2426186,-2.2603655,-2.2584057,-2.2946851,-2.272462,-2.275796,-2.2350805,-1.8643318,-2.095945,-2.3757477,-2.2873974,-2.3215277,-2.487897,-2.4055164,-0.6350989,-1.4963994,-1.7722337,-1.9276282,-2.1250458,-2.2399726,-2.314064,-2.4388347,-2.273209,-2.1915503,-2.337906,-2.3252034,-2.348618,-2.3993766,-2.4474504,-2.5421433,-2.6736557,-2.6541142,-2.6605625,-2.689261,-2.4561677,-2.414875,-2.5708776,-2.732472,-2.685719,-2.7312713,-2.6736615,-2.6660125,-2.553347,-2.5198576,-2.4118967,-2.3930721,-2.044963,-1.4784743,-1.8976161,-2.1899173,-2.3408952,-2.3567944,-2.585598,-2.5114293,-2.5260162,-2.5940518,-2.5303717,-2.5774217,-2.5842984,-2.5816445,-2.523456,-2.5264807,-2.6142378,-2.802465,-2.904018,-3.029163,-2.790584,-2.807177,-2.894135,-2.8563435,-2.970193,-3.1011324,-3.075108,-2.994364,-3.063435,-3.046473,-1.9688009,-2.3972104,-2.5607312,-2.776751,-3.1328483,-2.8033748,-2.767604,-2.6119897,-2.7253914,-3.0007806,-1.3993939,-0.8593338,-1.859943,-1.8982286,-2.1454015,-1.609238,-1.9197396,-1.3824964,-2.1012053,-1.9754921,-1.4665254,-1.3832856,-1.7000831,-1.6819397,-2.0470612,-2.1147704,-1.6874284,-1.5811545,-2.2139137,-1.8949878,-1.5274035,-1.5546573,-1.7937297,-2.1572843,-2.189074,-1.9385006,-2.0126214,-2.163776,-2.00605,-2.1572804,-2.256135,-1.8901521,-1.7294581,-1.9179949,-1.9042896,-1.8819468,-1.9967471,-1.7955917,-1.6270629,-1.2445773,-1.0117029,-1.3157508,-1.8346056,-1.8477496,-1.8545346,-2.051443,-2.1028428,-2.1367536,-2.102776,-2.030996,-1.9478769,-2.2556005,-1.9723066,-2.1033359,-2.163709,-2.5629826,-2.5231786,-2.2972922,-2.1322298,-2.3195775,-2.0788555,-2.175601,-2.0058787,-1.9778146,-2.097529,-2.1588469,-1.9606327,-1.4339331,-1.8863176,-1.9654783,-1.9982871,-2.1578906,-2.1441069,-1.6164169,-1.9277568,-1.9329437,-1.8107693,-2.0359402,-1.9194907,-1.642064,-1.7510203,-1.9197434,-1.9125965,-1.9570283,-1.9776362,-1.98465,-1.8791865,-1.8679148,-1.9390028,-1.6664809,-1.8030776,-1.8123403,-2.0876472,-2.5191753,-2.1471126,-1.5453664,-1.561443,-1.845951,-1.8850107,-2.0735946,-2.095572,-2.5242567,-2.012908,-1.4560274,-1.5423759,-1.8126899,-1.4188243,-1.1006353,-1.7067181,-1.4768935,-1.697581,-1.7179905,-1.711758,-1.8206518,-1.6691375,-1.6205684,-1.7172223,-2.0025828,-1.8614013,-2.4187946,-2.1240816,-1.9519521,-2.1789393
+-0.48419783,-1.6695982,-2.1094718,-1.7493454,-1.7645768,-1.5843812,-1.7502102,-1.8435669,-2.1649845,-1.6375254,-1.6599921,-1.5888346,-1.582522,-1.6738023,-1.7430791,-1.6440316,-1.6062154,-1.5184857,-1.4696152,-1.3704574,-1.4788938,-1.2789363,-1.5670109,-1.5497925,-1.5425702,-1.4726549,-1.4869794,-1.4835205,-1.4658316,-1.4648851,-1.2313625,-1.4328352,-1.4091867,-1.4280757,-1.4199182,-1.6037291,-1.5541254,-1.455527,-1.388441,-1.4539891,-1.5195401,-1.4372247,-1.3925189,-1.3985884,-1.5033398,-1.4657952,-1.4469774,-1.6870152,-1.5464729,-1.5153514,-1.5143405,-1.5060157,-1.5253154,-1.5195998,-1.5388407,-1.6272285,-1.7237403,-1.7521502,-1.7214624,-1.7683083,-1.7735201,-1.554524,-1.3080276,-1.5546654,-1.6672943,-0.78321034,-1.2698007,-1.4642586,-1.5302151,-1.5625453,-1.6575004,-1.7978833,-1.649541,-1.5199703,-0.75093496,-1.3220652,-1.2687663,-1.3293194,-1.5211414,-1.6801145,-1.7418696,-1.7647628,-1.6885501,-1.6212703,-1.2902797,-1.4687375,-1.5459633,-1.4957855,-1.3587319,-1.5539812,-1.6681634,-1.7167091,-1.8076422,-1.8123604,-1.861168,-1.4260563,-0.893607,-1.0880342,-1.2799784,-1.2157866,-1.4526215,-1.6496767,-1.5117649,-1.533991,-1.5843652,-1.5600024,-1.2771084,-1.2953979,-1.4962214,-1.595138,-1.7821912,-1.3530096,-1.529205,-1.678146,-1.721686,-1.7395134,-1.5130712,-1.6397742,-1.4793736,-1.1741253,-1.3825719,-1.5225805,-1.5360972,-1.1621166,-1.4857497,-1.252742,-1.3479193,-1.5552045,-1.4072098,-1.6712697,-1.6972715,-1.7349771,-1.6604577,-1.7619475,-1.8348359,-1.9510866,-1.9622201,-1.9641093,-1.6462222,-1.3626078,-1.1586024,-1.2579829,-1.0592707,-1.38599,-1.634446,-1.8387859,-1.7499094,-1.8442591,-1.5135311,-1.713365,-1.8772819,-1.963576,-2.024746,-2.0192068,-1.953361,-2.0104167,-2.0568457,-2.111809,-2.0475745,-1.9941851,-1.9556296,-1.9718188,-2.014382,-1.6390516,-1.8150605,-1.8908896,-1.9241432,-2.0582848,-2.1797843,-2.1927593,-0.779309,-1.6017116,-1.7571629,-1.8754231,-1.9612578,-2.0013778,-2.0743544,-2.1422243,-1.8117918,-1.7922169,-1.8137497,-1.8095506,-1.8065543,-1.9337262,-2.151023,-2.1918173,-2.3140857,-2.2646935,-2.2529068,-2.3448243,-2.0996563,-2.0649464,-2.1438303,-2.2118368,-2.1599205,-2.2503228,-2.2967281,-2.2965887,-2.3251917,-2.2572236,-2.1822083,-2.1577978,-2.1878998,-1.8046653,-1.6652318,-1.89969,-2.1266556,-2.0948548,-2.1900043,-2.160296,-2.10961,-2.0849571,-2.0035508,-2.0102873,-2.1233711,-2.1557646,-2.094154,-2.1656194,-2.0982802,-2.1924226,-2.248785,-2.335559,-2.405757,-2.1073096,-2.182061,-2.1724858,-2.2995043,-2.193994,-2.1903167,-2.1823173,-2.1245563,-2.0819318,-2.0102077,-1.8644588,-2.1278486,-2.3201833,-2.338818,-2.1924787,-2.0717168,-2.0000958,-2.1664927,-2.3826842,-0.795194,-1.6704332,-2.139336,-2.0265858,-2.1016514,-1.7065672,-1.8889179,-1.89347,-1.948998,-2.265909,-1.7030745,-1.6260983,-1.8848664,-2.1755111,-2.2604892,-2.1809769,-2.0227034,-1.7978582,-2.3911896,-1.9628559,-2.0048966,-1.9921988,-2.0232234,-1.9837834,-1.9414504,-2.1100283,-1.9599718,-2.0299428,-1.8731495,-1.891687,-1.8668615,-2.1266108,-1.6646658,-1.7708708,-1.9377294,-1.9661454,-2.3221593,-2.028908,-2.192537,-1.6534898,-1.2862085,-1.4658724,-1.8954872,-2.173058,-2.1827474,-2.204915,-2.1192865,-2.0952692,-2.2104356,-2.177135,-1.9649192,-1.9270097,-1.8518989,-2.4645207,-2.936422,-3.406767,-3.1371448,-2.8721428,-2.8802803,-3.4425583,-3.2785676,-2.7703633,-3.0407453,-2.7149215,-2.7100725,-2.6340957,-2.791782,-1.9659785,-2.0644681,-2.022408,-2.1476617,-2.140471,-2.4987793,-2.0827103,-2.1990242,-2.1177835,-2.374832,-2.1410022,-2.2801123,-2.620419,-2.2417223,-2.1016662,-2.0857148,-2.2585652,-2.2658734,-2.2087045,-2.117588,-2.138173,-1.9181759,-1.9825176,-1.8780568,-1.7454308,-2.1378815,-2.6380892,-2.4003828,-1.8148657,-1.7905389,-1.9588373,-2.0051322,-2.1950016,-2.3465798,-2.4803643,-2.5376554,-2.283794,-2.1178477,-2.1389947,-2.3461528,-1.7305418,-1.8081206,-1.7728105,-2.17057,-1.9542416,-1.8101484,-2.3975635,-2.461524,-2.3659759,-2.3055544,-2.4818854,-2.5344195,-3.1308389,-3.1681476,-2.978558,-3.0649052
+-0.20334229,-1.8791035,-2.351314,-2.4013066,-2.5239408,-2.353178,-2.0693173,-2.5617273,-2.5785136,-2.5213833,-2.6528974,-1.9872178,-2.6439176,-2.7780356,-2.821022,-2.8999786,-2.728582,-2.7223308,-2.7711895,-2.8451269,-2.9510016,-2.5518837,-2.8077385,-2.8743958,-2.87655,-2.8537493,-2.8923273,-2.7016144,-2.906071,-3.0373034,-3.041954,-3.0093138,-2.9130845,-2.7521853,-2.6464305,-2.8115969,-2.8993456,-2.9954908,-2.9965692,-2.9495173,-2.9930005,-2.9119618,-2.6569128,-2.7712238,-2.851809,-2.926396,-1.6520607,-2.899501,-2.4737473,-2.9418488,-3.0003328,-2.7300062,-2.8379626,-2.9469032,-3.0536485,-3.2194405,-3.2202253,-3.1881435,-3.2398057,-3.2869568,-3.380991,-3.3064334,-3.1952972,-3.0669556,-3.16566,-2.815091,-3.0686388,-2.7448003,-2.867157,-3.0219717,-3.1595855,-3.3767686,-2.887772,-3.001093,-2.967517,-2.839576,-2.8999085,-2.7036848,-2.9360385,-2.958563,-3.1269767,-3.2516005,-3.3342242,-3.3301725,-3.339088,-3.347396,-1.4720634,-2.8190284,-2.8526282,-2.8287327,-3.0609763,-3.0720181,-3.2209196,-3.3285177,-3.2985775,-2.0931377,-2.609684,-2.8338475,-2.8515947,-3.0136106,-2.9902267,-2.5712414,-2.9329166,-2.9796774,-2.9294007,-3.113689,-3.1343532,-3.1535192,-3.2659655,-2.7837806,-2.9475615,-3.0440931,-3.0173755,-3.1717334,-3.285427,-3.0011592,-3.166483,-3.2735927,-3.2632556,-3.219556,-2.2041698,-2.3249803,-2.7822561,-2.6846185,-2.967143,-2.7956152,-3.0359933,-2.8182487,-3.0981586,-3.1449485,-3.0679564,-3.0098038,-3.075179,-3.2206697,-3.2456837,-3.3327942,-3.2947888,-2.971889,-3.0317721,-2.632687,-2.6408026,-2.812023,-2.6298933,-2.9221764,-3.0309021,-3.116508,-1.9191812,-2.9943264,-3.0085921,-3.1063204,-3.2275662,-3.287689,-3.333799,-3.4239464,-3.358994,-3.3627033,-3.4197087,-3.5333712,-3.5287333,-3.5303519,-3.5429397,-3.5480578,-3.5380552,-3.1071794,-3.046954,-3.2707577,-3.3852515,-3.5085373,-3.5557652,-3.537496,-1.6015154,-2.308676,-3.245788,-3.1330929,-3.244306,-3.3498375,-3.3763547,-3.3922,-3.4932976,-3.4948623,-3.191031,-3.267798,-3.361109,-3.4477553,-3.6380088,-3.7270916,-3.7329268,-3.7284966,-3.7290013,-3.6784716,-3.4957294,-3.6590827,-3.7397122,-3.8141413,-3.8121922,-3.8751693,-3.8755107,-3.825395,-3.1804276,-3.5130439,-3.581557,-3.592219,-3.6225832,-3.4920166,-3.4637082,-3.5112603,-3.600923,-3.7818081,-3.8070512,-3.7267895,-3.7084358,-3.7760682,-3.6886525,-3.675993,-3.7702837,-3.72761,-3.6218822,-3.6688607,-3.7662678,-3.8007464,-3.916719,-3.866566,-3.7830727,-3.71138,-3.5849156,-3.8049896,-3.8190694,-3.7021122,-3.6712961,-3.6667335,-3.7148442,-3.757527,-3.5323987,-3.004532,-3.0931616,-3.33638,-3.637,-3.5951283,-3.5188127,-3.500906,-3.4316902,-3.70875,-1.1963505,-2.1561885,-3.0645204,-2.9688869,-2.9832695,-2.337995,-2.6961656,-2.582685,-3.04663,-3.1591616,-2.689366,-2.5967045,-2.927113,-3.1609025,-2.8835187,-2.9477518,-3.1278808,-2.6635294,-3.1413684,-3.1900907,-2.9290037,-3.0075452,-3.071488,-3.0641685,-3.0981536,-3.1128974,-3.1695352,-3.1173892,-3.2188876,-3.2131946,-2.5839043,-2.9619122,-2.5420904,-2.2475133,-1.9468791,-1.9406556,-3.026043,-2.9247282,-2.8364573,-1.9653381,-1.8406827,-2.0523665,-2.7355943,-2.5376773,-2.947458,-2.990142,-2.94628,-2.9708295,-2.9660285,-2.936753,-3.0012193,-2.957851,-2.5930362,-1.9469798,-2.640336,-2.7115035,-2.8296914,-2.793045,-2.4551492,-2.726656,-2.5684485,-2.673452,-2.8268607,-2.783046,-2.853252,-2.8971481,-2.767626,-2.6221328,-2.6633024,-2.9462085,-2.1065207,-2.690937,-2.757205,-2.5845613,-2.696241,-2.8245652,-2.874137,-2.7957177,-2.1180615,-2.6920233,-2.7349257,-2.7783422,-2.909927,-2.8854012,-2.7789617,-2.3401453,-2.8340008,-2.946655,-2.8363686,-2.7200735,-2.617926,-2.9243627,-2.7878084,-2.587904,-2.7560546,-2.560683,-2.9557538,-2.9507957,-2.913195,-2.329939,-2.8692403,-2.746969,-2.937031,-2.3404403,-2.8151007,-2.6127381,-2.7885416,-2.651463,-2.6502805,-2.6197338,-2.886233,-2.7109847,-2.712646,-2.8752604,-2.6864552,-2.6969378,-2.810384,-2.5946343,-2.7291217,-2.3699968,-2.73019,-2.8746033,-2.5767303
+0.14950421,-1.0700644,-1.752937,-2.0127654,-2.229003,-2.3876119,-1.6355919,-2.450284,-2.5275114,-2.8116047,-3.032621,-1.794389,-2.8145084,-1.6932945,-2.3587816,-2.6211398,-2.5762067,-2.6979024,-2.8254807,-3.0171423,-3.0705664,-1.6775804,-2.503141,-2.7975688,-2.9511275,-3.115522,-3.1656897,-2.4537928,-3.090763,-3.283502,-3.2628,-3.1752696,-3.1821666,-2.6964266,-2.755622,-3.1356754,-3.3868434,-3.5695767,-3.2366896,-3.4495769,-3.5696914,-3.688185,-3.6230795,-3.5163162,-3.5713837,-3.6388292,-2.4833264,-1.7323043,-1.7160355,-2.1099553,-2.4519405,-2.4872718,-2.6728067,-2.887317,-3.12367,-3.208929,-3.2877703,-3.4598193,-3.532858,-3.4842572,-3.5682209,-1.8927447,-2.8352103,-3.1363325,-3.3183956,-3.4169755,-2.0906496,-2.5477974,-2.8922465,-3.0990238,-3.3116207,-3.5921066,-3.7669928,-3.641324,-3.5235474,-2.5114038,-2.860832,-2.8450732,-2.5689716,-2.7109406,-2.9511242,-3.1696682,-3.4214628,-3.5377803,-3.654995,-2.436521,-1.711914,-2.6670334,-2.9649715,-2.0524392,-2.8175726,-2.786231,-3.0532436,-3.3702095,-2.9417071,-3.0696645,-2.1124606,-2.8265045,-3.152077,-3.076469,-1.5099772,-2.082198,-2.508517,-2.7626534,-2.9556136,-3.0641975,-3.2170734,-2.8727372,-2.8426874,-1.3354806,-2.5212836,-1.4857432,-2.050624,-2.5313945,-2.775886,-2.9731646,-2.890104,-2.8939006,-3.1427388,-3.3836694,-3.4530282,-2.897154,-1.3844792,-2.7563844,-1.8985214,-2.4843755,-2.536694,-2.906726,-2.1624846,-3.05996,-2.8068063,-3.094778,-2.818854,-2.68948,-2.7946644,-3.0518475,-2.7907467,-3.413412,-2.8637695,-3.212217,-3.17008,-3.3642645,-2.6347947,-3.2457504,-3.4629269,-3.4337394,-2.5218596,-1.8931874,-2.8987472,-3.1841245,-3.3571274,-3.3417244,-3.465053,-3.5853825,-3.0588503,-3.593923,-3.6826425,-3.581524,-3.6448228,-3.698117,-3.7171373,-3.7428904,-3.7968667,-3.5146825,-1.0437716,-2.8607135,-3.1724973,-3.2219124,-3.457623,-3.6700873,-2.7388783,-2.9083366,-3.34243,-3.4456217,-3.592676,-3.7298267,-3.863473,-2.6908898,-3.1737597,-3.1468103,-3.5649245,-3.4737773,-3.433783,-3.6167202,-3.8494978,-3.9156244,-4.00322,-3.9846215,-4.0546947,-4.1762714,-4.086949,-4.038497,-3.948574,-4.02907,-4.0543733,-4.098213,-4.0457716,-4.0537176,-4.091599,-4.042829,-4.04329,-3.9828029,-3.9725246,-4.0447984,-3.8668709,-3.895151,-4.121993,-4.140404,-4.048624,-4.0862064,-4.022411,-3.9912791,-3.9837518,-4.037152,-4.012595,-4.0606165,-4.0910187,-4.0900593,-3.9619713,-3.975442,-4.2102075,-4.069648,-4.3005743,-3.9855528,-4.033165,-4.1332383,-4.149544,-3.9955816,-4.114029,-4.207573,-4.0739956,-4.053426,-4.0160065,-3.5091364,-3.6390975,-3.8284235,-3.9548168,-4.1416616,-4.095425,-3.937941,-3.754128,-3.9549785,-2.69497,-1.6225941,-2.9418104,-2.9410899,-3.3100185,-2.4154687,-1.2385994,-1.2956175,-2.1819139,-2.536724,-2.344709,-2.29561,-2.7179317,-2.8197172,-2.408073,-1.8674098,-2.4284909,-2.4298403,-2.7231658,-2.7491875,-1.548129,-2.1290615,-2.4875646,-2.739013,-2.9317837,-3.034284,-3.149054,-3.3061588,-3.4629211,-3.4772987,-2.8343537,-2.8605645,-2.683768,-1.1896404,-1.1248306,-1.2560508,-2.0965486,-2.3531528,-2.0813677,-1.6269001,-1.6887797,-1.7737482,-2.1923869,-2.5023289,-2.7823358,-2.9192204,-3.0162268,-3.092908,-3.089098,-3.1433516,-3.2427614,-3.2025776,-2.0062432,-1.2614982,-1.0373577,-1.9077507,-2.4391913,-2.5969167,-2.3392644,-2.5502648,-2.5786538,-2.622686,-2.6953776,-2.8241823,-2.9777064,-3.0535707,-2.519222,-2.7570512,-2.9819822,-3.0662556,-1.8727435,-1.782123,-2.3631148,-2.3897884,-2.6980505,-2.935002,-2.9555202,-2.9297502,-2.3402634,-2.6652486,-2.720678,-2.9255242,-3.1874824,-3.1845937,-2.2753158,-1.7441934,-2.4313412,-2.7626014,-2.845251,-2.6352346,-2.851669,-1.3468558,-2.371143,-2.059103,-2.4559555,-2.5320382,-2.967596,-3.0974321,-3.1561756,-2.5508494,-2.9012074,-2.5787883,-2.8588314,-2.5905368,-2.4574716,-2.35643,-2.6273265,-2.631244,-2.7369652,-3.1455984,-3.1508212,-3.1314,-3.2588387,-3.3379278,-3.3168902,-3.3128774,-3.4260373,-3.1070712,-3.3048637,-3.423359,-3.4388895,-3.457031,-0.7672632
+-0.4347765,-0.79723984,-2.0721793,-2.0990486,-2.1922402,-2.1565518,-2.2222269,-2.356041,-2.3717122,-2.5992446,-2.6187696,-2.677809,-0.7464028,-1.4508914,-2.0602825,-2.176054,-2.2211657,-2.344346,-2.4859772,-2.6791358,-2.7699506,-1.9958867,-2.4792762,-2.6956341,-0.764803,-2.0616426,-1.4822025,-1.7447397,-2.0472326,-2.1600716,-2.3195586,-2.4930782,-2.5103893,-2.364193,-2.4826784,-2.4974277,-2.684009,-2.8812551,-3.0037527,-3.105032,-3.0759492,-3.1579432,-3.1762033,-3.1765466,-3.1688395,-3.2197237,-1.1406642,-2.2156062,-2.5428429,-1.3948853,-2.087013,-2.3065672,-2.3889296,-2.5540013,-2.7100878,-2.77846,-2.851019,-2.8878624,-3.0133605,-3.046918,-3.0807233,-3.0871434,-3.1072035,-3.115886,-3.010508,-2.37389,-0.76167387,-1.9242544,-2.1748965,-2.5011659,-2.6247082,-2.6172767,-2.2962508,-1.4499965,-2.2439065,-2.4454553,-1.3778409,-2.102473,-2.4330812,-2.468214,-2.6364005,-2.7352343,-2.8075306,-2.8791528,-2.9293745,-2.9777884,-1.2101983,-2.4205961,-2.430396,-1.3920268,-2.0749948,-2.31275,-2.357294,-1.2473294,-1.9550763,-2.0553024,-1.7737869,-2.2129502,-2.4494073,-2.5962908,-1.8418628,-2.2419777,-2.132801,-2.3687496,-2.2109327,-1.3161699,-1.7167574,-1.8923421,-1.9868473,-2.0841649,-2.2631307,-2.0275,-2.2802818,-2.4721723,-2.6134863,-2.63704,-1.9477198,-2.13694,-2.40566,-2.4932663,-2.5622225,-1.7903217,-2.0012407,-2.3362436,-2.5365496,-2.1324563,-1.7527218,-2.294578,-2.0231433,-1.9665278,-2.0768962,-1.6713386,-2.2531831,-2.382338,-2.350573,-2.5662656,-2.4586725,-2.477497,-2.706336,-2.3669267,-2.482822,-2.080316,-2.0491002,-2.3361294,-2.3800719,-1.7254862,-2.2258725,-1.5990206,-2.1587632,-2.325158,-2.2937756,-2.6150217,-2.7633755,-2.2849424,-1.4564894,-1.8759547,-2.2126005,-2.4077485,-2.3844109,-2.5670214,-2.6875596,-2.7732277,-2.8205242,-2.8167768,-1.6569644,-2.1597075,-2.3751583,-2.5552242,-2.7130103,-2.8794174,-1.5006009,-2.0358903,-2.3167477,-2.4852197,-2.766986,-2.9229276,-2.9530663,-2.9722111,-2.7865267,-2.8216753,-2.8676322,-2.956934,-3.0784721,-3.1146026,-3.1820302,-3.2501254,-3.2845826,-3.3135026,-3.356881,-3.2934604,-3.3265576,-3.3639858,-3.3627138,-3.3668945,-3.3744917,-3.3675244,-3.3745267,-3.3603754,-2.5206847,-2.8747282,-3.0025427,-3.1238065,-3.2061872,-3.2512786,-3.277211,-3.3174126,-3.4035099,-3.4234166,-3.4022226,-3.3963194,-3.3985698,-3.4021685,-3.4030547,-3.3969207,-3.4371252,-3.210846,-3.289701,-3.3156877,-3.3713436,-3.3903496,-3.4251947,-3.421167,-3.4630635,-3.4231706,-3.455572,-3.493967,-3.4984221,-3.5229907,-3.4913936,-3.5311742,-3.4979894,-3.4669971,-3.4624858,-3.1775484,-3.172123,-3.4175138,-3.467316,-3.493903,-3.4769335,-3.4536011,-3.372804,-3.4028678,-2.9020827,-2.604518,-1.8767822,-2.8111567,-2.786514,-2.892454,-1.142295,-1.6738888,-2.3438601,-2.5868568,-2.665191,-2.5467637,-2.8559127,-2.7416334,-2.3607538,-1.7318572,-2.3347583,-2.5470397,-2.5476182,-2.6768546,-2.142233,-2.483673,-2.6782117,-2.5961611,-2.5979886,-2.6947327,-2.6673133,-2.716299,-2.8001218,-2.6519141,-2.4359615,-2.7976766,-2.8632205,-2.1282513,-2.6332183,-1.4393889,-2.2892184,-2.5016365,-2.4653194,-1.8707775,-2.0187087,-1.9967142,-2.475121,-2.557547,-2.5725307,-2.5895042,-2.5982895,-2.6084414,-2.5829906,-2.623181,-2.6026976,-2.6327605,-1.8630161,-1.3129108,-1.5521636,-2.2537782,-2.5275462,-2.5385547,-2.5498686,-2.7129683,-2.7417588,-2.6269095,-2.7300506,-2.7622716,-2.8211043,-2.8247004,-2.873977,-2.8094978,-2.8163238,-2.90637,-2.8171535,-0.9486428,-2.185071,-2.4277647,-2.4675457,-2.5293236,-2.6263742,-2.631155,-2.6023679,-2.6920638,-2.7127764,-2.6580315,-2.7708702,-2.8207345,-2.857472,-0.8625628,-2.1014524,-2.3872695,-2.4912882,-2.5507185,-2.5573845,-2.6366546,-2.7592728,-1.7678195,-2.6388226,-2.5121346,-2.6558416,-2.7008212,-2.8167071,-2.7703865,-2.749064,-2.9071636,-2.9074469,-3.088507,-1.344325,-2.4229984,-2.668786,-2.4906769,-2.6965418,-2.7881007,-2.8899934,-2.893365,-2.9807463,-3.0264266,-3.0224912,-3.0876493,-3.098781,-2.8120017,-2.5588918,-2.783152,-2.9510045,-3.0664062,-1.9464976
+-0.13389298,-0.53522855,-0.5908502,-0.5118179,-0.4610423,-0.51763815,-0.46975002,-0.5312512,-0.4874682,-0.47448662,-0.3865871,-0.47901866,-0.39639246,-0.55463135,-0.8629997,-1.0782785,-0.9998911,-0.810937,-0.6737749,-1.0192548,-0.8409241,-0.5592838,-0.58349264,-0.6798201,-0.5985169,-0.62832004,-0.59245676,-0.6145152,-0.68408376,-0.7769149,-0.62477285,-0.60045695,-0.8771619,-0.99087185,-0.85392255,-0.81509644,-0.78227884,-0.627039,-0.6459783,-0.54950523,-0.5885088,-0.7932468,-0.78618544,-0.8924369,-0.5081229,-0.49890456,-0.5297114,-0.59044933,-0.5397237,-0.5088235,-0.5853817,-0.5971239,-0.55209166,-0.6575172,-0.8801818,-1.018308,-0.7802753,-0.9494596,-1.2210373,-1.2433685,-1.0345994,-1.1148579,-1.19951,-1.108028,-0.888266,-1.1527478,-1.6023682,-0.990789,-0.89217144,-0.90757895,-0.7931319,-0.9961695,-0.9088202,-0.91970766,-0.8990323,-0.8584905,-0.8074031,-0.82342726,-0.7946372,-0.71515083,-1.0820565,-0.9208402,-0.90733963,-0.952121,-0.908253,-1.0094727,-1.00934,-1.322277,-1.0297321,-1.1226062,-1.0674922,-1.1650517,-1.1398431,-1.1016369,-0.99838907,-1.2652446,-1.199632,-1.2854072,-1.0980134,-1.1454872,-1.101601,-1.0528646,-1.0416862,-1.1290196,-1.2031397,-1.0883075,-1.1469582,-1.063445,-1.311862,-1.0671475,-1.0920957,-0.9874663,-1.2116703,-1.169614,-1.2479595,-1.2933861,-1.1693863,-1.1294088,-1.0107813,-1.007192,-0.99460286,-0.9699952,-0.95530444,-0.88799804,-1.1184591,-1.1024312,-1.1142186,-1.2358127,-1.2187712,-1.1140506,-1.1640975,-1.0248471,-1.064029,-1.1515664,-1.0544516,-1.0439148,-1.1817327,-1.224214,-1.0012442,-0.95033616,-0.90067065,-1.4477134,-1.4056019,-1.1407146,-1.2176394,-1.041818,-1.2539352,-1.3583605,-1.031737,-1.2362089,-1.026308,-1.2036668,-1.2387928,-1.0883838,-1.0340744,-1.1392807,-1.091766,-0.9887931,-1.148744,-1.2285866,-1.4586372,-1.2019602,-1.3193653,-1.2737831,-1.3501369,-1.5910493,-0.9595067,-1.0923575,-0.9927171,-1.348541,-1.2478219,-1.1800237,-1.2791766,-1.1454545,-1.0356606,-1.0145301,-0.9514591,-0.9506207,-1.1120774,-1.2776964,-1.1284193,-1.2649453,-1.2205046,-1.1938664,-1.2350316,-1.1160976,-1.1064838,-1.1140937,-1.1646627,-1.2156111,-1.2457236,-0.8477154,-0.9877848,-1.2312104,-1.4283385,-0.96522886,-0.979721,-1.1742094,-1.4408292,-1.04682,-1.2578169,-1.1486528,-0.8655582,-0.80327016,-0.69511646,-0.8056644,-0.7992138,-0.710134,-0.51317424,-0.4201315,-0.67584455,-1.202236,-0.80376786,-0.8100154,-1.0456597,-1.092676,-0.9121313,-0.76319844,-0.8831862,-0.9344701,-1.1494113,-1.1512552,-0.83643717,-1.022754,-0.75657004,-0.90212744,-0.91500837,-0.8208454,-0.858259,-1.1050737,-1.020057,-0.7944332,-0.53795356,-0.23411223,-0.33231634,-0.34691998,-0.44542417,-0.65502685,-0.55751574,-0.4365072,-0.40887973,-0.500843,-0.7828999,-0.6478478,-0.8743233,-0.77183825,-0.5345003,-0.73056084,-0.7819404,-0.68304366,-0.8608393,-0.9381742,-0.9961396,-1.1121652,-1.1115276,-1.101761,-1.1318682,-1.12501,-1.1042314,-1.0539951,-1.1328677,-1.0809773,-1.1506394,-0.62356406,-0.5075445,-0.62379795,-0.7454265,-0.8878281,-0.9462232,-0.4035662,-0.61263686,-0.71714,-0.5883873,-0.67063254,-0.8634045,-0.84323245,-0.7577555,-0.9014334,-0.7526661,-0.72268444,-0.700367,-0.8725687,-0.9725115,-0.9301154,-0.810043,-0.7683662,-0.8020075,-0.95381606,-0.9955309,-0.9426319,-0.7655947,-0.87607414,-0.836042,-0.9579347,-0.95679784,-1.0429517,-1.0152854,-1.2016088,-1.0168875,-1.0287051,-1.0279225,-1.0539166,-1.0989805,-1.11891,-0.97191805,-0.94329506,-0.97951263,-0.9831036,-0.9097644,-0.926592,-0.98320526,-0.9063986,-0.9540412,-0.84261787,-0.7944283,-0.7672633,-0.7504592,-0.68406826,-0.72648424,-0.69726634,-0.7917394,-0.7143435,-0.730662,-0.803317,-0.96595114,-1.057341,-0.85774726,-0.7454707,-1.0156825,-1.1399056,-0.9546961,-0.8083989,-0.8355471,-0.7817244,-0.80902267,-0.9236129,-0.94479495,-0.8721785,-0.95106846,-0.71660167,-0.74136466,-0.73264307,-0.8759449,-0.96830755,-0.9061442,-0.865259,-0.81760377,-0.7945774,-0.7489119,-0.6963604,-0.6563422,-0.6864683,-0.7337648,-0.84326595,-1.0241296,-0.81257254,-0.8275278,-0.8202913,-0.8894155,-0.89768857,-0.8720536,-0.7770688,-0.7860411,-0.81368,-0.80974174
+-0.3610315,-0.7123033,-0.6531866,-0.73179686,-0.9248096,-1.1857959,-1.1979035,-1.1490816,-1.0760967,-1.2593455,-1.2626191,-1.2199364,-1.0652587,-1.0752833,-1.1975521,-1.1727474,-1.219906,-1.2873334,-1.0187652,-0.5918196,-0.40021607,-0.91010326,-0.785804,-0.6280444,-0.60290545,-0.8741369,-1.0671344,-1.0390435,-0.85253984,-0.74238735,-0.69238144,-0.48758343,-0.9950953,-1.7241105,-1.3885273,-1.2313743,-1.685161,-1.5235759,-1.3597761,-1.2406373,-1.2685436,-1.3715873,-1.6572732,-1.3731824,-1.1410884,-1.1092157,-1.158594,-1.1801183,-1.3599588,-1.4157897,-1.4934567,-1.5024847,-1.3176081,-1.3301288,-1.8387977,-1.520935,-1.5907215,-1.5201862,-1.812371,-1.6708995,-1.7900532,-1.5917705,-1.6458448,-1.6111803,-1.6312736,-1.5878159,-2.172929,-1.8126854,-1.6938671,-1.6758232,-1.6086823,-1.7487606,-2.0255222,-1.7180147,-1.6903944,-1.6420512,-1.545801,-1.5334853,-1.5635008,-1.2988828,-1.4621173,-1.5192881,-1.4126354,-1.5044755,-1.4817249,-1.4501611,-1.0585812,-1.6923702,-1.8147286,-1.7119871,-1.4316682,-1.7087901,-1.6273717,-1.6950662,-1.7134956,-1.7143643,-1.4166714,-1.6098663,-1.651745,-2.498526,-1.8061727,-1.7416576,-1.8186969,-2.0460396,-2.1598938,-2.2791128,-1.842273,-1.8129134,-1.6405972,-1.6635844,-1.7361344,-1.5099367,-1.6636242,-1.6245332,-1.4218107,-1.557531,-1.663787,-1.627336,-1.6063141,-1.5025924,-1.4769198,-1.4805692,-1.4917067,-1.4849912,-1.5068802,-1.4552208,-0.8293312,-1.3912762,-1.5158893,-1.5286793,-1.5052041,-1.5005459,-0.84967375,-1.7252591,-1.5990677,-1.4738146,-1.6177282,-1.7366271,-1.6051354,-1.6890119,-1.3853065,-1.4901563,-2.262164,-1.9998931,-1.7334796,-1.720615,-1.7884814,-1.7396048,-1.7670145,-1.4576434,-1.5721968,-1.572872,-1.62657,-1.7030584,-1.7265505,-1.7452203,-1.7640516,-1.7308384,-1.4256988,-1.617069,-1.5441688,-1.8303589,-1.8034524,-2.1330726,-1.8458198,-1.8298852,-1.7660238,-1.8163592,-1.8821298,-1.7541125,-1.5010307,-1.7850407,-1.9134469,-1.830026,-1.6780849,-1.6462947,-1.596727,-1.5556351,-1.0767157,-1.6547104,-1.7153968,-1.8340635,-1.8769587,-1.8227459,-1.520351,-1.6377672,-1.7160801,-1.7938826,-1.6199075,-1.4925914,-1.6117647,-1.5782727,-1.5124139,-1.7154714,-1.4378107,-1.7541326,-1.5921733,-1.797525,-1.901682,-1.8143598,-2.1516924,-1.9234031,-1.7550086,-1.621914,-1.4053118,-1.5320097,-1.5909355,-1.345005,-1.0973804,-1.0168211,-0.90906394,-1.5161909,-1.5106186,-1.3740492,-1.5873004,-1.8277789,-1.7377993,-1.4069048,-1.66523,-1.7575866,-1.9758645,-1.9701844,-1.5932522,-1.7488642,-1.5868592,-1.358704,-1.624128,-1.7466756,-1.7360729,-1.7924728,-1.642792,-1.8909224,-1.4023327,-0.6875561,-0.5570385,-0.69452745,-0.9109077,-1.047506,-1.0622705,-1.0934347,-0.9841004,-0.9035348,-0.65965444,-1.0778488,-0.97752327,-0.74435693,-0.58961254,-0.6291191,-0.77772516,-0.86271274,-0.9790471,-1.1658593,-1.2557431,-1.1717074,-1.2158602,-1.3115201,-1.2582622,-1.19359,-1.1037182,-1.2300233,-1.3306682,-1.1878594,-1.2251363,-1.2373956,-1.4188709,-1.3094274,-1.2700788,-1.3589921,-1.1349407,-1.019311,-1.4203793,-1.1931316,-1.2443264,-1.4510998,-1.1609199,-1.3220268,-1.4536077,-1.4584194,-1.3915557,-1.2027612,-1.1202396,-1.3199036,-1.2435409,-1.3974069,-1.2823441,-1.3742586,-1.2327427,-1.25553,-1.3376237,-1.2714015,-1.4387486,-1.2179099,-1.261065,-1.17637,-1.1344047,-1.132486,-1.401328,-1.3660194,-1.3802963,-1.2857646,-1.3726364,-1.4212674,-1.4578168,-1.3820463,-1.2205409,-1.287422,-1.4773637,-1.3953426,-1.2912977,-1.3932662,-1.4525,-1.2339627,-1.2619241,-1.2920533,-1.2070924,-1.1540128,-1.3451709,-1.2823619,-1.3296345,-1.289976,-1.5713383,-1.3041471,-1.2312173,-1.2036388,-1.1767324,-1.0862314,-1.2149913,-1.1679636,-1.3925894,-1.3466868,-1.4308866,-1.2740182,-1.3599523,-1.2168957,-1.4204569,-1.1694833,-1.3213648,-1.1055154,-1.2085379,-1.2982446,-1.3967639,-1.5262117,-1.5284586,-1.3629426,-1.4320284,-1.2254608,-1.1712954,-1.1931776,-1.2205852,-1.2752146,-1.2763355,-1.3549349,-1.2070366,-1.3402977,-1.3636814,-1.3466111,-1.4283134,-1.4008216,-1.142403,-1.3707787,-1.4344777,-1.1531225,-1.1404128,-1.0200329,-1.033137
+-0.883683,-1.2549267,-1.4006072,-1.5116539,-1.5831414,-1.7117648,-2.0235996,-1.5490266,-1.6487924,-1.5440995,-1.4729191,-1.6233739,-1.7171104,-1.5853516,-1.7210082,-1.9270579,-2.0739694,-2.2040734,-2.148603,-1.9139532,-2.2863116,-2.7665298,-2.3576074,-2.3769689,-2.4323087,-2.02769,-2.196912,-2.4166238,-2.8701174,-2.4992812,-2.1486778,-2.5433037,-2.3770387,-2.773255,-2.5589447,-2.6288893,-2.8707433,-2.910923,-2.5308027,-2.491934,-2.572679,-2.6862745,-2.0629559,-1.8503928,-2.1451864,-2.6707437,-2.5867336,-2.4438865,-2.5115309,-2.4522636,-2.587706,-2.6352801,-2.5173564,-2.680468,-2.7549148,-2.7515528,-2.8261805,-2.847588,-2.7419267,-3.016755,-3.1408238,-3.0263805,-3.0889058,-3.1591918,-3.1342359,-1.3696259,-2.310941,-2.9899137,-2.792409,-2.7239585,-2.9321673,-3.0468292,-2.8587642,-3.233519,-3.135615,-2.6971636,-1.589172,-2.410099,-2.9400172,-2.8684793,-3.0002646,-3.140256,-3.194427,-3.1163352,-3.1483319,-3.2258215,-3.0670748,-3.3073251,-3.3495057,-3.1314654,-3.2262268,-1.8377744,-2.8589978,-3.0331733,-3.1137078,-3.1804085,-3.2744806,-3.2855668,-0.8631982,-2.6546397,-2.8735802,-2.8781984,-2.8483353,-2.7459445,-1.8982475,-2.8466568,-2.8832903,-3.0779383,-3.1583362,-3.2373128,-3.3139203,-3.0657725,-3.2334456,-3.354667,-2.9268224,-3.1160717,-3.289271,-3.0323267,-3.1197724,-3.205246,-2.1015103,-2.2034118,-2.8274908,-3.1101646,-3.2588034,-3.2210422,-3.2258413,-3.4029698,-3.4712553,-3.50099,-3.3734872,-3.3851342,-2.8496819,-2.631528,-1.6898998,-2.8591058,-3.1114383,-1.5040733,-2.5499768,-2.6107378,-2.8775392,-2.8271604,-2.8371348,-2.9998918,-3.109983,-3.0338335,-2.9569812,-3.190471,-2.3716826,-2.854485,-3.1453161,-3.2923331,-3.2796566,-3.1984901,-3.1772594,-3.3054185,-3.4524522,-3.3901944,-3.3397796,-3.362036,-2.1494012,-3.0713062,-2.4554625,-3.1205354,-3.3894854,-3.425508,-3.4683127,-3.462317,-3.5092912,-1.3881452,-2.6021905,-3.2161858,-3.345025,-3.480507,-3.4978924,-3.4184425,-3.3669212,-3.5724754,-3.1602995,-3.3594108,-3.5850742,-2.7768927,-2.8157277,-2.7068756,-3.1682932,-3.2924256,-3.2062304,-3.1473298,-2.795093,-3.0680575,-3.170378,-3.443246,-3.4458299,-3.614983,-3.5446339,-2.3076115,-3.1664934,-3.3348649,-2.2810345,-2.8498418,-3.0181718,-3.3724227,-2.4267719,-3.0500464,-3.1659055,-3.3885603,-3.2144308,-3.425187,-2.5649223,-2.4392514,-2.9511414,-3.3207726,-3.330105,-3.351167,-3.3749857,-2.961738,-2.4680147,-2.9127488,-3.3299685,-3.3503265,-3.4544597,-3.670506,-3.3313107,-3.5726511,-3.6165314,-3.3985705,-3.33437,-3.714573,-3.8801646,-3.8627543,-3.7177463,-3.6907444,-3.1252983,-3.3640032,-3.198091,-2.9662983,-2.5017202,-3.0236194,-3.3692389,-3.2832284,-3.0369277,-2.95185,-3.0411258,-3.185954,-3.1864455,-3.3442488,-3.5245333,-3.273807,-2.923321,-2.7517161,-2.9485474,-3.0243058,-3.0825944,-2.8647904,-1.6385611,-1.7676017,-1.7603804,-1.5748572,-1.8070668,-1.5402561,-1.308327,-1.538115,-1.4003786,-1.4021808,-1.5357503,-1.553528,-1.4760151,-1.437745,-1.1294988,-1.5158771,-1.4442211,-1.3036686,-1.4547313,-1.6796248,-1.379059,-1.3457102,-1.1177634,-0.90094644,-1.0362058,-1.161392,-1.132435,-1.1777191,-1.3427473,-1.0274535,-0.71409863,-0.9670903,-1.0379747,-0.7543577,-0.86629605,-0.9274773,-1.0977029,-0.79571444,-0.9788534,-0.9766931,-1.2389336,-1.4322256,-1.6515318,-1.8918378,-2.1547012,-2.2192414,-2.2513475,-2.2711039,-2.460816,-2.306837,-2.059294,-1.7114424,-1.862023,-1.8983654,-1.8695378,-1.681976,-1.6824381,-1.4680306,-1.000722,-0.933762,-0.90746295,-0.9406351,-0.98962027,-1.3209971,-1.1391574,-1.1492947,-1.5915252,-1.3827739,-1.2594172,-1.6459442,-2.1184292,-1.769606,-2.363175,-2.6557992,-2.7541213,-2.436059,-2.324528,-2.043431,-2.036443,-2.675389,-2.0242908,-1.3987741,-1.5369836,-1.7481588,-1.6452706,-2.3507838,-2.6535046,-2.731185,-2.5715678,-2.5553832,-2.7496378,-2.7437065,-2.4901206,-2.4805675,-2.552147,-2.4034407,-2.316775,-2.505721,-2.2932582,-2.6411366,-2.5020878,-2.4394736,-2.2208767,-2.6626754,-2.155178,-2.3510427,-2.7131977,-2.7070553,-2.1261482,-0.60297775,-2.1707954
+-0.2251508,-1.2540914,-1.3575339,-1.7341071,-1.7061886,-1.661152,-2.0956984,-2.2917542,-2.0619206,-2.168064,-1.8041179,-2.112152,-1.7994691,-1.8727704,-1.8322287,-1.9196922,-2.0153918,-2.1262858,-2.1981988,-2.0933013,-1.9821223,-2.1362789,-2.128389,-1.9514917,-2.109758,-1.7581986,-2.0916317,-2.0281196,-2.1011045,-2.0066597,-1.9834021,-1.8576342,-2.1622796,-2.116577,-2.2625256,-2.1235116,-2.135523,-2.1369562,-2.082132,-1.8308195,-2.0124612,-2.0081449,-1.7866458,-1.9651011,-2.0583324,-1.9225094,-2.0652614,-2.0088892,-1.9225305,-1.9375352,-1.6611469,-2.0803692,-1.9663795,-2.05478,-2.2266023,-2.2296662,-2.4626503,-1.432153,-1.7389375,-1.699069,-1.9643933,-2.1313107,-2.123746,-2.5052774,-1.5172752,-1.487072,-1.8634268,-2.0308962,-2.187396,-2.46235,-2.092852,-2.5863104,-2.7125106,-2.670289,-2.8460503,-1.6618108,-1.5933286,-2.0912642,-2.3862135,-2.744293,-2.8310452,-2.9177973,-3.0911958,-0.49099222,-1.7237638,-1.9358171,-2.1901593,-1.6715527,-2.2121253,-2.3297176,-2.6162224,-2.6677094,-2.8362632,-3.0086153,-2.7697072,-2.4819515,-2.448151,-2.6513977,-2.8638737,-2.9542494,-2.9919858,-3.0707107,-3.0528793,-3.040203,-1.7919208,-2.5144715,-2.7580068,-2.9851098,-1.3654906,-2.344298,-2.7378025,-3.0086105,-2.2865677,-2.7235339,-2.8634496,-3.0231683,-3.254233,-3.2516937,-3.1707344,-2.3375216,-2.13424,-1.972627,-2.6071303,-2.7005818,-2.9693036,-3.0914226,-3.1650803,-3.1945481,-3.5975652,-3.6088862,-3.0694242,-2.104219,-2.5920796,-2.7383432,-1.7523067,-1.6676341,-2.046857,-2.027916,-1.9775645,-1.9824067,-2.1202207,-1.7763755,-1.8283052,-2.2267842,-2.608879,-2.7936435,-1.5677829,-2.1868954,-2.204662,-2.6005366,-2.8744183,-3.3084543,-2.7763915,-3.1113057,-3.4225998,-3.5937173,-3.6764576,-3.608078,-3.456065,-3.442407,-3.4376779,-1.3413029,-1.8084794,-2.2236066,-2.70891,-3.0294275,-2.9940743,-3.1043792,-3.3329892,-2.2606916,-2.3329184,-2.697771,-3.0639179,-3.3676116,-3.4820728,-3.555829,-3.5491476,-3.6599712,-2.474041,-2.98203,-1.6361189,-2.4718866,-1.856583,-2.0924597,-2.165784,-2.3042018,-2.518665,-2.7301168,-3.0247958,-3.1750004,-3.2322938,-3.2113502,-3.2502356,-3.4104831,-3.5308022,-3.1638365,-3.2428403,-3.466339,-3.3886633,-2.9278846,-3.221367,-3.0971313,-1.5566586,-2.2667563,-2.4722955,-2.5770082,-2.843906,-2.828012,-2.8271346,-2.7811117,-2.846116,-2.9447267,-2.9199595,-2.861867,-3.0626788,-3.1957507,-3.2172968,-3.219735,-3.3080716,-3.3535058,-3.3074222,-3.0479822,-2.8242261,-3.2853792,-3.307065,-3.1876905,-3.2734008,-3.364674,-3.4197268,-3.3365026,-3.3002949,-3.3652017,-2.625069,-3.2476275,-2.8441157,-2.8496778,-3.188057,-3.2170131,-3.2654703,-3.3278592,-3.3348577,-3.3155544,-2.7071376,-2.8617747,-2.9510908,-3.0914688,-3.1786246,-3.162633,-2.7990153,-2.1602888,-2.7154765,-2.1691613,-2.231746,-2.2087593,-2.2871935,-2.0586452,-2.1600082,-2.0113804,-2.1789494,-2.1153684,-1.3666577,-1.2556288,-1.198927,-1.4727755,-1.8156332,-2.0533648,-2.1273391,-2.3594108,-2.2587507,-2.5092573,-2.3535354,-2.2015553,-2.3570943,-2.2333446,-2.2370355,-2.4187303,-2.616685,-2.2519011,-1.9457564,-1.8372656,-1.8008717,-1.9060076,-1.9745632,-1.8745097,-1.9943751,-2.1021504,-2.0676868,-2.1148005,-2.2581782,-2.065061,-2.519158,-2.430142,-2.7426195,-2.759809,-2.1061835,-2.5163875,-2.4799724,-2.3029804,-2.3803763,-2.4832788,-2.6490932,-2.4482558,-2.2425632,-2.4432952,-2.3930664,-2.6235876,-2.8355064,-2.5134935,-2.7011375,-2.5954227,-2.124616,-2.5854821,-1.8406655,-2.6442316,-2.0315819,-1.9271506,-2.3763998,-2.2959409,-2.3347485,-2.287935,-2.5030067,-2.2756083,-2.408754,-2.8186631,-2.8784418,-2.7695775,-2.7759647,-2.742582,-2.779436,-2.659285,-2.4064255,-2.2294164,-2.476028,-2.5837197,-1.6561037,-2.018797,-1.7991416,-1.690694,-1.515848,-2.3117518,-2.2222886,-2.275455,-2.4016213,-2.3435636,-2.0485249,-2.055652,-1.8592545,-2.2041044,-2.1763794,-2.1811829,-2.2296867,-2.591715,-2.5547676,-2.6423333,-2.677682,-2.2723055,-1.9522204,-2.305338,-2.526856,-2.3714015,-2.4134264,-2.1053617,-2.1180625,-2.1589184,-1.5143229
+0.032695886,-0.19698681,-0.57819027,-1.0477108,-1.0150257,-0.993859,-1.3751589,-1.0942101,-1.0023428,-1.2561469,-1.4612163,-1.4834236,-1.2422034,-1.2899712,-1.2173716,-1.1695234,-1.115713,-1.1597949,-1.2043992,-1.0772434,-1.1496264,-1.1105179,-1.1083244,-1.0857571,-1.2312158,-1.2842201,-1.4219159,-1.4022381,-1.4520872,-1.4971112,-1.446537,-1.4352487,-1.4670886,-1.3633797,-1.3121849,-1.362087,-1.3556739,-1.3052568,-1.2909216,-1.4339422,-1.3369333,-1.3965555,-1.3750206,-1.3699154,-1.3859723,-1.29219,-1.5071033,-1.6826078,-1.544135,-1.468543,-1.5244292,-1.5775111,-1.5652598,-1.517058,-1.5461522,-1.5779581,-1.6126679,-1.6319844,-1.628625,-1.5603017,-1.6771276,-1.727624,-1.6448302,-1.5340912,-1.4203222,-1.4097039,-1.6040493,-1.6570882,-1.5728229,-1.5913454,-1.9230565,-2.0301976,-2.042571,-1.809447,-2.0306146,-2.0990102,-1.930168,-1.9938811,-2.008688,-2.1521573,-2.323011,-1.9122443,-1.6616426,-0.91770667,-1.318963,-1.6494573,-1.8371675,-1.7470775,-1.9314188,-1.8763448,-1.8578984,-1.960194,-2.055515,-1.5999494,-1.2439755,-1.3317393,-1.4161929,-1.4980646,-1.5045288,-1.688616,-1.852336,-1.972205,-1.7838935,-1.9717289,-1.8240068,-1.608106,-1.7384496,-1.9605576,-1.9279172,-2.0296693,-2.14242,-2.2604203,-1.8875386,-2.0181675,-2.142878,-1.9587516,-1.5911883,-1.8847214,-0.7647484,-1.4108053,-1.6327757,-1.8199631,-1.9533391,-2.0397928,-2.1348636,-2.1734123,-2.223827,-2.196752,-2.3224194,-2.3232453,-2.1392074,-1.7614477,-2.04828,-2.2246478,-2.2400835,-1.9139447,-1.8513726,-1.3358732,-1.0333323,-1.4162384,-1.6682981,-1.569497,-1.2846214,-1.6321696,-1.9021777,-2.142765,-2.174833,-2.2375789,-2.382275,-2.3487756,-2.332228,-2.503858,-2.4117532,-2.2241964,-2.2664325,-2.5151749,-2.6852071,-2.7533002,-2.6800442,-2.52385,-2.528402,-2.4336336,-2.1285655,-2.0714536,-2.4952884,-2.712494,-2.7877598,-2.7961526,-2.8304505,-2.3674564,-2.1126869,-2.442794,-2.656701,-2.849465,-2.9319286,-2.9380434,-2.9383798,-2.9269671,-2.5328536,-2.4925175,-1.6344618,-1.3719405,-1.4629602,-1.6925585,-1.8319513,-1.9758128,-2.2230406,-2.4528413,-2.5865464,-2.585105,-2.5545254,-2.4788942,-2.599963,-2.8689528,-2.8626628,-2.6114829,-2.70299,-2.8610697,-2.7613235,-2.745302,-2.6866345,-2.7217805,-1.7227463,-1.2089895,-1.7915237,-1.8698124,-2.041748,-2.1454768,-2.205286,-2.26607,-2.2313843,-2.3061783,-2.2609003,-2.2544198,-2.4695463,-2.5620668,-2.018754,-2.01381,-2.309012,-2.5205436,-2.6161337,-2.5953221,-1.8889577,-2.1918035,-2.3569968,-2.2555063,-2.322216,-2.573379,-2.6945791,-2.5494912,-2.5861373,-2.6015794,-2.1100326,-2.255939,-1.9906725,-2.1206465,-2.6094265,-2.492529,-2.3990426,-2.4360871,-2.29316,-2.5251813,-2.0106394,-1.884886,-1.9141363,-2.1318839,-2.1152358,-2.212601,-2.1082013,-1.4713119,-1.6616553,-1.4061031,-1.5219554,-1.43594,-1.7801844,-1.5378591,-1.584505,-1.31573,-0.8148405,-1.004794,-1.9771007,-1.3217809,-1.0857692,-0.8769154,-1.109888,-1.4434949,-1.7044572,-1.834694,-2.0866876,-2.2505074,-1.8004359,-1.4208604,-1.5944749,-1.5674659,-1.4642955,-2.1165528,-2.143411,-1.8498167,-1.8029284,-1.2652699,-1.0163232,-0.81032723,-0.78555894,-0.83167166,-1.6921841,-1.7594517,-1.887041,-1.9557115,-1.6854789,-1.8087716,-1.9551829,-1.7878865,-1.8802994,-1.9304836,-1.7992215,-1.9010097,-2.0354803,-2.095811,-1.9982115,-1.9588634,-1.9570138,-1.7535065,-1.454524,-1.7489946,-1.3869797,-1.5160418,-2.0308647,-1.4562091,-1.5378829,-1.0871352,-1.9638537,-2.1656895,-2.1497679,-2.167628,-1.2741235,-1.0930458,-1.8847259,-1.9483736,-1.4776559,-1.6054173,-1.5872442,-1.4251636,-1.6188613,-1.8408338,-1.7400054,-1.6675845,-1.6623695,-1.8023281,-1.7287954,-1.7265217,-1.8410279,-1.3821715,-1.6712888,-1.8919464,-1.8121771,-2.1604123,-1.7526451,-1.3127307,-1.2086099,-2.0128903,-1.970626,-1.6920029,-1.6165653,-1.6388178,-1.0104226,-0.96011573,-1.2764851,-1.8737289,-1.2934386,-1.3346324,-1.4872444,-2.0264826,-1.8817879,-1.7869439,-1.7354147,-1.5056504,-1.1124332,-1.6474754,-1.6177846,-1.6939147,-1.5831598,-1.6306496,-1.5998367,-1.5435373,-1.5306957
+-0.29698524,-0.9252756,-0.97374827,-0.9306385,-1.1865994,-0.8416533,-1.1811013,-1.2162942,-1.1695403,-1.0636936,-1.081409,-1.3175354,-1.1352526,-1.1222563,-1.0737141,-1.0450287,-1.034982,-1.0570577,-1.0771173,-1.0599502,-1.0199751,-1.0625498,-1.4424919,-1.2843986,-1.234851,-1.1499325,-1.2839841,-1.4658303,-1.5215772,-1.4238894,-1.1680871,-1.6346734,-1.7870308,-1.5828153,-1.5439516,-1.5584335,-1.3934709,-1.4736091,-1.5998868,-1.4907025,-1.3671933,-1.6242069,-1.585745,-1.5071274,-1.4791173,-1.3999841,-1.5614768,-1.7662767,-1.6561855,-1.5706817,-1.7229205,-1.628365,-1.5073918,-1.4744079,-1.4643246,-1.4799875,-1.567056,-1.5944709,-1.5596167,-1.475285,-1.429844,-1.4403971,-1.4269937,-1.3463036,-1.3932884,-1.2066013,-1.4569763,-1.3397881,-1.3446282,-1.3540953,-1.4356278,-1.4708997,-1.3744228,-1.4395591,-1.5084392,-1.5564436,-1.3191445,-1.2736071,-1.3874856,-1.5779607,-1.559827,-0.8579659,-1.0500437,-1.277856,-0.9446252,-1.2893463,-1.3168164,-0.6801774,-1.3058296,-1.3199724,-1.3381966,-1.4052633,-1.4263831,-1.4076862,-0.80985135,-1.2575654,-1.4624013,-1.2467136,-1.3518718,-1.648832,-1.4235973,-1.4492966,-1.5363163,-1.4783713,-1.4728985,-1.4283203,-1.4477283,-1.4870675,-1.4537872,-1.3880522,-1.4426411,-1.561166,-1.5348717,-1.4729441,-1.4914827,-1.0383133,-1.3661418,-1.3390244,-0.70594466,-1.4879698,-1.4439577,-1.3894948,-1.3102208,-1.4485556,-1.4024,-1.3934888,-1.4544506,-1.4863342,-1.4302484,-1.3923203,-1.4529333,-1.5191957,-1.5228277,-1.4659956,-1.4732991,-1.4461402,-1.2563806,-1.3573903,-1.0512406,-1.4844388,-1.3987132,-1.338614,-1.3160228,-1.4483455,-1.3443238,-1.4563006,-1.4127518,-1.3751029,-1.4844915,-1.5804052,-1.5464665,-1.5039186,-1.5033212,-1.4922644,-1.4754238,-1.557493,-1.6975082,-1.7741426,-1.7606858,-1.6215724,-1.6120704,-1.6405329,-1.6731992,-1.298648,-1.5281874,-1.7057728,-1.766489,-1.8381596,-1.8826004,-1.8192264,-0.47781792,-1.5259696,-1.4296132,-1.4405556,-1.5890682,-1.6567682,-1.7079409,-1.6980788,-1.5260346,-1.5411478,-1.6594801,-1.3921334,-1.4451072,-1.492329,-1.5580748,-1.5596892,-1.7977365,-1.9118215,-1.9652146,-1.9585036,-1.7266098,-1.6426581,-1.7778895,-2.028057,-2.0383916,-1.6198858,-1.729081,-1.827273,-1.851319,-1.863943,-1.9118084,-1.8373493,-1.6529828,-0.6482766,-1.6696854,-1.5312399,-1.5868119,-1.5385815,-1.6836776,-1.6543375,-1.6460253,-1.7086629,-1.6754581,-1.7186967,-1.7969832,-1.8445375,-1.6975096,-1.4465353,-1.6942183,-1.9000591,-2.1012895,-2.1035712,-1.4901463,-1.6490183,-1.7294031,-1.8118335,-1.8080626,-2.070506,-2.0798967,-1.9650782,-2.058915,-2.112701,-1.3503498,-1.5852643,-1.5183105,-1.726061,-2.254198,-2.0128455,-1.8881803,-1.8043624,-1.7172555,-2.2545657,-1.285494,-0.8980156,-1.7854284,-1.7880021,-1.8704337,-1.9000995,-1.9241757,-1.622285,-1.8463533,-1.5143003,-1.5223273,-1.3188721,-1.4427767,-1.4225184,-1.7711946,-1.7454596,-1.2796913,-1.168126,-2.1215215,-1.2596538,-1.3528223,-1.1515285,-1.296491,-1.6352386,-1.4848604,-1.5718426,-1.8241494,-1.7806258,-1.5221494,-1.5853574,-1.4824029,-1.5117022,-1.3745809,-1.7168474,-1.7374512,-1.7154474,-1.8190719,-1.3470877,-1.4136213,-1.1210915,-0.90713245,-0.9755097,-1.512979,-1.4606225,-1.6734209,-1.7525588,-1.872707,-1.9201852,-1.7773596,-1.5968157,-1.7427827,-1.7101232,-1.6820542,-1.7347263,-1.7250539,-1.5097097,-1.8877393,-1.7545302,-1.7074786,-1.5433319,-1.3442117,-1.4701222,-1.3904512,-1.441922,-1.6382058,-1.4748508,-1.3131348,-1.0672996,-1.77575,-1.676004,-1.8116387,-1.7673336,-1.4627315,-1.2001561,-1.7439904,-1.7257255,-1.3900284,-1.6073891,-1.5748093,-1.2937506,-1.3627406,-1.5775379,-1.5531962,-1.4506232,-1.4634591,-1.5119356,-1.6464394,-1.530726,-1.6123859,-1.3931757,-1.5357344,-1.5611147,-1.4898269,-1.7426361,-1.4718432,-1.2300267,-1.296662,-1.7134339,-1.6615812,-1.6494658,-1.4888078,-1.5921615,-1.3100404,-1.1587796,-1.2652007,-1.7822472,-1.3961241,-1.2320486,-1.334,-1.6391546,-1.6417185,-1.4148272,-1.5007702,-1.5567594,-1.1605746,-1.4014891,-1.337864,-1.4619501,-1.7438504,-1.7490157,-1.7544312,-1.6022167,-1.5002294
+-0.76002485,-1.7121366,-1.9120497,-1.8864127,-1.994604,-1.6456758,-2.0017657,-2.1143706,-2.1579156,-1.985936,-1.7922431,-2.1879568,-2.1838403,-2.174743,-2.011639,-1.9307388,-1.8846889,-2.081871,-2.3105593,-2.266552,-2.2666116,-1.9059575,-2.6276329,-2.6412444,-2.5867567,-2.5531807,-2.5269237,-2.411777,-2.7711835,-2.483234,-2.5134015,-2.6620326,-2.4432592,-2.6324596,-2.402677,-2.3845406,-2.5182009,-2.5741677,-2.5707016,-2.5281196,-2.0035028,-2.2150784,-2.4006004,-2.577548,-2.5806522,-2.5231543,-2.4262023,-2.648324,-2.7089515,-2.6016266,-2.1495006,-2.7873092,-2.9337964,-2.976465,-3.0968735,-3.0423365,-3.1367407,-3.325468,-3.3964624,-3.1770785,-3.289744,-3.4156952,-3.1275878,-3.2485504,-2.2606182,-1.9676098,-2.8997836,-2.9784667,-3.102924,-3.0993257,-3.228661,-3.355046,-3.2808979,-3.350224,-3.138473,-1.7620436,-2.9595234,-3.0364711,-2.9862356,-3.2361004,-3.3869238,-3.289721,-3.1407864,-3.2989473,-2.2457876,-3.195839,-3.271086,-2.9372535,-3.2133288,-3.313898,-3.4007592,-3.4672902,-3.4698744,-3.3428884,-3.2166579,-1.839914,-2.7060807,-1.8735657,-2.1219466,-2.720941,-2.9729166,-3.099339,-2.931335,-3.1114678,-2.7929025,-3.0745323,-1.96533,-2.975036,-3.140418,-3.1173987,-3.270904,-3.3305702,-3.3387625,-3.2731948,-3.3925314,-3.1702962,-3.2521486,-3.3046052,-3.1807444,-2.02932,-2.787706,-3.0421207,-3.0697,-2.9404833,-3.069658,-2.7987466,-2.8154733,-3.0597615,-2.188208,-2.8515399,-2.9335961,-3.0486095,-3.1062708,-3.255413,-3.3303406,-2.978314,-3.2240365,-2.9600353,-3.0512366,-2.14334,-2.9194915,-2.911078,-1.8318235,-2.9024749,-3.0519104,-3.1152241,-3.142179,-3.3030195,-3.3339977,-3.3576384,-3.4696913,-3.5642853,-3.6171227,-2.7208202,-3.3012137,-3.4118636,-3.5250204,-3.6247056,-3.6795666,-3.6740491,-3.67773,-3.6744473,-3.6894755,-3.4726825,-3.6964762,-3.7347026,-3.7465258,-3.7832174,-3.7580907,-3.7371702,-2.7614164,-3.363346,-3.5963254,-3.5833907,-3.637165,-3.688829,-3.7377858,-3.7457733,-3.1018221,-3.2484093,-3.4803023,-3.5796452,-3.5196729,-3.6067653,-3.6552653,-3.703559,-3.7734199,-3.7658186,-3.7626534,-3.5599527,-3.2980502,-3.582255,-3.653075,-3.713254,-3.6928787,-3.7696362,-3.7965047,-3.7675207,-3.7722795,-3.7685783,-3.7109618,-3.75357,-3.7474375,-2.0873132,-3.3214264,-3.3378987,-3.4405909,-3.5245721,-3.6230688,-3.5359097,-3.7293184,-3.7564058,-3.7692351,-3.7936401,-3.7814212,-3.795194,-3.7203774,-3.8041282,-3.7358837,-3.7750072,-3.751946,-3.7959106,-3.7172704,-3.761918,-3.6928442,-3.647101,-3.6195378,-3.742387,-3.745891,-3.7554073,-3.7522445,-3.7470942,-3.378264,-3.2015433,-2.9266386,-3.243948,-3.816295,-3.5813644,-3.7476833,-3.718687,-3.3410769,-3.5910692,-2.6433737,-2.078281,-3.073252,-2.9122276,-3.177795,-2.6894317,-2.8275394,-2.6225777,-2.8506668,-2.888854,-2.1626565,-1.8609596,-2.1705804,-1.949624,-2.7726912,-2.7123013,-2.0765579,-1.8509725,-2.643886,-2.4854598,-2.7021058,-2.558317,-2.537497,-2.9048538,-2.8573415,-2.651098,-2.8074248,-2.9755874,-2.7771711,-2.8857715,-2.4693816,-2.3140402,-2.342173,-2.5775723,-2.673706,-2.8941848,-2.881121,-2.7253985,-2.678724,-1.8207524,-1.6606141,-1.7938377,-2.5712502,-2.5045447,-3.0262794,-3.0830598,-3.031025,-2.785934,-2.9747267,-2.8414834,-2.7770302,-2.9968867,-2.6629212,-2.8792746,-2.7993908,-2.0584476,-2.5686913,-2.7861168,-2.5286584,-2.6193867,-2.3820262,-2.563383,-2.3487444,-2.4563396,-2.7348683,-2.7274575,-2.9674585,-1.9950832,-2.618825,-2.7862062,-2.6115425,-2.8979583,-2.6330748,-2.2143857,-2.6468039,-2.7564216,-2.8908901,-2.8988564,-2.4680707,-2.4313936,-2.4295516,-2.8272808,-2.7801552,-2.736919,-2.6525278,-2.5392256,-2.7710342,-2.6600919,-2.5833852,-2.4878616,-2.6354449,-2.5065289,-2.4723816,-2.3892684,-2.258768,-1.9122585,-2.030708,-2.4323435,-2.4441242,-2.4446683,-2.3898566,-2.3151388,-2.468707,-1.8589005,-2.101047,-2.2761874,-1.9162128,-1.7026683,-1.8118643,-1.7180883,-2.448226,-2.423416,-2.5845275,-2.4378405,-2.094082,-2.3246677,-2.437788,-2.3584197,-2.5517097,-2.5185037,-2.7035537,-2.6054044,-2.6204484
+-0.20364584,-1.253915,-2.7235785,-2.6071763,-2.491361,-1.988217,-2.581366,-3.384618,-3.9373507,-3.0880122,-2.2278388,-2.2066891,-2.4701397,-2.1585007,-2.021073,-1.855543,-1.9226736,-1.9345154,-1.9525899,-1.9953877,-2.0027473,-1.5542992,-2.0277781,-2.0919588,-1.9591862,-1.9983746,-2.0407672,-2.1114044,-2.1358557,-1.8673216,-1.2569011,-2.3084316,-2.2864516,-2.792483,-2.6073492,-2.600015,-2.3028283,-2.095604,-1.923545,-1.9819614,-1.9891878,-1.0497965,-2.2551475,-2.4318504,-2.3111634,-2.0342293,-1.1563916,-2.0093548,-1.8535123,-1.9583579,-2.068471,-2.5246468,-2.2603397,-2.092213,-2.0722651,-2.011594,-1.9715871,-2.1037185,-2.1447248,-1.3735981,-1.826178,-1.8425404,-1.9469701,-2.0300262,-1.978444,-1.9406679,-1.6943897,-1.972546,-2.1061702,-2.0971456,-2.1704836,-2.1784196,-2.158751,-1.8092326,-1.9027706,-1.9570353,-2.0391552,-1.9656032,-1.9873737,-2.0891984,-2.1835246,-2.2241879,-2.154982,-2.064225,-1.9975389,-1.9742175,-1.9473721,-1.4536141,-1.5278951,-1.8911575,-1.7996367,-1.807315,-1.9873298,-2.04666,-1.8267754,-1.8725759,-1.9604839,-1.8759536,-1.6796345,-1.5746107,-1.8119134,-1.951428,-1.4646994,-1.6379175,-1.8078805,-1.8911456,-1.3768783,-1.7918835,-1.8448142,-1.9556495,-2.0383143,-2.0023406,-2.0002923,-1.6614164,-1.83751,-1.9426719,-1.882424,-1.9230666,-2.0262804,-1.8036377,-1.8307489,-1.817931,-1.5854517,-1.7607619,-2.1361213,-2.836638,-3.597088,-3.2454557,-2.7819824,-3.3439183,-3.9024305,-3.637602,-3.013081,-2.816638,-2.7389946,-2.4283369,-2.1077118,-2.1665924,-2.181307,-1.9872133,-1.9612974,-3.0164018,-3.4081335,-3.1861048,-2.231569,-1.9589169,-2.1543875,-2.1038945,-2.0571654,-2.0422072,-2.1536844,-2.1995718,-2.201558,-1.8361335,-1.8693341,-2.096569,-2.144126,-2.1935773,-2.1938262,-2.1840572,-2.1535907,-2.1614575,-2.1972458,-1.817078,-1.9895717,-1.7587029,-1.9665717,-2.0949488,-2.0701547,-2.0800679,-1.9097961,-1.9795829,-2.0840359,-2.153262,-2.1661515,-2.1644611,-2.1512425,-2.1677616,-2.1043122,-1.7360641,-1.9081279,-2.1018753,-2.175065,-2.2269905,-2.3165092,-2.4225445,-2.3876297,-2.346688,-2.3640718,-1.0274962,-2.105042,-2.3212516,-2.303985,-2.3362947,-2.3899155,-2.4585404,-2.533665,-2.4682488,-2.4394202,-2.3849804,-2.3242407,-2.3281493,-2.34026,-2.2866068,-2.2149591,-2.2888842,-2.3458412,-2.456833,-2.5525966,-2.4839675,-2.4381294,-2.4477,-2.3717437,-2.4143927,-2.3875883,-2.3266053,-2.2695878,-2.3670168,-2.4202597,-2.601754,-2.6524117,-2.74501,-2.7958765,-2.6004941,-2.6103382,-2.6789966,-2.3145013,-2.490346,-2.5885649,-2.5989347,-2.6569083,-2.6519516,-2.5332315,-2.3107595,-2.4686027,-2.6011066,-2.7108731,-2.6869638,-2.538651,-2.5040946,-2.4618797,-2.6971645,-1.048789,-2.4191356,-3.5210707,-3.9129777,-3.3571663,-3.138566,-3.7192793,-3.928605,-4.1382227,-4.330731,-4.0070343,-3.1948285,-2.4693434,-2.6911974,-3.15061,-3.071858,-3.6663847,-2.4548826,-2.3412366,-2.3847723,-2.696187,-2.80231,-3.1162343,-2.9338887,-2.6179786,-2.4298768,-2.4007325,-2.2408814,-2.4729602,-2.6127877,-2.8494172,-4.372219,-3.8262737,-3.1336715,-3.8963306,-4.1711564,-4.608127,-4.572233,-4.306952,-4.167782,-3.9404774,-2.780594,-2.3038602,-2.3169937,-3.001673,-3.6088724,-3.3582327,-3.2839,-2.8157477,-2.6915936,-2.9698102,-2.8211813,-2.3147995,-3.6575568,-4.326346,-4.466523,-4.6037455,-4.5422072,-4.2409477,-4.5629168,-4.366665,-4.196825,-4.1705685,-3.850445,-3.6218977,-3.4659681,-3.2506804,-3.1084447,-2.6533396,-2.5939415,-2.533956,-3.0024924,-4.1391125,-4.2652693,-4.0796976,-3.9135637,-4.127492,-3.4260406,-3.5021636,-4.5254345,-4.29509,-3.9621682,-3.746834,-3.2083595,-2.6442423,-2.4153705,-2.7858467,-2.5631938,-2.6602125,-2.913776,-2.3051345,-2.2359514,-2.0958304,-3.1352983,-4.00384,-3.2050405,-2.5765474,-2.3578825,-2.2710106,-2.4341269,-3.0162494,-2.6483438,-3.4706302,-2.8801243,-3.3213904,-2.9099126,-3.7473001,-3.2483425,-2.6030731,-2.762839,-3.3125734,-2.5953708,-2.2075403,-2.1685538,-2.7694898,-2.239677,-2.2020903,-2.015435,-2.3612359,-2.5919957,-3.1993604,-2.4100542,-3.3424172
+-0.52053195,-2.1026344,-3.4474673,-3.4151337,-3.1203294,-2.5202804,-2.1679068,-2.8816066,-2.996604,-2.1317582,-1.6921021,-1.503925,-2.024365,-1.8600134,-1.8998618,-1.9714421,-2.215841,-2.019125,-1.8274149,-1.7353407,-1.792126,-1.4275016,-1.6634225,-1.7882885,-1.7214969,-1.7539793,-1.8148171,-1.7632744,-1.7790128,-1.8171083,-1.3069592,-1.4778003,-1.4542753,-1.7046224,-1.6596011,-1.8111068,-1.7327584,-1.6425023,-1.5745207,-1.6889783,-1.7808448,-1.8496267,-1.8244756,-1.7932459,-1.8150746,-1.898914,-0.94047314,-2.4571803,-2.8863647,-2.6790257,-2.1491961,-2.3414078,-1.9931444,-1.8007538,-1.7335232,-1.7791678,-1.8237852,-1.8374604,-1.8018874,-1.8183978,-1.8314306,-1.8112472,-0.88137585,-2.081181,-1.715948,-1.6341223,-1.4147986,-1.9846796,-1.8839693,-1.8140364,-1.8455896,-1.8316525,-1.8534017,-1.8252089,-1.7892193,-1.8136274,-1.7570088,-1.1438578,-1.5109192,-1.6877702,-1.8112227,-1.8576711,-1.8999768,-1.9114796,-1.9057763,-1.8711442,-1.7687327,-1.7595385,-0.8749535,-1.6685141,-1.4552752,-1.597567,-1.7052878,-1.732231,-1.8161243,-1.2903308,-1.7006898,-1.8842678,-1.7203788,-1.6311258,-1.594351,-1.656108,-1.5426608,-1.6500624,-1.8018887,-1.87959,-1.474672,-1.1133482,-1.6753886,-1.7071974,-1.7851347,-1.8129388,-1.795525,-1.8717451,-1.7835575,-1.875536,-1.9115485,-1.9212074,-1.9321903,-1.8538276,-1.3652279,-1.5559584,-1.2402705,-1.1125299,-1.762032,-1.8176006,-1.8521386,-1.6937761,-1.3650523,-2.1628718,-2.021809,-1.9854215,-1.8626312,-1.7972691,-1.7952063,-1.6047559,-1.929022,-1.885119,-1.7904114,-1.794412,-1.8470346,-1.8728343,-1.9102892,-1.9024199,-1.8982035,-1.9597223,-1.2027763,-2.0188367,-1.8199027,-1.8453468,-1.8669306,-1.6790105,-1.7432611,-1.8212578,-1.2172786,-2.0765085,-1.867577,-1.8859195,-1.8916892,-1.9213736,-1.9637638,-2.0167499,-2.0645947,-1.5595464,-1.6414257,-1.6231314,-1.7358032,-1.8201978,-1.8784628,-1.9292282,-1.9151766,-1.7044588,-1.8692843,-1.9393321,-1.9697822,-1.9009868,-1.9503096,-2.0080433,-1.75082,-1.7221378,-1.8014973,-1.8367361,-1.8657769,-1.9355823,-2.0871968,-2.1812317,-2.1840835,-2.135128,-2.137135,-2.1197891,-1.6529894,-1.8633536,-2.0403411,-2.1524355,-2.2162414,-2.2118752,-2.2374089,-2.054086,-2.069748,-2.0793638,-2.0405853,-2.0600624,-2.1032836,-2.0010638,-1.9745315,-2.0369706,-2.0490146,-2.1625772,-2.166623,-2.1280098,-2.0840096,-2.0917647,-2.0249681,-2.0433776,-2.0768425,-2.051022,-1.9671012,-2.025775,-2.0458488,-2.127617,-2.212935,-2.19548,-2.179284,-2.072812,-1.9865845,-2.17754,-2.0263848,-2.080737,-2.0305424,-2.023662,-2.064211,-2.0990517,-1.9602104,-1.8997347,-2.0121136,-2.136534,-2.184208,-2.1753697,-2.0521274,-1.9720403,-2.033421,-2.2149105,-0.6653029,-2.6635518,-3.024775,-3.577134,-2.9891205,-2.200868,-2.9053955,-3.3799357,-3.9198432,-4.1138206,-4.0174646,-3.206427,-2.6794596,-2.5896332,-2.8753471,-3.7380648,-4.186353,-3.5313919,-2.8111324,-2.793479,-3.6813402,-4.101923,-4.153246,-3.7689395,-3.581412,-2.8083577,-2.5710833,-2.3363402,-2.32557,-2.3307858,-2.2493956,-3.909707,-3.0021224,-2.7233512,-3.4488583,-4.111501,-4.5453258,-4.59114,-4.1192713,-4.4887104,-4.1657343,-3.3369317,-2.943486,-2.7320669,-3.3969436,-3.3995416,-3.133754,-2.861732,-2.6483588,-2.4015565,-2.6087408,-2.445622,-2.1971571,-3.0514646,-3.8777647,-4.4890394,-4.670581,-4.5445776,-4.1668396,-4.6661644,-4.4751983,-4.289974,-4.3390856,-4.019009,-3.6700118,-3.2493174,-2.8976455,-3.090272,-2.6246505,-2.6238413,-2.2825918,-2.227109,-3.3011057,-3.7459795,-3.152968,-2.9942348,-3.1768966,-2.694128,-2.2321095,-3.7702582,-3.4388165,-2.5999599,-2.905,-2.6966548,-2.3178372,-2.14162,-2.2305758,-2.1044846,-2.058126,-2.278305,-2.121345,-2.0868683,-1.9646047,-1.8056353,-2.9446368,-2.2740908,-2.1727886,-2.0537689,-2.001254,-1.7862763,-2.1833205,-1.907045,-2.0844755,-1.4226446,-2.2797122,-2.2232985,-3.0223918,-2.5167744,-2.2276227,-2.0649557,-2.4611115,-2.1994624,-1.9949874,-1.7762831,-2.1194067,-1.9026407,-1.9393923,-1.8860532,-1.8966364,-1.8848872,-1.9302247,-1.9387732,-1.5787619
+-0.19370016,-1.362289,-2.0958796,-2.3139002,-2.4216318,-2.350769,-2.303433,-2.4888148,-2.4867694,-2.6160817,-2.6878738,-1.8756989,-2.6541371,-2.294963,-2.4726934,-2.5624554,-2.5148025,-2.6176949,-2.698333,-2.830403,-3.0821562,-1.3764124,-2.3896675,-2.6055453,-2.6898835,-2.8936212,-2.9871645,-2.5147612,-2.8139472,-2.4754493,-2.7140265,-1.9784039,-2.212899,-2.395315,-2.4994588,-2.5697143,-2.7309585,-2.8959575,-3.0268366,-3.2546096,-3.1699243,-3.2836094,-3.2469082,-3.1688833,-3.1982388,-3.248984,-1.2081473,-2.5876899,-1.8270074,-2.440642,-2.634241,-2.45575,-2.4618242,-2.574994,-2.8792095,-2.9958508,-2.974864,-3.0813696,-3.2140324,-3.1818135,-2.762384,-2.7740684,-2.8297575,-1.7190796,-2.619267,-2.5910192,-1.4583315,-2.3964605,-2.25418,-2.5370564,-2.6820054,-2.9392333,-3.0324712,-3.1059237,-3.3063707,-3.3423872,-3.016684,-2.6323223,-1.3274466,-2.2590365,-2.4252431,-2.4897978,-2.6960325,-2.9675584,-3.125887,-3.216237,-2.3847997,-2.8362374,-2.877871,-3.0421538,-2.6246247,-2.763483,-2.7477384,-3.1000712,-2.641653,-2.8155293,-2.5289025,-2.6631548,-3.094236,-3.093218,-3.0452504,-3.1285543,-3.15373,-2.2300627,-2.610578,-2.733881,-3.0594141,-2.9078748,-2.490065,-2.5246954,-2.6435857,-2.7505608,-2.7228422,-2.61926,-1.9931132,-2.6689067,-2.7838933,-2.7717085,-3.0400426,-3.2840853,-3.3860233,-3.6198022,-2.133054,-2.7642865,-2.8185909,-3.211675,-2.15488,-2.7363527,-2.9408984,-2.900883,-2.6942956,-2.8695233,-2.9104462,-3.0467768,-2.0379958,-1.8927234,-2.5304728,-2.8306613,-3.0482302,-1.7944597,-1.6630753,-2.217267,-2.6460705,-2.7442875,-2.9543371,-2.9283772,-3.067788,-1.3997756,-2.5729089,-2.83301,-2.8821585,-2.9677565,-2.9094467,-3.1148207,-1.110274,-2.537651,-2.697643,-2.521387,-2.6215591,-2.6812549,-2.7643187,-2.8828568,-2.985976,-3.2425325,-2.303952,-2.2603483,-2.8335543,-2.8900843,-2.9315317,-3.046145,-3.3573868,-2.9452405,-3.1738396,-3.173542,-3.3101864,-3.3678536,-3.4589932,-3.5112076,-3.5102084,-3.5217452,-3.564076,-3.3787994,-3.2813427,-3.3553867,-3.5242908,-1.3906068,-2.6567936,-2.9380507,-2.9432163,-3.0333102,-2.443063,-2.9903712,-2.9759088,-3.0916007,-3.234052,-3.3772554,-3.4025154,-3.4156892,-3.4652672,-3.528691,-3.5306504,-3.5055852,-3.5350163,-3.6469593,-3.3589866,-3.390672,-3.6801326,-3.78127,-3.7307901,-3.7537587,-3.7245154,-3.6901073,-3.7066472,-3.8105307,-3.7182946,-3.7942371,-3.824225,-3.848187,-3.6739466,-3.7329173,-3.9066699,-3.800266,-4.064509,-3.728493,-3.8422961,-3.9145722,-4.043493,-3.765976,-3.8572595,-3.9827232,-3.9238424,-3.8798332,-3.8701887,-3.2190318,-3.3021722,-3.6019704,-3.794908,-3.9935122,-3.9158385,-3.7733169,-3.4602273,-3.7128782,-3.5373945,-3.6260033,-1.2099799,-2.7974017,-3.092588,-3.1074338,-1.5057929,-1.044637,-2.4130325,-2.6643562,-2.539871,-2.4805522,-2.882498,-2.7863507,-2.8637462,-2.2515848,-2.631583,-2.6156518,-2.7531166,-2.3436038,-2.1055129,-2.396551,-2.6158385,-2.669763,-2.7717702,-2.786796,-2.788309,-2.8547373,-2.9675975,-3.069456,-2.5094638,-2.6950266,-2.794195,-1.8708538,-2.0951781,-1.6453886,-2.3879786,-2.6017542,-2.6925507,-2.1479816,-2.0606573,-2.027286,-2.454345,-2.7447257,-2.9221191,-2.9314327,-2.9111786,-2.8993857,-2.8416395,-2.8701587,-2.8855386,-2.881452,-2.8995662,-1.2027906,-1.2505431,-2.2464774,-2.5925205,-2.800064,-2.7301674,-2.8169847,-2.8393452,-2.8129718,-2.8917034,-2.8719554,-2.9052653,-2.9108043,-3.008644,-2.944468,-2.979434,-2.959687,-2.9353032,-1.3720629,-2.4787223,-2.6389418,-2.7536292,-2.7432318,-2.780363,-2.7120323,-2.715383,-2.6789074,-2.6955934,-2.905289,-2.9018846,-2.8986435,-2.8108072,-2.76925,-2.5792909,-2.7509897,-2.834944,-2.6120555,-2.8384922,-1.3498652,-2.5061297,-2.200717,-2.5942304,-2.6819263,-2.8024068,-2.803824,-2.826881,-2.7793455,-2.8058176,-2.7644665,-2.7433326,-2.7720776,-1.6311828,-2.2664995,-2.512355,-2.466341,-2.7547467,-2.9376378,-2.925125,-2.74023,-2.760594,-2.9118466,-2.909442,-2.8765864,-2.9737504,-3.0374599,-3.1291337,-3.1329303,-3.1708794,-3.3437717,-3.1128995
+-0.13502659,-0.60939825,-2.3100483,-2.5657575,-2.4524531,-2.3469558,-2.3499334,-2.4708314,-2.6310492,-2.608819,-2.5077505,-1.9164678,-2.4970694,-1.9624346,-2.4945092,-2.4778676,-2.5220885,-2.622529,-2.6288767,-2.6529832,-2.6986918,-1.4214435,-2.3671682,-2.5283892,-2.5120952,-2.4575047,-2.6166954,-2.7796154,-2.7847505,-2.1458945,-2.3991103,-2.436603,-2.3231876,-2.21804,-2.539214,-2.634091,-2.6812346,-2.7172728,-2.7379463,-2.8296835,-2.7733154,-2.8790145,-2.8544903,-2.837831,-2.7916908,-2.5963326,-2.0924644,-1.1658535,-2.1549063,-2.1301732,-2.2985938,-2.497696,-2.4793806,-2.552297,-2.6690018,-2.7001464,-2.6854396,-2.7569456,-2.8777804,-2.8207827,-1.0343801,-2.319369,-2.4389958,-2.5778883,-2.5306692,-2.1112533,-0.9522115,-2.201371,-2.3078854,-2.452837,-2.4677896,-2.5877938,-2.7383895,-2.8024738,-2.60362,-2.3390398,-2.1563158,-2.55184,-1.2568061,-2.165523,-2.2577646,-2.3980963,-2.5631337,-2.7051044,-2.8053994,-2.8283799,-2.8204055,-2.457642,-2.6496236,-2.3665152,-2.3592515,-1.7725822,-2.4512937,-2.5873628,-2.665672,-2.7284465,-2.7700276,-2.7954376,-2.8354335,-2.843645,-2.8445272,-2.7718222,-0.7004631,-1.9512641,-2.2880201,-2.105545,-2.279988,-1.901427,-1.9456676,-2.0405712,-2.2398405,-1.7241145,-2.064197,-2.2608037,-2.335876,-2.2713013,-2.3293405,-2.564464,-2.6914978,-2.7210617,-2.765692,-2.6942563,-1.5578526,-2.3401012,-2.4502327,-1.6889809,-2.1971998,-2.26132,-2.3797212,-1.2405587,-2.0269232,-1.3788916,-2.1293018,-1.7690005,-2.1789918,-2.2229967,-1.4998903,-2.1408434,-2.2743292,-2.301901,-2.4867482,-2.6378186,-2.684198,-1.8671688,-1.8214961,-2.2394135,-2.3399434,-1.360004,-2.1479597,-2.2408223,-2.2863069,-2.3126104,-2.2518477,-1.6946894,-0.77071595,-2.2226286,-2.088483,-2.2255406,-2.3043537,-2.3989587,-2.4775982,-2.5761948,-2.6362553,-2.7546272,-2.503617,-2.3351855,-2.557397,-2.6263568,-2.564737,-2.587802,-2.414184,-2.400339,-2.5764275,-2.5707517,-2.7255435,-2.8104255,-2.7603264,-2.597907,-2.157189,-2.550195,-2.5096,-2.6195307,-2.7055478,-2.7246351,-2.7881193,-2.4044535,-2.204349,-2.593277,-2.594224,-2.2738671,-2.144974,-2.5069385,-2.595941,-2.6900225,-2.7562926,-2.7945218,-2.7588084,-2.187805,-1.6750978,-2.3811326,-2.4417753,-2.486961,-2.5288658,-2.7251961,-2.7095456,-2.7287576,-2.7671056,-2.8085082,-2.8158553,-2.7917562,-2.8510847,-2.833844,-2.8625374,-2.8839655,-2.814963,-2.8042507,-2.8491807,-2.9496765,-2.8641787,-2.9292915,-2.9415386,-2.9411097,-3.0167975,-2.9068623,-2.89876,-2.946895,-3.034055,-3.0491061,-2.9966104,-3.018666,-2.9535875,-2.988383,-3.0648646,-2.8713317,-2.9446466,-3.0316043,-3.1227622,-3.1489115,-3.0035193,-2.9708872,-2.935515,-2.9751346,-2.9023085,-2.8958757,-1.307499,-2.7394695,-2.8315067,-2.678738,-1.3598344,-1.2747838,-2.3966672,-2.5974882,-2.825123,-2.7870913,-2.8722944,-2.7516956,-2.748504,-2.4478378,-2.7639186,-2.7871542,-2.7177446,-2.7404208,-2.0100632,-2.6163085,-2.692408,-2.7295194,-2.7158966,-2.7363138,-2.6773949,-2.6130145,-2.7503073,-2.790129,-2.3661442,-2.7744288,-2.8456163,-2.6777532,-2.7471452,-1.0539384,-2.377211,-2.5416458,-2.518148,-1.6385715,-2.502236,-2.5329444,-2.5700285,-2.653574,-2.75627,-2.7676992,-2.7299,-2.7295806,-2.641068,-2.6811876,-2.7249215,-2.6791933,-2.5349622,-1.2190111,-1.1492879,-2.5714626,-2.9837503,-2.8839216,-2.6951942,-2.9339397,-3.0230627,-2.898891,-3.0043058,-2.8407102,-2.815014,-2.8081374,-2.801438,-2.9092536,-2.840587,-2.8399572,-2.7147272,-1.4274842,-2.5426233,-2.7461379,-2.6674395,-2.6721754,-2.709239,-2.6752064,-2.7241273,-2.7584486,-2.7248473,-2.6507063,-2.7349396,-2.6897955,-2.6342976,-2.5503259,-2.675394,-2.7224965,-2.7676444,-2.6691322,-2.7244372,-2.844934,-2.7575514,-1.5733026,-2.7105832,-2.7682185,-2.678473,-2.5744736,-2.649499,-2.822031,-2.751091,-2.8356233,-2.772916,-2.8903012,-2.0202217,-2.2352695,-2.8916578,-2.8514042,-2.7543132,-2.7208395,-2.8052928,-2.6975083,-2.7050786,-2.7425947,-2.650541,-2.6634347,-2.725719,-2.7838085,-2.853929,-2.8313022,-2.808382,-2.814527,-2.9040017
+-0.300801,-0.7889609,-0.66092676,-0.5471105,-0.59434265,-0.67264736,-0.5741463,-0.6579979,-0.68952966,-0.6812469,-0.77966505,-0.9377183,-0.883144,-0.7814752,-1.1392716,-0.79728466,-1.1450794,-0.6662388,-0.6978323,-0.81525606,-1.003829,-0.8280665,-0.87403744,-1.1139787,-0.97725433,-1.1052337,-1.3675565,-1.1598724,-1.299029,-1.3949325,-1.184008,-1.0163478,-0.9569585,-1.3546976,-1.1929001,-0.8778297,-0.9846937,-1.375866,-1.2229006,-0.7720321,-0.5462362,-0.3673445,-0.6648304,-1.3832458,-1.3365537,-1.3945568,-1.4560157,-1.1292529,-0.89036006,-0.7235637,-0.81419283,-0.7909739,-0.46054062,-0.48736647,-1.2425691,-1.0404724,-1.0552295,-1.2068862,-1.5907502,-1.5983053,-1.7928019,-1.6444083,-1.3288599,-1.7263724,-1.5948017,-1.3133708,-1.5434808,-1.6802727,-1.631478,-1.5594898,-1.4099089,-1.2676959,-1.7273092,-1.5650364,-1.2652874,-1.114133,-1.1288278,-1.0977598,-0.9469822,-0.8534049,-1.2809842,-1.5530156,-1.5294331,-1.4936131,-1.2717831,-1.0990384,-0.9326742,-1.6148736,-1.6915877,-1.4987649,-0.9823881,-1.6335076,-1.5994107,-1.4444151,-1.2398472,-1.4677644,-1.6912861,-1.536709,-1.5471244,-1.6345893,-1.4994583,-1.3291162,-0.8735324,-1.3749542,-1.3451446,-1.6368235,-1.4006848,-1.3202099,-1.1675526,-1.495716,-1.3306872,-1.1224467,-1.3498477,-1.4902241,-1.3954781,-1.4735074,-1.5800592,-1.4342111,-1.4697875,-1.4645253,-1.3465652,-1.3429278,-1.320735,-1.3739831,-1.4687774,-1.529143,-0.85078746,-1.4509708,-1.526739,-1.4607308,-1.3334066,-1.0898784,-1.4932644,-1.6004862,-1.5974295,-1.5203291,-1.5198168,-1.5732299,-1.4615699,-1.7218828,-1.7273875,-1.0765138,-1.3367355,-1.375736,-1.4982892,-1.5917827,-1.6904722,-1.585075,-1.5842464,-1.1821144,-1.4820036,-1.5332347,-1.67003,-1.7395862,-1.6269583,-1.6529709,-1.6606117,-1.7415079,-1.4441369,-1.7617475,-1.3474482,-1.6874124,-1.2169642,-1.4847783,-1.4792272,-1.6780537,-1.5689695,-1.511859,-1.6703463,-1.6094872,-1.7749068,-1.7254156,-1.6585808,-1.6938382,-1.7916756,-1.8478688,-1.8380625,-1.7252346,-0.9273671,-1.7887825,-1.7974266,-1.810839,-1.7972854,-1.7844113,-1.8473078,-1.8341619,-1.7582836,-1.7815281,-1.8488446,-1.445808,-1.6237597,-1.7704082,-1.5507692,-1.6255835,-1.1239191,-1.3228215,-1.4017102,-1.4906876,-1.5028728,-1.5138074,-1.2928607,-1.5496707,-1.5998052,-1.6897411,-1.7504134,-1.6994528,-1.7600653,-1.7648348,-1.4775243,-1.3138065,-1.0227923,-0.95636725,-1.4123992,-1.357596,-1.0451785,-1.6455892,-1.661883,-1.4732575,-1.6179155,-1.5107459,-1.5116956,-1.9188143,-1.7189051,-1.7580708,-1.9093425,-1.5709392,-1.5554281,-1.6820223,-1.4890444,-1.7187468,-1.5732416,-1.375578,-1.099505,-1.0818243,-1.1675133,-1.1427672,-1.23831,-1.1500458,-1.1308112,-1.2345461,-1.2015381,-1.1089749,-0.9972059,-1.306053,-1.5597152,-1.4984239,-1.2414019,-1.1867272,-1.1352078,-1.2564087,-1.1790761,-1.3830265,-1.312651,-1.1745541,-1.0821934,-0.9443644,-0.8034834,-0.66768795,-0.60655457,-0.63526255,-0.74027723,-0.6972397,-0.6389546,-0.98879415,-1.0391953,-0.8994869,-0.8234306,-0.9675855,-0.90749496,-0.20600925,-0.9535009,-0.72008914,-0.9327196,-0.9516974,-0.67182887,-0.8196411,-0.92404294,-1.0355422,-0.9042505,-0.70697814,-0.67693603,-0.71527004,-0.7890747,-0.75930405,-0.80653673,-1.0107008,-0.7984446,-0.7924266,-0.73273605,-0.72843564,-0.8844034,-0.8248825,-0.93004864,-1.012009,-0.96231073,-0.9959708,-1.0527195,-0.96091884,-0.9923896,-1.1247321,-1.2142066,-0.9487961,-0.8827509,-0.74285406,-0.6249688,-0.66479146,-0.8136319,-0.65541005,-0.5838145,-0.613422,-0.86070544,-0.7471977,-0.6619802,-0.73642,-0.6872697,-0.577005,-0.82828325,-0.9490262,-0.96306914,-0.9605107,-1.1484503,-1.0538138,-0.98716277,-1.0292934,-1.1471012,-0.85447776,-0.81303304,-0.802012,-1.1278933,-1.1006508,-0.91944355,-0.7522557,-0.85662585,-0.9554881,-0.83042455,-0.7394477,-0.7361662,-0.66747504,-0.54129404,-0.98426694,-1.0169708,-0.9365333,-0.8428841,-0.63592017,-0.581937,-0.5895695,-0.43689534,-0.6449508,-0.727521,-0.85587615,-0.8331292,-0.9211957,-0.8820903,-1.1133927,-0.88856333,-0.7828584,-0.94914407,-1.036298,-0.77781415,-0.9158773,-1.0293411,-1.0048143,-0.8017858,-0.6344275,-0.8060501
+-0.09504938,-0.8062383,-0.8158148,-0.73079133,-0.6160024,-0.6919291,-0.74364054,-0.52871364,-0.6307418,-0.7904886,-0.8338415,-0.6383534,-0.6125918,-0.62287015,-0.70180696,-0.7038868,-0.746117,-0.6906962,-0.6383234,-0.6690064,-0.31798208,-0.5762267,-0.7851403,-0.55876,-0.5281412,-0.2733003,-1.3994769,-1.0818397,-0.98697084,-1.0743085,-0.87652254,-1.1665229,-1.3056858,-0.8904434,-1.0444187,-0.92960745,-0.65418726,-0.8068095,-0.9063319,-0.6494103,-0.6459493,-0.5010546,-0.3610408,-1.4259827,-1.6194097,-1.29677,-1.3418826,-1.2776166,-1.1159438,-1.0187539,-0.83557856,-0.8272345,-0.86867505,-0.8180521,-0.87677103,-0.54599947,-0.6717404,-0.6222525,-0.3200833,-1.1539323,-1.3607436,-1.0138232,-0.83089757,-0.87963563,-0.7932332,-0.48129526,-1.9337443,-2.1438384,-2.366514,-1.6192422,-1.1765252,-0.9419101,-1.4492263,-1.2378691,-1.1469098,-0.67390364,-1.343219,-2.4147089,-1.8182647,-1.4509553,-1.1661309,-1.2028588,-1.2862246,-1.0228075,-0.96572083,-0.8934586,-0.7801622,-1.0975908,-1.6951475,-1.3869199,-1.1195661,-0.9403703,-1.5805018,-1.3009844,-1.0475961,-0.95530695,-0.91221946,-1.0056188,-1.1002456,-3.518546,-3.3701801,-2.6035578,-1.8618515,-1.5386871,-2.1540933,-3.2358577,-3.1189666,-2.4768655,-1.9128665,-1.7019132,-1.4029853,-1.2088864,-1.3302625,-1.5525314,-1.1621891,-1.70149,-2.886919,-2.4522693,-2.5066533,-2.8017473,-2.2115521,-2.5208728,-3.2686262,-2.8241544,-2.0611193,-1.4911698,-1.2271163,-1.6409109,-1.4314791,-1.2359508,-1.0639294,-1.0801376,-1.0289024,-0.9549661,-1.8089534,-3.594927,-3.1840153,-2.8155863,-3.6865795,-3.6757288,-3.4388986,-3.4424033,-3.6184042,-3.647838,-3.1134923,-2.5290017,-2.4967487,-3.2368622,-2.7744298,-3.141787,-3.022372,-2.4651356,-2.3627725,-2.746004,-2.3293662,-1.7965118,-1.4589832,-1.270953,-1.133727,-1.0333998,-2.045114,-3.234694,-2.8744986,-3.476782,-2.8414352,-2.2702615,-2.17808,-2.0908756,-1.6148013,-0.946247,-2.8726382,-2.508629,-2.181643,-1.8374801,-1.6044215,-1.7158885,-1.6006593,-1.2485346,-0.86567855,-2.0882437,-1.5605184,-1.4376017,-1.5031008,-1.254921,-2.0366743,-2.1604452,-1.7228518,-1.3198398,-1.1821331,-1.178955,-1.4472786,-1.3375885,-1.2098007,-1.0722915,-1.0177096,-0.97566134,-1.3802305,-0.96500546,-0.56759113,-1.9351424,-1.5909866,-1.7010244,-1.3688104,-3.441334,-3.2160435,-2.4706028,-2.3030643,-1.9831635,-1.5618048,-1.6990578,-2.092946,-1.5974696,-2.0817747,-2.0428965,-1.2560159,-1.291918,-2.457523,-3.1413164,-2.5777993,-2.3130987,-2.180278,-2.0564163,-2.0360239,-1.6028217,-1.554446,-1.3527837,-1.16567,-1.080401,-1.0977187,-1.231642,-1.2798225,-1.0428377,-0.8697687,-1.8316644,-1.4034814,-1.2646687,-1.0951535,-1.1717786,-1.2015702,-1.1479286,-1.2461652,-1.1357063,-1.0683933,-1.419211,-1.5268092,-1.5174521,-1.36525,-1.2471098,-1.1625726,-1.1713649,-1.0077635,-1.028446,-1.1196901,-1.1459584,-1.1689323,-1.1305429,-1.047285,-1.289655,-1.3346323,-1.4303129,-1.2223511,-1.1353775,-1.4433581,-1.2832193,-1.2682352,-1.1387007,-1.3020813,-1.2245892,-1.2176665,-1.293811,-1.0397626,-0.9953373,-1.226355,-1.3000157,-1.246056,-1.0061908,-1.1841968,-1.1918775,-1.0953987,-1.2077671,-1.358636,-1.3562291,-1.3443035,-1.2300011,-1.0468287,-1.0196675,-1.2105153,-0.96709305,-1.043227,-1.1282765,-1.1448017,-1.0780457,-1.0663093,-0.924395,-0.99678427,-0.78934425,-0.86723775,-0.79658777,-0.956499,-0.90468884,-0.938122,-0.85558385,-0.8160989,-0.9155287,-1.139016,-1.2052062,-0.9981325,-1.0226859,-1.3833355,-1.3547989,-1.21888,-1.0561955,-1.2275037,-1.052894,-1.1874079,-1.3286909,-0.93203455,-1.2944142,-0.92803127,-0.77574486,-0.8910898,-0.8441074,-0.9423044,-0.6691657,-0.56812453,-0.49586055,-0.5424518,-0.4131974,-0.4209083,-0.91430974,-1.2977448,-1.32892,-0.91328347,-1.0112315,-0.9144468,-1.5254534,-1.0206834,-0.96664935,-0.9441704,-1.065567,-1.1758777,-1.2886614,-1.2100198,-1.1472672,-1.2707275,-1.2000693,-1.3875488,-1.3166295,-1.0586456,-0.9422994,-0.74842244,-1.0041933,-0.7620053,-0.8714835,-0.8401672,-0.9012359,-0.84601676,-0.7958583,-1.1339904,-1.2572728,-1.1292325,-1.3840991,-1.1709151,-0.8034399,-1.4543577
+-0.92413265,-1.4849936,-1.4297024,-1.9612597,-1.5997732,-1.6432121,-2.1369774,-1.9418023,-1.9433553,-2.048182,-2.4482155,-2.2270682,-1.9168035,-2.0030336,-2.0370338,-2.1664362,-2.326904,-2.5228982,-2.704464,-2.457097,-2.4630964,-2.5600839,-2.972197,-2.6265316,-2.729858,-2.672604,-2.9578547,-2.8758264,-2.8889737,-2.8216643,-2.9276724,-2.915943,-2.9989328,-2.85037,-2.817789,-2.8433194,-2.860752,-2.775486,-2.7148914,-2.8416708,-2.8291755,-2.9793396,-2.8430872,-2.832372,-2.7140012,-2.296115,-2.6532059,-2.5502918,-2.4971085,-2.5562503,-2.6093147,-2.846402,-2.8406584,-2.9092364,-2.9282472,-2.762858,-2.8362217,-2.8955927,-2.9886048,-3.0239189,-3.1250591,-3.0339239,-2.979126,-3.0397172,-2.924487,-2.8008032,-2.8175993,-2.8423924,-2.9454198,-2.938593,-2.966677,-3.002213,-3.107512,-2.867708,-3.032403,-2.989676,-2.7815561,-3.036636,-3.0979877,-3.246015,-3.1733513,-3.166037,-3.2839987,-1.7184705,-2.9416113,-3.0891247,-3.1454244,-2.9249575,-3.2767138,-3.282051,-3.312381,-3.307587,-3.41293,-3.467943,-3.058051,-3.1031208,-3.1275954,-3.1914206,-3.213685,-3.2217815,-3.4282956,-3.4468117,-3.4302406,-3.3361719,-2.7587857,-3.0756345,-3.3074985,-3.3169982,-3.0319195,-3.3585358,-3.4698188,-3.5418472,-3.3018103,-3.3802228,-3.2022448,-3.1013565,-3.5237837,-3.4708095,-2.641493,-3.142925,-2.9887948,-3.1898406,-3.2881868,-3.2641864,-3.3752897,-3.2410078,-3.3339186,-3.0438495,-3.4423943,-3.4354482,-3.3910565,-3.034679,-3.0828311,-3.0670712,-2.987377,-2.2172003,-2.6520143,-2.8054512,-2.8036366,-2.9872053,-3.0899475,-2.814067,-2.912718,-3.2523832,-3.284773,-3.4294138,-2.849231,-3.2366185,-3.3418207,-3.3000593,-3.4960523,-3.6659036,-2.956323,-3.294238,-3.401663,-3.5431213,-3.6349125,-3.718298,-3.660861,-3.4949617,-3.4890268,-2.7206655,-2.992816,-2.8448057,-3.3412092,-3.6249967,-3.631797,-3.6187778,-3.6776037,-3.209542,-3.290198,-3.500802,-3.635624,-3.7444947,-3.800723,-3.8746004,-3.8855278,-3.8323593,-3.7516212,-3.6179302,-3.611691,-2.5677629,-3.063035,-3.0646286,-3.3079734,-3.415052,-3.3991437,-3.4203296,-3.5267968,-3.4884152,-3.6137447,-3.5897784,-3.4915075,-3.5315547,-3.659371,-3.603427,-3.4658449,-3.5462332,-3.5668259,-3.1181078,-3.2090178,-3.5138602,-2.5056915,-2.3012154,-2.7144535,-2.8054886,-3.0692592,-3.0474324,-2.95087,-2.9022055,-3.1328318,-3.0648017,-2.9850264,-3.1083472,-3.1190155,-3.2037191,-3.1706595,-3.3234248,-3.318356,-3.3009262,-3.2698054,-3.3152742,-3.0173917,-3.2917833,-3.3061206,-3.090673,-2.9657774,-3.034193,-3.2672997,-3.2928836,-3.3401585,-3.2927012,-2.9758554,-3.1304774,-2.7147388,-2.4832475,-2.9043448,-3.049536,-3.2497952,-3.199143,-3.116146,-3.1623197,-2.8898516,-2.9498549,-2.913932,-3.0573757,-3.1024446,-3.0803936,-2.7431765,-2.4802523,-2.818736,-2.2881825,-2.076128,-1.8945123,-2.1763725,-1.9162304,-2.0595925,-1.5047473,-1.224776,-1.268622,-1.1201137,-1.0222726,-0.9009653,-0.7872959,-1.0376632,-1.580814,-1.652341,-2.3822877,-2.1000512,-2.6856778,-2.6804974,-2.1678393,-2.3879702,-2.3193464,-1.9825932,-2.548779,-2.8147416,-2.9243317,-2.6929297,-1.5552083,-1.2000068,-1.1715487,-1.0945547,-1.0747117,-1.6175684,-2.2223506,-2.615088,-2.7095902,-2.3974693,-2.2093801,-2.4679224,-2.6203842,-2.86795,-2.8822267,-2.9525747,-3.0348399,-3.0186129,-3.1099699,-3.1000504,-2.9008658,-2.832444,-2.6003864,-2.2286856,-2.4768894,-2.1673155,-2.4935956,-2.6497183,-2.3454566,-1.8921744,-1.5424684,-2.1497374,-2.428381,-2.5897672,-3.0676134,-2.3538868,-1.6196644,-2.4235744,-2.5800924,-2.6277878,-2.2909775,-2.6071503,-2.2326436,-2.3875566,-2.6766677,-2.8877296,-2.9178116,-2.9091995,-2.8276649,-2.830556,-2.619402,-3.0240052,-2.194093,-2.5228255,-2.7755911,-2.54327,-2.4154296,-2.021442,-1.635007,-1.5910805,-2.576547,-2.7195501,-2.4862378,-2.4185884,-2.0319557,-1.6312672,-1.4840914,-1.5629069,-2.0564332,-1.4044324,-1.6660551,-1.5961515,-2.4383242,-2.4169679,-2.583814,-2.7147846,-2.246733,-1.7603124,-2.3884568,-2.627899,-2.661971,-2.8561869,-2.9264863,-2.7773392,-2.7637048,-2.5306902
+0.24423724,0.105198756,-0.55727285,-1.247974,-1.9873687,-1.619969,-2.4260511,-2.7380295,-3.041153,-2.2136874,-2.098241,-2.9253702,-2.7951412,-2.9399896,-2.735233,-2.6300507,-2.4931564,-2.3348563,-2.2208645,-2.0617313,-1.8669811,-1.9154798,-2.5000858,-2.435646,-2.3582242,-2.5538518,-3.1335976,-3.2355428,-3.3061986,-3.2119412,-3.5462563,-3.4695559,-3.4012108,-3.175467,-3.2797031,-3.224538,-3.155301,-3.1497836,-2.9155397,-2.568456,-2.708652,-2.8185909,-3.2694316,-3.4453213,-3.5472465,-3.4771218,-3.2138324,-3.802647,-3.5139387,-3.335102,-3.9219468,-3.761313,-3.6604233,-3.4835448,-3.2039292,-2.8960772,-2.7360475,-2.5190244,-2.460803,-2.3590884,-2.362737,-2.2635427,-2.196518,-2.2529337,-2.1222932,-2.4948072,-2.4781091,-2.489369,-2.6339993,-2.4264202,-2.0858593,-1.9932877,-1.914254,-2.0919902,-1.9175869,-1.7656701,-1.6569816,-1.626352,-1.716154,-1.7735883,-1.7413006,-1.5711876,-1.5843748,-1.0213856,-2.2711635,-2.3948553,-2.417863,-2.4559033,-2.3857298,-2.4096136,-2.370747,-2.0686803,-2.0067568,-1.8088685,-2.0617137,-2.5501502,-2.1141925,-2.1004987,-1.943034,-1.8985096,-1.9605583,-1.9501928,-1.8170091,-1.7309335,-1.5968254,-1.5935297,-1.5708178,-1.6611677,-1.5633103,-1.6110201,-1.7204016,-1.7725409,-1.7030147,-1.6802078,-1.6541294,-1.5794159,-1.5586673,-1.7153631,-2.146615,-2.356503,-2.140193,-1.9847239,-1.9158201,-1.924198,-1.901996,-1.9087646,-1.8508648,-1.7216116,-1.8199795,-1.7857257,-1.7706858,-1.7748046,-1.8310407,-1.7829187,-1.6717126,-1.5775144,-1.5840739,-1.4092579,-2.0737267,-1.9371961,-1.7442032,-1.6691067,-1.9959453,-2.069798,-1.903984,-1.8055456,-1.7862347,-1.7750767,-1.8245543,-1.8482779,-1.7101161,-1.8945117,-1.9249915,-1.8198494,-1.9377184,-1.9421138,-1.9664487,-1.9886101,-1.9796005,-1.84942,-1.8120422,-1.8111299,-1.809295,-1.78522,-1.9302608,-1.9588398,-2.0164714,-2.0247645,-2.000081,-1.9034172,-1.7813305,-1.6524607,-1.8880026,-2.0517354,-2.0984619,-2.131311,-2.2153835,-2.2526197,-1.9665955,-2.0440211,-2.1474462,-1.2686325,-1.9170948,-1.8832165,-2.0261126,-2.0858955,-1.9335538,-1.966772,-2.0925717,-2.0007758,-2.0903826,-2.4035876,-2.4378467,-2.289124,-2.159013,-1.9730154,-2.119125,-2.0044758,-1.9014529,-1.9181148,-1.9011499,-1.9581665,-1.6730529,-2.385149,-3.1076944,-3.5352342,-3.7385182,-3.5743454,-3.0920959,-2.7263594,-2.7410622,-2.613686,-2.3049607,-2.3317475,-2.082277,-2.1124964,-2.1280286,-2.5668862,-2.5070105,-2.4199052,-2.254982,-2.2299016,-2.284209,-2.6146553,-2.60963,-2.5415282,-2.2267847,-2.304976,-2.2768466,-2.190068,-2.1429205,-2.1619291,-2.173785,-3.027622,-2.613873,-2.1400468,-2.1088157,-2.0561662,-2.1871047,-2.5093722,-2.350163,-2.2607656,-2.2651699,-3.177477,-3.7170289,-3.9029431,-3.7950816,-3.0098839,-2.939279,-3.3147182,-3.3079758,-3.3147178,-2.9990373,-2.2583332,-1.8449209,-2.504815,-2.561584,-2.2947001,-1.5445747,-1.0185323,-1.601664,-1.7533178,-1.3480314,-1.0968577,-1.0832329,-1.1989886,-1.2188593,-1.5867951,-1.6201015,-2.0095384,-2.7454884,-2.5702832,-2.7656534,-2.98893,-2.032701,-2.242897,-2.321113,-2.7346845,-3.3382807,-2.2724302,-1.5355507,-1.2001065,-1.1236953,-0.8313391,-1.283133,-1.7280923,-1.4714965,-2.076549,-2.3380632,-2.383566,-2.400568,-2.621051,-3.1681614,-3.2213492,-3.2403674,-3.2530158,-3.2501452,-4.0031877,-3.9134092,-3.5200362,-3.6179857,-3.731155,-3.520646,-3.4899065,-3.0183353,-2.7866218,-2.808721,-2.7217255,-2.1863213,-1.3592347,-1.8865324,-1.9284278,-2.1129417,-2.5438323,-2.9674735,-1.8755821,-2.4305801,-2.8708334,-2.8839393,-2.8620543,-3.188063,-2.9778807,-2.553225,-2.8270772,-3.016571,-3.0265884,-3.001357,-2.9244132,-3.097632,-3.1178496,-3.8291621,-3.7620687,-3.5294726,-3.9349074,-4.0940075,-4.285965,-4.1840215,-3.3043404,-2.5382237,-2.492277,-2.6026607,-3.0029874,-3.392504,-3.8727188,-3.2241478,-2.27745,-1.883685,-2.37395,-1.6613233,-1.4590453,-1.1587316,-1.6335608,-1.8682922,-1.8082148,-2.0177555,-2.3350725,-1.5908915,-1.8347024,-1.9091208,-2.0714889,-2.3886497,-2.7826633,-2.9611244,-2.7778845,-3.33421
+-0.48190078,-1.1937402,-1.5011035,-1.1078855,-1.4489219,-1.0675671,-1.1053947,-1.2952036,-1.2850429,-1.2111552,-1.0370302,-1.2771999,-1.2934968,-1.2594998,-1.2419057,-1.239585,-1.1821189,-1.2147806,-1.2634536,-1.1762761,-1.1451038,-0.8104013,-1.5396123,-1.3556098,-1.3089637,-1.298892,-1.0977443,-1.369925,-1.5270606,-1.3568581,-1.1780757,-1.7606205,-1.7305269,-1.551354,-1.5717655,-1.6203407,-1.513684,-1.4098092,-1.4593917,-1.4368839,-1.3098899,-1.6519393,-1.736498,-1.5418497,-1.7883042,-1.4570442,-1.3641468,-1.5029769,-1.5800685,-1.4857837,-1.3681968,-1.637922,-1.4311261,-1.4428407,-1.4424404,-1.4167601,-1.3941174,-1.4182751,-1.501069,-1.4303756,-1.4496568,-1.4493263,-1.3856343,-1.3149325,-1.0246953,-1.1735791,-1.416144,-1.4069785,-1.4662294,-1.4474536,-1.4311448,-1.4512106,-1.4115635,-1.4614643,-1.5082785,-0.84458405,-1.2453381,-1.3573374,-1.2887169,-1.3875655,-1.3887006,-0.96442074,-1.2697967,-1.3049551,-0.95178705,-1.4016346,-1.3316311,-1.150457,-1.3452047,-1.3468437,-1.3817688,-1.3951527,-1.3989358,-1.4510992,-0.7172468,-1.341144,-1.5082719,-1.3536737,-1.3944361,-1.4816972,-1.3943931,-1.3608814,-1.2694086,-1.1794227,-1.1983538,-1.3591647,-1.3572732,-1.3957664,-1.3504907,-1.383207,-1.3958614,-1.46439,-1.4477748,-1.4308943,-1.3988832,-1.4015944,-1.372589,-0.96296376,-0.9337242,-1.385397,-1.4278613,-1.2947549,-1.3813549,-1.3374748,-1.1695095,-1.4147881,-1.0581764,-1.4210714,-1.3993784,-1.3542213,-1.435463,-1.459709,-1.472827,-1.4692084,-1.4126652,-1.4106088,-1.049914,-1.3921899,-1.1062621,-1.2974637,-1.0904832,-1.3113931,-1.0721239,-1.3384975,-1.4028949,-1.4527942,-1.4725055,-1.4371477,-1.5540848,-1.6301898,-1.265184,-1.4623705,-1.5479163,-1.3926747,-1.5127288,-1.5821582,-1.6596844,-1.6587495,-1.6350459,-1.5355798,-1.480884,-1.5156399,-1.5193161,-1.3151327,-1.5500547,-1.6748198,-1.7150924,-1.8014457,-1.7965714,-1.7872386,-0.66137284,-1.3111782,-1.6458298,-1.6284814,-1.6962754,-1.7102742,-1.778855,-1.7531711,-1.5949522,-1.460423,-1.6233253,-0.75014067,-1.3331941,-1.4947963,-1.5836211,-1.6592952,-1.7620267,-1.781329,-1.7943224,-1.71417,-1.0143062,-1.7313684,-1.6287171,-1.6610544,-1.7286005,-1.6957192,-1.6792513,-1.794912,-1.7796465,-1.7905368,-1.7328725,-1.7287841,-1.7129902,-0.5984139,-1.903232,-1.6714994,-1.6714963,-1.6063231,-1.6327368,-1.6425442,-1.6507031,-1.6660645,-1.7430981,-1.7231692,-1.7293162,-1.7867438,-1.7666367,-0.95392793,-1.4773031,-1.6739742,-1.7926358,-1.8910077,-1.5277123,-1.5811702,-1.6315306,-1.6398932,-1.6686921,-1.850972,-1.874926,-1.8750372,-1.8072106,-1.924197,-1.3026168,-1.8233863,-1.6745121,-1.7584873,-1.8295869,-1.8869759,-1.8431283,-1.8473927,-1.6466252,-1.844464,-0.7013768,-1.1160128,-1.8536603,-1.8113211,-1.7780983,-1.6395462,-1.7503663,-1.4971801,-1.8478394,-1.5511739,-1.486281,-1.3185493,-1.5146638,-1.4047871,-1.6042005,-1.666061,-1.3701335,-1.3145984,-1.7853067,-1.2513688,-1.1821407,-1.1484296,-1.3371342,-1.6253119,-1.4101923,-1.3355505,-1.6512696,-1.6728169,-1.4947759,-1.5127894,-1.3328849,-1.5326979,-1.2615706,-1.6662847,-1.6436001,-1.4949061,-1.7978021,-1.4009095,-1.3847371,-1.1776311,-1.2139796,-1.1149092,-1.1053205,-1.373877,-1.2994437,-1.4084109,-1.6017987,-1.7332662,-1.6679696,-1.4799485,-1.7594359,-1.6250983,-1.5920192,-1.6931666,-1.7250987,-1.4688067,-2.0537262,-1.7617447,-1.7798306,-1.6168561,-1.479271,-1.4833217,-1.4822301,-1.3920099,-1.553619,-1.4761599,-1.4499513,-1.2450788,-1.6950396,-1.5224612,-1.4840424,-1.5217713,-1.3308254,-1.1693515,-1.633628,-1.6260918,-1.7015027,-1.4164549,-1.5571808,-1.5730416,-1.4054626,-1.5789202,-1.638074,-1.5281438,-1.5936413,-1.4336039,-1.6740807,-1.5826439,-1.5762315,-1.6926918,-1.4534276,-1.4812381,-1.5631611,-2.0550435,-1.6759701,-1.3496591,-1.38136,-1.5985751,-1.6710678,-1.7032412,-1.5654013,-1.5638858,-1.5089241,-1.4478532,-1.5418844,-1.8615134,-1.6683791,-1.6159788,-1.4750041,-1.270738,-1.645557,-1.3762916,-1.4677488,-1.6472954,-1.3017579,-1.4274005,-1.3726002,-1.3778914,-1.4932133,-1.5529789,-1.6667755,-1.5741271,-1.5039119
+-0.7917741,-1.7829355,-2.528192,-2.190939,-2.368689,-1.6797299,-1.7233225,-2.2327557,-2.2574093,-1.7580568,-1.5515925,-1.6691338,-1.7108189,-1.677662,-1.5872618,-1.5717496,-1.5735799,-1.5900077,-1.5715615,-1.4417074,-1.4633101,-1.2192196,-1.575161,-1.5968438,-1.5338675,-1.5503273,-1.5301661,-1.4215097,-1.5722221,-1.5450286,-1.4517177,-1.8474503,-2.2034674,-2.2479997,-2.1043534,-2.0203874,-1.9936498,-1.7812821,-1.6792772,-1.6795403,-1.5911795,-1.7858344,-1.8395638,-1.8176761,-2.069583,-1.80763,-1.5948523,-1.6331586,-1.6762987,-1.7518324,-1.7201355,-1.9531347,-1.7515295,-1.7275883,-1.7411418,-1.6481808,-1.6642319,-1.6841248,-1.6778076,-1.4254705,-1.3222061,-1.7791051,-1.8933214,-1.725361,-1.7013127,-1.5931913,-1.6949325,-1.6521224,-1.6855317,-1.706215,-1.6956508,-1.7502558,-1.6662985,-1.5931368,-1.6828461,-1.2994165,-1.4959307,-1.4244972,-1.4645418,-1.6276292,-1.7461127,-1.7654339,-1.3103694,-1.5183198,-1.2666296,-1.397354,-1.4097878,-1.2811289,-1.4358947,-1.5056022,-1.6093663,-1.1811813,-1.6007437,-1.6131479,-1.4556319,-1.605153,-1.5889393,-1.5582329,-1.5257956,-1.5074692,-1.5940652,-1.4132961,-1.6444123,-1.6525003,-1.53571,-1.6304079,-1.4075133,-1.5395294,-1.6690601,-1.6430398,-1.6973817,-1.7771219,-1.722974,-1.7843486,-1.8116319,-1.5309182,-1.347365,-1.263735,-1.6176783,-1.5476854,-1.389995,-1.52365,-1.5008372,-0.9629912,-1.6410741,-1.486225,-2.025991,-1.7264549,-1.7091979,-1.6874324,-2.2947984,-2.1612744,-1.9378461,-1.850992,-1.7618014,-1.7261436,-1.8334004,-1.816428,-1.5845805,-1.5087419,-1.523831,-1.6620805,-1.5514611,-1.6750153,-1.736032,-1.8081702,-1.778838,-1.7709825,-1.798504,-1.7893995,-1.8108413,-1.86595,-1.5561349,-1.5615333,-1.7439734,-1.6522232,-1.759674,-1.8549472,-1.8831758,-1.8099834,-1.7637647,-1.7719991,-1.8320057,-1.8409214,-1.8507152,-1.9436961,-1.9604033,-1.9310299,-1.276634,-1.8220681,-1.8869262,-1.7247813,-1.7211996,-1.7301036,-1.791591,-1.8687717,-1.9964031,-2.0540848,-0.9165574,-1.6451272,-1.6903359,-1.6804773,-1.8034512,-1.8105757,-1.8006102,-1.8073486,-1.8531908,-1.8311393,-1.8431627,-1.0695072,-2.2208624,-2.2277503,-1.9258285,-1.7892126,-1.7970966,-1.8441082,-1.8043941,-1.8302498,-1.8652707,-1.9035689,-1.9128137,-1.9008553,-1.9004694,-1.5897199,-1.6017925,-1.6656877,-1.7905815,-1.7089747,-1.8524303,-1.941893,-1.9740885,-1.9477718,-1.909372,-1.9248548,-1.9720773,-2.0423727,-2.0036767,-1.4165647,-1.6937671,-1.9023734,-1.9715084,-2.1193318,-1.972802,-1.847304,-1.971979,-1.8522877,-2.0551734,-2.261609,-2.2233982,-2.205439,-2.222022,-2.2066627,-2.1006384,-1.8435912,-1.9664873,-2.1336465,-2.215777,-2.2126875,-2.1967354,-2.0307667,-2.0484638,-2.2822292,-0.82746893,-1.9318538,-2.189978,-2.081544,-2.0958872,-1.5580357,-2.1897876,-2.2473814,-2.2393546,-2.3865967,-1.8085467,-1.425054,-1.5876393,-2.219645,-2.226851,-2.3261166,-1.8307626,-1.4962612,-2.16535,-2.2614412,-2.221952,-1.9573892,-2.0578525,-2.3919058,-2.0728023,-2.3485847,-2.2111542,-2.3191872,-2.217942,-2.1579185,-1.8760096,-2.242185,-1.75286,-2.1745486,-1.8924202,-2.2406178,-2.2721233,-1.7583859,-1.9021262,-0.94088846,-1.0336034,-1.0525647,-1.2791702,-1.8096164,-1.6989573,-2.0738313,-2.1582,-2.0926483,-2.0725818,-2.0986516,-2.0409527,-2.0282426,-1.8225325,-2.1191194,-2.0422473,-1.8834869,-2.5441043,-2.3578856,-2.2943912,-2.4488697,-2.3910508,-2.1377835,-2.0178602,-1.9539273,-2.313789,-2.2739463,-2.1314862,-1.5433651,-2.0680842,-2.2300596,-2.2421155,-2.2617552,-1.8994819,-1.7977947,-2.128129,-2.0836825,-2.2010603,-1.8752937,-1.713921,-2.134913,-2.0135806,-2.1696453,-2.0846934,-1.9402164,-1.9984237,-1.865738,-2.0796955,-2.0265648,-1.8659581,-1.8593546,-1.8478609,-1.9334869,-1.5931444,-2.3151767,-2.1995049,-1.6788348,-1.8070922,-2.089695,-2.0278971,-2.0473075,-1.964528,-1.7004949,-2.003024,-1.6209773,-1.628016,-1.8986455,-1.5865716,-1.6983103,-1.5927936,-1.6533791,-2.2048092,-1.9522133,-1.9452848,-1.9469396,-1.5081425,-1.748447,-1.7902387,-1.7212795,-2.0857487,-2.0357726,-2.0622725,-2.060752,-1.928192
+-0.72092974,-1.509808,-1.9511727,-1.814722,-1.8534571,-1.8346293,-1.6304163,-1.6715891,-1.8560237,-1.8191435,-1.7693648,-1.78375,-1.905308,-1.8273404,-1.8388492,-1.7795581,-1.731312,-1.7210621,-1.720795,-1.8259557,-1.9644197,-2.0857897,-2.0196886,-1.984403,-2.0780706,-2.1950266,-2.2764688,-2.350634,-2.2320683,-2.299921,-1.0894057,-1.8290838,-1.7777247,-1.8003243,-1.8930086,-1.8524233,-1.7712427,-1.7999742,-1.9728082,-2.132163,-2.247491,-2.3468049,-1.348425,-1.8741909,-1.865142,-1.8076767,-2.0533466,-2.0477042,-1.1970407,-2.1217434,-2.039054,-1.98356,-1.931683,-1.9394158,-2.0303462,-2.2313461,-2.367215,-2.2866616,-1.2396318,-1.948413,-2.1365767,-2.213572,-2.3539767,-2.3693032,-2.5031161,-1.9035956,-1.8882618,-2.0682335,-2.1587203,-2.1811926,-2.355731,-2.5141945,-2.4648168,-2.5003934,-2.5206428,-2.4788744,-2.3459578,-2.3933897,-2.2700396,-2.3922422,-2.4682665,-2.5069795,-2.611536,-2.6266298,-2.544328,-2.4135683,-2.4441414,-2.238158,-1.7145799,-1.84546,-1.8791765,-1.9609321,-2.2099028,-2.393022,-2.5146453,-2.4085715,-2.3576524,-1.985505,-1.5408782,-1.7271901,-1.9246773,-1.8309516,-1.9298564,-2.1284907,-2.2316113,-1.760899,-1.4573555,-1.9621571,-1.9647428,-2.1061885,-2.3222046,-1.8856804,-2.0836751,-1.4379569,-2.0791006,-2.3566866,-2.418994,-2.452505,-2.4539204,-2.4267077,-1.9807245,-2.0674458,-1.8099356,-1.9683694,-2.2979317,-1.6131669,-1.8125451,-2.155293,-2.3461266,-2.4352806,-2.408894,-1.5322156,-1.9170079,-2.2299914,-2.275415,-2.4434814,-2.6293674,-2.6803179,-1.9626833,-2.1029675,-1.9534127,-1.7110736,-1.9067522,-2.144319,-2.467725,-2.6101184,-2.6080465,-2.419622,-2.3622713,-2.4811442,-2.473174,-2.5554843,-2.7307544,-2.4664273,-1.2894747,-2.1645699,-2.1909294,-2.2185197,-2.2926683,-2.352851,-2.4756541,-2.5324204,-2.6235452,-2.7678595,-2.6614122,-2.5338266,-2.5722518,-2.6619496,-2.783233,-2.789985,-2.8468342,-2.5084686,-1.6705757,-2.2618742,-2.362269,-2.3874874,-2.4689593,-2.6280475,-2.6927557,-2.2444701,-2.0709872,-2.2450576,-2.3651748,-2.3981295,-2.551745,-2.6964417,-2.6385305,-2.6655664,-2.7910419,-1.8308564,-1.6650878,-2.0730493,-2.1176505,-2.0994372,-2.148302,-2.3130174,-2.395619,-2.527091,-2.4823112,-2.540287,-2.5452657,-2.5510106,-2.589708,-2.5133715,-2.2705436,-2.2977743,-2.4435282,-2.4519262,-2.474765,-2.6497107,-2.6558862,-2.622388,-2.5724015,-2.6281507,-2.7054381,-2.6838279,-2.5854414,-2.60426,-2.4539087,-2.5358462,-2.5071685,-2.5434709,-2.6520507,-2.4404538,-2.4385467,-2.4331899,-1.447564,-2.199896,-2.3348017,-2.3423407,-2.3998077,-2.4408321,-2.4419637,-2.2179093,-2.3316908,-2.3706417,-2.5621858,-2.6440315,-2.6592975,-2.5188985,-2.3276212,-2.6580586,-1.371467,-1.9694761,-2.0137732,-2.2075784,-2.397447,-2.111123,-2.0283833,-2.0442612,-2.175101,-2.3014445,-1.9805595,-1.8345658,-2.067056,-2.4969246,-2.6066551,-2.542425,-2.3590467,-2.0310287,-2.619453,-2.642015,-2.330148,-2.8012285,-2.633012,-2.5652475,-2.5669723,-2.5429277,-2.52846,-2.5605273,-2.4684434,-2.4223778,-2.016587,-2.371738,-2.1838565,-2.2764482,-2.0140808,-2.4732842,-2.813023,-2.6066403,-2.5027306,-2.0979965,-1.7773439,-1.5055382,-1.6493798,-2.2824116,-2.3691704,-2.556745,-2.6010852,-2.6318133,-2.6161964,-2.530799,-2.3950202,-2.4242654,-2.4005258,-2.1934624,-3.0775986,-3.312785,-3.418157,-3.3504562,-3.024444,-3.2359164,-3.0663216,-2.8659806,-2.8787208,-2.6641297,-2.5895262,-2.5199935,-2.4920733,-2.3731945,-2.4872386,-2.4799955,-2.434435,-2.1161153,-2.6976821,-2.8700395,-2.9182417,-2.7805336,-2.7275805,-2.5358198,-2.3290236,-3.2389565,-3.0807667,-2.7559662,-2.7640288,-2.6220944,-2.5139925,-2.411106,-2.3704386,-2.346182,-2.2912452,-2.1702247,-2.2687452,-2.341525,-2.3064106,-1.8871983,-2.8911977,-2.3270826,-2.15445,-2.4423535,-2.2393246,-2.1575267,-2.1985874,-1.9636477,-2.4063728,-1.9423851,-2.242474,-2.2303119,-2.6357718,-2.1879823,-2.1049056,-2.153851,-2.3898063,-2.2207513,-2.1029024,-1.8852636,-2.5888643,-2.365845,-2.2711806,-2.2851825,-2.1867118,-2.1688368,-2.1228971,-2.0970714,-1.97601
+-0.260239,-1.4656224,-2.7050552,-2.4500675,-2.5066347,-2.4809768,-1.796292,-2.4960537,-2.7055712,-2.6860495,-2.4995635,-2.0437372,-2.4480534,-2.4883256,-2.6912603,-2.4831848,-2.5294518,-2.5757613,-2.654284,-2.7347736,-2.7236536,-1.8471031,-2.1623034,-2.380466,-2.499455,-2.77851,-2.8096864,-2.8941276,-2.640926,-2.764853,-1.8898859,-1.5471698,-1.8390323,-2.262527,-2.4728725,-2.4780045,-2.4900217,-2.5843983,-2.7274077,-2.773024,-2.6561747,-2.879237,-0.9766336,-2.156774,-2.2790728,-2.3440638,-0.79524535,-2.0409923,-1.8216776,-1.9573743,-1.9320674,-2.2113783,-2.302547,-2.3450313,-2.4923773,-2.7899218,-2.5747187,-2.1924405,-0.5178407,-2.027433,-2.1159062,-1.8417821,-2.0755048,-2.1941667,-2.4362707,-1.536218,-1.2229767,-2.1015348,-2.1836045,-2.2621157,-2.3441074,-2.64465,-2.5393903,-2.529845,-2.6176338,-1.4625071,-2.1135185,-1.5350562,-2.119285,-2.1900892,-2.331395,-2.4974823,-2.6031563,-2.6913016,-2.6501594,-2.5146732,-2.6605833,-2.616932,-2.0976605,-1.7115415,-2.2807465,-2.505491,-2.624331,-2.7692223,-2.3439424,-1.8550942,-1.8148652,-2.2284946,-2.4695234,-2.1186628,-2.2738667,-2.1880648,-2.3551378,-2.609051,-2.8280997,-2.4232488,-0.8664991,-1.6699255,-1.9863108,-2.0156407,-2.0081346,-2.1920114,-2.2937608,-2.4804251,-2.655267,-2.7730484,-2.6492338,-2.691803,-2.6736622,-2.6865172,-2.4860709,-1.877597,-2.2081332,-1.3447114,-1.9342571,-1.503626,-1.928301,-2.1860468,-2.4228263,-2.4258997,-2.2121665,-2.244774,-1.5880969,-2.2007532,-2.4673615,-2.6207423,-2.718559,-2.8110309,-2.6769109,-1.493641,-1.6358358,-1.7505302,-2.116283,-2.3402,-2.5975757,-2.060317,-2.353444,-1.3961233,-2.0470426,-2.3459246,-2.1710274,-1.8438743,-2.2099347,-2.4363365,-0.9354106,-2.1748943,-2.1821623,-2.2683609,-2.4049065,-2.499427,-2.552704,-2.5969043,-2.6350737,-1.8982385,-2.2056088,-1.7374563,-2.231844,-2.3405836,-2.463263,-2.5781722,-2.6422815,-2.6805117,-2.5760756,-2.078316,-2.3446128,-2.4289598,-2.5671232,-2.6682436,-2.6444721,-2.6095057,-2.7336342,-2.800063,-2.6920924,-2.698197,-2.8026373,-2.9028149,-2.9337034,-2.89328,-2.8665812,-1.5131172,-0.8120948,-2.3851655,-2.4799376,-2.5396066,-2.614053,-2.637992,-2.6538823,-2.7036595,-2.6770587,-2.7184198,-2.7037702,-2.6885493,-2.685432,-2.7167776,-2.6330009,-2.7189088,-2.7823188,-2.8446937,-2.8675206,-2.9004307,-2.8416572,-2.7874022,-2.7679791,-2.7577758,-2.8043642,-2.7989237,-2.7720213,-2.7519052,-2.8014455,-2.9092798,-2.9537597,-2.9751403,-2.9779458,-2.963789,-2.925552,-3.005591,-1.6848177,-2.4733596,-2.7504888,-2.7637389,-2.7984972,-2.8009784,-2.8529944,-2.8479664,-2.8322542,-2.866885,-2.9072714,-2.9211068,-2.8506813,-2.904093,-2.915614,-2.8729386,-2.5559568,-2.5475738,-1.3820162,-2.7298129,-2.870407,-2.1471562,-1.8534794,-1.4184593,-2.3344917,-2.5926414,-2.7991698,-2.693824,-2.815949,-2.5477142,-1.9861711,-2.2209814,-2.688611,-2.8534799,-2.5623348,-2.6919684,-1.8651149,-2.4607594,-2.6703198,-2.6524386,-2.8208508,-2.7040958,-2.804923,-2.7515488,-2.7271914,-2.8035855,-2.2552838,-2.7881863,-2.6642025,-1.8506387,-1.4509593,-1.8249351,-2.565273,-2.7274723,-2.262626,-2.3668056,-2.5364208,-2.3890731,-2.5753934,-2.4779363,-2.793317,-2.829546,-2.8293943,-2.8387313,-2.8466892,-2.7810059,-2.8132677,-2.8118312,-2.7656388,-1.297802,-1.7137202,-2.4261026,-2.7472591,-2.7467704,-2.269415,-2.9214556,-2.8678532,-2.8028402,-2.862468,-2.8225741,-2.8150282,-2.8174796,-2.7580633,-2.9371667,-2.899852,-2.9586942,-2.764938,-1.7181236,-2.480236,-2.8717992,-2.7549272,-2.6901562,-2.8733854,-2.8030457,-1.6583973,-2.838404,-2.8194423,-2.7843783,-2.7781935,-2.8150592,-2.8091595,-2.3936563,-2.6502478,-2.695575,-2.7163453,-2.7655127,-2.818029,-2.6067204,-2.607893,-2.1259031,-2.672583,-2.707687,-2.6815324,-2.7462769,-2.5933626,-2.700982,-2.6565807,-2.7476282,-2.7327893,-1.8639711,-2.1459036,-2.113539,-2.8467064,-2.77333,-2.6893656,-2.6931098,-2.814641,-2.737432,-2.6297338,-1.7720089,-2.6037612,-2.5266013,-2.5329947,-2.5895228,-2.5840764,-2.5410285,-2.544474,-2.6684184,-1.981613
+-0.49841455,-2.3274748,-3.4502258,-3.3883934,-3.1858053,-2.527793,-1.9939431,-2.2029119,-2.2413487,-1.9758576,-1.6316866,-1.1970419,-1.7432683,-1.5412775,-2.0662222,-2.4126728,-2.4884853,-2.2204332,-1.8903421,-1.7424065,-1.7358184,-1.0467242,-1.9515016,-1.891381,-1.769913,-1.6527845,-1.5945829,-1.6005322,-1.6164228,-1.635367,-0.83415806,-2.1255922,-2.122541,-2.309842,-2.6955276,-2.8076997,-2.3942735,-2.0541,-1.7954386,-1.7041095,-1.6068895,-1.5643512,-1.0161339,-1.1913613,-1.6451336,-1.535147,-1.3937422,-2.6008146,-2.6575792,-3.162983,-2.5238943,-2.3115964,-2.2293563,-2.016759,-1.8287859,-1.6856964,-1.6759653,-1.6441914,-1.0605053,-2.0088773,-1.619991,-1.4040745,-1.8003978,-2.3327432,-2.4218714,-2.8883622,-3.2466087,-4.0695386,-3.2220464,-2.3646183,-2.083425,-1.9566313,-1.6767524,-1.7006968,-1.9052695,-2.7041836,-2.2577736,-2.0104287,-2.728694,-2.435828,-2.1895356,-1.9533147,-1.7909858,-1.7011739,-1.6821519,-1.6288397,-1.0809072,-2.0340447,-1.8977281,-1.7707256,-2.8936415,-2.4180999,-2.044089,-1.943623,-1.8103778,-1.7485293,-1.2479051,-1.5476042,-1.637451,-1.4758877,-1.5713423,-1.6247207,-1.6437196,-1.6596161,-1.6242,-1.6423869,-1.4026889,-0.9642851,-1.3081474,-1.1520683,-1.2396743,-1.728084,-1.4276437,-1.568554,-1.194712,-1.7247072,-1.5849987,-1.6357809,-1.7065428,-1.7475024,-1.70066,-1.0218734,-1.1767484,-1.5564524,-1.3499225,-1.2012688,-1.6864206,-1.6377718,-1.6289412,-1.1070373,-1.5251431,-1.4895426,-1.373277,-1.575723,-1.5563799,-1.6910712,-1.7239174,-1.7025422,-1.7101873,-1.6805265,-1.1464984,-1.028684,-1.3679935,-1.5796894,-0.8189797,-1.6753865,-1.465678,-1.6795443,-1.8411885,-1.6255543,-1.253929,-1.4713389,-1.2173132,-1.8534034,-2.2764654,-3.1255565,-2.4734535,-2.2005072,-2.046884,-1.8931543,-1.7826318,-1.6926941,-1.6241242,-1.6551169,-1.438197,-1.1818045,-1.9526287,-1.9178506,-1.7635204,-1.7445998,-1.7549943,-1.7165793,-1.1833488,-1.6780621,-1.6988055,-1.6686147,-1.6888945,-1.6753875,-1.4238592,-1.6054283,-1.6607009,-1.6964434,-1.1392788,-1.449722,-1.5958436,-1.6861831,-1.7707108,-1.8355039,-1.87144,-1.4065235,-2.4227252,-3.2489915,-3.1577978,-2.744165,-2.3956003,-2.1257842,-1.9975139,-1.6256161,-1.9817942,-1.9017768,-1.8571283,-1.8035624,-1.76557,-1.7289784,-1.7734225,-1.7387532,-1.6452875,-1.6478243,-1.6524334,-1.6536773,-1.6653688,-1.6723915,-1.6700736,-1.6434169,-1.6938332,-1.7136544,-1.6997316,-1.6934444,-1.7997471,-1.7585245,-1.8048285,-1.7927219,-1.8167243,-1.8287612,-1.8248357,-1.8164507,-1.8577031,-1.8515973,-1.8769857,-1.8628346,-1.8447894,-1.8227698,-1.8345908,-1.8627403,-1.8975497,-1.9285306,-1.8447679,-1.7810913,-1.8219343,-1.7518727,-1.8989037,-1.8216289,-1.7953235,-1.8016791,-0.93849134,-1.8551568,-2.011855,-1.7332233,-1.062842,-1.6927677,-3.017691,-3.2287455,-3.4617956,-3.5127106,-3.0983386,-2.500238,-2.1933706,-3.2515311,-3.4271097,-3.4592361,-2.7245421,-2.6362238,-2.8625703,-3.7323604,-3.5988193,-3.318106,-2.9150686,-2.383556,-2.2381864,-2.0416865,-1.970827,-1.9649991,-1.4800614,-2.875577,-2.8165736,-2.3523874,-2.1574154,-1.9533747,-3.256724,-2.9585543,-2.7233481,-3.0967557,-3.768403,-3.8199084,-3.7888966,-3.433655,-3.211862,-2.8904662,-2.5812063,-2.400917,-2.2262402,-2.1519527,-2.0647035,-1.960888,-1.9021839,-1.8839215,-3.1167648,-4.024317,-4.024103,-3.7656484,-3.2610383,-3.459449,-3.3920949,-3.3018346,-3.1710753,-2.8318896,-2.5804658,-2.373504,-2.2107344,-2.2647715,-2.1806254,-2.1336188,-1.4980804,-2.2222471,-2.952333,-3.5038536,-3.2271123,-2.8719873,-2.5515244,-2.3914819,-2.0705976,-2.300684,-2.176969,-2.0211492,-1.9552834,-1.8199114,-1.8104898,-1.2884897,-3.4728541,-3.0800486,-2.8291016,-3.0536518,-2.5832589,-1.6951104,-2.1963062,-1.8750927,-3.2914813,-3.2901056,-2.8011186,-2.1915085,-1.9764155,-1.8310852,-1.8618416,-1.7849907,-1.8886107,-1.8269635,-1.2973608,-1.7050627,-3.0351696,-3.0609884,-2.6498933,-2.2972445,-2.382337,-2.1755748,-1.9026533,-1.7711678,-1.7662297,-1.6362373,-1.658383,-1.6261002,-1.6414673,-1.6399711,-1.6623788,-0.9207819,-1.2359728
+-0.4818671,-0.9716694,-2.0585356,-1.9274939,-1.896494,-1.7968391,-1.5388166,-1.8686982,-1.9561568,-1.9600941,-1.836392,-1.8467587,-1.8845693,-1.5094029,-1.5213953,-1.9177871,-1.8792887,-1.8911202,-1.890138,-1.8946172,-1.8828623,-1.8332871,-1.6487285,-1.8489183,-1.8367484,-1.8709997,-1.9402217,-1.952171,-1.9132,-1.7004032,-1.8797113,-1.912918,-1.2152313,-1.3222367,-2.659523,-2.3580017,-2.2689228,-2.0388863,-1.900688,-1.8690189,-1.8426801,-1.8623377,-1.8395928,-1.8901705,-1.9322762,-1.6397818,-1.4017569,-2.7040498,-3.1102867,-2.6849709,-2.5652008,-2.2931132,-2.1651182,-2.0098777,-1.9436723,-1.9602255,-1.8905834,-1.8930088,-1.4604834,-1.7078406,-1.7900684,-1.7791705,-1.8128265,-1.850517,-1.8161138,-1.4152495,-1.5415084,-2.5755544,-3.2926092,-3.786909,-3.9273005,-2.5382104,-2.0768023,-2.0446372,-1.9885997,-1.8575664,-2.218074,-2.360035,-2.6765091,-2.939987,-2.135915,-2.0209808,-1.9545467,-1.916251,-1.9287211,-1.6424352,-1.7311089,-1.8896677,-1.6522042,-2.3076508,-2.1699617,-2.2248678,-2.2396421,-2.256644,-1.9426016,-1.9286417,-1.9046849,-1.9087077,-1.929679,-1.8712735,-1.9111274,-1.8964788,-1.4238228,-1.6920699,-1.8774776,-1.9701041,-1.9281832,-1.7495786,-1.5701602,-2.3074017,-2.2452016,-2.3591275,-3.1477656,-2.5176005,-2.7578533,-2.117317,-1.8473201,-1.8005499,-1.7860581,-1.4815286,-1.9389669,-1.7592546,-1.7762157,-1.6975675,-1.5814868,-1.3869692,-1.8106159,-1.7316076,-1.6920131,-1.8732337,-1.8141869,-2.13154,-2.0677974,-2.6646214,-2.3196933,-1.8166445,-1.7259223,-1.6519324,-1.8184371,-1.7504884,-1.7789315,-1.8864727,-1.9085224,-1.6815172,-1.6892734,-1.5778103,-1.4550833,-1.7698623,-1.7656499,-1.8303651,-1.6843547,-2.2544403,-2.9008396,-3.3249102,-3.8527691,-3.6082888,-3.2070928,-3.2071102,-2.451346,-2.1050458,-2.0565696,-2.018297,-1.9921142,-1.9434527,-1.8196914,-1.9519427,-2.007659,-2.0128257,-1.9716285,-1.9066467,-2.0370433,-1.992884,-2.7878456,-2.2900367,-2.004464,-1.9760994,-1.8322122,-2.218765,-2.0672626,-2.1180146,-2.2046998,-2.0230842,-2.1029634,-2.111917,-2.0073824,-1.9611698,-2.0610752,-2.0734477,-2.5295925,-3.0435221,-2.316946,-2.1541524,-2.1479883,-2.0241947,-2.068267,-2.1322255,-1.9702808,-1.8069037,-1.9930824,-1.9999753,-2.0877645,-1.9649106,-1.9546517,-1.9487962,-1.9203833,-1.9589535,-1.9330364,-1.9565895,-1.9360722,-1.9147847,-1.9742113,-1.9786662,-1.9204146,-1.9449344,-1.9559959,-1.9250242,-2.028717,-1.9440422,-1.9735936,-2.0524747,-1.9655117,-1.9669076,-1.9438041,-1.988257,-2.008449,-2.0022767,-2.0489895,-2.0807197,-1.9886428,-2.0603983,-2.0993035,-2.1145086,-2.0950384,-2.079841,-2.1092942,-2.1820824,-2.1351118,-2.0139399,-2.0882738,-2.1300306,-2.1497746,-2.0282779,-1.9902133,-1.7613369,-2.048534,-2.0591822,-2.1157765,-2.01552,-1.9723557,-0.92061037,-2.173951,-2.1395457,-2.1151633,-2.150021,-2.104843,-2.033382,-2.0961637,-2.098671,-2.1317053,-2.116866,-1.927483,-1.891375,-1.6498786,-2.0338464,-2.192675,-2.220533,-2.129435,-2.0491934,-2.0159194,-2.0582786,-2.0268538,-1.9931544,-2.0213356,-2.0492923,-2.082069,-1.9727372,-1.9343446,-1.9968783,-1.5170585,-1.9051952,-1.9394574,-1.4582847,-2.6465719,-2.476118,-2.2146938,-2.1073084,-2.0842087,-2.0510545,-2.0521672,-2.0350866,-1.9786519,-1.9274632,-1.942613,-1.9342294,-1.9149072,-1.9171152,-1.955036,-1.3057722,-2.269884,-2.2602193,-2.0932775,-2.0938463,-2.1370637,-1.9925038,-2.322277,-2.3977032,-2.226934,-2.078075,-2.1022902,-2.0904536,-1.977816,-2.0346937,-1.9501762,-1.4257871,-2.1898355,-2.296743,-2.1306503,-1.9863144,-2.087211,-1.9676744,-1.9323082,-1.9661597,-2.0818443,-1.9749445,-1.9921323,-1.9672931,-1.8650533,-1.4616559,-2.0350685,-2.1262727,-2.0298004,-2.0289836,-1.9426552,-1.8992236,-1.9457992,-1.9531308,-2.0441537,-2.1619296,-2.0887358,-2.0736911,-2.0465593,-2.0750546,-2.162466,-2.1384068,-2.2399533,-1.2238952,-1.8261951,-1.5768117,-2.217786,-2.306727,-2.1363547,-2.0237675,-1.9583179,-2.057889,-1.9917668,-1.9836498,-1.9533354,-1.920436,-2.0145264,-2.0549903,-2.111874,-2.1473026,-2.188434,-2.1759486,-2.2135866
+-0.20087561,0.115712255,0.1522595,-0.11837071,-0.2652773,-0.064982176,-0.15460983,-0.26074287,-0.32253107,-0.08553594,-0.07607928,-0.26474026,-0.20358548,0.09775284,-0.045382652,-0.15566427,-0.21349332,-0.33600846,-0.37826017,-0.3881899,-0.41089228,-0.035115514,-0.23511255,-0.3554687,-0.28638577,-0.12711665,-0.26941863,-0.48737624,-0.12102476,-0.24252462,-0.30599806,-0.39217708,-0.1905962,0.47198662,-0.46840408,-0.57381856,-0.7209131,-0.7404134,-0.66631,-0.57899106,-0.579503,-0.46032134,-0.5618958,-0.57381946,-0.67888737,-0.4984428,-0.087964386,-0.39069954,-0.72023875,-0.49074152,-0.38621253,-0.45353362,-0.44535384,-0.49816558,-0.45050344,-0.5326991,-0.40415433,-0.10363492,-0.13177255,-0.0885458,-0.21929559,-0.12508377,-0.24381629,-0.17206937,0.060627785,-0.35368457,-0.4107121,-0.67545265,-0.4548374,-1.4063693,-2.0325315,-1.7253469,-1.0116862,-1.0748957,-1.0556535,-0.91322,-0.71367055,-1.2910196,-0.9785623,-0.71161395,-0.7999551,-0.7271129,-0.288025,-0.46913043,-0.4962056,-0.544011,-0.5465103,-1.0159168,-0.7582521,-0.9265879,-1.1923796,-0.87580734,-0.8212173,-0.7759661,-0.7591124,-0.75045127,-0.72210974,-0.49052867,-0.6235393,-0.4896547,-0.56716675,-0.6470755,-0.21168211,-0.7774683,-0.71807855,-0.7440324,-0.49477682,-0.83171684,-0.6335262,-0.7687757,-0.8121633,-0.5323748,-1.0820869,-0.92323357,-0.89979416,-0.8659491,-0.6678644,-0.566704,-0.45181772,-0.29996383,-0.44451883,-0.58043224,-0.9114943,-1.2571634,-1.2354192,-1.1291686,-0.90780795,-0.65467703,-0.48522177,-0.67850786,-0.69706017,-0.50155365,-0.39813888,-0.43411437,-0.81282353,-0.6436341,-0.5546338,-0.44950312,-0.42709735,-0.60438746,-0.51856065,-0.3722953,-0.5350323,-0.4921387,-0.60506517,-0.6040428,-0.13451707,-0.6703553,-0.7061086,-0.51593745,-0.5369118,-0.6043722,-0.62203544,-0.53385705,-0.89748424,-1.1725844,-0.7520008,-0.54328173,-1.2856239,-0.97829694,-0.8893695,-0.6263206,-0.43277374,-0.6090236,-0.4642395,-0.30748692,-0.8168622,-0.7576426,-0.381627,-0.73950785,-0.5083496,-0.6849209,-0.60391533,-0.6557708,-0.32000276,-0.3254489,-0.53823507,-0.71808743,-0.92722625,-0.9934004,-1.0208936,-0.7848111,-0.8082003,-0.7631573,-0.74745065,-1.4676844,-1.5141603,-0.97474056,-0.8820516,-0.9614962,-0.88107175,-0.75515354,-0.69313043,-0.6440808,-0.43600032,-0.6485458,-0.6006801,-0.5628124,-0.56451714,-0.5644613,-0.5801483,-0.57554847,-0.4815589,-0.49751648,-0.45000648,-0.4500312,-0.35842565,-0.28934094,-0.3286825,-0.37085506,-0.36357522,-0.42725238,-0.44359192,-0.4655247,-0.4464346,-0.4687793,-0.43000132,-0.40332004,-0.3831201,-0.41343912,-0.4292576,-0.4351632,-0.46931085,-0.41283515,-0.392397,-0.35184935,-0.3683829,-0.40138957,-0.35513905,-0.41042095,-0.3605019,-0.33834204,-0.39950892,-0.3353968,-0.4587234,-0.39868686,-0.35945126,-0.42270887,-0.4326363,-0.44036478,-0.43259963,-0.50329787,-0.5766278,-0.5457304,-0.53976595,-0.5776728,-0.5285121,-0.58977455,-0.6652486,-0.2216179,-0.48154142,-0.45838118,-0.32764828,-0.34920484,-0.39914584,-0.238529,-0.5387314,-0.58203906,-0.56821793,-0.50557417,-0.58551484,-0.6240895,-0.63622,-0.6095913,-0.53012604,-0.4971116,-0.4758623,-0.52991515,-0.56208026,-0.56727946,-0.55048895,-0.53448015,-0.5373929,-0.36176386,-0.4293169,-0.4573064,-0.5667967,-0.6262263,-0.18420437,-0.5030775,-0.47715846,-0.027693842,-0.8518604,-0.5628614,-0.43615866,-0.4260508,-0.41608414,-0.39886013,-0.4008021,-0.41982543,-0.42524907,-0.46092233,-0.467891,-0.4331477,-0.45135295,-0.48134252,-0.55194813,0.007305499,-0.505412,-0.5845221,-0.5946995,-0.5015117,-0.34554732,0.024913277,-0.51843125,-0.5611463,-0.4406763,-0.35421607,-0.33643717,-0.2945353,-0.3015881,-0.2812766,-0.31778067,-0.3526928,-0.37599713,-0.31969166,-0.27806643,-0.2978081,-0.29887506,-0.33026814,-0.022957478,-0.17306086,-0.32814983,-0.28881964,-0.30152008,-0.2787685,-0.34585783,0.33104664,-0.49420372,-0.48367396,-0.45545924,-0.39179048,-0.37525317,-0.42230698,-0.43803796,-0.41325548,-0.28769052,-0.25399438,-0.26927826,-0.2620064,-0.35523447,-0.4670833,-0.49649647,-0.5914597,-0.53142315,-0.5075092,-0.42277154,0.1402716,-0.5345925,-0.7000144,-0.5675817,-0.43708217,-0.60954964,-0.59607,-0.61048603,-0.71959776,-0.13681242,-0.2640966,-0.3978218,-0.5034484,-0.5756995,-0.6636421,-0.73271006,-0.75519484,-0.68190604
+-0.4482017,-0.8862892,-0.80496365,-0.7495023,-0.94907504,-1.1502501,-1.0748701,-1.2870611,-1.1994085,-1.112326,-1.3351259,-1.5481988,-1.2919879,-1.1914412,-1.5143929,-1.3586415,-1.9996036,-1.8255752,-1.8603258,-1.8280917,-1.9496675,-2.0947428,-1.904816,-2.0585122,-2.0786476,-2.2681086,-2.389443,-2.0534463,-1.9951774,-2.1586342,-1.8605971,-1.4635686,-1.2645112,-1.3485752,-1.0561239,-0.6806576,-1.0325683,-1.0718745,-0.85351515,-0.9054015,-0.88806206,-0.82389754,-1.6302491,-3.050691,-1.9051999,-1.3956766,-1.2622856,-1.2561961,-1.6380717,-2.114787,-2.138338,-1.8273591,-1.3302702,-1.6176548,-2.0972414,-1.5028305,-1.5937847,-2.294438,-3.156527,-3.622857,-3.6610985,-3.114856,-3.204021,-3.875266,-3.548125,-3.5482666,-3.9294567,-4.2403307,-3.9289129,-3.7085168,-3.4278002,-3.4048374,-3.6988611,-3.4343674,-2.946567,-2.7498693,-2.540825,-2.3379483,-2.05519,-1.7696632,-2.39674,-3.4022684,-3.1401534,-2.8710475,-2.5519898,-2.207827,-1.9946216,-3.7770424,-3.7033982,-3.1925983,-3.0236948,-3.8561156,-3.7151322,-3.535923,-3.6836739,-3.9295642,-4.1147766,-4.085916,-3.7474751,-3.5899942,-3.3178155,-2.8073096,-2.7150574,-3.7403982,-3.7853932,-3.9850302,-3.6475668,-3.237492,-3.3715825,-3.5308962,-3.3620954,-3.1418793,-3.8486352,-4.1840553,-4.0869784,-4.0447226,-4.3535905,-4.1688285,-4.0284204,-3.794777,-3.4329977,-3.0792413,-2.741352,-2.4403505,-2.1631103,-2.2681303,-2.8930767,-4.2229824,-4.1927743,-3.952478,-3.3677175,-3.3481593,-3.492935,-3.2987685,-2.8385336,-2.4097345,-2.281185,-2.412095,-2.996318,-3.5741372,-3.3004084,-3.5408995,-3.8245032,-4.1466837,-4.229208,-4.1126223,-4.129929,-4.255246,-4.152588,-3.8773398,-4.25327,-4.163449,-4.37065,-4.2087903,-4.025472,-3.790229,-3.472648,-3.2524188,-2.8866026,-3.5964794,-3.7087991,-3.9579744,-3.7230816,-4.1881523,-4.288599,-4.2634287,-4.21959,-4.0188417,-3.9638834,-3.9898162,-4.1217203,-4.128977,-4.070285,-3.881157,-3.832855,-3.5887425,-3.170634,-2.691145,-2.2831383,-3.4699793,-3.497965,-3.3802018,-3.2661176,-3.1471925,-2.9088893,-2.62318,-2.3351145,-2.2567124,-2.2572834,-2.0897913,-2.9546862,-2.4108825,-1.8656468,-2.088294,-2.169289,-3.2804992,-3.1189957,-3.235077,-3.9392056,-3.8024354,-3.8431764,-4.148516,-4.0415897,-3.5992332,-2.95444,-2.089444,-1.6397988,-1.4274944,-1.3767577,-1.1548873,-1.174621,-0.8142647,-1.394934,-1.3297263,-1.3034357,-2.6999161,-2.7007425,-2.2604795,-2.022488,-1.9585361,-2.6522336,-3.2518063,-2.4526339,-2.3194938,-1.8130707,-1.5248846,-1.7850112,-1.8630735,-1.7269201,-1.9032007,-1.9370133,-1.766585,-1.7620806,-1.7963886,-1.8431733,-1.5721954,-1.1989801,-1.0934094,-0.978043,-1.0606241,-0.9754583,-0.85806143,-0.89594537,-1.2508957,-1.4468554,-1.5577295,-1.3630422,-1.3218678,-1.3792017,-1.4580121,-1.4998797,-1.697294,-1.8404421,-1.744738,-1.5749034,-1.5628948,-1.6282326,-1.5175997,-1.3358024,-1.3052231,-1.4491696,-1.3582777,-1.1885568,-1.5148877,-1.774515,-1.6362782,-1.5185168,-1.688786,-1.6280367,-1.1166726,-1.7285858,-1.3701361,-1.441072,-1.7562314,-1.276409,-1.4534758,-1.722741,-1.6964498,-1.6408653,-1.4233867,-1.4142804,-1.4538847,-1.5201269,-1.3745546,-1.4230047,-1.4846263,-1.2909158,-1.2471758,-1.1631196,-1.2354499,-1.532461,-1.3344327,-1.4693035,-1.4855659,-1.3731557,-1.4115801,-1.5663788,-1.4181165,-1.4322814,-1.6788023,-1.9127915,-1.7491533,-1.8524685,-1.7042837,-1.6141486,-1.4872425,-1.5786749,-1.436553,-1.3318857,-1.4166464,-1.5460988,-1.483788,-1.289718,-1.4030578,-1.3711745,-1.206836,-1.437971,-1.4670358,-1.6431519,-1.3410763,-1.731763,-1.8049203,-1.5090982,-1.3694729,-1.6259114,-1.3083245,-1.355263,-1.391116,-1.7025607,-1.7135117,-1.6231979,-1.5073093,-1.6051737,-1.4422778,-1.6178697,-1.4381262,-1.4790351,-1.2573673,-1.2097479,-1.3848511,-1.335818,-1.4536792,-1.7102445,-1.3804549,-1.3293711,-1.3666027,-1.2514179,-1.3887874,-1.464089,-1.4521161,-1.2349106,-1.3432151,-1.3582697,-1.5916241,-1.8156216,-1.4960746,-1.4683857,-1.5952712,-1.2802348,-1.343012,-1.5624963,-1.5590433,-1.5115851,-1.2963885,-1.3732281
+-0.41602138,-0.9090434,-0.8613922,-0.7735513,-0.9666087,-1.1570649,-1.3956537,-1.2431359,-1.0584829,-1.106346,-1.285148,-1.3507813,-1.0792216,-1.0695022,-1.4663562,-1.4176735,-1.4456865,-1.8336915,-1.5601413,-1.5909574,-1.4509202,-1.6411829,-1.5882642,-1.4553813,-1.4777106,-1.6491611,-1.765337,-1.7438312,-1.7016808,-1.4669374,-1.3323807,-0.98452693,-0.6614333,-1.0699296,-1.1880269,-0.846693,-1.0782226,-1.3420806,-1.038828,-1.0722905,-1.1462137,-1.0607667,-1.2956499,-1.5211409,-1.1980218,-1.133253,-1.2242717,-1.1211885,-1.0652906,-1.2299824,-1.4006292,-1.453174,-1.1812229,-1.292094,-1.4659334,-1.444966,-1.4065369,-1.2899015,-1.4266695,-1.5449944,-1.5186721,-1.5607442,-1.4380804,-1.4248033,-1.4986221,-1.0569221,-1.4545442,-1.6498808,-1.4793953,-1.5894991,-1.5927311,-1.5130525,-1.5162925,-1.5976893,-1.5716659,-1.5570868,-1.5457649,-1.5215503,-1.4590073,-1.4884824,-1.4417077,-1.3722142,-1.2326318,-1.300548,-1.3446771,-1.35323,-1.1872514,-1.2112739,-1.4524301,-1.4727176,-1.3593222,-0.80254775,-1.4299885,-1.5190545,-1.5532012,-1.5640904,-1.0681387,-1.4124447,-1.3879803,-1.3636674,-1.4872819,-1.5646181,-1.5162452,-1.4438658,-1.4111385,-1.6440057,-1.5609121,-1.643016,-1.4469236,-1.4789913,-1.5752102,-1.3594989,-1.3391043,-1.3642706,-1.5985516,-1.3990847,-1.4404678,-1.556521,-1.56729,-1.5316824,-1.5368289,-1.5534093,-1.5402464,-1.502346,-1.514546,-1.4960948,-1.140101,-1.1985852,-1.2761247,-1.3850685,-1.3501536,-1.3124126,-1.1825396,-1.2125324,-1.3359662,-1.3918005,-1.5054215,-1.6236079,-1.4631523,-1.542617,-1.2527701,-1.1958445,-1.1922385,-1.5668218,-1.461182,-1.5794581,-1.5682515,-1.6259935,-1.5971773,-1.1907287,-1.4824971,-1.4409449,-1.3499645,-1.4222097,-1.5268143,-1.5565206,-1.5811876,-1.5901829,-1.4127898,-1.3727245,-1.2099935,-1.5042495,-1.3036338,-1.4292485,-1.560378,-1.0979989,-1.4398109,-1.579537,-1.6477478,-1.5127255,-1.2332975,-1.4342788,-1.409236,-1.6134287,-1.3578022,-1.5241369,-1.6369113,-1.6490092,-1.4806719,-1.5068042,-1.6630698,-1.7370816,-1.7542137,-1.77205,-1.6347712,-1.649545,-1.6750281,-1.7146755,-1.6147815,-1.4621514,-1.4606515,-1.5519763,-1.432186,-1.6588913,-1.599919,-1.2138473,-1.4334472,-1.6868664,-1.5747358,-1.3893833,-1.2793165,-1.6248353,-1.6719388,-1.672681,-1.5452548,-1.3395256,-1.3753251,-1.4513351,-1.2548629,-1.1121355,-1.2591002,-0.86073387,-1.3856162,-1.2713643,-1.3945235,-1.6625885,-1.6104271,-1.1533371,-1.4906381,-1.4140626,-1.6905116,-1.7429825,-1.4541688,-1.5227143,-1.5157784,-1.110159,-1.4243447,-1.6251422,-1.686881,-1.7562319,-1.598484,-1.7626487,-1.3208004,-0.8241954,-0.798847,-0.6475124,-0.6330945,-0.8857383,-1.0035596,-1.0904495,-1.0489153,-0.98892576,-0.6615359,-1.0070769,-1.13483,-1.1612407,-0.867781,-0.82815534,-1.0284002,-1.1376113,-1.21631,-1.3590134,-1.5309459,-1.5068858,-1.3699075,-1.4464163,-1.4033818,-1.3287531,-1.2565886,-1.2635185,-1.4343117,-1.3267742,-1.1297405,-1.2630364,-1.529508,-1.4152349,-1.2595702,-1.5069206,-1.4580809,-1.1153189,-1.52498,-1.422516,-1.3168061,-1.6390035,-1.2975458,-1.4366933,-1.5951833,-1.5265225,-1.5419781,-1.2910744,-1.2052349,-1.2296637,-1.4191872,-1.3208735,-1.3578197,-1.3693384,-1.4295957,-1.3726208,-1.2589988,-1.3043288,-1.4586595,-1.2971658,-1.3608961,-1.3566399,-1.2576954,-1.2511586,-1.4204906,-1.3554522,-1.2811714,-1.4762064,-1.563672,-1.70833,-1.6376306,-1.6320859,-1.4495457,-1.3194188,-1.4655308,-1.4853911,-1.3956649,-1.4002328,-1.5146767,-1.2822019,-1.263301,-1.3342172,-1.2480751,-1.111567,-1.2753212,-1.3054593,-1.4168413,-1.2421199,-1.5532349,-1.573498,-1.3291272,-1.1992035,-1.4255048,-1.1385179,-1.2420467,-1.1925367,-1.5395633,-1.357221,-1.3240227,-1.3334775,-1.4315752,-1.263155,-1.4851366,-1.1993983,-1.2247039,-1.0857735,-0.99920183,-1.3686503,-1.2745619,-1.2502034,-1.5403714,-1.4137592,-1.3461562,-1.3193364,-1.1166853,-1.2064277,-1.2975513,-1.2696279,-1.1372458,-1.117621,-1.158631,-1.3232491,-1.3919023,-1.3371736,-1.2979091,-1.40411,-1.0987436,-1.2773775,-1.4641961,-1.2289973,-1.2194446,-0.9722592,-1.0764544
+-0.7525595,-1.2225679,-0.8902057,-1.0773884,-0.69540304,-1.1037725,-1.4696339,-1.0665716,-0.9591989,-1.1381627,-1.8729949,-1.4924704,-1.2222546,-0.957898,-0.88137525,-0.9984699,-1.1590984,-1.2756108,-1.2167058,-0.9009878,-1.5331287,-1.6458086,-1.2942368,-1.2702883,-1.2730161,-0.84156156,-1.1669267,-1.4484191,-1.6572597,-1.4030261,-1.8800299,-1.6135708,-1.6156026,-1.4844555,-1.5088774,-1.4893955,-1.6603405,-1.6782461,-1.2288853,-1.1731395,-1.2795515,-1.5745876,-1.3906105,-1.6795545,-1.6876566,-1.542519,-1.7813748,-1.4921442,-1.4822501,-1.3625634,-1.6211426,-1.5825554,-1.5735103,-1.6594652,-1.8429722,-1.7510928,-1.7590007,-1.8483081,-1.8396,-1.6825291,-1.7121284,-1.6152959,-1.7412766,-1.7940394,-1.7363528,-1.3183584,-1.5181385,-1.7238756,-1.7561439,-1.5011734,-1.5268892,-1.8335615,-1.8186654,-1.8594922,-1.6219391,-1.5987784,-1.6154048,-1.6700729,-1.9142839,-2.0764556,-2.0731835,-1.9858841,-1.9329439,-1.8421766,-1.7265562,-1.860905,-2.0439787,-1.3234075,-1.5725559,-1.8027031,-1.8519278,-1.3761955,-1.5154558,-1.7800585,-1.8164066,-2.0238323,-2.0731673,-1.9553254,-0.82385486,-1.3006846,-1.6869975,-1.7505472,-1.8229754,-1.9344589,-0.6032025,-1.5173758,-1.6996697,-1.9548656,-1.958497,-2.125113,-2.0854135,-2.1907792,-2.086569,-2.1793194,-1.6571156,-0.024175268,-1.4240155,-1.7264533,-1.620421,-1.4181606,-1.3847784,-1.4355464,-1.5888344,-1.7602106,-1.9247515,-2.0421157,-1.9756306,-2.0754385,-2.1726708,-2.1422281,-2.1202283,-1.9822198,-1.5075239,-1.3134463,-0.44589475,-1.3557969,-1.7557222,-0.9733133,-1.6356682,-1.6718765,-1.9066035,-1.4482697,-1.447688,-2.084892,-2.1551032,-2.1472974,-0.7176963,-1.7361424,-1.8470974,-1.6323785,-1.9936002,-2.0948625,-1.749025,-2.0607038,-2.1339693,-2.1767378,-2.2159095,-2.2857983,-2.2907715,-1.9880668,-1.069076,-1.6477264,-1.3500998,-1.5762721,-2.1062853,-2.1234424,-2.055678,-2.1336908,-2.176948,-1.0723438,-1.6282059,-1.9471666,-2.0177655,-2.0626144,-2.170925,-2.2347658,-2.1474164,-2.1925092,-1.8521103,-2.1979263,-2.2091696,-2.3553832,-2.2837472,-1.7828361,-1.6973355,-2.123809,-2.0543466,-2.2147071,-2.2387285,-2.2860188,-2.2111006,-2.2402437,-2.2084932,-2.3173113,-2.3119397,-2.1672902,-2.2656033,-2.304386,-1.5708013,-1.9225312,-1.915697,-2.1928968,-1.4874179,-1.9762024,-2.387446,-2.4600718,-2.529492,-2.5613275,-2.3918428,-2.7985287,-2.5582762,-2.4969015,-2.459494,-2.5040388,-2.5875847,-2.1247072,-1.8721081,-2.309216,-2.4378147,-2.4643054,-2.5398068,-2.5962481,-2.5704436,-2.5294995,-2.601828,-2.346389,-2.4938254,-2.5640452,-2.5764375,-2.5068521,-2.506518,-2.5972142,-2.7616296,-2.6970341,-2.4067774,-2.1475253,-2.2107687,-2.697565,-2.541593,-2.5210342,-2.4969475,-2.6002352,-2.3359938,-2.5408034,-2.1382556,-2.413722,-2.5366626,-2.4884603,-2.1926997,-2.20084,-2.3121512,-2.1393824,-2.2298474,-2.17837,-2.1259632,-2.547271,-2.1161187,-2.082193,-2.1652107,-2.1264503,-2.2126226,-2.0596316,-1.9955698,-2.054277,-2.0087337,-2.110271,-1.9148765,-2.2981076,-1.7185487,-2.1665673,-2.1719346,-1.9880165,-2.3273447,-2.1894565,-2.040887,-1.8680196,-1.8250562,-2.4246874,-2.0575945,-2.0561225,-1.9973677,-2.0514603,-1.999529,-2.028439,-2.16973,-2.0163574,-2.3375945,-1.5459987,-1.7646697,-1.7189219,-1.8097159,-2.1948013,-2.104626,-1.7239271,-1.950166,-1.9188348,-2.0202057,-2.0259173,-1.9444028,-2.0940442,-2.2170558,-2.1114233,-1.9606012,-1.8896585,-1.5764579,-1.7025915,-1.7352027,-1.5538441,-1.6450312,-1.6806577,-1.8503975,-1.5638349,-1.7340481,-1.7241997,-1.5012475,-1.5901347,-1.4578401,-1.8694607,-1.5893613,-1.318842,-1.852261,-1.3809181,-1.2700385,-1.4284028,-1.6739131,-1.4042863,-1.7216595,-1.7763591,-1.7456224,-2.0619526,-0.809007,-0.6930389,-1.0272063,-1.5120951,-1.8230882,-1.2994314,-1.2085108,-1.0256034,-0.9093382,-1.8020071,-2.034202,-1.5318054,-1.3170046,-1.218418,-1.3429837,-1.4601654,-1.2864285,-1.3956587,-1.1762513,-1.2323788,-1.0615681,-1.5050572,-1.5020393,-1.3831156,-1.2757641,-1.0207064,-1.0393881,-1.6685997,-1.9845937,-1.7210927,-2.0690384,-1.8145472,-1.4136425,-1.2832334,-1.587142
+-0.55172586,-0.87770134,-0.20120388,-0.9129027,-0.16788371,-0.6605131,-0.8805087,-0.5113104,-0.6890525,-0.55180913,-0.92667836,-0.22172925,-0.5704631,-0.71353006,-0.7955617,-0.86285996,-0.9167377,-0.9538152,-1.0046123,-0.7682126,-1.0652157,-0.9097677,-1.2640814,-0.9470256,-0.9653031,-0.95232755,-1.1023666,-1.211814,-1.6245381,-1.4502845,-1.1699678,-1.5436802,-1.3666326,-1.4042871,-1.4881914,-1.280969,-1.3344404,-1.2878443,-1.0358789,-1.5410105,-1.5572325,-1.1576003,-1.2733508,-1.2943519,-0.83310837,-0.9332537,-1.3809165,-1.2404279,-1.1074857,-1.0349662,-1.1495148,-1.4942219,-1.3784136,-1.380935,-1.4044185,-1.423227,-1.4503325,-1.3201586,-1.4071575,-1.4382354,-1.4215504,-1.3419926,-1.0980016,-1.504161,-1.4925238,-1.0160125,-1.4876577,-1.097378,-1.1067318,-1.3633791,-1.4014374,-1.4258171,-1.5123597,-1.5041727,-1.3561093,-1.4439532,-1.1122638,-1.3723673,-1.4509383,-1.4597666,-1.4314843,-1.2451395,-1.5030655,-1.1287833,-1.4709716,-1.3928841,-1.4029304,-1.1816245,-1.5431317,-1.5222234,-1.4313785,-1.2035009,-1.5059679,-1.3699807,-1.3658606,-1.1967131,-1.4621869,-0.99637896,-1.1904871,-1.3122019,-1.3744895,-1.3609256,-1.3404534,-1.3811271,-1.2130514,-1.495727,-1.4773,-1.4654721,-1.1501634,-1.5350932,-1.4925941,-1.4582447,-0.9184874,-1.4737188,-1.3845164,-1.3699151,-1.5624044,-1.5158869,-1.4878882,-1.3647076,-1.3248317,-1.5257634,-1.4920744,-1.614355,-1.674082,-1.747382,-1.3715439,-1.817897,-1.8387775,-1.8163117,-1.8146709,-1.4649277,-1.5329664,-1.6060427,-1.6122159,-1.6637865,-1.7031041,-1.5763324,-1.8112688,-1.8232515,-1.7837652,-1.7850615,-1.8840579,-1.7604421,-1.884578,-1.8896224,-1.5459951,-1.8746244,-1.8578224,-1.9249125,-2.0318272,-2.1066284,-1.5464376,-1.9839314,-1.9622062,-2.0144243,-2.085552,-2.157267,-2.1908503,-2.0646248,-1.048507,-1.7427958,-1.6565212,-1.3837059,-1.8511871,-1.8189925,-1.902742,-1.9695374,-1.8909798,-1.2168442,-1.5498587,-1.7695854,-1.9435323,-1.9380175,-1.9552859,-2.0133839,-2.0708232,-2.0734067,-1.5874735,-1.9736892,-1.9990805,-1.8081269,-1.3596385,-1.7334762,-1.6920096,-1.9404784,-1.8706573,-1.8424026,-1.9016179,-1.9083552,-1.9518131,-2.206035,-2.0681932,-2.0599256,-1.953817,-1.5934335,-2.073255,-1.9228157,-1.7673483,-1.8210751,-1.8866132,-1.5791644,-1.2914561,-1.4878215,-1.54991,-1.8986613,-1.7763668,-2.005465,-1.9643263,-1.4037918,-1.7456827,-1.9154395,-1.8482096,-2.054604,-2.0141983,-2.0931182,-1.8103148,-2.261116,-2.131475,-2.2850542,-2.2835152,-2.143152,-1.8179047,-2.0693338,-2.2723813,-1.9748515,-1.9073309,-1.9131992,-2.1440024,-2.216251,-2.2139378,-2.0791569,-1.7315345,-1.6441015,-1.6941959,-1.6149026,-1.502258,-1.8418307,-2.0631337,-1.7533168,-1.9584652,-1.9080054,-1.9276519,-2.0620246,-1.6471115,-1.5873669,-1.8073534,-1.869328,-1.7408262,-1.1114691,-1.716431,-1.3012589,-0.7857351,-0.88558096,-0.63946563,-0.7003854,-0.45104805,-0.2951862,-0.096175596,-0.2635518,-0.39711204,-0.22267064,-0.3274484,-0.36726472,-0.51791924,-0.9844864,-0.8294553,-1.5286738,-0.8068173,-1.6882051,-1.0767301,-1.0727214,-0.7584869,-0.8968225,-0.9403394,-0.86214715,-1.0256625,-1.2100016,-0.71807164,-0.25370345,-0.13674405,-0.29075304,-0.25099185,-0.30050012,-0.12316409,-0.780335,-1.1484092,-0.64629596,-0.9140815,-0.62435895,-0.68394476,-1.3074988,-1.492527,-1.2690994,-1.2502781,-1.7363228,-1.8066446,-1.7600571,-1.5884186,-1.616865,-1.5016543,-1.3017198,-1.192413,-1.1177723,-0.34314182,-0.32138655,-0.25622928,-0.32406554,-0.22186747,-0.25871298,-0.6962113,-0.4243394,-0.8550324,-0.78934616,-0.46642777,-0.32690033,-0.9767224,-1.0949149,-0.5856799,-0.6163909,-0.9916,-0.6040369,-0.490922,-1.2389275,-1.3919641,-1.1857406,-1.577223,-1.6571468,-1.732776,-1.6635036,-1.4406925,-0.8938148,-1.1102105,-1.5939046,-1.421353,-0.74076724,-0.49788496,-0.41147974,-0.3281158,-1.3458406,-1.2674315,-0.7123799,-0.83601636,-0.69215727,-0.45787075,-0.51717037,-0.40812922,-0.6609246,-0.16319604,-0.2792568,-0.20151155,-1.0983762,-0.7883524,-1.1036837,-1.0016106,-0.6472132,-0.48498383,-1.3051484,-1.6047497,-1.616386,-1.4977328,-1.6451072,-1.3286031,-1.1320575,-1.2993729
+-1.4282151,-2.0794854,-2.0997832,-2.4391131,-2.2417905,-2.0737953,-2.4685218,-2.5782347,-2.578173,-2.3809602,-2.698524,-2.7117174,-2.2380853,-2.34018,-2.330749,-2.333897,-2.4478168,-2.5572739,-2.6065493,-2.202373,-2.4433513,-2.5393653,-2.629331,-2.3962915,-2.5561268,-2.607099,-2.6545258,-2.6550522,-2.932225,-2.9094281,-2.6701558,-2.9436555,-2.9519851,-3.0004191,-2.9592643,-3.0463626,-3.0391998,-2.924249,-3.0274394,-2.8840466,-2.7772784,-2.954338,-2.942603,-2.9492648,-2.8729851,-2.5425544,-2.866582,-2.8193047,-2.8078513,-2.8236232,-1.9183952,-2.695732,-2.9172778,-2.9622161,-2.8451731,-2.7729225,-2.7122884,-2.697038,-2.726231,-2.8161006,-2.8286772,-2.7714767,-2.706461,-2.8496778,-2.992841,-2.4131753,-2.8662486,-2.4902945,-2.8648212,-2.930644,-2.9993129,-2.9597528,-3.064972,-2.9661593,-2.9952464,-2.843702,-1.3800415,-2.533669,-2.8413582,-2.9648566,-3.0069976,-3.0263972,-3.1425114,-1.6115812,-2.9219332,-3.0388122,-3.0572495,-2.9059067,-3.2032313,-3.2177515,-3.162549,-3.0800796,-3.0647144,-3.1905065,-2.8615363,-2.9232607,-3.069798,-2.3218026,-2.9581864,-3.009871,-3.1417444,-3.1375222,-3.1818259,-3.156896,-2.9251156,-2.9023702,-3.2347808,-3.2493434,-3.087975,-3.2955852,-3.3150654,-3.329464,-2.9657378,-3.0735993,-2.827732,-2.8254018,-3.2074099,-3.2039766,-2.6084437,-3.1046252,-2.452414,-2.912517,-3.1894972,-3.1436014,-3.2345228,-3.2005105,-3.316677,-2.660541,-3.2247372,-3.288567,-3.2528806,-3.1161332,-3.0545263,-3.0526698,-3.120711,-1.9989384,-3.0570955,-3.0751257,-2.594873,-3.1903427,-3.3636324,-3.2177603,-3.2977505,-3.5389872,-3.4531162,-3.4796498,-3.2154365,-3.4554293,-3.542678,-3.4164262,-3.0153928,-3.5257382,-3.4852734,-3.3424096,-3.5240507,-3.5772047,-3.62331,-3.630779,-3.5892353,-2.9766548,-3.373755,-2.5759556,-2.993084,-3.2367659,-3.456524,-3.506456,-3.591619,-3.6365027,-3.4006777,-3.2439475,-3.0707762,-3.3745837,-3.6371408,-3.7219112,-3.6750305,-3.7026901,-3.6753595,-3.6848805,-3.3276975,-3.5234632,-3.625405,-2.591073,-2.453792,-3.1844215,-3.3580217,-3.4172792,-3.3319778,-3.4006448,-3.4362018,-3.3516157,-2.843011,-3.5062044,-3.5833197,-3.608148,-3.6631622,-3.4095292,-3.580529,-3.5996137,-3.4562452,-2.173875,-3.0446167,-3.394115,-2.9489279,-2.2120595,-3.000432,-2.9993815,-3.2830992,-3.22509,-3.0815363,-3.152872,-3.2763886,-3.1641402,-3.0074198,-3.151837,-3.1283016,-3.154367,-3.067975,-3.324811,-3.3916197,-3.353726,-3.2569005,-3.3528798,-3.0620017,-3.357092,-3.3645825,-3.0961525,-3.0519462,-3.1566482,-3.3329604,-3.2651458,-3.3165956,-3.204231,-3.0543208,-3.0200093,-2.7448947,-2.6770608,-2.879333,-3.1758986,-3.2430348,-3.1391814,-3.0916798,-3.086575,-3.0708683,-3.0359309,-3.1518736,-3.042179,-3.104515,-3.1301167,-3.0182858,-2.3918002,-2.8358083,-2.605611,-2.3795714,-2.3119273,-2.256575,-1.9731086,-2.1247754,-1.9784411,-1.7833548,-1.8168541,-1.4354286,-1.1840161,-1.6352123,-1.7307785,-2.1378815,-2.3557937,-2.400004,-2.726485,-2.3846917,-2.8136954,-2.8213208,-2.8485494,-2.8838797,-2.8227937,-2.602221,-2.7640152,-2.8589993,-2.3368123,-2.7839487,-2.4225535,-2.136822,-2.0796874,-2.0603766,-2.0549817,-2.4850106,-2.7535875,-2.2833352,-2.8844275,-2.7535777,-2.5693445,-2.7954707,-2.911046,-3.0453246,-3.1013882,-3.0162683,-3.1251798,-3.0899448,-2.4325397,-2.850637,-2.7570252,-2.8840458,-2.6398458,-2.4828434,-2.612851,-2.4963255,-2.5229979,-2.6554666,-2.6249719,-2.2956767,-1.9199568,-2.257185,-2.4328773,-2.4679604,-3.083734,-2.493504,-2.100849,-2.448355,-2.8217335,-2.7332282,-2.5109563,-2.8010087,-2.5791569,-2.5188093,-2.7731473,-3.0041027,-3.0445447,-3.0553358,-2.9867156,-3.0097036,-2.918558,-2.923678,-2.784693,-2.875032,-2.9661558,-2.1694226,-2.4905887,-2.2791474,-2.162433,-2.0004873,-2.8906336,-2.7208166,-2.825345,-2.697894,-1.916704,-1.9555218,-1.9694763,-1.9220709,-2.5278125,-1.9439327,-2.0779004,-2.1079469,-2.6771917,-2.920332,-2.9765303,-3.1190948,-2.6212022,-2.2419262,-2.8865938,-2.966475,-2.8926075,-2.9346738,-2.9270825,-3.0127566,-2.9069529,-2.3688211
+-0.13404469,-0.76686126,-0.8473797,-1.0227102,-1.1559964,-0.94186276,-1.2953633,-1.1265537,-0.89287907,-0.9160895,-1.3647099,-1.4032539,-1.1714185,-1.21443,-1.229156,-1.1899041,-1.1437021,-1.198825,-1.2442826,-1.1353074,-1.0776314,-1.2061974,-1.5057023,-1.3582443,-1.379639,-1.3676484,-1.8243283,-1.700871,-1.6555964,-1.6250275,-1.6128151,-1.706204,-1.614302,-1.5656369,-1.7774235,-1.9511302,-1.6831301,-1.5504812,-1.5183802,-1.6323234,-1.5138443,-1.5808774,-1.47549,-1.4726483,-1.6190188,-1.394888,-1.5290098,-1.668059,-1.7566751,-1.6467801,-1.7108967,-1.9399585,-1.7387468,-1.6215285,-1.5944504,-1.5504736,-1.478053,-1.4594477,-1.4517719,-1.4237528,-1.4173415,-1.4435667,-1.4155483,-1.3647975,-1.357663,-1.4565893,-1.65444,-1.6031457,-1.591668,-1.4001638,-1.4385267,-1.3107104,-1.2417096,-1.2934815,-1.3697959,-1.4326171,-1.1605119,-1.5961578,-1.5241652,-1.5239555,-1.5086672,-1.2954286,-1.3742986,-0.66343826,-1.6177162,-1.5477903,-1.5555128,-1.4848424,-1.5760692,-1.5118555,-1.5130098,-1.505885,-1.5011998,-1.5853156,-1.2999796,-1.523265,-1.602028,-1.449496,-1.4103338,-1.3415155,-1.3565665,-1.4133366,-1.5314121,-1.5068041,-1.4081234,-1.3689586,-1.3565718,-1.4321872,-1.3956786,-1.4020978,-1.4629374,-1.5870541,-1.547428,-1.4546689,-1.4221928,-1.3642943,-1.3099003,-1.3055867,-0.8043459,-1.2408117,-1.3613411,-1.3368281,-1.3468007,-1.4441775,-1.5231596,-1.6456605,-1.1698838,-1.4284228,-1.4100991,-1.5021683,-1.6575744,-1.7208266,-1.7034005,-1.6151016,-1.5392903,-1.4050895,-1.2949106,-1.3603013,-0.9798686,-1.3301162,-1.353267,-1.3961607,-1.1385506,-1.3603584,-1.4058666,-1.5735383,-1.5109187,-1.4048918,-1.572212,-1.4500065,-1.5497082,-1.5751861,-1.7021347,-1.6035613,-1.5409881,-1.6403513,-1.8393942,-1.9149804,-1.7844495,-1.4802865,-1.3707532,-1.3701063,-1.5273697,-1.4785798,-1.7709881,-1.8920494,-1.9350106,-1.9521201,-1.9677571,-1.9829315,-1.6481929,-1.5301458,-1.634751,-1.8257617,-1.9826754,-2.016707,-1.9247977,-1.9346211,-1.5106585,-1.5787107,-1.8070318,-1.472972,-0.9805458,-1.7609555,-1.8443608,-1.7176583,-1.6822604,-1.7040509,-1.7522439,-1.7117037,-1.2371773,-2.0987468,-1.8419023,-1.7481189,-1.7901286,-1.6519545,-1.6644789,-1.7235829,-1.7124163,-1.7276741,-1.7303017,-1.7461885,-1.801008,-0.74905604,-1.869641,-1.852622,-1.7370137,-1.6690565,-1.6924359,-1.7251493,-1.7222127,-1.6890973,-1.5312623,-1.5371326,-1.6850361,-1.6687201,-1.5262845,-1.7569245,-1.7182825,-1.7797978,-1.765219,-1.8593895,-1.3939291,-1.8494872,-1.8197933,-1.5359186,-1.5354618,-1.7700976,-1.9440207,-1.9393773,-1.7483879,-1.7841634,-1.4956585,-1.755639,-1.4954331,-1.4147693,-1.7194027,-1.9824275,-1.919988,-1.828447,-1.5380284,-1.756262,-1.8093483,-1.773066,-1.872309,-1.776878,-1.6743089,-1.5864276,-1.7442926,-1.2200453,-1.7077781,-1.4124466,-1.4861387,-1.2983106,-1.305564,-1.3085891,-1.4233334,-1.3429432,-1.1942967,-1.0629913,-1.3525366,-1.4018606,-1.1328328,-0.9913288,-1.2691823,-1.5642272,-1.4288002,-1.3912482,-1.6875666,-1.8361508,-1.6535356,-1.4620975,-1.0816532,-1.4145226,-1.2096901,-1.5502404,-1.6994833,-1.7809645,-1.9407719,-1.1509358,-0.7888912,-0.7387859,-0.73745793,-0.6582892,-0.95410395,-1.3810207,-1.682282,-1.8299488,-1.3422885,-1.8344518,-1.8961684,-1.7032225,-1.8139124,-1.7120657,-1.7134079,-1.8013537,-1.795087,-1.7357346,-1.9063028,-1.7683445,-1.7369822,-1.502602,-1.4097189,-1.3864878,-1.172494,-1.416803,-1.399478,-1.3460418,-1.3555437,-0.8971253,-1.5573119,-1.4387051,-1.6670648,-1.6163868,-1.3033738,-1.0629629,-1.6136197,-1.5104702,-1.7438432,-1.3482566,-1.5894507,-1.5387672,-1.3478476,-1.5954832,-1.6204969,-1.6342064,-1.7776011,-1.741239,-1.6073673,-1.5489932,-1.5370399,-1.6136994,-1.5280296,-1.6907711,-1.7551317,-1.9686228,-1.5174018,-1.2344972,-1.1582311,-1.8666747,-1.6981676,-1.7150141,-1.6366436,-1.7390717,-1.3761069,-1.1090859,-1.1952319,-1.4483497,-1.3461264,-1.2021092,-0.8011871,-1.1298443,-1.3457304,-1.1603397,-1.4404179,-1.5388894,-1.0325571,-1.6685096,-1.5625218,-1.4529563,-1.7288606,-1.8783411,-1.9002532,-1.7737643,-1.6393883
+-0.059464056,-0.6071627,-0.8679448,-0.87649465,-1.2082672,-1.2512759,-1.349342,-1.2252312,-1.2017277,-1.2574378,-1.1667314,-1.2260791,-1.2490036,-1.3285048,-1.3576461,-1.3778962,-1.33017,-1.3720695,-1.4013971,-1.1815723,-1.2826599,-1.0469552,-1.3789251,-1.4174048,-1.4766432,-1.4405559,-1.3769983,-1.4921635,-1.4079903,-1.6280462,-1.4654828,-1.7334814,-1.6683395,-1.657274,-1.7908624,-1.8345965,-1.5779889,-1.5419255,-1.5965055,-1.6512152,-1.6190264,-1.8048738,-1.6407708,-1.5779315,-1.6667224,-1.5114975,-1.4879268,-1.8034654,-1.8261874,-1.861288,-1.6678702,-1.5787457,-1.5764618,-1.5580035,-1.5650631,-1.5847018,-1.7720083,-1.8107609,-1.8560019,-1.7222313,-1.846341,-1.9318252,-1.6685518,-1.813562,-1.8223428,-1.2454636,-1.6428295,-1.7980337,-1.5950817,-1.6648394,-1.9135029,-2.0704293,-1.8309491,-1.8409338,-2.0571575,-0.7071319,-1.5090953,-1.1546998,-1.604298,-1.8098148,-1.9109844,-1.7019646,-1.7199012,-0.8133349,-1.5073153,-1.901574,-1.9136261,-1.4837703,-1.632627,-1.8157636,-1.9437859,-2.0212908,-1.6435131,-1.9752074,-1.3132647,-1.5629289,-1.646542,-1.672968,-1.5156013,-1.6810104,-1.7921146,-2.0737658,-1.0388082,-1.5496897,-1.6957484,-1.886834,-2.039916,-2.1515207,-2.269196,-2.30343,-2.2970276,-2.3854027,-2.4454858,-2.4144645,-2.4528813,-2.2288268,-1.9557662,-1.406393,-1.2742049,-1.3606507,-1.6196452,-1.4626491,-1.6466855,-1.7329314,-1.1128458,-1.739755,-1.849234,-1.7518393,-1.9282091,-1.9269757,-1.9364787,-1.8363668,-1.9977502,-2.0592632,-2.0469906,-1.9076504,-1.7588128,-2.0648115,-1.951256,-1.9597955,-2.071516,-2.3274527,-1.6799723,-1.8977897,-2.2196941,-2.3784168,-2.4240391,-2.451511,-2.524185,-2.47761,-2.564927,-2.6272645,-2.5386763,-1.4838891,-2.0075235,-2.2160106,-2.4519982,-2.4983723,-2.541629,-2.3434138,-2.3109822,-2.325996,-2.5217733,-2.476654,-2.6487372,-2.7462392,-2.646172,-2.7225714,-2.8016632,-2.8073533,-2.8610568,-1.985562,-2.0292869,-2.3464503,-2.5244043,-2.6280951,-2.7409475,-2.7371628,-1.6171958,-1.452317,-1.6136082,-1.7411357,-2.0549564,-2.1260448,-2.2052264,-2.2083066,-2.1979837,-2.1492379,-2.142522,-1.2517006,-1.5049201,-2.04351,-1.9734982,-1.991074,-2.0239062,-2.1395044,-2.0525286,-2.2115526,-2.177303,-2.2573676,-2.2498956,-2.2830822,-2.34507,-2.020506,-1.9562732,-1.9213287,-2.0670447,-2.1735706,-2.383769,-2.5510175,-2.4725266,-2.5040603,-2.4768727,-2.4939542,-2.6767232,-2.666862,-2.592249,-2.3704102,-2.4404912,-2.5848663,-2.6656587,-2.68396,-2.4345365,-2.2898684,-2.3314219,-2.4008017,-2.4858353,-2.8613415,-2.7140684,-2.6804957,-2.5815556,-2.665209,-2.5260735,-2.2662926,-2.3477955,-2.637481,-2.8281288,-2.8718772,-2.6810927,-2.342936,-2.441812,-2.7965117,-1.4793866,-1.4406091,-1.7909784,-1.9658138,-2.110747,-2.023984,-2.0798223,-1.3862709,-2.0151846,-2.0278876,-1.7643704,-1.5726382,-1.7218901,-2.1315231,-2.1861088,-2.2575212,-1.9405152,-1.8124908,-2.0946207,-2.018943,-1.8363719,-1.721054,-1.8533374,-2.0872355,-2.1465204,-1.5935299,-2.1133158,-2.3440318,-2.2357266,-2.1280613,-1.6713825,-1.8603786,-1.7822629,-2.275312,-2.3425753,-1.9669114,-1.9574605,-1.7652223,-1.8616154,-0.8791131,-0.9089948,-0.9290301,-1.05155,-1.5869067,-1.3300053,-1.4575378,-2.0063639,-2.2236514,-2.2174392,-2.1444917,-2.0100548,-2.094715,-1.9417864,-2.1680202,-1.9504904,-1.6030551,-2.08736,-1.9688765,-1.8779303,-1.9266019,-1.8120719,-1.9599903,-1.6880488,-1.7036197,-2.2535162,-2.188905,-2.1637394,-1.7787843,-2.0853457,-2.1547222,-2.2513406,-2.1819332,-1.7308644,-1.6833512,-2.1406167,-2.1646008,-2.2286618,-2.1161442,-1.8892695,-1.9887875,-1.8223546,-2.0613708,-2.0530705,-1.8639785,-1.9665922,-1.8773291,-1.9755853,-2.0098834,-1.9005076,-1.763382,-1.9167715,-1.9479762,-1.5073385,-1.8210924,-1.7754198,-1.6375543,-1.6654145,-2.2047694,-2.14542,-1.7701427,-1.716895,-1.7964412,-1.7113792,-1.7377307,-1.9330441,-1.4881034,-1.5007429,-1.7531878,-1.7919091,-1.1453265,-1.5091649,-1.3749242,-1.329125,-1.541119,-1.412215,-1.4914432,-1.4812357,-1.4902555,-1.472894,-1.4382385,-1.5827286,-1.6829737,-1.308396
+-0.9363108,-1.9355778,-2.1718369,-2.0874128,-2.2994704,-2.5088506,-1.9435471,-2.5957727,-2.5918972,-2.6879025,-2.280631,-2.2667353,-2.4564228,-2.5407038,-2.5760305,-2.630601,-2.6301253,-2.779076,-2.9002423,-2.8409858,-2.9922404,-2.0262234,-2.725914,-2.8440652,-2.8252945,-2.9982302,-3.1226003,-1.4807755,-2.8210027,-3.0158057,-1.7198299,-2.64294,-2.001648,-2.8801553,-2.536313,-2.6454275,-2.790134,-2.8465219,-2.9131243,-3.025728,-3.011893,-1.6776372,-2.4282632,-2.8518791,-2.889813,-2.956945,-1.372594,-2.5656476,-2.900537,-2.8140714,-2.1352892,-2.8553634,-2.933363,-2.775482,-2.936883,-3.0498605,-3.2254155,-3.2653883,-3.04981,-3.2409525,-3.3337057,-3.3259704,-2.4395576,-3.118423,-3.2371926,-1.6727699,-2.516777,-2.9188488,-2.9884572,-3.0836859,-3.2322948,-3.3300529,-3.4865718,-3.4785655,-3.5256789,-3.4198067,-2.5253458,-3.2668405,-3.0251362,-3.2940388,-3.5207417,-3.6232738,-3.56306,-3.651069,-1.285257,-3.0040088,-3.0087218,-3.249916,-2.8967469,-2.855103,-3.2595985,-2.0038376,-3.1234093,-2.1017427,-2.4078808,-2.9055152,-3.1167092,-2.73039,-2.917445,-2.2279778,-2.9203618,-3.1546483,-3.1215303,-3.136251,-3.2715223,-3.3902435,-2.493087,-2.9272008,-3.0930638,-3.341733,-3.4012542,-3.4531527,-3.4865506,-1.6687189,-2.906482,-3.188573,-3.3105211,-3.1088703,-2.2657762,-2.954668,-3.1898465,-3.3806796,-1.2395734,-2.5468588,-2.863763,-2.890209,-2.8498595,-2.733447,-2.7517214,-2.7448509,-2.5410542,-2.732739,-3.0190735,-2.9138918,-2.9639437,-2.9677358,-3.1677237,-3.21073,-2.732655,-3.1293955,-3.2814546,-3.372112,-2.363993,-3.0383651,-3.2062497,-3.3246756,-3.3948054,-3.4710672,-2.6881964,-3.0909421,-3.2427459,-3.3832397,-3.5101056,-1.8404105,-3.1436796,-3.0998492,-3.3036084,-3.4105773,-3.5267553,-3.5754008,-3.6665199,-3.6779566,-3.6960394,-3.7010074,-3.71754,-3.6771984,-3.6734536,-3.6917138,-3.6905506,-3.6590896,-3.6324944,-2.8863227,-3.3133335,-3.4407854,-2.8252468,-3.358747,-3.5169876,-3.5888586,-2.9102054,-2.2146378,-2.9000764,-2.9432402,-3.213376,-3.3220677,-3.3425035,-3.3948054,-3.4409196,-3.434805,-3.505046,-2.4266229,-1.5741354,-2.931222,-2.9499738,-3.0819623,-3.1084254,-3.2523007,-3.2090993,-3.2685823,-3.3182182,-3.3069854,-3.3031988,-3.4106703,-3.4695487,-3.5028033,-3.4792397,-3.4374454,-3.6135828,-3.6715024,-3.6708584,-3.613293,-3.7334285,-3.6998098,-3.7143474,-3.7944689,-3.7358782,-3.6970215,-3.700575,-3.8348432,-3.7977993,-3.8592951,-3.8787212,-3.8166223,-3.8464077,-3.857377,-3.8890707,-3.8699927,-3.688113,-3.8378825,-3.7981074,-3.9002798,-3.9404042,-3.9381037,-3.8888998,-3.5909598,-3.6130977,-3.736009,-3.847229,-3.308249,-3.7088509,-3.8716633,-3.7230709,-3.8125257,-2.1362624,-3.0723965,-2.8964224,-3.3864734,-3.4617038,-2.7363539,-2.994088,-2.5739427,-3.0520415,-3.239944,-3.1651886,-3.121307,-3.1328285,-3.1508625,-3.5256472,-3.3347714,-3.3464313,-3.230847,-3.067565,-2.6359878,-3.165984,-2.9919431,-3.2397077,-3.2998645,-3.272421,-3.2387621,-3.3673263,-3.2370496,-3.250627,-3.3974912,-2.8164983,-3.1655052,-3.1795602,-3.1526675,-1.6980308,-2.38483,-2.672751,-2.8128276,-2.9528377,-2.3590758,-2.399806,-2.2802026,-2.1542053,-2.3715007,-2.243271,-2.8068473,-2.7555454,-2.8486362,-2.7997599,-2.8291597,-2.9685507,-3.011434,-2.285732,-2.5266743,-2.5144486,-2.0416813,-2.6048255,-2.933681,-2.6883512,-2.828208,-2.7337644,-2.8691854,-2.9018676,-2.9225554,-3.0487194,-3.0146596,-2.8840668,-2.856758,-2.9780385,-3.0603638,-2.9137769,-2.9597507,-2.4634743,-2.7625952,-2.8139968,-2.8505552,-3.0596986,-2.9455838,-2.3756897,-2.954846,-2.886232,-2.9946733,-2.978949,-3.0177906,-2.9672763,-2.8896718,-3.0316489,-3.0177152,-2.9523058,-2.9396908,-2.8942447,-2.955834,-2.2190452,-2.194764,-2.8997564,-2.923573,-3.0006824,-3.0126994,-2.7250388,-2.7605078,-2.705902,-2.5795445,-2.764469,-2.7310092,-2.5687861,-2.1766922,-3.048281,-3.0856411,-3.0247154,-2.7251072,-3.0262563,-2.8596077,-2.6783333,-2.6397977,-2.6764908,-2.5814745,-2.59054,-2.5438147,-2.3114104,-2.1300592,-2.6389368,-2.7053113,-1.8005497
+-0.23923361,-1.2440777,-2.1955607,-2.4017878,-2.6154933,-2.559084,-2.2072983,-2.5598242,-2.5928748,-2.5433936,-2.5999806,-2.2763467,-2.5392623,-2.595708,-2.696693,-2.6608226,-2.705691,-2.860021,-2.984992,-3.116031,-3.0680902,-1.1719979,-2.281193,-2.578128,-2.6119475,-2.7798173,-2.959531,-3.1236274,-3.0505576,-2.901042,-1.108456,-2.0498402,-1.7937325,-2.2104483,-2.4196334,-2.372551,-2.5791786,-2.7474687,-2.942583,-3.0254326,-3.0210755,-2.012672,-1.6715064,-2.3992655,-2.557681,-2.5796468,-1.6136382,-2.349586,-1.8608683,-2.2192707,-2.1161726,-2.3570325,-2.4803882,-2.5825753,-2.7380567,-2.933025,-2.9046028,-2.9480662,-0.9971369,-2.0795822,-2.31324,-2.397508,-2.2348466,-2.3163,-2.668034,-1.5063907,-1.4232002,-1.9645766,-2.3698835,-2.4675655,-2.6580014,-2.847644,-2.9554524,-2.9929447,-1.201899,-1.9413602,-2.402493,-2.596342,-2.466282,-2.7109644,-2.8819277,-3.0685644,-3.153575,-3.3022804,-3.1421123,-2.5987382,-2.6966324,-3.0347376,-0.9950103,-2.3455684,-2.6752076,-2.5658984,-2.7618716,-2.147735,-2.2197893,-2.1883454,-2.21974,-2.4091883,-2.618806,-1.5628902,-2.4835825,-1.308572,-2.2605393,-2.5728245,-2.7536373,-2.0203445,-1.5970662,-1.8372723,-1.7889961,-2.1985412,-1.7167839,-2.339249,-2.571884,-2.7761164,-2.8014545,-2.98455,-2.9548187,-3.1699162,-3.0075588,-2.871798,-2.2051816,-1.9778918,-1.442493,-1.7385592,-1.8580273,-2.22576,-2.0665286,-1.8960298,-2.196916,-2.1946907,-2.2219808,-2.1380193,-2.3165255,-2.54802,-2.6195512,-2.757087,-2.8948998,-2.9734354,-3.0358655,-2.2123828,-1.9296266,-2.311223,-2.4572725,-2.7435935,-2.8758533,-2.9869397,-3.0283194,-2.7313313,-2.9328966,-2.9261742,-2.9818234,-3.1382556,-2.650955,-2.653985,-0.579611,-2.052216,-2.2496705,-2.441148,-2.5748863,-2.7128897,-2.8242407,-2.88598,-2.943686,-3.0478492,-2.2513428,-2.4571102,-2.0521643,-2.4488933,-2.6614144,-2.770185,-2.9585571,-2.7355433,-2.7695866,-1.6797961,-2.183241,-2.357261,-2.5285993,-2.622682,-2.7500472,-2.7289064,-2.2925174,-1.7275817,-2.181312,-2.4603407,-2.5845323,-2.7092557,-2.8288598,-2.9502592,-3.1045985,-1.7631435,-0.9240511,-2.2436805,-2.6502361,-2.6830516,-2.7154136,-2.7445326,-2.7729542,-2.773355,-2.7859783,-2.830357,-2.8173156,-2.8276796,-2.8222055,-2.948112,-2.744309,-2.8280787,-2.9608507,-2.986887,-3.0033557,-3.0741923,-3.0848298,-3.002743,-3.0602398,-3.1060915,-3.039502,-3.106744,-3.1358006,-3.1345503,-3.0532703,-3.1467729,-3.1390755,-3.1544707,-3.4645905,-3.2561731,-3.2281182,-3.229959,-1.7965239,-2.3850694,-2.7864041,-2.8340547,-2.8729167,-2.8996527,-2.9566965,-2.7439473,-2.754313,-2.7820714,-2.9676516,-3.1613364,-3.213207,-3.1298232,-2.8350642,-3.0109324,-1.9141499,-2.4175932,-2.040564,-2.602923,-2.8392086,-2.6737542,-2.1332347,-2.1963573,-2.499583,-2.7777514,-2.6291542,-2.4843097,-2.6020632,-2.755746,-1.9263792,-2.5392241,-2.6362169,-2.3538425,-2.720129,-2.623314,-1.8357713,-2.4033713,-2.5320284,-2.7063003,-2.8099582,-2.8862224,-2.9998574,-2.9053683,-2.7437725,-2.8644333,-2.0648236,-2.584415,-2.6781561,-2.7332916,-1.6688275,-2.0439334,-2.2865953,-2.65656,-2.4496617,-1.4158632,-1.4731503,-1.4753617,-1.9158473,-2.2319713,-2.6315284,-3.0473094,-3.0374255,-3.0455692,-2.9542446,-2.9293709,-2.882257,-2.8867855,-2.9606109,-1.8824372,-2.2630458,-2.1369195,-2.382339,-2.6652663,-2.5811567,-2.7751234,-2.8355093,-2.823505,-2.858225,-2.8604872,-2.893343,-2.94833,-2.4337306,-2.6586826,-2.7819605,-2.8550005,-2.8558738,-1.9454063,-2.1980765,-2.510587,-2.7116199,-2.908875,-2.9199624,-2.8221126,-1.7027682,-2.5715342,-2.7884,-2.8507805,-2.8584974,-2.9014091,-2.8514566,-2.8711927,-2.8391232,-2.8396382,-2.8244286,-2.671536,-2.8295174,-2.9216614,-2.9811265,-1.4561216,-2.5667238,-2.6608596,-2.647848,-2.8883286,-2.7135658,-2.5931897,-2.5887866,-2.3934264,-2.7144365,-2.0171926,-2.2824056,-1.9093622,-2.418533,-2.400649,-2.4600227,-2.441924,-2.7850108,-2.7189698,-2.753199,-2.1392932,-2.6062267,-2.77076,-2.7225728,-2.7280073,-2.7389054,-2.523005,-2.6413713,-2.1430635,-2.0460076
+-3.201974,-4.7459655,-5.0190115,-5.066684,-5.0539236,-5.003894,-5.0537786,-5.0608397,-5.0163693,-4.9139285,-4.9715123,-5.0229173,-5.041112,-5.0186186,-5.0135145,-5.045245,-5.0105295,-5.0238466,-5.0215287,-4.998942,-4.9660707,-5.007365,-5.0905056,-5.0830965,-5.0252986,-5.008382,-4.9903293,-4.9598126,-4.982828,-4.9612007,-5.0003805,-5.0370426,-4.9595094,-4.9497876,-5.0439773,-5.0536366,-5.0577154,-5.0505066,-5.028125,-4.9996934,-5.0177746,-5.0048857,-4.959153,-4.9588537,-5.045148,-5.0432286,-4.817129,-5.262501,-5.1740823,-5.151981,-5.181839,-5.237292,-5.2313623,-5.1911383,-5.1311107,-5.0975304,-5.0865335,-4.609511,-4.494799,-4.9144244,-4.9818497,-5.0859356,-5.116318,-5.071247,-5.085786,-5.09851,-4.6072702,-4.906865,-5.148712,-5.2339287,-5.149954,-5.1037846,-5.0890226,-5.0680633,-4.9646397,-5.0309477,-5.1106644,-5.0144796,-5.271516,-5.239084,-5.183259,-5.125557,-5.0949345,-5.063584,-4.971807,-5.022421,-5.2053566,-5.1523585,-5.078582,-5.1998396,-5.0802727,-5.1164637,-5.1600084,-5.126281,-5.004121,-5.069994,-5.0317154,-5.1044283,-5.1203547,-5.0929375,-5.140999,-5.0545783,-5.0831065,-5.022227,-4.9816856,-4.486788,-5.042643,-4.9732933,-5.1477385,-5.059552,-5.0506206,-5.092231,-5.1343584,-5.1526346,-5.02595,-5.084099,-5.077041,-5.069911,-5.0614476,-5.0726895,-5.039199,-4.982654,-5.145171,-5.1291656,-5.134999,-5.1504793,-4.872406,-5.063344,-5.1700177,-5.134369,-5.1232133,-4.7364883,-5.0376415,-5.036663,-5.127638,-5.1120186,-5.0873995,-5.022037,-5.0620832,-4.5789433,-4.8169746,-4.9784646,-5.033501,-5.1048274,-5.03082,-5.076441,-4.7655773,-5.2101617,-5.2119427,-5.114274,-5.100502,-5.0803156,-5.098401,-5.133537,-4.0939317,-5.081559,-5.259673,-5.2745123,-5.245258,-5.195382,-5.1719503,-5.1656866,-5.1456537,-5.082056,-5.001727,-5.19849,-4.8811154,-5.136774,-5.2070293,-5.166128,-5.1298895,-5.1115556,-5.264599,-5.2176228,-5.2428217,-5.193179,-5.253556,-5.2169037,-5.14491,-5.2713647,-5.2162275,-5.152071,-5.164391,-5.2194285,-5.183858,-5.1565547,-5.130726,-5.1479073,-5.1327453,-5.096999,-3.720515,-4.9528503,-5.269086,-5.2988377,-5.2642593,-5.227044,-5.2110624,-5.1786866,-5.1749253,-5.1553326,-5.143693,-5.1317396,-5.11318,-5.118793,-5.156151,-5.1494,-5.1897097,-5.163586,-5.1606092,-5.1427736,-5.134778,-5.112779,-5.1101665,-5.1046743,-5.0852704,-5.098495,-5.105783,-5.108018,-5.112116,-5.1329236,-5.127678,-5.13748,-5.1961174,-5.1400957,-5.1464944,-5.1476126,-5.036834,-5.195549,-5.153031,-5.1348915,-5.1292806,-5.118513,-5.124235,-5.03485,-5.010227,-5.0125074,-5.1535816,-5.143425,-5.129509,-5.1181707,-5.033137,-5.167038,-5.1465783,-5.122098,-5.0284166,-5.144739,-5.1298504,-5.1818666,-5.0692873,-4.200325,-5.1783257,-5.2933974,-5.1296577,-4.951911,-5.1576576,-5.066492,-5.0823884,-5.100313,-5.2271986,-5.0121593,-5.2389574,-5.1274815,-5.1083775,-5.151732,-5.1597624,-5.1750264,-5.130446,-5.15104,-5.0990257,-5.0985866,-5.0949864,-5.0940685,-5.098244,-5.079845,-5.070305,-5.103279,-5.1399736,-5.0027637,-5.1933975,-5.2335835,-5.169607,-4.934266,-4.7775927,-4.739438,-5.0463314,-5.180958,-5.114509,-5.0853443,-5.082625,-5.0975266,-5.0992575,-5.097931,-5.090106,-5.0960293,-5.093871,-5.04165,-4.7945623,-4.972513,-5.164412,-5.203872,-5.206687,-5.1500926,-5.092852,-5.0573673,-5.0505366,-5.064333,-5.0981736,-5.10637,-5.106656,-5.111743,-5.138418,-5.13486,-5.1273174,-5.0370827,-5.2167234,-5.119472,-5.218354,-5.170047,-5.132274,-5.105549,-5.115393,-5.1855516,-5.1447783,-5.161025,-5.1895275,-5.1294537,-5.101237,-5.095165,-5.082493,-5.0798936,-5.09355,-5.07088,-5.099908,-5.1127768,-5.0870924,-5.0943003,-5.0666285,-4.9682674,-5.080659,-5.154155,-5.1506443,-5.1382504,-5.133726,-5.140314,-5.109618,-5.104474,-5.0199122,-5.158825,-5.1096044,-4.913712,-5.0263786,-5.13968,-5.122063,-5.082758,-5.123307,-5.0937815,-5.1557903,-5.1502585,-5.120497,-5.0841227,-5.0789456,-5.028055,-5.0689015,-5.019141,-5.0457654
+-0.39932516,-0.9581607,-0.7668025,-0.92975295,-0.6939528,-0.74574655,-0.8821462,-1.0202539,-0.78841853,-0.46399525,-0.62391776,-0.9626464,-0.7906705,-0.6673428,-0.6504,-0.6704883,-0.68792033,-0.75480145,-0.88371474,-0.76887435,-0.8217057,-0.9933943,-1.3702654,-1.0778869,-1.004053,-1.2474726,-1.3743051,-1.4543713,-1.6557596,-1.4679121,-1.3720852,-1.6144513,-1.5395724,-1.3093483,-1.3705612,-1.321221,-1.2573619,-1.1896013,-1.1473078,-1.2529916,-1.1747328,-1.0826553,-1.3456569,-1.4878026,-1.3210549,-1.4594479,-1.2266451,-1.1696972,-1.1179249,-0.9537733,-1.2337333,-1.7084707,-1.413427,-1.2880949,-1.1645828,-1.0868849,-1.0215567,-1.0078989,-1.0159763,-0.9943965,-0.99678046,-0.99474066,-1.158901,-1.5875301,-1.3681363,-1.2759984,-1.463605,-1.3960582,-1.4773107,-1.4876004,-1.2928603,-1.1853763,-1.2243043,-1.2381594,-1.0767639,-1.0587572,-1.0614334,-1.0677313,-1.0328137,-1.0380919,-1.0264586,-1.0331022,-1.0401503,-1.0558242,-1.0639971,-1.0857713,-1.089621,-1.1517105,-1.2262063,-1.2509879,-1.1093644,-1.1956228,-1.2097254,-1.1603662,-1.1882919,-1.2854656,-1.1561719,-1.2174516,-1.0718428,-1.2408615,-1.3877324,-1.2743026,-1.2523715,-1.224582,-1.2350891,-1.2936178,-1.3611249,-1.2744071,-0.8019915,-1.4190595,-1.3577622,-1.3513819,-1.1637797,-1.3616456,-1.3901607,-0.9341596,-1.3711826,-1.3344263,-1.368484,-1.3542502,-1.0853435,-1.3633178,-1.3692768,-1.3539295,-1.3542451,-1.3592532,-1.333743,-0.91458726,-1.3988284,-1.3618706,-1.4209615,-0.7556738,-1.2412015,-1.4706324,-1.5302805,-1.4900235,-1.6604198,-1.5384375,-1.5763,-1.5600159,-1.4415904,-1.4015235,-1.1108396,-1.5722646,-1.4411604,-1.3996805,-1.4266471,-1.4434155,-1.4083669,-1.4280977,-1.4606303,-1.4399991,-1.3640083,-1.5118167,-1.5366074,-1.453927,-1.4677066,-1.5051016,-1.5277015,-1.4732941,-0.83290225,-1.4926239,-1.3772002,-1.3332659,-1.4178792,-1.4344865,-1.4903234,-1.4288802,-1.4619457,-1.3791572,-1.1979269,-1.4675404,-1.5103544,-1.4900436,-1.5112478,-1.5287482,-1.5652236,-1.419046,-1.2977875,-1.4700595,-1.5724645,-1.0638065,-1.6690184,-1.2196289,-1.5352644,-1.5915455,-1.4979199,-1.5083921,-1.5099553,-1.5067374,-1.3098339,-1.717956,-1.5064747,-1.4166228,-1.583973,-1.4705209,-1.3857073,-1.5130988,-1.5544616,-1.3876554,-1.4861823,-1.4694823,-0.8944685,-1.0686191,-1.8701683,-1.6444992,-1.5117314,-1.8400911,-1.3115491,-0.99709064,-1.6755568,-1.4917036,-1.4560145,-1.6248165,-1.4705896,-1.569792,-1.6273024,-1.7592846,-1.6092924,-1.5978516,-1.413477,-1.5878656,-1.6052068,-1.5418752,-1.7034096,-1.1190647,-1.2345144,-1.1911217,-1.336895,-1.7520448,-1.4361738,-1.5275346,-1.5634123,-1.6071854,-1.4341935,-1.2343026,-0.92006594,-1.4146148,-1.3913018,-1.5796252,-1.4006886,-1.1855361,-1.6788503,-1.6684443,-1.4472132,-1.528596,-1.5636846,-1.2070957,-0.99314994,-0.74088424,-1.0278963,-1.1489722,-0.9394571,-0.9491452,-0.6587948,-0.4531335,-0.46437326,-0.5992478,-0.77973026,-0.83265585,-0.5667301,-0.63276047,-0.56819206,-0.71060234,-0.847531,-0.9652918,-0.91233164,-1.1317207,-0.8767697,-1.0385736,-1.28352,-1.25061,-1.0415894,-1.3128599,-0.95488876,-1.0251256,-0.83824766,-1.0373865,-1.380004,-1.114113,-0.97878355,-1.0066646,-1.0056353,-0.92538875,-0.8027682,-0.8020556,-0.8806013,-0.73876065,-0.61013836,-0.59393424,-0.7655191,-0.9624509,-1.3938696,-1.0411271,-0.96729285,-1.3295919,-1.2763687,-1.4647112,-0.91811496,-1.1501864,-1.2846805,-1.3041195,-1.1549093,-1.0741562,-0.9740402,-0.62287635,-0.888274,-0.8939447,-0.8183731,-0.9007767,-0.9727649,-0.9306462,-0.6860965,-1.1139138,-0.842491,-0.6769642,-0.82246184,-0.9148273,-1.0806195,-0.85820156,-1.1450373,-1.0843337,-0.82116455,-1.147798,-1.1434759,-0.9955849,-1.1960397,-1.2600939,-1.0337548,-0.88280606,-1.0653384,-1.2464346,-1.0777993,-1.286009,-1.3248051,-1.1546915,-1.0233054,-0.79499024,-0.74100643,-1.123439,-1.2171427,-1.2239679,-1.3375205,-0.9178871,-0.7961384,-0.90308595,-0.78600544,-0.7708507,-0.57327586,-0.6174859,-0.7408987,-0.76802486,-0.8425752,-0.668516,-0.81214327,-0.6416117,-0.7279929,-1.3158175,-1.1439968,-1.0027541,-1.0414604,-1.4741914,-1.4681731,-0.93674475,-1.1437106
+-0.88570756,-1.7092129,-1.0519385,-1.6744275,-1.4971361,-1.5458492,-1.7675782,-1.6739649,-1.86146,-1.5564717,-2.1181493,-2.211131,-1.9926752,-2.0345917,-2.0429485,-2.0511076,-1.9797248,-2.001546,-2.0084586,-1.8481251,-1.7406617,-1.9596181,-2.1133785,-1.8841485,-1.8400823,-1.957426,-1.9663819,-1.895162,-2.3654368,-2.2275043,-2.1552868,-2.4415371,-2.4279537,-2.4344378,-2.5040283,-2.558516,-2.5513935,-2.2638958,-2.3467486,-2.4182103,-2.279509,-2.2428033,-2.399486,-2.4589667,-2.1220787,-2.2203636,-2.3378692,-2.2526753,-2.3151436,-2.1572332,-1.990352,-2.4091463,-2.2987492,-2.273603,-2.2040367,-2.1766748,-2.1229918,-2.0114052,-2.0435119,-2.1547327,-1.9528762,-1.8074645,-2.119224,-2.2842965,-2.2920256,-2.044555,-2.314847,-2.1772768,-2.2371345,-2.0845666,-2.1637192,-2.175099,-2.0376215,-1.959072,-1.9454837,-2.0773168,-1.8683785,-2.0880525,-2.0051768,-2.0287023,-2.1490226,-2.1537406,-2.1447718,-2.0414379,-2.218995,-2.092916,-2.1303287,-2.374364,-2.5255787,-2.4580765,-2.4251907,-2.7454596,-2.5373976,-2.65948,-2.6919608,-2.592052,-2.5769699,-2.7187595,-2.59243,-2.7095904,-2.7105155,-2.715923,-2.9251642,-3.0879898,-2.617056,-2.6980486,-2.9104228,-2.9600205,-2.9602718,-2.8940144,-2.84211,-3.1331258,-3.1877654,-2.893109,-2.830193,-2.7829976,-2.8575406,-3.006789,-2.3950202,-2.611977,-1.5177814,-2.5305285,-2.5989065,-2.5709863,-2.6660552,-2.881619,-2.9670966,-2.7111204,-2.687574,-3.0002663,-3.0029917,-3.072121,-2.7034404,-2.5429063,-2.5070243,-2.136642,-2.4245832,-2.4682257,-1.8649977,-2.4237008,-2.5664613,-2.8672318,-2.214275,-2.6075494,-2.8271527,-3.0354745,-3.0632384,-2.9719045,-3.075893,-3.116722,-1.857345,-2.6666017,-2.9776173,-2.628892,-2.7471879,-2.9612162,-3.1374707,-3.3143368,-3.2752857,-2.0750108,-2.6937256,-2.84735,-3.031579,-3.2385206,-3.307619,-3.4070396,-3.4146905,-3.4449089,-3.3847222,-3.286754,-2.237599,-2.4678795,-2.808837,-3.0308318,-3.2443118,-3.311123,-3.247189,-3.2496321,-3.0283666,-3.2407956,-3.197037,-1.7305204,-2.5984535,-2.5946841,-2.850644,-2.9408636,-2.9488833,-3.0355692,-3.1064427,-3.1052485,-1.877818,-2.8116124,-2.6991386,-2.770398,-2.9716818,-2.8031816,-2.78905,-2.964459,-2.9065893,-2.9688869,-2.9647298,-3.104749,-2.9995267,-1.7916952,-2.6719465,-2.5527196,-2.753603,-2.7136278,-2.6153686,-2.505949,-2.8792996,-2.9029016,-2.665688,-2.82095,-2.784171,-2.9329474,-2.6249583,-2.9388118,-2.9197664,-3.1371667,-3.0875912,-3.2452164,-2.75499,-2.9373937,-3.080482,-2.5365357,-2.64781,-2.8214312,-3.2390227,-3.320364,-3.2622504,-3.33062,-3.0113037,-2.7985253,-2.397847,-2.3512344,-2.4866128,-2.9651337,-3.187989,-3.111277,-2.9714026,-2.7911148,-2.7321765,-2.494776,-2.6958566,-2.4105117,-2.5005698,-2.3281207,-1.8674556,-0.9776445,-2.0993607,-1.78806,-1.7610046,-1.6744305,-1.455366,-0.89880663,-1.1509581,-1.2276253,-1.2306801,-1.0738939,-0.29397407,-1.2267526,-0.799524,-0.99955994,-1.2317369,-1.5689803,-1.579834,-2.195461,-1.8562232,-2.2834349,-2.3580098,-1.8079981,-2.0813236,-1.9953698,-1.5055,-1.9863857,-1.9849793,-1.8332642,-2.1116197,-1.3478615,-1.3434528,-1.3819941,-1.339619,-1.249238,-1.1974164,-1.6099013,-1.9833771,-2.047152,-1.7210412,-1.7723105,-1.8702344,-2.2307174,-2.4599655,-2.205929,-2.1300125,-2.5881834,-2.5646372,-1.9636184,-2.0689213,-2.0221314,-2.2082968,-1.8810174,-1.6750313,-1.8903552,-1.7244724,-1.017229,-1.804305,-1.8214346,-1.4296299,-1.3348764,-1.5828581,-1.6737586,-1.8721706,-2.4009204,-1.368313,-0.7224367,-1.6949869,-2.068739,-1.4341738,-1.521614,-1.9046121,-1.7350497,-1.6652808,-2.2763333,-2.6622243,-2.4978561,-2.3905625,-2.5246005,-2.570966,-2.4376307,-2.3145027,-1.9790052,-1.8739312,-2.4447482,-2.0868342,-1.889516,-1.4390328,-1.4569577,-1.3221065,-1.8719643,-1.9729584,-2.0293386,-2.1257577,-1.3429114,-1.2278554,-1.3261086,-1.0024856,-1.0925537,-0.924197,-1.0380872,-1.1374507,-1.588363,-1.9179624,-1.9309149,-2.257805,-2.0823035,-1.895443,-2.4068623,-2.6215029,-2.330254,-2.3058953,-2.5008903,-2.3135738,-2.2327733,-2.2723644
+-0.9991538,-1.5165228,-1.3592587,-1.8104469,-1.9458176,-1.4825083,-1.8879954,-2.1038451,-1.9905256,-1.7687339,-1.7476581,-2.0780253,-1.8873771,-1.7673606,-1.7464142,-1.7524942,-1.7643077,-1.8753804,-1.9730028,-1.7221103,-1.769702,-1.8623555,-2.1149337,-2.0793743,-2.0933566,-2.1062925,-2.1213675,-2.1935701,-2.363277,-2.394557,-2.2398925,-2.2433248,-2.3318806,-2.4771414,-2.457945,-2.4470685,-2.506126,-2.387371,-2.4381154,-2.5204034,-2.3625588,-2.4535072,-2.3848999,-2.3163838,-2.3512945,-2.2408547,-2.1934128,-2.5552049,-2.5009434,-2.3609006,-1.9764489,-2.5241761,-2.4762874,-2.3427567,-2.4881935,-2.4197118,-2.2899213,-2.4732912,-2.383596,-2.36394,-2.1779184,-2.465902,-2.1959014,-2.4356222,-2.4355483,-2.3936763,-2.4927082,-2.571752,-2.3910885,-2.252871,-2.5345254,-2.7084608,-2.7908037,-2.5506115,-2.7695496,-2.8482916,-2.414806,-1.9021215,-2.5178437,-2.608986,-2.7752938,-2.2867315,-2.638876,-1.664554,-2.012655,-2.306828,-2.391394,-2.4586287,-2.704939,-2.5751064,-2.5985298,-2.7393196,-2.7932682,-2.798167,-2.196659,-2.35336,-2.5728478,-2.509095,-2.4731238,-2.675698,-2.7908912,-2.7919598,-2.8197908,-2.8235853,-2.7675734,-2.9676287,-2.7714186,-2.9354248,-2.6315117,-2.667313,-2.7949984,-2.970986,-3.0876913,-3.075051,-2.874281,-2.7346177,-2.6923194,-2.1070282,-1.8689173,-2.2915704,-2.3445566,-2.1411557,-2.5655694,-2.5541906,-2.4861908,-2.6139748,-2.573713,-2.4467015,-2.6560183,-2.8021004,-2.6875296,-2.8102875,-2.886488,-2.0094633,-2.4738345,-2.6928854,-2.1422532,-2.4813976,-2.1631403,-2.2238867,-2.6920753,-2.79777,-2.53128,-2.7279372,-2.9145494,-3.0499008,-3.0310154,-3.0814226,-3.0453312,-3.108519,-3.1793847,-3.1762934,-3.278754,-3.1558347,-2.992673,-3.0762408,-3.3502927,-3.449462,-3.4662814,-2.2911067,-2.7733996,-2.9585114,-3.066615,-3.2375216,-3.3101459,-3.2540414,-3.3380804,-3.3142118,-3.2317095,-3.1953833,-3.2119484,-1.8323941,-2.6170034,-2.819123,-2.9829178,-3.1990004,-3.2308395,-3.2255607,-2.7571511,-2.6967044,-2.9168706,-1.4484135,-2.387958,-2.5016127,-2.647678,-2.8289957,-2.7816296,-2.7077763,-2.7463725,-2.705911,-1.947111,-2.7703106,-2.7119212,-2.6249146,-2.768143,-2.8665075,-2.7357116,-2.8067846,-2.803651,-2.8785968,-2.8161628,-2.9004917,-2.7579577,-2.608972,-2.6803226,-2.782969,-2.9594293,-2.8477013,-2.7796547,-2.9128432,-3.0188985,-3.0728507,-2.8531363,-2.928103,-2.933837,-3.0042024,-3.0493174,-2.5241551,-2.86345,-3.083084,-3.0727215,-3.1487432,-2.9584696,-3.0305498,-3.1926203,-2.9519005,-2.7431397,-2.544319,-2.888779,-3.1599114,-3.1096797,-3.204557,-3.2494433,-2.9591126,-2.5572832,-2.5732017,-2.8528,-3.197765,-3.188263,-3.2759142,-3.1064162,-3.037178,-2.7668557,-2.5620222,-2.6779084,-2.8452914,-2.7860415,-2.7270634,-2.6204097,-1.8554002,-2.645999,-2.3204145,-2.0161405,-1.8059525,-1.7566644,-2.3742008,-2.4196234,-2.37323,-1.6709391,-1.5171145,-1.8604072,-2.373063,-1.8899246,-1.5501521,-1.7551349,-2.1271667,-2.1495326,-2.295133,-2.538426,-2.6404402,-2.659772,-2.5185652,-2.326687,-2.2666316,-2.1079602,-2.6210585,-2.6748667,-2.476904,-2.4982023,-1.9869384,-1.7168618,-1.5983847,-1.265185,-1.2451907,-1.455011,-2.146758,-2.3762338,-2.6374762,-2.440774,-2.4739156,-2.5766215,-2.3823423,-2.6892204,-2.5169082,-2.629248,-2.6195083,-2.693682,-1.9014316,-2.6525228,-2.450732,-2.5559227,-2.4181144,-2.1527386,-2.3512456,-2.1260445,-1.9842881,-2.5135884,-2.5094047,-2.1889777,-1.6909108,-2.1659207,-2.2482793,-2.574285,-2.7965913,-2.3752263,-1.8405871,-2.4377542,-2.4810693,-2.6075165,-2.233732,-2.5416727,-2.3828878,-2.1500416,-2.514373,-2.7670012,-2.6427946,-2.5949302,-2.6419792,-2.5194478,-2.5177493,-2.4957447,-2.4852374,-2.3696015,-2.3250732,-2.540123,-2.729138,-2.3494306,-1.9990062,-1.830911,-2.4999137,-2.5548112,-2.6171594,-2.5065222,-2.5899286,-2.146993,-1.8511349,-1.8750789,-1.18361,-1.2120563,-1.2742177,-1.245813,-1.7289542,-2.1167362,-2.07405,-2.439719,-2.4261422,-1.7078127,-2.0375743,-2.3824973,-2.2349381,-2.2453227,-2.394031,-2.616276,-2.3919659,-2.1717644
+-0.59488046,-1.0904067,-1.2573794,-1.3146262,-1.7589468,-1.3087486,-1.3917502,-1.6166075,-1.6944541,-1.691314,-1.3986577,-1.5992855,-1.6095247,-1.4240772,-1.3540905,-1.3230605,-1.3307375,-1.3596652,-1.3999188,-1.3679607,-1.3602526,-1.4673024,-1.4748085,-1.4484333,-1.4061652,-1.4055499,-1.4896392,-1.5661391,-1.5495948,-1.7474493,-1.4408517,-1.6804708,-1.614437,-1.8812249,-1.9301479,-2.1122766,-1.9610416,-1.8906779,-2.0391612,-2.008759,-1.8481826,-1.8695325,-1.751778,-1.5928541,-1.7787054,-1.6931554,-1.4315848,-1.9250499,-1.9533664,-1.8079469,-1.5536047,-1.8918213,-1.9055852,-1.7025646,-1.7179401,-1.8059126,-1.8366836,-1.9104019,-1.8441893,-1.9786948,-1.9046339,-1.9532241,-1.887196,-1.2075856,-1.6401976,-1.3659323,-1.6663562,-1.8207682,-1.7105429,-1.6944128,-1.9054313,-2.0443661,-2.1766112,-2.0777063,-2.2364893,-2.2877407,-2.3538675,-1.6121811,-1.8037968,-2.0206275,-2.1706653,-2.3395936,-2.2872872,-1.0250165,-1.4739498,-1.8477112,-2.0142949,-2.07709,-1.797885,-2.0253365,-2.2267895,-2.022827,-2.2165794,-2.1092243,-1.8032631,-1.981403,-1.9595686,-1.9525067,-2.0940804,-2.2236822,-2.3596098,-2.4975238,-2.3738904,-1.9411874,-2.08587,-2.3909245,-2.1233258,-2.1066172,-2.2695482,-2.4450388,-2.3251371,-2.3716376,-2.4849772,-2.6022668,-2.6265059,-2.638872,-2.6130667,-1.2133337,-2.0606914,-1.332254,-1.6101309,-1.7979246,-1.9321512,-2.2213414,-2.310997,-2.337492,-2.3569233,-1.9826366,-1.5407218,-1.9076656,-2.1218472,-2.0465345,-2.2828581,-2.4165704,-2.4537005,-2.4876878,-2.4287362,-2.1800537,-2.281062,-2.3978043,-2.3600411,-2.5633442,-2.4637644,-2.4604144,-2.6442237,-2.7275877,-2.69502,-2.6921942,-2.773624,-2.6836624,-2.7258463,-2.8397756,-2.8388476,-2.8095617,-2.8412085,-2.8181243,-2.9754279,-2.9108856,-2.971634,-2.840866,-2.7304413,-2.7899837,-2.855438,-2.8966575,-2.899579,-2.9227083,-2.870224,-2.968667,-3.0031466,-2.930003,-2.9377542,-0.88541883,-2.1732535,-2.127534,-2.198983,-2.3051996,-2.4421058,-2.451675,-2.439059,-1.7019109,-2.1161578,-2.0785823,-1.7386668,-1.9877852,-2.0114753,-2.2144427,-2.163282,-2.1405706,-2.1892395,-1.8954098,-1.4323056,-1.8102986,-2.1581612,-2.0142443,-2.0251803,-2.0765958,-2.0400279,-2.1737707,-2.1369717,-2.2406957,-2.2459574,-2.398137,-2.4648085,-2.4723706,-2.4381762,-2.1829948,-2.428061,-2.4995272,-2.613332,-2.702595,-2.8145432,-2.776584,-2.8100886,-2.8667593,-2.9565501,-2.887747,-2.9312923,-2.3726447,-2.471971,-2.7291412,-2.7115908,-2.7427945,-2.6307325,-2.641468,-2.666706,-2.57263,-2.3467202,-2.8122318,-2.7071657,-2.8487906,-2.825377,-2.8829274,-2.7910998,-2.4687784,-2.1946688,-2.256834,-2.5863085,-2.7674537,-2.6860242,-2.5618052,-2.427709,-2.6146448,-2.5119395,-2.332725,-1.827753,-2.3555827,-2.4330223,-2.4859767,-2.0704322,-1.506849,-2.0400963,-2.2889452,-1.8141803,-1.6394764,-1.7594675,-1.9672636,-2.3178666,-2.3636017,-1.9349725,-1.5883359,-2.1053138,-2.1500654,-2.1863217,-1.7762254,-1.9339356,-2.1645646,-2.2540705,-1.8310302,-2.2916155,-2.1964083,-2.1170635,-2.3309262,-2.0090013,-2.1267765,-1.8917007,-2.2214644,-2.1469114,-2.1060524,-2.110602,-1.8642663,-2.0594583,-1.0758337,-0.8266823,-0.900901,-1.1214427,-1.7443705,-1.5870646,-2.1062021,-2.3770676,-2.285844,-2.2839837,-2.2931604,-2.3185751,-2.3472118,-2.15851,-2.301258,-2.2209969,-1.941229,-2.37496,-2.1376548,-2.128482,-2.3617644,-2.3137639,-2.2898114,-2.2241545,-2.0543492,-2.4060497,-2.2796335,-2.322054,-1.7442878,-2.0606053,-2.1360798,-2.104702,-2.118918,-2.1326685,-1.8978497,-2.1071763,-2.0222344,-2.091513,-2.0191321,-1.8698946,-2.1326482,-1.9653162,-2.037265,-2.0293677,-1.8835276,-1.8907741,-2.0491998,-1.9905912,-1.921756,-1.855415,-1.827941,-1.7685095,-1.8136443,-1.7922989,-1.734815,-2.0236778,-1.7733184,-1.6959239,-1.9935721,-1.9981927,-1.6849972,-1.6160356,-1.8082913,-1.7418922,-1.696985,-1.8177845,-0.8371941,-1.3916113,-1.3526968,-1.552214,-1.6790669,-1.9959434,-1.8733586,-1.8053265,-1.845023,-1.4827167,-1.6021575,-1.5373434,-1.6801046,-1.6867523,-1.6872147,-1.8873991,-1.8159183,-1.5717818
+-0.3557868,-1.1742191,-1.6330961,-1.4525217,-1.810157,-1.8991324,-1.8317782,-1.9301182,-1.8516697,-2.074217,-1.6275527,-0.9587691,-1.895807,-2.0460553,-2.0790007,-2.09865,-2.011168,-1.8997263,-1.8134394,-1.6789366,-1.7665043,-1.202654,-1.7824554,-1.9819402,-1.8003038,-1.8457154,-1.9566427,-1.222659,-1.7688698,-2.0097146,-2.021421,-1.973214,-1.7053444,-1.8990599,-1.8151647,-1.8424882,-1.9085888,-1.8219832,-1.705129,-1.9624935,-2.1001968,-2.218502,-1.9415805,-2.0367131,-2.1570597,-2.173489,-1.0320566,-1.7657195,-2.068816,-2.2569234,-1.648721,-2.0282116,-2.0886173,-2.034532,-2.0000255,-2.099739,-2.2455552,-2.4369926,-0.99076957,-1.9268345,-2.2028077,-2.380446,-2.4157426,-2.5088458,-1.7791096,-1.759393,-2.0254424,-2.070438,-2.1347065,-2.1601734,-2.2952614,-2.467215,-2.608121,-2.517661,-2.6342158,-2.8767726,-1.0991975,-2.1148183,-2.3274336,-2.4829605,-2.5566158,-2.6874425,-2.8147178,-2.0632625,-1.203484,-2.358918,-2.4621572,-2.5265698,-1.2660077,-2.1403863,-1.8765056,-2.1679962,-1.690111,-1.8437349,-2.2692704,-2.2107313,-2.2143764,-2.272471,-2.1952538,-1.9110553,-2.2314425,-2.5263386,-2.5485592,-1.7022072,-2.4062095,-2.3086798,-2.0703673,-1.6019589,-2.1701298,-2.3399835,-2.4678047,-2.5386257,-2.6002307,-2.7081742,-2.7615907,-2.7705617,-2.8173795,-2.3404572,-2.64633,-2.8283486,-2.8735113,-2.8104076,-2.4266896,-2.6628742,-2.618912,-2.8257933,-1.337986,-2.2811809,-2.4195585,-2.216752,-2.509173,-2.5292602,-2.6064186,-2.6431756,-2.6948242,-2.7651534,-2.92369,-2.9315372,-2.8431196,-2.9160752,-2.4123886,-2.6730576,-2.6957045,-2.7905483,-3.0222564,-3.136154,-3.0913,-3.111661,-2.67381,-2.9438076,-3.1096115,-3.2166204,-3.2147214,-2.6852088,-1.7920729,-2.2020545,-2.6322732,-2.676126,-2.7093823,-2.7350707,-2.8368924,-2.9164228,-2.9687247,-2.9621751,-3.0920916,-3.04666,-3.0737429,-3.1569993,-3.1949806,-3.2380445,-3.0766325,-1.2322025,-2.5545273,-2.341526,-2.427991,-2.633321,-2.7518811,-2.6670735,-2.546315,-2.5905898,-2.5841057,-1.6649727,-2.341462,-2.505436,-2.6099286,-2.688272,-2.8143325,-2.872243,-2.936968,-2.4341514,-1.3216425,-2.6493914,-2.5033958,-2.3860493,-2.352457,-2.4339883,-2.3962555,-2.4739013,-2.5269444,-2.5018554,-2.4899797,-2.5804977,-2.6397402,-2.6593719,-2.4578316,-2.439322,-2.5288708,-2.6379552,-2.7689455,-2.869293,-2.607223,-2.7402768,-2.7722123,-2.9062703,-2.9939013,-2.9496837,-2.8477843,-2.5436778,-2.702746,-2.8651528,-2.935731,-2.9382768,-2.9430528,-2.7903142,-2.7668214,-2.8386316,-2.799193,-2.3102279,-2.624689,-2.7119513,-2.7492607,-2.786242,-2.6541271,-2.487544,-2.4878078,-2.6925235,-2.8472154,-2.7998137,-2.786007,-2.7996032,-2.6997414,-2.8855853,-2.736932,-2.6287138,-2.4322963,-2.594776,-2.7293859,-2.7023716,-1.8628067,-2.3521674,-2.5421326,-2.6958494,-2.4843197,-2.2883039,-2.4338162,-2.58348,-2.9102478,-2.7364278,-2.6378026,-2.3400512,-2.7055297,-2.490488,-2.6597753,-2.4849334,-2.442278,-2.5399594,-2.6553478,-2.634688,-2.7373385,-2.613443,-2.3914232,-2.6133642,-2.202086,-2.542122,-2.308685,-2.166445,-1.7733094,-2.1145592,-2.3347464,-2.4089594,-2.5517013,-1.1976264,-1.2017409,-1.3577626,-1.76867,-2.000125,-1.7050147,-2.3100502,-2.5758266,-2.5034792,-2.483058,-2.334147,-2.4409032,-2.4548056,-2.3915684,-2.366651,-2.2517958,-2.2757008,-2.4285038,-2.370264,-2.212154,-2.421718,-2.2882705,-2.2657008,-2.4363704,-2.2421591,-2.4686034,-2.4431593,-2.5076704,-2.2813525,-2.4275258,-2.5317378,-2.284563,-2.218052,-2.0999787,-2.2131174,-2.1170478,-2.0299168,-2.3261533,-2.1822433,-1.8257316,-2.3805017,-2.184996,-2.2319913,-2.2324486,-2.228478,-2.1725554,-2.3503435,-2.228824,-2.1751697,-2.1111882,-2.198262,-2.0628462,-2.1752114,-2.0810025,-1.3594335,-2.1262915,-2.1528404,-2.2154462,-2.2654638,-1.9988166,-1.92912,-1.9646367,-2.0331612,-2.1559868,-2.2234938,-2.3942256,-1.4910762,-2.2217433,-2.2856767,-2.3575258,-2.0788493,-2.3298657,-2.2244842,-1.9336374,-2.0055957,-2.0978134,-2.0365705,-1.8634337,-1.8601902,-1.8336489,-1.7786254,-1.9039402,-1.8790783,-1.1094093
+-0.34553877,-1.2177247,-2.0164332,-1.9368528,-1.960915,-1.8591118,-1.4138147,-1.856123,-2.1967692,-2.1632864,-1.8652984,-1.6171364,-2.0067132,-2.1475005,-2.035794,-2.0318828,-2.064977,-2.0745378,-2.0481336,-1.9992665,-1.3676816,-1.8395301,-2.0443225,-2.060573,-1.9931606,-1.909894,-1.866503,-1.8807315,-1.7355139,-1.7662739,-1.397067,-1.8423558,-1.8195401,-2.111782,-2.0677533,-2.0831237,-2.1185246,-1.9665774,-1.8819653,-1.894507,-1.8896544,-1.4864657,-1.6359353,-1.749216,-1.971579,-2.0058875,-1.2605984,-1.8084708,-1.8344039,-1.8460292,-1.8377132,-1.7718569,-1.809164,-1.9676818,-2.011104,-2.0360274,-1.9866871,-1.9743885,-0.998779,-1.8996648,-1.7262329,-1.7273937,-1.8150486,-1.8510755,-1.8521707,-1.7581702,-1.5171334,-1.5265566,-1.6932303,-1.7857147,-1.8107644,-1.8887304,-1.9033955,-1.9358543,-1.5867145,-1.6182426,-1.6356379,-1.6990576,-1.8494718,-1.9686152,-2.0435393,-2.1921277,-2.2123973,-2.2046347,-1.6716822,-1.5422202,-1.7224252,-1.8901019,-1.9621891,-1.8711306,-2.0117228,-2.0831268,-1.8959852,-0.9846763,-1.6943774,-1.6857201,-1.6512684,-1.7003782,-1.7324818,-1.6443654,-1.6980654,-1.1736959,-1.8515745,-1.5817524,-1.6991519,-1.1784253,-1.7169716,-1.6915972,-1.6510669,-1.6818796,-1.7922512,-1.624355,-1.7789493,-1.4453638,-1.743346,-1.8011876,-1.9308158,-1.8007941,-1.7858034,-1.7980525,-1.8503264,-1.4952458,-1.5838681,-1.7196248,-1.2152241,-2.3537083,-2.6584144,-2.1853504,-2.056034,-2.0196707,-1.9216365,-1.830049,-1.8036369,-1.8023677,-1.6452273,-1.7096609,-1.7742631,-1.7935873,-1.8471293,-1.3982095,-1.5101906,-1.6305851,-1.5754949,-1.6418635,-1.7575516,-1.8421549,-1.76919,-1.7155063,-1.8194331,-1.8088472,-1.7590929,-1.6809672,-1.7613512,-1.7972513,-0.90469426,-2.220859,-2.241824,-2.0264883,-1.9365274,-1.9033391,-1.9106674,-1.9278318,-1.9693011,-1.8466707,-1.5277902,-1.8000761,-1.8487395,-1.7752459,-1.7896278,-1.8325535,-1.4497885,-1.7829962,-1.7729756,-1.8813859,-2.0472982,-2.0734975,-1.7517949,-1.7872082,-1.7567922,-1.6531683,-2.103866,-2.039844,-3.0457058,-2.8514414,-2.2515106,-2.0055068,-1.8471669,-1.8421302,-1.8693515,-1.7892598,-1.4496278,-2.6347604,-3.1145866,-2.8842127,-2.3843803,-2.0799875,-2.005299,-1.9445944,-1.9124817,-1.8941516,-1.9033467,-1.8727226,-1.874024,-1.7799066,-1.777104,-1.9332323,-1.8947889,-1.8674629,-1.9054061,-1.9040262,-1.8703277,-1.8396984,-1.8601972,-1.7946423,-1.7794732,-1.8519038,-1.8371507,-1.7433254,-1.8744423,-1.9550169,-1.9717754,-2.0251904,-2.0474217,-1.9210242,-1.9637007,-1.8954105,-1.5712906,-1.6310655,-1.8331553,-1.846834,-1.7975194,-1.7355587,-1.7209285,-1.8502344,-1.8090688,-1.7672696,-1.8423344,-1.8499311,-1.8259048,-1.7071117,-1.8530937,-1.8256696,-1.9072577,-1.8817178,-1.5056736,-1.8000073,-1.8696591,-1.6995509,-1.5422047,-2.3277254,-2.256589,-2.3819308,-2.6413755,-2.052977,-2.007842,-1.7773993,-2.5234213,-2.429031,-2.7486255,-2.3418264,-2.0505667,-2.143651,-2.9864516,-2.9054408,-2.9391162,-2.9319305,-2.9475138,-2.49503,-2.399125,-2.207593,-2.0584478,-2.1545033,-2.2329717,-3.4030998,-3.0506172,-2.5834637,-2.7421808,-3.4229631,-3.1521199,-3.1655002,-2.6911545,-2.6767547,-2.1113415,-1.4510006,-1.7848324,-2.0511866,-2.4607916,-2.550332,-2.3935046,-2.3517046,-2.1948142,-2.176716,-2.2159204,-2.2965121,-2.0860505,-2.011553,-1.8222631,-2.8613224,-3.1198943,-3.0704322,-2.832015,-2.9335558,-2.7380702,-2.5367699,-2.3835807,-2.2394729,-2.148774,-2.0956285,-2.0798173,-2.1099727,-1.9819931,-2.0740921,-2.023666,-1.7629856,-2.4623516,-2.896601,-2.6856117,-2.6117296,-2.6019497,-2.3411827,-2.3407245,-3.5750022,-3.4237483,-3.192717,-2.8317983,-2.4238544,-2.1642518,-1.9600295,-1.8768004,-1.8822904,-1.9021024,-2.0033536,-1.8813909,-1.8545477,-1.9148269,-1.4390166,-2.2590973,-2.0818427,-1.8872424,-1.8815604,-1.9108115,-1.9415034,-1.9736396,-1.7964,-1.964265,-1.4828494,-1.9737037,-2.1881294,-2.7235346,-2.6199145,-2.4184053,-2.12216,-2.4570541,-2.7620301,-2.6314926,-2.9680963,-3.0903502,-2.596192,-2.4772182,-2.3136504,-2.1744022,-1.977105,-2.1698432,-2.094584,-2.1374102
+-0.56940156,-0.84268314,-0.75036484,-0.69475126,-0.7644039,-1.1048757,-1.0996381,-1.2200824,-1.0906819,-0.9584679,-1.362291,-1.6188241,-1.1414303,-1.4186178,-1.5401778,-1.8770727,-2.0765889,-1.6330858,-1.8641735,-1.6389444,-2.2911775,-2.0119038,-1.4913927,-1.6370865,-1.7291487,-1.7305344,-1.8651009,-1.8621988,-1.7927743,-1.9567802,-2.012286,-2.128901,-2.084205,-2.3480115,-2.7504096,-3.090022,-3.6489313,-3.3002543,-3.0004294,-2.9923997,-3.218705,-3.4510324,-3.905041,-4.2000813,-3.9939318,-3.7173364,-3.769722,-3.7316236,-3.7931774,-3.959649,-4.022594,-3.8461123,-3.9101343,-4.015071,-4.171843,-4.019025,-4.159876,-4.5559044,-4.6006145,-4.7432976,-4.6919518,-4.5387726,-4.5631466,-4.8713903,-4.76355,-4.659759,-4.594268,-4.86919,-4.566361,-4.477135,-4.516986,-4.6905575,-4.8727236,-4.633091,-4.7374487,-4.7770624,-4.746745,-4.7600284,-4.765573,-4.589111,-4.5143986,-4.945285,-4.9284625,-4.83473,-4.8164244,-4.797577,-4.5769906,-4.9243274,-4.9729033,-4.912589,-4.8836355,-4.704218,-4.979398,-4.9419127,-4.8972473,-4.581205,-5.0267434,-5.04839,-5.027127,-4.9465647,-4.892945,-4.8492737,-4.5626526,-4.621047,-4.8239894,-4.9177237,-4.8882103,-4.9026375,-4.8811054,-4.9987087,-4.9296985,-4.501001,-4.9329734,-4.9957905,-4.9723673,-4.760536,-5.039237,-4.984931,-5.025124,-5.0290213,-4.9394827,-4.8805065,-4.8367615,-4.7964406,-4.5603466,-4.9235134,-4.5275564,-4.981627,-5.027479,-4.926361,-4.989816,-4.88128,-4.8994985,-4.7422442,-4.703904,-4.626603,-4.7036304,-4.6553144,-4.6406317,-4.9513397,-4.8271203,-4.2878857,-4.698334,-5.0242624,-5.0005655,-4.9700093,-4.960121,-4.8361998,-4.9877906,-4.6959205,-5.0364094,-4.9412594,-5.008443,-5.075343,-4.924203,-4.9190273,-4.879906,-4.837406,-4.592026,-4.791464,-4.8905582,-4.9240656,-4.7871695,-4.720551,-4.9549303,-4.8125167,-4.9621744,-4.917577,-4.9636135,-4.8723392,-4.9769535,-5.102295,-4.854614,-5.06296,-4.9851246,-4.8130083,-4.716562,-4.675911,-4.707218,-4.741505,-5.0171356,-4.9426584,-4.8764105,-4.8167105,-4.7675424,-4.6917806,-4.6774635,-4.697471,-4.7793565,-4.6932755,-4.5009775,-4.514159,-4.4183426,-4.647583,-4.7098584,-4.654639,-4.656463,-4.67025,-4.8751917,-4.7906723,-4.5867577,-4.8257427,-4.882333,-4.7599993,-4.6399307,-4.515852,-4.3908644,-4.2892265,-4.0206704,-3.9364145,-4.142191,-4.2082796,-4.546015,-4.3584366,-4.229531,-4.760333,-4.7269397,-4.230865,-4.5218496,-4.3494606,-4.5261545,-4.761941,-4.4167743,-4.4900603,-4.5261316,-4.272989,-4.5146384,-4.6311245,-4.4087834,-4.588648,-4.6783757,-4.7178154,-4.7205005,-4.422733,-3.8499599,-3.9792361,-3.8106067,-3.7581036,-3.5852752,-3.2497616,-3.0420427,-2.7529557,-2.3378487,-2.4071517,-2.4868414,-2.5983555,-2.350575,-2.139572,-1.746988,-1.85511,-1.9289434,-1.9448242,-2.0070426,-1.8803533,-1.5729111,-1.40566,-1.4702669,-1.3945583,-1.2344215,-1.1559677,-1.4548254,-1.4039985,-1.2020096,-1.4312233,-1.6685343,-1.6125698,-1.5233914,-1.5696177,-1.6387707,-1.4169004,-1.6599437,-1.4993826,-1.5082335,-1.7317033,-1.3798708,-1.4536711,-1.7027497,-1.6764821,-1.7811459,-1.3660605,-1.3787466,-1.4402982,-1.504125,-1.3369099,-1.577036,-1.6179904,-1.5485864,-1.3425196,-1.1537186,-1.3298031,-1.6184896,-1.456899,-1.5165137,-1.693204,-1.6461776,-1.6950873,-1.6729273,-1.5100322,-1.6170901,-1.9235946,-1.9292468,-1.8777436,-1.901023,-1.7909833,-1.7057047,-1.5760473,-1.6569549,-1.6206554,-1.3991696,-1.5354196,-1.6033777,-1.58368,-1.2955369,-1.4184347,-1.5009595,-1.4635059,-1.5253457,-1.7371796,-1.9147413,-1.6758727,-1.8618425,-1.8704036,-1.7545568,-1.7550083,-1.9152695,-1.6140262,-1.7598072,-1.7384895,-2.0932765,-1.8287553,-1.8711065,-1.7453548,-1.8012902,-1.7350506,-1.8612863,-1.6341945,-1.5731922,-1.4966161,-1.360015,-1.6918815,-1.7596462,-1.573905,-1.8757741,-1.5572957,-1.3737179,-1.4981804,-1.4010508,-1.4222051,-1.5760406,-1.6022869,-1.3746413,-1.3970505,-1.4796735,-1.6850328,-1.9126469,-1.5939339,-1.5374374,-1.8284721,-1.4887133,-1.499336,-1.7571148,-1.9614192,-1.8507729,-1.6221157,-1.7434167
+-1.056526,-1.7967631,-0.81939745,-1.6053629,-1.0067677,-1.306559,-2.1980445,-1.8142767,-1.6625236,-1.2708004,-2.4808288,-2.015549,-1.891182,-1.909397,-1.9202154,-1.9880606,-1.9847523,-1.9362807,-1.8972715,-1.7508765,-1.8033727,-2.1728694,-1.9945859,-1.7747585,-1.8631641,-2.0738182,-2.1562705,-2.0741782,-2.2922273,-2.5142136,-2.4538858,-2.564372,-2.5363743,-2.464728,-2.716674,-2.6585634,-2.5179436,-2.2317617,-2.1371675,-2.1126256,-2.101047,-2.256474,-2.393223,-2.6207883,-2.1800842,-1.9820329,-2.4114585,-2.3085172,-2.2074487,-2.0034971,-2.3715365,-2.4587812,-2.461728,-2.3092892,-2.3810654,-2.5117073,-2.5151248,-2.5486884,-2.5185132,-2.4567297,-2.4815314,-2.476379,-2.5290868,-2.722515,-2.6913986,-2.2895744,-2.415328,-2.6160998,-2.1489975,-2.255584,-2.1560593,-2.4883351,-2.318654,-2.3555403,-2.1457705,-2.4257517,-2.3167913,-2.476757,-2.5714579,-2.6860714,-2.6839914,-2.012895,-2.537135,-2.7600098,-2.5119061,-2.6640806,-2.6363263,-2.6588607,-2.5593324,-2.741351,-2.7198348,-2.8970864,-2.6018116,-2.6998682,-2.9476755,-2.8095684,-2.9648118,-3.030705,-3.058613,-2.949781,-2.9934354,-3.0847878,-3.210855,-2.760799,-2.76823,-3.0814083,-3.1579208,-3.0218892,-2.8873382,-3.0541012,-3.1213784,-3.2681706,-3.3494322,-3.337823,-3.4403667,-2.5924506,-2.9781663,-3.2669246,-3.4085345,-3.338431,-2.0196986,-2.6520548,-2.7229614,-2.902938,-3.0449188,-3.1434853,-3.2047653,-3.0394607,-3.176738,-3.3391838,-3.4074821,-1.9620408,-2.098743,-2.1543047,-2.477283,-2.5310144,-2.9136496,-2.8615856,-2.1355927,-2.607141,-2.904164,-3.1209388,-2.6804528,-2.893973,-3.1666994,-3.27711,-3.2288628,-3.2133572,-3.3405385,-3.3730645,-3.3883548,-3.4801583,-3.4054022,-3.3602715,-3.4045947,-3.4452577,-3.5969663,-3.6322,-3.6482885,-3.5073872,-3.160828,-2.5124848,-3.077124,-3.2091465,-3.407679,-3.452578,-3.400284,-3.330486,-3.4513967,-3.4323058,-2.6343722,-2.5859861,-3.2442894,-3.407251,-3.4665701,-3.5017614,-3.4328516,-3.3397465,-3.5232944,-3.443622,-3.436554,-2.7710805,-2.931617,-2.6273634,-2.8314085,-3.0403395,-3.174144,-3.2075462,-3.234057,-3.234902,-2.6962028,-3.088922,-2.9139435,-2.9578857,-3.1934886,-3.096785,-2.9599123,-3.0674255,-3.164902,-2.8425782,-3.096126,-3.062158,-2.6919165,-0.99298304,-2.0820057,-2.02877,-2.122803,-2.3845682,-2.1913633,-1.7446961,-2.2890332,-2.6553543,-2.3977504,-2.5874376,-2.6071343,-2.8864603,-2.7965155,-2.7789598,-2.7101605,-2.7483416,-2.66505,-2.863011,-2.7386913,-2.6635447,-2.833335,-2.1686463,-2.2529497,-2.2715352,-2.6872277,-2.917243,-2.6988049,-2.832231,-2.8319798,-2.187733,-1.933662,-1.8385389,-1.6630008,-2.4873104,-2.6584718,-2.731121,-2.5792887,-2.4303834,-2.8558745,-2.793211,-2.5687115,-2.535398,-2.4385962,-2.2351837,-2.0140753,-1.6877896,-2.1721826,-2.0844517,-1.8796016,-1.6657118,-1.5036224,-1.5238874,-1.3903347,-1.2297945,-1.243369,-1.3070282,-0.92516047,-1.0450124,-0.9529205,-1.0012996,-1.1210517,-1.5466312,-1.3241899,-1.9920136,-1.4948746,-1.7000269,-2.238295,-1.9262394,-1.8931409,-1.950511,-1.5680646,-1.6161585,-1.9041682,-2.1782103,-2.230204,-1.2860886,-1.278888,-1.3918123,-1.2418331,-1.1908743,-1.0907298,-1.3584188,-1.8238239,-1.5304564,-1.3018589,-1.1387333,-1.2181497,-1.9937109,-2.413568,-2.062949,-1.9516978,-2.6811388,-2.8268583,-2.7286863,-1.0992246,-1.5071917,-2.045874,-1.8310432,-1.658282,-1.7433062,-1.3379039,-1.2391604,-1.3949224,-1.3504447,-1.128131,-1.019576,-1.3089548,-1.2643714,-1.8099259,-2.1240468,-1.5785966,-1.2964953,-1.5054547,-1.358141,-1.400222,-1.2344481,-1.669855,-1.5394236,-1.2770786,-1.7690041,-2.3596785,-1.9706463,-2.121573,-2.8124719,-2.9143238,-2.9369073,-2.687696,-1.9062581,-1.7258492,-2.3791986,-2.6207538,-1.808863,-1.594824,-1.3720282,-1.1490729,-1.6183494,-2.0215507,-2.0072317,-1.7400147,-1.7778319,-1.268345,-1.3754252,-1.3215628,-0.8955469,-0.89721256,-0.87803584,-0.951104,-1.3629116,-1.419923,-1.233375,-1.644772,-1.3714772,-1.3518153,-1.8267653,-2.403193,-2.2280164,-2.632254,-2.8662493,-2.2789,-1.8958625,-1.8278129
+-1.4962778,-1.8520367,-1.5036291,-2.1598017,-1.8845385,-1.8243052,-2.0206518,-2.257963,-2.2033951,-1.8756795,-2.4997773,-2.6132908,-2.410215,-2.2336087,-2.2176278,-2.2872877,-2.2854104,-2.395499,-2.4358325,-2.0815349,-2.3601575,-2.41461,-2.4043708,-2.3006108,-2.3758235,-2.522962,-2.412695,-2.4540594,-2.7397757,-2.7031496,-2.5379264,-2.7560673,-2.6797388,-2.6381953,-2.7230802,-2.697702,-2.497776,-2.5612907,-2.6589532,-2.663521,-2.570855,-2.6952481,-2.5582361,-2.6363573,-2.6352336,-2.3256812,-2.5339174,-2.6299002,-2.7835855,-2.6307664,-2.305485,-2.803822,-2.5884774,-2.8606572,-2.7984722,-2.6973407,-2.6488004,-2.6438293,-2.5987663,-2.415044,-2.5750697,-2.7448967,-2.5342677,-2.410613,-2.5092945,-2.2431827,-2.7373104,-2.6766908,-2.5425873,-2.6890316,-2.743472,-2.779986,-2.7843728,-2.8104863,-2.8446317,-2.8051739,-1.9829181,-2.773178,-2.873853,-2.917521,-3.0077982,-2.9193795,-2.9949698,-2.4131765,-2.8995962,-2.673636,-2.886856,-2.794374,-2.1096978,-2.9001505,-3.0249357,-3.0517669,-3.114214,-3.1982403,-3.0588295,-2.0393686,-3.0989363,-3.0400374,-2.100182,-3.002072,-3.0404282,-3.2173462,-3.3401399,-2.956054,-3.256546,-3.3108306,-3.4262033,-3.479241,-3.3933945,-3.3581543,-3.5549946,-3.6368847,-3.5677285,-3.501514,-3.5762548,-2.117918,-2.8307614,-3.2757523,-3.213061,-2.5400918,-2.3705554,-3.0146112,-2.4644318,-2.3829303,-3.0034382,-3.1724277,-3.2130623,-2.9241796,-3.2588418,-3.4252746,-3.4550138,-3.3776183,-2.573226,-2.6505203,-2.9421206,-2.6118996,-2.9253547,-2.6825895,-2.440736,-3.0562363,-3.1614075,-3.3083274,-2.1015694,-2.9507565,-3.2242167,-3.359289,-3.4194636,-3.3908944,-3.5539756,-3.5484476,-3.6298344,-3.7136254,-3.419712,-3.4087226,-3.6966634,-3.8407607,-3.854096,-3.854547,-3.7113934,-2.7093754,-2.4647596,-2.9648826,-2.5261188,-3.1193962,-3.455598,-3.5451448,-3.6144428,-3.6421642,-3.6097822,-3.6719773,-3.479776,-2.2718387,-3.2492652,-3.4711986,-3.6092749,-3.671739,-3.5876677,-3.8256779,-3.730964,-3.1059017,-3.2742193,-2.2408605,-2.9664674,-2.8821297,-3.1528373,-3.4063392,-3.4069269,-3.4823253,-3.5324965,-3.5393794,-3.0588007,-3.4328747,-3.5579433,-3.6228094,-3.5974128,-3.4654238,-3.6899595,-3.601706,-3.545692,-3.6129913,-3.6609855,-3.71099,-3.6781502,-3.419516,-3.1132877,-3.4593513,-3.6189888,-3.6496472,-3.750691,-3.3353295,-3.557438,-3.654551,-2.9058094,-3.4245465,-3.3780057,-3.6083841,-3.5053275,-3.690969,-3.634088,-3.7832537,-3.7154331,-3.767172,-3.0047488,-3.4459515,-3.65409,-3.3082714,-3.200935,-3.3762565,-3.785757,-3.5513465,-3.6332085,-3.6966176,-3.4898891,-2.8013232,-2.906931,-3.0983114,-2.8191907,-3.3575792,-3.4516726,-3.4295635,-3.3911197,-3.178899,-2.4549398,-2.837488,-2.702933,-2.9210265,-3.023402,-3.0551114,-2.6917086,-2.03508,-2.621992,-2.602243,-2.248512,-2.2943225,-2.2074618,-1.9877375,-2.233572,-2.4396584,-1.8272687,-1.704378,-1.1821779,-2.073855,-1.409001,-1.5731667,-1.622749,-2.2234628,-2.170426,-2.5371614,-2.285531,-2.6035576,-2.6350377,-2.6226902,-2.496,-2.6493607,-2.5621052,-2.8704414,-2.6947193,-2.465236,-2.6729436,-1.9256235,-1.8546606,-1.8646536,-1.6607715,-1.5975283,-1.6739204,-2.1704779,-2.5432272,-2.6422317,-2.467299,-2.474355,-2.351639,-2.6887984,-2.851231,-2.9289992,-2.613298,-2.9015694,-2.95651,-2.4781966,-2.48807,-2.5851817,-2.64905,-2.5766485,-2.3985689,-2.5987582,-2.398055,-2.2981203,-2.7967777,-2.802721,-2.196212,-1.8785383,-2.3452606,-2.7238936,-2.8617435,-3.136497,-2.2359662,-1.5758626,-2.4321468,-2.650218,-2.502612,-2.2002738,-2.5619094,-2.534914,-2.235883,-2.6952362,-3.1851845,-3.1340466,-2.7613373,-3.0325632,-3.0357409,-2.9847217,-2.8371253,-2.8528347,-2.562303,-2.8602057,-2.521501,-2.76848,-2.1676023,-1.9435545,-1.630057,-2.1564631,-2.5569315,-2.6049566,-2.7332153,-2.5530572,-1.8019297,-1.8124125,-1.7997166,-0.8960547,-0.55792105,-0.8500437,-1.0364999,-1.6738716,-2.0767026,-1.8059963,-2.392063,-1.7684996,-1.5086726,-2.3104353,-2.6269054,-2.5968146,-2.8258271,-2.833932,-3.098144,-2.7618694,-2.5803597
+-1.560754,-1.6513901,-1.5051614,-1.7851783,-1.3892167,-0.97964257,-0.57733345,-1.5373468,-1.6810184,-1.5876505,-1.4339324,-1.6873993,-1.6231172,-1.5745162,-1.5679535,-1.5756217,-1.5499047,-1.6029371,-1.606377,-1.5483817,-1.5367849,-1.7435611,-1.5627731,-1.7851934,-1.9439777,-2.141693,-1.840975,-1.3033618,-2.0648205,-1.7595476,-1.1664656,-1.8937777,-1.3817,-1.777356,-1.7717373,-1.5025955,-1.6134173,-1.4867834,-1.6465667,-1.69668,-1.567328,-1.4997243,-1.6978613,-1.7937362,-1.786534,-2.0489419,-1.0325235,-1.6700956,-1.7482713,-2.0602548,-0.8054846,-1.6573552,-1.4709288,-1.784152,-2.070553,-2.1551058,-2.11279,-2.1625328,-1.8513638,-1.8648374,-1.8652467,-2.0359688,-2.1480548,-1.0500631,-1.7374634,-1.8801788,-1.9594232,-1.9605602,-2.2225528,-2.322825,-2.3957868,-2.5153108,-2.6145387,-2.6272724,-2.7111433,-2.5420718,-2.3723047,-0.778437,-1.8122947,-2.1861649,-2.3492906,-0.56345206,-1.8974138,-1.2808081,-1.7182187,-1.8608352,-2.0924711,-2.1836367,-1.3154348,-1.5891671,-1.9419655,-1.8719527,-2.067474,-1.9218019,-1.5725343,-1.5064622,-1.9298292,-2.0915205,-1.8147322,-1.8090082,-1.971476,-2.182327,-2.2880087,-2.3768368,-2.4559631,-2.5744853,-2.0124326,-2.2270606,-1.7152293,-2.093844,-1.9632417,-2.1210537,-2.3737383,-2.5513537,-2.6225986,-2.6819134,-2.7373166,-2.7661405,-2.2686799,-1.1977843,-1.8955313,-1.8367381,-1.8289179,-1.9877919,-2.1522827,-2.280752,-2.3597121,-2.152007,-2.3380146,-2.484351,-2.5269392,-2.6612773,-2.6819265,-2.6380084,-2.669857,-2.7244825,-2.1731024,-1.0341805,-1.9406217,-1.188517,-1.9509271,-2.1180198,-1.2002764,-1.8879355,-1.9285545,-2.1270342,-2.2734632,-2.3790286,-2.462081,-2.538671,-2.5796757,-2.6111054,-2.6719904,-2.1443734,-2.0725877,-2.0197606,-2.1366754,-2.239736,-2.4559846,-1.811489,-2.01388,-2.1078267,-2.38695,-2.5642583,-2.624902,-2.6457343,-2.688692,-2.6430912,-2.7148225,-2.7489443,-2.734588,-1.4941024,-1.7551123,-2.122551,-2.3545816,-2.5042326,-2.4995658,-2.5491157,-2.591648,-1.6280416,-1.4203497,-1.758207,-1.9299005,-1.9672164,-1.6963769,-1.8143009,-1.9592475,-2.0006988,-2.0756888,-2.1625571,-1.8123887,-2.0265093,-2.1247199,-2.1569948,-2.2295477,-2.2709966,-2.2956984,-2.312109,-2.3989267,-2.3889565,-2.4633415,-2.4841704,-2.5221238,-2.0049143,-2.0878625,-2.2308443,-2.4475944,-2.396112,-2.2707703,-2.5182357,-2.5055544,-2.444836,-2.5061588,-2.5105464,-2.3648949,-2.5359051,-2.517712,-2.5838776,-2.3720348,-2.4195457,-2.3253822,-2.2768707,-1.8843392,-2.1793463,-2.1678128,-2.190932,-2.0373387,-1.9754122,-2.2180572,-2.1323106,-2.2147088,-2.2178159,-2.3031633,-1.9401767,-1.8330061,-1.9374382,-2.082481,-2.0828643,-2.1894364,-2.1675339,-2.0062118,-1.9361213,-2.034039,-1.678085,-2.013728,-1.9510096,-1.9840711,-2.0019197,-1.830854,-1.0821711,-1.875817,-1.7659813,-1.7898482,-1.925079,-1.8164226,-2.0317788,-2.1260438,-1.928087,-1.9426409,-1.8451043,-1.6139559,-1.603877,-1.8290828,-1.9474066,-1.7154988,-1.525216,-1.6883004,-1.2905406,-2.0315976,-2.0039713,-1.817987,-1.9414724,-1.8651742,-1.8297886,-1.6266104,-1.6682231,-1.7294523,-1.2308638,-1.5280899,-1.5732962,-1.6463312,-1.8013903,-1.4230233,-1.269566,-1.046677,-1.167611,-1.4965743,-1.8932276,-1.8456186,-1.8311303,-1.7644504,-1.717373,-1.712475,-1.7385815,-2.0610342,-1.7668209,-2.0571458,-1.1640822,-1.6445159,-1.5302893,-1.5358471,-1.5309104,-1.4583509,-1.5196275,-1.9004172,-1.4952723,-1.5659144,-1.6517587,-1.717439,-1.7615553,-1.3541746,-1.4589097,-1.5671977,-1.6865028,-1.9522547,-1.8106643,-1.407188,-1.7800367,-1.689037,-1.6589969,-1.6080248,-1.5864965,-1.5008138,-1.5518771,-1.7846547,-1.8507221,-1.7048925,-1.7480959,-1.7300111,-1.6358293,-1.7590955,-1.7653786,-1.6090311,-1.985264,-1.4129311,-1.8124453,-1.8068956,-1.7164351,-1.8230141,-1.5758096,-1.7460303,-1.8892308,-1.7693992,-2.0538583,-1.6619503,-1.6683407,-1.5957546,-0.83182085,-0.9943022,-1.1445668,-0.90867543,-1.4977213,-1.2918972,-1.5652978,-1.5573804,-1.6825407,-1.4900281,-1.824045,-1.6367527,-1.549339,-1.5460804,-1.6945425,-1.7771766,-1.6076114,-0.581629
+-1.3826715,-3.710034,-4.4200153,-4.424362,-4.7760534,-4.581564,-4.4361553,-4.6715283,-4.5711427,-4.5044384,-4.2527695,-4.3320704,-4.8754187,-4.7521467,-4.6752977,-4.627068,-4.543573,-4.3480144,-4.1157074,-4.0100336,-3.6676474,-3.297041,-4.684866,-4.785802,-4.480613,-4.0355554,-3.6292753,-4.184804,-4.81915,-4.7781816,-4.635278,-4.9236383,-4.654923,-4.9451904,-4.992748,-4.377493,-4.720467,-4.667054,-4.7003994,-4.5559425,-4.637084,-4.5130234,-4.1202297,-4.399927,-4.5973434,-4.535285,-4.202877,-4.8021126,-4.7466207,-4.743655,-4.588405,-4.891951,-4.969985,-4.7069883,-4.6041174,-4.309067,-3.6160116,-3.5030437,-4.01725,-4.7392583,-4.6769114,-4.4378138,-4.3113556,-4.308138,-4.1532593,-4.728503,-4.6885347,-4.5084996,-4.6038275,-4.5940924,-4.4032073,-3.6277626,-3.4563313,-3.9925127,-3.5402582,-2.943921,-2.6351016,-4.032733,-4.5649257,-4.555788,-4.3090754,-3.7868154,-3.5918384,-4.1123176,-4.6933374,-4.4256077,-4.702351,-4.430605,-4.393297,-4.625852,-4.29611,-4.338069,-4.6928654,-4.594788,-4.8913774,-4.55363,-4.3499765,-4.2639475,-4.256664,-4.1227026,-3.936091,-3.4950242,-2.7020245,-2.5228097,-2.3291965,-2.1317966,-2.915578,-4.457763,-4.241235,-4.256674,-4.521787,-4.307334,-3.7547338,-3.3014188,-2.926222,-2.5491998,-2.261078,-2.2821152,-3.45289,-4.252936,-4.4476604,-4.3332453,-3.966114,-4.284682,-4.2957363,-3.8275757,-3.3902369,-2.9036558,-2.6460838,-3.108224,-4.039818,-4.129858,-3.522717,-2.8850384,-2.5155585,-2.1500359,-2.4636116,-2.9925556,-3.0862489,-2.6105795,-2.50393,-2.5964665,-2.0403829,-2.543633,-2.2931943,-2.111934,-1.8558366,-1.7095519,-1.6856511,-1.7990117,-1.8370597,-1.7466184,-1.7093414,-1.5615572,-1.8463365,-2.8611734,-4.0814023,-4.1302404,-3.815123,-3.654152,-4.467873,-4.301445,-4.007618,-3.6757402,-3.5700188,-2.7949457,-2.5335493,-2.2590027,-2.0725377,-2.066173,-1.8833102,-3.1708236,-4.586732,-4.7521253,-4.86664,-4.699321,-4.5207434,-4.223888,-3.943296,-4.1769347,-4.6642365,-3.8977845,-4.738508,-4.7655253,-4.645153,-4.4934187,-4.480656,-4.3508525,-4.081038,-3.8640974,-4.257356,-3.9990187,-4.849295,-4.8570004,-4.7845154,-4.585311,-4.6438026,-4.5403643,-4.2539873,-4.0414143,-3.8773909,-3.6719446,-3.3516283,-3.334899,-4.330323,-4.453246,-4.309987,-4.4194717,-4.3432355,-3.8652017,-4.1251054,-4.1377563,-3.8515258,-3.99166,-3.9283695,-3.6189008,-3.426366,-3.9450946,-4.7496905,-4.6747084,-4.640377,-4.603884,-4.285201,-4.6567235,-4.616321,-4.5696645,-4.47015,-4.319589,-4.830268,-4.884108,-4.7934656,-4.7079997,-4.589856,-4.564783,-4.4978447,-4.3818245,-4.3674765,-4.3320436,-4.4397683,-4.605997,-4.5923595,-4.5471473,-4.034646,-4.7125254,-4.8965864,-4.962818,-4.882582,-4.858394,-4.7282276,-4.438282,-4.895374,-4.9458733,-4.674983,-4.504229,-4.5656614,-4.501366,-5.0474954,-4.937862,-4.802327,-4.3798985,-4.6220717,-4.500153,-4.8474226,-4.6304708,-4.6374283,-4.649517,-4.6035523,-4.335073,-4.9815493,-4.9790907,-4.6335173,-4.8906317,-4.7122784,-4.8043284,-4.681038,-4.7090883,-4.4835806,-4.719926,-4.7826376,-4.826007,-4.8981943,-4.2003813,-3.9214814,-3.878196,-3.9214025,-4.305921,-4.423208,-4.789977,-4.8676686,-4.7886505,-4.7611628,-4.7808704,-4.6657243,-4.7780743,-4.7238574,-4.837619,-4.6442075,-4.817228,-4.8318095,-4.891099,-4.7569895,-4.85441,-4.765546,-4.8027463,-4.754709,-4.7353325,-4.8284903,-4.725812,-4.697696,-4.477859,-4.5126715,-4.60209,-4.5897512,-4.4802394,-4.641248,-4.528961,-4.526513,-4.285674,-4.6514435,-4.52496,-4.523853,-4.810088,-4.6894827,-4.785838,-4.5496006,-4.6847496,-4.5800786,-4.593195,-4.196933,-3.9585388,-4.022957,-4.685286,-4.471039,-4.0329113,-3.6314983,-4.5161667,-4.5986824,-4.343162,-4.1305904,-4.1431103,-3.9105344,-4.1036196,-4.509717,-4.426062,-4.403322,-4.0358863,-3.6098094,-3.7117414,-4.3935337,-4.294301,-4.382393,-4.5847554,-4.9262123,-4.823569,-4.6808395,-4.8106976,-4.382395,-4.5104523,-4.3448534,-4.1807184,-3.771902,-3.8321388,-4.3306413,-4.149443,-4.0616083
+-0.7636848,-1.4179844,-2.3830936,-2.4516692,-3.1560519,-2.9105206,-2.315641,-3.171505,-3.2936306,-3.2753873,-2.009366,-2.8839417,-3.956213,-4.0048437,-3.790957,-3.6546397,-3.5076656,-2.9724846,-2.3707452,-2.13681,-1.5499647,-1.2917506,-2.9492311,-3.543137,-3.1209974,-2.603963,-1.9915293,-2.84636,-3.7774081,-3.788222,-3.5154114,-3.181518,-3.424327,-3.9168925,-4.0085106,-4.090831,-3.8453827,-3.7003837,-3.3810701,-3.1025548,-3.163699,-3.4655108,-3.504338,-3.651333,-3.7528887,-3.4872684,-3.149075,-3.977727,-4.065,-3.8276746,-3.69249,-3.7919426,-3.7434974,-3.5597591,-2.938095,-2.3301165,-1.8505989,-1.8176428,-1.3110793,-2.9761734,-3.2341647,-3.462849,-3.4562232,-3.3881454,-3.6886988,-3.259414,-3.1879456,-3.594688,-3.614512,-3.4610207,-2.9415305,-2.0922036,-1.6509128,-1.7711823,-1.7275,-1.2484852,-1.6227638,-1.7854347,-2.3035834,-2.2499301,-1.8861536,-1.7402683,-1.8707145,-1.1846057,-1.1171846,-2.0160708,-2.38641,-2.067434,-1.6042391,-2.036902,-1.9295719,-2.052596,-1.8069701,-2.6016626,-2.5188284,-2.300863,-2.4419656,-2.252713,-2.240538,-2.5860736,-2.437189,-2.0448785,-1.737338,-1.6970807,-1.7138503,-1.6436743,-1.114789,-1.8902956,-1.9580933,-1.9396801,-2.0362566,-2.0442066,-1.853896,-1.8706492,-2.015974,-2.083343,-2.0223918,-1.7410132,-1.9736601,-2.107585,-1.721228,-1.553578,-1.6747586,-0.8408906,-1.9838506,-2.0417242,-1.892967,-1.6182451,-1.6316913,-1.2913251,-2.536654,-2.3496628,-2.055804,-1.8152087,-1.7015356,-1.7900828,-1.9698375,-2.0642672,-2.0648525,-1.6145618,-0.8382022,-1.6259383,-1.6489161,-1.5693442,-1.7237946,-1.8459356,-2.0102801,-2.1845174,-2.01335,-1.9797119,-1.9755257,-2.0401204,-2.1495302,-0.40511703,-1.4594184,-1.9570833,-3.042562,-3.3312726,-3.008391,-2.66531,-2.7465243,-2.5442235,-2.1980982,-2.1416602,-2.0302143,-1.8674096,-1.7317034,-1.6534463,-1.6591352,-1.678924,-1.6925317,-1.5155079,-2.6584203,-2.6353197,-3.4779553,-3.7683074,-3.7769408,-3.618908,-3.4087515,-3.3839445,-3.7888207,-3.656177,-3.8168197,-3.5258665,-3.122089,-2.8864493,-2.7059062,-2.4282777,-2.4898596,-2.6572173,-3.098167,-3.2124991,-4.4123554,-4.125803,-3.9219403,-3.6394844,-3.574716,-3.4175396,-3.1199625,-2.673292,-2.347097,-2.1228662,-1.9382232,-1.922021,-2.2770734,-2.6082835,-2.2343237,-2.1972415,-1.8782071,-1.6197722,-1.5102004,-1.5383446,-1.4559573,-1.5102154,-1.6014955,-1.600448,-1.6835607,-1.0844959,-2.0292575,-2.0012293,-2.0947523,-1.9463738,-1.8648689,-2.0733688,-2.371102,-2.5439548,-2.2638397,-2.0892725,-2.3463717,-2.301958,-2.259345,-2.1250877,-1.9688948,-2.5970874,-2.3130016,-2.0613332,-1.99539,-2.0506258,-2.0627007,-1.9467344,-3.2339532,-2.9496074,-2.5828843,-2.7146535,-2.8877292,-3.995144,-4.005123,-3.793826,-3.545446,-3.968729,-4.245781,-4.243857,-4.1609697,-3.6493592,-3.4722033,-3.1284297,-4.0845823,-4.1606655,-4.2978888,-3.7417202,-3.3488312,-3.598977,-3.8401575,-4.157554,-4.191168,-4.1514387,-4.2135973,-4.055765,-4.102553,-3.9528685,-3.5770555,-3.9054284,-3.5342026,-4.330205,-4.074037,-3.779573,-3.7643478,-4.1654706,-4.290251,-4.3280125,-4.1959553,-3.761929,-3.3183365,-3.1054354,-2.9322019,-2.996654,-3.0406194,-3.630074,-3.8369238,-3.733395,-3.7224813,-3.4964159,-3.4861302,-3.7090778,-3.6477687,-3.5406284,-3.295296,-3.3918762,-4.078581,-3.89825,-3.655672,-3.9978404,-3.8348157,-3.668374,-3.7431502,-3.503214,-3.3734162,-3.449037,-3.581298,-3.7075257,-3.3255541,-3.3734994,-3.2124858,-3.1539502,-3.2418294,-3.9901447,-3.8233583,-3.7341697,-3.9831514,-3.695181,-3.4039493,-4.2488384,-4.0527506,-3.940364,-3.8300014,-3.7831032,-3.5525842,-3.2439404,-2.745,-2.6438522,-2.4992294,-2.9973207,-2.4125056,-2.030298,-1.8784099,-2.986615,-4.073375,-3.9815893,-3.6616156,-3.3120894,-3.1243064,-3.0209672,-3.2539873,-3.0086517,-3.2609847,-2.8075128,-2.4619966,-3.14498,-3.853784,-3.5985172,-3.547375,-3.4860096,-3.9839058,-4.136881,-3.8504782,-4.0240993,-3.9318013,-3.7168808,-3.532212,-3.4011528,-3.159275,-2.9074192,-2.9694738,-2.6051397,-3.087235
+-0.6497315,-0.99282557,-0.60474813,-0.59597623,-0.6571117,-0.4826226,-1.4742653,-1.2182678,-0.6553632,-0.58785254,-0.9942098,-1.2394706,-0.93177944,-0.76353496,-0.7928658,-0.8954292,-0.8583563,-0.8965098,-0.72072667,-0.5620897,-0.65655,-1.1761891,-0.81729263,-0.623861,-0.6776918,-0.86672896,-0.80518514,-0.71472424,-0.6616999,-0.64618355,-1.3665345,-1.7002497,-1.622901,-1.5969149,-1.4499749,-1.084154,-1.1185201,-1.0799229,-1.204985,-0.9432512,-0.9379055,-0.9456312,-1.2943275,-1.3518414,-1.6542026,-1.3043901,-1.3152627,-1.3879931,-1.5434142,-1.1884203,-1.3303035,-1.4324553,-1.4386052,-1.4354286,-1.50834,-1.5502943,-1.5596511,-1.612275,-1.6098055,-1.6338767,-1.6346288,-1.535527,-1.4875515,-1.6497254,-1.7155343,-1.1755381,-1.5764636,-1.5195853,-1.6353315,-1.5019258,-1.3726417,-1.4369484,-1.7216302,-1.593432,-1.3302878,-1.5147713,-1.6955603,-1.7373391,-1.807133,-1.8562045,-1.8264427,-1.42377,-1.538333,-1.7846643,-1.9279907,-2.029984,-2.1422195,-1.7902938,-1.9686128,-1.8584079,-2.1202908,-1.9484683,-2.0331905,-2.1727703,-2.2512152,-2.3721235,-2.4395123,-2.2477124,-2.463872,-1.8964661,-2.1464937,-2.3333178,-2.4399254,-2.432021,-2.3944879,-2.410736,-2.4251776,-2.5082197,-2.3537848,-2.488268,-2.5076075,-2.538567,-2.6119435,-2.4440067,-2.6019359,-2.218305,-2.3247023,-2.4664626,-2.6203074,-2.751018,-2.769688,-2.837061,-2.85648,-2.8703742,-2.7525501,-2.78261,-2.7191699,-2.4382703,-2.6685061,-2.744226,-2.763481,-2.7414832,-2.8579082,-2.4000964,-2.3211212,-2.2951984,-2.5920668,-2.135814,-2.2712374,-2.4957042,-2.653406,-2.6533399,-2.0789297,-2.3269587,-2.3649845,-2.5313919,-2.5962203,-2.4839675,-2.6077104,-2.3260021,-2.5129547,-2.5812106,-2.0959759,-2.2788188,-2.272026,-2.5916,-2.7268674,-2.823306,-2.7038772,-2.6912596,-2.379619,-2.5749059,-2.6456268,-2.303087,-2.511682,-2.6249702,-2.67984,-2.6233277,-2.2105465,-2.3553092,-2.4416728,-2.6196473,-2.6706839,-2.603321,-2.8086972,-2.5237796,-2.4312963,-2.3488321,-2.5731163,-2.615243,-2.8207386,-2.7072172,-2.8223805,-2.8618712,-2.7588565,-2.6988122,-2.7670894,-2.8617156,-2.88067,-2.925544,-2.336773,-2.5337198,-2.4922955,-2.489386,-2.661698,-2.6515846,-2.4308496,-2.4460201,-2.2293437,-2.3821993,-2.3524382,-2.4545293,-2.011704,-1.9015946,-2.0822458,-1.9231913,-1.940951,-2.2337947,-2.029969,-1.5903784,-2.3844748,-2.3217669,-2.597496,-2.535068,-2.395093,-2.520457,-2.3236756,-2.4096034,-2.3873806,-2.3778248,-2.1449394,-2.05352,-2.4288917,-2.1596007,-2.3127115,-1.9511979,-1.9702028,-2.2103791,-2.3730147,-2.2998483,-2.4767642,-2.513739,-2.513452,-2.094072,-1.4178029,-1.3341738,-1.2275162,-1.3283103,-2.0370765,-2.1523023,-2.1857734,-2.0924554,-1.8262893,-2.0800133,-2.2040443,-2.2859747,-2.1331372,-1.656232,-1.0748382,-1.8628992,-1.8316355,-1.8737344,-1.3506848,-1.166877,-1.0930154,-1.2685127,-1.547978,-1.3060274,-0.98621696,-0.7346785,-0.80838263,-0.8502419,-0.6772209,-0.89763254,-1.1865917,-1.2422682,-1.0608766,-1.3387992,-0.98600537,-0.6999255,-1.3449203,-1.1311367,-1.1249152,-1.2151673,-0.80321836,-1.2759191,-0.9643287,-1.0005152,-1.0887097,-0.8064225,-0.84395474,-0.7059253,-0.6062835,-0.45578867,-0.52082175,-0.80587363,-0.94680023,-0.66234916,-0.555166,-0.54484177,-0.47532907,-0.25498298,-0.69510585,-0.7015915,-0.65156054,-0.8968399,-1.2242519,-1.2032639,-1.1356328,-1.1941928,-1.3847708,-1.2279446,-1.1341478,-1.1078008,-0.7794791,-0.59778845,-0.69804853,-0.6036659,-0.64127153,-0.55477715,-0.6938485,-0.409608,-0.44954485,-0.5540194,-0.40354988,-0.32943967,-0.37936482,-0.38328904,-0.489135,-0.5001893,-0.66987413,-0.57811105,-0.39444008,-0.47756627,-0.8738977,-0.4398751,-0.6028224,-1.010336,-0.9728133,-1.308206,-1.1156665,-0.7999157,-0.9672548,-0.841458,-1.560314,-0.9198832,-0.5798879,-0.48630634,-0.41639575,-0.5724635,-1.1291107,-1.0154606,-0.95462704,-0.88323206,-0.6244386,-0.34089872,-0.24261138,-0.34168866,-0.32394645,-0.23757115,-0.20131116,-0.26137656,-0.2911658,-0.3631664,-0.6156026,-0.28485715,-0.3594664,-0.4240238,-0.2667596,-0.40247732,-1.0223233,-1.2050549,-0.7830997,-0.69536704,-1.3550133
+-0.07045533,-0.94269216,-0.4192045,-0.26758578,-0.17958787,-0.5147403,-0.9587533,-0.9089969,-0.5242947,-0.4945906,-0.5269459,-0.9799263,-0.64732945,-0.46345088,-0.51576144,-0.4988604,-0.5188749,-0.64010483,-0.86277324,-0.77763903,-0.5950497,-0.80946934,-0.97704035,-0.7704037,-0.70107955,-0.72758424,-1.1372755,-1.0522481,-1.0390302,-1.0058652,-1.0738784,-1.6742511,-1.4532565,-1.5682067,-1.5818884,-1.653015,-1.5269758,-1.5260805,-1.4635807,-1.4057547,-1.4364091,-1.3780768,-1.3020927,-1.6270102,-1.447789,-1.3235675,-1.417755,-1.4645169,-1.4228274,-1.3696867,-1.240738,-1.2567968,-1.2436486,-1.2184074,-1.0549196,-1.0826689,-1.1158738,-1.1735402,-0.7180986,-1.4906832,-1.4936641,-1.5646666,-1.2423347,-1.4231254,-1.4546785,-1.1117415,-1.6245211,-1.7278124,-1.7389661,-1.5762935,-1.6384948,-1.6916395,-1.6959168,-1.6468066,-1.7047414,-1.597601,-1.4608876,-1.3863454,-1.2743403,-1.2339164,-1.15635,-0.6929933,-1.2584766,-1.3159776,-1.3506676,-1.308989,-1.2557889,-0.98503894,-1.1776154,-1.2511544,-1.3367454,-1.0978398,-1.1592773,-1.2850783,-1.2772207,-1.2586251,-1.2668089,-1.2779578,-0.5257999,-0.9611793,-1.58227,-1.4407619,-1.3715376,-1.1339271,-1.4289137,-1.5986513,-1.3323381,-1.3355258,-1.1401696,-1.2991806,-1.3990462,-1.394513,-1.1595439,-1.1085573,-1.3171352,-0.86169744,-1.0910141,-1.2789859,-1.3901833,-1.4755768,-1.5538642,-1.0444797,-1.295607,-1.4056367,-1.4552773,-1.4201888,-1.4221541,-0.9728729,-1.2570995,-1.390016,-1.437005,-0.4243572,-1.0910393,-1.0735058,-0.95445055,-1.4647647,-1.4303883,-1.3505272,-1.5487298,-1.5163971,-1.4343154,-1.501987,-1.107037,-1.687646,-1.5767328,-1.4997641,-1.4606885,-1.3049549,-1.4858457,-1.2869134,-1.2565633,-1.4967009,-1.4505247,-1.4833032,-1.4976026,-1.5350921,-1.5540407,-1.5623486,-1.6674509,-1.5885247,-0.23024398,-1.2696486,-1.4846492,-1.1468186,-1.6280737,-1.6225389,-1.6119144,-1.7179352,-1.6358801,-1.4991211,-0.65071046,-1.5716802,-1.591236,-1.6422334,-1.6926728,-1.6378623,-1.7264212,-1.6429037,-1.5871652,-1.3289458,-1.6624802,-1.6541384,-1.6689285,-1.7060019,-1.0709782,-1.5489963,-1.5941511,-1.7081257,-1.7774869,-1.7741556,-1.0431705,-1.5820967,-1.6208103,-1.6824557,-1.6931372,-1.4742386,-1.7183938,-1.7065538,-1.4731052,-1.4282322,-1.398181,-1.5793349,-1.9085053,-2.1924493,-2.893245,-2.5874562,-2.423627,-1.719978,-1.4194131,-1.0226934,-1.7630583,-1.7944032,-1.7213311,-1.6277449,-1.7488072,-1.7365001,-1.8651782,-2.299708,-1.9518782,-1.9730412,-1.8427649,-1.8610538,-1.7299439,-1.8079085,-1.5532202,-1.209941,-1.5019691,-1.4770882,-1.55881,-1.5510056,-1.6271912,-1.8393706,-1.9422449,-1.9191796,-1.759284,-1.200978,-0.72636074,-0.94636774,-1.346764,-1.5614945,-1.4721484,-1.2146963,-1.5050443,-1.6885535,-1.7688869,-1.6685058,-1.3278608,-0.95287806,-0.97091526,-1.2382429,-1.1888952,-1.1990992,-0.6795077,-0.59146166,-0.52543706,-0.4897664,-0.86690265,-0.64114624,-0.59566385,-0.5301874,-0.57883424,-0.81803936,-0.47304812,-0.52601385,-0.6862056,-1.0774461,-0.9133707,-1.3011408,-1.1607528,-1.134421,-1.5888813,-1.7578961,-1.3836184,-1.6815751,-1.480893,-1.5239058,-1.1890892,-1.3119224,-1.7622393,-1.1571611,-1.1949958,-1.0012312,-1.1323975,-0.9451267,-1.0111946,-1.0324584,-1.5482434,-1.331566,-0.8282675,-0.8989964,-0.9364627,-1.0720955,-1.4219452,-1.2514671,-1.0278691,-1.3701122,-1.5173123,-1.2019217,-0.6054392,-0.8746106,-1.0758365,-0.74799615,-0.669032,-0.65125066,-0.64774746,-0.7153581,-1.0588284,-0.935232,-0.8857188,-0.903894,-0.86408454,-0.87245935,-0.7950559,-0.9634834,-0.9371194,-0.9186821,-0.97580904,-1.0388087,-1.3028556,-0.8836391,-1.1523956,-1.1648962,-0.9274507,-0.8185503,-1.088436,-1.0932912,-0.88310695,-1.228312,-1.4802703,-1.2703744,-1.4875263,-0.78949964,-0.5096455,-1.0066019,-1.4979149,-1.2055277,-0.22527558,-0.18197787,-0.16086282,-0.5769375,-1.0165933,-1.2578098,-0.8749758,-0.4042439,-0.27791393,-0.71166545,-0.78568006,-0.14616083,-0.59895045,-0.4847645,-0.55608916,-0.5797402,-0.8018543,-0.9078086,-1.142721,-1.017356,-0.9593438,-1.288242,-1.5184995,-1.1961683,-1.4441861,-1.6177775,-1.3303984,-1.2293705,-0.7554211
+-1.0466405,-1.4169238,-0.5372291,-1.0840117,-0.6226509,-0.9013358,-1.0607454,-1.1853583,-1.2842885,-1.0371248,-1.8868653,-1.8882774,-1.5372039,-1.4888643,-1.4048543,-1.3366483,-1.2686297,-1.2376891,-1.1730325,-1.0292021,-1.0551739,-1.4682045,-1.252057,-0.9878034,-1.2893906,-1.4768203,-1.6102393,-1.3947715,-1.8986318,-1.9012964,-2.1580014,-2.1291077,-2.235039,-2.2325163,-2.1446867,-1.9992818,-1.9892801,-1.830758,-1.6884851,-1.5695877,-1.4686219,-1.4670743,-1.7988744,-2.012516,-1.7490498,-1.5371042,-1.8047956,-1.7066036,-1.6131171,-1.3595641,-1.770054,-1.7641485,-1.7335123,-1.5989599,-1.5254266,-1.6722914,-1.8011516,-1.9055737,-1.9456203,-1.7926766,-1.7118118,-1.5943741,-1.7306718,-1.8246647,-1.943268,-1.7258582,-1.7202376,-1.7477303,-1.7522568,-1.5675969,-1.3768563,-1.7098371,-1.4515646,-1.3173251,-1.2098962,-1.3495232,-1.6091584,-1.6230828,-1.5311857,-1.6368722,-1.6973823,-1.5358514,-1.6367058,-1.6605748,-1.4882699,-1.6425364,-1.7384514,-1.8304044,-2.0372148,-1.8820821,-1.7019105,-1.8575596,-1.7489516,-1.6824962,-1.8177644,-1.9952508,-1.9865364,-1.887051,-1.9794327,-1.8642071,-1.857539,-1.7863771,-1.9153949,-2.1556184,-2.0677907,-2.2060099,-2.0179677,-1.7310845,-1.9972566,-1.798396,-1.869582,-2.0941014,-2.2582762,-2.1125076,-2.1425638,-1.0861858,-1.6491147,-1.8316603,-1.9324964,-1.9821109,-1.0765126,-1.50498,-1.8043433,-1.815137,-1.9162656,-2.0068157,-2.177119,-2.1350462,-2.0344543,-2.147378,-2.3512404,-2.007755,-2.091714,-1.66176,-1.822903,-1.6322209,-1.8290045,-1.9697458,-1.8240844,-1.9480054,-2.0149908,-2.1409156,-1.2201513,-1.6935781,-1.9304488,-2.1785383,-2.342228,-2.2859185,-2.2808642,-2.4451852,-2.3850355,-2.4255018,-2.6299472,-2.1357374,-2.1520023,-2.1840823,-2.3719769,-2.4665427,-2.344807,-2.444499,-2.4887247,-2.15267,-2.233039,-2.1593618,-2.2763937,-2.4619586,-2.4085553,-2.2329688,-2.4992466,-2.5510578,-2.3589022,-1.2511522,-1.9715809,-2.091743,-2.2513762,-2.3852448,-2.2555926,-2.0035076,-2.378518,-2.3728642,-2.4597344,-2.3570855,-1.7655811,-2.1847901,-2.1006126,-2.251093,-2.239056,-2.2640598,-2.3375401,-2.399065,-2.4964368,-2.328754,-1.9753379,-2.0542028,-2.4443896,-2.5448797,-2.1831288,-2.2668762,-2.5821042,-2.4316964,-2.5658963,-2.5018535,-2.1595597,-2.3053122,-1.8509645,-1.8864235,-1.6058899,-1.945861,-1.7793721,-0.77444214,-1.8288176,-2.0396237,-2.029357,-2.09837,-1.8122674,-2.3761795,-2.3785238,-2.283279,-2.1927202,-2.2488344,-1.9131145,-2.3653097,-2.2780375,-2.1478682,-2.3572211,-1.5528789,-1.6905091,-1.7629617,-2.2064593,-2.414431,-2.3314872,-2.4009213,-2.4540663,-1.6837668,-1.2121407,-1.3506311,-0.93964505,-1.1314912,-2.050077,-2.220141,-1.9881157,-2.0354378,-2.205892,-2.3402534,-2.3631022,-2.0341787,-1.9901484,-1.6242898,-1.666939,-1.6639146,-1.3356242,-1.7451178,-1.3807263,-1.4290601,-1.0758553,-1.0745775,-1.1227776,-0.8900449,-0.92257154,-0.9929554,-0.45391026,-0.60537726,-0.4284154,-0.53061205,-0.68467194,-1.1378279,-0.9279582,-1.5957872,-1.106905,-1.2196759,-1.8340886,-1.6090741,-1.3418146,-1.5419706,-1.2555147,-1.4107748,-1.3798717,-1.6284026,-1.7489166,-1.2144064,-1.2397614,-1.2713708,-1.1233369,-1.0065578,-0.8989783,-0.9641468,-1.5711291,-1.2993643,-1.0660588,-0.9249074,-0.89907104,-1.1272082,-1.597113,-1.440498,-1.5531229,-2.0504327,-2.4388433,-2.4036224,-0.62378776,-1.0267662,-1.8508917,-1.6158749,-1.5066849,-1.5847238,-1.3053881,-0.8593065,-1.3039402,-1.0588869,-0.8385167,-0.81401885,-0.8914773,-1.0380228,-1.1268746,-1.5805036,-0.76973456,-0.7912626,-0.9041194,-0.6134966,-0.88412136,-0.63158315,-0.8676906,-0.9963588,-0.84037334,-0.9646453,-1.4246371,-1.4377948,-1.4509791,-2.0685296,-2.308498,-2.4840212,-2.3976445,-1.6091722,-1.2816664,-2.0238001,-2.3334706,-1.8866762,-1.2878183,-1.0950391,-0.9135107,-1.3671794,-1.5024191,-1.7554927,-1.4243922,-1.3990408,-0.94651645,-0.98589677,-1.0061775,0.06514409,0.026229497,-0.10386139,-0.17336695,-0.4689025,-0.6839925,-0.66458577,-1.0867057,-0.90800184,-0.93144625,-0.9719135,-1.4841217,-1.6988293,-1.7010854,-2.264237,-1.8712889,-1.6393158,-1.1790524
+-1.1412617,-1.8870887,-1.5462574,-2.0604632,-1.8940676,-1.7194203,-2.1346757,-2.3253088,-2.1188798,-1.7406884,-2.3462992,-2.4239562,-2.3567395,-2.3245807,-2.237381,-2.2183447,-2.198482,-2.345644,-2.3622286,-1.9762677,-2.060566,-2.2260385,-2.3068788,-2.029497,-2.1287403,-2.3117685,-2.2419267,-2.4941664,-2.638289,-2.5193892,-2.3898883,-2.7428765,-2.244955,-2.5416224,-2.558908,-2.3942523,-2.4989424,-2.542993,-2.5212183,-2.772088,-2.7550516,-2.7277775,-2.5491238,-2.6180458,-2.639054,-2.3107238,-2.5605636,-2.6106994,-2.6740036,-2.646943,-2.4191532,-2.5526233,-2.6230116,-2.8795044,-2.7691257,-2.6888385,-2.5806727,-2.537624,-2.526156,-2.0157733,-2.6353455,-2.6164007,-2.5199304,-2.44277,-2.5679865,-2.172698,-2.5839782,-2.4867916,-2.3720913,-2.5547771,-2.6142833,-2.7169027,-2.7007353,-2.7442896,-2.7213404,-2.7126427,-2.4693406,-2.7688546,-2.8686528,-2.8209596,-2.8360507,-2.8102775,-2.8131185,-2.5842957,-2.5777543,-2.9800613,-3.077219,-2.6850495,-2.6594172,-2.2106833,-3.0001798,-2.617726,-2.892693,-2.9847393,-3.086759,-1.6149858,-2.8465033,-2.8690808,-2.4578996,-2.5766587,-2.3091707,-2.9914277,-3.0911818,-2.2457848,-2.506949,-2.9165053,-3.0316808,-3.093122,-2.8627076,-2.6663582,-3.0636177,-3.177658,-3.1329937,-3.0216188,-3.1030593,-1.3694304,-2.4644194,-3.06807,-2.538345,-2.3971968,-2.1922495,-2.4279978,-2.6899357,-2.7026672,-2.9165845,-2.9937756,-2.9953518,-2.448494,-2.975132,-3.078637,-3.1958213,-2.9849362,-3.0068944,-2.3919241,-2.8830397,-2.88911,-2.7216668,-2.9167984,-2.855308,-2.7359471,-2.619294,-3.1267543,-1.9448415,-2.9840183,-3.2013345,-3.2508364,-3.2364933,-3.2257597,-3.3106437,-3.3957772,-3.4299076,-3.4586015,-3.4281144,-2.5916648,-3.2961457,-3.4057696,-3.5574617,-3.6312327,-3.5429292,-3.5940943,-3.3988461,-3.3581605,-2.7780156,-3.367535,-3.6114273,-3.6978922,-3.6290894,-3.6546931,-3.6087332,-3.566299,-3.5094316,-1.6591599,-3.2373695,-3.3700433,-3.365323,-3.4808593,-3.3628178,-3.6177113,-3.6446261,-3.344831,-3.4724054,-2.6903834,-2.1786728,-3.067697,-3.0828047,-3.3871717,-3.1918762,-3.3067405,-3.3938224,-3.355814,-3.17905,-2.9682288,-3.3957932,-3.4451675,-3.4873548,-3.4233718,-3.5091395,-3.4649377,-3.402234,-3.349791,-3.3872976,-3.4398599,-3.4591165,-3.364326,-2.3833547,-3.192811,-3.340139,-3.4438322,-3.4320383,-2.8112898,-2.9449587,-3.2267854,-2.7494578,-3.3997037,-3.2798834,-3.2748468,-3.2413392,-3.515256,-3.4219031,-3.6192496,-3.3714137,-3.515209,-2.6298423,-3.3015609,-3.3351438,-3.1361763,-3.017693,-3.2875702,-3.3951044,-3.4255128,-3.5343933,-3.561205,-3.5461826,-2.7513647,-3.0115476,-3.060936,-2.5133214,-3.1868215,-3.2718296,-3.4160671,-3.3091283,-3.2421443,-1.7977269,-2.6073089,-2.4839945,-2.720283,-2.802434,-2.8876195,-2.5507598,-2.0951052,-2.5583405,-2.512009,-2.120066,-2.162016,-1.9040123,-1.67109,-2.0015817,-2.2200332,-1.4386681,-1.2746803,-1.0884123,-2.0878193,-1.286959,-1.258344,-1.314969,-1.936566,-1.9269539,-2.0901499,-2.1515012,-2.432622,-2.6179066,-2.815054,-2.0733395,-2.397133,-2.2044358,-2.6892955,-2.3425562,-2.5582767,-2.5953672,-1.8179401,-1.484983,-1.3345824,-1.229232,-1.1799928,-1.3356931,-2.0089836,-2.2134182,-2.827506,-2.1600385,-2.0708537,-1.9776276,-2.3844924,-2.44213,-2.8104513,-2.5060768,-2.7788796,-2.8413491,-2.5343533,-2.5711129,-2.5765958,-2.6684098,-2.744125,-2.4216714,-2.5272398,-2.5580997,-2.5211365,-2.8250308,-2.8998907,-2.2367692,-1.8495,-2.3778934,-2.669714,-2.7884417,-3.0671248,-2.1404355,-1.4496559,-2.290285,-2.4824681,-2.5925126,-2.1014261,-2.5015507,-2.4938135,-2.0832634,-2.5619724,-3.0338573,-2.9909186,-2.6037316,-2.9115615,-2.9243596,-2.864698,-2.6109946,-2.8984122,-2.4510267,-2.7239213,-2.716565,-2.976376,-2.3264933,-1.9144036,-1.6211077,-1.9037855,-2.7501078,-2.692401,-2.7051144,-2.5416942,-1.7444655,-1.6969177,-1.6969821,-0.70198274,-0.6143778,-0.8513047,-1.119718,-1.7440172,-1.9700285,-1.7200876,-2.61137,-2.1396527,-1.6777416,-2.320488,-2.843214,-2.6840236,-2.8224308,-2.570778,-3.016699,-2.7872324,-1.6660784
+-0.61740696,-1.3428262,-1.3567556,-1.4855152,-1.3141148,-1.2012955,-1.5711304,-1.8775611,-1.5545458,-1.7339945,-1.7412565,-1.8408908,-1.8388311,-1.5691402,-1.5267152,-1.6084445,-1.6000036,-1.6720843,-1.7735769,-1.5746475,-1.422593,-1.6948274,-1.7851743,-2.019452,-1.7736603,-2.0366127,-1.7291732,-1.8486555,-2.1616778,-2.042376,-1.6379361,-1.7540743,-1.5556992,-1.439784,-1.68135,-1.360332,-1.5833293,-1.7813593,-1.9259764,-2.0235543,-1.7381752,-1.847598,-1.8253814,-1.7981793,-1.9549,-2.0043583,-1.6194302,-2.1190305,-2.0528216,-1.9677807,-1.1557261,-1.7676405,-1.6969332,-1.8152255,-1.9604288,-2.0420642,-2.0617204,-2.181658,-1.7751077,-1.4751226,-1.8327913,-1.7826569,-1.7813107,-1.8666753,-1.9951223,-1.804367,-1.937687,-2.170977,-2.3691816,-2.365574,-2.4413967,-2.442145,-2.5901937,-2.532715,-2.5587134,-2.4270146,-0.95298713,-1.6508197,-1.8591369,-2.1885664,-2.3322103,-1.7734398,-1.8613445,-1.909763,-1.4706714,-1.7320555,-1.9694041,-2.0729704,-0.6478178,-1.372907,-1.6706265,-1.6244929,-1.6226307,-1.8206412,-1.8242505,-1.7731773,-1.9856325,-2.1288314,-2.1130662,-1.9882597,-2.254772,-2.2920327,-2.205099,-1.5985843,-1.9351388,-2.2628715,-2.3536034,-2.3023605,-1.559499,-1.9936665,-1.783923,-2.1142375,-2.2632742,-2.4238973,-2.3935742,-2.4032767,-1.6590517,-1.9498943,-0.8868764,-1.190509,-1.4268032,-1.7184153,-1.1915799,-1.510248,-1.5268425,-1.6735027,-1.9063901,-1.5597285,-1.9249581,-2.1458352,-2.1339197,-2.1840744,-2.323777,-2.344893,-2.333489,-2.4041147,-2.3991678,-1.373381,-1.9121586,-1.1263244,-1.7163361,-1.931578,-0.8619761,-1.5957165,-1.8306123,-2.0125444,-2.0270488,-2.216695,-2.3481185,-2.2182193,-2.3069499,-2.3677254,-2.3071737,-1.3700432,-1.9008572,-1.7579309,-2.159697,-2.30125,-2.3893685,-2.4128292,-2.3792224,-2.4726198,-2.3737445,-2.5043612,-2.4217086,-2.312843,-2.4153712,-2.5084991,-2.4329891,-2.3991973,-2.386856,-0.637342,-1.7552049,-1.7975012,-1.8350412,-1.9325,-1.9823693,-2.0808918,-2.2450726,-0.98095685,-1.6501665,-0.9202334,-1.2352135,-1.7628025,-1.8681092,-1.9095745,-1.8454682,-1.852569,-1.8944178,-1.8778528,-1.3296779,-1.1391058,-1.8140697,-1.7351371,-1.7818528,-1.9333211,-2.0406435,-1.955323,-1.994352,-2.1124554,-2.156812,-2.256184,-2.1159244,-2.0934653,-1.7142906,-2.1930492,-2.2023175,-2.3003142,-2.2707205,-2.0513637,-2.3387346,-2.3488336,-2.5011792,-2.4129949,-2.340405,-2.4246302,-2.503879,-2.3148575,-2.4196765,-2.4734511,-2.300236,-2.3001356,-2.0386493,-2.5065207,-2.436325,-2.4119923,-2.3095152,-2.2841668,-2.4100714,-2.5978599,-2.481855,-2.4733825,-2.4472532,-2.3935738,-2.5453987,-2.4076626,-2.0767484,-2.4082026,-2.5045059,-2.5748181,-2.5433574,-2.3374724,-2.3482723,-2.503488,-2.0749145,-2.5629833,-2.4943895,-2.5397315,-1.7984099,-1.5415524,-1.4385086,-1.8329352,-1.5324703,-1.4231144,-1.2093909,-1.5937064,-1.9365839,-1.936834,-1.5072519,-0.8998962,-1.2789587,-1.929448,-1.694084,-1.096253,-1.3439277,-1.8131793,-1.8484164,-1.5689327,-1.894179,-2.0158496,-2.0852933,-2.1901536,-1.867138,-2.06612,-1.712583,-2.0378745,-1.5059928,-1.6355954,-1.903215,-1.7750996,-1.74042,-0.4829766,-0.30996725,-0.2815574,-0.6373474,-1.6921513,-2.0811243,-2.3950286,-2.085378,-1.5675305,-1.8025154,-2.1211495,-2.274108,-2.168748,-2.1904655,-2.0900793,-2.042042,-1.1724212,-1.8051149,-1.8745834,-2.0347025,-2.1831136,-2.01645,-2.026547,-2.0543206,-1.8306161,-2.1660619,-2.1576564,-2.01516,-1.3576349,-1.6431504,-1.8737906,-2.0660605,-2.2589524,-1.926328,-1.6530842,-1.9868797,-2.1877513,-2.2920446,-1.9685005,-1.7003553,-2.0334997,-1.6599392,-1.7404003,-2.1848104,-2.2341707,-1.8302383,-2.0956855,-2.1099458,-2.076601,-1.9456923,-2.2397676,-2.030793,-2.0136817,-1.862141,-2.1542733,-2.1258986,-1.5760659,-1.0089843,-1.4598206,-2.0421395,-2.2966342,-2.1117694,-2.1523004,-1.6717387,-1.2561961,-1.2507681,-0.5974321,-1.265617,-1.2604505,-1.3382682,-1.5715088,-1.1095983,-1.4314564,-1.8412819,-1.7817687,-1.2465042,-1.4735019,-1.8497994,-1.7319223,-1.6912936,-1.8820243,-2.0062792,-1.6584467,-1.262307
+-1.6133575,-1.5071763,-0.7969662,-0.70195216,-1.0364909,-1.1197634,-1.6088997,-1.4717337,-1.0161327,-0.8624851,-1.2186738,-1.4073077,-1.0323449,-0.8924584,-0.8754174,-1.275256,-1.7084001,-2.1004784,-1.7825955,-1.4460268,-1.4159416,-1.8494443,-1.913661,-1.4857007,-1.5506271,-1.6850898,-1.524862,-1.4455703,-1.3669008,-1.5038084,-1.9545095,-2.2744071,-2.1969297,-2.2372527,-2.128408,-1.9200463,-2.0337372,-2.168393,-2.0584266,-1.814674,-1.8257484,-1.7568275,-2.1799212,-2.2130408,-2.174596,-1.952835,-1.8822292,-1.9805297,-2.1134691,-1.923213,-1.975782,-2.035377,-1.9597694,-1.884657,-2.000978,-1.9945158,-1.9457719,-2.0803132,-1.8590473,-2.1916924,-2.2606273,-2.1925192,-2.154557,-2.1946476,-2.1898317,-1.3818451,-2.348824,-2.3107898,-2.2931468,-2.2042577,-2.166813,-2.1896567,-2.142684,-2.1393027,-2.0102806,-2.0879102,-2.0177093,-1.9608873,-1.9528164,-1.9468626,-1.9240719,-1.8423728,-2.0134978,-2.0499573,-2.0631628,-2.0505042,-2.0410786,-1.8589541,-2.2104406,-2.1532876,-2.364038,-2.2722297,-2.3174038,-2.29355,-2.2050614,-2.1710157,-2.201421,-2.2133646,-2.1747198,-1.4014736,-2.1559296,-2.2940397,-2.2533882,-2.2606688,-2.3013406,-2.3868284,-2.3375628,-2.2472138,-1.9688653,-2.2594526,-2.2692814,-2.2279139,-2.2445345,-1.9441193,-2.4309354,-2.425538,-2.327626,-2.4138725,-2.4664853,-2.4150257,-2.3700893,-2.2907963,-2.2751698,-2.240936,-2.2221954,-2.2431207,-2.2821789,-1.9456655,-2.3953247,-2.400498,-2.388117,-2.4334023,-2.474915,-1.9659904,-2.2470112,-2.2841897,-2.5379076,-2.110923,-2.4006238,-2.563003,-2.5956564,-2.5345879,-1.9644021,-2.4742124,-2.4160464,-2.457356,-2.499835,-2.5750957,-2.485637,-2.3292634,-2.500733,-2.4522696,-1.7009442,-2.5346036,-2.494107,-2.4499886,-2.4733963,-2.4751115,-2.447545,-2.4645033,-1.9664067,-2.4079008,-2.446198,-2.1210852,-2.366918,-2.3939724,-2.2165704,-2.306614,-2.3724523,-2.4113178,-2.1918721,-2.407909,-2.4480062,-2.4734712,-2.456686,-1.7479116,-2.5765176,-2.4046602,-2.4009533,-2.420126,-2.4303317,-2.3828897,-2.375923,-2.355616,-2.428994,-2.383389,-2.407455,-2.4326086,-2.4136462,-2.4081998,-1.6874937,-2.5055432,-2.3591094,-2.360911,-2.4074798,-2.3826063,-2.349938,-2.2981539,-2.3888237,-2.5071821,-2.2500255,-2.3756273,-1.9874991,-1.624758,-1.940135,-1.8309227,-1.9197276,-2.0777025,-2.0012796,-1.5764254,-2.251709,-2.296394,-2.3174658,-2.1911922,-1.9460942,-2.2556136,-2.0311363,-2.3711808,-2.110618,-2.343813,-1.8653647,-2.2934554,-2.3693457,-2.077272,-2.0969222,-1.6300287,-1.9624785,-2.132244,-2.195702,-2.2063634,-2.3882394,-2.2504363,-2.3172524,-1.9402238,-1.3881671,-1.2695647,-1.2563018,-1.5240632,-2.126237,-2.1835132,-1.9988014,-1.7932578,-2.0262566,-2.296103,-1.9242147,-2.1050713,-1.8005472,-1.3824769,-0.94834596,-1.6433865,-1.8086904,-1.8342992,-1.2238733,-0.9779751,-0.86284393,-1.1100396,-1.2127191,-1.106902,-0.68973184,-0.5435057,-0.74656826,-0.8420653,-0.49394092,-0.60586286,-0.9653842,-1.1274475,-0.9292951,-1.4696697,-0.9020292,-0.78219295,-1.3004577,-0.83806235,-0.90157384,-1.1499127,-0.8383613,-1.1028506,-0.853651,-1.1664249,-1.0855716,-0.63881224,-0.8377272,-0.76563895,-0.7563471,-0.70563555,-0.8180186,-1.183021,-1.4903421,-0.72608864,-0.7296029,-0.74893105,-0.8442846,-0.831325,-1.1552399,-0.8973893,-0.7708617,-1.1999933,-1.5886072,-1.1704675,-1.0095083,-1.0752672,-1.3774157,-1.2902089,-1.1158711,-1.1912634,-0.8748569,-0.81825453,-0.97950524,-0.7785416,-0.8831067,-0.8034068,-0.9886598,-0.8476418,-0.9551978,-0.8723378,-0.7123354,-0.75302136,-0.8675306,-0.59461385,-0.8313147,-0.8036416,-1.1414738,-0.87229514,-0.71018773,-0.63608235,-1.2866796,-0.63571984,-0.6176147,-1.2821437,-1.683779,-1.9416081,-1.4259422,-0.9673106,-1.0796729,-1.1919514,-1.6506076,-1.0712512,-0.49910524,-0.5886655,-0.6021119,-0.91220874,-1.4022478,-1.3359784,-0.9361692,-0.8081775,-0.65125346,-0.7108577,-0.7187807,-0.6776063,-0.76724285,-0.69817084,-0.6573139,-0.5427956,-0.47051278,-0.49429145,-0.8826068,-0.6813566,-0.6666424,-0.669969,-0.81264687,-0.5711648,-1.4376369,-1.65936,-1.0091347,-0.8097134,-1.182667
+-0.34445024,-1.0068225,-0.86132294,-0.65777713,-0.4824709,-0.7827641,-1.5938944,-1.725936,-1.3732457,-1.2712266,-1.7794043,-1.9279515,-1.5348874,-1.3993622,-1.2508687,-1.2648549,-1.2514277,-1.2872065,-1.3711624,-1.3527725,-1.2576534,-1.2083054,-1.3079296,-1.3208288,-1.3006997,-1.3094035,-1.6611987,-1.4705685,-1.3836821,-1.6617515,-1.7207396,-1.9610919,-1.7529546,-1.8931566,-1.7990212,-1.7505583,-1.8052672,-1.8554767,-1.8184943,-1.7132457,-1.5675915,-1.3692571,-1.6156336,-1.9439427,-1.7771415,-1.6653851,-1.5311866,-1.4608703,-1.4266099,-1.4062825,-1.2993921,-1.4111773,-1.305548,-1.4923583,-1.5135087,-1.4301517,-1.3788657,-1.4856464,-1.4058359,-1.6093129,-1.7589059,-1.6426467,-1.5663515,-1.7328397,-1.7075344,-1.3575994,-1.7728828,-1.8144563,-1.8015372,-1.7881101,-1.6539053,-1.5376724,-1.5975169,-1.4887372,-1.4120991,-1.4012402,-1.4115444,-1.4869165,-1.5276257,-1.612489,-1.6813083,-1.8258052,-1.7138261,-1.7383871,-1.6327213,-1.6817503,-1.866634,-1.4391135,-1.8986923,-1.6321086,-1.756128,-1.5489987,-1.8756468,-1.7940327,-1.8603419,-1.9245186,-1.9380862,-1.8837523,-1.5306115,-1.517579,-1.906597,-1.8008021,-1.8804861,-2.006614,-2.0733132,-2.1257973,-2.1715086,-1.887295,-1.8704562,-1.7948695,-1.8516983,-2.051256,-2.2491174,-2.0939064,-2.0477412,-1.3486822,-1.9353123,-1.9701785,-2.082634,-1.8732301,-1.3345959,-1.2369846,-1.839852,-1.842568,-1.7515742,-1.9065228,-2.0355318,-2.138599,-2.0414252,-2.0330524,-2.143783,-1.2419676,-1.8477052,-1.7763472,-1.8077537,-1.6611947,-1.7693452,-1.8398098,-1.9709488,-1.8398632,-1.9626855,-2.0638332,-1.6700195,-1.7692889,-1.8827118,-2.1127234,-2.2597852,-2.248663,-2.1949048,-2.3440104,-2.4136596,-2.3437293,-2.3367605,-2.0486188,-2.0630417,-2.2095776,-2.315582,-2.3653176,-2.3346663,-2.2519212,-2.3532948,-2.0924726,-1.9743236,-2.1334057,-2.1694345,-2.4043763,-2.5043385,-2.2642584,-2.493609,-2.6254792,-2.5972443,-1.3145449,-1.9734029,-2.1652627,-2.2877467,-2.3890777,-2.3293,-2.2289822,-2.4735394,-1.7510701,-2.1523993,-2.235251,-2.2713466,-2.246311,-2.228743,-2.1933818,-2.2710762,-2.3432589,-2.4323325,-2.4844785,-2.5188236,-2.3524795,-2.2130845,-2.3383036,-2.638637,-2.6490636,-2.3264847,-2.429371,-2.6287901,-2.5690117,-2.5058255,-2.503065,-2.3852592,-1.9878577,-1.3099593,-1.9022323,-1.8086615,-2.085886,-2.0615807,-0.8516529,-1.8454264,-2.048287,-1.9659616,-2.105529,-1.9715027,-2.2471538,-2.1567793,-2.0127964,-2.0177255,-2.035902,-1.8200191,-2.0847988,-2.127325,-2.086743,-2.0963225,-1.7473031,-2.0286953,-1.9975764,-0.97562,-1.9885377,-2.0518332,-2.0662448,-2.010048,-1.4895989,-1.2526759,-1.3210906,-1.212528,-1.7181184,-2.160054,-2.1722136,-1.8959703,-1.9686655,-1.518233,-1.9279621,-1.8525285,-1.804229,-1.7338113,-1.4629246,-1.4411396,-1.6382966,-1.6536723,-1.8408098,-1.3785638,-1.4076937,-1.2723105,-0.9529309,-1.2529495,-1.280633,-1.0640739,-0.9724538,-0.660388,-1.6516453,-1.0551146,-1.0085617,-1.2093761,-1.5503572,-1.5453073,-1.6762449,-1.6952716,-1.65546,-1.9773978,-1.8634762,-1.253881,-1.576579,-1.5261762,-1.8040648,-1.705453,-1.5659597,-1.9285606,-1.192943,-1.327834,-1.1563491,-1.3319877,-1.1677405,-1.148786,-1.5748476,-1.7691883,-1.9406451,-1.1914248,-1.2339777,-1.225834,-1.5272421,-1.7318058,-1.8486919,-1.7571688,-2.2596555,-2.2324169,-1.9382799,-1.0342137,-1.2904996,-1.7989204,-1.5338027,-1.3557,-1.4323097,-1.43,-0.91812015,-1.6427748,-1.3958973,-1.0777358,-1.0933448,-1.2466997,-1.4084448,-1.709958,-1.76945,-0.6100833,-0.8332465,-1.1788764,-0.8427928,-1.2808126,-1.0825478,-1.3336611,-1.4210497,-1.4787403,-1.4973005,-1.9695691,-1.9459771,-1.7994535,-1.944322,-1.8336359,-1.9212155,-2.049437,-1.4853286,-1.5167135,-2.0524647,-1.9854325,-1.8605657,-1.2436712,-1.2278627,-1.0112302,-1.463378,-2.315177,-2.228291,-1.9626671,-1.6235592,-1.3166763,-1.3225969,-1.2554644,-0.2474556,-0.57394594,-0.8219164,-1.0258253,-1.0674059,-1.3062004,-1.300011,-1.5876306,-1.5452895,-1.4721445,-1.6772236,-1.9745222,-1.9556135,-1.8155619,-1.8861817,-1.941579,-1.693794,-1.2986945
+-0.8650677,-1.5434222,-1.1178128,-0.49491814,-0.80975884,-0.9300229,-1.2177643,-1.3455659,-1.3169807,-1.0673223,-1.3224398,-1.5652092,-1.4423096,-1.0964354,-1.0187064,-0.98463935,-1.0326741,-1.1716942,-1.1741927,-1.1004262,-0.9793791,-1.1793374,-1.3231522,-1.0182153,-1.0533482,-0.92461735,-1.2544388,-1.3628441,-1.2527709,-1.3138732,-1.3070701,-1.5724541,-1.6120118,-1.5856781,-1.6161307,-1.5400683,-1.3386552,-1.5408999,-1.5257586,-1.3301152,-1.4050714,-1.3131965,-1.134612,-1.5990071,-1.3584856,-1.566279,-1.5151433,-1.384241,-1.3092761,-1.3861997,-1.3568362,-1.2617298,-1.2400762,-1.0142984,-1.563793,-1.4727732,-1.3245007,-1.3448348,-1.2946833,-0.992022,-1.3237011,-1.2401637,-1.2351307,-1.2196368,-1.2547785,-0.76096094,-1.6820138,-1.6411453,-1.5631721,-1.6157538,-1.7108878,-1.1041888,-1.5426503,-1.6676747,-1.4292158,-1.422212,-1.299787,-1.2488085,-1.2228943,-1.2098935,-1.2218608,-0.78389627,-1.0210634,-1.281491,-1.25901,-1.2309648,-1.2197169,-1.2248379,-0.92751443,-1.2955793,-1.5847374,-1.2156297,-1.407494,-1.5736357,-1.529167,-1.4594909,-1.4583634,-1.1397206,-1.1700231,-1.2413286,-1.5843056,-1.6173358,-1.5779674,-1.4449276,-1.1270014,-1.5770956,-1.5465881,-1.165876,-1.3586277,-1.6383414,-1.6154782,-1.4807124,-1.4314135,-0.97335595,-1.601637,-1.4467322,-1.5252659,-1.4211875,-0.9472445,-1.4639641,-1.4268414,-0.8946106,-1.5179691,-1.5396492,-1.5508007,-1.5157773,-1.4561287,-1.1833194,-1.5548416,-1.4663376,-1.3872584,-0.8894852,-1.5558218,-1.5359901,-1.1256437,-1.3779658,-1.6861376,-1.4397947,-1.5068525,-1.5646708,-1.5254704,-1.4010991,-1.3173127,-1.2538499,-1.6794368,-1.5820724,-1.5164194,-1.3072994,-1.5340908,-1.3601216,-1.180998,-1.4599776,-1.4467486,-1.4756787,-1.4965371,-1.357186,-1.3012948,-1.3045706,-1.3728496,-1.3536764,-1.4023603,-1.0313164,-1.4042264,-0.8949912,-1.5394832,-1.445911,-1.2543403,-1.5289553,-1.361605,-1.3905158,-0.9760116,-1.0680561,-1.8065014,-1.7467558,-1.6967461,-1.1363738,-1.4421295,-1.59736,-1.4238614,-1.0650417,-1.5673167,-1.5054189,-1.5768461,-1.3474799,-1.5366107,-1.4867119,-1.5661482,-1.5493115,-1.5983326,-1.6038524,-1.5934916,-1.5219444,-1.7404436,-1.4336284,-1.533651,-1.5532991,-1.758317,-1.3709016,-1.6496521,-1.7614778,-1.0520798,-1.7954144,-1.3448557,-1.4841214,-1.7169302,-1.4784681,-1.7205113,-1.6987376,-1.4598988,-0.856365,-1.1105597,-1.5401143,-1.8591295,-1.7509412,-1.2049446,-1.611358,-1.5084373,-1.8970957,-1.5393208,-1.4893731,-1.2320651,-1.4751567,-1.7597227,-1.3482157,-1.7108569,-1.176052,-1.3947632,-1.3290551,-0.91561574,-1.7153826,-1.8890647,-1.5808774,-1.4143265,-1.0794828,-1.1414661,-1.1216463,-1.0407227,-1.0803814,-1.3348811,-1.3717061,-1.2954667,-1.1596326,-0.5639419,-1.619838,-1.6302251,-1.6306134,-1.5219175,-1.1046387,-0.5365679,-1.0414202,-0.9883836,-1.1316298,-1.0649328,-1.1363034,-1.0501249,-0.59805775,-0.86786133,-1.0189339,-0.9828066,-0.8097418,-0.7549004,-1.0224142,-1.0237062,-1.0207024,-1.0295688,-1.0247937,-1.0430657,-1.2302437,-1.0285031,-1.0078431,-1.2469207,-1.1543013,-0.8022911,-0.90321904,-0.89198333,-1.0230612,-0.8146375,-0.78878564,-0.96538156,-0.8124258,-0.81427693,-0.8063962,-0.86988294,-0.8088489,-0.75063723,-0.6653684,-1.2110823,-1.0659708,-0.8333351,-0.7694868,-0.7182269,-0.7472982,-0.6771706,-0.8242509,-0.7580173,-1.0227588,-1.2068541,-1.0386434,-0.69683105,-1.0378109,-1.1053885,-1.1740856,-1.1999758,-1.1090014,-0.9668204,-0.8445316,-0.8528685,-0.8484319,-0.8406171,-0.82434016,-0.7468003,-0.73817533,-0.77246094,-0.742071,-0.7540832,-0.9340311,-0.8680956,-0.69108766,-0.79632753,-0.867532,-0.7091585,-0.81955034,-0.82499737,-0.79734117,-0.8427424,-0.8281464,-0.7754242,-0.93959016,-1.1338726,-1.4438651,-1.7484986,-1.5988674,-1.5407246,-1.5227162,-1.6966941,-1.5258671,-1.203406,-1.3204526,-1.2764632,-1.3138092,-1.5769968,-1.6551775,-1.5819546,-1.1154107,-1.3325038,-1.2618831,-1.1659601,-0.8537525,-0.9504604,-0.83333,-0.7879481,-0.8913069,-0.81157786,-0.8618674,-1.0778826,-0.89346355,-0.9312864,-1.1531047,-1.171972,-0.9353977,-1.1279799,-1.3268315,-1.2006174,-0.9398407,-1.1053574
+-1.186465,-1.3044413,-1.4002964,-1.1364814,-0.9117266,-1.0375776,-1.14613,-1.3693897,-1.2572474,-1.2597369,-1.4328917,-1.3161147,-1.7586168,-1.5073746,-1.5063008,-1.5147003,-1.5663315,-1.7288691,-1.7445208,-1.5419507,-1.5585285,-1.5165042,-1.4948436,-1.6439236,-1.7844726,-1.5605196,-1.7668393,-1.6301614,-1.5835465,-1.6484174,-1.8641769,-1.6718298,-1.8475198,-2.0984135,-2.2271402,-2.148827,-2.1721911,-2.016766,-1.8151531,-1.8225378,-1.8872923,-1.8824481,-1.6078886,-1.7979077,-1.6076051,-1.7011491,-1.7690715,-1.7812153,-1.815249,-1.7669882,-1.7449145,-1.7141639,-1.770693,-1.3382198,-1.7379833,-1.9057655,-1.8714856,-1.9224437,-1.9151093,-0.6692355,-1.7422656,-2.0080826,-1.9153429,-2.038493,-2.051002,-0.94988865,-1.3148185,-1.8946108,-1.9011542,-1.9930729,-2.0942771,-1.1954435,-1.8044823,-1.9579859,-2.1056643,-2.1875901,-2.1780548,-2.0533597,-2.0922146,-1.9974798,-1.9891521,-2.0203574,-2.090135,-2.1020007,-2.1172254,-2.12707,-2.1618118,-2.0977924,-1.6989905,-1.824157,-1.9825257,-1.701512,-1.4589773,-2.1144748,-2.1404967,-1.3207957,-1.8966929,-1.2543758,-1.7605968,-1.9807893,-1.9088435,-2.0388238,-2.2659817,-2.2609975,-1.4104961,-1.8612195,-2.1914227,-2.2579966,-1.7797123,-2.0165164,-2.289806,-2.356637,-2.2644863,-1.8815764,-2.0653453,-2.2255497,-2.1534462,-2.228015,-2.298109,-1.8963736,-1.8905295,-1.5282581,-1.4190236,-1.8775346,-1.9781817,-2.1777864,-2.2402487,-2.2083862,-2.2991827,-2.3569608,-2.332646,-1.1656097,-1.7250677,-1.9779218,-1.8333328,-1.5247349,-1.8922979,-1.8771752,-2.0828404,-2.270183,-2.3055313,-2.3126845,-2.3553135,-0.8272003,-2.068177,-2.0635014,-2.243576,-2.307979,-2.4147286,-2.2995977,-2.3829439,-2.4452448,-2.4299328,-1.9397184,-2.0615704,-2.2487984,-2.3305295,-2.4104025,-2.3446732,-2.0314083,-2.2045517,-2.0224237,-2.0796309,-1.9287399,-2.1673226,-2.2401204,-2.2579865,-2.3608181,-2.3505368,-2.3312511,-2.2787182,-1.505678,-1.9266125,-2.3069797,-2.4123461,-2.453171,-1.9018282,-2.0590796,-2.2542067,-1.2856703,-1.954135,-2.1160402,-2.218112,-2.0877907,-2.13317,-2.326908,-2.2974737,-2.3811207,-2.4659588,-2.4429317,-2.3476644,-1.1198492,-2.220926,-2.1827664,-2.264938,-2.29498,-2.2903132,-2.159812,-2.2206678,-2.3137643,-2.3090243,-2.403391,-2.4187417,-1.9847251,-2.0139668,-1.934427,-2.1269643,-2.1942532,-2.0521975,-1.3095175,-1.8495837,-2.0199785,-1.9130582,-2.2365851,-2.0722876,-2.1981707,-2.3477373,-2.4198813,-2.1222975,-2.310355,-2.0422552,-2.1463876,-2.3054416,-2.204733,-2.198896,-1.9764863,-2.020595,-2.1181989,-1.0081285,-2.161725,-2.164112,-2.1698556,-2.2272918,-1.4031628,-1.768325,-1.8270684,-1.9296917,-2.2979913,-2.429666,-2.3695133,-2.1158345,-2.1228743,-0.9164353,-2.0776455,-1.7963871,-1.799122,-1.9164164,-1.8205477,-2.0190206,-1.9893128,-1.8584472,-2.0754712,-1.7772146,-1.7527416,-1.8332316,-1.3403374,-1.8864205,-1.9744042,-1.752357,-1.790642,-1.1245893,-1.7005647,-1.4799589,-1.6209118,-1.5799607,-1.5738409,-1.6901565,-1.5940541,-1.6674923,-1.868345,-1.7217449,-1.4940149,-1.59195,-1.6361412,-1.6070408,-1.9021891,-1.9180202,-1.4662738,-1.8867942,-1.5062064,-1.7384487,-1.3567042,-1.531294,-1.468508,-1.4408427,-1.3738545,-1.6233166,-1.4050969,-1.5722704,-1.8516631,-1.8055927,-1.8873708,-1.6384753,-1.6842768,-1.8917458,-1.9561354,-2.0165403,-1.8854233,-0.94385034,-1.6700882,-1.8374754,-1.5753219,-1.4996939,-1.621368,-1.7611481,-1.6489135,-1.8159009,-1.7926713,-1.6173772,-1.4647359,-1.60363,-1.5212301,-1.9350219,-1.8071619,-0.4883295,-0.8225537,-1.1249225,-1.1629957,-1.384806,-1.3081114,-1.4789227,-1.4741181,-1.2815056,-1.227075,-1.4630407,-1.4291997,-1.5755442,-1.5266501,-1.5812784,-1.4825388,-1.5199398,-1.1889867,-1.2873455,-1.2902532,-1.626845,-1.728216,-1.4406785,-1.5989164,-1.8600516,-1.8550321,-1.8885216,-1.6222469,-1.6069077,-1.4669083,-1.3705429,-1.5373431,-1.5984569,-0.24165848,-0.90428466,-0.99624914,-0.94494903,-0.97805434,-1.0123309,-1.0063888,-1.2645967,-1.1455811,-1.1490213,-1.3644114,-1.4844304,-1.7666812,-1.5049468,-1.4941257,-1.3281915,-1.3261163,-1.3593711
+-0.7505699,-1.1553749,-1.5493636,-1.436927,-1.2264237,-1.2577736,-1.2385284,-1.379496,-1.3548288,-1.2878436,-1.2028073,-1.4123937,-1.2246052,-1.0029867,-0.9142899,-1.0994133,-1.4097627,-1.2717868,-1.33299,-1.2150193,-1.3383225,-1.7122515,-1.7362167,-1.5378437,-1.5650452,-1.564036,-1.6639612,-1.4233847,-1.1431813,-1.0679773,-1.4000623,-1.8264316,-1.933391,-1.7605983,-1.5984374,-1.5677093,-1.5228397,-1.7319716,-1.6530558,-1.6189116,-1.617123,-1.4724439,-1.2394392,-1.4660076,-1.4783832,-1.3587195,-1.4924062,-1.5644363,-1.5436445,-1.6002623,-1.4046053,-1.5917534,-1.5634742,-1.468773,-1.2137175,-1.752593,-1.5139095,-1.6119133,-1.3892668,-1.4060555,-1.587937,-1.7808439,-1.5320913,-1.4047035,-1.6049125,-1.5975142,-1.301392,-1.7011604,-1.7366529,-1.6744808,-1.6969526,-1.6948693,-1.4767958,-1.7825538,-1.7108473,-1.6600107,-1.7231025,-1.6485671,-1.5905613,-1.2913922,-1.4564129,-1.4095777,-1.5611125,-1.4922967,-1.6605387,-1.4363679,-1.4748045,-1.1409894,-1.4524456,-1.2549249,-1.4926203,-1.6269978,-1.1416131,-1.5594488,-1.5165999,-1.3615662,-1.5564972,-1.4926852,-1.6492971,-1.7464094,-1.6360129,-1.6424489,-1.6892389,-1.5321952,-1.1867768,-1.3790754,-1.6994938,-1.6572045,-1.319228,-1.5360831,-1.6346294,-1.3312813,-1.0421847,-1.5214721,-1.6507292,-1.565267,-1.1864735,-1.468321,-1.4257113,-1.530064,-1.5721546,-1.6250007,-1.6130351,-1.5847255,-1.5484937,-1.2007852,-1.4323738,-0.98266155,-1.4177796,-1.563819,-1.6989342,-1.5984906,-1.4014065,-1.3825878,-1.5879208,-1.3412155,-1.5903436,-1.5803205,-1.2464355,-1.3944148,-1.6580327,-1.6056694,-1.5490538,-1.1888732,-1.5787209,-1.4748504,-1.3659823,-1.5114534,-1.6094018,-1.4157068,-1.4243027,-1.6856664,-1.4303135,-1.3212236,-1.5539244,-1.7044027,-1.6506361,-1.6442705,-1.6194892,-1.4294745,-0.886906,-1.545171,-1.7251991,-1.1703466,-1.7423401,-1.7060789,-1.2142695,-1.674801,-1.7695693,-1.4537992,-1.2035121,-1.547647,-1.5425999,-1.8090804,-1.5326308,-1.4913901,-1.6628884,-1.638263,-1.5653492,-1.6544236,-1.7979146,-1.7073733,-1.666442,-1.6543283,-1.6876845,-1.662905,-1.5835074,-1.6582536,-1.6756529,-1.683076,-1.2998599,-1.5553204,-1.6401075,-1.5788678,-1.7535926,-1.3533195,-1.4531895,-1.6360573,-1.746447,-1.713821,-1.5207365,-1.5863518,-1.7672933,-1.0905945,-1.1064209,-1.0392137,-1.4069653,-1.5110658,-1.556615,-1.3765428,-1.4786204,-1.5949413,-1.8417181,-1.5461128,-1.2233213,-1.8770481,-1.975417,-1.3465383,-1.2847648,-1.4979533,-1.2006607,-1.6063532,-1.7095462,-1.2224617,-1.256804,-1.2712072,-1.461438,-1.6659738,-1.6682507,-0.8987469,-1.8603301,-1.4793149,-1.5208359,-1.6767193,-1.6624495,-1.3441082,-1.347681,-0.9165357,-1.1369821,-1.2274785,-1.3279442,-1.2329957,-1.1456896,-1.3363281,-0.73646504,-1.21661,-1.3000563,-1.1430486,-1.1114329,-1.373715,-1.3180896,-1.4154674,-1.3788608,-1.340795,-1.5183309,-1.2552423,-1.4336222,-1.4527506,-1.4499696,-1.5605645,-1.3361574,-1.295164,-1.2031736,-1.3909756,-1.5233903,-1.5708619,-1.4893507,-1.4506822,-1.5771478,-1.1389,-1.4312314,-1.483129,-1.1965582,-1.4336296,-1.2988669,-1.3268504,-1.5149238,-1.3161134,-1.1638979,-1.301687,-1.2458918,-1.3093163,-1.4536036,-1.4432288,-1.5173103,-1.3109974,-1.4519509,-1.485535,-1.2061309,-1.3598304,-1.3787109,-1.4583567,-1.4166702,-1.5161344,-1.455788,-1.4229167,-1.494298,-1.2503823,-1.3984734,-1.199527,-1.3607627,-1.3945817,-1.4187708,-1.4147295,-1.4398628,-1.478396,-1.373207,-1.5637707,-1.6005672,-1.6018955,-1.5363156,-1.5994478,-1.4035511,-1.2161411,-1.33704,-1.4623443,-1.444804,-1.4030797,-1.5325128,-1.4726071,-1.5381191,-1.5791978,-1.6982125,-1.62459,-1.6234772,-1.4717766,-1.3827628,-1.4611094,-1.4112076,-1.4425744,-1.3601673,-1.3842396,-1.4080514,-1.311121,-1.3639451,-1.3331518,-1.0228132,-1.1479759,-1.2143697,-1.1314088,-1.3668106,-1.4403903,-1.495772,-1.3570719,-1.2580649,-1.3478562,-1.3960098,-1.281806,-1.2776542,-1.4216727,-1.3675284,-1.181378,-1.1529628,-1.2161198,-1.2789832,-1.3629817,-1.4450947,-1.5224109,-1.4211053,-1.2377506,-1.3644968,-1.4939172,-1.4619986,-1.2762462,-1.0181679
+-1.3121878,-1.6203405,-1.0522738,-1.048678,-0.9010281,-0.7088587,-0.6281499,-1.0208256,-0.90195006,-0.71267515,-0.6273327,-1.2048284,-0.9972622,-0.9039126,-1.04432,-1.2000364,-1.5207108,-1.5987171,-1.4965621,-1.4748394,-1.8172387,-2.3992202,-2.3074164,-1.7013193,-1.9523844,-1.9287724,-1.7724679,-1.6250354,-1.7144033,-1.8178875,-2.035806,-2.6361012,-2.7345436,-2.5120533,-2.471785,-2.174735,-2.3935416,-2.1754262,-2.209302,-2.1659958,-2.2294564,-2.2567344,-2.335197,-2.4069986,-2.2099595,-1.8147763,-2.504043,-2.3740077,-2.350947,-2.337885,-2.373435,-2.331555,-2.2832646,-2.2555165,-2.023831,-2.3826704,-2.1422262,-2.3919022,-1.9350768,-1.9998957,-2.3781762,-2.3257961,-2.3225083,-2.2642698,-2.4633057,-2.0214524,-2.1580894,-2.224822,-2.2759535,-2.4589677,-2.5142593,-2.4978373,-2.3001037,-2.3678782,-2.1464455,-2.3910432,-2.2797344,-2.2602692,-2.3201957,-2.3206084,-2.367084,-2.070642,-2.301127,-2.4429193,-2.4643407,-2.4454117,-2.446303,-2.0511827,-2.1761706,-1.8625293,-2.1357584,-2.4106169,-1.9522922,-2.3557954,-2.3312545,-2.5770931,-2.067933,-1.842377,-2.1934197,-2.3035955,-2.388503,-2.4178867,-2.5135317,-2.5205564,-1.8480513,-2.231488,-2.367361,-2.3042471,-2.2898974,-2.4842024,-2.688312,-2.6439617,-1.8762065,-2.2488832,-2.140837,-2.3481803,-2.1540785,-2.4640346,-2.580526,-2.7363038,-2.735817,-2.6485145,-2.6773367,-2.669404,-2.7234268,-2.6855354,-2.497377,-2.1517134,-2.39199,-2.7055993,-2.7704022,-2.7078516,-2.6361294,-2.2888036,-2.5945144,-2.1976194,-2.3362775,-2.341457,-2.3165262,-2.3529081,-2.661395,-2.7087877,-2.6168637,-2.1831026,-2.7605562,-2.676797,-2.7346516,-2.7689145,-2.8670938,-2.748591,-2.3180783,-2.7638938,-2.584516,-2.7826288,-2.8736668,-2.7901611,-2.8542633,-2.790276,-2.7390723,-2.7917266,-2.085705,-2.4814267,-2.730505,-2.2112193,-2.7413023,-2.8168335,-2.803196,-2.7989497,-2.9447832,-2.870779,-2.5142467,-2.6007862,-2.7791338,-2.922236,-2.8795242,-2.4528785,-2.814314,-2.9392424,-2.925552,-2.9271014,-2.8549807,-2.8508422,-2.8477,-2.971136,-2.930554,-2.8714037,-2.977121,-2.8821573,-2.9767423,-2.835864,-2.81527,-2.891933,-3.0184488,-2.9169369,-2.9772608,-2.6111543,-2.9012134,-2.9287815,-2.5312042,-2.8072262,-2.5981731,-2.6124554,-2.8845196,-2.1698968,-2.3285594,-2.0683882,-2.4321156,-2.684319,-2.7619987,-2.5951505,-2.3975167,-2.5043452,-2.8156033,-2.6289191,-2.526558,-2.6072302,-2.823523,-2.798209,-2.5866914,-2.8826075,-2.5073385,-2.607339,-2.9716756,-2.6247754,-2.4128046,-2.4229102,-2.847721,-3.010956,-2.9286916,-2.109668,-2.8481498,-2.7325783,-2.6018329,-2.3956761,-2.375648,-2.0344882,-2.304436,-2.0649066,-1.837361,-2.2622595,-2.3707113,-2.219612,-1.1702802,-2.2472677,-1.5088427,-2.1760268,-2.3044243,-1.4112782,-1.1391487,-1.752607,-1.4770495,-1.9024438,-1.663535,-1.3761537,-1.3861064,-1.2428752,-1.3048979,-1.5445412,-1.2211518,-0.9951107,-1.0433923,-1.3325932,-1.1929619,-1.2646142,-1.5253135,-1.7287594,-1.7243203,-1.5647774,-1.6225737,-1.3451201,-1.3724573,-1.5380287,-1.5495872,-1.4264218,-1.3722616,-1.4566778,-1.4822642,-1.3948692,-1.0250837,-1.1100129,-1.1094579,-1.084697,-1.077959,-1.0459195,-1.2505596,-1.055467,-1.1960423,-1.3035737,-1.0308999,-1.1020535,-1.1132705,-1.03976,-1.196669,-1.3060633,-1.2409583,-1.038718,-1.3875772,-1.109713,-0.9772987,-1.0589267,-1.2377205,-1.2066864,-1.2239522,-1.2330803,-1.1142068,-1.0660311,-1.0244977,-1.0946156,-1.0727543,-1.0600028,-1.1146175,-1.1185158,-1.0320486,-0.93678826,-1.0223438,-1.015538,-1.0994778,-1.1264031,-1.2232168,-1.1275293,-1.2346362,-1.1742152,-0.9988722,-1.0577244,-1.4584249,-0.9753818,-1.0218664,-1.2145888,-1.2247455,-1.4145217,-1.3345068,-1.3413593,-1.2826697,-1.1433042,-1.1686193,-1.2396615,-0.9225728,-1.0151767,-0.9538235,-0.917517,-1.1673284,-0.9317985,-1.094091,-1.0597309,-1.0912206,-1.0397395,-0.9955687,-1.0817381,-0.73563534,-0.99537104,-1.0336684,-1.0123461,-0.94382656,-0.93615544,-1.1019543,-1.2045115,-1.0254077,-1.1006736,-1.0475148,-0.9283238,-0.82667893,-1.3138455,-1.2665854,-1.1096795,-1.0317272
+-0.5701293,-1.1754185,-0.96998376,-0.45920008,-0.57503295,-0.84953886,-0.6189862,-1.1815685,-1.3188154,-0.9234871,-1.0534874,-1.4873227,-1.401872,-1.0394119,-0.9191486,-0.9938652,-1.140066,-1.4049534,-1.3985115,-1.3722061,-1.2104603,-1.3381258,-1.5201608,-1.0928934,-1.0394169,-1.0813991,-1.1006355,-0.97522825,-0.8416752,-0.94523054,-1.1889306,-1.3233308,-1.8581247,-1.6210915,-1.7674327,-1.7649908,-1.6414574,-1.6343137,-1.5785612,-1.4305401,-1.4720315,-1.4838053,-1.441645,-1.7725511,-1.6255041,-1.5187854,-1.5394744,-1.5266479,-1.4030176,-1.4984097,-1.3936714,-1.3985119,-1.3938826,-1.330118,-1.407338,-1.4332381,-1.2696985,-1.3079147,-1.279794,-1.3159174,-1.2471,-1.4516143,-1.376314,-1.4405998,-1.4186498,-1.1887512,-1.5387653,-1.80016,-2.0233579,-1.7898693,-1.762699,-1.6253489,-1.521722,-1.5792465,-1.5217754,-1.4252261,-1.405473,-1.3482963,-1.3115331,-1.3411644,-1.3235738,-1.3407075,-1.0702438,-1.2448817,-1.2996112,-1.2582418,-1.2827305,-1.2504193,-1.2768389,-1.2688401,-1.8341926,-1.6237403,-1.5229188,-1.6053593,-1.4763948,-1.388808,-1.3465124,-1.3083051,-1.4539177,-1.3850733,-1.42391,-1.6872649,-1.5182163,-1.3989666,-1.4623576,-1.287396,-1.4052963,-1.2306733,-1.6034896,-1.62383,-1.5447842,-1.4348494,-1.3637657,-1.1979337,-1.3674754,-1.2798631,-1.2512611,-1.2714589,-1.2541281,-1.2379836,-1.2271067,-1.2027701,-1.1515838,-1.1663558,-1.1814233,-1.1902684,-1.1690236,-1.1763924,-1.2126008,-1.2037917,-1.1767151,-1.0972663,-1.1384385,-0.7719482,-1.5362526,-1.5352191,-1.4378425,-1.3575958,-1.2845346,-1.6487675,-1.5065147,-1.3689417,-1.361214,-1.4474338,-1.9063679,-1.5447155,-1.4517902,-1.4193201,-1.3674903,-1.1756659,-1.0718087,-1.3429891,-1.2509114,-1.2576326,-1.3185352,-1.2655183,-1.1872611,-1.1688303,-1.1962374,-1.2053019,-1.2209517,-1.124735,-1.1408421,-0.9596587,-1.4561101,-1.3625716,-1.2903872,-1.3753355,-1.2427554,-1.2052286,-1.0884227,-1.3995212,-1.4540566,-1.4253234,-1.3729306,-1.065247,-1.532827,-1.5345745,-1.400967,-1.2543391,-1.4711168,-1.3989272,-1.3196124,-1.2933904,-1.3328074,-1.4463016,-1.3070374,-1.3241653,-1.3333083,-1.3256491,-1.2703586,-1.15598,-1.5688826,-1.36335,-1.3927654,-1.4368376,-1.516004,-1.2877253,-1.4621559,-1.4883052,-1.3785089,-1.4388435,-1.3739021,-1.3402616,-1.4518865,-2.045745,-1.6922711,-1.6189364,-1.5854082,-1.3837954,-1.0591904,-1.9167511,-1.8186668,-1.7294472,-1.3899711,-1.6256231,-1.5609418,-1.9024166,-1.4329033,-1.6163951,-1.4164478,-1.5295349,-1.6811793,-1.4676784,-1.5681375,-1.2021357,-1.4210762,-1.4946228,-1.5440441,-1.3933783,-2.1502945,-2.1087596,-2.0100732,-1.7742529,-1.4330252,-1.1516976,-1.162817,-1.0622749,-1.2546576,-1.5488313,-1.6653538,-1.3098115,-0.56022936,-1.0309893,-1.09152,-1.4333135,-1.4804261,-1.1124042,-0.6782586,-0.91299313,-0.9237744,-1.1888559,-1.2443167,-1.2858952,-1.1073891,-0.49465224,-0.8987785,-1.0643613,-1.0413646,-0.77714545,-0.69633657,-1.217872,-1.0727743,-0.98400503,-1.2146763,-1.350566,-1.3323678,-1.3311726,-1.3430302,-1.1617732,-1.3067847,-1.4833285,-1.4048058,-1.1554954,-1.0591427,-1.2705956,-1.0877728,-1.1382655,-1.1112392,-0.9682147,-0.886933,-0.79396445,-0.8760485,-0.7180876,-0.88298154,-0.864747,-1.1314923,-1.3236889,-0.84670895,-0.96010834,-0.88269633,-0.98804337,-1.0324754,-1.0537357,-1.0826107,-1.0597898,-1.2424475,-1.0644826,-1.0353175,-1.6491646,-1.3053137,-1.1937987,-1.1157967,-1.0450252,-1.0579574,-1.0004908,-1.1268189,-1.1557131,-1.109481,-1.1660005,-1.0715138,-1.1267782,-1.1546366,-1.0745292,-1.0624002,-1.1337453,-0.99703413,-1.2166127,-0.9375259,-1.1724614,-1.1247362,-1.0768529,-1.0115913,-1.0438534,-1.1074347,-1.2056351,-1.0009037,-1.112763,-1.0604656,-1.46995,-1.6514965,-1.4181007,-1.2358373,-1.1896328,-1.569249,-1.6697284,-1.2477802,-1.20284,-1.0240387,-0.9672684,-1.1488159,-1.2893535,-1.4114605,-1.217999,-1.1716068,-1.0194274,-1.0709298,-0.8994532,-1.1448542,-0.9869421,-1.0682001,-0.9593418,-0.95450485,-1.0555292,-1.2900248,-1.4384648,-1.032283,-1.15119,-1.2718614,-0.9554868,-1.1871976,-1.5064741,-1.5737506,-1.4256173,-1.2391056
+-0.78095657,-1.311504,-0.92218083,-0.71441704,-0.69199234,-0.6542569,-0.92693776,-1.373468,-1.5420386,-1.0067731,-1.0807587,-1.7334474,-1.314288,-0.83421814,-0.6246647,-0.5964707,-0.78783685,-0.936947,-1.0607089,-0.9507634,-0.6851633,-0.9833614,-1.3851684,-0.868199,-0.8768781,-0.8815662,-0.8408595,-0.8151825,-0.910712,-0.7457468,-0.5781897,-1.4160982,-1.7392501,-1.5473515,-1.6326405,-1.6210738,-1.3036407,-1.5558094,-1.5499576,-1.4713231,-1.318642,-1.3788749,-1.3251265,-1.6531522,-1.8027674,-1.4952351,-1.6099313,-1.5537814,-1.4061357,-1.4705981,-1.3826228,-1.314062,-1.3440497,-1.2887386,-1.2771739,-1.4690322,-1.2605029,-1.6615068,-1.7163576,-1.6353235,-1.6051944,-1.6998574,-1.5530978,-1.545874,-1.6859426,-1.6019096,-1.5757285,-1.7577796,-1.7785997,-1.8247484,-1.7660241,-1.6115507,-1.5888292,-1.9069396,-1.843842,-1.7568972,-1.657699,-1.4551672,-1.4209505,-1.4195966,-1.3602794,-1.4355134,-1.3972058,-1.3622463,-1.3324498,-1.2331302,-1.2464985,-1.2392975,-1.1649847,-1.4494079,-1.6560938,-1.5273844,-1.3028547,-1.6161804,-1.5289062,-1.262576,-1.3767687,-1.366815,-1.8532846,-1.767077,-1.6650361,-1.7250429,-1.5990797,-1.4814128,-1.5154346,-1.4985979,-1.7685951,-1.5252188,-1.6114,-1.6426737,-1.5923221,-1.4424428,-1.305699,-1.4082662,-1.6020792,-1.4665302,-1.2393595,-1.562315,-1.2832929,-1.4911549,-1.4549898,-1.3999768,-1.3231413,-1.3065578,-1.2802762,-1.0641497,-1.5298687,-1.2643378,-1.4700817,-1.5271097,-1.4473914,-1.3411151,-1.1978079,-1.370601,-1.5627126,-1.3868027,-1.9709486,-1.797313,-1.7722752,-2.0110917,-1.839358,-1.7080456,-1.6760086,-1.7708892,-2.1122594,-1.7403266,-1.6897068,-1.6734797,-1.644152,-1.5689216,-1.459226,-1.5444072,-1.5032831,-1.4817368,-1.584098,-1.4912788,-1.3828101,-1.3887199,-1.4332039,-1.4429979,-1.5094547,-1.3135935,-1.5514317,-1.2175685,-1.7192227,-1.5915817,-1.5106136,-1.5438393,-1.4296631,-1.4938573,-1.4867042,-1.5271155,-1.5679189,-1.62863,-1.5847801,-1.4214953,-1.6750281,-1.6492859,-1.6019187,-1.5416001,-1.4927067,-1.4377567,-1.3931196,-1.4028015,-1.4284897,-1.4641273,-1.3226439,-1.3932115,-1.4099768,-1.4362763,-1.3846102,-1.4079803,-1.3951424,-1.2787364,-1.3097833,-1.3947183,-1.5119447,-1.2093321,-1.2821404,-1.6311961,-1.645882,-1.601186,-1.6445161,-1.5831786,-1.496111,-1.859549,-1.605462,-1.665898,-1.6040864,-1.4042484,-1.3385901,-1.5934373,-1.7382587,-1.7965606,-1.3942376,-1.553454,-1.800803,-1.8252447,-1.2677742,-1.4371336,-1.2054831,-1.3198465,-1.6568596,-1.3785614,-1.3230063,-1.1991886,-1.4404551,-1.5342368,-1.5627357,-1.4549618,-1.9176081,-1.8693057,-1.6580976,-1.7120384,-1.500323,-1.3518599,-1.3989469,-0.9505868,-1.0910071,-0.8816367,-1.2303346,-0.85281587,-0.6235487,-0.7430361,-0.935914,-1.2776476,-1.3419522,-1.0650394,-0.93601114,-1.1544346,-1.1415256,-1.3842345,-1.3298961,-1.2571956,-1.1016887,-1.1404026,-1.21064,-1.159474,-1.2260994,-1.0907264,-1.0484141,-1.0693365,-1.0300795,-0.952023,-1.2107764,-1.2935963,-1.2950135,-1.2178141,-1.2521231,-1.0540391,-0.80622065,-0.9485247,-0.8283548,-0.8200258,-0.560591,-0.6641784,-0.72237915,-0.7651469,-0.6995955,-0.61473304,-0.53887373,-0.6249225,-0.89126354,-0.7406835,-0.8172013,-0.6998696,-0.82015496,-0.9993195,-0.7961702,-0.9640065,-0.85055953,-0.9668737,-0.8634377,-0.97534436,-0.994873,-0.9194913,-1.0840213,-0.9460449,-0.6276285,-0.9862458,-0.9169373,-0.95597464,-0.97083205,-0.92251545,-0.90935224,-0.9045464,-0.8838561,-1.0104469,-1.028015,-1.0482336,-0.973198,-1.1305414,-1.0150844,-0.8881805,-0.94286436,-0.96266013,-1.0102712,-1.1034831,-1.0010158,-1.132909,-1.0560926,-1.1638452,-1.0722111,-1.0665289,-1.1838616,-1.102186,-0.98986644,-1.069277,-0.97766274,-1.2654415,-1.469277,-1.2406342,-1.1249126,-1.1097611,-1.2030417,-1.4187621,-1.05185,-1.072069,-1.0460922,-0.94036025,-1.0120387,-1.0805026,-1.0991647,-1.1103808,-1.1192333,-1.1557287,-1.1584852,-1.0789117,-1.0172856,-1.0756869,-1.1856523,-1.0502381,-0.8452266,-1.007702,-1.1457018,-1.2968587,-1.1744288,-1.1110579,-1.1139923,-1.0758246,-1.2408222,-1.0861499,-1.2450222,-1.2770323,-1.0200033
diff --git a/example/output/CONUSv4f1_multi/SMAP_AM_CONUSv4f1_20160401_20170401_ep100.csv b/example/output/CONUSv4f1_multi/SMAP_AM_CONUSv4f1_20160401_20170401_ep100.csv
new file mode 100644
index 0000000..018dfb5
--- /dev/null
+++ b/example/output/CONUSv4f1_multi/SMAP_AM_CONUSv4f1_20160401_20170401_ep100.csv
@@ -0,0 +1,412 @@
+0.068950444,0.19443002,0.34363174,0.43322727,0.32566315,0.41930854,0.4085389,0.40627837,0.35110933,0.27557695,0.23134091,0.35430372,0.31914267,0.31401417,0.26188233,0.2889496,0.34264496,0.34853154,0.365172,0.35203344,0.30759424,0.46510467,0.6068159,0.9404908,0.44213122,0.26976925,0.34466764,0.32445168,0.35000795,0.33382863,0.31828856,0.30738693,0.3297847,0.44216645,0.4444145,0.4205976,0.42610332,0.5039358,0.46761692,0.41890973,0.4264602,0.4558599,0.4292594,0.43983033,0.4831541,0.5254444,0.4972288,0.45529327,0.81250644,0.70368975,0.6764625,0.72978324,0.7185869,0.69634044,0.6779556,0.6586777,0.71429485,1.0537093,0.9774497,0.81317043,0.73355675,0.6786733,1.1231161,0.84556484,0.7814286,0.73114157,0.7327137,0.71875334,0.7932967,0.7483848,0.91880405,0.9200773,0.7955706,0.8199441,0.9972303,0.7561464,0.6112698,0.6261776,0.7899497,1.1654495,0.8690456,0.7871871,0.7263532,1.3621082,1.2537597,1.0318172,0.8440224,0.7575265,0.7482163,0.73936784,0.7410514,0.6644265,0.67393726,0.67784125,0.7336366,0.7916647,0.74283934,0.8079246,1.0724612,1.1327682,1.0452694,0.87114894,0.75484157,0.75251615,0.7184828,0.7148807,0.6796111,0.9129326,0.91284126,1.0405527,0.8805882,0.82156754,0.7101488,0.74007124,0.7560339,0.7530708,0.7473725,0.7480479,0.72744584,0.7123188,0.7328147,0.7021107,0.65763795,0.7543977,0.7988814,0.7607974,0.7445218,0.6890424,0.78691596,0.93502665,0.83577716,0.80488586,0.7696928,0.7417629,0.7341724,0.74041414,0.7094285,0.6879184,0.6885704,0.65560627,0.6256403,0.6176308,0.52926695,0.68588763,0.63830435,0.62636477,0.60732126,0.5946297,0.62922114,0.5131463,0.5408431,0.56314695,0.7356211,1.3821695,1.5537012,1.1197702,0.91826034,0.7814484,0.88603836,0.9439429,0.9917738,0.86044806,0.815489,0.8166858,0.72532594,0.71324384,0.733523,0.7478553,0.71863663,1.0348567,1.1467397,1.4288614,1.147543,0.9460919,0.84565496,0.8932797,0.9007593,0.83820224,0.8387047,0.8373749,0.7389005,0.683342,0.67933035,0.6410863,0.7709964,0.6731593,0.90287554,1.0016235,0.9250524,1.3780916,1.396798,1.0868608,0.87087834,0.7064772,0.5570757,1.0375613,1.4338671,1.3947539,1.5838618,1.4695809,1.3095835,1.1338534,1.3271577,1.1330345,1.0576134,1.075503,1.0433234,1.0724705,1.0480456,1.2229978,1.178031,1.04228,0.9766755,1.1475189,1.0342281,1.3300288,1.3777635,1.0706774,1.3611772,1.1987656,1.2903411,1.4217161,1.4937458,1.1300877,1.118538,1.4137648,1.2438353,1.2667756,1.1200976,0.89185965,0.785333,0.7408904,0.7146749,1.0663216,1.0157079,0.7800527,0.84264266,0.90225095,0.7065025,0.6456382,0.6062194,0.58608913,0.6068593,0.6387079,0.620564,0.70446444,0.6379578,0.59980667,0.5589036,0.41294703,0.29232594,0.3025544,0.5019822,0.6084494,0.60308295,0.49419388,0.3418654,0.3165614,0.3222985,0.2723763,0.30820227,0.42918527,0.5729181,0.5752777,0.41321182,0.41491058,0.34142536,0.29628444,0.17999363,0.31514668,0.4982373,0.42209482,0.5281052,0.3573097,0.2500852,0.2573543,0.12284265,0.08546568,0.10999233,0.16845417,0.30395725,0.24366924,0.33183378,0.43929332,0.23483232,0.080673374,0.09613938,0.15268537,0.22631526,0.31042027,0.4078786,0.9659525,1.4371164,0.9372988,0.5900483,0.48900545,0.4245162,0.37693572,0.28891113,0.41120696,0.33197883,0.3925497,0.37660587,0.52950907,0.3675996,0.14292422,0.08755853,0.08052165,0.2038783,0.44469613,0.37112772,0.21044424,0.21130162,0.12565932,0.7352363,0.9285778,0.3819309,0.33245745,0.37659228,0.4109196,0.93780196,1.2065221,0.5756245,0.4118852,0.45585042,0.4485832,0.29504627,0.28749052,0.16831192,0.23147658,0.17667557,0.26136887,0.15544567,0.1354011,0.4554034,0.4404657,0.7138118,0.2771231,0.19632167,0.26090738,0.3153978,0.30691218,0.24729562,0.594722,0.39199764,0.61925244,0.7191055,0.7332283,0.64122564,0.492182,0.3793874,0.533272,0.3342518,0.22103402,0.5333696,0.5702004,0.49385217,0.5300467,0.4902777,0.36028957,0.49426487,0.78556174,0.8435217,0.537104,0.46118152
+1.308176,1.1719445,1.1538823,1.6755164,1.9545114,1.9409776,1.7488375,1.5396307,1.4648459,1.2981187,1.1860979,1.183069,1.5656588,2.5690675,2.5367365,2.2798653,2.2710643,2.10646,1.9064009,1.7400815,1.5308003,2.5379992,2.5253124,2.7814746,2.5664124,2.3614054,2.2386677,2.258122,2.2593515,2.2707152,2.1344757,1.8872665,1.7501748,1.8859974,1.7070143,1.598807,1.3980415,1.3245035,1.2131588,1.1995395,1.0569843,0.90893626,0.84020865,1.5441436,1.9369531,1.805913,1.7503641,1.5074817,1.5369413,1.4932656,1.3010676,1.3113561,1.3822846,1.316817,1.212975,1.1140746,1.051597,0.991778,0.8718022,0.830513,0.7262875,0.640113,0.70061564,1.009918,0.8791702,0.77401936,0.7017892,0.65325516,0.5309247,0.7238988,0.93535197,1.1942797,1.0371854,0.8605624,1.5554688,1.7563851,1.5928962,1.4995877,1.3140787,1.1816943,0.92638886,0.8200444,0.7378044,1.0121273,1.5138013,1.2883878,1.1306635,0.9209806,0.8306699,0.77210486,0.6890948,0.6360791,0.5123914,0.46852645,0.47505397,0.38633877,0.26785704,0.23943955,0.5562633,1.27799,1.9275072,1.6785281,1.3194923,1.1041572,1.0492209,0.8935908,0.7282227,0.6052253,0.5009732,0.38971132,0.34906423,0.30123657,0.24231628,0.21156982,0.22312084,0.15740752,0.14879718,0.17462131,0.14723015,0.12424409,0.12753347,0.13719377,0.09903016,0.07483039,0.095953666,0.08643646,0.06937503,0.078463815,-0.0061865523,0.25494647,0.49335688,0.5525943,0.3559451,0.21781111,0.1699816,0.17885375,0.1764239,0.13595504,0.12347788,0.11138097,0.07283098,0.11179877,0.14819881,0.13363948,0.10275791,0.06537142,0.08375945,0.09951625,0.10693916,0.057763673,0.021349467,-0.04374958,0.014198609,0.16790065,0.47990757,0.8416345,0.65032274,0.48197982,0.2133292,0.37932634,0.27201882,0.30049285,0.21573058,0.19963941,0.20082012,0.1723296,0.17467228,0.14480738,0.10565818,0.22388273,1.396492,1.250289,1.003851,0.8310031,0.7082317,0.7619146,1.0975919,0.68413466,0.5773358,0.5238433,0.5189669,0.42919332,0.33385238,0.69781137,2.2157624,2.029438,2.246108,2.7468467,2.5611377,2.7227182,2.5862546,2.531781,2.9680119,2.9102757,2.6532807,2.9949808,3.268199,3.3034248,3.3024302,3.3055315,3.2447853,2.9672475,2.9720998,3.0047684,2.9440184,2.8223538,2.8513443,3.004404,3.1627474,3.1801531,3.0151706,2.9761047,2.9951253,3.2371807,3.0369282,2.9386704,3.103527,3.1294043,3.1612968,3.2791448,2.976811,3.083333,3.0981703,3.191348,3.0044422,2.9892251,2.9949694,3.0977228,3.3037903,3.3572657,3.1043353,2.9840837,2.6622913,2.9868376,3.1337934,3.0054302,3.1909175,3.4036183,3.462039,3.0923216,3.107418,3.2586508,2.9664607,3.092234,3.0179596,2.7370026,2.716224,3.1134582,3.107709,2.9509454,2.8433151,2.4702969,2.757153,2.9281354,3.1319504,3.081109,2.946231,2.5766041,2.3656006,2.44209,2.1022596,1.892379,2.085776,2.8990455,2.6512318,2.2588632,2.1879694,2.18047,2.1640284,2.0064504,2.461589,2.4587953,2.2868407,2.173616,2.1211293,2.2011013,2.0686116,1.6820109,1.4376814,1.1865742,1.0920765,1.0898947,1.8254526,2.4080353,2.453638,2.4715552,2.087884,1.5483387,1.2533789,1.1376619,1.0732487,1.4200867,2.8542109,2.5656278,2.324305,2.3851953,2.3902702,2.3123927,2.2051513,1.9599947,1.798441,1.7556676,1.5936704,1.5418435,1.6298345,1.732985,1.7247689,1.5247328,1.540763,2.7350025,3.1361089,3.109785,2.8581462,2.9432201,3.207128,3.1970878,3.008967,2.8679671,2.5803938,2.3520434,2.463952,3.2388558,2.9196815,2.8440518,3.035435,3.1529622,3.052682,2.8977463,2.8223712,2.725875,2.521395,2.5989084,2.543293,2.3974056,2.3104084,2.2907917,2.2627966,2.5555353,2.6170664,2.8122542,2.976348,2.6916754,3.0164745,2.9286451,3.131577,3.0255265,2.969255,3.1705875,3.315527,3.2597992,3.0894177,3.1231194,3.2843285,2.9163194,2.6373954,2.9752202,2.9411376,3.0376406,3.021697,3.0269141,3.0440717,2.8502686,2.959407,3.0531187,3.1571393
+1.0505453,0.98082316,0.9278169,1.097631,1.235732,1.0277706,0.85271835,0.7941271,0.7123726,0.71507,0.685493,0.68939686,0.81123716,1.9081212,1.9398692,1.5532873,1.4999423,1.3587312,1.207936,1.0388649,0.96499306,1.7717549,1.7814946,2.1534758,1.9111705,1.6101897,1.6299484,1.7639401,1.5944419,1.5554364,1.3389056,1.2004902,1.2529385,1.5822945,1.3434389,1.2064642,1.0420778,1.0533887,1.0003512,0.8330482,0.6852826,0.54800177,0.5176246,0.79388726,0.8862081,0.95264554,0.8903076,0.66910183,0.96191293,0.9944676,0.97250915,0.99688315,1.0856999,1.1141827,0.9855523,0.9114784,0.8175541,0.6974922,0.58247226,0.55209243,0.44110996,0.3821454,0.35194463,0.3381783,0.28693563,0.23051065,0.21288347,0.15656218,0.19523826,0.31004646,0.33734512,0.22574225,0.10711188,0.11270236,1.0629013,0.85613537,1.0498638,0.8427117,1.043229,0.86489654,0.578712,0.54670286,0.41199595,0.32086587,0.33835766,0.24709693,0.14089455,0.09747406,0.093374155,0.0869999,0.049891897,0.008258037,-0.021517433,0.002483867,-0.011825465,-0.018828265,-0.023433082,-0.013386749,1.0563159,1.5157609,1.2178102,1.0787292,0.76132536,0.6453132,0.45291942,0.35638338,0.29591814,0.21840237,0.18672788,0.14155698,0.121445455,0.055189483,0.05944591,0.03207817,-0.023763485,-0.023293458,-0.028686367,-0.045622535,-0.05553461,-0.044771023,-0.032303207,-0.025580607,-0.054109685,-0.038888283,-0.086149134,-0.1133965,-0.07389515,-0.058595516,-0.055589072,-0.05644933,-0.07103575,-0.08757707,-0.11081656,-0.1219809,-0.081546925,-0.054048218,-0.064414196,-0.08664607,-0.09316536,-0.10487809,-0.111526616,-0.056357004,-0.025957964,-0.07758092,-0.12671772,-0.15100276,-0.18559948,-0.16421098,-0.11549095,-0.14072293,-0.14736074,-0.13307232,-0.07874089,-0.07232345,-0.044832,-0.080544166,-0.12777293,-0.13560903,-0.23653263,-0.013859414,-0.083270274,-0.12865984,-0.13084483,-0.08408535,-0.13139012,-0.1714729,-0.16211516,-0.1905219,-0.21912235,-0.20748013,-0.14484051,0.024542607,-0.08428138,-0.13646862,-0.027633376,-0.05702325,0.22872207,0.030813567,0.04630298,0.073154785,0.007884003,-0.02844935,-0.09329682,0.7106241,2.1290383,1.8930286,2.0353475,2.2515588,2.0549629,1.7067308,1.6473879,1.5210006,1.4626396,1.584929,1.3162582,1.7063994,2.7709064,2.850422,3.0188837,3.000302,2.9740994,2.588716,2.4457994,2.7646894,2.5733953,2.4967752,2.774419,2.759942,2.908044,3.121482,2.7744665,2.8624854,2.7616267,2.7281954,2.8395305,2.8104806,2.832367,2.8360302,2.7838702,3.1941984,2.8391914,2.9039958,2.8550007,2.9204543,2.7795491,2.7161894,2.8314447,2.9620261,3.1825185,3.268376,2.9762087,2.9429402,2.9943266,3.2954035,3.2434435,3.038284,3.283408,3.1138535,3.3357148,3.0947742,3.4475336,3.2609377,2.9765644,3.1797853,2.9981816,2.8890896,2.777497,3.171446,3.1139772,3.0400748,2.658241,2.3714986,2.805571,3.1087704,3.0006971,2.8974466,2.7566724,3.0986528,3.1606383,2.8437042,2.5328236,2.1881413,1.9451923,1.9614183,2.2024765,2.078562,2.6612782,2.3015137,2.285095,2.0283995,1.9856374,2.0907507,2.0839949,2.1780424,2.0689251,2.0751822,2.165519,1.9657395,1.9275113,1.6212399,1.2820299,1.2954123,2.472936,2.366221,2.865805,2.6068058,2.3520472,2.1101093,1.814671,1.6389704,1.5010223,1.4874188,2.4517155,2.4975533,2.2795317,2.6177545,2.6849003,2.541517,2.5622487,2.314647,2.259727,2.4444253,2.3049765,2.2977076,2.291003,2.4121766,2.3660305,2.4063776,2.874878,3.1303773,2.981976,3.0400603,3.2903342,2.95926,3.2454505,3.2572198,2.9700143,2.726735,2.5000982,2.6063428,2.6484861,3.1078463,2.8905563,3.1300397,3.0828218,3.1000304,3.3022406,3.2728972,2.977543,2.7572455,2.4836328,2.6074371,2.6669056,2.627888,2.5158954,2.4100723,2.373445,2.6589153,2.8816323,3.086604,3.1485052,2.9245663,2.9766798,2.7735677,2.9933152,2.9646997,2.936862,2.8693857,2.986731,3.1659465,2.9785264,3.2703867,3.0281396,3.074805,3.119473,3.2884507,3.0986052,3.458139,3.2360506,3.2080398,3.373448,3.1189482,3.4542508,3.0669122,3.027299
+1.0637372,0.7382025,0.5854506,0.6663035,0.6979891,0.4851405,0.39325517,0.35216552,0.48647034,0.55282086,0.5197545,0.7032726,0.9585937,2.4102025,1.8207742,1.5503821,1.3342209,1.1019446,0.93744206,0.8583597,0.81506354,1.2655094,1.3570759,1.3222616,1.1950115,0.9940049,1.2828584,1.2533231,1.0132365,0.9867414,0.800943,0.6786569,0.6859807,0.79147494,1.03688,1.0294279,0.8264615,0.70792264,0.6311615,0.514909,0.4253132,0.36251664,0.34022093,0.4259798,0.47439855,0.41204607,0.2958519,0.2516437,0.29108617,0.88240576,0.9056386,0.92736435,0.88838273,0.89233613,0.74133295,0.58191603,0.49468696,0.4184593,0.34573147,0.30046505,0.24045536,0.22477415,0.19152299,0.20237741,0.19851619,0.16903779,0.20511135,0.19456005,0.1639144,0.15018383,0.14658144,0.086201794,0.02715803,0.018618234,0.21772122,0.21805158,0.44139823,0.95107186,0.8718541,0.6291317,0.43930274,0.36551678,0.2655141,0.20642298,0.19532566,0.13589706,0.10348267,0.07910279,0.113219336,0.10612376,0.09845188,0.075188585,0.11567903,0.13015717,0.109656096,0.095053755,0.09712112,0.072677575,1.0980357,1.3824935,1.082503,0.85345006,0.6097685,0.4833694,0.38138887,0.32048476,0.28241152,0.23054561,0.19323833,0.16061252,0.13084403,0.11358699,0.12086729,0.10338522,0.10154389,0.121267624,0.13497716,0.14603841,0.16933972,0.1924839,0.23379877,0.22963467,0.18982637,0.16172668,0.15606415,0.15827155,0.1883653,0.20111215,0.13683903,0.13860297,0.14770761,0.13690662,0.1271118,0.14913435,0.1842503,0.22724417,0.22698301,0.20956448,0.23107377,0.23101059,0.21656048,0.27280095,0.28239807,0.22164032,0.16185099,0.10570098,0.12517644,0.11869989,0.18141192,0.17374848,0.10924122,0.1710729,0.18573016,0.13121144,0.10664395,0.14234489,0.123639315,0.09585389,0.02805192,0.13759756,0.03287781,0.04883705,0.053097464,0.15095943,0.17526007,0.051218912,0.070905365,0.019451879,0.014682345,0.028564617,0.20442599,0.16659123,0.12071159,0.1552437,0.5611415,0.7770376,0.78492427,0.2802744,0.29659835,0.31888282,0.28501266,0.28743726,0.27049476,0.9165844,2.3466158,2.2055118,2.179761,2.4814563,2.095023,1.6045654,1.4694602,1.3962032,1.2399892,1.1120713,0.951906,2.2059133,2.9552364,2.995629,3.0408313,3.0012612,3.0906482,2.4336762,2.1944723,2.274923,2.1913807,2.0326757,2.7286959,2.8165078,2.9840178,3.0762587,2.698782,2.6910133,3.0953526,3.039818,2.7956479,2.491949,2.3996863,2.274628,2.1595798,3.0048032,2.413665,2.3208876,2.317583,2.2571545,2.1520603,2.4561763,2.4837866,2.2420144,3.1245432,2.6996431,2.114534,1.712127,2.7230852,2.9072104,2.6561677,2.1901367,2.749402,2.05176,2.7603412,2.3537998,2.9040542,2.8735871,2.1870422,1.9804852,1.8429615,1.3458579,1.5411973,1.7154897,1.4234629,1.1626971,1.0114669,1.5260226,1.9648905,2.7553313,1.6458998,1.3455702,1.0763906,2.6508956,2.7819161,1.8451538,1.2673885,0.97305906,0.8268128,1.2049252,1.348171,1.0945274,2.1597176,1.4050825,0.9996524,0.8913503,0.97520673,1.008815,0.98721266,1.1360949,1.0127589,0.8154614,0.8298524,0.8247315,1.2654942,0.9908365,0.8328519,1.2985616,2.6578317,2.3855104,2.7553182,2.2892785,1.6533655,1.198185,0.9583813,0.89867616,1.040425,1.1990926,2.6236222,2.4882493,2.4306374,2.5641177,2.4270692,1.8363488,1.5013602,1.1166868,1.2894816,1.0828923,1.0517001,1.2019892,1.3123031,1.4404067,1.5253716,1.5572438,2.7848215,2.6967773,2.4150116,2.9639382,2.864496,2.802992,2.8586042,2.7460103,2.0286644,1.4981711,1.5559752,1.6795384,2.325736,3.0436144,2.5013494,2.585669,2.6649868,2.84848,3.0025795,2.583283,2.0155785,1.4972353,1.3870676,1.3866128,1.1660608,1.1845696,1.0563008,1.0087737,1.1372454,1.5969586,1.8722926,1.7916849,1.8834071,1.6611798,2.0718582,1.7467722,1.8412162,1.9345502,1.817822,1.8611065,2.1356525,2.3116107,1.9478588,3.019056,3.0897768,3.1268559,3.2248666,2.845768,2.0468404,2.8743455,2.3597462,2.5891566,2.4493341,2.0975885,2.438814,2.3781986,2.0772223
+1.3515663,1.1546555,0.9342201,0.8328208,0.6892228,0.5355399,0.5024892,0.49703544,0.50386834,0.57087004,0.5830551,0.5340055,0.57185376,1.8141123,1.5593158,1.0772607,0.9118763,0.8183437,0.7298679,0.66080225,0.6621801,2.277661,1.8883803,1.5871758,1.4400325,1.1023083,1.415186,1.3416042,1.0225669,1.0208683,0.84711856,0.7568713,0.76638913,0.79042757,1.0711228,1.1620026,1.0759016,1.252908,0.9520104,0.7581236,0.66675466,0.60012615,0.57639056,0.59442836,0.5806039,0.4624288,0.40472445,0.34679395,0.3432266,0.3606409,1.1498271,1.2233768,0.96297944,1.1524771,1.0277846,0.72562087,0.5784723,0.50028855,0.4158703,0.37447345,0.3432879,0.33745113,0.31073898,0.3109508,0.34105256,0.33770403,0.3371074,0.35812646,0.34016216,0.2897012,0.23324308,0.19541526,0.15633005,0.14610493,0.19466361,0.34543407,0.74680233,1.3727908,1.1681306,0.79161245,0.58359027,0.4801092,0.40004015,0.31607154,0.2935305,0.25875568,0.2341434,0.22927508,0.25507423,0.260004,0.24202383,0.24444005,0.27008423,0.2802121,0.27672225,0.229698,0.20790726,0.20440295,0.20960233,0.2679228,0.20839335,0.14125806,0.11215418,0.15137744,0.17845663,0.22991046,0.23212093,0.20913208,0.17766371,0.15168113,0.14799276,0.15832317,0.15621638,0.11819906,0.16187134,0.23293921,0.26623553,0.31809938,0.36070716,0.33152702,0.39645255,0.4136703,0.36810535,0.31011155,0.27596715,0.32346344,0.358415,0.3464099,0.24413213,0.16417792,0.18838322,0.17864081,0.18278828,0.21701464,0.23149422,0.26570058,0.30697015,0.24307814,0.24026984,0.2686249,0.2607665,0.31343073,0.30446637,0.12611194,0.20834664,0.116066836,0.12234784,0.18854088,0.27007964,0.2535467,0.1787121,0.2153511,0.25351164,0.19585028,0.083977684,0.07441517,0.08258951,0.021987014,-0.055456974,0.110720694,-0.0052403584,0.07972404,0.100721255,0.14060527,0.16186643,0.10129077,0.15087055,0.032102026,0.0223872,0.019713186,0.19706446,0.21509154,0.16553867,0.12790644,0.27266023,0.19143301,0.29506695,-0.007765688,0.15037808,0.21531005,0.22545841,0.289744,0.37487125,0.38780794,1.2506802,2.0844946,2.0320885,1.9687274,1.6240704,1.1835551,1.0409443,0.9700978,0.78634596,0.7820775,0.68483686,0.7009239,2.841354,3.0752897,3.128889,3.1562474,3.0940366,2.9319212,2.7485347,2.654047,2.5796213,2.425113,3.0152373,3.0117726,3.0802393,3.1778238,3.1175282,3.2719276,3.3022413,3.2926097,3.3812113,3.1965537,3.1082723,3.0638666,2.9857845,3.2639756,3.055749,3.0237305,2.9578547,2.9377968,2.8599582,3.1425142,3.0217443,2.9103475,3.1685712,3.1225734,2.8808603,2.4814286,3.125936,3.2219524,3.0524242,2.9504135,3.211689,3.0191116,3.0972111,3.3085048,3.2735386,3.2903757,3.122685,3.0521593,3.040066,2.7954116,2.765894,2.7326908,2.7952435,2.442779,2.0398464,2.4552834,2.6558454,3.2154298,3.0376654,2.7823973,2.5278926,3.1582627,3.2842755,3.1745348,2.797828,2.282764,1.9396796,2.0604582,2.4128067,2.3526971,3.0672421,2.7853322,2.2831001,1.7520378,1.5721579,1.807327,1.7116919,1.7941833,1.8770472,1.6508472,1.4557418,2.019219,2.7158144,1.9536519,1.3638527,2.462892,2.9420166,2.6786432,3.126008,2.749068,2.7217138,2.5070434,2.0473223,1.9757063,1.9414451,1.9117372,3.1992588,2.9707599,2.938091,2.9055948,2.899291,2.772746,2.7237566,2.3641164,2.286481,2.301938,1.9785922,1.9137874,1.9029051,1.9561878,2.127283,2.9393468,3.1446035,3.1304345,2.865372,3.2686915,3.2950983,3.3185987,3.3890972,3.3322885,3.1676118,2.976607,2.9000115,3.023017,2.9333506,3.2825136,3.3553524,3.3452764,3.2793896,3.3641706,3.4159446,3.2475147,3.0415184,2.570459,2.1986675,2.1073632,2.0522203,2.0695648,2.0406294,1.9272232,2.0231607,2.5881793,2.5891418,2.3971303,2.3799314,2.179498,2.3148484,2.4356847,2.6675167,2.7222533,2.6277986,2.5827677,2.6606998,2.7848418,2.8480713,3.0419767,3.1518161,3.0969877,3.3797941,3.311541,3.1463199,3.4337506,3.1698594,3.1675415,3.2334564,3.1245177,2.8962197,3.196708,2.9094934
+-0.200526,-0.19613692,-0.20230466,-0.104978405,-0.26270634,-0.32181567,-0.2492559,-0.25567463,-0.27840206,-0.31451753,-0.34013015,-0.34251124,-0.38671485,-0.36651605,-0.38581672,-0.3840367,-0.2982222,-0.27464777,-0.23437798,-0.21540028,-0.12566882,0.09878791,0.2452333,0.10753809,-0.13173911,-0.27354255,-0.24196267,-0.095637016,-0.095898695,-0.21428287,-0.26301944,-0.25307277,-0.15816158,0.021810018,-0.012825765,-0.05722844,-0.040987886,0.01764565,-0.06720143,-0.12421731,0.029472172,-0.037964903,-0.057055317,-0.016337596,0.019434609,0.0040001944,-0.007719733,0.032654807,0.07812758,-0.014416076,0.19045427,0.25444502,0.43618938,0.30709705,0.19003884,0.11626592,0.22173846,0.34054923,0.21188764,0.021871515,-0.0066278353,0.11923495,0.32217175,0.3419048,0.29686922,0.2711272,0.30180323,0.30365786,0.24580413,0.29447886,0.26000556,0.25971344,0.1956892,0.39309138,0.3223077,0.062444545,-0.001383923,-0.020899802,0.15703553,0.7346089,0.4901049,0.43656805,0.40282512,0.71647847,0.69550455,0.50256497,0.41602677,0.33943316,0.37178183,0.37411177,0.3850974,0.33193937,0.292534,0.3068934,0.31537715,0.35162568,0.35321388,0.46083635,0.6454835,0.8837422,0.6960645,0.52948517,0.44274256,0.41788134,0.40660822,0.4860502,0.6894579,0.9124466,0.67591256,0.8017682,0.68872535,0.5589537,0.5162352,0.4678902,0.43409035,0.36779815,0.37854153,0.3339696,0.29486737,0.2829345,0.32819816,0.35604355,0.2762288,0.50941545,0.6026461,0.45148402,0.40694812,0.4029067,0.35249582,0.332583,0.30447096,0.3337522,0.30997932,0.25489897,0.25588322,0.294292,0.2665964,0.2492449,0.22519615,0.18149567,0.15122522,0.15980473,0.17788261,0.32105654,0.2363424,0.1787788,0.14368954,0.14446019,0.17198408,0.177248,0.1805326,0.17934781,0.1692611,0.57309145,1.0897337,0.84598607,0.64353836,0.546622,0.48385096,0.52373326,0.50733286,0.4545418,0.37858555,0.47019437,0.33417258,0.31015372,0.33494678,0.36599573,0.2940779,0.7197866,1.1639032,1.0829371,0.82195896,0.61829615,0.5144286,0.53738266,0.5855012,0.49729383,0.5247611,0.5241902,0.44363618,0.39484864,0.40408713,0.3899952,0.36349928,0.33236572,0.45713866,0.48203468,0.47489378,1.0960488,1.1183232,0.8439767,0.56209016,0.3259048,0.24467531,0.77133805,1.1965462,1.0633417,1.2448007,1.1082668,0.972947,0.8391571,0.91478366,0.88340884,0.6597941,0.71181214,0.71960044,0.7765048,0.7356204,0.83074456,0.82946515,0.6929425,0.5497908,0.7662301,0.76746106,0.8864862,0.93012655,0.8105687,0.9978049,1.0238945,0.90988433,0.8416242,1.1003041,0.93397987,0.83121514,1.1146587,0.95515907,0.91629595,0.80449057,0.57259357,0.49869436,0.43627086,0.45087594,0.7247434,0.68457425,0.35973462,0.5061785,0.6288162,0.60128355,0.6101993,0.5163855,0.44523323,0.4179557,0.47898906,0.44824708,0.54424924,0.5279435,0.48687714,0.40569666,0.261948,0.16130382,0.1481674,0.19493571,0.41098565,0.44707224,0.29561275,0.16733229,0.14420426,0.13557494,0.097519375,0.17234528,0.27373213,0.47135657,0.55637217,0.42472726,0.36816654,0.406442,0.34250194,0.20876318,0.2502462,0.46377975,0.40166682,0.46694285,0.39584637,0.33365348,0.26820529,0.11895221,0.063835345,0.080563374,0.22247675,0.28146476,0.2530353,0.24379024,0.40150705,0.24049377,0.0723178,0.16936406,0.23443598,0.2820208,0.28627792,0.3498847,0.688147,1.0570925,0.69280076,0.43425548,0.3836546,0.37232307,0.36037752,0.3467993,0.34659848,0.3400616,0.35637367,0.33839536,0.38133913,0.35567835,0.20893109,0.16322136,0.1379956,0.19869184,0.41470793,0.43634474,0.24438119,0.22273034,0.17077495,0.6981876,0.74809706,0.39691538,0.34373564,0.34506932,0.33645916,0.86233807,0.9918089,0.51411,0.36504838,0.3533539,0.35076165,0.3007268,0.2970412,0.25456956,0.27519393,0.23058417,0.23805675,0.23124549,0.21898814,0.39738545,0.42515132,0.6457138,0.320148,0.23066866,0.20560424,0.26670408,0.25023314,0.22981334,0.5918599,0.32280186,0.53134054,0.5406389,0.6539056,0.59377843,0.48700103,0.30543122,0.6427387,0.25790364,0.24132174,0.44875902,0.36819994,0.3300011,0.4156915,0.36621556,0.27764884,0.37435785,0.553665,0.6701125,0.4006464,0.34605527
+1.5678024,1.3957675,1.3176985,2.3220396,2.1062744,1.7387923,1.6523051,1.6671855,1.5844555,1.5123141,1.4743061,1.3473444,2.0199978,2.3383,2.437424,1.987547,1.8282914,1.7880933,1.7417387,1.6562574,1.5575476,1.5361373,1.9885876,2.6660976,2.3475962,1.7480397,1.6864114,1.6742069,1.7384663,1.8088574,1.6128561,1.5469372,1.5006468,1.9875538,1.9473443,1.8250921,1.6577204,1.7968295,1.659837,1.40947,1.2703581,1.2319264,1.1933045,1.2410603,2.0427492,2.1936865,1.7415855,1.4607198,2.0179274,1.907829,2.2917185,2.201478,1.994262,1.9230964,1.7556232,1.6521455,1.6442478,1.4984713,1.4087899,1.4032799,1.2764214,1.2431619,1.3174112,1.3560455,1.1643986,1.090147,1.1241177,1.0342586,1.0874252,1.1717498,1.0764819,1.3853714,1.2061566,1.1622157,1.865552,1.5804794,1.5922818,1.6896353,1.9302325,1.756988,1.4057642,1.381704,1.2905064,1.3444918,1.5881578,1.4135566,1.2286626,1.1477301,1.1387428,1.1079032,1.0617814,0.98404694,0.97053933,0.9889028,0.95241475,0.95806324,0.9265599,0.9473412,1.3570565,2.0635242,2.1507719,1.931357,1.6533185,1.594984,1.4432844,1.3703662,1.277205,1.2377424,1.1604642,1.1128718,1.0648518,0.9982552,1.0736525,1.0524273,0.9661747,0.9463595,1.0090307,1.0316603,0.9914559,0.9644408,1.0078241,0.95598376,0.8736019,0.88766026,0.8880121,0.8120909,0.8342238,0.8653842,0.80528444,0.9288537,1.1688411,1.2937155,1.0320836,0.932649,0.9420361,1.0118599,0.99171525,0.9374633,0.90064925,0.87885445,0.8477761,0.86824536,0.8540414,0.8729965,0.7913806,0.7501533,0.75210637,0.7404196,0.70835924,0.7418653,0.70378613,0.7535652,0.87617445,0.89720213,1.1783413,1.3881491,1.1985321,0.9874501,1.2728868,2.027269,1.9032288,1.6421403,1.330028,1.3196412,1.2456737,1.1091812,0.9818463,0.96313894,0.9342146,1.0923432,2.8432026,2.5729184,2.2268753,2.1077497,2.2989848,2.3411446,2.5384488,2.251152,2.0797105,2.1046162,1.9139276,1.7286029,1.5422505,1.650853,2.2500186,2.2033625,2.77287,3.1838949,3.1861343,3.1901422,2.6810136,2.6413035,3.1233945,2.8347945,2.3791223,2.7784407,3.163069,3.1017156,3.0668774,3.05667,3.0812254,2.6341515,2.9454675,3.1567163,2.7530684,2.446,2.3640552,2.5315049,2.8826838,3.0657449,2.687894,2.7869322,2.7183278,2.9739044,2.7092366,2.334877,2.4274764,2.482473,2.2796268,3.078735,2.4977398,2.525861,2.5095038,2.618215,2.4756303,2.5495286,2.7824862,2.9908888,3.0896635,2.9615333,2.340295,1.922406,1.8123791,2.1027863,2.5871768,2.1066704,2.396091,2.2943513,2.4397278,2.0737643,2.3212063,2.8243132,2.4187627,2.4790905,2.115283,1.6465696,2.006499,2.6473165,1.9607927,1.5371234,1.1050514,0.96382654,1.9568845,2.3859367,2.3633869,1.8387265,1.0478822,1.1073011,1.551499,1.0033591,0.84111905,0.7243928,1.0018772,2.2313113,1.1844172,0.82761526,1.3356427,1.2395113,0.8139118,0.71089786,1.9844708,1.4985094,0.95515853,1.3020478,0.95492125,1.2998599,0.90340996,0.71120036,0.6957159,0.7123431,0.6650755,0.7558498,1.5215681,1.913891,1.7442076,1.5143001,0.9412326,0.79892373,0.73189545,0.75365305,0.7145791,0.9651409,2.4662728,1.582649,1.0778085,1.1826379,1.211915,0.9086939,0.879891,0.8117428,0.8268581,0.73128486,0.6862378,0.74207217,1.0424317,1.3035557,0.7513356,0.5533857,0.7486595,2.2554326,2.4973693,2.2161298,1.7545675,1.9847407,2.8886137,2.3440137,1.387604,1.0451696,0.8637,0.7517469,1.394738,2.348716,1.5910342,1.6102723,1.3239161,1.758865,1.8561659,1.3241931,0.9231553,0.73729694,0.67904305,0.9692729,0.89614296,1.2712731,1.0043749,0.8098367,0.73695743,1.5569689,1.2761796,1.5790141,1.7672391,2.438828,2.6585886,2.0722852,1.981828,1.6077926,1.6512363,2.0531716,2.2769551,2.1962986,1.5755262,2.5303178,1.6064254,1.2886573,1.3714898,1.5758066,1.0493779,2.0130677,2.1344554,1.854733,2.1636627,1.6586175,2.463832,1.9002376,1.2975469
+0.36941695,0.3216008,0.24304673,0.52196205,0.3253128,0.3393137,0.36138818,0.3419227,0.3222559,0.24945611,0.09265755,0.37697417,0.6142586,1.0762644,0.4672951,0.51454824,0.5965142,0.6200615,0.5888509,0.49928355,0.44880545,0.49053934,0.65425014,0.8398273,0.4558011,0.2668959,0.44333094,0.46204096,0.44097847,0.5036396,0.45579872,0.4389607,0.48062074,0.5610878,0.74478734,0.9182935,0.7230203,0.5949426,0.44928855,0.386327,0.32993257,0.3299661,0.2933027,0.280536,0.45433235,0.62435997,0.45490247,0.35138178,0.46046245,0.41870934,0.5628514,0.624662,0.5717211,0.68788004,0.57319635,0.5226667,0.45494938,0.4171289,0.3774699,0.3466164,0.25337473,0.15916756,0.036655493,0.016746439,-0.1460557,-0.1755932,0.47021893,0.48758298,0.48632374,0.42760664,0.22028813,0.15700792,0.07270148,0.0059285685,0.11739547,0.048345454,0.12990412,0.35238704,1.2240663,0.6486033,0.5229088,0.47078562,0.3041397,0.26752937,0.26007348,0.20889685,0.07212787,-0.0024187341,-0.04343375,-0.13365284,-0.17020446,-0.27336332,-0.31778836,-0.2716326,-0.34437892,-0.3736667,-0.362459,-0.37741232,-0.24157962,0.7144209,1.1251724,0.92815197,0.54282165,0.34868258,0.1262477,0.009079896,-0.04703044,-0.11336083,-0.15922275,-0.21575558,-0.28746504,-0.37379456,-0.34699386,-0.38975927,-0.46465534,-0.46266472,-0.40993118,-0.42703915,-0.43810582,-0.42198056,-0.40601176,-0.47823232,-0.5213462,-0.5238675,-0.5206358,-0.58601636,-0.48059094,-0.25679526,-0.4467845,-0.45995992,-0.44877815,-0.4632659,-0.54128593,-0.52728033,-0.52838147,-0.50344497,-0.49046355,-0.5108632,-0.5119537,-0.5165131,-0.4851336,-0.4443065,-0.47001088,-0.56879497,-0.64417326,-0.630576,-0.6170904,-0.5773499,-0.5196344,-0.5554557,-0.5552452,-0.5464317,-0.4434771,-0.46467692,-0.5060017,-0.51007026,-0.4745046,-0.5176471,-0.3296836,-0.08358031,-0.34559524,-0.5565362,-0.54845256,-0.48148692,-0.4941936,-0.5903243,-0.572801,-0.58972424,-0.5810902,-0.53905493,-0.38391125,-0.32165676,-0.43445987,-0.30084884,0.5523261,0.9347237,1.1066518,0.5619058,0.36980227,0.2425974,0.08548718,-0.025213145,-0.17233527,-0.1566624,0.05991987,0.36043066,1.0337529,1.7438207,1.4676712,1.2234155,1.2338495,1.1771595,1.3056599,1.5124761,0.9962727,1.3064026,2.505303,2.4991093,2.6764152,2.1179824,2.0404887,1.3223596,1.252151,1.4209943,1.3506715,1.0382016,1.036085,1.2386038,1.6648984,2.0545924,1.6208661,1.9417145,1.8711413,1.7104821,1.4203377,1.1116383,1.0624361,1.0352484,1.0957218,1.6096202,1.3549815,1.2945292,1.3401,1.1835217,1.1807282,1.3237383,1.2301466,1.6294165,2.4362636,1.4050486,0.54086804,0.13183084,0.9144671,1.0065181,0.8908838,0.28618068,0.72444904,0.41764706,0.73466706,0.6027074,0.5166604,0.6593969,0.29364228,0.33574146,0.31202972,0.2902633,0.50792885,1.054858,0.6825325,0.43813148,0.58398867,0.45733538,1.7827756,1.5866749,0.81555843,0.5288085,0.5344939,1.2174475,2.2934165,1.2299029,0.79958403,0.67956144,0.50152236,1.3712575,0.8673346,0.5562657,1.68624,0.9998859,0.76786596,0.6963277,1.1511766,0.7753617,0.58234465,0.6157766,0.7318417,0.8205551,0.6051512,0.49287122,0.73199123,0.84323406,0.7213454,0.859851,1.3144327,1.6684818,1.76134,1.667501,0.9407031,0.7206862,0.5935078,0.6026805,0.54063326,0.55766565,1.9309232,1.1080928,0.7001412,0.6221441,0.7062193,0.5306615,0.5637951,0.45387065,0.43645835,0.44497365,0.4572613,0.50635743,0.69682264,0.85788417,0.6172898,0.4776491,0.8002988,1.4169865,0.90993756,0.7594913,1.1357967,1.3715866,2.1789877,1.3109244,0.48106295,0.31380552,0.38102,0.38030756,0.881283,1.821708,0.71251553,0.6132667,0.52956265,1.0786207,1.2069696,0.5683426,0.3891254,0.4459979,0.4564973,0.57629263,0.5618068,0.51041305,0.5049449,0.46093315,0.6197339,0.88821584,0.5670631,0.51026505,0.92404526,1.0954864,1.5100172,1.0367945,0.7107697,0.659604,0.63622415,1.1170483,1.1808262,0.60520935,0.5445411,1.289805,0.62177896,0.7199255,0.7177691,0.54564035,0.17116758,0.827741,0.45609158,0.4222482,0.5006121,0.37039828,0.96274775,0.7612033,0.32656747
+-0.18633986,-0.4424889,-0.6178887,-0.60126734,-0.6934409,-0.66844,-0.7225915,-0.8299801,-0.8601433,-0.82415795,-0.4781201,0.07764312,-0.16740415,-0.2209957,-0.43372554,-0.42002666,-0.39931387,-0.4782455,-0.6047005,-0.69204444,-0.7529744,-0.26803702,-0.329452,-0.37801075,-0.5049337,-0.6726991,-0.57089734,-0.5538961,-0.5595455,-0.6101785,-0.62421453,-0.63249654,-0.6365869,-0.7080792,-0.6300126,-0.32351694,-0.06513222,-0.16544116,-0.36132586,-0.58039844,-0.6739168,-0.7676883,-0.8371564,-0.73444796,-0.55588645,-0.63295674,-0.75351804,-0.83297634,-0.9067638,-0.7148687,-0.6694004,-0.5806463,-0.5432775,-0.4921434,-0.5041057,-0.6300428,-0.78341585,-0.8753543,-0.91947865,-0.9882468,-1.0295368,-1.046726,-1.0937865,-1.1045508,-1.148329,-1.1481043,-1.0961734,-1.1013297,-1.1052811,-1.1578956,-1.2434683,-1.3844397,-1.4154041,-1.3974242,-1.3711133,-1.162065,-0.3890654,-0.48190427,0.057068042,-0.26704007,-0.441015,-0.59628755,-0.7424565,-0.8376423,-0.92161083,-0.99272144,-1.0552998,-1.1034043,-1.143866,-1.1771549,-1.2166224,-1.2635384,-1.2626524,-1.2512448,-1.263459,-1.3315423,-1.3425579,-1.3380303,-1.1699028,-0.93165874,-0.79737175,-1.0554314,-1.1899843,-1.2505993,-1.3144157,-1.3200732,-1.3679459,-1.3642713,-1.3528903,-1.3560448,-1.3421617,-1.3345709,-1.3363738,-1.406367,-1.3964071,-1.3391411,-1.3025538,-1.2878059,-1.2659701,-1.257918,-1.2374072,-1.2470914,-1.2775131,-1.3044633,-1.3718675,-1.3813381,-1.1749561,-1.1120875,-1.2280059,-1.2960598,-1.3092984,-1.304326,-1.3403695,-1.3044322,-1.2918382,-1.267171,-1.2589594,-1.2682118,-1.2830093,-1.2914836,-1.2938277,-1.269784,-1.2936358,-1.3095293,-1.3725245,-1.4195938,-1.4165393,-1.384178,-1.3436007,-1.334697,-1.3150992,-1.3044636,-1.2697853,-1.2417167,-1.2669383,-1.3111818,-1.3271933,-1.3552134,-1.3914006,-1.3018905,-1.3510993,-1.3963325,-1.392739,-1.3614215,-1.3752378,-1.4201102,-1.3899777,-1.4160463,-1.3952471,-1.35225,-1.2753679,-1.2357576,-1.2455148,-1.2480369,-0.77074796,-0.82669836,-0.82649267,-1.0440431,-1.1366794,-1.1918579,-1.2179759,-1.2123394,-1.1842382,-1.2077942,-0.7819698,-0.23258963,-0.27360198,-0.45817244,-0.45868975,-0.5661897,-0.6238836,-0.68675613,-0.7761371,-0.79539895,-0.87224305,-0.8285054,0.5614409,0.46364248,0.59551454,0.5466918,0.38681492,0.20530549,0.17743436,0.086335436,0.038961,-0.022600882,0.013165109,0.4295423,0.37330455,0.516908,0.4538852,0.53035194,0.62500966,0.5224808,0.36410862,0.2974883,0.21189484,0.1951226,0.14556538,0.11447993,0.07012455,0.11110983,0.077386245,0.06658615,-0.011314668,-0.065508716,-0.109449916,-0.14800912,0.1592165,-0.0011851415,-0.33006233,-0.23161793,-0.030769788,0.13421991,0.01809486,-0.18379793,-0.07896169,-0.22888145,0.06866953,0.12914422,0.08720161,0.08257149,-0.32913864,-0.11038805,-0.35252345,-0.54090893,-0.1579305,0.040774412,-0.47074425,-0.596935,-0.5830505,-0.18343803,0.38196015,0.5006353,-0.052205198,-0.36670104,-0.34229964,0.18849699,0.8912621,0.06065432,-0.5333883,-0.45873535,-0.3229441,0.35683388,0.04704453,-0.2128317,0.20946011,-0.13729173,-0.48185587,-0.4299165,-0.17367223,-0.23475239,-0.14028367,-0.082700096,-0.2401453,-0.47144926,-0.46153027,-0.35232896,-0.009899333,-0.42094463,-0.35567906,-0.14111555,0.5249021,0.49950886,0.60959566,0.3248873,-0.00052469224,-0.24775538,-0.2575191,-0.2190324,-0.1701284,-0.06373013,0.5453793,0.4223049,0.20886016,0.1910784,0.12700734,-0.11635017,-0.2512396,-0.31278077,0.031151012,-0.21994394,-0.1811445,-0.07819285,0.0843638,0.39622223,0.47306427,0.4888066,0.78520525,0.53054225,0.4602198,0.43385777,0.5001681,0.46806347,0.7936382,0.48706946,-0.1266515,-0.26923025,-0.11020043,-0.21850735,0.19631232,0.53376144,0.24357462,0.27982697,0.21034172,0.28431195,0.27942583,0.053042684,-0.35708007,-0.65125954,-0.48164272,-0.6315138,-0.5020129,-0.37460476,-0.51706445,-0.44563007,-0.18677586,0.06272084,-0.3944619,-0.47309202,-0.084189795,0.23535892,0.38214052,0.4677856,0.3156085,0.20884189,0.0842645,0.15068495,-0.005151145,0.054482803,0.063806035,0.14565787,0.19888306,0.20303543,0.4958961,0.33346525,0.043754093,0.16868001,0.07479013,0.03833081,-0.081007935,-0.26309985,-0.036361896,-0.03284108,-0.33240458
+-0.22058266,-0.44004446,-0.5689064,-0.6705632,-0.8558787,-1.005036,-1.067394,-1.0997846,-1.0421854,-0.5139944,-0.18027925,-0.12783921,0.4216934,0.6201769,0.20870778,-0.25538987,-0.44620776,-0.5886026,-0.7028042,-0.7889156,-0.7896866,0.65740514,1.2187886,0.5811843,0.27127868,-0.03901667,0.046641327,-0.13875276,-0.31611308,-0.44639945,-0.60145897,-0.707984,-0.74031126,-0.7211983,-0.67174757,-0.29567206,0.13261172,0.7089593,0.05781529,-0.3560138,-0.593306,-0.73359215,-0.83725893,-0.88534975,-0.8859457,-0.9724529,-1.0444788,-1.1016235,-1.1524001,-0.25092608,0.28800938,0.048027,-0.19130358,-0.18080807,-0.11509981,-0.2516004,-0.5904892,-0.73028624,-0.89589316,-0.99559,-1.0621109,-1.1086574,-1.1363609,-1.1281905,-1.1001347,-1.1155268,-1.1091247,-1.1585636,-1.1976515,-1.2239732,-1.2678754,-1.2600558,-1.2665812,-1.2698318,-1.2718316,-1.1511614,-0.90370154,-0.8398308,1.0300015,0.059205957,-0.3966074,-0.5890504,-0.7919924,-0.94525933,-1.0372252,-1.0876383,-1.1092436,-1.1265416,-1.1235121,-1.1245774,-1.1184118,-1.1448321,-1.1491647,-1.1667418,-1.1659969,-1.1830128,-1.1911092,-1.2143178,-1.2025979,-1.2073145,-1.219344,-1.2595525,-1.2704463,-1.2324402,-1.206624,-1.1589649,-1.201291,-1.2324755,-1.2700459,-1.271382,-1.256974,-1.2511513,-1.2499872,-1.2527051,-1.2260627,-1.1983302,-1.1762938,-1.1648661,-1.1526561,-1.1393341,-1.1477154,-1.1725842,-1.1789094,-1.1920592,-1.186346,-1.2098297,-1.2204034,-1.2089636,-1.2176213,-1.2242393,-1.213528,-1.2078154,-1.2007806,-1.1801672,-1.1757498,-1.1719859,-1.1701014,-1.1628904,-1.1564226,-1.1521933,-1.142642,-1.1545597,-1.157622,-1.1488881,-1.171465,-1.1932075,-1.2061545,-1.205502,-1.1973494,-1.196899,-1.1775081,-1.1874113,-1.1841644,-1.1694881,-1.1595781,-1.1754199,-1.2281015,-1.232537,-1.2450664,-1.1825671,-1.1879556,-1.1760193,-1.172444,-1.1894015,-1.1923233,-1.1721295,-1.2178185,-1.2092558,-1.2012597,-1.184763,-1.1832554,-1.1613514,-1.1818645,-1.1872588,-1.1584924,-1.1652462,-1.1549766,-1.1803362,-1.1656642,-1.1633584,-1.1612321,-1.1697334,-1.1682792,-1.1565715,-0.79134184,-0.22355816,-0.27484497,-0.6322089,-0.769903,-0.8741498,-0.9436419,-1.0070841,-1.0286214,-1.0417755,-1.0371109,-1.0171654,0.9093057,1.0589162,1.1701376,1.5963523,1.228964,0.94213474,0.5890021,0.42463964,0.37940076,0.38853619,0.46702135,1.7144191,1.3537982,1.5124633,1.4822791,1.6355048,1.6832519,1.7101815,1.9634626,1.5851996,1.4247816,1.294422,1.2457919,1.1895822,1.1749141,1.1537569,1.1193576,1.0703171,1.0390801,1.0162559,1.030562,0.9736566,0.9393219,1.015635,0.8815601,0.7507558,1.6404202,1.7299714,1.5412705,1.47091,1.6080738,1.5866044,1.589715,1.7627008,1.7634218,1.7209358,1.5692507,1.4235947,1.3232193,1.16711,0.99964666,0.93654525,0.96655184,0.9765029,0.94528174,1.3379014,1.4155333,1.8571906,1.6068132,1.5509984,1.4855428,1.7082188,1.9835054,1.9306,1.6246562,1.4177434,1.2739463,1.2446579,1.2272797,1.2052293,1.484472,1.5511628,1.3908064,1.2836691,1.2707452,1.250632,1.2076437,1.2252374,1.2433108,1.2368665,1.2259926,1.628673,1.8623592,1.6805115,1.5062528,1.6634423,2.1446414,2.0210028,2.2056627,2.195354,1.9878094,1.8152924,1.6114199,1.4697976,1.3642192,1.2781564,1.5661981,1.8479881,2.0012138,2.0158226,2.1740549,2.1312046,2.028432,1.7910866,1.6400042,1.5350393,1.3903804,1.3192008,1.2713646,1.3018664,1.3591404,1.4081465,1.881651,1.8827834,1.9574018,2.176176,2.3307257,2.208139,2.4283485,2.2449584,2.3235528,1.935941,1.6125922,1.389888,1.3752859,1.7677919,1.9412072,2.1013765,2.036652,2.2174418,2.3130245,2.2155597,2.0917354,1.8399663,1.7500082,1.6225445,1.5942949,1.5344787,1.4234037,1.2818178,1.2641946,1.3644156,1.7342021,1.7175603,1.7141168,1.6148522,1.4930699,1.429215,1.4018257,1.3030071,1.1941953,1.0730908,1.24351,1.2817461,1.2270966,1.2077355,1.2328571,1.2615539,1.8882684,2.0444548,1.8080052,2.0690267,1.97372,1.9269372,1.9826392,1.6593603,1.5754862,1.6081474,1.4282155
+0.89165413,0.9750955,0.5605788,0.28940773,0.16205147,0.033313558,-0.13377723,-0.16480696,-0.06498235,0.5011053,0.50926715,0.3268468,0.19023246,0.23899546,0.118410215,-0.043127708,-0.18697134,-0.27291912,-0.31455946,-0.34425765,-0.38377565,0.44600996,1.0517552,0.46807623,0.27064714,0.059636317,0.02151411,0.08882196,-0.14000905,-0.18530625,-0.2653849,-0.32808816,-0.36835834,-0.3901936,-0.11142319,0.15261799,0.25373843,0.86473125,0.5081009,0.2381053,0.014737666,-0.13619897,-0.25731146,-0.23715752,-0.27823097,-0.27041632,-0.23398957,-0.2109198,-0.23059642,0.02394759,0.33277872,0.32276344,0.00410448,-0.041838787,0.04104019,0.47274792,0.19206549,0.039955534,-0.023387931,-0.0018950477,0.030734599,0.04260581,0.077079736,0.0977084,0.058238827,0.09882567,0.094183035,0.08515448,0.077098034,0.14048481,0.14370653,0.16370168,0.11997593,0.0941188,0.11664342,0.0013507381,0.15473914,-0.112104766,0.14170119,0.094308846,0.04030212,0.0041513517,0.03360375,0.0263884,0.052105747,0.05621212,-0.0048239753,0.004098423,0.00804133,0.014463566,0.01607626,-0.003860794,-0.009243719,-0.014612548,-0.0412646,-0.0388866,-0.042217158,-0.056728043,-0.061308466,-0.06258596,-0.0016857609,-0.034786306,-0.0691056,-0.06490103,-0.07497082,-0.116403155,-0.07070293,-0.08551612,-0.10647421,-0.10327662,-0.11821725,-0.12831914,-0.108596586,-0.17256534,-0.17517793,-0.13178301,-0.13525549,-0.15203199,-0.16692603,-0.19035962,-0.1670953,-0.15189767,-0.17898929,-0.1948601,-0.21587175,-0.20456389,-0.21535283,-0.22600377,-0.22163698,-0.24440536,-0.24392807,-0.24253991,-0.23372751,-0.22713047,-0.23584145,-0.23530725,-0.2422806,-0.2712807,-0.28481695,-0.2700517,-0.26993412,-0.27493656,-0.28774723,-0.29988754,-0.3032434,-0.30294245,-0.31277445,-0.32503137,-0.3333383,-0.33422562,-0.35819405,-0.36835906,-0.33370793,-0.32966486,-0.35445818,-0.36052397,-0.3474328,-0.389422,-0.3915125,-0.38341647,-0.37524015,-0.37486976,-0.39352676,-0.4006429,-0.39081073,-0.39645034,-0.4215572,-0.43778324,-0.4434458,-0.43870544,-0.4284588,-0.43503624,-0.44585913,-0.52645874,-0.45387316,-0.5397031,-0.5482055,-0.49016595,-0.48028016,-0.48209006,-0.4995638,-0.5240179,-0.5445616,-0.5218839,-0.5513226,-0.603842,-0.5535934,-0.5918069,-0.6090053,-0.6117542,-0.577861,-0.5640695,-0.588657,-0.5821073,-0.60426486,-0.696599,-0.3299317,0.032879077,0.61103743,1.1092874,0.700318,0.42143857,0.17639184,0.01252833,-0.09625185,-0.17735568,-0.2812648,0.20190516,0.63915837,0.34755966,1.3615881,1.2577004,1.1866423,1.1948258,1.2782196,1.1715674,0.9619003,0.817577,0.6704133,0.5241111,0.40077484,0.31928736,0.2304526,0.16553329,0.0923056,0.035691127,-0.0008008331,-0.048943497,-0.055156223,-0.036285438,0.0149310455,-0.1186754,0.23897383,1.124671,0.9919886,0.90786666,0.9810882,1.014632,0.88214684,0.77628565,1.0045853,1.0492883,1.1432441,0.8904679,0.9850079,0.9263727,0.66112006,0.49054372,0.4757646,0.51478857,0.48017466,0.8778748,1.0591701,1.2263663,1.2403297,1.2009728,1.1462587,0.97519684,2.1862576,2.312796,2.1404104,1.8923951,1.6677765,1.4080398,1.2238524,1.1629094,1.2380803,1.4566246,1.4768484,1.4620218,1.2748846,1.200261,1.0775646,0.9636487,0.9678595,1.0198796,0.9001357,1.1891856,2.072005,1.8829024,1.9741292,2.542068,3.1877987,3.0243442,3.3148375,3.4235842,3.120101,2.9963646,2.914236,2.7981544,2.6570992,2.3929763,2.7062702,3.1996589,3.2966118,3.0424104,3.3325918,3.1409945,3.0196793,2.9670436,2.7827463,2.768786,2.548426,2.363323,2.1082172,1.8352993,1.6410353,2.2008057,2.963509,2.8233755,2.7207456,3.142931,3.427681,3.2300267,3.312014,3.1274698,3.0208123,2.9123547,2.735777,2.5999207,2.408927,2.5858479,3.1222203,3.3623333,3.073412,3.3478508,3.4240239,3.1088943,3.026928,2.8306565,2.6390562,2.4428868,2.2702386,2.0678442,1.9032792,1.6163118,1.381553,1.2900885,1.7915379,1.7434263,1.4834661,1.5918669,1.4718416,1.3085085,1.2053559,1.0862923,0.9774245,0.8484812,0.8048903,0.7547407,0.6544421,0.56295866,0.47507313,0.4806911,2.012644,2.658928,2.4048266,2.597992,2.6254478,2.3996105,2.3182707,2.2404518,1.7734772,1.5212275,1.5027435
+1.1105685,0.84831935,0.69985217,0.60944664,0.5531471,0.4543436,0.365652,0.4399305,1.1643234,2.1245112,1.6052475,1.2500771,1.0602831,1.0207325,0.92486566,0.76868194,0.59024507,0.4394156,0.40473515,0.38977945,0.38037714,0.74930185,0.98509085,0.6189113,0.5881891,0.55753136,0.57801324,0.47719562,0.42772064,0.4196449,0.41220015,0.38094336,0.3562864,0.34625292,0.3717191,0.5373941,0.9200123,0.6644989,0.46907255,0.43521267,0.3856752,0.361636,0.35372755,0.36270684,0.35144836,0.3403916,0.33622903,0.32298434,0.32001984,0.34751976,0.4574243,0.4043985,0.44056067,0.36398715,0.33286557,0.318395,0.30826727,0.2973222,0.27736652,0.27097592,0.26514614,0.265711,0.27161363,0.27369916,0.27771872,0.2752798,0.266333,0.25839785,0.26612377,0.27288207,0.27716103,0.29278743,0.27165616,0.26210102,0.28432825,0.29873565,0.29667544,0.3686832,0.2980082,0.30232957,0.30038926,0.32291254,0.3124879,0.3190735,0.30161548,0.31376714,0.31974563,0.33574536,0.34031484,0.34080878,0.32768437,0.32035437,0.31596008,0.31342745,0.31474063,0.31194472,0.3110071,0.29829767,0.29385072,0.29469657,0.3153486,0.3225789,0.31883103,0.3121611,0.31848213,0.33248416,0.3220779,0.31736612,0.30373886,0.30880454,0.3174395,0.3232615,0.33631155,0.34931648,0.3521917,0.3412986,0.3449807,0.3506785,0.3716398,0.374296,0.37132835,0.35730404,0.34729218,0.35059804,0.35455844,0.3667243,0.33613354,0.32625934,0.33543816,0.33271015,0.3190056,0.31644922,0.32369912,0.33302608,0.34620345,0.35650545,0.36250946,0.362266,0.36018813,0.34730065,0.3496315,0.3537064,0.35306826,0.34940052,0.35349762,0.37727982,0.38573456,0.36941552,0.35291618,0.35391736,0.36201048,0.35147175,0.34410283,0.35429674,0.35464102,0.36168587,0.38193274,0.37076592,0.37598658,0.36294353,0.35469478,0.3587872,0.3696216,0.37555835,0.39060575,0.42551416,0.38541222,0.38744062,0.39261013,0.3797165,0.37360704,0.3624425,0.38025534,0.39279094,0.4460304,0.40695325,0.35629117,0.36510816,0.3554654,0.37254435,0.3891288,0.39861587,0.41272038,0.42723313,0.4431018,0.47595876,0.4276081,0.43995872,0.43058178,0.40794188,0.38829756,0.40377015,0.42451394,0.45148405,0.43920797,0.43612516,0.5239968,0.92447954,2.481892,1.9606513,1.6594286,1.3515093,1.0890408,0.9102801,0.8750062,0.8504579,0.78992385,0.78895766,0.797454,0.755679,1.9794972,1.9132104,1.9848454,2.127415,2.0298193,1.9756249,1.7741306,1.5635834,1.4359235,1.3460525,1.2781028,1.2089988,1.1845616,1.1418083,1.090737,1.0311099,1.0405138,1.0333488,1.0442628,1.0938574,1.1594481,1.1499349,1.0658239,1.66639,1.9230847,1.9400542,1.8137136,1.970294,1.8645935,1.8331687,2.3403578,2.101719,2.1316814,2.049032,1.960637,1.9644082,1.8611422,1.7798733,1.7361662,1.7640841,1.7754251,1.8492856,2.0789604,2.3616967,2.359819,2.2778063,2.2309303,2.096302,2.320248,2.830366,2.412067,2.2581127,2.1752872,2.1586964,2.0852787,2.074382,2.3470688,2.324837,2.2870903,2.2269077,2.1884592,2.1444726,2.0860834,2.0457084,2.0406406,2.0246837,2.0696783,2.2176466,2.8315763,2.7845712,2.4178123,2.6757736,3.0990844,3.200048,3.2541194,3.2117176,3.0061378,2.7461672,2.558621,2.4398332,2.373007,2.342873,2.5589395,2.9436347,3.1349704,2.9258065,3.1862755,3.0543509,2.809443,2.5812378,2.4804878,2.4005692,2.3361502,2.312234,2.2883215,2.2377179,2.2314467,2.2619963,2.6724286,2.6450849,2.5222838,2.9894636,3.1715198,2.9420228,3.0029895,3.1110516,2.780311,2.5882404,2.4418948,2.3353405,2.2864583,2.3765264,2.6328616,2.978357,2.6790693,3.1688051,3.3111901,2.9107623,2.6921165,2.5125802,2.473198,2.367901,2.343553,2.299806,2.1909995,2.1130836,2.0445082,1.9152945,2.242151,2.2790008,2.2089047,2.0985467,1.9590307,1.914662,1.7916305,1.689527,1.6064618,1.4289167,1.4208956,1.3985109,1.3699164,1.310797,1.2237357,1.3405297,1.9929683,2.611334,2.1405427,2.3106616,2.3097181,2.3422623,2.1961794,1.9744815,1.7188554,1.5413888,1.5734698
+0.07386941,-0.07003673,-0.017677955,-0.002422519,-0.32705966,-0.30522126,-0.15124655,-0.0848993,-0.050360464,-0.24318707,-0.34584478,-0.26939118,-0.32963586,-0.28753433,-0.23043129,-0.23944438,-0.19204676,-0.09904512,-0.17522913,-0.20949739,-0.28426412,-0.02388326,0.05212783,0.10934885,0.020374924,-0.11442267,-0.13894048,-0.0787142,-0.052591197,-0.06626358,-0.1474244,-0.15362519,-0.22621372,-0.1625793,0.124410465,0.07166684,-0.10143911,-0.110309206,-0.050816543,-0.11345529,-0.22585568,0.047262467,-0.019505046,-0.09216193,-0.14019251,-0.19065404,-0.23089916,-0.28481328,-0.088304095,-0.116920985,0.24781331,0.2126035,0.35327858,0.37564918,0.20808814,0.15473422,0.10906419,0.18020633,0.2687606,0.19309118,0.038314767,-0.06372329,0.051336937,0.031600304,-0.10137769,-0.22776893,-0.28922585,-0.31704283,-0.45214206,-0.23246878,0.029414706,0.20222335,0.0754691,0.10764473,0.20302966,-0.005130075,-0.07988509,-0.16694152,-0.08963501,0.5334057,0.3585524,0.27731195,0.1878106,0.18295455,0.59485215,0.3865004,0.3624187,0.08948096,-0.0019855723,-0.113884114,-0.13632506,-0.25625437,-0.22622839,-0.21268308,-0.021407314,0.16195878,0.09286436,-0.04893083,0.13934118,0.5963478,0.37509647,0.2828429,0.22516367,0.16863337,0.05578707,0.5975295,0.8037878,1.0112599,0.7341608,0.7402259,0.6848762,0.41979903,0.23476568,0.2903843,0.18190274,-0.01299677,0.056762584,0.07702234,-0.055472292,-0.17707849,-0.1891548,-0.11651639,-0.19974285,-0.16912988,0.3506676,-0.00061338395,-0.18626845,-0.18282849,-0.20916355,-0.14352456,0.11642373,0.27170715,0.1395947,-0.052408345,-0.20421028,-0.24373901,-0.28618893,-0.33624882,-0.3120432,-0.30840346,-0.40141147,-0.49455714,-0.4706527,-0.32462537,-0.2818383,-0.3589827,-0.45576257,-0.46400928,-0.48512828,-0.44046903,-0.4425946,-0.49427897,-0.47038805,-0.3597519,0.5079498,0.5779484,0.49270028,0.3565045,0.31436354,0.27559698,0.27817664,0.14009598,-0.007639639,0.06432942,-0.045405008,-0.21260384,-0.3272223,-0.36037964,-0.3985327,0.416901,0.9241415,0.8658489,0.7092952,0.61290497,0.4271893,0.303506,0.48121142,0.3613751,0.284944,0.2447637,0.28191376,0.10060619,0.00023692101,0.020897537,0.001250796,-0.079077564,-0.108162455,-0.021233447,-0.009549327,0.75243866,0.89800787,0.79596585,0.5095244,0.20496497,-0.027806528,0.45004496,0.956106,0.9149632,0.9129077,0.9614347,0.76028186,0.58587843,0.84145653,0.61937845,0.4257024,0.5591748,0.58008033,0.59695256,0.6005707,0.93201566,0.79253626,0.6250944,0.46412247,0.65347815,0.54739356,0.74529564,0.6645523,0.59488636,0.56419396,0.7873586,0.6327715,0.60389805,0.65103465,0.6811594,0.6112748,0.7711626,0.6817597,0.6795051,0.47176564,0.13687068,0.14775217,-0.07040066,0.07879895,0.4624248,0.5097146,-0.015973605,0.2642682,0.22296414,0.39458805,0.5939869,0.6673938,0.39914134,0.26332876,0.37371397,0.4851966,0.45721397,0.40773106,0.39231348,0.15629548,0.12771365,0.18103954,0.24262634,0.2939349,0.3236056,0.3317525,0.25298792,0.28929076,0.33855116,0.35098645,0.3981618,0.36308733,0.2584538,0.38731694,0.42792588,0.25019473,0.12558374,0.26141852,0.17490935,0.07424725,0.12652788,0.30593067,0.18239653,0.18124163,0.18357897,0.03189335,0.2168546,0.04900191,0.22480491,0.317816,0.2079109,0.17331591,0.16798139,0.17350522,0.32708222,0.19525361,0.30337295,0.2830222,0.24366108,0.14856577,0.11370208,0.15108255,0.4711697,0.6573293,0.6794924,0.49165902,0.30357763,0.2649919,0.46150318,0.37097907,0.20194703,0.16846928,0.023170672,0.16737264,0.20269543,0.14958677,-0.03085982,0.02252189,0.099855416,0.21840471,0.35462192,0.4303618,0.47339886,0.1468187,0.1652804,0.6029512,0.5955716,0.23194909,0.112609826,0.25202534,0.077354945,0.661641,0.87675595,0.48333874,0.17787904,0.43807763,0.21824998,0.12072345,-0.0068099126,0.019940756,0.006925009,0.0056428984,0.20975319,0.08592064,0.07089258,0.3254657,0.43201548,0.36742163,0.34563693,0.25648218,0.09687362,0.069880076,0.20892861,0.15573186,0.5526566,0.28507334,0.638867,0.81082463,0.74911743,0.8874298,0.4340217,0.056330882,0.60868067,0.042252548,0.085373,0.4985532,0.37198997,0.46026042,0.46157128,0.43703836,0.063780725,0.5552198,0.6321787,0.741333,0.593953,0.54598415
+0.2084617,0.055110253,-0.0041165575,0.110365495,-0.076360814,-0.051246338,-0.026426978,-0.031059287,-0.08556145,-0.16293797,-0.13431081,-0.14113379,-0.17562765,-0.021303274,-0.039817236,-0.0727771,-0.06542178,-0.07334716,-0.09142909,-0.13992003,-0.14819482,-0.060689352,-0.038316123,-0.050231524,-0.20636344,-0.23194098,-0.22119027,-0.19090891,-0.15534109,-0.20659739,-0.2727242,-0.2513134,-0.22680297,0.0028767437,0.09181773,-0.0774752,-0.1463154,-0.13580269,-0.20509729,-0.24440804,-0.2246362,-0.22349715,-0.29996482,-0.31474993,-0.23986101,-0.25849944,-0.29171434,-0.28632942,-0.14919487,-0.2825547,0.289278,0.17066185,0.14868653,0.0011587888,-0.03983874,-0.04700253,-0.05397909,-0.08831202,-0.063822694,-0.16285068,-0.20483628,-0.17736176,-0.12328426,-0.21844086,-0.27729023,-0.32651865,-0.3366421,-0.35862398,-0.3630384,-0.2716064,-0.30994815,-0.2555249,-0.36888322,-0.3251283,-0.3228661,-0.38621172,-0.38937816,-0.39763898,0.20158169,0.08661656,-0.07956054,-0.055615567,-0.12629807,-0.12935555,-0.0993549,-0.1623632,-0.26589218,-0.3439321,-0.34605718,-0.37564817,-0.3453294,-0.3491066,-0.34514362,-0.31297457,-0.2951972,-0.30309796,-0.36024576,-0.36465204,-0.15889001,-0.057699673,-0.03993409,-0.18544239,-0.14450723,-0.23254943,-0.28978774,-0.269481,-0.2635457,-0.026060581,0.06938745,0.31697777,0.13401692,-0.10997721,0.1814023,0.051635247,-0.11321857,-0.19620699,-0.1909638,-0.008167043,-0.15364403,-0.2928145,-0.2502821,-0.27751067,-0.35387427,-0.27140263,-0.25671047,-0.36633378,-0.40268183,-0.35705316,-0.39250016,-0.12666324,0.043302123,-0.090493254,-0.22013879,-0.32397318,-0.33151394,-0.296453,-0.31032088,-0.30659643,-0.2943021,-0.3650044,-0.4066561,-0.38744658,-0.30574197,-0.2785259,-0.37695318,-0.43849504,-0.45228863,-0.42450672,-0.36255002,-0.29736137,-0.42036963,-0.39742726,-0.35391426,-0.34718353,-0.05128225,-0.17311329,-0.25744146,-0.327496,-0.3587082,-0.2961524,-0.2930119,-0.410406,-0.38639063,-0.3333736,-0.49990326,-0.53288096,-0.48653507,-0.41529983,-0.405895,0.11675024,0.91289485,0.49775866,0.28197974,0.0496849,0.14333175,0.13622318,0.1665492,0.019991562,0.01580558,0.013463125,-0.092465214,-0.1291942,-0.14635614,-0.16046265,-0.23371565,-0.26951027,-0.24862131,-0.05378238,-0.1338889,0.7689614,1.439096,1.5693349,1.1363521,0.37048012,0.20601732,0.5852995,1.0092453,1.0767969,1.176983,1.2395947,1.0516208,0.64525795,1.2128842,0.7428974,0.5673298,0.5992382,0.682588,0.7452623,0.8253021,1.2074014,0.8661679,0.672159,0.4581426,0.959853,0.7499664,0.807196,0.762161,0.5954388,0.629076,0.9351846,0.6879399,0.6893112,0.7409816,0.6601697,0.59829354,0.8253408,0.77332765,1.0233468,0.9934744,0.5515448,0.2820345,0.20752472,0.40026268,0.6060112,0.60184324,0.36346114,0.5469559,0.53095824,0.5199873,0.60312223,0.37504047,0.40898818,0.27380735,0.37166268,0.30617443,0.33554804,0.45873845,0.55643713,0.24717516,0.2378358,0.15560311,0.109055705,0.28295258,0.37337586,0.48981807,0.36641693,0.15557024,0.0851155,0.114090934,0.079701476,0.14440346,0.1699579,0.4177754,0.6129775,0.30582756,0.24675351,0.27978873,0.30511326,0.11704548,0.17518163,0.4994713,0.39520168,0.37783358,0.4947456,0.19516802,0.21342924,0.09842841,0.10940119,0.057065375,0.08844461,0.108353,0.12565209,0.25076163,0.37247816,0.22540563,0.04868961,0.095930554,0.09478413,0.10436551,0.14293146,0.191504,0.386039,0.71227324,0.6591352,0.49123254,0.53802127,0.54290175,0.30547962,0.18864822,0.2261172,0.25369498,0.19189742,0.25433752,0.26847205,0.38785073,0.29355094,0.042333588,0.03531061,0.24489972,0.5178737,0.5731979,0.4691683,0.18305498,0.22784731,0.65874803,0.6898271,0.29129124,0.19093397,0.13304898,0.116918504,0.59697115,0.7011137,0.3986903,0.30935097,0.37001666,0.44833165,0.29033726,0.10392187,0.0006014779,0.07837009,0.09851342,0.2677892,0.21947679,0.09965267,0.24108306,0.29212052,0.44127464,0.37360787,0.21125522,0.09706541,0.23156288,0.35672888,0.42641002,0.6009494,0.3364548,0.5598419,0.7360401,0.79226005,0.8875623,0.38294035,0.17537355,0.6634332,0.13291612,0.07894034,0.5278206,0.37270916,0.2727617,0.5221935,0.34891212,0.29209152,0.45023927,0.48309526,0.6555342,0.4051743,0.27746564
+-0.85659957,-0.94105446,-0.97146904,-1.0463657,-1.0184898,-1.0974095,-1.1451609,-1.1758201,-1.1962316,-1.2189367,-1.2293639,-1.2326372,-1.2635211,-0.49598724,-0.4269879,-0.6860993,-0.874641,-1.0325915,-1.1360319,-1.1872504,-1.2178352,-1.2347457,-1.218087,-1.2771107,-1.2762802,-1.2917888,-1.3221213,-1.3067429,-1.268842,-1.2774618,-1.3115168,-1.3238503,-1.3265772,-1.321564,-1.221884,-1.114516,-1.2176044,-1.2765446,-1.3144825,-1.3404795,-1.362243,-1.3578055,-1.3398876,-1.3483438,-0.26488087,0.035858832,-0.38694894,-0.7283204,-0.8077811,-0.92978835,-0.7854236,-0.79804826,-0.9949281,-1.1110336,-1.1846638,-1.2326057,-1.2896256,-1.3087277,-1.3240471,-1.3399587,-1.3621733,-1.3538241,-1.3535662,-1.3393712,-1.322049,-1.316623,-1.320854,-1.3231285,-1.3343153,-1.3173146,-0.9701159,-1.0215676,-1.2373561,-1.313854,-1.3284018,-1.3180537,-1.3343928,-1.3329569,-0.9260839,-0.9642054,-1.238082,-1.2896693,-1.3149836,-1.3401787,-1.3194838,-1.3229036,-1.3353919,-1.3348882,-1.324935,-1.3263533,-1.3231448,-1.3360718,-1.3237507,-1.3134439,-1.3286854,-1.3290949,-1.3164909,-1.326727,-0.7219449,-0.87446153,-1.0689354,-1.1935029,-1.2643583,-1.2702371,-1.3002951,-1.3147503,-1.3109328,-1.3134172,-1.2322145,-1.1968493,-1.2882986,-1.3039389,-1.078211,-1.157258,-1.2610502,-1.2852274,-1.2622155,-1.2659309,-1.2617452,-1.2627928,-1.2736287,-1.3006546,-1.3060971,-1.3135836,-1.2968371,-1.3052535,-1.2913692,-1.295129,-1.3122034,-1.2916522,-1.2539575,-1.2509403,-1.2796837,-1.2770759,-1.2785932,-1.261843,-1.2702041,-1.2676032,-1.2616373,-1.2577245,-1.2609234,-1.2850344,-1.2852435,-1.2925131,-1.3065587,-1.3009266,-1.290039,-1.2968009,-1.2922664,-1.295225,-1.3081975,-1.2863511,-1.2938819,-1.2941121,-0.92968845,-0.9445168,-1.0992405,-1.1950793,-0.9213426,-0.9135895,-1.0303054,-1.160972,-1.2299287,-1.2255014,-1.2708095,-1.297682,-1.3006797,-1.2861304,-1.2849433,-1.250449,-1.228229,-1.2336293,-1.2470262,-1.272486,-1.2589244,-1.2518154,-1.2248046,-1.2625108,-1.265486,-1.2339336,-1.2436359,-1.1369126,-0.99094665,-1.0744513,-1.1265883,-1.1653724,-1.2104845,-1.0126675,-0.80272,-0.47272408,-0.7073936,-0.7618296,0.16794032,-0.122508936,-0.32552338,-0.3038934,0.25480136,0.24348572,0.077216394,0.16624323,-0.06673964,-0.13648424,-0.22772998,-0.28156006,-0.30024642,-0.39545992,-0.53327286,-0.61707425,-0.032726683,0.19209108,-0.0984656,0.015684165,-0.0846582,0.08977987,-0.113041185,-0.21872836,-0.30011293,-0.39541322,-0.54564726,-0.2529608,-0.3859185,-0.45126748,-0.51812345,-0.58231485,-0.6522502,-0.721159,-0.7046687,-0.5599599,0.073495194,-0.07120823,-0.2572325,-0.33083916,-0.33624947,-0.3457679,-0.35664338,-0.40951133,-0.3360737,-0.39019316,-0.38947886,-0.41482246,-0.40744781,-0.41905212,-0.56148887,-0.6161605,-0.7457689,-0.8210763,-0.72681,-0.5955385,-1.0187203,-0.7898195,-0.96422124,-1.0657375,-0.8332224,-0.6889062,-0.63329613,-0.6530733,-0.68722254,-0.8422974,-0.775663,-0.8896253,-0.9963095,-1.0450461,-0.8907248,-0.39374903,-0.9253539,-0.95127785,-0.6813648,-0.85797226,-1.0071712,-0.97748077,-0.5710565,-0.87481177,-0.6795635,-0.7391729,-0.99094284,-0.7782624,-0.77363354,-0.89433545,-1.0441016,-1.1227027,-1.1439404,-1.0984595,-0.64061916,-0.64636946,-0.55727905,-0.620752,-0.97286844,-1.0582488,-1.0382476,-1.0546064,-1.0517339,-0.9656724,-0.4601624,-0.228859,-0.07460994,-0.047210284,0.07414619,-0.4441797,-0.77735484,-0.5227248,-0.3839649,-0.79089516,-0.85830593,-0.86500025,-0.6263069,-0.40820873,-0.8805089,-0.94271934,-0.92077625,-0.6873493,-0.26266807,-0.087232195,-0.53200555,-0.3886947,0.1706227,0.25648278,-0.50523525,-0.7254987,-0.8329518,-0.8973491,-0.54718864,0.15863228,0.25886038,0.17636067,0.035310887,0.10557354,0.23237354,-0.28382605,-0.7793213,-0.83406764,-0.83647835,-0.583035,-0.52969635,-0.53141654,-0.4393823,-0.23460674,-0.034176566,0.017677255,-0.3938346,-0.7911493,-0.65016955,-0.14711311,0.22253475,0.44805795,0.18566185,0.10898296,0.011347778,0.14212608,0.05357171,0.15375765,-0.038304903,0.10291136,-0.32356638,-0.5883429,-0.08231986,0.02039425,-0.09496983,0.23726287,0.17134656,0.14382982,0.16431403,0.097382225,0.1324175,0.018743835,-0.23087692
+-0.49538583,-0.6914899,-0.7886442,-0.8452104,-0.8511114,-0.97704196,-1.0421112,-1.157517,-1.2365313,-1.2415326,-1.2927384,-1.3123376,-1.0842412,-0.7074673,-0.62490404,-0.86511433,-0.9256071,-1.0256368,-1.1427758,-1.223844,-1.2680514,-1.129437,-0.9502772,-0.92140853,-0.93816817,-1.0589948,-1.0310261,-1.0437837,-1.0440938,-1.085288,-1.1915941,-1.2548733,-1.2785649,-1.2921133,-0.6951039,-0.7446589,-0.9341115,-1.0477891,-1.1073958,-1.2152922,-1.2628322,-1.3050177,-1.3315889,-1.1876249,-0.23016667,-0.2960587,-0.54501736,-0.7813668,-0.8189182,-0.8651368,0.0764266,-0.12731406,-0.23025909,-0.32857224,-0.4468401,-0.60255086,-0.7081366,-0.8873315,-1.0137976,-1.1078498,-1.2007952,-1.2816443,-1.3113966,-1.2988034,-1.3519877,-1.4335603,-1.4690928,-1.4857637,-1.4663622,-1.2832605,-1.2643805,-1.3033749,-1.3938156,-1.451589,-1.3697097,-1.4168396,-1.0038515,-0.9515641,-0.10777574,-0.3759924,-0.72684115,-0.92195106,-1.1132696,-1.2037226,-1.1084263,-1.2572899,-1.3499966,-1.434708,-1.4793249,-1.509932,-1.5218349,-1.5381931,-1.6068763,-1.5449299,-1.5599425,-1.5978663,-1.6001942,-1.6418126,-1.0606238,-0.27367616,-0.58076763,-0.6618586,-0.9567702,-1.1481978,-1.29386,-1.376567,-1.4340786,-1.4791067,-1.0284809,-0.70647156,-0.99977016,-1.2657416,-1.3542243,-1.4173088,-1.4777408,-1.5188122,-1.5574911,-1.5687034,-1.5778675,-1.5783061,-1.5819296,-1.5695255,-1.5829666,-1.5937374,-1.6210945,-1.6006883,-1.5740936,-1.5767992,-1.5760283,-1.6466575,-1.5147984,-1.5012996,-1.5896002,-1.5839245,-1.5491797,-1.5743313,-1.55044,-1.5639096,-1.5558777,-1.5368048,-1.5138563,-1.4751991,-1.446132,-1.4699175,-1.5049927,-1.5036522,-1.4941514,-1.4580742,-1.4415368,-1.4911568,-1.4673941,-1.4480746,-1.4764675,-1.517846,-1.3627983,-1.3097303,-1.415173,-1.4742916,-1.2616402,-1.009591,-1.158561,-1.2885796,-1.3804294,-1.4120672,-1.4497557,-1.4898689,-1.4817672,-1.5195149,-1.4622982,-1.4164815,-0.93167925,-0.8965908,-1.0365806,-1.1228606,-1.0555031,-0.8899078,-0.9088919,-0.98998964,-1.1394953,-1.1913255,-1.236568,-1.2786268,-1.3115575,-1.3090858,-1.3310103,-1.2306387,-1.0861241,-0.6666359,-0.35030025,-0.54381144,-0.5840727,-0.6421966,-0.71654963,-0.7324408,-0.8514341,-0.64326406,0.08909098,-0.057486154,-0.01927673,0.08768467,-0.08339455,-0.19918773,-0.22644654,-0.2242217,-0.06834767,-0.1701436,-0.2520737,-0.35993183,-0.100264154,0.054291762,0.124266155,-0.057535253,0.10530231,0.16271049,0.088180356,0.04615418,-0.032334886,-0.14249992,-0.2012789,-0.25737673,-0.27496597,-0.37675884,-0.45390576,-0.51856256,-0.5776213,-0.5990182,-0.6122167,-0.277136,0.10103453,0.008149467,-0.15756798,-0.27475536,-0.21955615,-0.04763008,-0.038641684,-0.11024959,-0.038107283,-0.011258729,0.023508258,-0.036840774,-0.061080597,-0.15348399,-0.22379094,-0.2939656,-0.4000169,-0.40087327,-0.20912668,-0.026052192,-0.51420826,-0.50502765,-0.9443493,-0.8519079,-0.56502295,-0.07867337,-0.38037157,-0.4907136,-0.7469991,-0.8323387,-0.6216812,-0.76101744,-0.9372264,-0.8977801,-0.69112754,0.14753243,-0.66416025,-0.7473906,-0.07753531,-0.2467517,-0.7451868,-0.79288065,-0.10007828,-0.012290932,-0.22789305,0.15187359,-0.70854336,-0.5972366,-0.49944824,-0.6661849,-0.80566335,-0.8665782,-0.90239656,-0.81465703,-0.39715832,-0.011815496,0.082114495,-0.15941906,-0.7743328,-0.8350394,-0.7835583,-0.8580134,-0.8227861,-0.5450044,0.33034918,0.4024648,0.3809662,0.32308093,0.21887913,-0.14475474,-0.5680352,-0.15591854,0.12439352,-0.5594706,-0.5922483,-0.4311205,0.062161513,0.16930538,-0.57079977,-0.7303995,-0.60884094,0.21424031,0.44595128,0.45053652,0.07963764,0.21526751,0.5055919,0.45551747,-0.26278558,-0.7469783,-0.79550624,-0.87165874,-0.2540713,0.41700095,0.3477133,0.3087969,0.16442657,0.24358025,0.27267838,0.122055,-0.63321507,-0.639743,-0.65773,-0.6495187,-0.7691072,-0.37335485,-0.2999115,-0.31565085,-0.30204237,0.14584982,-0.3221851,-0.53304136,0.05200141,0.38334334,0.44289228,0.53027564,0.30344993,0.2489616,0.1473279,0.3481325,0.2682339,0.28694957,0.14020646,0.264172,0.2191568,0.045321126,0.098125055,0.12550922,-0.15951371,0.26696545,0.26176727,0.14073607,0.3015187,0.2535459,0.34519547,0.4013149,-0.12916085
+-0.83835185,-1.1342136,-1.2985233,-1.3387783,-1.4743788,-1.5303926,-1.5557752,-1.5797108,-1.5778443,-1.568702,-1.5923507,-1.3406597,-1.2405677,-0.5374961,-0.841202,-1.2661433,-1.3697867,-1.4558258,-1.528343,-1.5586675,-1.5250709,-1.3335506,-1.0316436,-0.8721678,-0.90124786,-1.1648009,-1.3285658,-1.1584542,-0.93126833,-1.10211,-1.3299878,-1.3952943,-1.447537,-1.2594771,-0.6830183,-0.8042745,-0.90911007,-1.1353304,-1.3993123,-1.5572399,-1.5922714,-1.6067921,-1.6071706,-1.537862,-0.82996035,-0.3360316,-0.7838831,-1.1976173,-1.3216219,-0.4128856,0.41047955,0.08519315,-0.08313487,-0.2127856,-0.30873773,-0.6435028,-0.94648707,-1.176877,-1.3386055,-1.4057184,-1.5080168,-1.5655993,-1.5814306,-1.541502,-1.623711,-1.64656,-1.5690588,-1.6292214,-1.5659881,-1.5552639,-1.5578258,-1.6531808,-1.7131582,-1.7139447,-1.6733521,-1.0611196,-0.53861886,-0.6279415,0.19787243,-0.5111385,-1.0154805,-1.1795042,-1.4177655,-1.4864706,-1.5048758,-1.5753376,-1.6201749,-1.6167724,-1.6057713,-1.6219807,-1.6333169,-1.6698205,-1.6758974,-1.6298673,-1.657928,-1.6873499,-1.6773221,-1.6726992,-1.5030533,-0.7342197,-0.88950616,-1.0539109,-1.4512029,-1.5337456,-1.6390427,-1.6498945,-1.6515417,-1.6663371,-1.655907,-1.6236686,-1.6430286,-1.6813291,-1.625859,-1.6544209,-1.6989266,-1.696799,-1.6410301,-1.6472653,-1.6596785,-1.6523049,-1.613437,-1.6568621,-1.6900744,-1.6771706,-1.6755729,-1.7162547,-1.7082744,-1.5911486,-1.6583904,-1.6494095,-1.6471393,-1.6492474,-1.6873446,-1.6824781,-1.676187,-1.6420816,-1.6295936,-1.660742,-1.651609,-1.6862229,-1.6795597,-1.6596711,-1.6494493,-1.6766015,-1.6988639,-1.7085958,-1.7032924,-1.6948798,-1.673502,-1.6581643,-1.6703465,-1.64061,-1.5831733,-1.58781,-1.5940707,-1.5950937,-1.6217124,-1.6436317,-1.648413,-1.5314136,-1.6272218,-1.6755092,-1.690996,-1.6644498,-1.6843728,-1.7058581,-1.7127576,-1.697486,-1.6925824,-1.6563845,-1.5023947,-1.515776,-1.5913899,-1.6138008,-1.1485398,-0.9317311,-1.0269332,-1.360635,-1.4840238,-1.5294058,-1.5565348,-1.5403805,-1.5394593,-1.5521667,-1.5358936,-1.3394284,-1.1077224,-1.056108,-1.1176476,-1.2670549,-1.3203876,-1.3894218,-1.4024708,-1.3169136,-1.4301398,-1.2151194,0.029210947,-0.37038732,-0.36971158,-0.4370119,-0.33736062,-0.59923655,-0.74250764,-0.8576491,-0.9262568,-1.0539229,-1.1209868,-0.8684665,-0.33782524,-0.3715293,-0.47032928,-0.28206718,-0.13644886,-0.30801207,-0.45577264,-0.5843159,-0.7039865,-0.794778,-0.86905164,-0.8061363,-0.79530424,-0.8785472,-0.9372928,-0.9968554,-1.043738,-1.0806484,-1.0715438,-1.0290903,-0.16420591,-0.50348735,-0.949466,-0.96222806,-0.518274,-0.2833713,-0.4923225,-0.7522359,-0.5858973,-0.8049675,-0.59888905,-0.56051755,-0.7337167,-0.80560243,-0.99706805,-0.9441414,-1.0680966,-1.0779684,-0.994251,-0.8418727,-1.1184168,-1.0499461,-1.3794568,-1.1681812,-0.62164056,-0.34421402,-1.0140399,-1.0134492,-1.0611763,-0.77827436,0.37043303,-0.71398365,-1.0067571,-0.9658787,-0.8250716,-0.4519621,-0.8993206,-0.9306226,-0.7067999,-0.68782365,-0.98845506,-0.96316576,-0.66253865,-0.70965064,-0.8149385,-0.7829383,-0.91727006,-0.9309679,-0.8134005,-0.7301836,-0.29173344,-0.8766494,-0.73713106,-0.6624438,0.09425288,0.19189388,-0.1709038,0.1130477,-0.6665676,-0.7451597,-0.7039503,-0.73645663,-0.8070715,-0.75463814,-0.26249665,-0.13279685,-0.2551372,-0.27836654,-0.38643658,-0.44976693,-0.7056748,-0.67906857,-0.45378828,-0.79657584,-0.8241522,-0.8454143,-0.6811429,-0.5517292,-0.34994707,-0.52269757,-0.11483423,-0.01163163,0.033362128,0.0035849437,0.10222055,-0.27662116,0.27719274,0.09007897,-0.7478387,-0.8674854,-0.79074717,-0.89960265,-0.7414741,-0.06135025,-0.45012736,0.038608246,-0.008604623,0.109969355,0.099681474,-0.34857702,-0.8704257,-0.95333755,-0.8150049,-0.933782,-0.84140277,-0.8093346,-0.85875523,-0.8556763,-0.79645467,-0.35022026,-0.7334416,-0.9451896,-0.4677543,-0.26091665,0.103148915,0.25727224,-0.27138662,-0.17057109,-0.54819304,-0.11690607,0.19443017,0.16004845,-0.052349307,0.15590912,0.29988497,0.30703574,0.26032716,0.08446618,-0.54228646,-0.3115501,-0.27735257,-0.49182743,-0.46190566,-0.664205,-0.46157753,-0.32418495,-0.8315811
+0.05058501,-0.14262259,-0.28263813,-0.34346837,-0.3652102,-0.59947705,-0.7975226,-0.8678222,-0.8170681,-0.13383126,0.872961,1.1072199,1.0457767,1.0347944,1.0509261,0.42942536,0.12867558,-0.16089806,-0.44624913,-0.64405787,-0.67499673,0.25344,0.54495084,1.1480051,0.86928844,0.4349384,0.32631117,0.6985796,0.32382387,0.23838368,0.05338779,-0.13036329,-0.2908549,-0.34813133,0.16159,0.7584919,1.7161137,1.8757591,1.1406839,0.48620364,0.14928275,-0.16513678,-0.43345368,-0.5305505,-0.48725057,0.26461422,0.1285755,-0.2670795,-0.27063352,1.4010904,1.5969018,1.5496209,1.1917171,0.8954108,1.0063974,0.6800464,0.29691318,0.0151550695,-0.24055931,-0.36479402,-0.5063865,-0.6856477,-0.7528168,-0.75995743,-0.84057593,-0.87168044,-0.8225924,-0.90993595,-0.89659196,-0.8944164,-0.86348635,-0.820681,-0.89265287,-0.9384377,-0.8356785,-0.09844654,0.80296224,0.55639875,1.22381,0.5627508,0.012144066,-0.2871227,-0.54970825,-0.6733255,-0.67914057,-0.75632066,-0.8946566,-0.88524514,-0.90746605,-0.9164345,-0.89664376,-0.95769095,-0.98574555,-0.9419334,-0.9420693,-0.9619422,-0.9486711,-0.97089493,-0.9430406,-0.93441164,-0.6821924,-0.8197712,-0.9607016,-0.9757743,-1.054435,-1.023995,-1.0002034,-1.0125344,-1.029614,-1.0171336,-1.0202801,-1.0743773,-1.0423529,-1.0527847,-1.098383,-1.108153,-1.0675571,-1.1062038,-1.1070173,-1.1088816,-1.0662794,-1.0783712,-1.1256953,-1.1270187,-1.1155534,-1.161816,-1.1622491,-1.0997617,-1.095341,-1.1142862,-1.078528,-1.1036907,-1.1617465,-1.1527953,-1.161135,-1.1399126,-1.1217169,-1.1313189,-1.1399758,-1.1461155,-1.1483804,-1.1276772,-1.155582,-1.1684821,-1.1843194,-1.1975915,-1.1998572,-1.2041857,-1.1821468,-1.1948397,-1.1920521,-1.2001188,-1.18782,-1.1518252,-1.139139,-1.1332816,-1.1008085,-1.1231782,-1.1902199,-1.1234301,-1.1903386,-1.2138242,-1.2271632,-1.1996989,-1.1488875,-1.1423299,-1.1554155,-1.2048593,-1.2203631,-1.1890831,-1.1149478,-1.1134901,-1.1516227,-1.1151376,-0.9847975,-0.88540655,-1.0050846,-1.2130567,-1.1824,-1.162152,-1.1529021,-1.1341561,-1.1355432,-1.1076827,-0.9682468,-0.6848378,-0.6602649,-0.77372134,-0.8080522,-1.0699382,-1.1099414,-1.0978551,-1.090014,-1.0662967,-1.0925987,-0.96905994,0.5986652,0.6267804,0.96629965,1.4092226,1.62475,0.94154936,0.7059418,0.70806587,0.6070193,0.28512883,0.26312673,0.81211257,0.631372,0.73475623,1.0045372,1.0402743,1.0312457,1.4294984,1.3352432,0.78015924,0.5626915,0.43025276,0.38028538,0.53796715,0.4177689,0.25407344,0.1089486,-0.0034949854,-0.034035392,-0.058177643,-0.06525838,-0.17519778,0.41924143,0.15498035,-0.17774045,-0.18182632,0.7502813,1.0856646,0.982077,0.46334547,0.49731088,0.38933575,0.41115576,0.42622215,0.78091264,0.85950357,0.69539404,0.72561276,0.7183449,0.6489955,0.6650778,0.751329,0.70848614,0.57941186,0.55971056,0.50011367,1.0396042,1.9176673,1.2887725,0.95417905,0.84053886,1.4904895,2.2821975,1.9539678,0.97800523,0.7710734,0.70886153,0.98426837,0.90721697,0.93757313,1.0406911,0.79537755,0.7678312,0.7603722,0.6483555,0.84406906,0.8997665,0.8716346,0.9111521,0.7990152,0.4797312,0.63042086,1.6533029,1.0477902,0.85610783,0.88634884,2.1054642,2.32225,1.8176806,1.9240435,1.4406128,0.9922546,0.9458209,0.9847113,0.8333557,0.7548382,1.0567763,1.2597697,1.2551525,1.0142806,1.17243,1.1570868,1.0269318,0.93258524,1.0532902,0.9808799,0.89070946,0.8504108,0.8544384,1.1089938,1.3055756,1.5417855,1.681116,1.6993635,1.6450441,1.8527524,2.7348351,2.2901616,2.404946,2.2145731,1.5662017,1.0038028,0.90155077,0.93786347,1.118876,1.6855612,1.3339188,1.6782614,1.5407798,1.8116179,2.4951098,2.0829096,1.3360555,0.93702567,0.8939175,0.84937143,0.670547,1.0177379,0.98958886,1.0002716,1.1959002,1.4961843,1.0987443,0.6935307,0.81255555,1.2562712,1.7168269,2.0226853,1.6902328,1.8106577,1.6792148,2.0606143,2.1326365,2.0624032,1.8768811,1.9240977,1.7941931,1.5949752,1.9402258,1.597071,1.1357787,1.2184583,1.2926481,1.2058599,1.2621686,1.0487018,1.1808599,1.9854238,1.16594
+-0.4381901,-0.6701174,-0.8101131,-0.92584753,-1.0486313,-1.1015931,-1.1444827,-1.1456926,-1.107143,-0.23935783,-0.048288934,-0.3145689,-0.29300642,-0.31712013,-0.61535835,-0.8192642,-0.93026257,-1.0349472,-1.1121552,-1.1217402,-1.125217,-0.2346546,-0.09702625,-0.29348963,-0.3849805,-0.655615,-0.58592373,-0.42615187,-0.67344785,-0.80654854,-0.90078783,-1.0036705,-1.0205071,-0.7759659,0.06177444,0.23214623,0.41488338,0.5944862,0.21776548,-0.2385458,-0.50516343,-0.68329155,-0.8515899,-0.95568,-0.9637532,-1.0270938,-1.0702499,-1.1303828,-1.143574,-0.49279058,-0.6351915,-0.80689156,-0.9287586,-0.6189871,-0.35720938,-0.70903635,-0.87965107,-0.9481909,-1.0830039,-1.1184682,-1.1758304,-1.1917595,-1.1858225,-1.2158875,-1.2425542,-1.1643484,-0.9622097,-1.0681553,-1.1461816,-1.1808453,-1.2037475,-1.2189455,-1.2707229,-1.2379596,-1.2312317,-1.1954789,-1.2110953,-1.2246978,-0.6987261,-1.0270071,-1.1605787,-1.1976303,-1.1973463,-1.2148923,-1.219248,-1.263504,-1.2655152,-1.2212692,-1.2236093,-1.2235079,-1.2293134,-1.236413,-1.207499,-1.204495,-1.2078226,-1.2206546,-1.2307858,-1.2271979,-1.2209159,-1.2245306,-1.2382886,-1.2705473,-1.2776952,-1.2827369,-1.283951,-1.2478944,-1.2439762,-1.2359916,-1.2509084,-1.253967,-1.2619954,-1.2629955,-1.2694147,-1.2974318,-1.3080336,-1.253314,-1.2540208,-1.2569225,-1.2484717,-1.243962,-1.2183487,-1.2163159,-1.2419803,-1.2409928,-1.2799526,-1.2936313,-1.2455568,-1.2394271,-1.2440834,-1.2578402,-1.2618222,-1.2749181,-1.2899896,-1.2955642,-1.265544,-1.2446172,-1.2545991,-1.2719908,-1.2763679,-1.2740355,-1.2874575,-1.2633333,-1.2565954,-0.9422045,-1.0338027,-1.1761184,-1.2686992,-1.2745025,-1.243598,-1.2539716,-1.2543972,-1.2447321,-1.2494528,-1.2478926,-1.2514517,-1.2673088,-1.2483568,-1.2880651,-1.305736,-1.2968595,-1.2904618,-1.3199775,-1.3219587,-1.2533879,-1.2539965,-1.2163332,-1.2543771,-1.306638,-1.3229191,-1.2886705,-1.2514331,-1.2481759,-1.2457623,-1.2313137,-1.2038838,-1.2657554,-1.3025765,-1.3393282,-1.3281238,-1.316333,-1.3059467,-1.2489128,-1.2462044,-1.2481685,-1.2572069,-0.61717784,-0.7246666,-0.90820634,-1.041186,-1.1980679,-1.2459434,-1.2294687,-1.2290307,-1.2315379,-1.2736485,-1.2022809,0.39639407,0.694397,0.8675266,0.9004954,0.46658534,0.116315894,0.04076924,-0.04875607,-0.0746646,-0.22504541,-0.23200783,-0.07350985,-0.12366206,-0.19718957,0.79577935,0.6503443,0.6981729,0.73362184,0.53137016,0.24887666,0.13321692,0.046926163,-0.0303156,0.06836625,0.014832921,-0.17928785,-0.28365993,-0.39075702,-0.45464158,-0.42953598,-0.51654124,-0.5748218,-0.5678973,-0.60300994,-0.8049026,-0.79752994,-0.30267498,0.46306178,0.1702965,-0.22271368,-0.23187354,-0.51051664,-0.45502836,-0.41296577,-0.3261402,-0.3298976,-0.58648515,-0.49099535,-0.48334527,-0.66656274,-0.61645645,-0.40776086,-0.5364962,-0.74264795,-0.70704865,-0.42031074,-0.18054613,0.90684474,0.18830079,-0.30403998,-0.24884892,0.3574146,0.87928176,0.71295,-0.4087544,-0.53091836,-0.51511073,-0.31937957,-0.10823452,-0.3835099,-0.19491556,-0.334908,-0.6334338,-0.6008376,-0.4805982,-0.35568103,-0.37359747,-0.34931135,-0.35124454,-0.47000468,-0.48700827,-0.3736933,0.47798717,-0.25731656,-0.42729336,-0.27055615,1.9867707,1.4708524,1.9544058,1.6066847,0.34624133,-0.3338513,-0.46006286,-0.4798844,-0.45639318,-0.42139,-0.20743233,0.29016995,-0.059973918,-0.054453216,0.06857076,-0.04551577,-0.19468531,-0.2961049,-0.12902972,-0.3130176,-0.42886,-0.47020483,-0.44174737,-0.33105767,-0.08306264,0.2783783,0.6670402,0.4734462,0.10397079,0.7410974,1.649005,0.7338562,1.5719285,1.20312,0.4642671,-0.28285253,-0.37343925,-0.4320714,-0.38362786,0.29182482,-0.105652116,0.4277249,0.20583704,1.1725724,1.2841492,0.4837693,-0.3565969,-0.5899869,-0.40533233,-0.4394577,-0.3425569,-0.35253194,-0.37451527,-0.33013594,-0.11660839,0.006555043,0.14590022,-0.52286714,-0.36495274,-0.020447575,0.33605418,0.75180507,0.52216506,0.4012176,0.246654,0.22410473,0.18283498,0.16634415,0.10437484,0.08448384,0.0722848,0.038081534,0.57518476,0.29073364,0.0431296,-0.00031582266,-0.011678256,-0.08773316,-0.049877487,-0.27986866,0.033827964,0.3783288,-0.24465162
+1.4387014,1.249589,0.8901572,0.7607152,0.6922668,0.55958086,0.5266987,0.54127645,1.6896651,2.163689,1.5821661,1.4169464,1.1441799,1.1424875,0.96296346,0.75379443,0.7638228,0.7699168,0.73161614,0.65615153,0.60731316,1.8957624,1.6310501,1.1913831,1.0768481,0.76300764,0.9062636,0.9903228,0.91869366,1.0080974,0.86651933,0.875116,0.91475034,0.9141318,1.0385422,1.37641,1.4120185,1.3763835,1.1817801,1.0535647,0.94208467,0.8895825,0.8915023,0.8544121,0.89079,0.8118132,0.7724694,0.71229076,0.61101973,0.70265937,0.7015909,0.6875819,0.7234378,1.025481,1.2119961,1.104754,0.99504435,0.926444,0.8323026,0.776687,0.71180415,0.669671,0.60210556,0.54548585,0.5160534,0.47363967,0.41260135,0.36848062,0.30218363,0.19577295,0.124374814,0.13904473,0.16936818,0.11736095,0.053415917,0.10807412,0.11876578,0.14543954,0.2927285,0.21158306,0.13506293,0.13111173,0.10516169,0.02507376,0.0110673085,0.012984045,0.038386635,0.060195096,0.065228306,0.06370613,0.065110065,0.05617428,0.05145838,0.048656672,0.009526677,-0.023663528,-0.053566687,-0.051559128,-0.044718556,-0.09128959,-0.13638249,-0.12118598,-0.13560292,-0.08763138,-0.033644058,0.0028307214,0.019311346,-0.027608074,-0.1241634,-0.12376686,-0.112435155,-0.0816747,-0.07950067,-0.10733914,-0.0009127781,0.028451912,0.057698093,0.07036481,0.12075548,0.222339,0.27060795,0.23951903,0.18317689,0.12571567,0.10774157,0.0815944,0.03207908,0.0047167316,-0.044954844,-0.06582209,-0.044120587,-0.028738,0.017488025,0.042316288,0.05614262,0.07267768,0.08514797,-0.006931521,-0.011017762,0.06684794,0.1152477,0.15258664,0.11810956,0.15136765,0.11186379,0.04301127,-0.07482419,-0.0665335,-0.08369855,-0.09242993,-0.0941846,-0.12300607,-0.033540227,-0.045788907,-0.058980696,-0.08016332,-0.13176343,-0.17067116,-0.2505578,-0.17549646,-0.054970704,-0.0008528158,-0.0006677434,-0.010373227,-0.028420381,0.2601013,0.34046808,0.18752193,-0.0076258257,-0.04724834,-0.042172514,0.029957645,0.04339076,0.04971642,0.3592313,0.018563211,-0.1348227,-0.18822289,0.015038244,0.06525035,0.06713481,0.0756658,0.04631362,0.012463532,0.28028226,1.1633815,1.412353,1.2490785,0.8699539,0.5515826,0.46843928,0.41093296,0.3196845,0.40677917,0.31937286,0.25125116,2.1636071,3.3014843,3.3298216,3.3210735,2.6613722,2.3375697,2.1994808,2.321913,2.3369336,2.3403635,2.1712909,2.2464504,2.3421378,2.7715316,3.175856,2.9150438,3.1040235,3.0284946,2.9139905,2.824259,2.574629,2.5196843,2.5092158,2.4172869,2.4599888,2.5444427,2.616395,2.6438951,2.6002588,2.5910096,2.5290327,2.438495,2.443856,2.712195,2.319847,1.8694862,1.9548625,2.8222985,2.658345,2.337833,2.280294,1.915295,1.4585693,1.4784905,2.4355295,2.046424,1.4886817,1.1338927,1.1986326,1.2213151,1.1664286,1.4862704,1.4692744,1.1353378,0.99403155,1.3627672,1.904216,3.112108,2.7177985,2.101862,1.8070568,1.9067662,2.7109017,3.2351315,2.2942367,1.6462047,1.302114,1.3412457,1.7277129,1.4476483,1.4716635,1.5320562,1.3109188,1.2107897,1.0324306,1.1684152,1.2738535,1.3456624,1.23456,1.0799562,1.4187617,1.89884,3.0279279,2.5523129,1.5605297,1.7380729,3.09516,2.9750357,3.1409225,3.1838293,2.4122899,1.9561696,1.4913096,1.2963231,1.2283324,1.1766375,1.4544277,2.5422306,2.30807,2.5372176,2.2525396,2.378369,1.586262,1.283825,1.1557653,1.1601586,1.1238959,1.1649599,1.3900042,1.4499701,1.4583418,1.5700494,2.3652372,2.3722863,1.5450805,2.638428,2.952365,3.0145144,2.8195343,3.3109727,2.4721332,1.8935785,1.4952638,1.4253178,1.401068,1.9796038,1.8750544,1.6583576,1.4819129,2.910918,3.036979,2.4059014,1.7675997,1.4905026,1.1741064,1.2405132,1.4393258,1.3834186,1.2637641,1.1556652,1.1540103,1.2685639,2.2135587,1.462055,1.1589161,1.2554593,1.5241194,1.735457,1.6506932,1.6106548,1.408245,1.576879,1.7261152,1.8004725,1.6694689,1.6352143,1.7175545,1.6669456,2.5919096,2.0873723,1.4109917,1.6897454,1.7090302,1.3172677,1.5293238,1.2516956,1.5019612,1.9787952,1.1857938
+0.24471691,0.13353786,0.04749278,-0.009547532,-0.07190304,-0.12325271,-0.20882553,-0.2969159,2.1539044,2.2471626,1.9501522,1.7594957,1.3798435,1.0015428,0.7652482,0.38530993,0.10682732,-0.08194112,-0.26950037,-0.45962882,-0.56398666,-0.21428353,0.22843885,-0.23280945,-0.43682206,-0.60844475,-0.13947904,0.5235995,-0.009538144,-0.42386192,-0.64675725,-0.83244526,-0.8907394,-0.92717123,-0.96764016,-0.72279125,-0.53405046,-0.549896,-0.6533765,-0.7569649,-0.8355932,-0.9233289,-0.9616604,-1.0514588,-1.1131301,-1.1809045,-1.2157006,-1.221738,-1.2283115,-1.3005527,-1.273659,-1.2998827,-1.2845132,-1.2659478,-1.2933927,-1.3114299,-1.3137565,-1.3121523,-1.3231709,-1.321465,-1.3112199,-1.2875899,-1.289547,-1.289216,-1.27018,-1.2772259,-1.2919453,-1.2890108,-1.3015565,-1.3289514,-1.3350308,-1.3321539,-1.310708,-1.3338042,-1.3778756,-1.4202588,-1.4286383,-1.3867581,-1.3447194,-1.3344705,-1.3132143,-1.3334608,-1.3375528,-1.359951,-1.3724275,-1.3738368,-1.35697,-1.3355992,-1.3250196,-1.3234719,-1.3321352,-1.3135406,-1.3024944,-1.3122895,-1.3271911,-1.3380325,-1.3498125,-1.3521984,-1.3483003,-1.3414235,-1.3675034,-1.3830003,-1.3737253,-1.3644621,-1.3370489,-1.32938,-1.327538,-1.3328023,-1.3468845,-1.3514954,-1.3538926,-1.3459197,-1.3530817,-1.3588984,-1.3399131,-1.3263406,-1.3240714,-1.3206449,-1.3318934,-1.328799,-1.3092558,-1.3079875,-1.3105319,-1.3145702,-1.3187695,-1.3345418,-1.3380402,-1.3355343,-1.3460426,-1.3433511,-1.3425622,-1.3302269,-1.3272417,-1.3238484,-1.3124598,-1.3033476,-1.3070626,-1.3183243,-1.3129747,-1.2956216,-1.2914598,-1.3006186,-1.3035555,-1.3011552,-1.3004541,-1.3095093,-1.3076515,-1.3146702,-1.3154724,-1.3072841,-1.3043243,-1.3019941,-1.3010471,-1.3111675,-1.3110611,-1.3109586,-1.332193,-1.3339794,-1.3304819,-1.3040328,-1.2931381,-1.2967497,-1.2969542,-1.2924714,-1.29925,-1.3006805,-1.3161696,-1.3134456,-1.3097334,-1.2996176,-1.2774129,-1.2607566,-1.2629094,-1.2571883,-1.289161,-1.319963,-1.3133593,-1.2683042,-1.2473395,-1.2516435,-1.2522086,-1.2564664,-1.2732444,-1.294471,-1.3033173,-1.2757044,-1.245119,-1.2566888,-1.2880116,-1.2853067,-1.2590218,-1.2347965,-1.2299249,-1.2469695,-1.2595781,-1.2539576,-1.1801578,-0.9625292,-0.63349944,-0.032012574,-0.48776507,-0.6944909,-0.8858178,-0.9891856,-1.0645022,-1.0907309,-1.0369858,-1.0124282,-0.9742682,-1.0337276,0.74264467,0.663186,0.27480185,0.5974007,0.20279859,0.06309211,-0.100114055,-0.24501297,-0.36512098,-0.44946128,-0.50553125,-0.5278155,-0.5504854,-0.5482933,-0.5329752,-0.58788,-0.5904571,-0.5729598,-0.5531033,-0.58228064,-0.5388769,-0.5201218,-0.56726736,-0.2933638,0.4397188,0.13764296,0.064326,0.042580232,-0.066734426,-0.053702436,1.2190804,0.8448601,0.73751277,0.5763945,0.45084125,0.3444129,0.20599407,0.12585701,0.06574803,0.060064785,0.050114237,0.32657903,0.60145396,0.6394478,1.2155995,0.9764851,0.64937985,0.5400533,0.496125,1.6881804,1.3602494,0.9697666,0.81518024,0.66512334,0.5519337,0.5616394,0.65891993,1.317123,0.9980503,0.8483099,0.74866927,0.68875813,0.6018462,0.5546395,0.63731134,0.86065376,0.5997969,0.601766,1.00358,1.8253274,1.5358799,1.3734751,2.3764048,2.565436,2.7499208,2.8230996,2.8259997,2.661129,2.4531217,2.296842,2.1000493,1.8467345,1.9786782,2.326425,2.6201262,2.500065,2.421972,2.5510955,2.4363203,2.2444084,2.0799773,1.9659389,1.7423038,1.554903,1.4536674,1.3778493,1.3283145,1.3204437,1.9593687,1.8929248,1.7485768,1.7164788,2.686685,2.6243253,2.4121222,2.9448786,2.784172,2.5491514,2.2927222,2.1009147,1.8431499,1.6639256,2.4329822,2.4168718,2.1532397,2.665526,2.6936092,2.5398712,2.3833632,2.0139458,1.5670583,1.590263,1.3723533,1.4691966,1.2788647,1.005451,0.85975134,0.71885896,0.84832954,1.0769215,0.88505316,0.7301482,0.5576529,0.44588435,0.42462826,0.3926196,0.3255858,0.22002865,0.14388469,0.13926536,0.108887404,0.027904846,0.0028992146,-0.060134135,0.3687921,1.6618168,1.5450647,1.0804051,1.477921,1.2823925,1.4810542,1.3233556,0.9033024,0.66002744,0.62843704
+-0.80510473,-0.9489609,-1.0638101,-1.146252,-1.1747994,-1.1958225,-1.2779388,-1.0471599,-0.6580101,0.077489235,-0.038905464,-0.48605204,-0.7175089,-0.9983301,-1.155577,-1.2301698,-1.2909944,-1.3362613,-1.3580836,-1.3980477,-1.4063015,-1.233503,-1.2975445,-1.3522092,-1.4210732,-1.4337778,-1.3161857,-1.3054655,-1.4084669,-1.4483595,-1.4483907,-1.452159,-1.4446135,-1.469099,-1.4657688,-1.1438836,-0.77041954,-0.9081862,-1.1543622,-1.3299425,-1.3867662,-1.417119,-1.4524473,-1.4513057,-1.4468036,-1.4770789,-1.4777741,-1.4928555,-1.5103639,-1.5449532,-1.5554268,-1.5673325,-1.5506356,-1.495209,-1.5136518,-1.5415361,-1.5416715,-1.5348346,-1.5438173,-1.5426598,-1.5357857,-1.5367486,-1.5402207,-1.5352564,-1.5269481,-1.5276723,-1.537576,-1.5352752,-1.5312448,-1.5355513,-1.5295033,-1.5162792,-1.5113802,-1.5417984,-1.5592519,-1.577517,-1.5785272,-1.575017,-1.5470021,-1.5412046,-1.5199597,-1.5176849,-1.5240676,-1.5393955,-1.5376832,-1.5410411,-1.5371301,-1.5174344,-1.5068558,-1.5068872,-1.5301998,-1.5285026,-1.533869,-1.5405238,-1.5424265,-1.5458926,-1.5609034,-1.5543654,-1.545027,-1.5326097,-1.5285428,-1.5499766,-1.555934,-1.551409,-1.5401733,-1.5370121,-1.5422497,-1.5531116,-1.5551591,-1.5594774,-1.5612886,-1.5535753,-1.538828,-1.5197837,-1.5192022,-1.5170722,-1.5325303,-1.5196612,-1.5172393,-1.5090804,-1.5045098,-1.5123953,-1.5219164,-1.5252297,-1.5335944,-1.5341752,-1.5302637,-1.5243862,-1.5329032,-1.5352671,-1.5292525,-1.5273366,-1.537036,-1.5374081,-1.5242895,-1.5043886,-1.5081658,-1.5244174,-1.5264862,-1.5150926,-1.5172204,-1.5229352,-1.5161941,-1.5109409,-1.5042417,-1.4989612,-1.4970086,-1.4962907,-1.5071301,-1.5062315,-1.4925661,-1.4711016,-1.4613898,-1.4639106,-1.4756162,-1.4840233,-1.4800999,-1.4848877,-1.4968525,-1.4906261,-1.4787346,-1.4669937,-1.4683075,-1.4681236,-1.4712309,-1.4541363,-1.4720986,-1.4731119,-1.4748485,-1.4679501,-1.4521964,-1.4461186,-1.4220984,-1.4249436,-1.4285796,-1.4404049,-1.4540279,-1.4349985,-1.4243743,-1.4178289,-1.4176917,-1.4093747,-1.412266,-1.4048982,-1.4015297,-1.3773928,-1.3966033,-1.3739238,-1.4019988,-1.4177771,-1.4238386,-1.4219232,-1.4078984,-1.3665891,-1.3579305,-1.3775265,-1.3624141,-1.0568839,-0.7955066,-0.48097318,-0.7891714,-1.0516962,-1.2095621,-1.2759204,-1.3147352,-1.3121271,-1.2625947,-1.1941371,-1.1828151,-1.2465763,0.5177281,0.5188556,0.27679557,0.4094652,0.048950218,-0.19123489,-0.4179843,-0.62143993,-0.7661907,-0.8166797,-0.88025594,-0.9007149,-0.9488796,-0.9697038,-0.9867883,-1.0427816,-1.0037475,-1.0255727,-1.03251,-1.0332415,-0.9949173,-1.0461392,-1.0572774,-0.5192172,0.96431464,0.6011437,0.37404075,0.12965831,-0.071370356,-0.15836173,0.3684219,0.25832877,0.047375433,-0.12858829,-0.24914154,-0.36234826,-0.47187406,-0.54395,-0.599524,-0.63117707,-0.6272279,-0.51780206,0.03058625,0.118928336,-0.039776318,-0.1953477,-0.36805564,-0.428182,-0.31825566,0.8797194,0.6507869,0.14690979,-0.1597274,-0.29534793,-0.2665655,-0.27179664,-0.25356022,0.5164878,0.5732304,0.2614389,0.058097593,-0.08574524,-0.1624769,-0.02845376,0.651416,0.35009462,0.15753761,0.071878724,0.68399817,0.905202,0.7194038,0.7982143,0.8452879,1.2024063,1.0191425,1.3246223,1.3282859,1.0872269,0.8882705,0.7057917,0.5606156,0.45519835,0.40704012,0.9615351,1.2789636,1.030759,1.230294,1.3509232,1.1160109,0.9608553,0.73839504,0.5760832,0.43900177,0.35841033,0.287423,0.213774,0.18818262,0.307941,1.0655553,0.92830193,0.81222504,0.8103771,0.9929664,0.9664751,0.83346605,1.0403979,1.2392051,1.0156715,0.77214277,0.57104754,0.42346907,0.3796288,1.0808821,1.1103357,1.0181627,0.99245244,1.1165004,1.0373635,0.6995709,0.4024166,0.31734037,0.3250619,0.40261832,0.20544645,-0.08230441,-0.2221168,-0.3026368,-0.36345804,-0.026866622,0.21249965,-0.10801428,-0.21430844,-0.27534315,-0.3268066,-0.38796535,-0.45437658,-0.50959253,-0.59033275,-0.6674086,-0.71145225,-0.73694205,-0.7792383,-0.8123667,-0.8405673,-0.4642594,0.29417345,-0.03724044,-0.2684891,0.30050087,0.53278524,0.119016595,-0.18463847,-0.39007732,-0.5124005,-0.7131108
+2.6783736,2.9101346,2.904008,2.881877,2.871343,2.8769732,2.8667743,2.9240594,2.9025974,2.9419465,2.9156215,2.9038556,2.882312,2.8819118,2.8819385,2.8742037,2.8935347,2.8862538,2.8821588,2.8656797,2.862883,2.85671,2.8669858,2.8631806,2.8695843,2.8658714,2.8681626,2.8676353,2.8625596,2.8638597,2.8574114,2.856208,2.859483,2.8474724,2.84226,2.8659482,2.8408806,2.8464932,2.8539166,2.849863,2.8443286,2.9271004,2.8748326,2.8770936,2.8754807,2.872031,2.8663585,2.86242,2.866213,2.8698997,2.8685822,2.8675091,2.8675551,2.8553667,2.860135,2.8665996,2.8590612,2.8506804,2.8489652,2.8520644,2.850706,2.854979,2.8602371,2.862155,2.8665252,2.8632426,2.8627315,2.8596873,2.862,2.8609138,2.8586783,2.8509812,2.847337,2.8598058,2.8655734,2.8659325,2.8648696,2.8592453,2.86083,2.86965,2.893493,2.9013326,2.8687353,2.8608806,2.86515,2.86396,2.8625422,2.8599226,2.8501492,2.8578362,2.8494961,2.8428059,2.8449292,2.843369,2.840718,2.8389904,2.8403797,2.8455582,2.844222,2.8431585,2.8514128,2.8513527,2.8467321,2.8491213,2.8463035,2.8431013,2.845796,2.8452344,2.8410316,2.8479795,2.8463845,2.851213,2.86103,2.873386,2.8570096,2.8536878,2.841094,2.8340263,2.831951,2.8334773,2.8255963,2.8242798,2.8222032,2.8356118,2.8335385,2.8367846,2.8403668,2.8397727,2.8440223,2.8410048,2.8421853,2.8417075,2.8429942,2.8442597,2.8454385,2.8419724,2.8427014,2.8399725,2.8399596,2.8423438,2.8467636,2.8389864,2.8422065,2.8432834,2.8401954,2.845856,2.840864,2.8419166,2.8431458,2.8490558,2.8504674,2.8536348,2.8520083,2.8512044,2.8501043,2.8477564,2.8519583,2.8506336,2.847584,2.854988,2.8676023,2.8550487,2.8510985,2.8503969,2.8497677,2.8465858,2.8467765,2.8514326,2.8480332,2.848165,2.8536255,2.8585343,2.847015,2.848426,2.8523586,2.8574467,2.8831482,2.873128,2.8766232,2.8254535,2.796215,2.8004265,2.8146038,2.823614,2.830031,2.8395004,2.8436108,2.8445673,2.8540263,2.8616264,2.8580937,2.8437538,2.8367457,2.8391504,2.8394508,2.84134,2.8390665,2.8318028,2.8305538,2.8828385,2.867909,2.9057167,2.9447308,2.921574,2.872733,2.8803566,2.858635,2.8591588,2.856836,2.846528,2.9396024,2.899185,2.9062724,2.8898416,2.8752165,2.8700376,2.8806906,2.8696077,2.855191,2.8425493,2.8553524,2.8474877,2.8438294,2.851808,2.8594308,2.850022,2.849186,2.842986,2.8355465,2.841232,2.8567908,2.8686533,2.8682427,2.8712509,2.9586582,2.874786,2.8735762,2.8670177,2.8638372,2.8841822,2.9313774,2.8787208,2.8747103,2.8610728,2.852859,2.852985,2.8593674,2.8489654,2.8419802,2.838912,2.8368306,2.8250842,2.8742175,2.8215218,2.8197436,2.8619463,2.853836,2.8475766,2.8515782,2.9988291,2.8481078,2.86753,2.8804321,2.8847084,2.8972585,2.8619988,2.8643117,2.941986,2.8816903,2.9202418,2.8930037,2.8849893,2.895637,2.8522816,2.84346,2.8514826,2.8405898,2.8538408,2.8697963,2.9450293,2.882433,2.9366567,2.949737,3.0623436,2.9597144,2.9847202,2.9919734,2.950306,2.9271731,2.8909922,2.887679,2.8835511,2.8498652,2.9962914,3.025333,2.9480543,3.1578703,3.0160613,2.9774995,2.963375,2.9249825,2.9205627,2.9169753,2.9169252,2.9158769,2.9065804,2.894995,2.8688743,2.9699488,2.9076464,2.887229,3.0780392,2.9143975,2.9749107,2.9433165,2.9698987,2.9848168,2.9255438,2.9107742,2.901484,2.8902328,2.907878,3.1866026,3.0122185,2.937724,3.0546284,3.0677943,2.9683867,2.935411,2.901046,2.8866315,2.918744,2.928692,2.907477,2.8975453,2.9063435,2.8923903,2.8747954,2.937948,2.8932223,2.8851357,2.8808815,2.870734,2.8623505,2.8602543,2.8615394,2.8602574,2.8658636,2.8610296,2.8574548,2.854244,2.8565679,2.8627586,2.8561616,2.9861846,2.895169,2.9044113,2.8755054,2.919827,2.8735633,2.8875155,2.8753672,2.8676696,2.8650932,2.8673053
+1.1487411,0.98504126,0.95744646,1.1656411,0.74689174,0.635592,0.89040786,0.988752,0.99574775,0.7020135,0.6157186,0.6180433,0.57157785,0.45418674,0.68718374,0.6059797,0.7537001,0.8776622,1.0105046,1.0288633,1.068802,1.2801881,1.4212681,1.3645391,1.0501605,0.85142565,0.7683985,0.91417193,0.9468897,1.052886,0.93784213,0.99420035,1.10658,1.1832451,1.1944051,1.2807078,1.397263,1.460603,1.4479768,1.1729023,0.90938044,1.3370496,1.1597488,1.0643092,1.0752879,1.0127418,1.1394224,1.1868181,1.4077337,1.2423276,1.4260373,1.7434916,1.8115642,1.5298162,1.41362,1.5804864,1.484105,1.2182024,1.5181608,1.6164439,1.4095795,1.3148913,1.5311525,1.6588831,1.5653366,1.4907293,1.4243543,1.4409329,1.3927131,1.9658794,2.319514,2.5634298,2.1794682,2.2342305,2.416544,2.1208873,1.9397216,1.7614378,2.036762,2.6546798,2.3212693,2.080928,1.9525603,1.8993257,2.6765928,2.4061384,2.270097,2.0105639,1.9157282,1.7673099,1.6618515,1.5005832,1.377447,1.3749945,1.7924879,2.16614,2.0892513,1.7841468,2.0059655,2.3632598,2.4454517,2.2897346,2.3025198,2.1992323,2.0022626,2.5974102,2.6371908,2.6009626,2.3833873,2.5276022,2.429963,2.1152213,2.1519585,2.2800827,2.0466354,1.7622845,1.903216,2.1649065,1.9139748,1.639329,1.5442386,1.603604,1.5648816,1.5064812,2.5064368,1.9518309,1.6111145,1.6441412,1.5027494,1.4450278,1.575566,2.1954908,2.1010735,1.832319,1.4903973,1.4013035,1.3556699,1.249322,1.2623546,1.2733945,1.0946513,0.9512053,0.9082729,1.1283402,1.148038,1.0157728,0.8992762,0.8586483,0.72764826,0.8327966,0.7195444,0.68310446,0.70870507,0.74281883,1.7797158,2.1807294,1.9068027,1.7102631,1.7298535,1.7579314,2.1075902,1.7696366,1.435256,1.6439369,1.4413148,1.2125311,1.1318129,1.1087978,1.0346284,1.7331916,2.468914,2.1883445,2.1157389,1.8917456,1.6092441,1.4097021,1.6798851,1.4992602,1.3480026,1.4815776,1.4343367,1.23928,1.1982753,1.2881271,1.4875338,1.2531329,0.9523436,1.0054913,1.0401428,1.5666838,2.2452087,2.28214,1.7315788,1.0107379,0.65940917,1.0777858,1.8491416,1.9152067,1.7848682,2.1383848,1.86409,1.6756184,1.7622035,1.587619,1.2035109,1.1134928,1.3655088,1.5667853,1.7350361,1.9717243,2.1164522,1.5730726,1.1968693,1.5085104,1.48141,1.5697826,1.5537095,1.5247755,1.44439,1.9917749,1.6988772,1.5354326,1.6835707,1.7759329,1.6325281,1.876127,2.13409,2.0459373,1.8883753,1.3569548,0.964924,0.72669107,0.7954806,1.0039833,1.2085009,0.7992742,0.9152487,0.90259194,1.0409786,1.2741015,1.2109766,1.0378094,0.75111175,0.67859924,0.9965575,0.7750813,0.8623018,1.0457972,0.69641614,0.5084217,0.45369244,0.5193613,0.5234837,0.46924692,0.58593726,0.6373513,0.5238217,0.5689028,0.55613,0.5499963,0.550919,0.51737916,0.7154926,0.8304603,0.6618405,0.4920903,0.63560975,0.55120844,0.41507465,0.4115233,0.62622184,0.62406737,0.55311036,0.62359124,0.45863348,0.5629923,0.3947986,0.52103287,0.50511116,0.4217571,0.45436984,0.45205513,0.45629126,0.63968396,0.5731991,0.51794815,0.50325245,0.5111682,0.47760475,0.42032743,0.40482375,0.47881112,0.7608435,0.86860347,0.68877816,0.5553724,0.52835685,0.78373665,0.65909606,0.5334516,0.47206408,0.38126957,0.4013397,0.417121,0.492231,0.36966842,0.33205462,0.36804435,0.5227677,0.64113057,0.7906772,0.81913346,0.47192234,0.4464713,0.8461297,0.89840466,0.7838919,0.5089146,0.55366665,0.43274653,0.7438588,1.1158901,0.8408421,0.60833836,0.8180733,0.67269814,0.70429826,0.50722986,0.47605786,0.39150497,0.41824573,0.6695204,0.47919708,0.5053975,0.65539885,0.7470647,0.71500653,0.8202931,0.75813365,0.7145137,0.61912245,0.7084203,0.5536702,0.8750942,0.7370266,0.96414757,1.0523816,0.96043324,1.2085062,1.0777417,0.6878116,1.0453699,0.9202025,0.61052895,0.73489237,0.77246696,0.8931977,0.82315004,0.97898084,0.726803,1.0089536,0.99804956,1.0840508,1.1168573,0.9122703
+-0.3221241,-0.5246377,-0.5669725,-0.025585033,-0.10876282,-0.18186423,-0.3556282,-0.4873432,-0.5620352,-0.6709385,-0.7239859,-0.7091435,-0.7238582,-0.081016324,-0.025274761,-0.18304086,-0.38368103,-0.53684986,-0.6588613,-0.72959775,-0.76272655,-0.7728148,-0.7593039,-0.80403674,-0.82087636,-0.8472971,-0.93600404,-0.9617114,-0.73298717,-0.3613497,-0.65749884,-0.75909966,-0.82328236,-0.87079823,-0.54005927,-0.6613115,-0.7954829,-0.85870445,-0.9112488,-0.86877507,-0.9412496,-0.9100709,-0.96089196,-0.9795666,-0.9903616,-0.8684599,-0.9050598,-0.93728435,0.1718534,0.068496,0.31096587,0.38965803,0.12714759,-0.1193003,-0.26980323,-0.40063658,-0.511757,-0.6165098,-0.69025034,-0.79214054,-0.89861524,-0.90314853,-0.89944416,-0.9738009,-1.0105803,-1.0064819,-1.0353751,-1.0288347,-1.0026895,-0.91685414,-0.20008436,-0.18157178,-0.3810196,-0.60906255,-0.6139113,-0.66923356,-0.7766407,-0.7821584,0.3018682,0.29292002,-0.21846315,-0.116333686,-0.42902339,-0.36058974,0.47180212,0.10400133,-0.29627243,-0.5786476,-0.75329095,-0.8710282,-0.8646953,-0.89755225,-0.9248073,-0.9256294,-0.98548186,-1.0220704,-0.9293163,-1.001726,-0.69346976,-0.44518936,-0.5055354,-0.72820437,-0.8183738,-0.6736822,-0.8887018,-0.9334278,-0.96941805,-0.1637913,-0.38285786,-0.5405508,-0.7629634,-0.9476075,-0.65719867,-0.65617996,-0.842872,-0.97594357,-1.0048153,-1.0265447,-1.080241,-1.1144719,-1.1012744,-1.1489159,-1.1592315,-1.1874943,-1.0963067,-1.1402045,-1.1645117,-1.1491535,-1.1720418,-1.1268796,-1.16423,-1.1065333,-1.1360214,-1.2351916,-1.2867997,-1.2651129,-1.276931,-1.3160367,-1.2949662,-1.3329321,-1.3622233,-1.3929045,-1.3401215,-1.2651536,-1.3243243,-1.3426311,-1.3634443,-1.370476,-1.3579129,-1.2966008,-1.4212937,-1.4001682,-1.3626702,-1.281106,-0.89769197,-0.5787108,-0.8268624,-0.9878968,-1.1796465,-1.0876095,-1.1183348,-1.2422066,-1.2605758,-1.2088981,-1.3025893,-1.3209544,-1.3516347,-1.3142725,-1.3102767,-1.1272421,-0.96845603,-1.1445305,-1.189027,-1.2490427,-0.9471834,-0.947976,-0.9329741,-1.1743201,-1.223645,-1.190761,-1.2551854,-1.2610369,-1.2716815,-1.2283747,-1.2163723,-1.2445996,-1.1739316,-0.8832004,-0.397203,0.39843103,0.36011887,0.11693549,0.2442114,-0.19268453,-0.444659,0.1032841,0.975225,0.8284341,0.8713325,0.9854362,0.77270097,0.48045415,0.8450103,0.81177473,0.66288733,0.47441918,0.2581863,0.26788557,0.6393676,0.9306793,0.8443154,0.50697035,0.37336856,0.65084445,0.7256877,0.41230553,0.29614037,0.19107598,0.08891201,0.44766402,0.53220016,0.27390146,0.1501427,0.0890738,-0.050974213,-0.19537356,-0.14521113,0.3500855,0.8328363,0.5923533,-0.030709736,-0.22763371,-0.20278239,-0.0014881641,-0.0037290156,-0.21022001,0.024425365,0.16485202,0.4557746,0.42951918,0.42062253,0.2282629,-0.29590788,-0.27618867,-0.14518061,-0.2430774,-0.26895237,-0.111364014,-0.5654478,-0.40646452,-0.47322488,-0.54556096,-0.4673841,-0.32575223,-0.20509219,-0.19407207,-0.44882244,-0.5036274,-0.4236766,-0.47368795,-0.4670862,-0.37687972,-0.30400312,-0.024180375,-0.22867292,-0.26230687,-0.09715959,-0.002036728,-0.12654144,-0.26103652,0.004338108,-0.08601696,-0.09361889,-0.03509187,-0.3191856,-0.11715753,-0.24249583,-0.36843902,-0.3677559,-0.34358978,-0.3134188,-0.33342358,-0.2119174,-0.091652684,-0.1501863,-0.41188145,-0.3451332,-0.31897235,-0.3291691,-0.32858968,-0.32202408,-0.2267881,0.25188598,0.55897516,0.16673115,0.3121969,0.3548984,0.27671754,0.060566597,0.09451448,0.15073684,-0.1314758,-0.099562,-0.07149886,-0.08707873,0.016983911,-0.2773351,-0.2880622,-0.18586522,0.06531482,0.3595032,0.44892764,-0.042633317,0.0008697286,0.4195842,0.46071607,0.16125143,-0.028319411,-0.087593965,-0.10233656,0.23923558,0.69574904,0.49503446,0.3646667,0.5205053,0.51510143,0.45672604,0.1572263,-0.059036173,-0.06580985,0.08862344,0.27844262,0.17530459,0.13161993,0.25046664,0.3827574,0.48749173,0.53423077,0.3701132,0.119343854,0.075871475,0.46374285,0.5472378,0.6696615,0.51066536,0.6455199,0.71859074,0.7237728,0.8236692,0.80378926,0.40815014,0.6824002,0.37119067,0.16543233,0.5802484,0.5007483,0.4692791,0.6300687,0.66463834,0.44469637,0.71315694,0.6056313,0.7205286,0.7134775,0.4320882
+-0.8452679,-1.058433,-1.077269,-1.00961,-0.89084095,-1.0293117,-1.0648037,-1.1081992,-1.1439801,-1.1680429,-1.2067692,-0.996364,-0.9551308,-0.617331,-0.62009597,-0.79606056,-0.91628075,-1.0278606,-1.1050141,-1.1632342,-1.1806053,-1.2154405,-1.2423971,-1.3209448,-1.3398015,-1.3605919,-1.3280852,-1.3465536,-1.071413,-0.919822,-1.1366956,-1.2486085,-1.319108,-1.3138247,-0.517235,-0.590148,-0.8659725,-1.0679768,-1.162876,-1.2585763,-1.3350437,-1.3517382,-1.351675,-0.95034194,0.052664317,0.39434057,-0.12699878,-0.56942904,-0.66634274,-0.9008603,-1.0004182,-0.15437448,-0.3027439,-0.6357828,-0.8640239,-1.0056639,-1.1312087,-1.2544707,-1.3418794,-1.3758206,-1.4064984,-1.3970304,-1.4141572,-1.4250882,-1.4220806,-1.3896381,-1.3776642,-1.4002972,-1.3729148,-1.3033895,-1.0299609,-1.1549462,-1.3553365,-1.4514729,-1.4811304,-1.5080247,-1.5354718,-1.462627,-0.50123554,-0.42563635,-0.88962436,-1.1061981,-1.2699244,-1.3488153,-1.3209833,-1.4117823,-1.4352279,-1.414715,-1.4082004,-1.429382,-1.444257,-1.4655391,-1.4317772,-1.4319465,-1.4690502,-1.4441514,-1.4709061,-1.5062785,-0.90173966,-0.22631842,-0.6460817,-0.9047072,-1.1205969,-1.2177653,-1.3514217,-1.3861824,-1.41483,-1.3976209,-1.228797,-1.3110088,-1.4033679,-1.412024,-1.4045451,-1.4268856,-1.4453881,-1.4321043,-1.4121518,-1.3965476,-1.3950661,-1.3874779,-1.421126,-1.4762667,-1.4746,-1.5053016,-1.4799113,-1.4661969,-1.4322457,-1.4686842,-1.503024,-1.4814067,-1.3484715,-1.3199508,-1.39528,-1.3988129,-1.390763,-1.4012072,-1.4055723,-1.4142332,-1.4082115,-1.3919489,-1.3879509,-1.4134057,-1.453666,-1.4412096,-1.4621375,-1.4528844,-1.4348868,-1.4418473,-1.4656892,-1.4390593,-1.4429963,-1.4344673,-1.4417431,-1.4176897,-1.3895543,-1.3793594,-1.396261,-1.4090323,-0.7907164,-0.49688333,-0.7040757,-0.89425683,-1.0715324,-1.1438766,-1.2701402,-1.3278416,-1.3439692,-1.3845279,-1.3626549,-1.3286078,-1.2563578,-1.2321535,-1.2830069,-1.3328811,-1.3549273,-1.3252649,-1.2188053,-1.3445842,-1.342576,-1.3254955,-1.3170438,-1.3328167,-1.3571723,-1.3721386,-1.3329127,-1.3601283,-1.3590939,-1.3456166,-1.2357316,-0.8422967,-0.8249425,-0.64123595,0.32712504,-0.046534725,-0.26276866,-0.36106843,0.10623918,0.007232912,-0.100514226,0.14661011,0.014105119,-0.13068387,-0.34104002,-0.058864303,-0.003861986,-0.23737964,-0.46136653,-0.5595357,-0.44811493,-0.1990121,-0.33573583,-0.29282808,-0.23238137,0.43032628,0.0024408326,-0.14676571,-0.26064965,-0.35285848,-0.45361578,-0.46153784,-0.51154095,-0.6237153,-0.7078167,-0.78694564,-0.8427063,-0.8697064,-0.70583844,-0.6047678,-0.20110607,-0.218472,-0.4766935,-0.50906974,-0.518803,-0.5459355,-0.59234416,-0.59941053,-0.32714456,-0.3185802,-0.40832913,-0.4498191,-0.5039842,-0.5854405,-0.71645516,-0.7126162,-0.6670971,-0.82341623,-0.7251295,-0.6893985,-0.9686779,-0.7804383,-0.9057288,-1.0654428,-0.90653706,-0.7327324,-0.76146984,-0.6622745,-0.7444887,-0.9615282,-0.842996,-0.91164505,-0.987288,-0.9526123,-0.9003706,-0.5866156,-0.85895646,-0.8917763,-0.6930001,-0.6854918,-0.77845675,-0.8463684,-0.72762924,-0.84943426,-0.7923771,-0.6902282,-0.89944667,-0.74173594,-0.6794731,-1.0174829,-1.1573954,-1.168875,-1.15187,-1.0586896,-0.8827765,-0.64610887,-0.5625055,-0.7429895,-1.0777352,-1.1342866,-1.0470371,-1.114521,-1.1263907,-1.0848808,-0.6470233,-0.32955772,-0.52507806,-0.4295444,-0.41604614,-0.6715304,-0.81130886,-0.6816481,-0.6547161,-0.8451641,-0.86081374,-0.85571283,-0.75083727,-0.516395,-0.948612,-1.0896736,-0.9269459,-0.65171117,-0.47529894,-0.41304815,-0.6936027,-0.47156107,-0.39131245,-0.3640952,-0.59120774,-0.7758409,-0.85756886,-0.9148569,-0.68100727,-0.2667824,-0.11940583,0.04617206,0.008574136,0.14787826,0.3143356,0.26257086,-0.21496493,-0.48668385,-0.40487075,-0.331685,-0.13181055,-0.13793167,-0.10094576,0.14771974,0.41398078,0.5784333,0.54799724,-0.07011815,-0.11730131,0.10895128,0.47541344,0.43091312,0.48463604,0.39045367,0.30691808,0.34783533,0.3229975,0.5002824,0.32547858,0.17749435,0.1383784,-0.03187921,-0.12678632,0.094035424,0.0747372,0.35553792,0.34943053,0.3217959,0.32825682,0.16474858,0.11612942,0.1823367,0.051289134
+-0.04047043,-0.058355443,-0.098538585,-0.120178275,-0.17202404,-0.15922415,-0.15960318,-0.19736353,-0.293719,-0.31257963,-0.3599018,-0.37444523,-0.28331715,-0.23199928,-0.05040323,-0.13723624,-0.109795325,-0.12567186,-0.20635447,-0.29184893,-0.35697058,-0.390594,-0.2943182,-0.33694732,-0.37082732,-0.40571332,-0.4314506,-0.39635348,-0.38974574,-0.39801738,-0.47790623,-0.47228628,-0.47422564,-0.5102671,-0.29542363,-0.22424117,-0.2873898,-0.3230624,-0.41538906,-0.4927584,-0.536271,-0.57665473,-0.64838195,-0.43692964,0.46754298,0.65207577,0.3953637,0.23881266,0.30728924,0.16762425,0.430156,0.4616654,0.3933155,0.428745,0.33497003,0.22109058,0.17649764,-0.04392349,-0.10635582,-0.15623596,-0.26129887,-0.35934293,-0.38034755,-0.37488186,-0.517141,-0.6570343,-0.6919137,-0.72937244,-0.62201446,-0.45111227,-0.27836084,-0.27584994,-0.46221542,-0.5271118,-0.39146042,-0.43868685,-0.15762046,-0.18350518,0.059981287,-0.0918993,-0.2346865,-0.3115585,-0.4432947,-0.44878817,-0.35941446,-0.50492114,-0.6181038,-0.6820783,-0.6719016,-0.7021754,-0.6855033,-0.74111545,-0.7776394,-0.6912508,-0.7315203,-0.73672307,-0.7098452,-0.7401194,-0.71480846,-0.11539336,-0.103137635,-0.2382698,-0.41341817,-0.47015452,-0.63563865,-0.6499069,-0.64488167,-0.6781591,-0.6050382,-0.4296313,-0.5369708,-0.7151091,-0.6677935,-0.6723269,-0.8010864,-0.87508196,-0.84462243,-0.8241321,-0.87441874,-0.92296004,-0.8640804,-0.8858916,-0.9684503,-0.9535699,-0.8528789,-0.9481896,-1.0189734,-0.93097055,-0.9343046,-0.8631164,-0.7266353,-0.56922215,-0.76068336,-0.8874414,-0.92794,-0.8853753,-0.8982403,-0.92540514,-0.91830707,-0.96179104,-0.9673333,-0.96938443,-0.93474555,-0.9109757,-0.97041845,-0.987677,-1.0029143,-1.0105052,-0.95258856,-0.9204072,-0.9739686,-0.9655696,-0.89213717,-0.85786366,-0.85060567,-0.8419505,-0.87107426,-0.8453429,-0.72767144,-0.16730446,-0.36008498,-0.5437732,-0.69892025,-0.7111778,-0.7931659,-0.8566524,-0.89026123,-0.8688812,-0.8981352,-0.87131476,-0.5381325,-0.39788383,-0.5519818,-0.66753906,-0.24492973,0.16769463,0.08706457,-0.049575903,-0.215125,-0.28885227,-0.37597498,-0.43050635,-0.47452575,-0.5057266,-0.5929822,-0.6139877,-0.53315,-0.20088187,0.15127575,-0.0036544204,-0.08743786,-0.17621142,-0.18308383,-0.20044386,-0.32302716,-0.31237158,0.5678785,0.6195381,0.6561296,0.702982,0.61420524,0.48523542,0.38029355,0.25637752,0.23934239,0.25225243,0.2133334,0.13531065,0.38732502,0.54929566,0.5377616,0.37209648,0.63045526,0.75608474,0.67049575,0.49165535,0.38970795,0.31184295,0.25319672,0.18667758,0.20881769,0.17901158,0.14149323,0.07331746,0.019346543,0.060021855,0.016351543,0.031670325,0.24894252,0.2948904,0.07150758,-0.048321076,0.16031265,0.24592748,0.29705262,0.18692982,0.18698168,0.33395538,0.36176422,0.40325397,0.38625035,0.29089093,0.15422644,0.017762214,-0.048308887,-0.24534583,0.084557205,0.17749053,-0.2129913,-0.25917053,-0.43501008,-0.3815245,-0.08538989,0.28403568,-0.14848551,-0.11857375,-0.31057215,-0.33752775,0.2520694,-0.27244163,-0.20408493,-0.16815838,-0.09276084,0.44670367,-0.014061786,-0.072911985,0.18190578,0.28693408,-0.087699585,-0.12581754,0.24617332,0.23985538,0.12777355,0.32094145,-0.07784548,-0.04298968,-0.0133168325,-0.08631242,-0.07271003,-0.15793848,-0.14156199,-0.10525345,0.37842765,0.6671034,0.42026863,0.3856768,-0.05050654,-0.09993436,-0.10410898,-0.10002128,-0.040875874,0.031552903,0.32853118,0.60578704,0.3521399,0.33270758,0.27579704,0.12143009,-0.06381967,0.13834265,0.23198175,-0.06730854,-0.032440804,0.0156047195,0.13618982,0.27257705,0.0412096,0.030068405,0.25547847,0.6774423,0.73762447,0.65558743,0.31248906,0.38883504,0.7497213,0.69726527,0.07070567,-0.2026217,-0.17689827,-0.17741033,-0.009247161,0.5162864,0.57705426,0.47165662,0.453852,0.49955976,0.52909726,0.37351203,-0.14178044,-0.29549915,-0.27719736,-0.22029814,-0.20402169,0.016819045,0.03731492,0.011136614,0.04822121,0.4635084,0.09681197,-0.1441786,0.10099265,0.5242022,0.6976958,0.761847,0.532659,0.523396,0.4244691,0.7083624,0.82446885,0.63933325,0.47856146,0.60982466,0.63394547,0.63579243,0.6336552,0.5971146,0.124224424,0.19577426,0.33952054,0.25206363,0.45816663,0.24529082,0.38605893,0.447353,0.17080846
+-0.5606779,-0.66901034,-0.7506967,-0.7957506,-0.7685847,-0.8467678,-0.886014,-0.8924481,-0.89748704,-0.8705882,-0.864724,-0.32963637,-0.005384557,0.22657314,0.1846337,-0.14446467,-0.37543872,-0.57270926,-0.7329124,-0.8360059,-0.88902473,-0.78918296,-0.5187756,0.065596946,0.13726506,-0.07500019,-0.2535971,-0.21705028,-0.14313996,-0.0923041,-0.3250511,-0.49888587,-0.64127856,-0.7545117,-0.2900339,0.30825922,0.9570972,0.7692559,0.23113123,-0.0871475,-0.29726085,-0.49919987,-0.65889555,-0.42813545,0.43184114,0.87615466,0.51843905,0.13559029,-0.13006106,0.3990748,0.85696924,0.7920981,0.42662394,0.17862004,-0.027389243,-0.23278582,-0.36658022,-0.4688549,-0.6243205,-0.6439321,-0.72936,-0.81156373,-0.856848,-0.83942246,-0.8914997,-0.9523139,-0.9355607,-0.96415997,-0.97600055,-0.9672077,-0.9720981,-0.9595301,-1.0231553,-1.0602057,-0.98987937,-0.51693785,0.123546176,-0.24204868,0.45647603,-0.029497407,-0.4104753,-0.61029863,-0.8188443,-0.86987925,-0.8622859,-0.908298,-0.9776435,-0.98699975,-0.98838687,-0.9945998,-0.9742868,-1.0054669,-1.0447972,-1.0049949,-1.014368,-1.0364726,-1.0226355,-1.0379727,-1.0461205,-0.7921559,0.052503712,-0.059678845,-0.5138764,-0.67069066,-0.88193667,-0.9279065,-0.94752884,-0.99138975,-1.0093422,-1.0116571,-1.0228918,-1.0616994,-1.0383651,-1.0397193,-1.0743433,-1.0935519,-1.0724684,-1.0641198,-1.0648195,-1.0744617,-1.0535464,-1.0709174,-1.1015141,-1.0925165,-1.0855742,-1.1313088,-1.165252,-1.0664774,-1.0764716,-1.0711925,-1.0384305,-1.051652,-1.0833566,-1.1110926,-1.1243187,-1.1109679,-1.0999358,-1.118766,-1.1051145,-1.1216605,-1.1273065,-1.1227288,-1.1205971,-1.1241777,-1.1508327,-1.1579144,-1.1482971,-1.1409458,-1.1363727,-1.1139005,-1.1536391,-1.1638248,-1.132441,-1.1074176,-1.098896,-1.0878618,-0.45782036,-0.57940423,-0.8822134,-0.8472371,-0.9733434,-1.0690583,-1.133615,-1.1185215,-1.1122332,-1.1002525,-1.1043574,-1.1253238,-1.1485521,-1.1472487,-1.105161,-1.0937264,-1.1226586,-1.1242309,-0.5639378,-0.592713,-0.3950281,-0.72009385,-0.9125141,-1.0270338,-1.0985525,-1.1182368,-1.1071478,-1.1128683,-1.1092426,-1.0708246,-1.0938686,-0.9081696,-0.29721302,-0.6750597,-0.73682255,-0.8775894,-0.9692899,-0.945583,-1.0886889,-0.51234525,0.32435527,0.3199524,0.27794316,0.013407268,0.42872098,0.15193826,-0.09176298,-0.24135488,-0.29781052,-0.5114832,-0.60087603,-0.3990684,-0.18936306,-0.33427382,-0.32973558,-0.5770328,-0.08615195,-0.045865126,-0.15031025,-0.48740852,-0.7192817,-0.826617,-0.8860936,-0.84172785,-0.87771904,-0.9595207,-0.96828055,-0.9894085,-1.0235381,-0.9093704,-1.0125457,-0.8999213,0.11529625,-0.3086358,-0.70707965,-0.8842836,-0.5414827,-0.56677675,-0.5671095,-0.74160594,-0.50426567,-0.6569179,-0.69997436,-0.8128138,-0.7075853,-0.7680652,-0.8639158,-0.7412197,-0.8125756,-0.85921067,-0.75882804,-0.6068231,-0.7720245,-0.80171734,-1.0785077,-0.7317685,-0.31001624,0.4784733,-0.46485513,-0.22977284,-0.5008472,-0.10913072,0.56467396,-0.26168713,-0.89079463,-0.83605486,-0.7152012,-0.11680985,-0.55485374,-0.7689748,-0.34858173,-0.17397091,-0.74521714,-0.7717173,-0.429749,-0.20621598,-0.65961146,-0.60228956,-0.71861994,-0.7566242,-0.612756,-0.554634,-0.22261047,-0.6663401,-0.81443036,-0.43343908,0.18215522,0.4657657,0.6977414,0.6606817,-0.2679291,-0.66436,-0.7108716,-0.68205285,-0.72721684,-0.710064,-0.14255139,0.2692071,0.04818397,0.023480244,-0.06160117,-0.16989937,-0.40036684,-0.3313834,-0.19787389,-0.5420721,-0.6471013,-0.6652837,-0.5100852,-0.366498,-0.09395417,-0.28175884,0.018546782,0.24426535,0.26757133,0.37689233,0.48463443,0.14027049,0.4436658,0.4318935,-0.1644147,-0.45680022,-0.48256147,-0.54379743,-0.5096978,0.1626881,-0.028363109,0.5688038,0.3300263,0.3394033,0.47902223,0.030269355,-0.30581975,-0.49135005,-0.3874532,-0.49514037,-0.3021155,-0.19690493,-0.19465336,-0.19808698,-0.081161655,0.29174694,0.23294047,-0.18572825,0.07390108,0.2866263,0.49784192,0.6658989,0.24124917,0.41406715,0.16515413,0.7186992,0.9874561,1.1794249,0.7268947,0.9457741,1.2174175,1.0364056,1.2067038,0.99424475,0.51972675,0.61109686,0.5796839,0.42484188,0.64297163,0.28857303,0.38108534,1.3249412,0.36032155
+-0.686733,-0.8526998,-1.0150759,-1.1663496,-1.3147707,-1.3575664,-1.3703299,-1.3955265,-1.4393827,-1.2921286,-1.287355,-1.1247437,-0.33998618,-0.5337419,-0.6788111,-1.0172386,-1.2228994,-1.3105013,-1.3831162,-1.3980032,-1.4166429,-1.2565103,-0.6405189,-0.45566303,-0.30177578,-0.73178935,-0.7360406,-0.8398736,-0.9510827,-0.92342913,-1.1158152,-1.1556256,-1.1930165,-1.2601228,-0.84493405,-0.3110006,0.2944387,0.25801903,-0.12184738,-0.55394906,-0.82116723,-0.9949671,-1.1429083,-1.2505239,-0.88341284,-0.14773211,-0.5275437,-0.9012575,-1.0404239,-0.59897465,-0.34757686,-0.47487825,-0.716743,-0.86448896,-0.9296758,-1.0577853,-1.2176292,-1.318548,-1.3797584,-1.4334424,-1.5247223,-1.4705293,-1.4916743,-1.4970539,-1.4994831,-1.5403376,-1.2085394,-1.0634853,-1.1312826,-1.3742038,-1.4355625,-1.552428,-1.6763967,-1.5903295,-1.5230317,-1.4701371,-0.95043695,-1.1966293,-0.9541272,-1.2725245,-1.4646673,-1.5263851,-1.5626252,-1.5359774,-1.530364,-1.5996366,-1.6043383,-1.5862794,-1.5790653,-1.5858626,-1.5760974,-1.6064397,-1.6424911,-1.5709219,-1.5565546,-1.6157837,-1.6095083,-1.5862439,-1.5597894,-1.5206935,-0.96408737,-1.2373264,-1.4789606,-1.5354884,-1.6451006,-1.6204456,-1.6076629,-1.6210953,-1.6030635,-1.5851241,-1.5598522,-1.5999931,-1.5717791,-1.6262715,-1.6502048,-1.6529087,-1.6147058,-1.606359,-1.5957367,-1.5824848,-1.5498049,-1.541532,-1.5886395,-1.6035663,-1.6334461,-1.65569,-1.6666888,-1.5454332,-1.5883832,-1.6028606,-1.5718509,-1.5898725,-1.5978407,-1.5858545,-1.5850116,-1.5719583,-1.5793294,-1.5921559,-1.3495207,-1.3557421,-1.5828173,-1.5750536,-1.6127951,-1.6311917,-1.6367012,-1.6588464,-1.6464577,-1.6207781,-1.5928446,-1.5667727,-1.5774738,-1.603123,-1.5831263,-1.5407889,-1.5515852,-1.5431998,-1.2693104,-1.4000807,-1.5125844,-1.4986236,-1.5568885,-1.6213167,-1.6109875,-1.5978265,-1.595183,-1.6078217,-1.575115,-1.6153775,-1.6008716,-1.5689926,-1.5046253,-1.4611942,-1.492572,-1.4954407,-0.980652,-1.0295632,-1.1341769,-1.4007063,-1.3978949,-1.4326317,-1.450376,-1.4701054,-1.4643501,-1.5031229,-1.5076565,-1.4177346,-1.3564105,-1.3849466,-1.3918469,-1.4318972,-1.4431968,-1.4443356,-1.4379308,-1.4533596,-1.4281268,-1.4381931,-0.90004414,-0.7825433,-0.94467103,-0.6245962,-0.5536523,-0.7041408,-0.8360466,-0.88617516,-0.9601209,-1.0445951,-1.0704172,-0.88887364,-0.96178913,-0.9764035,-0.6211501,-0.44774455,-0.40481716,-0.29084846,-0.39620173,-0.5564445,-0.64828146,-0.70142245,-0.73416066,-0.7481204,-0.74171793,-0.7380779,-0.78869915,-0.82720315,-0.8601105,-0.89322054,-0.8924757,-0.944777,-0.9632623,-0.974808,-1.141398,-1.1508808,-1.0974267,-1.0048466,-0.82975364,-0.93975353,-0.91525865,-1.0353979,-1.0064061,-1.0222301,-1.0173596,-1.007108,-1.0925249,-1.0576541,-1.0457268,-1.160002,-1.1058526,-1.0238233,-1.0902678,-1.2252941,-1.3009689,-1.2416633,-0.7462753,-0.07305928,-0.91437507,-1.025739,-1.0647697,-0.40413404,-0.14800829,0.15124679,-0.9063411,-1.0163163,-0.95419335,-0.61654145,-0.7502793,-1.0174391,-0.81053925,-0.76192105,-1.168087,-1.2195404,-1.0352528,-1.0079789,-1.034143,-1.0109552,-1.0797352,-1.1858245,-1.077991,-0.795439,-0.2552951,-0.93181825,-1.0872247,-0.9487457,-0.0061575696,0.28872004,0.060575925,0.15170968,-0.44989192,-0.80270755,-0.8044116,-0.867437,-0.9325876,-0.91453815,-0.52041316,-0.2298643,-0.4285398,-0.4974082,-0.4695707,-0.40119472,-0.80923164,-0.87448823,-0.5280889,-0.92923284,-0.9513283,-0.9255197,-0.8922751,-0.69045174,-0.4382059,-0.25702643,-0.05041983,-0.03438606,0.025196977,0.10081006,0.36871138,0.1351476,0.49754483,0.4431735,-0.4734683,-1.0642207,-1.0679542,-1.0578429,-1.0388036,-0.5332749,-0.7446706,-0.17556903,-0.21166939,0.016692407,0.10576948,-0.36993042,-0.8016621,-1.101311,-1.0264273,-1.079907,-0.829405,-0.8225667,-0.9791236,-0.9776242,-0.8438438,-0.62750924,-0.5579466,-1.0007353,-0.5887535,-0.5042098,-0.15217444,0.24099985,-0.1617535,-0.17237318,-0.2637248,0.016093709,0.026395284,-0.010084696,-0.15874732,-0.17217931,-0.1396262,-0.18629551,0.06070125,-0.14764956,-0.42077076,-0.52251816,-0.45916802,-0.73663116,-0.57890856,-0.8868977,-0.7554038,-0.08895614,-0.52111447
+-0.9662905,-1.0310394,-1.1618183,-1.310234,-1.466122,-1.4747621,-1.4639328,-1.4683359,-1.4670328,0.17600885,0.2879469,0.6245999,0.25185326,-0.22780254,-0.46974134,-0.7123833,-0.99006045,-1.2447448,-1.3731154,-1.4360114,-1.4698285,-1.4832942,-1.469276,-1.1914366,-0.8904122,-1.0900851,-1.2129741,-1.3522118,-1.4188306,-1.4810646,-1.4844757,-1.4322312,-1.4330279,-1.4531751,-1.1182096,-0.12301225,0.09485454,0.13124228,-0.1940648,-0.7539357,-1.0600334,-1.2622828,-1.3585446,-1.4228266,-1.4329937,-1.4161533,-1.3823394,-1.4820739,-1.5022365,-1.5642058,-1.5894178,-1.614465,-1.6308941,-1.6347244,-1.0748293,-1.1734705,-1.4324335,-1.5320737,-1.5478467,-1.5556412,-1.5660648,-1.5507003,-1.5383544,-1.582293,-1.5529581,-1.5459433,-1.5219017,-1.5228362,-1.5011936,-1.5488045,-1.5431044,-1.5869043,-1.5881739,-1.5600832,-1.5517541,-1.5571104,-1.5582999,-1.6050723,-1.5514872,-1.578021,-1.5839221,-1.5900302,-1.5699074,-1.5692999,-1.561348,-1.5963608,-1.5955132,-1.5540127,-1.5561689,-1.5511923,-1.5464226,-1.5621624,-1.539396,-1.529244,-1.5309842,-1.5563092,-1.57179,-1.5665138,-1.5440515,-1.5214722,-1.5190223,-1.5816172,-1.5967245,-1.595958,-1.6052085,-1.5845505,-1.5616803,-1.567006,-1.5760062,-1.5742829,-1.5693803,-1.5760891,-1.5792822,-1.6094031,-1.6077287,-1.5981989,-1.5740331,-1.5850642,-1.5722806,-1.5317369,-1.5062447,-1.5052532,-1.5491469,-1.563674,-1.5807867,-1.6096494,-1.591707,-1.5573225,-1.5704203,-1.6005902,-1.5765119,-1.5852369,-1.5847313,-1.5811775,-1.5755688,-1.5639284,-1.550478,-1.5797795,-1.5666962,-1.5557451,-1.5567763,-1.5613639,-1.554007,-1.5568101,-1.5461888,-1.5806192,-1.6007836,-1.5891367,-1.5697151,-1.5755258,-1.5750014,-1.5771545,-1.5597432,-1.5454222,-1.5612757,-1.5580069,-1.5556647,-1.5580531,-1.5823555,-1.5675935,-1.5643288,-1.5858474,-1.5929112,-1.5699652,-1.5510705,-1.5449072,-1.4995278,-1.5481211,-1.5634247,-1.5722759,-1.5546979,-1.5193095,-1.5356812,-1.4973407,-1.4313518,-1.3225083,-1.40767,-1.5221312,-1.5362822,-1.5289414,-1.5315259,-1.5108123,-1.4722605,-1.4970468,-1.532047,-1.4616482,-1.4308292,-1.4837505,-1.5001075,-1.5324507,-1.5494044,-1.5417935,-1.5308208,-1.5361013,-1.5272425,-1.5054085,-1.3416991,-1.2216146,-0.95595837,-0.6543236,-0.9753958,-1.1447294,-1.278806,-1.35328,-1.3923974,-1.4399651,-1.2766049,-1.1516212,-1.2288396,-1.3261147,0.26983386,0.24160734,0.17522475,0.05403582,-0.22308311,-0.45098972,-0.70073664,-0.83341587,-0.9337374,-0.9926765,-1.0555636,-1.1170905,-1.164713,-1.1987534,-1.212207,-1.226342,-1.2493103,-1.2571541,-1.2850921,-1.303107,-1.3290291,-1.3547258,-1.3811803,-1.3758222,-0.89675224,-0.9939991,-1.002674,-1.1315632,-1.183867,-1.257768,-1.2095705,-1.2395562,-1.2624805,-1.2578039,-1.2432226,-1.2929406,-1.3074534,-1.2865152,-1.2822957,-1.318737,-1.3201861,-1.1037344,-1.0105363,-0.4277388,-0.28319925,-0.8639361,-0.90286094,-0.49398345,-0.41344786,0.12176559,-0.9306679,-1.0615963,-1.0739338,-0.96233046,-0.84236753,-0.94422007,-0.9134903,-0.92206526,-1.1873405,-1.1960081,-1.1498756,-1.0772299,-1.0668523,-1.0745591,-1.0911759,-1.1515425,-1.1213088,-1.0369228,-0.6702298,-0.8377264,-1.2889249,-1.0715368,-0.4226566,0.13947809,-0.23120964,0.27746138,-0.49735922,-0.69983566,-0.8503454,-0.92341876,-0.92859197,-0.9181043,-0.75618887,-0.37020114,-0.47004086,-0.52756417,-0.44307554,-0.3747378,-0.7789378,-0.8337512,-0.58217984,-0.75490195,-0.7838603,-0.7855061,-0.7701168,-0.72645646,-0.53392243,-0.396065,-0.25278592,-0.113652654,-0.05879464,0.0881492,0.42549577,0.17273399,0.27278957,0.20351645,-0.35552007,-0.77227193,-0.90069854,-0.9267007,-0.88021314,-0.6557506,-0.7528194,-0.4151119,-0.5977529,0.057989784,0.5566886,0.20877618,-0.63714105,-0.8801337,-0.7904086,-0.84263086,-0.7038507,-0.870029,-0.84922296,-0.8117084,-0.7792485,-0.7687619,-0.7936307,-0.9473016,-0.88446283,-0.7725748,-0.71037006,-0.6785406,-0.7508689,-0.8299865,-0.93296945,-0.9986837,-1.0906498,-1.1325233,-1.1838007,-1.2375988,-1.2274148,-1.2851667,-0.7862875,-0.7389047,-0.9597372,-0.8736371,-0.8543014,-0.9913429,-0.8360615,-1.0594219,-1.0720587,-0.64630103,-0.8902927
+-0.960374,-1.1254269,-1.2365013,-1.2965468,-1.3794897,-1.3489113,-1.3411639,-1.3670554,-0.6759216,0.2235966,-0.047212027,-0.29467604,-0.5548128,-0.823904,-1.0051537,-1.1453593,-1.2329936,-1.3370805,-1.3629593,-1.3703917,-1.3752351,-1.161,-0.54219335,-0.8634051,-0.7077199,-0.91234946,-0.886113,-0.7367425,-0.8288808,-0.38786435,-0.5481105,-0.7271696,-0.95242167,-1.1318488,-1.1851063,-0.24529406,-0.011586942,-0.1489459,-0.37482977,-0.73671544,-0.99071646,-1.1578763,-1.2599959,-1.313251,-1.329627,-1.3666586,-1.3839676,-1.3810949,-1.3635738,-1.4226308,-1.4244057,-1.4512714,-1.4640865,-0.56233823,-0.3094783,-0.13670367,-0.5405202,-0.82613295,-1.0696968,-1.2375273,-1.3378918,-1.3482351,-1.3813679,-1.4248875,-1.4109969,-1.4142485,-1.4000447,-1.4012228,-1.3957248,-1.4311273,-1.4302648,-1.4478195,-1.1664326,-1.171896,-1.3392824,-1.4007691,-1.4390457,-1.4495256,-1.4259841,-1.4446673,-1.4490492,-1.4414542,-1.4374077,-1.4396656,-1.4398724,-1.4501472,-1.4453795,-1.4313517,-1.4348292,-1.4383509,-1.4337084,-1.4351735,-1.4197097,-1.425621,-1.4136947,-1.4286888,-1.4402725,-1.4384483,-1.4267951,-1.4146984,-1.3798211,-1.4581401,-1.4436659,-1.4515996,-1.4454274,-1.4451153,-1.4296106,-1.4346868,-1.4480274,-1.4405684,-1.4399107,-1.4434652,-1.4503744,-1.4535998,-1.4494488,-1.4403874,-1.4447886,-1.4626268,-1.4637399,-1.2406361,-1.290549,-1.3744309,-1.4206233,-1.4355619,-1.4343638,-1.4703588,-1.445387,-1.4252012,-1.4329263,-1.446636,-1.4382248,-1.4332585,-1.4451661,-1.4413995,-1.437823,-1.4343059,-1.4280977,-1.4522111,-1.4467349,-1.4723189,-1.4343065,-1.440336,-1.4287105,-1.4385052,-1.4262168,-1.4207218,-1.4389365,-1.4449561,-1.4319657,-1.4432623,-1.4524901,-1.4686372,-1.4535623,-1.433643,-1.4293683,-1.4285483,-1.4107077,-1.4419792,-1.4434257,-1.4281089,-1.4236829,-1.4363724,-1.4372542,-1.4157432,-1.3812823,-1.3981814,-1.3434645,-1.4225392,-1.422416,-1.4146484,-1.4180056,-1.4088244,-1.4252203,-1.4242882,-1.3638887,-1.3408906,-1.369041,-1.4219939,-1.4187543,-1.4102486,-1.4090526,-1.4217455,-1.3744543,-1.368309,-1.3834536,-1.2772943,-1.2654216,-1.3221772,-1.3749406,-1.3927507,-1.4094403,-1.400288,-1.4092805,-1.3987713,-1.4002645,-1.4162043,-1.4039888,-1.3325171,-0.49543744,0.1958557,-0.4484505,-0.7024885,-0.8420345,-0.9827856,-1.092457,-1.1789565,-1.1976093,-1.0681734,-1.1735802,-1.2331638,-0.1421378,-0.28499213,-0.41327548,-0.41481096,-0.6652707,-0.79411197,-0.91450095,-0.9704423,-1.0290787,-1.0828791,-1.1325059,-1.174263,-1.2025588,-1.2187104,-1.223277,-1.2469572,-1.2495128,-1.2698998,-1.2981768,-1.2993245,-1.2898939,-1.2877221,-1.3053498,-1.3181219,-1.019856,-1.0637978,-1.086132,-1.1710272,-1.1918447,-1.2322981,-1.0799205,-1.0765095,-1.1097575,-1.1573758,-1.141432,-1.1239114,-1.2188944,-1.1670547,-1.1814423,-1.2535163,-1.2233982,-1.148354,-1.1143465,-1.1009332,-0.95063674,-1.1776837,-1.159637,-1.0685202,-1.0778846,-0.5371977,-1.0587654,-1.1783985,-1.1867933,-1.1343613,-1.041393,-1.1033602,-1.0944043,-1.0606751,-1.2706063,-1.2355399,-1.1809404,-1.1284136,-1.1340842,-1.1506968,-1.1599121,-1.1896565,-1.253798,-1.18473,-0.6884864,-0.72890323,-1.2582339,-1.0006466,-0.25404793,-0.24553636,-0.46225268,-0.07722329,-0.47485733,-0.5368477,-0.8369907,-0.9777441,-1.0679402,-1.0803678,-0.9430462,-0.61800027,-0.67785025,-0.6553978,-0.57704514,-0.5899872,-0.96601725,-1.0458255,-0.900445,-0.93418825,-0.9679245,-0.9520483,-0.91825664,-0.86226165,-0.81105024,-0.62721443,-0.49050623,-0.6497464,-0.64466244,-0.53994507,0.34749097,0.10445964,-0.061748587,0.19658613,0.03881515,-0.63611805,-0.954263,-1.02735,-0.974331,-0.8810167,-0.95236933,-0.75469935,-0.97749484,-0.14230618,-0.06335444,-0.4471171,-1.0378789,-1.1271242,-1.2044687,-1.1384897,-1.1483053,-1.1806531,-1.0800018,-0.9746573,-0.98811996,-1.0325034,-1.062611,-1.2163023,-1.0632629,-1.0009031,-1.0434074,-1.0747215,-1.0987502,-1.1497256,-1.1849298,-1.2216675,-1.2569804,-1.2974814,-1.3103315,-1.319519,-1.3426206,-1.3561304,-1.0600953,-0.5700599,-0.8741141,-0.91578424,-0.80782735,-1.0296088,-1.0226878,-1.1446699,-1.1029657,-0.94595194,-0.9731066
+-0.026777267,-0.31966397,-0.4961127,-0.584938,-0.6615361,-0.6986246,-0.7604084,-0.71251404,0.42249474,0.4803055,0.26380822,0.043625914,-0.16479224,-0.30234018,-0.4144622,-0.56525445,-0.7344936,-0.8746881,-0.97861135,-1.0882077,-1.1682153,-1.1649772,-1.0593005,-1.1447836,-1.042349,-1.0988405,-1.2138199,-1.1107066,-1.1391866,-1.233089,-1.2696947,-1.2776117,-1.2916741,-1.3085291,-1.3015931,-1.1612606,-0.78347826,-0.7554448,-0.94704103,-1.1114753,-1.2011993,-1.251426,-1.2908627,-1.3087939,-1.3213569,-1.3471533,-1.3605732,-1.3658496,-1.3789198,-1.4264029,-1.443912,-1.4609729,-1.464869,-1.4414669,-1.3953735,-1.402246,-1.4128579,-1.4099891,-1.3966829,-1.4071763,-1.3946229,-1.3883581,-1.3953581,-1.4006171,-1.3929979,-1.3890723,-1.4088823,-1.4098506,-1.3946054,-1.4054681,-1.4090585,-1.3909485,-1.3001865,-1.3172604,-1.4116882,-1.4468256,-1.4624774,-1.4683517,-1.452049,-1.4224325,-1.382591,-1.3874586,-1.3964381,-1.4311961,-1.4401219,-1.445929,-1.4381385,-1.4176598,-1.3869467,-1.3709532,-1.4062302,-1.42326,-1.417084,-1.4209399,-1.4237223,-1.423507,-1.447429,-1.4484568,-1.4369556,-1.4184556,-1.4135362,-1.4498047,-1.4571073,-1.4574819,-1.4401119,-1.4251211,-1.4319143,-1.4419165,-1.4526863,-1.4555824,-1.4615723,-1.4529433,-1.4439533,-1.4373611,-1.4372541,-1.4279265,-1.4107265,-1.3895535,-1.3911692,-1.3728652,-1.3527231,-1.3633001,-1.3737438,-1.3776219,-1.3990703,-1.3917698,-1.40803,-1.4248667,-1.4330353,-1.4388609,-1.4467844,-1.443095,-1.4431024,-1.4346213,-1.4113632,-1.3888433,-1.4032278,-1.4292059,-1.4384539,-1.4298601,-1.4267902,-1.4256126,-1.4041221,-1.3806041,-1.3818557,-1.3882911,-1.3974098,-1.4087709,-1.4128939,-1.4056156,-1.3974526,-1.3955805,-1.3913743,-1.3969388,-1.4060075,-1.407108,-1.4352076,-1.4393439,-1.4362109,-1.423877,-1.4037025,-1.3956774,-1.3861924,-1.3806635,-1.3883384,-1.4110348,-1.416734,-1.4323132,-1.4192342,-1.410049,-1.3967218,-1.3787103,-1.360995,-1.3659033,-1.3977787,-1.4149299,-1.4262717,-1.4002881,-1.377858,-1.3675286,-1.3597524,-1.3432782,-1.3567035,-1.3783429,-1.3859435,-1.3947647,-1.3940746,-1.3826654,-1.3906138,-1.3933295,-1.3737872,-1.3571991,-1.3552902,-1.3590984,-1.3721853,-1.3858798,-1.3748518,-1.350276,-1.2468469,-1.1765428,-1.2425144,-1.3222182,-1.3425968,-1.3406928,-1.3368239,-1.3294691,-1.2913015,-1.2220058,-1.2753943,-1.3035705,-0.6414666,-0.5716492,-0.6158511,-0.31270418,-0.5578688,-0.68842554,-0.8509233,-0.9797907,-1.0733719,-1.1104779,-1.1355038,-1.1512275,-1.1541142,-1.1486516,-1.146588,-1.1627712,-1.1670675,-1.1813271,-1.1740309,-1.155586,-1.1022167,-1.1469296,-1.1885432,-1.2042887,-0.8600423,-0.72366506,-0.8382514,-0.9237505,-0.98363864,-1.0069451,0.751739,0.41768098,0.19867256,0.09636382,-0.036745436,-0.07342919,-0.2172926,-0.3344759,-0.43548226,-0.50154746,-0.54448533,-0.47977614,-0.12128917,-0.20208055,-0.25875735,-0.30417913,-0.39430606,-0.41200584,-0.49520397,1.0165043,0.8676032,0.4609678,0.25638506,0.09157825,0.0048320517,-0.042614467,-0.046674572,0.75732976,0.5851115,0.4221929,0.28851703,0.19669089,0.09234033,0.056936853,0.45875123,0.53770304,0.3448124,0.24358112,0.59483,0.9180771,0.789394,0.636315,0.69465506,1.0282786,0.80272794,0.87427396,1.1921992,1.034299,0.8960744,0.81603116,0.7303471,0.60674405,0.49220532,0.94026905,1.2038019,1.099172,1.0781566,1.4480011,1.1764952,1.0163242,0.9172003,0.8108101,0.6585134,0.5377102,0.44037518,0.39621553,0.32645518,0.21450287,0.32869762,0.41618562,0.34827778,0.71599996,0.9727863,0.90745467,0.841065,0.82957137,1.0655065,0.9329788,0.7711121,0.6581942,0.54729193,0.4454093,0.7871345,0.9073506,0.7714479,0.94105065,0.8807385,0.8326169,0.84648967,0.69300073,0.50602186,0.42477244,0.40075403,0.49004626,0.35412627,0.20402741,0.06875677,-0.037248604,0.077507675,0.36134166,0.14743567,0.026346184,-0.05866172,-0.12604815,-0.15936452,-0.19427812,-0.2396276,-0.28662413,-0.32746112,-0.3494675,-0.3806752,-0.42508394,-0.45478147,-0.49297667,-0.41191667,-0.14668834,-0.010120548,-0.17177963,-0.18032706,-0.15786636,-0.14623892,-0.22710037,-0.35959315,-0.40686482,-0.41065568
+-0.6742364,-1.3963442,-1.4095623,-1.3899748,-1.4068483,-1.438751,-1.379449,-1.0414796,-0.5013044,-0.48364103,-0.5823397,-0.7099912,-0.8451651,-1.0538073,-1.154161,-1.313894,-1.4143448,-1.459081,-1.4839649,-1.509718,-1.5257615,-1.5334793,-1.5211474,-1.5366995,-1.5504857,-1.5388415,-1.5924709,-1.5361602,-1.5644504,-1.5863469,-1.5675485,-1.5614192,-1.5612358,-1.5609009,-1.5527209,-1.1226414,-0.7892418,-0.84965944,-1.0227137,-1.2004154,-1.3034859,-1.4112508,-1.4784449,-1.5005425,-1.5126035,-1.5355527,-1.5436567,-1.5450121,-1.5508876,-1.5670722,-1.6186931,-1.6475717,-1.6524398,-1.6251488,-1.5654022,-1.6046638,-1.611649,-1.5905681,-1.5618382,-1.5602319,-1.5592946,-1.5479721,-1.5311711,-1.5191045,-1.5051796,-1.5086883,-1.5232606,-1.5279671,-1.5189899,-1.5128374,-1.5108082,-1.5107715,-1.5166551,-1.5312505,-1.550012,-1.5794989,-1.5976897,-1.5952795,-1.5719495,-1.5509112,-1.5150182,-1.491485,-1.493054,-1.5015843,-1.5093843,-1.511255,-1.495317,-1.4740493,-1.4547173,-1.4521948,-1.451004,-1.4849489,-1.5019944,-1.5245385,-1.5292356,-1.5322622,-1.5349199,-1.5476154,-1.5460097,-1.5354788,-1.5286808,-1.5451541,-1.5505202,-1.549494,-1.533874,-1.5203674,-1.5316141,-1.5419809,-1.5595522,-1.5589663,-1.5497582,-1.5332274,-1.5164601,-1.4795883,-1.4785243,-1.4993287,-1.5011157,-1.4828658,-1.4805701,-1.4673955,-1.4689635,-1.4857672,-1.4964612,-1.5002899,-1.4962177,-1.4973978,-1.493294,-1.5134475,-1.5207071,-1.5132473,-1.5137477,-1.531705,-1.534562,-1.530154,-1.510442,-1.4927398,-1.4818618,-1.4931052,-1.4979264,-1.4982376,-1.5139189,-1.5179844,-1.5227787,-1.5135125,-1.5115945,-1.5089439,-1.5036669,-1.5032303,-1.5062579,-1.5039856,-1.4915496,-1.4756762,-1.4676826,-1.4670945,-1.4795281,-1.4864359,-1.4869723,-1.4846998,-1.4912649,-1.4915093,-1.4709992,-1.4483516,-1.4588164,-1.4590088,-1.4555007,-1.4453809,-1.4286615,-1.4833927,-1.4922866,-1.4844601,-1.4632095,-1.4509029,-1.4462948,-1.4407785,-1.4364077,-1.4908991,-1.5045398,-1.4782447,-1.43578,-1.4245415,-1.4352164,-1.4194183,-1.4100969,-1.4455234,-1.4364543,-1.4416258,-1.4617007,-1.4354761,-1.4675479,-1.4752995,-1.456595,-1.434662,-1.454382,-1.4600965,-1.4278504,-1.4234576,-1.449359,-1.4236095,-1.3446441,-1.0440093,-1.0839236,-1.2792673,-1.3812451,-1.4005377,-1.4088699,-1.4277292,-1.3584149,-1.2609969,-1.3302695,-1.4109058,-0.487535,-0.50844646,-0.2870179,-0.35988754,-0.5662426,-0.8193197,-0.977126,-1.0863711,-1.1783829,-1.2301458,-1.2786634,-1.3076885,-1.3085917,-1.2857552,-1.2975867,-1.3327922,-1.3175894,-1.3314111,-1.3469732,-1.3406204,-1.3310704,-1.3773654,-1.3636504,-1.4039655,-0.3901101,-0.3174591,-0.6398457,-0.8642248,-0.9744972,-0.9621997,-0.43185282,-0.5736895,-0.72687536,-0.9109529,-0.93173075,-0.97820175,-1.0895717,-1.1149267,-1.1645114,-1.145942,-1.1627375,-1.2056502,-1.0990827,-0.90082616,-0.94179296,-0.9968281,-1.0439153,-1.0662637,-1.0952278,0.18222281,-0.2941658,-0.6803367,-0.7988802,-0.869481,-0.79108655,-0.67334974,-0.55218714,-0.075127445,-0.4474303,-0.37363374,-0.43230033,-0.5816367,-0.69134134,-0.4968273,-0.14762604,-0.2212762,-0.3494035,-0.4128105,-0.50082576,-0.25852498,-0.2932331,-0.07241862,-0.031343184,0.15622103,-0.030327834,-0.111218296,-0.03845077,-0.19062546,-0.07259039,-0.3366499,-0.4723009,-0.6465714,-0.6425475,-0.24633631,0.25920734,-0.09896522,0.5277871,0.28624612,-0.21270499,-0.4176948,-0.57835746,-0.6100105,-0.5933541,-0.6002382,-0.61300856,-0.66675144,-0.7077817,-0.6642314,-0.54054934,-0.32479283,-0.47684187,-0.042409442,-0.023247175,-0.095590435,-0.16302466,-0.23069397,0.04327921,-0.07349586,-0.16635066,-0.28862575,-0.48747623,-0.5089925,0.62111485,0.83318055,0.07205627,0.14841774,0.06054247,-0.09539274,-0.44373763,-0.63752514,-0.70260453,-0.5666041,-0.34294838,-0.5831907,-0.75211245,-0.8089624,-0.86267877,-0.8162779,-0.85480136,-0.9804338,-0.89801526,-0.8365511,-0.85614157,-0.8920349,-0.92043424,-0.948562,-1.0010421,-1.0345681,-1.0906646,-1.1199577,-1.1456594,-1.1715637,-1.1775578,-1.2318968,-0.7804075,-0.36308154,-0.50891376,-0.69834316,-0.7790203,-0.8153538,-0.8026267,-0.9135188,-1.0348132,-1.0948392,-1.1566697
+1.3706213,1.4005363,1.3216379,1.4633858,1.4327588,1.0516614,1.0741725,1.0827591,1.2520578,0.9768227,0.91908014,0.99976856,1.019496,0.7561153,0.8439471,0.80076516,0.8076715,0.7783748,0.820637,0.9241541,1.0481969,1.3202896,1.693404,1.6863847,1.4338766,1.164479,0.9958457,1.053121,0.9978882,0.95179105,0.9294817,0.97262156,1.0811269,1.1967971,1.5897524,1.4666232,1.4915414,1.5244957,1.5449036,1.2777292,1.2940693,1.3979578,1.1579862,1.0663108,1.013558,0.98662686,1.0566323,1.1474804,1.5492458,1.3266121,1.5282649,2.0840867,2.1708674,1.9050959,2.1004982,2.0717201,2.2425053,2.0864975,2.138241,1.9482834,1.7233882,1.8440081,2.191118,2.0738463,2.0033226,2.0372927,2.0552115,2.0584059,2.0561333,2.4774625,2.4580636,2.2261963,1.8630996,1.9154837,2.0142462,1.5814841,1.3463106,1.3099774,1.3214985,1.2432652,1.1958268,1.2302301,1.3039227,1.6791841,1.8331938,1.7757413,1.7222664,1.7830985,1.8279313,1.8665257,1.8553407,1.8949316,1.923768,1.941168,2.347722,2.502868,2.457137,2.1079996,2.1245446,2.4108331,2.6269093,2.658485,2.5788436,2.493211,2.4311953,2.5838225,2.803308,2.7553072,2.631306,2.6843648,2.5179377,2.3100286,2.488934,2.7156549,2.5052936,2.3772926,2.5798123,2.651808,2.5112643,2.3463778,2.231207,2.3238938,2.194837,1.9907842,2.4451187,2.4079556,2.1765666,2.223531,2.1972513,2.1121457,2.0769937,2.4127202,2.60679,2.3631814,2.2371583,2.1926267,2.2617326,2.1596909,2.0819836,2.0186696,1.9196311,1.7666156,1.7240331,2.0811288,2.328525,2.0882485,1.9403958,1.9171848,1.8256842,2.0174546,1.9170948,1.8384166,1.778682,1.8096776,2.3208952,2.506948,2.1995494,1.99571,1.8615186,2.0945144,2.5005293,2.4020104,2.0931365,2.3922617,2.3421254,2.0693958,1.970649,1.9386158,1.9564077,2.2825139,2.8039083,2.526616,2.4268382,2.1779003,2.1053228,1.9211166,2.2702146,2.24418,2.2577233,2.2307267,2.350869,2.2307444,2.2101326,2.4450154,2.529675,2.2643313,1.9880648,2.063129,2.1162126,2.1236207,2.313923,2.488962,2.3174713,1.8890741,1.4859816,1.5288603,2.0053263,1.8911157,1.7340057,1.7902806,1.629988,1.6232691,1.7290847,1.6882308,1.6076821,1.5453665,1.629643,1.6376135,1.649281,1.7601899,1.7272291,1.5487242,1.5747309,1.7255814,1.6522093,1.5929064,1.5915544,1.7324874,1.7434438,1.9841282,1.8624458,1.7926619,2.0572932,2.3648403,2.2547233,2.3825903,2.6257634,2.726389,2.6830654,2.518949,2.0357,1.669462,1.5496166,1.7495854,1.8215563,1.4956795,1.5373895,1.4585385,1.6282858,1.694019,1.608423,1.4222049,1.338419,1.3023434,1.437139,1.3643315,1.3983979,1.501816,1.4188294,1.3653604,1.3333257,1.2958499,1.3122299,1.3055518,1.315828,1.3543849,1.311728,1.2888451,1.2721181,1.3012629,1.306243,1.3029506,1.3837397,1.3889134,1.3718758,1.2164831,1.3112884,1.3205907,1.283882,1.2388732,1.3325764,1.4180393,1.302925,1.4119279,1.3136724,1.2575454,1.237114,1.2777257,1.2913189,1.2877219,1.2137299,1.1999836,1.1779304,1.2887974,1.3526863,1.2844174,1.2568417,1.2501793,1.2126242,1.162123,1.1410197,1.1438472,1.3404405,1.5017884,1.3789477,1.3184239,1.2924789,1.3039367,1.2808892,1.2735302,1.2147851,1.1799262,1.1206257,1.1381804,1.2526978,1.2554215,1.2402184,1.2249845,1.2904061,1.2224929,1.3643317,1.3964012,1.2644515,1.1971471,1.2564886,1.3729863,1.3837126,1.2054468,1.1579171,1.1892989,1.2901022,1.8160484,1.5985396,1.3983573,1.3800709,1.3387359,1.3822542,1.2975003,1.2194934,1.1899862,1.1855147,1.1920645,1.2076212,1.145445,1.1690726,1.136955,1.2071699,1.3050146,1.3290585,1.2574847,1.2787246,1.2615275,1.2078844,1.2995173,1.3178074,1.3880715,1.4373851,1.4692771,1.7431717,1.4570811,1.2705688,1.3980634,1.4358052,1.2283762,1.216894,1.3643024,1.3763663,1.3011401,1.3344613,1.2658265,1.3464218,1.3098874,1.4163079,1.4432776,1.2450747
+0.2638842,0.48551905,0.6276332,0.7552325,1.0971084,1.0010892,0.8849032,0.7045798,0.65446883,0.5666195,0.4718219,0.5376439,0.68582475,1.0385709,0.97480935,0.9271066,0.75287426,0.539871,0.37634236,0.3217516,0.31007925,0.36038098,0.40712935,0.73092294,0.7283383,0.57676005,0.4345444,0.33625153,0.3583769,0.9157894,0.7104118,0.52605975,0.40997255,0.3415682,0.8623456,0.7150818,0.4724292,0.41355863,0.693418,0.54049665,0.4132735,0.47685435,0.3483121,0.2636772,0.19857994,0.32148972,0.3822324,0.30829126,0.3780449,0.49064136,0.4791077,1.7803781,2.097625,1.7008592,1.4529095,1.2232206,1.4058571,1.3462049,1.1645715,1.0523854,0.82254505,0.6627263,0.678335,0.7117563,0.47575086,0.33199757,0.24309191,0.23175344,0.2847308,0.48069894,1.249399,1.4367877,1.1082602,0.8350399,0.8133413,0.88327575,0.6828469,0.60470617,0.46822348,0.6954335,0.42732474,0.3562117,0.4171046,0.27736753,0.5027856,0.6471398,0.44454122,0.23471132,0.117365785,0.083190896,0.07904052,0.1433034,0.07028534,0.16703615,0.17841098,0.14296362,0.39867032,0.26263672,0.62165964,1.2786595,0.9196365,0.73595226,0.5369098,1.0018555,0.61072373,0.47435096,0.41089776,0.4426141,0.23982242,0.19419894,0.15679494,0.0047506243,0.7565038,1.0981623,0.5509266,0.26367489,0.28733078,0.4981857,0.25795835,0.12293222,0.08368315,0.11821578,-0.005288638,-0.10656913,-0.057777874,-0.028483465,-0.09822997,-0.13267669,0.058560513,0.12048925,0.155451,0.42355856,0.4768219,0.18180865,0.017695442,-0.0432257,-0.06328698,-0.11980293,-0.11975565,-0.12785557,-0.20546079,-0.31021333,-0.27333593,-0.1825712,-0.24510211,-0.30949688,-0.36529022,-0.3860996,-0.37079942,-0.2829401,-0.4024092,-0.39328825,-0.32284388,-0.28959608,-0.233215,0.024727993,-0.08488164,-0.19764563,-0.33208114,-0.03413158,-0.03713713,0.04092274,-0.18575576,-0.20796403,-0.3049452,-0.3816522,-0.4682212,-0.42865688,-0.40576208,0.035918124,0.630523,0.47289813,0.29402876,0.060032524,-0.044019975,-0.15933877,-0.069635026,-0.24875677,-0.29825157,-0.3070493,-0.2944633,-0.3407291,-0.3429995,-0.0007948801,0.15437758,-0.001015909,0.09537593,0.3064188,0.25727648,1.3509003,1.4533885,1.304004,2.1356134,1.5379028,0.9158969,1.2615548,2.3315651,1.9071335,1.8513132,2.0976295,2.1161208,2.0293713,2.3742633,2.2191336,2.0226858,1.8670524,1.5645266,1.6356525,2.1793947,2.2324796,2.1101165,1.9681945,1.7657945,2.3044956,2.2953415,1.980893,1.7781293,1.5940521,1.3977648,1.5038474,1.622971,1.3620027,1.254688,1.2361754,1.1002712,0.9707432,1.0793588,1.4539587,1.7711071,1.707782,1.065255,0.70006835,0.7772881,1.0941449,1.2929969,1.1285346,1.0582051,0.93279487,1.439498,1.455851,1.1559244,1.2268974,0.83704007,0.6634448,0.9564333,0.60155547,0.700064,0.88094765,0.35854122,0.28593233,0.24892357,0.23166355,0.27630877,0.46914274,0.50127894,0.50317115,0.2758409,0.25160572,0.29688683,0.25902548,0.2603293,0.25804693,0.287389,0.68346083,0.460506,0.32613885,0.42892283,0.83678603,0.6636551,0.49056274,0.6871891,0.55613345,0.43455917,0.63089436,0.35082817,0.49175483,0.31802544,0.25732586,0.25335562,0.25901386,0.2530377,0.22848448,0.2853395,0.60396165,0.46464977,0.23325464,0.23886782,0.23229554,0.22447911,0.22347182,0.22134423,0.27439818,0.84916663,1.1149068,0.82386184,0.6810914,0.89888924,1.0059794,0.69338965,0.63907343,0.69639146,0.48407608,0.4859532,0.5491583,0.5287982,0.58472914,0.3071807,0.25528145,0.3291669,0.6915691,0.94806546,1.0506206,0.6115999,0.49290413,1.0621722,1.0381922,0.68799937,0.46503213,0.42822954,0.40329927,0.5993468,1.7194088,1.279752,0.8861102,1.1139598,1.015612,1.0514053,0.8364172,0.4615346,0.36914587,0.52849394,0.60467935,0.61559415,0.60879964,0.63245326,0.84230447,1.0424135,1.000872,0.85527587,0.601168,0.5453336,0.92164755,0.9369657,1.0928401,0.94709957,1.1046199,1.2148844,1.3834977,1.4793446,1.3014965,0.9200723,1.4528826,1.1344879,0.81313354,1.083748,1.0665239,1.0618755,0.9687723,1.1232247,0.93439645,1.3071858,1.0730431,1.1924205,1.1528873,0.9614347
+-0.7421818,-1.1891122,-1.3967407,-1.2955003,-0.99497926,-1.168958,-1.2654921,-1.3552233,-1.5322409,-1.593615,-1.6374309,-1.2984611,-1.0645139,-0.54560876,-0.67601854,-0.82390845,-0.9495586,-1.1095804,-1.3155324,-1.4466975,-1.4681747,-1.4704994,-0.8015398,-0.70361984,-0.80122304,-0.98606324,-1.0912988,-1.2426302,-0.096148826,-0.27929983,-0.35569543,-0.5044482,-0.69418687,-0.935714,-1.0628893,-0.72668725,-0.9468739,-1.2115948,-1.367316,-1.5789992,-1.6018512,-1.6457353,-1.7175764,-1.5490229,-0.61248124,-0.24892834,-0.55499244,-0.81346565,-0.80781806,-1.0078351,-0.60560405,-0.5493586,-0.675655,-0.9120523,-0.9889102,-1.2006056,-1.3751425,-1.5409611,-1.6383896,-1.7046838,-1.7303462,-1.7130666,-1.7619464,-1.8087053,-1.7701176,-1.7494423,-1.7658653,-1.7474945,-1.4947488,-1.2611047,-0.9663552,-1.0252562,-1.3345044,-1.5185132,-1.3827533,-1.359838,-0.8437851,-1.0364558,-0.96205175,-1.08049,-1.2672637,-1.4872464,-1.6145561,-1.6470451,-1.3250794,-1.5077035,-1.6052272,-1.6556125,-1.6945081,-1.7295877,-1.7417555,-1.7565491,-1.703579,-1.7786629,-1.8120363,-1.7751656,-1.734523,-1.7615564,-1.078972,-0.19632155,-0.0878244,-0.19985843,-0.46561408,-0.6350912,-0.9417269,-1.2017831,-1.4440377,-1.5430973,-1.6124175,-1.6206727,-1.5556512,-1.6561302,-1.6712954,-1.7391505,-1.7389231,-1.7039424,-1.6729481,-1.6632655,-1.667755,-1.6608417,-1.6635896,-1.717132,-1.7409577,-1.7377768,-1.7310196,-1.7421442,-1.6996309,-1.7243732,-1.6631927,-1.712781,-0.9951726,-0.4671446,-0.7478714,-1.0197229,-1.2080436,-1.3866739,-1.4965138,-1.5728251,-1.6129407,-1.6329619,-1.636054,-1.6634123,-1.689214,-1.6762198,-1.7137125,-1.711005,-1.7195277,-1.7127585,-1.7250133,-1.7057974,-1.7149479,-1.7308633,-1.6991981,-1.6572833,-1.3664918,-1.4760112,-1.5661955,-1.5669386,-1.1630418,-0.78766423,-1.0191381,-1.239852,-1.3510499,-1.4743693,-1.578069,-1.6280185,-1.6511412,-1.6374602,-1.617809,-1.6822261,-1.3003304,-1.3891916,-1.5498352,-1.6314135,-1.5363972,-1.5576228,-1.3922333,-1.5881914,-1.593343,-1.6099578,-1.5846354,-1.5985137,-1.311513,-1.4221538,-1.4899237,-1.6306455,-1.2000134,-0.77759993,-0.6311886,-0.51378775,-0.44748992,-0.41041213,-0.084391855,-0.360873,-0.6152285,-0.6782494,0.10548966,-0.1772973,0.064918146,0.060105294,-0.081298776,-0.25755638,-0.41100693,-0.26279992,-0.07135127,-0.20519727,-0.3629737,-0.4142444,-0.10860606,-0.1501759,-0.19902149,-0.2678128,-0.11426858,0.18022192,-0.13337237,-0.24284673,-0.2769385,-0.30825424,-0.38730168,-0.4278512,-0.39731735,-0.43198454,-0.5437159,-0.6100741,-0.64184976,-0.76400256,-0.5859177,-0.31611985,0.024576448,-0.15504003,-0.5299401,-0.65179974,-0.41115683,-0.19083348,-0.085200466,-0.27253354,-0.15417403,-0.28640008,-0.250378,-0.25193167,-0.37623587,-0.22496998,-0.6048778,-0.64254963,-0.49557805,-0.9739226,-0.39879024,-0.1326603,-1.0540853,-0.93356633,-1.1823533,-1.2201496,-0.8048768,-0.36237693,-0.42137176,-0.43528676,-0.45485866,-0.9247,-0.62522006,-0.8759763,-1.1936336,-1.159544,-0.9034617,-0.23710373,-0.90618896,-0.99615717,-0.49225616,-0.11899992,-0.47131908,-0.86451113,-0.40052822,-0.5675709,-0.7041433,-0.07208466,-0.73124945,-0.5330937,-0.5390911,-0.8900628,-1.032462,-1.0173903,-0.97723794,-0.8387841,-0.48903418,-0.041189022,-0.23611659,-0.3120684,-0.8063615,-0.81794226,-0.78970283,-0.8122263,-0.81586164,-0.7543263,-0.03824874,0.3022776,0.13901033,0.16731963,0.014252417,-0.075083114,-0.45032448,-0.3356734,-0.3746252,-0.72898465,-0.700868,-0.58637094,-0.39364746,-0.1279178,-0.7666066,-0.97597253,-0.71548486,-0.08418121,0.30975989,0.29692474,-0.22668773,-0.19408801,0.4540532,0.44064686,-0.21586114,-0.5407857,-0.6089889,-0.6432087,-0.3875107,0.3138111,0.35266173,0.3577757,0.3552361,0.29470703,0.41498837,0.39050335,-0.40984333,-0.8110175,-0.62228805,-0.44962496,-0.28938353,-0.3594776,-0.31411874,-0.16234112,0.059489302,0.23532388,-0.082404934,-0.4994558,-0.37774408,0.053272564,0.30734017,0.39886558,0.3349701,0.1557357,0.13083911,0.3189208,0.23172262,0.26805043,0.12765315,0.4231392,0.1600995,0.14099574,0.10020725,0.10284753,0.06300494,0.022085764,0.10147193,0.024564616,0.15664488,0.05441595,0.19586757,0.17673536,-0.012998052
+-0.4598419,-0.52581257,-0.5489806,-0.5854108,-0.7313469,-0.8276272,-0.87628615,-0.9290769,-0.98890483,-0.99731684,-1.0236669,-0.96115375,-0.27677226,-0.24227655,-0.36095008,-0.5835069,-0.7862724,-0.9001068,-1.0107379,-1.0651338,-1.07779,-1.0782093,-0.86904067,-0.7031697,-0.8282827,-0.9273745,-0.8567274,-0.752286,-0.75972295,-0.694212,-0.8756045,-0.9732648,-1.0138218,-1.0241697,-1.0354725,-0.62561584,-0.67408717,-0.816903,-0.85347694,-0.91244507,-1.0297021,-1.0489461,-1.092206,-1.1057552,-0.40135923,-0.24234533,-0.5134567,-0.694707,-0.2651621,-0.2209793,-0.049719013,0.040136136,-0.108947895,-0.2929582,-0.46021366,-0.63027567,-0.7435159,-0.8916733,-0.9970269,-1.0318782,-1.1246397,-1.1679525,-1.1012324,-1.0281212,-1.1069351,-1.1711652,-1.1556804,-1.1857958,-1.1973429,-1.1457064,-1.1746264,-1.0663031,-1.2195752,-1.262558,-1.0137013,-0.99550986,-0.24878788,-0.46510297,-0.51551425,-0.66287076,-0.92055357,-1.0180583,-1.1266013,-1.1755612,-1.0952536,-1.178883,-1.2300553,-1.248706,-1.2455728,-1.2463462,-1.236775,-1.2223383,-1.2965705,-1.2434766,-1.266555,-1.295078,-1.2900859,-1.3169863,-1.3757113,-0.81098616,0.06056454,0.0030440018,-0.28672594,-0.24132946,-0.6257776,-0.85397565,-0.9729886,-1.0595369,-1.1513289,-1.1434697,-1.1687685,-1.2410582,-1.2466859,-1.2287488,-1.2836875,-1.3233454,-1.3378077,-1.3326185,-1.3341683,-1.3462818,-1.3387481,-1.339133,-1.3693328,-1.3828318,-1.3377706,-1.3569114,-1.395588,-1.3203833,-1.108932,-1.0992173,-0.9688244,-0.85668236,-1.0767491,-1.1966758,-1.2623686,-1.286661,-1.256793,-1.3009496,-1.3082721,-1.3268064,-1.3288527,-1.3308833,-1.3403953,-1.3371501,-1.3856876,-1.3941245,-1.4013313,-1.4006044,-1.3837996,-1.3540112,-1.3367016,-1.3274143,-1.2755237,-1.2653737,-1.2664924,-1.2334795,-1.2432075,-1.2673924,-1.268466,-1.056986,-1.1486315,-1.2208645,-1.2916123,-1.2924898,-1.2924225,-1.3260176,-1.3447015,-1.3389368,-1.3400946,-1.3169568,-1.035717,-0.93913436,-1.0477785,-1.140784,-0.7681973,-0.6319914,-0.6572343,-0.80543816,-0.9742714,-1.0694027,-1.1396298,-1.1932209,-1.2225764,-1.1628236,-1.1816486,-1.196001,-1.1202886,-0.8441976,-0.69818795,-0.60846627,-0.565922,-0.6320041,-0.72700316,-0.72542965,-0.96948016,-0.67214984,0.30284527,0.1267679,0.21548152,0.109373815,0.072772376,-0.103564374,-0.15446061,-0.23741674,-0.1551699,-0.16713342,-0.32333934,-0.18472797,0.12037922,0.015476577,-0.055840187,-0.1357162,0.04055456,0.384804,0.13620952,0.09759183,-0.053924344,-0.17398244,-0.22987258,-0.25351328,-0.29102036,-0.32824177,-0.3901175,-0.4460407,-0.48878837,-0.5000572,-0.5366523,-0.5474858,0.23822221,0.19426529,-0.46714652,-0.5463935,-0.24554673,0.08676968,-0.018265046,-0.32202518,-0.09648443,-0.19175112,-0.07533624,-0.014476985,-0.0903668,-0.20903242,-0.49366963,-0.53863025,-0.6076866,-0.8051661,-0.33732826,-0.104600765,-0.57293963,-0.6816301,-0.98774385,-0.88608485,-0.32531604,0.17352358,-0.21793944,-0.10478326,-0.4465117,-0.42375392,0.2271359,-0.2783647,-0.6943359,-0.70411986,-0.6599282,-0.14493835,-0.5927587,-0.72403705,-0.4440521,-0.15141469,-0.54434144,-0.7011546,-0.35961273,-0.383241,-0.5293845,-0.35222456,-0.7102994,-0.71527517,-0.5953922,-0.56323755,-0.60124016,-0.8525293,-0.87171793,-0.83903587,-0.24043193,0.26753625,-0.072323136,0.18109483,-0.51547706,-0.70936996,-0.7656388,-0.78716785,-0.79483354,-0.7698548,-0.2954058,0.1040297,0.045353934,0.10697327,0.09270378,-0.12649986,-0.35721114,-0.46826375,-0.2864346,-0.6442788,-0.69419366,-0.65793747,-0.55307436,-0.32563373,-0.2097795,-0.20763043,0.02830305,0.54660106,0.6268058,0.5583755,0.10192874,0.32504746,0.8051642,0.69936246,-0.09032764,-0.5601135,-0.5495263,-0.57393205,-0.5410419,0.35083917,0.34169278,0.4832657,0.38587743,0.557701,0.5763605,0.14456673,-0.28859138,-0.63929605,-0.6910895,-0.4130376,-0.34223443,-0.22690463,-0.1957115,-0.18955475,-0.22178751,0.29089272,0.08799695,-0.29797828,-0.032005586,0.48141366,0.6466977,0.683083,0.4278203,0.40078065,0.41776645,0.7421989,0.6733382,0.5996027,0.3349546,0.58313954,0.66767466,0.6887313,0.5204649,0.43296945,-0.0005511418,0.065243736,0.3558182,0.1546235,0.32926777,-0.005345255,0.3400594,0.31755766,0.15859875
+-1.0732654,-1.1620629,-1.2548503,-1.2053936,-1.4019917,-1.4738402,-1.507544,-1.5242907,-1.5366906,-1.5521882,-1.5472006,-1.3173972,-0.79766417,-0.6707592,-0.686337,-1.0312576,-1.2750403,-1.4441924,-1.553968,-1.596473,-1.59675,-1.5590658,-1.0102044,-1.0338178,-0.7451621,-0.96662045,-1.1557801,-1.0791569,-1.1246996,-1.2028873,-1.3995854,-1.4864235,-1.5529878,-1.5722911,-1.5309145,-1.0831453,0.18216947,0.011737078,-0.48939997,-0.7906289,-1.0394922,-1.2628922,-1.4936883,-1.5579536,-1.0711825,-0.4120072,-0.67922634,-1.103926,-0.8987628,-0.36248618,-0.39062464,-0.5266907,-0.7360308,-0.9476192,-1.132442,-1.2935262,-1.5416651,-1.6591653,-1.7125429,-1.6898818,-1.7338254,-1.7255476,-1.7083496,-1.6680815,-1.6751018,-1.715593,-1.4799953,-1.648596,-1.6914957,-1.6709504,-1.6889414,-1.7026118,-1.8283412,-1.8102019,-1.2744107,-1.4111772,-0.38633975,-0.7840451,-0.97054386,-1.310051,-1.6070852,-1.725065,-1.7875674,-1.7869475,-1.743621,-1.7935653,-1.792212,-1.748351,-1.7444171,-1.7321987,-1.657007,-1.7041924,-1.7871611,-1.746165,-1.7791452,-1.8210988,-1.780777,-1.8040156,-1.7764175,-1.5386536,-0.21586582,-0.3182114,-0.9459009,-1.2679478,-1.6108167,-1.7096963,-1.7484989,-1.7346865,-1.7398424,-1.759209,-1.7697291,-1.7807935,-1.7719636,-1.7490717,-1.7965405,-1.7804345,-1.76299,-1.7346586,-1.7329249,-1.7478554,-1.7276556,-1.7743636,-1.8008916,-1.7913463,-1.756425,-1.7840171,-1.7448373,-1.689403,-1.7355103,-1.7534788,-1.6875296,-1.6811942,-1.764348,-1.7685773,-1.7616267,-1.7451102,-1.7281265,-1.7554468,-1.7245815,-1.7357178,-1.7454691,-1.7451894,-1.7639058,-1.7723949,-1.7991034,-1.7770154,-1.7580373,-1.7425292,-1.7556679,-1.7253714,-1.7497512,-1.7385622,-1.7336076,-1.7096374,-1.6547445,-1.6387236,-1.1775948,-1.050111,-1.3132551,-1.2451004,-1.5039713,-1.6776037,-1.7194047,-1.730109,-1.705127,-1.6605027,-1.6331847,-1.7070141,-1.7065959,-1.6859052,-1.5629272,-1.5231488,-1.6082613,-1.6206994,-1.453351,-0.9126016,-1.060466,-1.3500984,-1.4980842,-1.5700593,-1.6208546,-1.6351848,-1.6199152,-1.6268026,-1.5906627,-1.5821911,-1.4924576,-1.4591186,-1.059468,-1.1796813,-1.168896,-1.3074222,-1.3652557,-1.3536713,-1.4835069,-1.4114097,-0.8991763,-0.98832405,-0.92526436,-0.9875188,-0.21895683,-0.37825117,-0.53145456,-0.63409483,-0.70086753,-0.78570783,-0.87974715,-0.728672,-0.7665921,-0.7838504,-0.7807368,-0.79740626,-0.4841436,-0.096454285,-0.35267457,-0.42877865,-0.51558226,-0.59200805,-0.6063484,-0.62042904,-0.5909953,-0.6424751,-0.6684685,-0.7211584,-0.760189,-0.74730444,-0.78528047,-0.8022839,-0.6985873,-0.7005202,-0.99095094,-1.0490535,-0.91320205,-0.8471299,-0.757972,-0.8820228,-0.8008672,-0.9100784,-0.8373371,-0.86209536,-0.8803793,-0.7666003,-0.8831037,-0.9514277,-0.97893286,-1.084384,-0.88618314,-0.84218055,-0.9961014,-1.0241772,-1.2970772,-1.1946472,-0.92916524,-0.2777157,-0.76193345,-0.7294296,-0.99025965,-0.6968179,-0.31521183,-0.3956966,-1.2043723,-1.2059557,-1.1192825,-0.6972145,-0.9813564,-1.1144598,-0.89479584,-0.5906318,-1.0410498,-1.169411,-0.949945,-0.6700258,-0.96687055,-0.9823973,-1.0405283,-1.1126101,-0.89002216,-0.90995455,-0.59744704,-0.84186363,-1.1124508,-0.8714769,-0.38331887,0.18499774,0.11412034,0.20552036,-0.59425616,-0.8160007,-0.8781444,-0.91288996,-0.9534228,-0.8911716,-0.5265463,0.107916094,-0.4070927,-0.14758193,-0.28841388,-0.27328348,-0.5350932,-0.72072494,-0.5232089,-0.80002826,-0.8715555,-0.874355,-0.8476851,-0.70919585,-0.383376,-0.50733465,-0.20433527,0.079488374,0.15764666,0.12516102,0.27467278,0.07398813,0.60366917,0.524727,-0.31230363,-0.74880576,-0.7508949,-0.7755508,-0.7295579,-0.05279272,-0.38457632,0.08399866,0.24589676,0.3579381,0.46257517,-0.22926441,-0.50557184,-0.9204744,-0.9233836,-0.9331666,-0.67395186,-0.67128074,-0.67825687,-0.7628854,-0.70521295,-0.25147825,-0.1840209,-0.7716719,-0.33000717,-0.11304299,0.08473892,0.22516009,-0.10172915,-0.20342487,-0.47807026,-0.24038383,-0.109646134,0.07478676,-0.0801165,-0.0071064457,0.14603427,0.18502134,0.20477703,0.2360937,-0.03672891,-0.19454473,0.0010122508,-0.12538666,0.12739441,-0.20277429,-0.16730696,0.63197935,0.17366186
+-0.78331715,-0.93840516,-0.98318696,-1.0582569,-1.1850374,-1.2863126,-1.3522093,-1.4033072,-1.4599558,-1.3348325,-1.301398,-1.3759923,-0.63914454,-0.5283689,-0.49707967,-0.9919548,-1.2323467,-1.3480661,-1.3953121,-1.4313738,-1.4371637,-1.4764383,-1.391743,-1.1035986,0.14885637,-0.31916362,-0.3110116,-0.2831598,-0.44043577,-0.34796903,-0.5684018,-0.69509435,-0.7721215,-0.8704279,-0.955147,-0.5236312,-0.124431424,-0.05978874,-0.39205915,-0.8434413,-1.0541984,-1.1592882,-1.2496829,-1.3085458,-1.0850536,-0.45010638,-0.4074849,-0.8154643,-0.7131347,-0.69546974,-0.6259858,-0.8735205,-1.053727,-0.9518602,-0.29806778,-0.46770072,-0.82807505,-1.1014402,-1.2289867,-1.252975,-1.3707678,-1.4276335,-1.4643562,-1.4781264,-1.5439768,-1.6117437,-1.6325322,-1.6191673,-1.6212626,-1.6110867,-1.62289,-1.6478533,-1.7336382,-1.689116,-1.6800377,-1.4397261,-1.0452952,-1.3646686,-1.5068443,-1.5489542,-1.6574563,-1.6671999,-1.6812664,-1.6858196,-1.6637588,-1.6918914,-1.7208782,-1.730445,-1.7263174,-1.7298648,-1.6806114,-1.5650002,-1.711247,-1.7024356,-1.6960955,-1.7309114,-1.7306126,-1.7300813,-1.7208161,-1.6909162,-1.5989738,-1.6921823,-1.7501732,-1.7223293,-1.7756884,-1.7699798,-1.7493179,-1.7606022,-1.7599216,-1.7490693,-1.7467623,-1.7615873,-1.7463422,-1.757589,-1.7773733,-1.7836976,-1.7683129,-1.7562989,-1.7496883,-1.7463648,-1.7177212,-1.7095546,-1.7356014,-1.7422047,-1.7469118,-1.7712562,-1.7878752,-1.7063967,-1.7297887,-1.7379055,-1.7262876,-1.7393284,-1.755415,-1.7542831,-1.7526547,-1.7521513,-1.7419436,-1.7585092,-1.7124424,-1.7286347,-1.7469239,-1.7440715,-1.7457811,-1.7513312,-1.7550808,-1.7678045,-1.7704114,-1.7637548,-1.7589535,-1.743809,-1.7599056,-1.7682626,-1.7341722,-1.7182349,-1.7158188,-1.7118639,-1.6778517,-1.6688356,-1.7295129,-1.7026494,-1.7279185,-1.7659643,-1.7650075,-1.7545853,-1.7428778,-1.7131342,-1.070239,-1.3580124,-1.5694122,-1.6402701,-1.6278572,-1.607033,-1.6678954,-1.6289244,-1.1538463,-0.75761795,-0.96583796,-1.3765073,-1.5238118,-1.5952929,-1.6234003,-1.6645693,-1.597752,-1.6093292,-1.6528835,-1.5883139,-1.4852968,-1.5366445,-1.5545142,-1.6153159,-1.6545082,-1.6670675,-1.6417457,-1.6391437,-1.6402497,-1.6436137,-1.1732473,-0.30225164,-0.2686264,0.28027722,0.07381104,-0.46435487,-0.64222556,-0.5740342,-0.5913092,-0.7211118,-0.81892073,-0.73518014,-0.84663546,-0.9222723,0.33577833,0.14629805,0.26021802,0.3023057,0.11478217,-0.33377883,-0.5873747,-0.54238784,-0.48017192,-0.44509053,-0.46669745,-0.48019338,-0.489456,-0.5390332,-0.5776112,-0.60565066,-0.7401649,-0.73561704,-0.80527633,-0.7541871,-1.2106917,-1.247528,-1.164259,-0.95771027,-0.6248549,-1.0762725,-0.9379029,-1.2183113,-1.1888261,-1.1911682,-0.73339796,-0.8895195,-1.1946517,-1.1279057,-1.0949228,-1.1637707,-1.1083263,-1.071224,-1.0019065,-1.16096,-1.2030029,-1.0624228,-0.39390618,0.32543162,-0.5916963,-0.84451836,-0.80658984,-0.26279247,-0.1168898,0.01506,-0.84308434,-0.77879584,-0.77046925,-0.6984011,-0.77610725,-0.9080783,-0.8005676,-0.6018359,-0.9137826,-0.93277526,-0.83270633,-0.91317344,-0.9260875,-0.9292692,-0.94987535,-0.98806214,-0.8735249,-0.802794,-0.22909677,-0.85876554,-0.8779531,-0.815287,-0.056183778,0.10322819,-0.25897196,0.096577935,-0.71549404,-0.84433985,-0.85489136,-0.9001501,-0.9467511,-0.9436215,-0.77500355,-0.28034744,-0.60946095,-0.7215467,-0.65672433,-0.6598971,-0.8603399,-0.8703032,-0.768908,-0.8884092,-0.90920746,-0.9346515,-0.9294038,-0.8830197,-0.72947,-0.6549136,-0.3603033,-0.36407322,-0.42020947,-0.32202673,0.1950607,-0.44497597,0.17848322,0.36255717,-0.70200086,-0.95700145,-0.9936049,-0.9685447,-0.94941115,-0.5090209,-0.8603835,-0.28432298,-0.3227083,-0.14184004,-0.05074402,-0.20898017,-0.75270474,-0.9033266,-0.8883814,-0.9129926,-0.872614,-0.86769557,-0.88347924,-0.8912288,-0.838021,-0.7212563,-0.62094605,-0.87767315,-0.6929367,-0.4771816,-0.38740465,-0.12750605,-0.5702242,-0.49322093,-0.6542086,-0.38375407,-0.15346998,0.031650968,-0.08208866,-0.1941168,-0.2802887,-0.20929483,-0.13276523,-0.29812342,-0.7106557,-0.8918959,-0.7356076,-0.98359895,-0.6904549,-0.9911504,-0.92845607,-0.113745056,-0.5989815
+-0.8129921,-0.8983977,-1.067871,-1.0603218,-1.2693441,-1.3887912,-1.4566178,-1.5006177,-1.2048606,-0.143872,-0.17659599,-0.29870775,-0.5284588,-0.8376812,-0.860924,-1.0946959,-1.3110472,-1.4530336,-1.5146677,-1.5399995,-1.547651,-1.5479965,-0.8768824,-1.0517421,-0.36308727,-0.282616,-0.23967576,-0.21615541,-0.29114005,-0.16899264,-0.42449003,-0.5983485,-0.85615134,-1.1014085,-1.0596441,-0.35646644,0.11276687,0.20362028,0.1942203,-0.43029255,-0.7465244,-1.0674084,-1.2909949,-1.4126992,-1.4320354,-1.1773793,-1.0470126,-1.2996659,-1.4556774,-1.5520447,-1.5760157,-1.5899553,-1.6066282,-1.1687791,-0.391998,-0.46153438,-0.8064764,-1.1436331,-1.3387566,-1.4628193,-1.5267986,-1.5362319,-1.5537789,-1.5830026,-1.5430564,-1.5513957,-1.514291,-1.5375804,-1.5096123,-1.5730234,-1.564495,-1.5795373,-0.9662595,-0.9636711,-1.2693603,-1.4208388,-1.4754484,-1.5636393,-1.5649261,-1.5510764,-1.5892625,-1.6011229,-1.608091,-1.6018562,-1.5871779,-1.5970161,-1.6126114,-1.6057918,-1.6055708,-1.5936573,-1.5666175,-1.5690824,-1.5105609,-1.1454961,-1.3834972,-1.5487084,-1.59325,-1.5975025,-1.564327,-1.5471447,-1.5373952,-1.5805483,-1.6279744,-1.6123321,-1.6300496,-1.6354337,-1.596106,-1.6045632,-1.6286367,-1.6189575,-1.6066178,-1.6274807,-1.6151497,-1.631367,-1.6323283,-1.6425352,-1.625128,-1.6398323,-1.6254866,-1.5909048,-1.5530264,-1.5309733,-1.5796957,-1.6042111,-1.6132663,-1.6381751,-1.6044725,-1.5648764,-1.5885538,-1.6261382,-1.6065414,-1.5997435,-1.6001647,-1.5971419,-1.6014888,-1.598363,-1.5655807,-1.6013392,-1.5954441,-1.5704424,-1.5770831,-1.5895023,-1.5944433,-1.5903714,-1.5517085,-1.5974519,-1.6047289,-1.5944731,-1.5858945,-1.5713395,-1.5927386,-1.5931668,-1.5711498,-1.546,-1.5527208,-1.5634253,-1.5363109,-1.5235004,-1.5682821,-1.5787774,-1.5647666,-1.5859977,-1.5968813,-1.5888591,-1.5364605,-0.47496212,0.0074610636,-0.5261946,-0.95137167,-1.2278531,-1.3849638,-1.4247508,-1.4689915,-1.3478558,-1.0395404,-1.1425302,-1.2587075,-1.4285874,-1.4731905,-1.4850543,-1.5051715,-1.5002872,-1.4451504,-1.4433439,-1.4917964,-1.4377666,-1.3886875,-1.4301822,-1.459079,-1.4979773,-1.548717,-1.5383213,-1.5254722,-1.5268421,-1.5214394,-1.5047559,-1.4930475,-1.2830527,-0.4288494,0.3992076,-0.2648006,-0.58322775,-0.7993419,-0.9800594,-1.1016722,-1.2332096,-1.2554927,-1.1261499,-1.208131,-1.3164675,0.05436165,0.16784406,0.11942511,0.2036966,-0.11792489,-0.41964227,-0.6852231,-0.8197509,-0.91243815,-0.9596474,-1.0563977,-1.1277239,-1.184611,-1.2336955,-1.2469119,-1.2549661,-1.2729418,-1.2886986,-1.3335595,-1.347971,-1.3562006,-1.3537498,-1.3865826,-1.4200876,-0.9022883,-1.0082732,-0.9605005,-1.0939236,-1.1335473,-1.1727328,-0.99555707,-1.0809537,-1.1814526,-1.1808077,-1.0876309,-1.1877483,-1.2764057,-1.1865058,-1.1297113,-1.3005501,-1.2348268,-1.0799677,-0.92080593,-0.36372778,-0.56670403,-1.115923,-1.0016146,-0.50028,-0.63339627,0.022182949,-1.2147297,-1.1254771,-1.0547478,-0.87410855,-0.7062193,-0.94040585,-0.895906,-0.5882503,-1.1032542,-1.1371515,-1.0597458,-0.9385476,-0.94857097,-0.943516,-1.0365746,-1.1053182,-0.8897735,-0.8753103,-0.32396752,-0.56333965,-0.99528027,-0.77355707,-0.20367396,0.13083237,-0.19160408,0.07317413,-0.55376476,-0.6457059,-0.8273623,-0.8479912,-0.87668455,-0.86152375,-0.6974485,-0.25094604,-0.6055751,-0.6231053,-0.515429,-0.45989978,-0.8150622,-0.8508361,-0.6692802,-0.88387233,-0.84949476,-0.7916405,-0.7953031,-0.7645028,-0.65153366,-0.4376731,-0.42004836,-0.3744282,-0.45289117,-0.3363682,0.12298358,-0.03018377,0.31838062,0.48317412,-0.11135986,-0.9650378,-0.9718772,-0.9480375,-0.8603847,-0.5226003,-0.7147672,-0.28880626,-0.46408445,-0.15223828,-0.113490514,-0.29426846,-0.8981562,-0.9768137,-0.88312984,-0.90157163,-0.73832595,-0.9099027,-0.92341423,-0.8355173,-0.8077872,-0.65865445,-0.693643,-0.8262632,-0.7333304,-0.5315304,-0.48688054,-0.10943893,-0.1589576,-0.008481674,-0.12397017,-0.22668496,-0.371429,-0.45628244,-0.51950794,-0.6092276,-0.62300223,-0.6422148,-0.7113085,-0.63490903,-0.718454,-0.9046987,-0.6970646,-0.95542324,-0.68902993,-1.0259821,-0.95307636,-0.52423066,-0.798982
+-0.88464004,-0.9698286,-1.105979,-1.2529663,-1.3190664,-1.4156448,-1.435598,-1.4372927,-0.6421275,-0.29052,-0.24554044,-0.48751116,-0.6822889,-0.9061911,-1.0493249,-1.2512972,-1.3453335,-1.4405024,-1.4928951,-1.5266473,-1.5850736,-1.6080424,-1.0633203,-1.1939524,-0.60579836,-0.53672034,-0.62718415,-0.64859116,-0.7441799,-0.62537813,-0.7388798,-0.87429523,-0.982095,-1.1024354,-1.2466018,-0.98752916,-0.49226022,-0.21199939,-0.34828073,-0.79015446,-1.0842873,-1.2154984,-1.3316964,-1.4521049,-1.4479715,-1.4058405,-1.2465968,-1.3770375,-1.5005748,-1.5791676,-1.6164445,-1.5887146,-1.6587996,-1.3638426,-0.9070767,-0.7093069,-0.96371245,-1.19074,-1.2709684,-1.3971279,-1.4886788,-1.541153,-1.5887798,-1.6152365,-1.6180177,-1.6233884,-1.6017509,-1.6069285,-1.6019399,-1.6314073,-1.6409855,-1.6117058,-0.21678066,-0.13918582,-0.69733375,-1.0292137,-1.2230296,-1.4273156,-1.5515609,-1.5797467,-1.6193037,-1.6324489,-1.6463182,-1.658356,-1.6519886,-1.6445811,-1.655798,-1.6595315,-1.6516565,-1.6219865,-1.6022215,-1.4261534,-1.4469881,-1.5417156,-1.596137,-1.6297811,-1.6516855,-1.6438627,-1.630876,-1.6214179,-1.6133714,-1.665648,-1.685885,-1.6762979,-1.6807103,-1.692357,-1.6573228,-1.6713006,-1.6923928,-1.6815886,-1.6738539,-1.6962044,-1.6829069,-1.6690669,-1.6713799,-1.6910752,-1.6806744,-1.684513,-1.6621788,-1.618741,-1.5905068,-1.5698944,-1.5876307,-1.6056743,-1.6029254,-1.6146331,-1.5495193,-1.5949,-1.6263337,-1.6590147,-1.6586295,-1.6545115,-1.6548467,-1.6486735,-1.6443702,-1.6421533,-1.6253263,-1.6367692,-1.6444618,-1.6361291,-1.5951121,-1.5956374,-1.6012866,-1.6024772,-1.5613291,-1.5695555,-1.5999035,-1.6082996,-1.6022689,-1.6112998,-1.6205611,-1.616454,-1.6066082,-1.4964135,-1.548734,-1.5833579,-1.5932586,-1.5958184,-1.6322377,-1.6380104,-1.6157321,-1.6119077,-1.6150272,-1.6095235,-1.5722139,-0.44215238,-0.51506215,-0.9062784,-1.1545969,-1.3112428,-1.4502405,-1.5189066,-1.5300682,-0.88869125,-0.3507487,-0.5205002,-0.83187747,-1.0966696,-1.2341248,-1.3494382,-1.4203737,-1.3684539,-1.1047773,-1.1292754,-1.3439989,-1.3779206,-1.4067106,-1.4911108,-1.5227351,-1.5155334,-1.5486126,-1.5633248,-1.5626848,-1.5807225,-1.5527173,-1.5562148,-1.5680764,-1.4823499,-0.9963958,-0.5128635,-1.051338,-1.2195721,-1.2700238,-1.3461084,-1.3753046,-1.408365,-1.3765393,-1.3293391,-1.3528701,-1.4050255,-0.5016087,-0.3577725,-0.39823762,-0.32051545,-0.7704029,-0.9960257,-1.0752412,-1.0910923,-1.1211772,-1.14628,-1.1737666,-1.1940047,-1.205112,-1.2140074,-1.2245852,-1.2424301,-1.2820308,-1.3209617,-1.3688278,-1.3991097,-1.4368794,-1.4088619,-1.3794925,-1.3890103,-1.2365552,-1.391545,-1.3698988,-1.4345655,-1.4590558,-1.4285932,-1.3725741,-1.3513823,-1.4549284,-1.4026023,-1.3934277,-1.473874,-1.4521241,-1.3658574,-1.4001083,-1.45363,-1.4182309,-1.2812444,-1.1589187,-1.1422117,-1.0877514,-1.3285056,-1.2620294,-1.106488,-1.147488,-0.74564755,-1.3726935,-1.3824039,-1.2699004,-1.2344983,-1.2067502,-1.1916753,-1.2071246,-1.1242347,-1.3661361,-1.3496054,-1.2423513,-1.1931741,-1.1898819,-1.2097033,-1.2474279,-1.2705324,-1.325358,-1.256736,-0.9168613,-0.8219486,-1.4699414,-1.0532758,-0.6858615,-0.53661144,-0.85874367,-0.71978337,-1.0065726,-0.9505365,-1.2225051,-1.2279873,-1.3107967,-1.2388124,-1.1042881,-0.9500978,-1.135243,-1.1085327,-0.9870317,-0.9728211,-1.378382,-1.3570464,-1.1954727,-1.32889,-1.1994025,-1.1257718,-1.1404126,-1.1679606,-1.1594421,-1.025639,-1.0192946,-1.0836267,-1.0997844,-1.0477216,-0.69025695,-0.6291414,-0.5351756,-0.24304646,-0.45929086,-1.2988203,-1.2581589,-1.2398201,-1.182336,-1.0115762,-1.1018991,-0.67821014,-1.0883554,-0.6027887,-0.7724185,-1.0093107,-1.2949961,-1.3085262,-1.260663,-1.2619969,-1.2169138,-1.3539815,-1.2939903,-1.1923509,-1.1709853,-1.1392351,-1.2133149,-1.3766416,-1.2864078,-1.1166923,-1.1292274,-1.0961074,-1.0423045,-1.0577365,-1.1179236,-1.0811143,-1.0045493,-1.0092328,-1.0354977,-1.0501142,-1.1368558,-1.1161538,-1.1416552,-0.97419035,-1.1169012,-1.1917448,-0.8667838,-1.1555665,-1.1664597,-1.3422244,-1.2309866,-0.9948821,-1.1837466
+-1.2934608,-1.4393883,-1.5897279,-1.6719778,-1.7279333,-1.7425418,-1.7370842,-1.4749354,0.03999626,-0.20549929,-0.4633236,-0.8176439,-1.0881882,-1.3589964,-1.5573213,-1.6529368,-1.7154145,-1.7351817,-1.7412534,-1.7377771,-1.7408389,-1.7443815,-1.4420347,-1.6244559,-1.2277992,-1.4456601,-1.4783568,-1.299083,-1.4655952,-1.3411423,-1.5041702,-1.3741314,-1.5538352,-1.6432704,-1.6758509,-1.3483087,-1.2562943,-0.97185373,-1.092892,-1.4806986,-1.6400589,-1.6940699,-1.7173574,-1.7132773,-1.7171462,-1.7241802,-1.7139144,-1.6983705,-1.7013702,-1.7021062,-1.7381836,-1.7604299,-1.7465739,-1.5616579,-1.3265656,-1.5235548,-1.694777,-1.7196211,-1.7151732,-1.7074494,-1.6951689,-1.7016339,-1.727307,-1.7307419,-1.71616,-1.7153151,-1.6929103,-1.6885356,-1.6920315,-1.6920946,-1.6735517,-1.5781786,-1.009329,-0.8776595,-1.3623905,-1.5888897,-1.6555063,-1.6791372,-1.6845384,-1.7263772,-1.6845256,-1.6919088,-1.7046316,-1.7252722,-1.726895,-1.7202069,-1.7346774,-1.7130486,-1.6805797,-1.6435231,-1.6550671,-1.6338013,-1.5995041,-1.6468185,-1.670329,-1.705539,-1.735514,-1.7290882,-1.6982173,-1.6870922,-1.6865784,-1.7451838,-1.7602733,-1.7545763,-1.7221575,-1.7326494,-1.7256584,-1.7344093,-1.7074736,-1.7085087,-1.7223876,-1.7175202,-1.7342064,-1.7248603,-1.7269759,-1.7247347,-1.7104801,-1.701654,-1.673202,-1.6387858,-1.6294979,-1.6209613,-1.6141222,-1.5963035,-1.6317497,-1.6047909,-1.5910506,-1.6475687,-1.6493233,-1.6902986,-1.7126,-1.703903,-1.7288508,-1.71768,-1.7071545,-1.696379,-1.6827995,-1.705803,-1.697881,-1.6886135,-1.6809865,-1.678527,-1.6703483,-1.6401364,-1.6200304,-1.6393756,-1.6489224,-1.6383457,-1.6474005,-1.6570616,-1.6672399,-1.6508677,-1.6288619,-1.6315396,-1.6546872,-1.659888,-1.6583674,-1.6697925,-1.682995,-1.6907382,-1.6751405,-1.662576,-1.667409,-1.6498398,-1.6402184,-1.6369219,-1.6316636,-1.6715,-1.6718438,-1.6693263,-1.6754041,-1.6644001,-1.6457453,-1.5930921,-0.9416007,-1.1218126,-1.3585021,-1.5118045,-1.5694077,-1.5979135,-1.6002645,-1.5654194,-1.5779833,-1.5913551,-1.6038909,-1.6106982,-1.6226798,-1.640924,-1.6545492,-1.6637933,-1.6721774,-1.6711061,-1.6540463,-1.6391335,-1.6256375,-1.6199514,-1.6010438,-1.5881202,-1.5640357,-1.5415428,-1.5515689,-1.5950137,-1.6199435,-1.6333352,-1.6416287,-1.6076534,-1.5475626,-1.5501946,-1.5444338,-1.4783697,-1.0479106,-1.0862048,-0.89059806,-0.7386995,-1.0126514,-1.2138017,-1.3299347,-1.3823376,-1.41763,-1.4311941,-1.4368551,-1.4717681,-1.4940506,-1.4849217,-1.4893284,-1.4793296,-1.4886405,-1.5081668,-1.528996,-1.5377254,-1.5746374,-1.59515,-1.6291082,-1.6469662,-1.331187,-1.4196401,-1.4966233,-1.5678201,-1.6016204,-1.6056591,-1.3635669,-1.278549,-1.4617593,-1.5238261,-1.5387515,-1.5365443,-1.6066759,-1.5939628,-1.6063604,-1.6243805,-1.6275649,-1.5931491,-1.5681047,-1.5537506,-1.5063742,-1.5276787,-1.5378511,-1.55332,-1.5407041,-0.7606646,-1.1404252,-1.387461,-1.4329228,-1.4215264,-1.4069681,-1.3581932,-1.3781211,-1.0714302,-1.3810406,-1.4199356,-1.4102863,-1.386096,-1.4115295,-1.4163502,-1.3315878,-1.3594415,-1.455106,-1.4642569,-1.1277311,-0.75882834,-1.4609662,-1.331018,-0.7681226,0.0032391846,-0.47951,-0.52242965,-0.7205316,-0.8033612,-1.1349269,-1.2943873,-1.3447582,-1.3817991,-1.3876657,-0.99054766,-1.0290788,-1.1601676,-1.1092532,-0.8352305,-1.4539032,-1.4642949,-1.3750204,-1.3597419,-1.3719974,-1.3418596,-1.3382878,-1.35192,-1.37725,-1.3434384,-1.3186393,-1.3200253,-1.3567858,-1.2769992,-0.3675814,-0.16630647,-0.42567146,-0.5664348,-0.30838427,-0.76229185,-1.1196082,-1.2797782,-1.367646,-1.3406792,-0.85570824,0.046718396,-0.45965928,-0.40647405,-0.3909828,-0.8788444,-1.257288,-1.4050112,-1.4031479,-1.3801372,-1.3813697,-1.4239094,-1.4576137,-1.4641172,-1.4821298,-1.4839691,-1.480345,-1.558332,-1.5351753,-1.5170412,-1.5438337,-1.6080174,-1.6250904,-1.6660478,-1.6773943,-1.7190471,-1.7281957,-1.7338414,-1.7360066,-1.7292185,-1.7294607,-1.7195072,-1.344748,-1.2205868,-1.3604656,-1.5293177,-1.1223688,-1.2024131,-1.3237966,-1.5091655,-1.5997777,-1.6479605,-1.6186682
+-1.5187492,-1.508039,-1.519233,-1.5387517,-1.5498405,-1.5627359,-1.5542113,-1.1715348,-0.31947336,-0.7292968,-0.8680048,-1.0586905,-1.3127618,-1.4615463,-1.5172441,-1.5431032,-1.5551696,-1.565455,-1.568052,-1.5876039,-1.594712,-1.6105671,-1.5538216,-1.5905278,-1.5243335,-1.5418007,-1.5494645,-1.097517,-1.3024963,-1.1000118,-1.2104964,-1.2240719,-1.3804357,-1.496387,-1.5474734,-1.280172,-0.8167206,-0.5640849,-0.9205185,-1.2470284,-1.447861,-1.532774,-1.572061,-1.5759456,-1.5535256,-1.5679052,-1.4041533,-1.405564,-1.5234672,-1.5926414,-1.5641143,-1.5773914,-1.5860627,-1.586105,-1.556521,-1.4245256,-1.5326693,-1.578399,-1.5768087,-1.5947884,-1.5972371,-1.5967753,-1.6086859,-1.6087745,-1.6186632,-1.6124817,-1.5986376,-1.6031976,-1.6070161,-1.6116614,-1.6118021,-1.569906,-1.5330924,-1.5603206,-1.5894909,-1.6044598,-1.5926573,-1.6080449,-1.6141793,-1.6245196,-1.6157546,-1.6107879,-1.6025088,-1.6131529,-1.6091942,-1.6101223,-1.604835,-1.5929537,-1.5879236,-1.5322686,-1.5753834,-1.5752057,-1.5817862,-1.5925839,-1.5930293,-1.5987897,-1.6023278,-1.6014326,-1.605446,-1.6029258,-1.5861987,-1.6033543,-1.6037624,-1.6091522,-1.606091,-1.6046596,-1.6017404,-1.604202,-1.6043503,-1.6044629,-1.6065081,-1.6080987,-1.6086482,-1.6066115,-1.6026503,-1.597084,-1.5779461,-1.559989,-1.5543993,-1.5256841,-1.5274422,-1.5343027,-1.5383351,-1.5379698,-1.5605581,-1.5599062,-1.548504,-1.5883085,-1.5918474,-1.5981483,-1.6017439,-1.6008222,-1.6055424,-1.5872874,-1.587143,-1.5877582,-1.5927198,-1.5964592,-1.5992336,-1.5986335,-1.5909901,-1.5901467,-1.5791368,-1.5669844,-1.563582,-1.5725726,-1.5828006,-1.5816462,-1.5752956,-1.5760311,-1.5888821,-1.5908458,-1.5858053,-1.5877781,-1.5971833,-1.5979351,-1.591589,-1.590039,-1.5923859,-1.5995073,-1.5904802,-1.5744236,-1.5785635,-1.5876192,-1.5829668,-1.5797317,-1.5659605,-1.5926044,-1.5940835,-1.5925199,-1.5949149,-1.595281,-1.5606859,-1.5112197,-1.569997,-1.5712713,-1.5827143,-1.5778356,-1.5826477,-1.5789499,-1.5705304,-1.5394852,-1.5580301,-1.5798609,-1.5919299,-1.5686743,-1.5780877,-1.5829186,-1.5841964,-1.6005411,-1.6016886,-1.5987487,-1.5986143,-1.5863686,-1.5884109,-1.5901601,-1.5956212,-1.576257,-1.5647414,-1.5594617,-1.5747412,-1.5746406,-1.5902369,-1.6019962,-1.6094021,-1.6008241,-1.51454,-1.5207622,-1.5710759,-1.5814723,-1.1847526,-1.2263912,-1.0768123,-1.0655448,-1.2785072,-1.4313416,-1.513195,-1.537812,-1.540829,-1.5497783,-1.5320203,-1.5351384,-1.539793,-1.5351939,-1.549136,-1.5510337,-1.5377692,-1.5508938,-1.5704122,-1.5600935,-1.5322819,-1.5597059,-1.5778422,-1.5445993,-1.0517447,-1.1690145,-1.3053609,-1.413834,-1.4725838,-1.5259027,-1.162759,-1.2124054,-1.3433281,-1.4071178,-1.4462254,-1.4856148,-1.5367492,-1.5352714,-1.5399734,-1.5413921,-1.5366108,-1.5460618,-1.509243,-1.479137,-1.4602317,-1.4460465,-1.45735,-1.4791267,-1.4904424,-0.5960685,-0.9969008,-1.1678886,-1.2853396,-1.3243052,-1.3794837,-1.3089588,-1.3303914,-0.37321442,-0.77379096,-0.94324636,-1.0318967,-1.1060108,-1.1797113,-1.1113298,-0.7997564,-0.16449767,-0.4542898,-0.6365113,-0.49940193,0.019009791,-0.5449296,-0.6529363,-0.13783464,0.032341577,-0.31813043,-0.46638858,-0.49920964,-0.75188005,-0.84611726,-1.0390466,-1.1746583,-1.2759876,-1.2842746,-0.7582973,-0.18429694,-0.2554413,-0.09659646,0.17023069,-0.7220408,-1.0067275,-1.08382,-1.1127112,-1.1763263,-1.2336423,-1.2896266,-1.3215976,-1.3388865,-1.4026973,-1.393527,-1.3960271,-1.4074888,-0.9181311,-0.785534,-0.9725673,-1.1272535,-1.2256691,-0.9198694,-1.0448189,-1.2432239,-1.356933,-1.4171956,-1.461752,-0.87562716,0.28663993,-0.09909024,-0.2783151,-0.5393754,-0.8692313,-1.1797078,-1.3119339,-1.3473936,-1.348006,-1.3393923,-1.3871523,-1.4755472,-1.5159911,-1.5346241,-1.5480645,-1.5150173,-1.5221248,-1.5471319,-1.54189,-1.5379342,-1.5574069,-1.546498,-1.543195,-1.5417011,-1.5577629,-1.5629529,-1.5435259,-1.5592202,-1.5735817,-1.5758402,-1.582704,-1.3648874,-1.3721586,-1.455941,-1.5308374,-1.5083568,-1.527796,-1.5342016,-1.5614803,-1.5734376,-1.5643028,-1.5372055
+-1.7883102,-1.8229609,-1.8061317,-1.828073,-1.813357,-1.758349,-1.7326154,-1.2321782,-0.8537392,-0.98812246,-0.8493217,-0.9555814,-1.3765308,-1.6762266,-1.7658496,-1.7755408,-1.7782352,-1.7784375,-1.7947451,-1.7987752,-1.7835598,-1.8055842,-1.7934694,-1.8258299,-1.7971025,-1.7911344,-1.8180859,-1.4689703,-1.7110841,-1.799964,-1.7279383,-1.7547668,-1.760273,-1.7940774,-1.7898983,-1.7510449,-1.7524691,-1.7797413,-1.8024418,-1.8160312,-1.813458,-1.810603,-1.8218396,-1.8314297,-1.840935,-1.8473847,-1.8190851,-1.7918559,-1.8391852,-1.8561509,-1.8173677,-1.8302284,-1.8491633,-1.8437432,-1.8295145,-1.8433144,-1.8477526,-1.8422114,-1.8337998,-1.8473003,-1.8450158,-1.8393811,-1.8398843,-1.8259782,-1.8226676,-1.8302741,-1.841027,-1.8461318,-1.8445317,-1.8418202,-1.8349118,-1.8009715,-1.8120878,-1.8302876,-1.8616681,-1.8666751,-1.858568,-1.8628323,-1.8636754,-1.8315119,-1.8292484,-1.8241353,-1.8253474,-1.8394293,-1.8391327,-1.8246884,-1.8181621,-1.8064061,-1.8001912,-1.7871882,-1.8044119,-1.7994866,-1.8035674,-1.7991018,-1.8092551,-1.8223101,-1.8368311,-1.8308396,-1.8283744,-1.8284752,-1.8335458,-1.8429005,-1.8363343,-1.8272345,-1.8218774,-1.8166379,-1.8146247,-1.8082054,-1.806463,-1.8085771,-1.8081464,-1.8060964,-1.8083616,-1.8073368,-1.7975855,-1.7976557,-1.7782001,-1.7754834,-1.7751992,-1.7589974,-1.7535238,-1.7511481,-1.764061,-1.7633474,-1.7736921,-1.7633169,-1.7715198,-1.780514,-1.7811086,-1.7878857,-1.7941589,-1.7962642,-1.7919116,-1.7737324,-1.7858925,-1.7842124,-1.7870064,-1.785181,-1.7803152,-1.7764881,-1.7758877,-1.7825377,-1.776652,-1.774327,-1.77897,-1.7799778,-1.7817186,-1.7780114,-1.776283,-1.7838131,-1.7828183,-1.7720519,-1.7668172,-1.7663776,-1.7779784,-1.7859613,-1.8011922,-1.8128722,-1.7940557,-1.780174,-1.7814898,-1.7837365,-1.7771611,-1.7947865,-1.7941376,-1.7951233,-1.8140548,-1.7931755,-1.777308,-1.7668892,-1.7669716,-1.7558092,-1.7286329,-1.6700758,-1.7529528,-1.7878687,-1.767305,-1.7291222,-1.7271538,-1.723914,-1.703086,-1.7109547,-1.7187018,-1.7513281,-1.7681197,-1.7835947,-1.7891692,-1.8085732,-1.7735527,-1.7306081,-1.7258081,-1.7347205,-1.7375425,-1.731913,-1.7533312,-1.7562944,-1.7501979,-1.7636652,-1.7502096,-1.7460132,-1.7736056,-1.751984,-1.7102064,-1.7121073,-1.7200087,-1.700128,-0.8804526,-0.93912756,-1.3817952,-1.579286,-1.6318979,-1.6562861,-1.5731686,-1.6290494,-1.7340653,-1.7542882,-1.7307712,-1.728274,-1.7457123,-1.7537366,-1.7351193,-1.6955597,-1.7009089,-1.7030383,-1.7093092,-1.6884434,-1.6879712,-1.7061703,-1.6976777,-1.6997211,-1.7214966,-1.7148764,-1.7047551,-1.623836,-1.1827412,-1.3349099,-1.5438144,-1.6585327,-1.7139846,-1.7533313,-1.3803129,-1.4421041,-1.6401665,-1.7167451,-1.7331748,-1.7386643,-1.7637429,-1.7693613,-1.7721987,-1.7698507,-1.7685244,-1.7560024,-1.7241377,-1.720259,-1.7218508,-1.7181506,-1.7208753,-1.7330258,-1.7034845,-0.67257166,-0.9933325,-1.3951824,-1.5232329,-1.5664597,-1.3460824,-0.06773377,-0.30274218,0.1647768,-0.6159183,-0.8462413,-1.0424081,-1.2459798,-1.299768,-1.1548249,-0.8272839,-0.121887736,-0.4458394,-0.6747987,-0.8414009,-0.91554666,-1.0770204,-0.8189735,-0.68682957,-0.30541515,-0.484541,-0.5443246,-0.31238562,-0.32931364,-0.30708915,-0.7249887,-0.9631429,-1.2186153,-1.3018348,-0.8884644,-0.045652993,-0.14151368,-0.05077567,0.30814,-0.36380646,-0.8085003,-1.1273723,-1.3216553,-1.4214001,-1.4348481,-1.4425032,-1.4857999,-1.5353327,-1.5866611,-1.4514956,-1.4862896,-1.5982776,-1.4026027,-1.4031063,-1.5636945,-1.6546218,-1.6761445,-0.755533,-1.060903,-1.3392677,-1.5205593,-1.6365042,-1.6975868,-1.1756827,0.26471743,-0.17177999,-0.41220647,-0.6459192,-1.0140096,-1.3224537,-1.5080636,-1.5625004,-1.2000442,-1.1863117,-1.4175601,-1.6550775,-1.7368037,-1.7726779,-1.786581,-1.7475339,-1.7365073,-1.7766747,-1.7925199,-1.7892001,-1.789534,-1.7746747,-1.7669165,-1.7597473,-1.7658312,-1.7709508,-1.7678032,-1.7707078,-1.7745018,-1.7681971,-1.7700436,-1.7383482,-1.4390417,-1.6034976,-1.7350895,-1.7618694,-1.783637,-1.7835113,-1.7813364,-1.7821989,-1.8083084,-1.7739688
+0.5869227,0.3783726,0.25089216,0.19497252,0.3333404,0.12285449,0.1747815,0.20442045,0.26590618,0.10043151,0.0776402,0.110608704,0.03205269,-0.04999622,-0.047859542,-0.021575607,0.04325456,0.0862106,0.13137951,0.1068842,0.10628886,0.10827852,0.34271663,0.87060964,0.6536507,0.49432024,0.36040005,0.32186657,0.4144559,0.43974373,0.4669345,0.45268482,0.44302213,0.39229542,0.7695762,0.79458934,0.5868598,0.52260166,0.58278173,0.36930144,0.3004427,0.69227445,0.45576772,0.31078202,0.24031481,0.2554285,0.32426065,0.31914794,0.4507657,0.46475074,1.109356,1.4772246,1.3204212,1.0453438,0.94620204,0.8518983,0.7895137,0.747093,0.75086826,0.7562114,0.6217463,0.50676316,0.5816078,0.7610153,0.61159766,0.4917203,0.4227767,0.44451192,0.35438374,0.54889673,1.0292114,0.98327816,0.7484145,0.5299863,0.6071844,0.44459912,0.31536317,0.27202263,0.5005737,0.8582705,0.6951201,0.6143627,0.6401648,0.3976567,0.84556407,0.9111655,0.7160113,0.5611516,0.47799727,0.41648057,0.32475728,0.34978855,0.30128527,0.28804415,0.29384696,0.36556694,0.73519206,0.5753693,0.38358438,0.9851271,0.95205116,0.7353961,0.66177857,0.57321924,0.62705594,1.1319232,1.3713746,1.1088654,0.94169533,0.78712094,0.7663879,0.6421467,0.5217631,0.96154654,0.8066318,0.5633398,0.673725,0.9814961,1.0453242,0.8546357,0.6162555,0.663923,0.5381192,0.36766678,0.6007376,0.78831345,0.5562395,0.4420265,0.9634808,0.8421757,0.64784384,0.86181694,0.8940619,0.7435656,0.586728,0.49222946,0.5782658,0.5198995,0.45935637,0.45391572,0.41481504,0.26357824,0.21539316,0.3534464,0.3521308,0.27060908,0.16424954,0.23278755,0.12228534,0.21406841,0.14591026,0.08680976,0.101627976,0.20713028,0.30859405,0.5009701,0.33137858,0.19241345,0.23542634,0.66323304,0.8152413,0.75789946,0.52578163,0.69831175,0.7211834,0.5279558,0.46515164,0.3805781,0.3734243,0.52272135,1.3375857,0.97948647,0.7195805,0.4739758,0.562913,0.64222515,0.63146806,0.63476276,0.6152022,0.53640574,0.50403905,0.4626768,0.4681932,1.2909962,1.320094,0.8861987,0.7394238,0.6710146,0.5963569,0.7579606,0.88047975,1.1970865,0.7813381,0.22931331,0.095080055,0.24309146,1.0166721,0.7637298,0.84002286,0.89357007,0.82920015,0.7496757,0.75631326,0.6768249,0.58315796,0.41576022,0.6207722,0.74012893,0.65657973,0.90227306,1.0826541,0.80849326,0.70742905,0.90840554,0.8671322,0.8151176,0.80959964,0.7517383,0.7107437,0.7860363,0.6934863,0.6946957,0.7515987,0.72837293,0.6572419,0.6815114,0.7817624,0.83537996,0.6120162,0.37076676,0.119011454,0.036547378,0.07593875,0.29512012,0.44836634,0.18153673,0.14288524,0.16657278,0.39512062,0.41047657,0.29452446,0.16478926,0.031238668,-0.017624475,0.09625479,-0.01711198,0.13917369,0.23640656,0.13023967,0.07368759,0.00974486,0.11679635,0.10894934,-0.007432908,0.062376313,0.08649895,0.17303535,0.15043804,0.036587887,0.12243516,0.18933678,0.08347401,0.17351443,0.22771981,0.14660957,0.06384163,0.18163416,0.23199421,0.09122101,0.14913845,0.19045517,0.13172445,0.1736252,0.19268912,0.11263586,0.09676687,0.09914444,0.23504758,0.24662703,0.122426905,0.0140522495,0.0935001,0.006379269,0.29896182,0.18266246,0.30391923,0.2646449,0.25438982,0.15663233,0.08461166,0.092951916,0.21438822,0.5013625,0.5926878,0.23170233,0.114210434,0.22181773,0.18346646,0.062893085,0.054012172,0.06633004,0.08418197,0.102854095,0.13345736,0.14469644,0.10569454,0.05838979,0.17366478,0.17964897,0.22946143,0.4872503,0.59054303,0.22657272,0.22820586,0.4784369,0.6667874,0.3546681,0.1781953,0.21746162,0.271164,0.318496,0.9546137,0.5705025,0.35479864,0.6303218,0.4908849,0.5556602,0.2326481,0.13580814,0.1225704,0.09743234,0.21090066,0.1552952,0.15071371,0.22545928,0.26361647,0.4856415,0.4946619,0.29188007,0.24120697,0.13849902,0.29757276,0.1937753,0.4231142,0.3081754,0.5758208,0.6855517,0.6547372,0.94047,0.84089917,0.3389984,0.86495036,0.48729074,0.2603491,0.42192525,0.76494205,0.5833347,0.43782392,0.58195573,0.32357487,0.5952494,0.5294915,0.7550733,0.70369214,0.49502462
+1.2063208,1.5823833,1.6211903,1.7065674,2.144037,1.9681116,1.9331784,1.8495944,1.8077929,1.744607,1.6415913,1.7008166,2.0475316,1.9517258,1.9986098,1.8120905,1.8539325,1.8250148,1.791337,1.7584841,1.7109717,1.6783371,1.8667164,2.1187804,1.9152485,1.8366928,1.747881,1.6985731,1.5886636,1.6360917,1.5859113,1.5780339,1.5741385,1.5583804,1.5546212,1.5138307,1.512301,1.477359,1.9596924,1.7772881,1.7048098,1.7118965,1.6940095,1.6385336,1.5360726,1.5264715,1.528462,1.532746,1.6472028,1.6302706,1.992989,2.6991038,2.816585,2.8561487,2.589622,2.438548,2.3285027,2.1748123,2.1087322,2.0342073,1.9328372,1.8766062,1.8406742,1.9135156,1.8496652,1.7990215,1.7653235,1.7267736,1.679771,2.6477628,2.4033892,2.1990528,2.075714,1.940943,1.8718257,1.7709945,1.7421372,1.7436635,1.7600029,1.773725,1.7391021,1.7528232,1.9015305,1.7943215,2.6256928,2.3834646,2.1126943,2.0056336,1.9090271,1.8774546,1.7701757,1.7790301,1.644531,1.6175332,1.6579586,1.6096232,1.7947532,1.7282495,1.9010577,2.1080003,2.0099535,1.8438004,1.7982979,1.7140989,1.6619217,1.6086736,1.5761194,1.5863161,1.5244284,1.4506428,1.4872715,1.4339697,1.3755655,1.6439686,1.5561154,1.3853788,1.3386643,1.3772813,1.3091583,1.2591195,1.2136917,1.3168855,1.293747,1.1978807,1.1559443,1.266753,1.199985,1.1309226,1.7287323,1.6681007,1.5804825,1.4352297,1.5051775,1.4075489,1.3263049,1.2403932,1.2042251,1.1632869,1.1203537,1.1760724,1.2812525,1.0851246,1.0400152,1.1429511,1.1730328,1.1158043,1.0431454,1.021464,0.95012575,1.084473,1.0796055,0.95658135,0.98562443,1.0692271,1.1858532,1.9464691,1.7086163,2.7467978,2.415744,2.2549682,2.2539585,2.2416747,1.9637852,1.8708991,2.003469,1.8181152,1.6747814,1.5995741,1.5449245,1.4986427,2.4214633,2.4395094,2.1959453,2.0214345,1.8928487,1.8876696,1.8499745,1.742346,1.7590438,1.6403564,1.6244783,1.5146239,1.4264265,2.003164,2.1063356,1.9183663,1.778341,1.88782,2.042545,2.7523117,2.4801803,2.5765996,3.1462097,2.5854077,1.9045696,2.183446,3.0132978,2.8620596,2.9625838,3.0026307,3.0371928,2.89798,2.7650542,2.8466098,2.9327114,2.5457916,2.475513,2.4384584,2.8474283,2.8814807,3.0063903,2.5660214,2.5207195,3.0751863,2.9047468,2.6570883,2.477095,2.441222,2.3256364,2.3697078,2.265099,2.3006172,2.2790542,2.3068748,2.163838,2.0491924,2.1025038,2.7796574,2.922972,2.802186,1.7006574,1.3966415,1.5120602,1.8773195,2.3268685,2.339161,1.8737264,1.6759466,2.1410706,2.0717392,1.5322653,1.6216197,1.1483662,0.9992142,1.5199686,1.0214473,1.2666625,1.7453815,1.0148928,0.7472348,0.68660104,0.6706172,0.6664391,1.1790227,1.1626052,1.040631,0.7224285,0.67842835,0.6561389,0.64262044,0.6138419,0.6344749,0.9836096,1.209257,0.9505534,0.7024675,0.7417628,1.1242957,0.9051745,0.7683331,1.1711861,1.0548843,0.7509694,1.1856935,0.8568948,0.7889076,0.6551315,0.60696965,0.6231281,0.59237397,0.58862525,0.57787526,0.6081729,1.3931063,1.0997539,0.7288412,0.6677518,0.6532293,0.6395813,0.6309042,0.62519646,0.7060318,1.3734922,1.5961679,1.096246,0.93449426,0.97341526,1.0947062,0.797766,0.81371284,0.9414239,0.71719563,0.7287505,0.820166,0.8445915,0.8472316,0.6311116,0.6306019,0.6621366,1.2715455,2.054951,1.877237,1.1338911,0.854361,1.6478281,1.7768654,1.2538714,0.86521184,0.810954,0.8303828,0.91477776,1.920785,1.8490244,1.2407137,1.5509722,1.3780284,1.4886607,1.2895361,0.8352376,0.7079183,0.8420465,0.8893877,0.8578522,0.9152843,0.8748004,1.1357933,1.2786536,1.3317003,1.1248683,0.8620887,0.92793167,1.2071683,1.0885158,1.4265636,1.223762,1.5246456,1.4972403,1.8709453,2.126873,2.4338317,1.4146339,2.1140213,1.518596,1.209054,1.4659595,1.676328,1.7176492,1.3655046,1.6692932,1.3639629,1.7652161,1.5966935,1.7693524,1.8268094,1.447062
+1.1653934,1.4281843,1.3971314,1.3463666,1.5071611,1.4457254,1.3808471,1.2958833,1.1758826,1.1700675,1.0980874,1.1855239,2.1686387,2.2666178,2.1141248,1.950025,1.8664228,1.790232,1.6714545,1.5455589,1.5343947,1.4373043,2.6175842,2.6590974,2.2511551,2.1325037,2.014317,1.9632356,1.8252292,1.7835059,1.7055345,1.7293125,1.6985924,1.6219687,1.5369247,2.0347607,1.9716415,1.8008473,1.7726021,1.7148607,1.6224654,1.571095,1.5110523,1.4162476,2.0294068,2.1993017,1.9735353,1.8252676,2.5713634,2.3215134,2.3357193,2.5238175,2.2742252,2.0940437,2.1610718,2.0574574,1.9909163,1.9363453,1.7751075,1.7417791,1.7053473,1.552324,1.4372975,1.4718933,1.430026,1.3185346,1.1938517,1.1355617,1.1002543,1.1783193,1.1531208,1.1501765,1.140976,1.0176319,2.2468617,2.079151,2.4617074,2.2715473,1.9612635,1.9716058,1.7990164,1.6420228,1.611413,1.4346046,1.7276993,1.8736804,1.6537329,1.4829955,1.3572885,1.3049889,1.2283157,1.213719,1.0491313,1.0327528,1.0859925,0.9797965,1.2617943,1.2239168,1.1375046,1.8854802,2.8562312,3.0701256,2.5739808,2.2196627,2.0257642,1.873952,1.7707429,1.6233552,1.4602244,1.4123619,1.3665528,1.257511,1.1546569,1.2224009,1.0818906,0.9449479,0.8498397,0.8525502,0.81585073,0.76705027,0.73705107,0.8309425,0.7708138,0.68563515,0.7756809,0.72659194,0.6418525,0.6172058,0.8190273,0.8447682,0.88798726,0.8561094,0.73117673,0.66858894,0.61942863,0.577996,0.58180016,0.5698663,0.5545219,0.5715787,0.64008206,0.5900526,0.5544954,0.66474336,0.6865152,0.60684687,0.6039682,0.54039806,0.552038,0.5777278,0.5234285,0.39340872,0.47215554,0.6119342,0.76232105,0.7113,0.70537925,0.7124501,0.9075063,1.2158449,1.0708296,1.0476213,0.85102916,0.7530819,0.78171855,0.717692,0.5814224,0.56166255,0.50888467,0.54217696,1.5760553,1.570942,1.361671,1.2321591,1.1717664,1.1974387,1.1132238,0.96103644,0.7882214,0.6374655,0.5813095,0.4994394,0.52393645,0.57234937,0.6398827,0.63124704,0.6166551,1.305127,1.4530842,1.57742,2.0253167,2.0272264,2.3951519,2.1072035,1.7464334,1.5575874,2.3755264,2.2972374,2.7289882,2.8407438,2.6688175,2.43547,2.1658754,2.1299162,2.4983394,2.3522122,2.1169744,1.9249471,2.0092428,2.0434968,1.9994024,2.0658264,1.9505503,2.808784,2.4569082,2.2672107,2.211069,2.1181893,1.976661,1.7808816,1.8296685,1.707825,1.5835617,1.5407283,1.4462208,1.2641492,1.4194541,1.6878588,2.5113153,2.6220431,2.2093253,1.6194441,1.7716404,1.8518261,2.1549823,2.419156,2.489325,2.049874,2.1238947,2.0901122,1.8405323,2.3062048,2.1350837,1.5690072,2.2018547,1.6226637,1.9065863,2.2321935,1.3748847,1.051555,0.90104836,0.7134298,0.91580427,1.4411302,1.2106628,1.2842278,1.1446759,0.7361666,1.0552951,0.84956384,0.6138596,0.5750842,0.6622186,1.0750719,0.80486536,0.62868965,0.84562075,1.3451326,1.0999174,0.99078584,1.5153837,1.3029431,0.9498013,1.4507043,0.8512633,0.91526735,0.8325395,0.7018538,0.59400076,0.58010024,0.56435716,0.55786616,1.2040758,1.8861625,1.411752,1.1979456,0.7750129,0.64872193,0.6277306,0.6198933,0.5948813,0.67276376,1.1839726,1.7299511,1.2677162,1.1589146,1.100621,1.3447542,0.98337656,1.0672524,1.0305336,0.8153189,0.8058193,0.98312455,1.0405208,1.4097733,0.93564296,0.6607417,0.77020895,1.75595,2.0350928,2.0849485,1.4671284,1.3175403,2.4310727,2.411173,2.061245,1.3033928,1.1455021,1.103081,1.0572549,1.9309971,2.207273,1.8602538,2.1097007,2.1400158,2.3208222,2.2682636,1.557254,1.1083657,1.2431436,1.1818804,1.1994556,1.1992767,1.0856591,1.0767381,1.3103752,1.792192,1.60107,1.1816934,1.1782026,2.056664,2.2267797,2.5133898,2.0078578,2.1159828,2.1404498,2.5724354,2.7342043,2.654354,2.0803902,2.581316,2.5378454,2.1341324,2.3049974,2.3940368,2.3610992,1.9357193,2.2443538,2.0028954,2.5629022,2.251064,2.3725786,2.4225001,2.129776
+-0.4225505,-0.6049284,-0.45970023,-0.3779425,-0.6302082,-0.5762655,-0.49967837,-0.4798327,-0.4439335,-0.4394725,-0.4442615,-0.29431525,0.37842068,0.33665663,-0.015230328,-0.25019884,-0.2700256,-0.2642802,-0.2847135,-0.28031522,-0.3426556,-0.26292384,0.12123202,-0.10551531,-0.28680843,-0.380246,-0.35873055,-0.2634092,-0.19627172,-0.32156545,-0.37468228,-0.40315536,-0.40194938,-0.3733492,-0.28987572,-0.13640225,-0.17892492,0.008823387,-0.31200215,-0.39043987,-0.42776877,-0.43161803,-0.37119594,-0.36177287,0.3220454,0.13809389,-0.031029753,-0.13991159,0.35769162,0.2597096,0.30125195,0.55553955,0.45825493,0.19517204,0.0025643334,-0.07091241,-0.1154631,-0.27596176,-0.3135002,-0.287928,-0.34282136,-0.3585137,-0.32627934,-0.25527167,-0.3123748,-0.39950567,-0.43589061,-0.4244625,-0.47539043,-0.40783525,-0.46308875,-0.46335226,-0.5691341,-0.61366403,0.056144066,0.121142186,0.38563347,0.046795316,2.6673079e-06,-0.03378298,-0.12019437,-0.2170049,-0.34230793,-0.40608722,-0.3405969,-0.41821736,-0.494901,-0.55916524,-0.59163225,-0.608305,-0.62626183,-0.5978234,-0.67997015,-0.6562308,-0.63707876,-0.6993352,-0.67317414,-0.69400346,-0.72364926,-0.51618606,1.0501325,0.83930784,0.36563635,0.2334646,-0.02374024,-0.16056114,-0.21668378,-0.30226365,-0.39846045,-0.4193201,-0.47431237,-0.5623586,-0.6208337,-0.6004156,-0.6561389,-0.73557204,-0.7812655,-0.75823516,-0.7621113,-0.7874001,-0.80990916,-0.817658,-0.86276054,-0.8693004,-0.81205064,-0.8388219,-0.93428254,-0.91160226,-0.90864646,-0.88115823,-0.8633053,-0.8116858,-0.87298745,-0.316069,-0.52104336,-0.6789387,-0.72514296,-0.84232664,-0.89827126,-0.89804786,-0.91971505,-0.9338852,-0.94757724,-0.94884646,-1.0047244,-0.983464,-0.99657536,-1.0079232,-1.0001523,-0.974247,-0.9795853,-1.025089,-1.0352184,-0.9732014,-0.95334387,-0.951139,-0.929844,-0.76064724,-0.93577135,-0.858789,-0.92630255,-1.0022366,-1.0239835,-1.0130382,-1.0259843,-1.019339,-1.0210052,-1.0304328,-1.0594746,-1.0606098,-0.4516588,-0.3035813,-0.5043283,-0.6249523,0.72848606,0.70697075,0.26187396,0.006882556,-0.121586375,-0.23883834,-0.3670162,-0.49178416,-0.5393183,-0.5118506,-0.6256467,-0.6632812,-0.69664454,-0.599547,-0.36451343,-0.513355,-0.47535998,-0.5053115,-0.5297598,-0.40554738,-0.77346534,-0.6101361,0.841835,0.889359,1.123602,0.99911547,0.81391186,0.36692613,0.052402686,0.5560421,0.6445956,0.19530508,0.38144183,0.55238676,0.56382483,0.34577587,0.672448,0.43422177,0.5929032,1.1162751,0.90779394,0.31961942,-0.09284984,-0.24472135,-0.19312239,-0.045393012,-0.09145155,-0.0014152825,0.06416537,0.017908826,-0.009225167,0.00070782006,0.016891703,0.10844902,0.9916531,0.46766937,-0.45762938,-0.38843784,-0.1590752,0.16521047,0.13474448,-0.32232127,0.033228472,-0.23204634,-0.0976662,-0.19235882,-0.09108087,0.19286492,-0.012931384,-0.04709377,0.0067305192,-0.10997439,-0.09440199,0.30689096,0.007396437,-0.018643506,-0.16539285,-0.05187104,0.38008022,0.6587826,0.16850662,0.29061297,-0.05282431,0.0062439814,1.0518793,0.16206208,-0.109813236,-0.07672431,-0.08034145,0.24548897,-0.08647493,-0.27018568,0.028276928,0.27426544,-0.17819732,-0.05664339,0.11381308,0.014289446,-0.17080182,-0.11651193,-0.26724058,-0.10944811,0.013593711,-0.009291373,-0.15096432,-0.21354443,-0.19312987,-0.052768774,0.34815067,0.7436358,0.2926189,0.5138767,0.09846049,-0.20688757,-0.30255973,-0.32237422,-0.3252838,-0.097020276,0.17673254,0.71753985,0.15777096,0.1655221,0.18774712,0.078305885,-0.1648525,-0.24797022,-0.19683447,-0.27726895,-0.2532093,-0.2501533,-0.04472118,0.0445128,0.10051211,0.09010925,0.2955218,0.76249856,0.68789214,0.66920865,0.36830243,0.41452527,1.9139054,1.4973112,0.261748,-0.26838154,-0.34697247,-0.39573336,-0.4369154,0.51841986,0.25977892,0.39001805,0.4248489,0.48977864,0.64362603,0.21152827,-0.07357203,-0.29196334,-0.18326238,-0.05043059,-0.021920197,-0.0020541921,-0.007810287,-0.13868019,-0.1483778,0.33821937,0.24939942,-0.0046912655,0.15085265,0.42529565,0.6059525,1.0690339,0.15977445,0.33822864,0.10633705,0.36705285,0.5938969,0.606079,0.07097681,0.6684478,0.66871536,0.5998969,0.5506457,0.46017003,0.20446044,0.10408582,0.363127,0.120748326,0.45815295,0.12498415,0.2716869,0.49995196,0.2597201
+-0.9099517,-1.0771239,-1.2488531,-1.3608236,-1.4881972,-1.5677456,-1.5886396,-1.6267647,-1.6324475,-1.6574894,-1.6685817,-1.5515426,-0.79049516,-0.60277796,-0.7921804,-1.0330607,-1.3025212,-1.4819005,-1.5992066,-1.647717,-1.6923573,-1.67503,-0.047058962,-0.14413661,-0.06369632,-0.3434214,-0.5205228,-0.64784473,-0.9059663,-1.1231458,-1.2315404,-1.349968,-1.4744997,-1.5702888,-1.5947301,-1.5842241,-0.9430665,-0.075242214,-0.79311323,-1.0202067,-1.2428505,-1.443659,-1.5762634,-1.6326817,-1.4583805,-1.4012482,-1.4916805,-1.5730275,-0.92142236,-0.15876019,-0.27921826,-0.4535126,-0.66139525,-0.98652005,-1.2110665,-1.3235531,-1.4998956,-1.6095439,-1.6522028,-1.6814731,-1.7049049,-1.7261541,-1.7291098,-1.6917365,-1.6960858,-1.7398541,-1.6608427,-1.6684,-1.7530559,-1.6892757,-1.71879,-1.7124486,-1.7435377,-1.7463155,-1.7137814,-1.6754075,-1.1390789,-1.369114,-1.5735292,-1.6809106,-1.7503467,-1.7174379,-1.7548114,-1.7614713,-1.7185781,-1.7324653,-1.7687644,-1.7873203,-1.7614391,-1.7594244,-1.7497053,-1.7112569,-1.7507864,-1.7480751,-1.7388837,-1.7532053,-1.7458115,-1.7502189,-1.7702546,-1.7268604,-1.3182558,-1.2710433,-1.5408475,-1.6480172,-1.758667,-1.7741927,-1.749541,-1.7759039,-1.7976556,-1.7811811,-1.76397,-1.7964325,-1.7827709,-1.7431624,-1.7708062,-1.7922657,-1.8087089,-1.7782267,-1.7649099,-1.7790394,-1.777669,-1.7740358,-1.7882447,-1.8168924,-1.761357,-1.7775986,-1.8269583,-1.7450411,-1.7511009,-1.7510066,-1.7411096,-1.7379241,-1.7719221,-1.7885919,-1.7961189,-1.806459,-1.761771,-1.7921727,-1.7729802,-1.7611446,-1.7634245,-1.7760872,-1.8058552,-1.8019165,-1.7939135,-1.7909402,-1.7903003,-1.7801154,-1.7919987,-1.7939657,-1.7943101,-1.7658691,-1.7451744,-1.756921,-1.7248547,-1.695081,-1.4215069,-1.231951,-1.5279629,-1.5801139,-1.6788919,-1.7481065,-1.7757363,-1.7851804,-1.7331982,-1.7184,-0.8253758,-0.89095813,-1.2543262,-1.4952387,-1.476763,-1.526051,-1.5937263,-1.5670159,-0.64853853,-0.3965107,-0.73193127,-0.98217916,-1.2847412,-1.4750059,-1.5727674,-1.6123172,-1.5663042,-1.5543177,-1.5790685,-1.5555642,-1.5441664,-1.544035,-1.4455584,-1.4326314,-1.5078156,-1.609254,-1.5793996,-1.5380254,-1.6051857,-1.6535137,-1.4486225,-1.2350624,-1.0962023,-0.884518,-0.34516424,-0.47515553,-0.6724757,-0.8540282,-0.9808892,-1.1087854,-1.1087455,-0.46522462,-0.6483042,-0.82787865,-0.8088541,-0.41365045,-0.2976773,-0.058517583,-0.3678541,-0.5118267,-0.65609,-0.74024725,-0.8155675,-0.8963809,-0.93089867,-1.0252655,-1.0812438,-1.123871,-1.162086,-1.2031162,-1.2071238,-1.2541953,-1.2583518,-1.2582235,-1.3192067,-1.319355,-1.2916949,-1.3082342,-1.328325,-1.3376825,-1.1814961,-1.1583772,-1.0893221,-1.0670693,-1.1494918,-0.9725094,-1.1303446,-1.1532558,-1.1431799,-1.2131388,-1.0877769,-0.9694489,-1.0066609,-1.1323048,-1.2771559,-1.1940199,-0.70911145,0.035328962,-0.29704797,-0.4142915,-0.8082472,-0.5901637,-0.025049351,0.22028679,-1.1077273,-1.2182463,-1.108627,-0.53086275,-0.7643211,-1.0778259,-0.8709431,-0.18656534,-0.77804506,-1.0555835,-0.78038335,-0.5281562,-0.8719105,-0.8939816,-1.0536032,-1.0667549,-0.7611267,-0.79619694,-0.4246217,-0.81123036,-1.1918281,-0.979113,-0.111665644,0.2508537,0.3772351,0.42667463,-0.37276635,-0.81807184,-1.0058155,-1.0922983,-1.1429917,-1.029007,-0.6618287,0.12770802,-0.061323352,0.25229657,0.19657353,0.22415614,-0.020227186,-0.642897,-0.4228248,-0.8140261,-0.8648774,-0.86561584,-0.8005812,-0.6104918,-0.17950147,-0.25984815,0.1909236,0.30600306,0.5018664,0.47866744,0.66400313,0.47688794,0.65266067,0.7253576,0.3447805,-0.4836784,-0.616174,-0.71152264,-0.70393765,-0.0021216646,0.015166521,0.37576476,0.52840436,0.5143768,0.56201553,0.2865782,0.031941764,-0.36587396,-0.77759826,-0.7347986,-0.67494845,-0.7094112,-0.65419847,-0.802226,-0.74236387,-0.20854291,0.070325874,-0.30956146,-0.22731578,0.22689065,0.45265627,0.53347826,0.3945665,0.42133272,0.3327886,0.39688623,0.2826445,0.38021535,0.28521958,0.22587201,0.35096067,0.3653065,0.35184863,0.45410216,0.28593966,-0.0044482574,0.4445212,0.31584585,0.41419542,0.24652907,0.24446666,0.929134,0.6053507
+-0.63853204,-0.8256173,-0.7227699,-0.7118515,-0.8639163,-0.94834983,-1.0304075,-1.0723648,-1.0631435,-0.939011,-0.7351113,-0.6987873,-0.47311777,-0.47981012,-0.6196962,-0.67807156,-0.8508971,-0.9665928,-1.0285821,-1.1114107,-1.1650909,-1.147943,0.28415895,-0.09718991,0.05405607,-0.16173577,-0.13677335,-0.12408929,-0.28801364,-0.24616727,-0.16184786,-0.30983272,-0.3278749,-0.35824314,-0.44802547,-0.5870843,-0.48704457,-0.54607016,-0.62152576,-0.7325726,-0.86529255,-0.9474783,-0.9667522,-1.0618129,-0.855098,-0.453099,-0.4837889,-0.6051061,-0.55256104,-0.4857447,-0.5284233,-0.7019018,-0.72143304,-0.72629213,-0.42425478,-0.42991817,-0.5786937,-0.8022654,-0.9113208,-0.96329415,-1.1341394,-1.1877081,-1.2201647,-1.2238332,-1.3128545,-1.3830944,-1.3903137,-1.404001,-1.4681394,-1.4735389,-1.5039815,-1.4770694,-1.5193585,-1.518805,-1.5479826,-1.5328133,-1.3648195,-1.386337,-1.4560537,-1.4602764,-1.5439713,-1.558836,-1.6035204,-1.6058404,-1.606668,-1.6538932,-1.6553811,-1.6399666,-1.627434,-1.6187654,-1.593901,-1.561058,-1.5685492,-1.6022608,-1.6040287,-1.6491377,-1.667388,-1.6788373,-1.6710216,-1.6595297,-1.230648,-1.0282054,-1.27473,-1.4242527,-1.6184157,-1.6686436,-1.6750668,-1.6867998,-1.6944137,-1.6830385,-1.6986184,-1.7063475,-1.701994,-1.714817,-1.7531282,-1.7719033,-1.74436,-1.725682,-1.7237039,-1.7212422,-1.6185656,-1.6040587,-1.6743233,-1.712995,-1.7330832,-1.7881712,-1.6989524,-1.5816195,-1.6416147,-1.7081693,-1.7127278,-1.718925,-1.7176383,-1.7474763,-1.7616735,-1.763596,-1.7448809,-1.7540867,-1.7497455,-1.7248421,-1.7510514,-1.7482412,-1.7720709,-1.7858639,-1.7910726,-1.8070289,-1.8076367,-1.7786517,-1.7693677,-1.7613614,-1.7753712,-1.764346,-1.7348404,-1.6616554,-1.6673695,-1.6736,-1.0422554,-0.98535275,-1.2262992,-1.3586078,-1.4840658,-1.6896784,-1.753662,-1.7464571,-1.702189,-1.2457314,0.08047643,-0.36117885,-0.71971893,-0.91189766,-1.01108,-1.1218132,-1.1694688,-1.2954565,-0.7083554,0.3772251,0.12412142,-0.16577753,-0.3182708,-0.45818913,-0.6014757,-0.7478279,-0.72226566,-0.7756909,-0.9444034,-0.84301585,-1.0242109,-0.83108366,-0.7889514,-0.85038567,-0.88281083,-0.9354609,-1.0075214,-1.0791547,-1.1915011,-1.2290596,-1.1316651,-0.8886167,-0.23106897,0.18943873,-0.011579074,-0.38566902,-0.51091385,-0.2634731,-0.15997761,-0.26038367,-0.26511115,-0.24412292,-0.24383014,-0.3531289,0.34466085,0.29201344,0.32292247,0.5350765,0.38358408,-0.041957222,-0.2771012,-0.25832185,-0.14722836,-0.20542732,-0.27453142,-0.2840186,-0.27437544,-0.35061404,-0.42572773,-0.48032808,-0.63733196,-0.62636673,-0.6996864,-0.7229433,-1.1826807,-1.2389977,-1.1515286,-0.98480153,-0.86050236,-1.139328,-1.049759,-1.2681364,-1.249681,-1.2260697,-1.1046004,-0.8509809,-1.0735941,-1.2280099,-1.048563,-1.2395858,-1.2131666,-1.04912,-0.9683037,-1.2146966,-1.2997005,-1.0966794,-0.23269135,0.20145878,-0.39070672,-0.7718343,-0.79688,-0.2710101,0.15655474,0.11211606,-0.7778214,-0.7336582,-0.76097393,-0.5064348,-0.4339403,-0.8462324,-0.80840856,-0.3105197,-0.7151451,-0.86059546,-0.7712574,-0.7555992,-0.8889045,-0.90505445,-0.9348674,-1.0048047,-0.83793133,-0.78744733,-0.27582115,-0.71040386,-0.8277202,-0.7801813,0.04152114,0.24373561,-0.119951464,0.03261611,-0.52821517,-0.7281633,-0.8471037,-0.89742094,-0.9351393,-0.9921483,-0.8455174,-0.27220297,-0.7267779,-0.63723505,-0.7470861,-0.47608882,-0.72057855,-0.91556394,-0.78217065,-0.9641175,-0.9738014,-1.0140599,-1.0006185,-0.95809555,-0.74220824,-0.70369,-0.3251122,-0.29199484,-0.3389482,-0.2515935,0.12851387,-0.12058791,0.46173066,0.35420772,-0.3700054,-0.86517,-0.9470736,-0.93782187,-0.9482486,-0.53179324,-0.84451866,-0.27544314,-0.2602349,-0.19713897,0.110472724,-0.4290167,-0.46456885,-0.83805275,-0.9506465,-1.0455068,-0.8305373,-0.99018085,-0.98215795,-1.0422403,-1.0406247,-0.93828905,-0.8230425,-1.0359011,-0.8872564,-0.5734979,-0.36775583,-0.11407741,-0.4650067,-0.37641802,-0.539708,-0.37228295,-0.27599105,-0.09264227,-0.23664919,-0.092171974,-0.099617876,-0.056709252,-0.018923573,-0.25620702,-0.6759334,-0.8327652,-0.50187004,-0.76853395,-0.4686938,-0.71645194,-0.6640885,-0.22051048,-0.46111637
+-0.76144785,-0.747737,-0.9697938,-1.1533471,-1.3924017,-1.467606,-1.4784495,-1.5017196,-1.3342245,-1.0136349,-0.18315738,-0.14520764,-0.16900757,-0.23174083,-0.13673612,-0.5227729,-0.73066115,-0.9293002,-1.0751133,-1.2432536,-1.380347,-1.4977012,0.086412005,-0.25807646,0.27465764,0.113880254,-0.022232883,0.27898034,0.06532172,0.13661131,-0.031506665,-0.12701872,-0.24243069,-0.38785517,-0.5702698,-0.5496105,0.14066142,0.052418552,0.121288665,-0.36050963,-0.5677851,-0.7658559,-1.0696871,-1.2677178,-1.200414,-0.9001218,-0.6581929,-0.9229989,-1.2263591,-0.5539775,-0.33553356,-0.7058147,-0.80031943,-0.53396153,-0.3361002,-0.4218433,-0.6549412,-0.8398479,-0.94116545,-1.1178297,-1.324704,-1.4184506,-1.500963,-1.5435143,-1.5670246,-1.5972669,-1.5708809,-1.5780333,-1.5923142,-1.595511,-1.6119137,-1.6084926,-0.7089355,-0.67347306,-1.0857878,-1.2689152,-1.4178843,-1.5080532,-1.5715415,-1.5731549,-1.6051912,-1.6090477,-1.6465746,-1.6496835,-1.6480837,-1.6771195,-1.7054975,-1.7214227,-1.7186127,-1.7176632,-1.6960492,-1.5261312,-1.1837885,-1.3864266,-1.55971,-1.639346,-1.6631277,-1.6838684,-1.6784456,-1.6760222,-1.6065996,-1.6864352,-1.7304024,-1.7203631,-1.7453915,-1.750849,-1.7048112,-1.7310629,-1.743094,-1.7323272,-1.7311232,-1.7667847,-1.7210937,-1.739506,-1.7577478,-1.7665704,-1.7568458,-1.7745931,-1.7615122,-1.7547792,-1.5768762,-1.4404254,-1.6409943,-1.7366061,-1.7388966,-1.7767974,-1.4204675,-1.4140248,-1.6230543,-1.716193,-1.7177488,-1.7287067,-1.7342594,-1.7433482,-1.7560033,-1.7682062,-1.7454987,-1.7647275,-1.7440225,-1.7242365,-1.7361286,-1.7503828,-1.7649657,-1.7472519,-1.7338915,-1.7476497,-1.7614266,-1.7562219,-1.7610015,-1.7516792,-1.775634,-1.7786847,-1.7646661,-1.7202759,-1.7259258,-1.7298381,-1.6801066,-1.6959755,-1.7502791,-1.7595633,-1.7339511,-1.7537466,-1.7766259,-1.7716424,-1.73507,-0.96620655,-0.57878524,-0.9340075,-1.2479248,-1.4673023,-1.6160066,-1.6544219,-1.6745381,-1.4196407,0.7662264,0.59512794,0.20994034,-0.05553869,-0.10795889,-0.27637044,-0.6469002,-0.85118747,-1.0022753,-1.1765082,-1.3151712,-0.9465319,-1.0534426,-1.1165526,-1.2044153,-1.2787766,-1.4013723,-1.497003,-1.5278822,-1.5366131,-1.5410969,-1.5619643,-1.5809474,-0.9085841,-0.23527652,0.354757,-0.08517667,-0.37174654,-0.53207296,-0.6583107,-0.8119584,-0.94218457,-1.0174294,-1.0481591,-1.118572,-1.2027965,-0.5985674,-0.20191738,-0.27659565,0.3979045,0.09765042,-0.12676772,-0.3281431,-0.37553754,-0.44922793,-0.50700986,-0.6005899,-0.6353175,-0.70545685,-0.7896415,-0.8411723,-0.8901412,-0.96450853,-0.99442935,-1.0729988,-1.039856,-1.2239612,-1.3146269,-1.2125187,-1.1388144,-0.37956744,-0.7809242,-0.86667126,-1.0945276,-1.2090397,-1.1166209,-1.0089058,-0.9676881,-1.1875446,-1.2097256,-0.9908911,-1.1432885,-1.283263,-1.1869245,-1.0397147,-1.3419955,-1.2435478,-1.0704194,-0.72524977,-0.37913942,-0.25732845,-1.1047034,-1.0552883,-0.33852178,-0.3347506,0.24062431,-1.1272416,-1.1240103,-1.0892117,-0.9257084,-0.68979025,-1.0221242,-0.9635836,-0.06774189,-0.9827683,-1.1726955,-1.1078455,-1.0477891,-1.0303111,-1.0325986,-1.1038677,-1.1738931,-0.97247696,-0.93681765,-0.27843988,-0.2773506,-1.1426392,-0.8242614,-0.10399588,0.3912566,-0.045096375,0.1343809,-0.33689985,-0.2152307,-0.64017826,-0.8477305,-1.0202191,-1.0049007,-0.8362956,-0.14045036,-0.5109817,-0.37279856,-0.4538195,-0.08479885,-0.8278998,-0.90034294,-0.7441981,-0.99582577,-0.96752834,-0.86322,-0.84887934,-0.8796384,-0.80591065,-0.4955638,-0.2816089,-0.32884622,-0.5199986,-0.22227135,0.38918912,0.13869786,0.47429445,0.600415,0.37989348,-0.7456902,-0.92536557,-0.8506069,-0.76656413,-0.4723904,-0.5528246,-0.036959894,-0.18486345,-0.1294435,-0.108527415,-0.11780196,-0.74507797,-0.9846853,-0.8941874,-0.96064806,-0.6760299,-0.90650606,-0.9677384,-0.84777796,-0.8091996,-0.66446483,-0.7294905,-0.85057545,-0.79492795,-0.54627824,-0.5467943,-0.36048314,-0.2834636,-0.2939297,-0.33359355,-0.22494534,-0.06420829,-0.10759307,-0.20037049,-0.30903912,-0.36809385,-0.43633723,-0.5188853,-0.07752455,-0.006215103,-0.5738585,-0.04908707,-0.6585766,-0.30226457,-0.8273568,-0.8349103,0.07556441,-0.32428667
+-0.7382157,-0.8338875,-1.0779262,-1.2408913,-1.4419954,-1.5510845,-1.5757641,-1.5534092,-0.96102476,0.068651564,-0.094822355,-0.33144185,-0.08094739,-0.23001158,-0.5595451,-0.93539536,-1.1884072,-1.3842261,-1.4816046,-1.5370642,-1.5807216,-1.1435025,-0.3416374,-0.72787684,0.05859161,-0.2971791,-0.22928226,-0.000832811,-0.1432457,-0.091326706,-0.27543825,-0.37360698,-0.55852604,-0.7660633,-1.0628086,-1.1776931,-0.60286033,-0.14779422,-0.18371755,-0.58565,-0.9688896,-1.2487532,-1.4462385,-1.5475727,-1.5571295,-1.5854404,-1.0574226,-0.7746235,-1.1326715,-1.4443753,-1.5620834,-1.6172404,-1.6573951,-1.3182,-1.0935957,-0.881153,-1.1233817,-1.3787615,-1.3216052,-1.2919748,-1.466725,-1.5797442,-1.6419339,-1.6569173,-1.6497726,-1.6810354,-1.6549875,-1.654597,-1.6539172,-1.689747,-1.7108977,-1.1990571,-0.42024255,-0.2989896,-0.78753597,-1.264855,-1.5021017,-1.6233275,-1.6658617,-1.6864153,-1.6965057,-1.6905066,-1.6988889,-1.701313,-1.6972934,-1.6814948,-1.7027909,-1.7215788,-1.7154287,-1.6463585,-1.3395561,-1.0422997,-1.0281987,-1.152757,-1.4622542,-1.6246815,-1.67823,-1.692759,-1.702924,-1.6981035,-1.6700978,-1.6862873,-1.7272863,-1.7115858,-1.7203181,-1.7331972,-1.7117202,-1.7320659,-1.7353629,-1.7315819,-1.736643,-1.7421885,-1.7263765,-1.7245626,-1.7285316,-1.7446468,-1.7489808,-1.7436372,-1.7216023,-1.6635623,-1.6309727,-1.6283356,-1.6339306,-1.6406262,-1.644492,-1.4863992,-0.9429115,-1.2831993,-1.5086938,-1.6565425,-1.7008128,-1.7028704,-1.7008361,-1.6911533,-1.6901327,-1.6972691,-1.6914991,-1.6860943,-1.6872532,-1.6834936,-1.6586587,-1.6647075,-1.6731923,-1.6538565,-1.5740901,-1.6358067,-1.6587231,-1.6630661,-1.6533465,-1.6674775,-1.6671726,-1.6621776,-1.6400396,-1.6202435,-1.6431978,-1.660015,-1.652051,-1.6422721,-1.6764398,-1.6982489,-1.6740842,-1.6560829,-1.6658463,-1.673562,-1.6487591,-1.5797431,-1.3503217,-1.5264212,-1.6231204,-1.647629,-1.6758115,-1.6877387,-1.6601987,-1.5724785,-0.6507963,-0.5168648,-0.76713175,-1.0662129,-1.2709173,-1.4213068,-1.4901974,-1.4774112,-1.4562168,-1.4948139,-1.5429435,-1.5732317,-1.5885419,-1.620832,-1.6269944,-1.625213,-1.6528642,-1.6364329,-1.6387453,-1.6322923,-1.6077849,-1.6133746,-1.5739875,-1.5107012,-1.496089,-1.4510901,-1.5436769,-1.6108557,-1.6262541,-1.6471343,-1.650086,-1.6468866,-1.1081129,-0.90665364,-1.0545663,-1.2049588,-0.8852899,-0.72855735,-0.7398028,-0.38428628,-0.6464463,-0.9423244,-1.1235843,-1.2142723,-1.2473376,-1.2376661,-1.3120195,-1.3639377,-1.3782454,-1.4299687,-1.4325569,-1.4189602,-1.4629971,-1.5022511,-1.514743,-1.5324275,-1.5827754,-1.5295148,-1.5087371,-1.507833,-1.0353591,-1.2004853,-1.1927565,-1.3486576,-1.3962579,-1.355814,-1.2297676,-1.2814276,-1.3883898,-1.4149108,-1.3475361,-1.4251621,-1.4740644,-1.3963244,-1.414944,-1.5169749,-1.4774201,-1.3341787,-1.2489905,-1.242915,-1.1841855,-1.4252819,-1.3981314,-1.1772563,-1.2406166,-0.45070326,-1.269431,-1.3260036,-1.3319623,-1.2928041,-1.2276757,-1.2136335,-1.2031665,-1.0369587,-1.3849229,-1.3953322,-1.3635924,-1.3071227,-1.2430043,-1.2414415,-1.2637241,-1.2860501,-1.250619,-1.23775,-0.9930936,-0.8575231,-1.449382,-1.1325872,-0.7695913,-0.7198303,-0.87348557,-0.7639483,-0.9190451,-0.66743803,-1.1295841,-1.1774234,-1.2680957,-1.2753669,-1.1749226,-0.73296297,-1.0866803,-0.9098427,-0.84039104,-0.60228914,-1.3728222,-1.2680714,-1.1010942,-1.2147489,-1.2455254,-1.165982,-1.1757145,-1.1951104,-1.13565,-0.86943066,-0.9805589,-0.9521972,-1.0356765,-0.8154703,-0.7352562,-0.8583472,-0.64535695,-0.58293957,-0.124105,-1.0569011,-1.1443155,-1.1595596,-1.1823608,-0.99304986,-0.8761158,-0.44167167,-0.6765639,-0.53880227,-0.5492179,-0.7788147,-1.2879165,-1.3035283,-1.1648865,-1.2299579,-1.1008358,-1.3359481,-1.3191301,-1.3000852,-1.3246839,-1.2225928,-1.209007,-1.4004588,-1.343355,-1.1999407,-1.2207611,-1.2154553,-1.1281995,-1.1710413,-1.233881,-1.2049899,-1.1973374,-1.2710676,-1.355793,-1.3943942,-1.4377053,-1.4636822,-1.4573953,-1.2577564,-0.7748316,-1.0590572,-0.28015235,-0.64186954,-0.5072087,-0.93941367,-0.9714714,-0.6608642,-0.70070744
+-1.2417083,-1.390365,-1.5187272,-1.5774688,-1.6128685,-1.6361778,-1.6336067,-1.3741076,-0.57189685,-0.039877556,-0.33754835,-0.6875563,-0.991505,-1.2552937,-1.4599541,-1.5606868,-1.6441624,-1.6754173,-1.6838152,-1.6857092,-1.6808108,-1.684195,-1.6556336,-1.6893239,-0.76141167,-1.0341885,-1.2029357,-0.7191906,-0.5482634,-0.14165166,-0.56985027,-0.90081424,-1.2265607,-1.4284612,-1.5477692,-1.5617028,-1.0054483,-0.64307076,-0.86442614,-1.3045039,-1.5228491,-1.6249152,-1.6732805,-1.6542778,-1.6388326,-1.6298784,-1.4918811,-1.4336973,-1.6065202,-1.6522443,-1.6906621,-1.7250781,-1.7340757,-1.579509,-1.6469355,-1.6932721,-1.7092164,-1.715234,-1.7125838,-1.7011034,-1.6887077,-1.7024577,-1.7223133,-1.7155807,-1.716249,-1.7031335,-1.705308,-1.695445,-1.7007375,-1.6853378,-1.6894784,-0.9310967,-0.78347254,-1.1596223,-1.4845175,-1.611568,-1.639658,-1.66222,-1.6731066,-1.7030113,-1.685728,-1.7008344,-1.6989005,-1.7053441,-1.7101628,-1.7042885,-1.7201736,-1.7079964,-1.6973125,-1.6440865,-1.6330706,-1.3138697,-0.7404601,-1.1642447,-1.4755685,-1.6193539,-1.6755663,-1.6759936,-1.6606088,-1.6669111,-1.6728992,-1.692127,-1.708199,-1.7116555,-1.6905913,-1.6956844,-1.6961088,-1.6948738,-1.6789682,-1.6793944,-1.6917411,-1.6902155,-1.6966817,-1.7063164,-1.7082343,-1.694051,-1.6898198,-1.6991305,-1.6734548,-1.6242745,-1.6123621,-1.5454619,-1.5907359,-1.60919,-1.2564685,-0.7608135,-0.7484986,-1.2356225,-1.4856863,-1.6222625,-1.6630019,-1.662477,-1.6923438,-1.6980902,-1.700778,-1.6994257,-1.6728035,-1.6904147,-1.6834252,-1.677281,-1.6696275,-1.6819532,-1.6754363,-1.3812296,-1.0761772,-1.1852348,-1.4397256,-1.5740302,-1.621213,-1.6634865,-1.6889366,-1.688647,-1.6555381,-1.658665,-1.6681266,-1.6712213,-1.6729839,-1.6864177,-1.690855,-1.6969589,-1.6818354,-1.6815896,-1.6953422,-1.6769457,-1.6657147,-1.6618178,-1.6735458,-1.6882977,-1.6923518,-1.6882288,-1.701245,-1.6903682,-1.6689339,-1.6130297,-1.3897138,-1.4702394,-1.5947605,-1.6323116,-1.6496286,-1.662955,-1.6455511,-1.5260973,-1.5709808,-1.6142864,-1.65195,-1.6395009,-1.6617204,-1.6833662,-1.6806822,-1.701898,-1.7009699,-1.7079268,-1.6767544,-1.6314659,-1.6392857,-1.6303203,-1.6175241,-1.6047013,-1.5768867,-1.5557202,-1.5614921,-1.5878993,-1.6291931,-1.6432844,-1.6551293,-1.6178234,-0.48848736,-0.43390846,-0.71491885,-0.9242518,-0.9166,-0.81508255,-1.004938,-1.1100897,-1.1803613,-1.2656794,-1.3538692,-1.3874378,-1.4110465,-1.4374279,-1.4300599,-1.4447423,-1.4827578,-1.4701275,-1.4907273,-1.4832535,-1.470952,-1.4871225,-1.5104564,-1.5226309,-1.5179918,-1.5613451,-1.5894525,-1.3233947,-0.81458306,-1.0691435,-1.2214833,-1.3786075,-1.4501641,-1.4758861,-1.3442669,-1.1786299,-1.3816202,-1.4203017,-1.4274294,-1.4429522,-1.5083008,-1.4754807,-1.4809825,-1.4973459,-1.5249817,-1.4872322,-1.4604245,-1.4497732,-1.3925467,-1.4083961,-1.4537399,-1.4685384,-1.2395598,-0.2404845,-1.0018522,-1.30442,-1.3561769,-1.3326218,-1.3405626,-1.0348184,-1.0568631,-0.46108776,-1.1994336,-1.300167,-1.2349875,-1.187731,-1.2048519,-1.2250023,-1.0144405,-1.1703453,-1.2009835,-1.2256904,-1.1071255,-1.064944,-1.3355973,-1.31548,-1.044726,-1.1355104,-1.2022603,-1.2368355,-1.0909667,-0.6165551,-1.0742439,-1.2378577,-1.3223431,-1.359669,-1.3504205,-0.8635749,-0.84675694,-0.6675946,-0.9320978,-0.8280098,-1.3230714,-1.3703918,-1.3460256,-1.3302703,-1.3437923,-1.3077586,-1.2926674,-1.3066391,-1.322462,-1.2736218,-1.2429122,-1.2519944,-1.267026,-1.1899345,-1.1443125,-1.1876197,-1.2114604,-1.2862856,-0.88039625,-0.86836445,-1.1881601,-1.3287097,-1.3850738,-1.3794713,-1.0096326,-0.23579866,-0.32356018,-0.5320948,-0.7631986,-0.9373734,-1.193543,-1.3518827,-1.4023807,-1.3727026,-1.3193591,-1.3894358,-1.4600707,-1.4678919,-1.4762858,-1.4827073,-1.4717441,-1.4673672,-1.5400512,-1.5096279,-1.5223001,-1.5742716,-1.5926952,-1.6163766,-1.6269283,-1.6539775,-1.6710783,-1.6724651,-1.6717935,-1.6708077,-1.6750016,-1.6697721,-1.6467476,-1.6290685,-1.2674525,-1.5000749,-0.6573611,-0.66536385,-0.874148,-1.194958,-1.392436,-1.2545996,-1.1122687
+-1.5432554,-1.4962535,-1.5203007,-1.526317,-1.5158935,-1.5056305,-1.5189841,-1.0401047,0.03394159,0.18829936,-0.10595279,-0.68460834,-1.0621083,-1.2412946,-1.3494606,-1.4154437,-1.4613185,-1.4831965,-1.4977922,-1.5166588,-1.5238914,-1.5406876,-1.506927,-1.5341191,-0.5441557,-1.0100541,-1.2843893,-1.0262055,-1.2224684,-0.7516974,-0.6716188,-1.1150973,-1.3154479,-1.4001508,-1.4379134,-1.4300376,-1.3734064,-1.3973407,-1.4601966,-1.4845128,-1.4983237,-1.512574,-1.5248597,-1.5341722,-1.5168521,-1.5254366,-1.0494385,-1.2118323,-1.3881521,-1.4638722,-1.475945,-1.4973896,-1.5175817,-1.5219629,-1.5113451,-1.3244851,-1.4651358,-1.5291095,-1.54318,-1.549544,-1.5530049,-1.5542092,-1.5675118,-1.5697019,-1.5711749,-1.5799811,-1.5733573,-1.57676,-1.584167,-1.583492,-1.5788407,-1.0768814,-1.3312657,-1.4598348,-1.5206746,-1.5409436,-1.5361817,-1.5494195,-1.5591092,-1.5722313,-1.5764453,-1.5801628,-1.573242,-1.5749867,-1.5780171,-1.5791001,-1.5806108,-1.5795218,-1.5826013,-1.3774936,-1.3280555,-0.7989801,-0.7417045,-1.195449,-1.3619947,-1.4182159,-1.443193,-1.4597607,-1.4737262,-1.4809242,-1.4819591,-1.4902494,-1.509734,-1.5212929,-1.5252609,-1.5308735,-1.5378933,-1.5442712,-1.5433501,-1.5435007,-1.547424,-1.5489833,-1.5527452,-1.5568674,-1.5589813,-1.5552241,-1.5431863,-1.544086,-1.263291,-1.2081059,-1.0954087,-1.2734525,-1.3933212,-1.2005386,-1.1852605,-0.9590007,-0.9363611,-1.2666051,-1.3656943,-1.4079704,-1.4325292,-1.4400209,-1.4519024,-1.4518621,-1.4587353,-1.4722025,-1.47718,-1.4893222,-1.4982462,-1.5017021,-1.4964675,-1.5044428,-1.5008389,-1.4921565,-1.174186,-1.3218055,-1.4401345,-1.4483767,-0.2779085,-0.90300006,-1.2301586,-1.3363712,-1.3701382,-1.3939221,-1.4081671,-1.42734,-1.4353656,-1.4400201,-1.4482266,-1.4648498,-1.4585575,-1.456883,-1.4672704,-1.4764653,-1.4725325,-1.471885,-1.4618926,-1.4782935,-1.4813263,-1.4824605,-1.4877604,-1.5093076,-1.4905574,-1.4286196,-1.4694246,-1.5005136,-1.5076888,-1.5063384,-1.5121517,-1.5137817,-1.497586,-1.484582,-1.4936373,-1.5073521,-1.5199611,-1.5271345,-1.5369873,-1.537134,-1.5426614,-1.5483321,-1.5513837,-1.5487142,-1.5550268,-1.5600764,-1.5531521,-1.5542694,-1.5658352,-1.5544783,-1.526603,-1.5136251,-1.5037289,-1.5293071,-1.5508176,-1.5594149,-1.5653627,-1.5678424,-0.35016042,-0.49160117,-0.89581174,-0.9364402,-0.83107764,-1.0077541,-1.101604,-1.1302838,-1.2003217,-1.275739,-1.3350968,-1.3638722,-1.367023,-1.3821062,-1.3925846,-1.4028082,-1.4059268,-1.4094559,-1.415605,-1.4190228,-1.415391,-1.4252357,-1.4341216,-1.4454035,-1.4391677,-1.4525232,-1.4562619,-1.4702642,-1.3905197,-1.4141529,-1.4538277,-1.4607037,-1.474314,-1.4763694,-1.0353949,-1.0756811,-1.2138883,-1.2901211,-1.3281726,-1.3655287,-1.3848804,-1.4162564,-1.4234654,-1.4262509,-1.4239025,-1.4316679,-1.4264176,-1.4098341,-1.4107488,-1.4069186,-1.4200559,-1.413454,-1.4184601,0.33156243,-0.39974195,-0.74954855,-0.90850055,-0.99221253,-1.0105162,0.027690172,-0.12530118,0.5437776,-0.10556271,-0.44372255,-0.57069445,-0.66581404,-0.7401756,-0.7536303,-0.72796345,-0.73869264,-0.8778472,-0.9265437,-0.92704844,-0.900877,-1.0042106,-0.84206855,-0.2424013,0.22917646,-0.25744835,-0.3898634,0.16917397,0.7081654,0.1285094,-0.24451697,-0.49983823,-0.6872425,-0.7728397,0.33113253,0.47356486,0.43243194,0.58299774,0.82560986,0.36233175,-0.26114392,-0.50129914,-0.620798,-0.7090139,-0.74563557,-0.7993289,-0.8597768,-0.91738594,-0.9712982,-1.0051749,-1.027304,-1.0603398,-0.9169364,-0.9319732,-1.015759,-1.0842533,-1.118788,-0.40900898,0.050204143,-0.5080483,-0.7989279,-0.96373045,-1.0346955,-0.38832945,0.7980053,0.7152096,0.18196335,-0.12862757,-0.4022242,-0.5959066,-0.84744966,-0.95915306,-1.028285,-1.0610995,-1.110571,-1.2172105,-1.2693957,-1.299578,-1.3332391,-1.346874,-1.2689936,-1.3678042,-1.4111233,-1.4414326,-1.4596696,-1.4762015,-1.4789186,-1.4807538,-1.4863582,-1.5021247,-1.4909145,-1.4985068,-1.509617,-1.5148232,-1.5121791,-1.4938211,-1.4626902,-1.4707427,-1.5128056,-1.442755,-1.4940132,-1.5098035,-1.5190938,-1.5455712,-1.388902,-1.4026637
+-1.6281016,-1.6230192,-1.6503233,-1.6640413,-1.6626252,-1.6587751,-1.6740279,-1.1369268,-1.0408608,-1.056435,-1.1434183,-1.1310891,-1.4072487,-1.5220711,-1.5586257,-1.5882196,-1.6189942,-1.6326534,-1.6380382,-1.6444356,-1.6402586,-1.6473609,-1.6210344,-1.6404887,-1.6271663,-1.6250345,-1.6462597,-1.6199957,-1.6289245,-1.6077256,-1.6077621,-1.6354929,-1.6436372,-1.6548864,-1.6508932,-1.5819187,-1.5573431,-1.6093066,-1.6308606,-1.6324843,-1.63822,-1.6534076,-1.6586084,-1.6599857,-1.6418505,-1.6411467,-1.648068,-1.6312248,-1.6512603,-1.6570854,-1.6584383,-1.6519144,-1.6667335,-1.6607978,-1.6319486,-1.4896361,-1.6175952,-1.6568077,-1.6576409,-1.6635382,-1.6699103,-1.673587,-1.6805071,-1.6794767,-1.6849668,-1.6853294,-1.6782012,-1.6743529,-1.6687735,-1.6560819,-1.6441993,-1.6240866,-1.6275641,-1.6421976,-1.6556293,-1.656534,-1.6516376,-1.6609358,-1.6668159,-1.6850883,-1.6791764,-1.6946632,-1.6790237,-1.6698731,-1.6748265,-1.6648934,-1.6562209,-1.6465564,-1.6592398,-1.6423073,-1.6283658,-1.5640655,-1.6019397,-1.6375446,-1.6431872,-1.6556187,-1.6518577,-1.6518209,-1.6516123,-1.6530008,-1.6515595,-1.647874,-1.6551852,-1.6551136,-1.6540484,-1.6673658,-1.6729686,-1.6736912,-1.661656,-1.6459441,-1.6492393,-1.6478598,-1.6626054,-1.6628215,-1.6509423,-1.6436918,-1.627794,-1.6310472,-1.6399107,-1.6368642,-1.6090417,-1.5733714,-1.5561585,-1.5724651,-1.5910418,-1.5883461,-1.5988082,-1.6261953,-1.6300907,-1.6399217,-1.6394389,-1.6206725,-1.620714,-1.5934713,-1.6099008,-1.6266446,-1.6396704,-1.6611214,-1.6613971,-1.6555647,-1.6354688,-1.648521,-1.6334561,-1.6270723,-1.6149457,-1.6399677,-1.6375751,-1.6349444,-1.613644,-1.6126688,-1.6241608,-1.638509,-1.6376106,-1.6321363,-1.6227117,-1.6461797,-1.6445198,-1.6393412,-1.637923,-1.6152474,-1.6029308,-1.6077526,-1.6333094,-1.638636,-1.6390815,-1.6282711,-1.6180067,-1.6386764,-1.6398982,-1.640769,-1.6424608,-1.6549358,-1.5695919,-0.87938976,-1.1372304,-1.4941905,-1.5813056,-1.6038992,-1.6165761,-1.5990939,-1.58092,-1.590086,-1.5855579,-1.59142,-1.6047829,-1.6178768,-1.6206125,-1.6261791,-1.6304145,-1.6334398,-1.637481,-1.6380973,-1.6220385,-1.6323525,-1.6338048,-1.6365439,-1.6403558,-1.6404989,-1.5892268,-1.5735571,-1.5876317,-1.6130482,-1.6314061,-1.642083,-1.644762,-1.6468596,-1.0782323,-0.8786785,-1.195109,-1.397798,-1.4543219,-1.3947815,-1.4334085,-1.4287531,-1.51355,-1.5290277,-1.5534774,-1.5622922,-1.5509288,-1.5782205,-1.5895557,-1.5852478,-1.5935475,-1.596973,-1.5977584,-1.5916624,-1.5867393,-1.5849402,-1.6069392,-1.6106901,-1.5807306,-1.5920823,-1.606997,-1.6319815,-1.5186342,-1.5472598,-1.5879138,-1.5917056,-1.5981028,-1.5994163,-1.5223677,-1.5334513,-1.5774024,-1.594809,-1.6048343,-1.6021218,-1.5969958,-1.620191,-1.6313413,-1.6289537,-1.6144105,-1.6135231,-1.6186215,-1.6018267,-1.585314,-1.5869534,-1.6064296,-1.5998785,-1.5932661,-1.4946069,-1.5570683,-1.59098,-1.5865966,-1.6041126,-1.3713367,0.46773803,-0.06741666,-0.08847269,-0.55411226,-0.8777797,-1.0208249,-1.139195,-1.1961586,-1.2159373,-1.2142655,-0.46864414,-0.69371116,-0.93213737,-1.0750232,-1.0963237,-1.169499,-1.267182,-1.3037487,-1.1522882,-1.2387788,-1.3032033,-1.2881248,-0.42710066,-0.3038829,-0.7696267,-1.0085204,-1.1607414,-1.2437967,-0.84148484,-0.10759366,0.06382212,-0.024810232,0.15591809,-0.44605553,-0.7432822,-0.91261005,-1.0233992,-1.1159225,-1.1802006,-1.2305493,-1.2677612,-1.3044287,-1.3334402,-1.3562605,-1.346734,-1.3726879,-1.3820338,-1.376178,-1.3903053,-1.4218209,-1.4453928,-1.4221523,-1.2081372,-1.3458072,-1.4640994,-1.5217371,-1.5473133,-1.5068282,-0.7194542,-0.5300468,-1.005728,-1.2286965,-1.3752465,-1.4350841,-1.4697089,-1.4838932,-1.4865044,-1.4553624,-1.1098912,-1.3667976,-1.4732442,-1.5311992,-1.5619693,-1.5780914,-1.5566361,-1.5893259,-1.6095756,-1.6177074,-1.6267502,-1.6310799,-1.6206207,-1.6279614,-1.6398554,-1.6439306,-1.6373079,-1.6454092,-1.64586,-1.649643,-1.6473719,-1.6240733,-1.5787878,-1.6058836,-1.6441226,-1.6444548,-1.6314287,-1.6358593,-1.6377709,-1.6595501,-1.6720898,-1.6254485
+1.561018,1.69629,1.7021047,1.6883967,1.6844158,1.6826355,1.7095271,2.0948708,1.9116615,1.8798031,1.8119345,1.8218365,1.8104086,1.792538,1.7764785,1.7437825,1.7285638,1.6905506,1.6738465,1.6551987,1.6467254,1.6589093,1.7357585,1.7370229,1.7366726,1.741857,1.7362528,1.7605221,1.7702187,1.7718962,1.7779315,1.7911726,1.7792504,1.7582501,1.7722536,1.7800817,1.7762246,1.7867829,1.8031752,1.7994074,1.7979207,1.7728117,1.7598203,1.7635299,1.7688992,1.7763163,1.7761359,1.7714286,1.7760721,1.7602153,1.7398264,1.7408967,1.7367476,1.7384257,1.7566891,1.7592041,1.7647545,1.7597609,1.7725933,1.7714416,1.7651862,1.7746849,1.7655689,1.6781992,1.6258371,1.6052951,1.6325526,1.6654327,1.7155163,1.7502489,1.7721329,1.7772655,1.7693805,1.7391683,1.7197142,1.7019427,1.6902044,1.6910236,1.6633315,1.5852554,1.596337,1.6703216,1.6886209,1.6734744,1.6565955,1.670762,1.7120264,1.7159894,1.6619362,1.6983175,1.7525603,1.7650572,1.770812,1.7384024,1.7001898,1.6319139,1.6462966,1.672682,1.7018483,1.6954333,1.6594533,1.6513481,1.6204871,1.6666121,1.6751072,1.6345797,1.6653693,1.6843163,1.7142172,1.7234147,1.7225752,1.7046895,1.6610663,1.6683937,1.7376356,1.7358341,1.7301222,1.7253184,1.7115712,1.7436652,1.7697923,1.7962217,1.7918116,1.785128,1.783702,1.7765379,1.7651162,1.7576593,1.7475733,1.740908,1.7570772,1.7853563,1.78014,1.7884946,1.7788093,1.7634164,1.7599112,1.7211285,1.691679,1.7451439,1.7193608,1.7217205,1.7677354,1.7558279,1.734578,1.7432861,1.7571211,1.7632254,1.7620524,1.764516,1.7490638,1.7233123,1.718728,1.7669144,1.7804484,1.7278427,1.660689,1.6778979,1.6864045,1.7798877,1.7909212,1.7817209,1.7484951,1.7418709,1.722371,1.7429678,1.7515771,1.6721549,1.6057322,1.6931549,1.7128744,1.7497838,1.8925607,2.1604245,1.963386,1.8067524,1.7614036,1.7476681,1.7514971,1.8005633,1.8157167,1.8241385,1.8339334,1.8326235,1.829602,1.742274,1.7619214,1.7639662,1.7350509,1.6807983,1.6471016,1.760743,1.8210695,1.8307468,1.8048794,1.7338566,1.7407742,1.7387704,1.8117263,1.8375257,1.8342379,1.8038318,1.703523,1.6538715,1.6989676,1.6765676,1.7868191,2.0636091,1.8806249,1.8645036,1.8605523,1.876251,1.8790381,1.8792838,1.7919316,1.7813962,1.7346978,1.7557096,1.8037381,1.7999495,1.8015199,1.7940748,1.7704802,1.7206243,1.7086817,1.729481,1.761073,1.7417345,1.7030748,1.6999213,1.6229256,1.5580161,1.5193605,1.5381327,1.7793088,1.7417789,1.7097132,1.6485965,1.5503945,1.5337342,1.7187352,1.671742,1.6869745,1.5588853,1.5407465,1.5769546,1.558188,1.533885,1.5377622,1.5825248,1.63212,1.6068339,1.618192,1.66447,1.6990942,1.7487886,1.7770337,1.7974854,1.786967,1.7990854,1.7603877,1.5382365,1.5143807,1.5266483,1.6178594,2.8879018,2.7407353,2.6291971,2.3109844,2.2221763,2.1536317,2.0270343,1.919049,1.8926582,1.9802675,2.3580408,2.1436903,2.0900128,2.0465343,2.0565476,2.0464044,1.9111607,1.9026024,1.936911,1.9731399,1.9705617,1.977404,2.6014197,2.6370842,2.325928,2.242714,2.1533723,2.061389,2.2254162,2.3464823,2.8442078,2.3650374,2.6658554,2.3378956,2.2903912,2.2413125,2.1305425,2.0054486,1.9443223,1.9087982,1.8900654,1.8710748,1.8586609,1.9251528,1.9934134,1.9676254,1.9686182,2.051943,2.0793834,2.0781538,2.076153,2.0902817,2.0633857,2.0554326,2.022549,1.9785986,1.9674501,1.9639251,2.4373121,2.3384585,2.214181,2.166645,2.1067817,2.0475376,1.9825202,1.9029766,1.8777775,2.3526454,2.8212953,2.3414903,2.1848757,2.0774055,2.0119705,2.0274565,2.014617,1.9337816,1.9053755,1.941963,1.962782,1.9560227,1.9824394,1.9954305,1.9816831,1.9707702,1.9923223,1.9847332,1.9887022,1.9513779,1.9696387,1.9926193,2.033034,1.9991859,1.9732977,1.9679734,1.9994693,1.9911677,1.9859982,1.9381868,1.9296774,1.9629891
+-1.5619663,-1.6732769,-1.6169842,-1.6693902,-1.660829,-1.6467855,-1.223271,-0.18038082,-0.5551089,-0.30560336,-0.5052175,-0.6181667,-0.97780466,-1.3069513,-1.5036793,-1.6480296,-1.697095,-1.6806297,-1.6761212,-1.6903232,-1.6830964,-1.709215,-1.7012817,-1.7227002,-1.7471445,-1.7624799,-1.7833178,-1.7403188,-1.7620561,-1.7837512,-1.7593169,-1.7477148,-1.7519376,-1.7598103,-1.7495258,-1.2432438,-1.1995801,-1.4490442,-1.6383395,-1.7096146,-1.7336118,-1.7556769,-1.7632811,-1.7541924,-1.7298427,-1.7580411,-1.745527,-1.7405698,-1.7552042,-1.7732425,-1.7988044,-1.803144,-1.8220427,-1.827882,-1.8240488,-1.8198189,-1.8099993,-1.7957428,-1.765975,-1.7594723,-1.7687473,-1.7539878,-1.7154462,-1.6995523,-1.7006502,-1.7021027,-1.7121588,-1.7122527,-1.6854439,-1.6549462,-1.6661954,-1.6556098,-1.6766894,-1.7229388,-1.7256343,-1.7408365,-1.7445587,-1.7298708,-1.702508,-1.625013,-1.5706869,-1.5066166,-1.5783076,-1.630054,-1.6376823,-1.6362405,-1.6072785,-1.5765367,-1.610317,-1.6035349,-1.6009182,-1.5633734,-1.5984199,-1.6249229,-1.6321316,-1.6417733,-1.6571869,-1.6486509,-1.6361302,-1.6391121,-1.6357696,-1.6446321,-1.6496365,-1.6409024,-1.6222912,-1.5945237,-1.5802137,-1.5904417,-1.6025267,-1.5949587,-1.5848764,-1.577604,-1.5856109,-1.5813639,-1.5718977,-1.5754609,-1.5544446,-1.5538297,-1.5557127,-1.5458758,-1.5252962,-1.3100306,-1.2193923,-1.3305709,-1.4490911,-1.5263158,-1.5499165,-1.5781846,-1.578602,-1.5809472,-1.5954123,-1.6092795,-1.5965341,-1.5064054,-1.4813163,-1.4950981,-1.5033485,-1.5413182,-1.5447493,-1.5377681,-1.5558231,-1.5787283,-1.5674804,-1.5647634,-1.5810174,-1.5698051,-1.5585719,-1.5558552,-1.561041,-1.5497715,-1.5531273,-1.5464759,-1.5372362,-1.5131607,-1.539058,-1.5725195,-1.60618,-1.6185076,-1.6073226,-1.5546187,-1.4851362,-1.5530403,-1.5715523,-1.5682412,-1.5842624,-1.6028712,-1.598804,-1.6044308,-1.5917497,-1.5617263,-1.5301974,-1.4734491,-0.5639175,-0.28052396,-0.37738988,-0.74517673,-1.1377466,-1.3414735,-1.3682618,-1.3545729,-1.4078422,-1.4008608,-1.399981,-1.3955408,-1.4237188,-1.48133,-1.5140946,-1.5131559,-1.4958646,-1.5047358,-1.5051688,-1.4734493,-1.486097,-1.5010343,-1.5146767,-1.4764833,-1.4872445,-1.4899528,-1.4800911,-1.425734,-1.458493,-1.4662504,-1.4852455,-1.4396104,-1.4917048,-1.4976177,-1.5015762,-1.3121983,-1.3157,-1.3813548,-1.4516969,-1.4244909,-1.3580449,-1.2774255,-1.3743691,-1.4427083,-1.4686407,-1.4840425,-1.4716468,-1.4450172,-1.4301412,-1.4477375,-1.448251,-1.4508374,-1.459918,-1.4534398,-1.4741069,-1.4378724,-1.4775294,-1.48294,-1.4302448,-1.4861097,-1.4800937,-1.5033706,-0.7769344,-0.88645,-1.108347,-1.2649603,-1.3407342,-1.3881202,-0.9240848,-0.67452717,-0.86904025,-1.1492912,-1.210398,-1.185832,-1.2739589,-1.3195847,-1.3484001,-1.3758054,-1.3759811,-1.3702307,-1.3891374,-1.3672762,-1.3548888,-1.3439353,-1.3452718,-1.3664886,-1.4315143,-0.3783867,-0.33944297,-1.0496094,-1.1053472,-1.0468713,-1.0730877,0.32669267,-0.1094561,0.03445775,-0.31798583,-0.6566016,-0.49802923,-0.58927304,-0.7084429,-0.6130539,-0.35939375,-0.16933858,-0.32920414,-0.341444,-0.46284097,-0.6007479,-0.6389229,-0.588729,-0.669487,-0.79408205,-0.81504774,-0.84358513,-0.6350335,-0.13611257,-0.16908652,-0.430395,-0.6089142,-0.75484836,-0.8461195,-0.38304734,-0.15390229,-0.010580428,-0.08989041,-0.022309624,-0.4201916,-0.6509123,-0.83359355,-0.87755,-0.96346414,-0.9762764,-1.0363569,-1.065056,-1.075027,-1.1089141,-1.0970252,-1.0979161,-1.1674426,-1.1515986,-0.8704238,-0.7878963,-0.96373916,-1.0614163,-1.0919895,-0.9729507,-0.9873065,-1.1027822,-1.1544533,-1.2396005,-1.4150562,-0.0093617365,-0.23190713,-0.40043008,-0.6074841,-0.7529039,-1.009759,-1.2214209,-1.2422146,-0.94152427,-0.22219789,-0.02903562,-0.45426184,-0.81872284,-1.0084558,-1.041176,-1.1475086,-1.273279,-1.3513322,-1.3563857,-1.39901,-1.4456373,-1.5120996,-1.5270286,-1.5431777,-1.567081,-1.5941491,-1.5756873,-1.5772228,-1.5949911,-1.6331506,-1.6350665,-1.5756176,-1.3720547,-1.0331086,-1.465246,-1.5937445,-1.6161163,-1.6845366,-1.718759,-1.7182444,-1.7382838,-1.7057698
+2.0142756,2.2628803,2.2759016,2.2777123,2.26298,2.2356071,2.4343162,2.4570398,2.4226048,2.5407572,2.3858635,2.3218656,2.283635,2.2569547,2.2185366,2.2136269,2.1732452,2.1812692,2.1848147,2.2075977,2.2376432,2.2607892,2.241601,2.247634,2.2249913,2.2049596,2.2120585,2.1720746,2.2166498,2.2010665,2.2376442,2.2489269,2.267183,2.2817683,2.268192,2.3284752,2.2482715,2.214202,2.2592041,2.25837,2.2784882,2.2942243,2.3148952,2.3097913,2.296093,2.267834,2.2831879,2.2974534,2.3084192,2.3231416,2.269765,2.255334,2.2581105,2.2534492,2.2521973,2.24837,2.2707915,2.2998729,2.3009796,2.3020697,2.3099322,2.3196113,2.3431687,2.3501456,2.3473015,2.3396797,2.332536,2.334327,2.3474388,2.3841298,2.4068942,2.4187827,2.4054866,2.3646235,2.3347473,2.3258867,2.301837,2.3164773,2.3324203,2.3377135,2.3433757,2.4162889,2.425098,2.4153662,2.3963468,2.3941302,2.393778,2.4090464,2.4017463,2.3848834,2.4097443,2.4098237,2.431159,2.4343953,2.3977404,2.3757904,2.3693175,2.3708239,2.3774815,2.3867228,2.3940442,2.3985648,2.402272,2.4001222,2.3879313,2.3917007,2.3903587,2.397049,2.39257,2.3893104,2.3927116,2.4012039,2.4067552,2.428018,2.4420059,2.439978,2.4244552,2.4132292,2.4042745,2.4100828,2.418978,2.436757,2.43127,2.4254599,2.417742,2.4140835,2.4188976,2.4172642,2.4244561,2.444518,2.45128,2.4382393,2.4345143,2.417059,2.4241855,2.4312246,2.440718,2.4432507,2.431919,2.4256334,2.4176302,2.412371,2.4176068,2.4208815,2.4223945,2.4182296,2.424313,2.4344802,2.4255884,2.4205208,2.429284,2.438321,2.4397671,2.4402845,2.4346266,2.4330149,2.4142818,2.3963583,2.3872452,2.4078383,2.4218476,2.4006205,2.3910978,2.4089358,2.409224,2.4216774,2.3977242,2.386979,2.3881187,2.3845282,2.39214,2.487121,2.563655,2.562074,2.4453726,2.4402227,2.415734,2.4095917,2.3843377,2.4209018,2.4436142,2.4380503,2.4183555,2.4368234,2.4505856,2.4030423,2.3788137,2.3889303,2.3812275,2.3739908,2.3786001,2.4148054,2.414908,2.4177372,2.4065378,2.396685,2.4031968,2.4125419,2.4300866,2.4302473,2.4265695,2.4256172,2.3785286,2.32334,2.3642814,2.4010024,2.4546824,2.4540625,2.437871,2.4345026,2.4269347,2.4285405,2.4496248,2.4399147,2.4037657,2.3695917,2.355879,2.3620472,2.360985,2.3630478,2.3610134,2.326543,2.3269153,2.3264983,2.3333569,2.3029509,2.2635875,2.2581131,2.2472394,2.3005276,2.2992556,2.2803063,2.2667413,2.3486524,2.3461027,2.2873194,2.2929947,2.259552,2.2609544,2.269264,2.2247257,2.2378073,2.2516575,2.226798,2.2084975,2.1865463,2.1698775,2.192698,2.245631,2.2461467,2.1933749,2.2027447,2.2339134,2.273333,2.30138,2.3058143,2.2916331,2.2845151,2.277715,2.451175,2.4703226,2.2762852,2.176728,2.1767073,2.2470534,2.7309566,2.4700615,2.6744838,2.4767299,2.3894005,2.2973485,2.3002043,2.3301075,2.5273454,2.4304338,2.644859,2.477161,2.4038692,2.3627982,2.425323,2.404796,2.3775334,2.3577874,2.3792245,2.3848152,2.3599677,2.4703474,2.577928,2.5377414,2.413966,2.3610926,2.3366573,2.3248863,2.408095,2.6160927,2.5636768,2.4377537,2.5408397,2.4893746,2.3039258,2.2507336,2.2170486,2.203339,2.2153413,2.243482,2.2458885,2.271707,2.2816865,2.2649195,2.2892506,2.2969794,2.2852945,2.3639438,2.3794165,2.3776577,2.385353,2.3998733,2.3691025,2.5251923,2.4161706,2.3610427,2.3437147,2.4169567,2.6974726,2.4387567,2.3885953,2.3986144,2.3530169,2.2583418,2.2329507,2.2535076,2.4310608,2.5637336,2.5797849,2.4025602,2.2984338,2.2384987,2.2663674,2.2751498,2.2246037,2.213879,2.2420669,2.2531743,2.270805,2.28966,2.3033352,2.2894337,2.2734847,2.2773476,2.2961404,2.31069,2.3262727,2.3156705,2.321408,2.3203492,2.3503711,2.324574,2.3107898,2.278473,2.3024929,2.286114,2.3006315,2.3022418,2.3008063,2.3012304
+0.48095644,0.6032858,0.5441151,0.40071875,0.23625329,0.2807708,0.39140525,0.49035177,0.5934247,0.36849755,0.30749604,0.3498548,0.30240187,0.10171779,-0.023104385,0.18882066,0.29098833,0.30085552,0.33048895,0.34021178,0.25746936,0.16457,0.34716228,0.51545733,0.48043728,0.5307565,0.42003703,0.3037414,0.26374868,0.3478662,0.41499138,0.44419965,0.4270203,0.35278153,0.23665664,0.37217364,0.13070637,0.07983438,0.44392627,0.33281007,0.23964122,0.57185197,0.24460739,0.18405339,0.16088954,0.22118941,0.26019523,0.2730582,0.31698108,0.38286152,0.66700035,0.9712697,0.89757574,0.7984161,0.8130133,0.69172573,0.5710213,0.4837343,0.44144648,0.44932812,0.44245285,0.36671206,0.37229663,0.42020947,0.32694718,0.2925441,0.16166742,0.10996083,0.028953813,0.05605904,0.20126852,0.43876117,0.26075992,0.13475606,0.12656793,0.029752858,0.029795863,0.0077662393,0.028172947,0.5582753,0.276473,0.15941477,0.19612725,0.08038325,0.5186819,0.75113505,0.4494301,0.3530753,0.2109198,0.18160123,0.09040823,0.014549337,-0.038032256,-0.08384266,-0.05370111,0.056545086,0.36908156,0.32351527,0.2024154,0.44746333,0.37979773,0.40777215,0.47807774,0.57013315,0.5057728,0.5366994,0.8078649,0.6949053,0.56896174,0.4874723,0.2977748,0.1744388,0.14386156,0.35027662,0.23936957,0.1837669,0.2632062,0.54207057,0.67016244,0.52291006,0.4337657,0.38274518,0.24244153,0.019644924,0.23249513,0.2925942,0.16191742,0.22384927,0.79045093,0.8011456,0.713294,0.8526752,0.8557722,0.71704996,0.57760036,0.47222936,0.47025648,0.38774145,0.3672382,0.486772,0.6556791,0.4269612,0.3126899,0.24091658,0.40892136,0.5106543,0.4212253,0.45530725,0.3734432,0.32854867,0.19614536,0.12348505,0.066774376,0.0746363,0.22312549,0.34058127,0.19923466,0.0828683,0.20242622,0.5761591,0.77648556,0.7331512,0.6282823,0.76043224,0.9434263,0.6474243,0.5409826,0.47448802,0.46942353,0.55347455,1.020454,0.88097167,0.7729409,0.639663,0.6584349,0.98162293,0.96067286,0.8491918,0.7448383,0.6454314,0.67014104,0.5928145,0.5593779,0.71871483,0.98150575,0.68095136,0.61882776,0.7866452,0.63322484,0.46474218,0.6986254,1.139318,0.577941,0.10981276,0.06654332,0.24932149,0.8191539,0.7639732,0.65757656,0.54694563,0.61780703,0.53532195,0.3423244,0.4212163,0.33967626,0.0900551,0.3743161,0.34411305,0.36235487,0.5391999,0.76854837,0.41061777,0.50478095,0.40381867,0.5928321,0.53561753,0.5590035,0.64465964,0.7173716,0.74529403,0.6275579,0.6763464,0.7582252,0.76470804,0.7252927,0.83679354,0.8836411,0.8686035,0.5507732,0.26433325,-0.11279961,-0.28754765,-0.26089352,0.0049266443,0.1578441,-0.035071738,-0.10980844,-0.056144364,0.019200854,0.023462854,-0.029206775,-0.10225888,-0.15750533,-0.23551905,-0.1295012,-0.16728398,-0.121029,-0.1532318,-0.11504837,0.26007116,0.32938075,0.45305988,0.5497645,0.35670573,0.3530354,0.41979286,0.41456166,0.39922485,0.42926863,0.4730843,0.37133914,0.23808387,0.08033345,0.08701361,0.104197346,-0.015901826,-0.06506673,-0.090677194,0.052105166,0.0514056,-0.004029013,0.01214423,-0.03347086,-0.028158687,-0.023820765,-0.06056138,0.23110369,0.38755387,0.48876852,0.36032355,0.19617033,0.29175174,0.27215236,0.19057947,0.3402876,0.40834343,0.35709798,0.22012714,0.05986292,-0.0019335076,-0.048867576,0.086800076,0.20879614,0.34725437,0.14352566,0.046155654,0.04070849,0.010877289,-0.019655935,-0.027979232,0.0041713193,-0.060579233,-0.013690166,-0.036119036,-0.118337564,-0.18952441,-0.18590215,-0.009092964,-0.038963713,-0.0616043,0.07795828,0.42184883,0.3709125,0.37722635,0.23174253,0.37049353,0.0594854,-0.07296833,0.022887595,0.16350389,0.21843252,0.59892595,0.34262013,0.16404814,0.2561931,0.08578157,0.1866293,0.10143433,-0.020145245,-0.08009184,-0.16589755,-0.1630063,-0.12760839,-0.10261092,-0.11690877,-0.03799724,0.083999924,0.067855544,-0.05650177,-0.098640986,-0.034735,-0.09063438,-0.035460673,-0.029553168,0.096865065,0.12486858,0.24232742,0.36652118,0.6857846,0.4417573,0.04607428,0.6495777,0.11386076,-0.007847242,0.09285053,0.42583865,0.26288506,0.10095892,0.18972966,-0.053920962,0.23629406,0.15186647,0.26734272,0.3752815,0.1832135
+1.3613535,1.5977607,1.4966277,1.378917,1.7491629,1.570667,1.4418304,1.3025446,1.2598435,1.178097,1.0686533,0.9966111,1.2922875,1.7539692,2.1948593,1.87778,1.709122,1.5759876,1.4739414,1.3662777,1.3454276,1.2301152,1.6211703,2.242476,2.0386827,2.259326,2.201748,1.9907898,1.7039957,1.5488658,1.5428363,1.5538288,1.4549909,1.3508453,1.2213643,1.3971494,1.3684397,1.1790602,2.1243603,1.9543025,1.5290134,1.4854872,1.9438365,1.7456219,1.4698911,1.3628309,1.3680054,1.336427,1.800694,2.1637514,2.115112,2.6142948,2.6908329,2.6982734,2.477702,2.4149482,2.350049,2.3082764,2.178003,2.188813,1.9990662,1.7886001,1.6443712,1.645306,1.5702803,1.3405466,1.2584969,1.142006,1.1088581,1.3259256,1.2656116,1.0788683,1.1677663,1.0471479,1.4403193,1.7111356,1.9788351,1.9895612,1.5807722,1.685627,1.5101414,1.480633,1.5292478,1.25258,1.8122375,2.2489789,1.8708758,1.592464,1.3780465,1.2743716,1.1231886,1.0837477,0.98807037,0.90654975,0.9619684,0.9200286,1.256757,1.2258575,0.96983767,0.91191006,0.8885726,1.9115684,1.9445384,1.69641,1.4802349,1.27023,1.408429,1.6229894,1.3678705,1.1209509,1.0781488,1.0002124,0.88114744,0.8921592,0.8472547,0.77454007,0.7451654,0.7693783,0.7238153,0.71794194,0.69047576,0.8217256,0.8070818,0.70383716,0.7865948,0.81007737,0.70955133,0.57316905,0.67227864,0.7656125,0.8082198,1.4119039,1.3138115,1.0429599,0.88634855,0.7441865,0.6881882,0.6543722,0.6312101,0.6539709,1.003441,0.7871674,0.6412428,0.73135304,0.72255087,0.6114899,0.54990774,0.63288695,0.49570906,0.5556107,0.60372293,0.5204576,0.52093524,0.5885859,0.6540128,1.0259584,0.8220434,0.73628765,0.9720629,1.1560073,1.357866,1.38047,1.0467113,1.2790856,1.6768655,1.3108752,1.0347869,0.9589578,0.8722107,0.77372485,1.2107217,1.2839625,1.0507867,0.857024,1.2499115,1.256591,1.2170014,1.1367811,1.0128418,0.87534535,0.84959114,0.76434284,0.6940796,0.7397234,0.8250575,0.61867976,0.5015874,1.2700298,1.6487777,1.7440257,1.8212426,1.9090393,2.4904401,2.285366,1.5754769,1.6897027,1.9268525,2.0562596,2.1962395,2.2914104,2.2819476,2.3152568,2.1701221,2.2491512,2.4411318,2.258911,2.010576,1.9122121,2.0521662,2.041534,2.2636323,2.1467614,1.9568967,2.399783,2.2408695,2.0713744,1.9085944,1.8574653,1.7502668,1.6113172,1.4806718,1.3821357,1.3678759,1.3794589,1.3055496,1.2164594,1.2412157,1.4246879,2.045687,2.0123465,1.5934105,1.1324351,1.0518486,1.3309215,1.6572878,1.59171,1.1300826,1.1361965,1.1214,1.2153077,1.0255591,1.0060267,0.8735136,0.70666665,1.225627,1.0623243,1.1065772,1.1462269,1.10654,0.8038661,0.64671236,0.56923413,0.5230639,0.68112946,0.5988054,0.5737705,0.41443652,0.39967805,0.5002405,0.26459023,0.42056087,0.36748263,0.5958298,0.7610589,0.6508695,0.4380345,0.3698009,0.77550006,0.7224882,0.46104163,0.6563241,0.6820005,0.44416922,0.7760606,0.4569086,0.5959309,0.3243492,0.26216158,0.2885608,0.3619309,0.29053658,0.31648818,0.49970242,0.8817749,0.8513443,0.48838684,0.40794575,0.45866477,0.4177657,0.38154456,0.35339385,0.34573746,0.60429764,1.0282829,0.7010125,0.50771636,0.5498091,0.65474343,0.4068142,0.45248294,0.46444994,0.39338112,0.36630276,0.4306582,0.5225995,0.56774616,0.28968385,0.24855778,0.34704486,0.83192766,1.2620764,1.1544963,0.7163086,0.46388036,1.2443975,1.8767196,1.1110203,0.61490035,0.50604445,0.47427517,0.48524046,1.1920774,1.5136125,0.86238194,1.2119448,0.9197717,1.1696035,1.1496619,0.6770277,0.43988624,0.51872563,0.7200197,0.70408964,0.7188339,0.6273737,0.74001545,0.9171377,0.9615275,1.0424271,0.7386533,0.7213882,0.9256574,0.76991415,1.0572965,0.927976,1.2542888,1.0829039,1.3052433,1.4413738,1.4230602,0.7536094,1.1426448,1.1792607,0.85032356,0.9640783,1.1845846,1.2189084,0.72206944,1.1672848,0.91442347,1.3171682,1.3050034,1.2242123,1.3995649,1.1440922
+-0.66684806,-0.9754735,-1.18575,-1.2020386,-1.2809479,-1.4120262,-1.4629077,-1.4624624,-1.4646667,-1.4152112,-1.4190443,-1.4162865,-0.91538143,-0.17572281,-0.62688076,-1.0321698,-1.2435462,-1.3421805,-1.3821051,-1.4167875,-1.4207654,-1.4442556,-0.94668317,-0.67173994,-0.8649498,-0.9118209,-0.9879645,-0.98876166,-0.9813243,-0.9647212,-1.131205,-1.2756941,-1.3528131,-1.3594425,-1.3932381,-0.97265196,-0.2051808,-0.40610182,-0.92725027,-0.9992721,-1.1473395,-1.3157152,-1.385131,-1.4371362,-0.711861,-0.5771164,-0.96413493,-1.2396762,-0.9005655,-0.24483255,-0.063101046,-0.36192524,-0.6575746,-0.79048765,-0.82430416,-1.0897945,-1.1832995,-1.3734565,-1.4320551,-1.4621654,-1.5174335,-1.523618,-1.5220313,-1.494068,-1.4991131,-1.5007342,-1.4553266,-1.2579226,-1.3565127,-1.4187989,-1.4744506,-1.4891553,-1.5247898,-1.5406322,-1.4862958,-1.4251419,-1.3797059,-1.522468,-1.467608,-1.5776907,-1.5575573,-1.5590101,-1.5800428,-1.5838137,-1.6019826,-1.6413444,-1.6541024,-1.6046288,-1.6155034,-1.5750469,-1.5380099,-1.0619993,-1.4162277,-1.5000169,-1.5677636,-1.6130042,-1.5631912,-1.6064199,-1.5987368,-1.5928197,-1.3037488,-1.4199681,-1.5730048,-1.5995145,-1.6695733,-1.6474075,-1.6552954,-1.6559815,-1.6739552,-1.6766505,-1.6784304,-1.6656933,-1.6883655,-1.643658,-1.6713327,-1.693059,-1.6846716,-1.6403917,-1.6432551,-1.6544255,-1.6454647,-1.621079,-1.651945,-1.6669655,-1.6554654,-1.6749761,-1.6829835,-1.6076821,-1.6064925,-1.619961,-1.6119276,-1.5973167,-1.6495833,-1.6355329,-1.6704147,-1.637218,-1.6623768,-1.6419516,-1.6757495,-1.6238999,-1.5845215,-1.5954347,-1.6500051,-1.67106,-1.6976587,-1.6867929,-1.6483743,-1.6381692,-1.6415496,-1.6696073,-1.6384723,-1.6682899,-1.6545122,-1.5478995,-1.5768669,-1.5475199,-1.2519989,-0.79347223,-1.2274296,-1.3769748,-1.4931829,-1.6080302,-1.6394334,-1.6485028,-1.2907112,-1.0457909,0.35833287,-0.20919585,-0.69800705,-0.9917667,-1.0663692,-1.0869396,-1.2445242,-1.133769,0.46691716,0.57071,0.27838603,0.05908612,-0.22493663,-0.51767814,-0.7637162,-0.9355471,-1.0356694,-0.6485765,-0.3849011,-0.057900272,-0.28998137,-0.42687786,-0.5301693,-0.6460001,-0.7991135,-0.9656713,-1.0782359,-1.1290747,-1.2905495,-1.2716405,-0.9287847,-0.12972909,-0.03599993,0.38707253,0.09223575,-0.11141542,-0.23807597,-0.35231766,-0.4497934,-0.55859756,-0.58150995,-0.03278061,-0.10361197,-0.2647487,0.06111174,0.31265384,0.05515962,0.6250786,0.31850782,0.0156819,-0.17833713,-0.34920886,-0.42979574,-0.4536581,-0.5154264,-0.53162456,-0.5895311,-0.6513817,-0.70642656,-0.7381048,-0.7506498,-0.76666987,-0.7861268,-0.77404106,-1.1632998,-1.2142143,-1.0711912,-0.9575093,-0.77963364,-1.0686867,-0.931298,-1.1200018,-1.1376817,-1.0842395,-1.0178995,-0.86680496,-1.17453,-1.0150812,-0.95421135,-1.0450959,-0.92501163,-0.7184405,-0.9535035,-0.9202678,-1.0147276,-0.7887457,-0.5463318,0.10279391,-0.6299652,-0.6925345,-0.7954041,-0.6156415,-0.06961384,0.015201263,-0.7538666,-0.6439641,-0.5321018,-0.45373535,-0.6059185,-0.69020677,-0.6884637,-0.45305794,-0.7854197,-0.79519504,-0.7161015,-0.6837412,-0.70081127,-0.7034032,-0.7379113,-0.7171906,-0.6760528,-0.6875893,-0.66356415,-0.6970578,-0.6119621,-0.5722351,-0.39802423,0.27218506,-0.31874707,0.2818284,-0.63921964,-0.7550781,-0.81153524,-0.8119054,-0.8113855,-0.78264236,-0.7332047,-0.40013814,-0.5267066,-0.569551,-0.64862657,-0.528427,-0.7493298,-0.83992296,-0.7948264,-0.8433402,-0.82121795,-0.80464053,-0.83636445,-0.78872764,-0.59207076,-0.62847364,-0.47378218,-0.15542564,0.08771358,0.02371379,0.08086968,-0.09147825,0.5806055,0.47990158,-0.27323323,-0.8353424,-0.9051268,-0.8817312,-0.82262707,-0.58116984,-0.6697947,-0.14057922,0.070457466,0.09078915,0.29360548,-0.64791924,-0.6944576,-0.8714863,-1.0105357,-0.9464592,-0.8971967,-0.89970684,-0.8542296,-0.8662739,-0.7726413,-0.6010312,-0.51719713,-0.937225,-0.85405356,-0.53872603,-0.14031717,0.3161642,-0.21757722,-0.2590486,-0.38192558,-0.064641334,-0.14533386,-0.110573016,-0.4004848,-0.43045557,-0.40343484,-0.24825442,-0.20357183,-0.112938575,-0.52789485,-0.8581039,-0.6543963,-0.92913437,-0.69759923,-0.99064875,-0.9583566,-0.43146807,-0.5397997
+-0.5850028,-0.6749149,-0.6534764,-0.6714462,-0.87777925,-1.0102371,-1.0888757,-1.1713309,-1.173056,-0.9103024,-0.7492318,-0.7353666,-0.48376518,-0.08129177,-0.30281496,-0.63334775,-0.9414649,-1.1050607,-1.1816227,-1.2432258,-1.240941,-1.2677201,0.18401986,-0.023911633,0.31045526,0.27175882,0.027513407,0.15712434,0.017911203,0.04335528,-0.09267291,-0.30696774,-0.4306255,-0.5241613,-0.61965597,-0.6745132,-0.3703278,-0.40818018,-0.7161933,-0.9316499,-1.0639955,-1.1349711,-1.1372639,-1.2024957,-0.3404933,-0.29679957,-0.58981955,-0.8612176,-0.86862946,-0.08167111,-0.09672906,-0.4180957,-0.62026197,-0.71898186,-0.26351225,-0.47584838,-0.6141757,-0.82013977,-0.98727477,-1.0650963,-1.1832523,-1.2546829,-1.2944491,-1.2516848,-1.2900207,-1.3458834,-1.3564734,-0.9606749,-0.9849225,-1.1987312,-1.3003318,-1.3133681,-0.8781481,-0.8742882,-1.1393077,-1.2112032,-1.2419562,-1.3295496,-1.4676551,-1.3995494,-1.4909374,-1.4999223,-1.5468303,-1.5465462,-1.555342,-1.5779009,-1.6213093,-1.6137125,-1.6115749,-1.6126754,-1.0930142,-1.0444052,-1.1021935,-1.294261,-1.4109993,-1.5159259,-1.554896,-1.5561242,-1.5828087,-1.5640417,-1.5416282,-1.3195567,-1.5527315,-1.5927172,-1.6616657,-1.6581824,-1.6505919,-1.6462873,-1.6501173,-1.6370416,-1.6326483,-1.638313,-1.632415,-1.638567,-1.6747106,-1.6767246,-1.6686449,-1.6523063,-1.6451552,-1.6433568,-1.2294157,-0.9577563,-1.303112,-1.4964426,-1.5732567,-1.654367,-1.6387041,-1.5229516,-1.5532894,-1.5911925,-1.6279403,-1.624587,-1.6417297,-1.6489661,-1.660752,-1.6654785,-1.6562359,-1.6422857,-1.6372762,-1.6063404,-1.5910692,-1.6179248,-1.6455631,-1.6547363,-1.677686,-1.6915112,-1.6953437,-1.6798458,-1.6777253,-1.6785903,-1.672298,-1.6849864,-1.6655028,-1.6330433,-1.6045768,-1.5893662,-0.93837047,-0.42678612,-0.91066885,-1.1465831,-1.3373455,-1.5448253,-1.6262392,-1.640091,-1.5798448,-1.4494339,-1.2219838,-1.0741417,-1.3083261,-1.4599168,-1.5113928,-1.5294938,-1.5313716,-1.4604014,0.7188279,0.54019046,0.47829914,0.30108345,0.01727233,-0.00060435385,-0.26509893,-0.42579484,-0.35365137,-0.3477615,-0.45816773,-0.54845285,-0.7318133,-0.58519316,-0.5684495,-0.7244888,-0.8100106,-0.9172723,-0.99546885,-1.0426681,-1.1520705,-1.1041301,-0.9620788,-0.94688535,-0.6494282,0.5861081,0.17309505,-0.029514529,-0.27229002,-0.1855672,-0.14805216,-0.23754331,-0.2373232,0.00899405,0.13763879,0.009526052,0.16748919,0.42202246,0.26829258,0.56235975,0.3549775,0.03550449,-0.20593196,-0.23270512,-0.18555,-0.20440948,-0.26286426,-0.3092724,-0.34531367,-0.41457808,-0.4793967,-0.50166106,-0.5527396,-0.5722115,-0.6215414,-0.63937914,-0.95618224,-1.1410445,-1.0768392,-0.8961654,-0.51190245,-0.7838646,-0.82810414,-1.0346482,-1.0838017,-1.0603584,-0.82632005,-0.66390216,-1.0515978,-1.0235558,-0.9886172,-1.1315968,-1.0807631,-0.96668434,-0.9713118,-1.1748905,-1.227298,-1.1987327,-0.66492444,0.21430781,-0.29509994,-0.7311954,-0.77976096,-0.5175135,0.003710553,0.12932192,-0.8632637,-0.88514984,-0.8248619,-0.59900093,-0.39137435,-0.87929904,-0.8282169,-0.42161465,-0.75500846,-0.9249424,-0.83395165,-0.8051702,-0.9016661,-0.81833804,-0.8856916,-0.9692104,-0.79478633,-0.75455254,-0.40126747,-0.7822697,-0.86283207,-0.8057094,-0.33925843,0.24850577,-0.16055661,0.06671395,-0.6008044,-0.7550812,-0.87928957,-0.9261031,-0.96811664,-0.97977114,-0.91568184,-0.36754236,-0.76483077,-0.64823353,-0.77183497,-0.3508253,-0.6186898,-0.78841424,-0.7980096,-0.8974269,-0.94309855,-0.91433215,-0.89738584,-0.8588557,-0.64134085,-0.5877521,-0.27741843,-0.28970927,-0.2836639,-0.13350594,0.24556705,-0.20417449,0.32998633,0.5895663,-0.04656004,-0.71014893,-0.8095405,-0.75380176,-0.7598723,-0.62515557,-0.67594355,-0.10591745,0.1081982,0.062552854,0.31473455,-0.15257919,-0.44404787,-0.723583,-0.9133202,-0.94521916,-0.7862927,-0.93031836,-0.90094554,-0.8888438,-0.816949,-0.685668,-0.5528176,-0.8186406,-0.86094147,-0.4092508,-0.2820585,0.124107905,-0.01674226,0.05912883,-0.14901242,0.030289717,0.0806777,0.21642679,0.058003396,0.05028543,0.12745275,0.15845224,0.01930841,0.17401552,0.037148986,-0.6025777,-0.19441715,-0.5569997,-0.3255337,-0.57783043,-0.68854284,-0.14865753,-0.18065852
+-0.60887307,-0.71586764,-0.90972817,-1.0430012,-1.2861137,-1.4040802,-1.41833,-1.3978701,-1.2822084,-0.85528827,-0.47115052,-0.7234266,-0.6773589,-0.61528283,-0.5392183,-0.8410584,-1.090431,-1.2658706,-1.3434243,-1.4200176,-1.4497327,-1.4960942,-0.41403157,-0.68189687,0.46936777,0.41105843,0.25388044,0.5877362,0.4939428,0.5021358,0.24043652,0.060225092,-0.21297568,-0.52031845,-0.8492714,-0.9711046,0.11372376,0.40325204,0.2399717,-0.30558735,-0.6094798,-0.90372694,-1.2009166,-1.3392723,-1.3819926,-1.0216362,-0.52135,-0.76727444,-1.0611159,-0.33182058,-0.51208127,-0.8251558,-0.99235356,-0.52961284,-0.22854775,-0.14922148,-0.3761042,-0.63819486,-0.7770329,-0.98220146,-1.259465,-1.3877859,-1.4757503,-1.5025854,-1.4917796,-1.5178115,-1.3073057,-1.2267151,-1.3675048,-1.2801585,-1.4138021,-1.1060736,0.6042687,0.2069219,-0.3355814,-0.8087695,-1.0956756,-1.266228,-1.3953682,-1.4222803,-1.4507661,-1.4799435,-1.527416,-1.5163126,-1.5429351,-1.5541208,-1.5786943,-1.5622511,-1.5532013,-1.3210602,-1.0857129,-1.220971,-0.96165144,-1.1555176,-1.3741438,-1.4697186,-1.5016754,-1.515874,-1.527912,-1.5211926,-1.5112947,-1.5486736,-1.5916778,-1.564222,-1.5733094,-1.5731252,-1.5460513,-1.5533153,-1.567496,-1.5466791,-1.544909,-1.5599849,-1.5175323,-1.5602496,-1.5695018,-1.5628773,-1.5567874,-1.5564474,-1.545604,-1.5324286,-1.3405383,-0.9297662,-1.2732753,-1.4411957,-1.4541314,-1.5262988,-1.2440244,-0.71314424,-0.93461585,-1.3167617,-1.4615966,-1.4843248,-1.4844785,-1.4958563,-1.5255189,-1.5438975,-1.480494,-1.4674623,-1.4983643,-1.501853,-1.5014443,-1.5143874,-1.5247791,-1.5066433,-1.4954187,-1.529662,-1.5651476,-1.5132942,-1.5243497,-1.5209835,-1.5507838,-1.5255986,-1.5116405,-1.4764647,-1.4649255,-1.4756413,-1.4213188,-1.4192576,-1.4811049,-1.5030916,-1.4756253,-1.5166619,-1.5555779,-1.5339911,-1.4802053,-0.71750975,-0.6537083,-0.89929664,-1.099397,-1.2682581,-1.405498,-1.4652783,-1.473896,-1.2548981,0.57021415,0.76445407,0.33409962,-0.04153178,-0.3403258,-0.6070404,-0.8241782,-0.8655903,-0.54296416,-0.5774976,-0.81721467,-0.8480516,-1.0401714,-1.1408532,-1.1875443,-1.2343487,-1.2970232,-1.3225415,-1.3391984,-1.3428153,-1.3551491,-1.3320818,-1.3505286,-1.1556138,-1.159364,0.15840334,-0.34767312,-0.6059823,-0.732307,-0.8518412,-0.9932381,-1.0501537,-1.007576,-0.9715421,-1.0482488,-1.1008283,-0.9999614,-0.5533487,-0.66218305,-0.2832615,-0.45059007,-0.72195494,-0.8572141,-0.9475632,-1.04031,-1.0561224,-1.1295187,-1.1263795,-1.1303867,-1.1932564,-1.1752336,-1.1736906,-1.2320313,-1.2427123,-1.2924944,-1.2933916,-1.3386959,-1.3454175,-1.3051339,-1.2902688,-0.95332694,-1.1280947,-1.0905315,-1.2394073,-1.2709464,-1.2473929,-1.2348502,-1.2552302,-1.3792799,-1.391433,-1.2890447,-1.3209069,-1.4062812,-1.3581705,-1.3127421,-1.4386607,-1.4564991,-1.4067619,-1.2081153,-1.0014164,-0.57274824,-1.2438515,-1.1574953,-0.8541583,-0.828828,-0.3744173,-1.2616109,-1.2705162,-1.2201759,-1.1053476,-0.97109616,-1.1263957,-1.1119733,-0.57606864,-1.164634,-1.2494504,-1.20878,-1.1007321,-1.1036582,-1.1058104,-1.1354167,-1.1761818,-1.0983471,-1.0756756,-0.8599287,-0.8159509,-1.327441,-1.2249492,-0.58461577,0.08303849,-0.48529255,-0.086684234,-0.24570876,-0.28732273,-0.6536629,-0.7776021,-0.8621914,-0.88238573,-0.8111925,-0.3097945,-0.65070844,-0.5897837,-0.5408215,-0.18607199,-0.8661603,-0.86543113,-0.83506787,-0.8689396,-0.90173244,-0.81018955,-0.7892782,-0.82066834,-0.75239307,-0.53450495,-0.3636743,-0.40641022,-0.5462111,-0.34942612,-0.12209012,-0.4654534,-0.066087,0.080701604,0.3398049,-0.77613705,-0.80054915,-0.81518817,-0.77878773,-0.68578774,-0.63132316,-0.31328297,-0.066179864,-0.36375332,-0.2862712,-0.15569124,-1.010426,-1.1377757,-0.94896126,-1.073329,-0.7768058,-1.1634591,-1.111367,-0.99089503,-0.95766354,-0.8844099,-0.8373178,-1.1226921,-1.0663722,-0.84000087,-0.8341627,-0.7749839,-0.7611432,-0.828816,-0.92178977,-0.88276154,-0.89321077,-0.97773147,-1.0186236,-1.0439622,-1.1029121,-1.1322732,-1.1667836,-0.89926195,-0.9930475,-1.1920496,-0.6177234,-0.86519927,-0.551687,-0.9369501,-1.0022458,-0.3067842,-0.23148894
+-0.5633156,-0.776204,-1.0088016,-1.1762614,-1.2476498,-1.3584539,-1.4026533,-1.4130967,-1.1301043,-0.67464083,-0.73072493,-0.9215311,-1.033241,-1.1124536,-0.87553453,-1.0600877,-1.2066898,-1.3218212,-1.3688812,-1.3946003,-1.4255371,-1.4676565,-0.9413258,-1.072309,-0.35928565,-0.48145294,-0.11902941,0.056309126,-0.16198894,-0.20047802,-0.444359,-0.5722262,-0.71607393,-0.87626517,-1.0497553,-1.1600662,-0.8203176,0.07900552,-0.2809768,-0.6216319,-0.8325888,-1.0817429,-1.2465707,-1.3243809,-1.3368354,-0.9783915,-0.5422115,-0.75451064,-1.0366961,-1.2220979,-1.2872308,-1.3890035,-1.4389677,-1.4816427,-1.2966286,-1.262825,-1.37167,-1.4414426,-1.3989103,-1.4194832,-1.4525042,-1.4735825,-1.4730507,-1.4868633,-1.4876903,-1.5147269,-1.514457,-1.4858743,-1.4222425,-1.3784876,-1.5278811,-0.8982959,-0.107101716,-0.6235692,-0.9444277,-1.2907014,-1.4317039,-1.5102038,-1.5375099,-1.5587809,-1.5486587,-1.525882,-1.5413363,-1.530754,-1.5478294,-1.5574027,-1.5759492,-1.5784131,-1.5617771,-1.3880724,-1.0656134,-0.8672485,-0.8380695,-1.1263714,-1.4020902,-1.5042565,-1.5245991,-1.5413756,-1.5606906,-1.5601735,-1.5475879,-1.5637031,-1.5987848,-1.5833285,-1.5766777,-1.5738502,-1.574322,-1.6027248,-1.6065565,-1.5981157,-1.592704,-1.590559,-1.5692677,-1.5714674,-1.5768911,-1.5768456,-1.5759606,-1.5844481,-1.5548408,-1.5220655,-1.4780867,-1.510678,-1.5123558,-1.4596446,-0.9455136,-0.8947058,-0.75763994,-0.8150424,-1.1319137,-1.4132199,-1.5228649,-1.5392493,-1.5302227,-1.541332,-1.5517426,-1.5668913,-1.5518501,-1.5572836,-1.5576447,-1.5262597,-1.5098897,-1.5420148,-1.549438,-1.4564209,-1.3713521,-1.500867,-1.5428138,-1.5255045,-1.4526914,-1.504601,-1.5448141,-1.5378613,-1.5417293,-1.5147516,-1.5379748,-1.557225,-1.5662794,-1.5404041,-1.5596377,-1.5682615,-1.5447307,-1.5452597,-1.571322,-1.4857365,-1.434389,-1.434593,-1.147087,-1.402699,-1.5075006,-1.5146973,-1.5363963,-1.5587819,-1.5542226,-1.5098844,-0.42681205,-0.40496862,-0.68680584,-1.0043246,-1.220087,-1.3545537,-1.4170225,-1.3742912,-1.2158846,-1.3286681,-1.4550891,-1.4403284,-1.5179572,-1.549752,-1.5511589,-1.5459925,-1.5568379,-1.5165268,-1.5359194,-1.5195535,-1.4931574,-1.4930835,-1.5227478,-1.5145977,-1.4510108,-1.3659782,-1.455477,-1.5425053,-1.5808144,-1.5694919,-1.5584252,-1.5603502,-0.8966335,-0.6821408,-0.8893943,-1.038112,-0.60203606,-0.25421888,-0.590384,-0.28886315,-0.4802121,-0.81029356,-0.9446516,-0.95374966,-0.9807775,-0.9792552,-1.0453346,-1.0915521,-1.1101522,-1.1648632,-1.166489,-1.1768215,-1.2382795,-1.2543622,-1.2736428,-1.2959197,-1.3666748,-1.4792235,-1.3983924,-1.3664997,-0.8832411,-1.0931942,-1.1867452,-1.3319083,-1.3681535,-1.2861866,-1.245467,-1.3230712,-1.4304706,-1.4389777,-1.3604379,-1.4402797,-1.4366969,-1.4203594,-1.4179136,-1.5271165,-1.4776766,-1.3582449,-1.2213056,-1.3150324,-1.247088,-1.4594295,-1.4780827,-1.2080276,-1.2727509,0.028995454,-1.3310604,-1.3425845,-1.3129458,-1.3330826,-1.3268721,-1.2295542,-1.3307803,-0.9888226,-1.3578622,-1.3607886,-1.2943778,-1.2728748,-1.2904639,-1.321838,-1.3237026,-1.3522685,-1.2878783,-1.2718637,-1.1463177,-0.89887893,-1.4575416,-1.2399249,-0.83471465,-0.79547983,-1.0523165,-0.9067284,-1.060665,-0.9212072,-1.1943258,-1.2218887,-1.2582831,-1.2455739,-1.2940326,-0.7974702,-1.2152749,-1.0337771,-0.9703418,-0.7688892,-1.3571045,-1.2552485,-1.2138038,-1.1782334,-1.168791,-1.1248274,-1.1489581,-1.1885957,-1.1913469,-1.0038751,-1.0815017,-0.99970484,-1.1193987,-0.9466226,-0.9883845,-1.0246384,-0.82144153,-0.7019756,-0.19057986,-0.8174786,-1.0167809,-1.0451627,-1.0703566,-1.1178298,-0.9745283,-0.8119653,-0.6587343,-0.9362203,-0.7990277,-0.6220938,-1.2528292,-1.2380514,-1.1436456,-1.1684465,-1.0159721,-1.134804,-1.1236064,-1.0315974,-1.048324,-0.968169,-0.97139335,-1.2278003,-1.1929196,-1.0368507,-1.0195546,-1.00641,-0.8947979,-0.9199784,-0.96187115,-0.9414681,-0.9555023,-0.98884416,-1.0361844,-1.0751851,-1.1282432,-1.1876757,-1.2460803,-1.1810081,-0.66149396,-1.0256314,-0.60249317,-0.8176956,-0.5273431,-0.8527088,-1.000073,-0.7820225,-0.63580704
+-0.9303969,-1.2100289,-1.2978258,-1.3876026,-1.41957,-1.4691964,-1.488003,-1.236199,-0.20055854,-0.10292407,-0.20405245,-0.5596519,-0.88152015,-1.0886397,-1.1356469,-1.3093104,-1.4271436,-1.4691386,-1.485689,-1.5003219,-1.5261776,-1.532476,-1.5041068,-1.5584778,-0.6585815,-0.2901131,-0.74005836,-0.603623,-0.46545517,-0.15741801,-0.3844418,-0.7656141,-1.0904043,-1.2747492,-1.3932836,-1.441643,-0.77127314,-0.603138,-0.9329761,-1.2278163,-1.378578,-1.47549,-1.5474355,-1.5437056,-1.5391331,-1.5367856,-1.5393336,-1.5397152,-1.551956,-1.5574472,-1.5766,-1.62676,-1.6450292,-1.6369517,-1.6340866,-1.6495422,-1.6421041,-1.6560757,-1.6556205,-1.6391149,-1.6268659,-1.6430713,-1.6578095,-1.6593636,-1.6410378,-1.6536999,-1.6459167,-1.6448152,-1.6506326,-1.651974,-1.6543474,-0.745178,-0.93548524,-1.230892,-1.4297937,-1.516629,-1.5581396,-1.5856758,-1.614631,-1.6307638,-1.6214513,-1.6362121,-1.6136985,-1.6178312,-1.6299006,-1.6312854,-1.6352842,-1.6319461,-1.6156037,-1.5936353,-1.3691771,-1.3296711,-0.56511176,-0.9961008,-1.324542,-1.4962864,-1.5671976,-1.5848701,-1.5935335,-1.6063474,-1.6163538,-1.6127322,-1.6373355,-1.6346667,-1.6263175,-1.6283323,-1.632437,-1.6350223,-1.6150961,-1.6118244,-1.6267903,-1.6201966,-1.625568,-1.6367574,-1.636147,-1.6334236,-1.6324458,-1.6253823,-1.605658,-1.4675822,-1.5129831,-1.1171957,-0.6643169,-0.9768139,-1.2552019,-1.08213,-0.6856182,-1.0922816,-1.3344307,-1.4942739,-1.5521822,-1.5585036,-1.6008551,-1.6147853,-1.6178323,-1.6187849,-1.609679,-1.6162076,-1.6062396,-1.6022613,-1.6004077,-1.622652,-1.6165097,-1.1641622,-0.58615094,-0.9687015,-1.2973241,-1.4447703,-1.3296357,-1.436657,-1.5331957,-1.5634115,-1.5631552,-1.5524132,-1.0716265,-1.1356891,-1.335063,-1.4619675,-1.5304263,-1.5718777,-1.5750027,-1.5885923,-1.6002092,-1.5982232,-1.5961305,-1.5750488,-1.5732037,-1.5872319,-1.6012182,-1.6033407,-1.6203423,-1.623883,-1.6061182,-1.501012,-1.5169566,-1.5607752,-1.5850937,-1.6125007,-1.6160605,-1.6170537,-1.6074293,-1.5791183,-1.5702722,-1.5802072,-1.5939758,-1.5900342,-1.5852301,-1.6160779,-1.5972826,-1.6260697,-1.640008,-1.6274656,-1.6186738,-1.6047323,-1.6055315,-1.6117051,-1.6155571,-1.6088128,-1.5899665,-1.5835338,-1.5745838,-1.583535,-1.6190071,-1.6417749,-1.6468873,-1.6229032,-0.69039285,-0.5441838,-0.806418,-0.99679434,-1.0853063,-1.0550762,-1.233554,-1.3122182,-1.3445822,-1.214031,-1.3184974,-1.3936996,-1.4392579,-1.4494188,-1.4504206,-1.4718205,-1.4959236,-1.4943101,-1.4992974,-1.503804,-1.4906282,-1.5003033,-1.5223755,-1.5254649,-1.4519057,-1.5268384,-1.5189834,-1.5182947,-1.3718994,-1.3743694,-1.4086081,-1.4740378,-1.5017083,-1.4816759,-1.2317014,-1.0513673,-1.3401475,-1.3720407,-1.3615267,-1.3912019,-1.4403784,-1.4005897,-1.394371,-1.4127676,-1.4343332,-1.3626782,-1.3381231,-1.3536065,-1.2940636,-1.3255663,-1.3370061,-1.3552563,-1.3432429,-0.4978553,-0.79938835,-1.2179477,-1.2708521,-1.248592,-1.232862,-0.87026906,-0.85893345,-0.23934689,-0.69235396,-1.2239845,-1.1434842,-1.0901355,-1.1001898,-1.1063391,-0.9416728,-1.0674981,-1.0311072,-1.0710853,-0.90559304,-0.80587757,-1.1543131,-1.1443832,-0.79746014,-0.80047536,-0.8358253,-0.9146848,-0.93246496,-0.47830784,-0.859048,-1.0994483,-1.1924157,-1.2227328,-1.2029052,-0.8238698,-0.6614674,-0.31173894,-0.7423263,-0.21097156,-1.1442119,-1.2125242,-1.2223525,-1.1945238,-1.185619,-1.1084695,-1.056143,-1.0412304,-1.0579575,-0.9781996,-0.97471046,-0.9331118,-1.006998,-0.80692023,-0.71521384,-0.7114943,-0.83892435,-0.8854896,-0.42992973,-0.4071247,-0.94126225,-1.1091027,-1.1458833,-1.1448748,-0.7947642,-0.2561446,0.031628557,-0.3100044,-0.44440514,-0.5873658,-0.83382964,-1.0323799,-1.1578156,-1.1331017,-1.0431385,-0.9770087,-1.2040851,-1.173172,-1.2159718,-1.1467872,-1.0900531,-1.1809447,-1.2676697,-1.2078508,-1.1745666,-1.2182865,-1.2357997,-1.2898448,-1.3372871,-1.3863245,-1.4229337,-1.4359348,-1.4534733,-1.4778683,-1.4910468,-1.5058517,-1.5004325,-1.4726735,-1.4308708,-1.5066168,-1.0852739,-1.0336475,-0.5950209,-0.48413157,-0.9415804,-0.759584,-0.051100425
+-1.0090315,-0.7929014,-0.75873953,-0.75806344,-0.7529868,-0.7679828,-0.75645643,-0.4126789,0.55587864,0.67720175,0.4457467,0.063687764,-0.2818926,-0.4979366,-0.62075466,-0.6822952,-0.72182274,-0.74885106,-0.7600621,-0.75466794,-0.7640717,-0.75465536,-0.7241647,-0.76839405,-0.6889896,-0.7266837,-0.73934865,0.289181,0.54080486,0.42893308,0.17135453,-0.39794624,-0.63769555,-0.72219706,-0.731543,-0.41156483,-0.17864811,-0.47054905,-0.6644198,-0.7054831,-0.7360722,-0.77212346,-0.77868414,-0.75250506,-0.74121326,-0.755697,-0.7284744,-0.7464888,-0.7368752,-0.71026075,-0.72075236,-0.74734855,-0.752409,-0.7334383,-0.74620473,-0.74119955,-0.7445213,-0.75595033,-0.7634846,-0.7742528,-0.78303826,-0.7799251,-0.7850192,-0.7853678,-0.7856935,-0.7860187,-0.7835517,-0.78029114,-0.77702415,-0.7620486,-0.75233376,-0.716527,-0.75579995,-0.76674825,-0.76865155,-0.75737244,-0.7472105,-0.7607498,-0.7770202,-0.79895014,-0.771467,-0.76007175,-0.7685808,-0.77871585,-0.784523,-0.7867961,-0.78654957,-0.77479696,-0.7606673,-0.7295008,-0.6881207,-0.21073157,-0.31901133,-0.64118946,-0.7289662,-0.7612404,-0.76474094,-0.7562532,-0.7539589,-0.75808394,-0.74977064,-0.76542026,-0.7715307,-0.77141035,-0.7672163,-0.76410466,-0.7598914,-0.76139784,-0.73504496,-0.72584516,-0.7362442,-0.7437719,-0.74158907,-0.7467348,-0.739511,-0.72858363,-0.7211368,-0.65492475,-0.69979453,-0.7204764,-0.6417873,-0.66518104,-0.21663931,-0.4578724,-0.6058629,-0.029314473,-0.25885737,-0.5447335,-0.64118326,-0.7085591,-0.7221984,-0.6966639,-0.710265,-0.7244709,-0.7297567,-0.7396754,-0.71194345,-0.7366778,-0.7259001,-0.7169904,-0.70818347,-0.7192381,-0.7014297,-0.69679457,-0.07381176,-0.35491157,-0.5744276,-0.6662494,-0.6449317,-0.6931873,-0.71490717,-0.7355126,-0.72719646,-0.6433909,-0.690978,-0.7225851,-0.7420011,-0.75367284,-0.74911284,-0.7344044,-0.68666965,-0.702789,-0.73033494,-0.7268322,-0.72648275,-0.7221546,-0.719886,-0.7413649,-0.73479366,-0.7322638,-0.7347934,-0.7350601,-0.6927621,-0.35028446,-0.22639412,-0.60513985,-0.7127501,-0.73756576,-0.73946166,-0.73282737,-0.71534383,-0.70106316,-0.7030892,-0.70599234,-0.7132038,-0.7169963,-0.74138063,-0.730468,-0.73351884,-0.74006915,-0.73379284,-0.7236656,-0.71712077,-0.7191537,-0.7299699,-0.725826,-0.7340932,-0.7261307,-0.7285934,-0.7190434,-0.6916206,-0.71533155,-0.7254915,-0.723198,-0.7207466,-0.72179997,-0.3906908,0.0035576448,-0.34525195,-0.5494446,-0.6334991,-0.6612142,-0.6826128,-0.68105876,-0.681543,-0.6910691,-0.70495236,-0.700706,-0.67612404,-0.6989893,-0.7032306,-0.7033004,-0.71155816,-0.7036873,-0.7106123,-0.7066149,-0.7009183,-0.7061338,-0.70729125,-0.70827293,-0.70950365,-0.7736474,-0.7585739,-0.6923529,-0.1611138,-0.03451834,-0.311623,-0.46116292,-0.57707,-0.61432403,-0.6049503,-0.5861834,-0.67311597,-0.71399665,-0.7090264,-0.70349467,-0.74305934,-0.739983,-0.7330762,-0.7301327,-0.7485173,-0.7536641,-0.7406148,-0.74240905,-0.7367755,-0.72498417,-0.72192943,-0.73012984,-0.7196847,-0.6270377,-0.64692444,-0.78304696,-0.77892345,-0.77425003,-0.7230219,0.54000145,0.80846167,0.89563864,0.67274964,0.093548276,-0.08564181,-0.2002402,-0.26168346,-0.2738946,0.15037075,0.35997692,0.11186768,-0.018687338,-0.048703708,-0.08749641,-0.23242414,-0.40422547,-0.3225491,-0.3557633,-0.3979071,-0.4368195,-0.44305313,-0.13048035,0.0904368,-0.025114238,-0.30366722,-0.45966756,-0.50842094,-0.05452285,0.46754247,0.38249165,0.38233048,0.6445012,0.347709,-0.118646525,-0.26080665,-0.35542142,-0.38288686,-0.37719488,-0.37974933,-0.40402126,-0.43599522,-0.4597119,-0.47205806,-0.4903534,-0.54289997,-0.53970796,-0.52981424,-0.5582519,-0.5663824,-0.59203094,-0.5307951,-0.25268042,-0.42994606,-0.5546634,-0.63399184,-0.66506284,-0.6492869,-0.15282029,0.79492164,0.5241315,0.2631204,0.052118704,-0.1796574,-0.42993957,-0.48881245,-0.502876,-0.5277516,0.006138183,-0.3776596,-0.49086726,-0.56881833,-0.6187705,-0.64693373,-0.6532128,-0.72517735,-0.73028594,-0.7375893,-0.74445236,-0.7448129,-0.7365829,-0.7413142,-0.7411124,-0.73798287,-0.7288889,-0.7384907,-0.73337823,-0.73944604,-0.73213726,-0.7204529,-0.6944603,-0.66358775,-0.7541471,-0.72023654,-0.73649436,-0.71811247,-0.7322523,-0.7421871,-0.73022324,-0.31497076
+-1.759346,-1.6375961,-1.6311733,-1.6439846,-1.6381721,-1.6106862,-1.6621478,-0.993773,-0.33875054,-0.0825224,-0.045691065,-0.4251591,-0.9222956,-1.2550043,-1.4580331,-1.5169115,-1.5521936,-1.5838194,-1.612827,-1.6348736,-1.6383545,-1.6430962,-1.6306864,-1.6312987,-1.6549472,-1.605458,-1.6379237,-1.2592559,-1.2732806,-1.458147,-1.4595925,-1.5383692,-1.5707952,-1.654498,-1.6390135,-1.6149142,-1.2103381,-1.3980141,-1.5261034,-1.5900794,-1.6154783,-1.6474264,-1.6788616,-1.6593139,-1.6519213,-1.6414474,-1.6498334,-1.6131305,-1.6389701,-1.6664559,-1.6835814,-1.6715038,-1.6901424,-1.6921777,-1.6819814,-1.680655,-1.6831535,-1.6928883,-1.6857715,-1.6836782,-1.6896017,-1.6862158,-1.6855388,-1.7023027,-1.7053233,-1.6989197,-1.698118,-1.6893405,-1.6783955,-1.6591237,-1.6258864,-1.5932102,-1.608339,-1.6664411,-1.6781693,-1.6793007,-1.6835248,-1.6839312,-1.6956257,-1.6954262,-1.6443778,-1.6427543,-1.626891,-1.6348526,-1.6502205,-1.6474065,-1.6441483,-1.6023806,-1.6007063,-1.5829766,-1.4989517,-1.0686793,-1.2906791,-1.5009465,-1.5719965,-1.6277714,-1.6299596,-1.6193943,-1.6149788,-1.6343904,-1.6523267,-1.661102,-1.6683602,-1.6596537,-1.638584,-1.65328,-1.6467534,-1.6251808,-1.581807,-1.5631346,-1.5620317,-1.541635,-1.572676,-1.5755781,-1.5292062,-1.5169759,-1.5220451,-1.5143521,-1.5166526,-1.4893696,-1.1199689,-1.2537264,-1.3936267,-1.1132731,-1.2696337,-1.0529122,-1.1897843,-1.3804703,-1.4983207,-1.5613234,-1.5393939,-1.4808156,-1.4359714,-1.4246192,-1.4905982,-1.528035,-1.5171881,-1.565522,-1.5584272,-1.528295,-1.229634,-1.3756423,-1.4289869,-1.4371789,-1.0986501,-1.315344,-1.446778,-1.4796746,-0.96180713,-1.0739348,-1.3325813,-1.4982386,-1.5100472,-1.4836017,-1.4353013,-1.5193977,-1.5880592,-1.6030937,-1.6051866,-1.5261705,-1.4915249,-1.5083578,-1.5671445,-1.5879178,-1.5986542,-1.5929646,-1.608788,-1.6167825,-1.6400676,-1.644261,-1.6413773,-1.6155448,-1.2515798,-1.0582807,-1.094858,-1.4271183,-1.5231221,-1.5455178,-1.5746258,-1.5221126,-1.3030108,-1.3516234,-1.4265051,-1.4584426,-1.4869826,-1.5594916,-1.574523,-1.5936713,-1.5810028,-1.5743275,-1.6007512,-1.5956825,-1.5490656,-1.5402313,-1.5600744,-1.5758027,-1.5813622,-1.5864091,-1.5865151,-1.5612713,-1.5501728,-1.5431947,-1.5543654,-1.587864,-1.5798585,-1.5787098,-1.5452807,-1.1225467,-1.1513382,-1.3067124,-1.4097879,-1.4280919,-1.4289393,-1.4643028,-1.4996543,-1.505168,-1.519306,-1.5334383,-1.5282652,-1.527226,-1.5228028,-1.5188718,-1.520671,-1.5372535,-1.5412867,-1.5412607,-1.5356741,-1.5353901,-1.5469446,-1.5532092,-1.5380135,-1.5648282,-1.5750419,-1.5392778,-1.1510808,-1.1356456,-1.320872,-1.449357,-1.5323296,-1.5597707,-1.5601529,-1.4681661,-1.5065808,-1.5478884,-1.5648718,-1.5434406,-1.5389986,-1.5740302,-1.5735338,-1.5815792,-1.5622777,-1.5538844,-1.5446037,-1.541224,-1.5369892,-1.5240979,-1.5210288,-1.5200038,-1.5073149,-1.4247073,-1.4546775,-1.5481732,-1.572002,-1.5844581,-1.2770008,0.24487573,0.1004366,0.037832208,-0.1358051,-0.5635706,-0.7672197,-0.9463978,-1.0759275,-1.1757762,-0.84045005,0.19624668,-0.08897687,-0.32037872,-0.46164763,-0.59305835,-0.7272668,-0.9283292,-1.0358119,-1.0994601,-1.0896945,-1.1711682,-1.235547,-1.2351639,-1.2013972,-1.1959267,-1.2812486,-1.3649946,-1.4157965,-0.8997998,-0.46004868,-0.3724707,-0.58817494,-0.53437567,-0.75496376,-1.0046988,-1.1957183,-1.3304542,-1.4112928,-1.4584026,-1.4938567,-1.5149847,-1.5218897,-1.5301816,-1.5275753,-1.528802,-1.5196638,-1.5283206,-1.5035627,-1.490674,-1.493811,-1.4903386,-1.4870229,-1.4823408,-1.4780085,-1.5074888,-1.5174656,-1.5294007,-1.5273447,-0.62385064,0.12350611,-0.22001481,-0.5064182,-0.76442814,-1.0425793,-1.2717881,-1.383528,-1.4607654,-1.4178925,-0.3485891,-0.9212345,-1.2461498,-1.4197009,-1.4832126,-1.5224062,-1.5144455,-1.5539541,-1.5575032,-1.5585535,-1.5631082,-1.564409,-1.5572386,-1.5611871,-1.5709741,-1.5882293,-1.5808351,-1.5772123,-1.5779278,-1.586493,-1.5945306,-1.5824499,-1.554971,-1.4918585,-1.5439534,-1.5843852,-1.5542494,-1.5639174,-1.542293,-1.5635062,-1.6173375,-1.5865299
+-1.6522201,-1.4633455,-1.4158016,-1.4177284,-1.3926744,-1.3827419,-1.3679351,-0.84874487,-0.8332386,-0.6019807,-0.7488715,-0.96317816,-1.1732403,-1.3119045,-1.3675456,-1.3827341,-1.3889127,-1.3955235,-1.3966496,-1.4043471,-1.39937,-1.4052947,-1.3957932,-1.4028575,-1.4369221,-1.4347913,-1.4221177,-1.4382617,-1.4062121,-1.3165972,-1.2913127,-1.3475873,-1.3730149,-1.3861794,-1.3844668,-1.3794014,-1.3587708,-1.3776838,-1.385359,-1.3745894,-1.3741722,-1.3919135,-1.3953283,-1.3773482,-1.4031372,-1.4145215,-1.2110121,-0.83161813,-1.0880623,-1.3098288,-1.4230092,-1.4544442,-1.4707947,-1.4762447,-1.4730544,-1.465522,-1.445903,-1.4253772,-1.4107296,-1.3896561,-1.3899324,-1.3777499,-1.3903823,-1.4241619,-1.462959,-1.4856344,-1.489511,-1.4618764,-1.421462,-1.3967067,-1.3603152,-1.3391234,-1.3592322,-1.4134853,-1.4305699,-1.4389589,-1.4541533,-1.4441025,-1.4458833,-1.4712447,-1.4491503,-1.3760505,-1.3939548,-1.4158521,-1.4150195,-1.4063171,-1.3975021,-1.3813815,-1.387323,-1.3342828,-1.2369084,-1.2294068,-1.2600973,-1.3315482,-1.36829,-1.4161155,-1.4169817,-1.3726013,-1.3635035,-1.3782227,-1.414635,-1.4506176,-1.4387205,-1.4024353,-1.3857245,-1.3959103,-1.3646171,-1.3376958,-1.3219771,-1.3322904,-1.3287227,-1.3210952,-1.3498019,-1.3375676,-1.2755339,-1.2550616,-1.2637365,-1.2803661,-1.2986197,-1.2546195,-0.76026386,-0.734918,-1.0367478,-1.126126,-1.1632956,-1.1808453,-1.1905316,-1.1967788,-1.2512391,-1.2835014,-1.2539494,-1.1938306,-0.96746504,-1.0681124,-1.1782031,-1.2053995,-1.2036803,-1.2536393,-1.2617767,-1.2100905,-1.225615,-1.2262081,-0.9764347,-1.0123854,-1.176894,-1.2286854,-1.2211657,-1.205903,-1.2052242,-1.2417536,-1.2581941,-1.2694454,-1.2435637,-1.1830283,-1.1545987,-1.2298956,-1.3185292,-1.3348936,-1.2893314,-1.2070245,-1.160651,-1.2038472,-1.2931457,-1.3026175,-1.3290517,-1.3161552,-1.3409736,-1.3508569,-1.349145,-1.3189859,-1.3124475,-1.2766833,-0.8798946,-0.8407334,-1.0577606,-1.2831855,-1.3009353,-1.2932355,-1.2817476,-1.2174289,-1.2260878,-1.2058573,-1.1959008,-1.1915797,-1.2092652,-1.2954075,-1.3024426,-1.3053277,-1.3026457,-1.2974925,-1.3093926,-1.2672074,-1.23522,-1.2397226,-1.2579676,-1.2747675,-1.2728434,-1.2937205,-1.3004396,-1.2866428,-1.2679026,-1.2713147,-1.2928425,-1.297766,-1.2789568,-1.2767384,-1.2276974,-0.91077876,-1.0099006,-1.1394259,-1.1837065,-1.1760008,-1.1870922,-1.2099371,-1.2560785,-1.2722707,-1.2728124,-1.2612603,-1.2661461,-1.2460382,-1.2394876,-1.2351952,-1.2263197,-1.2525363,-1.2537506,-1.2471904,-1.2396774,-1.2527492,-1.2535336,-1.2425394,-1.2770765,-1.3053064,-1.299597,-1.2060821,-1.0964732,-1.0934775,-1.2002878,-1.2494093,-1.2998874,-1.2916985,-1.2663279,-0.91757965,-1.0289311,-1.193588,-1.2321577,-1.1302344,-1.2405369,-1.2978432,-1.2891744,-1.2904153,-1.2136433,-1.2325156,-1.2467057,-1.2530951,-1.2459837,-1.2394679,-1.231981,-1.2264981,-1.2076061,-1.1126223,-1.1865702,-1.2968345,-1.3368032,-1.3211553,-1.1969172,0.03593006,0.12379467,0.09533317,0.06287021,-0.3115449,-0.47910255,-0.658633,-0.8044864,-0.83956254,-0.52781576,0.30577168,0.146914,-0.061475195,-0.23389399,-0.38687688,-0.556317,-0.7149984,-0.82474923,-0.9168718,-0.9960451,-1.0450387,-1.0737456,-1.0301979,-1.0595046,-1.1042627,-1.1343741,-1.1663446,-1.1961868,-1.0343242,-0.7930554,-0.27896047,-0.4871233,-0.37571204,-0.57958376,-0.8136176,-1.0083548,-1.1590486,-1.2601123,-1.2734065,-1.2690545,-1.274538,-1.2811747,-1.2737482,-1.2578192,-1.2577013,-1.2461637,-1.2426071,-1.2032211,-1.2118567,-1.1986597,-1.2119434,-1.1033604,-1.0337977,-1.1429421,-1.205378,-1.2233759,-1.2505744,-1.1623996,-0.049761526,0.5833677,0.21554866,-0.1450454,-0.50877905,-0.8048259,-1.0439848,-1.1566443,-1.1439114,-0.75598377,0.32132444,-0.44627196,-0.8866246,-1.1394554,-1.2241879,-1.2423482,-1.2894468,-1.0066044,-1.1456499,-1.2372627,-1.2879072,-1.309073,-1.3159537,-1.3129177,-1.3149489,-1.3177912,-1.3105251,-1.3094592,-1.3186948,-1.3253443,-1.3304708,-1.3305299,-1.3107544,-1.0303061,-1.1901314,-1.2964792,-1.3281419,-1.3516943,-1.3508015,-1.3664314,-1.3828403,-1.38901
+-0.92479205,-0.98486006,-1.0730698,-1.0415432,-1.0460284,-1.0671303,-0.9824598,-0.5436454,-0.7439798,-0.45654064,-0.75199825,-0.8203201,-0.8408897,-0.90594554,-0.94550645,-0.99855685,-1.0274019,-1.0567595,-1.0657301,-1.0424407,-0.9892248,-0.9833032,-0.95789874,-0.99476135,-0.9857081,-1.0201277,-0.9643204,-0.9709338,-0.9925382,-0.9506179,-0.99141026,-0.9457035,-0.97340214,-1.001703,-0.9559839,-0.87772506,-0.9828445,-0.98100495,-0.9412886,-0.92866135,-0.9345226,-0.97737646,-0.9823357,-0.9537339,-0.95017767,-0.9596473,-0.915092,-0.76639426,-0.8855386,-0.91858745,-0.9571724,-1.0090275,-0.9960165,-0.98140717,-0.9973495,-1.0236644,-0.9791461,-0.95450556,-0.9373406,-0.92261815,-0.91953254,-0.9213505,-0.939461,-0.9737632,-1.04026,-1.097121,-1.0332916,-0.9772012,-0.9338324,-0.9305192,-0.9013313,-0.91265535,-0.91578794,-0.93114114,-0.9540334,-0.9394965,-0.9524727,-0.95526886,-0.9553417,-1.0922195,-1.0445741,-0.9403579,-0.9423859,-0.9432472,-0.93160594,-0.9234996,-0.92899024,-0.9483243,-0.9510361,-0.88565314,-0.8885449,-0.87795067,-0.8917718,-0.92660487,-0.9392922,-0.9469838,-0.9243107,-0.90549445,-0.9086554,-0.915887,-0.9274893,-0.9477391,-0.9311234,-0.919181,-0.91866183,-0.910156,-0.89907515,-0.9002104,-0.9109645,-0.9157547,-0.90992904,-0.9345242,-0.9248631,-0.9045566,-0.84814334,-0.8581528,-0.88080984,-0.87915236,-0.877499,-0.84470546,-0.7718256,-0.825398,-0.8265319,-0.82280993,-0.8044965,-0.84305954,-0.8597411,-0.84742117,-0.8886011,-0.9007101,-0.8684524,-0.82602197,-0.84324414,-0.8539055,-0.8407232,-0.8381669,-0.8290666,-0.85524064,-0.83722264,-0.83003175,-0.8516848,-0.8319846,-0.8072606,-0.8409202,-0.8615168,-0.88573235,-0.8611554,-0.8630556,-0.92132103,-0.9245579,-0.9487004,-0.9488903,-0.8675597,-0.79922605,-0.82719237,-0.86907023,-0.9501828,-0.945542,-0.9037218,-0.82333934,-0.8507735,-0.87597024,-0.9547348,-0.88181376,-0.8688349,-0.8869239,-0.95817304,-1.0163954,-0.9370965,-0.9006827,-0.9069785,-0.7792425,-0.56121886,-0.5051227,-0.71221316,-0.96473265,-1.0687174,-1.0572884,-1.0329117,-0.94896317,-0.8938458,-0.82412475,-0.8415911,-0.8171279,-0.8449794,-0.9698571,-1.0591913,-0.8987942,-0.93279696,-1.0717585,-1.0621428,-0.84577876,-0.83330834,-0.84458655,-0.8456624,-0.90082276,-0.9057038,-0.8666964,-0.8643236,-0.8968135,-0.8779776,-0.9577726,-1.0056068,-1.1197264,-0.9585999,-0.8646072,-0.84277594,-0.83804214,-0.85286534,-0.88050616,-0.8472188,-0.83313173,-0.82379425,-0.8869979,-1.0376322,-1.0468581,-1.0393668,-1.0202951,-0.95792794,-0.9107928,-0.90373874,-1.01476,-1.04262,-1.0628706,-1.0534252,-1.0143315,-1.034284,-1.0509248,-1.0650544,-0.90735364,-0.95489466,-1.1161327,-1.1285939,-0.9463521,-0.8797184,-1.0197734,-1.0210533,-1.0442901,-1.1043282,-1.0413027,-1.0286024,-1.008976,-1.0337987,-1.1268184,-1.120162,-1.0684464,-1.1127536,-1.1398008,-1.0736748,-0.9342489,-0.90490425,-1.0033695,-1.0062463,-1.0037148,-0.93468046,-0.9244896,-0.90988564,-0.9207413,-0.9374722,-0.8796723,-0.9743935,-1.0891623,-1.1011547,-1.0841535,-1.0067596,-0.06815799,-0.44169664,-0.23313105,-0.66482913,-0.78852713,-0.75737727,-0.7385519,-0.74863887,-0.6750885,-0.5354965,-0.11173167,-0.5385511,-0.5697153,-0.6291479,-0.62031215,-0.6092353,-0.72617704,-0.7043513,-0.6659077,-0.6728579,-0.66540426,-0.627165,-0.61047506,-0.3058226,-0.51244974,-0.59272826,-0.6899189,-0.71815103,-0.5433792,-0.5649127,-0.4764433,-0.63706243,-0.61133933,-0.73723006,-0.7629249,-0.7973643,-0.81801087,-0.8394858,-0.8178235,-0.7946195,-0.7821304,-0.7696768,-0.73626244,-0.73477983,-0.73960567,-0.7430805,-0.68511426,-0.6663186,-0.6938318,-0.72394323,-0.70424855,-0.6680018,-0.38980266,-0.6419282,-0.7069814,-0.75289553,-0.7725219,-0.6878675,0.08678443,-0.29748058,-0.47190464,-0.55068654,-0.64416325,-0.6968475,-0.72603047,-0.7233304,-0.6589811,-0.62248236,-0.3718379,-0.66551536,-0.70584446,-0.7329297,-0.6777282,-0.6330195,-0.70874393,-0.7497412,-0.75640285,-0.7711302,-0.7825978,-0.7954557,-0.7882561,-0.7817992,-0.80042857,-0.7678137,-0.73948896,-0.7898653,-0.75152326,-0.7661772,-0.77246,-0.6924149,-0.67510784,-0.66553605,-0.71528536,-0.7171582,-0.7379326,-0.70740265,-0.7512221,-0.7872565,-0.78640914,-0.7523177
+-1.207958,-1.0958183,-1.0194501,-0.93163204,-0.9395027,-1.0277128,-0.89197683,-0.7369361,-0.8296009,-0.6717357,-0.6002631,-0.80396175,-0.8691694,-0.85962653,-0.81748414,-0.9490795,-0.9797236,-0.99376917,-1.0043799,-0.97296095,-0.9459331,-0.89891654,-0.8592247,-0.86537063,-0.83987784,-0.8721882,-0.89054,-0.82990617,-0.89218533,-0.84862614,-0.85357165,-0.92721987,-0.9308418,-0.9086828,-0.8649969,-0.8464669,-0.84454167,-0.8424677,-0.8919258,-0.90673494,-0.90478206,-0.94380236,-0.9348378,-0.8859694,-0.85706717,-0.850293,-0.86115384,-0.8907792,-0.91825986,-0.8941221,-0.8873711,-0.88221574,-0.8869771,-0.90051275,-0.91118956,-0.91705203,-0.9388372,-0.91059935,-0.89212316,-0.88176304,-0.89285374,-0.92836916,-0.9557923,-0.950371,-0.94377124,-0.9219302,-0.89275277,-0.8854176,-0.90009177,-0.9276557,-0.9048612,-0.89223313,-0.896504,-0.89688313,-0.8971334,-0.9010054,-0.9268377,-0.9356754,-0.9545852,-1.0048196,-1.0104575,-0.91252255,-0.9282503,-0.92256045,-0.89643896,-0.904703,-0.9481559,-0.9636078,-0.98102903,-0.97512627,-0.9231448,-0.931973,-0.937966,-0.95065904,-0.93090916,-0.8905611,-0.8813321,-0.89551735,-0.92900956,-0.9233124,-0.9119433,-0.9001309,-0.88437855,-0.9146737,-0.9429338,-0.9074991,-0.9190881,-0.909353,-0.925555,-0.9335911,-0.93781805,-0.9548168,-0.9728503,-0.97990847,-0.95299935,-0.9265809,-0.93411326,-0.91928446,-0.88464266,-0.886058,-0.8896219,-0.8880223,-0.89207447,-0.8878685,-0.8856476,-0.8873354,-0.9010858,-0.90287805,-0.93683434,-0.8936582,-0.9033755,-0.9119829,-0.8938707,-0.9006337,-0.89193106,-0.89481187,-0.92063725,-0.91785204,-0.92756367,-0.9068358,-0.87802804,-0.84695715,-0.8743038,-0.8894788,-0.8762388,-0.8939388,-0.9007212,-0.89339036,-0.8689743,-0.8979665,-0.90396285,-0.9018541,-0.92780113,-0.9061489,-0.9185517,-0.89711225,-0.8798408,-0.8697476,-0.87817276,-0.8570237,-0.8598566,-0.9041753,-0.9600924,-0.9343815,-0.89128053,-0.86796474,-0.88293356,-0.93731046,-0.9013742,-0.9334612,-1.0129398,-0.7103317,-0.5056743,-0.45269114,-0.563409,-0.75530106,-0.8590517,-0.91653943,-0.91742873,-0.79184306,-0.7877599,-0.93201816,-0.8430432,-0.8764546,-0.8915383,-0.8624623,-0.8742222,-0.8755405,-0.89063597,-0.9041019,-0.91733503,-0.8935252,-0.89500195,-0.87931466,-0.8969794,-0.87630355,-0.8935693,-0.890945,-0.8930319,-0.8816341,-0.87770414,-0.9029739,-0.95632076,-1.0048922,-0.94101393,-0.9321251,-0.9479325,-0.85635394,-0.9031219,-0.90104234,-0.8970809,-0.8864519,-0.87928355,-0.87012064,-0.8703524,-0.8815275,-0.89158714,-0.9031191,-0.9217894,-0.928404,-0.944968,-0.9600284,-0.9701264,-0.96103346,-0.9606998,-0.96364594,-0.9713893,-0.9833994,-0.9882953,-0.96317077,-0.91161704,-0.9219011,-0.95684147,-0.92357147,-0.7208863,-0.8137997,-0.85594326,-0.8981676,-0.91807985,-0.9311378,-0.8356163,-0.82932705,-0.828277,-0.8535886,-0.86489105,-0.598819,-0.6824165,-0.7804141,-0.83726406,-0.8360998,-0.81670547,-0.8174499,-0.86216116,-0.86921734,-0.83906233,-0.832281,-0.83240974,-0.8637794,-0.8633439,-0.6537506,-0.598955,-0.7414473,-0.8223398,-0.902665,-0.42590362,0.099116005,-0.1983191,-0.2019305,-0.20675397,-0.42165244,-0.4843638,-0.6048467,-0.7437351,-0.7682477,-0.7680026,-0.5367699,-0.5911813,-0.65655917,-0.7122953,-0.7369569,-0.77681047,-0.8136918,-0.8737744,-0.869943,-0.8297948,-0.8215331,-0.8217304,-0.79792726,0.73177963,0.047336258,-0.1432521,-0.28709173,-0.40488505,-0.47063065,-0.48699433,-0.39943698,-0.64451146,-0.6770064,-0.68639207,-0.766418,-0.80048954,-0.8561635,-0.91311395,-0.9187188,-0.90079516,-0.89315486,-0.88835806,-0.85615146,-0.8561,-0.8538172,-0.84091413,-0.81969476,-0.8432296,-0.8566808,-0.8819895,-0.8818096,-0.85000396,-0.7933926,-0.2843138,-0.55598205,-0.6316077,-0.75452787,-0.6872055,0.9717424,0.54678464,0.041342087,-0.18473181,-0.3920676,-0.5091768,-0.64268816,-0.7424172,-0.73941714,-0.7623303,-0.76633894,-0.8497983,-0.9006405,-0.9062122,-0.853751,-0.8263549,-0.82851887,-0.9083122,-0.9340515,-0.94166553,-0.9313861,-0.9113313,-0.9343585,-0.9451636,-0.94382536,-0.9285011,-0.9123192,-0.914994,-0.90524983,-0.93164563,-0.88337827,-0.8097161,-0.8138411,-0.77497977,-0.9080901,-0.9188056,-0.86316967,-0.8294383,-0.8609114,-0.9362221,-0.90159,-0.8032958
+-0.5517913,-0.6431083,-0.6442935,-0.64232147,-0.44093573,-0.59746337,-0.6167301,-0.61463034,-0.6993562,-0.7868253,-0.8703496,-0.89340806,-0.9752836,-0.97495854,-0.77769756,-0.79137725,-0.7371238,-0.7125727,-0.77553105,-0.8585757,-0.9282445,-1.0059649,-0.37975967,-0.20806217,-0.1291135,-0.20241562,-0.18332863,-0.32287964,-0.2990723,-0.41852927,-0.4869393,-0.60655385,-0.7024292,-0.8180587,-0.95152104,-0.9155674,-0.9794804,-1.0267398,0.20308545,0.022823088,-0.17198953,-0.19380695,-0.1892665,-0.310619,-0.42822075,-0.5198184,-0.68399847,-0.8552761,-0.5708554,-0.3208132,0.15984398,0.608762,0.6755773,0.6322289,0.39264414,0.15538177,-0.10136076,-0.34190977,-0.49551052,-0.58706075,-0.7489646,-0.87745935,-0.9305699,-1.0144951,-1.1117814,-1.1707767,-1.1957338,-1.2352989,-1.1990476,-1.007661,-1.1171744,-0.75232255,-0.8632372,-1.0190082,-0.97140324,-0.98415375,-0.88227063,-0.9056423,-1.0158343,-0.6693603,-0.8967482,-0.98175,-0.97796035,-1.0639367,-0.88424844,-0.40511972,-0.59165895,-0.7560996,-0.91498995,-0.9298434,-0.3837604,-0.47379428,-0.7492442,-0.9326422,-1.0851576,-1.1263129,-0.7680681,-0.59763706,-0.8380804,-0.77633196,-0.8774328,-0.38521412,-0.09478427,0.12756419,0.02572503,0.22136882,0.45073852,0.21183738,-0.030895941,-0.2725639,-0.5654203,-0.8541233,-0.7851816,-0.52049565,-0.7945462,-0.9361608,-0.69634145,-0.44901228,-0.21455151,-0.29540503,-0.49956512,-0.6676298,-0.80258155,-0.9382961,-0.44789815,-0.46294314,-0.71331614,-0.8748802,-0.26774353,0.10594406,-0.17086938,-0.112173654,-0.18854967,-0.20738816,-0.4434669,-0.6777915,-0.52016824,-0.6854783,-0.8429482,-0.62924504,-0.3121755,-0.5253354,-0.72439957,-0.8671081,-0.93615484,-0.91606593,-0.85117686,-0.6195152,-0.7379205,-0.8647716,-0.8791606,-0.85264814,-0.67990255,-0.8268701,-0.93536127,-0.9869554,-1.06908,-1.1219596,-1.129174,-1.182987,-1.1884382,-1.0165477,-1.0347415,-0.61517394,-0.24964511,-0.29982287,-0.35291705,-0.4725085,-0.61358905,-0.7752775,-0.888836,-0.9585104,-0.99893725,-1.0536861,-0.48017907,0.03735131,-0.08459211,-0.15913904,-0.2887124,-0.42768073,-0.5174345,-0.6783184,-0.8092833,-0.8264654,-0.72988117,-0.7794808,-0.9373648,-0.96041894,-1.0613756,-0.90231174,-0.7237287,-0.5363988,-0.33018672,-0.7651421,-1.0777366,-0.9447217,-0.18120849,-0.24677563,-0.30910575,-0.36795032,-0.18400729,-0.18513018,-0.35866183,-0.35933006,-0.39815,-0.48270184,-0.45822763,-0.518945,-0.61159813,-0.6843446,-0.054965876,-0.10140952,-0.13409123,0.12489603,0.077655405,-0.08223084,-0.061600648,-0.068485074,-0.069239356,-0.06433154,-0.33598343,-0.35835564,-0.23795056,-0.32605007,-0.46193266,-0.4511965,-0.5709597,-0.7464824,-0.7632537,-0.94498897,-1.1358047,-1.2348888,-1.165035,-1.1050138,-1.0756979,-1.2465229,-1.2610657,-1.2764082,-1.2719729,-1.2328963,-1.2607574,-1.2792335,-1.2325455,-1.3324883,-1.2586735,-1.2842284,-1.2203028,-1.2056236,-1.1619241,-1.3439616,-1.3551867,-1.3454785,-1.3016804,-1.263988,-1.3000422,-1.3045199,-1.343005,-1.34058,-1.301035,-1.2691269,-1.3379991,-1.2731929,-1.1660118,-1.1138918,-1.1408896,-1.1623632,-1.1241152,-1.0086113,-1.181499,-1.2939452,-1.1811175,-1.1930773,-1.1887121,-1.1593678,-1.2321519,-1.0464921,-1.2089616,-1.2628098,-1.2998434,-1.3074057,-1.1641636,-1.2697055,-1.2088412,-1.1202753,-1.137511,-1.165845,-1.1879421,-1.2186744,-1.2270122,-1.1521866,-1.1532216,-0.9770136,-0.92375386,-0.8357366,-1.0509152,-1.1131283,-1.0377625,-1.0128365,-1.1694134,-1.1541209,-1.1944273,-1.1558115,-1.0110058,-1.018317,-1.1313643,-1.2035348,-1.1678498,-1.2030487,-1.3005345,-1.1629624,-1.0613257,-1.0596153,-1.0285844,-1.0402294,-1.0087903,-0.8282684,-1.0560048,-1.091287,-0.99851954,-0.9131272,-0.79653823,-0.45124936,-0.61060387,-0.65181166,-0.29957435,-0.7514668,-0.31714383,-0.532758,-0.6602614,-0.90850556,-1.0456901,-0.8746431,-0.9632412,-0.9413352,-0.99884367,-0.9382119,-0.8684032,-0.8130963,-0.7315259,-0.9604759,-0.96280515,-0.88707256,-0.90709496,-0.9095504,-0.8804654,-0.87594396,-0.82920057,-0.57889146,-0.13465312,0.1563581,-0.5097551,0.11721797,-0.023067273,-0.8849736,-0.9083226,-0.48953587,-0.346899,-0.44392478,-0.19902965,-0.7859459,-0.5526079,-0.58935654,-0.8373523,-0.77665293,-0.69354445
+-0.11563458,-0.20620131,-0.12884042,-0.33984405,-0.2686853,-0.2764942,-0.36214906,-0.34165245,-0.290195,-0.34641522,-0.3812551,-0.40957808,0.053892806,0.19437861,0.18473408,-0.030114375,0.018864289,-0.19636211,-0.21452773,-0.25215453,-0.34474835,-0.37194377,-0.20311493,0.30089936,0.19418326,0.13635641,0.10318411,0.07321218,0.0055075213,0.40230942,0.23749271,0.05152108,-0.031065725,-0.14858589,-0.2183345,-0.28005892,-0.21901438,-0.29053104,-0.035822235,0.06327367,0.07426325,0.038373444,-0.035000034,-0.17019498,-0.19258052,-0.049767204,-0.09964668,-0.17751226,0.1884306,0.33890128,0.47752595,0.44540906,0.450459,0.4326324,0.36860815,0.3637749,0.25436875,0.205499,0.02834379,-0.03199569,-0.098611735,-0.2407859,-0.34618923,-0.09096656,-0.2574407,-0.42274642,-0.4910738,-0.5262613,-0.4804399,-0.37437272,-0.44498473,-0.30308446,-0.40063316,-0.5791832,-0.25977135,-0.22962573,0.15228069,0.085122034,0.05310549,0.10868093,-0.2418972,-0.3514792,-0.42723864,-0.653475,-0.45095348,-0.3384109,-0.5630356,-0.75709206,-0.8446562,-0.85744417,-0.8273816,-0.79239506,-0.8631728,-0.86717576,-0.8694196,-0.93562603,-0.8033876,-0.78205657,-0.92249703,-0.87255526,-0.19567668,0.97424924,0.545335,0.42056447,0.21300444,-0.06590711,-0.06320488,-0.28172216,-0.47376227,-0.538349,-0.38638955,-0.50243443,-0.68033165,-0.4160031,-0.67556167,-0.8079901,-0.86003697,-0.8573903,-0.9057051,-0.89903414,-0.9487786,-0.9042262,-0.9439343,-1.0756806,-0.87585866,-0.93010294,-1.0760092,-0.8796314,-0.7399393,-0.6899551,-0.56385565,-0.2066454,-0.46233594,-0.6195953,-0.7584117,-0.83066344,-0.88061064,-0.9184537,-0.93820584,-0.9523221,-0.8422642,-0.90419453,-0.9555687,-0.91023326,-0.87864804,-0.96244097,-0.9800978,-1.0197676,-1.017723,-0.98045623,-1.0174342,-1.0434606,-1.0439814,-0.9117942,-0.827306,-0.84988314,-0.9654596,0.21062976,0.035852663,0.17954347,0.15312569,0.087104976,-0.1546149,-0.28963077,-0.32955372,-0.45003426,-0.6135311,-0.5412246,-0.6377567,-0.67761016,-0.24368066,-0.095292024,-0.28136683,-0.09871607,0.10947244,0.33733046,0.2233223,0.106214486,-0.005777575,-0.16643244,-0.317093,-0.45210803,-0.46664965,-0.5251444,-0.51692724,0.07492817,0.66649044,0.5042355,0.53761536,0.4920889,0.53197926,0.3795857,0.44218835,0.3847522,0.008075677,0.107137255,0.35438418,0.45985055,0.6130348,0.65630627,0.5896338,0.54717577,0.35402334,0.42997387,0.5423591,0.39588624,0.3251883,0.32881293,0.39861903,0.34489188,0.41614088,0.3211752,0.2471605,0.6194984,0.5058039,0.38166574,0.28137863,0.12974069,0.04205749,0.056247838,0.011926673,-0.012612358,-0.030552365,-0.06936333,-0.08832266,-0.09112374,-0.0035252199,0.019764654,0.057927664,0.2662119,-0.24765849,-0.51494086,-0.36403054,-0.045582138,0.10792816,-0.14017203,-0.38527292,-0.44465786,-0.5071024,-0.41771752,-0.50464267,-0.40487486,-0.48915774,-0.55679655,-0.3644628,-0.489204,-0.34199798,-0.2041507,-0.3613836,-0.15225163,-0.02876588,0.0005136207,0.091379665,0.21072179,-0.0590154,-0.032674544,0.005732365,0.0037455186,0.1272018,-0.06914165,0.10355554,-0.043314062,0.048269473,0.09375327,0.0037175193,-0.1339153,-0.06597816,0.11022777,-0.003339909,-0.023910932,-0.039558895,-0.003894858,-0.13687098,0.110453956,-0.1749857,-0.14765683,-0.103521,0.024277158,0.03620001,0.17580351,0.09784938,0.059869893,0.14773494,0.481762,0.10313789,0.016341455,-0.03497555,-0.06389103,-0.055568315,-0.12514725,-0.12838688,-0.092712276,0.15148139,0.3847201,-0.0018522516,-0.10621529,-0.07093073,-0.043252416,-0.12966412,-0.11552898,-0.12819695,-0.14266366,-0.09939102,-0.04346568,-0.18346557,-0.077007316,-0.18269831,-0.15861064,-0.010914661,0.4162218,0.42156023,0.35326913,0.018726714,-0.026875116,0.59300506,0.9343805,0.20343354,-0.11877062,-0.10915702,-0.042952545,-0.051795267,0.5074845,0.47596294,0.15260842,0.4709203,0.0109020695,0.3561812,0.07363193,-0.10913425,-0.16057676,-0.20013377,-0.19249636,-0.08178278,-0.14880666,-0.117607184,0.013203032,-0.05388006,0.1572375,0.081961505,-0.17017373,-0.21012038,0.23568761,0.4963104,0.44223964,-0.045758985,0.28185138,0.17706656,0.5465593,0.7971859,0.5400686,-0.21528792,0.5506777,0.45960537,-0.039206244,0.14874694,0.28226277,0.04913017,-0.1493989,0.18991114,-0.24438679,0.16120353,-0.09436164,-0.1825769,0.20507213,0.028382264
+-0.8617381,-1.1056335,-0.9220352,-0.80766726,-1.1553994,-1.1228204,-0.9739131,-0.8655827,-0.7734865,-0.7222736,-0.76332474,-0.80634594,-0.70229113,-0.79245484,-0.966342,-0.99360883,-0.98380923,-1.0297228,-0.9195006,-0.8572477,-0.90787184,-0.90630674,-0.74089634,-0.66492236,-0.6221602,-0.68765956,-0.76430345,-0.80427575,-0.87843597,-0.77472556,-0.6980107,-0.79233843,-0.76961565,-0.6416465,-0.54930234,-0.5588888,-0.49207014,-0.50188947,-0.5812888,-0.8058113,-0.7398747,-0.7208552,-0.58298707,-0.52928376,-0.33776748,-0.303408,-0.34643844,-0.39453062,-0.2173751,-0.17767945,-0.1362716,-0.49782383,-0.50465155,-0.45833862,-0.46008474,-0.39664656,-0.43667924,-0.51621014,-0.5913948,-0.6217638,-0.7731503,-0.82986486,-0.8420268,-0.89077586,-0.97229195,-1.0790024,-1.2308817,-1.220545,-1.1069927,-1.2076364,-1.337606,-1.3134866,-1.1423452,-1.2503206,-1.3026063,-0.8809212,-0.27979612,-0.68041754,-0.8802171,-1.0510807,-1.1981494,-1.3231645,-1.4036824,-1.4745352,-1.5254774,-1.5251346,-1.5044281,-1.588263,-1.6793125,-1.7585167,-1.6185136,-1.6454389,-1.7465384,-1.6825383,-1.7489057,-1.7601941,-1.7803762,-1.7795148,-1.7366462,-1.7634915,-1.1735871,-0.39302567,-0.8494477,-0.8666796,-1.0737033,-1.2763995,-1.3812983,-1.4627614,-1.5441492,-1.6084006,-1.6869972,-1.6936615,-1.7224594,-1.7740092,-1.8127202,-1.8458996,-1.8510767,-1.7717692,-1.7511632,-1.8411,-1.8406599,-1.81576,-1.8088969,-1.7902831,-1.786364,-1.801627,-1.7151484,-1.4208562,-1.466248,-1.6193442,-1.7148166,-1.7713933,-1.7866225,-1.8066308,-1.8158965,-1.7572846,-1.7723163,-1.756974,-1.7555501,-1.7557336,-1.7763635,-1.7598081,-1.7496808,-1.7498248,-1.775321,-1.7904562,-1.8019488,-1.7823272,-1.7492342,-1.7336947,-1.7265053,-1.7004153,-1.7016053,-1.6373372,-1.6311322,-1.6551154,-1.504795,-0.30318886,-0.61604166,-0.75506616,-0.93126607,-1.0960399,-1.1901139,-1.2932298,-1.395446,-1.4126229,-1.0414394,-0.8886783,-1.0812922,-1.2005167,-1.2208614,-1.2507043,-1.326975,-1.3690102,-0.16472775,0.11238184,-0.022942856,-0.1627771,-0.3087874,-0.4172076,-0.549722,-0.7112404,-0.53125095,-0.11054223,-0.022683933,0.22679722,0.30538815,-0.0045532584,-0.23410016,-0.3171376,-0.11181139,-0.18473768,-0.26564407,-0.34717944,-0.8076679,-0.6552966,-0.4271949,-0.45943606,-0.3061139,-0.5139092,-0.7396327,-0.75949895,-0.94169056,-0.6522552,-0.67452955,-0.6726181,-0.6080699,-0.5200241,-0.49403006,-0.48821723,-0.56526387,-0.24480888,-0.23179802,-0.034112535,-0.37724966,-0.7050235,-0.64100397,-0.7509126,-0.74877787,-0.75012434,-0.8303729,-0.72098386,-0.5987429,-0.60994554,-0.67203337,-0.69921947,-0.8713836,-0.8442198,-0.45069373,-0.56186414,-1.1787682,-1.390508,-1.1743175,-1.0335833,-1.0055457,-1.3114355,-1.3244709,-1.4160562,-1.3897494,-1.2797561,-1.1935635,-1.3672447,-1.4356445,-1.5497334,-1.4339807,-1.5724881,-1.4800394,-1.3665786,-1.4740117,-1.7638118,-1.728668,-1.767797,-1.2879541,-0.8042373,-1.1620481,-1.27999,-1.5302951,-1.5983971,-0.72671807,-0.9803804,-1.4350402,-1.4888072,-1.434257,-0.89145565,-1.3587649,-1.5435079,-1.5161551,-1.1000699,-1.1400698,-1.4724517,-1.4768453,-1.1965469,-1.4796458,-1.2202586,-1.4971474,-1.560117,-1.5324078,-1.5712142,-1.5331905,-1.6094561,-1.6658882,-1.6527027,-1.1094539,-0.5804446,-1.2316065,-0.7581698,-1.2198935,-1.4388251,-1.5100532,-1.5147777,-1.5311222,-1.4486387,-1.2305713,-0.7307945,-1.152398,-1.2852013,-1.3390558,-1.1930028,-1.1870704,-1.4585278,-1.4293996,-1.4934688,-1.4115032,-1.1288503,-1.266767,-1.0893059,-1.0821139,-1.1556807,-1.0187275,-0.48501414,-0.51082724,-0.6395266,-0.6328776,-0.5282496,-0.119517334,0.07652829,-0.81881374,-1.1282797,-1.0858672,-0.9721092,-0.99204683,-0.49421453,-0.67769945,-0.35870135,-0.21371719,-0.57986325,-0.19504067,-0.8700198,-0.8313905,-0.8078475,-1.0151942,-1.0770972,-0.97210765,-1.2173356,-1.1481335,-0.9675648,-0.91467214,-0.5952541,-0.61454666,-1.0391654,-1.0816566,-0.69674003,-0.4372406,-0.12842047,-0.74692243,-0.4652121,-0.6383003,-0.14032206,-0.25051326,-0.011220671,-0.6975337,-0.096790634,0.16830257,0.021533012,-0.11351832,-0.10385179,-0.46525395,-0.73980516,-0.3824971,-0.76696885,-0.49045455,-0.66971606,-0.6718545,-0.2712472,-0.42653668
+-0.7844372,-0.9451778,-0.94764316,-0.97968364,-0.860226,-0.9722816,-1.1310275,-1.2220266,-1.3749833,-1.3331673,-1.2102611,-1.2632728,-0.99562883,-0.25926626,-0.66560066,-0.9296632,-1.1901295,-1.2867211,-1.3490756,-1.4191494,-1.4513097,-1.5279546,-0.89492595,-0.29228926,-0.53283674,-0.5569393,-0.4962939,-0.5766631,-0.6183572,-0.5003531,-0.61802876,-0.9443598,-1.1285188,-1.2703979,-1.3499501,-1.2858359,-0.40733653,-0.53017163,-0.7129101,-0.7330843,-0.9343736,-1.1264317,-1.2747706,-1.3661808,-0.9242921,-0.8049408,-0.8222135,-1.022681,-0.70083773,-0.15576398,-0.0063981786,-0.2937412,-0.59651965,-0.8611394,-0.5401541,-0.70168126,-0.96207154,-1.124591,-1.2535789,-1.348802,-1.4013059,-1.5213615,-1.5858016,-1.5861417,-1.5859026,-1.6078086,-1.5912054,-1.4905999,-1.5490513,-1.590494,-1.5944002,-1.6200788,-1.5754378,-1.5416282,-1.4948041,-1.090765,-0.99117494,-1.3184158,-1.5187163,-1.550854,-1.6287911,-1.6132411,-1.6327413,-1.6391499,-1.6218925,-1.6558745,-1.6921989,-1.6713914,-1.6420674,-1.6271149,-1.3150767,-0.99684274,-1.3633732,-1.5487121,-1.5605068,-1.6141725,-1.618397,-1.6186641,-1.6363499,-1.6196789,-1.1286323,-1.1268871,-1.394629,-1.5472512,-1.6407506,-1.650454,-1.6386764,-1.6582336,-1.6489004,-1.6423769,-1.641151,-1.6494743,-1.6397567,-1.6334665,-1.6646229,-1.6606306,-1.6564347,-1.6385207,-1.627918,-1.6212881,-1.6057186,-1.5781646,-1.6175914,-1.6333346,-1.6263015,-1.6713077,-1.6752614,-1.4386041,-1.1156162,-1.3635037,-1.5378752,-1.5922098,-1.6309766,-1.6310556,-1.6278479,-1.6352087,-1.6136026,-1.6167662,-1.6237116,-1.5838504,-1.5696912,-1.5964879,-1.6200356,-1.6172521,-1.6485932,-1.6641444,-1.6509131,-1.660191,-1.6433321,-1.661113,-1.6401436,-1.6354667,-1.6203935,-1.579947,-1.5502114,-1.5611022,-0.7668349,-0.53470314,-0.95422256,-1.1908371,-1.3691785,-1.5478582,-1.6084757,-1.621568,-1.3726285,-1.0280108,-0.5252266,-0.51345134,-0.8786063,-1.0991507,-1.2590979,-1.3919559,-1.4699521,-1.4704278,0.1843513,0.66320765,0.29327372,0.100041814,-0.19890806,-0.49211574,-0.7331979,-0.918627,-1.0374132,-0.8507529,-0.48793614,-0.09766244,-0.14133167,-0.38227904,-0.49735498,-0.63230973,-0.7843949,-0.9513372,-1.0337702,-1.0418525,-1.2203882,-1.289584,-1.1647918,-0.25350356,-0.099219345,0.1888367,-0.10653048,-0.21990371,-0.3968111,-0.5486709,-0.6737494,-0.7952523,-0.8473949,-0.04512646,-0.020711489,-0.16967034,-0.08778345,0.33972397,0.10203318,0.43171483,0.28215742,-0.0093424395,-0.18217418,-0.34379622,-0.46787214,-0.50315475,-0.5294057,-0.59215593,-0.6724214,-0.7305039,-0.77907133,-0.8347888,-0.8300859,-0.81824726,-0.8506407,-0.8658035,-1.1049538,-1.2401433,-1.1692886,-1.0363532,-0.9919224,-1.0764989,-1.0787315,-1.1776171,-1.2225494,-1.2188765,-1.1027465,-1.0433676,-1.2442083,-1.256988,-1.0769877,-1.1441025,-1.1582003,-1.0367907,-1.1066744,-1.2284154,-1.0877314,-1.2175815,-0.8832525,-0.24054104,-0.942271,-0.9788171,-1.006863,-0.93745553,-0.4824686,-0.014166795,-0.82992804,-0.7677897,-0.72426546,-0.41699517,-0.48720866,-0.6644709,-0.71451336,-0.38299176,-0.431902,-0.6489858,-0.6102016,-0.64204884,-0.72007155,-0.7374475,-0.754842,-0.7876375,-0.7427082,-0.7614433,-0.6862207,-0.8161788,-0.827055,-0.8162849,-0.6516072,0.18240881,-0.45750904,0.051132597,-0.70825064,-0.8240824,-0.8417964,-0.8214344,-0.8116334,-0.8012181,-0.7939464,-0.54080045,-0.62551993,-0.5190476,-0.664337,-0.40962815,-0.50685376,-0.7881079,-0.7278619,-0.7817488,-0.7818072,-0.7491465,-0.73656523,-0.6501011,-0.31880614,-0.32501304,-0.23278269,-0.25813353,-0.061587952,0.03892336,0.1758754,-0.30340254,0.26240933,0.43031085,-0.18046063,-0.82495177,-0.93034995,-0.8984786,-0.87056386,-0.79272044,-0.9032484,-0.21643943,0.13082829,-0.04113131,0.2856472,-0.4318378,-0.4866153,-0.39855248,-0.9286716,-1.0011594,-0.8859817,-1.0182794,-0.9869008,-0.94294715,-0.83621395,-0.6596382,-0.51029617,-0.8871349,-0.9852351,-0.62984264,-0.38867435,0.18911636,0.048063442,0.058829166,-0.02407115,0.036084592,-0.033056088,0.0018040612,-0.114985906,-0.16411516,-0.27914414,-0.17888281,-0.1266281,-0.2679496,-0.11229094,-0.58527184,-0.37991607,-0.62313336,-0.48450255,-0.6315291,-0.7427651,-0.2224429,-0.04239475
+0.8759784,0.5898837,0.5788751,0.80642915,0.41247925,0.19211203,0.19345957,0.1494236,0.10378878,0.20235574,0.33690104,1.0136509,1.7224832,1.765152,1.3784943,1.1194222,0.73819065,0.58247143,0.5734785,0.51776075,0.37246746,0.17470711,1.3513474,1.4249452,1.6465778,1.9784555,1.8205535,1.8205085,1.7598834,1.8219212,1.4818884,1.0716996,0.8026521,0.59401405,0.43121397,0.8442594,1.6671183,1.5722363,1.5054944,0.92749983,0.7551339,0.518309,0.42325288,0.32412505,0.6542693,0.5917367,0.4733862,0.41601515,0.654904,1.5944188,1.583172,1.2891419,1.1787097,1.3094454,1.7302625,1.2894207,0.99257123,0.68840736,1.0360073,1.1923044,0.63143814,0.41084442,0.21988088,0.16883448,0.18146509,0.06721494,0.021450497,0.8570312,0.4865293,0.26409197,0.07131419,0.6259146,1.3655181,1.1385685,0.63607746,0.22812763,0.14119202,0.097696535,-0.074046396,-0.054278277,-0.07178625,-0.12916625,-0.15311456,-0.12385949,-0.18112549,-0.1523185,-0.23119873,-0.21513599,-0.23668575,-0.18221757,-0.09482273,-0.0767894,-0.051462613,-0.12957147,-0.12398503,-0.13846838,-0.10870581,-0.100634925,-0.1683465,-0.22056875,-0.13893229,-0.08607637,-0.2069279,-0.18766862,-0.23810071,-0.23982665,-0.21512896,-0.20443231,-0.27611053,-0.2264607,-0.23597884,-0.31169727,-0.24658516,-0.23169231,-0.265799,-0.25598666,-0.260875,-0.26524353,-0.25327846,-0.22498477,-0.20706224,-0.0670548,-0.15753314,-0.22483927,-0.18792576,-0.27026543,-0.2425232,-0.10715135,-0.13167608,-0.20508069,-0.21850088,-0.17900664,-0.11824668,-0.16607013,-0.20745227,-0.24742424,-0.27011353,-0.25665128,-0.2134425,-0.22101569,-0.15251759,-0.14260441,-0.2009533,-0.22006935,-0.20208645,-0.20363265,-0.23021388,-0.1716305,-0.16774133,-0.18473047,-0.21182227,-0.23466375,-0.23499733,-0.19015276,-0.10234726,-0.10646387,0.018094443,0.0841373,-0.09350119,-0.09705188,-0.09741705,-0.1381388,-0.22944936,-0.19410604,-0.13406846,0.66049635,1.6003163,1.5706993,1.0107754,0.69247407,0.4108452,0.20108742,0.11754195,0.103896916,1.7886755,2.3048897,2.3250868,1.8033459,1.438787,1.1055776,0.88145065,0.6988293,0.63863677,0.6864988,0.8828045,0.8613368,0.5918046,0.47897834,0.4233428,0.32658923,0.27816996,0.259629,0.27557474,0.28307816,0.20464641,0.21810201,0.21774608,1.0724884,1.429497,2.0644984,1.6970599,1.3857946,0.96580166,0.8807251,0.8680311,0.78364563,0.703971,1.0630523,0.9410092,0.7784173,0.94486344,1.5035065,1.2013868,1.5685368,1.4380996,0.9871506,0.7970338,0.7070692,0.67420554,0.6406176,0.63764054,0.62697494,0.63337344,0.6367161,0.6215924,0.60318804,0.5859206,0.56829846,0.45816523,0.45515674,0.35580754,-0.11106036,-0.15935233,-0.0030645207,0.77896583,0.5595968,0.35212225,0.28210586,0.14416863,0.13221335,0.33761692,0.39222607,0.3054191,-0.03976304,0.20343426,0.22084028,0.10479697,0.07772712,0.3104584,0.0098280385,-0.048174478,-0.15328658,0.10959383,0.3508103,0.51551706,0.3358803,0.28796467,0.3763839,0.50205475,1.0319682,0.7552527,0.40106675,0.31052613,0.47795004,0.7922528,0.7905044,0.55762684,0.6521989,0.80241066,0.62125283,0.375939,0.544647,0.6545257,0.44601828,0.6759347,0.41876876,0.526924,0.5170421,0.67298055,0.58529615,0.6503093,0.53705734,0.6031201,1.0988879,0.96946734,1.4751599,1.1965709,1.0987124,1.0332783,1.0001285,0.87468934,0.739534,0.7497784,0.68826467,0.99904764,1.014435,0.9627171,1.0368727,1.0801272,0.9073484,0.98808223,0.88661635,0.8068024,0.6619836,0.62300265,0.54895735,0.8779922,0.9605528,1.0412337,0.86482155,1.080964,1.1206087,1.3946073,1.1873758,1.4952967,1.6582901,1.6638215,1.1742873,1.1063697,1.0776327,1.0057448,0.87376225,0.94627243,1.1563869,1.3555532,1.2473693,1.3104782,1.2959871,1.1731019,1.0055094,0.8501822,0.7570021,0.6121752,0.8308505,0.76625824,0.96073323,0.9982019,1.0087761,1.035628,0.6672621,0.68186706,0.9998207,1.0672458,1.3705505,1.365654,1.2883618,1.1068773,1.0881095,1.1484324,1.2594051,1.0795078,1.0268251,1.1152356,0.9505106,0.86914027,1.1617541,1.2919255,0.61513746,1.3420113,0.79190004,1.0509962,0.84387296,0.6428618,1.3758273,1.6747425
+-0.5245994,-0.50110215,-0.50250906,-0.54279864,-0.6148044,-0.64806604,-0.61179066,-0.60322195,-0.60887814,-0.5571834,-0.56831557,-0.59940064,-0.30259812,0.36702675,0.238224,-0.06626705,-0.37589455,-0.5047982,-0.5121482,-0.5364386,-0.5713545,-0.5859801,-0.23179448,0.29463524,0.6390941,0.7321347,0.741599,0.99620295,0.8865181,0.82335615,0.404479,0.15475777,-0.11884483,-0.31098348,-0.41617578,-0.43458104,-0.123522006,-0.10040171,0.094418,-0.2757551,-0.43668348,-0.5218354,-0.53983974,-0.5555297,-0.52480567,-0.5375481,-0.5591073,-0.55674225,-0.6068612,-0.059453256,0.054007,0.039651535,-0.24911416,-0.456564,-0.48592043,-0.14423054,-0.23191124,-0.26256508,-0.42222762,-0.46880925,-0.5829257,-0.6156237,-0.59634686,-0.61700416,-0.60139346,-0.602593,-0.5825762,-0.5534315,-0.5828365,-0.596261,-0.6030952,-0.4563467,-0.0987983,-0.41704297,-0.54008716,-0.5892654,-0.5930034,-0.59531486,-0.6080744,-0.5988587,-0.59173495,-0.59808207,-0.608414,-0.5833189,-0.6109062,-0.63741225,-0.6646726,-0.61231637,-0.6005236,-0.5794246,-0.54046416,-0.012138449,0.35764626,-0.15077505,-0.39505738,-0.49162477,-0.5447749,-0.5635614,-0.5612211,-0.56227905,-0.5671261,-0.6309294,-0.63272023,-0.6205538,-0.6079586,-0.593773,-0.5913199,-0.58587825,-0.59337926,-0.5884038,-0.58687586,-0.58119357,-0.5800078,-0.60519594,-0.63120544,-0.6124539,-0.62891614,-0.6591521,-0.68284774,-0.6796543,-0.67023003,-0.60626346,-0.6528596,-0.6434229,-0.6218013,-0.68522143,-0.65577984,-0.65169007,-0.6564648,-0.658563,-0.6794849,-0.66356516,-0.6113465,-0.6472269,-0.67225754,-0.6724351,-0.6465292,-0.62944525,-0.660842,-0.6480924,-0.65862715,-0.6855947,-0.6777549,-0.677714,-0.66266555,-0.7092325,-0.73301995,-0.6973033,-0.7013568,-0.6917589,-0.68590593,-0.66826236,-0.6630905,-0.6663205,-0.48438263,-0.56848437,-0.6234002,-0.6786307,-0.70436835,-0.69636613,-0.6981604,-0.7275127,-0.7717366,-0.7148406,-0.66813093,-0.6306551,-0.30853778,-0.3787951,-0.60255176,-0.65822804,-0.65396315,-0.65935963,-0.6604225,-0.68757004,-0.22156757,0.8659532,0.8723985,0.41875148,0.06169059,-0.21180582,-0.36576092,-0.4202891,-0.45134616,-0.49484313,-0.51337457,-0.5539289,-0.5825367,-0.6167495,-0.628866,-0.6422262,-0.64382595,-0.6330463,-0.62426937,-0.6116159,-0.6491109,-0.64641523,-0.6390246,-0.6026066,-0.6525835,-0.10309801,-0.3224601,-0.5071711,-0.6166746,-0.62817717,-0.6308488,-0.6320857,-0.60925853,-0.59053415,-0.6322828,-0.6409726,-0.62438476,-0.54014,-0.628957,-0.30747277,-0.32731414,-0.51962954,-0.5553496,-0.6001133,-0.6235956,-0.61376673,-0.63916326,-0.6395037,-0.63807464,-0.653652,-0.6368325,-0.63108665,-0.6445638,-0.6229135,-0.64130825,-0.64128417,-0.1460855,-0.41764462,-0.39788705,-0.34913284,0.17211759,0.4593468,-0.0049849376,-0.09086607,-0.3478852,-0.29779074,0.0013516173,-0.10236811,-0.2743613,-0.5182873,-0.31644627,-0.30025828,-0.58190405,-0.4363224,-0.16381961,-0.7131101,-0.656217,-0.7501288,-0.25574198,-0.0722904,0.17821318,-0.41996336,-0.48123896,-0.1789555,-0.1210443,0.4816519,-0.43639195,-0.8117513,-0.8175609,-0.70235753,-0.38474536,-0.5857173,-0.5821786,-0.08513167,-0.048180602,-0.71154827,-0.7122644,-0.5372904,-0.538555,-0.5604533,-0.5757607,-0.5898271,-0.27060235,-0.25029045,-0.02572716,0.13445652,-0.66888225,-0.69955564,-0.10218438,0.6767075,0.24037328,0.8394444,0.48422158,-0.03260892,-0.30355975,-0.5001544,-0.5621893,-0.5877263,-0.59482753,-0.047016345,-0.122869216,0.4213175,-0.26102492,0.62942195,-0.30098504,-0.20993668,-0.48680145,-0.55158937,-0.63573265,-0.5935572,-0.58956695,-0.5485716,-0.3844751,-0.16267276,-0.14906293,0.10552537,0.044097014,0.40207162,0.59643173,0.42164835,0.5485162,0.5478129,1.1703645,-0.03381429,-0.16065109,-0.30177754,-0.25530535,-0.14067787,0.20047158,0.6618904,0.8975136,0.5439554,0.6392496,1.0639412,0.13525458,-0.020350337,-0.27654946,-0.34777507,0.14067316,-0.34889832,-0.37175363,-0.31916657,-0.3099056,-0.16350758,0.12774083,-0.0678914,-0.35852927,-0.053592794,0.08467038,0.34727138,0.4527359,0.395708,0.25143924,0.26198667,0.20972314,0.14939952,0.08261472,-0.0015100017,-0.076944135,-0.16048995,-0.2329512,-0.04639753,1.204797,0.39644206,1.016792,0.6465756,1.0064034,0.8965404,0.41928637,0.7033514,0.9457724
+0.11657489,-0.0022945032,-0.14543295,-0.26708123,-0.33213368,-0.43620515,-0.44495738,-0.46094155,-0.16208786,-0.15767026,-0.27171075,-0.24661362,-0.30418527,-0.38475588,-0.16478682,-0.31471318,-0.4361987,-0.5482284,-0.5282754,-0.50844276,-0.5139959,-0.52729744,-0.3605992,-0.41493994,-0.1692729,0.518083,0.53646886,0.77004313,0.9361007,0.7447135,0.5578655,0.357497,0.08732013,-0.12307965,-0.22937047,-0.2908926,0.19065604,0.44921213,0.6409213,0.48889947,0.17655432,-0.1386022,-0.29384473,-0.36467704,-0.17811182,0.6839582,0.5304167,0.24938053,-0.061391227,-0.27810264,-0.33970213,-0.4005287,-0.44653606,-0.47114283,-0.45080137,-0.43399775,-0.4612463,-0.46051204,-0.4129069,-0.42521322,-0.46478713,-0.48654902,-0.45957625,-0.47385365,-0.45407236,-0.4396757,-0.42363542,-0.4148792,-0.4081034,-0.41381675,-0.44380486,-0.29870063,-0.19475937,-0.35139564,-0.40793937,-0.4640897,-0.4901564,-0.4827323,-0.47854644,-0.4772104,-0.4545353,-0.46513522,-0.45562488,-0.46164078,-0.47499114,-0.49537665,-0.52256644,-0.49893945,-0.48264158,-0.2626099,-0.08226862,-0.14032495,-0.23841318,0.35051075,0.12371973,-0.19409531,-0.34516725,-0.40539986,-0.43370092,-0.45005262,-0.4788515,-0.5391969,-0.52951705,-0.5250467,-0.5069452,-0.508302,-0.51931125,-0.541167,-0.5283829,-0.5133702,-0.506034,-0.49248952,-0.46550703,-0.4732015,-0.49531484,-0.48004377,-0.47311968,-0.5100157,-0.5602542,-0.54598767,-0.50231016,-0.46731722,-0.4875751,-0.47699946,-0.26507026,-0.17961437,-0.16493881,-0.019588523,-0.18141246,-0.38096395,-0.4574213,-0.4790511,-0.4792084,-0.50301105,-0.5177652,-0.5288273,-0.5262975,-0.50476336,-0.4965762,-0.4913419,-0.49692404,-0.5247401,-0.5160989,-0.51010853,-0.22512871,-0.32303423,-0.46633953,-0.4814803,-0.48674136,-0.5000497,-0.51726425,-0.50892115,-0.4965173,-0.503341,-0.4797805,-0.5201801,-0.5455336,-0.56560344,-0.5656607,-0.5519305,-0.5451502,-0.56318283,-0.59387183,-0.541515,-0.5361798,-0.52787375,-0.37581316,-0.4363426,-0.5563436,-0.57829356,-0.55830026,-0.55508375,-0.5474025,-0.55562305,-0.23395029,0.4592939,0.39118043,0.053225823,-0.18680248,-0.3495964,-0.41691023,-0.4214089,-0.42773408,-0.4443285,-0.4621824,-0.45762855,-0.5609104,-0.5911614,-0.60061926,-0.6346525,-0.6277361,-0.5808883,-0.560978,-0.54667777,-0.57544816,-0.5573021,-0.54713583,-0.5435554,-0.5825383,-0.59988904,-0.5907464,-0.6870992,-0.7289326,-0.7072746,-0.66001207,-0.631777,-0.27363768,-0.07374949,-0.27236307,-0.41674966,-0.46847302,-0.37085396,-0.42066514,-0.46829373,-0.51490986,-0.34070176,-0.41487038,-0.5030055,-0.555895,-0.573038,-0.59294534,-0.61827433,-0.61893106,-0.6348108,-0.62975246,-0.6174539,-0.61566275,-0.61926043,-0.62531984,-0.61548644,-0.31808293,-0.59102654,-0.5518278,-0.5069653,-0.23036367,0.3748328,-0.04873482,-0.130689,-0.306248,-0.30304995,-0.12892884,-0.13168004,-0.20179865,-0.39775535,-0.2916608,-0.3113542,-0.4882825,-0.42918056,-0.28300798,-0.49567485,-0.35919252,-0.47573185,-0.22489315,-0.2639476,-0.07560889,-0.26398185,-0.3420426,-0.18309149,-0.17417508,0.23485264,0.07843717,-0.6910767,-0.6223835,-0.52784276,-0.48611343,-0.22062159,-0.25080284,-0.009821214,0.010989614,-0.5318287,-0.5596152,-0.49167144,-0.5126775,-0.4879545,-0.47335482,-0.4922446,-0.40488964,-0.3406719,-0.068589516,0.33672354,-0.5294878,-0.51167357,0.06267325,0.21119347,0.34434563,0.38288185,0.41884026,0.36818793,-0.1417099,-0.33825287,-0.45782745,-0.47107208,-0.3806898,0.0492251,0.04188583,0.2922758,-0.2200183,0.3563394,-0.27018172,-0.23731458,-0.3836677,-0.40679395,-0.49328583,-0.45559174,-0.44651783,-0.40146935,-0.27215427,0.13805425,-0.0038871095,0.12972829,0.06539313,0.26729593,0.37213856,0.2904101,0.44434237,0.44375354,0.832901,0.4101979,-0.16660675,-0.2647876,-0.22626343,-0.1257503,0.15347305,0.31419742,0.3740809,0.15629548,0.18743509,0.2909886,0.250079,-0.13199547,-0.22213241,-0.26943636,-0.08834287,0.09158875,-0.23895639,-0.31075692,-0.28645396,-0.14616969,-0.08648167,0.19574499,-0.31848,-0.122249074,-0.042357437,-0.00882604,0.07109622,0.037767865,-0.03193318,-0.067790575,-0.1083964,-0.15680015,-0.21694255,-0.26102176,-0.29909587,-0.33914238,-0.366766,-0.3611364,0.56697136,0.6093953,0.6298318,0.65849966,0.9944979,0.99461424,0.60208243,0.5659584,1.0141038
+-0.28371295,-0.6150166,-0.75263995,-0.8276945,-0.88939226,-1.0018308,-1.0172348,-1.0123756,-0.007257454,-0.15512544,-0.17855412,-0.26697162,-0.3890251,-0.51528555,-0.5632262,-0.6549624,-0.77273226,-0.8541933,-0.90492105,-0.9461527,-0.9829612,-1.0023079,-1.0612233,-1.1231984,-0.79784673,-0.28655905,-0.5829517,-0.44863158,-0.3567324,-0.19630641,-0.30655736,-0.3795361,-0.4874667,-0.5885539,-0.6982603,-0.81039953,-0.7886637,-0.70163393,-0.64831203,-0.72471,-0.8513408,-0.9788611,-1.0310322,-1.0426253,-1.0754421,-1.0076807,-0.99818814,-1.0174617,-1.1056505,-1.1529313,-1.2157772,-1.2732437,-1.3038824,-1.2954704,-1.2999737,-1.212622,-1.1959283,-1.2507924,-1.2486213,-1.2554593,-1.280863,-1.3048235,-1.3182724,-1.3273536,-1.3399333,-1.3403767,-1.3386402,-1.3490801,-1.3542752,-1.3640867,-1.3744264,-1.1218152,-1.1499493,-1.1249459,-1.1684515,-1.2953417,-1.3490962,-1.371429,-1.3779933,-1.4089444,-1.3878363,-1.3809485,-1.3906698,-1.4028409,-1.4182597,-1.424051,-1.4395972,-1.4337504,-1.3415688,-1.347864,-1.1587903,-0.6375024,-0.6383909,-0.710227,-0.88605785,-1.1181767,-1.2580357,-1.3250105,-1.359576,-1.3798082,-1.404144,-1.4104073,-1.4286072,-1.4354722,-1.4257431,-1.427239,-1.4384981,-1.4429238,-1.4266478,-1.4153762,-1.4050947,-1.388247,-1.3867416,-1.3787007,-1.378835,-1.3660369,-1.3656449,-1.3583167,-1.3351152,-1.3293422,-1.3229803,-0.5880228,-0.42698693,0.120565675,-0.112770446,-0.023496501,-0.19164485,-0.031019218,-0.18134677,-0.48465693,-0.7384046,0.24997169,0.372611,-0.057272635,-0.43719125,-0.7159888,-0.89402854,-0.99452233,-1.0614938,-1.0982556,-1.0895814,-1.0628618,-1.047281,-0.87834436,-0.44359148,-0.51156926,-0.7379041,-0.9029809,-0.20884895,-0.24456403,-0.54631627,-0.7478334,-0.8691026,-0.8626816,-0.720147,-0.9194491,-1.0096014,-1.1070173,-1.1687887,-1.1984379,-1.214719,-1.2220324,-1.2475708,-1.2503886,-1.2696551,-1.2275486,-0.96921647,-1.1358198,-1.2430589,-1.2765701,-1.2822244,-1.2844809,-1.2598118,-0.29680437,0.8828301,0.37852052,0.2184627,-0.019409657,-0.22400936,-0.3907144,-0.54777855,-0.30619925,-0.21501738,-0.36922413,-0.44131136,-0.637485,-0.85139084,-0.91067505,-1.0027201,-1.056304,-1.0315498,-1.0341089,-1.046895,-1.0839348,-1.0259483,-1.068787,-1.0836049,-1.1144533,-1.1614959,-1.1616485,-1.13948,-1.2087263,-1.2483281,-1.2066724,-1.1628407,-1.1519427,-1.0315433,0.09712408,-0.07394151,-0.24049518,-0.38273335,-0.45838588,-0.508201,-0.5196703,-0.5466722,-0.6471652,-0.7536477,-0.7794134,-0.79381716,-0.7830603,-0.8053543,-0.8490709,-0.88566,-0.92002094,-0.9364046,-0.9579263,-0.97291756,-0.9923732,-0.9998144,-1.0128198,-0.8658712,-1.0829549,-1.0273843,-0.8711881,0.13056165,-0.3181655,-0.6198048,-0.74986994,-0.8177414,-0.779191,-0.74407154,-0.8663052,-0.94213915,-0.9647839,-0.9208214,-0.9267869,-0.96435523,-0.92476106,-0.9145045,-1.0003434,-0.9968549,-0.89369,-0.7119322,-0.72675097,-0.5961515,-0.65303886,-0.7787963,-0.634259,-0.45947677,0.064511605,-0.70059645,-0.9248837,-0.85901546,-0.865402,-0.8120927,-0.52912414,-0.50640833,-0.21454078,-0.5458004,-0.59821445,-0.5949674,-0.6578456,-0.61989766,-0.6469489,-0.60204244,-0.5639052,-0.51870716,-0.5658622,-0.4416098,-0.19479334,-0.6057904,-0.59492123,-0.14251903,-0.0324701,-0.3242179,-0.343581,-0.29169285,-0.06682021,-0.064033024,-0.19156101,-0.59645396,-0.647161,-0.68592787,-0.5840166,-0.33745134,-0.28669727,-0.43752408,0.014114611,-0.5108315,-0.62878317,-0.6241946,-0.6205049,-0.639674,-0.60301363,-0.5897549,-0.6543704,-0.6823448,-0.5996447,-0.5714158,-0.41218483,-0.58719987,-0.4198193,-0.1023087,0.294838,0.3875419,0.6737362,0.5249705,0.36415613,-0.087917425,-0.5273971,-0.66387856,-0.7229424,-0.55313087,-0.1923753,-0.046890073,-0.23602611,-0.043981545,-0.055938087,-0.6017322,-0.8474543,-0.80384266,-0.7593945,-0.7335135,-0.6326885,-0.7681045,-0.69466364,-0.6677366,-0.6390095,-0.6831216,-0.8495778,-0.8184375,-0.6029731,-0.43491596,-0.34703183,-0.24364084,-0.38117936,-0.57206094,-0.55948627,-0.4617331,-0.4326414,-0.40249354,-0.37840325,-0.42651874,-0.4080515,-0.3883193,-0.5133193,-0.21574962,-0.5854204,-0.47126895,-0.60576254,-0.52604365,-0.60204524,-0.6690469,-0.62107664,-0.49450934
+-1.2128737,-1.4811369,-1.4753745,-1.515041,-1.5415266,-1.5908793,-1.487581,-0.9328805,-0.22104856,-0.29497087,-0.21796197,-0.19589302,-0.4811479,-0.811919,-0.920022,-1.0105472,-1.2562603,-1.4494745,-1.5156815,-1.5522571,-1.5783445,-1.6028733,-1.6258957,-1.6366742,-1.5571408,-1.5196697,-1.5399616,-1.030852,-0.7263036,-0.58876485,-0.53522706,-0.770138,-1.11453,-1.3654294,-1.4597564,-1.2752638,-0.38017026,-0.34532633,-0.6076374,-1.0915582,-1.3297412,-1.5010937,-1.5871743,-1.4759018,-1.1903164,-1.4008627,-1.3889349,-1.164271,-1.3359673,-1.592252,-1.6825383,-1.7122025,-1.7438345,-1.7691258,-1.7379582,-1.7377645,-1.7210562,-1.696254,-1.6800634,-1.6631205,-1.6411197,-1.6228062,-1.620547,-1.6116943,-1.5879834,-1.5821496,-1.5831245,-1.6008068,-1.6011994,-1.609446,-1.6133509,-1.3419642,-1.3221848,-1.5257182,-1.6329571,-1.6560225,-1.6684542,-1.6658216,-1.641568,-1.6319425,-1.5748116,-1.5629557,-1.585109,-1.5887535,-1.6042502,-1.606811,-1.5849822,-1.560106,-1.3875368,-1.1980772,-1.0652565,-0.8061242,-0.5901806,-0.87608874,-1.2379413,-1.4501622,-1.5379283,-1.5527633,-1.5596726,-1.5626508,-1.5733863,-1.5760391,-1.5718826,-1.571507,-1.5674132,-1.5574896,-1.5641241,-1.5911254,-1.0270736,-0.8020231,-0.8794135,-0.8635638,-1.0909958,-1.3559704,-1.4609005,-1.4662315,-1.4466453,-1.2331905,-0.99797046,-1.1417795,-1.0021129,-0.85447305,-0.29897255,-0.2684654,-0.18802702,-0.051299147,-0.33076918,-0.44991148,-0.724917,-0.9963038,-1.214383,-0.16567421,-0.12036904,-0.45062238,-0.8642954,-1.0914396,-1.2259753,-1.287333,-1.3002784,-1.1381084,-0.99213386,-0.99381626,-0.75517774,-0.56375206,-0.3690397,-0.45978463,-0.7604736,-0.859112,-0.5671063,-0.50901955,-0.8413969,-1.1416681,-1.2366481,-0.9975889,-0.5567379,-0.56189865,-0.7745031,-1.0917208,-1.2552783,-1.3082345,-1.3161488,-1.3359967,-1.3606579,-1.2656558,-1.2314608,-1.3814371,-1.3918883,-1.3988609,-1.4272447,-1.4184364,-1.410126,-1.399964,-1.0619482,-0.012534879,0.15112162,0.15607092,-0.10429976,-0.5261582,-0.83435154,-0.99019635,-0.90366197,-0.3141322,0.24194181,0.114107974,0.018673263,-0.07200716,-0.4070834,-0.63294274,-0.7652006,-0.96717215,-1.0664842,-1.1475601,-1.1838104,-1.2364676,-1.2052922,-1.2360274,-1.2562735,-1.3215444,-1.3821162,-1.4132495,-1.2626834,-1.2883441,-1.3491762,-1.3201075,-1.3657367,-1.3284335,-1.351743,-0.28622416,-0.10360453,-0.39843497,-0.624023,-0.7655444,-0.86434287,-0.89089894,-0.89589304,-0.9643223,-1.0890638,-1.199471,-1.17255,-1.1516004,-1.1467884,-1.1874912,-1.2266345,-1.2611709,-1.257576,-1.2707757,-1.2767601,-1.2534091,-1.2552865,-1.3186469,-1.2403963,-1.3240678,-1.2592287,-1.3347254,-0.44725192,0.0402117,-0.26496172,-0.6226705,-0.88730407,-0.856022,-0.77549505,-0.6593882,-0.9187701,-1.0635076,-1.0774225,-1.0339534,-1.1119167,-1.1723409,-1.129383,-1.1348019,-1.154091,-1.1515546,-1.0824107,-1.0542374,-1.0238346,-0.98552954,-0.96994424,-0.94823384,-0.95244,-0.098890536,-0.12824002,-0.80771685,-0.97837734,-1.0019089,-0.83031833,-0.19948575,0.0023054853,0.029837929,-0.14999771,-0.7675506,-0.86992395,-0.8589305,-0.854403,-0.820961,-0.63505936,-0.29897332,-0.51183313,-0.5971653,-0.49478424,-0.38402194,-0.56248164,-0.8640991,-0.44840842,-0.38279176,-0.23762631,-0.24977708,-0.26693043,-0.2777117,-0.054096468,0.018039316,-0.29599047,-0.60964787,-0.7077394,-0.56469554,-0.21856934,-0.11328895,-0.45642662,-0.0590119,-0.41534674,-0.87576354,-0.9523772,-0.9834552,-0.9815674,-0.8800737,-0.8333272,-0.86820036,-0.8858942,-0.86689323,-0.78296256,-0.7807473,-0.88703364,-0.7070177,-0.61612046,-0.5682513,-0.5794117,-0.5376303,-0.4566666,-0.14920801,0.020193703,-0.041887872,-0.4154824,-0.5693829,-0.4871474,-0.31229436,-0.17137682,-0.118253015,-0.13691899,-0.1662944,-0.3146543,-0.8492026,-1.0377315,-0.9057348,-0.89659125,-0.18079048,-0.71768653,-0.8428103,-0.84950304,-0.77300113,-0.77704775,-0.9144542,-1.1403815,-1.0749891,-1.051318,-1.1069536,-1.1441823,-1.1991197,-1.2820085,-1.3176911,-1.3341122,-1.3519077,-1.3609965,-1.3806586,-1.39256,-1.4252005,-1.411787,-1.3147728,-0.54562783,-0.51194227,-0.7705145,-0.90668166,-1.1002686,-0.884575,-1.0801709,-1.2273608,-1.015847
+-1.3372252,-1.3362832,-1.3701594,-1.4117969,-1.4399874,-1.4572812,-1.4283037,-0.5353,-0.44504583,-0.14737207,0.20299393,-0.111084096,-0.47069693,-0.73744136,-0.9787047,-1.096186,-1.2611794,-1.3556335,-1.4105322,-1.4510907,-1.4487406,-1.4653803,-1.493592,-1.517055,-1.5146909,-1.5007364,-1.561866,-1.4552617,-1.1412376,-1.0074673,-0.21707255,-0.5588726,-0.71529585,-1.0382053,-1.2256472,-1.2797192,-0.0013841316,-0.47281575,-0.6914286,-1.0523859,-1.1974674,-1.3115504,-1.3830693,-1.3980076,-1.4095001,-1.472003,-0.91486454,-0.41857326,-0.6220021,-1.0089219,-1.2909505,-1.4390662,-1.516532,-1.5563335,-1.5678957,-1.5883266,-1.5973302,-1.5794747,-1.5641364,-1.5539407,-1.5567746,-1.5590192,-1.5589213,-1.5407965,-1.5290222,-1.5320122,-1.5157841,-1.5353558,-1.5425625,-1.5598526,-1.5617733,-1.5315617,-1.5375497,-1.5731487,-1.5848767,-1.5796912,-1.5831581,-1.5849724,-1.5690875,-1.5353279,-1.4826038,-1.5162632,-1.5211107,-1.5142272,-1.5234257,-1.5260553,-1.527302,-1.3736143,-0.97049975,-1.037989,-0.9558512,-0.88638186,-0.69105613,-0.9346924,-1.1946366,-1.3600904,-1.4225941,-1.4456911,-1.4482464,-1.4605227,-1.4842916,-1.4991498,-1.4950265,-1.493195,-1.4844154,-1.487619,-1.4966555,-1.491823,-1.4209373,-1.1765943,-0.48786104,-0.7114531,-0.8705088,-1.1131673,-1.2162819,-1.2553883,-1.1189759,-0.96048737,-1.0111576,-1.0191641,-0.7896622,-0.8110907,-0.7999661,-0.2296358,-0.5218537,-0.58055854,-0.7874456,-0.45663607,-0.744033,-0.9169619,-1.0262024,-0.30298096,-0.60257447,-0.78044915,-0.89647275,-1.0542048,-1.1347415,-1.1964412,-1.2171686,-1.0480051,-0.9130242,-1.0075139,-0.8668661,-0.28788164,-0.41638052,-0.5961772,-0.8306184,-0.88495076,0.0044528395,-0.22583431,-0.5253761,-0.7494365,-0.89284986,-1.0132675,-0.7206996,-0.6756865,-0.82567143,-1.0386453,-1.1371853,-1.1520182,-1.1221613,-1.175503,-1.1957986,-1.23667,-1.2805029,-1.3314588,-1.3159323,-1.2863029,-1.306155,-1.2889376,-1.290735,-1.2939113,-0.70626765,-0.36487362,-0.23252866,-0.32658875,-0.59272635,-0.86627865,-0.99805367,-1.0267953,-0.974175,-1.0640217,-1.0224607,-0.88230294,-1.0186689,-1.0663643,-1.0950139,-1.1888653,-1.1879439,-1.2076163,-1.2063789,-1.0402066,-1.142406,-1.1822243,-1.1891549,-1.1983398,-1.2171082,-1.2475901,-1.2761232,-1.2793003,-1.2130296,-1.2294343,-1.2467809,-1.2354276,-1.269742,-1.2594396,-1.2744229,-0.7290835,-0.62835777,-0.80412745,-0.91452706,-1.0484066,-1.0933459,-1.1160091,-1.0754449,-1.113038,-1.1801984,-1.2145257,-1.1939268,-1.1627188,-1.1510546,-1.1743128,-1.1763823,-1.1972495,-1.2015387,-1.2204156,-1.2330973,-1.2208059,-1.2133589,-1.236794,-1.1835082,-1.2590858,-1.2164108,-1.3115425,-0.014706247,-0.0952569,-0.28521094,-0.45439243,-0.5918946,-0.58615637,-0.7028572,-0.30872828,-0.4972281,-0.70067143,-0.73624176,-0.68324876,-0.73123646,-0.8156158,-0.8223226,-0.8287122,-0.8182406,-0.8227079,-0.8811234,-0.88151383,-0.8948107,-0.90207493,-0.925369,-0.9348291,-0.939579,-0.15986636,0.0073279813,-0.41403067,-0.63887656,-0.62646306,-0.6685818,0.5183725,0.17217007,0.1711375,0.16340262,-0.24338242,-0.20097673,-0.28784943,-0.40526825,-0.39225295,-0.070631765,0.26805812,0.096654475,0.13053882,0.064075954,-0.009388424,-0.09982861,-0.13358974,-0.11948698,-0.302687,-0.099467136,-0.10925575,-0.19398722,-0.18610793,-0.09199565,-0.00030443072,-0.009956352,-0.036940597,-0.16815951,-0.23112547,0.07993987,0.29171604,0.058937028,0.15454435,-0.06259703,-0.45470124,-0.7081851,-0.7866862,-0.77798223,-0.67599404,-0.6779802,-0.7069063,-0.7574719,-0.7020314,-0.6668911,-0.66415787,-0.68239987,-0.6572241,-0.6222414,-0.5802974,-0.6059428,-0.6289618,-0.6225151,-0.18063608,-0.051855795,-0.13146994,-0.25870663,-0.40046346,-0.44268113,-0.19502094,0.31756204,0.09829063,0.05107314,-0.09262697,-0.21544233,-0.5470846,-0.69786584,-0.6013582,-0.38795447,0.6564362,0.031163104,-0.30603507,-0.41435987,-0.41226232,-0.45407748,-0.54472286,-0.7170011,-0.6864842,-0.7479477,-0.8027824,-0.86847484,-0.9563031,-1.0115438,-1.0485003,-1.0705166,-1.124064,-1.1181229,-1.1368768,-1.1509086,-1.1750302,-1.1913688,-1.2283994,-0.101336725,-0.4758193,-0.70065236,-0.81703806,-0.9656993,-0.6087599,-0.82863665,-1.0120311,-0.9630312
+-1.7230633,-1.5271477,-1.4682963,-1.4810947,-1.4539273,-1.4414245,-1.4065913,-0.8778477,-0.97822213,-0.7697553,-0.5401311,-0.9330958,-1.1925367,-1.3657613,-1.4451793,-1.4585781,-1.4607899,-1.4594045,-1.4654691,-1.4746947,-1.4777849,-1.4817505,-1.4684052,-1.4766841,-1.5035434,-1.5130613,-1.4959004,-1.5074006,-1.4744657,-1.1161648,-0.849427,-1.197822,-1.3870654,-1.455998,-1.469595,-1.4203689,-0.9673486,-1.1856313,-1.3520021,-1.4435835,-1.4644397,-1.4797168,-1.4888866,-1.4736371,-1.4778366,-1.4809537,-1.4729711,-0.9991262,-1.2164987,-1.3909059,-1.4614296,-1.4971199,-1.5032651,-1.5056882,-1.5180031,-1.5258248,-1.5171212,-1.507134,-1.503818,-1.4930844,-1.4906031,-1.4961569,-1.500083,-1.5141459,-1.541253,-1.5573661,-1.5649009,-1.547169,-1.5222414,-1.5131469,-1.4869422,-1.464737,-1.4718677,-1.502365,-1.5072421,-1.5181462,-1.51719,-1.5217061,-1.5315597,-1.5431336,-1.5250342,-1.5011568,-1.50835,-1.5011301,-1.5046983,-1.500097,-1.4947424,-1.4823403,-1.4868639,-1.4420369,-1.3292902,-1.329226,-0.95746243,-1.3085492,-1.4194682,-1.4666638,-1.469447,-1.4532452,-1.4616106,-1.4770164,-1.4910307,-1.5056943,-1.5060377,-1.4938023,-1.4873725,-1.4856617,-1.4672041,-1.4444455,-1.4169269,-1.4213986,-1.4167709,-1.3934567,-1.4286942,-1.4426014,-1.4040538,-1.3952563,-1.4041709,-1.4068604,-1.4070673,-1.3772271,-0.89930737,-1.0549842,-0.9890022,-1.1173681,-1.0692102,-1.074345,-0.93680584,-1.1447947,-1.3332621,-1.3846104,-1.296153,-0.86460346,-0.97141945,-1.1735111,-1.2839463,-1.3182929,-1.3195126,-1.3483801,-1.3480828,-0.97648287,-0.7493919,-0.8601619,-0.8895146,-1.0007544,-1.093379,-1.2840674,-1.3393142,-1.3062317,-1.303705,-1.3708723,-1.3602993,-1.3614277,-1.3379896,-1.2945497,-1.2773354,-1.3234075,-1.3724729,-1.3849616,-1.3575013,-0.58495975,-0.4914046,-0.94451284,-1.2441013,-1.331922,-1.345832,-1.3152947,-1.329316,-1.3745344,-1.3955109,-1.3848772,-1.3798716,-1.3624215,-1.2591872,-1.2203999,-0.92746663,-1.1360804,-1.2953821,-1.332543,-1.3264879,-1.2475518,-1.2800229,-1.2477357,-1.2412735,-1.253937,-1.0845617,-1.1796714,-1.3047128,-1.3364921,-1.3305848,-1.3384973,-1.3444785,-1.3314636,-1.3054087,-1.3187898,-1.3231735,-1.336945,-1.3375485,-1.3531058,-1.3598404,-1.3551581,-1.3180062,-1.3228983,-1.3216548,-1.3277154,-1.3295246,-1.3261126,-1.2937416,-1.243746,-1.2531445,-1.2454433,-1.2681755,-1.2537975,-1.2530351,-1.2531402,-1.2868418,-1.2875527,-1.2827239,-1.1082321,-1.1678151,-1.2406988,-1.2577776,-1.2597513,-1.2376938,-1.2686164,-1.2669611,-1.2670405,-1.2600429,-1.2771544,-1.2705076,-1.2745572,-1.2999144,-1.3003471,-1.3029252,-0.9872234,-0.2389482,-0.3451113,-0.65020144,-0.86561894,-1.0650737,-1.1592011,-1.205086,-0.58367467,-0.63401586,-0.90281355,-1.0094717,-1.0454863,-1.1279442,-1.2022691,-1.2317039,-1.245841,-1.1935269,-1.1927054,-1.2047741,-1.2283145,-1.2198448,-1.2216369,-1.2209673,-1.2142494,-1.210614,-1.1183013,-1.1643952,-1.2350457,-1.2603803,-1.2460814,-1.158278,-0.19957873,-0.028742515,-0.0053360537,0.04001566,-0.34351873,-0.50653505,-0.65595615,-0.77877533,-0.85721743,-0.35600507,0.20260662,-0.060602985,-0.27697766,-0.43098325,-0.57092434,-0.7055407,-0.8197123,-0.91473365,-1.0209489,-1.079809,-1.1197672,-1.1053035,-1.0667734,-1.0575893,-1.0899906,-1.0416456,-1.0825483,-1.1497018,-0.99428606,-0.44118017,0.22163883,-0.23434407,-0.38618693,-0.48203385,-0.66723263,-0.9024832,-1.0687169,-1.1956068,-1.2350414,-1.2571708,-1.2912203,-1.3070164,-1.299585,-1.3034358,-1.30552,-1.294495,-1.2984025,-1.2511489,-1.2364447,-1.2357001,-1.2440559,-1.2606823,-0.7326716,-0.71654344,-0.8989122,-1.0536022,-1.1853065,-1.2271484,-0.744838,0.19232163,0.04422096,-0.3163596,-0.63347894,-0.894559,-1.0777676,-1.1918497,-1.1931244,-0.896382,0.2658807,-0.45072484,-0.8681531,-1.1181898,-1.2534788,-1.2959015,-1.3387122,-1.3495109,-1.3531147,-1.3678994,-1.3623419,-1.3687874,-1.3726475,-1.3692812,-1.3715374,-1.3812835,-1.3742399,-1.3705715,-1.3782485,-1.3866088,-1.3976555,-1.3950031,-1.3949931,-1.0537775,-1.2135932,-1.3411677,-1.4000578,-1.4186839,-1.4341885,-1.4367027,-1.450685,-1.475548
+-1.7681934,-1.7318962,-1.6759627,-1.6913874,-1.6731784,-1.6647583,-1.5899923,-1.313261,-1.4462124,-0.7493212,-0.6904406,-1.0859046,-1.3887099,-1.5742481,-1.6590874,-1.6493304,-1.6474073,-1.6246828,-1.621728,-1.6357046,-1.6256768,-1.6242325,-1.6382917,-1.6701264,-1.6732409,-1.7025824,-1.6906766,-1.6881803,-1.6981397,-1.6781958,-1.6390936,-1.6835794,-1.7009571,-1.7002773,-1.6493692,-1.6254152,-1.6404207,-1.6323862,-1.6543227,-1.6720803,-1.6810391,-1.7032609,-1.6902282,-1.6575471,-1.6574928,-1.6525671,-1.6448088,-1.6289408,-1.6557239,-1.6499081,-1.642393,-1.6593404,-1.6617596,-1.6665044,-1.6781363,-1.7047808,-1.7139645,-1.7027305,-1.6708856,-1.6560467,-1.6572582,-1.673167,-1.696309,-1.7112653,-1.7287693,-1.7143176,-1.7043344,-1.6792743,-1.6611128,-1.6575844,-1.6247555,-1.6134752,-1.618673,-1.6485795,-1.674402,-1.678566,-1.6858377,-1.6935421,-1.7035712,-1.6977901,-1.6791489,-1.626919,-1.6484293,-1.6393663,-1.6352307,-1.6409719,-1.6176777,-1.6385131,-1.6363153,-1.3404151,-0.74431956,-1.1585178,-1.4435805,-1.5619904,-1.5989256,-1.616885,-1.5973387,-1.5919482,-1.5995755,-1.6041375,-1.6301103,-1.6359253,-1.6149548,-1.6198848,-1.6242709,-1.60039,-1.5818284,-1.5624614,-1.5373199,-1.5541036,-1.5597548,-1.5612648,-1.505018,-1.5150391,-1.483686,-1.4886851,-1.5186882,-1.4962653,-1.490967,-1.4712352,-0.61787826,-0.8157816,-0.4785632,-0.9365946,-1.2320144,-1.3849427,-1.4637051,-1.5124899,-1.5568137,-1.5594428,-1.4990875,-1.4307668,-1.4120595,-1.4489298,-1.4991902,-1.5088336,-1.5085363,-1.5130227,-1.4974794,-1.4641465,-1.4413829,-1.4079566,-0.95125985,-0.9757018,-1.3017833,-1.4651774,-1.5119486,-1.4996636,-1.5211658,-1.5601524,-1.5891817,-1.5860221,-1.5456533,-1.4690983,-1.4494233,-1.5080953,-1.536385,-1.5503191,-1.524632,-1.2074312,-1.1673137,-1.4411712,-1.5336266,-1.534755,-1.5111603,-1.4865395,-1.5194879,-1.5730473,-1.5748754,-1.5612772,-1.5852098,-1.5226498,-1.4151995,-1.3096166,-1.3061306,-1.455902,-1.5339957,-1.5515537,-1.396831,-1.4296792,-1.4483852,-1.4074831,-1.4115336,-1.4378269,-1.4579763,-1.5040176,-1.5726393,-1.5499948,-1.5484729,-1.5642879,-1.5616333,-1.5242479,-1.5243134,-1.5341723,-1.5403751,-1.5556294,-1.560117,-1.5623035,-1.5573274,-1.5586177,-1.5395623,-1.5393747,-1.5490624,-1.544229,-1.5238025,-1.5088962,-1.4822004,-1.4351847,-1.4828827,-1.4846681,-1.4737296,-1.4500873,-1.4618337,-1.4561257,-1.4906266,-1.5228307,-1.5103981,-1.5215681,-1.5150938,-1.5118806,-1.51723,-1.5020163,-1.4887121,-1.4887013,-1.51041,-1.5126177,-1.487077,-1.4940559,-1.5018545,-1.4874755,-1.5132282,-1.504153,-1.5217364,-1.4294333,-1.1307755,-1.283201,-1.4171036,-1.4660928,-1.503544,-1.5187982,-1.488688,-1.433408,-1.4804549,-1.5227875,-1.5456748,-1.4895834,-1.4748378,-1.5300368,-1.5408111,-1.4829446,-1.3775134,-1.4105694,-1.4699299,-1.5031238,-1.4940166,-1.4873686,-1.4862239,-1.4990196,-1.5207903,-1.441625,-1.4135869,-1.5000582,-1.5050145,-1.4901059,-1.3672101,-0.5222955,-0.5266475,-0.25273535,-0.28514454,-0.6561698,-0.80189204,-1.0078135,-1.1727616,-1.2798901,-1.3083367,-0.35619715,-0.4392562,-0.55030084,-0.7430394,-0.9199196,-1.0721055,-1.2023497,-1.3172073,-1.4047868,-1.43533,-1.4546182,-1.4214361,-1.3854117,-1.3008893,-1.2892524,-1.3129244,-1.3554302,-1.4503225,-1.3500082,-0.68816316,0.15425104,-0.39703935,-0.61595887,-0.5476818,-0.79956406,-1.0975327,-1.2805697,-1.4113712,-1.4632959,-1.484855,-1.5014362,-1.5190058,-1.5216291,-1.510352,-1.5081903,-1.5226549,-1.5169567,-1.5155269,-1.5202832,-1.5001221,-1.5402615,-1.5311852,-1.3232442,-1.3777937,-1.458601,-1.492816,-1.512235,-1.5027537,-0.65626746,0.64298725,0.25711516,-0.16279805,-0.48653424,-0.7728996,-1.0193586,-1.2017465,-1.276439,-1.3479881,-1.3804054,-1.4876629,-1.4895337,-1.5033615,-1.524626,-1.5109916,-1.5566756,-1.5447528,-1.539302,-1.5464474,-1.5355798,-1.5524606,-1.56236,-1.5714507,-1.5801201,-1.5861274,-1.5805281,-1.6022167,-1.5993441,-1.6075933,-1.6160657,-1.6074611,-1.6063786,-1.3740661,-1.5497336,-1.6394217,-1.6528716,-1.6561695,-1.6732488,-1.6532469,-1.6646641,-1.6854078
+-0.25216278,-0.057885133,-0.022873871,-0.03825546,-0.03284269,-0.046783544,-0.007917322,0.0064598247,-0.015888937,0.15302572,0.09412537,0.039862357,0.010858037,-0.007952414,-0.03341707,-0.033294804,-0.06164754,-0.06584663,-0.06615216,-0.065747015,-0.067654826,-0.07179663,-0.060702108,-0.0644381,-0.053070433,-0.04466947,-0.056074746,-0.0569079,-0.04190018,-0.05800221,-0.048946403,-0.06330236,-0.057846434,-0.074175544,-0.07408946,-0.03697654,-0.029967286,-0.02560658,-0.038431786,-0.055891864,-0.056366764,-0.065736584,-0.046791725,-0.04467792,-0.052692465,-0.047488756,-0.046587817,-0.042989977,-0.044043444,-0.071040936,-0.059410848,-0.046077974,-0.040962033,-0.04618468,-0.04535801,-0.04014475,-0.05206836,-0.062009566,-0.049797766,-0.044536002,-0.049156077,-0.051898427,-0.05089187,-0.032765456,-0.007245399,-0.013404302,-0.030387081,-0.063964255,-0.06996777,-0.060702704,-0.047981493,-0.057237662,-0.051711522,-0.02879072,-0.04296062,-0.057652213,-0.06243939,-0.051570125,-0.01500506,-0.015545495,-0.0584838,-0.009178244,0.005873956,-0.007928424,-0.027572684,-0.047852226,-0.046008073,-0.01915837,-0.00016554445,-0.0058765784,-0.015010498,-0.015842937,-0.019993104,-0.009087302,-0.004334308,-0.013967283,-0.022205152,-0.0337302,-0.021283902,-0.0060448423,0.00037375838,-0.005636804,-0.01750607,-0.016285874,-0.013096698,-0.011296637,-0.016256444,-0.017858274,-0.018963806,-0.012440361,0.0046877787,0.007386349,0.011981197,-0.010393731,0.03154955,0.024830677,0.026981913,0.015936218,0.09568318,0.013120927,0.57800114,0.3238433,0.20288032,0.123632856,0.09861042,0.093506284,0.07796725,0.069561295,0.06776215,0.04138563,-0.0034673586,-0.040259324,0.047975235,0.039273657,0.05664731,0.040724434,0.041559555,0.024594136,0.0043172613,0.023181476,0.012084864,0.0039644316,-0.015189491,-0.0048284903,0.0025849715,3.5770237e-05,-0.009975828,-0.006829478,-0.011848651,-0.016835384,-0.00020880252,0.0022253916,-0.008707263,-0.009658597,0.016209014,0.01288747,-0.0005104169,-0.017414756,0.17646083,1.0964406,0.5337723,0.35780606,0.2462154,0.1262064,0.09619249,0.08994574,0.09777512,0.09199371,0.063460894,0.056841202,0.045873396,0.023788057,0.06153954,0.07629922,0.061239295,0.019900851,0.014571942,0.035305224,0.059724547,0.065499164,0.036077432,0.06271789,0.054965407,0.046367936,0.041551508,0.065448195,0.020675741,-0.011990316,-0.007965006,-0.015596248,-0.040898986,-0.0067570433,-0.007920288,-0.0062198564,0.0010218099,0.0039649084,-0.00088775903,-0.027401634,-0.045918263,-0.036009915,-0.046783783,-0.030534305,-0.005248271,0.019838855,0.01457227,-0.006912984,-0.0062773004,0.03984774,0.0023883656,-0.01162941,-0.023459323,-0.032371156,-0.018658541,-0.0075980797,-0.0065770373,-0.01793135,-0.044008695,-0.05232481,-0.008216642,-0.038332023,-0.043520965,-0.037831314,-0.037785776,-0.04023365,-0.06187489,-0.057677425,-0.050032414,-0.05308757,-0.05294516,-0.027722217,-0.045107,-0.06357583,-0.06404748,-0.021768399,0.012352489,-0.044485785,-0.06753885,-0.05846057,-0.07860684,-0.05608494,-0.0032598004,-0.053969495,-0.06403493,-0.046872385,-0.09699542,-0.07456089,0.15349066,0.03184683,-0.058989264,-0.09384752,-0.089252286,-0.07712547,-0.07074302,-0.07651857,-0.09871928,-0.094299205,-0.093945794,-0.086224355,-0.10161222,-0.10097117,-0.046024106,-0.06535394,0.009316497,-0.037927993,0.4042703,0.6541174,0.44762883,0.24818575,0.4869572,0.2788502,0.22390631,0.1749945,0.14220169,0.095336795,0.08303044,0.19007872,0.13772261,0.06941188,0.07170864,0.06386875,0.00079669803,0.013934739,0.03331556,0.024411,-0.020220928,-0.03530135,-0.044984244,-0.054057844,1.0109065,0.77414435,0.42662778,0.38374326,0.31349272,0.28101426,0.16523683,0.26198444,0.15048937,0.09134738,0.15476212,0.08261345,0.055034213,0.041465543,0.036591075,-0.002541609,-0.02442304,-0.0371551,-0.051271923,-0.04844881,-0.044990577,-0.052575,-0.0715558,-0.06378872,-0.034661256,-0.015193202,-0.020605184,-0.039439537,-0.06275842,-0.011870004,0.017478056,-0.023236685,1.2144446e-06,-0.031461887,-0.07139348,1.1749715,0.86053145,0.4898136,0.3919068,0.31707102,0.24826291,0.18106367,0.12128979,0.08556832,0.043025248,0.022185482,0.01751978,0.02736225,0.010354899,-0.03789153,-0.047367387,-0.030159019,-0.033809774,-0.03720296,-0.059829764,-0.057638966,-0.05692502,-0.060326852,-0.06101481,-0.0558457,-0.04788535,-0.050597154,-0.048443086,-0.055396535,-0.066108935,-0.07565748,-0.064838715,-0.031178854,-0.011882119,-0.069593154,-0.063633434,-0.07311655,-0.064628504,-0.04658889,-0.073470734,-0.08673378,-0.07726162
+0.17193945,0.40431648,0.5652643,0.6275954,0.6962862,0.6790788,0.7577126,0.7028675,0.67851233,0.7601154,0.73782665,0.7262712,0.7045755,0.68175644,0.66722566,0.65222424,0.55994403,0.5653123,0.5788993,0.6168908,0.6075775,0.63896006,0.6421883,0.63602346,0.632847,0.6052596,0.5920634,0.60838675,0.598148,0.6002525,0.5876784,0.5763663,0.5775813,0.5847709,0.6056068,0.6056935,0.6002358,0.60414636,0.6099199,0.593344,0.6009968,0.61394143,0.6581577,0.6469281,0.62681884,0.60735935,0.5954101,0.58700335,0.5933597,0.59526384,0.6100874,0.5971275,0.604236,0.6382182,0.59981155,0.57694405,0.5819984,0.6181937,0.5958488,0.5978718,0.58716255,0.59380007,0.59640306,0.61888504,0.65473264,0.6734437,0.67623323,0.63670826,0.6117488,0.62246203,0.6186824,0.59902084,0.5936231,0.6080315,0.6030126,0.5901387,0.5937282,0.6114544,0.6755384,0.6400726,0.6545795,0.6729982,0.66738605,0.69468296,0.6609536,0.6214636,0.61930954,0.64343953,0.6736114,0.68571067,0.68645835,0.66800874,0.652661,0.66203666,0.68146414,0.6975051,0.71130675,0.673354,0.67207575,0.68073535,0.68804795,0.67383146,0.6637827,0.67845273,0.6773958,0.6732978,0.67963153,0.67009157,0.6821444,0.6967435,0.70549035,0.70562005,0.71125746,0.685387,0.6839302,0.71241355,0.71167433,0.70882994,0.71329236,0.70031726,0.6857852,0.6939803,0.6743681,0.6750251,0.6800156,0.6829753,0.68381476,0.69203955,0.6922053,0.6996085,0.78735393,0.7435061,0.7177872,0.68864584,0.69897074,0.7028021,0.70162547,0.7075025,0.70312333,0.6962178,0.6829393,0.6893343,0.6959383,0.68945694,0.685464,0.69619703,0.69880646,0.68100566,0.6647605,0.67041135,0.6641262,0.67524076,0.69210005,0.69557333,0.68902993,0.68459624,0.6935476,0.6953695,1.4289478,2.3853416,1.7357198,1.4095179,1.278275,1.1948588,1.1183083,1.0570891,1.0111941,0.97986805,0.92821753,0.9138688,0.9189086,0.9015758,0.87494457,0.86251193,0.8284253,0.806997,0.8033095,0.8097223,1.0240532,0.9796777,0.8967426,0.8922795,0.8637797,0.85272694,0.805372,0.8256674,0.7867973,0.7650454,0.76639694,0.77376676,0.78109235,0.7845948,0.77929807,0.76993215,0.76252973,0.76942635,0.7701466,0.7547485,0.7456008,0.7414081,0.74934673,0.75477993,0.7900976,0.80313814,0.7816322,0.7648274,0.7682407,0.8002708,0.7932134,0.7607995,0.7493258,0.75125265,0.74742985,0.7444817,0.74078727,0.74044454,0.74485445,0.75339544,0.7681087,0.78740376,0.7662866,0.7682105,0.773336,0.7523735,0.7686974,0.7930158,0.79775906,0.80555105,0.7981608,0.7695087,0.739442,0.7378822,0.7686869,0.76379895,0.74610686,0.7251263,0.72549635,0.7635087,0.74634814,0.72855693,0.7418987,0.7064702,0.71740365,0.7161561,0.70285404,0.6882726,0.7555347,0.78217286,0.73283833,0.6958742,0.684868,0.6947038,0.73200333,0.7368277,0.69355506,0.68682307,0.6943156,0.7183079,0.7066909,0.7015707,0.7296064,0.7306797,0.7654369,0.7168781,0.6701486,1.430707,1.3889816,1.1245692,1.0204986,1.0156292,0.9876404,0.9419511,0.83562875,0.9402947,0.91659886,0.87506163,0.85585564,0.83257556,0.8326793,0.82605416,0.79902977,0.84809697,0.8579878,0.8231069,0.77038395,0.7520411,0.73810565,0.7304382,1.1489849,1.1743581,1.0044454,0.97495335,0.91137433,0.87678367,0.8493755,0.8418031,0.8316755,0.80196196,0.7820863,0.793648,0.7799693,0.76325786,0.7484839,0.74482983,0.7693863,0.7808449,0.76816744,0.7544458,0.7525747,0.7393283,0.7150134,0.71758664,0.7380322,0.7584497,0.7929886,0.7844898,0.75372815,0.736755,0.7403968,0.7263886,0.7422005,0.73384625,0.7249266,1.4509425,1.3372798,1.124539,1.0296597,0.9735549,0.915265,0.87588096,0.8145294,0.8079977,0.8075528,0.77348655,0.78404427,0.79673314,0.7889404,0.767886,0.7495044,0.74969196,0.7396928,0.73684496,0.72903216,0.7438725,0.7341477,0.7512927,0.74795306,0.7385693,0.75150204,0.7520821,0.75112665,0.74799407,0.7465533,0.7490646,0.7300484,0.7683682,0.7085069,0.67138606,0.6504477,0.67486626,0.6663401,0.65978134,0.64427596,0.61286616,0.62140584
+-0.1723015,-0.41865504,-0.3958456,-0.6043335,-0.5413581,-0.4756562,-0.47723162,-0.63294303,-0.6603214,-0.63963485,-0.79078406,-0.79267573,-0.9445889,-0.9653609,-0.5978953,-0.6567701,-0.7253033,-0.8103133,-0.8867522,-0.97402215,-1.042272,-1.0929728,-0.5537193,-0.4406104,-0.232225,-0.197494,-0.155675,-0.25092024,-0.23477966,-0.35036558,-0.4766001,-0.6669994,-0.80601585,-0.9305086,-1.1013758,-1.0881081,-1.1225936,-1.2114425,-0.3714425,-0.19106075,-0.29876876,-0.52287674,-0.42959005,-0.50621444,-0.61571836,-0.7886632,-0.9501287,-1.1439049,-1.0287037,-0.43025374,-0.09641322,0.11348284,0.42442712,0.42388225,0.47479206,0.095179364,-0.025073834,-0.12766021,-0.43760085,-0.555972,-0.49795556,-0.81587964,-0.9643345,-1.0622263,-1.211409,-1.2456865,-1.3085496,-1.384062,-1.3895764,-0.6923552,-1.0161588,-0.39183602,-0.51508945,-0.8912283,-1.1104127,-1.0109789,-1.1516461,-1.0801,-1.2778313,-1.011913,-1.1625316,-1.1086009,-0.98991895,-1.1339606,-1.0143325,-0.39259025,-0.5709975,-0.6989217,-0.9598787,-0.99909365,-1.0046272,-0.4901055,-0.7465322,-1.0264008,-1.2015119,-1.289511,-1.1728896,-0.96035063,-1.0790874,-1.0826725,-1.062692,-0.401301,-0.08464422,-0.047390364,-0.008250229,-0.017781138,0.17112738,0.18765712,0.059893128,0.15333393,0.07039696,-0.25631747,-0.6477721,-0.13702038,-0.36151922,-0.5946296,-0.70259035,-0.4394852,-0.4874407,-0.46153104,-0.56044173,-0.6094934,-0.7373458,-0.87953895,-0.7145394,-0.59576786,-0.76993096,-1.0434883,-0.78486705,-0.1912579,-0.4227512,-0.05120533,-0.04464259,-0.17905378,-0.27082136,-0.6129955,-0.7008029,-0.769253,-0.9912498,-0.8162801,-0.47481287,-0.5732759,-0.7633296,-0.9242294,-0.45520848,-0.49907964,-0.6287786,-0.35815006,-0.42085457,-0.6152042,-0.7457724,-0.84138656,-0.7274729,-0.95184755,-0.7588203,-0.81219804,-0.9132093,-1.0888915,-1.0048085,-0.98612833,-0.8850888,-0.57252896,-0.59525394,-0.49267566,-0.186171,-0.24293649,-0.29341608,-0.38620386,-0.49929333,-0.5874512,-0.7034395,-0.797581,-0.8612404,-0.9591372,-0.2795267,0.134599,-0.01614105,-0.057448767,-0.13245791,-0.20371193,-0.29595682,-0.52012247,-0.6450781,-0.67046785,-0.6339741,-0.57444865,-0.59907615,-0.35078263,-0.46461427,-0.7793956,-0.5178428,-0.4557252,-0.194926,-0.48093832,-0.891791,-0.7344259,-0.120022096,-0.08511742,-0.23339713,-0.34522253,-0.27094835,-0.2718008,-0.25530738,-0.27990413,-0.30526528,-0.368945,-0.43827713,-0.5452756,-0.5451429,-0.66202855,-0.23781928,-0.21484393,-0.22512433,-0.039830156,-0.0011005551,-0.08128602,-0.08272066,-0.12600318,-0.13826296,-0.11076649,-0.36535704,-0.3699156,-0.29402822,-0.41624975,-0.5025751,-0.48496014,-0.5552991,-0.6689471,-0.6445766,-0.7032583,-0.808885,-0.99063635,-1.0664619,-0.9674647,-0.85103774,-0.9661406,-1.0864418,-1.0511389,-1.1179508,-1.0991777,-1.1397486,-1.1950287,-1.2193809,-1.2591372,-1.2981789,-1.2526702,-1.1367788,-1.2179391,-1.2745239,-1.5039222,-1.4735887,-1.4628844,-1.3909421,-1.3532186,-1.3844126,-1.4153965,-1.4312108,-1.4233379,-1.3984866,-1.3639514,-1.412994,-1.3666039,-1.2160318,-1.1384099,-1.0917156,-1.2087394,-1.1866217,-1.067915,-1.2446501,-1.3786126,-1.2372099,-1.249582,-1.2670248,-1.149341,-1.281672,-1.1431968,-1.289252,-1.3327332,-1.370192,-1.3739257,-1.2096632,-1.278249,-1.2695045,-1.177393,-1.1862845,-1.1973193,-1.181918,-1.2086965,-1.2296615,-1.1940705,-1.1190144,-0.99986863,-0.82795775,-0.6916727,-0.9119797,-1.0681303,-1.0350324,-1.1189661,-1.2236935,-1.245221,-1.2719082,-1.2171364,-1.0354941,-0.9955001,-1.057641,-1.1443254,-1.2401471,-1.257274,-1.3559976,-1.2606986,-1.1790137,-1.2017292,-1.193078,-1.197919,-1.1242824,-0.879377,-1.0014844,-1.1349761,-1.0636985,-0.9363359,-0.7353686,-0.10648387,-0.11009019,-0.36824438,-0.21632344,-0.53921306,-0.061636604,-0.38577667,-0.8324974,-0.9767631,-1.0917411,-1.0063161,-1.1098144,-1.1049347,-1.077306,-0.93745184,-0.8381313,-0.6093863,-0.6730752,-0.9735553,-1.0127773,-1.0660241,-1.0780454,-1.1013232,-1.0305438,-1.0397515,-0.96420705,-0.74860096,-0.16556668,0.39855582,-0.04916645,0.3228438,0.5464478,-0.46066242,-0.8713913,-0.3488693,0.08400578,-0.06868372,-0.032575347,-0.4405315,-0.47968566,-0.25578392,-0.29668587,-0.3033262,-0.4670956
+-0.87282246,-1.0380349,-1.1798532,-1.302053,-0.45316327,-0.725381,-0.82314754,-0.9529196,-1.1092958,-1.2512798,-1.3944521,-1.4225127,-0.8983058,-0.28584164,0.21608853,-0.027836658,-0.08479973,-0.34653273,-0.45259023,-0.601563,-0.75634265,-0.9078492,-1.0688627,-0.25371608,-0.19061929,-0.18666273,-0.22731674,-0.08649803,-0.15304911,-0.21031702,-0.30836293,-0.4817056,-0.6834928,-0.88279605,-1.0640655,-1.1295677,-1.1225176,-1.3225701,-0.10118788,0.1822174,-0.10183256,-0.27889055,-0.026263855,-0.16723737,-0.24303985,-0.3584947,-0.53072965,-0.7015519,-0.7044728,-0.4988801,0.36788642,0.27334598,0.28147355,0.13634957,0.038712822,-0.106386535,-0.25934926,-0.44672734,-0.6805009,-0.8432713,-0.98077226,-1.2654091,-1.3742437,-1.5284176,-1.6369953,-1.6664472,-1.6682332,-1.5141504,-1.5668344,-0.9500289,-1.1071742,0.18917957,-0.26165795,-0.60147953,-0.7861372,-0.9012357,-0.88756746,-1.0577013,-1.1628792,-1.1531175,-1.4186882,-1.1630237,-1.1972165,-1.4031354,-1.2795165,-1.3529462,-1.3716748,-1.5977685,-1.4022303,-1.5261537,-1.6036644,-1.6487552,-1.6631706,-1.6847103,-1.7187854,-1.7639757,-0.79726815,-0.6775773,-1.0837812,-1.1823727,-1.3803024,-0.037926488,-0.5354023,-0.7153219,-0.8773306,-1.0461138,-1.1011382,-1.1504549,-1.2160001,-1.3827066,-1.5738069,-1.6902632,-1.7478557,-1.7046798,-1.7411553,-1.7527858,-0.9725776,-0.85641015,0.15238124,-0.03350941,-0.39982596,-0.6703359,-1.0447855,-1.330786,-1.5009549,-1.583174,-1.6288557,-1.6853664,-1.5377283,-1.4135864,-0.6656204,0.13983378,-0.1587325,-0.48401922,-0.50006115,-0.7580258,-0.8143274,-0.97380567,-1.2353357,-0.9256606,0.10202698,-0.42486715,-0.7517659,-1.028017,-1.2149284,-1.3150184,-1.4177344,-1.5040582,-1.5785189,-1.5926795,-1.6145701,-1.6586773,-1.6397865,-1.5875309,-1.6068454,-1.5842924,-1.107884,0.54257095,0.033338286,-0.061709516,-0.1962223,-0.2741138,-0.42265868,-0.645869,-0.22996157,-0.3884318,-0.48100615,-0.6368906,-0.83895487,-0.95413077,-1.0336595,-1.1608385,-1.2299509,-0.7536144,0.31304267,0.05271177,0.014820121,-0.05859863,-0.15520787,-0.30099598,-0.4884138,-0.64295006,-0.784009,-0.8578652,-0.92623997,-0.06997769,0.27657852,0.033585154,-0.13079998,-0.2639001,-0.20390844,-0.28419977,0.08026881,-0.3151679,-0.7057789,-0.44010395,-0.14631546,-0.19471085,-0.25842625,-0.36124164,-0.44360542,-0.5264565,-0.6089145,-0.62186885,-0.55615157,-0.5398078,-0.5666464,-0.6555425,-0.7842244,-0.8455547,-0.9123883,-0.9756248,-1.0066078,-0.00798358,-0.013712488,-0.10279054,-0.13033375,-0.22641453,-0.28948942,-0.3740391,-0.55131406,-0.5720271,-0.6007296,-0.6873199,-0.7348258,-0.7633172,-0.84228325,-0.9118233,-0.951602,-0.76703537,-0.8123463,-1.1905174,-1.1738585,-0.9359951,-0.899627,-1.1070498,-1.1601256,-1.1538086,-1.2431746,-1.1736705,-1.2590113,-1.3058116,-1.3461232,-1.4016881,-1.2729945,-1.1805389,-1.3318591,-1.2549117,-1.3719876,-1.5529206,-1.6710219,-1.6282451,-1.5950537,-1.4804163,-1.5546414,-1.5143974,-1.5624647,-1.5146947,-1.3281236,-1.3930005,-1.447948,-1.3868611,-1.2059469,-1.0949612,-1.1968256,-1.2326164,-1.2326503,-1.1343484,-1.2794309,-1.3852735,-1.205831,-1.2479275,-1.276744,-1.1237226,-1.3328729,-1.1160327,-1.3484942,-1.353454,-1.3937796,-1.3802865,-1.2306082,-1.2553439,-1.2901552,-1.0392346,-1.2586303,-1.3182378,-1.3146869,-1.298415,-1.2611642,-1.1994375,-1.2023739,-1.0383908,-0.9008162,-0.80455345,-1.0214678,-1.267683,-1.2841458,-1.0953181,-1.284895,-1.4138339,-1.4195478,-1.3262191,-1.113116,-1.020473,-1.1442354,-1.1017423,-1.4383225,-1.4190158,-1.4509437,-1.106399,-1.2291241,-1.1139199,-1.2502062,-1.2858185,-0.9631963,-0.4570666,-1.001895,-1.2045643,-1.1137657,-0.9675703,-0.79433227,-0.14914238,-0.029040545,-0.21578842,0.051853597,-0.4043541,0.025223918,0.21463352,-0.19644946,-0.5610317,-1.0748863,-0.9728811,-0.9603051,-1.0723305,-1.0954065,-0.6438645,-0.30389118,-0.050230794,0.11875754,-0.45370376,-1.0109687,-0.7025091,-0.7370504,-0.8105984,-0.7628598,-0.45848775,-0.46226072,0.10763632,0.4785509,0.5922864,-0.18271175,0.37509966,0.4797718,-0.44603056,-0.5830875,-0.10330812,-0.033677243,-0.36550573,-0.20417261,-0.487459,-0.39605522,-0.44548082,-0.63490796,-0.6065844,-0.66973436
+0.26913902,0.034052387,-0.09057646,-0.19810736,-0.09156609,-0.06359128,-0.012254626,-0.040734477,-0.081602566,-0.2104561,-0.23745763,-0.26751247,-0.019111767,0.124451034,0.1659576,0.026261747,0.0017157868,-0.075318955,-0.069164686,-0.11787694,-0.16960967,-0.21015772,-0.25734076,-0.15500376,-0.19189245,-0.19830173,-0.19045669,-0.22942457,-0.24732345,-0.18494675,-0.17864504,-0.18252051,-0.18987536,-0.2187477,-0.26051688,-0.36472562,-0.39426708,-0.4177518,-0.11830055,0.06072461,0.02117934,0.10388095,0.029613622,-0.06367802,-0.10910349,0.14708945,0.18994677,0.18065798,0.20842843,0.3072054,0.63345015,0.48112625,0.42464602,0.40781862,0.42068917,0.45578212,0.4700231,0.53945386,0.49023485,0.44121724,0.2696772,0.17887633,0.08418842,0.097231805,-0.010464169,-0.16325107,-0.28320828,-0.29850185,-0.17863312,-0.066192694,-0.1186342,-0.18696368,-0.08413952,-0.18916565,-0.02897019,-0.07778261,0.48270229,0.5110563,0.342134,0.22679555,-0.0005668625,-0.12250095,-0.22509092,-0.37477463,-0.33116698,-0.3464429,-0.46420497,-0.5596437,-0.6063384,-0.6247167,-0.5570986,-0.51885045,-0.5453021,-0.57478255,-0.5919794,-0.6233448,-0.4822104,-0.5372853,-0.64603007,-0.5076032,0.25585306,0.8043124,0.55549127,0.43827584,0.26400998,0.019884475,0.0046105906,-0.16459575,-0.3185056,-0.39770287,-0.48423868,-0.55038667,-0.6248224,-0.574746,-0.6019851,-0.65361965,-0.590315,-0.5103028,-0.39697734,-0.5579761,-0.6336746,-0.63755965,-0.6776088,-0.7163876,-0.57686484,-0.61068285,-0.72486895,-0.54701126,-0.20764318,0.60734355,0.36095923,0.23659086,0.043632213,-0.11645787,-0.25542957,-0.38062894,-0.5038499,-0.56707394,-0.613818,-0.65466857,0.14191586,0.087943606,-0.21145228,-0.32870165,-0.4259886,-0.52914166,-0.57381284,-0.63698083,-0.6569431,-0.65589863,-0.7058809,-0.73095715,-0.75122225,-0.73461896,-0.7067195,-0.6958833,-0.20088953,0.5193208,0.25019595,0.23922,0.15068293,-0.0609039,-0.17619061,-0.28311318,-0.26136804,-0.3560295,-0.4729144,-0.4039303,-0.4724319,-0.51526606,-0.35896704,-0.47475058,-0.59547925,-0.5415682,0.11993237,0.2341674,0.12352985,-0.0145471245,-0.12154559,-0.23656094,-0.34143305,-0.44364715,-0.5012957,-0.16932583,0.3148105,0.3524714,0.3129868,0.32964054,0.24491021,0.17608687,0.20682994,0.2020948,0.22193712,0.07871105,-0.26770365,-0.16575602,0.005227424,0.033447046,0.13183343,0.24633506,0.13830076,0.049782738,-0.15968734,0.038139954,0.03725095,-0.1058945,-0.13324773,-0.09129938,-0.06995421,-0.055268966,-0.06620496,-0.13795656,-0.20841762,0.3605863,0.34953046,0.15367197,0.0777553,0.0062207133,-0.0537372,-0.0663315,-0.1377368,-0.13264352,-0.1101008,-0.121642135,-0.18368259,-0.186205,-0.18249378,-0.15238655,-0.07602342,0.029360004,-0.390111,-0.51776314,-0.36086318,-0.36348996,-0.33199844,-0.4466728,-0.42331392,-0.45070285,-0.48624676,-0.44191086,-0.5336162,-0.5548039,-0.4850797,-0.6476356,-0.491005,-0.56357485,-0.598181,-0.49138224,-0.6754364,-0.857841,-0.94179344,-0.8533416,-0.7630658,-0.47870976,-0.62358654,-0.51563907,-0.69019747,-0.7648471,-0.6235212,-0.744576,-0.75938225,-0.7349112,-0.57912457,-0.35282433,-0.53833354,-0.56849337,-0.53727907,-0.283563,-0.5733831,-0.67278504,-0.5117701,-0.5896095,-0.6204585,-0.3212732,-0.6185862,-0.5742323,-0.76907545,-0.77655864,-0.79753256,-0.7582227,-0.6810703,-0.6007978,-0.4835508,-0.19207317,-0.42860055,-0.573298,-0.61731243,-0.6046313,-0.586194,-0.5560974,-0.57225513,-0.38250476,-0.17538336,-0.18199885,-0.23593646,-0.4393016,-0.38899752,-0.33977765,-0.6614139,-0.66523415,-0.55591357,-0.63580817,-0.5449347,-0.27978438,-0.39616233,-0.41723895,-0.6361066,-0.7658841,-0.6296898,-0.2613066,-0.07917284,-0.09610977,-0.35561422,-0.54435444,-0.011942275,0.27598563,-0.35020432,-0.5924047,-0.50287324,-0.3459567,-0.30179998,-0.066617735,-0.035015933,-0.13325703,0.12074012,-0.32279587,-0.035171174,-0.21664536,-0.38481796,-0.42280757,-0.6777134,-0.53809136,-0.47664857,-0.5784835,-0.5553062,-0.2911836,-0.22573477,-0.052066155,-0.10356908,-0.36115363,-0.5499624,-0.2973082,-0.27145115,-0.07352295,-0.17153025,0.022576876,-0.095269494,0.16013294,0.34125814,0.32495567,-0.28889644,0.20322627,0.26443627,0.014519632,-0.11444112,0.0142360255,-0.063346334,-0.26930344,-0.12092774,-0.37445116,-0.2757349,-0.14403448,-0.36237514,-0.09122955,-0.04260423
+-0.44764495,-0.60397446,-0.4483664,-0.3330448,-0.3747993,-0.50049615,-0.45817828,-0.45575202,-0.48477942,-0.5164897,-0.41503173,-0.41853458,-0.40572608,-0.23418254,-0.33443338,-0.432023,-0.49465948,-0.58788407,-0.66331553,-0.6237871,-0.60163784,-0.5962864,-0.65806973,-0.4003148,-0.40173256,-0.35814777,-0.2621225,-0.20975268,-0.24380735,-0.17005801,-0.21470681,-0.29277626,-0.37224907,-0.46139455,-0.50615853,-0.5238726,-0.47827935,-0.41771603,-0.084594406,-0.14454225,-0.2592888,-0.37532008,-0.4933182,-0.53294384,-0.30405727,-0.20657814,-0.31146395,-0.29786623,-0.36085767,-0.38237554,-0.35906082,-0.394988,-0.50397646,-0.5272703,-0.5556093,-0.5455296,-0.5394191,-0.55818856,-0.5484679,-0.55068874,-0.57011193,-0.60346925,-0.62606984,-0.6418363,-0.6475918,-0.66195464,-0.6228317,-0.6633593,-0.6557773,-0.6381351,-0.6119715,-0.37367472,-0.1349189,-0.32014015,-0.3660258,-0.40926766,-0.49853677,-0.5256203,-0.56475115,-0.58953154,-0.6048957,-0.64832693,-0.65559316,-0.691746,-0.73594713,-0.7465892,-0.83261156,-0.7843981,-0.7839518,-0.7795601,-0.59393334,-0.42309797,-0.5400889,-0.6295506,-0.7028774,-0.761464,-0.78401494,-0.78107756,-0.8158859,-0.83042675,-0.86114925,-0.8429661,-0.8888588,-0.8756616,-0.8687206,-0.8575481,-0.8922849,-0.86262536,-0.90866923,-0.8682071,-0.8765796,-0.87647474,-0.8799082,-0.8216435,-0.8914776,-0.89731836,-0.91794777,-0.94506025,-0.9659375,-0.95043874,-0.9944005,-0.94228673,-0.9203348,-0.92431295,-0.9282036,-0.9347942,-0.9516934,-0.89727,-0.6853795,-0.48115653,-0.6036752,-0.6242155,-0.5165651,-0.5658366,-0.7072405,-0.805449,-0.91897726,-0.85052097,-0.8926733,-0.8759315,-0.8740487,-0.9231837,-0.93163013,-0.9674759,-0.93825316,-0.9524765,-1.006726,-0.9651784,-0.9551451,-0.9500241,-0.98778427,-1.005475,-1.0079925,-1.0021605,-0.88414836,-0.83645415,-0.8170792,-0.86113024,-0.9129945,-0.9150486,-0.94346786,-0.986923,-1.0897642,-1.0529565,-1.074152,-0.8754599,-0.072489925,-0.17872295,-0.28539965,-0.3830301,-0.44424886,-0.5467217,-0.65859354,-0.70548344,-0.4272676,0.49833214,0.6271272,0.4053586,0.36228073,0.2940908,0.2720107,0.17710784,0.07467646,0.027567454,0.0044993684,0.14750673,-0.09298944,-0.17379516,-0.21033901,-0.3251128,-0.28906497,-0.27584952,-0.26713622,-0.39323637,-0.4275995,-0.4401605,-0.4959612,-0.58482647,-0.66175926,-0.3232329,-0.4358995,-0.53026193,-0.7008216,-0.66059494,-0.5823846,-0.5738232,-0.5404626,-0.25869107,-0.26801163,-0.28584754,-0.36823863,-0.2424415,-0.24118161,0.30670822,0.18933895,0.0002905652,-0.18555883,-0.22571963,-0.28307796,-0.35954756,-0.40094393,-0.42391276,-0.45553052,-0.52348876,-0.55158705,-0.556767,-0.6067925,-0.6262489,-0.62116814,-0.6583886,-0.52639383,-0.911546,-0.92448735,-0.7120055,-0.417683,-0.19401222,-0.63462996,-0.5150929,-0.71444863,-0.6764773,-0.47399646,-0.4381491,-0.525585,-0.7691326,-0.79726905,-0.83776736,-0.927616,-0.8321801,-0.5705542,-0.99035335,-0.90743697,-1.0315624,-0.4615273,-0.3761117,-0.16150182,-0.58118683,-0.81145495,-0.4883505,-0.15424827,0.06588706,-0.39170676,-0.8518767,-0.8842125,-0.78538394,-0.68203974,-0.6946993,-0.6976591,-0.46581912,-0.37147498,-0.8132755,-0.95462406,-0.7926914,-0.8888918,-0.88080704,-0.9066633,-0.94876564,-0.65379864,-0.57698,-0.4157539,-0.3765085,-0.79137516,-0.8955698,-0.3153311,0.0049903616,-0.17979497,-0.010172941,-0.24370974,-0.21233153,-0.43959594,-0.6613993,-0.8189571,-0.8673697,-0.8425816,-0.5363499,-0.36451983,-0.28426236,-0.4783665,-0.2575873,-0.37686604,-0.4760834,-0.54985595,-0.77134293,-0.83866,-0.8333396,-0.8207576,-0.77126396,-0.67672527,-0.52636135,-0.5572444,-0.14645034,-0.3940868,-0.11388222,-0.02457694,-0.123935156,0.1127828,0.17987603,0.17377937,-0.32736373,-0.47515172,-0.49717122,-0.5235635,-0.5482179,-0.2765752,-0.030709572,0.06073118,-0.1605854,-0.021943234,0.0012952462,-0.20373982,-0.4579879,-0.61448514,-0.665951,-0.38976938,-0.5837859,-0.6183082,-0.688908,-0.7001936,-0.6425482,-0.49738002,-0.48850685,-0.65901107,-0.45359123,-0.4699732,-0.4076358,-0.23104852,-0.26362807,-0.41544908,-0.32347456,-0.13255104,-0.023342393,0.05310429,0.13366279,0.33586907,0.3678134,0.20680168,-0.013662837,-0.046225004,-0.29245368,-0.40632075,-0.43953496,-0.32923564,-0.2818285,-0.4269538,-0.44583714,-0.26505262
+-0.4335208,-0.85062814,-0.8414995,-0.91988885,-0.82729685,-1.0312965,-1.0538528,-1.0427697,-0.9909352,-0.87277555,-0.9133103,-0.9626446,-0.9405383,-1.0209354,-0.9532647,-0.9311185,-0.99921227,-1.026217,-1.0070988,-1.0522089,-1.0763922,-1.1300046,-1.0911171,-0.8522371,-0.9780514,-0.71127367,-0.6643229,-0.46555024,-0.47023892,-0.54442835,-0.62583786,-0.5821268,-0.6977539,-0.83771664,-0.898371,-0.9748982,-0.9717233,-0.9001389,-0.62684613,-0.73022884,-0.91714716,-1.0977868,-1.1371195,-1.1388383,-1.1393039,-0.23995706,-0.31252488,-0.47386074,-0.6801827,-0.7295817,-0.88872737,-1.0512433,-1.1469944,-1.2232895,-1.2349982,-1.2054299,-1.1910229,-1.2456572,-1.2366415,-1.2061064,-1.2848985,-1.3281815,-1.3336294,-1.3537437,-1.3829633,-1.3714813,-1.3374898,-1.3622091,-1.3896637,-1.3885453,-1.3714356,-1.2936604,-1.2029452,-1.3135768,-1.2595124,-1.363019,-1.4032689,-1.4113003,-1.406204,-1.446023,-1.4247327,-1.4266138,-1.4305184,-1.446051,-1.4285368,-1.474455,-1.5383031,-1.5274352,-1.5002656,-1.4631295,-1.1584387,-0.3113843,-0.35694358,-0.3786695,-0.34278604,-0.44612288,-0.7143439,-0.9803995,-1.1232257,-1.2160025,-1.2882836,-1.3505344,-1.3990557,-1.4160676,-1.4210984,-1.4094121,-1.4141237,-1.4154186,-1.2553294,-0.091305114,-0.18335965,-0.35136777,-0.5420118,-0.7008384,-0.9067414,-1.0699039,-1.167004,-1.2484701,-1.296803,-1.3016269,-1.2992638,-1.2136415,-0.9021895,-0.7703179,-0.72482187,-0.6740654,-0.6346569,-0.58751625,-0.7264824,-0.91501975,-1.0447009,-1.138231,-1.1670247,-1.2511132,-1.3418206,-1.383667,-1.3568966,-1.3455844,-1.3297207,-1.342763,-1.3386738,-1.3958396,-1.3912599,-1.3766221,-1.3709238,-1.3509631,-1.3827286,-1.3178561,-1.2041646,-1.2699246,-1.3503103,-1.3691225,-1.362808,-1.2654011,-0.81705093,-0.9387708,-0.911692,-1.0085695,-1.1912265,-1.2781034,-1.3234811,-1.363161,-1.4092872,-1.3915501,-1.3790208,-1.382647,-1.2202587,-1.1831293,-1.346688,-1.3800815,-1.4012003,-1.4067285,-1.4152746,-1.3630123,0.18937665,0.3289454,0.15877613,-0.12500617,-0.34280455,-0.5280936,-0.6520576,-0.78984535,-0.55614173,-0.628162,-0.53530705,-0.58408785,-0.9130007,-0.9685825,-1.0206065,-1.1691215,-1.1361252,-1.125215,-1.1471984,-1.1714234,-1.1383551,-1.1689034,-1.1971351,-1.216996,-1.2664144,-1.2545991,-1.1665385,-1.2580212,-1.3062704,-1.2918416,-1.2581804,-1.2570426,-1.1894336,-0.2658588,-0.36640537,-0.49681765,-0.5890254,-0.6335641,-0.62519956,-0.68751746,-0.7016695,-0.67895126,-0.76736546,-0.7711619,-0.83597124,-0.8314723,-0.86051536,-0.899245,-0.95705533,-1.0225263,-1.0320898,-1.0641527,-1.1013457,-1.1151426,-1.1181669,-1.1616887,-1.0665867,-1.2856158,-1.2419355,-1.1006516,-0.8933612,-0.54768944,-0.9294611,-0.9583721,-1.1736156,-1.2059062,-1.038382,-1.0097442,-1.0097684,-1.1212927,-1.0521936,-1.0468681,-1.0962011,-1.0661434,-0.93832636,-1.1371379,-1.0873009,-1.0907631,-0.8311367,-0.8954544,-0.66445494,-0.93530655,-1.0391773,-0.8492559,-0.79592717,-0.4483068,-0.80236816,-1.10184,-1.0622798,-1.0019798,-1.0136653,-0.8712261,-0.87535375,-0.7766086,-0.82569015,-1.0134592,-1.0277728,-0.99958193,-1.0384824,-1.0615577,-1.0579444,-1.098717,-1.0367386,-0.98786354,-0.8290683,-0.5262507,-0.89823973,-0.9452851,-0.5705892,-0.33592498,-0.46987307,-0.42607784,-0.5858307,-0.43376642,-0.44865906,-0.533261,-0.764695,-0.84737915,-0.85280126,-0.7409508,-0.6631571,-0.64208674,-0.7428278,-0.56149393,-0.78600585,-0.80599326,-0.8392234,-0.844815,-0.8968593,-0.8837445,-0.89871055,-0.91055346,-0.92372286,-0.8210819,-0.8548764,-0.7873585,-0.82936656,-0.73836946,-0.59396744,-0.4167698,-0.327936,-0.03500829,0.08455423,-0.15191075,-0.526014,-0.7575108,-0.8271329,-0.86727434,-0.7227528,-0.51641786,-0.39906037,-0.67501223,-0.5562885,-0.6059768,-0.8680818,-0.97530365,-0.96422267,-0.9505042,-0.97999644,-0.8429276,-0.915267,-0.931818,-0.9278202,-0.87557304,-0.8762922,-0.9964676,-1.0217268,-0.8742138,-0.8064461,-0.76965,-0.60730803,-0.6666878,-0.72101474,-0.6401898,-0.62554806,-0.62955016,-0.6413318,-0.6310369,-0.61607057,-0.61271334,-0.5734318,-0.5981978,-0.5012814,-0.7676425,-0.9010916,-0.8213398,-0.8483306,-0.66554964,-0.85362685,-0.81952417,-0.6495441
+-1.2819042,-1.426819,-1.5123501,-1.5943094,-1.6404512,-1.6760284,-1.6898237,-1.3897352,-0.7035697,-0.92243826,-1.1376408,-1.3358716,-1.4491053,-1.536495,-1.0174509,-1.0696199,-1.1692278,-1.2810205,-1.454555,-1.5591762,-1.6265098,-1.640001,-1.6605082,-1.6869991,-1.4456301,-1.1731586,-1.3980756,-0.53197503,-0.4981693,-0.45623624,-0.632356,-0.7127273,-1.0995274,-1.388396,-1.5142025,-1.5065994,-1.1989719,-0.99301267,-1.0746746,-1.1577231,-1.4233541,-1.5678449,-1.6517371,-1.635941,-1.6015513,-1.0700039,-0.9473516,-0.74871016,-1.0368756,-1.3167716,-1.488671,-1.5753868,-1.6551619,-1.6413388,-1.6605067,-1.6976115,-1.6648948,-1.685448,-1.6791966,-1.6704993,-1.6644661,-1.6664164,-1.6597295,-1.653365,-1.6317323,-1.5986233,-1.5896834,-1.5887326,-1.58609,-1.562142,-1.5690438,-1.3923218,-1.5596917,-1.5214329,-1.6115779,-1.6126308,-1.6205864,-1.6240375,-1.6341305,-1.6291662,-1.5888398,-1.5783925,-1.5776813,-1.539366,-1.5555209,-1.5908709,-1.6064134,-1.6134051,-1.5894016,-1.5704155,-1.392385,-1.0739758,-1.0751235,-1.2596197,-1.4621495,-1.5216851,-1.5543953,-1.5539203,-1.5580797,-1.5594392,-1.5549142,-1.5995985,-1.5985239,-1.5930641,-1.5962662,-1.5753679,-1.5503389,-1.5546663,-1.2996676,-1.3626697,-1.4565331,-1.2112974,-1.267699,-1.4276588,-1.5072181,-1.4944913,-1.50101,-1.5148003,-1.5466936,-1.5358891,-1.2179577,-0.93886304,-1.1375326,-1.0504862,-0.9867046,-1.0283146,-0.83785754,-0.8520502,-1.0560294,-1.3225696,-1.4307718,-1.2786086,-1.3622857,-1.5044974,-1.5433736,-1.5552001,-1.5426202,-1.5125712,-1.4711454,-1.490478,-1.5010552,-1.5165087,-1.5314854,-1.4814448,-1.224019,-1.1005621,-1.37749,-1.374711,-0.7916089,-0.6753907,-1.0755001,-1.3012238,-1.4020697,-1.4164236,-1.1497581,-0.5756221,-0.7490256,-1.1947181,-1.3941898,-1.4514076,-1.4747127,-1.4949019,-1.5158916,-1.506875,-1.4910374,-1.4193053,-1.3829248,-1.5124158,-1.5447829,-1.5404627,-1.5413976,-1.5485811,-1.1785629,-0.42064238,-0.25744402,-0.32410207,-0.6104568,-0.9462551,-1.2002968,-1.3636842,-1.4301035,-1.1605308,-0.6118914,-0.7856161,-0.9646282,-1.1739256,-1.3864772,-1.4376731,-1.4602113,-1.5021288,-1.5250379,-1.523917,-1.502002,-1.4905525,-1.4641416,-1.4925771,-1.5055199,-1.5064125,-1.516398,-1.5131835,-1.5026982,-1.4933407,-1.5334841,-1.5524654,-1.5707777,-1.5515301,-1.2929015,-0.22773725,-0.3655902,-0.6326505,-0.8715869,-0.9810064,-1.1016922,-1.2007821,-1.2408386,-1.2863655,-1.3617775,-1.3450321,-1.2783066,-1.337354,-1.3632433,-1.38711,-1.4387718,-1.450065,-1.4664416,-1.4838607,-1.467581,-1.4810522,-1.5058434,-1.5202746,-1.477064,-1.5239648,-1.5557055,-1.6010513,-0.37865537,-0.24866027,-0.6099956,-0.89974314,-1.1012299,-1.1531407,-1.0664307,-1.1092387,-1.2451048,-1.315937,-1.2939141,-1.2602102,-1.3485246,-1.3775139,-1.3408589,-1.3796673,-1.3893859,-1.4057981,-1.2821512,-1.3272512,-1.2799866,-1.3008237,-1.3339367,-1.3148081,-1.3190963,-1.1912401,-0.7898351,-1.2901431,-1.3549252,-1.3443079,-1.2765982,-0.90491366,-0.8192942,-0.7992966,-0.9247663,-1.3258258,-1.2638501,-1.250812,-1.2831402,-1.319679,-0.9627373,-1.0773638,-0.96335983,-1.0180079,-0.91762054,-0.7908772,-1.1496122,-1.2978227,-0.8825908,-0.860992,-0.8589331,-0.89987046,-0.8035294,-0.22490779,-0.15237242,-0.22381192,-0.6571,-1.031786,-1.0757548,-0.89597535,-0.66156375,-0.354909,-0.93598104,-0.25710472,-0.9019116,-1.1779104,-1.1959772,-1.2195928,-1.2375196,-1.1623762,-1.1520742,-1.1637421,-1.1618468,-1.1204793,-1.0258318,-0.76895225,-1.0135602,-0.91555345,-0.84809506,-0.9359294,-0.9857583,-1.0356753,-0.8866874,-0.43454993,-0.3041576,-0.81993467,-1.0890386,-1.1603782,-1.0323735,-0.41640526,-0.18222994,-0.42511868,-0.5569963,-0.6863818,-0.86555964,-1.2803607,-1.3723879,-1.3203666,-1.1067238,-0.95278525,-1.3522314,-1.3976125,-1.408963,-1.3785248,-1.3381001,-1.257685,-1.464999,-1.4709804,-1.487045,-1.5182116,-1.5633619,-1.5928254,-1.634007,-1.6552755,-1.6589276,-1.6732408,-1.67383,-1.6668127,-1.6782413,-1.6706861,-1.6594304,-1.4343778,-0.083972104,-0.58546335,-0.84707075,-0.9406377,-1.0507356,-1.1287868,-1.3205817,-1.3757832,-0.38867655
+-1.7175813,-1.7625947,-1.7790773,-1.7620797,-1.7644881,-1.7711976,-1.7569304,-1.2035172,-0.7337705,-0.88894486,-0.93621254,-1.2085054,-1.4564602,-1.6545513,-1.458545,-0.72009146,-1.0934987,-1.4811761,-1.6803243,-1.7338226,-1.742237,-1.7507695,-1.7693881,-1.7383904,-1.7869723,-1.6625463,-1.6970462,-1.1970303,-1.1377431,-0.5188067,0.17811221,-0.22256875,-0.9329698,-1.4044161,-1.611192,-1.7220852,-1.40519,-1.1216016,-1.2086115,-1.6144207,-1.7156887,-1.7676437,-1.8027632,-1.694763,-1.3670441,-1.5137033,-1.4065248,-1.280416,-1.569591,-1.733087,-1.7697669,-1.7709002,-1.7931626,-1.8017031,-1.7929654,-1.6325641,-1.7404013,-1.7725531,-1.7819841,-1.7805061,-1.7618155,-1.7481148,-1.7578559,-1.758943,-1.7484334,-1.7405528,-1.723882,-1.719816,-1.7099075,-1.7038066,-1.7050306,-1.349943,-1.4703056,-1.6663808,-1.7172116,-1.7210654,-1.72285,-1.727855,-1.7330594,-1.7394128,-1.7054857,-1.7126659,-1.6699004,-1.6867805,-1.6895279,-1.6967208,-1.6928394,-1.6748472,-1.597686,-1.288084,-1.1646309,-0.9991536,-0.91525126,-1.2710915,-1.58517,-1.6930468,-1.7127454,-1.6859136,-1.7013485,-1.716174,-1.7065446,-1.7047702,-1.7087619,-1.7118201,-1.7089534,-1.7104193,-1.7044141,-1.5803466,-0.9804075,-0.9730638,-1.1111532,-1.1058712,-1.3887377,-1.3624289,-1.2345972,-1.2433686,-1.2983651,-1.4888892,-1.6052701,-1.4727793,-1.103213,-0.93784297,-1.0278838,-0.2814654,-0.20247057,-0.10169309,-0.23779151,-0.7934722,-0.94227695,-1.2387323,-1.4726028,-0.76895183,-0.18545553,-0.43935955,-1.1847149,-1.5161517,-1.4881529,-1.3090093,-1.1740694,-1.0734377,-1.033153,-1.114472,-1.209994,-0.70890784,-0.87035894,-0.85196877,-1.2149769,-0.74744105,-0.3776981,-0.46573377,-1.0004332,-1.3452969,-1.4770732,-1.4984397,-1.2528292,-1.2180533,-1.4817939,-1.5877403,-1.6441563,-1.5991517,-1.5765611,-1.6127249,-1.6278094,-1.6535069,-1.6460395,-1.641259,-1.6363246,-1.612181,-1.6151143,-1.6224339,-1.6342952,-1.652602,-1.0080302,-0.0011910424,-0.45310652,-0.1563524,-0.66785634,-1.0571287,-1.2886355,-1.4101572,-1.190578,-0.63990974,-0.39065826,-0.53624475,-0.88021064,-1.1238273,-1.288964,-1.4293537,-1.4555445,-1.5144281,-1.5445621,-1.4853566,-1.4428041,-1.5344899,-1.5224724,-1.5284426,-1.5682533,-1.591658,-1.6218798,-1.6226085,-1.5572889,-1.5333925,-1.554379,-1.5727891,-1.6246724,-1.6020724,-1.4657786,-0.39469293,-0.5877597,-0.93687963,-1.1351113,-1.2394338,-1.323119,-1.4014254,-1.4113557,-1.4407992,-1.4665663,-0.6330397,-0.19373453,-0.51602554,-0.78438866,-0.94693744,-1.1081144,-1.2270774,-1.3135822,-1.3705571,-1.4183285,-1.4418696,-1.4650309,-1.5284455,-1.4295025,-1.5044435,-1.4824972,-1.5842587,-0.46629715,-0.31246087,-0.670534,-0.98351526,-1.2279818,-1.2372164,-1.2797953,-0.852921,-1.1469014,-1.375981,-1.3625796,-1.357412,-1.4317877,-1.488269,-1.4315276,-1.4435956,-1.4539471,-1.4628662,-1.4460282,-1.4635773,-1.4928252,-1.492069,-1.4759451,-1.4705105,-1.5068986,-0.40445733,-0.07151932,-1.0818198,-1.3076265,-1.3308703,-1.2822237,-0.42256427,-0.33250663,-0.15623331,-0.1290057,-0.98497176,-1.2081828,-1.2509278,-1.2925695,-1.296595,-0.748557,-0.44669163,-0.7818415,-0.8920433,-0.84258753,-0.74173254,-0.6919509,-1.263529,-0.79328805,-0.31214958,-0.35275882,-0.5065428,-0.5934072,-0.23563188,0.12043908,0.076608524,-0.040358238,-0.6343785,-0.8629592,-0.63518447,-0.069663726,0.112890795,-0.6264043,0.17096856,-0.09908069,-0.9976933,-1.2614231,-1.3637755,-1.3377639,-1.2710273,-1.2634662,-1.2643731,-1.277403,-1.28699,-1.2991352,-1.4045186,-1.4557359,-1.488338,-1.1334584,-0.9535351,-1.0916004,-1.2377264,-1.2317073,-0.52748597,-0.13954416,-0.41855574,-0.86938787,-1.0834608,-0.9585167,-0.62876904,-0.19179535,-0.23203442,-0.49857736,-0.66479397,-0.77263623,-1.211498,-1.3941183,-1.3427713,-1.0030311,0.2815805,-0.7817953,-1.2067848,-1.3568741,-1.3866155,-1.4761552,-1.4850395,-1.5990815,-1.6021246,-1.6443224,-1.6684556,-1.6743782,-1.675438,-1.6822817,-1.683636,-1.6721792,-1.6732578,-1.6581187,-1.6883961,-1.685769,-1.7095624,-1.7038243,-1.6622055,-0.37560242,-0.39810535,-0.80287856,-1.1197908,-1.350823,-1.1528087,-1.4129839,-1.5990188,-1.075784
+-0.2561378,-0.49442953,-0.59755266,-0.6717221,-0.727262,-0.7901461,-0.78329694,0.079008035,0.25281042,0.19199993,0.19066319,0.03905683,-0.20837983,-0.43854082,-0.59219396,-0.5649871,-0.59936345,-0.7018597,-0.8221978,-0.9005786,-0.9660312,-1.0196128,-1.0709869,-1.0869083,-1.143226,-1.0705011,-1.0980971,-1.1347399,-1.0134542,-0.7459952,-0.07079057,-0.15286198,-0.34507054,-0.5843375,-0.7884325,-0.90884924,-0.8384015,-0.60687506,-0.62704325,-0.84374046,-0.959429,-1.0028405,-1.0900457,-1.1005592,-1.0821311,-1.1247523,-0.769313,-0.05862578,-0.16931814,-0.56737816,-0.8648615,-0.99911296,-1.0684466,-1.1256868,-1.1542704,-1.1783801,-1.2104181,-1.2171519,-1.2234151,-1.2330316,-1.2386185,-1.2422036,-1.2416654,-1.2453296,-1.2436279,-1.2424977,-1.2486386,-1.2723684,-1.2800595,-1.267085,-1.253385,-0.4754364,-0.5974364,-0.85584295,-1.0097544,-1.12465,-1.1740133,-1.215783,-1.2288071,-1.2112553,-1.1914321,-1.1916525,-1.2026759,-1.2089754,-1.2228557,-1.2179948,-1.2186948,-1.200054,-1.027606,-0.71003443,-0.5103554,-0.4785725,0.45170766,0.13714558,-0.14831507,-0.48785257,-0.72361314,-0.8611933,-0.94775903,-0.9965389,-1.0327878,-1.0634456,-1.0878949,-1.099943,-1.1106794,-1.1067749,-1.1148647,-1.1289556,-1.1331582,-0.62320477,-0.18056542,-0.2266913,-0.14964679,-0.1683793,-0.4111123,-0.39450514,-0.20144027,-0.3554654,-0.50078225,-0.50318205,-0.52507615,0.15062203,0.5507712,0.44770736,0.43475065,0.5075133,0.50596577,0.6031004,0.22117743,-0.025424547,-0.2545421,-0.36846665,-0.08795401,0.08092159,-0.119549416,-0.33427602,-0.5488827,-0.64770055,-0.53746176,-0.26596007,-0.18517324,-0.27355656,-0.2862241,-0.2522296,0.37918526,0.53277797,0.2504772,0.029807165,0.5449857,0.62303436,0.35385895,0.0065696314,-0.19110689,-0.3010177,-0.27887523,-0.42566437,-0.6356336,-0.76614314,-0.833451,-0.86240864,-0.8394725,-0.8194819,-0.8522988,-0.88069904,-0.91675484,-0.81104505,-0.7109089,-0.8264557,-0.9127152,-0.94396865,-0.95429254,-0.9595578,-0.9226526,-0.48446774,-0.54529613,-0.42143464,-0.64736825,-0.7684254,-0.8650944,-0.74540657,-0.47613478,-0.29528198,-0.25065577,-0.38992187,-0.39534676,-0.24777663,-0.49934208,-0.6689441,-0.74038994,-0.7846639,-0.7468685,-0.5667501,-0.68512654,-0.78075814,-0.8232306,-0.83962333,-0.8708557,-0.90866077,-0.9412551,-0.96463335,-0.9538002,-0.8863488,-0.8754885,-0.906296,-0.9194045,-0.92195857,-0.91644835,-0.5518459,-0.259535,-0.44874477,-0.60225546,-0.69486815,-0.77402514,-0.7921402,-0.75509536,-0.70434296,-0.46651703,0.44680503,0.46467692,0.36136907,0.23648655,0.10531539,-0.034919135,-0.18654132,-0.3040619,-0.37955275,-0.4373862,-0.47202337,-0.53231066,-0.6131883,-0.61047983,-0.69670564,-0.6494987,-0.731595,0.7493451,0.5756261,0.44039044,0.24290222,0.052959695,0.13297431,0.10638775,-0.14913154,-0.32782462,-0.53213847,-0.51006705,-0.33473167,-0.38820624,-0.49552763,-0.45694155,-0.4332803,-0.39707217,-0.42308694,-0.27836776,-0.13610187,-0.1359145,-0.13928613,-0.158234,-0.124268495,-0.09552892,0.7942642,0.37991735,-0.13522696,-0.25414306,-0.17042992,0.33690643,0.9602057,0.7485799,0.6724348,0.20829266,-0.13765231,0.012990452,-0.0070746318,-0.028974004,0.2613041,0.3383144,0.57613003,0.41150415,0.26811832,0.2398434,0.25063798,-0.042917587,-0.23727942,0.4054024,0.46054584,0.3561538,0.32333797,0.2819818,0.428842,0.5283613,0.46983588,0.6884237,0.5003901,0.1262251,0.03695921,0.17249459,0.35133067,-0.19254011,0.40552914,-0.17083487,-0.4882986,-0.47094333,-0.35652596,-0.31614292,-0.25741014,-0.22625977,-0.2718022,-0.32246318,-0.31843746,-0.14973667,-0.20754337,-0.2922754,0.08746744,0.29959837,0.42504087,0.5288237,0.6145729,0.5388633,0.56554604,0.60586923,0.6362493,0.44795522,0.08484395,0.3067803,0.3716515,0.53611064,0.47537082,0.69305086,0.68099284,0.26687554,-0.20524752,-0.42764932,-0.20413783,-0.1913921,0.79847455,-0.07871134,-0.1777156,-0.17784321,0.00747855,0.23959056,-0.09843456,-0.27099895,-0.10847958,0.110262625,0.15963575,0.1145433,0.064599924,0.0030190423,-0.051841475,-0.10233154,-0.15154219,-0.21509373,-0.2831751,-0.33424038,-0.39129496,-0.42900538,-0.4734037,0.6471958,0.5489395,0.44544223,0.28961128,0.13148537,0.16107199,-0.0012890548,-0.20043483,-0.14085495
+-1.4470057,-1.436197,-1.4308329,-1.4345363,-1.412029,-1.4133852,-1.3832505,-0.8479237,-0.70328414,-0.52155066,-0.26627302,-0.7872487,-1.0148613,-1.2237146,-1.3293619,-1.3593156,-1.3899691,-1.3948907,-1.4099529,-1.4084761,-1.4083874,-1.4098729,-1.3992503,-1.3993323,-1.4155781,-1.4127066,-1.4233469,-1.4252107,-1.4103069,-1.3848884,-1.1322042,-1.1917486,-1.3555523,-1.393497,-1.4081433,-1.3752329,-0.97856414,-1.0396316,-1.2369035,-1.3720387,-1.4039173,-1.411514,-1.4107357,-1.3928083,-1.3942816,-1.405586,-1.4034661,-1.3466831,-1.3486714,-1.3943691,-1.4137613,-1.4167185,-1.4250957,-1.431968,-1.440161,-1.4358023,-1.4436423,-1.4414256,-1.4347794,-1.427444,-1.4220848,-1.4200275,-1.4126794,-1.4005309,-1.3973774,-1.398884,-1.4058051,-1.4161685,-1.4003463,-1.3956885,-1.3753278,-1.3525376,-1.3741499,-1.4038785,-1.4065802,-1.42383,-1.4171863,-1.4170437,-1.4080943,-1.3863432,-1.3682686,-1.3624706,-1.367503,-1.360877,-1.3565123,-1.3609188,-1.3396859,-1.3249483,-1.3025682,-1.2591728,-0.8785329,-0.6842223,-0.77131045,-1.1133292,-1.2588649,-1.3082465,-1.3231616,-1.3047392,-1.3188893,-1.3234121,-1.3267636,-1.3402616,-1.3450924,-1.3422024,-1.3262877,-1.3233821,-1.3139932,-1.306119,-1.2721636,-1.1048018,-1.0803273,-1.2165494,-1.26741,-1.2776911,-1.2757504,-1.2680966,-1.2611196,-1.2578927,-1.255076,-1.2497423,-0.81337786,-0.8119014,-0.867452,-0.8093383,-0.59093,-0.6858552,-0.8354777,-0.9974067,-1.1765184,-1.2463088,-0.9310502,-0.64991593,-0.3575836,-0.60171735,-0.896852,-1.1160855,-1.1945796,-1.2165679,-1.237351,-1.2450721,-1.2314742,-1.2281027,-1.2197165,-1.2016628,-1.0265093,-1.0723109,-1.2068979,-1.224761,-1.220506,-1.2418847,-1.2423687,-1.2473557,-1.2274135,-0.8106059,-0.90724146,-1.116048,-1.2473949,-1.2887927,-1.2744174,-1.0856515,-0.90250516,-1.0986919,-1.21588,-1.2497643,-1.2613717,-1.1337682,-1.1572762,-1.2661742,-1.3069484,-1.3081567,-1.300349,-1.2943065,-1.237006,-1.2108728,-1.1152196,-1.0791495,-1.2716744,-1.3119013,-1.2905254,-1.2264246,-1.2427936,-1.227399,-1.2014674,-1.2404903,-0.996832,-0.5061506,-0.95429945,-1.1314982,-1.2068489,-1.2727141,-1.2789315,-1.2699482,-1.2740259,-1.2930042,-1.2899437,-1.3068206,-1.317987,-1.322758,-1.3144306,-1.3108201,-1.2794795,-1.2750044,-1.306302,-1.3103461,-1.3004129,-1.2977483,-1.283256,-1.2286696,-1.2265682,-1.2457367,-1.2768022,-1.2635565,-1.2665184,-1.2370906,-1.2471405,-1.2656517,-0.9853269,-0.30936244,-0.4336363,-0.7097808,-0.88235307,-1.0281996,-1.1521531,-1.2171681,-1.2274203,-1.2459011,-1.2582898,-1.2581749,-1.2834371,-1.3105648,-1.299303,-1.2947497,-1.3390042,-1.3031272,-0.8389766,-0.67765987,-0.8687364,-1.021645,-1.1676676,-1.2203888,-1.2290031,-0.4499942,-0.36786926,-0.73986375,-0.85753024,-0.90766454,-0.9908588,-1.0950818,-1.1441039,-1.1730423,-1.1554015,-1.1141967,-1.1443346,-1.1753914,-1.1940595,-1.1972333,-1.1953181,-1.1955552,-1.2112037,-0.7286458,-0.12911457,-0.5812601,-0.7792344,-0.880953,-0.84307826,-0.003742896,0.10879031,-0.044124804,0.35277474,-0.026201189,-0.2640137,-0.46404994,-0.5994731,-0.66801137,-0.44704807,0.027142815,-0.06463792,-0.2925372,-0.439727,-0.5736191,-0.67085373,-0.7713076,-0.84949225,-0.93479407,-0.97523963,-1.0306661,-1.0417904,-1.0363876,-0.8427754,-0.47423786,-0.23771387,-0.43065763,-0.6108061,-0.63752687,-0.0067047626,0.5405767,0.14833468,0.024070412,0.24858114,0.04909066,-0.36231884,-0.62469417,-0.81633526,-0.81522655,-0.83492297,-0.90250605,-0.9816799,-1.038799,-1.0832989,-1.12598,-1.1632342,-1.2074186,-1.1729649,-1.1578976,-1.1725985,-1.1934879,-1.2239847,-1.1371467,-1.1110992,-1.1112559,-1.1898764,-1.2505418,-1.2868428,-0.8178983,0.3182157,0.31425628,-0.07930679,-0.40225276,-0.6215341,-0.84540427,-0.98593175,-1.0354767,-1.0165098,-0.32002902,-0.46756804,-0.7969867,-0.98860633,-1.1355512,-1.221286,-1.2206326,-1.1973228,-1.004538,-1.0781921,-1.2176878,-1.2797495,-1.3061094,-1.3055316,-1.3097917,-1.3235489,-1.3235319,-1.320967,-1.331181,-1.3368738,-1.3324316,-1.3415973,-1.3343544,-0.8300407,-0.8751432,-1.1256638,-1.2663832,-1.3312643,-1.3339136,-1.3518708,-1.3855945,-1.3838712
+-1.8264256,-1.7366998,-1.6968251,-1.7292528,-1.7065793,-1.688694,-1.6494348,-0.33186108,-0.747019,-0.7047386,-0.6418427,-0.8635004,-1.2597611,-1.504543,-1.6172,-1.6662239,-1.681729,-1.6841137,-1.6782738,-1.6841807,-1.6856505,-1.6888642,-1.6853182,-1.6947999,-1.7011919,-1.7125796,-1.7156426,-1.7289158,-1.7065332,-1.7185203,-1.7084154,-1.7213724,-1.7360969,-1.7349242,-1.7257991,-1.7022147,-1.7127147,-1.730537,-1.7326584,-1.7478878,-1.750016,-1.765409,-1.7608738,-1.745385,-1.7371098,-1.7512529,-1.7409561,-1.7431386,-1.7497282,-1.7490306,-1.7465484,-1.7638843,-1.7655668,-1.7775918,-1.7817094,-1.7803016,-1.7981535,-1.7963784,-1.7791892,-1.7709388,-1.777859,-1.7880534,-1.78841,-1.78415,-1.7775037,-1.7590519,-1.7413676,-1.7370932,-1.7330011,-1.7468424,-1.7005721,-1.6813496,-1.7240545,-1.7474341,-1.7571003,-1.7638416,-1.767316,-1.7680237,-1.763312,-1.7458308,-1.7413293,-1.7173877,-1.7396592,-1.7242719,-1.7020738,-1.7147138,-1.6749442,-1.3008254,-1.2141571,-1.0404435,-0.5918969,-0.786652,-1.096798,-1.4701129,-1.6209469,-1.6832589,-1.6882982,-1.6670669,-1.690447,-1.6942455,-1.70262,-1.7062733,-1.6921748,-1.6958596,-1.677932,-1.6805918,-1.6677494,-1.3562837,-0.7772788,-0.8394886,-1.0128388,-1.3975081,-1.2073021,-1.4211185,-1.5061333,-1.3811338,-1.5096691,-1.1449747,-0.60929555,-0.8530045,-0.32311842,-0.22426754,-0.040774964,0.008920871,0.018177979,0.0035228059,-0.32660025,-0.8248629,-1.1942745,-1.3616126,-1.0954576,-0.717774,-0.78272045,-1.0827396,-1.2913702,-1.410224,-1.483464,-1.5303799,-1.5446235,-1.5532489,-0.7979928,-0.2574855,-0.42601693,-0.7574744,-1.1631894,-1.3521141,-1.464275,-1.1714807,-0.92800736,-1.2719994,-1.4361174,-1.5335834,-1.5197405,-1.3502262,-1.3143075,-1.51122,-1.5936468,-1.618839,-1.5189135,-0.4267475,0.20680594,-0.578147,-1.036484,-1.2915332,-1.416812,-1.4990025,-1.54579,-1.5634614,-1.5924649,-1.5996901,-1.6183777,-1.6074584,-1.3620255,-1.0148852,-1.279589,-1.4409592,-1.5414472,-1.5791206,-1.214129,-0.46485066,-0.74339247,-0.82580006,-0.65338683,-0.453205,-0.92345595,-1.1185398,-1.3366258,-1.461626,-1.5096436,-1.5360553,-1.4472193,-1.4546772,-1.5461409,-1.5805843,-1.5917089,-1.5898901,-1.5963614,-1.6115224,-1.6019285,-1.5945594,-1.5906974,-1.5826675,-1.576231,-1.5721784,-1.5958282,-1.344727,-1.118089,-1.2102494,-1.4077625,-1.5181386,-1.5624369,-1.5634488,-1.5772718,-1.5653762,-1.544651,-1.5281551,-1.305074,-1.2927494,-1.4291432,-1.498986,-1.5240085,-1.5203836,-1.5185139,-1.5037727,-1.5044367,-1.5037427,-1.5024264,-1.5059144,-1.5137167,-1.5301338,-1.5241463,-1.4968777,-1.499787,-1.4984099,-1.0556102,-1.0961899,-1.2629998,-1.3727045,-1.4457948,-1.4723481,-1.4601157,-1.0425049,-0.36660373,-0.9313253,-1.0962945,-1.0894446,-1.1550852,-1.2905642,-1.3618597,-1.3773642,-1.3712543,-1.361906,-1.3812366,-1.4174845,-1.4219136,-1.434557,-1.4348866,-1.445554,-1.4646604,-1.4141508,-0.2009697,-0.6474062,-0.6553261,-0.8362215,-0.9206215,-0.053899787,0.038670704,-0.23879895,0.24372858,-0.31899065,-0.46890795,-0.6741175,-0.87469375,-1.0194255,-0.8760409,0.14459103,-0.00040514022,-0.23522767,-0.4026271,-0.5940968,-0.7535307,-0.8655479,-1.001229,-1.1710176,-1.2205749,-1.2867274,-1.3029052,-1.327015,-1.0023031,-0.117072366,-0.010366015,-0.3617162,-0.5750851,-0.581938,-0.39888138,0.29948476,-0.15181264,-0.37997308,-0.08842192,-0.28687233,-0.8311832,-1.0009356,-1.1447701,-1.189664,-1.2133546,-1.2699134,-1.3307561,-1.376699,-1.4095321,-1.440019,-1.4772198,-1.5014274,-1.5094366,-1.5081707,-1.5052093,-1.5314462,-1.5321816,-1.4761395,-1.3063406,-1.2546551,-1.3868434,-1.4662781,-1.5099008,-1.0897909,-0.27238405,-0.2408495,-0.706572,-1.0111196,-1.208454,-1.3649864,-1.4414595,-1.4690685,-1.4691389,-1.4937439,-1.5052698,-1.5153782,-1.528883,-1.5588577,-1.5565896,-1.5501678,-1.5567122,-1.5662546,-1.5707188,-1.5632002,-1.5740464,-1.5702257,-1.574188,-1.5768963,-1.586223,-1.5886353,-1.5860424,-1.5912129,-1.5969085,-1.6010014,-1.5955461,-1.597126,-1.574345,-1.6168104,-1.6322343,-1.6347471,-1.6361988,-1.6087356,-1.6525245,-1.6607563,-1.6762022
+-1.7152495,-1.6733024,-1.6151562,-1.6282837,-1.6213906,-1.6106396,-1.5828166,-0.8489331,-1.1773343,-1.3454719,-1.3633728,-1.4826889,-1.5654436,-1.6354573,-1.6526499,-1.649021,-1.6585803,-1.6444119,-1.6264086,-1.6247551,-1.6217366,-1.6215837,-1.6198908,-1.6322632,-1.6495996,-1.6741705,-1.6914828,-1.692413,-1.6548285,-1.695792,-1.6696599,-1.6845385,-1.6780493,-1.6616061,-1.6466072,-1.6418873,-1.6529994,-1.6568385,-1.6537101,-1.6759138,-1.6594558,-1.654085,-1.6306407,-1.5958595,-1.6231633,-1.6440749,-1.6450944,-1.6437742,-1.660105,-1.6507487,-1.6559038,-1.6662886,-1.6688374,-1.6747429,-1.6704464,-1.6744313,-1.6950777,-1.6742201,-1.6543363,-1.6524057,-1.6636512,-1.6569554,-1.6356155,-1.6147828,-1.5744131,-1.5630615,-1.5624813,-1.5696459,-1.5682536,-1.5640304,-0.9304807,-1.2369034,-1.4240613,-1.5445731,-1.5853288,-1.584982,-1.5839593,-1.5743749,-1.556191,-1.5212436,-1.495055,-1.5065489,-1.5294819,-1.4803107,-1.4467721,-1.3072917,-1.3752284,-1.4484203,-1.1885692,-1.0174599,-0.32110524,-0.68360096,-0.96365035,-1.2407308,-1.3926115,-1.4700184,-1.461648,-1.4355488,-1.4505088,-1.4612911,-1.4798381,-1.4839574,-1.4708996,-1.4792545,-1.4476159,-1.3765197,-1.3955797,-1.3602095,-1.1362748,-1.0763142,-1.1238976,-1.251994,-0.81351733,-0.44085157,-0.79134434,-1.0154338,-1.2003531,-1.2751217,-0.5802045,-0.8484633,-0.987859,-0.5345153,-0.47598052,-0.3625122,-0.34421447,-0.4294027,-0.8422822,-1.0990267,-1.2190194,-1.2923912,-0.2936138,-0.6235273,-0.90831316,-1.1389694,-1.0512998,-1.219761,-1.3066771,-1.3318197,-1.3433368,-1.3598323,-1.2068447,-0.48442274,-0.7248288,-0.9366026,-1.1797724,-1.2875742,-1.3374228,-1.2799048,-1.3025253,-1.4060324,-1.4470856,-1.4627097,-1.3415169,-0.8867495,-1.1891272,-1.3406051,-1.4321914,-1.4741862,-1.441236,0.29644036,0.052446105,-0.53128344,-0.81957114,-1.0037478,-1.0880371,-1.1925974,-1.3105414,-1.3749158,-1.43554,-1.4577649,-1.4814563,-1.4354303,-1.3591278,-1.3769195,-1.3837917,-1.4049268,-1.4384938,-1.481347,-1.4255341,-0.2926681,-0.82290465,-0.8629608,-1.0622649,-1.1555533,-1.3110139,-1.2468779,-1.3433862,-1.4093766,-1.423447,-1.4344349,-1.4472172,-1.4040685,-1.4255179,-1.4319237,-1.4380612,-1.4459307,-1.4464754,-1.4498912,-1.4294565,-1.4297554,-1.4213337,-1.4335816,-1.4510579,-1.4483504,-1.4475045,-1.4295716,-1.4333632,-1.3234687,-1.3865746,-1.4026005,-1.4147117,-1.3708218,-1.4078918,-1.3704312,-1.3612723,-1.3457398,-1.3856099,-1.3984568,-1.3981988,-1.4023232,-1.4164438,-1.4192908,-1.4045577,-1.3917115,-1.4226534,-1.4159073,-1.4133623,-1.4199371,-1.4079471,-1.4189594,-1.4103172,-1.3818166,-1.3963883,-1.4540772,-1.3651012,-1.2998925,-1.3451321,-1.3900943,-1.3846636,-1.4244962,-1.3481789,-1.3345869,-1.3108268,-1.3402798,-1.3971099,-1.4271532,-1.1390567,-1.2017646,-1.3006053,-1.3416102,-1.3406013,-1.3221403,-1.3576148,-1.3822376,-1.3830969,-1.3873396,-1.3824195,-1.3856169,-1.3871217,-1.4249235,-1.203898,-1.2791786,-1.3740007,-1.3818502,-1.3442807,-0.17053428,-0.22541869,-0.5485546,-0.21262887,-0.3742744,-0.5648874,-0.7537966,-0.89189583,-0.96137977,-1.0117526,-0.41107434,-0.39455652,-0.6300519,-0.7953659,-0.9336524,-1.0433587,-1.1052176,-1.2007053,-1.2601889,-1.2908735,-1.2929848,-1.3026105,-1.3356634,-1.2011952,0.10847942,-0.11834321,-0.3172579,-0.50757056,-0.6879052,-0.7250976,0.3699358,-0.080181755,-0.20674229,-0.45662987,-0.49447703,-0.698413,-0.84839773,-1.0099063,-1.0817039,-1.1160067,-1.2007742,-1.2602074,-1.2813772,-1.282715,-1.312042,-1.3081442,-1.3426564,-1.3492763,-1.3428648,-1.3535728,-1.350066,-1.365623,-1.3427083,-1.0707697,-1.024441,-0.7887261,-0.92928576,-1.1268175,-0.3483307,-0.07539848,-0.02520337,-0.3390326,-0.6690974,-0.89526427,-1.0683529,-1.2238615,-1.3121264,-1.3228469,-1.3958778,-1.3498014,-1.4146824,-1.4487247,-1.4431951,-1.4283619,-1.4396572,-1.4692254,-1.4813552,-1.474896,-1.4629432,-1.475843,-1.4670869,-1.473285,-1.4905411,-1.4944322,-1.5023278,-1.4944208,-1.4961241,-1.5013719,-1.5103678,-1.5076463,-1.5260297,-1.485535,-1.5491433,-1.5769985,-1.5768536,-1.5757109,-1.5652128,-1.6016496,-1.6104088,-1.634251
+-1.7504448,-1.7030046,-1.6887995,-1.7093173,-1.7142633,-1.7211637,-1.6862999,-1.6270031,-1.6742074,-1.6837629,-1.6734504,-1.6887591,-1.7054882,-1.7264992,-1.7301606,-1.723566,-1.7146293,-1.7180551,-1.715033,-1.7201829,-1.7239887,-1.7178735,-1.7209506,-1.7212604,-1.7256105,-1.745587,-1.7422414,-1.7318766,-1.7447681,-1.7514763,-1.731052,-1.7492874,-1.7616673,-1.7580516,-1.737306,-1.7339591,-1.7377958,-1.7399509,-1.7349035,-1.7420692,-1.7426959,-1.7487544,-1.7305137,-1.6868329,-1.7163455,-1.7248709,-1.7280272,-1.7307396,-1.7471105,-1.7348047,-1.740481,-1.7502626,-1.753027,-1.7594364,-1.7427995,-1.7461711,-1.7507535,-1.754425,-1.7185597,-1.7455721,-1.7495396,-1.7519622,-1.758543,-1.7665285,-1.7683558,-1.7424119,-1.729405,-1.6727393,-1.6775858,-1.6669006,-1.6531394,-1.675648,-1.6988025,-1.7168038,-1.7496967,-1.7422459,-1.7285695,-1.7043904,-1.7455328,-1.7459255,-1.6667696,-1.6794753,-1.7254571,-1.6964215,-1.6341357,-1.659889,-1.6636472,-1.6828601,-1.4249022,-0.56082934,-0.65428215,-0.8213944,-1.3365047,-1.5503948,-1.6484344,-1.6608026,-1.218857,-1.3615394,-1.5163678,-1.6063778,-1.6644295,-1.647952,-1.6300924,-1.6371787,-1.077389,-1.169267,-1.4127897,-1.1575501,-1.3307781,-1.419661,-1.5839282,-1.6308285,-1.3464789,-0.3557397,-0.3745297,0.054075755,-0.5455042,-1.0920446,-0.38248375,-0.2072913,-0.06640274,-0.106025465,-0.34639233,-0.7004273,-0.6117062,-1.0509394,-1.2659395,-1.376318,-1.5113922,-1.2440851,-0.3116935,-0.54433215,-0.9763899,-1.1899753,-1.3531194,-0.95260215,-1.1995134,-1.3233169,-1.4025677,-1.2349921,-1.0183219,-0.8552209,-0.97774506,-1.0161874,-1.2248957,-1.3572011,-1.4440222,-1.3239567,-1.4069433,-1.5194926,-1.5533074,-1.5715369,-1.1494751,-1.0883574,-1.3471329,-1.4741937,-1.5451574,-1.582041,-1.0276198,0.16905707,-0.19668823,-0.7802585,-1.0450323,-1.1638846,-1.2717286,-1.3812821,-1.4680202,-1.5395789,-1.5559525,-1.5691612,-1.5817914,-1.4996665,-1.5202732,-1.5476485,-1.5715443,-1.55919,-1.570435,-1.5859387,-1.2898916,-0.7010906,-1.1909747,-1.3710599,-1.4512328,-1.4749744,-1.4749231,-1.5149543,-1.5544837,-1.5599941,-1.5634185,-1.5527494,-1.5569706,-1.550324,-1.5543602,-1.5621599,-1.5600047,-1.5703981,-1.5688798,-1.5727625,-1.555486,-1.5575727,-1.5520624,-1.5469217,-1.5501544,-1.5581348,-1.5744286,-1.541291,-1.5316427,-1.5035468,-1.5520431,-1.5526705,-1.5484691,-1.5251228,-1.5327505,-1.5301958,-1.5227535,-1.5206709,-1.5190628,-1.5179651,-1.5171539,-1.5329418,-1.5355058,-1.5342336,-1.5302751,-1.5371407,-1.5195084,-1.5184009,-1.5223324,-1.5225317,-1.5250055,-1.525149,-1.5118692,-1.4976282,-1.5031757,-1.526394,-1.4830682,-1.4821963,-1.4876881,-1.4839437,-1.475765,-1.4646733,-1.4771997,-1.4518869,-1.4271717,-1.4587835,-1.4739853,-1.4402614,-1.4037449,-1.4487011,-1.4665608,-1.4310067,-1.413641,-1.429996,-1.4596653,-1.466542,-1.4653885,-1.4730418,-1.4787998,-1.4845008,-1.4905819,-1.465759,-1.4404051,-1.456786,-1.452795,-1.4396,-0.9918239,0.19635038,-0.11136692,-0.4682418,-0.3942363,-0.63190204,-0.87827516,-1.0545224,-1.2184331,-1.2726464,-1.3480592,-0.8510077,-0.60387695,-0.8635849,-1.0390904,-1.1829678,-1.2943509,-1.3524303,-1.4263086,-1.4891319,-1.4918811,-1.4810125,-1.4676161,-1.4841207,-0.8844546,0.10245767,-0.39653638,-0.73048246,-0.9455825,-1.078707,-0.650626,0.17291728,-0.39537182,-0.7725909,-0.9610443,-1.1158854,-1.251709,-1.3356507,-1.4063039,-1.4583304,-1.4798279,-1.4891376,-1.4942865,-1.4970148,-1.491875,-1.5085783,-1.5114561,-1.5133994,-1.506887,-1.5168546,-1.5308437,-1.5225849,-1.5152056,-1.5057775,-1.2988439,-1.3559601,-1.3443658,-1.4552664,-1.384886,-0.20889068,0.2043562,-0.16383773,-0.7086426,-1.0230151,-1.2192955,-1.3302639,-1.4363776,-1.5031977,-1.5300351,-1.5487014,-1.5444374,-1.5503365,-1.5664117,-1.5717204,-1.5747433,-1.5755918,-1.5764563,-1.5871292,-1.5942659,-1.6150416,-1.6231827,-1.621977,-1.6206675,-1.6270022,-1.6331562,-1.6432184,-1.645345,-1.6456062,-1.661094,-1.6434348,-1.666248,-1.6707247,-1.6399777,-1.6604519,-1.6745471,-1.6845676,-1.674926,-1.6765842,-1.6862177,-1.6930343,-1.6882335
+-0.60458195,-0.6630055,-0.6370153,-0.61872745,-0.60870904,-0.57950795,-0.57026297,-0.4347024,-0.55970037,-0.5920514,-0.62804323,-0.6361804,-0.6287244,-0.6225046,-0.61878306,-0.62311894,-0.6203251,-0.6425643,-0.6664277,-0.66813815,-0.6527879,-0.6405073,-0.636116,-0.6369739,-0.6290134,-0.62463546,-0.62025,-0.63771003,-0.643059,-0.63308716,-0.6440369,-0.6431706,-0.63122886,-0.6333698,-0.63664377,-0.6301334,-0.6215658,-0.6286483,-0.64198244,-0.64510673,-0.63659394,-0.63626957,-0.61821985,-0.6282543,-0.61508214,-0.62210363,-0.6259915,-0.63700134,-0.6383541,-0.6378415,-0.6317779,-0.29408026,-0.4752413,-0.5670966,-0.62051666,-0.5863843,-0.62242544,-0.66063887,-0.63397086,-0.5788762,-0.61147827,-0.60558146,-0.5864009,-0.5768853,-0.5578965,-0.5247499,-0.5445344,-0.5978968,-0.5982586,-0.6114861,-0.6129341,-0.61255634,-0.605418,-0.5996926,-0.59514326,-0.5965752,-0.5950412,-0.59049034,-0.5664172,-0.55774665,-0.5977516,-0.55248976,-0.6023345,-0.55900276,-0.5802953,-0.58222836,-0.58463174,-0.5624206,-0.56136394,-0.57782465,-0.58655804,-0.58326215,-0.57995147,-0.56684434,-0.563769,-0.5747988,-0.59289217,-0.5806918,-0.58596694,-0.56984043,-0.56284726,-0.5812551,-0.5899998,-0.5685269,-0.57268333,-0.58250964,-0.5735462,-0.5747438,-0.5607422,-0.5653887,-0.56160754,-0.5655777,-0.5698335,-0.59502447,-0.5982143,-0.5836669,-0.5863218,-0.57951826,-0.58849525,-0.6063585,-0.6457149,-0.59758717,-0.5967986,-0.5972425,-0.5833114,-0.58207256,-0.5810833,-0.5636883,-0.5864439,-0.6228328,0.63098335,-0.032304637,-0.16431415,-0.2929475,-0.3965841,-0.46677667,-0.5436439,-0.515452,-0.545456,-0.57780886,-0.6016399,-0.63209033,-0.63352156,-0.61981577,-0.6125981,-0.61392546,-0.62791145,-0.6188563,-0.59849936,-0.59203655,-0.61108077,-0.60278904,-0.6231065,-0.6152647,-0.5977781,-0.59038186,-0.5852426,-0.591161,1.9162223,0.8607578,0.16358814,-0.08688564,-0.2509306,-0.35851654,-0.46491545,-0.5291307,-0.5405253,-0.56311464,-0.56912994,-0.57296705,-0.6056875,-0.60535073,-0.5906369,-0.57729846,-0.585715,-0.62035304,-0.61957645,-0.56395483,-0.25847873,-0.522625,-0.48185444,-0.55948013,-0.54488605,-0.23879606,-0.42693806,-0.31024426,-0.4219718,-0.49988174,-0.54511,-0.585288,-0.602892,-0.6039859,-0.5990572,-0.5814421,-0.58775747,-0.59745926,-0.57671076,-0.6056061,-0.6100195,-0.61649704,-0.61404276,-0.6080917,-0.59845006,-0.57230353,-0.603842,-0.6108558,-0.6028639,-0.59276384,-0.5963473,-0.6184355,-0.61537814,-0.61483353,-0.6097685,-0.60903835,-0.6151447,-0.61509013,-0.6382966,-0.6205447,-0.6145396,-0.6390158,-0.61883235,-0.607983,-0.6097895,-0.6237854,-0.631129,-0.6272526,-0.5988064,-0.5982511,-0.6013162,-0.6077194,-0.63481116,-0.6554675,-0.6085734,-0.60718465,-0.61498094,-0.62082946,-0.645826,-0.6468183,-0.6524209,-0.63150096,-0.60703135,-0.61897373,-0.62645644,-0.6385987,-0.64175636,-0.55468935,-0.56212115,-0.6076954,-0.6577443,-0.6491648,-0.6454339,-0.6439578,-0.6497206,-0.6415434,-0.6597202,-0.65347815,-0.6475977,-0.6366581,-0.6516125,-0.65437716,-0.6320384,-0.64614046,-0.6622369,-0.65760034,-0.6594074,-0.5576744,-0.567267,-0.6219553,-0.62537843,-0.6581987,-0.6609552,-0.6674446,-0.48748916,-0.42989182,-0.49919635,-0.5133888,-0.58445275,-0.62348574,-0.6402279,-0.6543704,-0.66202176,-0.6465523,-0.632278,-0.6327555,-0.64718723,-0.64886373,-0.6685498,-0.65418214,-0.63651454,-0.6234018,-0.6435823,-0.6541445,-0.65849024,-0.6532328,-0.64056844,-0.64986575,-0.6330029,-0.6325863,-0.63530946,-0.63420033,-0.638701,-0.631102,-0.6240479,-0.6423242,-0.6405349,-0.6492411,-0.6471994,-0.64615536,-0.6316824,-0.63306993,-0.6354291,-0.6374681,-0.6418328,-0.62780756,-0.61708254,-0.62713057,-0.62788635,-0.6324699,-0.6070744,-0.63913155,-0.6624766,-0.62904316,-0.634358,-0.07226356,-0.079440914,-0.24611929,-0.38407862,-0.47944158,-0.563339,-0.5813302,-0.62368906,-0.6063171,-0.62780386,-0.6331011,-0.6215327,-0.61829,-0.633348,-0.6335378,-0.6178299,-0.62811446,-0.6261731,-0.6376376,-0.63878465,-0.6136881,-0.61069304,-0.6159922,-0.6039605,-0.591363,-0.5866692,-0.5729843,-0.5686157,-0.5699592,-0.5772294,-0.5996759,-0.5946412,-0.6191638,-0.5891039,-0.59727186,-0.6165946,-0.61572075,-0.62549084,-0.61669296,-0.61069566,-0.62229013,-0.62919563
+-0.21722853,-0.110361464,0.028173916,-0.19793862,-0.07068401,-0.029594325,0.008245595,-0.1265811,-0.0050321296,-0.08546696,-0.378973,-0.23222804,-0.40657204,-0.5022067,-0.18616524,-0.25494635,-0.24050203,-0.35042512,-0.44142294,-0.5641297,-0.6447687,-0.69682616,-0.73671806,-0.5637208,0.057401612,0.102500774,0.11435113,0.03425491,0.11857927,0.057123043,-0.021341763,-0.18672037,-0.37946954,-0.51220286,-0.65478283,-0.70688856,-0.81781054,-0.86604005,-0.18102416,0.27567607,0.15453711,-0.026462793,0.027714245,-0.105031334,-0.19350773,-0.32201743,-0.44480073,-0.70520526,-0.7205585,-0.38472134,0.09524614,0.21664014,0.27566507,0.20267183,0.106929414,-0.111994155,-0.20633155,0.0733144,-0.11197945,-0.074428566,0.058399282,-0.10337963,-0.26171663,-0.33265662,-0.61018336,-0.8440063,-0.9142077,-1.0423172,-1.0971327,-0.44585705,-0.87634945,-0.32506895,-0.4279374,-0.7518112,-0.9215659,-0.75244445,-0.53292835,-0.57806015,-0.9633732,-0.20228279,-0.7005997,-0.54803306,-0.14936173,-0.5272962,-0.3843842,-0.13983345,-0.19487038,-0.27540547,-0.5393817,-0.4758364,-0.6495551,-0.7970907,-0.95453286,-1.0908513,-1.1660241,-1.1341524,-0.9434078,-0.6368303,-0.9311708,-0.978629,-1.0040855,0.05692342,0.46620703,0.24474064,0.30920953,0.18410358,0.38055944,0.2457996,-0.029137678,-0.3775466,-0.5057142,-0.75119305,-0.9129859,-0.2600583,-0.659989,-0.8481708,-0.79597557,-0.36064923,-0.5555073,-0.658773,-0.7568093,-0.70445466,-0.7868374,-0.954337,-0.33077046,-0.1739716,-0.509642,-0.69840336,-0.7523748,-0.23220325,-0.5271208,0.06513066,0.007015243,-0.163726,-0.19594437,-0.4450087,-0.44585538,-0.5212332,-0.7585773,-0.62175506,-0.22364652,-0.47151685,-0.6748078,-0.81763846,-0.26075006,0.074110396,-0.14704603,0.16543815,0.0024127662,-0.1114646,-0.31472775,-0.6024151,-0.5458999,-0.8278869,-0.6061262,-0.5639281,-0.703089,-0.63262844,-0.5293251,-0.44057286,-0.2045351,0.1051778,0.07169602,-0.16242814,0.2319662,0.0776579,0.051686488,-0.09081709,-0.25902468,-0.3092279,-0.32464707,-0.47321612,-0.4716407,-0.5785973,0.08015547,0.43231297,0.31394836,0.2890575,0.23843494,0.106972806,-0.015437685,-0.13283163,-0.28921983,-0.34444317,-0.27305943,-0.28770867,0.33021802,0.38125348,0.13242391,-0.37378222,-0.115885176,0.21896663,0.023173869,-0.17610434,-0.54547805,-0.42015213,0.2314027,0.3500002,0.19921422,0.14416732,0.10353729,0.11199351,0.19419399,0.1687105,0.060447104,0.10598019,0.096827865,0.04247475,0.006161563,-0.09207598,0.057174362,0.15273461,0.19598608,0.10241247,0.29039446,0.24148616,0.21345063,0.18669362,0.21386752,0.21219462,0.029262058,0.0035344139,0.028993875,-0.06610692,-0.07477238,-0.085218765,-0.18598977,-0.2985764,-0.23997784,-0.2893217,-0.4926927,-0.71391034,-0.7787875,-0.55074614,-0.34529236,-0.55159366,-0.72089154,-0.5988418,-0.691064,-0.68155134,-0.67999,-0.7794825,-0.99726593,-1.0960689,-1.0910407,-1.0633602,-0.91400385,-0.98324823,-1.0994371,-1.325124,-1.3091662,-1.2887398,-1.2446501,-1.1967388,-1.2167419,-1.2564675,-1.2572255,-1.279042,-1.2588015,-1.2308106,-1.2761223,-1.2579093,-1.0695593,-0.99480844,-0.82562923,-1.0923142,-1.0802419,-1.0097375,-1.1357746,-1.2410789,-1.1684067,-1.1293433,-1.1684992,-1.016573,-1.1440935,-1.0554943,-1.1771345,-1.2210474,-1.2414633,-1.2540357,-1.1409049,-1.1845124,-1.2094684,-1.1113653,-1.1194487,-1.1733919,-1.1905978,-1.2398202,-1.2478836,-1.147334,-1.0385282,-0.802582,-0.49915594,-0.36517766,-0.55853784,-0.8639909,-0.83661664,-0.9835417,-1.0936097,-1.1112094,-1.1361421,-1.0190359,-0.6901213,-0.5960775,-0.68531275,-0.91896176,-1.0992799,-1.1605484,-1.2034929,-1.0941085,-1.033171,-0.9716953,-0.982962,-1.002333,-0.9755657,-0.47232723,-0.7807542,-0.9732082,-0.78359824,-0.5494112,-0.16782609,0.39012635,0.46634772,0.030807622,0.1995196,-0.16874874,0.24762377,0.09251224,-0.3598002,-0.40273035,-0.6177219,-0.6453018,-0.8196493,-0.82096994,-0.8762446,-0.76380444,-0.6647029,-0.25029364,-0.2648312,-0.6005058,-0.84721136,-0.88962,-0.87258327,-0.88412607,-0.86450523,-0.8369952,-0.82226694,-0.41124302,0.21632451,0.76747036,0.38879445,0.6835194,0.92964953,0.12881812,-0.57277405,-0.03573864,0.5202057,0.5073329,0.30789244,0.030448355,-0.17505014,-0.02106411,0.10846441,0.10835796,0.024652287
+-0.54092944,-0.4614023,-0.38190523,-0.5129689,0.13727888,0.13955635,0.032477133,-0.24670684,-0.231615,-0.27676198,-0.54343486,-0.5642357,-0.4548074,-0.37218824,0.42665675,0.25980255,0.12367008,-0.16845775,-0.26644525,-0.3302269,-0.4270106,-0.59145665,-0.71861225,-0.67946327,-0.065552644,0.0006444827,0.048961528,0.07535892,0.14141008,0.12128549,-0.055335335,-0.2432903,-0.4097002,-0.57605827,-0.7521062,-0.80641437,-0.6469554,-0.8846841,-0.4953617,0.5829231,0.4297121,0.45646027,0.41911435,0.24928579,0.04851397,-0.061052762,-0.28190908,-0.4717921,-0.5151174,-0.09035971,0.1367552,0.116686285,0.37937716,0.27518725,0.03268329,-0.0673494,-0.28585133,-0.12989205,-0.38809246,-0.52453643,-0.22421128,-0.36980835,-0.59145284,-0.68011737,-0.91756797,-1.0252023,-1.121871,-1.2554073,-1.1643057,-1.0722157,-1.0177345,-0.31038198,-0.44722992,-0.8361987,-0.6516522,-0.6374237,-0.05784691,-0.4218117,-0.6881813,-0.3424176,-0.7171575,-0.91586876,-1.0101755,-1.1455338,-0.6231079,0.050045796,-0.3480776,-0.59919,-0.87648916,-0.7966615,-0.77680665,-1.0100799,-1.108348,-0.7280307,-0.9489932,-1.1638827,-1.0905888,-0.86849403,-1.1836351,-0.9870546,-0.9833944,0.65209544,0.3475783,0.17150393,0.10720549,-0.0326534,-0.23180297,-0.30709141,-0.36034477,-0.58673984,-0.5240954,-0.73481685,-1.0933543,-1.1615171,-1.3123863,-1.3899385,-1.457196,-0.94152737,-1.0604603,-0.8578284,-1.0083327,-1.1646656,-1.2831166,-1.3924551,-1.4179947,-1.428328,-1.4745648,-1.5027112,-1.4319458,-1.4175936,-1.4489794,0.07168511,-0.21206385,-0.3836599,-0.3344156,-0.6195812,-0.72727454,-0.9570117,-1.1508198,-0.71276045,0.2127971,-0.22173956,-0.508673,-0.7484628,-0.87364733,-0.81732845,-0.7935878,-0.9294883,-1.0968739,-1.207118,-1.322631,-1.4082952,-1.4378569,-1.3482125,-1.1046337,-1.2613952,-1.0000792,0.6987466,0.31400383,0.23468077,0.16048154,0.055735447,0.018355675,-0.23460737,-0.04966346,-0.16483182,-0.31410182,-0.4370597,-0.5010074,-0.5500227,-0.59822714,-0.75024897,-0.8817659,-0.5649101,0.7865519,0.56868607,0.49322677,0.53342575,0.3538976,0.1480073,-0.045518927,-0.23961022,-0.37707698,-0.49117684,-0.43259692,0.37022012,1.0301266,0.81921464,0.6756583,0.39781955,0.46008492,0.4366592,0.42266718,-0.038763247,-0.488177,-0.35874623,0.2032601,0.24255878,0.1588974,0.19839466,0.15299076,0.022780456,-0.028702877,-0.0091638565,-0.034451,0.045734793,0.002238758,-0.063649274,-0.1692791,-0.1527555,-0.12759349,-0.03581769,-0.0706202,0.5343269,0.51715326,0.35598144,0.4050898,0.2886146,0.1558041,0.19922167,0.008375578,-0.044243716,-0.059445463,-0.119481586,-0.19729158,-0.21696132,-0.25139543,-0.31620803,-0.36866987,-0.39121962,-0.43388152,-0.7007649,-0.7378539,-0.551008,-0.51025295,-0.6616591,-0.74263227,-0.7324333,-0.8279988,-0.76824355,-0.78484315,-0.8424568,-0.95180774,-1.0308921,-0.8344123,-0.90547,-0.9443741,-0.92352605,-0.9618194,-1.1810843,-1.1533425,-1.149134,-1.103753,-0.9369559,-1.0608019,-1.066879,-1.1915712,-1.1946554,-1.0322156,-1.0356498,-1.1951206,-1.1831127,-0.9676144,-0.8355496,-0.8565744,-0.95918083,-0.9608669,-0.90546024,-1.060814,-1.1126575,-0.97082937,-0.9451246,-0.9979589,-0.794344,-1.0139709,-0.9464798,-1.0748954,-1.136026,-1.1825223,-1.1808443,-1.0568519,-1.0235033,-1.0663471,-0.8951081,-1.0281582,-1.1409973,-1.1488793,-1.1419001,-1.0998421,-1.0261652,-0.99545145,-0.8111281,-0.57198983,-0.49913347,-0.57244575,-0.9112035,-0.9272553,-0.7764635,-0.9507754,-0.9933609,-0.972415,-0.9391602,-0.7357149,-0.62336224,-0.69479036,-0.8054855,-1.0334005,-1.0098711,-1.0564804,-0.8227309,-0.8504898,-0.81710243,-0.8463458,-0.8915652,-0.69829285,-0.16439933,-0.6064027,-0.8093133,-0.7335882,-0.6380311,-0.49584055,-0.009655215,0.19313207,0.16694239,0.33333078,-0.15219086,-0.10015958,0.11400428,-0.2225427,-0.63778067,-0.84210163,-0.8046638,-0.83769447,-0.80646205,-0.738707,-0.4957248,-0.39983213,-0.24192545,-0.08847628,-0.5350384,-0.9397235,-0.87131983,-0.8317178,-0.7962154,-0.7408367,-0.5966614,-0.6310434,-0.12085878,0.479611,0.6555604,-0.21893299,0.3603052,0.7012774,-0.18480408,-0.4536988,-0.12859845,-0.065377824,-0.24421227,0.008169174,-0.27184704,-0.1930581,-0.097045474,-0.21067101,-0.12348317,-0.044476204
+-0.17112166,-0.26766798,-0.19691128,-0.33540276,-0.3330003,-0.41845357,-0.3471974,-0.4150272,-0.41842204,-0.4946391,-0.64013433,-0.63551116,-0.7758763,-0.5753539,-0.39082453,-0.5847589,-0.6378188,-0.70272374,-0.65687644,-0.7186228,-0.8168584,-0.9265835,-0.9207895,-0.29613677,-0.29130277,-0.39225313,-0.46066082,-0.44117635,-0.43360698,-0.33190113,-0.38550955,-0.3397045,-0.37028876,-0.45163304,-0.6097498,-0.7067747,-0.689431,-0.829005,-0.34552145,-0.08282993,-0.20222762,-0.15888086,-0.18570513,-0.22218925,-0.44395095,-0.16970664,-0.1544154,-0.06401839,-0.19437706,-0.1345186,0.07822461,0.26985198,0.119219,-0.021677524,-0.089063235,-0.1637055,-0.16593486,0.19112527,0.14439327,0.0031707957,-0.010121293,-0.1486136,-0.3227535,-0.23244423,-0.46935064,-0.6807016,-0.829515,-0.81249946,-0.3483451,-0.16797534,-0.37111184,-0.600392,-0.17762601,-0.37975788,-0.4129727,-0.47961104,0.16683063,-0.16034669,-0.40971237,-0.52826595,-0.8704869,-1.0776896,-1.0779805,-1.2901995,-0.87184656,-0.25168812,-0.77311647,-1.0655956,-1.1951519,-0.86659527,-0.900815,-0.90132403,-1.095443,-1.0412703,-0.9041017,-1.1497867,-1.3126464,-1.1656213,-1.4013498,-1.1750369,-0.052160315,0.56044686,0.44037336,0.15773618,-0.070957564,-0.37769145,-0.056287877,-0.09530284,-0.23819181,-0.52370965,-0.797348,-0.9684417,-1.1750566,-1.0410447,-1.2384455,-1.3266238,-0.84359103,-0.54565555,-0.3132387,-0.59590065,-0.8745908,-1.0168272,-1.1465414,-1.2740258,-1.2460651,-1.2437801,-1.3545648,-1.3913523,-1.0333958,-0.38699198,-0.7941222,-0.96095586,-1.0666167,-1.1756599,-0.9309766,-1.0589991,-1.0665965,-1.1365086,-1.2488618,-1.0758982,0.45135987,0.21326336,-0.15898308,-0.4169044,-0.5535934,-0.7804978,-0.85259587,-0.9958228,-1.0737885,-1.1246674,-1.2195351,-1.2575355,-1.2971263,-1.2541268,-0.97658324,-0.9090705,0.033903576,0.6196646,0.473382,0.31036648,0.23499218,0.017351173,-0.12490942,-0.26300192,0.13914105,0.25128713,0.101621665,0.2024287,0.19985762,0.06459921,-0.016645767,-0.23330247,-0.4023291,-0.31802288,0.5713183,0.41877267,0.34426966,0.25884548,0.11845704,-0.05204227,-0.21330759,-0.3376351,-0.3713153,-0.48053545,-0.52130413,0.20085892,0.7072812,0.4286747,0.28741917,0.2048183,0.17404601,0.19815606,0.17135543,-0.03630642,-0.49128264,-0.270798,0.062252797,0.13910565,0.091503255,0.11168033,-0.0038312078,-0.14174578,-0.38336524,-0.09987538,-0.08032789,-0.20860443,-0.18834513,-0.15400696,-0.18191001,-0.19434547,-0.26477954,-0.16366231,0.04645007,0.620288,0.45001104,0.21442476,0.19636318,0.09456203,0.016110726,-0.028611146,-0.16262001,-0.15854359,-0.15131432,-0.2362783,-0.22676414,-0.2477226,-0.3370429,-0.34018177,-0.31353158,-0.038538463,-0.30601972,-0.7670827,-0.6402012,-0.4892159,-0.37114385,-0.6535387,-0.7371353,-0.7094655,-0.8634606,-0.75171643,-0.80208826,-0.85058594,-0.8807334,-1.114521,-0.87578,-0.880139,-1.0079588,-0.873263,-1.0243155,-1.2010126,-1.2771766,-1.2448201,-1.2004771,-0.97573376,-1.1305794,-1.0513619,-1.2211,-1.2830871,-0.8491045,-1.0628732,-1.1278492,-1.1562159,-1.0114319,-0.7180511,-0.8748884,-1.0425202,-0.9922695,-0.68933636,-0.984205,-1.1228518,-1.0240706,-0.99727154,-1.0340779,-0.57075363,-0.94039774,-0.9658332,-1.0581161,-1.0573555,-1.1349427,-1.1716795,-1.115127,-1.1281152,-0.9462695,-0.60071295,-0.87587965,-1.0296222,-1.1440581,-1.1273482,-1.1113555,-1.0481694,-1.055723,-0.83768773,-0.5748383,-0.55980384,-0.5300056,-1.0365901,-1.0132103,-0.8910966,-1.1014302,-1.1691293,-1.1148108,-1.0795014,-0.89700776,-0.62959784,-0.73389703,-0.807641,-1.0379933,-1.0964817,-1.1303036,-0.6223366,-0.5085115,-0.56531656,-0.7521246,-0.90733385,-0.29724097,0.25643644,-0.431144,-0.88703257,-0.7945802,-0.6993973,-0.53037953,0.0017933995,-0.014598176,-0.18004185,0.156728,-0.3720654,0.04289172,-0.14872923,-0.637059,-0.78368855,-0.9681175,-0.9407692,-0.88675374,-0.9802675,-0.9384568,-0.6608363,-0.51840574,-0.40062195,-0.20857811,-0.53040206,-0.9330096,-0.47154456,-0.48079264,-0.32725853,-0.35342854,0.051712133,-0.21323633,0.41293228,0.64660776,0.5852715,-0.2454783,0.3032968,0.5398646,-0.033721708,-0.31665453,-0.013313249,-0.011517547,-0.480457,-0.20307043,-0.5628176,-0.37063128,-0.49247468,-0.42146456,-0.32670057,-0.31726503
+-1.1464014,-1.3313388,-1.3354766,-1.3534915,-1.3094938,-1.5027053,-1.5213449,-1.3675056,-0.6285614,-0.5952956,-0.47341675,-0.74533486,-0.8807212,-0.1501295,-0.5614393,-1.0148215,-1.2009928,-1.0328614,-0.8735578,-0.6737339,-0.9850825,-1.1304232,-1.1957774,-1.1326467,-1.1197336,0.33583608,-0.11849227,-0.5118441,-0.46208823,-0.27531952,-0.3775671,-0.747077,-0.878626,-0.9823029,-1.1575663,-1.0439503,1.0187029,1.0369625,0.94355464,0.5467408,0.010511719,-0.43310225,-0.7787161,-1.0334078,-0.68165666,-0.34576315,-0.16617823,-0.37657088,-0.8144899,-0.19162959,-0.072124206,-0.03222645,-0.3792782,-0.6633098,-0.4330083,-0.44240713,-0.6471989,-0.8809438,-1.1704483,-1.0439886,-1.3333677,-1.5382528,-1.6021173,-1.6019099,-1.608913,-1.6437873,-1.692869,-1.6594608,-1.5657635,-1.6349279,-1.6649196,-1.691282,-0.90501976,-0.42737192,-0.7776725,-1.3434091,-1.5231271,-1.5765901,-1.6342404,-1.6411813,-1.6597112,-1.6771417,-1.647793,-1.7035756,-1.6543093,-1.6363349,-1.7097062,-1.7315581,-1.7613016,-1.726784,-1.3886449,-0.86353415,-1.2452829,-1.4684795,-1.5830998,-1.6212773,-1.6365216,-1.6207869,-1.6870025,-1.6774694,-1.6843631,-1.6253664,-1.6893965,-1.7083046,-1.7076713,-1.7389817,-1.7385617,-1.7205735,-1.7469841,-1.5935476,-1.4897636,-1.6471545,-1.6957221,-1.627435,-1.6917131,-1.7295144,-1.7282499,-1.6962323,-1.7022167,-1.6985108,-1.7141702,-1.2107381,-1.3176526,-1.5767646,-1.593504,-1.6124575,-1.7166785,-1.6034501,-1.3716908,-0.80037457,-1.3191082,-1.5381403,-1.411582,-1.4108382,-1.5933586,-1.6522372,-1.7022492,-1.6618844,-1.7019482,-1.6426207,-1.5503961,-1.583586,-1.670277,-1.6840879,-1.6800354,-1.6863338,-1.6849129,-1.6174377,-1.5615069,-1.6577301,-1.6963625,-1.7206433,-1.6954672,-1.6760457,-1.6332129,-1.5227957,-1.1788652,-0.8928131,-1.3010088,-1.499697,-1.5727212,-1.6309714,-1.6805964,-1.6935523,-1.6888412,-1.4889427,0.012041815,-0.15856427,-0.5079207,-0.88387126,-1.1069868,-1.2831492,-1.4607291,-1.5624018,-0.8029641,0.5916873,0.29216477,-0.07206117,-0.43610644,-0.74929976,-1.005477,-1.1350272,-1.1386684,-1.2329736,-1.0339932,-0.1296593,-0.3371829,-0.65925926,-0.75899655,-0.9910333,-1.1401184,-1.2686455,-1.3435243,-1.3944163,-1.3814063,-1.4487218,-1.5056694,-1.2325927,-0.33767143,0.15978912,-0.24436027,-0.6096765,-0.9630041,-1.0186596,-1.0590281,-1.1238439,-1.0445402,-0.6543235,-0.7966111,-0.9289148,-0.9961138,-0.5994768,-0.582283,-0.5521745,-0.65524703,-0.8510398,-1.0690038,-1.1531713,-1.2087986,-1.2381315,-1.2519472,-1.2813015,-1.2880687,-1.3011653,-1.3065236,-1.3081963,-1.3377709,-1.3499131,-1.3327253,-1.2588594,-0.73165643,-1.3534713,-1.3541762,-1.2349567,-0.98412716,-0.9849988,-1.2814779,-1.0245776,-1.3315108,-1.3180785,-1.1195356,-1.2212017,-1.2730018,-1.2901022,-1.2425842,-1.2234973,-1.2489195,-1.2181382,-1.0587062,-1.381163,-1.2422519,-1.3408147,-0.6363388,-0.51089764,-0.6114801,-0.99931145,-1.0506563,-0.94147027,-0.53260595,-0.19708067,-1.1031632,-1.1562052,-1.1349231,-0.77807593,-0.5856943,-1.0212059,-1.0685765,-0.9128834,-0.86573625,-1.1638497,-1.2330135,-0.8631612,-1.2347429,-1.1326971,-1.1190202,-1.197016,-1.0325432,-1.1408069,-0.78535426,-1.0187176,-1.253823,-1.2340891,-0.81069845,-0.16701019,-0.4530815,-0.15020156,-0.7405079,-0.82304215,-0.8521766,-0.9843203,-1.077806,-1.1280062,-1.1082678,-1.023112,-0.9548087,-0.9654182,-1.0371883,-0.72029966,-0.6506795,-0.7810899,-1.012364,-1.08386,-1.0797572,-0.9839493,-1.0000231,-0.95311975,-0.7881667,-0.93608963,-0.8001995,-0.6064652,-0.7104631,-0.63763493,-0.15468699,-0.24532366,0.10520635,0.33773884,0.38122964,-0.86648303,-1.0506326,-1.0923879,-1.0888673,-1.0608959,-0.97471476,-0.5687775,-0.44188792,-0.7024396,-0.48318344,-0.29245216,-0.27209598,-0.8365738,-1.1143234,-1.0970949,-0.84198767,-1.0597656,-1.0406334,-1.0546683,-1.009033,-0.9821055,-0.9030127,-1.045027,-1.0957608,-0.7902582,-0.82820714,-0.62589943,-0.53231287,-0.7401111,-0.93157923,-0.79612696,-0.8142675,-0.7639113,-0.8158438,-0.9429337,-0.77709246,-0.6034931,-0.45697784,-0.467215,0.32382584,0.13566479,-0.36411268,-0.6464103,-0.71982557,-0.32826525,-0.97378516,-0.707737,0.12983531
+-0.6421432,-0.7728529,-0.79713464,-0.8471985,-0.8913201,-1.0329944,-1.0610223,-1.0961473,-1.1092665,-1.0064912,-1.0400393,-1.0747298,-1.0777018,-1.0140909,-0.79394233,-0.9447501,-1.0301927,-1.0493531,-1.0330939,-0.9100503,-0.9892273,-1.0726479,-0.9686078,-0.7902454,-0.8472197,-0.5618107,-0.4354257,-0.29757082,-0.34463632,-0.45639545,-0.67665136,-0.8316586,-0.93771875,-1.0203857,-1.0735269,-0.9363543,-0.7267667,-0.38341665,0.09108672,-0.33177668,-0.6879083,-0.90624356,-1.0527387,-1.0939968,-0.5713255,0.08537886,0.30639634,-0.09381399,-0.39398393,-0.6196165,-0.7442287,-0.69264346,-0.8035771,-0.98093486,-1.0307441,-1.0933075,-1.152961,-1.0959953,-1.1661079,-1.1698343,-1.2249177,-1.2645566,-1.2734132,-1.2632779,-1.2428315,-1.234824,-1.2529048,-1.2409836,-1.1974738,-1.2093732,-1.2340038,-1.2000277,-1.091672,-1.1241984,-1.0671718,-1.1444256,-1.1695349,-1.1570599,-1.15827,-1.1832132,-1.1797568,-1.1762804,-1.1795797,0.081548996,0.095116265,-0.32142392,-0.7356992,-0.9545506,-1.0483071,-1.1107868,-0.80134964,0.07030637,-0.21704534,-0.45568287,-0.66077095,-0.8442278,-0.9717896,-1.058105,-1.1040752,-1.1232778,-1.1560019,-1.1275663,-1.1867949,-1.2006344,-1.2003884,-1.2124535,-1.2173486,-1.2091917,-1.2313468,-1.1071069,-1.1125667,-1.1197352,-1.0991201,-1.1023381,-1.1378543,-1.1804866,-1.1434402,-1.1462482,-1.1913793,-1.1938767,-1.2089658,-0.6628944,-0.61863804,-0.8690553,-0.8960893,-0.88460267,-1.0291858,-0.9266515,-0.72962284,-0.45989323,-0.64143735,-0.82439643,-0.84190077,-0.89166224,-1.0624733,-1.1320684,-1.2090609,-1.1614068,-1.2242349,-0.8909095,-0.7448407,-0.9194275,-1.0594071,-1.0994608,-1.1003883,-1.0890344,-1.1112438,-0.38146043,-0.030272089,-0.37729588,-0.66669935,-0.883427,-1.0165668,-1.1434902,-1.00377,-0.8824958,-0.03934797,-0.20811075,-0.49621534,-0.6699319,-0.8267485,-0.9410691,-1.0396465,-1.0873082,-1.1078451,-0.8906675,0.22159654,-0.00061447173,-0.30918807,-0.5287463,-0.69966125,-0.859276,-0.99610853,-1.0238539,0.839921,0.8294766,0.69123256,0.47631302,0.1711548,-0.08042962,-0.29476324,-0.43719602,0.08974137,0.22975731,0.07156665,-0.00423871,-0.17593208,-0.34129733,-0.4472021,-0.5785796,-0.655734,-0.7292297,-0.7781824,-0.778888,-0.73964906,-0.81411827,-0.8627122,-0.89667493,-0.95207334,-0.95430326,-0.9158819,-0.9117218,-0.9483006,-0.96529305,-0.98607683,-0.9990127,-0.97987354,-0.19576848,-0.32955515,-0.46316135,-0.5566776,-0.6008972,-0.6709808,-0.70436025,-0.76287854,-0.7601448,-0.77300096,-0.853305,-0.89432836,-0.89042807,-0.8971187,-0.90750015,-0.9142401,-0.933588,-0.93515325,-0.9340515,-0.9262049,-0.9340869,-0.9390867,-0.95081735,-0.9316814,-0.9479854,-0.96064603,-0.92946863,-0.870697,-0.7011374,-0.7757882,-0.6836682,-0.87145567,-0.95869124,-0.8306625,-0.9313625,-1.0332763,-1.0732224,-1.1079682,-1.0877004,-1.1469619,-1.1454675,-1.0674214,-1.237579,-1.2200422,-1.2585846,-1.1375238,-1.075691,-0.68101877,-0.91247773,-1.0288734,-1.0140698,-0.9509245,-0.47894955,-0.8256864,-1.1174868,-1.1352128,-1.0816889,-1.0067024,-0.8868034,-0.8296728,-0.6673602,-0.6576553,-0.97873545,-1.0512242,-0.9773021,-1.0240979,-1.0191514,-1.0401776,-1.0392505,-0.82828414,-0.7819362,-0.7475358,-0.7130826,-1.1169645,-1.1219562,-0.9182296,-0.60823834,-0.6708103,-0.49252546,-0.65506756,-0.4989881,-0.5020242,-0.7668594,-0.9036925,-1.0169197,-1.0123599,-0.9552274,-0.79266727,-0.705215,-0.8216139,-0.42248505,-0.8296497,-0.93037796,-0.97134805,-1.018209,-1.0278205,-0.96652675,-0.9671676,-0.9526981,-0.9485247,-0.90316117,-0.89505225,-0.70769894,-0.77459294,-0.6805324,-0.6008794,-0.5749316,-0.45287877,-0.3698437,-0.123977445,-0.47891062,-0.63182616,-0.7461796,-0.7138982,-0.7443044,-0.5441813,-0.32111007,-0.2088359,-0.34373036,-0.13450554,-0.07729217,-0.33039266,-0.71541,-0.9682096,-1.0266638,-0.8225895,-0.8267838,-1.0094568,-1.0020068,-0.9379417,-0.87016606,-0.76619726,-0.7711921,-0.96575975,-0.7360698,-0.65547955,-0.543986,-0.4922217,-0.5519566,-0.63790184,-0.6223471,-0.60489446,-0.6093313,-0.61888796,-0.64285195,-0.6870471,-0.6955757,-0.75800276,-0.8170997,-0.22837451,-0.16791618,-0.39034948,-0.2845186,-0.35517663,-0.2980183,-0.52433777,-0.5199772,-0.07231776
+-1.2570118,-1.3806026,-1.4446695,-1.492732,-1.5232857,-1.5732541,-1.6001817,-1.6222626,-1.576932,-1.5392792,-1.5563291,-1.5796342,-1.6029547,-1.6340129,-1.4060538,-1.171828,-1.353248,-1.4336873,-1.4898101,-1.524252,-1.5921637,-1.6163211,-1.6600078,-1.5847895,-1.5840464,-1.0675148,-1.1142752,0.21900216,-0.24243888,-0.6340742,-0.9623945,-1.1429559,-1.2949862,-1.4462278,-1.4996037,-1.5432688,-1.3075802,-1.1293037,-0.3341797,-0.85778916,-1.3142452,-1.5277219,-1.5969708,-1.6180038,-1.6019858,-1.1920295,-0.14508769,-0.5691205,-0.94320023,-1.3131847,-1.493232,-1.538769,-1.5836376,-1.6510229,-1.6050035,-1.6750692,-1.6451983,-1.6382695,-1.6598456,-1.6547363,-1.6652157,-1.6841257,-1.6838408,-1.6907591,-1.6783535,-1.6844027,-1.6953989,-1.6964221,-1.6772141,-1.6736577,-1.6838057,-1.6938136,-1.635154,-1.6463584,-1.6033595,-1.6742685,-1.6755257,-1.687536,-1.685586,-1.7119317,-1.7018566,-1.7021625,-1.70452,-1.6454394,-1.6670318,-1.6577266,-1.6763904,-1.7029305,-1.7172688,-1.2356278,-1.2734821,-0.8171322,-0.26510805,-1.0982506,-1.3763913,-1.4727309,-1.5839741,-1.6171324,-1.6449214,-1.6456757,-1.6658747,-1.6345003,-1.6809053,-1.7033417,-1.688835,-1.7136996,-1.7037406,-1.6896577,-1.6568263,-0.90060574,-1.2115477,-1.435472,-1.4786096,-1.4570644,-1.5365465,-1.59848,-1.6229336,-1.6112254,-1.6421695,-1.6616105,-1.6309487,-1.303511,-1.4599133,-1.5423312,-1.520081,-1.1195675,-1.1167626,-0.77405274,-1.114994,-1.071506,-1.3313913,-1.4633968,-1.4737215,-1.5117178,-1.5755945,-1.6079112,-1.6449635,-1.61345,-1.6119388,-1.598735,-1.1992354,-1.3959346,-1.5279323,-1.5632626,-1.0442665,-0.67864364,-1.2411382,-1.4235599,-1.4421074,-1.2973661,-1.395769,-1.5019851,-1.5261834,-1.5424786,-1.4142656,-0.7425686,-0.6689435,-1.1190017,-1.3644141,-1.4403756,-1.4717438,-1.5084276,-1.5300579,-1.5910333,-1.5460591,-1.2446909,-1.2149099,-1.344902,-1.453851,-1.5026147,-1.5291178,-1.551295,-1.5562849,-1.1664759,0.12463821,0.073850594,-0.46811193,-0.81845295,-1.110076,-1.2839756,-1.3788869,-1.1328857,-0.4295367,-0.5972153,-0.93005,-0.8602974,-1.0401828,-1.2722278,-1.3510699,-1.4211856,-1.4731314,-1.5024155,-1.4989569,-1.4607848,-1.400563,-1.458958,-1.4926984,-1.4728097,-1.4803123,-1.4810116,-1.4017972,-1.4428091,-1.4915876,-1.5339549,-1.5495274,-1.5559019,-1.552038,-0.42237812,-0.45256424,-0.77201027,-1.0172668,-1.1509043,-1.2584805,-1.3292408,-1.3322661,-1.3498802,-1.3823973,-1.4266361,-1.2573669,-1.243385,-1.3287219,-1.3788495,-1.4223986,-1.420455,-1.4322641,-1.4344867,-1.4171407,-1.432626,-1.4389262,-1.4592413,-1.1120379,-1.234035,-1.3164117,-1.3910317,-0.4411307,-0.07853141,-0.46380973,-0.7561871,-1.093112,-1.2142467,-1.171577,-1.2122412,-1.2872665,-1.3638854,-1.3656852,-1.356227,-1.4192187,-1.4250209,-1.4046788,-1.4493723,-1.4773688,-1.5066478,-1.4165957,-1.4332666,-1.3781484,-1.3902934,-1.4182131,-1.4444469,-1.4016827,-1.3851621,-1.1654241,-1.4853237,-1.491976,-1.4833611,-1.4679046,-1.3923383,-0.99010384,-0.91643155,-0.7645871,-1.0869718,-1.2966,-1.311372,-1.3427064,-1.3680602,-1.3761595,-1.3593125,-1.2249078,-1.2213655,-1.2099032,-0.81817114,-1.2775593,-1.3945942,-1.1751078,-0.79527545,-0.82472223,-0.7175441,-0.6048287,-0.44415855,-0.6598691,-0.78889936,-0.9835142,-1.2362025,-1.2707621,-1.2335944,-0.7124986,-0.5819464,-1.0269237,-0.6785739,-0.96499574,-1.2296324,-1.2903644,-1.3845613,-1.4088156,-1.3781765,-1.37872,-1.3764905,-1.367342,-1.290231,-1.2884244,-1.283402,-1.2998054,-1.2805027,-1.2945263,-1.2392205,-1.2607054,-1.2767174,-1.0587002,-0.97435784,-1.0501832,-1.3048604,-1.40278,-1.4512568,-1.41613,-1.3051114,-0.9790058,-0.88681424,-0.98833144,-1.0739701,-1.1314716,-1.3457373,-1.4234762,-1.4878734,-1.4440292,-1.2855256,-1.5158904,-1.5558354,-1.5890188,-1.5967929,-1.5702345,-1.540233,-1.6003901,-1.6297361,-1.6497352,-1.6482342,-1.6488321,-1.6388954,-1.6781825,-1.681235,-1.6765192,-1.6706674,-1.6632726,-1.6738149,-1.6685979,-1.6724918,-1.6845932,-1.6666219,-1.4049909,-1.4419944,-1.4570248,-1.3586235,-1.5093882,-1.1162429,-1.2632859,-1.4669249,-1.3887316
+-1.0066321,-1.3134656,-1.4316056,-1.5131402,-1.5668406,-1.6237795,-1.6598713,-1.6080102,-0.7814792,-0.92091084,-1.1092672,-1.3124945,-1.4393125,-1.5270092,-1.5108423,-1.0806351,-1.121253,-1.2488921,-1.4206055,-1.558929,-1.6222837,-1.6701008,-1.7098222,-1.7039144,-1.7515762,-1.3563232,-1.1937517,-0.89271796,-0.9029598,-0.87922704,-0.48293346,-0.5897819,-1.0548469,-1.4038947,-1.5212815,-1.5264556,-1.2370721,-1.3719451,-1.2594993,-1.5148978,-1.6495547,-1.6889822,-1.7399558,-1.7251637,-1.6775298,-1.479159,-1.2916796,-1.0705668,-1.3390507,-1.5567135,-1.6777663,-1.7112515,-1.7708983,-1.7721446,-1.7708074,-1.7989233,-1.7529323,-1.7676536,-1.7627009,-1.7595679,-1.751364,-1.7533885,-1.7449157,-1.7385423,-1.707901,-1.6738439,-1.6657313,-1.6656429,-1.6565939,-1.6413285,-1.6504786,-1.637661,-1.643849,-1.4786534,-1.5956035,-1.6657408,-1.6985292,-1.6997616,-1.7142843,-1.7028973,-1.6678071,-1.6496675,-1.6312386,-1.6188753,-1.6218541,-1.6394603,-1.6726407,-1.6674864,-1.6336236,-1.6129732,-1.572573,-1.3720253,-1.0299678,-1.3676436,-1.5161716,-1.5794675,-1.621853,-1.6226678,-1.6253607,-1.6265001,-1.6221809,-1.651123,-1.6635888,-1.6611027,-1.6668955,-1.6548641,-1.6221125,-1.6189759,-1.4085062,-1.1855749,-1.2371495,-1.4356012,-1.4964964,-1.4431396,-1.5445094,-1.5611463,-1.550222,-1.5554736,-1.5957084,-1.5827159,-1.5544872,-1.2953045,-1.3663135,-1.3613669,-1.3654784,-1.2193422,-0.33189693,-0.3422941,-0.7388881,-1.1153578,-1.3446288,-1.2667994,-1.312331,-1.4878128,-1.5436218,-1.5480965,-1.5421879,-1.5269474,-1.5138905,-1.4978127,-1.4940196,-1.531127,-1.5472938,-1.5030582,-1.2710624,-1.0482135,-1.1786077,-1.0815029,-1.0907854,-0.24376276,-0.8642512,-1.1897252,-1.3596443,-1.3923452,-1.348453,-1.2355827,-1.1675631,-1.4239192,-1.5092542,-1.5242519,-1.5360785,-1.5398172,-1.5399116,-1.5495481,-1.5155547,-1.5085685,-1.5070825,-1.5156178,-1.5544722,-1.5516442,-1.5587008,-1.5650772,-1.5485147,-1.127666,-1.0987093,-0.94460034,-1.0787976,-1.296422,-1.4355829,-1.490792,-1.5011412,-1.0927417,-0.50673854,-0.6241474,-0.7997533,-1.0465674,-1.279402,-1.3841864,-1.4278665,-1.4773986,-1.4913812,-1.4892944,-1.4692913,-1.4836152,-1.4329592,-1.4727211,-1.4884834,-1.4980705,-1.5251892,-1.5187168,-1.4666055,-1.4671273,-1.5060585,-1.529141,-1.5381233,-1.5317783,-1.5112634,-1.0795627,-1.0219373,-1.1843188,-1.3267689,-1.3633063,-1.3902713,-1.4192135,-1.393176,-1.4050703,-1.4339569,-1.3950737,-1.1917131,-1.134586,-1.2353997,-1.3456447,-1.4186549,-1.4434668,-1.4508231,-1.4707011,-1.4409003,-1.4482721,-1.4688491,-1.4978176,-1.4488132,-1.4506446,-1.460007,-1.5509024,-0.83295894,-0.17116743,-0.6439477,-0.94639754,-1.1682084,-1.2028371,-1.1654675,-1.1641186,-1.1450244,-1.2735384,-1.2429302,-1.1831948,-1.3275778,-1.3633058,-1.3372029,-1.3639207,-1.3967712,-1.4124298,-1.2874463,-1.349534,-1.2870792,-1.3282398,-1.3466468,-1.3184669,-1.3195385,-1.2901658,-1.0087715,-1.3657935,-1.440172,-1.4162257,-1.3684179,-0.9883406,-0.7670574,-0.90625477,-0.94447637,-1.25174,-1.2322514,-1.2323091,-1.2583398,-1.2864754,-1.0633796,-1.0356169,-0.9382405,-0.9695246,-0.96174026,-0.7379474,-1.010463,-1.2980784,-0.9344617,-0.7396256,-0.7355874,-0.8113588,-0.8000447,-0.59948325,-0.37615597,-0.15342426,-0.33658248,-0.86535764,-0.9852798,-0.97937465,-0.52106035,-0.20089394,-0.87177694,-0.47010535,-0.7163229,-1.1998533,-1.1454632,-1.2248752,-1.2402809,-1.1660205,-1.1496377,-1.1610599,-1.1412978,-1.1367202,-1.0815576,-0.928756,-1.1064484,-1.0152025,-0.9078193,-0.94663894,-0.97396743,-0.9734614,-0.9315393,-0.62915695,-0.52219045,-0.98315406,-1.1983584,-1.2776246,-1.1791482,-0.6757101,-0.41130847,-0.54971313,-0.63200474,-0.73625135,-0.83330816,-1.2260885,-1.3518482,-1.3100798,-1.1333452,-0.7252524,-1.2401942,-1.3560058,-1.3828387,-1.3438762,-1.2906078,-1.262155,-1.4378326,-1.4523895,-1.471056,-1.4805281,-1.5295382,-1.5638262,-1.6139107,-1.6339489,-1.6546196,-1.6684682,-1.6454136,-1.6346061,-1.671562,-1.6607956,-1.6602895,-1.6384226,-1.4689406,-1.4312999,-1.5615947,-1.4925693,-1.533093,-1.2025785,-1.1450435,-1.4047021,-1.3362911
+-1.1849838,-1.6898601,-1.7060765,-1.7563034,-1.7750677,-1.8473649,-1.8520484,-1.5654582,-1.02578,-1.0248413,-1.2243427,-1.2998742,-1.4055057,-1.572875,-1.39613,-0.6536485,-1.0546367,-1.2804832,-1.5028093,-1.6588914,-1.7601001,-1.8209711,-1.8022096,-1.8383305,-1.8469125,-1.7845062,-1.7711754,-1.8218948,-1.7296828,-1.4189267,-0.43528616,-0.97422194,-1.3766859,-1.655423,-1.7654271,-1.7793896,-1.7501997,-1.802039,-1.7941707,-1.8184574,-1.8481022,-1.8793963,-1.878526,-1.8935621,-1.7957022,-1.7794445,-1.5416315,-1.1473719,-1.3271089,-1.5809947,-1.7456149,-1.7818656,-1.8476546,-1.8688089,-1.8764358,-1.9065332,-1.8884053,-1.903229,-1.8872433,-1.8813322,-1.8850156,-1.857314,-1.8403323,-1.8227502,-1.8081645,-1.7937748,-1.7881864,-1.7723584,-1.7765324,-1.7711644,-1.7667285,-1.7611382,-1.7462926,-1.7538884,-1.7634447,-1.785455,-1.7808893,-1.7905914,-1.801882,-1.7958872,-1.7665856,-1.7600143,-1.7674915,-1.5375195,-1.6515818,-1.7392126,-1.7333368,-1.7226855,-1.7342415,-1.7111304,-1.7515756,-1.4996538,-0.52688164,-1.1389167,-1.4627858,-1.6761642,-1.7663575,-1.7565906,-1.7746471,-1.7912785,-1.7881266,-1.7751077,-1.7738662,-1.7781723,-1.7690024,-1.7677944,-1.7694616,-1.7780954,-1.7570629,-1.5792749,-0.56480664,-0.60253286,-0.7585122,-1.2265979,-1.5828334,-1.6987165,-1.689543,-1.6947691,-1.7107905,-1.7124207,-1.7311088,-1.7333342,-1.0357918,-0.52315605,-0.6044125,-0.43939131,-0.48383594,-0.63022506,-0.98124814,-1.329955,-1.5505631,-1.6037048,-1.6208062,-1.657905,-1.7220275,-1.7156633,-1.7386947,-1.4727701,-1.3395227,-1.5128919,-1.5755004,-1.694546,-1.7371973,-1.4433386,-1.145564,-0.89747953,-1.2581118,-1.4994472,-1.5735195,-1.3313206,-1.4758931,-1.6431638,-1.6871593,-1.6658967,-1.435652,-1.3350061,-1.6180062,-1.7498239,-1.8014231,-1.7485274,-1.6780969,-1.7138643,-1.7235906,-1.7636304,-1.7277257,-1.7152344,-1.7204678,-1.7009985,-1.7200994,-1.715955,-1.7003285,-1.6967902,-1.6836009,-1.3903055,-1.3277856,-1.1970146,-1.4164937,-1.6050608,-1.6954535,-1.7132685,-1.6733474,-1.3766644,-1.0146248,-1.1942756,-1.299222,-1.0459436,-1.0641665,-1.3184699,-1.435255,-1.6442078,-1.7153745,-1.454953,-1.3303677,-1.5117211,-1.5797815,-1.6480317,-1.6960368,-1.7328973,-1.7501009,-1.7480494,-1.7001865,-1.6603708,-1.6902444,-1.7107533,-1.7462085,-1.6802388,-1.6706488,-1.2519839,-1.2783837,-1.4616915,-1.5911877,-1.5782117,-1.5819762,-1.578017,-1.5315574,-1.5347306,-1.4863973,-0.5474695,-0.20857239,-0.48742372,-0.72235256,-0.9310814,-1.1363422,-1.2824502,-1.3748348,-1.4361489,-1.4579228,-1.4726365,-1.5159938,-1.5674512,-1.4912786,-1.5363249,-1.5475779,-1.6496834,-0.83618945,-0.5635864,-0.98081374,-1.2068422,-1.300909,-1.2984848,-1.2239937,-0.9630585,-1.2090347,-1.3029612,-1.2836666,-1.250397,-1.3179481,-1.3620362,-1.3285432,-1.2988374,-1.31975,-1.3240219,-1.298778,-1.3198261,-1.2974248,-1.306704,-1.3078749,-1.3125346,-1.3347511,-0.8750601,-0.92802525,-1.3781981,-1.4200938,-1.3800457,-1.362385,-0.61763275,-0.33071026,-0.75209546,-0.88938725,-1.301875,-1.274139,-1.2904272,-1.3185067,-1.3388524,-1.0443928,-0.7065614,-1.0285194,-1.1180892,-1.0756447,-0.87420547,-1.0974393,-1.4686184,-1.1302954,-0.96810293,-1.0376108,-1.1146518,-1.1357522,-1.027667,-0.88480127,-0.5040338,-0.5602091,-1.0651286,-1.1891392,-1.1589444,-0.8227514,-0.72246474,-1.3023844,-0.7805783,-0.9795637,-1.4603293,-1.3922122,-1.4528644,-1.4556466,-1.3644669,-1.3412769,-1.354492,-1.3482664,-1.3632238,-1.3157996,-1.3350928,-1.3627963,-1.3054717,-1.1910214,-1.156186,-1.1709399,-1.1999681,-1.1720905,-1.0625606,-0.36473224,-0.57604146,-1.1015214,-1.2356563,-1.0839418,-0.81804776,-0.45021033,-0.7404698,-0.77220637,-0.724739,-0.850857,-1.3165992,-1.4338213,-1.3370178,-1.2570543,-0.14149472,-1.2291867,-1.306204,-1.213533,-1.1665477,-1.0466053,-1.1552972,-1.4074293,-1.3787402,-1.3783811,-1.4458928,-1.530452,-1.614439,-1.7254791,-1.7476709,-1.7658366,-1.7785089,-1.7881522,-1.8128967,-1.8096383,-1.8322433,-1.8689775,-1.8430877,-0.79586816,-0.91046,-1.2765803,-1.3166857,-1.4812386,-1.0324886,-1.336384,-1.545088,-1.0774866
+-1.3610817,-1.5893202,-1.667934,-1.7136732,-1.7204363,-1.7589588,-1.7383687,-1.0343096,-0.7645933,-0.99332714,-0.9574231,-1.1968985,-1.2551786,-1.4342875,-1.5916555,-1.1410329,-1.1538742,-1.3631866,-1.6002569,-1.6609662,-1.7019017,-1.7196071,-1.6953039,-1.6996821,-1.7198459,-1.6881596,-1.6549131,-1.7037392,-1.5415239,-0.9335215,-0.15704158,-0.6301252,-1.0893312,-1.4062967,-1.5802414,-1.6547194,-1.5266047,-1.2287791,-1.1074711,-1.4672608,-1.6255963,-1.6957552,-1.7544804,-1.7149782,-1.6484666,-1.5990527,-1.3565528,-0.26457828,-0.67788213,-1.1584423,-1.4717636,-1.6097631,-1.6966529,-1.7451049,-1.7508255,-1.7606275,-1.7427006,-1.7423545,-1.7585422,-1.7682376,-1.7356986,-1.7404859,-1.7265582,-1.7376274,-1.7449567,-1.7297003,-1.7190251,-1.7234352,-1.6966403,-1.6530982,-1.6445769,-1.0192838,-1.3049828,-1.5454996,-1.6419203,-1.6952915,-1.7042437,-1.7156786,-1.7409087,-1.7371247,-1.6733588,-1.5382639,-1.5455498,-1.6357768,-1.623055,-1.428538,-1.4293357,-1.5483097,-1.5872958,-1.3408335,-0.9644176,-0.13036364,-0.22257549,-0.61912084,-1.0763824,-1.4097514,-1.5409096,-1.5420642,-1.5664558,-1.6041784,-1.606574,-1.6267917,-1.6461993,-1.6526247,-1.6412975,-1.6493348,-1.6387014,-1.2659762,-0.7265056,-0.87044704,-1.1029913,-0.5373791,-0.61976993,-0.8304515,-1.2434658,-1.4225014,-1.3279406,-1.2925586,-1.527662,-1.5578609,-1.550953,-1.2872598,-1.0616721,-0.3184852,-0.46367735,-0.6900517,-0.45555472,-0.63807136,-1.0368766,-1.1953446,-0.9932952,-0.81202316,-0.7078318,-1.0753205,-1.4866209,-1.5845015,-1.6188493,-1.61271,-1.6114061,-1.5892344,-1.3480344,-1.3866651,-1.4060333,-0.9358969,-0.45817292,-0.66426057,-0.808354,-0.73597896,-0.51048934,-0.44124413,-0.8454839,-1.086952,-1.1024255,-1.1545235,-1.1225162,-1.2132007,-1.4611388,-1.5995612,-1.6306647,-1.5807596,-1.4025096,-1.5444827,-1.6003606,-1.6017392,-1.263113,-1.0459716,-1.0203284,-1.2024198,-1.477564,-1.6031935,-1.6525347,-1.6616058,-1.6532456,-1.3647265,-1.3798829,-1.2055054,-1.3605082,-1.5065773,-1.5686085,-1.4013016,-0.8416072,0.01857438,0.040534608,-0.28572387,-0.5497031,-0.29707822,-0.5467853,-0.8808698,-1.098286,-1.3648949,-1.44399,-0.97488165,-1.030648,-1.2751521,-1.3866478,-1.4992852,-1.5681403,-1.56334,-1.5795543,-1.5772123,-1.5615343,-1.5589818,-1.589813,-1.6022353,-1.6018088,-1.561158,-1.5560625,-0.86922765,-0.88475645,-1.1597815,-1.3206973,-1.398183,-1.4673697,-1.4463854,-1.42771,-1.4121957,-0.9169408,0.28285998,0.023256488,-0.24381375,-0.4843381,-0.69039106,-0.90490985,-1.0984976,-1.2259314,-1.3167297,-1.3843417,-1.405036,-1.4462217,-1.476698,-1.4094825,-1.507951,-1.4927971,-1.5850594,-0.7765324,-0.49203527,-0.7934015,-0.9721378,-1.1477289,-1.144731,-0.9614582,-0.7946397,-0.9929843,-1.2399259,-1.2300766,-1.1135967,-1.0947458,-1.3232538,-1.2700448,-1.1936442,-1.1972003,-1.239665,-1.2421931,-1.2627943,-1.2178268,-1.236541,-1.2018417,-1.2181163,-1.2488307,-0.56707567,-0.20925617,-1.1750114,-1.2502358,-1.2528586,-1.0638659,-0.09020626,-0.070515625,-0.34075665,-0.5964643,-1.083019,-1.1015741,-1.0983644,-1.1343865,-1.1088552,-0.7241806,-0.1206831,-0.47076344,-0.7045322,-0.6545911,-0.68308574,-0.5565224,-1.1270089,-0.8889811,-0.6801312,-0.63255966,-0.675655,-0.7822244,-0.7520305,-0.5837542,-0.14517593,-0.10703153,-0.32519066,-0.6597041,-0.78683084,-0.44840252,-0.354131,-0.977841,-0.5196406,-0.5922201,-0.8775621,-1.2573054,-1.2844065,-1.3079829,-1.2479997,-1.224409,-1.2134892,-1.2140894,-1.220154,-1.2051938,-1.2522827,-1.2694759,-1.1359415,-1.073626,-1.0819464,-1.0999206,-1.1432145,-1.1692945,-1.1205064,-0.7817235,-0.2670852,-0.6512595,-1.0330565,-0.9625193,-0.74376327,-0.53338754,-0.60423917,-0.67435634,-0.68106323,-0.77576756,-1.2600284,-1.3736042,-1.1661419,-1.0844038,-0.33688736,-0.90940464,-1.2162385,-1.274962,-1.2076919,-1.1047261,-1.1665133,-1.3919944,-1.4295716,-1.524337,-1.5798914,-1.6098206,-1.6397624,-1.6584563,-1.681448,-1.6822217,-1.666374,-1.6797205,-1.6880417,-1.6744705,-1.6959424,-1.6872311,-1.695708,-1.0580994,-0.8916813,-1.2943816,-1.3969965,-1.5386378,-1.1873975,-1.0819134,-1.3717575,-1.2088861
+-1.098667,-1.357088,-1.334014,-1.3617581,-1.3492334,-1.3766613,-1.3199611,-0.8852868,-0.65278864,-0.5057911,0.055573575,0.003301315,-0.023273475,-0.5098224,-0.8460109,-1.0098553,-1.1581438,-1.2932652,-1.3694329,-1.3852296,-1.3941023,-1.3968441,-1.3865106,-1.4081463,-1.4277121,-1.4579637,-1.4845252,-1.465981,-1.4146092,-1.3897483,-1.0766494,-1.2069889,-1.3963478,-1.44295,-1.436771,-1.4391686,-1.4469972,-1.4428821,-1.4729128,-1.4964767,-1.5006049,-1.4967538,-1.4948742,-1.4470606,-1.3257747,-1.4802625,-1.3237768,-0.8185443,-1.0476369,-1.2825103,-1.3976635,-1.4371215,-1.4655197,-1.4827287,-1.4918749,-1.4879634,-1.5047281,-1.5071902,-1.5095041,-1.4919834,-1.4941108,-1.4775022,-1.4993995,-1.5053599,-1.4973166,-1.4894502,-1.4790195,-1.4917879,-1.4870565,-1.4801244,-1.4827452,-1.0894072,-1.2675607,-1.4043525,-1.4625787,-1.4946702,-1.4993193,-1.5089154,-1.506013,-1.4786034,-1.4636716,-1.1432365,-1.267105,-1.3514955,-1.3925349,-1.4312724,-1.421976,-1.4173398,-1.4161704,-1.1003332,-0.4463364,-0.080591194,0.2008473,-0.33485395,-0.6626638,-0.9018599,-1.0700204,-1.1508231,-1.2159367,-1.2589531,-1.2832139,-1.3087695,-1.3416901,-1.3550421,-1.3475381,-1.3502548,-1.3427197,-1.2981158,-1.0453334,-1.1195623,-0.7188105,-0.8408215,-0.77746415,-0.91094327,-1.0699943,-1.0891734,-1.0638049,-0.705344,-0.43636262,-0.4502486,-0.36622348,0.34280095,0.01744441,-0.07012943,-0.10324719,0.33762023,0.009541042,-0.10051253,-0.25045413,-0.494124,-0.6812842,-0.5448787,-0.35704988,-0.47728068,-0.5244982,-0.3076824,-0.58311284,-0.49332374,-0.44579566,-0.7901735,-0.8464652,-0.75648046,-0.5864163,-0.63815284,-0.7069175,-0.8650893,-1.0087045,-0.883021,-0.54671085,-0.7387467,-0.9155662,-0.9539113,-0.98908114,-0.8218389,-0.6093978,-0.78115773,-1.0062358,-1.1340778,-1.1710529,-0.37399215,0.49863908,-0.09398822,-0.34061757,-0.5178167,-0.5314778,-0.34959093,-0.05134005,-0.24954307,-0.5125926,-0.73434085,-0.92186975,-1.0123078,-1.1079319,-1.0153344,-1.0175908,-0.82276756,-0.71606255,-0.93290067,-0.9528972,-0.86982393,-0.8145937,-0.56593937,-0.108833216,-0.17918056,-0.42931688,-0.06986416,-0.200829,-0.465424,-0.61138916,-0.75267917,-0.8315341,-0.6340637,-0.4529751,-0.64224005,-0.7739563,-0.8739821,-0.9473045,-0.9787251,-0.9860115,-0.99052596,-0.995713,-0.98570704,-1.029169,-1.03076,-1.0436239,-1.0562146,-1.0585651,-1.0276108,-1.0140986,-1.0087644,-1.0483234,-1.0576277,-1.0460839,-1.0376823,-1.0148832,-0.9698005,-0.7526594,0.043625332,0.19763967,-0.011579558,-0.15864372,-0.26176503,-0.36789358,-0.4442526,-0.51303184,-0.57644415,-0.6319535,-0.70569634,-0.7898307,-0.8304408,-0.849067,-0.85682046,-0.87758005,-0.8850585,-0.20723197,0.24648744,0.020736307,-0.109755225,-0.25503945,-0.26252776,-0.37296414,-0.06718562,0.012943737,-0.5958828,-0.6499527,-0.49409604,-0.4240824,-0.5758915,-0.60867953,-0.5399195,-0.5161823,-0.5174919,-0.5331391,-0.54406565,-0.5247054,-0.5121647,-0.53022975,-0.52526873,-0.53109443,-0.46550846,0.6003098,-0.14554203,-0.17473906,-0.10725682,-0.12107337,0.5464837,0.4597188,0.3051078,0.30101246,-0.046367876,-0.014305584,-0.03166946,-0.032441817,-0.08871997,0.29394948,0.5950004,0.4422331,0.29323003,0.21297562,0.10161562,0.04563149,-0.11763754,-0.088515334,-0.13794792,-0.17022607,-0.17710653,-0.2466101,-0.2585192,-0.31070754,0.2604108,0.4662683,0.28524694,0.15705045,0.09006527,0.26394403,0.43627125,0.2976562,0.37073144,0.33602074,0.15123731,-0.43463647,-0.6316766,-0.73309135,-0.64439034,-0.60613966,-0.55709565,-0.48878586,-0.42755163,-0.33482867,-0.32484737,-0.3660323,-0.2830387,-0.3095257,-0.31953475,-0.3531239,-0.40492463,-0.42996818,-0.4728467,-0.25085157,0.32420072,0.15964916,-0.062108047,-0.05246737,-0.17582303,0.23425409,0.41303447,0.17304057,0.039047252,0.020413369,-0.32857227,-0.5249212,-0.41322744,-0.39615208,-0.14412355,0.01627127,-0.32399842,-0.35694322,-0.3816148,-0.41819072,-0.27862543,-0.5128498,-0.61086965,-0.67775875,-0.738965,-0.7878288,-0.8429762,-0.9039596,-0.96097565,-0.9930854,-1.0276979,-1.0685358,-1.0914739,-1.1203315,-1.127706,-1.1326482,-1.1434596,-0.8177132,-0.6435803,-0.98849297,-1.110145,-1.1909194,-1.0814704,-1.1506591,-1.2680533,-1.2070582
+-1.8270316,-1.759279,-1.6948128,-1.7249724,-1.7060109,-1.7005916,-1.7051867,-1.2518845,-1.2372509,-1.2558854,-0.7571988,-0.91132057,-1.1874752,-1.5458324,-1.6363076,-1.670814,-1.694992,-1.6715741,-1.7049406,-1.7227738,-1.7208617,-1.7221559,-1.6954587,-1.6815202,-1.7030692,-1.7109334,-1.7313564,-1.7476522,-1.7036159,-1.728089,-1.7219561,-1.7298893,-1.7417791,-1.7425101,-1.7253902,-1.687981,-1.6933234,-1.7190512,-1.6949478,-1.7237874,-1.7180655,-1.7348424,-1.7286203,-1.4366246,-1.1446223,-1.5397248,-1.659455,-1.6826682,-1.6909533,-1.714575,-1.7212477,-1.7258337,-1.7320395,-1.7362887,-1.7312785,-1.7233312,-1.7411547,-1.7574587,-1.7461213,-1.7165633,-1.7330679,-1.737811,-1.7011573,-1.7096689,-1.718681,-1.7180929,-1.7064636,-1.7006841,-1.670063,-1.6696537,-1.0491402,-0.98154986,-0.788444,-1.2838868,-1.5693972,-1.6800749,-1.6968591,-1.7130165,-1.7187958,-1.7320883,-1.7297196,-1.6733965,-1.6688942,-1.6589884,-1.143475,-1.0283427,-0.9704988,-0.97133636,-1.2783183,-0.9292991,-0.49675453,0.14360783,-0.2280367,-0.61656404,-0.9677017,-1.2870615,-1.3881544,-1.2996687,-1.3455616,-1.4690442,-1.5604274,-1.6135855,-1.6127963,-1.6032362,-1.5690966,-1.5805895,-1.558901,-0.53499603,0.2593315,-0.53745395,-0.020401262,-0.6259474,-0.59245473,-0.9721596,-1.1573515,-0.96392953,-1.14374,-0.85820717,-0.6561899,-1.006706,-0.97600555,0.02312518,0.50682694,0.4761137,0.14731717,-0.018550813,-0.22432542,-0.14448136,0.07234464,-0.3791972,-0.20088342,0.040597253,-0.20365193,-0.44840813,-0.59629387,-0.8183739,-1.0934734,-1.2897666,-1.3745139,-1.4425545,-1.4529767,-1.4316034,-1.1572945,-1.1910988,-1.3349836,-1.4163142,-1.2983258,-0.6697916,-0.75076544,-1.1547916,-1.3609455,-1.4102567,-1.377784,-0.8635341,-0.051679425,-0.32716686,-0.8194325,-1.2110953,-1.3132486,0.26259652,0.73868096,-0.025400333,-0.5142049,-0.624125,-0.3941787,-0.18683821,-0.5700045,-0.8497019,-1.0923139,-1.2804081,-1.4274845,-1.486789,-1.465115,-1.1546382,-1.0120773,-1.1616473,-1.3151131,-1.4371076,-1.0298293,-0.105802365,-0.3872006,-0.27846286,-0.20449713,-0.5382366,-0.7943785,-0.6116344,-0.8663025,-1.1389748,-1.272507,-1.36767,-1.3837118,-1.2408054,-1.197266,-1.3623478,-1.4433479,-1.5047112,-1.5355352,-1.5480983,-1.5388187,-1.5330243,-1.5282478,-1.5281518,-1.5327938,-1.5149037,-1.557981,-1.53019,-1.5122845,-1.4556358,-1.4478964,-1.4772494,-1.5001733,-1.4759617,-1.4754316,-1.4539216,-1.4251907,-1.2713146,-1.0592191,-1.0396786,-1.1709809,-1.2902315,-1.3628938,-1.4117291,-1.4308825,-1.4445063,-1.4724817,-1.473434,-1.4774063,-1.4918711,-1.4892896,-1.5037992,-1.5038782,-1.4442096,-1.4622154,-1.4989522,-1.5055285,-1.3660135,-1.4061587,-1.4570415,-1.4436177,-1.471168,-1.467735,-1.1276238,-0.8300458,-1.1993895,-1.2321882,-1.2931935,-1.1446171,-1.1324362,-1.247493,-1.3135304,-1.3435727,-1.3312445,-1.3277638,-1.3754114,-1.4241966,-1.4182966,-1.4054344,-1.4100189,-1.4183226,-1.3373878,-0.4577222,-1.0747983,-0.9997401,-1.0954936,-1.1230605,0.22120059,0.13116428,-0.016950183,0.2945409,-0.18993777,-0.33159217,-0.49884164,-0.61066914,-0.6012193,-0.21965069,0.21615109,-0.005079642,-0.20867282,-0.37560976,-0.52611566,-0.6591519,-0.80836153,-0.88250947,-1.0227184,-1.0823808,-1.1441755,-1.1983151,-1.2289677,-1.2987072,-0.21442154,0.06840386,-0.16355494,-0.33440185,-0.50077903,-0.5535541,0.42910558,-0.048390828,-0.1776813,-0.2450015,-0.39829487,-0.90191793,-1.05103,-1.1828585,-1.2007039,-1.1998724,-1.1802664,-1.2093447,-1.2434951,-1.2830806,-1.3410734,-1.3794222,-1.4278642,-1.4477252,-1.452758,-1.4622681,-1.4884411,-1.5028497,-1.4118922,-0.7593126,-0.4518963,-0.73672414,-1.0012128,-1.1156634,-1.1643984,-0.2708839,-0.19687,-0.5724573,-0.8730882,-1.0362527,-1.2663009,-1.3721848,-1.4066062,-1.3660334,-1.4988327,-1.4124067,-1.5327675,-1.529686,-1.6127799,-1.5954306,-1.5451838,-1.6103389,-1.6310422,-1.6235857,-1.6208256,-1.621896,-1.6061119,-1.623527,-1.6332581,-1.6342609,-1.6400657,-1.6351936,-1.6431997,-1.6477915,-1.6516457,-1.637979,-1.6536666,-1.5399336,-1.6322147,-1.6830311,-1.6793973,-1.6923467,-1.3488145,-1.5328608,-1.6547378,-1.6880703
+-1.3599641,-1.4942238,-1.5408306,-1.5920545,-1.5964525,-1.5995991,-1.5574322,-1.4400525,-1.5224516,-1.5636251,-1.2096076,-1.2646577,-1.4219322,-1.5880051,-1.638667,-1.6490195,-1.6598284,-1.6589034,-1.6555407,-1.6489716,-1.6409557,-1.6385075,-1.6364765,-1.6371382,-1.6638792,-1.6804347,-1.6881688,-1.691062,-1.6553389,-1.6827862,-1.6880219,-1.6757474,-1.6834172,-1.6824989,-1.6600609,-1.6504474,-1.646223,-1.6585717,-1.6535871,-1.6641849,-1.6455626,-1.6604797,-1.660687,-1.6585003,-1.6784303,-1.7017869,-1.6972225,-1.6784621,-1.6806056,-1.6999643,-1.6989396,-1.6998115,-1.7056954,-1.6919059,-1.6776328,-1.6817747,-1.7102103,-1.7103623,-1.6769607,-1.6536062,-1.6906785,-1.6847336,-1.6613945,-1.6436871,-1.6084383,-1.5723692,-1.5597707,-1.6141506,-1.622806,-1.6036679,-0.4933777,-1.0011475,-1.2054911,-1.3929152,-1.4864141,-1.5460901,-1.5506314,-1.5497471,-1.5252798,-1.473467,-1.4811496,-1.454111,-1.4556327,-1.4635901,-1.0744643,-0.44478166,-0.6044796,-0.85335463,-0.94004536,-0.2235921,-0.093322344,-0.26371557,-0.5987838,-0.7274494,-0.9353814,-1.0628474,-1.1775522,-1.2786312,-1.2320592,-1.108139,-1.1658025,-1.2716055,-1.3894488,-1.261241,-1.0614245,-1.1982659,-1.2682567,-0.8881584,-0.78496945,-0.5465783,-0.8912139,-0.96722496,-0.74430513,-0.7724489,-0.15470052,-0.04741127,-0.6102978,-0.30385232,-0.45304465,-0.79319966,-0.7458002,0.33951446,-0.16627279,-0.2627246,-0.3207198,-0.5312529,-0.7148383,-0.89632076,-1.0219837,-0.99425364,-0.5699649,-0.7864856,-0.7497402,-0.7472861,-0.79325163,-0.8328625,-0.9611441,-1.1484538,-1.2728407,-1.3553349,-1.254427,-1.0465677,-1.1178046,-1.1989315,-1.3275614,-1.358289,-1.3788867,-1.2281296,-1.2764211,-1.3686578,-1.418284,-1.4214174,-1.3673733,-1.187948,-1.2912265,-1.378766,-1.4482653,-1.4736167,-1.3038527,0.15453482,-0.08718792,-0.45262253,-0.69004965,-0.8673335,-0.8344008,-0.89651537,-0.95337176,-1.076115,-1.2201834,-1.3065139,-1.3416536,-1.3929143,-1.3449879,-1.3760185,-1.3893789,-1.4188672,-1.4253795,-1.2243857,-1.0033488,-1.0638556,-1.2519519,-1.1947699,-1.1287687,-1.0406697,-1.2101471,-1.2272213,-1.330341,-1.4074521,-1.4147134,-1.4197838,-1.3970532,-1.3982023,-1.3961313,-1.3937821,-1.3938651,-1.4109251,-1.4161457,-1.41991,-1.4114257,-1.4159253,-1.4177622,-1.4201314,-1.4334972,-1.4219985,-1.4387714,-1.3267312,-1.2592146,-1.2798173,-1.3373711,-1.368125,-1.3835976,-1.3669403,-1.388165,-1.3898168,-1.3760217,-1.3311007,-1.3294498,-1.3503374,-1.3792951,-1.3927798,-1.4055681,-1.4148592,-1.416311,-1.4184794,-1.4228487,-1.4243574,-1.4273555,-1.4380904,-1.4139152,-1.4289558,-1.4429818,-1.3790603,-1.3976905,-1.4287,-1.4734082,-1.3266158,-1.3817472,-1.4254246,-1.4101825,-1.427999,-1.4191983,-1.3524189,-1.3899205,-1.3344884,-1.3485641,-1.3849229,-1.002861,-0.9306687,-1.0764409,-1.1526098,-1.2050204,-1.2512107,-1.3245132,-1.3558962,-1.378243,-1.3870914,-1.3900065,-1.4012434,-1.3761308,-1.4436827,-1.3796328,-1.3127112,-1.43575,-1.4375131,-1.4546561,-0.39246833,-0.2713327,-0.35072833,-0.1808157,-0.4447556,-0.601017,-0.7755339,-0.9743439,-1.0313629,-1.0721366,-0.20331305,-0.24412009,-0.41671646,-0.5997666,-0.7633697,-0.8716882,-0.95181215,-1.0732989,-1.177886,-1.214873,-1.2430494,-1.240881,-1.2877119,-1.2556921,0.12860474,-0.16938773,-0.25681388,-0.39905477,-0.53904533,-0.5793048,0.45022067,-0.058597215,-0.10136215,-0.24837881,-0.26561728,-0.5026771,-0.6260146,-0.82841855,-0.90677583,-0.9161525,-0.9266187,-0.9942353,-1.0568559,-1.0871781,-1.1518582,-1.1906967,-1.2370698,-1.2736793,-1.314136,-1.3344601,-1.3395804,-1.343411,-1.3436735,-1.2001011,-0.96980464,-1.1598171,-1.21029,-1.31775,-0.5772703,0.050887473,-0.15098318,-0.42606223,-0.7250948,-0.88024676,-1.034107,-1.1820611,-1.2705438,-1.2900741,-1.4108653,-1.3372214,-1.4483936,-1.4244728,-1.4440773,-1.4499391,-1.4233936,-1.4868417,-1.4886456,-1.4685719,-1.4884481,-1.4777699,-1.4875537,-1.5148997,-1.5130836,-1.520593,-1.5316224,-1.5310116,-1.5356071,-1.5433081,-1.5420952,-1.5539441,-1.5649453,-1.5460453,-1.5896142,-1.6046679,-1.5963423,-1.6027579,-1.5702648,-1.6097642,-1.6236401,-1.6387678
+-1.4214206,-1.4006202,-1.3926849,-1.4027275,-1.4067559,-1.4037752,-1.3952756,-1.3016255,-1.3073196,-1.392915,-1.3758748,-1.3678207,-1.3988178,-1.4386175,-1.4681052,-1.4884435,-1.4953996,-1.4817455,-1.4639974,-1.4617186,-1.4596562,-1.4555562,-1.4640079,-1.4728305,-1.4871714,-1.5272133,-1.530747,-1.526567,-1.5147128,-1.5310088,-1.5237286,-1.5209565,-1.5176673,-1.5025365,-1.4897428,-1.4693742,-1.4630823,-1.5006497,-1.5005944,-1.5077094,-1.4727603,-1.4675121,-1.4428802,-1.4170015,-1.4630824,-1.5050311,-1.5253837,-1.5211824,-1.5171825,-1.5212419,-1.5161097,-1.5244279,-1.5314063,-1.5152166,-1.5064856,-1.5145957,-1.5371921,-1.4937156,-1.4617131,-1.4676943,-1.5100071,-1.5103843,-1.4883682,-1.4619385,-1.4158309,-1.4148241,-1.3837206,-1.4081118,-1.4330459,-1.4022238,-1.1695704,-1.2398388,-1.289129,-1.3968272,-1.4519658,-1.4692217,-1.463139,-1.4568143,-1.4185477,-1.4115616,-1.387406,-1.3685236,-1.0061064,-1.0251379,-0.77615786,-0.64219254,-0.87355524,-0.8597352,-0.6360637,-0.18281364,-0.036553435,-0.15249413,-0.44160724,-0.6491312,-0.71408904,-0.84707695,-0.5668455,-0.7914129,-0.95688367,-0.828215,-0.90884054,-1.0756332,-1.163226,-0.7426836,0.2255798,-0.20396167,-0.2146399,-0.24553233,-0.54814416,-0.34241802,-0.666688,-0.84529084,-0.73968214,-0.005365886,0.4178766,0.3214397,0.40671462,-0.33454835,0.26419547,0.36002183,0.4294819,-0.12803417,0.105964325,-0.19582507,-0.29028773,-0.013595112,-0.5909573,-0.78034735,-0.95202124,-1.0748388,-0.1556156,-0.36906868,-0.5073619,-0.10155923,0.04047858,0.10704636,-0.5051352,-0.74820757,-0.94129896,-1.0905957,-0.83143294,0.04526607,-0.5136758,-0.4659946,-0.75774956,-0.8274195,-0.94450474,-0.85643196,-1.0418004,-1.1233244,-1.1766243,-1.2245983,-1.1179805,-1.0521264,-1.215173,-1.2575331,-1.2884507,-1.3047974,-0.44771463,0.30161047,0.050552554,-0.33643487,-0.59913933,-0.68046993,-0.4417131,-0.7621711,-0.87766355,-0.98134446,-1.0644163,-1.1350447,-1.1855106,-1.1223633,-1.1108414,-1.209667,-1.23263,-1.2417333,-1.3172119,-1.24912,-1.0437603,-0.8479451,-1.0456183,-1.0908009,-1.071562,-1.0005827,-1.101685,-1.032129,-1.1233928,-1.1724666,-1.2241366,-1.2314227,-1.2383969,-1.2312081,-1.2248846,-1.227104,-1.2244639,-1.2224107,-1.2240357,-1.2288591,-1.2483447,-1.2559476,-1.2522016,-1.2618344,-1.2545328,-1.2488577,-1.2640059,-1.2674948,-1.2913687,-1.2524264,-1.2706454,-1.260189,-1.2697386,-1.2666417,-1.2726269,-1.2664561,-1.2654936,-1.2459787,-1.2433257,-1.2506849,-1.2805171,-1.2721243,-1.2836224,-1.277561,-1.2875657,-1.2788546,-1.3012182,-1.2898268,-1.3064053,-1.3080287,-1.2802924,-1.2876799,-1.2904412,-1.2903509,-1.2786888,-1.2783456,-1.3571339,-1.2586373,-1.2452877,-1.2978231,-1.3063643,-1.3445909,-1.3030497,-1.1820631,-1.2423341,-1.1558547,-1.1490889,-1.2245809,-0.92541957,-0.8478446,-0.9790968,-1.0173683,-1.082188,-1.1345496,-1.1946595,-1.2299911,-1.2401196,-1.2631538,-1.2747133,-1.2868807,-1.2590957,-1.2639176,-1.3350897,-1.2069033,-1.3061739,-1.3263832,-1.3648703,-0.24788117,-0.23210979,-0.34461516,-0.38970256,-0.44858462,-0.65484184,-0.82361513,-1.0134583,-1.1261159,-1.1445686,-0.76058424,-0.58197504,-0.74460685,-0.872536,-0.99516666,-1.064245,-1.1038433,-1.1514422,-1.1774105,-1.2058711,-1.2167931,-1.1821433,-1.229885,-1.1449366,-0.08840435,-0.17749703,-0.40578747,-0.55579495,-0.6891247,-0.32053322,0.34694082,-0.014204465,-0.20312646,-0.3371274,-0.41608006,-0.5848943,-0.7300029,-0.87056774,-0.9705664,-1.0163219,-1.0838447,-1.1509222,-1.153424,-1.1503283,-1.1698768,-1.1633282,-1.1744819,-1.2103657,-1.2641337,-1.2703247,-1.2520413,-1.2521884,-1.2469077,-1.1359601,-1.0752518,-1.2273898,-1.1832502,-1.211034,-0.13209131,0.12362499,0.051646568,-0.22019204,-0.48943955,-0.6536272,-0.77660084,-0.9255755,-1.0262828,-1.0950985,-1.1830534,-1.1728026,-1.224124,-1.2211295,-1.2280602,-1.2558022,-1.2450507,-1.2798581,-1.2640604,-1.2585642,-1.2690011,-1.2757342,-1.2824596,-1.2811089,-1.2748574,-1.2761927,-1.2798024,-1.2844634,-1.292903,-1.2997286,-1.3206778,-1.3383784,-1.3377954,-1.3639303,-1.419642,-1.4189426,-1.4286044,-1.42225,-1.4313133,-1.4559836,-1.4637587,-1.47585
+-1.0036255,-1.0700955,-0.9005648,-0.83953404,-0.8126384,-0.8634646,-0.6541855,-0.59670717,-0.7496122,-0.85873854,-0.8329934,-0.84358084,-0.8347899,-0.8547245,-0.85027397,-0.864362,-0.90154487,-0.9095255,-0.91250384,-0.9109371,-0.9147463,-0.8851555,-0.89994484,-0.87947947,-0.89632237,-0.94335496,-0.95584464,-0.966238,-0.93454003,-0.98017883,-0.9546921,-0.9623015,-0.983039,-0.9611168,-0.92673707,-0.86541104,-0.8532716,-0.91995776,-0.942232,-0.98684216,-0.92066073,-0.90023315,-0.8549788,-0.7824737,-0.8423753,-0.86763394,-0.8982038,-0.89088327,-0.9161949,-0.93810534,-0.92688036,-0.9324161,-0.9526464,-0.93160415,-0.8789462,-0.82564664,-0.8931979,-0.88402295,-0.8737244,-0.86402524,-0.9135932,-0.91031754,-0.902092,-0.88118476,-0.85024107,-0.8543356,-0.8282258,-0.81090564,-0.83469194,-0.8407545,-0.81250656,-0.8597133,-0.8749702,-0.8653594,-0.86577374,-0.8664012,-0.84467506,-0.83655244,-0.83624214,-0.81386876,-0.8186984,-0.76779985,-0.74382186,-0.7758049,-0.73843896,-0.7262659,-0.74215645,-0.43012404,-0.032038473,0.8216903,0.14900136,-0.018903397,-0.28479606,-0.1586209,-0.39105392,-0.5359357,0.34678245,-0.24483591,-0.43269992,-0.49456656,-0.5587653,-0.53118324,-0.54870284,-0.24637324,-0.3906178,0.08120129,0.063602455,-0.14259997,-0.3515991,-0.34865195,-0.47162485,-0.50930333,-0.46501762,-0.31263587,0.09956161,0.10531775,-0.19757545,-0.16629058,1.1811248,0.59044355,0.37510175,0.43219224,0.14441326,-0.10348568,-0.26756573,-0.2378493,-0.37792194,-0.39024884,-0.4987771,-0.391342,0.53469723,0.28156555,0.17052022,0.024505652,0.56600606,0.76473886,0.25183433,-0.0812592,0.20661172,-0.2400809,-0.077118345,0.9840835,0.25234526,0.05860711,0.20692256,0.14760974,-0.11692732,-0.25329244,-0.36254293,-0.41080546,-0.45432907,-0.49174792,-0.3273469,-0.3632912,-0.48969173,-0.54458416,-0.58724844,-0.6262235,0.8559299,1.3541343,0.91258246,0.3746171,0.06276762,0.5610861,0.37168214,0.026112624,-0.15724248,-0.255849,-0.31647062,-0.3767818,-0.4458977,-0.3171826,-0.15721291,-0.3622922,-0.39665592,-0.27451137,-0.44341636,-0.45431364,-0.42333513,-0.34101787,-0.47477573,-0.50046396,-0.56433696,-0.51247805,-0.51573694,-0.4620909,-0.49278808,-0.5137533,-0.54168344,-0.547738,-0.5516278,-0.52711904,-0.5078251,-0.4959604,-0.4778121,-0.48571002,-0.4920783,-0.49140793,-0.5099784,-0.5221561,-0.5242076,-0.557469,-0.52557856,-0.49060607,-0.5041777,-0.5133501,-0.5345368,-0.5162751,-0.5085487,-0.5006612,-0.49624723,-0.5065878,-0.5144383,-0.5208834,-0.5557691,-0.54160553,-0.54258335,-0.5470539,-0.55239654,-0.49875563,-0.5360992,-0.5237278,-0.50667405,-0.5481342,-0.5552718,-0.5437869,-0.5574657,-0.5614693,-0.54169697,-0.552362,-0.56006306,-0.5687325,-0.5408952,-0.54609466,-0.59766006,-0.56728005,-0.55160785,-0.57575184,-0.5769329,-0.5900774,-0.60168517,-0.5487292,-0.5789196,-0.575416,-0.5671551,-0.6274452,-0.457412,-0.39514613,-0.51084816,-0.5120388,-0.5524533,-0.5557927,-0.5385113,-0.5501515,-0.5445999,-0.5408423,-0.54636884,-0.5393986,-0.530159,-0.54351556,-0.6022167,-0.5521892,-0.58193827,-0.6258816,-0.5299516,-0.15848497,0.06208738,-0.11291652,-0.22973323,-0.2941187,-0.40001324,-0.4886927,-0.5446161,-0.5270699,-0.542426,-0.53405225,-0.46947485,-0.4863236,-0.5180313,-0.5290048,-0.524284,-0.5109884,-0.55612904,-0.50489205,-0.5048347,-0.43180823,-0.34450698,-0.47511065,-0.583075,0.11561922,0.12640738,-0.13874921,-0.24035585,-0.3309511,-0.27820012,-0.42953908,-0.16925257,-0.22589493,-0.37755382,-0.38206738,-0.45951974,-0.4876678,-0.53097427,-0.53089124,-0.5579329,-0.5606006,-0.5493351,-0.536418,-0.53810585,-0.5555761,-0.5236044,-0.5321433,-0.5565909,-0.5716033,-0.5658487,-0.54769987,-0.542017,-0.5591978,-0.555688,-0.56193817,-0.6367157,-0.57165176,-0.5931976,0.5439344,1.1218007,0.6494487,0.30984458,0.049771793,-0.11021582,-0.2120038,-0.36340982,-0.44174492,-0.46787983,-0.5411602,-0.4957131,-0.5489116,-0.57357895,-0.5815783,-0.57908535,-0.59354705,-0.57642704,-0.64798063,-0.6321992,-0.66979474,-0.672454,-0.6718712,-0.67200184,-0.66487837,-0.6668005,-0.66118664,-0.6586313,-0.66853243,-0.7060968,-0.6956589,-0.7065247,-0.7019994,-0.7176281,-0.74314445,-0.80747736,-0.81658566,-0.80793715,-0.823801,-0.8169254,-0.84508294,-0.87027586
+0.062381543,0.16717295,0.3443095,-0.031253867,0.016057722,0.061332792,0.12280477,-0.040466614,0.031183906,0.030502506,-0.39397556,-0.17762685,-0.38847777,-0.3388942,-0.22174993,-0.20743844,-0.1861265,-0.24782497,-0.2963476,-0.424528,-0.4470501,-0.50472164,-0.5544643,-0.6980277,-0.13008472,-0.03639672,-0.07900504,-0.061579548,0.040167704,-0.03404046,-0.103867166,-0.24724042,-0.45240343,-0.6092148,-0.7230004,-0.7367994,-0.84109294,-0.89227784,-0.40747702,0.707263,0.44216475,0.2772656,0.22585765,0.10746725,0.029089667,-0.16526517,-0.33266822,-0.57599247,-0.7434298,-0.8405963,-0.5328871,-0.022296265,0.1543974,0.1982936,0.05946455,-0.2239663,-0.3760795,0.13791189,-0.016711183,-0.1735279,0.37644055,0.09191744,-0.20411712,-0.23514521,-0.5817224,-0.77441454,-0.9078045,-1.0424407,-1.1369693,-0.96084595,-1.0358377,-0.38916087,-0.47125512,-0.77496374,-0.947065,-0.7712537,-0.24824855,-0.48281312,-0.840712,-0.11805227,-0.5385546,-0.68507075,0.048019532,-0.38232338,-0.43040413,-0.03335818,-0.101758875,-0.28693676,-0.6952009,-0.7583237,-0.8245574,-0.92417157,-0.9868295,-1.0526991,-1.0928808,-1.0133467,-1.098079,-0.8384993,-1.0818417,-1.0183353,-0.9966248,-0.12517336,0.53274196,0.31644037,0.4177388,0.37625653,0.4873296,0.48057225,0.14318404,-0.294693,-0.52517414,-0.76018965,-0.9631617,-0.50175977,-0.81089854,-1.001146,-0.79954743,-0.5867554,-0.8090186,-0.9894757,-1.0820926,-0.9828255,-1.0115399,-1.1221595,-0.6991953,-0.17035148,-0.5936184,-0.77348346,-0.97520804,-0.35763118,-0.65457743,-0.09771272,-0.03147348,-0.23790473,-0.37311435,-0.73524016,-0.6092755,-0.66232896,-0.8490006,-0.5921694,-0.37629575,-0.62524414,-0.80780184,-0.9657352,-0.8484609,-0.14459339,-0.34870154,-0.062885486,-0.15809721,-0.2864663,-0.49433625,-0.56767434,-0.6746254,-0.83386487,-0.8772708,-0.8839282,-0.904422,-0.4767794,-0.31558436,-0.33155707,-0.2671276,0.1606383,0.08157976,-0.16105297,0.10834428,0.017920323,-0.027465701,-0.14233786,-0.3255608,-0.36642826,-0.4344169,-0.5858705,-0.5591272,-0.76337266,-0.18215263,0.3812631,0.2616617,0.3334443,0.26276493,0.07605953,0.022030637,-0.15425208,-0.3008708,-0.34194267,-0.42583144,-0.24627936,0.6079674,0.61097264,0.28639266,-0.17466861,-0.12731773,0.27575412,0.2973577,-0.07046502,-0.5362178,-0.6479815,0.0066207275,0.25439364,0.1436864,0.16163489,-0.0073980764,-0.07231752,-0.05081477,-0.009232812,-0.15583074,-0.14930901,-0.20552585,-0.24656233,-0.25106475,-0.33895612,-0.20479673,-0.06808484,-0.07640683,-0.08197334,0.16394874,0.116893634,0.117199324,0.07349123,0.062076323,0.08535362,-0.08738267,-0.16156986,-0.12200769,-0.21663588,-0.31586307,-0.29029477,-0.32989556,-0.461361,-0.49301827,-0.48221862,-0.7618589,-0.79474103,-0.9277744,-0.8564756,-0.7482455,-0.82961136,-0.9435737,-0.9075415,-0.9759927,-0.9409957,-0.92881775,-1.0066893,-1.124315,-1.2113591,-1.1888174,-1.173926,-1.1030558,-1.1100795,-1.1196935,-1.370217,-1.3457012,-1.3333403,-1.2865905,-1.2448063,-1.2584987,-1.309002,-1.3134308,-1.3440824,-1.359451,-1.2855729,-1.353967,-1.3704896,-1.2081575,-1.1639166,-0.93997014,-1.2142951,-1.228376,-1.1064882,-1.1846644,-1.2780672,-1.2546232,-1.2087252,-1.2608919,-1.2030456,-1.2805706,-1.1653415,-1.2599652,-1.3320673,-1.3596902,-1.3901819,-1.2825625,-1.311309,-1.3565679,-1.2514043,-1.2664183,-1.3339714,-1.344145,-1.3558989,-1.3457224,-1.3043644,-1.2163179,-1.1461422,-0.9421241,-0.93653095,-0.95947945,-1.1744368,-1.171993,-1.3105671,-1.3203279,-1.351934,-1.3647293,-1.2899264,-1.0750601,-1.0326455,-1.0135037,-1.2355096,-1.3515065,-1.4252903,-1.4217925,-1.2834624,-1.2526883,-1.0989232,-1.1594827,-1.2030706,-1.1157237,-0.82642776,-1.0594796,-1.181202,-1.122012,-1.0418903,-0.91088533,-0.60535425,-0.5091841,-0.7709402,-0.6947157,-0.87292045,-0.666833,-0.72670925,-0.8969792,-0.9114506,-0.9791384,-0.9496987,-1.121412,-1.1019933,-1.112894,-1.0630934,-1.0036926,-0.7756177,-0.6922381,-0.8201141,-0.9846629,-1.0643191,-0.99715793,-0.9427159,-0.9126204,-0.8507549,-0.89242554,-0.8467355,-0.4157399,0.1486157,-0.21436262,0.09499928,0.7046925,0.1645307,-0.52000636,-0.19515622,0.7482445,0.88350844,0.9247123,0.547556,0.21742411,0.31353432,0.36945516,0.36532563,0.31179062
+-0.56124264,-0.37983024,-0.2844752,-0.3426565,0.19113049,0.19454429,0.1628505,-0.0092986,-0.0694771,-0.121474706,-0.38689128,-0.42084426,-0.5373414,-0.50327533,0.7369708,0.5561212,0.38640982,0.1731931,0.1354917,0.02908624,-0.08811953,-0.28050324,-0.40283582,-0.5320267,0.3854549,0.53006124,0.5320641,0.7111903,0.73615205,0.719347,0.4697621,0.2805344,0.061685286,-0.18287808,-0.4122138,-0.55418456,-0.46304864,-0.75135475,-0.33179605,1.4113848,1.3096514,1.1913188,1.0603511,0.87448245,0.6507968,0.4787073,0.24420449,0.036025815,-0.22781739,0.17058769,0.5224194,0.4033497,0.2414226,0.13873288,0.10136319,0.13770679,0.09043287,0.16006717,0.011322893,-0.2022273,-0.013338558,-0.043374784,-0.25945494,-0.30727378,-0.59045815,-0.74878085,-0.88794243,-1.1020409,-1.2246373,-0.9014005,-0.91184974,0.33979478,0.2598251,-0.18744501,-0.45375258,-0.48369765,0.23341179,-0.08971874,-0.39519396,-0.26068792,-0.5431843,-0.81826055,-0.9139296,-1.1613644,-0.9689907,0.4119973,0.07105396,-0.2205882,-0.5264315,-0.5593289,-0.7391064,-0.7997349,-0.7123157,-0.44271314,-0.75210536,-1.0220771,-0.9249021,-0.63877,-1.0313263,-0.9439064,-0.45424473,1.3379205,0.9258028,0.76600987,0.628209,0.53003794,0.24306974,0.19368994,0.10747149,-0.018745966,-0.23251289,-0.47538006,-0.90701604,-0.67429173,-0.9175606,-1.1344843,-1.2665092,-0.127431,-0.295076,-0.57082546,-0.8256524,-0.99676263,-1.1102859,-1.2944217,-1.3218838,-1.3206224,-1.4072032,-1.4799583,-1.4328437,-1.3262197,-1.3565059,-0.25748727,-0.20408499,-0.1859062,-0.20712602,-0.5744272,-0.76921946,-1.0170747,-1.2104708,-0.5801456,0.5444216,0.1145905,-0.20568126,-0.46226543,-0.58574116,-0.65297157,-0.6578925,-0.3544384,-0.40090114,-0.59281516,-0.810753,-1.0409855,-1.2167482,-1.2727543,-1.2646106,-1.2540699,-1.1830943,0.66676855,0.4422492,0.32183912,0.24292898,0.15684322,0.15116447,-0.042759918,-0.08042026,-0.013949983,-0.16156745,-0.24584636,-0.19382313,-0.32310176,-0.37750122,-0.4945525,-0.66675186,-0.03636714,0.96964246,0.84489363,0.8009083,0.81587785,0.65566176,0.40733734,0.20112327,0.0053247362,-0.13423616,-0.2932076,-0.2828467,1.0548068,1.6195533,1.1390166,1.1435689,0.7586006,0.7152286,0.65565777,0.4994085,0.22889364,-0.2712982,-0.0014382303,0.32304063,0.33268002,0.21997057,0.38400495,0.30599877,0.20296407,0.17999378,0.21695682,0.112484686,0.025478207,-0.028447054,-0.050194584,-0.13582256,-0.14601493,-0.19549182,-0.27634293,-0.24757203,0.6319622,0.6365088,0.5816619,0.5375418,0.3991157,0.3303724,0.28772417,0.15882856,0.14334692,0.104624555,-0.006119095,-0.039265357,-0.042418025,-0.086864345,-0.10722811,-0.17029089,-0.19247249,-0.3013473,-0.3855548,-0.5931107,-0.44040442,-0.378689,-0.5297124,-0.6244694,-0.6374189,-0.7144637,-0.64833266,-0.67444056,-0.6118978,-0.70596033,-0.88771236,-0.73583245,-0.68820274,-0.7353118,-0.78454435,-0.8684066,-1.1613741,-1.1190948,-1.0769532,-0.9924288,-0.9528204,-1.1072758,-1.0436323,-1.1906089,-1.1630436,-1.0592015,-1.0098462,-1.1581614,-1.164162,-0.92670643,-0.83522356,-0.7854698,-0.93081343,-0.9213824,-0.874986,-1.0517734,-1.1116794,-0.9939859,-0.92162585,-0.98171103,-0.8134825,-1.0249991,-0.91018796,-1.1252189,-1.1405051,-1.1747031,-1.1745335,-1.0789442,-1.0455585,-1.1500585,-0.91846657,-1.0598191,-1.1802293,-1.1697757,-1.1760063,-1.14182,-1.0604002,-0.9590279,-0.8375051,-0.5740521,-0.57126725,-0.53064483,-0.9218093,-0.96015835,-0.8860088,-1.0568448,-1.0962412,-1.0658653,-0.9676378,-0.7267473,-0.6490884,-0.701697,-0.88696253,-1.1210698,-1.1106614,-1.1413176,-1.0007073,-0.9537852,-1.0059096,-1.0578334,-1.0684595,-0.9401097,-0.3536587,-0.6506355,-0.87559474,-0.7408714,-0.66934705,-0.53906256,-0.13477191,0.16892508,0.13742751,0.18580627,-0.06325858,0.03538046,0.21560067,-0.1684941,-0.3902817,-0.6229931,-0.6677079,-0.72094214,-0.7391503,-0.7336919,-0.5257035,-0.52127236,-0.27431005,-0.08507567,-0.17764843,-0.74246573,-0.8161541,-0.7317833,-0.7090844,-0.6681423,-0.625874,-0.66702104,-0.34310818,0.22888067,0.7717161,0.26597336,0.75554186,1.0016613,0.28810897,-0.04252892,0.29263955,0.5642343,0.39207244,0.62230355,0.3580098,0.37932912,0.43127128,0.31494585,0.3067304,0.32370234
+-0.49053705,-0.70342195,-0.8172701,-0.9577364,-0.87841666,-0.94820786,-1.0664195,-1.1662073,-1.2754105,-1.3702958,-1.3831987,-1.486599,-1.454611,-0.8318741,-0.35986936,-0.42911124,-0.7145634,-0.7374852,-0.5484079,-0.54291254,-0.79451966,-0.95012534,-1.0795221,-0.64688325,-0.21877146,-0.2650021,-0.08441188,0.17599133,0.11153234,0.07003374,-0.05819518,-0.276485,-0.5419202,-0.7839357,-0.9566492,-1.1420882,-1.1608957,-1.3606267,-0.6665034,0.45803946,0.077483736,-0.050129645,-0.047114335,-0.24114975,-0.41439414,-0.5464642,-0.67483556,-0.89687264,-0.92432356,-0.4130519,0.070259504,0.019356526,-0.28921694,-0.5747004,-0.58926374,-0.52003896,-0.27837235,-0.20787853,-0.53158176,-0.47687852,-0.38395047,-0.6789874,-0.9658284,-1.0110842,-1.2440242,-1.3746524,-1.3907363,-1.4876418,-0.2878244,-0.6228052,-0.23814553,-0.57379866,-0.7749708,-0.82630146,-0.817366,-0.35365638,-0.20126796,-0.726817,-0.9901459,-1.1970565,-1.3658866,-1.4482453,-1.4152353,-1.5042135,-1.3038261,-1.1251694,-1.4084451,-1.4927121,-1.5406617,-1.5196223,-1.4979849,-1.3185949,-0.91819656,-0.3249972,-0.8235191,-1.197834,-1.4010154,-0.80332476,-1.1582819,-1.3234545,0.19431996,0.48291895,0.26231146,-0.2317695,-0.5745505,-0.87151957,-0.43125802,-0.3931496,-0.10651485,-0.65635425,-0.9846126,-1.1758585,-1.3167723,-1.2373016,-1.3692396,-1.3613622,-1.2362279,-0.9722123,-0.99665594,-1.213916,-1.3640122,-1.3486909,-1.3665226,-1.4765769,-1.4049352,-1.4164661,-1.5029895,-1.5188459,-0.07841929,0.11951936,-0.41443717,-0.6827222,-0.8810191,-1.0408429,-1.05743,-1.2310141,-1.1777847,-1.1972524,-1.2989167,-0.8062417,0.52406204,-0.05810135,-0.40252036,-0.7103792,-0.906348,-1.0773093,-1.1680541,-1.0345883,-1.0580163,-1.192409,-1.3267901,-1.388397,-1.3844831,-1.3309684,-1.3162658,-1.2848113,-0.45059848,0.7161082,0.3593204,0.12183758,-0.048179768,-0.22322759,-0.40936106,-0.56749916,-0.06419479,0.2815646,0.060963847,-0.08992761,-0.22007623,-0.36557668,-0.5336704,-0.7099787,-0.8773787,-0.6611885,0.17212477,0.36166957,0.31091335,0.21862522,0.08807152,-0.1184553,-0.373461,-0.5348887,-0.643257,-0.76168954,-0.80725056,0.18890393,0.980358,0.5830418,0.5137309,0.41642928,0.21611425,0.18860264,0.03743966,0.1339694,-0.15989637,-0.071833275,0.09754699,0.10202365,-0.01819364,-0.012071617,-0.123872794,-0.17596358,-0.21260819,-0.27485535,-0.34630188,-0.37884173,-0.43200016,-0.47597313,-0.5191886,-0.56705934,-0.6097542,-0.23402977,-0.1874488,-0.2716482,-0.249419,-0.32834393,-0.3501178,-0.4453966,-0.48521173,-0.49805784,-0.5971042,-0.63685614,-0.6370591,-0.6930244,-0.67899996,-0.6727532,-0.6827238,-0.6828883,-0.7156303,-0.6387311,-0.51954544,-0.6095172,-0.72356117,-0.6629904,-0.5785526,-0.6459063,-0.75306743,-0.7760813,-0.83797014,-0.83149105,-0.8830897,-0.86948985,-0.9202478,-1.0479401,-0.96541214,-0.9089266,-0.9722694,-0.98100567,-1.0107893,-1.2235116,-1.3550327,-1.3541697,-1.2821572,-1.2271656,-1.3371645,-1.2240453,-1.3631252,-1.4214299,-1.1413236,-1.1457716,-1.349815,-1.3540351,-1.1467935,-0.986022,-1.0470108,-1.1808264,-1.1840004,-1.1172991,-1.1639085,-1.3280511,-1.190691,-1.1843457,-1.228118,-0.915997,-1.1946063,-1.113442,-1.2371825,-1.3448164,-1.4135814,-1.4366903,-1.3868458,-1.3291297,-1.302795,-1.1383008,-1.197335,-1.3200123,-1.414227,-1.3633273,-1.3169006,-1.2750714,-1.252641,-1.143152,-0.9294038,-0.9290191,-0.61427146,-1.1124501,-1.2009695,-1.1687846,-1.1580279,-1.3109145,-1.2668788,-1.2455994,-1.1203307,-0.9893775,-0.99838877,-0.92095256,-1.2598758,-1.3767674,-1.4327799,-1.2556776,-1.2447468,-1.2748154,-1.2505239,-1.2777221,-1.0529578,-0.530421,-0.83590734,-1.1432753,-1.082091,-1.0262083,-0.89521945,-0.5663247,-0.4870664,-0.4119097,-0.3366899,-0.41916454,-0.31919706,-0.39031425,-0.59187967,-0.8091335,-1.0402164,-1.1157573,-1.0358586,-1.1481929,-1.1583791,-0.9163554,-0.79662347,-0.72683096,-0.6298026,-0.6691607,-1.1418303,-1.0672257,-0.92600536,-0.98965096,-1.109506,-0.8120196,-1.04584,-0.3588171,0.023933165,0.11217148,-0.21742415,-0.14212501,-0.18606445,-0.1904661,-0.2519436,-0.19062024,-0.21594521,-0.39509246,-0.3750899,-0.49846333,-0.5513602,-0.45186943,-0.5005937,-0.50529516,-0.39558798
+-0.6609634,-0.78750414,-0.8868291,-1.0021923,-1.0650444,-1.1440992,-1.1885331,-1.2209702,-1.2521123,-1.3409772,-1.3086077,-1.3502753,-1.4623386,-1.3069882,-1.2427624,-1.2746274,-1.3485885,-1.0670625,-0.41896015,-0.3186285,-0.585191,-0.7853207,-0.9460466,-0.43530178,-0.55637944,-0.61607313,-0.69935924,-0.67758644,-0.6633657,-0.6256746,-0.75690114,-0.8999524,-0.9891076,-1.0869284,-1.203856,-1.3166559,-1.2922882,-1.2918653,-1.0020003,-0.3465417,-0.5983476,-0.6918516,-0.84156466,-0.93584085,-1.0400034,0.028726734,-0.072787575,-0.30367422,-0.5600373,-0.27226773,-0.45538974,-0.5198202,-0.8265867,-0.96365154,-0.6475514,-0.56958294,-0.64399374,-0.42676032,-0.7058792,-0.96090126,-0.9509047,-1.1324074,-1.352353,-1.3396592,-1.3911278,-1.4377556,-1.4435444,-1.4915447,-1.4440944,-1.3806158,-1.2099237,-1.3614613,-1.2035205,-0.99819124,-0.9848323,-1.1397432,-1.2454634,-1.3304733,-1.2121043,-1.2026774,-1.318104,-1.4101926,-1.3347415,-1.3996824,-1.4042468,-1.3673816,-1.4432452,-1.4419556,-1.4469714,-1.3842046,-1.2598617,-1.1311983,-0.9950129,-0.8690003,-0.9176334,-0.94633317,-1.2649801,-1.1937847,-1.3504417,-1.3748782,-1.0717282,-0.61668074,-0.8284168,-1.167536,-1.2844281,-1.348114,-1.3478978,-1.2876079,-1.3659565,-1.3659754,-1.3553103,-1.3408146,-1.3732024,-1.2665201,-1.3432709,-1.3889767,-1.3575119,-1.3398285,-0.9102149,-0.9447017,-1.1517789,-1.250818,-1.2830595,-1.3419188,-1.3541377,-1.306121,-1.386085,-1.4170812,-1.0448503,-0.870718,-1.1477323,-1.2443725,-1.2682526,-1.2669042,-1.2844822,-1.3450043,-1.3017621,-1.3521807,-1.3577687,-1.1061795,0.25649163,-0.14623564,-0.62639767,-0.91621864,-1.0959289,-1.194722,-1.2513136,-0.87174326,-0.72131443,-0.9687779,-1.148279,-1.2890394,-1.3025447,-1.2997732,-1.2978499,-1.23279,-0.60067713,-0.08578894,-0.5079783,-0.7940657,-0.970147,-0.99804986,-1.0980604,-1.2250147,-0.342604,0.2843896,0.013204046,-0.22807896,-0.37235582,-0.5854501,-0.74853265,-0.86041784,-0.95142317,-1.0607022,-1.1422458,-0.13945028,0.8076067,0.4761374,0.20631647,-0.11977824,-0.3672498,-0.5507783,-0.6032139,-0.5748734,-0.72496355,0.18030667,0.61297655,0.32173827,0.15966886,0.079627484,-0.049618788,-0.20353478,-0.32263464,-0.27024528,-0.53131044,-0.5735786,-0.5314939,-0.5476149,-0.61156785,-0.62069017,-0.6140186,-0.67219245,-0.7855859,-0.81573874,-0.83392763,-0.858197,-0.8964008,-0.88354486,-0.89958936,-0.90497804,-0.9020807,0.44227055,0.46401992,0.2898019,0.054430313,-0.10917609,-0.2075482,-0.28140128,-0.3830124,-0.46335506,-0.52434075,-0.6119683,-0.642266,-0.6759181,-0.7168013,-0.7207434,-0.73260826,-0.7508117,-0.743543,-0.7804871,-0.6269709,-0.9273033,-1.0154462,-1.017941,-0.89895916,-0.7061835,-0.93363905,-0.9526665,-1.0733783,-1.1005406,-1.1010566,-1.0904851,-1.0243963,-1.2809751,-1.1865934,-1.09763,-1.187779,-1.1613262,-1.1433368,-1.3668405,-1.4622908,-1.4802344,-1.405545,-1.214786,-1.2063553,-1.2914648,-1.3519068,-1.3668439,-1.1273303,-1.214931,-1.5444727,-1.4571096,-1.3100699,-1.0676204,-1.0593532,-1.242128,-1.265764,-1.1193285,-1.1857424,-1.3046327,-1.2593862,-1.2166712,-1.2839704,-1.1122444,-1.1441405,-1.2317286,-1.4108232,-1.4809138,-1.4998188,-1.5710869,-1.5260634,-1.4782256,-1.2829738,-0.95352924,-1.0625188,-1.0853283,-1.3431941,-1.3955146,-1.3481957,-1.3326025,-1.3120209,-1.2399836,-1.0846392,-1.0612459,-0.94826746,-1.2438785,-1.1668491,-1.145376,-1.1752436,-1.2590319,-1.2601173,-1.3526088,-1.1622927,-1.0213699,-1.036561,-0.9585135,-1.1020675,-1.3407199,-1.4149379,-1.0015316,-0.88937867,-0.9079356,-0.80854166,-1.0859346,-0.763578,-0.3333366,-0.5730134,-1.1739962,-1.1592655,-1.1587603,-1.1121641,-1.004304,-1.0430311,-0.9250834,-0.86198056,-0.9726372,-0.7441559,-0.979175,-0.9872222,-1.135662,-1.2241043,-1.3014607,-1.226432,-1.2209663,-1.2255361,-1.067255,-1.0660176,-1.0481346,-1.0058749,-0.8513737,-1.2823402,-1.0382847,-0.8667348,-0.79499507,-0.79316586,-0.7464777,-0.8604708,-0.6673234,-0.7081374,-0.74912083,-0.89928204,-0.9337847,-0.87247235,-0.86207616,-0.7777398,-0.6837226,-0.65055364,-0.8228328,-0.8513532,-0.82309544,-0.9413848,-0.91324496,-1.0150151,-1.013725,-0.73372364
+-0.8531983,-1.1516352,-0.92805696,-0.9810318,-1.1037424,-1.2331975,-1.2396636,-1.3385885,-1.3836235,-1.4029922,-1.344275,-1.4053397,-1.459162,-1.364246,-1.4146103,-1.5252181,-1.5174589,-1.179379,-0.039051853,-0.068251155,-0.41189408,-0.67651784,-0.7994433,0.28913096,0.2970542,0.4620958,0.2963493,0.33126497,0.11469138,0.25181472,0.16703042,-0.11525827,-0.33388385,-0.5739667,-0.7834141,-0.95323145,0.71504545,0.5216771,0.47147065,0.2021975,-0.06848066,-0.34714684,-0.54922414,-0.65816873,-0.6830907,-0.09782871,-0.01889345,-0.10255066,-0.3837,-0.4826517,-0.6019925,-0.76016265,-0.97810674,-1.1300669,-0.89323455,-0.94934356,-1.1067953,-0.88811195,-1.0161908,-1.2327979,-1.3179781,-1.3906345,-1.4603747,-1.4963545,-1.5005673,-1.5111063,-1.5185624,-1.4662027,-1.2699356,-1.0807011,-1.2821813,-1.4546822,-1.3748219,-0.98080504,-0.69184935,-1.0781729,-1.3120179,-1.423567,-1.470327,-1.4992421,-1.5006678,-1.5116835,-1.4997422,-1.2817242,-1.2884278,-1.4670393,-1.5571841,-1.5476241,-1.536281,-1.3966478,-1.127571,-0.76846695,-1.1673522,-1.3329774,-1.4390601,-1.5054386,-1.5289533,-1.5220315,-1.548973,-1.5580673,-1.544275,-1.5428045,-1.5392635,-1.565115,-1.5650539,-1.5597394,-1.5506666,-1.5352201,-1.5632123,-1.5227082,-1.553384,-1.5572,-1.5953574,-1.5189376,-1.5606139,-1.5615323,-1.5619984,-1.5419067,-1.2246647,-1.2471808,-1.3936247,-1.4941344,-1.5286915,-1.5422436,-1.5360312,-1.5441246,-1.5562812,-1.5526202,-1.294341,-1.2548981,-1.4540143,-1.5045471,-1.2019854,-0.9182973,-1.2022545,-1.3733644,-1.4617115,-1.5125515,-1.5374534,-1.2051382,-0.46475965,-0.7272203,-1.1639614,-1.3849409,-1.4964727,-1.5369003,-0.9148853,-0.67119205,-0.9376005,-1.2481765,-1.4418968,-1.4751506,-1.4868164,-1.4918289,-1.432904,-1.3135165,-1.0607301,-0.7313539,-1.0165448,-1.2573924,-1.3671488,-1.4585817,-1.4665135,-1.5046808,-1.4958286,-0.49855316,-0.43031883,-0.73349875,-0.9333509,-1.0885811,-1.2378883,-1.2993114,-1.3716868,-1.413763,-1.2539287,0.40001738,0.48649907,0.32907322,-0.03073939,-0.33737087,-0.56078696,-0.74174476,-0.81308055,-0.92875993,-0.9263934,0.11435634,0.389403,0.06803848,-0.17461616,-0.36750433,-0.51546717,-0.6700834,-0.7613051,-0.84627205,-0.91777444,-1.0196464,-1.0646468,-1.1124785,-1.1172574,-0.022387415,-0.18776563,-0.4160056,-0.6460227,-0.69534445,-0.7551931,-0.816573,-0.88035,-0.924533,-0.97181654,-1.0267723,-1.0777055,-0.8597042,-0.8477875,-0.87778884,-0.9745896,-1.0366263,-1.0862154,-1.1322244,-1.1643759,-1.178822,-1.2127454,-1.2254047,-1.2492421,-1.2782583,-1.2424332,-1.2307968,-1.2401198,-1.2298793,-1.2379684,-1.230948,-0.48316187,-0.8207924,-1.0237613,-0.947801,-0.8287296,-0.55294216,-0.96207225,-0.99319506,-1.1027836,-1.1113394,-1.0551696,-1.0763681,-1.0882721,-1.254908,-1.1839643,-1.1217076,-1.2285712,-1.2036216,-1.1242931,-1.3504786,-1.2631159,-1.3845936,-1.3343284,-1.1757307,-1.1310943,-1.2460368,-1.274948,-1.2668986,-1.17682,-1.1154232,-1.4371731,-1.5416408,-1.447206,-1.2470572,-1.1377407,-1.303031,-1.3159081,-1.1740878,-1.0232928,-1.3102342,-1.4025035,-1.2367084,-1.364463,-1.2509379,-1.1718128,-1.3215694,-1.1779625,-1.480589,-1.3492495,-1.5373195,-1.5871394,-1.5641534,-1.4128563,-1.0798247,-1.1724749,-1.1607076,-1.3451699,-1.3922348,-1.3905838,-1.4095601,-1.4306985,-1.4122977,-1.2988253,-1.2490126,-1.1440083,-1.2890141,-1.2554967,-1.2061825,-1.012114,-1.4410899,-1.542454,-1.5167935,-1.4179369,-1.2519207,-1.1868873,-1.1773641,-1.1845586,-1.4172549,-1.4893503,-1.3200248,-1.2118249,-1.1804734,-1.079731,-1.1050925,-1.1689457,-0.8828934,-0.85603404,-1.3287121,-1.3391507,-1.3154892,-1.2760007,-1.1816415,-1.1720653,-1.1102185,-1.067992,-1.175251,-1.0579171,-0.97276545,-1.083826,-1.1314014,-1.3995183,-1.4245169,-1.3014315,-1.3651304,-1.4230435,-1.3003575,-1.2138829,-1.1394887,-1.0463394,-1.0578995,-1.4057674,-1.1472187,-0.9125097,-0.8792332,-0.7036422,-0.8682087,-0.9590155,-0.71976787,-0.627203,-0.65862584,-0.9240351,-0.92627597,-0.81929135,-0.90479875,-0.8135957,-0.77440274,0.06922093,-0.047446735,-0.2752922,-0.2380094,-0.512062,-0.45190054,-0.6541269,-0.56147563,0.91580963
+-1.1087247,-1.2827159,-1.2385192,-1.2951193,-1.3084991,-1.4754131,-1.4741402,-1.4955108,-1.4972475,-1.0603211,-0.5055546,-0.8592645,-1.0645118,-1.0509813,-1.1342782,-1.2875403,-1.312037,-1.1886401,-1.0337641,-1.0656004,-1.2826016,-1.3627291,-1.428997,-1.1701503,-1.2838454,-0.4366963,-0.7349946,-0.907876,-0.9895046,-0.7903099,-0.8707491,-1.1117291,-1.1472235,-1.1896787,-1.245555,-0.90293545,0.7677836,0.77786404,0.71726584,0.093929075,-0.48506254,-0.7765857,-0.9694208,-1.0661495,-0.9240984,-0.87317634,-0.7700124,-1.0192719,-1.2261219,-1.3566265,-1.4925656,-1.0129764,-1.0292675,-1.3158396,-1.233798,-1.350519,-1.2361393,-1.2558451,-1.4756029,-1.5393713,-1.6132505,-1.6687055,-1.6801858,-1.6658635,-1.6818569,-1.7041076,-1.6899102,-1.6318018,-1.5939904,-1.6617025,-1.687186,-1.7139587,-1.1974412,-1.0569545,-1.1933146,-1.5893941,-1.6696775,-1.6692791,-1.6989841,-1.7098459,-1.71522,-1.7361361,-1.6966958,-1.6856778,-1.6423143,-1.6661925,-1.737962,-1.7524574,-1.7696772,-1.7427878,-1.4865384,-0.89859927,-1.2115581,-1.2887998,-1.4477519,-1.5831141,-1.646273,-1.634417,-1.7125647,-1.7437477,-1.7339842,-1.6588255,-1.7147667,-1.7317348,-1.729225,-1.7617042,-1.7750843,-1.7524681,-1.7787302,-1.1148727,-1.2447879,-1.5175203,-1.6182402,-1.615262,-1.6804957,-1.7228482,-1.7281101,-1.7254155,-1.7003946,-1.7102699,-1.7132537,-1.4366553,-1.236054,-1.5567985,-1.6381412,-1.6509304,-1.7245032,-1.6576089,-1.6452596,-1.4150147,-1.4426754,-1.609644,-1.5191149,-1.5026064,-1.6576986,-1.6982548,-1.7290299,-1.7080803,-1.6883324,-1.2093296,-1.0164751,-1.2862554,-1.593601,-1.6540896,-1.6629262,-1.6809628,-1.6687511,-1.5551326,-1.4975747,-1.6414468,-1.7088102,-1.7263076,-1.7034323,-1.6989753,-1.6445018,-1.5729693,-1.1727717,-1.0730844,-1.3744614,-1.5351489,-1.6089578,-1.6471224,-1.6864517,-1.7093674,-1.7269295,-1.4016807,-0.82666606,-0.52850604,-0.8689694,-1.1686692,-1.3783718,-1.5189645,-1.618923,-1.6736243,-0.22558492,0.55736303,0.20085266,-0.2162349,-0.55003464,-0.83766997,-1.0718203,-1.212007,-1.2147566,-1.3056422,-1.3285317,-0.64303994,-0.51510525,-0.92786026,-1.1090666,-1.2345067,-1.30592,-1.3707039,-1.4402404,-1.4863042,-1.4523796,-1.5206811,-1.5939271,-1.5642132,-1.4276665,-0.74005187,-1.0521348,-1.1416007,-1.3120835,-1.3386314,-1.3518825,-1.3844655,-1.4271827,-1.4022392,-1.3924543,-1.4303125,-1.4703662,-1.3999633,-1.3528636,-1.2880083,-1.3089771,-1.378432,-1.4615337,-1.4654286,-1.5021307,-1.4969062,-1.4829006,-1.4786518,-1.4714978,-1.475718,-1.4581858,-1.45998,-1.4783607,-1.4799882,-1.4723719,-1.4871509,-1.1847982,-1.341861,-1.4159794,-1.3425395,-1.2779702,-1.2487435,-1.3961256,-1.2656128,-1.4833583,-1.4592304,-1.3702362,-1.4724057,-1.4586941,-1.4758053,-1.4248888,-1.3899572,-1.4554173,-1.4156432,-1.3514031,-1.4684334,-1.4067712,-1.4047596,-1.3107289,-1.2215806,-1.2131577,-1.4114357,-1.4088261,-1.3612261,-1.2083871,-0.95630705,-1.3755645,-1.4924235,-1.4108113,-1.2725918,-1.1730447,-1.2855328,-1.3188485,-1.2146566,-1.2237225,-1.4103645,-1.401804,-1.2891133,-1.3902683,-1.3495821,-1.3560619,-1.366965,-1.272315,-1.3841608,-1.2848105,-1.3899935,-1.5987066,-1.520046,-1.2467659,-0.8584995,-1.0466813,-0.7121748,-1.1579472,-1.1123734,-1.1126916,-1.2293987,-1.3214025,-1.3399364,-1.2698923,-1.2255423,-1.1655619,-1.2066934,-1.2127472,-1.045883,-1.0171694,-1.2655582,-1.4169304,-1.414823,-1.349571,-1.2371291,-1.2039285,-1.1777524,-1.1078404,-1.2648973,-1.174805,-1.1204911,-1.1370792,-1.1155156,-0.9733149,-0.98543644,-0.9270735,-0.7900765,-0.6067275,-1.3054032,-1.3122537,-1.3327584,-1.3341339,-1.304866,-1.2783842,-1.0525403,-1.0886394,-1.2296951,-1.0242097,-0.9514818,-0.82994807,-1.21831,-1.4039366,-1.4172899,-1.1623483,-1.3181063,-1.3761152,-1.3160559,-1.2601447,-1.2419525,-1.1814226,-1.3816719,-1.4590249,-1.1780071,-1.2184582,-1.1082346,-0.9599819,-1.2239041,-1.2854455,-1.082441,-1.060857,-1.0296352,-1.0606424,-1.0624044,-0.9447479,-0.9529799,-0.949541,-1.0098333,-0.3733991,-0.20184177,-0.9215238,-0.8051369,-1.0446253,0.092923425,-0.6876699,-0.5877654,0.12023098
+-0.9178232,-1.1187199,-1.1456352,-1.1960175,-1.1631938,-1.3095932,-1.3657124,-1.3842837,-1.4231464,-1.2038822,-0.93315613,-0.99896204,-1.150645,-1.2803013,-0.42284048,-0.4693439,-0.54891574,-0.6030446,-0.5132158,-0.302378,-0.41790247,-0.5748106,-0.72398585,-0.7238739,-0.94226754,-0.28378722,-0.10002985,-0.101431035,-0.34678334,-0.36598855,-0.6097641,-0.7779273,-0.9267323,-1.0332079,-1.1193807,-1.0384539,0.12155426,0.3247383,0.46131387,0.25912383,-0.1399808,-0.47901708,-0.8148073,-1.0416359,-0.90535307,0.055116154,0.4774457,0.24958056,-0.06084331,-0.26190624,-0.57351804,-0.6700442,-0.8812965,-1.1291369,-1.253072,-1.3032784,-1.2102633,-1.1628482,-1.3035623,-1.346719,-1.4599276,-1.5579697,-1.6114918,-1.6192274,-1.5876099,-1.6437265,-1.6108326,-1.4933226,-1.4840677,-1.5743302,-1.6376479,-1.6810378,-1.5277742,-1.6155565,-1.5346392,-1.7139407,-1.7254072,-1.7256994,-1.7215881,-1.7379491,-1.7098792,-1.709404,-1.6924226,-1.6679038,-1.6468062,-1.5576077,-1.6877413,-1.7197725,-1.7190528,-1.31953,-0.83644974,-0.48651022,-0.03280153,-0.31385753,-0.7787006,-1.1514068,-1.3760643,-1.4634092,-1.5637554,-1.5909657,-1.6163007,-1.5491784,-1.6259534,-1.6653793,-1.6542914,-1.6742474,-1.6732998,-1.6669922,-1.4815137,-1.0892045,-1.3366554,-1.1017692,-1.1422843,-1.3478613,-1.4564043,-1.5172462,-1.5453186,-1.5151762,-1.5384222,-1.5449557,-1.5673325,-1.5504607,-1.4897076,-1.5595934,-1.5373615,-1.5354946,-1.4725542,-1.3782544,-1.1985302,-1.0062642,-1.1960757,-1.4008996,-1.3886828,-1.4397492,-1.546284,-1.5670446,-1.6106113,-1.5373305,-1.5721521,-1.2684371,-0.8786213,-1.0898534,-1.3932014,-1.5004617,-1.4448766,-1.4496317,-1.4835145,-1.4889147,-1.1571716,-1.1690102,-1.4068818,-1.4619898,-1.4902706,-1.5399841,-1.4542403,-1.267005,-0.67574805,-0.8871756,-1.1529901,-1.3277375,-1.419361,-1.4671866,-1.531867,-1.5852185,-1.6052611,-1.4674554,-1.0291187,-0.85451734,-1.0966818,-1.3214872,-1.4363555,-1.5225337,-1.545883,-1.488093,-0.119574256,0.37055045,0.21314175,-0.043790974,-0.4312421,-0.7467083,-0.9558921,-0.83311915,-0.44829565,-0.6396436,-0.6669482,-0.14405912,-0.24507257,-0.5743451,-0.7278656,-0.9481721,-1.0581758,-1.1266184,-1.1639041,-1.0556173,-0.7944493,-0.9521346,-1.1038263,-1.1935605,-1.2926152,-1.2507994,-1.2434821,-1.3266677,-1.3861539,-1.4550133,-1.473838,-1.4869087,-1.4751605,-0.60682225,-0.4534223,-0.6321457,-0.7271121,-0.74045706,-0.7120574,-0.77382123,-0.697043,-0.45202154,-0.57248783,-0.7310999,-0.78753215,-0.8028957,-0.8766365,-0.96151567,-1.0332391,-1.1050143,-1.1352384,-1.1335965,-1.1420841,-1.1521337,-1.1665434,-1.202592,-1.1340867,-1.1673794,-1.2223196,-1.1627802,-0.7490325,0.15322351,-0.59584284,-0.72531396,-0.9845263,-0.99825895,-0.83431137,-0.9311862,-0.99012184,-1.089898,-1.0867264,-0.998986,-1.1406113,-1.1541072,-1.0730633,-1.2241714,-1.2095318,-1.2566913,-1.0399718,-0.9760858,-0.8449997,-1.0866562,-1.1479943,-1.0707692,-0.92237353,-0.65595996,-1.0915934,-1.35505,-1.3387603,-1.2123064,-1.0852399,-1.0581188,-0.963146,-0.9383117,-0.8772392,-1.2555001,-1.2904769,-1.1527296,-1.221952,-1.225774,-1.2138907,-1.2213138,-1.0728558,-1.0733311,-0.8623401,-0.95828867,-1.4470117,-1.4192551,-1.048478,-0.57166034,-0.65656304,-0.4542603,-0.5696701,-0.36335522,-0.38701075,-0.89328337,-1.1603382,-1.2985446,-1.2278444,-1.1456146,-0.7502874,-0.78430533,-0.9339957,-0.47131962,-0.89548504,-1.0201917,-1.1273266,-1.3119702,-1.3073933,-1.1924081,-1.1467191,-1.1059183,-1.0960991,-1.0130692,-1.0345976,-0.9623642,-0.9435452,-0.9152802,-0.8226845,-0.8238065,-0.7578761,-0.5819847,0.05722881,-0.5997204,-0.8567202,-1.1359792,-1.1756182,-1.1949383,-1.1142532,-0.74840295,-0.53661036,-0.5596452,-0.3735559,-0.083132945,-0.25737467,-0.74367654,-1.061957,-1.2099533,-0.93899643,-0.96129024,-1.2134182,-1.2354215,-1.1960107,-1.1626389,-1.0355852,-1.0051119,-1.3227743,-1.146502,-1.1417277,-1.1392105,-1.0509562,-1.1415893,-1.2006181,-1.1265737,-1.1635566,-1.1661038,-1.1806439,-1.2167616,-1.1880928,-1.1997628,-1.2167746,-1.2315176,-1.0992676,-0.92617357,-1.130945,-1.0153636,-1.0716712,-0.2987401,-0.61375177,-0.7367606,-0.30708155
+-0.75719035,-1.0812492,-1.0549006,-1.1258831,-1.1913384,-1.3160495,-1.3166708,-1.3435395,-1.3301744,-1.1456217,-1.1675413,-1.2133011,-1.2660398,-1.3984063,-0.8140711,-0.46428746,-0.6419564,-0.7385862,-0.7224259,-0.67267543,-0.7226554,-0.8723664,-1.0288954,-1.0961688,-1.1619011,-0.9365264,-0.8360533,-0.37058842,-0.5037899,-0.60554266,-0.74766463,-0.59552646,-0.6768477,-0.82117647,-0.93139124,-1.0442518,-0.7634114,-0.7311255,-0.0113564655,-0.09697581,-0.38953584,-0.6961955,-0.89113075,-1.0503855,-1.1771998,-0.7390796,-0.6607028,-0.5780255,-0.70290476,-0.9037076,-1.0763049,-1.2171844,-1.3160547,-1.3870184,-1.4249218,-1.4907472,-1.3652734,-1.1774397,-1.2784387,-1.3819175,-1.4492424,-1.4974847,-1.533289,-1.5522759,-1.5444825,-1.5713583,-1.5320711,-1.4927385,-1.5417734,-1.5049949,-1.5211954,-1.539148,-1.5282859,-1.4556396,-0.9918996,-1.2528423,-1.3929108,-1.4689143,-1.4885843,-1.5288689,-1.5107285,-1.5266936,-1.499835,-1.4800268,-1.45337,-1.4382691,-1.4823285,-1.5166874,-1.336079,-1.2403209,-1.0439234,-0.3886625,0.1899147,0.14303121,-0.3959142,-0.73184896,-0.9769547,-1.1572821,-1.2944157,-1.3618953,-1.4236956,-1.3723862,-1.4411297,-1.4663779,-1.4581684,-1.4902797,-1.5044471,-1.5041351,-1.4873195,-0.59062505,-0.8145224,-1.0659103,-0.9771427,-0.68847966,-0.98010576,-1.2187535,-1.3365564,-1.2984519,-1.3173114,-1.3662994,-1.4693828,-1.3187382,-1.1821824,-1.3132439,-1.2530335,-0.8653047,0.43558246,0.35164416,-0.032407604,-0.2648408,-0.5704439,-0.72540706,-0.812891,-1.0209363,-1.1820651,-1.2562592,-1.3315071,-1.342504,-1.3432739,-1.1165609,-0.913712,-1.0536792,-1.2236509,-1.2861794,-0.95917463,-0.90016997,-1.0207275,-1.1008437,-1.0526335,-1.0141033,-1.1557578,-1.2352471,-1.3362315,-1.3476682,-0.42541748,-0.49110246,-0.5753585,-0.78537583,-1.030691,-1.174659,-1.2235494,-1.2947001,-1.3185966,-1.4073844,-1.3045692,-1.0380051,-1.0277178,-1.0300707,-1.1854522,-1.3312833,-1.3732226,-1.402108,-1.4270734,-1.3087753,-0.58501583,0.14911962,0.24010766,0.062276952,-0.30733934,-0.5976678,-0.8000023,-0.8122896,-0.21225956,-0.4249606,-0.6531919,-0.45132846,-0.49052113,-0.8114506,-0.80269706,-0.9297496,-1.0519067,-1.1532471,-1.1122209,-1.1696892,-1.1526301,-1.1920412,-1.3000041,-1.3021531,-1.322448,-1.3128061,-1.2533753,-1.2838846,-1.3486807,-1.3809613,-1.3878115,-1.4077613,-1.393385,-0.7480972,-0.5532404,-0.7638199,-0.87871206,-0.87243867,-0.8555304,-0.9634836,-1.0043302,-1.0701528,-1.1285526,-1.2056966,-0.9745288,-0.7268001,-0.83772105,-0.9484272,-1.0155046,-1.109444,-1.150449,-1.1686776,-1.1783597,-1.1901094,-1.2090155,-1.2203403,-1.0672963,-1.0789813,-1.1557696,-1.1327671,-0.7770554,0.04572431,-0.6525197,-0.8204612,-1.0162284,-1.015073,-0.88274264,-0.9142109,-0.94645166,-1.0876992,-1.157168,-0.99100995,-1.200089,-1.1977942,-1.0620748,-1.1715364,-1.1899725,-1.2737515,-0.98170304,-1.0306151,-0.80015755,-1.0204047,-1.1253228,-0.98215866,-0.8479113,0.16754723,-0.23947746,-1.0194472,-1.1504786,-1.0860529,-1.0590069,-0.8246859,-0.5952287,-0.6487865,-0.56974226,-0.8457812,-1.0128615,-0.9557706,-1.0281038,-1.0335698,-1.0320803,-1.0218589,-0.7586609,-0.6815918,-0.61067164,-0.1938312,-0.85227853,-0.88657206,-0.4846952,0.34047073,0.14564738,0.19493097,-0.06285519,0.16418186,0.24709919,-0.14330229,-0.2867629,-0.6864107,-0.7892817,-0.707614,-0.34366596,-0.29120618,-0.49439,-0.0562583,-0.23279956,-0.7272916,-0.8259215,-0.92569613,-0.9702265,-0.89584506,-0.8630966,-0.8233614,-0.80041933,-0.6459795,-0.68800855,-0.5618509,-0.5913089,-0.5580107,-0.43782818,-0.31715202,-0.40467823,-0.16299903,0.1801963,0.28194338,-0.0052341223,-0.8235789,-1.0009739,-0.9687588,-0.85101986,-0.47718805,-0.47503263,-0.55452406,-0.37699568,-0.3207187,-0.61502326,-1.0554353,-1.0877211,-1.142041,-0.9395251,-0.73899245,-1.0679667,-1.0927179,-1.0073522,-0.88001096,-0.7003011,-0.73945135,-1.0923812,-0.8813202,-0.8008475,-0.76759,-0.66632426,-0.71573865,-0.8375854,-0.78358644,-0.7913616,-0.73162496,-0.7551693,-0.79168606,-0.7702195,-0.8284888,-0.8533415,-0.856038,-0.82092756,-0.7448977,-0.97129786,-0.909515,-0.99959373,-0.67921066,-0.77892876,-0.86846876,-0.73266256
+-0.3025097,-0.6583798,-0.5396215,-0.48992652,-0.466066,-0.59474134,-0.6623757,-0.65128183,-0.44549853,-0.38530996,-0.4505062,-0.51938903,-0.59564793,-0.65307957,-0.7182823,-0.4061827,-0.41473794,-0.36648315,-0.30035907,-0.25940514,-0.34512842,-0.3828879,-0.41971743,-0.54552615,-0.6929414,-0.7253181,-0.75773597,-0.76589465,-0.6907915,-0.66740406,-0.6439854,-0.53053963,-0.44054157,-0.5461463,-0.57361186,-0.616323,-0.6892282,-0.7389108,-0.13324633,-0.25933462,-0.29382092,-0.41900837,-0.59141314,-0.7003067,-0.7547766,-0.6257938,-0.69085115,-0.6056346,-0.5353316,-0.5857387,-0.7016144,-0.8154225,-0.95579135,-0.9468914,-1.0132245,-1.0840021,-1.0415349,-1.1101443,-1.1066985,-1.1480396,-1.1821169,-1.2032034,-1.2261338,-1.2402333,-1.2619798,-1.2739782,-1.235052,-1.2157375,-1.2588124,-1.2709576,-1.272787,-1.2655228,-1.2721553,-1.137064,-1.0453184,-1.201753,-1.289771,-1.3554554,-1.3339673,-1.3389823,-1.3357284,-1.3191531,-1.310704,-1.2967818,-1.3043561,-1.2817099,-1.2883103,-1.3145661,-1.2859399,-1.1914442,-0.7175728,-0.22247949,0.33742827,0.078524984,-0.12057444,-0.33101588,-0.6022177,-0.86530805,-1.0395038,-1.1382269,-1.1989152,-1.2639011,-1.3033674,-1.3223661,-1.3437977,-1.3242974,-1.3111614,-1.3557453,-1.3626256,-1.126444,-0.84383583,-0.7701844,-0.78698874,-0.9353808,-1.0960495,-1.1760722,-1.1908512,-1.1692374,-1.1743062,-1.2100011,-1.2534294,-0.97634006,-0.68561715,-0.80181617,-0.7820107,-0.3870516,0.31232166,0.4316504,0.16627848,0.0047374293,-0.19312504,-0.3611413,-0.5452729,-0.7478533,-0.9283632,-1.0346456,-1.0908868,-1.1180824,-1.0677407,-0.9062638,-0.99852014,-0.9811231,-0.98059976,-0.94368684,0.047107898,0.19731653,-0.03861747,-0.24111438,-0.3588205,-0.2849124,-0.3893112,-0.52816474,-0.72956467,-0.8627013,-0.40236655,-0.2848905,-0.4384613,-0.59251046,-0.8181765,-0.9608952,-1.0400141,-1.1413808,-1.1733253,-1.2096477,-1.1445485,-0.9618026,-0.85709727,-0.6811996,-0.9057491,-1.0469013,-1.1438663,-1.1930077,-1.2397714,-0.80755246,-0.4230441,0.1579409,0.0252674,-0.035992034,-0.35020852,-0.50968957,-0.6844877,-0.7111928,-0.37597972,-0.5341487,-0.66996527,-0.7111979,-0.77643394,-0.91204774,-0.98912644,-1.0212444,-1.0613841,-1.1496317,-0.95932055,-1.0269244,-1.086014,-1.0948657,-1.1598516,-1.1574341,-1.177094,-1.2224165,-1.2378485,-1.1552348,-1.1851908,-1.2034119,-1.250851,-1.2589291,-1.2070482,-1.0086751,-0.9610113,-1.0049698,-1.0658314,-1.064705,-1.0872428,-1.1144832,-1.1285214,-1.1198716,-1.1159413,-0.92049026,0.25521952,0.015256323,-0.072894536,-0.18814346,-0.28498292,-0.4211843,-0.50202495,-0.5809729,-0.6310817,-0.6538577,-0.7228758,-0.75178266,-0.57700664,-0.8353192,-0.77541244,-0.6685253,0.06637823,0.15184441,-0.371493,-0.5789266,-0.64942384,-0.63642406,-0.55540997,-0.8017572,-0.92612433,-0.97320056,-0.87149245,-0.719149,-0.91052485,-0.82512355,-0.7405534,-0.7241014,-0.7640532,-0.68999004,-0.45591873,-0.4767987,-0.0605058,-0.24992615,-0.4093126,-0.07885464,0.11613449,0.41262457,0.10260946,-0.5529903,-0.45256364,-0.4453671,-0.3905495,-0.07169076,0.21380861,0.33226672,-0.025976859,-0.3191117,-0.26138616,-0.23417255,-0.2577315,-0.26306415,-0.14974076,-0.052766375,0.20570174,0.25902653,0.14750412,0.5416847,-0.019820563,-0.23164353,0.16841593,0.7648151,0.47976577,0.44049585,0.38223365,0.48526257,0.6192357,0.6585588,0.3947586,0.07533495,-0.055629797,-0.094212525,0.13707867,0.28454703,-0.17037186,0.24267218,0.021997504,-0.18131918,-0.21409965,-0.18930134,-0.19436169,-0.14891282,-0.12494337,-0.14421025,-0.11426466,-0.045361884,0.006602265,0.3446637,0.11714064,0.1683223,0.65891147,0.75083864,0.51997477,0.7528064,0.8497995,0.66089916,0.40472883,-0.1686311,-0.44835007,-0.61932075,-0.64012444,-0.35185838,-0.31115353,-0.5061137,-0.4387759,-0.32564014,-0.63989425,-0.94092953,-1.0201979,-0.9443451,-0.83244497,-0.56886595,-0.9008848,-0.8486855,-0.7741143,-0.6835029,-0.5763927,-0.7073803,-0.919127,-0.79963434,-0.63748145,-0.57815784,-0.44182742,-0.50774825,-0.6062288,-0.615718,-0.6246691,-0.52434874,-0.5247661,-0.44735175,-0.31724447,-0.28708535,-0.28538427,-0.2846959,-0.35350123,-0.39777145,-0.587824,-0.48943758,-0.5371056,-0.3852729,-0.35714915,-0.4872653,-0.49433506
+-1.5083108,-1.7791932,-1.8554811,-1.8616929,-1.8810413,-1.912771,-1.8741307,-1.5679377,-0.88751745,-1.3345253,-1.4138355,-1.4427977,-1.602778,-1.7377945,-1.5333529,-0.36568928,-0.5494138,-0.87271065,-1.3650857,-1.6126319,-1.7001579,-1.7639086,-1.8412979,-1.8764663,-1.8959979,-1.707166,-1.7637739,-1.8186605,-1.4846323,-0.8131646,0.09978847,-0.87940764,-1.3717294,-1.6312671,-1.725817,-1.8039997,-1.6460159,-1.7580459,-1.809015,-1.8318487,-1.8474908,-1.851304,-1.8608313,-1.7747673,-1.8047148,-1.7800744,-1.312269,-0.49339515,-1.0489838,-1.5045638,-1.7549626,-1.859316,-1.8923154,-1.9256692,-1.9182186,-1.9023952,-1.9084678,-1.8909713,-1.8892448,-1.8886535,-1.8764923,-1.8694389,-1.8642387,-1.8676963,-1.8570929,-1.840363,-1.84058,-1.8572505,-1.82044,-1.8035786,-1.8421504,-1.8314198,-1.8198094,-1.8473501,-1.8535413,-1.8831377,-1.8860996,-1.8812263,-1.874071,-1.8441606,-1.8088567,-1.7853668,-1.8091785,-1.8026481,-1.7749153,-1.7685733,-1.7430822,-1.7267188,-1.7190084,-1.6879735,-1.3075376,-0.6775477,-0.6209304,-1.1885741,-1.37216,-1.6114849,-1.7697462,-1.7703328,-1.7834593,-1.8097245,-1.8436211,-1.8744881,-1.8841304,-1.8848519,-1.8687174,-1.8467155,-1.8577024,-1.8068106,-1.5976124,-1.0956788,-0.8486434,-0.8802628,-1.2120879,-1.406873,-1.4627994,-1.4157038,-1.4334074,-1.5043244,-1.6563642,-1.6408874,-1.5917809,-1.5208622,-1.1233804,-1.1056739,-0.5895313,-0.49270976,-0.67187345,-0.3604127,-0.6551454,-1.0060631,-1.2862194,-1.4595654,-1.5650516,-1.6438732,-1.7185835,-1.7169485,-1.736391,-1.6945138,-1.6355991,-1.3723252,-1.4130455,-1.5235825,-1.5089387,-0.99716425,-0.9987786,-0.5544951,-1.1590484,-1.2888525,-1.2216439,-1.0937644,-1.403726,-1.5446124,-1.5810909,-1.605973,-1.1237656,-0.817588,-1.2376463,-1.5508494,-1.6609206,-1.6274633,-1.6300658,-1.6980003,-1.6963601,-1.723172,-1.3902917,-1.234714,-1.3684914,-1.5366819,-1.6353188,-1.6714871,-1.7056501,-1.7287447,-1.6841314,-0.8835943,-0.83768594,-0.66288453,-0.9289069,-1.277171,-1.4660908,-1.5474298,-1.480624,-0.58983564,-0.42341125,-0.75096714,-1.0769873,-1.17151,-1.3923676,-1.5604045,-1.6031185,-1.6200353,-1.5516381,-0.7869538,-0.8803276,-1.2264721,-1.4004343,-1.5159818,-1.5799043,-1.6408488,-1.6945698,-1.718196,-1.65919,-1.6207383,-1.652442,-1.6820949,-1.6867946,-1.656437,-1.6493679,-1.0614468,-0.99481106,-1.2693086,-1.4583218,-1.500787,-1.5385237,-1.5836914,-1.5628655,-1.5476959,-1.5153112,-0.8419846,-0.037199624,-0.41461635,-0.8326012,-1.0938091,-1.2624587,-1.3760536,-1.46525,-1.517523,-1.5329692,-1.5615981,-1.5904739,-1.6629665,-1.6804354,-1.5916536,-1.5666656,-1.7343965,-0.6096735,-0.34847668,-0.7690619,-1.2080648,-1.4129444,-1.4613725,-1.5286927,-1.12152,-1.0474409,-1.6199576,-1.4186339,-1.3178835,-1.3704407,-1.4623592,-1.4470203,-1.46966,-1.5094476,-1.4763975,-1.4788942,-1.562303,-1.5944663,-1.6774971,-1.6651007,-1.690311,-1.7229967,-0.79367745,-0.19306105,-1.4768617,-1.5918232,-1.572864,-1.4729497,-0.6978202,-0.38079837,-0.6999174,-0.9582988,-1.3759933,-1.4206874,-1.4939388,-1.5587046,-1.5576162,-1.3364264,-0.9844959,-1.231289,-1.3171206,-1.3025961,-0.69467354,-0.92735815,-1.622812,-1.1535144,-0.8454224,-0.83862984,-0.9400039,-1.0840266,-1.1412184,-1.080165,-0.63284314,-0.6179056,-0.81090915,-1.1695924,-1.196279,-1.0055346,-0.5690824,-1.4036821,-0.83386135,-0.6502758,-1.5336056,-1.4306912,-1.5192665,-1.5179528,-1.3873978,-1.3717575,-1.4209759,-1.4691935,-1.5152311,-1.5561838,-1.6126744,-1.6536355,-1.7107248,-1.5379508,-1.5486035,-1.5818939,-1.6133159,-1.6127264,-1.5653801,-0.8366792,-0.6697658,-1.2767377,-1.4737179,-1.467973,-1.5022185,-1.297862,-0.87338233,-1.1718473,-1.2682936,-1.351967,-1.5265304,-1.5963644,-1.5713402,-1.6647339,-0.07940232,-1.2464535,-1.4891977,-1.5170105,-1.6405172,-1.7259171,-1.6345036,-1.6937511,-1.692362,-1.7428924,-1.7819713,-1.7914621,-1.7869172,-1.805382,-1.8034134,-1.8030059,-1.8087561,-1.782946,-1.7863045,-1.7888963,-1.7777443,-1.7742647,-1.7536144,-1.4194115,-1.1562109,-1.5500703,-1.0818348,-1.1688288,-1.1714964,-1.3774791,-1.6664598,-1.186672
+-0.9332645,-1.1159042,-1.2133366,-1.3355329,-1.4784378,-1.6154857,-1.651774,-0.66522443,0.013428755,-0.29484612,-0.21834975,-0.1964693,-0.27688354,-0.6772348,-0.9531832,-0.433923,-0.20615771,-0.33559245,-0.72283226,-1.0873147,-1.3528633,-1.4892638,-1.5227511,-1.5899348,-1.627651,-1.5975146,-1.6349889,-1.6603591,-1.2872615,-0.15509555,0.40742648,0.27028763,0.26196656,-0.21512827,-0.5903864,-0.9780463,-1.2438431,-1.2620552,-1.4063972,-1.5510334,-1.5928764,-1.6031919,-1.6500108,-1.5945513,-1.5088838,-1.6246127,-0.80844396,0.2584446,-0.11429783,-0.60422224,-1.0872409,-1.3797406,-1.5263973,-1.6098368,-1.6344028,-1.6491151,-1.6468635,-1.6604594,-1.6971741,-1.6959138,-1.6647956,-1.6539114,-1.6554052,-1.6960895,-1.7039798,-1.6688001,-1.6958562,-1.7077556,-1.691509,-1.648309,-1.6153007,-1.5131493,-1.577729,-1.6703238,-1.6858877,-1.7141211,-1.7099184,-1.7174339,-1.7440897,-1.7445533,-1.6964178,-1.6441363,-1.6476763,-1.6404009,-1.3621336,-1.3748076,-0.80088866,-0.755944,-1.1254447,-1.107703,-0.7076838,-0.101015694,-0.13748786,-0.53651464,-0.94872975,-1.2285311,-1.4490755,-1.513576,-1.5430613,-1.5821538,-1.5959466,-1.6249803,-1.6589833,-1.6724812,-1.6760337,-1.6867499,-1.6562448,-1.6319388,-1.3473089,-1.0054796,-0.4563635,-0.1246429,-0.62930727,-0.93305933,-0.94663,-0.684907,-0.90459156,-1.0301118,-1.2392024,-1.3584428,-1.3318015,-1.2794555,-1.0615106,-0.9524989,-0.5364307,-0.018081792,0.37902677,0.22289816,0.26198998,0.2687151,-0.052787237,-0.18371004,-0.055468492,-0.39174008,-0.7251285,-1.036051,-1.2939935,-1.2484115,-0.6604427,-0.64189255,-0.64182705,-0.91394496,-1.0688624,-0.80845,-0.7280885,-0.71999747,-0.98062277,-1.0315732,-0.8643561,-0.85865283,-0.8422077,-0.49184096,-0.683576,-0.7657586,-0.5280207,-0.7364861,-1.0713034,-1.3660337,-1.4777786,-1.263006,-0.22739518,-0.7834952,-1.1602993,-1.1111264,-0.8540964,-0.8922338,-0.9546813,-1.1629921,-1.3819892,-1.5332586,-1.602488,-1.6295162,-1.6371994,-1.5448861,-1.5519211,-1.4633067,-1.5178412,-1.5795962,-1.5990096,-1.5804837,-1.5261067,-1.0284145,-0.5429971,-0.59495234,-0.79735655,-0.7474662,-1.0053508,-1.2708031,-1.4181023,-1.5134913,-1.0927469,-0.06138704,-0.039255165,-0.20787537,-0.6016398,-0.95037127,-1.2332397,-1.379104,-1.4580601,-1.4994612,-1.5235857,-1.5262802,-1.510184,-1.533301,-1.5544868,-1.543474,-1.5416014,-1.3178909,-1.3124685,-1.4449192,-1.4923089,-1.4972258,-1.532968,-1.4734664,-1.4768577,-1.4865198,-1.4937601,-0.050652675,0.501154,0.0935111,-0.16442397,-0.3492234,-0.5542752,-0.7424892,-0.8291299,-0.9058764,-0.97147346,-1.0485224,-1.1208476,-1.1759365,-1.189445,-1.3638054,-1.296227,-1.2716047,-0.00044775754,0.15320888,-0.31910565,-0.61444783,-0.8253296,-0.72795045,-0.60790026,-0.88571477,-1.1021409,-1.3220747,-1.2673402,-1.0799975,-1.119843,-1.286429,-1.2192783,-1.1305403,-1.2082025,-1.2251756,-1.1596187,-1.1248306,-1.0677739,-1.0405806,-1.0004556,-0.96622217,-0.95552194,-0.61271346,-0.2525073,-1.2742945,-1.246076,-1.1817156,-0.9512063,-0.19466102,0.0526862,-0.3518137,-0.7154969,-1.196545,-1.0776027,-1.092829,-1.0848887,-1.0380414,-0.72940344,-0.66616786,-0.84097266,-0.9067868,-0.80058,-0.729946,-0.74474275,-1.2548866,-0.80225503,-0.5823637,-0.6216736,-0.78784496,-0.8706095,-0.8427347,-0.6075331,-0.08284829,-0.015699737,-0.61715084,-0.8358829,-0.8944978,-0.6531904,-0.74478793,-1.1031673,-0.6329193,-0.68249834,-1.1223276,-1.2041849,-1.2002611,-1.2083752,-1.1267784,-1.0057657,-0.9757161,-0.94464564,-0.93459916,-0.8929245,-0.93599105,-0.8893149,-0.8190248,-0.83557427,-0.71792406,-0.5877845,-0.59952664,-0.66823524,-0.4785229,0.063564636,0.1291687,-0.66418165,-0.90337235,-0.8114085,-0.47640276,-0.5503948,-0.77104527,-0.65198183,-0.5677124,-0.8017136,-1.1094785,-1.206938,-1.112972,-1.0250671,-0.5562141,-1.0260844,-1.155545,-1.0974158,-0.94257295,-0.9107783,-0.991163,-1.1444091,-1.1369363,-1.1649784,-1.2313602,-1.2838066,-1.3526411,-1.456368,-1.5111561,-1.5357888,-1.5386434,-1.5486474,-1.542511,-1.5476468,-1.5587167,-1.5498785,-1.5479803,-1.3733743,-1.2630486,-1.5130635,-1.479711,-1.5341474,-1.339812,-1.0546672,-1.3211577,-1.0868065
+-0.5516077,-0.60608256,-0.7811604,-0.87941575,-1.0082912,-1.1204507,-1.0976249,-0.9445716,-0.576359,-0.7411289,-0.4922725,-0.23107424,-0.17286602,-0.55755955,-0.82683027,-0.8098419,-0.8215432,-0.9784192,-1.1270754,-1.1989229,-1.256285,-1.2750196,-1.3050201,-1.3341155,-1.3785645,-1.3820614,-1.3960798,-1.4320223,-1.4142365,-1.3893708,-1.4100741,-1.3465233,-1.3931781,-1.4116297,-1.4147232,-1.4178975,-1.4336684,-1.4669785,-1.4689583,-1.4873222,-1.4892677,-1.4751564,-1.4693131,-1.4171125,-1.4091245,-1.4710144,-1.2215917,-0.035784118,-0.1566168,-0.5162202,-0.89535594,-1.1002165,-1.2267172,-1.2981026,-1.3375909,-1.3557407,-1.3737501,-1.4034877,-1.4390795,-1.4223518,-1.3944058,-1.3377663,-1.3393501,-1.3847878,-1.3854088,-1.3729814,-1.3685355,-1.3845724,-1.3902155,-1.3968439,-1.1859797,-1.1793486,-1.2953261,-1.3698126,-1.3988838,-1.4417439,-1.4560198,-1.4625504,-1.4583685,-1.4196815,-1.368969,-1.3348563,-1.3654134,-1.3418537,-1.2464824,-0.98590255,-0.90243864,-0.54694337,-0.6560005,-0.6253186,-0.58776593,-0.16647822,0.039928846,-0.21024615,-0.44823867,-0.66314775,-0.84727436,-0.85795474,-0.6721629,-0.5912157,-0.69263977,-0.89736766,-1.0321451,-1.090361,-1.1140728,-1.1206636,-1.1289476,-1.0361271,-0.77878153,-0.6321967,-0.5397318,-0.44822216,-0.14266434,-0.21164906,-0.41111463,-0.5659118,-0.57247025,-0.45179093,-0.5530027,-0.106112875,0.17097968,-0.051224343,-0.16619983,0.003424123,-0.0015159696,-0.021237977,0.16483712,0.03337627,-0.014762111,-0.09854411,0.18655688,0.5514446,0.40533948,0.21091372,-0.0307829,-0.021816455,-0.102609195,0.046345115,0.07100337,-0.20466614,-0.42148966,-0.47677928,-0.328094,-0.15430835,-0.23680288,-0.44260156,-0.58340615,-0.5290475,-0.4033395,-0.26430866,-0.28607732,-0.37869436,-0.2889899,-0.1832884,-0.10050043,-0.26073393,-0.4598741,-0.71223086,-0.83184135,0.2827086,1.3388761,0.41394144,0.34871405,0.07898643,-0.06716149,-0.19263136,-0.30183896,-0.36153626,-0.47730106,-0.59550476,-0.70216525,-0.7901684,-0.8829269,-0.88745445,-0.90193075,-0.9130871,-0.85488003,-0.87223244,-0.8665067,-0.707367,-0.66769254,-0.1789709,1.0674942,0.55662507,0.4404288,0.226309,0.08957053,-0.1120841,-0.27227753,-0.37746456,-0.39232042,-0.14622286,0.016212322,-0.21426228,-0.36364782,-0.4977938,-0.6138896,-0.7084699,-0.7655157,-0.809749,-0.84585756,-0.83819664,-0.8230648,-0.8202995,-0.8369392,-0.85141265,-0.85476285,-0.8729281,-0.82965374,-0.8172059,-0.8488044,-0.8799062,-0.87922543,-0.88416207,-0.8872886,-0.6437525,-0.43274122,0.35712892,0.63272816,0.39059138,0.24891028,0.10456151,-0.103805594,-0.2611816,-0.29243174,-0.33500275,-0.35919628,-0.41258246,-0.4539969,-0.4973619,-0.5060657,-0.6839998,-0.69673544,-0.6056792,-0.42756408,0.122264415,-0.2575373,-0.40020046,-0.5219811,-0.43969488,-0.27731687,-0.1845336,-0.28306812,-0.74152374,-0.7638284,-0.6044563,-0.46231306,-0.6932779,-0.72089183,-0.67668605,-0.6556338,-0.70022416,-0.73210055,-0.6626481,-0.5164728,-0.4290383,-0.39869776,-0.39835984,-0.40803784,-0.3430193,0.04869557,-0.63055944,-0.60555947,-0.5174348,-0.14859772,0.519026,0.3722908,0.31052244,-0.0011205524,-0.3357441,-0.16523293,-0.22961274,-0.09423288,0.0069866776,-0.15210542,0.050412178,-0.08853131,-0.35039127,-0.03041815,-0.16398838,-0.056213535,-0.5761891,-0.2867203,-0.014858559,-0.0077382177,-0.25969335,-0.4530053,-0.45639008,-0.25290975,0.24015802,0.0692489,-0.12891456,-0.2913187,-0.3523028,-0.25011277,-0.095822535,-0.59675545,-0.17747903,-0.26165915,-0.6412411,-0.7806697,-0.74946946,-0.7704861,-0.72908235,-0.68605447,-0.62334085,-0.5716435,-0.5609496,-0.5372195,-0.5198189,-0.55855584,-0.45813942,-0.4780218,-0.24654901,-0.006477654,0.025895603,-0.020637773,-0.03650894,0.37556332,0.5073847,-0.11461606,-0.41078293,-0.29460037,0.037208803,-0.27413243,-0.19243875,0.117207035,0.18025286,0.06896132,-0.50147533,-0.6579567,-0.5996373,-0.5618745,-0.3693683,-0.5639826,-0.692062,-0.71037537,-0.46490604,-0.36686528,-0.37243095,-0.6166882,-0.58773565,-0.5396296,-0.5624154,-0.60184175,-0.6543279,-0.70550525,-0.751486,-0.7756569,-0.81357294,-0.83338726,-0.84638053,-0.8709594,-0.88202274,-0.87324345,-0.8990877,-0.85562164,-0.7196517,-0.812317,-0.88776344,-0.9360597,-0.7579038,-0.52080244,-0.6969489,-0.68959355
+-1.682989,-1.6377598,-1.6838135,-1.7409451,-1.7331704,-1.7406491,-1.7662445,-1.5861208,-1.5885165,-1.6276964,-1.1334101,-1.0055156,-1.2659503,-1.5531003,-1.6238805,-1.6662543,-1.6294671,-1.653157,-1.7005498,-1.7199306,-1.7222219,-1.6783669,-1.66061,-1.6784893,-1.6899697,-1.7122176,-1.7332494,-1.7496824,-1.7291055,-1.718415,-1.7341223,-1.7136816,-1.7405938,-1.7294331,-1.6993225,-1.6775923,-1.6992939,-1.7253642,-1.7161292,-1.7232676,-1.7156363,-1.721566,-1.6936815,-1.6518643,-1.5961014,-1.7058604,-1.6375663,-1.4248936,-1.5660713,-1.6569192,-1.7055622,-1.7087489,-1.7170094,-1.7218722,-1.7090272,-1.7057849,-1.733732,-1.7396939,-1.6885362,-1.6435008,-1.6799054,-1.6895738,-1.668993,-1.7130189,-1.6974486,-1.6197903,-1.5766066,-1.666415,-1.6653513,-1.6730494,-1.0687467,-0.98607147,-0.9971788,-1.4370356,-1.5859597,-1.6494975,-1.6625262,-1.6714369,-1.67946,-1.6694827,-1.5972039,-1.5548208,-1.6176586,-1.6004783,-1.5347986,-1.5727026,-1.5664647,-1.5081699,-1.4962851,-1.0795444,-0.9384451,-0.66004825,-0.52549446,-1.1240263,-1.4399116,-1.5310347,-1.5614042,-1.531971,-1.161771,-1.325529,-1.5033247,-1.5699527,-1.5859098,-1.5891875,-1.5790037,-1.5907958,-1.5803263,-1.5716817,-0.9621278,-1.0200942,-1.1993976,-1.3265319,-1.231613,-1.4025842,-1.4870759,-0.9485235,-1.1163197,-0.9236783,-0.7722319,-1.1548591,-1.3092909,-1.3368745,-1.2328722,-0.84826624,-0.6545742,-0.73436517,-0.9087554,-0.9951223,-0.86661017,-0.97915506,-0.98694634,-1.0667659,-0.57358235,-0.62047267,-0.77966285,-0.2538536,-0.7240071,-1.0869699,-1.2616111,-1.3689544,-1.4362752,-1.4659889,-0.81223774,-0.43218786,-0.95386577,-1.2540562,-1.3861477,-1.3268034,-1.0753821,-0.9375787,-1.1823936,-1.2173324,-1.2415686,-1.1160196,-0.48872858,-0.44216794,-0.98960733,-1.3041754,-1.2301512,-0.5652802,-0.27277848,-0.78000546,-1.0323467,-1.1513469,-1.3269618,-1.386953,-1.4134896,-1.4287465,-1.5027434,-1.5291545,-1.5542742,-1.5715265,-1.5588474,-1.5025514,-1.5036523,-1.5246859,-1.508312,-1.5358768,-1.0979593,-0.71506673,-1.0247741,-1.1179354,-0.7397102,-0.9327748,-1.2200158,-1.2632898,-1.4360445,-1.4920999,-1.514632,-1.4999715,-1.4357412,-1.0405731,-0.62690294,-0.94619083,-1.2627726,-1.4341583,-1.5015805,-1.5265553,-1.5325655,-1.5387156,-1.5399595,-1.5350121,-1.5105524,-1.4905758,-1.5052878,-1.5082629,-1.5118046,-1.4801879,-1.479063,-1.4730122,-1.4719963,-1.4699734,-1.4947037,-1.4932454,-1.4822719,-1.4047728,-1.3802059,-1.3741094,-1.434355,-1.4495012,-1.4617367,-1.4419667,-1.4329755,-1.4091666,-1.4129385,-1.4158089,-1.4246248,-1.4403452,-1.4477358,-1.4617321,-1.4460187,-1.457467,-1.4345398,-1.4369385,-1.4144996,-1.4187064,-1.4289504,-1.4203742,-1.4219086,-1.3927531,-1.382641,-1.3648993,-1.3669155,-1.4892168,-1.4728401,-1.443222,-0.28696698,-0.13698211,-0.5766163,-0.6861124,-0.75785965,-0.8312527,-0.97398055,-1.0557365,-1.1283298,-1.1910322,-1.237722,-1.270374,-1.3231719,-1.3233871,-0.99554634,-1.2116172,-1.1435423,-1.2464167,-1.2531288,-0.3348363,0.028543688,-0.29224017,-0.21791866,-0.6098341,-0.70998704,-0.8270814,-0.80968136,-0.32011956,-0.19686389,0.088069305,-0.091920175,-0.4093083,-0.5675115,-0.77847123,-0.89006007,-1.0523751,-1.0896177,-1.1608167,-1.2388631,-1.2966353,-1.3344204,-1.3481134,-1.1146975,-0.066319756,0.024137385,-0.24637586,-0.1778385,-0.37528628,-0.48365378,0.007850729,-0.17007387,-0.37387365,-0.49237055,-0.64485395,-1.0421047,-1.143321,-1.2669504,-1.2813835,-1.2932739,-1.3128083,-1.3492073,-1.3958611,-1.4297929,-1.458503,-1.4876828,-1.5190927,-1.5313349,-1.5300412,-1.5305281,-1.5467792,-1.5502746,-1.2424603,-0.13547209,-0.11727352,-0.44962054,-0.7790241,-0.9235717,-0.9971168,-0.77842414,-0.6465918,-1.0043279,-1.1973957,-1.3453884,-1.4638014,-1.5229151,-1.4951694,-1.500804,-1.4897672,-1.51305,-1.5317957,-1.5177221,-1.513622,-1.5228074,-1.5352368,-1.5599273,-1.5577979,-1.5781112,-1.56176,-1.5656586,-1.5527291,-1.562007,-1.5673082,-1.5838236,-1.585907,-1.5737194,-1.5845215,-1.5776916,-1.5751427,-1.5765955,-1.5862895,-1.3827374,-1.5509131,-1.6133981,-1.6294158,-1.6199691,-1.3038089,-1.3313451,-1.5689135,-1.6413089
+-1.5355709,-1.7135429,-1.6580563,-1.7254848,-1.7296187,-1.7032322,-1.6918337,-1.601196,-1.6576049,-1.7299693,-1.6893812,-1.745003,-1.7232156,-1.7664073,-1.8045462,-1.810305,-1.8038704,-1.8009492,-1.8047887,-1.8087105,-1.8000693,-1.7829297,-1.7724855,-1.8056108,-1.8213782,-1.8357848,-1.8556396,-1.856753,-1.8306248,-1.8475074,-1.8481803,-1.8220413,-1.8286028,-1.8009539,-1.7662228,-1.7892727,-1.7657043,-1.8145978,-1.823109,-1.8381032,-1.8263103,-1.830251,-1.7990396,-1.7613857,-1.7849913,-1.8247935,-1.6033028,-1.6518333,-1.6563904,-1.7834735,-1.82744,-1.8304456,-1.838058,-1.8297818,-1.8081026,-1.8008287,-1.8631198,-1.8497713,-1.8047395,-1.7778835,-1.7458781,-1.7591202,-1.7892737,-1.767503,-1.7063508,-1.6590724,-1.6607566,-1.6832156,-0.993314,-0.9625906,-0.55175847,-0.9396522,-0.9597124,-1.328015,-1.5952837,-1.6808673,-1.7128817,-1.7303407,-1.6882703,-1.6206865,-1.6087669,-1.6044333,-1.6255194,-1.6245071,-1.3842653,-1.1775535,-1.0621009,-1.13684,-1.2205533,-1.1517112,-0.9039301,-0.41570556,-0.55552024,-0.9057082,-1.1452496,-1.3120686,-1.2866045,-1.3232996,-0.93505645,-1.0617831,-1.178219,-1.4413826,-1.550329,-1.5431744,-1.4429903,-1.4906597,-1.36129,-0.8549691,-0.49365622,-0.56486064,-0.9505813,-1.2034194,-1.1827824,-1.0863732,-1.3219764,-1.255374,-0.6928329,-0.46978188,-0.71827173,-0.98233104,-1.1425334,-0.47682023,-0.55028665,-0.51001793,-0.42521292,-0.670235,-0.8500581,-0.958426,-1.0709233,-0.63838017,-0.09805209,-0.42591947,-0.32342693,-0.6073307,-0.2828591,-0.2764657,-0.60008657,-0.90670264,-1.1133425,-1.2130466,-0.997731,-0.6873259,-0.8366551,-1.0173999,-0.6859055,-0.40901542,-0.70909727,-0.9478388,-1.112409,-1.195411,-1.2820983,-1.3332734,-1.1989812,-0.86241543,-1.0929201,-0.9784312,-1.1869855,-1.3414445,-1.1928062,0.10598583,-0.3939946,-0.6218796,-0.83462346,-0.90654147,-0.80281365,-0.8676504,-1.0099795,-1.1737797,-1.3045895,-1.4068147,-1.4470468,-1.444205,-1.4228833,-1.4037933,-1.3103759,-1.4190514,-1.4985967,-1.3033572,-0.21881485,-0.2220031,-0.6298375,-0.7966128,-0.8661469,-0.73692805,-0.99577427,-1.1295499,-1.3266686,-1.4609287,-1.4884688,-1.467329,-1.3941848,-1.2435708,-1.3258412,-1.3832512,-1.4298484,-1.4784575,-1.4957192,-1.5225168,-1.5102392,-1.5178862,-1.532654,-1.5117166,-1.4778333,-1.4655044,-1.484062,-1.4650931,-1.4548471,-1.4470999,-1.4140911,-1.4218562,-1.4331999,-1.4438288,-1.4441519,-1.4485464,-1.4789425,-1.3714333,-1.3652365,-1.3799284,-1.4075387,-1.4091411,-1.4023948,-1.410963,-1.4248266,-1.4339969,-1.4534785,-1.4331163,-1.4432535,-1.4449849,-1.4213774,-1.4742651,-1.5360092,-1.4171736,-1.4195602,-1.4444795,-1.5096536,-1.3141384,-1.342689,-1.4023886,-1.4000871,-1.4142734,-1.4891164,-1.2882947,-1.3450881,-1.3203452,-1.3872455,-1.4615076,-0.22999355,-0.31363618,-0.62888694,-0.7595577,-0.87009436,-0.9817991,-1.0388689,-1.110634,-1.1865282,-1.2703884,-1.3135124,-1.3117801,-1.3338454,-1.4075735,-1.3237042,-1.3444965,-1.3664832,-1.382591,-1.3120692,-0.030496128,-0.2288501,-0.42867643,-0.39541182,-0.6454357,-0.70908403,-0.7969068,-0.8414171,-0.6496296,-0.8444127,-0.5626874,-0.45679873,-0.7761424,-0.87583447,-0.9730873,-1.0016346,-1.1162122,-1.1262302,-1.2067356,-1.2760091,-1.3150688,-1.3579713,-1.3943115,-1.2231905,-0.57699543,-0.74076474,-0.87545943,-0.8410746,-0.90382516,-0.8987042,-0.10986627,-0.3772534,-0.7201908,-0.73894715,-0.8780302,-1.15273,-1.1635351,-1.1915648,-1.22825,-1.219454,-1.1615863,-1.1679183,-1.2250597,-1.2557365,-1.3225003,-1.3579819,-1.4031682,-1.4519327,-1.4428525,-1.4281211,-1.5099142,-1.5331869,-1.4885204,-1.2004218,-0.98058414,-1.0850571,-1.2278577,-1.261985,-1.3650173,-0.6662867,-0.5512774,-0.91326094,-1.1254572,-1.2517647,-1.3631369,-1.5037894,-1.5271518,-1.4977612,-1.5836315,-1.5460218,-1.5964731,-1.592402,-1.631643,-1.6404068,-1.608293,-1.6519973,-1.6493698,-1.6667234,-1.64385,-1.6340619,-1.6459287,-1.646234,-1.6669798,-1.6866366,-1.68522,-1.6793593,-1.6855524,-1.6749464,-1.6971285,-1.7102872,-1.7312063,-1.7342976,-1.7465146,-1.7731915,-1.7939994,-1.7935742,-1.7695293,-1.7696095,-1.8191408,-1.7798471
+-0.8499248,-1.0721807,-1.1281071,-1.2643173,-1.352796,-1.3907665,-1.374971,-1.1694968,-1.3044264,-1.3354089,-1.374768,-1.4279764,-1.4333804,-1.4824872,-1.5131258,-1.5570946,-1.5774969,-1.5632807,-1.5594051,-1.5588666,-1.5576848,-1.5252736,-1.5280218,-1.5474088,-1.5671244,-1.600723,-1.6313542,-1.6288557,-1.5940142,-1.6223444,-1.6145298,-1.5937799,-1.6072683,-1.575784,-1.5530999,-1.5003734,-1.5005836,-1.5438772,-1.543154,-1.5597129,-1.5397313,-1.5449162,-1.5375375,-1.5118942,-1.5473707,-1.5650215,-1.5920814,-1.6028295,-1.6000319,-1.6078395,-1.6018838,-1.6086717,-1.6167126,-1.5887879,-1.5617483,-1.5589894,-1.6116788,-1.5937773,-1.5502547,-1.4526291,-1.2419757,-0.99541616,-1.1388913,-1.3946475,-1.4307526,-1.3851602,-1.346375,-1.4198277,-1.2018143,-0.4028412,-0.4931615,-0.5383355,-0.63440835,-0.89056295,-1.089004,-1.218075,-1.2766387,-1.3010576,-1.2888153,-1.2647102,-1.2862852,-1.2866741,-1.0178165,-0.8493327,-0.67622566,-0.660079,-0.30507445,-0.21223721,-0.24806574,-0.069600604,-0.10029446,-0.29263443,-0.087290816,-0.27363974,-0.3430494,0.13019481,-0.17203462,-0.2650029,-0.2289376,-0.16476461,-0.03249394,-0.32332674,-0.2949565,0.036280207,0.1566048,-0.16589925,-0.1670442,0.085998625,-0.04146146,-0.040247865,-0.13484806,-0.1959512,-0.35430276,-0.06411704,-0.08464261,-0.04117783,0.20208564,0.09798022,0.075563155,0.06482864,0.1165137,0.07017066,0.1317372,0.15907937,0.2090027,0.017985709,-0.111299686,-0.21076483,-0.34999678,0.0013093427,0.34303936,0.043552235,0.14882603,0.33489907,0.24271825,0.4330587,0.21810406,0.044115365,-0.14801347,0.0013297126,0.088364646,0.2098504,0.10094112,0.09721456,0.19366238,0.051159896,0.15423623,0.024810575,-0.065517984,-0.09878316,-0.1715886,-0.09702303,0.0150908455,-0.13817543,-0.2390489,-0.3234148,-0.3956471,-0.3939926,0.15593907,0.4115615,0.20814636,0.066346206,-0.07929183,-0.085927375,0.30771533,0.096860744,0.0230209,-0.13773781,-0.23775244,-0.3533777,-0.47896338,-0.43908483,-0.36076456,-0.41417897,-0.43773603,-0.4221446,-0.4911219,-0.44533682,0.12936185,0.14702448,0.0065924227,-0.1410313,-0.11178174,-0.15126449,-0.28820038,-0.3657744,-0.33938807,-0.40796542,-0.5151904,-0.5564064,-0.49337828,-0.59831345,-0.6808117,-0.7308434,-0.7740256,-0.8210175,-0.8581681,-0.91907513,-0.933411,-0.9541044,-0.9526688,-0.9605155,-0.9621699,-0.97114074,-1.0409032,-0.85288274,-0.79425955,-0.8941065,-0.9107816,-0.93242383,-0.97431016,-0.9848336,-1.0002105,-1.0117723,-0.99951684,-0.99275637,-0.9882958,-0.9894209,-1.0390348,-1.0146675,-1.037564,-1.0310936,-1.0220449,-1.0441229,-1.0481024,-1.010949,-1.0217648,-1.0192865,-1.0087883,-1.0448141,-1.1071169,-1.0379415,-1.0127313,-1.0509907,-1.0843064,-0.9328563,-0.9235687,-1.0136709,-0.9953574,-1.0281181,-1.0480022,-0.90513444,-0.95598125,-0.9120755,-0.915841,-0.8144922,-0.27632093,-0.12570313,-0.29477885,-0.3790766,-0.44207937,-0.47647917,-0.5201905,-0.59418523,-0.6507791,-0.73634994,-0.7931109,-0.8332113,-0.87210804,-0.9324893,-1.0121205,-0.8406508,-0.97909856,-0.9814743,-1.0746331,-0.7049891,-0.018137373,-0.18435624,-0.30475402,-0.39012823,-0.45010787,-0.5827006,-0.6726409,-0.5860232,-0.56998575,-0.45847267,-0.3893388,-0.5004505,-0.5581131,-0.6275377,-0.6540255,-0.735209,-0.8215456,-0.8843104,-0.9223423,-0.9339992,-0.9390813,-1.0000083,-0.8784192,-0.08272531,-0.20774293,-0.28097117,-0.2939629,-0.3467012,-0.42392802,0.20712456,0.040390767,-0.071466796,-0.19937563,-0.37212175,-0.46671247,-0.5389054,-0.63660526,-0.64920634,-0.6047653,-0.5695271,-0.575587,-0.63200545,-0.6745419,-0.73393387,-0.78441083,-0.8583553,-0.91761374,-0.95780015,-0.94959044,-0.98596644,-1.0126193,-1.0137494,-0.98062706,-0.9354223,-1.0065808,-0.98804593,-1.0384756,-0.99662125,-0.19912398,-0.09309221,-0.29294267,-0.44991606,-0.57900923,-0.71952575,-0.86470133,-0.9454125,-0.9986228,-1.0605593,-1.0848169,-1.109607,-1.092145,-1.1022359,-1.1370082,-1.1527631,-1.1924988,-1.184143,-1.1987572,-1.1984665,-1.2233171,-1.2539351,-1.2721493,-1.2909851,-1.3144649,-1.3092045,-1.311187,-1.3113667,-1.3226912,-1.3317237,-1.3835157,-1.4043869,-1.4472827,-1.4585555,-1.462841,-1.4877083,-1.4969761,-1.492092,-1.5175513,-1.5421672,-1.5344198
+-0.72314936,-1.2478905,-1.2170246,-1.2911079,-1.3245181,-1.3782495,-1.3013532,-1.0484197,-1.2485187,-1.3677258,-1.3912858,-1.4449496,-1.4494224,-1.4696233,-1.5116124,-1.56654,-1.5895841,-1.592005,-1.5680424,-1.5565636,-1.5483246,-1.5199041,-1.5176986,-1.5329176,-1.5628222,-1.6030006,-1.6350638,-1.6501079,-1.6509279,-1.6654675,-1.6666999,-1.6394832,-1.6295664,-1.5839316,-1.5535457,-1.5627576,-1.5230385,-1.5753539,-1.5728872,-1.565497,-1.5122933,-1.490869,-1.4985707,-1.4472575,-1.4698431,-1.4915963,-1.5579216,-1.5812293,-1.5830448,-1.5860057,-1.5846694,-1.5900321,-1.5923951,-1.5798804,-1.5471286,-1.5037191,-1.5657651,-1.573099,-1.5471594,-1.4929808,-1.5339639,-1.5314099,-1.5123674,-1.5023589,-1.4463264,-1.4155899,-1.3953068,-1.2574357,-1.0019302,-0.731777,-0.6055098,-0.26719788,-0.6302072,-0.8836804,-1.0740633,-1.1959168,-1.2649156,-1.2762065,-1.274845,-1.2523972,-1.2634324,-1.0521264,-0.62381434,-0.32656193,-0.15835375,0.0951665,-0.20275748,-0.087365024,0.05781219,-0.17948085,0.054050468,-0.08881848,-0.09454738,0.04128913,-0.013767712,0.067594446,-0.013282888,-0.02032388,-0.108474724,-0.04252792,0.07435229,0.07113508,0.09520399,0.13711175,0.08662852,0.10977172,0.11740731,0.11398686,0.04954531,0.14658982,0.04799159,0.060657866,-0.010905035,-0.012094311,0.14672443,0.26869613,0.1524308,0.15802342,0.18571463,0.14630628,0.22774592,0.23110935,0.259145,0.24902615,0.15119398,0.17972296,0.054301143,0.07052806,-0.010270394,0.034414068,0.20156372,0.1575597,0.2151676,0.26555106,0.3267722,0.2872882,0.24911252,0.1301991,0.10683119,0.16978827,0.32120046,0.3405043,0.21555644,0.2169362,0.23318684,0.3304144,0.2336905,0.22904515,0.09920225,0.21907946,0.26266298,0.10377177,0.16114974,0.096546635,0.024426788,-0.049350344,0.11949576,0.09358065,0.54103607,0.43361834,0.36382428,0.23278883,0.1175045,0.38413265,0.29401058,0.21062277,0.14663775,0.016355805,-0.07249463,-0.1458934,-0.18315923,0.14343065,0.27513555,0.20271176,0.26432523,0.30174166,0.17305303,0.15325406,0.16570026,0.017860703,-0.011990033,-0.018259607,-0.070397966,-0.0523931,-0.105900414,-0.17016828,-0.24433488,-0.3131693,-0.41799033,-0.45330513,-0.48150283,-0.4429884,-0.51898307,-0.5830289,-0.6234269,-0.66821325,-0.7013892,-0.75092006,-0.74216056,-0.7615347,-0.7640762,-0.77976257,-0.7927638,-0.8373045,-0.9025579,-0.7324434,-0.7366628,-0.7781359,-0.79818785,-0.8603772,-0.8768455,-0.88220596,-0.8805264,-0.87449837,-0.84459996,-0.8299799,-0.84691477,-0.84427094,-0.94411457,-0.93006825,-0.9313426,-0.9362633,-0.9622146,-0.9035189,-0.59017414,-0.57635534,-0.6750562,-0.75485617,-0.78586954,-0.83334535,-0.9035551,-0.86404437,-0.8748256,-0.9252442,-1.0323877,-0.9647378,-0.92131853,-0.94115925,-0.9183452,-0.97638154,-0.9598528,-0.87291086,-0.91355824,-0.86295336,-0.8795197,-0.5164947,0.112506144,0.1604099,-0.053346895,-0.13430783,-0.24016955,-0.3153786,-0.37821448,-0.49442774,-0.53622866,-0.6103406,-0.7157539,-0.7537711,-0.8039744,-0.84267044,-0.89215887,-0.8256527,-0.8714603,-0.9504039,-1.0721729,-0.85511535,-0.46670765,-0.31426907,-0.40012679,-0.41979307,-0.5390006,-0.72246504,-0.7739384,-0.5385543,-0.30109468,-0.31762928,-0.30313963,-0.3932389,-0.5233413,-0.651616,-0.6942902,-0.7620517,-0.8910709,-0.95738363,-1.0057062,-0.9959508,-0.97689736,-1.0033365,-0.72755647,0.6148511,0.1323649,0.04577192,-0.039327808,-0.09514067,-0.172216,0.37168437,0.15018907,0.085851215,-0.0022869334,-0.10798184,-0.20243302,-0.24639669,-0.38500673,-0.49735337,-0.4929608,-0.5692402,-0.5443792,-0.54480594,-0.581542,-0.62090397,-0.66578376,-0.70863557,-0.7948532,-0.90035605,-0.9055488,-0.9500238,-0.9826354,-1.0036366,-1.0424426,-0.9666635,-1.0537934,-0.99304926,-0.9129329,-0.7230938,0.27586418,0.110018544,0.008047827,-0.20021269,-0.39186662,-0.51599777,-0.718577,-0.85784477,-0.9556298,-1.0507451,-1.0911086,-1.1045163,-1.09326,-0.7587801,-0.68440646,-0.8242129,-0.9013753,-0.99512017,-1.0461657,-0.9592546,-0.7849571,-0.87460166,-1.0262918,-1.1116711,-1.1791911,-1.2113894,-1.2246275,-1.2427738,-1.2451849,-1.2462347,-1.2911627,-1.2949226,-1.3671327,-1.4168308,-1.4432867,-1.461753,-1.4748476,-1.4889556,-1.5108013,-1.5339358,-1.5524852
+-0.5522091,-1.0445645,-0.84063166,-0.7506094,-0.701536,-0.72366804,-0.7004318,-0.63123345,-0.74766666,-0.8157179,-0.8225546,-0.85714924,-0.8767508,-0.85365164,-0.8334576,-0.8427954,-0.86630344,-0.858387,-0.84010994,-0.81866646,-0.8169442,-0.81276494,-0.8536802,-0.84335786,-0.87338066,-0.90029943,-0.9178512,-0.935758,-0.9525285,-0.9719312,-0.9847585,-0.9829153,-0.9479803,-0.9031534,-0.8768877,-0.8398737,-0.87905127,-0.95172024,-0.9352691,-0.91694,-0.887216,-0.8699971,-0.8413297,-0.78495026,-0.787857,-0.8214138,-0.8731984,-0.8964846,-0.9128152,-0.91306686,-0.89362967,-0.8914063,-0.885194,-0.8461631,-0.8181536,-0.7830548,-0.8693974,-0.883229,-0.8481399,-0.80886734,-0.81971776,-0.8552954,-0.8442448,-0.80999017,-0.7493699,-0.7122408,-0.71221876,-0.738628,-0.6625704,-0.46967375,-0.12388737,-0.06980755,-0.43077433,-0.6051866,-0.6834962,-0.7185849,-0.7169854,-0.7291951,-0.71938056,-0.67967516,-0.68303216,-0.6543821,-0.42170447,-0.30527788,0.88045675,0.49863142,-0.002183549,0.47064865,0.70580465,0.5237236,0.3729857,0.13564187,0.27872574,0.18552181,0.46863776,0.84953815,0.5349851,0.28312033,0.06668232,-0.021825232,-0.045734264,0.018209912,-0.06851851,0.21069077,-0.0431697,0.075817905,0.76190084,0.43359786,0.7820233,0.5474364,0.14229304,0.76357067,0.9079549,1.1677634,0.94000614,0.8949188,0.97061425,0.6453313,1.2694142,1.5836433,1.23082,1.0251652,0.71005505,0.7586213,0.47448713,0.4683056,0.25866872,0.5478772,0.16472185,0.28335127,0.5044794,0.9463074,0.9763286,0.6738376,1.8258523,1.1957382,0.8431311,0.6880255,1.4359411,0.96809435,1.7901108,1.2307718,0.9542517,0.8536625,1.4228195,0.9659257,1.1481528,1.0118166,0.8772109,0.7951008,0.5737865,0.49629217,0.4575367,0.36887303,0.25400892,0.20610732,0.1684336,0.3995932,1.0021638,1.7125095,1.0016944,0.67194784,0.5775759,1.2716131,0.9225476,0.6164742,0.45816603,0.3119119,0.2317318,0.14836317,0.4342764,0.51870865,0.78419054,0.4836691,1.0094498,1.1299834,1.0375257,1.1220747,0.7174506,0.48014012,0.42971662,0.40795186,1.3173316,0.7713073,0.5584422,0.45553374,0.31481165,0.19686238,0.14312907,0.11342421,0.060492516,1.1309981e-05,-0.026591368,-0.06356954,-0.071830355,-0.07645469,-0.083608426,-0.14194188,-0.20563555,-0.22111565,-0.25228792,-0.2635031,-0.2370252,-0.18950093,-0.25280792,0.9394746,0.5434216,0.2727221,0.14047873,0.064848326,0.019288994,-0.06865641,-0.10587006,-0.13750312,-0.17615956,-0.15797126,-0.14979428,-0.15263951,-0.22840011,-0.23840088,-0.24949527,-0.21191865,-0.20281044,-0.27268898,-0.16765773,-0.16363922,-0.21884066,-0.26374033,-0.2685218,-0.28083444,-0.24262154,-0.1698975,-0.18478465,-0.24214736,-0.35948998,-0.34855485,-0.3125248,-0.315987,-0.3374858,-0.3848944,-0.38954931,-0.34365714,-0.31840247,-0.3265233,-0.30852133,-0.25790814,0.06735442,0.16561016,0.10782764,0.019095011,-0.039050244,-0.1104001,-0.15335897,-0.19478822,-0.21749508,-0.23235434,-0.26150456,-0.2719943,-0.2730525,-0.28416014,-0.29348654,-0.32092017,-0.36388668,-0.42945307,-0.42771357,-0.40572733,-0.33785954,-0.25992924,-0.27168757,-0.29848683,-0.4137559,-0.4629215,-0.47484255,-0.3201337,-0.16832653,-0.27595472,-0.20048076,-0.25015366,-0.3346941,-0.38668814,-0.39103213,-0.37185776,-0.37565088,-0.3504141,-0.35330558,-0.3685532,-0.3792165,-0.42186004,-0.4398132,0.21456304,0.26271293,0.0057353005,-0.09395092,-0.18249306,-0.25445014,-0.36932904,-0.20625702,-0.33338785,-0.419295,-0.46882802,-0.5128634,-0.5173529,-0.50985533,-0.46700144,-0.47827673,-0.5236101,-0.51822144,-0.51883304,-0.5161928,-0.50783426,-0.5021387,-0.49448502,-0.5158866,-0.53265333,-0.49443084,-0.46399212,-0.4757899,-0.49426007,-0.5236857,-0.55512947,-0.6486026,-0.4597801,-0.51826674,-0.13080424,1.1841031,0.7349346,0.44031554,0.26102763,0.15278551,0.050258912,-0.10606643,-0.23860067,-0.28520402,-0.34697345,-0.4009426,-0.46050858,-0.45441335,0.018490292,-0.030001186,-0.17780241,-0.286304,-0.44736713,-0.5667784,-0.5940695,-0.59439915,-0.6103883,-0.6169423,-0.5964711,-0.58341056,-0.56159824,-0.55517626,-0.56963384,-0.5980705,-0.5870725,-0.57567626,-0.55774784,-0.5811825,-0.64669037,-0.69304305,-0.704126,-0.7177424,-0.7429861,-0.7775461,-0.7843555,-0.7933522
+1.1541426,1.6785512,2.0074844,2.1318421,2.1577988,2.0091178,1.9830779,2.054595,2.0976448,2.1490014,2.187837,2.1773458,2.1551657,2.151246,2.1603334,2.1163194,2.1018114,2.1103992,2.103366,2.0670865,2.0421867,1.9769299,1.8824642,1.8572563,1.8161091,1.8336394,1.8834555,1.905412,1.9069453,1.9030132,1.8628092,1.8413488,1.8571578,1.8492355,1.7949771,1.7368059,1.8317721,1.7623383,1.7297359,1.6566924,1.5777767,1.5414808,1.4974904,1.5013493,1.4908099,1.4635911,1.4470227,1.4740953,1.5116937,1.51217,1.4992405,1.5126417,1.5505981,1.5253823,1.3873572,1.4394934,1.4865909,1.4967237,1.4229068,1.4954591,1.460839,1.4236996,1.4151326,1.445382,1.3774805,1.3484621,1.3210099,1.2706044,1.2126486,1.1777464,1.158445,1.1755707,1.2277166,1.2387592,1.2325817,1.2301805,1.2070504,1.1634226,1.1657907,1.1591314,1.1869957,1.2267945,1.39728,1.254591,1.1504734,1.1260501,1.111547,1.369446,1.2030976,1.4117026,1.1730182,1.0971766,1.1089433,1.389158,1.3341995,1.1610345,1.2335949,1.1369778,1.086822,1.080883,1.0989763,1.1268747,1.162097,1.7839303,1.5006483,1.1544513,1.387481,1.2100959,1.099184,1.0905966,1.0841969,1.2855058,1.4580271,2.0137954,1.7066127,2.5367277,2.1864774,1.7762676,2.555935,2.7313757,2.8261623,2.7020319,2.3078887,2.1221662,1.9013275,1.8197299,1.7283854,1.8532844,1.7861872,2.3325472,2.5158443,2.3240159,1.9631143,1.832158,1.8849007,1.7524822,2.0944374,2.5359533,2.5159488,2.6957393,2.999985,2.8689663,2.860742,3.0708203,3.0628815,2.7797322,2.559759,2.360787,2.2025003,1.9494908,1.9109612,2.1247418,2.0799742,1.9641082,1.7081228,1.7063025,1.7059538,1.5431204,3.0505924,3.1607885,2.640944,2.2588053,2.2045026,2.1866865,1.9915386,1.8487864,1.753856,1.6271762,1.6027066,1.5740199,1.7999318,1.773229,1.5799749,1.5344999,2.35962,2.6369975,2.2882996,2.3476243,1.964611,1.8107207,1.6960163,1.7218717,2.9786186,2.619638,2.4461586,2.1585095,1.9907944,1.9285097,1.8849974,1.8647008,1.844154,1.7446467,1.6873724,1.6477083,1.6475357,1.6604328,1.6727728,1.6931849,1.6855224,1.6630301,1.6845306,1.72987,1.6679053,1.6396282,1.697215,1.822352,1.7313011,1.616545,1.5951278,1.6078112,1.6373215,1.6498282,1.6247933,1.6292287,1.6175036,1.6505107,1.6639671,1.6389074,1.6356406,1.6844587,1.6800176,1.6579986,1.6790289,1.6943898,1.6963949,1.6785389,1.6692157,1.6602042,1.6771448,1.6895373,1.6880554,1.7057245,1.6749842,1.670343,1.6456106,1.6672843,1.6983179,1.702589,1.7043768,1.7004621,1.7263589,1.7855141,1.838908,1.8427161,1.8444166,1.7169375,1.8433819,1.9055083,1.8443084,1.8284647,1.8741658,1.8711365,1.8763564,1.8865638,1.896616,1.8972147,1.8824916,1.8792818,1.8979576,1.933043,1.9714239,1.9066502,1.8654089,1.790015,1.6902136,1.733732,1.8002454,1.8725748,1.9283696,1.9650171,1.8677156,1.8440769,1.7801458,1.6857392,1.9817202,1.87746,1.9041392,1.9059639,1.9376698,1.9440053,1.9727614,1.9841151,2.0242755,2.0014381,2.0037205,2.0062394,2.0310917,2.0019639,2.045924,2.1904616,2.209348,2.1198335,2.0546918,2.052942,2.1127121,2.0744112,2.0880988,2.103394,2.0985327,2.1464167,2.1478443,2.1752791,2.2221327,2.1710649,2.0102155,2.094017,2.107019,2.0970674,2.1120574,2.1256082,2.1354592,2.1607113,2.1696491,2.156382,2.136038,2.1229105,2.1184473,2.113366,2.1291637,2.1687489,2.1265085,2.1751697,2.1403599,2.1414475,3.1388984,2.9036694,2.7103553,2.588368,2.4635139,2.2983756,2.175439,2.1832082,2.2009346,2.174378,2.1503444,2.1279292,2.0677245,2.2736866,2.1612697,2.0640836,2.0550992,2.0681841,2.0091338,2.0684218,2.0579543,2.0468075,2.0060606,1.9745005,1.9574585,1.9398748,1.9390221,1.9271556,1.9101136,1.9013481,1.9126856,1.9207609,1.9477892,1.9880568,2.0032804,2.0099788,2.0154772,1.9801812,1.981993,2.017167,2.0170996
+0.20570812,0.26443082,0.3571372,0.023343064,-0.018976279,0.14320302,0.21251607,-0.008436643,0.040363356,0.026406087,-0.45850146,-0.27832943,-0.40017572,-0.38312724,-0.30899578,-0.2796526,-0.2396701,-0.25196433,-0.31308886,-0.43593735,-0.43132734,-0.4620117,-0.55168945,-0.5666099,-0.78864783,-0.6962454,-0.58463717,-0.595507,-0.46816504,-0.5216688,-0.5444899,-0.5821657,-0.63005894,-0.7067839,-0.7624357,-0.8340995,-0.8447709,-0.8757275,-0.9338453,0.8664259,1.4127536,0.81373155,0.68519145,0.37562487,0.27308556,0.007481873,-0.17725867,-0.45520496,-0.5922819,-0.67872435,-0.79147387,-0.5504185,-0.5113035,-0.42484397,-0.64714694,-0.36052865,-0.3177536,-0.0856482,-0.17735052,-0.27257928,0.7966349,0.3999407,0.09471339,0.008270733,-0.37685585,-0.67738235,-0.8794737,-1.0091139,-1.1201113,-1.0594865,-1.0715429,-0.61663127,0.26129475,-0.35938656,-0.6815357,-0.72146165,0.3855521,-0.02241949,-0.44629145,0.28856382,-0.25786823,-0.65280676,0.8176172,0.036343694,-0.11359208,0.5449184,0.48995075,0.33706602,-0.39588404,-0.6022593,-0.5260646,-0.5850137,-0.67048824,-0.6837458,-0.8899175,-0.5742723,-0.77574545,-0.5003924,-0.8264979,-0.744398,-0.6445628,0.22257677,1.3609252,0.92433596,0.949996,0.6807257,0.58767915,0.43986058,-0.024532445,-0.43778932,-0.6052091,-0.7857985,-0.97164977,-0.75425875,-0.9634204,-1.1171641,-0.816324,-0.38800904,-0.7378686,-0.8886311,-0.93308973,-0.75876975,-0.86056685,-0.9909854,-0.56681997,0.36367172,-0.18372846,-0.49894792,-0.68960744,-0.42311764,-0.39753172,-0.022629865,0.10552356,-0.18351492,-0.47002113,-0.5833038,-0.3078469,-0.4500354,-0.525103,-0.1210492,-0.21132809,-0.5254996,-0.7147435,-0.80609804,-0.7970938,-0.16596013,-0.21635196,-0.13073197,-0.18289885,-0.35891598,-0.5393245,-0.6436714,-0.7188635,-0.7290758,-0.7852864,-0.76146746,-0.8472826,-0.1610457,0.24171695,0.23199213,0.122773595,0.49331737,0.38110465,0.055775747,0.17374346,0.012985893,-0.07387235,-0.22620785,-0.3734749,-0.45304757,-0.5535395,-0.6030555,-0.64963996,-0.88898975,-0.28439435,0.5213378,0.46655598,0.55058646,0.3900834,0.20596159,0.098721236,-0.074424975,-0.22659668,-0.260616,-0.3987212,0.43725467,1.5102373,1.5872974,0.94567245,0.3663995,0.19563244,0.44856668,0.58564395,0.2927624,-0.19239342,-0.3530957,0.20016497,0.37842277,0.1371892,0.24958202,0.101112224,-0.107653685,-0.13661575,0.0008698106,-0.21311039,-0.07561616,-0.15786064,-0.24045497,-0.21273786,-0.24150759,-0.28425926,-0.20628488,-0.27190277,-0.13833869,0.17059752,0.15315598,0.15480594,0.13955146,0.09854473,0.102527186,0.052448414,-0.049962826,-0.041556887,-0.071660645,-0.22176892,-0.2618513,-0.23333874,-0.32654798,-0.42717046,-0.38714257,-0.7426822,-0.82764745,-0.96605253,-0.9120619,-0.8666613,-0.91171217,-1.0413353,-1.0131782,-1.094495,-1.0602301,-1.0576274,-1.0973283,-1.0513098,-1.1315384,-1.1488657,-1.1988132,-1.1379728,-1.1333482,-0.9726808,-1.3051585,-1.2833652,-1.2827201,-1.2720386,-1.2373053,-1.2202153,-1.2585645,-1.2845277,-1.3269631,-1.322139,-1.2691779,-1.3055667,-1.329057,-1.2486907,-1.1972342,-1.0617872,-1.2742393,-1.2865529,-1.1559726,-1.1653178,-1.2835431,-1.3102503,-1.258522,-1.2900598,-1.2535071,-1.2725992,-1.2090763,-1.2236369,-1.2950227,-1.3168197,-1.3154902,-1.2847912,-1.2552352,-1.2975723,-1.2019411,-1.237386,-1.2285078,-1.2640402,-1.2365022,-1.2998494,-1.3161124,-1.2610283,-1.244108,-1.0204833,-1.0267112,-0.9869083,-1.1062008,-1.0928206,-1.2480314,-1.1939096,-1.2677369,-1.3115163,-1.2641153,-1.0796652,-1.0337985,-0.8855488,-1.1538651,-1.2482536,-1.2848461,-1.2975374,-1.1881235,-1.1660032,-1.028535,-1.0336885,-1.0531228,-1.0594026,-0.9944129,-1.0587264,-1.1404705,-1.0969636,-1.054968,-0.94270694,-0.6825799,-0.39358866,-0.6784402,-0.5659021,-0.75200343,-0.50320673,-0.58841205,-0.7546512,-0.78231096,-0.84853226,-0.84477043,-0.9604747,-0.9299226,-0.9179957,-0.9187691,-0.8911104,-0.64233506,-0.421669,-0.52344805,-0.84274703,-0.97039366,-0.8707768,-0.8380109,-0.8217056,-0.7874509,-0.7803509,-0.78972733,-0.6255167,-0.03873504,0.027137667,0.20499894,0.9604901,0.45694023,-0.26456082,0.0034001246,0.8870641,0.7871793,0.93508446,0.7139893,0.41701785,0.29402125,0.30726942,0.2568889,0.22598898
+-0.39988542,-0.24525413,-0.117288224,-0.22961766,0.36464903,0.61168975,0.3764493,0.090133555,-0.14600876,-0.19739479,-0.45807016,-0.5618973,-0.6985191,-0.7567586,0.57327956,1.0573106,0.76273376,0.4936955,0.28503892,0.043873794,-0.1434657,-0.37122774,-0.60506755,-0.10398909,0.98450315,0.8540299,0.9973836,0.9704869,0.9258138,0.7850548,0.52739495,0.24299407,-0.095307596,-0.34188235,-0.5471138,-0.76407665,-0.8204895,-0.9598317,-0.98197293,1.6973957,1.7970715,1.5173373,1.472168,1.1634375,0.78964883,0.4204608,0.08729214,-0.26507398,-0.542766,-0.69082284,-0.40961152,0.12798834,0.018814035,-0.026699744,-0.14422318,0.074174054,0.18206939,0.21578011,0.053853326,-0.13355625,0.702646,0.68202037,0.32023376,0.13063538,-0.35186696,-0.7086916,-0.8743051,-0.99141383,-1.1400009,-0.73138195,-0.29159528,-0.058045886,1.1645671,0.42637652,-0.09829121,0.25140905,1.1627777,0.6159391,0.13352042,0.5432926,0.07749266,-0.26575905,-0.017265804,-0.5126343,-0.44050646,0.5508959,0.49771687,0.3540844,-0.20222235,-0.5538393,-0.78196573,-0.7447983,-0.8284162,0.24559677,-0.19462976,-0.5557749,-0.7994001,-0.56808436,-0.9520408,-0.79439926,0.28735006,1.3577363,1.3278594,1.2276285,1.1791145,0.88892007,0.9864216,1.073099,0.6757644,0.9868044,0.41483963,0.0015859827,-0.48127228,-0.6326612,-0.8837884,-1.0326599,-1.1732687,0.011049338,0.53589684,0.3239423,-0.15950763,-0.23972374,-0.40409708,-0.7674058,-0.94502676,-0.99439764,-1.1544956,-1.255726,-1.286952,-1.2522036,-1.27367,-0.7695819,-0.68939483,-0.5308956,-0.53033584,-0.8805241,-1.0233753,-1.1655502,-1.2581773,-0.9426683,0.534544,-0.07094888,-0.39048815,-0.6454661,-0.8173593,-0.8717334,-0.8883432,-0.95521665,-1.0422435,-1.1173825,-1.2155383,-1.275462,-1.325794,-1.3030322,-1.2708316,-1.1318814,-1.1990286,0.010438211,0.4981187,0.4698907,0.43076396,0.6322045,0.548521,0.3309897,0.23191428,0.11298106,-0.14283094,-0.3138625,-0.45019072,-0.60186654,-0.59238243,-0.7426423,-0.88282645,-0.09383821,0.9607284,0.970418,1.003595,0.973501,0.79906166,0.5439934,0.37988406,0.10297456,-0.12241819,-0.35089982,-0.021687202,1.5171618,1.86517,1.705866,1.5387282,1.0928316,1.0174549,0.8370418,0.7294968,0.603129,0.24454173,0.35431683,0.46985963,0.41859162,0.24385604,0.33646995,0.25256827,0.16261089,0.16121373,0.17013806,0.012916274,-0.030357204,-0.039511435,-0.11454757,-0.1595192,-0.19065273,-0.2312668,-0.23513958,-0.1993865,0.54168993,0.98018,0.8985509,0.81355166,0.68755674,0.61174405,0.5578749,0.49013275,0.40336183,0.35419542,0.28255332,0.21098949,0.19749609,0.17669114,0.110716514,0.04918862,0.03493776,-0.14658228,-0.22841185,-0.3461328,-0.27114516,-0.13029811,-0.19092238,-0.31115407,-0.3046459,-0.43200046,-0.40520626,-0.45405614,-0.41897136,-0.39747134,-0.5555326,-0.53224736,-0.48252827,-0.4328181,-0.5277044,-0.59927315,-0.93729377,-0.98480105,-0.96299255,-0.8731762,-0.8555189,-0.9402518,-0.9586439,-1.0036318,-1.0124491,-0.9605397,-0.9219264,-0.9861393,-1.004171,-0.8579651,-0.70734435,-0.6074527,-0.7552184,-0.8013976,-0.7062167,-0.85184693,-0.9186828,-0.8544158,-0.8223701,-0.8544042,-0.7169827,-0.84584963,-0.72891265,-0.85619485,-0.982721,-1.0230904,-1.0277097,-0.9731735,-0.9182652,-1.0286615,-0.9344872,-0.96147454,-1.0990679,-1.083329,-1.0448949,-1.0388848,-0.9941423,-0.9689785,-0.8642158,-0.6525891,-0.61745644,-0.54866207,-0.7392639,-0.8459766,-0.8111842,-0.878942,-0.9433725,-0.99157786,-0.9693514,-0.7872566,-0.7105976,-0.7006859,-0.7799839,-0.94747293,-1.0150416,-1.0124937,-0.9501147,-0.86356455,-0.8684635,-0.94657874,-0.98952866,-0.9108107,-0.35554555,-0.5622651,-0.797241,-0.7992554,-0.71998465,-0.6163349,-0.38760376,-0.0980772,-0.09280478,-0.17459628,-0.19097102,-0.16813579,0.08220834,-0.32002103,-0.3263341,-0.39527145,-0.54299927,-0.6091137,-0.6610178,-0.64292294,-0.5280274,-0.40158433,-0.23583874,-0.060218163,-0.2298857,-0.7556323,-0.83799917,-0.7487552,-0.84420437,-0.8117689,-0.7925056,-0.7382539,-0.5865516,-0.19124219,0.39894727,0.30105057,0.60499823,0.8463659,0.33724135,-0.20630386,-0.043269657,0.3044384,0.17134473,0.31897023,0.23177081,0.19390635,0.23845115,0.17027614,0.10170751,0.020403601
+-0.54814065,-0.63839924,-0.66150373,-0.8806745,-0.19787365,-0.20690298,-0.44710964,-0.6484102,-0.86744756,-1.0464159,-1.1567675,-1.2970136,-1.3765903,-0.88887066,0.19551864,0.26992854,-0.051192872,0.09245557,0.5374899,0.59058356,0.20518506,-0.03409321,-0.38659778,0.9949754,0.94486827,0.7380703,0.74730366,0.8058543,0.7577076,0.61525255,0.34331256,-0.0037934259,-0.33209544,-0.6228981,-0.86401355,-1.086684,-1.1408248,-1.2926803,-1.3760426,1.2630082,1.2281973,0.7207444,0.6591926,0.47851923,0.18895125,-0.09881615,-0.39065382,-0.74817634,-1.0153918,-0.60217714,-0.6628465,-0.3725068,-0.62680346,-0.9906651,-0.2282894,-0.09735098,-0.5361514,-0.6826291,-1.0146545,-0.7119638,-0.20812768,-0.41599226,-0.8437658,-1.0826871,-1.3797858,-1.5233263,-1.5494139,-1.5708866,-1.5776322,-1.5348831,-0.79828775,-1.0112123,-0.37634724,-0.4201002,-0.7987013,-1.141225,-1.2861687,-1.3888476,-1.3076878,-1.4038914,-1.6086888,-1.6553257,-1.5586823,-1.6440609,-1.6396332,-1.5034589,-1.6625721,-1.680046,-1.6387998,-1.6070166,-1.5793064,-1.5769029,-1.6238191,-0.9347116,-1.1090729,-1.2471889,-1.5125061,-1.1682408,-1.4781743,-1.5705899,-0.8518755,0.054927,-0.3630314,-0.89073265,-1.2073396,-1.4289055,-0.5129525,-0.74547064,-1.11779,-1.3446074,-1.4552665,-1.5428394,-1.5624733,-1.399415,-1.594313,-1.6056317,-1.3425852,-0.60387933,-1.0413373,-1.2527208,-1.4709717,-1.5162477,-1.5381162,-1.6497574,-1.5602763,-1.5325487,-1.642774,-1.6230538,-0.86528647,-0.1287792,-0.87145483,-1.1412045,-1.3293502,-1.4748724,-1.5201073,-1.6188638,-1.5727832,-1.6113489,-1.6104523,-0.6522013,1.0802046,0.33227855,-0.13799325,-0.49704742,-0.8371892,-0.98507667,-1.077374,-1.0818353,-1.184818,-1.3058722,-1.4611297,-1.5147367,-1.5179815,-1.5139928,-1.4907348,-1.4520652,-0.23321584,0.67457336,0.3823031,0.013597079,-0.20826113,-0.32602552,-0.45630157,-0.71147966,-0.22093886,-0.036662303,-0.14452022,-0.33454606,-0.48589754,-0.6794618,-0.8923988,-1.0624573,-1.18754,-1.186021,-0.68927294,0.44516593,1.2789862,1.1027762,0.78977937,0.515759,0.17050484,-0.03120441,-0.31548348,-0.5414275,-0.5433564,0.30073896,1.2631066,0.9266056,0.70116997,0.53788877,0.35378417,0.2656062,0.041781455,0.19419208,-0.11194407,0.06349542,0.028887428,-0.09641322,-0.28269055,-0.3422529,-0.38076046,-0.3988144,-0.3292381,-0.47784626,-0.6020297,-0.64967227,-0.6699254,-0.80019015,-0.8214565,-0.85191584,-0.86465657,-0.5129291,-0.29004034,-0.4731058,-0.44733763,-0.5355409,-0.61274815,-0.71947926,-0.75496197,-0.7496686,-0.8005892,-0.83718646,-0.86722934,-0.8886459,-0.80214256,-0.8459847,-0.83732826,-0.8512742,-0.9336605,-0.9162159,-0.9030023,-0.9865086,-1.014433,-0.9697089,-0.8991585,-0.88621986,-0.96711075,-0.9750203,-1.0503979,-1.0459154,-1.1009505,-1.0041739,-0.97940445,-1.0739908,-1.1073729,-1.0241137,-1.0417073,-1.0581019,-1.0741943,-1.2892054,-1.3423332,-1.3408445,-1.2916,-1.1847675,-1.2982914,-1.1719537,-1.3383074,-1.3667655,-1.1110214,-1.1052352,-1.2847416,-1.3308711,-1.1630714,-0.9521737,-0.9135176,-1.0799534,-1.1538417,-1.1108742,-1.1393629,-0.97788215,-1.107662,-1.0302701,-1.0864944,-0.8119978,-1.0160799,-1.0088367,-1.0220547,-1.1970448,-1.2618546,-1.2507203,-1.2397745,-1.1504657,-1.2200556,-1.0466121,-1.0510168,-1.1893781,-1.3302486,-1.3172015,-1.2662791,-1.2208282,-1.1555154,-1.1010928,-0.85522103,-0.8795549,-0.6694313,-0.94311273,-1.1015297,-1.0964184,-0.9716244,-1.1080953,-1.0211535,-1.0950036,-0.91716385,-0.8178752,-0.8117459,-0.83741564,-1.0719192,-1.1438506,-1.2863905,-1.1442207,-1.1058887,-1.1120106,-1.1400113,-1.1698492,-1.046263,-0.5685665,-0.7279335,-1.0263577,-1.0258552,-0.9842334,-0.9180138,-0.73451793,-0.61924875,-0.64656794,-0.72634864,-0.565783,-0.3266385,-0.21884269,-0.55846125,-0.75835806,-0.83722186,-0.95435596,-0.871628,-0.9794469,-0.9626738,-0.6945553,-0.5033054,-0.28791818,-0.1557101,-0.22580153,-0.83777916,-0.9215698,-0.8827755,-0.8862412,-0.9482821,-0.8773708,-1.047245,-0.60466886,-0.24769801,0.12159284,-0.039567478,0.057409875,-0.07196934,-0.05907502,-0.28577352,-0.19725484,-0.21170086,-0.22967839,-0.2560184,-0.3333147,-0.45655352,-0.30806687,-0.20479184,-0.30834022,-0.2580945
+-0.3998807,-0.33680508,-0.34585592,-0.46567595,-0.46512812,-0.50862056,-0.5342131,-0.6945675,-0.8847897,-0.8433467,-0.94505453,-1.0765821,-1.1763588,-1.1557026,-1.0850115,-1.06313,-1.0045875,0.02448786,0.57808036,0.6103759,0.44759837,0.22009414,0.04296472,1.1845472,1.036672,0.89013857,0.7333528,0.70583135,0.8827634,0.85386467,0.826093,0.493512,0.22035664,-0.081961624,-0.33427817,-0.53709203,-0.5895105,-0.6003872,-0.58115315,0.5990497,0.34923822,0.1948075,0.1081234,0.11519078,0.13140944,0.4866439,0.564793,0.34632757,0.0564517,-0.082664765,-0.3708018,-0.3997103,-0.7508582,-1.0269504,0.03028696,0.37164378,0.1085012,-0.105113916,-0.42068154,-0.58881646,-0.45079732,-0.75709486,-1.023031,-1.0007572,-1.2053533,-1.3215936,-1.4045818,-1.4631735,-1.4872732,-1.5040712,-1.4647899,-1.5326483,-1.2084742,-0.26803267,-0.5640841,-0.8723389,-1.0810305,-1.1619607,-1.0789373,-0.9934943,-1.2373121,-1.413789,-1.3764493,-1.5083622,-1.4875014,-1.4138492,-1.494278,-1.5265396,-1.5444914,-1.3316237,-1.2033025,-1.09409,-1.0914222,-1.0513303,-1.0599322,-1.1154854,-1.2753353,-0.9822962,-1.3226712,-1.3651713,-1.370544,-0.8941173,-0.9792454,-1.154962,-1.3496771,-1.4678226,-1.3707405,-1.335571,-1.4949275,-1.4819055,-1.4934517,-1.470577,-1.5402315,-1.4676932,-1.5110874,-1.5232825,-1.5106837,-1.424598,-0.8806089,-1.0406991,-1.2743543,-1.3491614,-1.402987,-1.5157299,-1.4860184,-1.4292965,-1.5566367,-1.5848365,-1.3032863,-0.09662198,-0.7522101,-1.0522147,-1.0415907,-1.0078511,-1.0491328,-1.1983657,-1.3036662,-1.4091028,-1.445503,-0.5964337,0.6255654,0.30969954,-0.13348725,-0.52743,-0.80646884,-0.97726345,-1.1180077,-1.1640761,-1.1965294,-1.3098218,-1.3994473,-1.4838887,-1.4825156,-1.4789338,-1.4279889,-1.383599,-1.1542096,0.15581924,-0.2641682,-0.51970696,-0.70906055,-0.61774325,-0.6034744,-0.87307787,-0.26334333,0.4878685,0.16079971,-0.028113805,-0.036423273,-0.26081955,-0.4222433,-0.58699214,-0.6626521,-0.85556495,-0.88353074,0.38450128,1.2102885,0.8616183,0.7960496,0.48699367,0.1822981,-0.04084935,-0.17519704,-0.3534612,-0.4828133,-0.3407755,0.6381286,0.4000314,0.23352385,0.20268443,0.21167326,0.03442722,-0.07744416,-0.15935487,-0.15346551,-0.1787383,-0.2367301,-0.33405462,-0.3254013,-0.33563232,-0.27757734,-0.38635305,-0.45395398,-0.47474217,-0.5458324,-0.63657665,-0.67713565,-0.65327317,-0.7112311,-0.7475107,-0.77994865,0.3391894,0.55306494,0.39868176,0.208187,0.034640186,-0.032542594,-0.13471538,-0.24498868,-0.34198728,-0.45462358,-0.49268377,-0.5212929,-0.6182694,-0.63651705,-0.63870376,-0.69155765,-0.690491,-0.7150757,-0.7163613,0.5174728,0.07205105,-0.23124683,0.05891604,0.1960116,0.12219796,-0.13758716,-0.21965128,-0.40080512,-0.37829715,-0.504863,-0.45316446,-0.46214062,-0.89046097,-0.8317403,-0.7595402,-0.8630922,-0.8394682,-0.72190857,-1.0790997,-1.2003434,-1.2571151,-1.1024468,-0.85671425,-0.91470134,-1.0188262,-1.0499707,-1.1370373,-0.9144163,-0.79239845,-1.2358141,-1.2088892,-0.899922,-0.64770603,-0.6898968,-0.99429214,-1.045794,-0.86823297,-0.9602196,-1.1394178,-1.0379635,-0.9610777,-1.0585735,-0.70030904,-0.91473293,-1.0724362,-1.1705016,-1.219384,-1.2428927,-1.3250055,-1.2494276,-1.1890007,-1.0680767,-0.65314615,-0.85133183,-1.0078837,-1.2371936,-1.1661679,-1.1423625,-1.1211189,-1.1521319,-1.0532216,-0.72152525,-0.46890426,-0.20737478,-0.6578915,-0.9287832,-0.9882549,-1.0122188,-1.1235616,-1.0642482,-1.0625819,-0.667194,-0.27070397,-0.3015807,-0.539114,-0.8347508,-1.0045726,-1.0405154,-0.5316496,-0.43044883,-0.2661119,-0.657023,-0.8796095,-0.32943422,0.39854932,0.40427387,-0.59915626,-0.60339177,-0.5869187,-0.19455981,0.2118212,0.24161536,0.22545597,0.32432535,0.28101832,0.35626066,0.01800035,-0.36332095,-0.5892744,-0.7359837,-0.90647674,-0.81724286,-0.86701614,-0.85708845,-0.64292485,-0.48603362,-0.4089629,-0.306078,-0.17139533,-0.7562475,-0.6987982,-0.45106864,-0.2002686,0.03353945,0.069379844,-0.027538985,0.22475603,0.26546863,0.29676163,0.11255077,0.06914837,0.14015254,0.011052795,0.28124064,0.36488166,0.5296818,0.63031733,0.44768578,0.56601954,0.4534971,0.57121485,0.617861,0.44039953,0.77138627
+-1.0584353,-1.139551,-0.933818,-0.9713738,-1.0345571,-1.1163203,-1.0353484,-1.1546965,-1.2131995,-1.21697,-1.2059985,-1.2636974,-1.3414441,-1.4043748,-1.4213938,-1.4663581,-1.3514315,-1.093828,-0.7520103,-0.81275064,-1.0223722,-1.1574327,-1.2519004,0.33975208,0.21460295,0.33644807,0.046721317,0.026485719,-0.04099863,0.16761321,0.051172994,-0.15832275,-0.20904046,-0.368672,-0.4587456,-0.55595386,0.42644614,0.53657573,0.27137884,0.15721437,-0.1484456,-0.30537817,-0.3046381,-0.27025777,-0.28984603,0.27392447,0.22737235,0.053635135,0.07783198,0.104913585,0.019764721,-0.12173771,-0.39607742,-0.5932063,-0.60435784,-0.6733727,-0.89328957,-0.8342741,-0.9827274,-1.1238708,-1.1447402,-1.3101286,-1.4518349,-1.4856673,-1.5010589,-1.5062928,-1.5101544,-1.5824779,-1.5732672,-1.5756378,-1.5994654,-1.6418407,-1.5546192,-1.1071453,-1.0199816,-1.2816133,-1.4894092,-1.5290332,-1.6250619,-1.6202005,-1.5757325,-1.6560472,-1.6105961,-1.4371815,-1.0517617,-1.3541608,-1.5927966,-1.6019859,-1.5001254,-1.4941125,-1.1259403,0.2988812,-0.53177893,-0.9303534,-1.1938729,-1.3811742,-1.5048933,-1.5277549,-1.592516,-1.6428521,-1.6487783,-1.56268,-1.6172795,-1.3982977,-1.5131818,-1.5941564,-1.6448067,-1.61898,-1.655497,-1.6081176,-1.6448131,-1.6378661,-1.6617374,-1.6093847,-1.6326911,-1.646673,-1.6430544,-1.6334535,-1.5693624,-1.5664172,-1.618541,-1.6060596,-1.6226627,-1.6476787,-1.6422356,-1.6172581,-1.6347228,-1.6203153,-1.5783857,-1.4329935,-1.5137216,-1.6039926,-1.1271694,-0.8969578,-1.2409434,-1.420691,-1.553028,-1.5743924,-1.603535,-1.2214477,-0.2906519,-0.7285354,-1.2606839,-1.5018566,-1.5701808,-1.5987647,-0.24291274,-0.4345132,-0.7993031,-1.1626935,-1.4011009,-1.4632804,-1.4957018,-1.5341098,-1.38656,-1.383868,-1.1370866,-0.26325977,-0.6686299,-1.0424427,-1.2617909,-1.1334519,-1.1919618,-1.4598075,-1.220172,0.07406499,-0.29507902,-0.48921412,-0.6357592,-0.82163537,-1.0362878,-1.233845,-1.378593,-1.4363935,-0.6440736,0.44434008,0.604781,0.49905086,0.32618928,0.027057685,-0.28354216,-0.47076648,-0.46560478,-0.65721214,-0.77252066,-0.55959976,0.36789092,-0.004844524,-0.20812425,-0.38323393,-0.49185604,-0.6259857,-0.7286687,-0.818697,-0.9254061,-1.0866212,-1.0809284,-1.0897496,-1.0891218,-0.34951255,-0.64218485,-0.69591093,-0.9214382,-0.8827,-0.91984606,-0.9556258,-0.9349587,-0.8297452,-0.902799,-0.960768,-0.99981475,-0.92163897,-0.92641187,-0.95837474,-1.1581216,-1.1551733,-1.220804,-1.2315713,-1.2493005,-1.2607994,-1.2593957,-1.2583636,-1.2594366,-1.2686734,-1.2416997,-1.2589476,-1.2647257,-1.2483795,-1.2599874,-1.2763453,-0.78828156,-1.0226657,-1.1024529,-0.944456,-0.7643735,-0.55571586,-1.0054948,-0.9510095,-1.084508,-1.0791303,-0.99951303,-1.0266943,-1.080244,-1.1686783,-1.1051303,-1.0285919,-1.1428359,-1.1267687,-0.89988697,-1.2964525,-1.2898512,-1.3491585,-1.2151093,-0.9677664,-1.0064528,-1.1467259,-1.1846116,-1.2153203,-1.0553132,-0.9484941,-1.2800856,-1.3254925,-1.2254062,-0.9879521,-0.9400077,-1.1220175,-1.102159,-0.96602607,-0.9045432,-1.0963004,-1.1915665,-1.051677,-1.1641825,-0.98029315,-1.0199721,-1.145692,-1.1202699,-1.3671348,-1.2586069,-1.412961,-1.4192024,-1.3716303,-1.1322457,-0.7104954,-0.93875337,-1.1085554,-1.2104523,-1.1848196,-1.1487288,-1.1772201,-1.201402,-1.1836326,-1.0729482,-1.0656123,-0.95177174,-1.147985,-1.0967668,-1.0643867,-1.0233623,-1.2873048,-1.3641896,-1.3264077,-1.1946502,-1.0319651,-1.0046668,-1.0041611,-1.0434514,-1.3229187,-1.3168823,-1.0226032,-1.0167768,-0.9580127,-0.86982447,-1.0422051,-0.8725498,-0.5130806,-0.4433744,-1.1589257,-1.1271131,-1.1287345,-1.1033974,-1.0257782,-1.0156715,-0.96451306,-0.8342689,-1.0015924,-0.8165953,-0.74161667,-0.96067965,-1.0865089,-1.2883325,-1.3497823,-1.2213122,-1.2870995,-1.3625555,-1.2609605,-1.1653944,-1.1144197,-1.0608135,-1.0242807,-1.3471003,-1.1193743,-0.9100045,-0.904732,-0.6827439,-0.954263,-1.013149,-0.6075478,-0.64850056,-0.70453835,-0.91624475,-0.7560955,-0.6886053,-0.8041047,-0.8308941,-0.8787103,-0.18916863,-0.36189818,-0.72307634,-0.34940186,-0.7850655,-0.60839766,-0.78516483,-0.6883267,-0.09089232
+-1.1061666,-1.3597413,-1.2204721,-1.1321394,-1.2107854,-1.5173634,-1.3328393,-1.3697019,-1.2799804,-0.9623654,-1.0115675,-1.1485672,-1.279612,-1.2855515,-0.78134024,-0.91999114,-0.85589397,-0.83095926,-0.8221053,-0.7595415,-1.0389256,-1.1308004,-1.1589247,-0.7899662,-1.1746733,-0.88828677,-0.8828559,-0.89254206,-0.87599003,-0.64823496,-0.77561694,-1.0591881,-1.1017257,-1.0831892,-1.1259959,-1.0527456,-0.39809245,-0.015958704,-0.034480028,-0.33884645,-0.8952175,-1.000648,-1.1024506,-1.1884165,-0.88431776,-0.46229017,-0.2914936,-0.6207876,-0.8478051,-1.031773,-1.226612,-1.1324166,-1.0809457,-1.3628614,-1.3739479,-1.5092704,-1.5231293,-1.5252528,-1.5459291,-1.5465918,-1.5743006,-1.5851065,-1.5838485,-1.5885146,-1.6051651,-1.5786891,-1.5804875,-1.56272,-1.4808531,-1.533586,-1.5470185,-1.5843438,-1.5542247,-1.2761316,-1.2576194,-1.541359,-1.605699,-1.6116538,-1.6048657,-1.6113325,-1.6090641,-1.6123059,-1.5864749,-1.3708386,-1.1764076,-1.3947592,-1.6081693,-1.6504127,-1.6397114,-1.484899,-1.3094504,-0.92979693,-0.98508096,-0.8896738,-1.0425564,-1.2378333,-1.4955146,-1.5738515,-1.6198685,-1.6457005,-1.6470459,-1.6321386,-1.6545424,-1.646338,-1.654737,-1.6689663,-1.6760998,-1.6445122,-1.6398289,-1.5500714,-1.572881,-1.4534835,-1.5357469,-1.6076133,-1.655649,-1.6777854,-1.6973356,-1.6840899,-1.6475034,-1.5965589,-1.644113,-1.6421847,-1.5767515,-1.6724894,-1.6705945,-1.6464589,-1.6505004,-1.622525,-1.6117805,-1.6081866,-1.6541531,-1.6552005,-1.4659805,-1.4780633,-1.6493691,-1.6641173,-1.6956617,-1.6754612,-1.577583,-1.3102812,-1.1111994,-1.3037474,-1.5710864,-1.6641777,-1.6681907,-1.6599977,-1.6087962,-1.4611049,-1.5476856,-1.6233187,-1.6929371,-1.6555836,-1.6374296,-1.6687508,-1.3586261,-1.2371464,-0.6429634,-0.73360693,-1.1399326,-1.3666048,-1.5277364,-1.5877894,-1.6235555,-1.6574454,-1.6510007,-1.4992764,-1.4326075,-0.89817965,-1.1089185,-1.307717,-1.495144,-1.5930157,-1.6403533,-1.6419578,-1.2723421,-0.69540274,-0.71592927,-0.869421,-1.1365429,-1.3317895,-1.4858094,-1.5437006,-1.2308733,-1.3849332,-1.4417953,-1.2275505,-1.2225418,-1.3116127,-1.3807473,-1.3830037,-1.4533479,-1.501941,-1.5225735,-1.5440214,-1.4572707,-1.5087479,-1.5494695,-1.5714959,-1.5308881,-0.8643863,-1.0834445,-0.939072,-1.2144842,-1.2090378,-1.2501732,-1.273476,-1.297662,-1.269047,-1.278959,-1.315091,-1.3559749,-1.2080096,-1.2009605,-1.1073424,-1.0870501,-1.1127517,-1.2717686,-1.3140444,-1.3544289,-1.3527637,-1.3640072,-1.3866963,-1.3900509,-1.3972528,-1.3759105,-1.3939075,-1.403597,-1.4102895,-1.4126778,-1.4345561,-1.356302,-1.4143674,-1.4814239,-1.4277313,-1.3638,-0.9107356,-1.3334754,-1.1336088,-1.3561534,-1.3159821,-1.1459751,-1.2027149,-1.2500093,-1.3432311,-1.2888306,-1.2146635,-1.2961134,-1.2565217,-1.1173252,-1.4158617,-1.2865794,-1.39257,-1.138966,-1.0511546,-1.040154,-1.3012764,-1.2820997,-1.1884176,-1.051446,-0.7960856,-1.2880987,-1.414616,-1.4056413,-1.2133499,-1.1310804,-1.2389942,-1.2853129,-1.2100902,-1.0066993,-1.3471572,-1.3860046,-1.2024077,-1.3791429,-1.3202164,-1.313668,-1.3527195,-1.2063943,-1.3142747,-1.1999073,-1.4691223,-1.5611243,-1.4982312,-1.2060688,-0.78965646,-0.9756179,-0.80032194,-1.1910667,-0.973279,-1.0141711,-1.2365363,-1.3125829,-1.354762,-1.2813189,-1.2563353,-1.1427147,-1.249597,-1.1886685,-1.0582728,-1.0871847,-1.2636657,-1.415955,-1.441522,-1.3524454,-1.265174,-1.20741,-1.1797777,-1.1008667,-1.2823955,-1.2404134,-1.1645272,-1.1415467,-1.1382972,-1.0464201,-1.0060375,-1.026125,-1.0106758,-0.66764504,-1.3074169,-1.252431,-1.2483513,-1.2405088,-1.2015394,-1.1908097,-1.057939,-1.0348183,-1.1378391,-1.0964991,-0.7839731,-0.8844631,-1.1061252,-1.3082695,-1.3761685,-1.1644355,-1.1275458,-1.33443,-1.301543,-1.2679275,-1.2074797,-1.1572567,-1.1687517,-1.3856189,-1.1816996,-1.1128886,-1.0622337,-0.8436109,-1.224924,-1.2354388,-0.9733746,-1.1672459,-1.1544995,-1.0875936,-1.1442082,-0.94019294,-1.0713089,-1.0592021,-1.1034629,-0.99634874,-0.974841,-1.3482044,-0.9312353,-1.3314288,-0.8104031,-1.144479,-1.1450219,-0.8899348
+-0.38744038,-0.57167923,-0.52845776,-0.45370346,-0.57757604,-0.71120036,-0.8262413,-0.9577081,-0.31623644,-0.54753935,-0.6679345,-0.7429118,-0.7573608,-0.9502858,-0.9931681,-0.5603678,-0.4413221,0.1025197,0.06571715,-0.14679638,-0.36685672,-0.49030137,-0.55412614,-0.698897,-0.8702128,-0.95775986,-1.0514705,-1.197105,-0.5940804,-0.4422841,-0.11894313,-0.01933726,-0.30159146,-0.54713744,-0.7324574,-0.8974882,-0.9467968,-0.9592458,-1.0591097,-1.152734,-1.2022102,-1.2444513,-1.2967497,-1.4459462,-1.137875,-1.2069871,-1.2575375,-0.86248803,-0.9209987,-1.1249161,-1.2766938,-1.3334227,-1.3717407,-1.4110081,-1.4277214,-1.4653983,-1.4536309,-1.4635026,-1.5050696,-1.5038197,-1.506688,-1.4710644,-1.4502351,-1.4753615,-1.4889247,-1.51355,-1.5004089,-1.4937747,-1.4846966,-1.4654038,-1.4849813,-1.5155767,-1.4532123,-1.4785457,-1.4684514,-1.5325818,-1.5375221,-1.5480156,-1.5766575,-1.5833043,-1.5474226,-1.534348,-1.5338976,-1.5199251,-1.5181453,-1.508184,-1.2543712,-1.2420828,-1.3716881,-1.1438863,-1.1748437,-1.0997062,-0.88536495,-1.1494864,-0.9824654,-1.0833354,-1.3098931,-1.3906709,-1.4386525,-1.4569842,-1.4595705,-1.4551647,-1.5019658,-1.5232179,-1.535633,-1.5414678,-1.5112678,-1.4924864,-1.5211363,-1.4903262,-1.3578274,-1.4080627,-1.4456958,-1.4557381,-1.4967887,-1.4184914,-1.1164258,-0.922081,-0.9224783,-0.8789399,-0.7592512,-0.5091097,-0.35350862,-0.5389317,-0.636129,-0.5028418,-0.3246823,-0.39938676,-0.6580087,-0.78035355,-0.8937186,-1.1059395,-0.27664983,-0.6152724,-0.8306681,-0.90926456,-1.1225362,-1.2246013,-1.123487,-1.1284696,-0.8500999,-0.6221057,-0.24463928,0.38883704,0.32843426,0.21590516,0.08996814,-0.14630777,-0.37729046,-0.39487356,-0.6127874,-0.8572706,-0.9751054,-1.0682559,-0.99636865,-0.47509634,-0.5906625,-0.84768957,-0.98301864,-1.092943,-1.1560185,-1.2263441,-1.3407638,-1.3381186,-1.1392363,-1.03194,-1.1119332,-1.1680903,-1.2914313,-1.2248304,-1.1601629,-1.3361586,-1.431624,-1.0536969,-0.13261873,0.09464676,0.017041586,-0.39956248,-0.70925176,-0.93364036,-1.1161675,-1.2636242,-0.9417863,-0.9549824,-1.0550189,-0.9646199,-1.0806524,-1.2237885,-1.2570729,-1.3293316,-1.3373649,-0.770317,-0.7851125,-0.99341583,-1.1111269,-1.2386628,-1.2361481,-1.2711253,-1.284126,-1.3151395,-1.3429358,-1.2915657,-1.3289275,-1.3534417,-1.3859624,-1.3798813,-1.3771403,-1.0782845,-1.0912702,-1.2052852,-1.27758,-1.2645046,-1.3265235,-1.2715615,-1.2892041,-1.2878706,-1.3099692,-0.63550794,0.3313556,0.14070734,-0.062102593,-0.24560025,-0.42752683,-0.5951191,-0.71188414,-0.74920535,-0.80012363,-0.87542653,-0.9218855,-0.9302412,-0.79671264,-1.1237032,-1.1137135,-1.02601,-0.3598469,0.33103254,-0.44378024,-0.72779,-0.8297278,-0.80918694,-0.49579078,-0.8436803,-0.9482739,-1.2366242,-1.1793308,-1.0810832,-1.0766972,-1.1480894,-1.1079082,-1.1018231,-1.079957,-1.1429994,-1.0683914,-1.0309044,-0.9860133,-1.0368271,-1.0204134,-0.9303043,-0.94240713,-0.6848123,-0.6169325,-1.3524307,-1.2866852,-1.1708331,-1.107025,-0.68353844,-0.27955043,-0.5748482,-0.4622891,-1.0255127,-0.98146534,-0.9455199,-0.97715616,-0.9524709,-0.84890556,-0.66731054,-0.78796804,-0.8155763,-0.8090768,-0.48878443,-0.7572497,-1.0874579,-0.81157607,-0.5082288,-0.5901315,-0.6049826,-0.7824657,-0.5893534,-0.38361245,-0.12063096,-0.32574016,-0.38648427,-0.68787044,-0.8182822,-0.6031682,-0.38948625,-0.82396394,-0.38176662,-0.37569958,-0.83989215,-0.89940554,-0.8876327,-0.90370667,-0.84028405,-0.803552,-0.7826635,-0.78698575,-0.77032787,-0.69250405,-0.71279764,-0.7267813,-0.61217666,-0.3775121,-0.422633,-0.4600852,-0.22381082,-0.0631068,-0.17825127,-0.32638478,-0.62276,-0.815435,-0.8303963,-0.75411737,-0.49848717,-0.48411584,-0.61942637,-0.40808195,-0.22872019,-0.43020982,-0.89942646,-1.0210812,-0.96839046,-0.83269995,-0.4668367,-0.9380808,-0.9430506,-0.9047047,-0.80421245,-0.7633996,-0.6318628,-0.895756,-0.87691814,-0.8193095,-0.7275281,-0.63419676,-0.7073274,-0.712492,-0.7229992,-0.7636941,-0.6905841,-0.66156197,-0.7005458,-0.6354203,-0.64639956,-0.68815815,-0.76566184,-0.661157,-0.13579887,-0.50197434,-0.336361,-0.4363191,-0.37066063,-0.119369455,-0.38653523,-0.28809768
+-1.4187887,-1.5497606,-1.7188928,-1.7446458,-1.7625823,-1.7926226,-1.781234,-1.4048443,-0.28370437,-0.76071286,-0.6619871,-0.38673893,-0.502769,-1.031138,-1.3411546,-1.1867964,-0.7428583,-0.62980664,-0.9226327,-1.3876923,-1.581665,-1.575742,-1.5699577,-1.6677101,-1.68261,-1.6994164,-1.698438,-1.6953003,-1.4337125,-0.89352584,-0.5881026,-0.28165644,-0.6505377,-1.1426842,-1.3967042,-1.542537,-1.6381365,-1.6673887,-1.6597147,-1.6782207,-1.6887954,-1.6787133,-1.6766335,-1.6459081,-1.5428762,-1.6300988,-1.3642039,-0.20987439,-0.58932734,-1.0423596,-1.4427533,-1.6263499,-1.6751943,-1.6968968,-1.7147915,-1.7081896,-1.7049603,-1.7179894,-1.7167921,-1.7088332,-1.6668928,-1.3593769,-0.97994626,-1.5006306,-1.6000483,-1.5781708,-1.2556963,-1.4545541,-1.5888705,-1.6318836,-1.6233511,-1.5966387,-1.557431,-1.6149962,-1.6427948,-1.6751361,-1.6879326,-1.7049605,-1.7215686,-1.6780714,-1.5914896,-1.5661712,-1.5654476,-1.3292013,-1.0668081,-1.3639399,-1.4706326,-1.0693756,-1.2764313,-1.426482,-1.1269379,-0.878954,-0.56683075,-1.187396,-1.3141594,-1.5503336,-1.6341879,-1.6311853,-1.6232203,-1.6460546,-1.6609144,-1.6677611,-1.6831988,-1.6923592,-1.70231,-1.6707454,-1.6664805,-1.6437109,-1.5874542,-1.5483817,-1.1876913,-1.2063546,-1.1577711,-1.4308739,-1.5272965,-1.3472898,-1.335698,-1.0721487,-1.1087155,-0.994169,-0.72632146,-0.77948207,-1.0864861,-1.2830675,-1.417358,-0.7156323,-0.50752234,-0.54615426,-0.7860029,-0.9347472,-0.95389783,-0.8362678,-0.7454324,-1.2578452,-1.4364219,-1.4870751,-1.3036505,-1.4149883,-1.4997119,-1.3994707,-0.9253231,-1.1698271,-0.88274276,-0.591622,-0.7812683,-0.9047024,-1.2606735,-1.4370396,-1.173066,-1.251039,-1.420514,-1.4775792,-1.4889274,-1.492304,-1.4906833,-1.4682496,-1.5008026,-1.5167489,-1.2449198,-0.8777606,-0.4063874,-1.0943397,-1.3110298,-1.4365468,-1.0209498,-0.93380344,-1.2101754,-0.70541674,-0.4377079,-0.8675375,-1.3192832,-1.5374737,-1.5482777,-1.5234745,-1.3050828,-1.2565311,-1.441704,-1.5263498,-1.5253224,-1.5023795,-1.5068781,-1.4824339,-1.082454,-0.54916245,-0.81583166,-1.1126909,-1.4223313,-1.5408618,-1.5692558,-1.5540662,-1.5424461,-0.263364,-0.28123862,-0.60124695,-0.9386445,-1.19383,-1.4017516,-1.4900005,-1.5314168,-1.5446004,-1.552601,-1.5585628,-1.5413948,-1.5526829,-1.5484142,-1.5255057,-1.516832,-1.4726727,-1.4758974,-1.5008817,-1.4951744,-1.4815688,-1.4879328,-1.4891043,-1.4796063,-1.4711223,-0.88081974,0.11765795,0.24919587,0.12952569,-0.09747983,-0.4104641,-0.5975878,-0.7266424,-0.8317563,-0.95383453,-1.0729413,-1.2001312,-1.2975829,-1.3616669,-1.4078503,-1.4907045,-1.467915,-1.4778365,-0.9347153,-0.17587247,-0.4681611,-0.77397656,-1.0387055,-1.1096547,-1.0688542,-1.1946969,-1.2657676,-1.4677007,-1.4949558,-1.4033594,-1.3483529,-1.5322285,-1.5217144,-1.5027194,-1.507623,-1.5244174,-1.5158956,-1.5220351,-1.5292119,-1.5421263,-1.5246702,-1.5323266,-1.5534525,-1.3923839,-0.6466176,-1.3310425,-1.4379739,-1.4561822,-1.3886919,-0.74685687,-0.11858999,-0.6387648,-0.667194,-1.2006085,-1.2920058,-1.3416626,-1.379519,-1.3861812,-1.0947394,-0.91536546,-1.0415628,-1.1257083,-1.1371262,-1.1964476,-0.9554783,-1.4359963,-1.2822382,-1.3066432,-1.3217503,-1.3654327,-1.3924583,-1.3754742,-1.3172812,-0.34334797,0.18905881,0.03479842,-0.40818965,-0.64922965,-0.6057474,-0.30317402,-1.0500641,-0.84492,-0.9521811,-1.3027163,-1.4107771,-1.4581023,-1.4851007,-1.4663532,-1.4555058,-1.4588051,-1.4705164,-1.4751636,-1.47898,-1.5116341,-1.5547637,-1.5719076,-1.5908418,-1.5923111,-1.6082468,-1.6306462,-1.6520358,-1.605485,-0.6148647,0.091321655,-0.5630709,-0.8777783,-1.0112951,-1.0109639,-0.8925472,-0.9875982,-1.2002383,-1.3350456,-1.4916376,-1.6331328,-1.7031657,-1.6452084,-1.6032146,-1.6057681,-1.7221444,-1.7702411,-1.7250046,-1.7061579,-1.7141746,-1.7094272,-1.7521212,-1.7447202,-1.7350273,-1.721891,-1.7141027,-1.6961002,-1.7073467,-1.712658,-1.7108543,-1.7170855,-1.7059699,-1.6926267,-1.688154,-1.6993546,-1.683285,-1.6609535,-1.6541454,-1.6713092,-1.6882719,-1.6977363,-1.6953611,-1.2988929,-0.6729242,-1.1995842,-1.4196166
+-1.8506181,-1.8655586,-1.8963768,-1.9284465,-1.9189887,-1.894952,-1.9204497,-1.7150146,-0.8523647,-1.4067961,-1.607596,-0.61096126,-0.6332857,-1.163189,-1.4546204,-1.6089516,-1.6717954,-1.7159675,-1.8112085,-1.858791,-1.8533474,-1.8151445,-1.362871,-1.6492666,-1.791362,-1.8339211,-1.8437959,-1.8618267,-1.8450707,-1.8200879,-1.6474183,-1.619196,-1.785305,-1.8220612,-1.8386056,-1.7834255,-1.7955278,-1.8330292,-1.8110781,-1.8343954,-1.8444946,-1.8618206,-1.8252872,-1.8797948,-1.7408354,-1.833993,-1.2560341,-0.481049,-0.5607373,-1.1802046,-1.6338668,-1.7937343,-1.8292382,-1.8381847,-1.8359724,-1.8181474,-1.8328274,-1.8526425,-1.870339,-1.6373045,-1.5171809,-1.5230626,-1.6367457,-1.8022155,-1.8481613,-1.8003511,-1.3862622,-1.5244235,-1.7190297,-1.8469805,-1.842087,-1.8432852,-1.8270047,-1.860956,-1.8379241,-1.8543231,-1.8517348,-1.8664923,-1.8759143,-1.8829594,-1.8316159,-1.8082584,-1.8349261,-1.8619771,-1.7406809,-1.7676725,-1.8289442,-1.7812186,-1.593302,-1.6704097,-1.7822647,-1.4058435,-1.3615005,-1.6794766,-1.7654352,-1.8205423,-1.861202,-1.842949,-1.8321939,-1.8331594,-1.8658775,-1.8597126,-1.862103,-1.8651417,-1.862804,-1.8712872,-1.8713213,-1.5230072,-1.6521806,-1.3498992,-0.6088422,-1.1784201,-1.5269086,-1.69401,-1.763977,-1.7312202,-1.3917513,-1.5067978,-1.3135483,-1.5370407,-1.641447,-0.860195,-1.0377283,-1.0262163,-1.223518,-1.4615672,-1.2477175,-0.6252584,-0.7075038,-1.2777767,-1.6121418,-1.547999,-0.84345937,-1.4295602,-1.1577845,-0.919263,-1.3490936,-1.6110333,-1.7158421,-1.7617342,-1.7606528,-1.766747,-1.7052904,-0.5380857,-0.9470959,-1.3510361,-1.523142,-1.6523982,-1.570843,-1.4502685,-1.6059848,-1.6992817,-1.7057626,-1.5015072,-1.4637113,-1.6093578,-1.7494376,-1.7761034,-1.6371503,-0.44058448,0.18714982,-0.5008253,-0.97478116,-1.3140175,-1.3204387,-1.0551515,-1.3807032,-1.592036,-1.7149057,-1.7773981,-1.7922198,-1.8162396,-1.8333268,-1.8010659,-1.8022505,-1.8048239,-1.7891487,-1.8012484,-1.8365695,-1.0741112,-1.408511,-1.5768416,-0.79420966,-0.8326279,-1.2258675,-1.483419,-1.6422863,-1.740095,-1.7811589,-1.7792885,-1.7797031,-1.2544597,-1.138688,-1.4215081,-1.6150658,-1.7014039,-1.7626085,-1.7919958,-1.8068373,-1.8060278,-1.8128136,-1.8111659,-1.7948096,-1.7860237,-1.8118466,-1.8147182,-1.8185534,-1.8279784,-1.8044965,-1.8162637,-1.8182497,-1.8154261,-1.8221292,-1.8180873,-1.824444,-1.7700086,-1.4223672,-0.02868557,0.34314036,-0.18718347,-0.5429845,-0.73681974,-0.94239664,-1.0662684,-1.1783285,-1.2746052,-1.3878335,-1.4891236,-1.5874358,-1.6505724,-1.7164146,-1.735371,-1.6950929,-1.7333169,-1.7808868,-1.7352828,-1.7470889,-1.7633581,-1.7847668,-1.7533193,-1.7697456,-1.7423929,-1.7399359,-1.8047024,-1.7702909,-1.7822136,-1.6632178,-1.7587076,-1.7680906,-1.7999392,-1.7828993,-1.7782352,-1.7222791,-1.7555095,-1.7902074,-1.803237,-1.7946678,-1.7994778,-1.7973701,-1.7942675,-1.7488494,-1.8040843,-1.7963237,-1.8051952,-1.8423054,-0.47879082,-0.12217777,-0.47721946,-0.65953475,-1.0472779,-1.162695,-1.2675129,-1.3488829,-1.3396018,-1.1173263,-0.81009823,-0.9099512,-1.0657711,-1.1387812,-1.2937429,-1.2889524,-1.4803221,-1.4339349,-1.5219909,-1.6000077,-1.6363467,-1.6666107,-1.6814367,-1.693713,0.020631589,0.019232117,-0.17699623,-0.34873736,-0.5848699,-0.64781225,-0.39961404,-0.8692157,-0.9363916,-0.9863931,-1.326148,-1.4862542,-1.5618428,-1.643863,-1.6479428,-1.6464849,-1.6625673,-1.7087286,-1.7134438,-1.7315233,-1.7513258,-1.7784326,-1.7932267,-1.7879711,-1.792726,-1.7875643,-1.7964153,-1.7986348,-1.7046335,-0.292117,-0.10457028,-0.60268056,-0.9554255,-1.065243,-1.0797348,-1.0597937,-1.1617258,-1.373596,-1.5281515,-1.6425042,-1.7230519,-1.783951,-1.8014708,-1.7309508,-1.7880751,-1.7737377,-1.8202133,-1.7932796,-1.7739668,-1.7885197,-1.7707837,-1.7818115,-1.803762,-1.8169048,-1.8048478,-1.8113626,-1.7781777,-1.7811532,-1.7968011,-1.8057528,-1.8144528,-1.8114285,-1.8226082,-1.8246166,-1.831916,-1.8244722,-1.8016976,-1.7810471,-1.7567389,-1.8128833,-1.7950897,-1.8150377,-1.4134636,-1.0974507,-1.4647352,-1.7112069
+-1.8036022,-1.7665223,-1.7992585,-1.8074533,-1.8056593,-1.8061861,-1.7845244,-1.4086541,-1.1125889,-1.5374459,-1.6423563,-1.4390497,-1.3580596,-1.6672444,-1.7551885,-1.7855562,-1.8003738,-1.8036202,-1.801373,-1.8109154,-1.8116736,-1.7337112,-1.6823477,-1.7622955,-1.7834988,-1.7981241,-1.8161494,-1.8378808,-1.8222266,-1.8169719,-1.8400264,-1.8099622,-1.8287365,-1.8223008,-1.7715089,-1.7340381,-1.7389208,-1.7946796,-1.7918656,-1.8057274,-1.8095944,-1.8172286,-1.7684577,-1.7569994,-1.7254376,-1.7809991,-1.5128074,-1.1138852,-0.97528315,-1.5272454,-1.7591583,-1.8034528,-1.8120432,-1.8036075,-1.8030989,-1.8013344,-1.8220084,-1.8335422,-1.8059473,-1.7314615,-1.6108984,-1.7301869,-1.687854,-1.7615333,-1.7349355,-1.7015359,-1.6890675,-1.6740398,-1.6999322,-1.714263,-1.6934421,-1.711993,-1.7273185,-1.7611179,-1.770164,-1.7794528,-1.7826476,-1.7943492,-1.797822,-1.7597374,-1.6960001,-1.675647,-1.6952825,-1.7191427,-1.6049104,-1.491339,-1.3080583,-1.1221232,-1.1375445,-1.2909901,-1.5439639,-1.5703499,-1.1885961,-1.5424612,-1.6914078,-1.6993275,-1.6811417,-1.7024186,-1.6878273,-1.7160571,-1.7297614,-1.7392948,-1.7401304,-1.7481061,-1.7454013,-1.7434592,-1.7087871,-1.6889116,-1.6694375,-1.5425655,-1.5965313,-1.6125182,-1.6159239,-1.6342306,-1.6514137,-1.3702886,-1.4404498,-1.0618585,-1.2097687,-1.4353886,-1.5159523,-1.5483098,-1.2717397,-1.1800084,-1.0602269,-1.0574088,-1.4008979,-1.4402945,-1.5099733,-1.557625,-1.2631013,-0.96673775,-0.9065572,-0.9731039,-0.7582897,-0.4822002,-0.9978142,-1.3118682,-1.4853034,-1.5303223,-1.5765326,-1.3391473,-0.7170559,-0.54703087,-1.0397158,-1.0976009,-1.3648865,-1.4440439,-1.3596679,-1.1136792,-1.2600368,-1.3323536,-1.1031605,-1.0461884,-1.12134,-1.0944569,-1.3227382,-1.4828781,-1.3517263,-0.16973114,-0.3217393,-0.81069595,-1.1923566,-1.3031378,-1.494341,-1.5563121,-1.5823536,-1.5339339,-1.6087086,-1.6435163,-1.6382332,-1.6405991,-1.5972319,-1.5555077,-1.5540589,-1.5691183,-1.5772665,-1.6021178,-1.2745464,-0.4102317,-0.8545319,-1.114379,-0.46927512,-0.3958305,-0.9323702,-1.1987479,-1.4537592,-1.5797683,-1.6134235,-1.5977268,-1.528898,-1.5138109,-1.5242677,-1.5534027,-1.5809929,-1.5821826,-1.5908754,-1.6043603,-1.6155386,-1.6261929,-1.6293151,-1.631911,-1.6085982,-1.5807749,-1.5868491,-1.5818304,-1.5723153,-1.5601758,-1.5621686,-1.5580777,-1.5458391,-1.5404868,-1.5487044,-1.5571177,-1.5560931,-1.5297983,-1.4937226,-1.2824681,-0.67872584,-0.7536037,-1.0019467,-1.2183461,-1.322013,-1.3461987,-1.3965251,-1.4455482,-1.4787343,-1.5063584,-1.5238311,-1.539037,-1.555683,-1.5489794,-1.5405772,-1.5360322,-1.5395133,-1.499228,-1.5348153,-1.5422924,-1.5489404,-1.4962723,-1.5264138,-1.5327415,-1.5249772,-1.5893224,-1.5778137,-1.5647292,-1.110763,-0.98413515,-1.2760215,-1.3851919,-1.4384276,-1.4341495,-1.4512863,-1.4920434,-1.5320151,-1.5421827,-1.5411273,-1.540729,-1.5630516,-1.5475944,-1.5162349,-1.582607,-1.5161008,-1.5545837,-1.5091692,-0.5457727,-0.020091422,-0.34543133,-0.57695854,-0.79609454,-0.96670496,-1.090503,-1.117408,-0.77880716,-0.39609364,-0.03324976,-0.11960619,-0.4587971,-0.66375935,-0.89918804,-1.0665325,-1.2282146,-1.295181,-1.3605852,-1.4540119,-1.5039072,-1.5247316,-1.5115908,-1.3375779,-0.16045475,0.05918169,-0.16674083,-0.322758,-0.5777752,-0.7740723,-0.39785662,-0.6342015,-0.7330938,-0.914979,-1.1037407,-1.3501608,-1.3685155,-1.4571127,-1.5174614,-1.5641086,-1.6063849,-1.6251146,-1.6439164,-1.645866,-1.6532286,-1.6605451,-1.6672516,-1.663589,-1.6503398,-1.6658592,-1.6697844,-1.6710447,-1.6445978,-1.0304165,-0.7415325,-0.99548054,-1.3113389,-1.4238579,-1.4907938,-1.44677,-1.4841503,-1.5985053,-1.641597,-1.66668,-1.7074617,-1.7309421,-1.6969566,-1.7021353,-1.7212567,-1.6879144,-1.730301,-1.7028661,-1.698846,-1.6996225,-1.7037518,-1.7243224,-1.7350663,-1.7284043,-1.7219858,-1.7128332,-1.6917949,-1.6996214,-1.7028438,-1.7103227,-1.7179394,-1.7180738,-1.7218769,-1.7122566,-1.7061977,-1.7034264,-1.7077558,-1.7252314,-1.7321917,-1.7566612,-1.7571647,-1.7663692,-1.7460332,-1.7323754,-1.7600969,-1.7914214
+-1.7779772,-1.6469918,-1.6835766,-1.690022,-1.691808,-1.7079934,-1.7039816,-1.3657372,-1.5024968,-1.6212122,-1.5961603,-1.6161339,-1.616593,-1.661072,-1.6888438,-1.6866388,-1.6849831,-1.6898587,-1.7051394,-1.7062242,-1.7175503,-1.6532402,-1.5752542,-1.6628292,-1.6730087,-1.6864815,-1.6971993,-1.7066038,-1.7047117,-1.6951814,-1.7089039,-1.6610147,-1.6689903,-1.6902915,-1.6991675,-1.7253118,-1.6689272,-1.6964843,-1.6749123,-1.6946875,-1.7000673,-1.7290564,-1.683786,-1.4221848,-1.4693134,-1.6239703,-1.6583388,-1.5960436,-1.6304477,-1.6753224,-1.6994593,-1.7074665,-1.7135354,-1.7165215,-1.6927004,-1.6715642,-1.7144672,-1.7228866,-1.7493255,-1.4502985,-0.9720764,-1.241879,-1.4419663,-1.5515456,-1.576437,-1.5703785,-1.5896399,-1.6086917,-1.6170673,-1.6173557,-1.2753314,-0.7791543,-0.86101884,-1.2530828,-1.4829109,-1.5649958,-1.5971311,-1.6339103,-1.663161,-1.6513629,-1.620124,-1.5851486,-1.599223,-1.6534007,-1.524513,-1.1452926,-1.381139,-1.4007456,-1.1150557,-1.1971608,-1.1561236,-0.69813526,0.08769152,-0.74734926,-1.2108033,-1.38326,-1.1800709,-0.7460482,-0.3850032,-0.97570574,-1.198002,-1.3773396,-1.1384892,-1.3201488,-1.4812449,-1.5042044,-1.4698544,-1.2503811,-0.7693894,-1.0431764,-1.2701335,-1.4032528,-1.4584477,-1.49206,-1.4812349,-1.1988764,-1.0354116,-1.1821649,-1.3145785,-1.442069,-1.4448395,-1.2293468,-1.0886194,-1.2045562,-0.5306155,-0.40316343,-0.65236044,-0.899055,-1.2253913,-1.1125337,-0.6254139,-0.7880314,-0.6505008,-0.5580137,-0.17302531,0.017467909,-0.7201681,-1.1715019,-1.3345244,-1.3208867,-1.379358,-1.3821375,-1.3887908,-1.0325755,-1.0076053,0.27366787,-0.15387797,-0.67136276,-0.9248018,-0.86008155,-0.74408746,-0.9319941,-0.5127494,-0.46157575,-0.80960244,-0.6846637,-1.0406573,-1.2257406,-1.0222334,0.8562506,0.35608578,-0.14997792,-0.52429914,-0.73505545,-0.77096814,-0.9710882,-1.1617103,-1.2727268,-1.380029,-1.4600978,-1.5002117,-1.5073477,-1.5092461,-1.4828196,-1.3845525,-1.4490187,-1.467981,-1.1174508,0.20387405,0.31299973,-0.25901288,-0.46472496,0.20216414,0.09981272,-0.51821744,-0.81653196,-1.0048275,-1.1909652,-1.3062005,-1.4003439,-0.8364854,-0.71985626,-1.044501,-1.2294312,-1.3478022,-1.4399078,-1.493444,-1.5043402,-1.5078559,-1.5173239,-1.5283229,-1.5458837,-1.5421535,-1.4930058,-1.5037097,-1.5350533,-1.560962,-1.5551451,-1.5462502,-1.5461115,-1.5434144,-1.5538963,-1.5701289,-1.5710262,-1.5639571,-1.5527822,-1.5412211,-1.3373878,-1.2841526,-1.447623,-1.4891162,-1.5395049,-1.5146784,-1.5158017,-1.4567348,-1.4875381,-1.4990652,-1.528217,-1.5646598,-1.5811731,-1.5949931,-1.5568371,-1.5618203,-1.5433052,-1.5748843,-1.50088,-1.5397114,-1.5592372,-1.5714302,-1.5292153,-1.5589702,-1.5152066,-1.5061066,-1.5732176,-1.5554106,-1.5747228,-0.8324037,-0.59335077,-0.8712501,-1.0680329,-1.195388,-1.3111916,-1.2767596,-1.322849,-1.4148897,-1.4606525,-1.4659784,-1.4694684,-1.4941161,-1.5177381,-1.4779682,-1.5070522,-1.5285832,-1.5194646,-1.5504061,-1.0869374,-0.54955953,-0.85949486,-1.0745327,-1.1672112,-1.2836101,-1.387584,-1.4301735,-1.2127885,-1.277787,-0.9650543,-0.7960981,-1.0731802,-1.260248,-1.3146396,-1.3562112,-1.3820329,-1.4237189,-1.4715824,-1.5023582,-1.5078589,-1.5112079,-1.5329635,-1.4915721,-1.0558925,-0.8476099,-1.0292131,-0.93609095,-1.0935792,-1.242486,-0.63801855,-0.71814233,-0.99306095,-1.1231921,-1.2001903,-1.3292797,-1.3638697,-1.3936152,-1.4296925,-1.448813,-1.4797581,-1.4821258,-1.5012017,-1.517552,-1.5356978,-1.5621185,-1.5709982,-1.5748277,-1.5318885,-1.5603416,-1.5869045,-1.6029615,-1.5971773,-1.4867959,-1.2175676,-1.3196417,-1.4760773,-1.4932568,-1.5398748,-1.533263,-1.5062284,-1.5517981,-1.5981573,-1.626914,-1.6253111,-1.6322849,-1.6555607,-1.650903,-1.6758611,-1.6114485,-1.6439705,-1.6542203,-1.6384931,-1.6354607,-1.6346078,-1.65806,-1.6691964,-1.68791,-1.6859581,-1.6768568,-1.6749606,-1.6775625,-1.6693671,-1.6963444,-1.7082412,-1.7030741,-1.7000209,-1.7013072,-1.7027078,-1.7007937,-1.6978471,-1.7065583,-1.671553,-1.6977651,-1.7145063,-1.704603,-1.6878226,-1.6809199,-1.700515,-1.7143428
+-1.7345967,-1.6965964,-1.7135243,-1.7166088,-1.6995689,-1.6908474,-1.6472217,-1.3625551,-1.578695,-1.6518471,-1.6569897,-1.7007214,-1.688166,-1.7058502,-1.7379146,-1.7385159,-1.7413962,-1.7670476,-1.7712927,-1.7684727,-1.7694392,-1.5170217,-1.0103481,-1.4701973,-1.6725459,-1.7236564,-1.7490988,-1.7868947,-1.7793663,-1.7843411,-1.797819,-1.7488314,-1.7327586,-1.7137197,-1.6997789,-1.6868012,-1.6460974,-1.6702799,-1.6780429,-1.6997085,-1.6990937,-1.6961703,-1.6381087,-1.4258454,-1.2842118,-1.550565,-1.6600754,-1.685781,-1.697959,-1.7171142,-1.7179677,-1.696752,-1.6895818,-1.6826764,-1.6370728,-1.6277691,-1.69376,-1.7171345,-1.6665728,-1.3320236,-0.76474464,-0.8975648,-1.2129626,-1.5161158,-1.5994732,-1.6061773,-1.6337135,-1.6250492,-1.486643,-1.1655494,-1.1552382,-1.232671,-1.0548682,-1.257132,-1.4778384,-1.5775976,-1.4694268,-1.5604274,-1.6097615,-1.6284348,-1.5978751,-1.5783749,-1.4704705,-1.2247045,-1.2243502,-1.1882814,-1.1159012,-1.0066227,-0.91854346,-0.9926603,-0.9477674,-0.9695046,-0.08929441,-0.38796026,-0.7768154,-0.8992073,-0.72828686,-0.74417084,-0.6558928,-0.6627668,-0.8739663,-0.9676311,-0.751274,-0.73777354,-0.8445146,-0.8446181,-0.91809845,-1.0707694,-0.9013103,-0.5894429,-0.51220596,-0.73166823,-0.98770905,-1.181678,-1.0228988,-0.61781013,-0.7813033,-0.7966994,-0.8809844,-0.54042464,-0.12995347,-0.32385033,-0.3256824,-0.51163244,0.12579018,-0.11775646,0.045757823,-0.33361468,-0.56174946,-0.57721376,-0.5220655,0.0437563,0.27392834,0.30640584,0.2937913,0.5986508,0.33062512,-0.13166824,-0.37244958,-0.36200336,-0.20360592,-0.50836563,-0.4685815,0.09300012,0.20697376,0.2846438,0.15519178,-0.06990851,-0.18412232,-0.25123945,0.12255351,0.12668782,0.3921918,0.20423353,0.002220124,-0.2292994,-0.45268953,-0.599767,-0.3248876,0.8333579,0.15890795,-0.1653254,-0.356626,-0.46697068,-0.5060757,-0.5948712,-0.74799114,-0.84589297,-0.97141767,-1.0534326,-1.0729604,-1.1189661,-1.1745219,-1.1239412,-1.1342509,-1.0190382,-1.0112554,-0.666409,0.5198203,0.37380388,0.18239668,0.123036765,0.4553132,0.35255167,0.0064807385,-0.31280693,-0.5476476,-0.6986994,-0.83669806,-0.87319994,0.06100452,0.35637003,-0.027799532,-0.31265873,-0.539353,-0.68733954,-0.79189724,-0.9131715,-0.9847386,-1.0603399,-1.1059306,-1.155148,-1.171251,-1.1943026,-1.210654,-1.2118638,-1.2594154,-1.2751226,-1.2617939,-1.2831632,-1.3198771,-1.3107581,-1.3267081,-1.3491607,-1.3674736,-1.3766263,-1.3775344,-1.3613516,-1.3508809,-1.2706829,-1.3371596,-1.33423,-1.3025377,-1.1827894,-1.0247927,-0.9865761,-0.952909,-1.0495627,-1.1516871,-1.2167146,-1.3072433,-1.2776426,-1.2661963,-1.3019176,-1.3338983,-1.2903786,-1.2750385,-1.326181,-1.2884163,-1.2867012,-1.3076246,-1.2754191,-1.344907,-1.3602588,-1.3468462,-1.2849579,-0.1124259,0.035167582,-0.12143283,-0.337533,-0.46926683,-0.5592987,-0.65411067,-0.728716,-0.77936715,-0.8482604,-0.8745581,-0.91850734,-0.9767196,-1.0512803,-1.1124468,-1.0947018,-1.1156569,-1.0766876,-1.1498835,-0.9317099,-0.8342626,-0.9519415,-0.99856734,-1.0548463,-1.09095,-1.1160977,-1.0711799,-0.6332396,-0.73483694,-0.6492398,-0.6506171,-0.8378167,-0.89789367,-0.95667076,-1.0183976,-1.0950966,-1.1307261,-1.1649802,-1.2106607,-1.2738333,-1.2917138,-1.3526001,-1.3433373,-0.922446,-0.9109671,-0.9538194,-0.9485148,-1.025836,-1.1297014,-0.67475283,-0.72822225,-0.8676016,-0.97223616,-1.0542086,-1.2123891,-1.2528846,-1.3141397,-1.4020584,-1.4178469,-1.408042,-1.4177375,-1.4312091,-1.4731741,-1.5046523,-1.4911087,-1.538789,-1.5786633,-1.5513263,-1.5643548,-1.5661178,-1.5822845,-1.5889331,-1.5276061,-1.2877297,-1.2885711,-1.3290446,-1.420595,-1.5114157,-1.4210728,-1.4319551,-1.5472246,-1.5939982,-1.6481904,-1.6770585,-1.7003049,-1.736831,-1.7318404,-1.7238648,-1.6818055,-1.6617695,-1.673096,-1.3703,-1.483237,-1.6070142,-1.6595435,-1.6850302,-1.662743,-1.6291995,-1.6483788,-1.6490684,-1.6417356,-1.6623802,-1.6643094,-1.6544112,-1.6523033,-1.647496,-1.6433585,-1.6357118,-1.6344467,-1.6518891,-1.6696566,-1.6922878,-1.722426,-1.7434158,-1.7324884,-1.7319374,-1.7314967,-1.7563841,-1.771762
+-1.1711674,-1.6166338,-1.5402157,-1.5940297,-1.607597,-1.6201466,-1.6190646,-1.5361485,-1.5974529,-1.6659882,-1.6666628,-1.7258346,-1.7205604,-1.7079463,-1.728306,-1.7769964,-1.7715187,-1.772999,-1.758833,-1.7425196,-1.7156788,-1.3261619,-0.96644735,-1.2831017,-1.5550272,-1.6827809,-1.7521174,-1.7899017,-1.7931015,-1.7935638,-1.8070804,-1.7679147,-1.7319393,-1.6643041,-1.6535757,-1.6740291,-1.6894549,-1.7209209,-1.7069302,-1.7172668,-1.7056521,-1.7036088,-1.6641157,-1.495877,-1.4016567,-1.2979529,-1.5052426,-1.6807712,-1.7414955,-1.7685977,-1.7581279,-1.7409239,-1.7446358,-1.7321076,-1.6747783,-1.5066823,-1.7112985,-1.748328,-1.5442731,-1.3365368,-1.4901942,-1.3049662,-1.2004877,-1.4268379,-1.5369711,-1.5557904,-1.5782719,-1.5542953,-1.3813139,-1.0836643,-0.5220484,-0.60953695,-0.7467638,-0.941545,-1.0732363,-1.1600196,-1.0568848,-1.1816957,-1.3843611,-1.4394994,-1.4379287,-0.96895766,-0.70551324,-0.3867966,-0.2083031,-0.36301184,-0.5504151,-0.41712314,-0.10328878,-0.2864642,-0.111390896,-0.1045079,-0.10801358,-0.062493823,-0.22624245,-0.40035704,-0.49463916,-0.5684481,-0.40942276,-0.13695416,-0.17367941,-0.31596732,-0.26999387,-0.2659238,-0.3671566,-0.47998,-0.44330835,-0.51310766,-0.55331004,-0.5602231,-0.49586737,-0.561617,-0.6602584,-0.8384907,-0.8954963,-0.3113294,-0.0488571,-0.18099535,-0.2818473,-0.2955976,-0.13188854,-0.16809279,-0.113503836,-0.24646866,-0.22632945,-0.13257146,-0.34811556,-0.4817664,-0.4760598,-0.4058472,-0.2157115,-0.070319556,0.037651427,0.10228435,0.016289257,0.41587824,0.16856688,-0.090767615,-0.1802054,-0.2324259,0.13540813,-0.121135585,-0.11967274,0.3389492,0.13468125,0.18228123,0.020237885,0.103591256,0.0639841,-0.056946732,0.108030595,-0.08545067,0.024426304,-0.032410584,-0.13662103,-0.28107888,-0.34024033,-0.42292058,-0.029437594,-0.027824543,-0.2509861,-0.40339488,-0.44415092,-0.44986075,-0.44323146,-0.487737,-0.5009787,-0.589267,-0.6809693,-0.7879549,-0.8074175,-0.5990048,-0.4546141,-0.2685664,-0.2657783,-0.14554086,-0.26047307,-0.3060501,0.024168886,-0.10653279,-0.1546568,-0.2892661,-0.35002804,-0.34098846,-0.46211505,-0.58957016,-0.67571926,-0.7501965,-0.81063056,-0.86039853,-0.79208344,-0.13880333,-0.12305226,-0.34315845,-0.49749124,-0.6113224,-0.7198843,-0.81717265,-0.8143532,-0.7390766,-0.84256953,-0.88888025,-0.9328618,-0.9631282,-1.0099794,-0.9465456,-0.9798541,-0.97777617,-0.94413495,-0.9842882,-1.0387187,-1.0731554,-1.0937096,-1.1187066,-1.1251764,-1.1299744,-1.1605709,-1.1537254,-1.1873233,-1.1814907,-1.1709468,-1.1973534,-1.1384859,-1.0200315,-0.7972888,-0.77126956,-0.8106787,-0.89572847,-0.93839645,-1.0115409,-1.0850024,-1.0545561,-1.0473568,-1.0923941,-1.1114554,-1.0566516,-1.0366632,-1.0860705,-1.081229,-1.0884287,-1.1160284,-1.0521436,-1.1431952,-1.1554962,-1.15081,-0.6813741,-0.09760819,-0.12137761,-0.22607136,-0.43219972,-0.5945435,-0.7259387,-0.7414193,-0.78800815,-0.8470367,-0.9241464,-0.9698727,-1.0014279,-1.0365639,-1.0880964,-1.1082433,-1.093597,-1.0958886,-1.0946074,-1.122466,-1.0789306,-0.8410851,-0.7426234,-0.85667413,-1.0028608,-1.0353888,-1.0626405,-0.882889,-0.36430147,-0.32219043,-0.4411919,-0.62251616,-0.77644396,-0.8420464,-0.9212382,-0.95615363,-1.0523094,-1.070703,-1.0995787,-1.1345408,-1.1817038,-1.2030964,-1.2707111,-1.2606353,-0.52699083,-0.6749295,-0.7430221,-0.82953525,-0.8683826,-0.9228636,-0.7097435,-0.7403134,-0.8390677,-0.868847,-0.9739803,-1.0786363,-1.1386943,-1.2229447,-1.2693174,-1.2126733,-1.1188953,-1.1381397,-1.1554298,-1.1909523,-1.2317295,-1.2650828,-1.3251593,-1.3905246,-1.3945119,-1.3721054,-1.3596581,-1.3851681,-1.4166837,-1.4333756,-1.3915255,-1.3879443,-1.2535443,-0.85407007,-0.96729803,-0.59535444,-0.6606797,-0.91152406,-0.993737,-1.103142,-1.2709035,-1.3978492,-1.4372735,-1.4924729,-1.560433,-1.5802925,-1.5525964,-1.5115554,-0.5832319,-0.640485,-0.91520226,-1.1627995,-1.1577555,-1.1534636,-1.0622491,-1.0293534,-1.1763345,-1.2890276,-1.3882854,-1.4448493,-1.4807671,-1.4982375,-1.4955014,-1.4995637,-1.5109571,-1.568501,-1.5969338,-1.647299,-1.6654209,-1.6699789,-1.685704,-1.6964695,-1.7088746,-1.7156415,-1.7394649,-1.7668428
+-1.0973315,-1.0940562,-0.9950346,-1.1131428,-1.1751188,-1.2414675,-1.2343845,-1.2291212,-1.2049521,-1.1648479,-1.1809434,-1.3030225,-1.3753599,-1.3769944,-1.4011595,-1.4327612,-1.4416188,-1.4550803,-1.4635518,-1.4586246,-1.4312174,-1.1924878,-1.0448543,-1.2736447,-1.3885256,-1.44387,-1.495021,-1.521836,-1.5131831,-1.5165484,-1.5209779,-1.5363361,-1.534101,-1.467791,-1.4264449,-1.4452595,-1.4644724,-1.4327605,-1.4048021,-1.4316676,-1.4329307,-1.4353688,-1.3206879,-1.1677704,-1.0699382,-0.25143808,-0.5049187,-0.75563264,-0.98293006,-1.1042427,-1.1996093,-1.2613149,-1.3082671,-1.3302493,-1.099089,-0.9936048,-1.1778091,-1.3024523,-1.3577836,-1.2868495,-0.95296025,-0.6769193,-0.8356933,-1.0325623,-1.1362891,-1.166613,-1.2190874,-1.176461,-0.8387007,0.15308893,0.21105108,0.05923263,-0.15766287,-0.3640828,-0.5417299,-0.6424687,-0.69196784,-0.77919364,-0.9165883,-1.0102601,-1.0307016,-0.88025725,-0.5531266,-0.33477727,0.18358548,0.23507243,0.1655533,0.33384803,0.30815768,0.30054212,0.42044514,0.34921494,0.35117775,0.30446735,0.3249035,0.2775334,0.13212582,0.14890982,0.24438927,0.3777139,0.3218486,0.2570625,0.18183118,0.18279034,0.1333172,0.2011984,0.2755543,0.119252585,0.24048969,0.24886048,0.26744464,0.32724354,0.20757447,0.19131091,0.26018402,0.3919397,0.43748105,0.39411113,0.45762274,0.3956263,0.42313996,0.5464066,0.44470692,0.47644585,0.3689505,0.47306883,0.3731906,0.3715006,0.23747852,0.18489319,0.39587557,0.32716662,0.51456517,0.33586308,0.48178717,0.85216534,0.6205713,0.48597795,0.61343616,0.603989,0.85343426,0.6482719,0.60687244,0.55125827,0.57978946,0.6600277,0.7714067,0.79363334,0.55075145,0.55256283,0.5689187,0.58771724,0.47026753,0.43277994,0.35139984,0.2615071,0.21143697,0.13514341,0.50759494,0.4137271,0.30602312,0.21632302,0.26941818,0.3657926,0.34247732,0.26902544,0.20384794,0.20724696,0.13549319,0.1045036,0.112585,0.35266358,0.45574126,0.36048016,0.26024765,0.18312076,0.27101752,0.45384985,0.40415493,0.30046707,0.19355083,0.40870905,0.4703116,0.4053359,0.34414643,0.20824459,0.11369033,0.08695482,0.035780005,0.0033618286,-0.07617395,0.1688323,0.18729052,0.09369483,0.021908976,-0.059648268,-0.13551125,-0.22819617,-0.24267715,-0.24566138,-0.2907599,-0.1697006,-0.18592328,-0.28165576,-0.09454014,0.09838102,0.025903538,-0.050489448,-0.14858118,-0.18838176,-0.27681112,-0.3333283,-0.36961704,-0.43334675,-0.46233314,-0.48079127,-0.5296446,-0.5876332,-0.6450343,-0.64880943,-0.6106495,-0.63697815,-0.6131659,-0.66727656,-0.65192753,-0.6105441,-0.6473448,-0.641044,-0.6071528,-0.64287037,-0.74456024,-0.6221415,-0.66538554,-0.6998387,-0.7334828,-0.6769513,-0.5922492,-0.6653536,-0.6442853,-0.66292953,-0.6782809,-0.5999306,-0.6287015,-0.6709209,-0.6728807,-0.71771705,0.087327115,0.16960171,0.272839,0.19948779,0.109680526,0.059202753,0.016722836,-0.056289934,-0.11299228,-0.15453854,-0.17193636,-0.21516466,-0.27170545,-0.31327385,-0.34673947,-0.4252537,-0.42621225,-0.43595904,-0.4488694,-0.44781744,-0.17032465,0.02713909,-0.13481128,-0.19867826,-0.2634756,-0.30180568,-0.36743087,-0.28012857,0.12741861,0.085782655,-0.047665916,-0.12054669,-0.15130821,-0.19897208,-0.21454945,-0.3361756,-0.3949335,-0.430359,-0.48941934,-0.5150734,-0.5680546,-0.62506145,-0.63891923,-0.17747682,-0.17825055,-0.2565456,-0.34913698,-0.37813944,-0.42419648,-0.40378273,-0.2966812,-0.268702,-0.29217863,-0.365463,-0.40894496,-0.48371404,-0.63969195,-0.7230368,-0.6053122,-0.5433353,-0.4850126,-0.5553072,-0.59572977,-0.6211549,-0.658638,-0.72463226,-0.7944777,-0.8210999,-0.48407483,-0.28900138,-0.40806198,-0.5021646,-0.53323674,-0.5837894,-0.59450245,-0.40927547,-0.26090354,-0.4012337,0.072276615,-0.077961124,-0.1882546,-0.23922047,-0.29897147,-0.41199124,-0.59031093,-0.6076115,-0.64630204,-0.6972101,-0.7687612,-0.8177805,-0.8012502,-0.26329806,-0.205381,-0.33226603,-0.4784884,-0.5081252,-0.561876,-0.5774382,-0.6364461,-0.63842857,-0.66162413,-0.79569197,-0.87408406,-0.9499872,-0.9994376,-1.0159363,-1.0370165,-1.0791008,-1.1568997,-1.189778,-1.2392225,-1.2905213,-1.3160005,-1.3179233,-1.3579748,-1.3428315,-1.3703516,-1.4083874,-1.3916668
+-0.65305936,-0.8973799,-0.9404566,-1.0387236,-1.1022302,-1.1420565,-1.1060516,-1.0485047,-0.99290967,-0.9632764,-1.0262392,-1.0747528,-1.1272526,-1.150239,-1.2094626,-1.2263565,-1.2236962,-1.2208848,-1.2191873,-1.238639,-1.2607392,-1.2329266,-1.2324114,-1.2635775,-1.2759867,-1.3153806,-1.3220737,-1.3595625,-1.3590467,-1.3484776,-1.3605747,-1.3575888,-1.3590794,-1.3006148,-1.2865465,-1.2451923,-1.2460678,-0.8666088,-0.7583756,-0.90789664,-1.044686,-1.1000863,-1.1659554,-1.092937,-1.0927356,-1.0698521,-1.0839281,-1.1340684,-1.1874293,-1.1933823,-1.2192311,-1.2188716,-1.2112682,-1.2002413,-1.1646965,-1.1414994,-1.1916941,-1.2275229,-1.1946154,-1.1793182,-0.80554396,-0.64814854,-0.7828447,-0.94521856,-0.99878407,-0.97934556,-0.999449,-1.00823,-1.0223272,-1.0277296,-1.013999,-1.037885,-1.0796835,-1.1045833,-1.1134483,-1.0827732,-0.8740569,-0.7213375,-0.61414456,-0.6595637,-0.7555289,-0.7845657,-0.22661835,0.629111,0.6262553,0.4289341,0.6358865,0.6163963,0.6304545,0.7308444,0.69771767,0.6910119,0.6248978,0.63508695,0.61970663,0.5811191,0.5830636,0.56115794,0.5104173,0.4944927,0.41908008,0.4865322,0.6308206,0.63885415,0.6305834,0.5571003,0.67157423,0.66899574,0.67282546,0.66226757,0.6977861,0.66212285,0.660478,0.85188556,0.84281933,0.8856729,0.74992496,0.7618917,0.9243444,0.7522694,0.9012555,0.77361727,0.80885243,0.8448681,0.73344094,0.6849643,0.62270033,0.5327961,0.44559222,0.95119625,0.92752826,0.76166,0.71728134,0.6599988,0.6417372,0.67108417,0.6156027,0.6270027,0.7543729,0.85719144,0.8429672,0.789785,0.80035686,0.778818,0.8959339,0.8007163,0.86644,0.86261636,0.7436631,0.81404614,0.74281955,0.8539727,0.7927321,0.75493777,0.6732889,0.5978795,0.73397493,0.668948,0.77502537,0.9167541,0.73786926,0.6225099,0.8165771,0.8091526,0.74896425,0.69764185,0.65781426,0.5575508,0.66598946,0.6155996,0.69465536,0.80321085,0.76952606,0.71954405,0.6465365,0.70360947,0.7495755,0.8338125,0.8167416,0.714054,0.5909345,0.7375408,0.7916003,0.8080119,0.70978475,0.5517995,0.76200044,0.6634928,0.5910121,0.50464505,0.3989402,0.35056365,0.42058516,0.37529945,0.2850677,0.20372048,0.13189906,0.07344796,0.122170106,0.077530935,0.08290801,0.28217712,0.28271,0.24896678,0.17259896,0.3547513,0.35833585,0.21889324,0.13865946,0.07486544,-0.021336637,-0.10677119,-0.1763801,-0.23658481,-0.2542309,-0.29329425,-0.3754065,-0.4202996,-0.4645412,-0.49616182,-0.4357015,-0.44245768,-0.47222722,-0.2103861,0.09032602,-0.06614334,-0.13307866,-0.1985921,-0.23828739,-0.30208898,-0.46550602,-0.3611132,-0.41755408,-0.44402653,-0.53306794,-0.53063256,-0.46029007,-0.53864217,-0.5499129,-0.5721245,-0.5980752,-0.5622526,-0.58203685,-0.5984353,-0.6203534,-0.5408593,0.4607014,0.6575506,0.43947208,0.2911291,0.22836027,0.18347117,0.1605412,0.05731053,-0.028296798,-0.13520968,-0.22739965,-0.30755827,-0.34156936,-0.4127223,-0.48912495,-0.5463885,-0.5490122,-0.56159383,-0.56498086,-0.5390573,-0.23141506,0.05855889,-0.074653454,-0.15423247,-0.29078382,-0.31687093,-0.4170938,-0.47356105,-0.034590177,0.21368834,0.10264201,-0.059927844,-0.12956211,-0.19848913,-0.29994428,-0.437357,-0.50151914,-0.5392426,-0.5801852,-0.60720575,-0.6378064,-0.6792345,-0.7185655,-0.4494102,-0.327901,-0.36275715,-0.38629887,-0.43039805,-0.532855,-0.5502395,-0.5500045,-0.56490254,-0.5839149,-0.60691214,-0.5963832,-0.69289726,-0.71805596,-0.7159842,-0.6922106,-0.6022085,-0.44063604,-0.5159876,-0.5851699,-0.6347436,-0.6786313,-0.7293018,-0.78090423,-0.79058623,-0.7663702,-0.7658167,-0.7815239,-0.7948406,-0.85367453,-0.88582116,-0.91840327,-0.8305011,-0.71250343,-0.72254443,0.64920664,0.5134846,0.25778762,0.089398846,-0.008550167,-0.12694454,-0.343328,-0.4773069,-0.5451193,-0.62059045,-0.6714972,-0.7259373,-0.7379702,-0.51666707,-0.4086697,-0.52429444,-0.636111,-0.7011355,-0.7837242,-0.77544576,-0.8186091,-0.8578254,-0.87087375,-0.86860555,-0.88818455,-0.89060825,-0.9050882,-0.90495014,-0.9252174,-0.93059313,-0.95488477,-0.9568676,-1.0021894,-1.0396626,-1.0728812,-1.0958829,-1.1172751,-1.1418592,-1.1544791,-1.1549578,-1.1827908
+0.21864732,0.39180106,0.822895,0.6028398,0.5410027,0.643708,0.907936,0.5657237,0.61234814,0.82995474,0.19085225,0.4016561,0.47754285,0.477023,0.45746577,0.5614274,0.5598641,0.60433567,0.60602754,0.48887214,0.48522937,0.43838614,0.40332368,0.271756,0.15140593,0.036436077,0.011196591,0.087694,0.19051683,0.20433149,0.16727965,0.12336128,0.07020635,-0.005210452,-0.034324996,-0.11026006,-0.11854964,-0.1319409,-0.239391,0.8303013,1.5877354,1.372596,1.2530038,1.0620681,0.98712146,0.78463113,0.63407505,0.41128382,0.25608715,0.1651107,0.06503326,-0.12562764,-0.036250316,-0.07621182,-0.11772259,0.8009935,0.9216093,0.97091746,0.967759,0.7638993,1.786445,1.6645678,1.1321528,1.0973371,0.7963382,0.49952424,0.29700416,0.12960413,-0.030961953,-0.014319435,0.028215848,0.33389235,1.119714,0.6328992,0.36353147,0.2520778,1.3431199,1.1354276,0.6458879,1.5182168,1.3101561,0.59680974,1.9651399,1.4475613,1.3628209,1.8821822,2.1974242,2.2454448,1.4903997,1.0492717,1.1868186,0.93045723,0.9176482,0.80168295,0.6605867,1.0668596,0.7324153,0.9359309,0.4944089,0.6953715,0.6961003,1.3387291,2.3540583,2.6005206,2.4724727,2.2571893,1.988343,1.7890565,1.195909,0.6328025,0.32097504,0.18402624,0.00076872855,-0.0040009096,-0.06441603,-0.18218291,-0.06738893,0.059032135,-0.09030976,-0.069026895,-0.02364286,0.07763225,0.06213011,-0.06036801,0.040631898,0.77810764,0.45309737,0.22093567,0.06913122,0.45982534,0.654493,0.69756085,0.6703177,0.40952253,0.2764683,0.19123131,0.4142062,0.31166863,0.18545967,0.6799545,0.56866246,0.2906545,0.096433155,-0.034368567,-0.02654916,0.3865466,0.4453009,0.40711746,0.41678962,0.25938115,0.17536777,0.09295756,-0.009106986,-0.105610274,-0.14893606,-0.18875396,-0.21785247,0.15736085,0.6490643,0.662634,0.70732754,1.0709426,0.8878941,0.6749724,0.75527966,0.5811251,0.49018314,0.35175908,0.2338258,0.15873289,0.11303907,0.12057601,0.048151404,-0.19647536,-0.10111446,0.5249361,0.8502883,0.90750307,0.9306113,0.6966946,0.5687879,0.49267995,0.4305618,0.27877533,0.119845055,0.6095135,1.2801378,1.5386766,1.1643298,0.706696,0.41013908,0.7690201,0.8821906,0.67188364,0.3476662,0.26413718,0.65718734,0.7472912,0.5442726,0.6742799,0.6762444,0.3757977,0.39252496,0.5251945,0.44453543,0.60612094,0.67631936,0.5693967,0.5793275,0.6647953,0.5692989,0.5576498,0.48693258,0.49444652,0.683719,0.6608257,0.6762661,0.68227035,0.66951025,0.67743516,0.5739279,0.510297,0.49703276,0.43927783,0.37122414,0.28821254,0.31018633,0.27712464,0.25478303,0.35871565,0.0407257,-0.09417238,-0.2013582,-0.17618966,-0.19306886,-0.28199515,-0.38624838,-0.387392,-0.44453275,-0.43328464,-0.42609346,-0.5432422,-0.39339995,-0.45468843,-0.4773203,-0.56994104,-0.53107095,-0.58626145,-0.5189855,-0.7532892,-0.78248215,-0.79316556,-0.7960956,-0.72060746,-0.7106892,-0.75870776,-0.7722495,-0.79719704,-0.79165053,-0.7776147,-0.78899217,-0.7775503,-0.6794338,-0.6557536,-0.61428475,-0.6907249,-0.7404481,-0.6591296,-0.67378044,-0.74513483,-0.73047096,-0.7139231,-0.7761134,-0.73609626,-0.75221634,-0.7539897,-0.75482726,-0.7980437,-0.8007193,-0.8082603,-0.7959625,-0.7661402,-0.7910741,-0.7068627,-0.74966025,-0.764691,-0.79143846,-0.72192204,-0.7633692,-0.7571634,-0.7307818,-0.66488445,-0.42764342,-0.39804527,-0.41460037,-0.4028256,-0.46371752,-0.6015525,-0.59566545,-0.6670918,-0.75225127,-0.7360226,-0.6252692,-0.5578622,-0.42429924,-0.667696,-0.7981862,-0.8269199,-0.8012402,-0.7428881,-0.71032834,-0.6635312,-0.6818977,-0.7158339,-0.6647463,-0.5228296,-0.6024822,-0.68762434,-0.6716912,-0.65625525,-0.52091277,-0.25438762,0.03366758,-0.28486878,-0.33878195,-0.35235742,-0.21617302,-0.3709276,-0.53852427,-0.55121744,-0.5901302,-0.55730283,-0.6157257,-0.6004597,-0.56871414,-0.58464074,-0.58964753,-0.45295304,-0.34244776,-0.37189665,-0.6183622,-0.7678603,-0.6527562,-0.5885173,-0.5967481,-0.582513,-0.5827731,-0.54220104,-0.39982426,0.008122161,0.0803919,-0.024929427,0.8504753,0.5899512,-0.20695731,-0.20969155,0.56682265,0.55977094,1.019526,1.0775795,0.9430423,0.793921,0.84717566,0.9355675,0.932873
+-0.629673,-0.6079727,-0.5550105,-0.6729827,-0.72101665,-0.61145425,-0.61530435,-0.7270031,-0.780175,-0.7306918,-0.9332231,-0.87891173,-0.91078424,-1.0003142,-0.016641505,0.09385318,0.014813475,0.023371316,-0.037323765,-0.13865799,-0.2707196,-0.4268961,-0.59417367,-0.4187491,0.05423925,-0.0057580546,0.06950889,0.08172766,-0.018660419,-0.003841281,-0.09255908,-0.1921983,-0.36021614,-0.55500555,-0.7231981,-0.90460664,-1.0032778,-1.1009684,-1.1639599,0.088957615,0.35553774,0.16989195,0.03809289,-0.03410121,-0.17599633,-0.37350178,-0.56309474,-0.7256059,-0.84462917,-0.9444635,-1.0547276,-1.0015504,-0.9316411,-1.0736871,-0.720726,-0.6536868,-0.7152005,-0.631977,-0.7056403,-0.36819616,0.20449087,0.06987674,-0.24440575,-0.37848783,-0.66246283,-0.93088603,-1.0913713,-1.1905111,-1.2799993,-1.3240085,-1.3223538,-0.9016701,0.49072418,-0.049075477,-0.18232146,-0.42435288,0.35354587,0.108587615,-0.24717349,0.30815217,0.051325344,-0.3932632,-0.14849272,-0.44054174,-0.73669255,0.63750446,0.7109929,0.3865477,0.12596804,-0.24076885,-0.49786645,-0.5553506,-0.52369225,-0.025086299,-0.27559543,-0.27227086,-0.5701047,-0.5879495,-0.86379886,-0.7663796,-0.6062267,-0.14299262,-0.16272247,-0.3044872,0.043998025,-0.15794188,0.1489504,0.42616224,-0.040389694,-0.26870236,-0.60798717,-0.8727515,-1.1635383,-1.1234453,-1.2308564,-1.3724241,-1.3931762,-0.108647875,-0.40904295,-0.6169919,-0.7989536,-0.93734336,-0.9045539,-1.0617621,-1.2120305,-1.2758912,-1.3697913,-1.4391278,-1.4364295,-0.59806776,-0.6618529,-0.8812245,-0.94683754,-1.0821898,-1.1223159,-1.3086195,-1.0350773,-0.95212436,-1.1595607,-1.251027,-0.21987474,-0.49067754,-0.72118187,-0.97518253,-1.1355922,-1.1756253,-1.0858399,-1.1750615,-1.2342937,-1.406688,-1.4113965,-1.4638422,-1.4869606,-1.4791135,-1.4337305,-1.4467832,-1.4511077,-0.29376233,-0.034888946,0.010882013,-0.06574451,-0.15085933,-0.1972878,-0.37989333,-0.45460474,-0.48756474,-0.62221134,-0.8227018,-0.787749,-0.9262979,-1.0046341,-1.1193526,-1.2692031,-0.24923962,0.25996557,0.37684882,0.3118568,0.4037984,0.40611205,0.20048365,0.019938387,-0.11901253,-0.2835967,-0.47990417,-0.46849453,0.29526135,0.35708454,0.48995948,0.24162257,0.040615655,0.05512537,0.11485812,0.0019787923,-0.12593523,-0.40054727,-0.33262506,-0.22862774,-0.22779408,-0.38283736,-0.3543634,-0.44441426,-0.49438715,-0.5035429,-0.4684531,-0.5747816,-0.61789155,-0.60674304,-0.66933715,-0.70264745,-0.66840047,-0.72272694,-0.71852636,-0.72063315,-0.2087096,0.14551033,0.026387565,-0.009560987,-0.07935687,-0.13739589,-0.1806997,-0.24215996,-0.30118507,-0.30578583,-0.37077913,-0.44670403,-0.4450171,-0.45782864,-0.48280907,-0.5271675,-0.5074445,-0.69363904,-0.7634337,-0.84789085,-0.78346527,-0.7190285,-0.75987417,-0.8733162,-0.8894328,-0.98751974,-0.94147646,-0.9393703,-0.8987629,-0.88724566,-0.914335,-0.9462526,-0.9876698,-0.96816015,-1.0182338,-0.91356087,-1.2445978,-1.2436608,-1.1757172,-1.1450844,-1.130355,-1.1074014,-1.13509,-1.2139953,-1.2466476,-1.2135165,-1.1415589,-1.2128952,-1.2530042,-1.0647633,-0.9769242,-0.9148593,-1.0674492,-1.1193168,-1.1158843,-1.1700351,-1.1658981,-1.1853273,-1.0872955,-1.1151526,-1.0247215,-1.1462109,-1.0592494,-1.1461258,-1.2599323,-1.253928,-1.2605815,-1.2059443,-1.2250667,-1.2447149,-1.1651428,-1.1336551,-1.2716167,-1.2777712,-1.2366722,-1.2316933,-1.1973603,-1.1486392,-1.0821434,-0.87015796,-0.88809687,-0.8935636,-0.9817407,-1.1074779,-1.1161734,-1.0907369,-1.1264791,-1.2269393,-1.1632106,-0.9841175,-0.9172634,-0.95442486,-1.0558059,-1.218591,-1.3103282,-1.3062463,-1.1772704,-1.1435547,-1.1671703,-1.2458103,-1.2958813,-1.2405971,-0.76085454,-0.9528241,-1.1063013,-1.0801957,-1.0549487,-0.93962383,-0.7778007,-0.6943351,-0.7535966,-0.88675046,-0.75774753,-0.6719059,-0.5644629,-0.9196305,-0.9517448,-0.89063704,-1.0050925,-1.0693105,-1.1630288,-1.0229414,-1.0817655,-0.99600863,-0.85816276,-0.73503584,-0.7919938,-1.145609,-1.1519557,-1.1343004,-1.1887757,-1.1649202,-1.0820531,-1.1139196,-0.953635,-0.6747215,-0.29156554,-0.3898012,-0.17835194,0.30648237,0.060256444,-0.4747606,-0.3345198,0.14765605,0.108913876,0.1822786,0.097426124,-0.012756638,-0.09357316,-0.15941817,-0.15817952,-0.19392434
+-0.8547483,-0.9126873,-0.9406518,-1.1056521,-0.48159194,-0.2968921,-0.48678315,-0.7123959,-0.85683656,-0.9448365,-1.0971286,-1.1795561,-1.2689734,-1.3489851,-0.80755126,-0.21722937,-0.5111537,-0.32868016,0.28210545,0.12044779,-0.21794331,-0.4776864,-0.7355116,0.7503514,0.61440676,0.37646067,0.41961113,0.4287639,0.37807164,0.26487032,-0.009596743,-0.32336083,-0.5735321,-0.79037297,-0.949191,-1.1223884,-1.1195163,-1.2346773,-1.2491062,-0.14291018,0.6014003,0.33038473,0.24231037,0.041149728,-0.23116988,-0.4757383,-0.6885539,-0.906559,-1.1051474,-1.2726988,-1.1911043,-0.9148793,-0.8423859,-1.1172279,-0.2969339,-0.06119954,-0.44374996,-0.7227588,-0.8851812,-0.64860153,0.30547795,0.2395752,-0.2688599,-0.4176798,-0.7575861,-1.0202081,-1.152995,-1.247724,-1.3440082,-1.3229632,-0.7199964,-0.6215592,-0.19103745,-0.16686338,0.21674116,-0.3135097,-0.61327684,-0.5486334,-0.30787998,-0.13395116,-0.63778985,-1.0597856,-1.1170266,-1.266093,-1.3306067,-1.1861778,-1.3367695,-1.3788608,-1.4199995,-1.3629179,-1.3432137,-1.3625977,-0.98519063,-0.68924296,-1.0055629,-1.2732893,-1.214897,-0.89269954,-1.2401736,-1.3550906,-1.1131221,0.03340984,-0.12247547,-0.6882328,-0.82141197,-0.95637107,0.013265125,-0.36824706,-0.92021036,-1.1670151,-1.268817,-1.3127095,-1.417907,-1.2672269,-1.2669985,-1.3217459,-1.0550885,-0.4165722,-0.47029173,-0.7587153,-1.1204467,-1.2696792,-0.83458114,-0.9583787,-1.1333411,-1.1739781,-1.3481197,-1.4118525,-1.3550513,-0.879951,-0.9813349,-1.094592,-1.0544221,-1.1418643,-1.1491084,-1.378093,-1.1452911,-1.1876748,-1.3531306,-1.2467227,0.33636606,0.11747927,-0.3915022,-0.7460998,-0.9423138,-1.0475924,-1.1009613,-1.1583135,-1.2568555,-1.296639,-1.3365064,-1.3860391,-1.3621018,-1.3511738,-1.2885264,-1.242718,0.3673296,0.66121536,0.31333676,0.0643268,-0.08523982,-0.24397328,-0.2172825,-0.46594197,-0.5850928,-0.5961127,-0.74938595,-0.79096615,-0.5120542,-0.70360476,-0.8660327,-1.0108304,-1.1472281,-0.96055126,-0.63720506,0.15512925,0.50773513,0.51775706,0.36427185,0.16722119,-0.20327348,-0.41923082,-0.59363663,-0.7133821,-0.8039154,-0.5243066,0.35064894,0.284022,0.02477634,-0.11950327,-0.24862713,-0.3564119,-0.5042331,-0.4024161,-0.5989785,-0.5730983,-0.57061404,-0.59156334,-0.6673123,-0.7030222,-0.44736427,-0.07351454,0.009743787,-0.15735564,-0.3498881,-0.47642744,-0.54964465,-0.63665247,-0.7006194,-0.7234427,-0.76179117,-0.6693183,-0.6616267,-0.720402,-0.67388725,-0.75294185,-0.77176154,-0.8252486,-0.862867,-0.86462206,-0.8913478,-0.90773344,-0.94083345,-0.955704,-0.9311795,-0.9560435,-0.9339936,-0.9058676,-0.9412365,-0.90726936,-0.94035244,-0.9897485,-1.0233501,-1.0214065,-0.9932995,-0.962036,-1.0178894,-1.0125182,-1.0907106,-1.1039628,-1.1477456,-1.0585997,-0.6114112,-0.7868438,-0.96229136,-0.87495315,-0.9157225,-0.9799944,-0.9844415,-1.2327971,-1.2944,-1.326551,-1.3180013,-1.259589,-1.3276613,-1.2445135,-1.4710758,-1.4827688,-1.3373907,-1.2615445,-1.4084818,-1.5402532,-1.3205044,-1.1478647,-1.125669,-1.2947371,-1.3675797,-1.2974168,-1.3406363,-1.3602659,-1.2377896,-1.2068356,-1.2931359,-1.0470301,-1.2829742,-1.2563567,-1.2323766,-1.4479303,-1.5157673,-1.479033,-1.4414015,-1.3636477,-1.433969,-1.2658632,-1.2934704,-1.3791691,-1.51812,-1.5105858,-1.4919889,-1.4132038,-1.3352424,-1.2606331,-1.0700736,-1.1022363,-1.0659596,-1.1163013,-1.2816029,-1.2544532,-1.1987132,-1.2946401,-1.2658134,-1.2493734,-1.074718,-1.0425469,-1.0613239,-1.0612051,-1.286923,-1.3552474,-1.4889295,-1.2663505,-1.2571783,-1.1962266,-1.3155092,-1.4524615,-1.2385492,-0.91013443,-1.0057632,-1.2105453,-1.2066711,-1.1876177,-1.1292398,-1.0267111,-0.932822,-0.95541954,-0.95047534,-0.83653486,-0.7132752,-0.51443535,-0.9228393,-0.9693018,-0.9861555,-1.0280008,-1.0390017,-1.0936111,-1.0860987,-0.9863442,-0.881202,-0.8503835,-0.76915705,-0.48338664,-0.80389804,-1.0227033,-1.0006881,-1.0993629,-1.0251541,-0.97367907,-1.1335306,-0.81432056,-0.58510154,-0.3217826,-0.3656291,-0.3357221,-0.36100343,-0.05758416,-0.3881554,-0.43652403,-0.3233724,-0.26932448,-0.3668342,-0.31453404,-0.43088847,-0.4833464,-0.5226146,-0.59436876,-0.47822744
+-0.7359432,-0.6794735,-0.73422754,-0.8094755,-0.5434647,-0.5020694,-0.5579452,-0.6635209,-0.783932,-0.8162759,-0.8987956,-1.0160346,-1.1205955,-1.1164304,-1.0072818,-0.9135704,-0.6755878,-0.116323374,0.40505934,0.45418778,0.24416369,0.003799133,-0.23155475,0.65303826,0.8830477,0.6798403,0.65777206,0.70833373,0.8003869,0.6699198,0.4715247,0.086290695,-0.2041704,-0.48264444,-0.69538176,-0.86414397,-0.83243537,-0.9224992,-0.9890113,-0.19195321,0.014243312,-0.13308275,-0.12768263,-0.1913755,-0.37981936,-0.31611514,-0.43246615,-0.71458846,-0.984591,-1.051157,-0.97123814,-0.72199976,-1.014462,-1.2671494,-0.75908595,-0.22314382,-0.61890286,-0.872615,-0.69877046,-0.6330218,-0.5655233,-0.6401749,-1.0474305,-1.1355288,-1.2733328,-1.3795245,-1.3756151,-1.4500462,-1.4776788,-1.5056846,-1.1059132,-1.1495672,-0.2092117,0.58043855,-0.08570597,-0.44688022,-0.7674478,-0.8731872,-0.5314637,-0.63946193,-0.8730812,-1.1597793,-1.1688111,-1.2777252,-1.3710847,-1.2738724,-1.3814645,-1.4045227,-1.4309587,-1.3881404,-1.3916682,-1.3547609,-1.0985186,-1.0742818,-1.0647404,-1.105131,-1.3246528,-1.0234107,-1.2102928,-1.3892555,-1.4646068,-1.1949971,-1.2099409,-1.3646933,-1.4078946,-1.4387801,-0.91462076,-0.5845815,-0.9059557,-1.1312506,-1.369563,-1.3803556,-1.4536502,-1.2798755,-1.3197516,-1.4163684,-1.3918968,-1.3125026,-0.6348573,-0.746356,-0.96426463,-0.90814066,-0.83882153,-0.75837684,-0.91219306,-1.030516,-1.2739607,-1.3866957,-1.3561671,-0.41804248,-0.4055751,-0.8178206,-0.89528036,-1.0509126,-1.1648986,-1.2974203,-1.2501701,-1.1328933,-1.1239852,-0.81043357,0.54455805,0.4891063,-0.018218853,-0.52355564,-0.852281,-1.010036,-1.1243132,-1.1988664,-1.2017629,-1.2131829,-1.3138256,-1.4254944,-1.4504961,-1.4554513,-1.1745019,-0.9677248,-0.6635233,0.039067663,-0.2942077,-0.47068417,-0.67381907,-0.5298688,-0.40585452,-0.82396495,-0.8797911,-0.27985683,-0.19949102,-0.43131006,-0.51322037,-0.7276207,-0.9454713,-1.0678402,-1.1743376,-1.261458,-1.2046189,-0.43353796,1.03113,0.93186176,0.57867545,0.28976524,-0.054355033,-0.2568044,-0.4163103,-0.59032243,-0.72643614,-0.45338547,0.35282654,0.13593367,-0.013456911,-0.08391499,-0.15973848,-0.31541768,-0.4263183,-0.5319986,-0.6431428,-0.7164702,-0.72741866,-0.79898345,-0.8295157,-0.7304781,-0.61876696,-0.7131838,-0.7481085,-0.81288254,-0.9190819,-0.98284745,-1.011963,-1.0345311,-1.0556331,-1.0663435,-1.0538404,-0.5696428,-0.23954079,-0.36707926,-0.46592724,-0.57236266,-0.6335027,-0.7271462,-0.82118815,-0.8995508,-0.9591203,-0.9942944,-1.0151074,-1.0370855,-1.0407593,-1.0419047,-1.049027,-1.0538799,-1.0541753,-1.0771565,-0.50512475,-0.75763106,-0.90032464,-0.8055215,-0.62218755,-0.540078,-0.75096214,-0.7160557,-0.85509235,-0.87005913,-0.9209026,-0.82576215,-0.74976045,-0.9580498,-1.011743,-0.9488584,-1.0023589,-1.0073984,-0.91753674,-1.1382015,-1.2308049,-1.2755727,-1.2550786,-1.1628695,-1.1510088,-1.1702937,-1.2057213,-1.2680494,-1.1594219,-1.047143,-1.3503278,-1.3825617,-1.1336305,-0.94745016,-0.9859897,-1.1697743,-1.2166072,-1.1158152,-1.1259236,-1.1349778,-1.1634798,-1.0764948,-1.1884694,-0.92866576,-1.0795649,-1.181165,-1.1874918,-1.4532753,-1.4634204,-1.4785106,-1.4207567,-1.2744795,-1.2022214,-0.95352364,-1.0398697,-1.1084696,-1.4135207,-1.2943108,-1.2153121,-1.1878906,-1.1684997,-1.0924599,-0.97805774,-1.0183765,-0.991447,-1.0119495,-1.1486722,-1.119517,-1.1490948,-1.1705599,-1.1008475,-1.1473094,-1.0088472,-0.9510398,-0.9797114,-0.9729022,-1.0701756,-1.401403,-1.3367677,-0.99150896,-1.0636017,-0.8961439,-1.1174132,-1.2119775,-0.9996425,-0.6445061,-0.60315984,-1.1142313,-1.106653,-1.1174929,-1.0540779,-0.9634892,-0.8809982,-0.8493034,-0.64367795,-0.45322102,-0.32856193,-0.33385357,-0.52806157,-0.83971477,-0.86231935,-1.0558541,-1.0665107,-1.0920694,-1.08974,-0.8853845,-0.73268014,-0.7393045,-0.64370394,-0.54157436,-0.9540086,-1.0034485,-0.9268968,-0.85630226,-0.68415046,-0.53808564,-0.71396947,-0.3557856,-0.19947702,-0.18846706,-0.26047578,-0.31879205,-0.2970363,-0.35219613,-0.22200173,-0.036432527,0.31068534,0.58178073,0.4310969,0.42147696,0.3737781,0.264924,0.07267261,0.012249537,-0.09591051
+-0.77598006,-0.84895253,-0.86494195,-0.9150281,-0.99128246,-1.1331012,-1.107556,-1.1875849,-1.2717502,-1.2343879,-1.176053,-1.2625458,-1.3328032,-1.3646144,-1.3302412,-1.1644864,-0.6414293,-0.6289617,-0.6130868,-0.69425076,-0.8096156,-0.96405065,-1.1399088,0.10871569,0.55794626,0.8792746,0.68270105,0.5736429,0.6022663,0.65060806,0.515703,0.14408496,-0.13824522,-0.4230188,-0.7017896,-0.93472576,0.50353444,0.9192651,0.77006304,0.6271273,0.29520974,-0.12254923,-0.32300395,-0.47457093,-0.4624493,0.6278505,0.84222245,0.48243636,0.1710994,-0.038720913,-0.26137948,-0.27640116,-0.45169556,-0.79913247,-0.72269934,-0.8281321,-1.0207403,-1.0648121,-1.164827,-1.1456709,-0.3423405,-0.75372195,-1.1369998,-1.2978754,-1.4019153,-1.5095712,-1.5735254,-1.6262538,-1.6606803,-1.6713145,-1.4658508,-1.527144,-1.5147903,-0.8261545,-0.024557613,-0.83895874,-1.3256822,-1.437899,-1.5847392,-1.5887704,-1.5717878,-1.6599746,-1.5962878,-1.6783392,-1.7119443,-1.630467,-1.6995406,-1.7195823,-1.7140226,-1.6922624,-0.9918134,-0.1070207,-0.71270555,-1.190621,-1.4440354,-1.419835,-1.421638,-1.3363132,-1.5775255,-1.6913614,-1.7217054,-1.6462139,-1.673991,-1.710355,-1.7011381,-1.7282839,-1.723872,-1.6816139,-1.675405,-1.5872451,-1.6884804,-1.6854692,-1.6717029,-1.3390753,-1.467368,-1.6103806,-1.6741378,-1.5642173,-1.3894744,-1.2290334,-1.2368324,-1.4764433,-1.6295847,-1.6830828,-1.6731244,-1.6453794,-1.70117,-1.677019,-1.6326911,-1.4479632,-1.4957373,-1.6357415,-1.2066783,-1.058018,-1.3390336,-1.5458355,-1.5174627,-1.1260494,-1.3160081,-1.4291532,-0.38679096,-0.32699996,-0.9029058,-1.3734119,-1.5672452,-1.6422844,-0.81537807,-0.78569126,-1.0869017,-1.3766098,-1.4431252,-1.3989668,-1.5648301,-1.6393539,-1.6382625,-1.4913216,-1.225145,-0.8447956,-1.0972538,-1.335384,-1.5292475,-1.2305769,-1.1424134,-1.530079,-1.3498468,-0.4398868,-0.3651306,-0.53935397,-0.7729682,-1.0872602,-1.3744192,-1.527634,-1.6168216,-1.6096395,-1.264226,-0.7077703,0.38616192,0.28443888,-0.0018462539,-0.27480277,-0.5731995,-0.7879199,-0.9683025,-1.1168809,-1.271287,-1.3579226,-1.0936819,-1.2169764,-1.060578,-0.8987093,-1.1191139,-1.2986115,-1.4063244,-1.4676757,-1.4356847,-1.476979,-1.6004684,-1.5197918,-1.4482509,-1.199226,-1.2969601,-1.380817,-1.3685496,-1.4804507,-1.5038751,-1.533999,-1.5554497,-1.5507941,-1.4996357,-1.5304346,-1.49633,-1.4377714,-1.399211,-1.4454058,-1.4236425,-1.4771405,-1.4759758,-1.5142214,-1.5075176,-1.5253613,-1.5101634,-1.4782624,-1.5198563,-1.5040463,-1.4445009,-1.450842,-1.4648511,-1.4558349,-1.474721,-1.433442,-1.3427343,-1.286628,-1.2882239,-1.3095247,-1.3470181,-0.70014256,-0.8321644,-0.886057,-1.1093307,-1.136529,-1.0742923,-1.0468657,-1.0276561,-1.2480733,-1.2237957,-1.1389946,-1.211446,-1.2352679,-1.1159132,-1.3376915,-1.3107308,-1.3493972,-1.2656584,-1.2011125,-1.1757962,-1.3319784,-1.3332573,-1.351008,-1.2424922,-1.280689,-1.4656036,-1.4780903,-1.368884,-1.2611582,-1.2493024,-1.3430552,-1.3392186,-1.2244668,-1.2558969,-1.3468997,-1.3543298,-1.3561883,-1.3940685,-1.272403,-1.2685373,-1.3322303,-1.347471,-1.4934967,-1.4012967,-1.518095,-1.485607,-1.3877641,-1.2855625,-1.1118994,-1.1974635,-1.3420596,-1.3924011,-1.3440572,-1.3175161,-1.361496,-1.4139978,-1.3933132,-1.3129891,-1.3218818,-1.2502451,-1.2922661,-1.330946,-1.3054706,-1.3207643,-1.391966,-1.435386,-1.4337716,-1.3664569,-1.2946665,-1.2658876,-1.2235408,-1.267951,-1.4141891,-1.3962399,-1.2396715,-1.2186211,-1.1811013,-1.171231,-1.287117,-1.1971891,-0.9861089,-0.93859553,-1.2809291,-1.3248097,-1.3061745,-1.2689018,-1.1934903,-1.1597677,-1.1296086,-1.0229223,-1.02093,-1.0302955,-0.98892343,-0.9370866,-1.0692571,-1.294575,-1.4199684,-1.3179734,-1.3501533,-1.485974,-1.396118,-1.37253,-1.3426325,-1.279419,-1.1503576,-1.4458723,-1.3586009,-1.228307,-1.2134157,-0.883124,-0.9284344,-1.0753264,-0.9227284,-0.91539943,-0.9438982,-1.0151834,-1.0352309,-1.0132974,-1.0664159,-0.766763,-0.40927678,-0.3990919,-0.48810768,-0.68234164,-0.3957833,-0.47843045,-0.43811792,-0.2958194,-0.40051493,0.42139038
+-1.0841279,-1.322949,-0.96552896,-0.775617,-0.6968974,-0.8320029,-0.51154184,-0.4656914,-0.38083696,-0.21492529,-0.321691,-0.12337919,-0.078436635,-0.05866795,-0.13224947,-0.37331453,-0.5120357,-0.50523686,-0.44943988,-0.22535083,-0.28414673,-0.19860825,-0.037144296,0.093549654,-0.25993153,-0.13711727,-0.39029658,-0.62371397,-0.4932313,-0.33763224,-0.48264837,-0.6726799,-0.41933298,-0.45088702,-0.39608052,-0.3056696,0.3183963,0.40824562,0.42225403,0.22811761,-0.13244814,-0.25563884,-0.21731538,-0.20524374,-0.081890576,0.1910917,0.23125651,0.22933805,0.21541786,0.12328653,0.022247247,-0.110871725,-0.10596066,-0.21677288,-0.27553135,-0.36873874,-0.3956707,-0.45246243,-0.5445278,-0.6037271,0.07436192,-0.1571657,-0.40037373,-0.6228993,-0.7229731,-0.85834426,-0.7842516,-0.78252953,-0.7856302,-0.7498116,-0.95046425,-1.1260123,-0.4597975,-0.025534637,-0.09669676,-0.50847644,-0.7419704,-0.9986987,-1.119577,-1.2635448,-1.3775582,-1.4393458,-1.4885515,-1.5073144,-1.1635289,-0.87828326,-1.2359264,-1.4442711,-1.5220098,-1.3210909,-1.0386662,-0.8151659,-0.85192215,-1.0182989,-1.1750216,-1.1254342,-1.2703445,-1.467167,-1.4097712,-1.5365824,-1.6179711,-1.6330794,-1.6520975,-1.687316,-1.6599777,-1.6510661,-1.6389196,-1.6084008,-1.354084,-1.3529744,-1.5266676,-1.5918632,-1.6440289,-1.6136775,-1.6477684,-1.6141175,-1.6478701,-1.6626626,-1.552755,-1.4074553,-1.4371858,-1.5806768,-1.625194,-1.5300351,-1.4769936,-1.5863385,-1.6076243,-1.2029475,-0.8959835,-0.8741838,-1.1807209,-1.3803034,-1.4372337,-1.4954455,-1.3704016,-1.4413433,-1.3939478,-1.1269779,-1.2035971,-1.1556581,-0.7577396,-0.9123565,-1.2860372,-1.503855,-1.6308863,-1.3880408,-1.3268073,-1.3163445,-1.4307113,-1.5553675,-1.6321942,-1.6329954,-1.6349258,-1.6432419,-1.5779142,-1.4188515,-1.0284488,-1.1327441,-1.3684311,-1.4488716,-1.5292833,-1.6163027,-1.5918629,-1.6771684,-1.3825784,-1.0640862,-1.1287677,-1.0270387,-1.2136856,-1.3472198,-1.4817251,-1.585623,-1.6069971,-1.6344109,-1.4218695,-0.9854224,-0.2048516,-0.5532597,-0.8125962,-1.0400337,-1.2251759,-1.3557448,-1.3477786,-1.3816893,-1.435104,-1.5267408,-1.3574297,-1.4096494,-1.2807004,-1.3876384,-1.4300648,-1.4789436,-1.497983,-1.4773307,-1.4876285,-1.4907045,-1.5395238,-1.5385857,-1.5089643,-1.2408173,-1.2278903,-0.93396425,-1.0869448,-1.0705206,-1.1679854,-1.2256784,-1.2689836,-1.2921926,-1.3156188,-1.3280845,-1.3620043,-1.3394907,-1.3392171,-1.3245765,-1.1628636,-0.7813971,-0.92194414,-1.0122724,-1.0882585,-1.1320375,-1.1700442,-1.1814822,-1.2124413,-1.2710811,-1.2596056,-1.2653612,-1.2842292,-1.2601018,-1.2631127,-1.2835188,-1.1383872,-1.22704,-1.3057479,-1.1643198,-1.1137706,-0.74878186,-1.1295244,-1.0410762,-1.1893606,-1.178447,-1.0690641,-1.0768262,-1.1183136,-1.2317227,-1.201693,-1.1455787,-1.1875379,-1.174501,-1.030815,-1.2635573,-1.1954161,-1.3900502,-1.1719706,-1.0086942,-1.0270057,-1.1752833,-1.199899,-1.1515744,-0.89287424,-0.88594985,-1.2949154,-1.3254468,-1.2303952,-0.97955346,-0.94011223,-1.0670514,-1.0621219,-1.0148634,-0.9234263,-1.203608,-1.1808724,-1.0249052,-1.183744,-1.0974612,-1.1047704,-1.1713564,-1.0654252,-1.1517789,-1.0747504,-1.2529575,-1.3266913,-1.2525741,-0.97848034,-0.66975474,-0.87532324,-0.77133083,-0.9869515,-0.9110296,-0.8396224,-1.047779,-1.088285,-1.1860988,-1.1033671,-1.0952895,-0.99323833,-1.1206706,-1.0810838,-0.95296144,-1.0087893,-1.2431587,-1.2904016,-1.2746279,-1.1556358,-1.0180591,-0.9812113,-0.97784615,-0.99026036,-1.1693445,-1.1339464,-0.9858124,-0.9888576,-0.98614335,-0.86214966,-0.80385745,-0.85330063,-0.6940571,-0.5731305,-1.2255188,-1.2379801,-1.272038,-1.2395027,-1.1521914,-1.1165078,-1.0425277,-1.0006583,-1.0507348,-1.0203123,-0.84223634,-0.96942806,-1.2565496,-1.4052608,-1.4668422,-1.3259192,-1.1950276,-1.4394159,-1.3307414,-1.2396811,-1.1747477,-1.1016201,-1.245219,-1.4364417,-1.1654202,-0.9260241,-0.8747814,-0.61714756,-0.8781249,-1.1480438,-0.56463426,-0.5079623,-0.56252855,-0.47026157,-0.37763968,-0.2313869,-0.14142424,-0.2152375,-0.14667591,0.077013,-0.088910855,-0.52735764,-0.349849,-0.56472504,-0.2595381,-0.29525015,-0.4082843,-0.29090446
+-0.7297276,-1.0936003,-0.9668006,-0.7092098,-0.735626,-0.9453263,-0.8227417,-0.8250288,-0.78383535,-0.8550198,-0.9031677,-0.7595973,-0.67082345,-0.7373327,-0.83469075,-0.83117306,-0.95540357,-0.9788246,-0.9088422,-0.8078631,-0.72097826,-0.6662468,-0.5401679,-0.761981,-0.8479537,-0.95509434,-0.9710922,-1.0191095,-0.94295955,-0.81187403,-0.8672989,-0.820118,-0.77063334,-0.61718,-0.60591286,-0.49084526,-0.53770757,-0.8071164,-0.75963736,-0.6728827,-0.82331204,-0.80972993,-0.850121,-0.8207411,-0.8356478,-0.7315248,-0.62322605,-0.6907028,-0.5491232,-0.52582866,-0.52385116,-0.6028266,-0.7182532,-0.742504,-0.79655373,-0.7807255,-0.6286564,-0.67910707,-0.6633466,-0.6901903,-0.73994887,-0.7501739,-0.63449407,-0.65993613,-0.7899648,-0.8818743,-0.86689335,-0.6340678,-0.6546034,-0.6997235,-0.7555847,-0.787215,-0.7974893,-0.56115663,-0.41104412,-0.6322102,-0.76077014,-0.92879045,-0.9809687,-1.0305309,-1.1106675,-0.05984775,-0.18004096,-0.30835474,-0.5246122,-0.6456625,-0.610932,-0.6674279,-0.79500484,-0.8325494,-0.89438224,-0.48773348,-0.304193,-0.27751163,-0.4553489,-0.6561406,-0.8161578,-0.9164233,-0.98233414,-1.025357,-1.1140059,-1.1810682,-1.2546768,-1.2925243,-1.3098378,-1.3055795,-1.3472216,-1.3783958,-1.3336492,-1.1402999,-1.033525,-0.95441127,-0.8186604,-0.794585,-0.91809654,-1.0038776,-1.1461228,-1.2345254,-1.3068223,-1.2990718,-1.2566161,-1.2411726,-1.2753747,-1.3222859,-1.1897594,-1.0018762,-0.45333242,-0.3787597,-0.5168463,-0.40797758,-0.47741097,-0.6316769,-0.7936088,-0.887105,-0.9098997,-0.9046323,-1.040855,-1.1458449,-0.95801437,-0.72247005,-0.84059775,-0.7796705,-0.889872,-0.96182907,-0.8943378,-0.2653421,-0.22164336,-0.3754912,-0.5825206,-0.7562306,0.0025251359,-0.031990774,-0.21396106,-0.40274602,-0.42115957,-0.5076855,-0.66811776,-0.787732,-0.9621291,-1.0899136,-1.1765985,-1.236208,-1.2912123,-1.3338931,-1.3964005,-1.2031007,-1.1520956,-1.2219019,-1.3404075,-1.3850614,-1.4186662,-1.4552838,-1.4554356,-1.4659038,-1.4811237,-1.4911239,-1.4296145,-1.4992543,-1.5138891,-1.5257491,-1.4949716,-1.4860091,-1.3144195,-0.8854361,-0.809942,-0.9104693,-1.1595896,-1.2250636,-1.1458654,-1.2769215,-1.2440279,-1.2615881,-1.3290424,-1.3355204,-1.3810923,-1.4072766,-1.4187171,-1.4383612,-1.4410712,-1.4434668,-1.4756231,-1.4987696,-1.5247753,-1.5114362,-1.4863892,-1.4811842,-1.4639966,-1.4881654,-1.4612169,-1.4578009,-1.4643667,-1.4978706,-1.4730635,-1.437923,-1.4298719,-1.4543719,-1.444587,-1.4434432,-1.4342437,-1.424783,-1.4088548,-1.4020159,-1.4377098,-1.4546423,-1.378556,-1.387181,-1.3971555,-1.3774618,-1.3662572,-1.3528795,-1.3662289,-1.4228091,-1.3717828,-1.2726786,-1.2031996,-0.9727794,-1.1765766,-1.2216907,-1.2881097,-1.3033046,-1.2257733,-1.3297056,-1.3311279,-1.3349887,-1.3006036,-1.1894614,-1.2253354,-1.2808992,-1.2300434,-1.2891209,-1.2450254,-1.3408163,-1.199417,-1.1813865,-1.1214008,-1.2713699,-1.2725053,-1.218281,-1.1334536,-1.1046901,-1.1609368,-1.3846663,-1.3053182,-1.2128897,-1.1875429,-1.1158442,-1.0731227,-1.186239,-1.1691239,-1.3862395,-1.2639416,-1.2362432,-1.2627747,-1.2568482,-1.2615995,-1.2588274,-1.2757176,-1.2753373,-1.2453043,-1.1957209,-1.329224,-1.3609705,-1.1729535,-0.9689988,-1.1314547,-1.1658353,-1.1843646,-1.1093829,-1.0618505,-1.0434666,-0.97670186,-1.0873444,-1.2513926,-1.2219716,-1.1214995,-1.2606863,-1.2438266,-1.1579837,-1.1836874,-1.3664595,-1.3782661,-1.3697114,-1.3018482,-1.199496,-1.1748152,-1.1629694,-1.1932896,-1.2328975,-1.2103314,-1.2011642,-1.1873858,-1.2107996,-1.1613042,-1.1034039,-1.1319873,-1.0113449,-1.0064082,-0.9451184,-0.99017537,-1.235085,-1.2429464,-1.2157558,-1.1928148,-1.1300073,-1.135554,-1.155211,-1.0886962,-1.1022902,-1.2179823,-1.3905504,-1.418154,-1.3907721,-1.329247,-1.1874926,-1.3799129,-1.2776897,-1.2637563,-1.222497,-1.1689119,-1.2008787,-1.359189,-1.1660624,-1.1119552,-1.1213601,-1.0930355,-1.1800158,-1.1965073,-1.051233,-1.0819609,-1.0932937,-1.078953,-1.0491743,-1.0777912,-1.1295589,-1.1439729,-1.1675551,-1.1922592,-1.1063523,-1.172194,-1.022458,-1.1288759,-1.0961313,-0.9447105,-1.0358136,-0.98136485
+-0.31024057,-0.9432986,-0.8560686,-0.77035,-0.8926196,-1.1342919,-1.1841047,-1.2212682,-1.2269872,-1.3056859,-1.2840817,-1.2406775,-1.2439967,-1.3467672,-1.4444948,-0.68081445,-0.75062937,-0.65496135,-0.6920414,-0.7330643,-0.76690865,-0.80541825,-0.8368813,-0.9505421,-1.176746,-1.1600988,-1.2027115,-0.94339526,-0.6510848,-0.7485627,-0.80830747,-0.7906374,-0.8857004,-0.96152985,-1.0493293,-1.0700119,-1.1045117,-1.2753911,-1.279639,-1.3466477,-1.2179796,-1.2827814,-1.4275364,-1.4734555,-1.2250626,-1.0824015,-0.93014467,-0.8367675,-0.81933194,-0.9173815,-1.181041,-1.3505001,-1.4610693,-1.5539083,-1.5954499,-1.5801287,-0.6529238,-0.7250243,-1.1445233,-1.342699,-1.4029864,-1.1653206,-0.95625305,-1.2129047,-1.3428882,-1.3900154,-1.2532465,-1.2689791,-1.3380196,-1.3869,-1.4121407,-1.444468,-1.4168241,-1.4494,-1.4566386,-1.5336635,-1.5741488,-1.5675365,-1.5472157,-1.5528562,-1.5379691,-1.4668291,-1.2380179,-1.0990463,-1.1994228,-1.1503395,-1.2461814,-1.347444,-1.3464684,-1.309219,-0.93768287,-0.3827562,-0.3960776,-0.2809365,-0.39517263,-0.6768625,-1.0165772,-1.1696174,-1.2925961,-1.3344207,-1.3823043,-1.3960676,-1.4310384,-1.4321578,-1.4460592,-1.453728,-1.4555486,-1.4377711,-1.3572568,-1.1462413,-1.1812737,-1.2914727,-1.3381546,-1.2971897,-1.2754365,-1.2573264,-1.3340464,-1.2558314,-1.3318167,-1.2359264,-1.0209417,-1.0480899,-0.88097465,-0.9006381,-0.9097123,-0.48088586,0.42473045,0.06504037,-0.11183915,-0.23186874,-0.28252158,-0.5443227,-0.7094747,-0.8240457,-0.9726682,-1.0675629,-1.2002274,-1.1738552,-0.988431,-1.1074638,-0.9090843,-0.7497097,-0.8637328,-1.0057622,-1.0328501,-0.6024665,-0.46968544,-0.8145199,-1.0375667,-1.1235988,-1.0348088,-0.74387956,-0.8870665,-1.0333353,-0.9929558,-0.85114324,-1.056351,-1.2329967,-1.33623,-1.3337208,-1.3413923,-1.3615005,-1.3784134,-1.3832681,-1.3911533,-1.2963989,-0.96394837,-1.0341008,-1.1928979,-1.1559227,-1.2611508,-1.3618152,-1.4141922,-1.3559072,-1.0813377,-1.1540883,-0.97548175,-1.2544261,-1.3559906,-1.3942858,-1.4207158,-1.4148371,-1.2745167,-1.2432578,-1.3174598,-1.2742001,-1.2769439,-1.45261,-1.4779302,-1.406712,-1.3993917,-1.4243386,-1.3752939,-1.4108719,-1.433996,-1.4194449,-1.4157075,-1.4272664,-1.4421775,-1.4507759,-1.5098861,-1.482621,-1.5408372,-1.5510573,-1.5273755,-1.5396986,-1.5141175,-1.4969,-1.4579148,-1.4378047,-1.4670125,-1.4273734,-1.4158322,-1.3902864,-1.3926871,-1.4176384,-1.4362909,-1.4598974,-1.061307,-0.7772051,-0.9512017,-1.0895113,-1.1835023,-1.2674773,-1.3022606,-1.3053899,-1.3222998,-1.2652639,-1.2759737,-1.2657404,-1.1897283,-1.3105786,-1.3137032,-1.3204936,-1.0831985,-0.51233053,-0.98153305,-1.0819745,-1.1564308,-1.2043622,-0.8139689,-1.1043923,-1.1128631,-1.2015635,-1.0901648,-0.98866,-1.0946941,-1.1193987,-1.0724361,-1.1132903,-1.1044879,-1.1939341,-1.133924,-1.0428851,-1.0089037,-1.1270168,-1.1255869,-1.1337237,-1.0598859,-0.9859357,-0.5743034,-1.2255702,-1.1793634,-1.1793017,-1.0182664,-0.81916946,-0.70628744,-0.9332278,-0.82778585,-1.0054475,-0.9505372,-0.9786695,-1.0328071,-1.0579706,-1.0320113,-0.9297334,-1.0185486,-1.036941,-0.9915788,-0.9431262,-0.9633014,-1.0106158,-0.91039634,-0.7319779,-0.8168694,-0.90795887,-0.9505485,-0.85577,-0.8041138,-0.70145494,-0.54451215,-0.6262791,-0.8567874,-0.88815427,-0.7833464,-0.84052616,-0.9372821,-0.8474424,-0.5335806,-0.953423,-0.88846135,-0.864643,-0.9090805,-0.9138826,-0.9208536,-0.9106302,-0.9107293,-0.93767405,-0.92159855,-0.94477916,-0.9163848,-0.9397094,-0.94935775,-0.87597376,-0.89766556,-0.83482134,-0.7406948,-0.49675012,-0.54880047,-0.7126845,-0.9553733,-0.94420147,-0.900465,-0.79954773,-0.74500525,-0.8517928,-0.83815694,-0.7803559,-0.85592943,-1.0642527,-1.0531294,-1.059835,-1.034594,-0.8306737,-1.0550067,-1.0118222,-0.9936459,-0.96661615,-0.9198061,-0.78623545,-1.147937,-1.0376618,-0.95895636,-0.93443096,-0.9053097,-0.9571738,-0.9153135,-0.8505536,-0.76041406,-0.819101,-0.8208755,-0.7391969,-0.71340597,-0.7813201,-0.7804012,-0.8239591,-0.91559875,-0.43392062,-0.945812,-0.76930034,-0.8936848,-0.8085231,-0.66013074,-0.9222033,-0.86158156
+0.38889378,0.14931357,0.046438403,0.3439619,0.27152997,-0.010078438,-0.019650906,-0.019931838,0.06565099,-0.02998253,-0.024404407,-0.0077492,0.066068344,-0.0020126775,-0.03810353,0.152209,0.01834713,0.018894784,-0.027355865,0.015461072,0.16779074,0.25698543,0.2909162,0.12537417,-0.044165276,-0.19653302,-0.27381527,-0.19418713,0.10477949,-0.026586317,-0.06907182,-0.11173084,-0.0111975,-0.0039053485,-0.03456416,-0.07850886,-0.14395079,-0.22917938,-0.1965456,-0.17176744,-0.20414174,-0.23465389,-0.29757652,-0.31736946,0.076189615,0.48628217,0.3313075,0.29315308,0.28987262,0.19651645,0.014785729,-0.10636104,-0.1867137,-0.3130079,-0.39885336,-0.50489485,-0.4717729,-0.52000356,-0.609038,-0.6416156,-0.52330726,-0.38921142,-0.3874063,-0.50950587,-0.45546585,-0.43838257,-0.40442276,-0.43691486,-0.49104595,-0.46989983,-0.54290867,-0.45558655,-0.42934275,-0.3237428,-0.357006,-0.54314685,-0.63903385,-0.7248768,-0.78222275,-0.76750124,-0.70398223,-0.6392388,-0.60681134,-0.56223404,-0.36996418,-0.4696589,-0.18862635,-0.08894294,-0.09858879,-0.28187096,-0.41159302,-0.033860005,0.4765163,0.25792882,-0.04022219,-0.24764386,-0.42975944,-0.5539373,-0.6501781,-0.70168924,-0.73014176,-0.7347592,-0.7974782,-0.8367153,-0.77599406,-0.75500447,-0.75465417,-0.7920497,-0.73566246,-0.5972335,-0.55794823,-0.63011086,-0.6943366,-0.73177314,-0.66020095,-0.5608432,-0.5354994,-0.54272866,-0.6176442,-0.49215692,-0.39753044,-0.45526403,-0.4256053,-0.24465176,0.011436999,0.24418908,0.7648323,0.91434133,0.83513844,0.6962347,0.4673389,0.23747772,0.22816533,0.16706666,0.46940494,0.46404192,0.24849096,0.38566625,0.52222204,0.37943363,0.34383282,0.59842974,0.6661924,0.8781258,0.62034774,0.4176498,0.29611927,0.5355022,0.484978,0.26438326,0.22073302,0.30383244,0.3540441,0.29420233,0.19405182,0.0850807,-0.049629174,-0.15304884,0.38900796,0.6613897,0.37233418,0.158272,0.020051606,-0.16526836,-0.26029807,-0.29818633,-0.3700496,-0.43100446,-0.33517325,-0.11850541,-0.22882259,-0.48640394,-0.616963,-0.6875658,-0.20769677,0.116133235,0.14019573,-0.14707202,-0.25225303,-0.4221561,-0.5701611,-0.60787094,-0.60172045,-0.510315,-0.56165826,-0.2932245,-0.22833371,-0.47172976,-0.5249217,-0.6376587,-0.4458331,-0.30865687,-0.20386237,-0.31437504,-0.40567732,-0.49315166,-0.54827565,-0.61124265,-0.60941684,-0.5898974,-0.6518275,-0.6910436,-0.72710955,-0.7737466,-0.77720237,-0.8300259,-0.7807635,-0.7611543,-0.66379035,-0.7069548,-0.7391594,-0.7038882,-0.6822098,-0.64927036,-0.62985593,-0.6794801,-0.63660765,-0.5628221,0.39773723,1.265518,0.7461637,0.40243548,0.119739205,-0.082769535,-0.0959261,-0.13062236,-0.13411832,-0.15448642,-0.19582269,-0.20691997,-0.20423412,-0.5505166,-0.6187698,-0.50827837,-0.19254148,0.31638908,-0.0507864,-0.17954281,-0.30225855,-0.28485665,-0.010072559,-0.28227907,-0.06257207,-0.11888606,-0.15644455,-0.067179225,0.017135538,-0.060082905,-0.0903888,-0.1169217,-0.13258204,-0.12170557,-0.0975649,-0.057845183,0.034315832,-0.055558316,-0.046500348,0.04115466,0.115343906,0.43682945,0.41670057,0.069137745,-0.08505119,-0.09481173,-0.049419828,0.24676096,0.39389902,0.07731164,0.21076623,0.023703061,-0.021075554,-0.020667054,-0.07883004,-0.11058851,-0.0819316,-0.044507883,-0.058260165,-0.0705361,-0.08069197,0.07322531,0.6115868,0.2023266,0.0107271895,0.21595687,0.110022165,-0.059122287,-0.119422905,-0.07662412,0.11182482,0.520579,0.34157637,0.2776701,0.10155348,0.05281002,0.22463849,0.071584664,0.07358948,0.035180025,0.20489016,0.24153921,0.16544273,0.22231916,0.12677288,0.050719373,0.011854224,0.023880117,0.02649521,-0.0709892,-0.060605578,-0.07603528,-0.06839069,-0.07251596,0.07011787,0.22273752,0.0985624,0.20655549,0.41811508,0.3795877,0.328009,0.31258452,0.12054502,0.003220491,0.022775196,0.16011983,0.20339853,0.036256097,0.29214913,0.3929393,0.09571705,-0.1860519,-0.28298637,-0.25726688,-0.21472836,0.10856604,-0.11945327,-0.1605848,-0.21269524,-0.13031802,-0.028992854,0.08857327,-0.1627352,-0.04025019,0.113048434,0.22295368,0.33073702,0.07997157,0.18543866,0.31393746,0.4155183,0.43239102,0.405432,0.37680158,0.31534618,0.22018197,0.18057919,0.119659685,-0.026752882,-0.07732087,-0.3081107,-0.1554845,-0.25622004,-0.03021694,-0.058207266,-0.29173627,-0.2337659
+-1.115644,-1.3682629,-1.5688052,-1.6238253,-1.6159949,-1.6784258,-1.6796741,-0.82105327,0.019034661,-0.5202937,-0.50613993,-0.49424386,-0.74638575,-1.1188635,-1.3584087,-1.4330183,-1.3169719,-0.6991011,-0.56239694,-0.96468854,-1.3158064,-1.453597,-1.3836108,-1.5164586,-1.6038184,-1.6116991,-1.6423514,-1.6706582,-1.0839525,-0.77836746,-0.3807673,-0.11484585,-0.51881427,-1.0067023,-1.399291,-1.5742251,-1.5974553,-1.646039,-1.6432478,-1.666347,-1.6722908,-1.6506054,-1.6551836,-1.6555388,-0.7402152,-0.9593891,-0.7353897,0.5252957,0.35689723,-0.14506671,-0.7855476,-1.2298772,-1.4638638,-1.568795,-1.6177491,-1.630158,-1.6495999,-1.6625019,-1.6795851,-1.6328735,-1.1702485,-0.8797741,-0.9936923,-1.334034,-1.5116987,-1.4627036,-0.30073565,0.6526251,-0.22780567,-0.8479097,-1.2866458,-1.1741948,-0.9493978,-1.2950561,-1.4980762,-1.5854633,-1.6117777,-1.6428142,-1.6685094,-1.6332054,-1.588922,-1.5783901,-1.5732036,-1.3090934,-0.41025203,-0.33851853,-0.4858508,-0.34398192,-0.68234664,-1.0556035,-1.3516645,-1.1551305,-0.8921571,-1.2637334,-1.4660074,-1.5295643,-1.5577548,-1.5652279,-1.5629613,-1.5704479,-1.569331,-1.5813465,-1.6134299,-1.6303155,-1.6521649,-1.6145498,-1.5875243,-1.5745947,-1.5634377,-1.5722551,-1.5444071,-1.5516553,-1.5461638,-1.2903979,-0.8925966,-0.782556,-0.8842225,-0.84579325,-0.5980164,-0.56640786,-0.36714894,-0.1258089,-0.45920467,-0.42074072,-0.3312202,-0.70312846,-0.8441746,-0.19617301,-0.05621002,-0.43309397,-0.84852976,-0.93714345,-0.96628976,-1.1211911,-0.84066683,0.6346041,-0.102066584,-0.5629449,-0.799564,-1.1253588,-1.3563856,-1.4439052,-1.077511,-0.56334233,-0.8583828,-0.9016675,-1.1556665,-1.1968186,-0.9706533,-0.70175934,-0.81629854,-0.55179405,0.066295184,0.055674657,-0.085245065,-0.09750069,-0.52770466,-0.8989542,-0.11223065,0.10391426,0.18072718,-0.1839121,-0.5678432,-0.82499325,-1.0950155,-1.084454,-0.85522074,-0.31291437,-0.2547643,-0.48608065,-0.9373754,-1.315675,-1.4479518,-1.3191252,-0.6163065,-0.7877776,-1.1413422,-1.4328477,-1.4805017,-1.4570758,-1.4935933,-1.5308081,-1.4329102,-1.4639599,-1.4949646,-1.5126212,-1.5411353,-1.5857781,-1.5924639,-1.6196991,-1.5280201,-0.49596846,-0.36114296,-0.68775123,-0.99809265,-1.212808,-1.3784629,-1.4760659,-1.5150259,-1.5364125,-1.5518669,-1.5533261,-1.5835947,-1.5389487,-1.5693765,-1.5604181,-1.5764999,-1.5318798,-1.5545275,-1.5600889,-1.5253024,-1.5174108,-1.5466181,-1.5247891,-1.5342659,-1.487948,-0.8199353,-0.2524023,0.6044807,0.3898373,0.13299373,-0.22060311,-0.507344,-0.56591344,-0.71647346,-0.77868134,-0.87862647,-1.0193834,-1.0981172,-1.1462668,-1.2037365,-1.4023516,-1.3028396,-1.2797067,-1.2336752,-0.6601846,-0.80971944,-0.93369865,-1.058343,-0.9858867,-0.96156204,-1.0956614,-1.1554662,-1.2909182,-1.3169665,-1.1493156,-1.0359073,-1.2671913,-1.2767235,-1.1988299,-1.1971713,-1.2507024,-1.2142246,-1.1964848,-1.1422815,-1.1621573,-1.1492369,-1.140439,-1.1681616,-1.1378995,-1.0220668,-1.3220723,-1.3509213,-1.3666172,-1.2830987,-0.84308285,-0.4574582,-0.75399095,-0.827494,-1.1781781,-1.1706795,-1.1621686,-1.2543613,-1.1619213,-1.0678406,-1.057223,-1.1260364,-1.156663,-1.075852,-1.0448973,-0.9691484,-1.3609192,-1.1213206,-1.0191423,-0.99569976,-1.086062,-1.1274693,-1.0569254,-0.97549677,-0.21743134,0.11463446,0.08507267,-0.34292895,-0.6963335,-0.67824495,-0.57942784,-1.0032301,-0.8194246,-0.7079619,-1.2144368,-1.2926359,-1.2979052,-1.3490953,-1.3181666,-1.263007,-1.2185521,-1.2339612,-1.2326288,-1.1746491,-1.185191,-1.2350757,-1.1887782,-1.1587424,-1.1582499,-1.1901276,-1.1906394,-1.2204409,-1.271574,-0.85575944,-0.65432346,-1.0550637,-1.1049192,-1.1048372,-1.05835,-1.072765,-1.1549861,-1.2202523,-1.2259328,-1.2517288,-1.4062347,-1.4970527,-1.3580006,-1.3546112,-1.3017204,-1.4653734,-1.5798097,-1.5092673,-1.4666407,-1.4777176,-1.439606,-1.5997857,-1.6025302,-1.6204655,-1.6511891,-1.6368666,-1.640091,-1.6711689,-1.6678987,-1.6863501,-1.6740384,-1.6929623,-1.6791292,-1.6463678,-1.6622971,-1.6542156,-1.6506293,-1.6182917,-1.5398961,-1.6769159,-1.656169,-1.6766887,-0.8400656,-0.61259615,-0.93810105,-1.1630856
+-0.19108093,-0.39108577,-0.47125298,-0.5263716,-0.6724178,-0.81504023,-0.9152813,-0.95790863,-0.3677169,-0.54437685,-0.4923169,-0.46501213,-0.3105989,-0.5212641,-0.70732284,-0.7631418,-0.43931633,-0.4544052,-0.52525526,-0.6818986,-0.80975354,-0.80660254,-0.7145807,-0.75142854,-0.9921212,-1.0946757,-1.1207402,-1.2277807,-1.2237226,-1.1009274,-0.8471292,-0.5982431,-0.7280954,-0.8987334,-1.0337731,-1.1309679,-1.2041113,-1.2671039,-1.2564303,-1.2923726,-1.3140836,-1.3030878,-1.2530956,-1.1301756,-0.76004046,-0.96995175,-1.0228941,-0.56221926,-0.3637372,-0.5736296,-0.8298018,-1.0222496,-1.1647414,-1.2585888,-1.3021023,-1.3216677,-1.3295732,-1.3496504,-1.3443724,-1.2630639,-1.0397735,-0.95700765,-0.949111,-0.9613857,-1.0225542,-1.0996594,-1.1747702,-1.2071954,-1.1835285,-1.1881618,-1.2172399,-0.8603932,-0.6586674,-0.8686639,-1.0456303,-1.17646,-1.2287011,-1.2757717,-1.285828,-1.242038,-1.2467937,-1.2351878,-1.2429862,-0.9990592,-0.49588448,-0.54443204,-0.5932305,-0.3799179,-0.42485464,-0.5681883,-0.7413281,-0.8783638,-0.9270823,-1.0733058,-1.1591244,-1.1764396,-1.2015133,-1.2098731,-1.1813443,-1.1622806,-1.1958362,-1.223183,-1.2395794,-1.2402775,-1.237307,-1.2264059,-1.2291543,-1.2404964,-1.239611,-1.2468102,-1.2514746,-1.2602493,-1.2496698,-1.241358,-1.2261349,-1.2080276,-1.01376,-0.8117524,-0.92196524,-1.059401,-1.1303996,-0.95453334,-0.66278607,-0.5170196,-0.5404611,-0.71804893,-0.77210253,-0.7403194,-0.8496566,-0.96671844,-0.96422553,-0.78302944,-0.66808504,-0.68908286,-0.5760442,-0.3457113,-0.5308899,-0.71551555,-0.8365911,-0.96154344,-0.63721836,-0.55191326,-0.55934095,-0.56056887,-0.6939233,-0.722353,-0.7969365,-0.7578089,-0.5960417,-0.48886484,-0.32165888,-0.24343461,-0.16062367,-0.19004697,-0.15897787,-0.2536115,-0.47605884,-0.6631746,-0.5587724,0.015287966,0.11996318,-0.09585468,-0.21405515,-0.40221822,-0.5340332,-0.5210706,-0.626168,-0.68903404,-0.32781535,-0.4360389,-0.64087784,-0.8061068,-0.95633197,-1.0344999,-1.0157115,-1.0692384,-1.0526329,-1.1278801,-1.1581982,-0.98893476,-1.037905,-1.0837017,-0.9699106,-0.90863824,-1.0115682,-1.0941432,-1.1252992,-1.1689782,-1.1845977,-1.198149,-1.077758,-0.7433549,-0.45315444,-0.5549607,-0.72327965,-0.7966536,-0.85178244,-0.9764199,-1.0628034,-1.1033888,-1.1199049,-1.1476727,-1.1537654,-1.1329181,-1.162995,-1.1853304,-1.1795738,-1.1824989,-1.1873901,-1.1700613,-1.1718929,-1.1633282,-1.1883972,-1.1799517,-1.1547703,-1.055428,-1.0068233,-0.89405525,-0.27554733,-0.11470068,-0.18128997,-0.37613344,-0.59918505,-0.61695015,-0.6510678,-0.67637,-0.7029426,-0.7586597,-0.8181248,-0.84889853,-0.9087006,-0.9962065,-1.0137414,-0.9955461,-1.0455214,-0.70807517,-0.8255992,-0.9144149,-0.98462784,-0.9108033,-0.9345553,-0.5142822,-0.6074008,-0.91745305,-0.9322603,-0.84087914,-0.63824284,-0.8144616,-0.8843849,-0.8512444,-0.81886756,-0.8960175,-0.90251565,-0.8581325,-0.8576586,-0.8499913,-0.84602225,-0.83763534,-0.8184173,-0.83495784,-0.37269777,-0.8582328,-0.86273897,-0.7767106,-0.70330983,0.12864166,0.20777509,0.08999994,-0.098491736,-0.5433211,-0.5056348,-0.5457146,-0.6273683,-0.5493603,-0.46835572,-0.112119816,-0.33078688,-0.5005291,-0.39520752,-0.410609,-0.50283206,-0.8346142,-0.5600753,-0.45975757,-0.46703118,-0.4973277,-0.5450129,-0.5600078,-0.55865693,0.100175515,0.2018837,-7.793307e-05,-0.19939625,-0.24121088,-0.31399888,-0.39976817,-0.6082758,-0.3790545,-0.45318502,-0.76331353,-0.89188814,-0.9018183,-0.9272796,-0.8515521,-0.81623185,-0.7867341,-0.81296587,-0.82133484,-0.8173678,-0.7887447,-0.8312659,-0.8006438,-0.7650491,-0.776204,-0.75582814,-0.7484534,-0.74209666,-0.7767742,-0.3345674,-0.36565673,-0.6753055,-0.70377636,-0.65571165,-0.54825294,-0.5517951,-0.5058258,-0.4980836,-0.48365736,-0.49937183,-0.7509057,-0.945392,-0.9142978,-0.88847417,-0.81357133,-0.9026577,-1.0516242,-1.0096822,-0.91789985,-0.8652255,-0.87620926,-1.0115038,-1.044748,-1.0334,-1.066698,-1.0610546,-1.0407763,-1.1248906,-1.1388073,-1.1705561,-1.1632886,-1.1867726,-1.1635906,-1.1741769,-1.1780204,-1.1789005,-1.1794019,-1.2250413,-1.1756295,-1.237795,-1.2491297,-1.2618682,-1.2216613,-1.0479187,-1.126643,-1.2324445
+-1.2909973,-1.3834283,-1.6658473,-1.7422886,-1.7545228,-1.764022,-1.749294,-1.4882298,-0.6193038,-1.1415548,-1.3001946,-1.4793689,-1.4948171,-1.6237223,-1.6432474,-1.6697357,-1.7141931,-1.7171106,-1.6984279,-1.7282125,-1.7323372,-1.570255,-1.6013341,-1.6773922,-1.6953304,-1.7087529,-1.731509,-1.7441931,-1.728568,-1.7322471,-1.7584909,-1.7186778,-1.7675998,-1.7580066,-1.7443111,-1.6637834,-1.6455897,-1.7246907,-1.7136891,-1.734032,-1.7338264,-1.7165823,-1.6438191,-1.6418543,-1.614191,-1.6778252,-1.6388683,-1.58775,-1.3059653,-1.5715213,-1.6697549,-1.685843,-1.6992137,-1.6967418,-1.6884547,-1.675803,-1.7060128,-1.7220006,-1.7057823,-1.3836417,-1.0643005,-0.88318855,-0.82854265,-1.2389982,-1.4542942,-1.4372926,-1.5017775,-1.537935,-1.4275479,-1.2326596,-1.1870329,-1.0871317,-1.1870418,-1.4618665,-1.5590776,-1.5899822,-1.5861286,-1.6072304,-1.6159966,-1.585171,-1.5311611,-1.527303,-1.5299708,-1.5279641,-1.5197538,-1.5248075,-0.94964683,-0.26374647,-0.1190727,-0.39882126,-0.8612772,-1.0627574,-1.1435844,-1.3156173,-1.3027241,-1.4174426,-1.4403431,-1.432341,-0.8578501,-0.825709,-1.1385895,-1.3702784,-1.4310365,-1.475375,-1.5022628,-1.5038168,-1.3303914,-1.3890281,-1.4472346,-1.4564872,-1.4713945,-1.4755172,-1.4811573,-1.499099,-1.5037851,-1.4855072,-1.0938675,-0.7698807,-1.1012065,-1.3204911,-1.3934592,-1.0529158,-0.8405157,-1.17439,-1.03319,-0.9027188,-1.1076453,-1.147762,-1.2709508,-1.0734372,-0.93164635,-0.92907405,-0.90699756,-0.83764565,-0.611274,-0.09630539,-0.73020035,-1.0807049,-1.2802261,-1.3463659,-0.954972,-0.81626284,0.094742574,0.069383085,-0.26577538,0.43214506,-0.18100211,-0.39041418,-0.37624747,-0.280345,0.12060807,0.37654337,0.5460295,0.47823882,0.28409624,-0.054401033,-0.4230951,-0.6485467,-0.8322609,0.022694603,-0.01513502,-0.39673603,-0.67738926,-0.84159875,-1.0208101,-1.1517637,-1.0976317,-0.4303435,-0.5039797,-0.858086,-1.0695574,-1.2424363,-1.3153136,-1.3522892,-1.3985918,-1.4471035,-1.4762416,-1.311713,-0.7332692,-0.6768173,-0.9352151,-1.0936806,-0.45694876,-0.47279298,-0.87234265,-0.85139936,-0.95197415,-1.2034359,-1.3247023,-1.4151727,-1.2274697,-0.51215076,-0.73259795,-0.9808724,-1.1460176,-1.174861,-1.312602,-1.4296951,-1.4733653,-1.4956753,-1.5130806,-1.5235875,-1.5301104,-1.5572652,-1.558273,-1.5360172,-1.5393324,-1.543897,-1.545641,-1.5415981,-1.5498915,-1.5466089,-1.5485587,-1.5540347,-1.5529861,-1.5260894,-1.4558418,-0.82752717,-0.16780534,-0.051885955,-0.29049605,-0.49816853,-0.67566293,-0.7886005,-0.35715377,-0.19360077,-0.45730138,-0.6364504,-0.81829655,-0.97055674,-1.1285703,-1.2569233,-1.3574086,-1.3928931,-1.3962786,-1.3818935,-1.4233339,-1.4673464,-1.4427643,-1.356883,-1.4477208,-1.4760003,-1.4967797,-1.5762407,-1.5828059,-1.5908086,-0.7489211,-0.2500294,-0.59544367,-0.8187297,-0.90457904,-0.8788384,-1.0979116,-1.1283913,-1.2069142,-1.2622151,-1.3082561,-1.3360074,-1.3753803,-1.4377911,-1.4381468,-1.5169973,-1.5055261,-1.5607183,-1.5679348,-1.0150808,-0.6738373,-0.9106091,-1.0653305,-1.1689662,-1.2603686,-1.3292007,-1.372339,-1.0998946,-0.91532385,-0.8508791,-0.8585199,-0.99975586,-1.0985674,-1.2184341,-1.2491368,-1.3922681,-1.4425211,-1.4664736,-1.499413,-1.5275054,-1.5457699,-1.5570334,-1.4941728,-0.785583,-0.43844777,-0.71347606,-0.6926977,-0.86147875,-0.9773623,-0.66931355,-0.93680584,-1.0698653,-1.1484638,-1.207423,-1.4131377,-1.4419963,-1.4991949,-1.5452938,-1.5782338,-1.5922774,-1.6100768,-1.6200969,-1.640336,-1.6438231,-1.6659281,-1.6739396,-1.6804177,-1.6512145,-1.6504816,-1.6547277,-1.652604,-1.6134987,-1.1080205,-0.9043853,-1.0985007,-1.2922264,-1.3501301,-1.4008232,-1.4873466,-1.494313,-1.5887485,-1.6201177,-1.647242,-1.663038,-1.6804835,-1.7187169,-1.7020409,-1.7156693,-1.6898975,-1.7125461,-1.7094874,-1.7203033,-1.7052534,-1.6978009,-1.7167044,-1.7218125,-1.6962653,-1.6934711,-1.6762189,-1.6508284,-1.6873566,-1.6887566,-1.7036245,-1.6977788,-1.689956,-1.6856637,-1.6712784,-1.6527776,-1.6508733,-1.6444569,-1.6504046,-1.664978,-1.7044842,-1.6994371,-1.7065811,-1.6993879,-1.6808429,-1.7097656,-1.7065233
+-1.603184,-1.6128473,-1.7052749,-1.7257892,-1.7072606,-1.7225859,-1.6901879,-1.5672567,-1.3629043,-1.518616,-1.5955613,-1.4979851,-1.5799121,-1.6636004,-1.7075361,-1.7449973,-1.7425413,-1.7276266,-1.7150846,-1.7382603,-1.7506149,-1.6306165,-1.4026484,-1.5530852,-1.6854876,-1.7392924,-1.7529947,-1.7701684,-1.7723669,-1.7617681,-1.7599531,-1.6673706,-1.7040993,-1.7351038,-1.7177444,-1.6517332,-1.6767554,-1.7072232,-1.7185683,-1.7351258,-1.74258,-1.7218537,-1.4168259,-1.4543803,-0.8773543,-1.258598,-1.4666404,-1.2024674,-1.1320511,-1.5885178,-1.6577868,-1.7486323,-1.7659951,-1.74944,-1.7444355,-1.7309868,-1.7468038,-1.7626452,-1.7275358,-1.3132938,-0.7514881,-0.8414525,-0.9458859,-1.3298123,-1.5091207,-1.524966,-1.5563183,-1.5576478,-1.5934811,-1.5986457,-1.5879482,-1.5674639,-1.0495569,-1.4062854,-1.5992637,-1.5841426,-1.673429,-1.7087773,-1.7072457,-1.6284142,-1.5522473,-1.529799,-1.5486469,-1.399416,-1.0668827,-1.0946629,-1.1496426,-1.0924131,-0.16860437,-0.3942141,-0.8840085,-0.73489535,-0.20205158,-0.8318987,-1.2920341,-1.4356284,-1.4748445,-1.4180586,-1.1279638,-1.0279366,-1.1846054,-1.3532804,-1.4581126,-1.5472695,-1.5537076,-1.5480621,-1.4572811,-1.4458787,-1.4727358,-1.4567103,-1.4400268,-1.436651,-1.4417074,-1.4741735,-1.4797078,-1.2133223,-1.1295679,-0.95707273,-1.1191247,-1.2196589,-1.262417,-1.3017867,-0.69428235,-0.84631896,-0.9883572,-0.9990978,-1.0750239,-1.223108,-1.303462,-1.2627742,-1.2177479,-1.0126941,-0.8261051,-0.7467378,-0.8981445,-0.6791202,-0.95219564,-1.2215707,-1.3063525,-1.1569519,-0.4049222,-0.46496415,-0.41958213,0.085720725,0.099894606,-0.07892383,-0.24022561,-0.34014422,-0.5077547,0.0647139,-0.04924857,0.0756736,0.44428366,0.27361292,0.2427327,-0.16664708,-0.45571154,-0.67582023,-0.92379034,0.24002743,0.05087387,-0.34769616,-0.6914349,-0.8493296,-0.9888592,-1.0070097,-1.0556657,-1.1189919,-1.0691419,-0.94758916,-0.83336794,-0.9918761,-1.1877959,-1.2628975,-1.3022826,-1.3622284,-1.410425,-1.1191399,0.0706538,0.016934998,-0.3086538,-0.578864,-0.5120211,0.07926003,-0.41434777,-0.7776897,-0.96690345,-1.189164,-1.3065487,-1.3563238,-0.36263525,0.2919906,-0.11260819,-0.48695213,-0.7519827,-0.98154783,-1.1379503,-1.2599472,-1.3667704,-1.4072852,-1.4571338,-1.488899,-1.477543,-1.4167182,-1.4364281,-1.4147,-1.4504082,-1.4377007,-1.4617534,-1.4319646,-1.4054979,-1.4074867,-1.441669,-1.4210851,-1.4489369,-1.4603751,-1.3521149,-1.2992111,-1.1320106,-0.77113175,-0.95958924,-1.1470546,-1.1945347,-1.188273,-1.0327647,-0.8895576,-1.0099502,-1.1686544,-1.2932518,-1.3503225,-1.4050796,-1.4081844,-1.3896899,-1.3891125,-1.4066148,-1.3990265,-1.385853,-1.4034572,-1.2532883,-0.986835,-1.1421084,-1.222699,-1.301377,-1.3612173,-1.3836591,-1.395508,-0.4892136,-0.045164578,-0.23861039,-0.5049443,-0.6042434,-0.75390804,-0.90923786,-0.96712804,-1.0602309,-1.1471369,-1.2216349,-1.2540493,-1.2972584,-1.3504059,-1.3955994,-1.405885,-1.4251461,-1.4130586,-1.443824,-1.3027878,-0.97122574,-0.99357796,-1.0985546,-1.1992029,-1.3011215,-1.3780036,-1.1034291,-0.48943543,-0.55334485,-0.68293035,-0.42176938,-0.58162045,-0.7856703,-0.9258411,-1.0123258,-1.2219862,-1.262501,-1.2846144,-1.3558003,-1.3742424,-1.4007708,-1.4043648,-1.3695233,-0.7837286,-0.2086674,-0.43464065,-0.59773237,-0.7884335,-0.9383161,-0.5621172,-0.46272713,-0.6986768,-0.88346696,-1.0258063,-1.3162962,-1.3794217,-1.4364184,-1.5114038,-1.5241814,-1.5587333,-1.5695951,-1.5738559,-1.5618751,-1.5669928,-1.5788698,-1.5951278,-1.628025,-1.6117909,-1.5754592,-1.5726047,-1.6053824,-1.5853411,-1.4359384,-1.180841,-1.2292409,-1.3206353,-1.4262807,-1.4572845,-1.5050594,-1.4997015,-1.560291,-1.5788009,-1.6221703,-1.6509542,-1.6742601,-1.6908326,-1.6769165,-1.7022041,-1.6344781,-1.6477826,-1.621109,-1.6300647,-1.5892873,-1.6333499,-1.6477982,-1.6379048,-1.604845,-1.6609342,-1.6137114,-1.5945139,-1.620271,-1.6201298,-1.6791022,-1.68031,-1.6764691,-1.6709245,-1.65703,-1.6385883,-1.6647958,-1.662639,-1.6807868,-1.6790586,-1.6865377,-1.7132996,-1.7040603,-1.692855,-1.705445,-1.6995788,-1.73613
+-1.7606336,-1.6148424,-1.6161966,-1.6259674,-1.6055458,-1.64109,-1.6059468,-1.5550478,-1.5780045,-1.592227,-1.5497423,-1.616946,-1.5875074,-1.6149325,-1.6192517,-1.634944,-1.652045,-1.6097018,-1.626191,-1.6254975,-1.6539571,-1.3973366,-0.8653477,-1.30736,-1.5539707,-1.6181831,-1.6367035,-1.6626318,-1.6596568,-1.6670825,-1.6751409,-1.5965931,-1.578623,-1.6111925,-1.611037,-1.598316,-1.5331304,-1.5995035,-1.6037143,-1.6381464,-1.6362255,-1.6293085,-1.4342197,-0.82261795,-0.81122845,-1.0387752,-1.174477,-1.3368266,-1.3569703,-1.5712724,-1.5630368,-1.5950558,-1.6177708,-1.6001954,-1.5802565,-1.5630727,-1.603755,-1.6521997,-1.5902715,-1.4924549,-1.0899303,-0.528862,-0.9523313,-1.1397873,-1.3561199,-1.4210463,-1.4735396,-1.499665,-1.525387,-1.5081756,-1.4984291,-1.2053394,-1.095165,-1.3321407,-1.325504,-1.4516276,-1.0054702,-1.3190017,-1.5077758,-1.5031791,-1.4645772,-1.4590622,-1.476706,-1.497319,-1.499862,-1.3304932,-1.3114507,-1.0534748,-1.0805001,-0.9551141,-1.1329904,-0.777212,-0.4970944,-0.848157,-1.2059867,-1.16527,-1.1287858,-1.1253148,-1.008461,-1.1441658,-1.0746478,-1.2403893,-1.1694758,-1.2715671,-1.3141685,-1.2257441,-1.063312,-1.2151883,-1.2605233,-1.339956,-1.3949096,-1.4206873,-1.4576967,-1.4864913,-1.4901415,-1.2279382,-1.266826,-1.1242985,-1.2331733,-0.7339881,-0.50745934,-0.9115685,-0.8149178,-0.74794626,-0.8486752,-0.86595696,-1.0477676,-1.2070391,-1.1350713,-1.0683454,-1.0339563,-0.06578567,0.504969,-0.1219546,-0.6037213,0.20010361,-0.037802868,-0.5996119,-0.7029728,-0.67465234,-0.09171868,-0.020788945,-0.22811219,-0.11425235,-0.6226424,-0.3600669,-0.45708513,-0.50815415,-0.5667273,-0.4779644,-0.38172936,-0.41596723,-0.22266892,-0.5164801,-0.72148526,-0.91133773,-1.0622299,-1.1937563,-0.8847077,0.21833083,-0.6041988,-0.8972399,-1.049891,-1.1160614,-1.1315355,-0.76950115,-1.037828,-1.1064252,-1.1757815,-1.2416241,-1.2237895,-1.2540423,-1.3215086,-1.3451993,-1.3528178,-1.3787817,-1.2257336,-0.7378549,0.4348756,0.3361389,-0.12880796,-0.42053616,-0.54722166,-0.29672438,-0.72414404,-0.919561,-1.0258188,-1.1410012,-1.203582,-1.2480731,-1.1671394,0.05516529,-0.2575248,-0.60830116,-0.8237332,-0.9624903,-1.0589466,-1.1490752,-1.224119,-1.2579907,-1.2871994,-1.3416934,-1.3697517,-1.333353,-1.3610067,-1.3581384,-1.379302,-1.3742709,-1.3843505,-1.3753871,-1.3764267,-1.382072,-1.3933108,-1.3865871,-1.4128082,-1.4205451,-1.3882372,-1.2072101,-0.95703375,-0.95202017,-1.1530145,-1.2700398,-1.2398599,-1.2362722,-0.88587844,-0.2700732,-0.35561284,-0.6150794,-0.82927877,-0.9748831,-1.1173921,-1.192098,-1.2213866,-1.2602196,-1.3185782,-1.3209368,-1.3189347,-1.3469174,-1.3668545,-1.3322272,-1.3906921,-1.3529685,-1.373378,-1.3719757,-1.3658628,-1.3336502,-0.4429372,0.15798846,0.14152658,-0.29451936,-0.5085208,-0.59582853,-0.68443143,-0.8128638,-0.9309324,-1.0395229,-1.1168789,-1.1728897,-1.2166978,-1.2648671,-1.310744,-1.2951702,-1.3106585,-1.2956207,-1.3750921,-1.3428321,-1.350966,-1.3474073,-1.3643987,-1.3564141,-1.3938144,-1.4218385,-1.4600738,-1.3054507,-1.3291876,-1.378098,-1.3404536,-1.3572426,-1.3835292,-1.4096637,-1.3917098,-1.3731964,-1.3724049,-1.40044,-1.4150249,-1.4150543,-1.409148,-1.4091215,-1.4021509,-1.221469,-1.0946815,-1.1482534,-1.2516576,-1.3234934,-1.3793268,-1.4460266,-1.351727,-1.3937051,-1.442527,-1.4095954,-1.4222033,-1.426707,-1.4406788,-1.4695494,-1.4639647,-1.4736453,-1.4510869,-1.448319,-1.4430661,-1.4448054,-1.4405887,-1.4499017,-1.4650412,-1.4562442,-1.4448017,-1.4503704,-1.4669116,-1.495578,-1.4057311,-1.3353782,-1.3862828,-1.4068171,-1.4108114,-1.4566884,-1.5031505,-1.3848791,-1.4486291,-1.4773643,-1.4973652,-1.4910839,-1.5230911,-1.5260193,-1.5249248,-1.5365874,-1.5062588,-1.5025985,-1.5001382,-1.2949821,-1.340141,-1.4605583,-1.5132885,-1.5104005,-1.4611351,-1.5141656,-1.4839401,-1.4980553,-1.4970539,-1.5052686,-1.5483394,-1.5637546,-1.5664074,-1.5676433,-1.5458695,-1.5450627,-1.5613503,-1.5652112,-1.5770746,-1.5535979,-1.5966434,-1.6032965,-1.6022292,-1.5639892,-1.5579371,-1.6061776,-1.6142722
+-1.6344932,-1.571319,-1.5477349,-1.537463,-1.5233219,-1.5595906,-1.575502,-1.5462701,-1.5137323,-1.5389961,-1.5323684,-1.5663011,-1.5377576,-1.5590253,-1.5444274,-1.5700846,-1.5708239,-1.5715246,-1.5664556,-1.5423797,-1.5758369,-1.3213375,-0.5398998,-0.807791,-1.2263365,-1.4481826,-1.5004809,-1.5094947,-1.5217967,-1.5246631,-1.5376661,-1.5176036,-1.4863598,-1.5148766,-1.5369167,-1.5394192,-1.5544249,-1.5450823,-1.5225893,-1.5524323,-1.5575821,-1.5540618,-1.4191737,-0.55920666,-0.8536782,-0.98044765,-1.3261493,-1.4229026,-1.4207101,-1.497497,-1.4941288,-1.5133364,-1.5268879,-1.5300995,-1.5023255,-1.4978894,-1.5078466,-1.562047,-1.549964,-1.4466009,-0.8451188,-0.63888276,-0.6918843,-1.1657863,-1.3382982,-1.3843467,-1.4337208,-1.4157138,-1.4628816,-1.4558327,-1.3624992,-1.084728,-1.1658437,-1.3105204,-1.038645,-1.0465789,-0.8120908,-1.1137576,-1.3274869,-1.3887215,-1.3986218,-1.3925097,-1.3997355,-1.085694,-0.9649457,-1.0009602,-0.86644757,0.050275214,-0.47262853,-0.49841684,-0.8827578,-1.0297753,0.04584784,-0.63743925,-0.86528194,-0.9549854,-1.05844,-0.8261591,-0.82122886,-0.86983156,-0.6233429,-0.99948883,-1.021019,-0.9868963,-1.0948182,-1.0580044,-0.9605814,-1.1363528,-1.1849672,-1.2538204,-1.2709496,-1.3046715,-1.3487346,-1.3667356,-1.3728522,-1.3348562,-1.3431425,-1.1638297,-0.87943834,-0.7422632,-0.68234545,-0.76613295,-0.5674746,-0.5164728,-0.7469173,-0.6818012,-0.9992416,-1.1390235,-1.2033999,-0.9908961,-0.93870425,-0.18455094,0.444712,-0.32866627,0.51846164,0.46138275,0.35420614,-0.24097714,-0.49534035,0.17068714,0.25974002,-0.0052774474,0.0018227249,-0.1656385,-0.5186007,-0.20211685,-0.45609295,-0.6047783,-0.7004092,-0.8183328,-0.25532395,-0.5580856,-0.39709684,-0.04046499,-0.46038878,-0.7581063,-0.9273753,-1.0569863,-1.0994372,-0.3529632,-0.8517743,-0.97636986,-1.0055859,-1.0355072,-1.1421185,-1.1073842,-1.1748052,-1.2101388,-1.2314266,-1.2343313,-1.2374842,-1.0558001,-1.1337876,-1.2122223,-1.2814423,-1.3233925,-1.0697825,-0.123873256,-0.17824703,0.08616925,-0.45554096,-0.71502507,-0.7940616,-0.35158974,-0.79992545,-0.9446795,-0.8717927,-0.9828241,-1.1044166,-1.1698625,-1.231502,-0.46789646,-0.34066343,-0.723168,-0.93448436,-1.0618802,-1.1511205,-1.2096679,-1.2373489,-1.2621566,-1.2776419,-1.3155144,-1.345931,-1.3389021,-1.3645306,-1.3665409,-1.3727885,-1.3783927,-1.3768594,-1.384216,-1.3846042,-1.3999128,-1.4051356,-1.4080012,-1.4158641,-1.411186,-1.3941559,-1.1889548,-1.1903908,-1.2670355,-1.3341818,-1.3819346,-1.3589208,-1.3915865,-0.75684613,-0.4734934,-0.6877723,-0.913604,-1.0453312,-1.1522171,-1.2586062,-1.3011603,-1.3319072,-1.3358974,-1.3848968,-1.3660383,-1.3532782,-1.3723519,-1.3523947,-1.3497015,-1.3924646,-1.3939208,-1.3980834,-1.4034599,-1.4051466,-1.4573553,-0.7818157,0.27415496,0.022267826,-0.3938277,-0.5620537,-0.71589744,-0.8346321,-0.94781613,-1.0506061,-1.1195214,-1.2042651,-1.2434132,-1.2858101,-1.3101835,-1.3226237,-1.3239486,-1.3260561,-1.3297675,-1.3621123,-1.3639712,-1.3799982,-1.324965,-1.3609177,-1.3686606,-1.3825388,-1.3832531,-1.406075,-1.3315966,-1.1755123,-1.2776124,-1.3374184,-1.3764527,-1.3971477,-1.4045503,-1.3977404,-1.386888,-1.3962092,-1.4077919,-1.4081382,-1.4082859,-1.3951364,-1.4076154,-1.4098755,-1.4232157,-1.393192,-1.4068294,-1.4098842,-1.4143422,-1.3791693,-1.4335271,-1.3951607,-1.423965,-1.4448225,-1.4269295,-1.399663,-1.4129725,-1.4035478,-1.4386001,-1.433166,-1.428488,-1.4136481,-1.4069022,-1.4124495,-1.4253749,-1.4203904,-1.4207859,-1.440633,-1.4360458,-1.4203563,-1.430896,-1.4301523,-1.4390626,-1.4226937,-1.3997389,-1.4327444,-1.4151678,-1.3525815,-1.4130003,-1.4708619,-1.1629474,-1.3606778,-1.4213936,-1.4540184,-1.4493718,-1.4665675,-1.463237,-1.4667733,-1.4804864,-1.4697151,-1.4627066,-1.4558121,-0.95833254,-1.0689802,-1.2493954,-1.4011214,-1.4261377,-1.312047,-1.375901,-1.4070927,-1.4413481,-1.4425337,-1.4605083,-1.4675467,-1.4737186,-1.4838018,-1.479203,-1.4705667,-1.4746443,-1.4853147,-1.4886063,-1.500463,-1.4930863,-1.5058923,-1.511399,-1.5181599,-1.5163319,-1.5094697,-1.529156,-1.5266023
+-1.3885171,-1.3334631,-1.3708364,-1.410585,-1.4092759,-1.4694493,-1.4687986,-1.1922114,-1.1782047,-1.3416657,-1.3830898,-1.4721898,-1.4845161,-1.4734011,-1.4899799,-1.5176275,-1.5305996,-1.5279427,-1.51858,-1.5024843,-1.5020045,-1.3047514,-0.1749959,-0.7034004,-1.1077516,-1.3240232,-1.4018579,-1.4522929,-1.4730169,-1.4861336,-1.4966786,-1.4932923,-1.4371285,-1.4461389,-1.4959762,-1.49931,-1.5036799,-1.4988488,-1.4822547,-1.4748192,-1.5091765,-1.4972515,-1.0723425,-0.5846205,-0.29203862,-0.5797635,-0.9496479,-1.1868547,-1.3388431,-1.4115531,-1.4330959,-1.4328486,-1.4482328,-1.4693354,-1.4494277,-1.4624074,-1.4496078,-1.4995369,-1.5139815,-1.3463485,-0.9557557,-0.7057627,-0.7839615,-1.1051022,-1.3086901,-1.375442,-1.4428561,-1.4613221,-1.4604031,-1.4323041,-1.1656078,-1.1011379,-1.0456537,-1.193653,-0.54581577,-0.20365131,-0.39177912,-0.6205157,-0.9241698,-1.1347876,-1.2246733,-1.214813,-1.0492575,-1.1380774,-0.94757915,-0.97137475,-0.9837476,0.20231962,0.4895523,0.34181154,0.4121303,0.27536362,0.2446253,0.09864586,-0.20255774,-0.24727905,-0.51215065,-0.70490575,-0.77772534,-0.43367702,-0.3826665,-0.5752772,-0.8288411,-0.97903323,-1.0869274,-1.1606214,-1.0554554,-1.0804815,-1.1968777,-1.2366273,-1.2306476,-1.2652533,-1.3217292,-1.33162,-1.1827669,-0.8446021,-0.44500285,-0.19716978,-0.19470036,-0.0053391084,0.094681256,-0.2627916,-0.21399528,-0.38108754,-0.5049031,-0.1697936,-0.5656081,-0.70232695,-0.7526445,-0.46802616,-0.28772843,0.29263055,0.5863912,0.3390318,0.44347924,1.2188001,0.5795951,0.48332813,0.5683188,0.44300714,0.6366599,0.37519187,0.5418282,0.678503,0.489703,0.49262792,0.27342334,0.21713904,-0.077318884,-0.1942032,0.5577274,0.6287861,0.63657904,0.39211035,0.1766521,-0.13174143,-0.38724625,-0.58024466,-0.4934879,-0.4582827,-0.5289422,-0.47220182,-0.31021345,0.08478727,-0.040373333,-0.2525624,-0.44045216,-0.47255743,-0.6710797,-0.8372245,-0.96168494,-0.8789735,-0.9718547,-1.063026,-1.0986121,-1.0184315,-0.42255425,0.3314285,0.30641636,0.25734305,0.1406227,0.034408875,-0.05010683,0.1929188,-0.12166282,-0.3762146,-0.31980544,-0.49873757,-0.72691476,-0.89721215,-0.955328,-0.76246667,-0.6373018,-0.81439126,-0.9361694,-1.0158391,-1.0448742,-1.0395039,-1.1153841,-1.1628901,-1.1662188,-1.0416336,-0.46118867,-0.17188865,-0.38578433,-0.2577892,-0.50321376,-0.70254254,-0.84811753,-0.93154347,-0.9948294,-1.0645187,-1.1014111,-1.1419662,-1.1807647,-1.1875339,-1.1924808,-1.0588105,-0.23288947,-0.2621034,-0.49342215,-0.6824362,-0.73689926,-0.7441919,-0.64870274,-0.46405566,-0.25438184,-0.39578727,-0.57559216,-0.73631227,-0.93105197,-0.92080426,-0.9568062,-1.0150809,-1.1067352,-1.1055465,-1.1146289,-1.1511817,-1.1391469,-1.1360905,-1.1778028,-1.1817322,-1.2413714,-1.2291658,-1.2506263,-1.2562485,-0.4990716,0.32032928,0.19945446,-0.12956747,-0.35223174,-0.52583635,-0.59509623,-0.70455754,-0.8053899,-0.8826381,-0.9976479,-1.0475183,-1.0963669,-1.1533611,-1.1691315,-1.1867149,-1.1346298,-1.1715537,-1.2237651,-1.194538,-1.1257598,-1.0191717,-1.1460731,-1.1511143,-1.2714919,-1.2637246,-1.2954822,-1.2358838,-1.2003438,-1.1839337,-1.1764624,-1.25754,-1.2951509,-1.3062556,-1.2960703,-1.2757168,-1.3102195,-1.3013253,-1.3100826,-1.2894397,-1.2771912,-1.3032986,-1.3034761,-1.2583923,-1.2282785,-1.2872686,-1.2244723,-1.2734425,-1.3331916,-1.3583392,-1.332216,-1.3868468,-1.4033413,-1.3467356,-1.3014383,-1.3562634,-1.3109936,-1.4009159,-1.4223838,-1.4130721,-1.3168073,-1.3549944,-1.3663092,-1.3487446,-1.3370812,-1.3583517,-1.3876145,-1.384017,-1.3720847,-1.3791413,-1.3544967,-1.362298,-1.3745586,-1.319783,-1.3699818,-1.1505586,-1.0405631,-1.2309384,-0.9915724,-1.0051311,-1.2015945,-1.3284566,-1.3834643,-1.403192,-1.4310846,-1.4486753,-1.4502039,-1.4592509,-1.4328017,-1.4248894,-1.4212089,-0.7607486,-0.6868643,-0.87853396,-1.108017,-1.178914,-1.0017332,-0.78150815,-0.7205174,-0.7682071,-0.8687218,-1.0809088,-1.2147694,-1.2759839,-1.3238368,-1.3240395,-1.3437219,-1.3618656,-1.3818934,-1.3955021,-1.4094815,-1.430687,-1.4560854,-1.4704318,-1.4803692,-1.4946454,-1.4988947,-1.5212762,-1.5103796
+-1.3785728,-1.3517201,-1.2733064,-1.3360288,-1.3653121,-1.3959339,-1.3825809,-1.3721907,-1.3928237,-1.4517255,-1.489238,-1.5079832,-1.5114963,-1.4702711,-1.4987805,-1.536899,-1.5366488,-1.5427835,-1.5355086,-1.521636,-1.4992487,-1.3894366,-0.928198,-1.0644282,-1.3435203,-1.4794229,-1.5195167,-1.5398443,-1.5506098,-1.5444796,-1.5528529,-1.5439278,-1.4914429,-1.4433253,-1.4202958,-1.4629133,-1.4924068,-1.3366282,-1.2436736,-1.3580501,-1.4409491,-1.4659175,-1.3080755,-1.2301091,-1.0752984,-0.7974223,-1.0948238,-1.3262086,-1.464724,-1.5026987,-1.5212057,-1.509826,-1.509124,-1.5145334,-1.4901228,-1.4811116,-1.4943898,-1.5119586,-1.5067427,-1.4915086,-1.4347098,-1.0541112,-0.7057743,-1.0191435,-1.2304721,-1.3163428,-1.376692,-1.3943404,-1.39149,-1.3683296,-1.1189963,-1.0545366,-1.1741029,-1.19977,-1.031863,-0.60764223,-0.5245563,-0.49894994,-0.39021426,-0.76420677,-0.9441335,-0.5962983,-0.3019304,-0.5748736,-0.71081907,-0.7384679,-0.7617144,0.17088303,0.21687621,0.42490628,0.06619621,-0.061456107,-0.13912612,0.47701174,0.2087313,0.15960053,-0.19293934,0.044002183,-0.039417274,0.13984492,-0.07982396,-0.31943846,-0.47021526,-0.3805691,-0.5185552,-0.6466095,-0.56177574,-0.47669172,-0.5910668,-0.550131,-0.51375633,-0.6244055,-0.7722486,-0.6998666,-0.3871651,-0.50365686,-0.5076074,-0.035521127,0.29045963,0.33435047,0.18018675,0.4266358,-0.012899183,-0.02930563,-0.14499518,-0.24679273,0.11210201,-0.13959202,-0.17413199,-0.26276708,-0.030087434,0.20097682,0.33155423,0.14115682,0.25463527,0.4829722,0.63453954,0.358346,0.49627298,0.41450217,0.3651424,0.24760577,0.29401323,0.39840564,0.40628237,0.18833408,0.25156698,0.08349522,0.046690412,0.07820467,0.5577391,0.5759005,0.46135318,0.31217945,0.14781752,-0.052957825,-0.09782859,-0.2334486,0.12961024,-0.15444794,-0.21194261,-0.21119544,-0.16456282,-0.20644093,-0.19652665,-0.1661047,-0.03270503,-0.27282512,-0.43501335,-0.58449376,-0.58073795,-0.52337426,-0.4729911,-0.64665824,-0.7416494,-0.7721019,-0.43507034,-0.2368862,-0.08566106,0.0012918338,-0.16011307,-0.25343055,-0.031553365,0.101454444,-0.10899111,-0.2737679,-0.25128406,-0.40280133,-0.5568315,-0.6724795,-0.7617469,-0.82777524,-0.8556845,-0.9129634,-0.97099614,-1.0137761,-1.0323458,-0.99532425,-1.0329556,-1.1028858,-1.0796694,-0.62657607,-0.29038754,-0.18489686,-0.350385,-0.44458634,-0.5757986,-0.72377133,-0.82993746,-0.8925972,-0.93834925,-0.9857333,-1.0410134,-1.0727837,-1.1114209,-1.1507766,-1.1726611,-1.172251,-1.1603184,-1.007546,-0.89441097,-0.8717557,-0.77530617,-0.4068861,-0.37957487,-0.44620824,-0.47746092,-0.5236085,-0.6123594,-0.72594625,-0.901686,-0.90370446,-0.93290114,-0.9850012,-1.0572312,-1.0801346,-1.0580182,-1.0519918,-1.0878891,-1.0703342,-1.1389593,-1.1985452,-1.2172439,-1.2130367,-1.2277431,-1.2786092,-0.6712885,-0.26700926,-0.42264098,-0.63184047,-0.773421,-0.8762787,-0.88019633,-0.9789287,-1.0282159,-1.0952709,-1.141448,-1.1775626,-1.207876,-1.2306334,-1.2510043,-1.2665441,-1.2457795,-1.2449105,-1.2366724,-1.1733692,-1.198611,-1.1736948,-1.2443913,-1.2725694,-1.3115042,-1.256516,-1.2440194,-1.1909189,-1.2499862,-1.1616912,-1.189318,-1.308331,-1.3214171,-1.3164186,-1.3091424,-1.3090613,-1.2706287,-1.3101274,-1.3048704,-1.3039885,-1.3112898,-1.324399,-1.3156921,-1.2786663,-1.2810936,-1.3327157,-1.185781,-1.2286816,-1.3163904,-1.2601728,-1.3402636,-1.3485646,-1.3576171,-1.3439085,-1.3044622,-1.3679082,-1.3630308,-1.3161936,-1.35888,-1.1918976,-0.9993608,-1.1764879,-1.2394707,-1.2767967,-1.3141053,-1.3544673,-1.3758557,-1.3677602,-1.3498309,-1.3429713,-1.3419335,-1.3342249,-1.3524017,-1.3714869,-1.3791292,-1.0061498,-0.8443515,-1.015034,-0.47646695,-0.66737676,-0.872104,-0.9942317,-1.1128706,-1.2180082,-1.2860736,-1.3087313,-1.3380454,-1.3757148,-1.3611001,-1.3521707,-1.3299627,-1.0077181,-0.6888598,-0.8645258,-1.0664203,-1.0277134,-0.76373863,-0.76256716,-0.6558279,-0.5697843,-0.6152242,-0.8154299,-0.98363566,-1.0970662,-1.1706295,-1.2160155,-1.2335951,-1.274142,-1.3366227,-1.330444,-1.3628542,-1.3949132,-1.3973012,-1.4023045,-1.4408562,-1.4609344,-1.4813851,-1.4922495,-1.5006436
+0.15071471,0.4019115,0.8695715,0.7505944,0.45810843,0.50149477,0.6004853,0.3637398,0.24269381,0.46302587,-0.19350097,0.051247966,0.24053466,0.23850778,0.25695524,0.71429116,0.6686284,0.63180465,0.5929529,0.41460606,0.36856827,0.25466612,0.21020672,-0.028183497,-0.1071518,-0.31297478,-0.38388163,-0.3140103,-0.24129331,-0.25155932,-0.3403113,-0.42854214,-0.52901053,-0.5965136,-0.6955263,-0.7549659,-0.76489556,-0.7672688,-0.77940977,-0.01873643,0.9779853,0.90326625,0.78405267,0.60962373,0.48260587,0.18150964,-0.018783994,-0.257639,-0.38319498,-0.4523294,-0.4834115,-0.6835246,-0.58297867,-0.6358986,-0.7204335,1.0235989,1.1293211,0.9829435,0.99132276,0.601983,1.9253299,1.8066423,1.2752117,1.0456676,0.65414226,0.17193568,-0.08331733,-0.31019992,-0.4237951,-0.4122088,-0.25954035,-0.40912282,1.3593721,0.5763568,0.15436229,0.038719766,1.4657716,0.8590306,0.12121021,1.3919188,0.9286319,0.035674788,1.4716706,0.83204573,0.29526684,1.0997064,1.4559585,1.5987895,0.8745587,0.2234106,0.18975273,-0.036568396,0.20133825,-0.124561094,0.054940134,0.44038075,0.19350907,0.47654915,0.059680574,0.6808959,0.8401557,1.0456263,1.794703,2.1585588,1.7327846,1.2746414,0.9757551,0.6977914,0.21001104,0.03316123,-0.2996265,-0.566314,-0.7112758,-0.6412497,-0.5917627,-0.7832482,-0.7754346,-0.7175255,-0.7960417,-0.874045,-0.88628435,-0.8114986,-0.6979985,-0.8255077,-0.8280765,-0.3622197,-0.64010507,-0.78372437,-0.88742054,-0.7435343,-0.52005607,-0.046706416,0.04856556,-0.074980564,-0.3297314,-0.61473876,-0.5644045,-0.6261895,-0.7862212,0.1463686,-0.027989827,-0.32839668,-0.59491515,-0.7117758,-0.77849686,-0.7581492,-0.7201613,-0.78836405,-0.6802591,-0.7489637,-0.7866833,-0.8561512,-0.8875983,-0.86410916,-0.8404542,-0.8010484,-0.79502976,-0.15869394,0.48694998,0.2763275,0.35829693,0.66164815,0.4646462,0.24208814,0.367773,0.1653561,0.06687445,-0.10411324,-0.2081255,-0.34530658,-0.44232243,-0.3651127,-0.4716044,-0.6857829,-0.54360116,-0.12451597,0.46557078,0.7175929,0.61439764,0.37891656,0.26230207,0.12305888,-0.050182603,-0.07595154,-0.3013175,0.26685596,0.99341154,0.9245356,0.72195435,0.46969688,0.48157293,0.4722084,0.41512933,0.49376956,0.36074907,0.19495642,0.3563045,0.45467493,0.27018502,0.2781743,0.35560292,0.2637077,0.14830121,-0.023417793,0.034561418,0.35580117,0.37193346,0.23716566,0.14079991,0.28994286,0.3180481,0.30979183,0.14126539,-0.026109196,0.2508586,0.3221445,0.30847198,0.30461317,0.23006749,0.1697124,0.2142893,0.11355292,0.14796472,0.14669894,-0.023789957,-0.026090443,0.0062272176,-0.05441638,-0.15163645,-0.10058216,-0.30867553,-0.56860095,-0.74583685,-0.682152,-0.7487484,-0.7734824,-0.86563194,-0.87941,-0.8739798,-0.8437518,-0.8839718,-0.89701533,-0.67573524,-0.7668445,-0.8724196,-0.9367764,-0.87289345,-0.98616385,-0.8367019,-1.0427067,-1.1009035,-1.1020894,-1.1047738,-1.0200295,-0.99860597,-1.0277832,-1.0573232,-1.0639265,-1.0554984,-1.0277355,-1.0225729,-0.9849204,-0.97202146,-0.93638515,-0.9945977,-1.0287211,-1.043234,-1.0001853,-0.96556354,-0.9482124,-0.9927411,-0.9790523,-0.9991915,-0.98850286,-1.0080101,-1.0322506,-0.9971032,-1.0372726,-1.0086622,-1.0063804,-1.0193789,-0.99993455,-0.9278265,-0.8754257,-0.927865,-0.9172859,-0.9459095,-0.7848444,-0.86431944,-0.90114075,-0.9483496,-0.9446409,-0.7373394,-0.7198736,-0.81941277,-0.83876824,-0.77762926,-0.821903,-0.846346,-0.8973156,-0.94747794,-0.94805074,-0.8963777,-0.8135272,-0.6361267,-0.7291046,-0.8985828,-0.89384216,-0.87674546,-0.8616389,-0.86552465,-0.8176034,-0.79020953,-0.81751084,-0.7209892,-0.75496113,-0.782943,-0.8511252,-0.8402987,-0.8146697,-0.76404524,-0.5856534,-0.31282166,-0.59086037,-0.5619518,-0.58584917,-0.50968486,-0.5556075,-0.61692494,-0.7392621,-0.75578636,-0.7516804,-0.7470066,-0.7546174,-0.6842077,-0.6958972,-0.71922255,-0.6848898,-0.5507509,-0.3221175,-0.5115252,-0.6433823,-0.57035416,-0.5314968,-0.6009121,-0.63069034,-0.5945601,-0.6366229,-0.5365262,-0.27620336,0.011996023,-0.2783078,0.26180387,0.42083207,-0.16201839,-0.33436713,-0.18602306,-0.06298127,0.10053747,0.47904593,0.5961134,0.76545894,0.47238284,1.1920669,1.6360387
+-0.5383941,-0.35968694,-0.21091563,-0.28288585,-0.41935843,-0.26375464,-0.16538572,-0.2963384,-0.37325713,-0.19336936,-0.5120431,-0.46689522,-0.4351688,-0.5654992,-0.21242797,-0.07774792,0.010633446,-0.14231291,-0.05353404,-0.06560341,-0.13257685,-0.29132125,-0.41182536,0.13421747,0.28417525,0.17906344,0.23816311,0.33998066,0.23369992,0.12955548,-0.07930375,-0.21497905,-0.40462217,-0.5717927,-0.68678117,-0.77965784,-0.90504,-0.97475207,-1.0175159,-0.60955983,-0.20656693,-0.07669432,-0.13719526,-0.17130104,-0.30527386,-0.48926985,-0.6396071,-0.74761975,-0.8126293,-0.8572718,-0.91166055,-0.9965471,-1.004801,-1.0932086,-0.21495625,-0.04431381,-0.11095505,-0.12542829,-0.19940412,-0.37818354,0.36206165,0.3812752,0.16838226,0.102432184,-0.17487192,-0.44115734,-0.66733617,-0.7970234,-0.89952135,-0.9661956,-0.74621654,-0.26575628,0.265618,-0.04865376,0.12487476,0.20983294,0.15723793,0.03280989,-0.3221581,0.016153745,-0.07826293,-0.44662166,-0.38642144,-0.5007043,-0.6729151,-0.046562158,0.025524825,-0.10991446,-0.32012254,-0.5301694,-0.65751106,-0.69666857,-0.19703573,-0.4477139,-0.60434854,-0.055740036,-0.17034876,-0.093924664,-0.26457107,-0.45134372,-0.5484352,-0.43443704,-0.32867354,-0.25974852,-0.3223288,-0.28690517,-0.27831364,0.2342101,-0.011830643,-0.12482675,-0.42919517,-0.67839205,-0.92231655,-0.16708851,-0.26071662,-0.6165174,-0.8000194,-0.83892035,-0.85059667,-0.8966521,-0.99508595,-0.9797443,-0.4902727,-0.67301404,-0.8485669,-0.8938364,-1.0709856,-1.1915017,-1.2434776,-1.2743251,-1.0709215,-0.97570205,-0.839164,-0.81369007,-0.70137036,-0.87083757,-1.0362446,-1.1820099,-1.3024809,-1.3120915,-0.5079113,-0.5843507,-0.7178112,-0.8959818,-1.0587032,-1.1315063,-1.1076273,-1.274756,-1.2420955,-1.3485249,-1.349984,-1.4058328,-1.4262867,-1.4080131,-1.3940303,-1.2054033,-0.88428813,-0.2780703,-0.15141982,-0.023261957,0.044608667,-0.032606147,-0.17045695,-0.2707391,-0.32507986,-0.429366,-0.53529495,-0.27159798,0.07121717,-0.08624416,-0.23602605,-0.38656467,-0.5961914,-0.031952433,0.13961251,0.46288523,0.350502,0.43400434,0.40729165,0.28752437,0.13493869,0.034671284,-0.14242867,-0.21539819,-0.38950709,-0.3089805,0.0410562,0.12848823,-0.00922583,-0.07189462,-0.16660541,-0.049708195,-0.049309976,-0.10439762,-0.21632779,-0.26957405,-0.120277636,-0.11728493,-0.3095171,-0.2974047,-0.3822719,-0.38392475,-0.4024195,-0.38447505,-0.45244867,-0.5723543,-0.5496098,-0.58702576,-0.6387248,-0.6010435,-0.67391795,-0.69235015,-0.69139194,-0.23217067,0.1286409,0.115569435,0.071158975,-0.017642364,-0.091062255,-0.15558374,-0.23518693,-0.30119422,-0.30100423,-0.37636983,-0.43680763,-0.45735365,-0.47136635,-0.48945332,-0.52003646,-0.50252557,-0.58693415,-0.7497122,-0.78705543,-0.7563777,-0.74038625,-0.6963686,-0.8450258,-0.8886105,-0.9487046,-0.9371128,-0.919875,-0.85192907,-0.7922001,-0.7599443,-0.80556005,-0.90753317,-0.848078,-0.8693736,-0.88156,-1.1387677,-1.1492624,-1.0929004,-1.09519,-1.052032,-1.0078048,-1.0507329,-1.0774035,-1.1125957,-1.1186705,-1.057069,-1.104468,-1.1295891,-0.9645158,-0.86266994,-0.7999625,-0.9192498,-0.9979136,-0.98751163,-0.9889865,-0.99316895,-1.0547994,-0.9824594,-1.0177519,-0.9396268,-1.0567048,-0.9854289,-0.97489893,-1.0908495,-1.0864252,-1.0874691,-1.086694,-1.0911424,-1.0834615,-1.0218843,-1.0324455,-1.1148946,-1.1077636,-1.0807782,-1.0729434,-1.0608708,-1.0364153,-0.99690914,-0.8093114,-0.79674315,-0.83737963,-0.8677157,-0.9516249,-1.0040828,-0.95128536,-0.9426713,-1.0347493,-1.01792,-0.8904532,-0.7928663,-0.7538285,-0.9000584,-1.0714626,-1.1415331,-1.1094599,-1.0329343,-1.0072465,-0.98060405,-1.0233958,-1.0716355,-1.0653434,-0.60976267,-0.7690166,-0.9247999,-0.92355084,-0.90794826,-0.81227976,-0.6359208,-0.5254691,-0.6071617,-0.68948114,-0.59602654,-0.5464727,-0.35197848,-0.7640059,-0.8969407,-0.8069742,-0.80079126,-0.84320325,-0.93410087,-0.8279206,-0.93293715,-0.8526552,-0.7524565,-0.64347464,-0.6874846,-0.89326775,-0.9939749,-0.9348757,-0.99450684,-0.9168129,-0.88399875,-0.8777356,-0.75305116,-0.58365786,-0.3720594,-0.20841873,-0.34552896,0.29411808,0.45208707,-0.23352325,-0.2593397,0.5165909,0.4046445,0.74940515,0.85576266,0.70053214,0.5393806,0.5308722,0.6615677,0.49109885
+-0.31781396,-0.27998522,-0.28195363,-0.37480417,-0.47708946,-0.327117,-0.32855853,-0.4061457,-0.4642591,-0.38757268,-0.646206,-0.623141,-0.65708363,-0.55717003,-0.6025589,-0.43592662,-0.4697876,-0.23939523,0.23682418,0.21979746,0.17623833,0.09407977,-0.0057429895,0.21011528,0.39373815,0.27471757,0.3548556,0.34987926,0.50869215,0.4810564,0.30589476,0.23717538,0.06445227,-0.11659648,-0.23095,-0.34258217,-0.48142827,-0.5996225,-0.72739154,-0.19234657,0.47322437,0.22929657,0.10835297,0.11200518,0.066145755,-0.054026388,-0.20357797,-0.31482968,-0.46930826,-0.6349009,-0.5889588,-0.69129926,-0.65183437,-0.86381984,-0.8998086,-0.70162964,-0.7716174,-0.8540171,-0.8843421,-0.4938711,0.38180485,0.29255074,0.09584988,0.12235496,-0.09116725,-0.36897337,-0.599705,-0.7512102,-0.88723,-0.9654546,-0.4223957,-0.5041951,-0.17340603,-0.14987004,0.009676017,-0.2843951,-0.53985566,-0.23591337,-0.1859855,-0.3210292,-0.5294944,-0.746405,-0.82516515,-0.9631951,-1.06915,-0.9176805,-1.0845813,-1.2032411,-1.2104757,-0.9408941,-0.7990337,-0.9128146,-0.9420521,-0.39803547,-0.5071435,-0.79990935,-0.17265731,-0.18721533,-0.5068007,-0.7122974,0.16913229,0.39499313,0.35715795,0.08862247,0.048163615,0.12252603,0.18061802,0.20801711,-0.16219321,-0.48730522,-0.6311235,-0.7426843,-0.9847584,-0.203105,-0.24161738,-0.5780542,-0.4893303,-0.19436869,0.15645435,-0.038628288,-0.34256187,-0.6258479,-0.11653315,-0.33259997,-0.5891667,-0.5863559,-0.8108121,-0.9237828,-1.0218529,-0.9425677,-0.9062284,-0.8834548,-0.54600716,-0.5920945,-0.6317283,-0.86021805,-0.6115242,-0.6022385,-0.8782437,-0.93624973,0.09958837,0.20678607,-0.03406539,-0.27165914,-0.4772817,-0.61986375,-0.6958224,-0.7522763,-0.48961228,-0.6141161,-0.8662243,-0.9899492,-0.9657662,-1.042095,-1.0688707,-1.060507,0.44561657,0.6986837,0.5149543,0.38558966,0.5022168,0.33717617,0.44497782,0.2616297,0.06656576,-0.015320785,-0.11348329,-0.20340323,0.2921749,0.11252522,-0.009932466,-0.14046958,-0.35566354,-0.25321114,-0.38701925,0.48101208,0.6137283,0.8576393,0.7036638,0.5057512,0.25835186,0.14987388,0.031913392,-0.14684412,-0.27861196,0.0186686,0.4915645,0.40382603,0.25849468,0.10269623,0.07678992,0.07419465,-0.051309668,-0.08915203,-0.31284392,-0.25132358,-0.15337428,-0.20830822,-0.3262282,-0.38425684,0.050161533,0.04714539,0.14205216,0.086755104,-0.057377852,-0.1594533,-0.20619005,-0.2819584,-0.3507574,-0.37547967,-0.43340665,-0.35832804,-0.23342276,-0.2904355,-0.2693988,-0.37068397,-0.38881952,-0.43625367,-0.47240365,-0.49661672,-0.53130466,-0.5641701,-0.5671197,-0.6243839,-0.5979035,-0.5983874,-0.59415686,-0.61229885,-0.6622046,-0.64992374,-0.6744087,-0.743189,-0.74675333,-0.7149264,-0.6572669,-0.6202085,-0.73357135,-0.728051,-0.78602886,-0.76920414,-0.7741029,-0.7112243,-0.65004414,-0.70441306,-0.7799361,-0.79163814,-0.75988364,-0.8067491,-0.85252535,-1.1007359,-1.2046762,-1.1987753,-1.1684998,-1.1211177,-1.1731949,-1.1629741,-1.25685,-1.2786522,-1.1750722,-1.1687331,-1.2839007,-1.2848277,-1.1259432,-0.9305819,-0.8938221,-1.049968,-1.1439062,-1.0803527,-1.1943433,-1.2473605,-1.1395478,-1.0234485,-1.1277163,-0.9390484,-1.1007916,-1.1029216,-1.192855,-1.2925808,-1.3382974,-1.3102319,-1.2887927,-1.226296,-1.2560929,-1.1321597,-1.1467026,-1.290729,-1.3331412,-1.2560388,-1.2329603,-1.1820053,-1.1313858,-1.0634183,-0.7972615,-0.8234553,-0.87429583,-0.8995497,-1.064118,-1.0342042,-1.1160045,-1.1300406,-1.1489698,-1.0801089,-0.9013785,-0.818255,-0.8456998,-0.9339429,-1.1512448,-1.2604418,-1.2855562,-1.1532514,-1.1473191,-1.0443535,-1.2169435,-1.2912014,-1.1288683,-0.6575564,-0.7222718,-0.9565749,-0.9584658,-0.966076,-0.84803784,-0.7121613,-0.6284637,-0.6769956,-0.5842373,-0.478895,-0.51572025,-0.47073722,-0.73134375,-0.8485215,-0.7925236,-0.831365,-0.7644956,-0.78031397,-0.81398165,-0.7845312,-0.62519854,-0.5213588,-0.3684695,-0.39659557,-0.70116013,-0.86822957,-0.7730287,-0.93578327,-0.92320657,-0.9152583,-1.0274488,-0.7469089,-0.51309866,-0.27972156,-0.28237927,-0.33614555,-0.23635429,-0.047513522,-0.11834764,-0.15087661,0.053791694,0.18872812,0.16201746,0.10948328,0.09729191,0.08251821,0.03134188,-0.02716948,-0.12011015
+-0.053393595,0.2882857,0.43788382,0.33067623,0.28396124,0.39199126,0.27747118,0.13252467,0.04550434,-0.054821156,-0.08254487,-0.14888093,-0.2896534,-0.45199192,-0.4229985,-0.06653198,0.62887484,0.9317101,1.0959544,1.0085174,0.8224324,0.60325927,0.35111818,0.45807767,0.7179024,0.67920107,1.1328435,1.069233,1.093098,1.0685647,0.80969083,0.7088031,0.5187386,0.2394953,0.038114794,-0.19485247,-0.3669011,-0.34899986,-0.29043996,0.10455892,0.24141186,0.11853517,0.26344728,0.20588353,0.06370769,-0.06909516,-0.24087286,-0.39335662,-0.5826569,-0.67939776,-0.23282224,-0.20042467,-0.1678873,-0.44292176,-0.024386726,0.37924862,0.099637635,0.15142208,0.10570989,-0.027480654,0.13234177,0.009587772,-0.34439638,-0.5232023,-0.7456424,-0.9206848,-1.0244392,-1.0481876,-1.0988435,-1.0847449,-0.9103079,-0.962314,-0.96715236,0.4992532,0.10491458,-0.20257339,-0.47542846,-0.6767546,0.29490438,-0.043325074,-0.34773555,-0.40325266,-0.4389131,-0.7183909,-0.8647366,-0.90868497,-1.0918559,-1.2204142,-1.2101936,-1.2108972,-1.207103,-1.1821212,-1.1659071,-1.1947577,-1.1151663,-1.005115,0.36027253,0.7634396,0.12258408,-0.29603374,-0.6072098,-0.72694147,-0.8808701,-1.0627697,-1.14182,-1.2203362,-0.9119513,0.67736286,0.13905546,-0.15566203,-0.4887572,-0.7968058,-0.73929805,0.14673185,-0.120688714,-0.43840462,-0.38127777,-0.4003666,-0.0055455193,0.04723335,-0.33051693,-0.347346,-0.39752322,-0.6259006,-0.4725293,-0.31925446,-0.63511944,-0.81842,-0.9240936,-0.13441384,-0.32156056,-0.58992714,-0.3675185,-0.48041868,-0.30144966,-0.5005168,-0.5388713,-0.18116376,-0.30783713,0.05741901,1.0605003,1.0711888,0.7191576,0.38467592,0.017746575,-0.2604007,-0.48441255,-0.27590197,-0.045423977,-0.1546495,-0.5117257,-0.708135,-0.79526204,-0.8751701,-0.9309702,-0.95620334,-0.4683128,0.8608128,0.4826764,0.25548676,0.09770308,0.021582104,-0.077970155,-0.24179307,-0.4187188,0.20386851,0.34929973,0.27358198,0.6830359,0.47760916,0.2757456,-0.069886826,-0.33323255,-0.51425534,-0.57932884,-0.5993825,0.6125306,0.9139525,0.6737609,0.4959569,0.3139246,0.15900305,-0.031964414,-0.24944451,-0.38840923,-0.32255122,0.30173033,0.273279,0.1826483,0.115725584,0.017037041,-0.067744605,-0.14964846,-0.30297577,-0.3354851,-0.35970733,-0.3815068,-0.49910522,-0.5414254,-0.50771403,-0.301537,-0.25910032,-0.12211674,-0.1488092,-0.28992465,-0.4293455,-0.46270615,-0.6134876,-0.60831916,-0.57771057,-0.61165076,0.4010709,0.82687527,0.7279141,0.6779173,0.5412504,0.51248616,0.42343748,0.31128466,0.1807324,0.066986956,-0.015987866,-0.07324465,-0.1750015,-0.1898374,-0.20304003,-0.23097998,-0.2579044,-0.29915053,-0.3058415,0.039406605,-0.023184486,-0.26455116,-0.15125829,0.11572472,0.21177211,-0.06219559,-0.062102266,-0.24733397,-0.22905046,-0.26638106,-0.21338701,0.3380048,0.040805228,-0.3248806,-0.13849303,-0.26571864,-0.2056368,-0.024089254,-0.5857529,-0.6960362,-0.70141065,-0.64579034,-0.56918895,-0.5836264,-0.53978074,-0.62134016,-0.7103564,-0.60169435,-0.5177232,-0.63767654,-0.768271,-0.63022333,-0.31688917,-0.23616421,-0.4911664,-0.5789041,-0.41313463,-0.6539818,-0.7012266,-0.5983467,-0.42407894,-0.61630344,-0.28769916,-0.4776067,-0.5567675,-0.690812,-0.7778907,-0.7850416,-0.78654903,-0.8151536,-0.7130844,-0.70115536,-0.42801124,-0.4839245,-0.6070642,-0.72505015,-0.7025099,-0.7036597,-0.6981256,-0.6521901,-0.60132617,-0.2929528,-0.3087093,-0.25850385,-0.11853074,-0.41745967,-0.36517736,-0.6048325,-0.5816189,-0.52023923,-0.4532612,-0.14304662,0.037585653,0.0512634,-0.17650115,-0.5168192,-0.735804,-0.70144165,-0.370292,-0.42041737,-0.14895251,-0.43970883,-0.60007006,-0.4693526,0.19034356,0.400376,-0.2340706,-0.30875334,-0.27431902,-0.14897925,0.23296818,0.36368147,0.1554127,0.32396522,0.34331262,0.3094745,0.2785296,0.007710226,-0.42202783,-0.5170856,-0.6289272,-0.5416709,-0.5422506,-0.57843137,-0.3982351,-0.2829331,-0.21273652,-0.05175046,0.1410602,-0.4271198,-0.5798455,-0.47390515,-0.56540394,-0.4970349,-0.48005718,-0.5177412,-0.28776002,0.0998035,0.4290094,0.31931958,0.2056072,0.39158112,0.31236932,0.10655738,0.19836378,0.43123913,0.7355117,0.80096674,0.70062613,0.7141003,0.68555367,0.5884444,0.53311896,0.44982135
+-0.30778462,-0.08616253,-0.019319572,-0.19162571,-0.28756607,-0.4099337,-0.4969976,-0.6180488,-0.7278739,-0.7659097,-0.8128121,-0.90950584,-1.0029168,-1.0754766,-0.83049047,0.1845971,0.470853,0.4421236,0.47724253,0.4042001,0.20536774,-0.050216578,-0.3003494,-0.504257,-0.5663171,0.77324784,1.016538,0.879601,0.9558585,0.81202495,0.6802998,0.45594877,0.2295765,-0.08774594,-0.37034985,-0.5967869,0.24067616,0.49327117,0.62640667,0.5447977,0.38594955,0.017112397,-0.20900482,-0.32248253,-0.4525169,0.46709582,0.44561058,0.19005343,-0.11368439,-0.2529715,-0.3491722,-0.26803115,0.053747065,-0.1244727,0.33723694,0.040864535,-0.200459,-0.12300032,-0.29334348,-0.34999806,-0.25452,-0.6160604,-0.90475094,-1.0513334,-1.2000899,-1.3196137,-1.3400536,-1.3127244,-0.92934704,-0.95501506,-0.6940397,-0.8472804,-1.0651467,0.7340464,0.48655406,-0.06644014,-0.46586573,-0.7767513,-0.9591522,-1.1026244,-1.1308361,-1.2088039,-1.2513785,-1.32164,-1.3394096,-1.3187921,-1.3956139,-1.3476994,-0.47974408,-0.28702772,-0.2636882,1.0702202,0.929771,0.39118895,-0.017120354,-0.37124112,-0.010523193,-0.21577057,-0.6720153,-0.9533578,-1.1058729,-1.1372938,-1.261982,-1.3879579,-1.4080782,-1.403439,-1.3909473,-1.3369063,-0.8408049,-0.8216049,-1.0871218,-1.2102611,-0.94854033,-0.4842419,-0.86108464,-1.069655,-0.7155861,0.18432862,0.7522204,0.47621095,0.015509509,-0.011558838,-0.33507815,-0.44747537,-0.27767077,-0.23817244,-0.6178384,-0.743244,-0.8225932,-0.19768068,-0.13625276,-0.20069733,-0.31227913,-0.24543464,-0.3394044,-0.38471884,-0.3360281,-0.084577166,-0.4723385,-0.38864014,0.47456074,0.4338531,-0.036666207,-0.4642282,-0.81788856,-1.068074,-0.7105105,-0.6596347,-0.56057876,-0.7228866,-1.0249118,-1.1594173,-1.2018951,-1.220022,-1.2355843,-1.2157819,-0.6270472,-0.27690595,-0.45914435,-0.6368555,-0.8451259,-0.58977836,-0.41001397,-0.7198323,-0.9681096,-0.5133276,-0.4009283,-0.07035553,-0.092035435,-0.36935863,-0.62128484,-0.9249668,-1.0511525,-1.1365229,-1.0934683,-1.0288181,0.50214356,0.5084676,0.23707587,-0.014699422,-0.2672249,-0.5293358,-0.7341504,-0.8732043,-0.9601898,-0.4200737,0.16057852,0.04687553,-0.08309246,-0.07699012,-0.2548223,-0.47835028,-0.61690843,-0.8291132,-0.83406186,-0.93020654,-0.9893477,-1.0306642,-1.079369,-1.0645788,-1.0495646,-1.0838734,-1.019348,-1.088942,-1.1366292,-1.1770608,-1.1987469,-1.2496872,-1.1997739,-1.178895,-1.1625912,-1.132008,-0.94289637,-0.9841938,-0.95880246,-1.0814376,-1.0619831,-1.1007197,-1.161692,-1.1961476,-1.1540904,-1.1348958,-1.1692587,-1.1832365,-1.1110084,-1.1333556,-1.1786149,-1.1478425,-1.140994,-1.131214,-1.0196524,-0.94661045,-1.0249225,-0.9653436,-0.8531406,-0.6776038,-0.71813697,-0.65420634,-0.88014716,-0.9538803,-0.9228761,-0.7971205,-0.7652026,-0.91154337,-1.0483893,-0.9536166,-0.9818487,-0.9859588,-0.89445615,-1.1027677,-1.1417193,-1.1698799,-1.0829179,-0.99461436,-0.92661357,-1.0246792,-1.0643346,-1.1081436,-0.96856093,-0.7869993,-1.0106497,-1.1179259,-1.0471435,-0.8071088,-0.6707661,-0.88432825,-0.88264894,-0.78942317,-0.7178216,-0.8836149,-0.89083326,-0.8349211,-0.9335823,-0.8164285,-0.76511717,-0.8416121,-0.91453695,-1.0426558,-1.0124719,-1.0862222,-1.1052451,-1.0462008,-0.9305086,-0.6399971,-0.6221897,-0.7928674,-0.93110776,-0.92901015,-0.8794464,-0.9086771,-0.91801226,-0.92618084,-0.82546383,-0.8114201,-0.732568,-0.5990524,-0.76799524,-0.66791826,-0.651793,-0.73739225,-0.8263676,-0.8313581,-0.6908139,-0.578617,-0.52939725,-0.4650827,-0.47311747,-0.7771479,-0.8287239,-0.5973331,-0.5188669,-0.30530712,-0.34002605,-0.55880356,-0.49279058,-0.025696538,0.36107084,-0.22472742,-0.4405095,-0.4278043,-0.3613147,-0.20581049,-0.059564017,0.08348153,0.38603276,0.43915188,0.3449935,0.1842317,-0.079150714,-0.47652698,-0.75952387,-0.95804477,-0.8691771,-0.7650676,-0.9831741,-0.8164282,-0.8149086,-0.8252309,-0.6276872,-0.41615123,-0.8324393,-0.82494456,-0.58057004,-0.7195594,-0.41213804,-0.2846878,-0.5110485,-0.3374889,-0.12947607,-0.16431898,-0.26215887,-0.36226916,-0.36770347,-0.48461002,-0.5201812,-0.36358315,-0.38239238,-0.34325176,-0.40894628,-0.52258295,-0.3992405,0.26832142,0.745329,0.6629586,0.6484777
+-0.19451484,-0.30150342,-0.21934727,-0.31547958,-0.2773213,-0.32994652,-0.34520996,-0.5330299,-0.6385663,-0.81063116,-0.8052011,-0.7297797,-0.77038944,-0.831247,-0.82024777,-0.023794554,-0.06408035,0.21090648,0.033293806,-0.003029868,0.06246829,-0.064601414,-0.2279653,-0.31938493,-0.39964437,0.2351405,0.466335,0.2571615,0.15123254,0.3484165,0.26053098,0.23978728,0.2329627,-0.008918598,-0.23058787,-0.43035185,-0.18446931,0.31810328,0.23174003,0.16951048,-0.04117725,-0.24722025,-0.40182257,-0.50642705,-0.5567615,-0.13389176,0.034422748,-0.014985427,-0.20758927,-0.38379374,-0.52147937,-0.71371424,-0.4901328,-0.5732759,-0.67128605,-0.5173493,-0.26638353,-0.25718993,-0.49511462,-0.6734263,-0.6587645,-0.44827068,-0.65951484,-0.7622851,-0.9112649,-1.0452526,-1.1458663,-1.1909112,-1.2526158,-1.2813721,-1.2953513,-1.2695671,-1.2766871,-0.3285535,-0.5210278,-0.8454207,-1.0208442,-1.171526,-1.2607632,-1.291489,-1.3615239,-1.3613905,-1.3643,-0.89786935,-0.7039587,-0.95425665,-1.1324973,-1.2986872,-1.3044345,-1.071866,-1.0062983,-1.0587561,-1.0277599,-1.1460083,-1.2673628,-0.64386606,-0.5571923,-0.757618,-1.0028381,-1.135133,-1.231217,-1.2956523,-1.3782544,-1.433994,-1.420166,-1.4519918,-1.4079288,-1.2982196,-1.154488,-1.1493702,-1.3124098,-1.4050598,-1.4302883,-1.3612994,-1.3882885,-1.3842049,-1.372365,-1.1565101,-0.63336146,-0.4942761,-0.21520162,-0.5791288,-0.8037448,-0.82155573,-0.72333646,-0.9149418,-0.96328354,-0.92022324,-1.0230886,-0.5885339,-0.7299378,-0.97127163,-1.0985117,-0.57155275,-0.7492511,-0.9574963,-1.1087792,-1.2093157,-1.2598469,-1.3233366,0.43919203,0.25826547,-0.13688698,-0.35158536,-0.54418564,-0.7479402,-0.92281234,-1.0885186,-1.144566,-1.1921294,-1.2335685,-1.276411,-1.2918372,-1.3071935,-1.3333968,-1.2433302,-1.2659938,-1.230228,-1.1885448,-1.0021794,-1.088129,-1.2202605,-1.2499516,-1.3008132,-1.3364983,-1.0509228,-0.9500785,-0.33697292,-0.2522388,-0.4879557,-0.6601436,-0.88403237,-1.0438831,-1.2329886,-1.2627262,-1.2458766,-0.32623696,-0.35427994,-0.560218,-0.76080465,-0.8979288,-1.00811,-1.1939721,-1.1885874,-1.2234166,-1.2151847,-0.9607986,-1.0262042,-1.1166749,-1.0723674,-1.1683493,-1.2160833,-1.2411313,-1.3150975,-1.264254,-1.2963699,-1.327711,-1.3892267,-1.3187587,-1.4172189,-1.299361,-0.8551289,-0.4944623,-0.63698626,-0.74669206,-0.86840546,-0.97245646,-1.1395453,-1.1502621,-1.1747764,-1.2423964,-1.328823,-1.2907903,-1.3073103,-1.2641611,-1.201582,-1.1424433,-1.1591762,-1.2166965,-1.2753652,-1.2718406,-1.2310112,-1.2526568,-1.2941523,-1.234786,-1.253349,-1.3037577,-1.283622,-1.2877967,-1.2646656,-1.1433845,-0.9023465,-1.0623356,-0.9580867,-0.84518975,-0.57106394,-0.66834223,-0.65849245,-0.81109667,-0.78638613,-0.7011805,-0.6492621,-0.6707587,-0.87648416,-1.0365123,-1.0049841,-1.0141026,-1.0522939,-0.9553796,-1.155005,-1.163943,-1.2461094,-1.158257,-1.032563,-0.8541877,-1.0693641,-1.0784227,-1.1308483,-0.9960346,-0.9634156,-1.2655389,-1.2615039,-1.1623366,-0.9207034,-0.88375074,-1.0280527,-0.9812367,-1.0151922,-0.8668618,-1.0560118,-1.0130465,-0.9097762,-1.0603487,-0.9309373,-0.8814576,-0.97187614,-1.023128,-1.1611454,-1.0714569,-1.1665277,-1.2307394,-1.1737502,-1.009212,-0.68901193,-0.7880751,-0.90459394,-1.0426269,-0.9561596,-0.8502406,-0.8929273,-0.93326426,-1.024643,-0.9964894,-0.9551935,-0.8399642,-0.8294055,-0.87883484,-0.81702715,-0.78429085,-0.97462654,-1.0528659,-1.0517781,-0.9432057,-0.77522933,-0.6982466,-0.6398056,-0.7773493,-0.9538121,-0.94843745,-0.77947444,-0.67735326,-0.53778625,-0.5512951,-0.8052487,-0.64717686,-0.38170597,-0.43370283,-0.74043834,-0.8781019,-0.8931506,-0.8350361,-0.74642277,-0.7231786,-0.7581348,-0.7231045,-0.6826301,-0.72461796,-0.7559556,-0.506723,-0.77232194,-0.938944,-0.9814818,-0.93607926,-0.7704869,-0.9763489,-0.908797,-0.8413881,-0.7344451,-0.6277443,-0.6418674,-0.81827134,-0.66562134,-0.52380925,-0.7352046,-0.50866413,-0.23389938,-0.3917519,-0.32695177,-0.32956052,-0.33772382,-0.45481396,-0.5547721,-0.5405084,-0.6196262,-0.7514947,-0.83315086,-0.8755451,-0.68164605,-0.70478314,-0.7152202,-0.81499594,0.20477629,0.3042002,0.1558398,0.17992562
+-1.1435251,-1.2347864,-1.2733725,-1.3264474,-1.3898829,-1.4267029,-1.5068501,-1.5384611,-1.5571423,-1.6044452,-1.4097404,-1.4102654,-1.50302,-1.530151,-1.5751146,0.16255933,0.08732951,0.035766326,-0.22340494,-0.195575,-0.25545013,-0.5036931,-0.6943648,-0.8091988,-0.99122643,-0.77522886,-0.3925485,-0.5894572,0.2490406,0.314085,0.11889676,-0.119373105,-0.42214698,-0.7617975,-1.0148773,-1.2070376,-0.103170805,0.16741005,0.038963236,-0.16749677,-0.19713962,-0.47475833,-0.9634929,-0.9725945,-1.0517821,-0.58213747,0.26989704,0.050443433,-0.27625805,-0.6196741,-0.91618574,-1.1417348,-1.0282956,-0.824406,-0.91809654,-0.518973,0.5200181,0.28812522,-0.22464406,-0.5599574,-0.7061553,0.037477665,0.09520697,-0.5764761,-0.9635966,-1.2440317,-1.4026072,-1.3961213,-1.48865,-1.5235484,-1.600714,-1.586141,-1.5442545,-0.7441655,0.47201708,-0.5232723,-1.0785272,-1.3453131,-1.451001,-1.5076404,-1.545825,-1.5530391,-1.5571216,-1.5612469,-1.4323931,-1.4874748,-1.4516242,-1.1841362,-1.2984738,-1.1735039,-0.5269278,-0.24504557,-0.16736299,-0.49427295,-1.0298117,-1.3474472,-1.4834642,-1.5470402,-1.5693206,-1.5923975,-1.6070998,-1.5791345,-1.5633185,-1.5348567,-1.5592194,-1.5677011,-1.5802226,-1.5797632,-1.1091115,-0.3784399,-0.8924418,-1.285311,-1.5528235,-1.5392065,-1.2411338,0.43802235,-0.3666398,-1.0294658,-1.1564152,-0.9656937,-0.93931484,-1.3151658,-1.4815756,-1.5839298,-1.2977283,-1.3375669,-1.6010888,-1.3874846,-1.4865642,-1.5522023,-1.5781686,-1.3665488,-1.323739,-1.1228251,-1.2922916,-1.376372,-1.3192928,-1.1200924,-1.272823,-1.4624016,-1.429137,-1.4052036,-1.5511895,-1.5880098,-1.588484,-1.6347903,-1.4876037,-1.5032135,-1.5358391,-1.5898442,-1.0242729,-0.5629366,-0.90022457,-1.1600276,-1.3708594,-1.1854358,-0.47731656,-0.51678026,-0.8914625,-1.1312227,-1.2275012,-1.3996295,-1.4227972,-1.5478419,-1.6317713,-1.3839877,-1.436404,-1.3100859,-1.2518423,-1.4113436,-1.5287995,-1.6211985,-1.6156638,-1.6559248,-1.5863621,-1.6326686,-1.4779762,-1.4992514,-1.538303,-1.5705175,-1.6011982,-1.5772215,-1.6497248,-1.4967834,-1.5698801,-1.5710335,-1.4820712,-1.5335298,-0.9853648,-0.6326371,-0.9585339,-1.1366528,-1.3023802,-1.4504968,-0.78676736,-0.76313937,-1.100184,-1.3445034,-1.4334695,-1.4868828,-1.4973967,-1.5179044,-1.4760443,-1.5340562,-1.5660992,-1.5952578,-1.5500805,-1.6038551,-1.5024265,-1.5258622,-1.5524461,-1.5914758,-1.5280082,-1.5484707,-1.5332983,-1.5201007,-1.4993792,-1.5273542,-1.5447867,-1.5310614,-1.4974657,-1.4817498,-1.4812806,-1.5387647,-1.5100466,-1.4986672,-1.5164956,-1.4995381,-1.514852,-1.5452088,-1.4428174,-1.0877168,-1.2287112,-1.1191316,-1.2134511,-0.69193757,-0.7640238,-0.9146004,-1.0698969,-1.1362225,-1.056069,-1.1097122,-1.1829205,-1.2623743,-1.3339331,-1.2727231,-1.2605159,-1.3401232,-1.3004405,-1.40255,-1.3219165,-1.4506385,-1.3486491,-1.280401,-1.1785226,-1.3510578,-1.348451,-1.3792236,-1.3463559,-1.3374889,-1.4461044,-1.556653,-1.4444927,-1.3106351,-1.3070266,-1.3104522,-1.2944328,-1.3726833,-1.1423922,-1.3052814,-1.3211836,-1.2682565,-1.3297979,-1.296931,-1.306254,-1.3294985,-1.3194923,-1.3552063,-1.3713062,-1.4055754,-1.6466593,-1.5393891,-1.3033798,-1.1000681,-1.2189279,-1.2619287,-1.2910006,-1.2830136,-1.2487242,-1.2558228,-1.0292466,-1.3127394,-1.3341699,-1.3033793,-1.2328103,-1.2908316,-1.2785987,-1.2914308,-1.2343125,-1.3855591,-1.4361932,-1.4269857,-1.3361217,-1.2782938,-1.2432445,-1.2174426,-1.2669952,-1.3512084,-1.3461767,-1.3097582,-1.2479538,-1.2623924,-1.2702179,-1.2111089,-1.1906033,-1.1319033,-1.1213411,-1.146115,-1.2232505,-1.3049693,-1.3145878,-1.3070084,-1.323337,-1.3327143,-1.3368754,-1.2850175,-1.3251715,-1.3448832,-1.1398728,-1.152095,-1.362403,-1.3917606,-1.3370858,-1.3569419,-1.428395,-1.4383073,-1.4291959,-1.4450344,-1.4524039,-1.4537644,-1.5139455,-1.462738,-1.4891682,-1.4823406,-1.4531828,-1.4232078,-1.4452612,-1.5246911,-1.5039997,-1.5647274,-1.5746653,-1.5399718,-1.5479339,-1.5664216,-1.5401278,-1.5054913,-1.5217619,-0.4832394,-0.46968436,-0.63387525,-0.7000766,-0.55099547,0.11412264,-0.26648736,-0.40251505
+-1.2779356,-1.3047925,-1.3994744,-1.4081134,-1.5162315,-1.6703491,-1.7132838,-1.7025853,-1.716095,-1.6576298,-0.9265282,-0.75864756,-1.0951207,-1.3236427,-1.4414458,0.114065506,0.16771644,-0.23394647,-0.046012513,-0.05677446,-0.36423734,-0.6267773,-0.9216571,-1.2151988,-1.4650196,-1.5683699,-1.5555581,-1.3425063,0.60511005,0.4027766,0.121305205,-0.23125854,-0.5837879,-0.9147966,-1.1611818,-1.3643645,-1.4232911,-1.469308,-1.5574801,-1.549978,-0.5072414,-0.5505284,-1.0885065,-1.1396382,-1.1523051,-0.36559448,0.1766459,0.20545495,-0.2945518,-0.74192834,-1.1224996,-1.4303416,-1.471025,-1.5431556,-1.6087384,-0.5867616,0.86777854,0.47277817,-0.1426751,-0.59943753,-0.8978211,-0.007587172,0.29816863,-0.39342374,-0.7755335,-1.0499792,-0.8769759,0.29461777,-0.35326427,-0.8636561,-1.280295,-1.4902709,-1.5101391,-0.9287623,-0.18938881,-1.1066356,-1.5139958,-1.5976951,-1.613344,-1.6446584,-1.630261,-1.3004216,-1.3564882,-1.2061808,-1.1687907,-0.84517163,-0.33105192,-1.0941308,-1.1996762,-0.94752336,-1.0681851,-0.5981603,-0.47682106,-0.5053437,-0.94475687,-1.3617127,-1.5403918,-1.5807989,-1.1819448,-0.8718768,-1.3440628,-1.5354695,-1.5490799,-1.5741887,-1.5064068,-1.4623878,-1.5819327,-1.5988717,-1.1325277,-1.0117124,-1.2709727,-1.1936029,-1.3818454,-1.3691972,-1.0140393,-1.0840333,-1.0778005,-0.91359437,-1.2861958,-0.38981035,-0.6466501,-1.2281506,-1.3551624,-1.5405817,-1.5909138,-1.5840473,-1.5626152,-0.9332309,-0.46785665,-0.20125312,-0.61432666,-0.8846886,-1.1915262,-0.9795265,-0.8638026,-0.80225945,-1.2232437,-1.4178066,-0.79268104,-1.1272404,-1.1918217,-0.68640304,-1.1402414,-1.4752028,-1.5284039,-1.5767329,-1.4352995,-1.4647641,-1.4455228,-1.4433472,-0.6631492,-0.26328695,-0.60131997,-0.8181095,-1.0850452,-1.3392487,-1.5541204,-1.6507268,-1.6287698,-1.5572754,-1.5860711,-1.6007768,-1.5713301,-1.6549152,-1.6767416,-1.3009192,-1.210055,-1.3658769,-1.4896371,-1.5283407,-1.6015341,-1.6904,-1.6749182,-1.60462,-1.6266274,-1.6424993,-1.5338018,-1.6126286,-1.6373142,-1.6690955,-1.6919813,-1.6660947,-1.5786067,-1.4446338,-1.4267058,-1.4857509,-1.535229,-1.6555326,-1.6662154,-1.6389589,-1.6827226,-1.7160332,-1.6429439,-1.6732152,-1.5907266,-1.5770487,-1.6768019,-1.675092,-1.6990924,-1.6696033,-1.6238047,-1.6396393,-1.6494366,-1.6790452,-1.7250187,-1.7157481,-1.6924286,-1.6235458,-1.606787,-1.6265659,-1.6178942,-1.6005925,-1.5779765,-1.5264196,-1.5336282,-1.5163957,-1.5334003,-1.548727,-1.4648985,-1.3769243,-1.4416177,-1.4867902,-1.528134,-1.6077516,-1.5881317,-1.5538636,-1.5833054,-1.5971698,-1.6003636,-1.6335926,-1.5427918,-1.3535988,-1.4161727,-1.4883263,-1.4667425,-0.89482105,-1.071791,-1.1944938,-1.3004637,-1.3877532,-1.3668734,-1.4098411,-1.4076159,-1.4242878,-1.4004602,-1.3303695,-1.3322421,-1.404427,-1.3754745,-1.4485914,-1.4098371,-1.4587406,-1.4174826,-1.2795777,-1.283329,-1.3736392,-1.4063435,-1.4205968,-1.4099047,-1.2415328,-1.3686068,-1.5539045,-1.5241783,-1.3017963,-1.253622,-1.2891209,-1.1895134,-1.2429873,-0.89410436,-1.3483605,-1.3240407,-1.1695069,-1.2907674,-1.2391435,-1.2962403,-1.3216883,-1.2878664,-1.3547784,-1.3946232,-1.294008,-1.4370033,-1.4203358,-1.2513556,-1.0111935,-1.1170712,-1.1150262,-1.1397662,-1.2062967,-1.0802332,-1.0044234,-0.798247,-0.944003,-1.1074115,-1.133611,-1.0865088,-1.1796638,-1.2091631,-1.1772856,-1.148211,-1.3557043,-1.4064379,-1.4224249,-1.3741758,-1.2084043,-1.1535723,-1.0817945,-1.1678021,-1.328568,-1.3270288,-1.2061578,-1.1494131,-1.1292616,-1.1615388,-1.1204267,-1.1255455,-1.1256179,-1.0782199,-1.1011741,-1.1310105,-1.2760788,-1.3346137,-1.2807671,-1.2729151,-1.291813,-1.3091323,-1.2955885,-1.3254088,-1.3331846,-1.1863896,-1.2113652,-1.3887761,-1.4723854,-1.4353522,-1.3203875,-1.4728196,-1.5204923,-1.4800204,-1.4266,-1.4095265,-1.4450077,-1.6146263,-1.4996643,-1.490489,-1.5473955,-1.5647125,-1.5670998,-1.5831705,-1.5971128,-1.6200162,-1.6257147,-1.6519985,-1.6737084,-1.6495318,-1.6609656,-1.6750035,-1.6936429,-1.6896197,0.12288361,-0.08245414,-0.23287451,-0.33731458,-0.224756,0.24230206,-0.28154612,-0.34928185
+-0.98370314,-1.2529117,-1.3333035,-1.429016,-1.4740093,-1.593265,-1.6541326,-1.6274924,-1.6525279,-1.6094017,-1.0289247,-0.723117,-1.0455976,-1.2003083,-1.3334976,0.30981833,0.47579074,0.21959439,0.33593902,0.15556502,-0.0627768,-0.31229264,-0.46229184,-0.6826186,-0.9886515,-1.1668231,-1.3402835,-1.431226,0.2712108,0.33965367,0.14700472,0.09497767,-0.15229663,-0.4857682,-0.7569305,-0.9585774,-1.1117656,-1.2437063,-1.436852,-1.5063328,-1.1461922,-0.87959504,-1.2231745,-1.3180385,-1.3853433,-1.3078808,-1.0900431,-1.0055267,-1.076879,-1.319924,-1.4770317,-1.5312246,-1.5563561,-1.5910176,-1.5960462,-1.6677241,-0.59231675,-0.61873543,-1.0681564,-1.2363441,-1.3472633,0.5275443,0.18372253,-0.35473037,-0.62529254,-0.8344073,-1.0256948,-0.43748677,-0.78383315,-1.0970343,-1.2683827,-1.360584,-0.80738986,-0.24173215,-0.53932434,-1.0387031,-1.2960107,-1.4217837,-1.4747243,-1.4417524,-1.4175782,-1.440869,-1.4449813,-1.4555676,-1.4253715,-1.4485021,-1.4127684,-1.5012751,-1.45362,-1.098438,-1.087847,-1.1875284,-0.28196377,-0.3577816,-0.53954685,-0.93026054,-1.2244018,-1.3306489,-1.4472375,-1.4080698,-1.4336113,-1.4498227,-1.4905691,-1.4767454,-1.4980938,-0.34707478,-0.58694416,-1.0271063,-1.2483797,-1.3195951,-1.1749682,-1.1213458,-1.3270798,-1.3945234,-1.4185356,-1.3928914,-1.4026738,-1.3888911,-1.4479635,-1.3802899,-1.2174973,-1.0024254,-1.1668887,-1.1928067,-1.0107428,-1.1886431,-0.5090137,0.07573796,-0.36807674,-0.70375025,-0.7886485,-0.9224231,-1.1132997,-1.0737185,-0.4617793,-0.62663054,-0.93879986,-1.194458,-1.0591929,-0.8018465,-0.8394631,0.13939306,-0.47074366,-0.85345733,-1.0296898,-1.0041463,-0.03637486,-0.5565484,-0.89114183,-1.1388614,-1.1861246,-1.1923795,-0.47531825,-0.5901942,-0.8203356,-0.8150173,-1.0444355,-1.2567434,-1.3155727,-1.2668027,-1.2611253,-1.3171375,-1.3209635,-1.4221268,-1.4357035,-0.9750279,-0.4747964,-0.74920344,-1.0270188,-1.220064,-1.2764008,-1.3860582,-1.4246501,-1.4166102,-1.2252368,-0.8941024,-0.90904593,-1.2278877,-1.3480185,-1.4100604,-1.4192648,-1.4388089,-1.4105512,-1.3349981,-1.3979912,-1.4606664,-1.3275266,-1.471603,-1.446605,-1.4349895,-1.4830825,-1.4619756,-1.3125918,-1.421948,-1.4172304,-1.4206924,-1.4526707,-1.4464835,-1.4658535,-1.4727466,-1.4608971,-1.4294614,-1.4537745,-1.4888737,-1.5149717,-1.4970582,-1.4824846,-1.46999,-1.4556705,-1.4599311,-1.4267128,-1.4044497,-1.4485147,-1.402672,-1.4008886,-1.3831168,-1.3915601,-1.4184875,-1.1911895,-0.8327733,-0.96457195,-1.0970657,-1.1663737,-1.2810628,-1.328954,-1.324975,-1.3420247,-1.3426864,-1.3322026,-1.353733,-1.3464907,-1.3435373,-1.3481283,-1.3748055,-1.4368342,-0.69657385,-0.3928198,-0.6511537,-0.8474071,-0.9842974,-0.9016187,-1.0182265,-1.1329192,-1.2007148,-1.208538,-1.1781025,-1.1315358,-1.1970186,-1.1475191,-1.2508024,-1.2949972,-1.2671213,-1.2570593,-1.1170534,-1.0867789,-1.145513,-1.1795026,-1.2028235,-1.2180398,-1.1011198,-1.1892537,-1.3664122,-1.39025,-1.2723942,-1.1503651,-1.1194991,-1.0545564,-1.0690433,-1.0316375,-1.2328928,-1.1775752,-1.092855,-1.1566591,-1.1733229,-1.1974111,-1.1668792,-1.1642268,-1.2285731,-1.2450967,-1.3002603,-1.3418622,-1.4069042,-1.2358221,-1.0022569,-1.0105453,-1.0017678,-1.0538423,-1.0952308,-1.0151682,-0.84089506,-0.5212368,-0.60870683,-0.77616626,-0.8975993,-0.78776526,-0.9146875,-0.95423794,-0.9589021,-0.896232,-1.0609639,-1.2562656,-1.2927117,-1.3056602,-1.1944627,-1.1532316,-1.0847591,-1.1292899,-1.2129209,-1.2289022,-1.170511,-1.1311138,-1.1033301,-1.0814071,-1.013107,-1.023433,-0.9960003,-0.9739852,-1.0152194,-0.904117,-0.80075395,-1.0224442,-1.0655069,-1.1354821,-1.1536958,-1.1963277,-1.1691818,-1.1980276,-1.1866786,-1.2664783,-1.3759111,-1.3809136,-1.4004946,-1.3650266,-1.3664165,-1.4268405,-1.4551146,-1.4334211,-1.4091085,-1.3992157,-1.3876816,-1.5233097,-1.4980398,-1.5003073,-1.5182234,-1.5446832,-1.5367563,-1.5647612,-1.5712541,-1.5686978,-1.5812155,-1.5950358,-1.5854635,-1.5712351,-1.5960429,-1.5932328,-1.5766923,-1.6621773,-0.108518444,-0.033583097,-0.24652976,-0.27001354,-0.42951393,0.21514869,0.05563823,-0.14625248
+-1.10095,-1.2110457,-1.3081732,-1.4267671,-1.4972932,-1.5985734,-1.6549051,-1.6588628,-1.5690659,-1.625344,-1.5233933,-1.3154094,-1.510519,-1.6222699,-1.6603425,-1.1060141,-0.819965,-0.6447649,0.13581893,-0.34965998,-0.8024433,-1.0050299,-1.141171,-1.2748041,-1.474118,-1.5465376,-1.5814223,-1.6725931,-0.37091255,-0.36227465,-0.1785813,-0.2463628,-0.7292878,-1.1163646,-1.3641477,-1.5302898,-1.5803804,-1.5538688,-1.5902567,-1.6498215,-1.6374953,-1.5011579,-1.6219339,-1.6172504,-1.6768416,-0.36752266,-0.66515756,-0.67163473,-0.71205854,-1.1225326,-1.3974998,-1.478087,-1.5119025,-1.596981,-1.5832578,-1.6484898,-1.6092962,-1.6051366,-1.6325603,-1.6097472,-1.1759431,0.29702032,-0.3474063,-0.8998564,-1.1991929,-1.3534329,-1.0800402,-0.8799827,-0.7491458,-1.0108923,-1.1731961,-1.3842394,-1.3703163,-0.8096421,-1.0154047,-1.3871903,-1.4853913,-1.5164585,-1.5924797,-1.5851521,-1.5885898,-1.5679231,-1.6003058,-1.4201493,-0.27080566,-0.111046694,-0.27988487,-0.67865,-1.1029605,-1.3261601,-1.2724072,-1.1966325,-0.9725386,-1.0765419,-1.130954,-1.2888696,-1.4377315,-1.4995197,-1.5789492,-1.343117,-1.3690629,-1.476522,-1.5323055,-1.5497992,-1.6027331,-1.4967761,-1.4824421,-1.5766704,-1.6155633,-1.5903734,-1.5972322,-1.6068592,-1.6003947,-1.6074582,-1.3964705,-0.5741592,-0.5120894,-0.9442632,-0.8725954,0.19077763,-0.24037728,-0.5565686,-0.8581026,-0.8776727,-0.81167495,-0.8374244,-0.82376516,-0.038486354,0.057341687,-0.06058564,-0.3345729,-0.7079825,-0.7607783,-0.34132284,-0.1607655,-0.14302057,-0.43207514,-0.92362475,-1.1078483,-1.1781237,-0.6850821,-0.0738795,-0.43414235,-0.25602558,-0.6212256,-0.8732761,-0.68664694,-0.5052139,-0.7109042,-0.87742543,-0.57153076,-0.6264242,-0.70855314,0.054074205,0.49849,0.18249802,-0.18444172,-0.35075518,0.14076218,0.07114681,-0.19208455,-0.4517305,-0.4058442,-0.6443422,-0.9337417,-1.065212,-0.54191685,-0.19179577,-0.48384064,-0.65934646,-0.8457186,-1.0796609,-1.2646017,-1.3127614,-1.2059187,-0.8640426,-0.6831721,-1.126847,-1.3165164,-1.3800135,-1.3926132,-1.4158003,-1.4222658,-1.0188397,-0.9924034,-1.236894,-1.2165815,-1.3859235,-1.4334748,-1.4538394,-1.527215,-1.3635004,-1.1520567,-1.277591,-1.3727709,-1.3952689,-1.4570535,-1.3986746,-1.3957971,-1.4266262,-1.4610236,-1.4617592,-1.4638431,-1.5073124,-1.5129404,-1.4542102,-1.4732864,-1.4644008,-1.430626,-1.4585011,-1.4673305,-1.3955233,-1.4261138,-1.4410567,-1.3671896,-1.4022968,-1.3985498,-1.4382637,-0.96297956,-0.07896487,-0.29132175,-0.52960956,-0.73234403,-0.7994021,-0.8936,-0.9175334,-0.9657484,-0.9971664,-1.0306536,-1.0807381,-1.0471921,-1.1372273,-1.164555,-1.1706948,-1.2005,-0.8001566,-0.73362696,-0.85752374,-0.98986423,-1.0215057,-1.0321307,-1.0164111,-1.1204973,-1.166187,-1.1782973,-1.0942551,-1.1246915,-1.1041105,-1.0859618,-1.1325483,-1.1753523,-1.256372,-1.2568266,-1.0664945,-0.9759021,-1.0033687,-0.9953115,-1.00902,-1.0636566,-0.9090589,-0.87057734,-1.2518257,-1.285285,-1.1749501,-1.0485404,-0.98918366,-0.74759007,-0.72851527,-0.6795895,-1.0016891,-0.89874923,-0.81440496,-0.9371729,-1.0240111,-0.9640175,-0.9479463,-0.9384582,-0.9994762,-1.0169399,-1.1087492,-1.1244512,-1.1477691,-1.0710509,-0.70364493,-0.6089352,-0.6118998,-0.59137654,-0.6812414,-0.56498575,0.13962767,0.3687511,0.028813139,-0.22368011,-0.31657177,-0.26882905,-0.26089606,-0.4254856,-0.37613463,-0.34825733,-0.8163808,-1.0292352,-1.0359827,-1.0961891,-0.9409522,-0.8328813,-0.7096748,-0.69572026,-0.94583106,-0.972738,-0.93362296,-0.82711816,-0.77952814,-0.8032874,-0.7995299,-0.7970201,-0.76509154,-0.7788992,-0.84235,-0.36878943,-0.072119735,-0.46919882,-0.5287832,-0.58638114,-0.59477526,-0.6241859,-0.68223107,-0.7921657,-0.7941607,-0.91511846,-1.1311328,-1.2838409,-1.3083237,-1.2811267,-1.2787306,-1.3313675,-1.3767672,-1.3878298,-1.4276357,-1.425903,-1.4339639,-1.4876064,-1.5480579,-1.5405599,-1.5622739,-1.5512252,-1.5326023,-1.5927563,-1.6026919,-1.588875,-1.5607885,-1.5935993,-1.6054492,-1.587457,-1.5612496,-1.5915135,-1.6281381,-1.6736622,-0.9826958,-1.0363214,-1.2954106,-1.4210773,-1.0103503,0.009415589,-0.4408664,-0.7533666
+-1.0421093,-1.0674524,-1.2788955,-1.4822932,-1.598477,-1.6503623,-1.6923159,-1.6138655,-0.76758534,-1.1085612,-1.2227842,-1.2106855,-1.2009376,-1.4247596,-1.5624005,-1.6000655,-1.5484113,-1.497527,-0.67635214,-0.92781746,-1.241266,-1.3775691,-1.4422121,-1.453471,-1.6481085,-1.6785722,-1.6610278,-1.704209,-1.0280433,-0.93231916,-0.79385376,-0.6333843,-1.1302505,-1.4231541,-1.583927,-1.6613548,-1.660876,-1.6852713,-1.6750613,-1.6877856,-1.6916722,-1.6373461,-1.5950205,-1.584452,-1.1273545,-1.0991707,-1.2372944,-0.47355962,0.04648999,-0.6699295,-1.153659,-1.1972203,-1.4330528,-1.6262087,-1.6856288,-1.7052484,-1.6989832,-1.6993321,-1.4248075,-1.3532495,-1.5191027,0.4095951,0.23007411,-0.37566918,-0.8422758,-1.172079,-0.96553063,-0.34184742,-0.61176026,-0.9473301,-1.2044884,-1.4711645,-1.5637445,-1.2593634,-0.94447446,-1.4345617,-1.5924459,-1.6433403,-1.635262,-1.6003271,-1.6103046,-1.6002553,-1.6090667,-1.5933261,-1.5670416,-1.2180797,-0.12301164,-0.798378,-1.2191894,-1.412563,-1.531243,-1.5634239,-1.5176493,-1.4789697,-1.5866834,-1.5937313,-1.5936046,-1.5772328,-1.5811685,-1.5792569,-1.594232,-1.5299139,-1.5554614,-1.5770996,-1.5849724,-1.575834,-1.589962,-1.6038852,-1.5958122,-1.5873532,-1.6000006,-1.5944701,-1.5896951,-1.5935172,-1.5840204,-1.368217,-0.6510564,-1.024994,-0.9859545,-1.1954421,-1.1917262,-1.0414195,-1.293875,-1.4407487,-1.4588206,-1.4754763,-1.5151098,-1.5319526,-1.1422076,-1.0739896,-0.62379706,-0.96646,-1.0398011,-0.7667526,-0.7336409,-1.1002281,-1.1943252,-1.4142859,-1.4910547,-1.536764,-1.2504922,-0.69415754,-0.87648046,-0.9020156,-0.992146,-0.9806254,-1.0357425,-1.2343891,-0.9905634,-0.98749614,-0.8441882,-0.414396,-0.16935235,-0.366097,-0.28500056,-0.68859875,-1.0637481,-1.2917045,-0.80435294,-0.4640664,-0.6078907,-0.86191237,-0.8415747,-1.0124015,-1.2824155,-1.357411,-0.9357424,0.3340718,0.08994932,-0.09811183,-0.28564996,-0.71632,-1.0928172,-1.2721589,-1.38102,-1.4739082,-1.2984533,-1.4024951,-1.4728191,-1.5100319,-1.5209596,-1.5342824,-1.5442306,-1.450977,-1.5031593,-1.5641391,-1.4864228,-1.5664395,-1.5728283,-1.5449295,-1.5734868,-1.2507737,-1.0240321,-1.2315114,-1.3696399,-1.3913255,-1.4331257,-1.4742017,-1.5183647,-1.5475768,-1.5578434,-1.5319985,-1.4928693,-1.5138116,-1.5153427,-1.495249,-1.504422,-1.5382534,-1.4613936,-1.4884819,-1.4847953,-1.4646904,-1.4676414,-1.4963527,-1.4649241,-1.2822844,-1.131474,-1.2269621,-0.7823864,0.16647866,-0.031938605,-0.30941054,-0.58727044,-0.6952014,-0.72902,-0.7968911,-0.86755526,-0.993973,-1.1085118,-1.1878996,-1.2540362,-1.3416632,-1.3326926,-1.3252525,-1.3648809,-1.1494666,-1.1113555,-1.1331753,-1.2500553,-1.2534827,-1.253204,-1.166961,-1.2239592,-1.2911887,-1.3254498,-1.3137313,-1.0481758,-0.9842539,-1.0401698,-1.1103213,-1.1318507,-1.1481735,-1.178673,-1.0599995,-1.0209264,-1.0736072,-1.0822043,-1.1001782,-1.0923997,-1.0754743,-1.0926502,-1.2735813,-1.3118305,-1.2826256,-1.2109424,-1.244662,-1.0045304,-0.961313,-0.9588281,-1.0917547,-1.127615,-1.1010375,-1.2050145,-1.2503626,-1.1129271,-1.0969337,-1.0661776,-1.093027,-1.1346824,-1.1690404,-1.2172837,-1.289691,-1.1911883,-0.90186834,-0.94019485,-1.0424782,-1.0667791,-1.1059761,-1.0375202,-0.21887764,0.075788625,-0.13904044,-0.18395734,-0.2515163,-0.3744874,-0.50890845,-0.67751104,-0.66695386,-0.6549545,-0.9923582,-1.1758568,-1.2219713,-1.2733862,-1.1846515,-1.1708611,-1.1672275,-1.1934886,-1.2629166,-1.270055,-1.2617173,-1.226232,-1.2736598,-1.2923805,-1.3263254,-1.3516324,-1.3883328,-1.4112756,-1.429484,-0.8949631,-0.52686596,-0.8610499,-0.94699883,-1.0214179,-1.1260073,-1.1838057,-1.1905631,-1.3507357,-1.4107318,-1.4784257,-1.4972174,-1.5541955,-1.5331986,-1.5586327,-1.6077119,-1.6021221,-1.6276242,-1.6382508,-1.6568856,-1.6731687,-1.6622343,-1.6577759,-1.6861908,-1.7035646,-1.6654392,-1.6377958,-1.6187387,-1.6233089,-1.648355,-1.630107,-1.6203991,-1.6288549,-1.6277679,-1.6117474,-1.6014006,-1.6232767,-1.6078281,-1.6327282,-1.2305189,-1.4141905,-1.5362322,-1.6005123,-1.2550974,0.45638967,-0.044236682,-0.48734206
+-0.50937784,-0.74971014,-1.1003671,-1.4069088,-1.5698667,-1.674156,-1.7133411,-1.623476,-1.0481178,-1.4584129,-1.6349036,-1.0962633,-1.1208284,-1.5230834,-1.7115092,-1.7890961,-1.8040667,-1.80407,-1.8312858,-1.8376937,-1.8445532,-1.8384548,-1.8466456,-1.8463967,-1.8304319,-1.8339705,-1.8024533,-1.8231112,-1.8163426,-1.8274388,-1.593534,-1.6383712,-1.833293,-1.8315933,-1.817016,-1.7944521,-1.7896773,-1.7887611,-1.8061535,-1.831527,-1.8240138,-1.796984,-1.7882382,-1.7160041,-0.9097128,-1.4096539,-1.4595666,-0.5749743,-0.11105064,-0.991909,-1.3941178,-1.6488619,-1.7632776,-1.7915119,-1.7864647,-1.799783,-1.798743,-1.8127642,-1.7417467,-1.7584721,-1.4208577,-1.2243875,-1.5183281,-1.7249578,-1.8028369,-1.8056471,-1.5607328,-1.6909392,-1.7809609,-1.8140424,-1.3879403,-1.478816,-1.4685066,-1.6585374,-1.8104604,-1.5636295,-1.6305656,-1.7691349,-1.726977,-1.6842983,-1.7048953,-1.7154987,-1.7142062,-1.6732464,-1.3745737,-1.5363952,-1.3664049,-1.4652123,-1.6396453,-1.7247002,-1.7269417,-1.7127584,-1.6768124,-1.680789,-1.7118409,-1.6844683,-1.6795441,-1.6761692,-1.4520978,-1.3155965,-1.5326625,-1.6475989,-1.6750727,-1.6581588,-1.63645,-1.5991904,-1.6042626,-1.607375,-1.5838042,-1.5867906,-1.5912726,-1.5857487,-1.5765018,-1.588007,-1.5674453,-1.4901478,-0.8682137,-1.1795441,-1.3795674,-1.5815407,-1.6386018,-1.661085,-1.660656,-1.2590235,-0.35393512,-1.1392629,-1.2679092,-1.4973736,-1.653049,-1.6831486,-1.4267358,-0.25886196,-0.54177254,-0.70865655,-0.6688515,-1.093616,-1.3730593,-1.5844189,-1.6766868,-1.702113,-1.7423041,-1.693151,-0.5695298,-0.76478565,-1.0448239,-0.5197653,-0.7740981,-1.1192064,-1.3921416,-0.6890195,-0.21911526,0.18799531,0.29471347,0.26485792,-0.08742628,-0.4433819,-0.7693974,-1.0096204,-0.8854995,-0.26093933,-0.3501821,-0.7426778,-0.97722936,-1.2740774,-1.2077283,-1.2879875,-1.3001373,-0.58645165,-0.11288137,-0.3058921,-0.78444064,-1.1368273,-1.3693159,-1.4770603,-1.5365273,-1.6224811,-1.6413248,-1.6241841,-1.5949134,-1.6377532,-1.6668702,-1.6774267,-1.6927843,-1.6260269,-1.6585996,-1.7194676,-1.7103864,-1.7195861,-1.7362297,-1.6480803,-1.6260906,-0.9850726,-0.5818039,-1.0898,-1.3814263,-1.0587769,-1.091934,-1.3908683,-1.5645688,-1.6480317,-1.661401,-1.6788644,-1.6663535,-1.7092102,-1.7154423,-1.7161705,-1.7050916,-1.6895821,-1.6599947,-1.6682642,-1.696611,-1.6774126,-1.6747766,-1.6942183,-1.6974915,-1.4258591,-0.8245206,-1.0658563,-0.53130865,-0.4309715,-0.7043894,-0.9565346,-1.1453334,-1.2230105,-1.297226,-1.3705778,-1.4419504,-1.4689384,-1.5411477,-1.5770073,-1.6416069,-1.5596709,-1.5941849,-1.6527951,-1.6425333,-1.5903945,-1.5808192,-1.6002599,-1.5956064,-1.6173847,-1.6289388,-1.573478,-1.5835654,-1.5962006,-1.6099874,-1.6513386,-0.8155111,-0.50046873,-0.73938566,-0.92177606,-0.971007,-1.0574944,-1.2646182,-1.1944642,-1.1851516,-1.209738,-1.2611451,-1.3122616,-1.304422,-1.3906476,-1.456562,-1.4636548,-1.5484679,-1.5614814,-1.5539603,-1.4354928,-1.2969024,-1.3671695,-1.4700619,-1.4565005,-1.5357127,-1.5603684,-1.5655206,-1.6175982,-1.573927,-1.5772252,-0.6856027,-0.6033931,-0.77912945,-0.93538654,-1.1225551,-1.4523867,-1.3999,-1.2994967,-1.2808936,-1.3109038,-1.3564658,-1.407721,-1.3738962,-0.47017962,-0.13649264,-0.3840437,0.049973093,-0.17448258,-0.43670297,-0.61899996,-0.8813275,-1.0040504,-1.0875797,-1.2021291,-1.3873365,-1.4552218,-1.5293847,-1.5305996,-1.5451603,-1.5607724,-1.5792562,-1.5875828,-1.5883242,-1.6157644,-1.6321396,-1.6548617,-1.6497811,-1.6459138,-1.6742542,-1.6948475,-1.6884422,-1.6213144,-1.0357366,-0.5071385,-1.0017971,-1.1782777,-1.2940838,-1.4189432,-1.5416949,-1.5596793,-1.6302698,-1.6644615,-1.7050185,-1.6494842,-1.6867294,-1.6930542,-1.7340667,-1.7862031,-1.7218641,-1.7249811,-1.739248,-1.7989397,-1.8151675,-1.8253008,-1.7499741,-1.7783946,-1.7643616,-1.7283674,-1.7619219,-1.6788799,-1.7563522,-1.8079743,-1.7711456,-1.7959163,-1.7355895,-1.7328581,-1.7724136,-1.7436489,-1.7189895,-1.7057242,-1.7493463,-1.7039533,-1.7408502,-1.7575285,-1.7502356,-1.763691,-1.1623228,-1.2878101,-1.5772395
+-0.8625276,-0.597888,-1.2313042,-1.5789256,-1.6562501,-1.708669,-1.7425389,-1.6994195,-1.1760234,-1.5032396,-1.5996661,-1.3947341,-1.3096944,-1.5976256,-1.6818503,-1.7224293,-1.7648497,-1.7214328,-1.5284175,-1.6758621,-1.7472727,-1.6956062,-1.7045848,-1.7230921,-1.7520498,-1.756148,-1.7673116,-1.7984364,-1.7770182,-1.7853895,-1.7416526,-1.6391613,-1.7382702,-1.7687323,-1.779462,-1.7589182,-1.7551608,-1.7676907,-1.7416508,-1.7795553,-1.8037525,-1.7443435,-1.67169,-1.6718515,-1.399245,-1.5048325,-1.7157323,-1.0226355,-0.8337672,-1.3402926,-1.5836804,-1.6694233,-1.7898818,-1.7897784,-1.8103783,-1.7862079,-1.7902491,-1.8159214,-1.7740526,-1.7553518,-1.3740519,-1.0764616,-0.9054568,-1.2321585,-1.5030495,-1.6022259,-1.6710668,-1.6789987,-1.6975086,-1.6845263,-1.2746031,-1.009129,-1.1426309,-1.4040987,-1.6508634,-1.4824777,-1.4777732,-1.6724492,-1.7531118,-1.6480837,-1.6352344,-1.6398493,-1.6491891,-1.629377,-1.6353763,-1.6464031,-1.5844879,-1.0951145,-0.54235107,-1.0563936,-1.4111289,-1.4039127,-1.3877077,-1.5508199,-1.6634498,-1.677628,-1.6365151,-1.5757232,-1.2395526,-1.254701,-1.4263458,-1.5809524,-1.6417928,-1.6622092,-1.6512,-1.6318614,-1.0416021,-1.2467811,-1.410754,-1.496922,-1.5501044,-1.5798819,-1.6023,-1.623292,-1.6259916,-1.5932636,-1.2628465,-1.0526836,-1.3268516,-1.5023854,-1.5699172,-1.4831738,-0.73270315,-1.040551,-1.1535468,-1.2889137,-1.4099641,-1.5090368,-1.5421053,-1.5314159,-1.234482,-0.97644806,-0.6963316,-0.9039825,-0.75864077,-0.9198142,-1.1918293,-1.3814688,-1.479286,-1.5125189,-1.5456395,-1.160366,-0.08242201,-0.08631276,-0.07482948,0.26348528,0.14571488,-0.05996331,-0.50453585,-0.83530664,-0.8202467,0.12772125,0.4714565,0.28521606,-0.112342946,-0.30754706,-0.64051676,-0.8763377,-1.0698158,-0.15430036,-0.6177194,-0.8618157,-0.9047328,-0.95753133,-1.0832086,-1.1695514,-1.244942,-0.8067644,-0.6268455,-0.924752,-0.73077255,-0.94201696,-1.1987084,-1.2913212,-1.365602,-1.4527344,-1.4778981,-0.8907956,-0.14328101,-0.31326815,-0.62730646,-0.8295146,-0.961323,-0.97505,-1.1163137,-1.265691,-1.2874813,-1.4044812,-1.4912413,-1.4361804,-0.6121122,-0.33640108,-0.5876675,-0.8523177,-1.0227797,-1.0328181,-1.1050174,-1.2454816,-1.3843033,-1.4754341,-1.5348191,-1.5584879,-1.5496986,-1.5786967,-1.5786984,-1.567589,-1.554224,-1.536777,-1.4977769,-1.5281916,-1.5558792,-1.5502937,-1.559411,-1.5689659,-1.5844151,-1.5567651,-0.54319394,-0.28964454,-0.19548327,0.12336437,-0.073052116,-0.25030607,-0.37044913,-0.45230997,-0.47099608,-0.5149653,-0.67684114,-0.7901712,-0.94064903,-1.0852641,-1.2198411,-1.2785311,-1.3730932,-1.4220443,-1.4209119,-1.3725626,-1.362683,-1.407078,-1.3540533,-1.0126967,-1.0765814,-1.1079806,-1.229852,-1.3028762,-1.3870587,-1.4015441,-0.20180127,0.06278963,-0.18707532,-0.3933404,-0.4778648,-0.5592829,-0.75282836,-0.7382263,-0.7839728,-0.8615545,-0.9532081,-0.9879675,-1.0173458,-1.1132712,-1.2152827,-1.3491609,-1.4244413,-1.433753,-1.4307036,-1.3908571,-1.3392919,-1.3490496,-1.3262467,-1.3282794,-1.365031,-1.4021466,-1.4373808,-1.4560177,-1.3610902,-1.3592713,-0.73408836,-0.68983483,-0.91307473,-1.0445722,-1.1647484,-1.3262832,-1.3220626,-1.3229444,-1.3668528,-1.4189467,-1.4660639,-1.441047,-1.3179688,-0.43790257,-0.16996312,-0.45115685,-0.4340374,-0.59376544,-0.7505143,-0.9188423,-0.9592304,-1.1048087,-1.202302,-1.2391202,-1.3979084,-1.4322315,-1.3538703,-1.4712439,-1.5154985,-1.5517876,-1.5689769,-1.5546992,-1.5440623,-1.5201986,-1.5559287,-1.5855868,-1.5874366,-1.5684031,-1.5848553,-1.6034386,-1.6124914,-1.5890336,-1.1664902,-0.9718263,-1.0580907,-1.2734747,-1.3850584,-1.4922853,-1.573531,-1.523972,-1.6112494,-1.6280831,-1.6513757,-1.6392968,-1.6674819,-1.7053626,-1.6995361,-1.7133873,-1.646344,-1.6630273,-1.68753,-1.6961122,-1.6179479,-1.6571491,-1.6763048,-1.6778251,-1.6627927,-1.686056,-1.6468773,-0.92820907,-1.15803,-1.3315351,-1.5455179,-1.5971308,-1.70435,-1.7008438,-1.6975827,-1.6931791,-1.7179844,-1.7172728,-1.6791911,-1.6667469,-1.7313243,-1.7294545,-1.7355014,-1.7347853,-1.7122424,-1.7021351,-1.7637755
+-0.9467039,-0.88021004,-1.1453273,-1.3514744,-1.4465448,-1.5481713,-1.5627732,-1.5241544,-1.3490849,-1.440581,-1.4166377,-1.1824862,-1.0800478,-1.3348042,-1.4410747,-1.5260756,-1.5845649,-1.508039,-1.4728124,-1.5344346,-1.6088151,-1.490706,-1.4759777,-1.487457,-1.5436271,-1.580077,-1.5846025,-1.6440307,-1.6231043,-1.6209214,-1.6286888,-1.5370704,-1.5710888,-1.6262459,-1.6500834,-1.6330605,-1.521944,-1.5767612,-1.577915,-1.6359915,-1.6623816,-1.6111147,-1.0931206,-0.4437995,-0.3341199,-0.6016488,-0.71318203,-0.81243396,-0.19037214,-0.81881636,-1.0821476,-1.3314528,-1.5160711,-1.5591182,-1.5842525,-1.5573263,-1.5861058,-1.648776,-1.6146127,-1.0204029,0.0440607,-0.16578162,-0.155936,-0.5976367,-0.96693456,-1.1557107,-1.2721131,-1.3646837,-1.4228464,-1.2819858,-1.17137,-1.0720569,-0.8015526,-1.1435187,-1.376858,-0.8957792,-0.9093652,-1.251476,-1.4291236,-1.3581725,-1.3432031,-1.4083658,-1.4567791,-1.4312687,-1.4325385,-1.258138,-0.8572526,-0.31382978,-0.06618046,-0.31573954,-0.7727349,-1.0307246,-1.029989,-1.0016462,-1.2564564,-1.2788975,-1.144727,-1.0714991,-0.7879693,-0.81975466,-0.93781376,-1.1528058,-1.0688438,-0.8867662,-0.9478942,-1.059099,-1.1493027,-1.0987875,-0.85461277,-0.9053452,-1.1185768,-1.2807604,-1.353929,-1.3952214,-1.3980317,-1.3711712,-1.3993881,-1.2973199,-1.336834,-1.1877117,-0.9222914,-0.47833377,-0.58924747,-0.6690648,-0.77799904,-1.0434055,-1.2212615,-1.3115659,-1.0035706,-0.8542352,-0.24145004,0.10011157,0.13524634,0.011008702,0.13919123,0.11067817,-0.10032425,-0.45537812,-0.67508304,-0.19763893,0.20586756,0.08185286,-0.05681298,-0.019603394,0.22817424,0.2869619,0.5084398,0.46473598,0.24347076,0.33261594,0.32346833,0.26421386,0.18587205,0.14409605,0.2946735,0.23444146,0.029807918,-0.16029724,-0.37587413,-0.3324563,-0.5322584,-0.7302579,-0.73015124,-0.5708282,-0.77076995,-0.53703487,-0.21282497,-0.43886113,-0.61396575,-0.53457415,-0.5276625,-0.64016986,-0.78299475,-0.9595655,-1.0541303,-1.1406416,-1.062423,0.0618421,0.4926754,0.36739862,0.17770171,-0.0013251528,-0.18960637,0.036520693,-0.23891824,-0.43303418,-0.5006145,-0.62130505,-0.82708436,-0.96574163,-0.5241733,0.055101726,-0.24302912,-0.4918539,-0.66996807,-0.8030546,-0.9382589,-1.0282124,-1.077071,-1.1313214,-1.1908083,-1.2535032,-1.3103046,-1.2765338,-1.2961226,-1.277621,-1.2559878,-1.129847,-0.8628467,-0.953094,-1.0753305,-1.1159215,-1.1735923,-1.2109637,-1.246397,-1.2818584,-1.1799246,-0.9776418,-0.9261129,-0.9308648,-0.94362116,-1.0590084,-0.9974953,-0.89446515,-0.526932,-0.17469904,-0.25118423,-0.39758924,-0.56982493,-0.722546,-0.8652694,-0.9467274,-1.0117387,-1.0795015,-1.112058,-1.0897454,-1.0642056,-1.1483815,-0.90930843,-0.5644952,-0.709836,-0.6417114,-0.8132856,-0.7953836,-0.86227334,-0.929621,-0.111182146,0.17533207,0.093386635,-0.022052906,-0.139296,-0.2018396,-0.45405954,-0.42630786,-0.43514502,-0.48409897,-0.5766767,-0.66319513,-0.7486246,-0.82461417,-0.9406427,-0.95213556,-1.1400576,-1.0670189,-1.1376249,-1.1599405,-1.1722052,-1.138854,-1.121053,-1.0126144,-1.1406255,-1.1628299,-1.2187183,-0.49502277,-0.37542212,-0.38557363,-0.026524499,-0.20182565,-0.31937653,-0.44576782,-0.4555974,-0.79777825,-0.7877713,-0.7611044,-0.8684653,-0.92025375,-0.9695258,-1.0222319,-0.9693481,-0.2650902,0.3081252,0.0215815,-0.06595012,-0.1198727,-0.21279097,-0.16799492,-0.14896637,-0.2182954,-0.2921616,-0.28130472,-0.6343391,-0.7362288,-0.8011417,-0.98585105,-1.0264626,-1.0432646,-1.0331873,-1.1008323,-1.1391497,-1.1258109,-1.1237335,-1.1706388,-1.2187016,-1.2581534,-1.2894181,-1.3216329,-1.33968,-1.369154,-1.178668,-1.0412735,-1.1621912,-1.22613,-1.224284,-1.2996771,-1.4071696,-1.2606819,-1.3432212,-1.3774183,-1.419219,-1.3958924,-1.4479849,-1.4855225,-1.4722917,-1.5293694,-1.4146326,-1.426781,-1.4458853,-1.4293733,-1.401166,-1.4206196,-1.4453604,-1.4196942,-1.3998601,-1.4332678,-1.3960407,-1.2608713,-1.2942128,-1.3207934,-1.456221,-1.4542333,-1.4961398,-1.5261467,-1.5151504,-1.5142348,-1.5401654,-1.5470519,-1.5590974,-1.1367674,-1.1840814,-1.3793001,-1.5128396,-1.5605595,-1.4988904,-1.4983362,-1.5890199
+-1.5290921,-1.4652833,-1.5437573,-1.5910048,-1.5692608,-1.5938567,-1.5572717,-1.5281798,-1.4233711,-1.5132198,-1.5324037,-1.4985896,-1.4932426,-1.5358795,-1.5593555,-1.6063335,-1.5793872,-1.231589,-1.1992921,-1.3926468,-1.5598996,-1.4308999,-1.4035296,-1.4877634,-1.5906618,-1.5353403,-1.653303,-1.6632254,-1.696719,-1.685242,-1.6646023,-1.5072654,-1.5428177,-1.587769,-1.5981187,-1.5449342,-1.5970857,-1.6086587,-1.6259834,-1.6230798,-1.6280521,-1.5251756,-1.1926848,-0.89659536,-0.62968785,-0.92777514,-1.0406045,-1.1361139,-1.1206828,-1.3256363,-1.3634496,-1.4766977,-1.5455233,-1.5969313,-1.5775849,-1.4513383,-1.5874393,-1.3455448,-1.184202,-0.92756414,-0.5945903,-0.6690799,-0.82218826,-0.8848112,-0.9624951,-1.2117194,-1.3540416,-1.4048967,-1.4189067,-1.402463,-1.3966806,-1.3092731,-1.2413468,-1.3295133,-1.3097867,-1.0636756,-0.81969416,-1.0894519,-1.2754164,-1.2826369,-0.8654898,-0.99250937,-1.1332507,-1.23171,-1.2611728,-1.2534218,-0.9499316,-0.7006886,-0.58743876,-0.5688369,-0.95767856,-1.1291037,-0.8137926,-0.96382785,-1.1679114,-1.2360964,-1.2625206,-1.295166,-1.1926255,-0.9722066,-0.99651575,-1.1756082,-1.2634369,-1.2566421,-1.2777008,-1.2304581,-1.2316065,-1.2674434,-1.26966,-1.2526627,-1.2365019,-1.2321914,-1.254767,-1.268102,-1.2744186,-1.142442,-1.1596992,-0.98329043,-1.0062826,-0.8990269,-0.95786405,-1.1194841,-1.1431257,-1.1571934,-1.1773069,-1.2063737,-1.2080381,-1.2036792,-1.1904627,-1.1278363,-0.9203446,-0.7144967,-0.6905654,-0.018860437,-0.48641688,-0.10288269,-0.26264787,-0.39014822,-0.6499795,-0.7747204,-0.15689805,0.070137165,-0.17850283,-0.46216267,-0.52882636,-0.6513696,-0.62537116,0.14444962,-0.36521637,-0.45320565,-0.27310187,-0.24739364,-0.417149,-0.6281013,-0.71167,-0.6289476,-0.69790125,-0.8935596,-1.0294123,-1.035567,-1.1580906,-1.2002503,-1.0985624,-1.1022923,-1.0116209,-0.73775584,-0.8733407,-0.86497,-0.9646946,-1.0915569,-1.1439831,-1.1667695,-1.1951683,-1.1855836,-1.1997705,-1.2065315,-0.9689988,0.005060248,0.2746314,0.26851904,-0.06088137,-0.34178627,-0.5522746,-0.6828882,-0.88058984,-0.99835896,-0.99736845,-1.095978,-1.1165006,-1.1471413,-1.1752129,-0.9536836,-0.9416684,-1.0838647,-1.1588005,-1.181844,-1.171311,-1.181539,-1.1853181,-1.239809,-1.2745117,-1.3085294,-1.2880383,-1.2118707,-1.2162585,-1.2040819,-1.1840172,-1.1742153,-1.1673133,-1.1689084,-1.1647775,-1.1872697,-1.1867867,-1.183598,-1.2238727,-1.1869853,-1.1023997,-0.77928656,-0.6202073,-0.6985088,-0.87949944,-1.067868,-0.8653109,-0.7573985,-0.7026365,-0.67391014,-0.8316375,-0.9936383,-1.1257364,-1.1954409,-1.2312202,-1.2386818,-1.2305348,-1.2443588,-1.248984,-1.2487683,-1.2358315,-1.2191542,-1.121723,-1.0510988,-1.1629052,-1.2848971,-1.2865576,-1.2610452,-1.2606828,-1.1027994,-0.4549464,-0.2659865,0.03832423,-0.18409324,-0.4465133,-0.6275651,-0.7535796,-0.89023095,-1.0131533,-1.1105944,-1.1757984,-1.202996,-1.2023349,-1.2590489,-1.3496239,-1.2571684,-1.2972817,-1.3104624,-1.3236351,-1.2593986,-1.1738089,-1.1411161,-1.1622639,-1.2013303,-1.2544229,-1.2585238,-1.2455992,-1.180567,-1.1373408,-1.1734143,-1.1148129,-1.1404085,-1.2185285,-1.2760668,-1.2100077,-1.2867656,-1.3323555,-1.3480791,-1.335812,-1.3173496,-1.301523,-1.2435567,-1.1571338,-0.92341185,-0.80259687,-0.9491967,-0.8076061,-0.92228854,-1.1081522,-1.3379829,-1.301506,-1.3128195,-1.4181201,-1.3744822,-1.3717263,-1.4017069,-1.4077618,-1.462384,-1.4735042,-1.4994175,-1.4991896,-1.4397652,-1.392127,-1.3445352,-1.3387995,-1.3775183,-1.4335139,-1.4319224,-1.3679221,-1.3687296,-1.3965541,-1.3722411,-1.2579582,-0.84052205,-0.93211174,-1.0753334,-1.1824683,-1.2679642,-1.1642582,-0.76774156,-1.0738884,-1.2823672,-1.402877,-1.5137594,-1.5387495,-1.5574352,-1.5667845,-1.5688741,-1.5377662,-1.4824053,-1.4847468,-1.1763656,-1.0788336,-1.341713,-1.4382839,-1.3929285,-1.3399684,-1.3504293,-1.2983638,-1.3281155,-1.3600601,-1.3428397,-1.4523437,-1.4067792,-1.4765167,-1.4452856,-1.4288573,-1.4063008,-1.4490516,-1.4626902,-1.4772673,-1.5256708,-1.5489907,-1.5856875,-1.590504,-1.2693094,-1.3158414,-1.5090224,-1.6365163
+-1.8643329,-1.6343455,-1.6219064,-1.6408685,-1.6099818,-1.641503,-1.6088122,-1.5893075,-1.4482058,-1.5896161,-1.5988653,-1.6352891,-1.6034132,-1.6252146,-1.6051474,-1.6721704,-1.667283,-1.6392014,-1.5748276,-1.1188307,-1.0958676,-1.1008611,-0.2414537,-0.68454885,-1.3050455,-1.5953051,-1.6508386,-1.6380755,-1.6808822,-1.6798148,-1.6549729,-1.5767491,-1.5761497,-1.6046457,-1.6318568,-1.583235,-1.5944009,-1.5776072,-1.6032517,-1.6375291,-1.6584204,-1.5453389,-1.2238917,-0.81172484,-0.81473154,-1.1404191,-1.4739282,-1.4852641,-1.4796833,-1.5559399,-1.5082026,-1.5574567,-1.607109,-1.6518607,-1.6379426,-1.6208687,-1.6197851,-1.6287895,-1.5410489,-1.3046358,-0.80396914,-0.9300499,-0.9326899,-1.2875149,-1.4607565,-1.5008574,-1.5256581,-1.5471269,-1.5318785,-1.5005171,-1.3852,-1.0997798,-1.2420297,-1.3930743,-1.4677128,-1.2959056,-0.9396862,-1.0378695,-1.2850997,-1.4140025,-1.1938552,-1.2768221,-1.380838,-1.4405439,-1.37695,-1.3150966,-0.82109755,-0.5126187,-0.67823994,-0.85737395,-1.1666293,-1.1689761,-0.86837673,-1.1660477,-1.3070797,-1.1700244,-1.0739622,-1.1899266,-1.253274,-1.0985603,-1.0407054,-1.2789509,-1.375404,-1.2365503,-1.2838732,-1.2859604,-1.2193666,-1.3564,-1.3201964,-1.2989863,-1.3936274,-1.4323282,-1.4670471,-1.4664836,-1.4737438,-1.4306725,-1.4249747,-1.4419963,-1.28631,-1.121067,-1.2478766,-0.9318032,-0.95482886,-1.1481299,-1.2448647,-1.3155315,-1.3826284,-1.4090129,-1.4177294,-1.286545,-1.0773473,-0.70622826,-0.6205917,-0.7678124,-0.331367,0.20319247,0.1593422,-0.4281658,-0.71898437,-0.0057735965,0.15209976,-0.043322332,-0.15218747,-0.35953104,-0.5358611,-0.62555957,-0.03952583,-0.2192626,-0.46077228,-0.24861354,-0.08487686,-0.22400361,-0.38471633,-0.1533772,-0.44955176,-0.47315753,-0.7403984,-0.9957824,-0.7826682,-0.9377079,-1.1518077,-1.1323082,-0.35814565,-0.52470315,-0.83008254,-0.83387125,-1.0487756,-1.1927876,-1.2636375,-1.3233578,-1.3633977,-1.2201812,-1.2857579,-1.3723955,-1.4113371,-1.4108711,-1.4275209,-0.44856203,0.028104894,0.14492264,-0.112031884,-0.43091273,-0.4811048,0.11393258,-0.40934563,-0.75859666,-0.8337767,-1.0366898,-1.1400809,-1.2553339,-1.309406,-1.1510352,-1.159035,-1.286834,-1.3560988,-1.395112,-1.4012941,-1.4046366,-1.4054224,-1.4135039,-1.4204178,-1.4301066,-1.4327226,-1.4115165,-1.4449146,-1.4506671,-1.4304374,-1.427391,-1.4055761,-1.4245396,-1.4391134,-1.4612337,-1.4522295,-1.4545928,-1.4672381,-1.4531742,-1.4341522,-0.28560984,-0.2898673,-0.54657406,-0.77450824,-0.92095304,-0.997787,-0.9618865,-0.7825003,-0.7010925,-0.8176966,-0.99518895,-1.1167624,-1.2186005,-1.3003297,-1.335274,-1.3187428,-1.3513027,-1.3971101,-1.4035918,-1.3850558,-1.3894597,-1.3861163,-1.3728194,-1.4181473,-1.4524863,-1.4507823,-1.4299927,-1.4241502,-1.4288898,-0.8597655,-0.13377279,0.039072447,-0.38361415,-0.6794934,-0.7768577,-0.8510176,-0.9683523,-1.1036834,-1.2029505,-1.2723376,-1.3032765,-1.324704,-1.3857434,-1.4185796,-1.3849196,-1.3262373,-1.341909,-1.403773,-1.3952146,-1.4153391,-1.2978909,-1.257108,-1.356242,-1.4070019,-1.3972145,-1.4261982,-1.3115101,-1.2639916,-1.2868626,-1.3650655,-1.40747,-1.4412112,-1.4615352,-1.4549513,-1.3973043,-1.4005032,-1.4376166,-1.4658239,-1.4717327,-1.4617162,-1.442991,-1.4214017,-1.3926675,-1.3431612,-1.38645,-1.4473746,-1.455719,-1.471406,-1.5133842,-1.4753274,-1.4814651,-1.5342613,-1.4979851,-1.4588296,-1.4538662,-1.4502506,-1.4907737,-1.4782951,-1.4900069,-1.4884382,-1.4841733,-1.463567,-1.4549848,-1.4673147,-1.4966041,-1.5186875,-1.5128893,-1.483538,-1.4961761,-1.4974444,-1.4878109,-1.4359355,-1.3468684,-1.3934705,-0.58131456,-0.44361258,-0.820078,-0.75351167,-0.7077069,-1.0423871,-1.2658683,-1.3786116,-1.4798167,-1.5027688,-1.4734051,-1.5373006,-1.5526814,-1.540062,-1.4939369,-1.4810119,-0.62969244,-0.7068104,-1.0713404,-1.3077257,-1.3026608,-1.2603021,-1.2599025,-1.3220813,-1.4273736,-1.4558887,-1.4686391,-1.5198228,-1.501872,-1.5150731,-1.5163949,-1.4792528,-1.5000497,-1.540834,-1.5226905,-1.5175189,-1.5798228,-1.5929611,-1.5938668,-1.6215272,-1.5836226,-1.6101053,-1.6339835,-1.6335464
+-1.7309275,-1.5960398,-1.6130571,-1.6335521,-1.6213009,-1.642721,-1.6251535,-1.6043634,-1.487217,-1.5907779,-1.5923882,-1.617775,-1.6069698,-1.5843409,-1.60042,-1.6598024,-1.6654263,-1.6524239,-1.5918286,-1.3491931,-0.92662644,-1.3539459,-0.5052049,-0.59653634,-1.1967509,-1.4729563,-1.5572354,-1.5786376,-1.6025206,-1.6209781,-1.6302459,-1.5837716,-1.5454844,-1.577177,-1.6297145,-1.6273507,-1.6071942,-1.3159494,-1.3234375,-1.5483798,-1.6310937,-1.5381565,-1.2644436,-0.6192728,-1.0341278,-1.3549149,-1.5005713,-1.5215929,-1.5002035,-1.5479302,-1.5267752,-1.5828191,-1.5880016,-1.6184236,-1.6349255,-1.5980122,-1.604844,-1.6525471,-1.5958251,-1.2202247,-1.0052394,-0.8710948,-0.62890965,-1.1889154,-1.4078914,-1.4664762,-1.5191603,-1.5514119,-1.5428348,-1.5080812,-1.415865,-1.1772501,-1.3455262,-1.459794,-1.5043111,-1.5098197,-1.2169462,-0.9986286,-1.2286222,-1.4244214,-1.4512551,-1.4486544,-1.4891351,-1.5138716,-1.5204107,-1.5160584,-1.3064667,-0.4073071,-0.463377,-0.7832417,-1.1585244,-0.82092714,-0.52499974,-0.26922828,-0.91228294,-0.7274455,-1.1533808,-1.2699788,-1.3667881,-1.3991303,-0.9366095,-1.0550677,-1.2780111,-1.3571606,-1.4141726,-1.4445727,-1.4595538,-1.4675634,-1.458919,-1.416096,-1.4488615,-1.4724703,-1.500635,-1.4943808,-1.5034692,-1.4892995,-1.4801077,-1.4939525,-1.1662636,-0.19245827,-0.57000524,-0.7887858,-1.1012789,-1.2750217,-1.331027,-1.3990886,-1.4203877,-1.4031692,-1.4245656,-1.0455922,-1.2274501,-0.56072485,-0.10237267,-0.47936612,-0.06863994,0.085330345,0.26745984,0.09971494,-0.1262415,-0.10242497,0.115565054,-0.07446941,-0.03939136,-0.13451076,-0.54996157,-0.73591554,-0.11272987,-0.50852424,-0.81059015,-0.4503435,-0.2698967,-0.26194584,-0.34127578,-0.54470587,-0.7488625,-1.0032266,-1.154314,-1.2448945,-0.92028403,-1.0528604,-1.1857063,-1.0869653,-0.974807,-0.3619231,-0.9984627,-0.93801486,-1.1693068,-1.2776341,-1.3405888,-1.386785,-1.3989758,-1.4111086,-1.4266443,-1.4392077,-1.4411292,-1.4502407,-1.1102371,-1.0903404,0.050334387,0.14082056,0.11169175,-0.20877394,-0.39430976,0.24750227,-0.36152798,-0.677487,-0.81557846,-1.0370181,-1.1388144,-1.2569529,-1.3340368,-1.3644991,-1.386908,-1.4119818,-1.4269379,-1.4329945,-1.36552,-1.3492005,-1.4158872,-1.4384477,-1.4431682,-1.432724,-1.4197681,-1.4058527,-1.4555774,-1.4293714,-1.4552653,-1.4356169,-1.4458346,-1.4575748,-1.4754345,-1.4951357,-1.4832721,-1.4905163,-1.4967883,-1.450117,-1.4266944,-0.5465011,-0.58958024,-0.6701409,-0.9546809,-1.1065879,-1.1707623,-0.7207041,-0.7346691,-0.58637875,-0.75457233,-0.9758251,-1.1177828,-1.2363648,-1.3238841,-1.3765403,-1.3802457,-1.4073768,-1.4250753,-1.4270152,-1.4240906,-1.4282851,-1.4341022,-1.4429233,-1.4576885,-1.4772205,-1.4674039,-1.462303,-1.4660469,-1.4709204,-0.99899626,-0.23480052,-0.37556735,-0.7412875,-0.96856,-1.1089268,-1.1669232,-1.2547219,-1.325776,-1.3824098,-1.4132318,-1.4197094,-1.4347305,-1.4475551,-1.452867,-1.4398241,-1.4218547,-1.4627919,-1.4743823,-1.4562473,-1.449904,-1.4505625,-1.4703295,-1.4572637,-1.4588056,-1.4458156,-1.45402,-1.424556,-1.4702942,-1.4765453,-1.4541643,-1.4828387,-1.5046932,-1.496702,-1.4883687,-1.465342,-1.4938232,-1.5250999,-1.5194931,-1.5001683,-1.4877697,-1.4960829,-1.4770856,-1.4911499,-1.488859,-1.4936764,-1.4930476,-1.4817648,-1.4965594,-1.5498254,-1.5057527,-1.5232761,-1.5308225,-1.518759,-1.4915003,-1.525054,-1.5057874,-1.5298221,-1.5675918,-1.5835406,-1.5228469,-1.51981,-1.5143254,-1.5028974,-1.509054,-1.5240669,-1.5338491,-1.5391862,-1.5240664,-1.5305957,-1.5224011,-1.5203402,-1.4928454,-1.5289247,-1.5201445,-0.7456685,-0.6712543,-1.0437746,-0.893553,-0.9866785,-1.2494278,-1.3796973,-1.4465063,-1.4851449,-1.509079,-1.4973719,-1.5194132,-1.5141562,-1.5262245,-1.5272177,-1.5492766,-0.45282304,-0.7861472,-1.1014969,-1.3199174,-1.3401363,-0.5069127,-0.5509642,-0.5928777,-0.75826824,-1.0294703,-1.2327724,-1.3848715,-1.4318376,-1.4724708,-1.479384,-1.4623189,-1.4805815,-1.513757,-1.5054052,-1.4944017,-1.542894,-1.5700145,-1.5687307,-1.5838019,-1.5735172,-1.5909522,-1.6126089,-1.5931444
+-1.4240205,-1.3936791,-1.4465411,-1.5026214,-1.498901,-1.5160809,-1.5167927,-1.522414,-1.4555805,-1.5267909,-1.5187521,-1.5444919,-1.5335909,-1.482676,-1.513359,-1.5339017,-1.5453198,-1.5357308,-1.5145086,-1.5263772,-1.5057344,-1.3296525,-0.83055735,-0.96960783,-1.3290006,-1.4767681,-1.5154772,-1.5183849,-1.5292598,-1.537189,-1.5398166,-1.5301101,-1.4551687,-1.4923682,-1.5390875,-1.5493839,-1.5407468,-1.5253577,-1.2067235,-1.3392292,-1.4625325,-1.4623652,-0.80195916,-0.30203617,-0.5894007,-0.76520425,-1.0990251,-1.3039209,-1.4067429,-1.4351294,-1.4256735,-1.4535451,-1.4286635,-1.4446996,-1.449902,-1.4563899,-1.4792295,-1.5136607,-1.5065107,-1.4761488,-1.4527905,-0.90638864,-0.7193806,-1.0609324,-1.291934,-1.3763518,-1.445093,-1.4729518,-1.4701786,-1.4571927,-1.3950711,-1.1727431,-1.2898736,-1.3826666,-1.1948738,-1.2915512,-1.3379982,-1.2126714,-1.3252975,-1.4409945,-1.4758363,-1.4748422,-1.4811091,-1.4834311,-1.4858342,-1.4896493,-1.146558,-0.65216947,-0.5454429,-0.761013,-1.0162463,-1.1899799,-1.0189998,-0.15899083,-0.80720806,-1.0250705,-1.1395924,-1.252038,-1.319638,-1.3616272,-0.3063991,-0.48929518,-0.85148835,-1.0879453,-0.98461735,-0.84271884,-1.0153048,-1.1930547,-1.2801619,-1.3397009,-1.3841935,-1.4126387,-1.4373693,-1.4366615,-1.4448909,-1.4460714,-1.4502399,-0.94472504,-0.74804586,0.27808022,0.5698325,0.2622016,-0.23373154,-0.5838802,-0.8538052,-1.0352335,-1.0569212,-0.79451454,-1.0427984,-1.1552691,-1.0853975,-0.20986688,-0.2609402,0.29604998,-0.2863027,0.66435844,0.38438773,0.49839142,0.1347701,0.36504292,0.21590993,0.030247964,-0.02789151,0.06464846,-0.20564845,-0.4557407,0.0351644,0.0045732036,-0.049846224,0.15069118,-0.15348247,0.15087095,0.008794583,-0.074774615,-0.3580513,-0.55648685,-0.67534214,-0.84272707,-0.76579905,-0.82923937,-1.0187526,-1.112223,-1.2081426,-1.2527238,-1.2720313,-1.2193961,-1.2755013,-1.3271208,-1.3555447,-1.2402905,-1.2311585,-1.3303066,-1.3718338,-1.3971249,-1.4015145,-1.401511,-0.9526473,-0.652578,-0.0028845146,-0.11003069,-0.035080053,-0.43567103,-0.2502963,0.3691723,-0.13723102,-0.46752805,-0.6991855,-0.8727067,-1.0284078,-1.1433681,-1.2228298,-1.2612853,-1.282572,-1.3008387,-1.3083938,-1.3221055,-1.305531,-1.2928659,-1.3251362,-1.3334442,-1.3484137,-1.3601418,-1.3811804,-1.3624337,-1.3071623,-0.8451742,-0.9855813,-1.109242,-1.246645,-1.3079801,-1.3494473,-1.3782489,-1.3862989,-1.3924235,-1.3929912,-1.3650814,-1.3625934,-1.4031233,-1.4073,-1.1542103,-1.072933,-0.8199801,-0.69777286,-0.67941463,-0.7727856,-0.90639603,-0.85767657,-0.9140446,-1.0624813,-1.1534264,-1.265502,-1.2974184,-1.2863917,-1.3190329,-1.3356618,-1.2467486,-1.2080088,-1.2628319,-1.3188837,-1.3262489,-1.3521051,-1.3710049,-1.3949825,-1.3588662,-1.3614938,-1.3889691,-1.1737678,-0.89145076,-0.91979384,-1.1322279,-1.2460015,-1.3075705,-1.2843211,-1.2996807,-1.344956,-1.3714423,-1.3862782,-1.3717171,-1.3910122,-1.4026148,-1.3981775,-1.367796,-1.3303866,-1.3857756,-1.3817673,-1.3628042,-1.3655872,-1.3749179,-1.3803322,-1.3837074,-1.4153924,-1.3890692,-1.3973558,-1.3678191,-1.438916,-1.3558455,-1.3495462,-1.3884336,-1.4232837,-1.4167545,-1.411614,-1.393501,-1.3870982,-1.4566629,-1.4394252,-1.4135113,-1.390788,-1.3951963,-1.4252567,-1.411229,-1.39721,-1.4282223,-1.356491,-1.3485718,-1.4169762,-1.4769077,-1.4786792,-1.4778268,-1.4882817,-1.4632701,-1.425542,-1.4382048,-1.4115735,-1.4225606,-1.5107312,-1.4782586,-1.4297876,-1.4499637,-1.462008,-1.4488035,-1.4457018,-1.4435866,-1.4520267,-1.4411136,-1.4392903,-1.4475482,-1.4214157,-1.4148545,-1.4266733,-1.4392822,-1.454551,-1.2832512,-1.10295,-1.2882668,-1.2339294,-1.2647772,-1.4089704,-1.4626205,-1.4792018,-1.490855,-1.477924,-1.4854188,-1.4907981,-1.4891443,-1.4741374,-1.4825287,-1.5075495,-0.6091205,-0.67066246,-0.9269879,-1.1475223,-1.2428441,-0.8520675,-0.6260071,-0.7583428,-0.75108373,-0.8346411,-1.0920802,-1.2173511,-1.2854125,-1.3249365,-1.3556561,-1.3761499,-1.3916888,-1.3978668,-1.3881297,-1.3976996,-1.4191341,-1.4387805,-1.4676373,-1.4767118,-1.49358,-1.5093318,-1.528265,-1.5069017
+0.74405646,0.7820574,1.1885144,0.96337974,0.7195144,0.83866763,1.1250161,0.7021487,0.47687292,0.9923373,0.38862753,0.5346321,1.1773033,1.4031094,1.7153238,1.7348251,1.6548035,1.8173873,1.9434522,2.0079057,2.054884,1.9327792,1.8440231,1.5717645,1.5291225,1.4034375,1.2356577,1.2392746,1.3648142,1.4479554,1.5117842,1.4035883,1.2757423,1.2070427,1.0629377,0.9902638,0.95593655,0.8651931,0.8104669,0.87318134,1.3908131,1.3990117,1.2107744,1.1730703,1.1960955,1.2266678,1.2069314,1.0593536,0.9882336,0.9185845,0.8762338,0.8727574,1.0370302,1.049204,1.2418437,2.2943177,2.6959765,2.5526774,2.5512905,2.279462,2.8853946,3.1753132,2.8798413,2.889637,2.9534082,2.5564928,2.3270888,2.1090364,1.8874159,1.7467461,1.9253252,1.783354,2.8363528,2.6388736,2.3808992,2.4178052,2.3449285,2.2829142,2.0133348,2.8038304,2.7069156,2.1382146,2.6815605,2.7773318,2.3696642,2.786095,2.9924355,2.766647,2.399489,2.18673,2.1085706,1.8853859,2.0167449,2.0892675,2.2998166,2.1794944,1.9498131,1.9948219,2.0424037,2.1152234,2.3292098,2.1461694,2.5511544,2.9450765,2.7119923,2.3136609,2.0536993,1.8926371,1.5982406,1.4282693,1.1124437,1.0335721,0.88542986,1.6000507,1.8609085,1.3540404,1.239327,1.1531215,0.9844936,0.806674,0.7579119,0.74956155,1.0388592,0.95471454,0.80077446,0.81752867,0.76017916,0.7176111,0.6924873,0.7279982,0.803463,1.0491201,1.1583424,1.0523567,1.0110085,0.884524,0.9271561,0.9430297,0.8044083,1.032203,0.9145345,0.83121884,0.7672862,0.60866404,0.4951861,0.7851403,1.0359344,0.7718476,0.8032167,0.6310424,0.56289154,0.55407476,0.4584852,0.33434442,0.30581284,0.45769027,0.6197964,0.99085474,1.3579662,1.3088753,1.4860644,1.5611367,1.4122257,1.2598076,1.1619158,1.1596226,1.1979315,1.0427383,0.93872285,0.8856031,0.77360684,0.81248164,0.7741196,0.7155796,0.7451617,1.148714,1.484904,1.5696325,1.4476516,1.3034097,1.1778725,1.0907636,0.93793863,0.982906,1.0349808,1.3849583,2.009126,1.6867173,1.4717549,1.2920352,1.2883735,1.3470521,1.229284,1.2217289,1.1619693,0.9879024,1.3181043,1.3029125,1.1745543,1.3083299,1.2538644,1.1949489,1.1535367,1.1300341,1.186037,1.3693178,1.3713295,1.2227004,1.1653575,1.2266092,1.133626,1.1353792,1.092167,1.1408571,1.2878842,1.2606974,1.2590905,1.2613866,1.2485939,1.2180163,1.1110883,1.0476664,1.1121593,1.0053872,0.86965656,0.86662626,0.84140193,0.8366411,0.7998847,0.8961438,0.5969718,0.2962592,0.07541413,0.12960044,0.12975243,0.103789054,-0.0532709,-0.05634945,-0.05431544,-0.040396206,0.03683009,0.032750987,0.13358259,0.042694665,-0.22050232,-0.25404638,-0.08243618,-0.18395469,-0.16068155,-0.22306281,-0.36758754,-0.4769578,-0.5395702,-0.39328623,-0.41883385,-0.55325496,-0.58741057,-0.60190916,-0.5644729,-0.52673846,-0.5070897,-0.47921604,-0.4861685,-0.31241736,-0.44561434,-0.48264217,-0.5260475,-0.50397706,-0.46712756,-0.41286182,-0.5929464,-0.51076865,-0.45660025,-0.4918639,-0.568712,-0.6002585,-0.5507213,-0.55447024,-0.5935754,-0.5943909,-0.5978813,-0.55699915,-0.56523573,-0.46542895,-0.5676626,-0.50625306,-0.5926912,-0.39548832,-0.567382,-0.6135982,-0.5385872,-0.48117465,-0.100160114,0.06919656,-0.053706072,-0.2108919,-0.12970102,-0.18140045,-0.21421504,-0.31258795,-0.48664093,-0.44966698,-0.34971285,-0.21630561,0.04419609,0.0056671277,-0.43939602,-0.5324932,-0.5417067,-0.45378327,-0.48261607,-0.43704295,-0.4160322,-0.48461795,-0.46542668,-0.38918373,-0.4418242,-0.4359523,-0.3587528,-0.3427857,-0.29409015,0.13027108,0.53596336,0.26218447,0.108628266,0.067035444,0.2770024,0.20758235,-0.18842393,-0.38085064,-0.38522685,-0.4651891,-0.46294165,-0.46259516,-0.36857155,-0.42448336,-0.41563046,-0.18924865,0.14965314,0.1911756,0.13749424,-0.14321998,-0.10082818,0.080780216,0.025279455,-0.15859914,-0.18851805,-0.29300666,-0.26212347,0.10883995,0.5069464,-0.008471124,0.69563437,0.7824811,0.22839013,-0.09098128,0.38756746,0.3496327,0.39168024,1.0603907,1.1069436,1.0665568,1.1649029,1.7360733,1.8857406
+0.41666746,0.8436103,0.98625624,0.839031,0.8013894,0.8115323,0.75804883,0.60939837,0.6384971,0.62934184,0.4974972,0.53845495,0.6561761,0.54251486,0.60840786,0.8989033,0.85420096,0.70775515,0.839887,1.0298688,0.9965994,0.91557586,0.8176504,0.77555954,0.9175045,0.8847506,0.90637124,1.0765697,1.0369291,1.0259831,0.9766954,0.7605285,0.5993284,0.54579884,0.4673229,0.39085296,0.38832355,0.39305618,0.29375774,0.6588292,0.95574844,0.88163996,0.7763873,0.6651208,0.60527605,0.529346,0.5244821,0.5164027,0.4637415,0.42123383,0.4003505,0.28002903,0.39007664,0.3612775,0.45760578,0.8275975,0.9059882,1.08634,1.1252798,1.2009784,2.2010584,2.2465682,1.9401373,1.6344199,1.241229,0.93443257,0.77146816,0.64121974,0.5558573,0.45622414,1.1616673,1.7701094,2.0966737,1.795038,1.6214883,1.7512419,1.4743266,1.1284987,0.898788,1.3897814,1.3275756,0.93130314,1.3949952,1.3571095,1.0539281,1.5956981,1.6438882,1.3174939,1.0576879,0.81059176,0.8038113,0.8281239,1.0987649,1.0166698,0.9346332,1.4615136,1.2553803,1.2184603,1.0774515,0.88238704,0.78590995,1.1529924,1.3946311,1.4773715,1.2654936,1.0700371,1.3934573,1.8252045,1.3634107,1.1223705,0.95588654,0.72687775,0.5004418,1.0842102,1.182073,0.8273943,0.61527103,1.1367558,1.6008484,1.2811368,1.0095397,0.85107225,1.3114711,1.0922998,0.7977397,0.5811754,0.41490537,0.3771941,0.32040313,0.26400694,0.26756057,0.38309252,0.6191486,0.5169648,0.6656283,0.5315444,0.3954869,0.43421555,0.30657047,0.4049837,0.6893954,0.5212579,0.39416185,0.3148045,0.15428734,0.07307748,0.14163402,0.07850597,0.15479675,0.1889826,0.12750643,0.12372143,0.104593106,0.1025709,0.11527843,0.081996955,0.47394565,0.7516178,0.71264434,0.7192646,0.89113915,0.8162513,0.75010085,0.63482755,0.49011612,0.48425886,0.40750524,0.5496709,1.1633378,1.0217079,0.89746773,0.6973172,0.552445,0.44885918,0.77593815,1.4019926,1.5697982,1.5691311,1.4004192,1.0637435,0.93471587,0.8882742,0.64292157,0.83787924,0.6841505,0.6803601,1.6485482,1.40939,1.0836477,0.8882152,0.6227503,1.1187017,1.0325841,0.8432306,0.84132636,0.8005427,0.9674116,0.8998159,0.59990084,0.742319,0.60672724,0.5063058,0.46681303,0.47031432,0.46760583,0.33720818,0.41145694,0.4400396,0.36622,0.35573184,0.312312,0.23675221,0.32201594,0.5462873,0.80014527,0.7867546,0.75073814,0.6771618,0.6601622,0.6363551,0.48920846,0.3990963,0.43305066,0.3024136,0.283398,0.26827717,0.2479896,0.21424845,0.18176815,0.24958408,0.14179036,-0.046984173,-0.18718743,-0.09722545,-0.07227122,-0.11485883,-0.22100875,-0.2324248,-0.30740774,-0.2976773,-0.191428,0.015718617,0.11630101,0.008775182,-0.042727537,-0.21138585,-0.05258488,-0.041399427,-0.17765516,-0.4140638,-0.5902906,-0.6051384,-0.5172832,-0.28029406,-0.2438618,-0.44817102,-0.55331534,-0.6198771,-0.46158928,-0.47205877,-0.46188706,-0.3873914,-0.45388657,-0.34762126,-0.29573333,-0.37762523,-0.4723214,-0.36326176,-0.31385055,-0.5393208,-0.4974358,-0.455033,-0.4845326,-0.4190346,-0.52357614,-0.47502565,-0.41309786,-0.5591762,-0.5799925,-0.59494424,-0.56015086,-0.4573524,-0.39910883,-0.27878037,-0.51214325,-0.46181822,-0.5085226,-0.3254396,-0.44119442,-0.5064915,-0.5617052,-0.4752769,-0.18326986,-0.15837997,-0.27291358,-0.3509486,-0.43683088,-0.504382,-0.497625,-0.48438406,-0.5592617,-0.5450498,-0.4255727,-0.32184994,-0.19937077,-0.34961063,-0.58144844,-0.60610163,-0.53155154,-0.49279934,-0.49126333,-0.3719281,-0.33821732,-0.40372127,-0.32435554,-0.08533811,-0.23611778,-0.41161972,-0.40311208,-0.38876355,-0.24015418,-0.044105463,0.16196482,0.15223563,0.13863567,0.20803866,0.18440449,0.28981283,-0.09194165,-0.23559198,-0.23834556,-0.18868315,-0.16588604,-0.093919925,-0.10176701,-0.10867248,-0.03743083,0.101222046,0.21160176,0.12282888,-0.22424078,-0.45579386,-0.3195089,-0.18242037,-0.07903037,-0.019271843,0.0111134425,0.067291625,0.14911518,0.2792159,0.53643596,0.18753251,0.7081526,0.6424396,0.12393417,0.17973503,0.70671487,0.4986877,0.85873336,1.3065412,1.3001541,1.1531793,1.3275054,1.2304714,0.9907383
+-0.17119074,-0.1330181,-0.114739574,-0.22334218,-0.27467373,-0.09169673,-0.11983732,-0.21200433,-0.3248299,-0.24119201,-0.52054405,-0.44526982,-0.46563995,-0.66858536,-0.1955598,0.05896189,0.011614226,0.16313273,0.4919274,0.4379315,0.40916708,0.27638552,0.123067684,-0.07600852,0.32549167,0.15871859,0.44023234,0.33017245,0.4672289,0.4255033,0.21617389,0.09963037,-0.08939173,-0.31148607,-0.4558553,-0.5929811,-0.67209274,-0.66074586,-0.8432008,-0.34234604,-0.34668863,-0.17436725,-0.17792091,-0.14493996,-0.20775577,-0.3911813,-0.5078739,-0.49235898,-0.5821009,-0.68241346,-0.7079369,-0.82343686,-0.7257854,-0.79930586,-0.885901,-0.8115678,-0.8575666,-0.7894512,-0.69735086,-0.39622778,0.2584341,0.32273996,-0.12572646,-0.16395596,-0.43309474,-0.6710268,-0.75496846,-0.7990062,-0.91435206,-0.99184513,-0.90239704,-0.9244189,-0.033312254,-0.3957754,-0.46431178,-0.50640863,-0.6913501,-0.30612335,-0.57992864,-0.7353233,-0.8188319,-0.9148617,0.19467074,-0.23221916,-0.5335343,-0.34473586,-0.58033216,-0.7593193,-0.8943942,-0.81357646,-0.7282376,-0.7700598,-0.79126763,-0.9133842,-1.0610646,-1.1812601,-1.1677324,0.39883703,-0.19828385,-0.42173314,-0.54910165,0.6348552,0.4961887,0.0795637,-0.17362693,-0.21441019,-0.23934656,-0.38006467,-0.62196183,-0.82020676,-1.0067978,-1.1790676,-1.242807,-0.8750043,-0.84520185,-1.0169485,-0.17762852,-0.16752425,-0.2640526,-0.39563426,-0.5974029,-0.7576231,-0.8135746,-0.7766161,-0.91814685,-0.94782126,-1.0757315,-1.0937972,-1.1705029,-1.2283279,-1.2592983,-0.69733155,-0.46726197,-0.5778321,-0.6509026,-0.84170663,-0.97182035,-1.1149373,-1.1604782,-1.2351187,-0.1690596,-0.043599896,-0.1997267,-0.46163845,-0.7664796,-0.8787941,-0.93065536,-0.8911171,-0.74434,-0.8279384,-1.0283902,-1.0972731,-1.176393,-1.1675432,-1.1793067,-1.2592001,-0.27734733,0.05602365,0.022586517,0.12893242,0.3361684,0.15900542,0.1172381,-0.037747987,-0.16663104,-0.34753668,-0.4671207,-0.43350607,0.06755508,-0.106884144,-0.18576714,-0.37183034,-0.70257246,-0.6842988,-0.82832205,-0.57591796,0.38232845,0.3549025,0.33724514,0.1220958,-0.055485614,-0.1983375,-0.31223175,-0.4999665,-0.6457695,-0.46133757,0.2514693,0.24311617,0.09979465,-0.05294683,-0.07849232,-0.12746349,-0.24047256,-0.2773595,-0.45209724,-0.4724335,-0.4101867,-0.4513077,-0.5740658,-0.6905599,-0.5953032,-0.6155212,-0.61035764,-0.5832846,-0.64371693,-0.72207916,-0.6989993,-0.7708469,-0.8444984,-0.80883217,-0.86165845,-0.7189611,-0.5863752,-0.5906529,-0.5684923,-0.6288435,-0.64827865,-0.6777923,-0.69838345,-0.7589278,-0.79651713,-0.82541585,-0.79125106,-0.83235896,-0.8199518,-0.81400937,-0.8257284,-0.8813546,-0.9027969,-0.870476,-0.85138524,-0.9521762,-0.99316955,-1.0112596,-0.9920876,-0.8318555,-0.9477792,-0.99635553,-1.0373158,-1.0041761,-0.9826802,-0.7306857,-0.7537299,-0.79503626,-0.936368,-1.0087183,-0.88499534,-0.86560404,-0.93662286,-1.2211285,-1.2517081,-1.2314847,-1.226825,-1.2068889,-1.2165617,-1.2364349,-1.3073163,-1.2957518,-1.2852826,-1.204881,-1.2841069,-1.3281863,-1.1587994,-0.9626981,-0.9079416,-1.0642346,-1.1542525,-1.1472849,-1.1825987,-1.2440867,-1.2262115,-1.0569506,-1.1306674,-1.0228701,-1.1830027,-1.1695327,-1.1552157,-1.299006,-1.3341124,-1.2983018,-1.306196,-1.3204806,-1.3218625,-1.2617226,-1.2530681,-1.3256519,-1.3560464,-1.346324,-1.2937374,-1.2558464,-1.1861018,-1.1501049,-0.84743345,-0.8750874,-0.9079788,-1.0182074,-1.1269038,-1.1264275,-1.1532431,-1.1671116,-1.2069045,-1.1262,-0.9657576,-0.84435606,-0.872663,-1.0092804,-1.2234449,-1.3089069,-1.3371254,-1.219948,-1.19059,-1.1678936,-1.248434,-1.2949843,-1.2812027,-0.7247758,-0.8204651,-1.0528507,-1.0237644,-0.99894357,-0.9232013,-0.7571062,-0.64877367,-0.71946454,-0.7052214,-0.48726177,-0.57758135,-0.638901,-0.9324982,-1.0839633,-0.9940548,-1.0112324,-0.9726682,-1.0474253,-0.9950092,-1.0547007,-0.95028734,-0.7497782,-0.5202534,-0.37393028,-0.8384863,-1.130338,-1.0868536,-1.1985192,-1.1578801,-1.1925168,-1.2430146,-1.1099565,-0.92687774,-0.40856785,-0.2705963,-0.40807998,-0.11717724,-0.16156694,-0.4022596,-0.48343718,-0.24376756,0.014174886,0.089729965,0.14855671,0.117423646,0.06913858,-0.068798564,0.017206654,-0.039227508
+-0.37226337,-0.24078721,-0.23712245,-0.35401127,-0.39633077,-0.3053865,-0.33793083,-0.52472275,-0.61043924,-0.5608366,-0.6933396,-0.7315761,-0.7960179,-0.8845536,-0.25885713,0.40199023,0.35829473,0.47025564,0.63235587,0.7915401,0.6229944,0.49579298,0.34549734,0.20344844,0.14206767,0.19989398,0.81416273,0.73636675,1.0162796,0.89976424,0.59454495,0.3976314,0.2972531,0.0806989,-0.120739244,-0.36792877,-0.51135737,-0.63845617,-0.12497949,0.5932715,0.38382205,0.09335031,0.15936339,0.03671805,-0.22056943,-0.36671203,-0.57231057,-0.70965254,-0.77681595,-0.6017897,-0.3657307,-0.6024938,-0.7151895,-0.94121754,-0.49680185,-0.5052797,-0.5149319,-0.5779122,-0.63868177,-0.699588,-0.77859175,-0.84312105,-0.736087,-0.19045514,-0.6609443,-0.98411083,-1.1655996,-1.180527,-1.2110875,-1.3145878,-0.99809694,-1.0682908,-1.1425396,-1.1438389,0.19728418,-0.18415385,-0.5921633,-0.60263616,-0.013507687,-0.43301922,-0.8143071,-0.97119904,-1.0390561,-1.1607463,-1.2641442,-0.78607726,-1.1183774,-1.2524142,-1.2888753,-0.70757824,-0.3659825,-0.6676526,-0.73162556,-0.9825381,-1.1958244,-0.6886081,0.6353789,0.48059714,0.083021484,-0.32511783,-0.751078,-0.91459584,-1.1577898,-1.2357945,-1.2675207,-1.3260298,-1.1995354,-0.26809993,-0.69189775,-0.43964905,-0.80913115,-1.0761825,-1.2001557,-1.1915619,-1.3034716,-1.339407,-1.2895628,-1.2794435,-0.7105898,-0.26802522,-0.686145,-0.9019102,-0.3650154,-0.6380415,-0.29946026,-0.41072208,-0.73375833,-0.9233222,-1.0270537,-1.0503414,-0.5833596,-0.7936864,-0.81883955,-0.7917431,-0.9545617,-1.0891184,-0.7894045,-0.42866838,-0.761983,-0.79673326,0.2284317,0.323669,-0.100396655,-0.42302126,-0.7588817,-0.9292277,-1.0362413,-0.7073397,0.00085351616,-0.47231048,-0.8445593,-0.99418354,-1.1297559,-1.2107155,-1.2549955,-1.254615,-1.0335841,-0.087691106,0.05785788,0.051593997,-0.22791961,-0.38127324,-0.5083743,-0.81950295,-0.9449377,-0.6078689,-0.44857317,-0.34623554,-0.10767894,-0.44745815,-0.755287,-0.97052765,-1.0931967,-1.1658006,-1.129452,-0.6751414,0.4909273,0.4382996,0.14186922,-0.078321956,-0.31406754,-0.43620896,-0.5881766,-0.7242075,-0.85632634,-0.9493824,-0.3739916,-0.37918752,-0.52226865,-0.5958641,-0.6731519,-0.7467766,-0.8654562,-0.8826823,-0.86044586,-0.92001975,-1.0090563,-1.0882999,-1.1138095,-1.1205114,-0.64744914,-0.5985954,-0.6430211,-0.7601768,-0.8572387,-0.9296911,-0.9239075,-1.0317353,-1.0696672,-1.0905478,-1.1503208,-0.71209776,-0.3441933,-0.50431883,-0.61993736,-0.7235935,-0.79603404,-0.8660606,-0.92563796,-0.96898305,-0.988232,-0.97718215,-1.0253941,-1.0791045,-1.0022216,-1.0296102,-1.1112047,-1.120825,-1.1513324,-1.0862688,-0.7750479,-0.5693331,-0.8165727,-0.8888216,-0.86183023,-0.6493539,-0.8193881,-0.79054785,-0.87590754,-0.82786,-0.8581143,-0.6437943,-0.6170118,-0.5262684,-0.63660645,-0.7966851,-0.81709146,-0.79660726,-0.7343932,-1.0483161,-1.1522508,-1.175761,-1.1631212,-1.0931212,-1.1097548,-1.1039119,-1.1641822,-1.200258,-1.1672938,-0.90125984,-1.0239403,-1.1196524,-1.0434644,-0.83001393,-0.81000876,-0.9895699,-1.0163321,-1.0137789,-0.853448,-0.8282716,-0.99878466,-0.85822046,-0.9604671,-0.83685124,-0.9377376,-0.9999852,-0.844615,-0.9939172,-1.0206015,-0.9937947,-1.0288665,-0.99057233,-0.99549985,-0.9333644,-0.93117905,-0.9375504,-1.0134441,-1.0089492,-1.0271243,-1.0272932,-0.9851314,-0.9891448,-0.8064444,-0.86236554,-0.88618255,-0.79722166,-0.9567772,-0.9306364,-0.9272609,-0.87592375,-0.96449184,-0.8856715,-0.5998242,-0.49700272,-0.6173637,-0.5708466,-0.84293777,-0.97932196,-1.0232141,-1.0072802,-0.9762186,-0.97379017,-0.95749855,-1.0005748,-0.98591566,-0.46092534,-0.19737035,-0.78504527,-0.8283184,-0.7423231,-0.7104478,-0.5126221,-0.3148036,-0.29936594,-0.12987745,0.20986024,0.13110662,0.20841181,-0.11032789,-0.6124579,-0.71370506,-0.7387804,-0.648983,-0.65248615,-0.6361417,-0.531784,-0.55279,-0.3885152,-0.27570045,-0.10853734,-0.59510696,-0.84317625,-0.75244236,-0.90228915,-0.83251774,-0.82783115,-0.88926107,-0.7508441,-0.5546352,-0.227375,-0.13103437,-0.2986651,-0.118060805,-0.19675398,-0.46961594,-0.22041705,0.011689939,0.020546548,-0.124006175,-0.14611214,0.027076103,-0.13790175,0.19321898,0.20386139,0.13791656
+-0.40876508,-0.41028136,-0.3693212,-0.53045845,-0.6256711,-0.50400597,-0.56226015,-0.71584773,-0.8296443,-0.8318965,-0.936749,-0.98736656,-1.0921097,-1.1432315,-0.2495431,0.88412136,0.7716088,0.6493395,0.67927957,0.5676681,0.4420532,0.2472328,0.09702877,0.06179797,0.24273396,0.45643947,0.6078042,0.41768074,0.47611105,0.351339,0.38282812,0.26146618,0.1778481,0.01172521,-0.17822558,-0.37941653,-0.2843979,-0.075302415,0.08056045,0.24877265,0.09764131,-0.1282211,-0.29039806,-0.4338035,-0.6107522,-0.10783156,-0.16827449,-0.33446708,-0.4614532,-0.6292486,-0.69825184,-0.83085036,-0.8940561,-1.0557184,-0.2345221,-0.45037597,-0.6228637,-0.58444846,-0.63848567,-0.831025,-0.653658,-0.91841877,-1.1739033,-1.2626865,-1.3491052,-1.4487486,-1.4703197,-1.4761353,-1.4561235,-1.4573374,-1.436259,-1.4480004,-1.4239801,0.28165966,0.59817874,-0.052896775,-0.41100717,-0.6971613,-0.9183185,-1.0716875,-1.1577911,-1.278372,-1.2758912,-1.3457077,-1.4055911,-1.3676882,-1.3983617,-1.451547,-0.97646797,-0.4910581,-0.5377388,-0.09386223,0.67948556,0.12145034,0.07454107,-0.23255208,0.16563404,-0.024730615,0.04126396,-0.37318993,-0.55135363,-0.6599357,-0.92075455,-1.2119719,-1.2861326,0.01700139,-0.35399666,-0.33713716,-0.65457106,-0.9683589,-1.1760615,-1.2769897,-1.3066208,-1.1776078,-1.209677,-1.3284972,-1.3687997,-0.7412474,-0.40290308,-0.61053395,-0.67826784,-0.121421866,-0.5777859,-0.88413167,-1.0997133,-0.5886375,-0.848889,-1.0333512,-1.1159527,-0.8781612,-0.14062494,-0.46341318,-0.18153623,-0.054769106,-0.3045921,-0.654804,-0.89473027,-1.0339277,-1.1993295,-1.2530229,-0.20438784,0.15080371,-0.23975673,-0.5500736,-0.7971431,-1.0204735,-1.038694,-0.043102913,0.10185342,-0.39482346,-0.7869432,-0.9709648,-1.0769365,-1.1580153,-1.2507555,-1.2527788,-0.95072114,0.54810315,0.16026595,-0.15161341,-0.42623794,-0.540282,-0.54386306,-0.74616414,-0.8988499,-0.9589429,-0.9388796,-0.7698218,-0.7150126,-0.89590085,-1.0321465,-1.2241437,-1.2595439,-1.2639229,-1.2457402,-1.2674448,-0.7737297,-0.52179396,-0.7677279,-0.9729996,-1.1230485,-1.20785,-1.2731119,-1.2729218,-1.295867,-1.0778558,-0.64774585,-0.8463353,-0.9620912,-1.0176653,-1.1445352,-1.2189728,-1.2292349,-1.2384076,-1.1813233,-1.2221149,-1.2987242,-1.3319609,-1.3335755,-1.330926,-1.2667732,-0.910306,-0.318299,-0.5061645,-0.71818244,-0.8932742,-0.95798194,-1.103403,-1.1056476,-1.1000624,-1.1284368,-0.9682003,-0.6435603,-0.7607348,-0.8022556,-0.96892214,-0.97974074,-1.0474757,-1.117553,-1.1476967,-1.1144226,-1.0732377,-1.1149096,-1.1066275,-1.0944604,-1.0795949,-1.1058677,-1.1110597,-1.116685,-1.1021352,-0.98913693,-0.68660015,-0.88812554,-0.8425936,-0.71596855,-0.63486755,-0.7716945,-0.73799455,-0.8316722,-0.87156725,-0.90442765,-0.7890196,-0.590523,-0.60187745,-0.8078251,-0.8101892,-0.8298483,-0.80461645,-0.732152,-1.053294,-1.1592205,-1.2076787,-1.1633644,-1.0919814,-1.108129,-1.1233242,-1.1637002,-1.2266433,-0.9875957,-0.7350632,-0.965451,-1.0452671,-0.965894,-0.73370105,-0.6317961,-0.89472437,-0.8102281,-0.82668126,-0.81358814,-0.9116862,-0.9420042,-0.79802644,-0.958096,-0.7945671,-0.74600554,-0.9162742,-0.999421,-1.0480552,-1.0690696,-1.0889089,-1.1611142,-1.1003373,-1.0515437,-0.82939726,-0.83044684,-0.98748076,-1.0964828,-1.0636443,-1.0007803,-0.9907706,-0.9860308,-1.0081177,-0.8485243,-0.87697333,-0.86964,-0.69341344,-0.920429,-0.871081,-0.8052471,-0.85148895,-1.026635,-0.9660727,-0.7992066,-0.68546486,-0.6427833,-0.571903,-0.7314011,-1.045197,-1.0529857,-0.7978029,-0.92272043,-0.58852077,-0.9560132,-0.96888876,-0.93405294,-0.1848123,0.23164082,-0.5386837,-0.74192286,-0.6711752,-0.6139669,-0.35424775,-0.113197125,0.12769404,0.3585434,0.32107866,0.32257655,0.25727206,-0.15447864,-0.6596879,-0.92760634,-0.99273455,-0.9670216,-0.7879497,-0.96474814,-0.86042064,-0.76443255,-0.6125907,-0.3741609,-0.26424098,-0.6200101,-0.7926167,-0.7975671,-0.88392323,-0.7421791,-0.6610366,-0.8030559,-0.6686585,-0.361931,-0.21490878,-0.3007273,-0.33193666,-0.32267526,-0.4174989,-0.5127243,-0.27256325,-0.11513727,-0.1530864,-0.27028298,-0.25995213,-0.31430486,0.22860304,0.5685862,0.48006326,0.3752915
+-0.9055853,-1.0647513,-1.0823929,-1.1520578,-1.204787,-1.2752756,-1.2841496,-1.3390225,-1.4161929,-1.3285694,-1.1326754,-1.2145183,-1.3239675,-1.4509172,-1.329025,0.05308857,-0.1252287,-0.39969474,-0.671786,-0.83751845,-0.8798832,-1.0013698,-1.1217054,-1.0710778,-1.1148369,-0.749843,-0.79161435,-0.8970497,-0.6778053,-0.124976955,-0.35421425,-0.6915912,-0.8051782,-1.0014211,-1.108368,-1.2133665,-1.2867212,0.038494706,-0.48946512,-0.7905854,-0.9177375,-1.0686367,-1.2348387,-1.2111509,-1.2204242,-1.1563447,-1.0645905,-1.1143627,-1.1594801,-1.2226336,-1.1014111,-1.1275928,-1.1945868,-1.1692139,-0.54923,-0.84322166,-0.29796684,-0.41393405,-0.6684314,-0.7236226,-0.52485,-0.7767159,-0.9918803,-1.1935871,-1.3737175,-1.5063883,-1.5786335,-1.610291,-1.6480488,-1.6292595,-1.629591,-1.6608694,-1.5934098,-0.80388105,0.012316592,-0.89177465,-1.2830639,-1.4676166,-1.5648181,-1.6257902,-1.6165515,-1.6618356,-1.6202955,-1.6534078,-1.3760266,-1.4101751,-1.5641923,-1.1140025,-0.24336123,-0.18351746,-0.25196454,-0.72549856,-0.61840403,-0.9319582,-1.2450733,-1.4070804,-1.3335726,-1.3228487,-1.4944178,-1.5825436,-1.6540718,-1.6000643,-1.6421727,-1.6400521,-1.6284564,-1.239963,-1.4363976,-1.556685,-1.5858095,-0.71083266,-1.1879102,-1.4375641,-1.2087692,-0.21972305,-0.9947835,-1.2971272,-1.4879408,-1.4721694,-0.42745823,-0.7572888,-1.0333414,-1.2609372,-1.4371178,-1.5628147,-1.6043868,-1.5275269,-1.5955621,-1.5115082,-1.3823955,-1.3622758,-1.4688995,-1.6033397,-1.3483143,-0.46551406,-1.0598395,-1.3535893,-1.4979239,-1.550005,-1.5752754,-1.5736566,-0.33847222,-0.52808565,-0.95663214,-1.2848597,-1.4006157,-1.5331478,-1.5612988,-0.81666577,-0.73992765,-1.1768035,-1.2981591,-1.3348219,-1.462975,-1.5658585,-1.6455522,-1.651027,-1.5456069,-1.0974145,-0.701945,-0.7951689,-1.079771,-1.2989731,-1.3352761,-1.4649506,-1.5497077,-1.5594937,-1.5293806,-0.9001507,-0.7774575,-1.0615988,-1.2340721,-1.383934,-1.5284846,-1.5828047,-1.5999597,-1.6569049,-1.3401155,-1.2586203,-1.3953482,-1.5085391,-1.5745299,-1.630301,-1.6546361,-1.6356361,-1.6334577,-1.64726,-1.5709962,-1.5702262,-0.66496027,-0.48099625,-0.78088087,-1.0019674,-1.0841184,-1.1193929,-1.0844221,-1.1380779,-1.2307036,-1.3050019,-1.4073005,-1.4142821,-1.3975085,-1.382289,-0.89580184,-1.0458337,-1.1985679,-1.3203789,-1.4059323,-1.4500461,-1.4191654,-1.4279382,-1.4273,-1.5076404,-1.5129876,-1.5029373,-1.4358273,-1.5071167,-1.4563224,-1.4557157,-1.4996569,-1.5287226,-1.5268198,-1.4506601,-1.4484978,-1.4256784,-1.4605577,-1.3949754,-1.3865662,-1.3880079,-1.3717937,-1.3898311,-1.4031373,-0.8980031,-1.2404938,-1.052547,-0.9843919,-0.9978392,-1.1018231,-1.111997,-1.1519848,-1.1584404,-1.1449614,-1.1032968,-1.181942,-1.259207,-1.4027054,-1.3395529,-1.3052471,-1.3037227,-1.2503746,-1.4090693,-1.3379171,-1.4979447,-1.3573091,-1.2281446,-1.1732445,-1.2791752,-1.2900096,-1.3684762,-1.2653215,-1.279325,-1.4809968,-1.5986199,-1.4265366,-1.2226403,-1.1783333,-1.2865577,-1.2400304,-1.2973568,-1.1053088,-1.2787695,-1.3203797,-1.2309183,-1.3839302,-1.2915344,-1.2201622,-1.2800456,-1.3034313,-1.4405694,-1.4145899,-1.534044,-1.7014599,-1.5364711,-1.4089189,-1.140815,-1.1141299,-1.2200615,-1.4373345,-1.2756221,-1.1604761,-1.0987575,-0.85647446,-1.2333006,-1.1877596,-1.1261743,-1.0503124,-0.8958668,-1.0174589,-0.99187255,-0.9156096,-1.1509113,-1.2557509,-1.317177,-1.1387807,-0.97220135,-0.93880737,-0.85684216,-1.014736,-1.208502,-1.1207737,-0.9882443,-0.81558585,-0.66114557,-0.7860675,-1.0448545,-0.9204937,-0.66633904,-0.7380103,-0.92756855,-1.0851347,-1.0979991,-1.1097612,-1.0279481,-0.9752691,-1.043464,-1.0311186,-0.9658687,-1.0063801,-1.0115755,-0.7743365,-0.98978996,-1.2636595,-1.3009539,-1.1803622,-1.0567676,-1.2541727,-1.1390302,-1.0988512,-1.0269473,-0.99962807,-0.999369,-1.2338574,-1.2133796,-1.0740145,-1.2165475,-1.0565032,-1.0418332,-1.1251113,-1.1648216,-1.1003704,-1.018841,-1.0614616,-1.114522,-1.0590205,-1.0970966,-1.1943058,-1.2465277,-1.2251654,-1.0062274,-1.0980783,-1.097231,-1.1202902,-0.36071974,-0.16286588,-0.5993719,-0.7322731
+-0.5206754,-0.5469214,-0.6025249,-0.70212024,-0.800538,-0.71777296,-0.7437216,-0.85542893,-0.934479,-1.0467122,-1.0640087,-1.0361352,-1.1459956,-1.0514859,-1.2106694,0.43964335,0.16569221,0.045213945,-0.32834393,-0.3180832,-0.339491,-0.56394464,-0.72598577,-0.8718473,-0.9583585,-0.8993227,-0.62761116,-0.775818,0.03742651,0.16040784,0.14278278,-0.1354416,-0.24217069,-0.5261606,-0.7486979,-0.8900977,-0.89555025,-0.35325268,-0.69442177,-0.79209626,-0.31393686,-0.6784307,-0.9846927,-0.82913077,-0.80636543,-0.22838831,0.14415011,-0.12632892,-0.32566974,-0.45993412,-0.56117374,-0.7117034,-0.93758,-0.30502257,-0.50666267,-0.5803739,0.24177459,0.10373076,-0.41220313,-0.6594419,-0.72868824,-0.9368875,0.024313517,-0.61275434,-0.9016119,-1.2341895,-1.3578691,-1.3774636,-1.4956307,-1.0858742,-1.3179299,-1.4852417,-0.9159795,-1.1481073,-0.12941399,-0.8833209,-1.2461278,-1.4139922,-1.398968,-1.4803689,-1.5258893,-1.5677409,-1.571394,-1.5632725,-0.31966358,-1.0136402,-1.2932178,-0.780442,-0.8143173,-0.21538764,-0.7158318,-0.46733367,-0.2820237,-0.51513565,-0.8737707,-1.0078056,-1.157966,-1.2809501,-1.1725945,-1.0766803,-1.3039353,-1.4801536,-1.527408,-1.1761591,-0.9993714,-1.260789,-1.471515,-1.4924704,-1.3562405,-0.64205873,-0.9901717,-0.8842297,-1.2327344,-1.1043358,-1.2393354,-0.2934268,-0.8835732,-1.1793784,-0.86317885,-1.0443453,-1.3032047,-1.4313389,-1.0152286,-1.2547785,-1.2131929,-1.276407,-1.4678512,-1.4038762,-1.4186015,-1.5540924,-1.5796936,-1.3295462,-0.591417,-0.72825605,-1.093966,-1.3228534,-1.4787314,-1.5334442,-1.5745591,-1.6214566,-1.5146725,-1.4933338,-1.6136608,-1.6680455,-1.629926,-1.5988574,-1.6348417,-1.567306,-1.5112181,-1.352801,-1.2881138,-1.1880426,-0.8508508,-1.1599741,-1.2788776,-0.9060657,-0.9513879,-1.1583512,-1.3275852,-1.420981,-1.47013,-1.5097882,-1.5519267,-1.5689348,-1.6035067,-1.6334772,-1.6246986,-1.5215454,-1.0933026,-0.84272516,-0.95321655,-1.2195427,-1.4835607,-1.4812343,-1.6047132,-1.6515441,-1.5207051,-1.3543646,-1.5247688,-1.5835524,-1.5877768,-1.6867231,-1.6635563,-1.6494024,-1.6733935,-1.5332571,-1.3297427,-1.5125582,-0.62523234,-0.42050993,-0.73822093,-0.9699204,-1.0761555,-1.0710319,-0.86988616,-0.85873365,-1.0555394,-1.1569545,-1.3199773,-1.3496921,-1.3602931,-1.4056377,-1.4433625,-1.4119916,-1.4726763,-1.501435,-1.578052,-1.5720642,-1.4898521,-1.5248182,-1.4970274,-1.5387411,-1.6018934,-1.577069,-1.4990082,-1.5599236,-1.5181274,-1.5298617,-1.5495639,-1.5692086,-1.497027,-1.4236219,-1.4268022,-1.425572,-1.4733884,-1.4005437,-1.4449937,-1.433845,-1.4330373,-1.4800482,-1.3856305,-0.81799006,-1.087737,-0.91500616,-0.85756326,-0.8269365,-0.83626497,-0.8720784,-0.9442817,-0.9708493,-0.96504045,-0.84604573,-0.95988905,-0.9458418,-1.1651635,-1.1145289,-1.0701994,-1.1264504,-1.0358684,-1.2185268,-1.1468148,-1.2765347,-1.1687875,-1.0111594,-0.82751846,-0.9832536,-0.9838059,-1.0451794,-1.0468619,-1.0149231,-1.2471709,-1.3017964,-1.2242047,-0.97712994,-0.84846205,-0.964339,-0.8718412,-0.983732,-0.8636352,-0.9400015,-1.0077018,-0.9511199,-1.0701832,-1.0026903,-1.0262059,-1.0341536,-1.01034,-1.2042706,-1.1544825,-1.2468897,-1.3663241,-1.2913201,-1.1161277,-0.75332725,-0.7959605,-0.907439,-0.9965167,-0.9966271,-0.91906464,-0.89020896,-0.5059501,-0.7739753,-0.7974911,-0.7524586,-0.6797313,-0.67531174,-0.69955176,-0.7044444,-0.70966053,-0.829259,-0.9387747,-0.9830297,-0.8107326,-0.649196,-0.6000545,-0.54515773,-0.7198988,-0.8816939,-0.8762137,-0.8035698,-0.5906296,-0.5666484,-0.53711677,-0.72893494,-0.69955415,-0.5775004,-0.6827594,-0.7923486,-0.9191315,-0.912922,-0.94142807,-0.88535875,-0.8896027,-0.9657495,-1.007616,-0.9605938,-0.96810067,-0.96187353,-1.0563862,-0.8560581,-1.1638197,-1.2072954,-1.1626152,-1.0187737,-1.1415232,-1.1531848,-1.0999303,-0.99824286,-1.0073314,-1.1102788,-1.2154758,-1.1258705,-1.0958982,-1.176877,-1.1647472,-1.109794,-1.085335,-1.1337231,-1.1273369,-1.0592811,-1.186582,-1.2213392,-1.1884494,-1.1938962,-1.3113273,-1.3190912,-1.3406873,0.18069223,-0.09152632,-0.39971426,-0.5466509,-0.47124648,-0.023615532,-0.3522161,-0.5654522
+-0.981452,-1.0420167,-1.0933046,-1.2110863,-1.2438104,-1.3165734,-1.4260198,-1.4504938,-1.514433,-1.5112557,-0.5835596,-0.25760794,-0.5940943,-0.78343606,0.06308115,1.248146,0.91280127,0.88709986,0.6967858,0.72499746,0.65074474,0.21734783,-0.101464204,-0.30961898,-0.6344062,-0.8718133,-0.5459839,-0.72244513,0.75244886,0.7228555,0.6597271,0.5139088,0.32351232,0.010711469,-0.29839838,-0.58511806,-0.57465,-0.48702234,-0.87519974,-1.1068423,-0.57511127,-0.11822916,-0.6348229,-0.6408582,-0.66367805,-0.22830498,0.018319227,0.090103455,0.09399756,-0.068188794,-0.3901678,-0.77021706,-0.9631932,-1.1104705,-1.3288716,-1.4281306,0.0728014,0.29370415,-0.2767384,-0.5477177,-0.11255025,0.25260812,-0.22335577,-0.6176777,-0.8744416,-1.1319867,-1.170159,-1.2435095,-1.4121737,-1.2813575,-1.3227501,-1.4625542,-1.4859743,0.39914867,-0.0025194213,-0.7679621,-1.2116625,-1.3415084,-1.3598635,-1.4463716,-1.4526608,-1.5303391,-1.475451,-1.4956372,-1.5101553,-1.5204046,-1.3172481,-0.62378824,-0.1784687,-0.10698026,-0.24305719,0.7058352,0.47717446,0.23401165,0.061637305,-0.4712872,-0.7218536,-0.97558403,-0.74369866,-1.0135837,-1.3227949,-1.4328129,-1.3179624,-1.4006715,-0.5471674,-0.21357891,-0.7261951,-1.0990202,-0.97839403,-1.1922438,-1.3908323,-1.4040627,-1.1622257,-1.2270341,-1.3115432,0.12004734,-0.50519437,-0.039590918,-0.37098205,0.00081106275,-0.37027168,-0.8931942,-1.100623,-1.155031,-1.2828529,-1.33652,-1.4229416,-0.90458524,0.9103602,0.38603604,-0.16100788,-0.59907293,-0.8943542,-0.52160376,-0.7632456,-0.99950504,-1.2469475,-0.4423799,-0.5732343,-0.87874734,-0.68871427,-0.0340574,-0.63873404,-1.0376073,-1.117903,-1.2560245,-1.2281463,-1.3488483,-1.213313,-1.2379372,-1.0695591,-0.5283869,-0.24305266,-0.42992908,-0.75329125,-0.3922687,-0.27571973,-0.64533377,-0.9661522,-1.0693593,-1.1428351,-1.2530005,-1.250134,-1.4060683,-1.4565233,-1.1781933,-1.1857884,-1.349499,-1.378116,-1.2704554,-1.1952784,-1.4069657,-1.4975781,-1.4716375,-1.4658434,-0.95570266,-0.06529056,-0.5143611,-0.81053644,-1.0452203,-1.2477933,-1.304804,-1.3437009,-1.3567355,-1.4136755,-1.4616661,-1.3418589,-1.4232824,-1.4635047,-1.3960036,-1.4414055,-1.5141528,-1.4278982,-1.4142022,-1.1231028,-0.9602878,-1.1698732,-1.3339133,-1.4194779,-1.4542543,-1.4564486,-1.4403307,-1.4426535,-1.450908,-1.513272,-1.5251306,-1.4691682,-1.4943361,-1.4578569,-1.4604992,-1.4563917,-1.4581368,-1.4436969,-1.4516206,-1.4584066,-1.45981,-1.4448304,-1.4321542,-1.4032229,-1.2921991,-1.2354858,-1.2990735,-1.2718666,-1.3559473,-1.420716,-1.3374386,-1.3986974,-1.4229664,-1.3977488,-1.419578,-1.2768948,-0.93688345,-1.0250392,-0.9918691,-1.0414724,-0.960829,-0.85630107,-0.9354081,-1.0243295,-1.1383601,-1.0921202,-1.1531503,-1.1874774,-1.2153331,-1.2829,-1.235919,-1.2020504,-1.256968,-1.2437489,-1.3425125,-1.2391738,-1.3241639,-1.3003292,-1.2058067,-1.1396575,-1.2207016,-1.2555474,-1.3073474,-1.3045187,-1.2157546,-1.3513551,-1.4607565,-1.3990886,-1.2872591,-1.2055271,-1.1907203,-1.0418782,-1.159039,-0.79141074,-1.129447,-1.1692548,-1.0852817,-1.1755236,-1.1837354,-1.2039089,-1.142907,-1.1448735,-1.2975984,-1.2979704,-1.2989889,-1.3696487,-1.3493373,-1.2291712,-1.0191354,-1.0163581,-1.0913665,-1.1156362,-1.1715539,-1.097424,-0.7974414,-0.49584448,-0.56426877,-0.7167299,-0.7643753,-0.73536783,-0.8165475,-0.7502607,-0.8172959,-0.7736274,-1.0898845,-1.186753,-1.2329757,-1.1128942,-0.9837539,-0.9487412,-0.92957664,-1.0078546,-1.067568,-1.1352594,-1.0809114,-0.97321975,-0.9997889,-1.0038928,-1.0052328,-1.0380472,-1.0081296,-0.97645783,-0.6630092,-0.39365393,-0.45593256,-0.7012782,-0.7274517,-0.86103344,-0.9078646,-0.90043586,-0.8766091,-0.961835,-0.993019,-1.0548632,-1.1696336,-1.2627342,-1.3354056,-1.2711931,-1.2050378,-1.2655923,-1.3376446,-1.3004622,-1.2644485,-1.2506733,-1.235662,-1.3755305,-1.3367264,-1.319947,-1.3231351,-1.28624,-1.2890078,-1.3444442,-1.397146,-1.3993839,-1.4387326,-1.494267,-1.4666712,-1.489521,-1.521434,-1.4628851,-1.420067,-1.5163077,-0.10323221,0.19409534,-0.0036859512,-0.075672366,0.25766942,0.5559138,0.26511055,0.16146804
+-1.2624016,-1.3317204,-1.3993347,-1.473684,-1.529112,-1.6089425,-1.62332,-1.6199448,-1.6747391,-1.6216046,-0.73799944,-0.19738454,-0.5134056,-0.77182823,-0.9584904,0.888585,0.5902683,0.46014428,0.47192037,0.34073958,0.1456773,-0.14213133,-0.5240932,-0.72414374,-1.0016948,-1.2239163,-1.2915711,-1.3811694,0.1856023,0.3896086,0.19453901,0.16597313,-0.1730575,-0.49855,-0.8303907,-1.098517,-1.2772927,-1.3175863,-1.4103103,-1.4526287,-1.3273747,-0.9184027,-1.1348064,-1.2335461,-1.13495,-0.9317031,-0.85586023,-0.8963423,-0.86044073,-1.1611153,-1.4205813,-1.5146544,-1.4266485,-1.4904116,-1.523843,-1.5981047,-1.4645382,-1.466579,-0.90597415,-0.5842578,0.08867962,-0.021879964,-0.32527757,-0.7313065,-0.97297215,-1.1996937,-1.3790452,-1.0216278,-1.1539035,-1.3466518,-1.4349136,-1.521694,-1.5279922,-1.1569908,-0.6816492,-1.2473713,-1.4748477,-1.4683228,-1.4811699,-1.5364895,-1.5392742,-1.5671046,-1.5230793,-1.1185781,-1.1733915,-1.3878384,-1.1775877,-1.3023283,-0.07191748,-0.17472649,-0.22525233,0.3536965,0.5532596,0.26511958,-0.18424615,-0.7105384,-1.1179993,-1.3062007,-1.397376,-1.449645,-1.523195,-1.5006528,-1.4262774,-1.4971558,-1.4626279,-1.4824104,-1.3558834,-1.3649254,-1.4825289,-1.5741396,-1.5727484,-1.5153213,-1.2179863,-1.3151431,-1.4693542,-1.4906942,-1.4964051,-1.118014,-1.037117,-1.0470397,-1.2752619,-1.3806455,-1.4495238,-1.4722681,-1.5057616,-0.72058773,0.37746394,0.47555992,0.39547357,-0.02582363,-0.30909693,-0.67959064,-1.0027677,-0.99832296,-1.2015125,-1.3721355,-1.4003854,-1.4555444,-1.5155113,-1.4747967,-1.4158983,-0.8661354,-1.0835842,-1.3549268,-1.4303396,-1.4521811,-0.18964067,-0.015338577,-0.22593999,-0.2915168,-0.3686631,-0.61132085,-0.8052266,-1.0251787,-1.237595,-1.3226925,-1.3977653,-1.4873593,-1.1068078,-1.0030468,-1.1286762,-1.1969969,-1.2260565,-1.4550273,-1.4609389,-1.3415347,-1.4663986,-1.5464828,-1.3625968,-1.3569903,-1.2360795,-1.4225042,-1.5097646,-1.4802753,-1.3623345,-1.3116049,-1.2770828,-1.3281584,-1.430527,-1.4986479,-1.4856156,-1.5076303,-1.5287489,-1.2599943,-1.050286,-1.2131104,-1.2232339,-1.4007193,-1.4411275,-1.4424059,-1.5367246,-1.5737282,-1.4325644,-1.4442537,-1.278151,-1.252929,-1.402549,-1.4477682,-1.4831607,-1.4840086,-1.4907018,-1.4922485,-1.4993722,-1.539623,-1.5827856,-1.5087278,-1.5208541,-1.5376288,-1.4613439,-1.5147793,-1.4896771,-1.4248502,-1.4667482,-1.4983876,-1.4392216,-1.4331043,-1.4180887,-1.4627236,-1.4465798,-0.94558704,-0.7352823,-0.85463536,-0.99058867,-1.1191561,-1.2174014,-1.2594638,-1.2993944,-1.310054,-1.3264871,-1.3682114,-1.3392459,-1.3506186,-1.4193317,-1.4380066,-1.4128106,-1.132133,-1.0844082,-1.1845264,-1.2903335,-1.3544691,-1.354068,-1.3470976,-1.4239523,-1.4307464,-1.4331594,-1.4024957,-1.3654275,-1.3867658,-1.3773134,-1.4179714,-1.394963,-1.4256208,-1.4288185,-1.3580244,-1.3039141,-1.3352231,-1.3317996,-1.3572798,-1.379959,-1.2630515,-1.304491,-1.4822519,-1.4495617,-1.3909862,-1.3235701,-1.297047,-1.1213443,-1.1240929,-1.0393672,-1.2087055,-1.2698619,-1.1704074,-1.2610961,-1.2725986,-1.3131206,-1.3142796,-1.2552373,-1.329366,-1.364437,-1.4008659,-1.4535154,-1.4702398,-1.3744648,-1.1870348,-1.1037532,-1.0955243,-1.10375,-1.2412046,-1.0861156,-0.5526003,-0.17813429,-0.27737266,-0.42819488,-0.4928612,-0.5021731,-0.54785603,-0.49579227,-0.5770488,-0.45921195,-0.86604536,-1.1112913,-1.1723611,-1.1308714,-0.9846462,-0.9325733,-0.8970935,-0.9701066,-1.1668978,-1.2157153,-1.1253021,-1.0287358,-1.0305448,-1.0475779,-1.0422981,-1.0704733,-1.0472164,-1.0672123,-1.1709716,-1.1402829,-1.114313,-1.2490048,-1.2765746,-1.3037615,-1.3377262,-1.4245642,-1.3531914,-1.4132793,-1.4237568,-1.4764397,-1.4923564,-1.4794629,-1.5479466,-1.5545983,-1.5721048,-1.593004,-1.5898163,-1.6072023,-1.6209092,-1.6272762,-1.6137516,-1.6342534,-1.664788,-1.6540703,-1.6182365,-1.6185703,-1.6600674,-1.6728921,-1.6773397,-1.6618416,-1.6619811,-1.6625812,-1.6809397,-1.6530875,-1.6332903,-1.6322157,-1.6490396,-1.730869,-1.497686,-1.5175216,-1.6448069,-1.6350312,-0.32900465,0.15972328,-0.0116895065,-0.1265086
+-1.4147217,-1.6441171,-1.6436723,-1.6699095,-1.6862689,-1.6869541,-1.7270339,-1.7017773,-1.7087827,-1.7395076,-1.667536,-1.5718318,-1.6933917,-1.738648,-0.570554,1.2041173,0.75813854,0.3380276,0.7677976,0.85317826,0.44321036,0.027894758,-0.16554469,-0.40833056,-0.73436177,-0.97573805,-1.1837544,-0.7661351,0.80661666,0.4281572,0.40786743,0.026186697,-0.41904527,-0.76252705,-0.99026334,-1.1478796,-1.2688957,-1.3892157,-1.4981663,-1.5704374,-1.5915334,-0.148716,-0.3350209,-0.59199345,-0.6645657,0.6777811,0.610662,0.1758875,0.144952,-0.27681652,-0.25611663,0.59223485,0.36150157,-0.17740822,-0.61637557,-0.9807937,-1.1634328,-1.3406322,-1.2458224,-0.97088325,-0.81156534,0.032921605,-0.105951525,-0.5780343,-0.99942565,-1.228112,-1.3846283,0.049824573,-0.16045243,-0.50447816,-0.7371482,-0.452258,-0.7785792,-0.6957321,-0.063628964,-0.77174354,-1.1783574,-1.3955263,-1.5520995,-1.5429054,-1.5712798,-1.6193354,-1.6619383,-1.0705894,-0.61865044,-1.1096694,-1.2687504,-1.460644,-1.6054485,-1.665417,-0.8707199,-1.0466751,-1.3267457,-1.2093327,-0.44492626,-1.0708241,-1.4467449,-1.6150742,-1.6971103,-1.6858225,-1.700233,-1.7045568,-1.7132154,-1.7257969,-1.7373815,-1.7200103,-1.6774282,-1.6767405,-0.15562618,-0.43640172,-0.92104423,-1.2705257,-1.447864,-1.5326114,-1.573292,-0.9577316,-1.0882962,-1.3544977,-1.537471,-1.451968,-0.19698071,0.043734767,-0.66346383,-1.1101184,-0.29275045,-0.23314697,0.1929043,0.23292968,0.0035261363,-0.3275677,0.17203066,0.0066016316,-0.11017426,-0.48422182,-0.8438206,-0.94437313,-1.134882,-1.3412277,-1.4374886,-1.4923006,-1.4277663,0.1454319,-0.03356617,-0.45992565,-0.67537034,-0.3748236,0.24237931,-0.095238395,-0.0861369,0.2903863,0.16502953,0.1342499,0.14140293,-0.21592411,-0.5060017,-0.7324972,-0.8940419,-0.70541865,-0.3112633,1.368479,0.7422068,0.56458896,0.25208947,-0.052761607,-0.23254663,-0.29912502,-0.36239952,-0.1897425,-0.16544423,-0.060639046,0.19704697,-0.23023167,-0.52566755,-0.77602917,-0.8204901,-0.8955237,-0.44523203,-0.70539176,-1.009702,-1.1632953,-1.2763066,-1.3105932,-1.3570228,-1.3573959,-1.3649944,-1.3665395,-1.3904917,-1.4410025,-1.5238525,-1.5487342,-1.5875938,-1.5293875,-0.7983364,-0.8486152,-1.036688,-1.1087003,-1.2258825,-1.3419517,-1.3772964,-1.4405981,-1.4979208,-1.5307662,-1.5398333,-1.5693209,-1.5705417,-1.5392452,-1.5338469,-1.5518588,-1.5203459,-1.4898534,-1.508115,-1.509319,-1.5146434,-1.5051805,-1.4807022,-1.4876199,-1.4563562,-1.4952139,-1.4630581,0.19787437,0.5594887,0.36555284,0.08448866,0.020508312,-0.04936912,-0.19510046,-0.2635578,-0.3966363,-0.51124793,-0.6208793,-0.7355562,-0.84897393,-1.066956,-0.99463546,-0.97792625,-0.90089005,-0.8035085,-0.8797432,-0.94997406,-0.9832597,-0.9216454,-0.9144192,-1.0719304,-1.164016,-1.193722,-1.1195848,-1.0790535,-1.0000687,-1.0977304,-1.0723854,-1.205987,-1.2416565,-1.3243558,-1.1527727,-1.0107172,-1.0046258,-0.99169874,-1.0917853,-1.2015138,-0.9992653,-0.9216124,-1.386646,-1.3672091,-1.2457514,-1.1585823,-1.0177822,-0.7001033,-0.5691291,-0.42493987,-0.7528298,-0.89243877,-0.7930106,-0.8980654,-1.067575,-0.9665017,-1.0483875,-0.91598415,-0.9822711,-1.1660333,-1.247971,-1.3649305,-1.4547104,-1.2577325,-1.0382226,-0.83024865,-0.7310791,-0.7580496,-0.9793198,-0.836634,0.12936184,0.37309033,0.100224,0.10802008,0.17229581,0.14165269,0.078124896,0.30377766,0.08318755,0.08439099,-0.47391462,-0.84434044,-0.92947924,-1.0218096,-0.89830124,-0.77101755,-0.6700921,-0.6763316,-0.9897368,-1.1693063,-1.1578045,-0.9092319,-0.833406,-0.83401835,-0.86059254,-0.91930103,-0.9656105,-1.0078168,-1.0859872,-1.0256463,-0.9255918,-1.0912452,-1.1580541,-1.1624749,-1.1725389,-1.2439286,-1.2475891,-1.3174262,-1.3636448,-1.4309762,-1.4708228,-1.5125382,-1.5826886,-1.6151403,-1.6328053,-1.6181479,-1.6273446,-1.6545846,-1.6873261,-1.6893897,-1.6848913,-1.6543593,-1.7062941,-1.6727636,-1.6795546,-1.6410931,-1.6405058,-1.6951103,-1.7312853,-1.6871791,-1.7063516,-1.6516603,-1.6464752,-1.6882746,-1.6103773,-1.6382868,-1.6374553,-1.298995,-0.5767276,-0.74426436,-1.1105174,-1.3059461,0.017799556,0.80793464,0.2838822,0.03883569
+-0.8229444,-0.87122095,-1.0354244,-1.1194959,-1.1560471,-1.1919976,-1.2210901,-1.2226017,-1.1913468,-1.1918225,-0.7937281,-0.76163304,-0.07486232,-0.29974085,-0.5649674,-0.67768633,-0.76655316,-0.9065201,0.01782421,0.26910034,-0.010618143,-0.2673884,-0.56511056,-0.75395155,-0.92903936,-1.0561113,-1.0994129,-1.1594684,-0.28845218,-0.10439988,-0.3151483,-0.25852865,-0.6037743,-0.88727576,-0.9780314,-1.0411365,-1.0894566,-1.1117041,-1.1570276,-1.1940415,-1.2054029,-1.1820225,-1.2292974,-1.1553351,-0.8554518,-0.8342748,-0.9674996,-0.26160342,1.1970534,0.6816888,0.097534545,0.34495795,0.14104554,-0.3782372,-0.7266367,-0.9277322,-1.0368983,-1.1068853,-0.8681619,0.7630612,0.44934845,1.2990713,1.7224712,1.3834966,0.8314662,0.34437695,0.11720336,0.015675955,-0.3481832,-0.6783837,-0.73130924,-0.8586412,-0.89554274,-0.9289026,-0.8809111,-0.8994843,-1.0162246,-1.0063283,-1.0421482,-1.052994,-1.0461535,-1.0462036,-1.0429375,-1.033782,-1.0239244,-1.0265602,-0.6919214,-0.36796388,-0.61509174,-0.804736,-0.58864176,-0.15279672,-0.5735323,-0.8715618,-0.7410466,-0.6821653,-0.8747544,-0.9863124,-1.0406995,-1.0197088,-1.0227543,-1.0341802,-1.0612042,-1.0703015,-1.0612603,-1.0445602,-0.539258,-0.6869417,-0.86485666,-0.9433541,-0.98774445,-1.006646,-1.0198808,-1.0238342,-1.0282426,-0.36529225,-0.1866414,-0.17139506,-0.41069132,-0.6798379,0.2638864,-0.12388676,-0.5268743,-0.73069376,0.3274271,0.011580668,-0.4753391,-0.6885657,-0.83695024,-0.2844153,0.7461049,0.22655696,-0.23745403,-0.4641527,-0.6404486,-0.7968327,-0.85432893,-0.8910166,-0.94973695,-1.0105,-1.0536288,-0.7828493,-0.81772035,-0.95140195,-1.023727,-1.0471774,-1.0805789,-1.0793238,-0.18748754,0.47017634,0.49988633,1.3812943,1.5035537,1.4238734,1.091631,0.80011874,0.43774956,0.14983791,0.12528732,1.52192,1.4674139,1.0897822,0.80381536,0.37504444,0.12737456,-0.044436656,0.2329022,1.1639061,1.1808391,1.0256616,0.6658923,0.25356013,-0.057326026,-0.2508793,-0.3629889,-0.45268828,-0.49171346,-0.50542223,-0.637527,-0.72685707,-0.75074446,-0.78146607,-0.8114798,-0.8272961,-0.85221064,-0.86272025,-0.8091816,-0.79591775,-0.94485855,-0.8888402,-1.0292976,-0.6036304,-0.45381582,-0.63070476,-0.746495,-0.5465231,-0.46836668,-0.59859884,-0.67319447,-0.78927195,-0.8731095,-0.96740544,-0.86753106,-0.975412,-0.9688568,-0.95409775,-0.9418974,-0.96261513,-0.93233037,-0.9383998,-0.9238329,-0.91676784,-0.9369248,-0.9606645,-0.9164771,-0.68728036,-0.22454688,-0.37755677,0.30688688,1.0422299,0.86293435,0.836877,0.6296586,0.42771515,0.322017,0.23136538,0.13146946,0.012313314,-0.13234875,-0.26231176,-0.34103245,-0.41308677,-0.56974196,-0.5764905,-0.69681346,-0.51314807,-0.43836808,-0.4969617,-0.5359749,-0.63385564,-0.64642024,-0.55750316,-0.69624895,-0.7920831,-0.87627786,-0.7517608,-0.47250915,-0.20373523,-0.31818748,-0.3883141,-0.5876261,-0.7003032,-0.78746194,-0.5360329,-0.27024233,-0.38039428,-0.40394258,-0.41866994,-0.63335353,-0.39003414,-0.48637807,-0.9374689,-0.99965084,-0.85070235,-0.56221443,-0.54406416,-0.45517755,-0.33483022,-0.32803774,-0.45503902,-0.5088977,-0.42006707,-0.5670422,-0.7484015,-0.56276864,-0.5763455,-0.5590309,-0.5429597,-0.67444694,-0.7976235,-0.9412191,-1.0775621,-0.9815661,-0.46362472,-0.2821253,-0.32180122,-0.3573034,-0.45310634,-0.2252227,0.7413597,0.89640963,0.99521494,0.8896049,0.87757635,0.8356836,0.6132588,0.58317524,0.50199866,0.436686,0.036128856,-0.35069597,-0.50960416,-0.6037251,-0.39076942,-0.2715568,-0.24579743,-0.28165138,-0.48072082,-0.6496152,-0.60169524,-0.36407232,-0.36923823,-0.4358598,-0.52246994,-0.5669677,-0.5625355,-0.53951883,-0.60989577,0.006772451,0.60553443,0.384457,0.43800732,0.442403,0.28797603,0.14587268,0.113022305,-0.10153685,-0.25183344,-0.39857587,-0.55859345,-0.73741835,-0.76374906,-0.8097259,-0.88897735,-0.90184045,-0.95453894,-0.9796479,-0.98619556,-1.0761325,-1.0479398,-1.0198026,-1.0687327,-1.0670357,-1.0299163,-1.1101979,-0.9734888,-1.078186,-1.0957417,-1.0782297,-1.1144795,-1.0239084,-1.1057243,-1.0573559,-1.0148269,-1.0843871,-1.114464,-1.1084409,-0.97327244,-1.0585961,-1.1582634,-1.1500652,-0.6210793,1.3963473,1.3422065,0.932157
+-0.10107788,-0.6189256,-0.92822814,-1.2025576,-1.4314651,-1.571658,-1.6453668,-1.5641592,-0.76848507,-1.0260428,-1.3802218,-0.41240764,-0.29331875,-0.751453,-1.0725173,-1.3170605,-1.5005196,-1.5651622,-1.2619207,-1.3734365,-0.7586215,-1.0317192,-1.3821839,-1.6010866,-1.6775932,-1.7135905,-1.6941097,-1.7389767,-1.7469873,-1.730051,-1.7132884,-1.6965293,-1.7682743,-1.75401,-1.764625,-1.7909938,-1.7821326,-1.7525123,-1.70731,-1.7358341,-1.7230475,-1.7060289,-1.7404927,-0.8386398,0.2197192,-0.48321772,-0.93988323,0.21056974,0.6784246,-0.21335274,-0.71942246,-1.0367872,-1.3218002,-1.518325,-1.5846539,-1.6717628,-1.6269442,-1.6613959,-1.7313409,-1.7213182,-1.201389,0.030313082,-0.17667085,-0.72069615,-1.1203897,-1.4141146,-1.5939116,-1.668162,-1.7192776,-1.7574756,-0.95172703,-1.1946962,-0.038696013,-0.78553104,-1.246681,-0.868201,-0.2553817,-1.0655168,-1.4748092,-1.5440543,-1.6548905,-1.7117434,-1.7404575,-1.7449217,-1.7444326,-1.7533404,-1.7521579,-1.7121803,-1.1685746,-1.3835931,-1.6342071,-1.7045026,-1.7361376,-1.6982094,-1.6778706,-1.6512136,-1.6717522,-1.7009888,-1.6975216,-1.7001874,-1.7153599,-1.3226962,-1.4985161,-1.6622286,-1.4638162,-1.533783,-1.5277756,-1.6658167,-1.700361,-1.6974919,-1.7089453,-1.7120361,-1.7053732,-1.700546,-1.6949203,-1.662998,-1.6617538,-1.6219219,-1.6070626,-1.6553435,-1.6702902,-1.6893806,-1.6959853,-1.6872423,-1.6750913,-1.6715803,-1.6679097,-1.6668969,-1.6703866,-1.6519427,-1.2124441,-1.3926694,-1.2873533,-0.6713224,-0.7538905,-1.2965605,-1.527606,-1.6566917,-1.6839173,-1.7099607,-1.7225468,-0.95749617,-1.1627549,-1.4580052,-1.5204613,-0.3999995,-0.7830725,-1.0974169,-1.336632,-1.0387042,0.3475747,0.6874412,0.4530291,0.5103229,0.30685785,0.089937605,-0.32773077,-0.6393995,-0.8815696,-0.7475063,-0.86138177,-1.1414804,-0.3019951,-0.357134,-0.5861261,-0.6732799,-0.8524983,-0.5265329,0.12207178,0.28997245,-0.25893813,-0.6953753,-1.0374663,-1.2498306,-1.3609304,-1.4919716,-1.5144379,-1.3197579,-1.2765985,-1.4923186,-1.5786405,-1.6342305,-1.6556802,-1.6583779,-0.8409673,-0.96167517,-1.2573735,-1.4536289,-1.578676,-1.5694695,-1.3228424,-0.49698824,-0.20572191,-0.74594384,-1.0357227,-0.5299489,-0.46798956,-0.770112,-1.0470792,-1.2431558,-1.3739446,-1.4615114,-1.5319356,-1.5918435,-1.6597749,-1.6676555,-1.653075,-1.6150293,-1.5619429,-1.6106777,-1.6539279,-1.6503615,-1.6362635,-1.6619093,-1.6659317,-1.5909824,-0.03606718,-0.046263345,0.095086806,0.25579372,0.3563527,-0.026128687,-0.2990432,-0.4675492,-0.5465821,-0.67205125,-0.8187208,-0.909788,-1.0092125,-1.1203504,-1.2194068,-1.2774694,-1.3830707,-1.432909,-1.4460039,-1.4689257,-1.4756032,-1.5070672,-1.5295309,-1.5709513,-1.5407106,-1.5225246,-1.5908413,-1.6443704,-1.6458992,-1.615541,-0.464536,0.027009435,-0.41735262,-0.64914954,-0.81671387,-1.0055399,-1.2314444,-1.0922569,-0.97389793,-0.9794402,-1.0189258,-1.059691,-1.1411632,-1.1548562,-1.1308013,-1.5043889,-1.4990828,-1.4150863,-1.3516164,-1.327969,-1.3383183,-1.3338511,-1.394221,-1.3936272,-1.4493963,-1.4706409,-1.5050093,-1.5292444,-1.52558,-1.5531014,-0.5468896,-0.5670625,-0.7084086,-0.91555214,-1.4127383,-1.5092671,-1.3181281,-1.1843206,-1.1360562,-1.1706593,-1.2138356,-1.2169055,-0.742042,0.42987183,0.26629946,-0.23771566,-0.2125909,-0.37582344,-0.4758073,-0.57033664,-0.7063092,-0.849495,-0.9059447,-1.0620878,-1.2590214,-1.3141185,-1.3858211,-1.3852875,-1.4143353,-1.4535103,-1.5060536,-1.499898,-1.4845427,-1.5105791,-1.5875633,-1.6348883,-1.6521058,-1.661782,-1.7113062,-1.7520314,-1.7258064,-1.6547914,-0.7790738,0.06765526,-0.64006364,-0.8221893,-0.9328208,-1.0452645,-1.143089,-1.2460718,-1.407814,-1.4962921,-1.5810714,-1.6205552,-1.6204566,-1.6979969,-1.739597,-1.7703235,-1.7290735,-1.7062104,-1.733438,-1.8089485,-1.8322773,-1.8462079,-1.7550375,-1.8040967,-1.8111782,-1.7678354,-1.787525,-1.7941635,-1.7937661,-1.8426669,-1.8115146,-1.8454156,-1.7712071,-1.7822568,-1.8337553,-1.8091192,-1.7755908,-1.754287,-1.8348259,-1.7394524,-1.7495708,-1.7871337,-1.7590669,-1.7861772,-1.4423437,-1.5500926,-1.7176061
+-0.24663705,-0.21539268,-0.636858,-1.0172231,-1.3224546,-1.4829344,-1.6087899,-1.5678864,-0.47172135,-0.8491157,-1.2255776,-0.84146345,-0.7354833,-1.1269543,-1.4582075,-1.6379292,-1.6916788,-1.6729512,-1.698158,-0.9663017,-1.3041793,-1.5416232,-1.7079928,-1.7877595,-1.7920878,-1.7779967,-1.7151037,-1.8154995,-1.780321,-1.7478824,-1.7590164,-1.2630674,-1.5712308,-1.7528044,-1.8039865,-1.8298367,-1.8177363,-1.7976191,-1.7056237,-1.7814482,-1.7929826,-1.7589282,-1.7289153,-1.7542654,-1.6813608,-1.7871965,-1.7251097,-0.2760074,-0.43158573,-1.1053827,-1.460177,-1.2208093,-1.4842808,-1.6887788,-1.7282622,-1.7860417,-1.7082851,-1.7847564,-1.7927897,-1.7787514,-0.7376105,0.3631612,0.413773,0.029341258,-0.65224475,-1.1859823,-1.4892317,-1.612319,-1.6744633,-1.7365754,-1.415283,-1.4876337,0.12585074,-0.6137949,-1.131798,-1.3877585,-0.80507064,-1.1731629,-1.4906023,-1.5855935,-1.6418295,-1.6909406,-1.7204615,-1.7267445,-1.7257144,-1.7378634,-1.2492499,-0.3999589,-0.9174838,-1.333713,-1.5536168,-1.6589832,-1.6800624,-1.6604985,-1.7324257,-1.718154,-1.6488882,-1.3857787,-1.1545601,-1.4034102,-1.6223986,-1.6928232,-1.6989019,-1.711179,-1.7153265,-1.0992361,-1.3919728,-1.6116871,-1.6850853,-1.700423,-1.7083182,-1.7195916,-1.7338738,-1.7286649,-1.7234936,-1.6938432,-1.0733373,-0.6989132,-1.2692789,-1.4988141,-1.6085601,-1.6981821,-1.7125125,-1.6766555,-1.5088254,-1.6072818,-1.6785525,-1.6926242,-1.6891528,-1.6862593,-1.1847873,-0.9569559,-1.3034632,-0.5638247,-0.529018,-1.0356238,-1.3782398,-1.558869,-1.623194,-1.661238,-1.6778557,-1.6312649,-1.6452775,-1.5338771,-1.5255843,-0.5462257,-0.001378201,0.11230566,-0.23263434,-0.69019485,0.13008705,0.38881963,0.28541934,0.39840448,0.39933798,0.035938703,-0.38583562,-0.74042606,-1.0061661,-1.168442,-0.26341137,-0.65063703,-0.4233827,-0.35524663,-0.8608761,-1.1563143,-1.3087091,-1.382993,-1.3400307,-0.87851536,-0.10313056,-0.62819964,-1.0390198,-1.2706189,-1.3903425,-1.5011175,-1.5264187,-1.3872492,-0.8200839,-0.32245606,-0.8293216,-1.1486275,-1.3413827,-1.4547906,-1.5039221,-1.5607924,-1.6087203,-1.6612023,-1.653707,-1.577326,-0.5932642,-0.34064415,-0.67032063,-1.0014234,-1.2249392,-1.3503549,-1.4410636,-1.4770598,-1.5425256,-1.5850502,-1.6132388,-1.6142722,-1.6355603,-1.668788,-1.6980815,-1.7059178,-1.636376,-1.5752641,-1.5007517,-1.5954456,-1.6214597,-1.6457645,-1.655805,-1.6521479,-1.6784239,-1.3900064,-0.10443091,-0.006630048,0.20762211,0.480792,0.34383377,0.21804917,0.1625883,0.07412673,-0.02473244,-0.0938495,-0.2295155,-0.36554092,-0.51344126,-0.6411669,-0.7491566,-0.77570534,-0.9326532,-0.9751209,-1.0217752,-1.1152909,-1.1213577,-1.2236422,-1.1495101,-0.22964638,-0.26270497,-0.41605473,-0.6417538,-0.8411741,-0.99242616,-0.9753064,0.25137395,0.6453347,0.3339841,0.081556536,0.102716185,0.14102548,-0.20902222,-0.18542749,-0.20935446,-0.24801484,-0.3647372,-0.41407382,-0.4662584,-0.5625794,-0.6535664,-1.0006378,-1.1770046,-1.10835,-0.9847915,-0.94877195,-0.9647782,-0.94557846,-0.9535738,-0.98656225,-1.0813913,-1.1507679,-1.1544511,-1.1548833,-1.1883724,-1.0227556,-0.37034887,-0.47911632,-0.6664282,-0.7695271,-1.0900507,-1.2714628,-1.2618916,-1.1159055,-1.1039739,-1.1528504,-1.2036812,-1.1876743,-0.962062,0.3503192,0.5082408,0.26774785,0.32222077,0.09035235,-0.07200871,-0.24373406,-0.35257939,-0.59821117,-0.70145947,-0.79430115,-1.0306349,-1.0274932,-1.0585959,-1.1472949,-1.2096612,-1.2682912,-1.3342357,-1.3832327,-1.3880948,-1.3297145,-1.3795396,-1.475512,-1.5105107,-1.5419985,-1.582649,-1.6226385,-1.6364223,-1.594012,-0.73339987,0.020959206,-0.43112254,-0.69739455,-0.9056947,-1.1165006,-1.2064607,-1.1912551,-1.3920563,-1.5474133,-1.6037246,-1.5807029,-1.5940651,-1.6742698,-1.6699677,-1.7139375,-1.6494563,-1.6385354,-1.6616538,-1.7137816,-1.6817875,-1.7523575,-1.6962729,-1.7323772,-1.708211,-1.7108817,-1.7104006,-0.5660975,-0.7942619,-1.0900255,-1.3784508,-1.5590439,-1.6933773,-1.7286322,-1.7628106,-1.7836345,-1.7913767,-1.774263,-1.7598544,-1.5166173,-1.6975824,-1.782587,-1.7531154,-1.5704232,-1.16712,-1.4707537,-1.72123
+-0.6035644,-0.5789179,-0.8169466,-0.96575844,-1.0579088,-1.091105,-1.2011877,-1.2654535,-1.1180395,-1.2433641,-1.2307713,-1.0357623,-0.9154496,-1.0506964,-1.1525823,-1.1832082,-0.9480082,-0.636429,-0.54848266,-0.52900946,-0.71434885,-0.8819678,-0.8635887,-0.82741344,-1.102295,-1.2944567,-1.3741654,-1.4142896,-1.382379,-1.4474723,-1.3035538,-1.2448567,-1.2970362,-1.3681403,-1.4246929,-1.4566334,-1.4481921,-1.3963194,-1.2072438,-1.4032512,-1.3639382,-1.2881243,-1.2523499,-1.248381,-1.1599672,-0.57950413,-0.66915715,-0.45874012,0.61931056,-0.11583907,-0.455226,-0.6892426,-0.7224615,-0.7713884,-0.99569225,-0.8612938,-1.0924249,-1.333977,-1.2632711,-1.2426329,-0.89514697,-0.40321618,0.5109511,0.17870998,-0.18440497,-0.47589272,-0.7134181,-0.88133526,-0.9770911,-1.0997586,-1.1500914,-0.20707917,-0.3308155,-0.6893185,-0.8520796,-0.95881367,-0.39263076,-0.67441404,-0.94418705,-0.9949794,-1.005486,-1.1538507,-1.2225537,-1.2211342,-1.2117984,-1.2314591,-0.87423897,-0.055577494,-0.39962202,-0.7369374,-0.94833946,-1.0711517,-0.8871078,-0.54980725,-0.9459121,-1.1202536,-1.2052088,-0.954741,-0.7160649,-0.9045663,-1.0633452,-1.0844407,-0.98923564,-1.133389,-1.2305472,-1.2415013,-1.2599279,-1.2766554,-1.2535459,-1.2312918,-1.2336705,-1.2349294,-1.2345779,-1.2335622,-1.2258885,-1.1905806,-0.8256022,-0.28093922,-0.78926146,-0.9968834,-1.1205568,-1.2034973,-1.222522,-1.0481639,-0.9280424,-1.0751333,-1.1372902,-1.1687155,-1.1885743,-1.1722208,-1.1746671,-0.7926562,-0.6643351,-0.86047655,-0.20497674,-0.30323946,-0.5808207,-0.8309177,-0.8721995,-0.4565581,-0.34274954,-0.41888207,-0.680441,-0.75128925,-0.44819373,-0.5015342,-0.4183004,0.19633818,0.2679494,0.005616829,0.15075305,0.23410276,0.18465704,0.09082679,-0.15690127,-0.34486723,-0.5534137,-0.6944789,-0.81842273,-0.8941882,-0.9312948,-0.936748,-0.56465286,-0.21672317,-0.16851166,-0.046588622,-0.2181648,-0.46003824,-0.64810896,-0.69460595,-0.7718022,-0.87942326,-0.9628463,-1.0098119,-1.042391,-1.0976346,-1.0352769,-0.27293888,0.4499614,0.49471784,0.2704197,0.030691408,-0.15940267,-0.3511479,-0.50766873,-0.6182557,-0.5615467,-0.45243126,-0.6426623,-0.72671694,-0.4601506,-0.20670322,-0.4105953,-0.5768728,-0.6968604,-0.77824515,-0.8891673,-0.929894,-0.95936406,-0.99854946,-1.0317981,-1.0455691,-1.0922475,-1.0223893,-1.1155457,-1.1472137,-1.101232,-1.1010345,-0.9789337,-1.000401,-1.0344903,-1.0582973,-1.0713181,-1.0732898,-1.1222633,-1.0940115,-0.95111036,-0.85765815,-0.8533907,0.14169845,0.23607758,0.26698828,0.2089198,0.24470401,0.109693274,0.098472476,-0.028599113,-0.13850114,-0.2779222,-0.44385058,-0.57371455,-0.61736953,-0.7230128,-0.8158074,-0.866682,-0.9109981,-0.8918969,-0.95412314,-0.8077681,-0.44954467,-0.524683,-0.5352285,-0.7389578,-0.8148071,-0.86269796,-0.87139857,-0.39546627,0.39106482,0.5434868,0.3281149,0.16637042,0.11338656,-0.24605024,-0.11366937,-0.16313237,-0.21702579,-0.35913706,-0.43184823,-0.42749572,-0.5401744,-0.6575714,-0.68744206,-0.92824876,-0.8875351,-0.95471215,-0.93593955,-0.94258344,-0.8964219,-0.8256462,-0.7670275,-0.88460827,-0.98131156,-1.0764868,-0.83737963,-0.57281053,-0.5336818,-0.09426189,-0.10648366,-0.29808432,-0.45105684,-0.5608251,-0.950639,-0.933624,-0.83229405,-0.83941954,-0.87524736,-0.8595456,-0.82009345,-0.6909516,0.2553103,0.67244613,0.49178094,0.4659695,0.32033235,0.17780727,-0.018481292,-0.10761159,-0.23010433,-0.41267085,-0.49030083,-0.63644505,-0.72152805,-0.7207893,-0.8568038,-0.8990296,-0.95052135,-0.9903822,-0.97896874,-0.94550145,-0.91935825,-0.9200742,-0.9519143,-1.0576671,-1.0819069,-1.0596592,-1.1140474,-1.13259,-1.072294,-1.0289885,0.19478557,0.12985986,-0.018812083,-0.13303211,-0.22555232,-0.3964923,-0.16953635,-0.45717525,-0.63858306,-0.83970356,-0.9692545,-0.97789514,-1.0956416,-1.1211164,-1.1986145,-1.1617641,-1.1070749,-1.1277792,-1.1819906,-1.0843306,-1.1447004,-1.1458764,-1.083926,-1.1445947,-1.0649072,-1.0756207,-0.91805124,-0.9400116,-0.9848988,-1.0467345,-1.1181667,-1.1579318,-1.1286749,-1.1629608,-1.1806448,-1.2165046,-1.2195451,-1.2293935,-1.1728256,-1.2639692,-1.303576,-1.3183484,-1.2769548,-0.78336966,-0.83993423,-1.0967667
+-1.4021022,-1.3828175,-1.4674385,-1.5076973,-1.4663835,-1.4893248,-1.4774828,-1.5031971,-1.3739169,-1.4538305,-1.4940865,-1.3795568,-1.2890369,-1.4396683,-1.4413012,-1.4578153,-1.3551023,-1.1810389,-1.0632601,-1.1940095,-1.3524613,-1.3523788,-1.2350804,-1.2386633,-1.4581137,-1.5483601,-1.5925788,-1.556129,-1.5728998,-1.5807682,-1.5028548,-1.4343992,-1.4814017,-1.4945068,-1.5176554,-1.4775809,-1.5135726,-1.38131,-1.4659092,-1.5209457,-1.4630445,-1.4245844,-1.243336,-0.97413373,-0.57969064,-0.6617803,-0.7454723,-0.6125015,-0.0944205,-0.6850926,-1.012027,-1.1755273,-1.2419828,-1.3403218,-1.4023571,-1.1661942,-0.8901295,-1.2803268,-1.2869873,-0.9925461,-0.4032535,-0.54361737,-0.5427794,-0.598142,-0.95707095,-1.2186482,-1.3059881,-1.3539816,-1.3439589,-1.350017,-1.2884109,-0.5674176,-0.76310945,-1.0335296,-1.1092392,-1.1231606,-1.0731827,-1.15555,-1.2411685,-1.1612223,-0.9114988,-1.1622205,-1.2654111,-1.3003228,-1.3225019,-1.2327543,-0.29144537,-0.2651127,-0.39326808,-0.6327679,-0.8959249,-1.0228567,-1.0318408,-1.0003228,-1.1207469,-1.1998018,-1.2465062,-1.2842814,-1.2795115,-1.0866537,-1.0817461,-1.2017863,-1.263358,-1.2845199,-1.2692623,-1.1412728,-1.1920629,-1.2808388,-1.3147677,-1.3296063,-1.344596,-1.349153,-1.3530881,-1.3576844,-1.3496842,-1.3397942,-1.23059,-0.58562976,-0.8937237,-1.091267,-1.2183073,-1.2711611,-1.3087413,-1.3160259,-1.3313322,-1.3270754,-1.3381734,-1.3413643,-1.3454745,-1.2186791,-0.78836703,-0.49087107,-0.52851784,-0.7724407,-0.4161172,-0.2753902,-0.21541679,-0.5571281,-0.6894318,-0.44374877,-0.107741825,-0.016042076,-0.35389227,-0.35651585,-0.21638381,-0.35310018,-0.28089994,-0.20906395,-0.20462167,-0.15468538,-0.22423947,-0.2434791,-0.35146773,-0.5133865,-0.5463146,-0.3188543,-0.29953757,-0.50931746,-0.6915043,-0.74514544,-0.8661894,-0.8705471,-0.7824805,-0.6022985,-0.7287718,-0.34586957,-0.621893,-0.85565746,-0.9890075,-1.010221,-1.0664237,-1.1769326,-1.2044305,-1.2424486,-1.2844758,-1.2951752,-1.2364525,-0.2971563,-0.06819125,0.025552668,-0.14406952,-0.3884085,-0.5882045,-0.6525742,-0.78720456,-0.92018116,-0.88294154,-0.8445706,-1.0246279,-1.1020066,-1.0615757,-1.1894736,-1.204042,-1.2440329,-1.2600741,-1.2659703,-1.2875676,-1.2850565,-1.2744617,-1.2942466,-1.3051921,-1.3017585,-1.340498,-1.307602,-1.3583479,-1.3597233,-1.3098633,-1.2271963,-0.994228,-1.0260931,-1.1631118,-1.2489905,-1.2791696,-1.3048569,-1.336371,-1.3121878,-1.2905266,-0.9961493,-0.8726206,-0.9619851,-0.9055946,-0.90730286,-0.67066157,-0.5339797,-0.56894004,-0.5548269,-0.671294,-0.8285872,-0.92843616,-1.0505309,-1.1341358,-1.181284,-1.2420533,-1.3029721,-1.2977512,-1.3031597,-1.281523,-1.3043208,-1.262656,-1.2139723,-1.2406709,-1.3044083,-1.350033,-1.350841,-1.3568203,-1.3394251,-1.1778284,-0.027915902,0.18869853,-0.06425903,-0.2181955,-0.26625535,-0.49653322,-0.5650185,-0.678895,-0.68932563,-0.82042074,-0.91739416,-0.98297334,-1.0461313,-1.1360826,-1.1319127,-1.2612971,-1.2374026,-1.2949141,-1.2559245,-1.2712789,-1.1046497,-0.87692153,-1.0077579,-1.150436,-1.2409989,-1.2623371,-1.034735,-0.89267635,-0.9958608,-1.1008664,-1.2049291,-1.2741848,-1.34631,-1.2522299,-1.360567,-1.3439865,-1.3675146,-1.3870963,-1.3759679,-1.3410175,-1.2968812,-1.2481099,-1.0263956,-0.62735933,-0.8759686,-0.9727975,-1.0661547,-1.2062578,-1.385725,-1.2093801,-1.41208,-1.485017,-1.3852274,-1.3967909,-1.3915992,-1.3757893,-1.4385816,-1.4359714,-1.4497199,-1.4738622,-1.4305282,-1.3950161,-1.3358402,-1.3247051,-1.3556437,-1.4137473,-1.4500585,-1.4076067,-1.4266356,-1.4412746,-1.3925174,-1.3634939,-0.4722162,-0.4880892,-0.7392763,-0.8742776,-1.0209985,-1.0576004,-0.37799135,-0.70855474,-1.006768,-1.1867504,-1.3336316,-1.3657303,-1.4062016,-1.4379995,-1.4480817,-1.4326496,-1.4046324,-1.4355316,-1.2667942,-1.0528637,-1.2571964,-1.3204254,-1.3322206,-1.3827968,-1.3564485,-1.3650389,-1.3652554,-1.3972647,-1.3853161,-1.4111161,-1.4071586,-1.4287547,-1.3972208,-1.399632,-1.4115045,-1.4346893,-1.4206318,-1.4000165,-1.4532068,-1.5157155,-1.5160141,-1.533459,-1.499709,-1.4927394,-1.5585918,-1.5711219
+-1.5606599,-1.4695617,-1.5714357,-1.6212754,-1.5677598,-1.5785785,-1.5696347,-1.5688256,-1.2207515,-1.3859247,-1.5064061,-1.3740237,-1.3226166,-1.4960688,-1.5192834,-1.5656662,-1.5643065,-1.3886385,-1.4158431,-1.160718,-1.1922508,-1.2217782,-0.5976897,-0.5793139,-1.1319946,-1.4348414,-1.580267,-1.5463275,-1.6148088,-1.6298908,-1.5522331,-1.5630931,-1.5846204,-1.5971084,-1.6105328,-1.5719777,-1.5761551,-1.3288147,-1.3522074,-1.511749,-1.5040295,-1.5330712,-1.4639251,-1.0827726,-0.16176113,-0.37761807,-0.74980354,-0.9645431,-1.0867785,-1.2925503,-1.4033273,-1.4841671,-1.2764078,-0.60000837,-1.1610138,-1.0821342,-1.2359971,-1.4659698,-1.4736304,-1.197088,-0.5933234,-0.80924535,-0.5153222,-0.9734373,-1.2256975,-1.392595,-1.4741572,-1.5472217,-1.551297,-1.56426,-1.4302526,-1.1529539,-1.1482224,-1.3347495,-1.3622924,-1.3202035,-1.2456225,-1.2716458,-1.4198793,-1.4978023,-1.2567947,-1.3668785,-1.4751868,-1.5366769,-1.5621029,-1.5267994,-1.0385985,-0.61067694,-0.78879094,-0.91709137,-1.1566046,-1.1582227,-1.2813375,-1.3586969,-1.3199372,-1.404938,-1.4833478,-1.5177112,-1.4980477,-1.3088768,-1.2447656,-1.3854357,-1.4702663,-1.5106704,-1.4856699,-1.369598,-1.4181907,-1.4824257,-1.471612,-1.5077977,-1.5447263,-1.5542363,-1.559622,-1.552034,-1.5426539,-1.4289789,-1.2445889,-1.1841245,-1.2777103,-1.0233989,-0.90906453,-1.254422,-1.4125285,-1.4846611,-1.5221025,-1.5414457,-1.547844,-1.5448294,-1.5364914,-1.430907,-1.2467837,-0.96858907,-0.7100847,-0.7064053,-0.85748553,-0.41172928,-0.33791283,-0.497059,-0.8095528,-0.61353683,-0.30654263,-0.41144383,-0.6372873,-0.2686077,-0.4400366,-0.57022846,-0.38556886,-0.48016667,-0.50567573,-0.4860878,-0.45607162,-0.5423876,-0.6698182,-0.68484825,-0.6825065,-0.5876608,-0.4797272,-0.8025786,-0.8451144,-1.0284222,-1.1727607,-1.1823828,-1.0484409,-0.25253785,-0.7272763,-0.589356,-0.97130406,-1.1502352,-1.260381,-1.3506296,-1.4215624,-1.4771137,-1.4854558,-1.4961586,-1.5265112,-1.5171165,-1.4007387,-0.23012242,0.093604244,-0.15447599,-0.18153721,-0.37293592,-0.56590044,-0.31935248,-0.50708467,-0.69412136,-0.77300584,-0.96253705,-1.1100079,-1.0654417,-1.0379193,-1.184833,-1.2501016,-1.3183101,-1.3608004,-1.4036945,-1.4448034,-1.4438409,-1.4622808,-1.4554529,-1.4446756,-1.4473615,-1.4389217,-1.2613974,-1.3228376,-1.3725668,-1.3802705,-1.412932,-1.3128364,-1.3604579,-1.4266851,-1.4546032,-1.449686,-1.4686835,-1.4776555,-1.4221513,-1.2631907,-0.11070987,-0.35583746,-0.5225692,-0.6937641,-0.8227607,-0.84886926,-0.6212916,-0.5147528,-0.5724478,-0.6945118,-0.8583311,-0.9799173,-1.0902098,-1.1733952,-1.2438811,-1.2650478,-1.3130293,-1.3793199,-1.379628,-1.3951169,-1.3781168,-1.3648299,-1.2899927,-1.3058512,-1.3656921,-1.4570464,-1.4426658,-1.4169664,-1.3836238,-0.43141836,0.08250929,-0.010804169,-0.24724343,-0.4358114,-0.5344149,-0.521566,-0.6435026,-0.78212893,-0.8886842,-0.9935286,-1.0773331,-1.1422817,-1.230801,-1.2860601,-1.2955589,-1.259722,-1.264927,-1.3574789,-1.3672721,-1.3698288,-1.2475781,-1.1459327,-1.2606828,-1.3603137,-1.3922479,-1.4349074,-1.1837399,-1.1696707,-1.2131431,-1.3304318,-1.3985773,-1.4212477,-1.4620659,-1.4416883,-1.3762716,-1.3985857,-1.435609,-1.4842652,-1.4872372,-1.4735527,-1.4567966,-1.386889,-1.3619518,-1.2490385,-1.3293122,-1.3696471,-1.4272468,-1.4754754,-1.547471,-1.4513686,-1.5394597,-1.6200874,-1.5453441,-1.5201678,-1.4681976,-1.4062665,-1.5124528,-1.5240874,-1.5330112,-1.5496984,-1.5377818,-1.4758294,-1.4583478,-1.5079036,-1.5142214,-1.5589958,-1.5629553,-1.5189222,-1.5206649,-1.5441737,-1.525895,-1.2330403,-0.8520346,-0.9968902,-0.72551984,-0.68988335,-1.0520205,-1.2447495,-0.5057079,-0.9524878,-1.2353798,-1.403122,-1.5146792,-1.5031424,-1.4839016,-1.569052,-1.5574218,-1.5706133,-1.5258677,-1.5076873,-0.6761989,-0.60313946,-0.9566746,-1.1848084,-1.2551395,-1.3487709,-1.4136915,-1.4379663,-1.4830077,-1.4931123,-1.4935036,-1.5498238,-1.5023385,-1.5298991,-1.503873,-1.5039372,-1.5181117,-1.5415275,-1.5240085,-1.4770143,-1.5334194,-1.6215581,-1.5837122,-1.6115265,-1.5363386,-1.6191654,-1.6517627,-1.654007
+-1.7369589,-1.5980316,-1.6375223,-1.6680393,-1.6457554,-1.6274703,-1.6284151,-1.6293254,-1.1750164,-1.403946,-1.5017691,-1.5385684,-1.5043013,-1.5788159,-1.5936391,-1.6084268,-1.6310097,-1.5772206,-1.5841053,-1.3638391,-1.2160989,-1.4923726,-1.181218,-0.37214231,-1.1015002,-1.3979905,-1.5431702,-1.5461639,-1.5935018,-1.5987046,-1.5871683,-1.540747,-1.5715038,-1.6087024,-1.6367831,-1.6288003,-1.6123596,-1.5474601,-0.9961307,-1.3824503,-1.4738052,-1.5070227,-1.5641359,-0.90729535,-0.23275888,-0.45975077,-0.90691733,-1.2557046,-1.3384243,-1.4773326,-1.5353081,-1.5541869,-1.5213642,-1.5595256,-1.5554656,-1.4963914,-1.5938053,-1.5972143,-1.5299834,-1.4183494,-1.2845356,-1.1881154,-1.046829,-1.3468223,-1.4875937,-1.5320222,-1.5919302,-1.6131972,-1.5943053,-1.575654,-1.4473338,-1.4865651,-1.5135999,-1.5550619,-1.5543869,-1.5405074,-1.4103053,-1.3049188,-1.4609392,-1.5499041,-1.5620116,-1.5706277,-1.5809128,-1.588985,-1.5771085,-1.5723126,-1.519871,-1.1988556,-1.1029928,-1.3998973,-1.4866412,-1.5243883,-1.3806705,-1.3710649,-1.4663591,-1.5047269,-1.5377519,-1.5448413,-1.554864,-1.2664518,-1.0290185,-1.218811,-1.433172,-1.5107307,-1.52299,-1.5384336,-1.5577136,-1.55536,-1.5362331,-1.5560066,-1.5554423,-1.5679804,-1.5789518,-1.565905,-1.5653019,-1.555956,-1.4697268,-1.1715717,-1.3336524,-1.1532903,-1.155607,-1.3261485,-1.4770048,-1.5286009,-1.5556356,-1.56842,-1.5679119,-1.5659335,-1.558327,-1.4482718,-1.4860213,-1.3804088,-1.1021672,-0.31879932,-0.94011164,-0.8837158,-0.43821472,-0.62054414,-0.8444742,-0.9447932,-0.88725245,-0.90485585,-0.65274787,-0.6402303,-0.9144813,-1.0673077,-1.0868514,-0.70201266,-1.1562033,-1.1350911,-0.83008236,-0.91653514,-1.0064521,-1.1748524,-0.8497197,-1.2863744,-1.4198724,-1.4885772,-1.2301688,-1.3439672,-1.4725356,-1.5109482,-1.4033203,-0.97905886,-1.3549427,-1.077472,-1.3634166,-1.4785576,-1.5134935,-1.5499141,-1.5652113,-1.5728114,-1.5763699,-1.5762541,-1.5708268,-1.5633603,-1.1932169,-0.5239658,-0.16555029,-0.2851265,-0.20568272,-0.48920953,-0.49398875,-0.37042755,-0.46148443,-0.7807286,-0.99174106,-1.1627179,-1.3057135,-1.3668476,-1.3731956,-1.4524858,-1.4809651,-1.512886,-1.5276461,-1.5403066,-1.544654,-1.5445266,-1.5512335,-1.5444324,-1.5401893,-1.5345592,-1.4354843,-0.9385731,-1.2098373,-1.2295793,-1.382887,-1.4839323,-1.5297381,-1.5566276,-1.5648451,-1.5643446,-1.565695,-1.5650347,-1.571686,-1.5681431,-1.5582405,-1.0356191,-1.1159004,-1.1856682,-1.3304687,-1.2692472,-1.1714096,-1.0532951,-0.59938455,-0.8708026,-1.003,-1.1453322,-1.2620877,-1.3403878,-1.3895744,-1.44683,-1.4616677,-1.4818311,-1.4997597,-1.5084724,-1.5077398,-1.5267265,-1.5491294,-1.5554453,-1.5432751,-1.6052897,-1.587032,-1.5433276,-1.5429395,-1.5555801,-1.0326812,0.028110035,0.06646431,-0.34335545,-0.5881069,-0.7553165,-0.75301534,-0.9025415,-1.034854,-1.1618065,-1.2469407,-1.3154826,-1.3825167,-1.4095299,-1.4632682,-1.4470208,-1.4685953,-1.449544,-1.4961922,-1.5096648,-1.5013838,-1.5224662,-1.515863,-1.527526,-1.5276043,-1.5245608,-1.5507967,-1.5131485,-1.5767002,-1.5032187,-1.5425855,-1.5385693,-1.548243,-1.5497757,-1.5401324,-1.534745,-1.5491714,-1.5352997,-1.5805453,-1.5705993,-1.5551469,-1.5552998,-1.5605731,-1.5463643,-1.5696331,-1.5420685,-1.5344646,-1.5380564,-1.5660203,-1.6139723,-1.599812,-1.6159627,-1.6366153,-1.6062508,-1.5924795,-1.5912342,-1.5087836,-1.5473526,-1.5892081,-1.5922459,-1.5752095,-1.582564,-1.5586854,-1.5661546,-1.5754608,-1.5773257,-1.6099737,-1.6088169,-1.6051078,-1.5716903,-1.593935,-1.5906358,-1.5604457,-1.5602634,-1.5691335,-1.3027983,-0.95413375,-1.3137915,-1.4245284,-1.3046792,-1.5162182,-1.611192,-1.6364307,-1.6472083,-1.6340786,-1.5719609,-1.6341496,-1.605767,-1.6152135,-1.6091983,-1.6070852,-0.8177561,-0.9317869,-1.2185148,-1.4364325,-1.4788659,-1.41068,-1.4396062,-1.5023348,-1.5234237,-1.5321997,-1.5597452,-1.6030095,-1.5737224,-1.6052039,-1.5873209,-1.5756468,-1.5907035,-1.615758,-1.6013486,-1.5749907,-1.6007121,-1.6495534,-1.6296117,-1.6340866,-1.5969453,-1.6551003,-1.6646541,-1.6422114
+-1.5835824,-1.4558189,-1.4691013,-1.5191005,-1.5328355,-1.5291905,-1.522496,-1.5636878,-1.4551868,-1.5122724,-1.5564051,-1.5323522,-1.5095075,-1.4488249,-1.4786446,-1.6144763,-1.6120625,-1.5705414,-1.490172,-1.3756082,-1.414096,-1.0266206,-1.019264,-1.0187083,-1.335726,-1.502425,-1.5671952,-1.5655493,-1.6104543,-1.6101162,-1.6079137,-1.5484126,-1.4484346,-1.4651098,-1.5006385,-1.5370234,-1.5554385,-1.5355644,-1.2510239,-1.4022894,-1.5179529,-1.4858902,-1.3626785,-0.13433215,-0.20769095,-0.03410753,-0.773082,-1.05599,-1.1780113,-1.2868159,-1.3332464,-1.3722262,-1.3762648,-1.4979457,-1.4903865,-1.3965955,-1.5125625,-1.5424473,-1.4870248,-1.4705431,-1.4412642,-1.3286352,-0.6389433,-1.1439292,-1.2850881,-1.3651061,-1.4136589,-1.4607381,-1.4746687,-1.4355739,-1.4179772,-1.1156054,-1.2048564,-1.3411846,-1.404802,-1.4345934,-1.4529653,-1.2411722,-1.268692,-1.4136852,-1.4258065,-1.3024921,-1.35092,-1.4458313,-1.4613179,-1.4680527,-1.2750535,-1.2505586,-1.3196477,-1.3796754,-1.434469,-0.95813787,-0.16291374,-0.25063172,-0.8656875,-0.98417616,-1.1903176,-1.2806405,-1.3435638,-1.3402286,-0.34085238,-0.55248713,-0.98389614,-1.0890664,-1.2329397,-1.3300469,-1.3755428,-1.3884971,-1.3976128,-1.4057677,-1.4038322,-1.4175444,-1.4045639,-1.2673532,-1.3393455,-1.4075954,-1.4280183,-1.2476432,-0.5772064,-0.03919076,0.030824877,0.09075493,-0.55195886,-0.8816011,-1.0861734,-1.2009606,-1.2841542,-1.3200243,-1.1958821,-1.0111954,-1.0444287,-0.97203064,-0.2017479,0.25027478,-0.3521337,-0.16041678,0.17023793,0.34101322,0.23897263,0.120540015,-0.0034646913,-0.09681242,-0.066142745,0.24078497,-0.061989002,-0.4552431,-0.46849728,0.24234915,0.21881449,-0.016962104,-0.30373913,-0.28265482,-0.34120655,-0.6371819,-0.74703264,-0.93394804,-1.0825495,-1.0611808,-0.5700972,-0.79333615,-1.0506454,-1.2048979,-1.2975398,-1.2988973,-1.3016455,-1.3444394,-1.1888658,-1.2126992,-1.3017042,-1.3355198,-1.3625681,-1.3887968,-1.3984494,-1.4097013,-1.4132205,-1.4171937,-0.7787224,-0.8901943,-0.0360732,0.0049491003,0.05877254,-0.27329955,-0.33201325,-0.16160497,-0.14233708,-0.5051888,-0.7363442,-0.9548191,-0.9531925,-1.0722585,-1.2243758,-1.288481,-1.3292863,-1.3641477,-1.3828294,-1.3959332,-1.38657,-1.3865647,-1.4083587,-1.4198668,-1.4355204,-1.4301622,-1.1599736,-1.1368508,-1.2447913,-1.3057826,-1.357878,-1.385129,-1.4055421,-1.4115614,-1.411658,-1.4222262,-1.4364672,-1.4272399,-1.4350917,-1.428461,-1.4338306,-1.4226202,-1.4133083,-1.2800821,-1.3144634,-1.1627703,-1.1780314,-0.8002203,-0.87865067,-0.9452243,-0.8001139,-0.9303838,-1.1109366,-1.2275848,-1.3170638,-1.3963292,-1.3798516,-1.376009,-1.3774593,-1.4105611,-1.4050832,-1.392132,-1.4060564,-1.3976753,-1.3883804,-1.4407539,-1.4235668,-1.4193684,-1.4164013,-1.4372132,-1.2156365,-0.40771246,-0.43079817,-0.760314,-0.9847443,-1.1519597,-1.1551783,-1.1613421,-1.1372824,-1.2599683,-1.341949,-1.3894743,-1.4076626,-1.3869119,-1.4239364,-1.4159048,-1.351841,-1.3562016,-1.3751589,-1.3891766,-1.3736975,-1.4039253,-1.4121515,-1.4355223,-1.4178329,-1.410794,-1.4323461,-1.3910903,-1.4567524,-1.3847132,-1.3965305,-1.4315412,-1.4602656,-1.4693902,-1.4704872,-1.4144675,-1.43836,-1.4178841,-1.4521072,-1.4737225,-1.4882557,-1.4766705,-1.4349912,-1.4346983,-1.4733255,-1.4588604,-1.4402966,-1.4111472,-1.4769058,-1.5213764,-1.4786707,-1.4990308,-1.5138111,-1.4858468,-1.4671162,-1.4741254,-1.4290133,-1.413846,-1.5137461,-1.5180329,-1.4655709,-1.4787672,-1.4474499,-1.4313459,-1.4480052,-1.4928597,-1.5405636,-1.536329,-1.5291629,-1.5113411,-1.5304356,-1.5323896,-1.4694922,-1.5228312,-1.4478304,-1.3375585,-1.1327522,-1.3441124,-1.4377465,-1.4268079,-1.5043743,-1.5404574,-1.5593736,-1.5685596,-1.5590148,-1.5040896,-1.5696125,-1.5627861,-1.5747453,-1.5262526,-1.533016,-0.9947767,-0.95978785,-1.2555699,-1.4391472,-1.3759766,-0.7870097,-0.761912,-0.9848459,-0.92888606,-1.0492795,-1.2207062,-1.3822625,-1.4197836,-1.4537071,-1.4629529,-1.4345827,-1.4573002,-1.5141456,-1.5197377,-1.5128126,-1.548523,-1.5760572,-1.5774083,-1.5942041,-1.5763258,-1.6027207,-1.5960215,-1.5969929
+-0.2148785,-0.05791699,-0.2684112,-0.39425147,-0.51630455,-0.42687923,0.1317628,-0.43124753,-0.4888605,-0.10732528,-0.5004363,-0.46206224,0.35359722,0.97359705,1.889005,1.6120573,1.4840326,1.5028956,1.5343094,1.4286673,1.4462874,1.2885623,1.2319428,1.1947522,1.0647784,1.0138723,0.9993301,0.9735335,0.92696834,0.9030136,0.8021445,0.7110189,0.63543975,0.48137587,0.29786053,0.3227035,0.22590134,0.064201646,0.055704895,-0.045518182,0.3343087,0.6935257,0.5636151,0.60445523,0.5982858,0.5640687,0.4441429,0.2948126,0.23476174,0.19899228,0.1551727,0.05200696,0.4138186,0.29787785,0.49448812,2.120801,2.4381614,2.0957997,2.1648169,1.8487314,2.4095206,2.4451056,1.933114,1.9468603,2.0526211,1.7493831,1.6685565,1.4452002,1.3110521,1.2123709,1.404132,1.2428817,2.1754508,1.8318039,1.4254415,1.5077028,1.3508564,1.148753,0.9912802,2.0631409,1.9689479,1.509208,2.030572,2.0310967,1.4543281,1.99875,1.9353964,1.8850237,1.5435493,1.235109,1.2705543,1.091701,1.062012,1.2209541,1.7914203,1.613034,1.5025318,1.8635631,1.8033116,1.50192,1.5040424,1.544224,1.725939,2.0178154,1.8712082,1.4720187,1.3595145,1.1651202,1.1108948,0.94229144,0.8992773,0.8981971,0.7843084,1.7691085,1.8677924,1.3622556,1.1993147,1.0789104,0.93353254,0.7272346,0.6059842,0.46555236,0.93551266,0.9847821,0.7323389,0.91777325,0.94121516,0.70067585,0.5584147,0.59615374,0.767094,0.7086466,0.71924424,0.7088349,0.67938006,0.51195854,0.6203184,0.78379416,0.60970235,0.855235,0.86121166,0.7630677,0.6163178,0.42005625,0.26761967,0.6338436,0.87858164,0.6360918,0.4925929,0.28884074,0.5000597,0.38026136,0.25216535,0.055656493,-0.054789193,-0.033588983,0.14638078,0.15089154,0.5667679,0.7498461,1.2328143,1.2497159,0.97279376,0.849309,0.90668046,0.8048843,0.70072913,0.61373067,0.48876604,0.51592124,0.33005214,0.5717024,0.45751166,0.28892305,0.31311867,0.47881943,1.2872705,1.5673375,1.3619164,1.1371069,0.9894509,0.86268187,0.6797652,0.6573259,0.50971806,0.89191747,1.666367,1.3395541,1.3054166,1.1166137,1.1674299,0.9379134,0.7391406,0.7971628,0.7552099,0.30308858,0.6101872,0.68952346,0.55659044,0.8176849,0.8539194,0.82101345,0.66921425,0.45359707,0.4963774,1.0724527,1.0280265,0.81266755,0.7853339,0.90328,0.8593906,0.78640544,0.70699155,0.8088693,1.0248543,0.9509359,0.81537807,0.7465553,0.67111826,0.6175868,0.6111958,0.5121276,0.52506125,0.5505251,0.3093606,0.28925267,0.36486155,0.31912854,0.21139234,0.2725525,0.25900465,-0.21038604,-0.36485645,-0.3965359,-0.47490245,-0.39029914,-0.4131112,-0.38291982,-0.46383214,-0.49039567,-0.49909812,-0.5342424,-0.32667962,-0.41077238,-0.6218785,-0.5701633,-0.47114074,-0.4802274,-0.6195611,-0.513254,-0.6357513,-0.69187903,-0.7643963,-0.777946,-0.7186545,-0.7307699,-0.7513339,-0.77657616,-0.7857268,-0.76611984,-0.76579326,-0.75905514,-0.77074176,-0.6896832,-0.8064674,-0.822047,-0.8507083,-0.9056909,-0.9438871,-0.7853712,-0.950608,-0.9835799,-0.968042,-0.92883325,-0.97160864,-0.99643517,-0.9666312,-0.92747414,-0.92105603,-0.9309144,-0.95952106,-0.9251777,-0.8791266,-0.8476974,-0.8646649,-0.86619854,-0.88352704,-0.8557917,-0.91050124,-0.9504318,-0.9706135,-0.9829643,-0.9449172,-0.89966613,-0.96249485,-0.92238426,-0.9129578,-0.82097375,-0.849641,-0.91312647,-0.97543883,-1.0057425,-1.000454,-0.9809691,-0.70146316,-0.6554086,-0.9112992,-0.91462135,-0.91744125,-0.8783111,-0.86321974,-0.82167715,-0.8200996,-0.8262366,-0.839483,-0.8421847,-0.8722312,-0.8951907,-0.9193504,-0.91001487,-0.9442612,-0.89240825,-0.7176653,-0.7592832,-0.79874676,-0.7585749,-0.7876381,-0.79113954,-0.7341126,-0.85351086,-0.91389406,-0.9693656,-0.9383043,-0.9317157,-0.8471958,-0.8744329,-0.9296979,-0.91108406,-0.76168346,-0.60241497,-0.56682837,-0.72491866,-0.8049154,-0.81851125,-0.7968766,-0.777818,-0.8365648,-0.8336443,-0.85188615,-0.7280073,-0.47225517,-0.8266072,-0.5127816,-0.4931661,-0.77015984,-0.88762426,-0.6931623,-0.6945296,-0.69206333,-0.34102884,-0.4715066,-0.38230827,-0.40296268,-0.08024164,0.3841808
+-0.11692237,-0.12519246,0.4189482,0.06822923,-0.03324219,0.13638112,0.27209672,-0.107195325,-0.446716,0.08480355,-0.5064973,-0.5084362,-0.23282427,-0.193447,0.35745823,1.1609364,0.91517144,0.64387965,0.75669914,0.8785609,0.8628382,0.59648323,0.5067473,0.972298,1.4800491,0.88716376,0.9273732,0.7502243,0.53495157,0.46675533,0.29519498,0.13505688,0.060331903,-0.089362316,-0.2127887,-0.26884395,-0.33196896,-0.40433556,-0.41904867,-0.40229318,-0.05533492,0.09074349,0.008446902,-0.0624915,-0.15343189,-0.2536822,-0.3322088,-0.37533343,-0.42105895,-0.42120385,-0.4224019,-0.55357695,-0.14381638,-0.2031819,0.08896061,1.2034309,1.3761749,0.99604934,0.78598,0.6305672,1.9554241,2.0156188,1.306483,1.2018976,1.046439,0.5446771,0.33986443,0.15848422,-0.029104814,-0.18458268,1.4568064,1.7465395,2.0589087,1.4972295,0.9659007,0.99332833,0.51719123,0.6115878,0.30751497,0.7030252,0.6752449,0.2062212,1.1881166,1.2774227,0.6779102,0.8853906,0.7712643,0.36174336,0.11032454,-0.08821372,-0.0786326,-0.17070729,0.81924623,0.70010716,0.43067384,0.6607013,0.68483907,0.68386614,0.3938513,0.03499575,-0.03119693,1.223319,1.271986,1.5525479,1.1917835,0.58476347,1.7435045,2.1773517,1.3658161,0.8684847,0.42517656,0.34800738,0.17258649,1.7667193,1.7175539,0.9494649,0.73330855,0.77899706,0.63261604,0.28135544,0.36040774,0.24329382,0.089866266,0.079017825,-0.17580217,-0.20671391,-0.28262702,-0.3346264,-0.38540974,-0.42956322,-0.3874421,-0.28941303,0.290374,0.4056303,0.25751743,-0.036620833,-0.28386545,-0.39011508,-0.5011007,0.60096395,0.68370175,0.4521435,0.17425647,-0.08955651,-0.23483872,-0.29406765,-0.32665375,-0.44625753,-0.5050346,-0.55670804,-0.58642066,-0.6213309,-0.65063316,-0.4674207,-0.54885274,-0.63169277,-0.31768715,0.20670131,0.15559813,0.29114962,0.7521404,0.6274488,0.46586376,0.2523425,0.12843913,0.03664302,-0.1369758,-0.058472343,1.2137845,0.7567626,0.5932269,0.4251228,0.2069916,0.14295644,0.3256151,0.5242106,0.92686945,0.99116004,0.77419364,0.529411,0.30665174,0.16261616,0.015600912,-0.05315318,-0.15960625,-0.011735059,0.7794189,0.6472486,0.41799438,0.25125802,0.019192375,0.09049242,0.08335198,0.078439824,0.11713702,-0.20009476,0.0900001,0.19371597,0.012700789,-0.05846999,-0.056577645,-0.18800184,-0.2262305,-0.22395188,-0.2907378,-0.31544828,-0.32564142,-0.39429036,-0.3755171,-0.25971258,-0.28183246,-0.2701899,-0.29900953,-0.258738,0.10450507,0.11278466,0.07208729,-0.0050020292,-0.06706972,-0.112384655,-0.13289726,-0.24592054,-0.19339266,-0.23823938,-0.40232322,-0.38798597,-0.36709824,-0.45531827,-0.42833722,-0.39571154,-0.5059954,-0.7676105,-0.90170586,-0.863709,-0.9275888,-0.8123596,-0.92763364,-0.9886122,-0.98892546,-0.95937395,-0.9490583,-0.5085997,-0.2149792,-0.37254763,-0.4449547,-0.543177,-0.48222637,-0.5156185,-0.69740343,-0.609375,-0.74716246,-0.80805564,-0.7610137,-0.7256373,-0.7089588,-0.7582027,-0.79358006,-0.7979648,-0.78207326,-0.75370353,-0.76880217,-0.77369833,-0.8102182,-0.6796999,-0.7224891,-0.8308742,-0.8877921,-0.83500665,-0.7404587,-0.7102972,-0.81919014,-0.82111055,-0.8189029,-0.84836864,-0.862064,-0.8518642,-0.6979786,-0.73834836,-0.7806107,-0.77951086,-0.79412687,-0.7926453,-0.7786706,-0.75210273,-0.77634543,-0.79904634,-0.8135189,-0.7956772,-0.82024467,-0.8521736,-0.8484594,-0.86952496,-0.72591734,-0.73253757,-0.8178315,-0.82504046,-0.8304,-0.846099,-0.83437085,-0.7792498,-0.79655766,-0.84339786,-0.84682393,-0.7905436,-0.6613604,-0.58161324,-0.83812374,-0.85727626,-0.88842964,-0.8329562,-0.8375571,-0.77679986,-0.7755797,-0.80862504,-0.84361273,-0.70133895,-0.79615843,-0.8273437,-0.84264314,-0.8217604,-0.82585186,-0.7088615,-0.4577486,-0.587253,-0.6032052,-0.51085067,-0.43553686,-0.36103904,-0.5621619,-0.6546403,-0.73119605,-0.7269691,-0.7342598,-0.6479324,-0.6580651,-0.6926831,-0.77297115,-0.72677195,-0.6453073,-0.5125567,-0.62531716,-0.7092638,-0.6866537,-0.6965749,-0.71752715,-0.6619802,-0.64095235,-0.66452765,-0.6901897,-0.52863896,-0.30080962,-0.59845936,-0.2221204,-0.34564805,-0.60623235,-0.6516028,-0.37672588,-0.45077235,-0.26751876,0.30571568,0.81242025,0.9687892,1.0698638,1.1295898,0.8723866
+-0.23151171,-0.12700418,0.0453356,-0.024643011,-0.062924854,0.019620672,-0.07071742,-0.07920476,-0.40004057,-0.14884573,-0.34400403,-0.43863368,-0.356426,-0.51730573,-0.4952249,0.32997292,0.30166546,0.2891946,0.53854084,0.5435948,0.57279575,0.38075918,0.295717,0.0054583624,0.5391722,0.46108937,0.562142,0.514508,0.5976203,0.57325006,0.3764827,0.117893346,0.1722678,-0.0032962859,-0.22956824,-0.3826751,-0.5287749,-0.6635191,-0.8065251,-0.5182739,-0.4545089,-0.30863747,-0.0069024786,0.11213369,-0.0064638257,-0.2750807,-0.46391928,-0.55918664,-0.6326176,-0.68611187,-0.7401048,-0.84685874,-0.6667028,-0.6566858,-0.6309701,-0.49876416,-0.6223715,-0.4004008,-0.08870197,-0.12418663,0.31174988,0.46170536,0.12532058,-0.0033208355,0.018917993,-0.19113165,-0.4271282,-0.63658303,-0.73668844,-0.84472334,-0.8115357,-0.8581196,-0.9815146,-1.0181597,-0.46041304,-0.32630074,-0.5549761,0.30173877,0.4461807,0.12546653,-0.014278285,-0.37020862,-0.27987933,-0.34926152,-0.53989327,-0.6748214,-0.773548,-0.9521377,-1.0191947,-0.8548364,-0.8044573,-0.87535703,-0.93398595,-1.0361247,-0.76136166,-0.82758653,-0.87408257,0.28410402,-0.07595899,0.1025411,0.052495383,0.67783695,0.76884943,0.5453883,0.3217049,0.0691343,0.0049521327,0.0006287843,-0.25118905,-0.5266664,-0.7351486,-0.6683199,-0.74981904,0.5745091,0.43599135,0.17476797,0.05419659,0.4558945,0.28660724,0.16538185,0.2523189,0.08797375,-0.2096372,-0.35326526,-0.5837735,-0.30324748,-0.45218825,-0.6665436,-0.7935698,-0.9005698,-0.94562054,0.19511428,0.23238784,0.15480489,0.04473465,-0.1929686,-0.42207384,-0.5857976,-0.6774527,-0.82812953,-0.30260193,-0.07300729,-0.25928512,-0.44473833,-0.6124214,-0.668838,-0.7892191,-0.9682393,-1.0038512,-1.0173967,-1.0619365,-1.0986102,-1.1420721,-1.136792,-1.1132913,-1.1304803,-1.0267643,-0.676918,-0.7850102,-0.029990055,0.25839144,0.22525772,0.09942543,0.0053615943,-0.080512844,-0.27741802,-0.41132653,-0.42261916,-0.05601012,-0.08851733,-0.15632448,-0.32806295,-0.5359677,-0.5028892,-0.72336984,-0.599581,-0.456374,-0.2981493,-0.37607127,-0.59282905,-0.7102324,-0.7557302,-0.8052113,-0.8488313,-0.91810143,-0.8135312,-0.19033682,-0.12463214,-0.22858211,-0.29727554,-0.39294946,-0.46567106,-0.5537933,-0.49466044,-0.5163275,-0.60102344,-0.6303266,-0.6254028,-0.7466159,-0.77383554,-0.67428267,-0.7233396,-0.7509949,-0.8008209,-0.81777143,-0.8827717,-0.7783886,-0.85481715,-0.91382945,-0.9097792,-0.9684702,-0.9377123,-0.89093816,-0.92938685,-0.86010766,-0.90275633,-0.8827455,-0.9111564,-0.9194155,-0.9249115,-0.925081,-0.911293,-0.879514,-0.9064648,-0.84577036,-0.8434626,-0.87573016,-0.9205941,-0.909884,-0.90351397,-0.8355305,-0.86088866,-0.88983464,-0.8748577,-0.88901895,-0.8114894,-0.8670206,-0.83821726,-0.8808222,-0.86459994,-0.8587041,-0.16747403,-0.029401407,-0.2960595,-0.2467368,-0.53815997,-0.4135517,-0.40866458,-0.5866444,-0.8963238,-0.96781015,-0.9577067,-0.9736388,-0.9200003,-0.88399625,-0.9233347,-0.9494628,-0.9964255,-0.9035605,-0.8753035,-0.93356,-0.8738154,-0.8905817,-0.70039135,-0.707113,-0.9070934,-0.9797902,-0.95310855,-0.8728751,-0.95178604,-0.9963169,-0.870364,-0.9461936,-0.91018295,-1.0104896,-0.98818827,-0.904068,-1.0360956,-1.0200382,-1.008922,-0.9781637,-0.9739431,-0.8975794,-0.8474941,-0.8942866,-0.91179216,-0.9261502,-0.8353265,-0.8742274,-0.8908489,-0.90354323,-0.8964385,-0.6631952,-0.7894869,-0.84414554,-0.8851941,-0.9633043,-0.9596875,-0.93568003,-0.8975765,-0.97188056,-0.98241615,-0.83008724,-0.7253063,-0.70869225,-0.83750474,-1.0461023,-1.0930715,-1.0390558,-0.97642255,-0.9820901,-0.95124066,-0.9957435,-1.0224489,-0.97559524,-0.6266906,-0.6092177,-0.9422802,-0.9603765,-0.9229274,-0.9253466,-0.7610705,-0.55979687,-0.6054179,-0.55918944,-0.23745558,0.012762077,-0.2416482,-0.71652865,-0.94854355,-0.91619694,-0.91492856,-0.86834437,-0.9459863,-0.9130566,-0.9423032,-0.91032696,-0.8477691,-0.64710116,-0.36413965,-0.7226786,-0.9940101,-0.93062496,-1.0285681,-1.0291731,-1.004445,-0.9966142,-0.9145969,-0.85727215,-0.5524136,-0.19980788,-0.48509562,0.08846105,0.42336223,-0.26086202,-0.61857706,-0.2758447,-0.36607593,-0.119428076,0.23693067,0.3542164,0.40772367,0.40506375,0.39813805,0.36002505
+-0.4838099,-0.23980808,-0.11486208,-0.050033502,-0.18059793,-0.31252176,-0.4813643,-0.5503489,-0.5808288,-0.7278855,-0.7140632,-0.70317507,-0.81993085,-0.84285194,-0.4625373,1.5305098,1.6888101,1.8733422,1.9600406,1.8366437,1.5434382,1.3660555,1.0796156,0.7646411,0.69265264,0.6303098,1.649009,1.5628389,1.5619742,1.3912116,1.2016678,0.84328735,0.90599144,0.6638655,0.4286252,0.10789303,-0.064774804,-0.21560356,0.46517158,1.0901784,0.9020699,0.74824464,0.6117774,0.4079581,0.21556848,-0.013878383,-0.21869963,-0.35557273,-0.49478734,-0.6135317,-0.61868405,-0.72552043,-0.4611588,-0.5998051,0.6219249,0.50501907,0.22056237,-0.015138619,0.03962464,0.07731522,0.12993583,-0.034155942,-0.31600732,0.3586066,-0.034450047,-0.3503365,-0.5965986,-0.6467679,-0.74502087,-0.8684386,0.13941649,-0.16674334,-0.33042112,-0.4032767,0.39780128,0.54325604,0.07067577,-0.21496755,1.3120947,0.9231062,0.56063193,0.1399062,0.38750955,0.095051296,-0.23790479,-0.44879377,-0.6157681,-0.84068096,-0.8820999,-0.64367336,0.1025827,-0.19457129,-0.3603592,-0.5335195,-0.7603554,-0.41729915,-0.047257595,0.7286796,0.29501343,-0.100639425,-0.41160887,-0.30183163,-0.4295931,-0.74974704,-0.88020134,-0.58607614,-0.19090468,0.21191853,-0.25843623,-0.5760157,-0.75589424,-0.85303223,-0.9572936,-0.7525643,-0.63099277,-0.831136,-0.9745296,-0.5659815,0.23189622,0.66014206,0.20937267,0.26099405,0.28000176,-0.064464785,0.0805547,0.57204705,0.09608076,-0.22437328,-0.4759779,-0.65228915,-0.33988553,-0.07710936,0.26663524,0.57246786,0.23602697,-0.096935235,0.48657513,0.8190769,0.33281827,0.007335253,0.2950001,0.25611335,0.080619015,-0.22213393,-0.45848644,-0.5452845,-0.7227707,-0.29895774,0.2576529,-0.0753114,-0.3659564,-0.56551206,-0.6940609,-0.7807882,-0.83282495,-0.9360515,-0.9750304,-0.22434908,0.2413193,0.30139112,0.21469179,0.085006125,0.011975102,-0.21069056,-0.48504156,-0.5513755,-0.57025224,-0.59104013,-0.38842437,-0.489119,-0.58486027,-0.698617,-0.810987,-0.7924435,-0.84915197,-0.5336854,-0.30523646,-0.2782358,-0.4797309,-0.66631323,-0.8002893,-0.8564995,-0.8783875,-0.9024514,-0.95744145,-0.90517414,0.80922174,1.0542134,0.8002667,0.6321895,0.49119085,0.3345092,0.14336058,0.028056286,-0.029271312,-0.12876645,-0.31992486,-0.33989295,-0.4857759,-0.5064854,-0.39131472,-0.2616416,-0.014511935,0.04025542,-0.095839836,-0.3126406,-0.3597086,-0.48771125,-0.53683025,-0.55737305,-0.6024566,-0.20169497,0.1703066,0.083608456,0.080245055,-0.105332874,-0.2062065,-0.3198232,-0.47318596,-0.55398536,-0.6091149,-0.6033664,-0.5928968,-0.68191075,-0.6381752,-0.55605435,-0.6827725,-0.6889936,-0.67642474,-0.67570424,-0.60824466,-0.2975556,-0.3894527,-0.36104232,-0.33903295,-0.25917843,-0.335766,-0.32945192,-0.40241325,-0.41949934,-0.37762243,0.0043916777,-0.029938243,0.13077208,-0.02872055,-0.21822795,-0.1700443,-0.21034825,-0.20785555,-0.5169364,-0.6809964,-0.71544343,-0.7281166,-0.61312616,-0.63871497,-0.7299949,-0.74455696,-0.8068464,-0.7275887,-0.5380079,-0.7085382,-0.7085297,-0.6545468,-0.36963207,-0.35556513,-0.5553742,-0.53687423,-0.5575431,-0.41188908,-0.51687884,-0.63348156,-0.44229084,-0.55758446,-0.46668756,-0.5421702,-0.5778385,-0.5417061,-0.70839846,-0.7839068,-0.72020566,-0.74136066,-0.7285123,-0.6851778,-0.59293264,-0.5671366,-0.6052264,-0.691803,-0.64579225,-0.63920945,-0.6141001,-0.5659536,-0.5372214,-0.33849695,-0.39743683,-0.3769488,-0.36505336,-0.48409808,-0.42160362,-0.4286723,-0.4126389,-0.5348699,-0.51888627,-0.31163085,-0.195503,-0.2605921,-0.2431277,-0.4585349,-0.71570605,-0.7555144,-0.65308404,-0.671039,-0.689633,-0.6834619,-0.7165992,-0.6901639,-0.25662827,0.03714273,-0.29128742,-0.3786908,-0.35272425,-0.31345198,-0.18168628,-0.051853202,0.038566418,0.2901711,0.64763844,0.7047123,0.6848057,0.27053186,-0.23094231,-0.33096182,-0.28450757,-0.15180868,-0.14489597,-0.20842123,-0.24482685,-0.22129726,-0.06886085,0.28372124,0.5140562,0.047717877,-0.21918505,-0.31713432,-0.5138805,-0.4748776,-0.47161233,-0.5901728,-0.40539348,-0.31030774,-0.047301136,0.24170262,0.19564793,0.47305158,0.47354162,0.19270116,0.16928649,0.3713258,0.40159196,0.32933375,0.3027513,0.40136027,0.37699854,0.45181584,0.4512399,0.44668403
+-0.29064023,-0.2010299,-0.15635493,-0.29458633,-0.4109745,-0.25884715,-0.30340526,-0.43013537,-0.5751012,-0.51108813,-0.5684488,-0.6527374,-0.7401732,-0.7011819,-0.78358656,0.95413595,0.9187688,0.69233096,0.72947663,0.6185415,0.58503807,0.35188556,0.2278024,0.00201305,0.010824345,0.12818801,0.7788003,0.69195795,0.6352685,0.6240453,0.6353623,0.55830765,0.48557073,0.44314656,0.26746228,0.03620884,-0.0038622841,-0.025812574,0.48320106,0.38505164,0.36253774,0.20764513,-0.011296518,-0.049481772,-0.32110912,-0.19246653,-0.1991508,-0.34443802,-0.3902455,-0.51385367,-0.52924824,0.21238661,1.1323342,0.6848376,0.8493848,0.6320933,0.6031213,0.823781,0.44882396,0.41173884,0.5775704,0.4478468,0.0061559603,-0.078041784,-0.3459355,-0.71610534,-0.9577725,-1.1022818,-1.2172966,-1.2945037,-1.3058875,-1.3598766,-1.3058087,-1.1523126,0.8964529,0.4152245,-0.1138534,-0.3266946,-0.6142932,-0.84245205,-0.95672,-1.1247234,-0.9842355,-1.1129961,-1.2989033,-1.2505544,-1.3010974,-1.3205774,-1.3201437,-0.7858533,0.08154573,-0.19897628,0.34161854,0.06713616,0.15235284,-0.25998133,-0.3284357,-0.23410186,-0.5848019,-0.8864704,-1.1311185,-1.1380116,-1.2412122,-1.353477,-1.3773866,-0.31850478,-0.6110471,-0.14738595,-0.6914451,-0.945235,-1.098639,-1.2278361,-1.3057356,-1.2635105,-1.3160696,-1.3806118,-1.2106565,0.45802096,0.07874196,0.12683454,-0.0794392,0.32802865,-0.15128404,-0.51816285,-0.8134724,-0.927719,-1.0861444,-0.92308104,-0.6983597,-0.9738275,-0.5743707,-0.81448203,0.11256682,0.3726384,0.050241686,-0.289253,-0.41624564,-0.5947364,-0.8734858,-1.032948,-0.2564554,0.25078046,-0.09763146,-0.3720373,-0.64917064,-0.778417,-0.93145394,-0.49239385,-0.18627962,-0.59029317,-0.83679354,-1.0134373,-0.98901534,-0.95406055,-1.1389589,-1.2435539,-1.0446756,0.09730307,0.027323894,-0.23956758,-0.483486,-0.5413663,-0.48323536,-0.73201096,-0.8869864,-0.9081652,-0.85009885,-0.8217598,-0.71986806,-0.8553473,-1.015355,-1.161008,-1.247102,-1.2622333,-1.1881354,-1.1024454,-0.8398553,-0.70366716,-0.89885247,-1.0774038,-1.1954775,-1.2258594,-1.2567475,-1.2700016,-1.300754,-1.2748966,-0.3931821,-0.12097102,0.01909826,0.25318372,0.04142279,-0.077005915,-0.24966288,-0.35904986,-0.28403792,-0.42119217,-0.4787125,-0.6413877,-0.77450293,-0.7947587,-0.83572197,-0.72074604,-0.10247376,-0.15261823,-0.32077616,-0.45741868,-0.5473631,-0.64992595,-0.7181516,-0.7456405,-0.7890372,-0.7771165,-0.43615472,-0.5115644,-0.560521,-0.71585774,-0.7459607,-0.8045089,-0.894763,-0.92978597,-0.94655573,-0.9239017,-0.9384849,-0.95738804,-0.97407687,-0.9435756,-0.96459174,-0.994396,-0.9907789,-0.97976387,-0.66477096,-0.16526046,-0.70153505,-0.59971964,-0.4114136,-0.17374763,-0.3425976,-0.33738047,-0.49342364,-0.50268793,-0.5076618,-0.36416033,-0.40639544,-0.33687752,-0.44532424,-0.67392516,-0.59892595,-0.6275636,-0.5614303,-0.9060174,-1.053431,-1.0732272,-1.0529706,-0.876838,-0.91347826,-0.9569447,-0.98455954,-1.0419319,-0.9064164,-0.88489497,-1.078852,-1.1311556,-1.0267746,-0.7302966,-0.64525163,-0.85242414,-0.74254715,-0.8317085,-0.60773367,-0.9696963,-0.9128467,-0.7055962,-0.85658145,-0.7215122,-0.6941534,-0.790017,-0.9037014,-1.0087092,-1.0538132,-1.0271809,-1.0881811,-1.0352061,-0.99175453,-0.84356725,-0.8314957,-0.97635007,-1.0307921,-0.9464903,-0.94013655,-0.8754858,-0.8200337,-0.8948511,-0.7479827,-0.7438023,-0.7296877,-0.56697845,-0.7686927,-0.7279497,-0.7196673,-0.779819,-0.88982236,-0.8259289,-0.5866493,-0.440284,-0.40040404,-0.44385463,-0.69808674,-0.89204127,-0.92385364,-0.77119684,-0.8245083,-0.58617795,-0.8503244,-0.88635814,-0.82438546,-0.008671217,0.40334207,-0.17167857,-0.5065597,-0.398233,-0.32361662,0.13714811,0.35795054,0.27671155,0.34403273,0.35387653,0.32828948,0.34840328,-0.093980186,-0.54888904,-0.7795747,-0.8140968,-0.8013822,-0.58678234,-0.74339455,-0.7420412,-0.6846357,-0.47268218,-0.25417888,-0.011949919,-0.2718456,-0.5579531,-0.7515894,-0.86209595,-0.7548063,-0.7501634,-0.9462278,-0.7898126,-0.5602081,-0.16780978,-0.03636398,-0.28065303,-0.18526226,-0.22747469,-0.51849824,-0.33856496,-0.10383705,0.00878758,-0.22708085,-0.14581183,-0.17575625,0.06268067,0.3821382,0.3550069,0.3673008
+-1.1040237,-1.365866,-1.4043045,-1.50808,-1.5480639,-1.5641356,-1.5864863,-1.6157949,-1.620625,-1.655909,-1.5193518,-1.5341942,-1.6415156,-1.7091327,-1.6752944,0.040527396,0.3305386,-0.23971707,-0.62926936,-0.72797847,-0.863871,-1.122824,-1.2548573,-1.3519106,-1.4199022,-1.1471283,-0.25204116,-0.7546467,-0.9593208,-0.23159951,-0.47693735,-0.8468616,-1.0436869,-1.2129467,-1.3434463,-1.4731612,-1.5776302,-0.7332181,-0.80395496,-0.7125515,-0.8572036,-1.1874107,-1.3707981,-1.406044,-1.4471062,-1.4172702,-1.3676645,-1.5046364,-1.5509543,-1.5799564,-1.6258396,-1.6413304,-1.2732966,-1.4173127,-0.7945983,-1.1121707,-0.20502126,-0.578055,-0.91976,-1.0049155,-0.91951096,-1.1301414,-1.3839464,-1.5423923,-1.6448417,-1.7245808,-1.7655165,-1.7540939,-1.80666,-1.7655516,-1.7237284,-1.8178141,-1.1542847,-0.6705997,0.055175677,-0.96685934,-1.3695071,-1.457365,-0.7747382,-1.2417052,-1.4797461,-1.6294048,-1.6884865,-1.7458203,-1.8046916,-1.7811368,-1.793721,-0.87847483,-1.1597847,-0.6328187,-0.434546,-0.8771013,-0.69800144,-0.9020492,-1.2617955,-1.4702375,-1.5879358,-0.669017,-0.97057366,-1.3497186,-1.56376,-1.6400174,-1.7088068,-1.7492931,-1.7803907,-1.056761,-1.2004337,-1.4785957,-1.6054242,-0.8467609,-1.3133411,-1.546447,-1.4766104,-0.70289457,-1.2847009,-1.4904273,-1.6527011,-1.0584695,-0.5518267,-0.97283137,-1.316453,-1.3686339,-1.3264638,-1.4160697,-1.6009219,-1.653487,-1.7182204,-1.7414701,-1.4662788,-1.4622531,-1.5575116,-1.7041466,-1.7032521,-0.6032591,-1.1406496,-1.4259081,-1.605495,-1.6012778,-1.558917,-1.7284119,-1.1941599,-1.0219716,-1.3591878,-1.6078575,-1.7005875,-1.7429432,-1.7747743,-1.4656191,-1.3564584,-1.6128893,-1.6982852,-1.7292032,-1.751481,-1.7917323,-1.8356934,-1.8368325,-1.8082919,-1.1375649,-0.9100896,-1.0701189,-1.2859131,-1.4368926,-1.4839301,-1.638287,-1.6704828,-1.6283245,-1.636894,-1.4180307,-1.1061177,-1.3026042,-1.4598477,-1.523831,-1.6730928,-1.7028165,-1.6872773,-1.7558932,-1.6049631,-1.389456,-1.5151803,-1.6165094,-1.6792657,-1.7042916,-1.7233177,-1.7521133,-1.7540777,-1.7850924,-0.37036014,-0.5705421,-0.67046463,-0.6047547,-0.83007395,-0.9657023,-1.0495744,-1.1388044,-1.1548402,-1.2327815,-1.2586534,-1.3164463,-1.4097927,-1.4546719,-1.4353034,-1.2807739,-0.88730234,-1.0901276,-1.1779053,-1.2598624,-1.3495309,-1.3769186,-1.3897874,-1.4443192,-1.4749556,-1.5187695,-1.5584246,-1.5553808,-1.4966958,-1.5749528,-1.5377665,-1.5212833,-1.5454304,-1.5343709,-1.5348243,-1.49453,-1.5119317,-1.4605486,-1.4983306,-1.4965671,-1.4222412,-1.4375126,-1.4328265,-1.475929,-1.4759674,-0.90047973,-1.4523411,-1.2333953,-1.0777122,-1.0203211,-1.1085111,-1.1898916,-1.2070799,-1.2019879,-1.1933081,-1.0871933,-1.199692,-1.285806,-1.4306151,-1.4523528,-1.3799739,-1.361451,-1.270417,-1.4917527,-1.5605435,-1.7173288,-1.6212134,-1.4085283,-1.3603921,-1.456491,-1.5131893,-1.5548,-1.4647225,-1.4105506,-1.7609487,-1.8609052,-1.6432797,-1.3608809,-1.3140631,-1.4675121,-1.3592504,-1.4538745,-1.154359,-1.5875721,-1.3323351,-1.2462885,-1.4380913,-1.3084335,-1.2812378,-1.3802826,-1.4167231,-1.7251556,-1.532852,-1.7499797,-1.7625765,-1.6777556,-1.5381975,-1.177721,-1.1070948,-1.3198925,-1.4787064,-1.3351545,-1.2164544,-1.104907,-0.67758244,-1.333348,-1.1693211,-1.1200808,-1.0824653,-0.8980632,-1.1336733,-1.1135085,-1.0641041,-1.2124288,-1.4209298,-1.3829533,-1.2180805,-1.1496009,-1.1305678,-1.0150743,-1.1754253,-1.4976006,-1.3179374,-1.1949191,-1.1209756,-0.9141166,-1.0667081,-1.4068799,-1.2252707,-0.779246,-0.77408797,-1.1037922,-1.1906035,-1.181149,-1.1742117,-1.0945458,-1.096924,-1.1961565,-1.2865629,-1.1823103,-1.1938733,-1.2400396,-1.1402807,-1.1514138,-1.4606841,-1.3350013,-1.2375747,-1.1775705,-1.2530911,-1.2218242,-1.1920238,-1.1522607,-1.1490221,-1.2105942,-1.4041051,-1.4174037,-1.3697542,-1.4871927,-1.393207,-1.3674779,-1.4473987,-1.4283901,-1.333501,-1.3122859,-1.3601397,-1.3954234,-1.4247993,-1.4523958,-1.5063963,-1.504145,-1.5183914,-0.3215931,-0.8119618,-1.016614,-1.0898647,-0.88846964,-0.42439353,-0.9386642,-1.1257696
+-0.7258357,-0.6485527,-0.57524645,-0.6907183,-0.82498807,-0.7735648,-0.9355792,-1.0108268,-1.0822648,-1.2972453,-1.2298727,-1.1968249,-1.2867517,-1.3106257,-1.2263393,1.571162,1.8462168,1.5374801,1.2073547,0.87764394,0.7574384,0.34106556,0.15354034,-0.10638008,-0.39059672,-0.56231105,0.37318966,0.3191639,0.12252575,0.4418098,0.53549635,0.3771393,0.23459908,0.1401805,-0.09296968,-0.24005193,-0.43913674,-0.6110654,-0.51868117,-0.5927285,0.08211447,-0.15705025,-0.41646516,-0.4690144,-0.5424435,-0.21106184,0.09103691,-0.07607893,-0.14005432,-0.24048886,-0.31885624,-0.43676662,-0.3755051,-0.4617331,-0.46920604,-0.5012561,0.52194136,0.39345276,0.17482719,-0.01045762,0.32015148,0.06890792,-0.20280388,-0.47649753,-0.7176175,-0.99979734,-1.1731412,-1.2272735,-1.3587043,-1.3777065,-1.4239179,-1.4692317,-1.3741844,-0.6730325,-0.8124614,-1.0962278,-1.3190744,-0.36673546,0.807634,0.08535854,-0.23713198,-0.56970304,-0.8131352,-1.0415127,-1.1093181,-1.2040336,-1.2610563,-1.3807503,-0.66935,-0.24221158,-0.73285186,-0.9678526,-0.36218077,-0.6126697,-0.875871,-1.1463095,-1.3069844,-0.14604998,-0.6547753,-0.89492285,-1.1448468,-1.2620121,-1.3088807,-0.7115959,-0.84980655,-0.9764528,-1.0963913,-1.2983658,-1.410889,-1.003842,-1.0431631,-1.3174516,-1.416784,-0.9708189,-1.1874487,-1.1656129,-1.3489354,-1.3676953,0.046309706,-0.03204111,-0.47822654,-0.7918015,-1.0725675,-1.2698867,-1.3784169,-1.4103348,-1.5075737,-1.3521788,-0.58242345,-0.98490644,-1.2370462,-1.3994128,-1.4708545,-0.87186176,-0.85193115,-0.79833984,-1.0449512,-1.1855702,-1.3129156,-1.4499791,-0.8171174,-0.6928059,-1.006644,-1.2574501,-1.0302794,-1.1691709,-1.2371142,-0.83702517,0.33566537,-0.3174505,-0.2927066,-0.34316838,-0.26542866,-0.5008892,-0.6837313,-0.8426718,0.45985225,-0.03095036,-0.18381047,-0.37890455,-0.5931463,-0.7686192,-0.8372369,-0.9997964,-1.1927042,-1.1772852,-1.1642046,-1.3399775,-0.5652974,-0.18426704,-0.06248226,-0.32323194,-0.68096423,-0.9492248,-1.0596354,-1.1669426,-1.0667328,-0.9871583,-1.187368,-1.3537319,-1.4227335,-1.4223869,-1.470463,-1.4893479,-1.4530122,-1.4915578,-1.0257902,-1.0831559,-1.2754585,-1.1569178,-1.2670366,-1.3565135,-1.4243076,-1.3671741,-0.84641075,-0.77086437,-0.8876029,-1.0297945,-1.1082411,-1.2062161,-1.2150102,-1.3029604,-1.257889,-1.268287,-1.3533585,-1.3913109,-1.3748972,-1.4572427,-1.4192815,-1.3973567,-1.4206048,-1.4086028,-1.396222,-1.4095137,-1.3891569,-1.4346101,-1.4180441,-1.3790615,-1.3852386,-1.4163585,-1.3415129,-1.3258038,-1.2913052,-1.3164964,-1.3668071,-1.3016512,-1.3390965,-1.387168,-1.356242,-1.3446176,-1.3732867,-0.66316855,-1.000864,-0.8987776,-0.7236809,-0.43764699,-0.2113221,-0.40349013,-0.46096182,-0.52138245,-0.4411049,-0.31044334,-0.5152008,-0.4693967,-0.7808356,-0.8055308,-0.7610458,-0.8276804,-0.79413074,-1.005258,-1.0290996,-1.2400099,-1.1856421,-1.096931,-0.9896922,-1.1177948,-1.1142948,-1.172833,-1.2006605,-1.1313399,-1.2657905,-1.3117105,-1.2461962,-1.1097487,-0.96000147,-1.0792948,-0.9419733,-1.1265508,-0.9159262,-0.8682805,-0.91011107,-0.7542869,-0.91391206,-0.8814435,-0.81574154,-0.9345064,-0.9034215,-1.1222663,-1.1436226,-1.1353953,-1.2796614,-1.2066764,-1.0816541,-0.9141903,-0.7264354,-0.8946498,-1.0792135,-1.0476859,-1.0550747,-0.79957116,-0.59735113,-0.7347781,-0.73203814,-0.58709836,-0.45954418,-0.32945442,-0.3468355,-0.55177975,-0.6637099,-0.6848786,-0.8865178,-0.95186067,-0.75807214,-0.5544227,-0.4606887,-0.49306822,-0.6977597,-1.0703381,-1.0591009,-1.0487883,-0.76063454,-0.62467384,-0.5520287,-0.96165144,-1.0613265,-0.7109927,-0.69091,-0.64766234,-0.8706107,-0.8003483,-0.7926818,-0.71008563,-0.68077916,-0.6780988,-0.6741556,-0.7131392,-0.6131481,-0.60076475,-0.7650372,-0.91784656,-1.1904984,-1.157753,-1.1451818,-0.9781537,-1.0458976,-1.1019862,-1.044522,-0.8669659,-0.8241881,-0.74186593,-0.77832144,-0.78385514,-0.76950544,-0.9136331,-1.0841844,-1.0283607,-0.9838824,-1.146849,-1.0960277,-0.90815043,-0.9060757,-0.88546646,-1.0147736,-0.9536023,-0.9869875,-1.0494616,-1.1294799,0.51052874,0.6283986,0.3858366,0.34272635,0.4303297,0.51788,0.5463833,0.47057486
+-0.8508519,-0.92203546,-1.031393,-1.1952915,-1.3297673,-1.1885592,-1.3447808,-1.3887411,-1.4483953,-1.5093129,-1.2250086,-1.0516562,-1.2432224,-1.3687817,-1.422527,0.8950997,1.353838,0.9781367,0.70713985,0.6234658,0.4900397,0.037150837,-0.21213904,-0.42023218,-0.6613303,-0.9376161,-0.39327133,-0.5748493,0.84464544,0.9340403,0.6936143,0.49080762,0.2159746,-0.063934945,-0.4239332,-0.6300309,-0.8362395,-0.6412841,-0.6589064,-0.9230424,-0.45785898,-0.3973712,-0.73181206,-0.86569154,-0.9838538,-0.7430299,-0.024795167,-0.08318535,-0.18129039,-0.21078476,-0.46812558,-0.063423015,0.056981094,-0.28680062,-0.656284,-0.9488225,0.030604757,0.7976095,0.16531566,0.14846507,0.42837226,-0.009177543,-0.4087308,-0.74788564,-0.9440658,-1.1419443,-1.2872653,-1.3330773,-1.4781275,-1.4836342,-1.2426647,-1.2465587,-1.4152257,0.549748,0.21854836,-0.51573163,-0.9190637,-1.0933917,-0.6770519,-0.8543489,-1.118469,-1.3005304,-1.3050433,-1.3423449,-1.425292,-1.4567996,-1.3653886,-1.1835854,-0.92420673,-0.020993464,-0.6660428,0.39342684,0.5284654,0.16269282,-0.27157223,-0.7743736,-0.5632753,-0.65143585,0.0037838593,-0.43809736,-0.87362856,-1.1625812,-0.92751753,-0.90024257,-0.80595964,-0.994107,-1.1731058,-1.3524994,-1.3931898,-1.4637903,-1.4754556,-1.4662075,-1.4194298,-1.4288744,-1.1870661,0.4413067,-0.24781221,-0.49152654,0.120886184,0.15347713,-0.3499276,-0.7890455,-1.0705533,-1.100817,-0.8521969,-0.9288027,-0.7204034,-0.6144938,0.75982094,0.30329767,-0.2897805,-0.6543957,-0.9422412,-0.6325224,-0.80401456,-0.915087,-1.0005566,-1.2106082,-1.2802993,-1.3587122,-0.8326123,-0.5887158,-1.0496562,-1.2776731,-1.3690008,-1.3213322,-0.44665188,-0.4782434,-0.31517768,-0.5453334,-0.5598887,-0.34767616,-0.34721896,-0.30530944,-0.5733622,0.28588262,0.38632363,0.6363169,0.27314067,0.256477,0.13872084,-0.1011238,-0.15470684,-0.52348226,-0.76646286,-0.12795973,0.018361785,-0.28986457,-0.3801356,-0.5184566,-0.42827398,-0.5920135,-0.9053997,-1.0333972,-1.138875,-1.2178142,-0.86677265,-0.64506423,-0.91368675,-1.099091,-1.1849363,-1.2784798,-1.3269286,-1.3669958,-1.406974,-1.4431562,-1.3684188,-1.221511,-1.3775961,-1.2725742,-1.3573208,-1.4222312,-1.4428436,-1.3683357,-1.3047733,-1.3510158,-1.4109857,-1.4058237,-1.3801184,-1.2509898,-1.2632852,-1.3031042,-1.3572809,-1.3588762,-1.3629603,-1.3229402,-1.3785076,-1.4359844,-1.3424537,-1.4023149,-1.3775237,-1.3400528,-1.3783052,-1.4035563,-1.2770456,-1.3896601,-1.3727282,-1.3358823,-1.3620229,-1.3142737,-1.2867553,-1.2620771,-1.194939,-1.1692672,-1.1994597,-1.173917,-1.2093729,-1.2244163,-1.1516149,-1.2001897,-1.1777447,-0.94940865,-1.1022536,-1.0823923,-1.0650512,-1.129436,-1.0003328,-1.0392987,-1.0406694,-1.0619135,-1.1154712,-0.9444319,-1.0028276,-1.0170634,-1.1061722,-1.1177633,-1.0621984,-1.0744064,-1.0940757,-1.1508238,-1.1238827,-1.1659133,-1.1744965,-1.1154773,-1.07791,-1.1211983,-1.1567472,-1.1949996,-1.1838534,-1.1301844,-1.2445554,-1.3552755,-1.2940313,-1.1714036,-1.1063688,-1.1059949,-1.0104985,-1.1039381,-0.76504815,-0.869323,-0.9998106,-0.93900466,-1.0024467,-1.0202302,-1.0353417,-1.0555294,-1.0291705,-1.1473393,-1.2275672,-1.2171118,-1.3377708,-1.2876861,-1.1848333,-1.0274702,-0.90221363,-0.9459028,-1.1358023,-1.1587924,-1.0560853,-0.68618065,-0.42946428,-0.3346664,-0.40515393,-0.11817183,-0.16965908,-0.1155395,-0.08886611,-0.36771736,-0.33248717,-0.69417405,-0.92742574,-0.9988413,-0.864442,-0.69489187,-0.6223652,-0.68210566,-0.81703454,-1.0300407,-1.0840626,-1.0083898,-0.83811843,-0.807538,-0.70370555,-0.90021586,-1.0207247,-0.79620725,-0.7588868,-0.7589442,-0.7805722,-0.6691381,-0.748785,-0.7382963,-0.7395814,-0.7660574,-0.8332825,-0.77916664,-0.6818792,-0.6616496,-0.7991645,-0.89191157,-1.0761708,-1.0742857,-1.045799,-0.9468603,-0.9404613,-1.0628042,-1.0827153,-1.023582,-1.0118127,-0.9530004,-0.98693454,-1.1141889,-1.0955315,-1.1325984,-1.1571548,-1.1443093,-1.1109767,-1.1598148,-1.1585779,-1.1258445,-1.1708996,-1.2584455,-1.3463266,-1.2011914,-1.2703674,-1.256356,-1.394622,-0.6700302,-0.11232676,-0.3064656,-0.08552032,0.5811614,0.91508865,0.6944606,0.48604912
+-1.3549243,-1.5444043,-1.5466411,-1.5268531,-1.5356541,-1.5321784,-1.6003976,-1.5942249,-1.6405029,-1.5775689,-0.07967738,0.19942299,-0.19246611,-0.43265426,-0.5127337,1.0943403,1.0860711,0.8843097,0.76191753,0.8416084,0.61847115,0.33606943,0.0150138065,-0.30444896,-0.6639521,-0.90838087,-1.122199,-1.3479605,0.8708417,0.6694899,0.51197153,0.40282708,0.08529017,-0.30086088,-0.68021077,-0.96773744,-1.2048897,-1.2478294,-1.0764091,-1.1739306,-1.3346715,-1.0464137,-1.288807,-1.4268621,-1.4741912,-0.7652211,0.12944502,-0.021972083,-0.21412247,-0.40136647,-0.787055,-1.0138587,-1.1096101,-1.2474678,-1.3875229,-1.4411371,-1.3843542,-1.4779936,-1.6138443,-1.5513479,0.25164363,-0.051121883,-0.55830026,-0.88469887,-1.1421723,-1.3094208,-1.4277829,-1.1153177,-1.2893183,-1.4545038,0.7994026,-0.1535537,-0.61497676,0.8216231,1.0855091,0.1624619,-0.35448292,-0.41440248,0.06314735,-0.4144094,-0.8247671,-1.1190685,-1.2572641,-1.1287986,0.1370695,-0.37125722,0.76081395,0.07076468,-0.3463194,0.77848744,0.6935915,0.9850018,1.1525438,1.098912,0.6118237,0.022282638,-0.47781777,-0.88213885,-0.9894705,-1.1489751,-1.3012347,-1.3769791,-1.3206767,-1.3786693,-1.1965582,-0.2982978,0.3945849,-0.4817133,-0.95252395,-1.1786909,-1.3329302,-1.3980346,-1.2289467,-1.2412205,-1.102191,0.39171696,-0.34983522,-0.62090456,-0.49867576,0.29008162,-0.31662193,-0.8162483,-1.1162739,-1.2265565,-1.2978865,-1.073184,0.018559508,0.13133252,0.030361377,-0.19552028,-0.071444295,0.2168405,-0.06670999,-0.13224986,-0.5611583,-0.89475334,-1.10887,-1.2452917,-1.3450837,-1.3676237,-1.3770349,-1.3772264,-1.48597,-1.5422502,-1.5132636,-1.3506457,0.14060059,-0.27919558,-0.56895196,-0.5012076,0.19490969,0.3270382,0.12415359,0.016486205,-0.073225535,-0.4381994,-0.7446586,-0.9575331,-1.0793972,-0.5079729,-0.08383066,-0.33795765,-0.66384053,-0.98172283,-1.0925338,-0.7730198,-0.75898504,-1.0436687,-1.066953,-1.1553518,-1.2264099,-1.3056474,-1.3457265,-1.3630505,-1.3810806,-1.354534,-1.2989273,-1.3044152,-1.4165497,-1.4406683,-1.4285431,-1.4254442,-1.4456575,-1.330269,-0.89556944,-0.7534467,-0.7907902,-1.0759343,-1.2689621,-1.309047,-1.3680193,-1.0661862,-0.70690006,-0.8551765,-1.0481062,-1.1390176,-1.1751277,-1.2696888,-1.2499878,-1.2902391,-1.3223524,-1.384218,-1.3883748,-1.4274051,-1.4360482,-1.3852084,-1.3629633,-1.3936667,-1.3168492,-1.3325243,-1.393795,-1.3378451,-1.3246343,-1.4071307,-1.3251077,-1.3526454,-1.3089874,-1.3365241,-1.3726138,-1.1358976,-0.680148,-0.8163307,-0.9704335,-1.0732512,-1.1399151,-1.173973,-1.228874,-1.2498622,-1.2258888,-1.2837411,-1.2701725,-1.1714368,-1.2193213,-1.2638392,-1.3056031,-1.2942684,-1.2265661,-1.2197756,-1.2195938,-1.2331047,-1.3271804,-1.1616056,-1.2292941,-1.2572083,-1.2398801,-1.1824603,-1.2012904,-0.94507325,-1.0113568,-1.062564,-1.096775,-1.222284,-1.2399681,-1.1965668,-1.073888,-1.1521226,-1.1526285,-1.2548536,-1.2961683,-1.1757739,-1.2074742,-1.3971431,-1.3171942,-1.2561814,-1.1395485,-1.0917758,-1.1216731,-0.81454885,-0.39363688,-0.5341341,-0.8356234,-0.76762617,-0.86543095,-1.0108595,-0.95903575,-1.0479496,-0.9177345,-1.0479679,-1.2842185,-1.2906804,-1.3284161,-1.4103982,-1.2854577,-1.1590396,-0.9782243,-0.9168217,-0.8956723,-1.1539679,-1.0873852,-0.1464012,-0.07399487,0.03058771,0.046885543,0.16016142,0.18959743,0.11347652,0.22898385,0.21765584,0.29333335,-0.13267127,-0.73857486,-0.919459,-0.8299702,-0.62824583,-0.51744986,-0.49930704,-0.63260055,-1.0468693,-1.1863731,-1.0956528,-0.83908266,-0.8127219,-0.7786703,-0.8185793,-0.95823956,-0.9104314,-0.81076753,-0.89608824,-1.0501575,-0.89723086,-0.9629226,-1.0786309,-1.0920094,-1.1292601,-1.2238331,-1.1764126,-1.2136114,-1.2550809,-1.2829098,-1.3032037,-1.3841534,-1.4265189,-1.4188471,-1.4459037,-1.4642509,-1.4773965,-1.4947166,-1.5469869,-1.5693921,-1.5562984,-1.5016153,-1.5841044,-1.5495758,-1.541103,-1.4920539,-1.5081987,-1.5743587,-1.56991,-1.5682919,-1.6068909,-1.5603299,-1.5391909,-1.5749899,-1.455917,-1.5383315,-1.5513908,-1.585431,-0.60949737,-0.21448272,-0.62373686,-0.8343868,0.5586135,0.99165404,0.70714533,0.6027466
+-1.0393037,-1.0876374,-1.1002605,-1.1687582,-1.2604918,-1.2707365,-1.3652352,-1.3658242,-1.4186703,-1.3968468,-1.2908727,-1.1637834,-1.2418027,-1.2996448,-1.3788062,-0.9777498,0.42202148,0.14972499,0.1799016,0.26530161,-0.056268044,-0.34665945,-0.6204814,-0.88384956,-1.0141366,-1.1018888,-1.0550339,-1.229953,1.1107842,0.9067756,0.6855027,0.55473155,0.2793422,0.0085307285,-0.3203121,-0.57222545,-0.80806124,-0.9590162,-1.0688044,-1.1959853,-1.230089,0.2186986,-0.20622215,0.45950848,0.4431857,0.84858376,0.79173076,0.74299073,0.6282859,0.635604,0.21072373,0.042603187,0.052650705,-0.300924,-0.6704066,-0.9299264,-1.0129483,-1.1295912,-0.2670316,0.14449294,-0.043451287,0.23679775,0.42151487,0.064101525,-0.37514794,-0.69683987,-0.9113834,-0.7483396,-0.9155588,-1.2140527,-0.024096288,-0.49314547,-0.8828801,-0.6802479,0.6426469,-0.12583196,-0.61254287,-0.88270926,-1.0611778,-1.1706634,-1.2305254,-1.2613871,-1.2966707,-1.3191843,-1.1775317,-1.1982965,-1.2986767,-1.2599232,-1.0943987,-0.3572134,0.0764702,0.081678055,-0.38982356,-0.6294258,-0.9263456,-0.9364288,-1.0943594,-1.2620267,-1.1360052,-1.006546,-1.2315308,-1.3117566,-1.2926539,-1.3084326,-1.3065375,-1.2347114,0.2425184,-0.5951339,-0.90192413,-1.0646732,-1.2015288,-1.2743757,-1.299774,-1.3079602,-1.2931767,-0.7139504,-0.9196037,-1.0456988,-0.10834751,-0.5225339,-0.7795731,-1.0168862,-1.1961554,-1.1029458,-1.0256569,-1.0523894,-0.23733139,-0.57735443,-0.4214322,-0.18282634,-0.161713,-0.52375275,-0.7139831,-0.2001183,-0.51912385,-0.7512768,-0.89978415,-1.0706409,-1.176636,-1.2451085,-1.1776376,0.22992635,-0.31188595,-0.65281695,-0.94666886,-1.0422628,-0.96484876,-1.1207055,-0.4896207,0.059759147,0.49471992,0.63345444,0.6598502,0.585653,0.44954103,0.21414669,-0.13581043,-0.4241022,-0.65028214,0.07549409,0.10968656,-0.12626606,0.014358468,-0.17309162,-0.52373546,-0.597666,-0.48191756,-0.2805475,-0.4295941,-0.5604974,0.1374608,0.038522236,-0.38724777,-0.63442194,-0.776247,-0.8924608,-0.9645107,-0.7167825,-0.80909,-0.9774151,-1.0901469,-1.1335969,-1.1542013,-1.2183897,-1.2528206,-1.2754925,-1.247257,-1.1648778,-1.2620031,-1.2128558,-1.2311463,-1.1907665,-0.5753475,-0.6539926,-0.82330245,-0.7460846,-0.8310043,-0.975245,-1.02391,-1.1434476,-1.1874039,-1.2195885,-1.2173488,-1.1842508,-1.2334838,-1.2283313,-1.2380657,-1.2733443,-1.1677628,-1.158628,-1.2096382,-1.1864889,-1.1979012,-1.2364422,-1.1683792,-1.2324116,-1.1432874,-1.1378193,-1.1856477,-0.85962594,-0.2680145,-0.3920482,-0.45249116,-0.5129183,-0.6298007,-0.6541368,-0.72907877,-0.8180441,-0.85649955,-0.94022715,-0.99888945,-1.0051472,-1.0650893,-1.0393057,-1.0908597,-1.1370468,-1.0142021,-0.9809027,-1.0312848,-1.0141829,-1.0789247,-0.96729624,-1.087018,-1.103074,-1.1047175,-1.0919806,-0.6785977,-0.36350212,-0.43830395,-0.5674355,-0.7207406,-0.8081595,-0.87749064,-0.8176589,-0.6006683,-0.7497152,-0.7889818,-0.90978503,-0.96806335,-0.67898744,-0.7246273,-1.1460987,-1.1217928,-1.0179809,-0.8198712,-0.7527216,-0.7611731,-0.58693856,-0.6419211,-0.57789,-0.7222032,-0.588179,-0.72284925,-0.87375146,-0.7371827,-0.78841627,-0.681597,-0.75244206,-0.99099874,-1.0971383,-1.0959384,-1.1851268,-1.0847468,-0.86520654,-0.6521163,-0.61431664,-0.60139704,-0.8575573,-0.34534574,0.2958587,0.20085776,0.23165074,0.3082066,0.28959042,0.3512703,0.2540824,0.3836147,0.44180867,0.5094321,-0.038935713,-0.48077232,-0.5884788,-0.58048403,-0.3329938,-0.19389889,-0.18375498,-0.22390357,-0.69205445,-0.86382055,-0.78248626,-0.43602037,-0.37156922,-0.32347807,-0.4069996,-0.46147907,-0.41524822,-0.40143716,-0.5093531,-0.52933,-0.04131227,-0.17185473,-0.21129835,-0.19099998,-0.2743292,-0.33889982,-0.40465665,-0.4578886,-0.56283677,-0.6537132,-0.8036228,-0.9872899,-0.93504095,-0.88694775,-0.87186384,-0.9542948,-1.0428268,-1.0492829,-1.0452496,-1.1131572,-1.106626,-1.1063772,-1.1400857,-1.1356921,-1.133493,-1.1201175,-1.1183385,-1.1273565,-1.1665795,-1.1442746,-1.2212231,-1.176327,-1.218371,-1.2616078,-1.1693687,-1.2195476,-1.2480128,-1.3451061,-0.6707699,-0.3197627,-0.55554813,-0.7044649,0.5293333,0.78535914,0.7987674,0.7128155
+-1.2593694,-1.2165408,-1.2829068,-1.3085773,-1.2973481,-1.2697492,-1.3155195,-1.3002216,-1.3479195,-1.3716109,-0.25075054,-0.2507488,0.011288412,-0.24253327,-0.41633332,0.03415113,0.1421333,0.06328765,0.23488736,0.338092,0.5114325,0.21955383,-0.042297624,-0.3450447,-0.5824046,-0.8077627,-0.9142921,-0.75013834,0.03412474,-0.22484487,-0.46317214,-0.48058927,-0.77360356,-0.9193404,-1.0437953,-1.1056594,-1.1592252,-1.197866,-1.1458633,-1.2504383,-1.2887542,-1.0951476,-1.2068996,-0.8860097,-0.07826301,-0.085951455,0.34463382,0.25585717,0.5349212,0.33243635,0.11095775,0.030426271,0.7654151,0.8393197,0.45318797,0.037624516,-0.21798435,-0.53640413,0.25989887,0.99801004,0.44663963,0.53442407,0.9010666,0.77866745,0.47039834,0.07328547,-0.34193063,-0.65465593,-0.8673185,-1.0470788,-1.0957078,-1.0010743,-0.9931793,-1.1263906,-0.8916557,-0.09306493,0.84705174,0.21358883,-0.08812957,0.64904857,0.2558944,-0.10451274,-0.4496566,-0.75649714,-0.9424107,-1.0549244,-1.1204206,-1.1274779,-1.1634421,-0.5960769,-0.24750912,-0.68185604,-0.916643,-0.9612255,-0.8213953,-0.6887524,-0.9305639,-0.48569006,-0.5763184,-0.8183145,-0.99789274,-1.1252382,-1.1837779,-1.2164156,-0.65054494,-0.30804735,0.5131717,-0.31720567,-0.6172532,-0.83582217,-1.0087721,-1.1121907,-1.1604272,-1.195435,-1.2229772,-0.7710881,-0.5962272,-0.8880498,-1.049186,-1.1446261,-0.4767965,-0.77036923,-1.0254195,-1.1299734,-1.198628,-1.2232108,-1.2314354,-1.2289606,-1.2249718,-1.0098852,-0.22504345,-0.6380901,-0.88629293,-0.66501784,-0.8192387,-1.0499872,-1.0903409,-1.156923,-1.1929089,-1.251091,-1.2555026,0.41116518,-0.049139313,-0.32371438,-0.6226373,-0.15755397,0.08576945,-0.010100804,-0.15975356,-0.23913348,0.20586151,0.4175737,0.48431385,0.44865984,0.41888237,0.41866356,0.20688778,-0.058103792,-0.32986894,-0.08686193,-0.08128107,-0.34687322,-0.48208034,-0.65593475,-0.83717614,-0.35301337,-0.10001918,-0.018799536,0.22797713,0.251339,0.16969377,-0.06771318,-0.31258953,-0.53805614,-0.68570334,-0.8299054,-0.8984175,-0.7936464,-0.79480577,-0.9453186,-1.0159912,-1.0916156,-1.1023761,-1.1442909,-1.1864204,-1.2043016,-1.2046136,-1.0795587,-1.2457547,-1.1777813,-1.2202538,-1.2170005,-1.0123482,-1.1448967,-1.175392,-0.23755527,-0.025892965,-0.26909256,-0.40500766,-0.58774495,-0.730124,-0.91086626,-0.965837,-0.99666727,-1.0293033,-1.0743799,-1.1172602,-1.1588571,-1.0978494,-1.1149163,-1.119855,-1.1157243,-1.1248527,-1.1530204,-1.1319091,-1.0952438,-0.18200111,-0.24583977,-0.38902545,-0.280247,0.41338646,0.3818878,0.34211445,0.20164591,0.08177102,0.02410321,-0.11150607,-0.2241629,-0.27650648,-0.4069661,-0.51512295,-0.5122082,-0.6765985,-0.7019451,-0.7919642,-0.7817565,-0.7425524,-0.8280157,-0.7989143,-0.90182126,-0.8908031,-0.7597517,-0.8019259,-0.8664154,-0.9160416,-0.79890406,0.50721556,0.2745892,0.29308647,0.2430582,-0.024777122,-0.23229963,-0.40251744,-0.30988958,-0.07201918,-0.08235755,-0.117158644,-0.32192537,-0.5408665,-0.2864455,-0.2553661,-0.86025554,-1.0037794,-0.8191736,-0.5503465,-0.52254754,-0.53163135,-0.45245475,-0.42123944,-0.30241376,-0.42508298,-0.46258116,-0.4913674,-0.62795687,-0.5798482,-0.5808207,-0.37874892,-0.12400969,-0.44705343,-0.7257723,-0.8044475,-1.0119861,-0.9472785,-0.6550243,-0.35188693,-0.2857276,-0.2969858,-0.3232337,-0.08542683,0.50036216,0.3867556,0.4650063,0.33696616,0.40805906,0.49311882,0.32034543,0.1980587,0.06276796,0.031577,-0.13608003,-0.42225415,-0.530193,-0.5723017,-0.40412468,-0.35349602,-0.39276195,-0.43790746,-0.5975872,-0.78868425,-0.71046424,-0.634351,-0.54878926,-0.49417353,-0.6243273,-0.65874064,-0.71292883,-0.6780015,-0.7507485,-0.17289326,0.622868,0.45197943,0.37090397,0.26996246,0.14101365,0.054597847,-0.024756774,-0.09123363,-0.28886163,-0.3776816,-0.49315482,-0.70159906,-0.70412326,-0.73983514,-0.7244764,-0.78473824,-0.8756915,-0.9014081,-0.95690775,-1.0647018,-1.0632687,-0.95046747,-1.014683,-1.13925,-1.0620091,-1.0988519,-1.0656941,-1.0845128,-1.083766,-1.0684036,-1.1677988,-1.1448381,-1.1785545,-1.1828613,-1.126551,-1.1346006,-1.2160547,-1.2859298,-0.9824134,-0.80096745,-1.0036538,-1.0794795,-0.3183123,0.88703847,0.7416259,0.673151
+-0.6098155,-0.46671486,-0.7016218,-0.96732306,-1.1671863,-1.138364,-1.2309858,-1.3320124,-0.3693928,-0.22620973,-0.4273545,-0.35311127,-0.19791341,-0.53607893,-0.8210918,0.030537672,0.26367214,0.14618519,-0.09982895,0.2246531,0.23795414,-0.0035925135,-0.26328424,-0.5642476,-0.7752048,-0.9681499,-1.0415184,-1.2452158,-1.2716715,-1.1958475,-1.3123611,-1.2729053,-1.2766378,-1.2835933,-1.3553522,-1.3836232,-1.4284855,-1.4221315,-1.3518147,-1.4233677,-1.2582091,-0.7607773,-1.0070539,0.18265468,0.14400446,0.04260116,-0.19277829,0.6043776,0.56792617,0.25412083,-0.052211188,-0.12024773,0.048205502,-0.17197931,-0.49194223,-0.8455752,-0.93271625,-1.0540501,-0.3348127,0.48131284,-0.14394423,-0.12853384,0.0087856725,-0.17577529,-0.55013657,-0.8464076,-1.0450537,-1.1330276,-1.2152326,-1.2818875,-1.3220123,-1.32034,-0.35579926,-0.80686116,-1.0768962,-1.239715,-1.1243241,-1.2099414,-1.3122692,-0.3886428,-0.7393042,-1.0447853,-1.2130811,-1.2917035,-1.3079345,-1.3512471,-1.071806,-0.7159064,-1.064352,-1.2031537,-1.3004861,-1.3379276,-1.2756276,-1.1466515,-1.2751611,-1.3902266,-1.4164033,-1.4305512,-1.4304202,-0.69752824,-0.98101556,-1.2370144,-1.344976,-1.4087026,-1.4103845,-1.3728797,-0.88337153,-1.1218847,-1.2481759,-1.3195198,-1.3692348,-1.387531,-1.3772466,-1.3905058,-1.3916004,-1.3670862,-1.1540415,-0.82020056,-0.979326,-1.184649,-1.3361995,-1.143701,-1.2503057,-1.3311799,-1.3781664,-1.3877004,-1.3922381,-1.3889039,-1.3794184,-1.3656511,-0.57633483,-0.46355152,-0.78952754,-0.8671453,-0.95348394,-1.2169956,-1.2892082,-1.3391447,-1.3720022,-1.0845839,-0.6504201,0.16258878,-0.36195186,-0.5033279,-0.78865886,-0.63971907,-0.17058846,-0.4881134,-0.5626744,-0.42196417,-0.29332918,-0.34954783,-0.25332963,-0.08262222,-0.08202916,-0.2210607,-0.5796317,-0.8945781,-1.0745219,-1.1170251,-0.15733528,-0.43383002,-0.30806932,-0.37981105,-0.64968157,-0.70289624,-0.23074985,-0.06902107,0.20832813,0.36445826,0.32998502,0.10000799,-0.1475111,-0.35658616,-0.5222324,-0.705516,-0.64035237,0.24186182,0.38432133,0.09372749,-0.13878235,-0.39051235,-0.55984855,-0.74386245,-0.8892424,-0.9912393,-1.0991658,-1.0133858,-1.1984327,-1.151362,-1.0680321,-1.1788244,-1.0475918,-1.1673893,-1.1643115,-0.64035106,-0.071619414,-0.3359866,-0.56159353,-0.716779,-0.79056454,-0.94137263,-1.015439,-1.0188959,-1.0629913,-1.1306131,-1.1222042,-1.1499903,-1.068858,-1.1511846,-1.1206737,-1.1348704,-1.121051,-1.1506759,-1.1718136,-0.2361328,0.6807434,0.57369757,0.49262577,0.56589216,0.6180497,0.6498792,0.59737283,0.41791323,0.367024,0.3536593,0.20091358,0.088682644,0.024657749,-0.09057299,-0.18792626,-0.26125127,-0.42900926,-0.49525303,-0.5397407,-0.5576229,-0.5635113,-0.6363876,-0.6499865,-0.7466827,-0.7503632,-0.62769294,-0.61788404,-0.70200145,-0.7610396,-0.70351326,0.7132838,0.54869777,0.5018235,0.4709623,0.3006705,0.07647148,-0.14736822,-0.11356541,0.06458045,0.07373423,-0.009380288,-0.057666622,-0.25522316,-0.16309449,-0.06246487,-0.7699506,-0.9593059,-0.7958325,-0.492504,-0.40603495,-0.47096205,-0.44316792,-0.45275062,-0.3503073,-0.42813408,-0.5189531,-0.4875207,-0.54728293,-0.60910237,-0.63359785,-0.50570625,-0.30046642,-0.45014822,-0.65776926,-0.90684557,-1.1333382,-1.0570769,-0.84425473,-0.6665356,-0.61216724,-0.62357295,-0.6029818,-0.6101779,0.63579106,0.5304904,0.48367086,0.50967634,0.5664162,0.637967,0.51078045,0.3052039,0.1064397,0.029952519,-0.11374395,-0.42132837,-0.55492765,-0.6585019,-0.5497469,-0.48526925,-0.51853603,-0.56664455,-0.66009635,-0.80937535,-0.76625896,-0.7317729,-0.6967043,-0.61199206,-0.6995039,-0.77252173,-0.83558095,-0.84068763,-0.85211027,0.5199055,0.54772013,0.5007581,0.36502025,0.25935084,0.11531555,-0.03164377,-0.08988365,-0.17993921,-0.32556525,-0.45207167,-0.5220608,-0.74582475,-0.82521415,-0.8309587,-0.8919808,-0.8843789,-0.9907621,-1.0431831,-1.1194108,-1.147103,-1.2080885,-1.0723605,-1.1196549,-1.1902105,-1.1651897,-1.1554497,-1.1290969,-1.1402953,-1.1753023,-1.1952026,-1.2208381,-1.2144885,-1.2498772,-1.250167,-1.273634,-1.0911964,-1.0272278,-1.2899326,-1.1212422,-1.2046778,-1.2918843,-1.2581513,-0.12695655,0.558961,0.42343488,0.11032409
+-1.035884,-0.6928259,-0.99739444,-1.1344624,-1.1866744,-1.1781588,-1.1951518,-1.2202481,-0.028560631,-0.2786058,-0.503243,0.08106757,0.5222462,0.23415211,0.05563747,-0.061857186,1.0726452,0.86483693,0.7023459,1.0559288,0.9024998,0.7036406,0.42122954,0.041097783,-0.30241975,-0.5859158,-0.70692223,-0.98074687,-1.1212437,-1.0670438,-1.1710615,0.44946533,0.26186275,-0.007289879,-0.2934988,-0.54881513,-0.75505364,-0.024972893,0.684777,0.12733167,-0.44157785,-0.43764412,-0.59985113,-0.14063865,-0.12582374,-0.52591497,-0.49723512,0.42598343,0.68817616,0.1934838,-0.18043455,-0.52719265,-0.098993205,-0.26712474,-0.6633405,-0.45961785,0.5518941,-0.12025719,0.19297335,0.22928217,0.18584093,0.81180316,0.621502,0.9546225,0.5765636,0.10868851,-0.35927975,-0.7010721,-0.93608856,-1.0603256,-1.1349739,-1.1212982,0.6678086,0.074911214,-0.35766357,-0.68304664,-0.49009717,-0.69058937,-0.8876126,-0.21228915,-0.2766043,-0.6719277,-0.90458405,-1.0410743,-1.1103623,-1.1849532,0.13424823,0.554747,0.32117718,-0.026439361,-0.41046882,-0.7260003,-0.94298935,-1.1179354,-1.1763719,-1.2418406,-1.2041941,-1.1916733,-1.2672247,-0.97775984,-1.0538119,-1.1943327,-1.2517619,-1.283953,-1.2850156,-0.96314883,-0.9920062,-1.1338397,-1.1766003,-1.191143,-1.191182,-1.1946354,-1.1852,-1.181882,-1.161864,-1.1378655,-1.1177596,-1.0418646,-1.0120394,-0.819649,-0.93063354,-1.0439103,-1.1456605,-1.1666523,-1.1707715,-1.1528068,-1.1403486,-1.1263747,-1.123843,-1.1255943,-1.1343029,-0.2764712,0.24599129,-0.014701895,-0.047899865,0.2046828,-0.19443408,-0.47319114,-0.41395336,-0.35527492,-0.65702784,0.022611372,-0.07131877,-0.023145653,0.3404857,0.25950447,0.1458593,0.28850034,0.4651118,0.19397458,0.11306576,-0.22956535,-0.28332776,-0.07003028,0.39335227,0.23461518,-0.087211065,-0.38691437,-0.63510233,-0.7971419,-0.9392265,-1.0267081,-0.109285496,0.8224054,0.32792866,0.10090742,0.11691079,0.5100816,0.55123043,0.84428585,0.81539816,0.8759723,0.780921,0.481372,0.21057904,-0.069108896,0.090624966,1.6838291,1.5706282,1.4423099,1.1416018,0.89302707,0.6952891,0.35259163,0.09879375,-0.11141875,-0.27396846,-0.29782057,-0.5155594,-0.3662619,0.1729514,0.15862772,-0.057135515,-0.27464098,-0.4249996,-0.52223545,-0.41052234,-0.1986019,-0.3365046,-0.424084,-0.49036568,-0.5779206,-0.6026509,-0.6245538,-0.7320759,-0.80628544,-0.8169405,-0.82432747,-0.7701179,-0.80105036,-0.7925152,-0.77821994,-0.78968436,-0.81160617,-0.8268645,-0.8069057,1.0207453,1.2708331,1.1239336,1.4509933,1.351955,1.3717337,1.3743716,1.2787147,1.3424473,1.3013006,1.185005,1.0701803,0.98703104,0.82010764,0.7589655,0.6057968,0.59906775,0.35580164,0.2235474,0.21372864,0.17081556,0.01679159,0.03717882,1.2607713,1.0749321,1.0469352,1.1395915,0.87461114,0.71056074,0.40469593,0.77582586,0.9916925,0.90031,0.9619876,1.0206383,0.8518753,0.47721606,0.54544556,0.7274534,0.6711427,0.6466397,0.68561983,0.6692714,0.60608244,0.6331811,0.32183287,-0.17322001,-0.19157788,0.035718195,0.09553111,-0.013221346,0.022806607,0.1270692,0.21794692,0.089076914,0.008091517,0.079353906,-0.06934848,-0.1826005,-0.3324166,-0.16366014,0.10145927,-0.0005458519,-0.06554098,-0.4270423,-0.6938324,-0.7451472,-0.58936745,-0.4377634,-0.41675436,-0.36056784,-0.31632194,-0.25379008,0.71752334,0.9860792,0.89399964,1.1722543,1.1746674,1.2443335,1.1036797,1.0048429,0.7031188,0.5784484,0.52347213,0.25066617,0.011273749,-0.09086902,-0.026576065,-0.03846333,-0.13649142,-0.23551339,-0.33325693,-0.44481248,-0.5296917,-0.5241871,-0.54139733,-0.40141043,-0.5233086,-0.58923453,-0.7109821,-0.7475749,-0.71819067,-0.6030027,1.2438532,1.0649219,0.99184114,0.9375005,0.8026705,0.63304365,0.5214527,0.50402594,0.2098738,0.0077465847,-0.10888221,-0.39665794,-0.61945236,-0.75867784,-0.7660694,-0.77670336,-0.8637352,-0.89038634,-1.0250986,-1.0343635,-1.0680336,-0.975592,-0.99334943,-1.075006,-1.0210307,-0.9839971,-0.99054027,-1.0220907,-1.0155104,-1.047328,-1.0485896,-1.1114405,-1.0747074,-1.1324093,-1.165917,-1.1339209,-0.8317634,-0.871158,-0.93392205,-1.0870583,-1.1581969,-1.1254504,-0.90604544,0.6493776,0.19279334,-0.070475824
+-0.9061825,-0.6486726,-0.85737205,-0.92496574,-0.94859016,-0.89957005,-0.8755364,-0.9836831,-0.71467024,-0.58782977,-0.5593153,0.44125587,0.9409155,0.54511297,0.3165418,0.060243256,1.2786942,1.189504,1.08081,0.9203403,0.8351862,0.69122034,0.4306226,0.34928185,0.22327039,-0.08139636,-0.091182135,-0.3944521,-0.55556786,-0.53520536,-0.7497802,-0.6439111,-0.69211614,-0.8410098,-0.79160434,-0.856203,-0.92304254,-0.9498545,-0.7774018,-0.84379864,-0.97193956,-0.69252765,-0.07966799,-0.078347094,-0.2519669,-0.3015384,-0.25349125,0.98056114,1.5848488,1.0676671,0.78875875,0.53397685,0.22119227,-0.04962238,-0.2576737,-0.31536353,-0.19041511,-0.40120742,-0.46362478,0.86911297,0.62585574,0.5258895,0.6543735,0.90981287,0.6463947,0.36290067,0.06303667,-0.23609146,-0.46812665,-0.5690264,-0.6878996,-0.48021686,0.10122999,-0.31165552,-0.54643583,-0.69530815,-0.79082876,-0.8545278,-0.881673,-0.49291044,-0.18208042,-0.5104078,-0.69741577,-0.81940854,-0.87882507,-0.9295318,-0.73268676,1.9249687,0.8872658,0.6348925,0.23639658,-0.096342616,-0.34489864,-0.4845124,-0.6060113,-0.7304579,-0.8160969,-0.874938,-0.9178839,-0.9345871,-0.9288523,-0.9503645,-0.96858,-0.9812921,-0.9727733,-0.9565867,-0.9331913,-0.95155454,-0.954839,-0.9434638,-0.94490576,-0.9456477,-0.9428394,-0.9470315,-0.94037175,-0.9207585,-0.9082215,-0.7142807,-0.28428,-0.55672574,-0.73826534,-0.86887705,-0.925876,-0.9299481,-0.9331423,-0.9215281,-0.91655195,-0.9162679,-0.932425,-0.9333396,-0.9366611,-0.93584514,-0.91139066,-0.5016562,0.61201197,0.65605557,0.39335266,0.118469514,0.5158732,0.6306476,0.5471691,0.79953206,0.7921696,0.68890864,0.46852306,0.18854797,-0.096881144,-0.3108275,-0.42132288,-0.2036649,0.011596046,-0.21194911,0.19951883,0.7203065,0.72367305,0.488189,0.24060684,-0.039505966,-0.26774034,-0.4372868,-0.5495943,-0.4308988,-0.08278572,-0.06636033,-0.3090588,-0.21683583,0.32183534,0.5283992,0.27945918,0.038750656,-0.107070185,-0.1028148,-0.24282873,-0.42893642,-0.5433146,-0.61948556,-0.69149065,1.1993887,1.3308489,1.3309095,1.0606087,0.8747642,0.74757314,0.4614736,0.29478407,0.12500164,-0.04178738,-0.1250116,-0.23345983,-0.22560132,-0.099324845,-0.23016131,-0.28708497,-0.3730207,-0.42927295,-0.48197997,-0.5126439,-0.50152993,-0.49623972,-0.49109775,-0.49696934,-0.50983477,-0.5203755,-0.43643898,-0.55175227,-0.6247543,-0.6404241,-0.6367538,-0.5781672,-0.5952853,-0.57841146,-0.558977,-0.5479334,-0.5555801,-0.5786586,-0.588503,-0.2150476,0.3217799,0.19634506,0.5173483,0.8540794,0.816218,0.8592286,1.1179368,0.94648165,0.9869126,0.8984629,0.84552824,0.7598692,0.62765783,0.5205201,0.42346478,0.47321776,0.25798166,0.10490508,0.03825999,0.07522043,-0.011695288,0.08691362,0.45070168,0.45342195,0.48622656,0.4674345,0.28569186,0.13499749,-0.08218538,0.44097975,0.8279628,1.1669111,1.0494461,1.1036822,1.1382651,0.90840256,0.87691045,0.9040693,0.8192788,0.78207284,0.72143894,0.66618896,0.6886468,0.5453944,0.726201,0.27809334,0.23073027,0.24983814,0.243391,0.19717443,0.19579244,0.27944016,0.2819034,0.2261307,0.14214492,0.15429398,0.067624696,0.014364101,-0.008530103,0.4409654,0.6774059,0.51183254,0.3705136,0.24377736,-0.038068585,-0.17353365,0.020807452,0.1334553,0.15753973,0.18144545,0.16254747,0.124363415,0.64735913,1.186702,1.03737,1.2449043,1.1554145,1.1668203,1.0824351,0.9435399,0.6580136,0.44312632,0.4312287,0.27266037,0.13318795,0.07491172,0.0803533,0.034449287,-0.05750697,-0.15615419,-0.16825545,-0.2201851,-0.3614022,-0.30359542,-0.29662266,-0.2172294,-0.2738508,-0.35795486,-0.46491277,-0.46164882,-0.46746653,-0.02508568,1.5823146,1.3300478,1.1825879,1.0268006,0.99781984,0.73095906,0.7816223,0.78770167,0.48791593,0.26151532,0.18126646,-0.025245108,-0.28242648,-0.36349082,-0.38174623,-0.35309368,-0.39783266,-0.46640003,-0.57679695,-0.5580244,-0.62754726,-0.5940371,-0.61457133,-0.6910789,-0.6263732,-0.6319291,-0.6026679,-0.6481533,-0.63338274,-0.69316256,-0.71233094,-0.74671924,-0.73408777,-0.7451354,-0.75002575,-0.7639653,-0.79396886,-0.7893514,-0.75905114,-0.75179994,-0.8624712,-0.80878603,-0.94629765,0.20511246,0.16896394,-0.08038629
+-0.055099078,-0.0662247,-0.32073012,-0.46679556,-0.57933426,-0.51545644,-0.5608825,-0.62749803,-0.5628523,-0.5956569,-0.09959989,-0.0016319379,0.86380064,0.52311695,0.13162617,-0.157534,-0.0229754,1.0024176,0.9940086,0.53870803,0.30005902,0.17948332,-0.006030813,0.111355804,0.21209389,-0.08610796,-0.2128258,-0.4178087,-0.38061562,-0.14929771,-0.043717302,0.7042757,0.44986266,0.094957955,-0.2514895,-0.44816732,-0.59154,-0.56274736,-0.4790641,-0.50303495,-0.5549049,-0.5095179,-0.50543207,-0.52595264,-0.49832082,-0.053635918,-0.13948882,-0.015957274,0.43403864,0.345667,-0.10202528,-0.26055264,-0.3914972,-0.502061,-0.4971668,-0.45129973,-0.35335013,-0.44229424,-0.5529637,-0.49850088,-0.46312296,-0.36891067,0.84033465,1.1446284,0.83554786,0.4943527,0.13675624,-0.112793155,-0.3186379,-0.42082685,-0.4838047,-0.47829986,-0.50505006,-0.5085182,-0.51513237,-0.5377422,-0.5365304,-0.5326265,-0.5199963,-0.51967454,-0.5078821,-0.47856516,-0.5351655,-0.5678269,-0.57113945,-0.5960717,-0.036153935,0.0057689026,-0.11578222,-0.14768082,-0.25343794,-0.41485775,-0.522048,-0.54063714,-0.5555607,-0.5737864,-0.5965361,-0.6015768,-0.5988945,-0.57330155,-0.5802317,-0.6079251,-0.6224688,-0.6292181,-0.61521584,-0.60697746,-0.6121446,-0.6121412,-0.6136237,-0.6085285,-0.60831475,-0.6069982,-0.59391177,-0.58425635,-0.58647645,-0.5820583,-0.34787247,-0.03463643,-0.19804043,-0.3692255,-0.48858887,-0.561394,-0.6089674,-0.60002613,-0.5848361,-0.57242,-0.5813012,-0.5816678,-0.57407665,-0.5730924,-0.5749736,-0.56774306,-0.5335387,-0.5102613,0.48679453,1.4384768,1.2549632,1.1447896,1.1817561,1.2826984,1.706272,2.3743765,2.0189064,1.6253645,1.1882923,0.73884445,0.42016822,0.17606054,-0.03184419,-0.15336671,0.20437445,0.8895523,0.93385124,0.9027676,0.66445804,0.4265604,0.28219956,0.08347763,-0.15882018,-0.31848663,-0.36693567,-0.41088486,-0.4235884,-0.17761415,-0.23817912,0.9797066,1.0512651,0.7943305,0.6731345,0.41760144,0.2490241,0.11367157,-0.023684315,-0.12634304,-0.22989988,-0.34218022,-0.38316408,0.94600755,2.0350025,1.6861519,1.4944751,1.1984913,0.95223665,0.6467314,0.6790409,0.43441778,0.24353874,0.13922192,0.03225825,0.13123253,0.50469536,0.27210552,0.24201795,0.017191537,-0.13363448,-0.23089287,-0.26606476,-0.251346,-0.25602275,-0.2631808,-0.25842184,-0.24413937,-0.14149377,0.10612185,-0.17766052,-0.3901962,-0.39903846,-0.41030312,-0.33789116,-0.3374351,-0.29601574,-0.3057297,-0.2937417,-0.33413216,-0.39658028,-0.37726274,-0.20242316,1.0869054,1.0666659,0.88050973,0.9236798,0.9553646,1.1918266,1.6492355,1.3537697,1.2369944,1.1594434,1.0637062,1.0093533,0.88495123,0.72373015,0.78915805,0.7660601,0.5008234,0.34691024,0.27428374,0.37385327,0.26550508,0.23533997,0.26692507,0.20657519,0.3445339,0.30822143,0.18046574,-0.0501867,-0.20752174,0.83794093,1.2576091,1.7504449,1.4868877,1.2841357,1.1769001,1.0468352,0.81909084,0.79417413,0.7568834,0.7449531,0.72595686,0.68428653,0.6784721,0.645855,0.74968636,0.28187543,0.23083273,0.22052282,0.23337361,0.15408364,0.2031824,0.24450108,0.38722372,0.47160506,0.47404847,0.5005516,0.3760304,0.29438156,0.31370002,0.29749787,0.27889797,0.05356078,0.035317697,0.10034241,-0.2086879,-0.4218222,-0.29281074,-0.21829751,-0.15205136,-0.08795812,-0.060773723,0.028975725,-0.041447394,0.42042312,0.55498904,0.7834065,0.5793304,0.44559544,0.26648897,0.15263359,0.00077401847,-0.17769468,-0.13497692,-0.17967075,-0.3016069,-0.14926893,-0.21298784,-0.27039725,-0.3286124,-0.33013296,-0.33656552,-0.4014949,-0.3578224,-0.31517965,-0.36845726,-0.23275247,-0.25780326,-0.32752746,-0.4249314,-0.4639488,-0.4305501,0.21197633,1.1608589,0.7980189,0.52749157,0.33361912,0.06936215,-0.1797654,0.38156152,0.28111237,0.04574453,-0.16341895,-0.23443228,-0.3286059,-0.39151865,-0.43262076,-0.42716026,-0.34095162,-0.38402188,-0.44176185,-0.33293498,0.32862136,0.0015209168,0.0137113705,-0.12937447,-0.29052955,-0.2976204,-0.28074908,-0.2645831,-0.23715883,-0.32240996,-0.44794834,-0.5150063,-0.53517646,-0.5227848,-0.5021302,-0.47495377,-0.49178833,-0.539559,-0.5774022,-0.4458797,-0.43710673,-0.45532185,-0.4487754,-0.5145267,0.21498829,0.32642642,-0.08585011
+-1.218319,-1.3109506,-1.3103869,-1.3188939,-1.3245616,-1.3259981,-1.3213724,-1.4113758,-0.8034284,-0.9191381,-0.9540533,-1.1150814,-0.14069739,-0.5987356,-0.9071417,-1.0762707,-1.1813322,-0.5907374,-0.20879298,-0.6535079,-0.92238355,-1.0976585,-1.1597022,0.12439475,-0.3417191,-0.74329376,-0.84447885,-1.0332317,-1.1528089,-1.1448723,-1.2559236,-1.199688,-1.1682099,-1.2245686,-1.2835627,-1.2982811,-1.3456402,-1.3403063,-1.2679462,-1.3545749,-1.0665364,-0.9674679,-1.2237548,-1.1003916,-0.0022952482,0.26038384,-0.28355375,0.4053993,0.32175305,0.04002624,-0.39033917,-0.689222,-0.9238703,0.7008909,0.005219616,-0.3413216,-0.5564215,-0.8354804,-0.9003688,-0.8303027,-0.522999,-0.8761488,0.29327688,-0.15839922,-0.53862244,-0.8511702,-1.0520027,-1.1982,-1.3001506,-1.3151262,-1.3559258,-1.3646514,-1.3727772,-1.3850193,-1.3954287,-1.407275,-1.4061682,-1.4125159,-1.410013,-1.4151865,-1.384338,-1.2623758,-1.3729764,-1.4043615,-1.4075097,-1.4113895,-1.403461,-1.3542742,-1.0150341,-0.67701495,-0.45131814,-0.9227389,-1.1994432,-1.3196355,-1.3877285,-1.4090363,-1.4181279,-1.4241154,-1.4306093,-1.4283242,-1.4151788,-1.3947036,-1.4242417,-1.4266335,-1.4305236,-1.4345026,-1.4296814,-1.431714,-1.4342076,-1.429092,-1.4212956,-1.4207528,-1.4187675,-1.4268942,-1.426595,-1.0894415,-0.79169905,-0.16000664,-0.38569975,-0.5531057,-0.27023733,-0.8126602,-1.0931451,-1.2480483,-1.3338016,-1.3682258,-1.3874757,-1.3883452,-1.3910452,-1.3962194,-1.3987148,-1.4003634,-1.3961191,-1.3621967,-1.2150414,0.81518394,0.7427735,0.5793733,0.39972708,0.14432088,-0.030047275,-0.16697782,0.13290998,0.9323543,0.32281378,-0.12197205,-0.49544954,-0.80568624,-0.99629116,-0.89316475,-0.4550826,-0.11399094,-0.046010308,-0.18628299,-0.051255144,-0.01707381,-0.23642689,-0.56911415,-0.84963524,-1.0475457,-1.1504468,-1.2214181,-0.45214134,0.5645433,0.00015888363,-0.13012958,-0.00016080588,-0.11136343,-0.35558993,-0.6774673,-0.8790025,-1.0225872,-1.1172353,-1.1920216,-1.2211695,-1.2394398,-1.254951,-0.2388556,1.0118958,0.99271625,0.8417895,0.70789635,0.43615186,0.13490984,0.079140216,-0.2011137,-0.44994664,-0.65058887,-0.7808611,-0.11912412,0.39960825,0.18777937,-0.02937983,-0.28898275,-0.50418407,-0.70348644,-0.8252448,-0.83601403,-0.88717216,-0.92646575,-0.9738593,-0.9982028,-0.8444932,-0.6919586,-0.83052146,-1.0403757,-1.0312083,-1.0783,-1.0492408,-1.0980554,-1.0813373,-1.085332,-1.0951549,-1.1437392,-1.1134974,-1.1353766,0.2084026,1.1151778,0.7525395,0.57385796,0.49388978,0.43381882,0.6179587,0.6316993,0.66459394,0.63171816,0.5044897,0.36053628,0.15917173,-0.011827208,-0.17100412,-0.29813716,-0.32939932,-0.4692881,-0.63317424,-0.73317766,-0.76579344,-0.826452,-0.6846787,-0.42792493,-0.35376322,-0.4350354,-0.5160154,-0.7148278,-0.8047893,-0.9873128,0.2006577,0.7509601,0.74504125,0.59282535,0.5690304,0.5190182,0.6106373,0.43620563,0.36503065,0.3330774,0.2172642,0.08673578,0.030269131,0.034600608,-0.08078738,-0.12782842,-0.32747763,-0.41268158,-0.48659432,-0.555596,-0.6144903,-0.6326488,-0.6364666,-0.63388383,-0.6422405,-0.62509906,-0.68726313,-0.6799093,-0.8234973,-0.8105763,-0.849269,-0.82519984,-0.9465718,-0.96968865,-0.9723387,-0.86879337,-0.9307716,-0.90509295,-0.9620986,-0.982703,-1.0158899,-1.0417551,-1.0377786,-1.0139711,-0.9963331,-1.0262142,-0.8836493,-0.87840164,-0.9098418,-0.9668112,-1.0138211,-1.0554479,-1.1007481,-1.1335118,-1.1170936,-1.1079304,-1.056269,-1.0242585,-1.0963719,-1.1308838,-1.147482,-1.2096485,-1.2492843,-1.1618748,-1.1093724,-1.1550007,-1.1325631,-1.0825753,-1.1715624,-1.1895692,-1.2218547,-1.2250801,-0.23366079,0.27833772,0.04916261,-0.23852885,-0.4447633,-0.59235734,-0.8035745,-0.013896547,0.021952383,-0.30550075,-0.56488365,-0.7969813,-0.95202065,-1.0459279,-1.1094525,-1.1354483,-1.1172442,-1.115484,-1.1730628,-0.27549875,0.25023288,-0.08691222,-0.31745863,-0.38675702,-0.4914024,-0.6960865,-0.83873755,-0.8486703,-0.8309615,-0.98424387,-1.0589762,-1.1339902,-1.156726,-1.188112,-1.1995046,-1.2103528,-1.2408712,-1.2544435,-1.264849,-1.217428,-1.1719012,-1.2525858,-1.3065782,-1.3057351,-1.1593401,-1.1586512,-1.2260132
+-1.5648861,-1.4936788,-1.5531731,-1.5579371,-1.5312366,-1.5409304,-1.5451021,-1.5640494,-1.1277406,-1.2325045,-1.3827887,-1.4977789,-1.1064961,-1.3365291,-1.453906,-1.49052,-1.5216665,-1.505903,-1.5185692,-1.4193416,-1.4633603,-1.5083791,-1.31181,-0.13977227,-0.7711406,-1.1102066,-1.290964,-1.3545187,-1.4161333,-1.4473612,-1.4458951,-1.4568739,-1.459038,-1.4613813,-1.518707,-1.515409,-1.5256248,-1.3514416,-0.97869325,-1.261258,-1.4072607,-1.482554,-1.5193613,-1.4868592,-0.598452,-0.0657086,-0.36613733,-0.43382102,-0.7173785,-1.0761853,-1.2836753,-1.3816471,-1.4221628,-1.0428852,-0.9747522,-0.6749369,-0.97157586,-1.2433105,-1.3863463,-1.4056951,-0.6588099,-0.9639449,-0.17073512,-0.43428946,-0.7691101,-0.71608734,-1.0873733,-1.2831217,-1.3914826,-1.4592034,-1.5004034,-1.4770585,-1.4830961,-1.5180335,-1.527662,-1.5350864,-1.531719,-1.5380414,-1.5386511,-1.5384991,-1.2900754,-0.56741893,-1.1670996,-1.3971581,-1.4773741,-1.5128686,-1.5311728,-1.5271468,-0.9932792,-1.2300932,-1.2033865,-1.3382521,-1.4518552,-1.4766245,-1.494816,-1.5000926,-1.5118139,-1.5134809,-1.518111,-1.2560334,-0.7277684,-0.9952934,-1.3184431,-1.4213517,-1.4607741,-1.4226577,-1.4356077,-1.4828339,-1.4963261,-1.5051618,-1.5169827,-1.5176729,-1.5202385,-1.5255318,-1.5259478,-1.5265037,-1.3911748,-0.87612563,-1.2041651,-1.2124273,-0.6567739,-0.846672,-1.1874588,-1.3941486,-1.4600382,-1.4829099,-1.4989855,-1.5007141,-1.5006341,-1.5051823,-1.4915205,-1.4860473,-1.4214156,-1.345457,-1.3212211,-0.79390454,0.48127204,0.1069803,-0.27877158,-0.49387497,-0.58265674,-0.8355684,0.7158633,0.14452392,-0.3977452,-0.7491917,-1.0478902,-1.2353063,-1.3374801,-1.2406602,-0.63892806,-0.74141175,-0.5677234,-0.7024605,-0.8526323,-1.0750036,-1.257415,-1.3270501,-1.4211388,-1.4653393,-1.4813069,-1.493186,-1.4091818,-1.1513203,-1.2965503,-1.3845401,-1.2939339,-1.4117405,-1.4048479,-1.4869848,-1.5073528,-1.5132649,-1.5079619,-1.5069603,-1.5201441,-1.516336,-1.4381641,-0.46949476,0.29272923,0.14368978,-0.118712015,-0.2428996,-0.35637066,-0.4690507,-0.31961665,-0.62859815,-0.8491554,-1.0105803,-1.1570089,-0.766281,-0.39553913,-0.6374744,-0.74775696,-0.98779416,-1.1567786,-1.2766862,-1.3384175,-1.3566215,-1.3983164,-1.4110281,-1.4185,-1.4371271,-1.2726723,-0.17155796,-0.5245992,-0.8545922,-0.9964049,-1.1558743,-1.2666565,-1.345162,-1.3893931,-1.397697,-1.4230891,-1.4286819,-1.437485,-1.4373758,-1.407306,-0.4495052,-0.40141115,-0.5656264,-0.6201962,-0.21969905,-0.037498184,-0.18940675,-0.08577313,-0.28391135,-0.13358587,-0.38536,-0.5398779,-0.65319246,-0.78684855,-0.9069917,-0.9061303,-0.99874496,-1.1222173,-1.197411,-1.2259653,-1.2700579,-1.3047678,-1.3034772,-1.300025,-1.3444328,-1.3517058,-1.3784679,-1.3835137,-1.4319632,-1.0430961,0.28554803,0.1761851,-0.1258272,-0.3613919,-0.31209046,0.13673213,-0.09778743,-0.32532188,-0.3736232,-0.56986064,-0.73269546,-0.8220494,-0.8543426,-0.91935873,-0.98841417,-1.000048,-1.0913126,-1.1732161,-1.2207043,-1.2163944,-1.2404253,-1.2472312,-1.2772255,-1.2986671,-1.2913908,-1.3243078,-1.2685244,-1.4012933,-1.2444129,-1.2266765,-1.3255484,-1.3835566,-1.4328768,-1.3666655,-1.3278875,-1.397117,-1.3540503,-1.4576867,-1.4252081,-1.438595,-1.4340472,-1.390097,-1.371804,-1.4315252,-1.4465661,-1.4326177,-1.4371268,-1.4564041,-1.4771056,-1.4553938,-1.5247293,-1.4973102,-1.481735,-1.4713817,-1.4757487,-0.96891046,-0.8237264,-1.0673575,-1.2245128,-1.328718,-1.3919055,-1.4385757,-1.4042432,-1.4465384,-1.474213,-1.4868053,-1.4695063,-1.481185,-1.4777274,-1.507834,-1.4861733,-1.4643273,-1.4760113,-1.4738235,-1.5204341,-1.5208399,-1.5071697,-1.5712304,-1.4506932,-1.5208471,-1.5493476,-1.5272768,-1.5169852,-1.5149035,-1.502413,-1.5398252,-1.531104,-1.5463762,-1.5424173,-1.5493234,-0.8161306,-0.51391304,-0.9420068,-1.2041833,-1.1987834,-1.2546835,-1.2513472,-1.3333185,-1.2987164,-1.3223284,-1.4172575,-1.4655966,-1.4695427,-1.4747437,-1.4747291,-1.4809511,-1.4943111,-1.5014158,-1.4932476,-1.4805295,-1.492849,-1.519897,-1.5164845,-1.5171312,-1.5154145,-1.5328743,-1.5411456,-1.5114865
+-1.5895387,-1.4263325,-1.4011047,-1.4458504,-1.4425337,-1.4687251,-1.462498,-1.153316,-1.2086053,-1.334466,-1.3766539,-1.4177709,-1.4042597,-1.4113687,-1.4383771,-1.4639068,-1.4822696,-1.4437348,-1.3814796,-1.0754766,-1.2173386,-1.1348085,-0.5727013,-0.8677831,-1.145377,-1.3253458,-1.4349195,-1.4369521,-1.4732921,-1.4947453,-1.4914792,-1.388574,-1.3301831,-1.399909,-1.4444261,-1.4626505,-1.4693623,-1.2114192,-0.91885555,-1.0315008,-1.1898718,-1.2694212,-1.364798,-0.6086526,-0.66175395,-0.71628547,-1.1200026,-1.1827571,-1.2605077,-1.3149108,-1.3636656,-1.3823613,-1.2985276,-1.2925786,-1.2193182,-0.8820516,-1.0950334,-1.2531928,-1.3362205,-1.3050525,-0.41028494,-0.26378834,-0.34056073,-0.8064615,-0.9546565,-0.8526138,-1.088362,-1.1781083,-1.2557917,-1.3102329,-1.3562989,-1.2865624,-0.9415271,-1.153585,-1.2478623,-1.3189559,-1.3451025,-1.3849974,-1.3917744,-1.3975613,-1.3010587,-1.2109256,-1.3664981,-1.3868544,-1.3828065,-1.1367018,-1.0191865,-0.88041335,-0.76741844,-0.77127206,-1.198477,-1.252964,-1.1505213,-1.2395016,-1.3016318,-1.3345271,-1.3540888,-1.3424927,-1.2855439,-1.276601,-1.1374285,-1.015909,-1.280267,-1.3041704,-1.3376739,-1.3569927,-1.3653057,-1.2826643,-0.9484482,-1.0942708,-1.3036946,-1.3417883,-1.3629026,-1.3884573,-1.3955952,-1.3681301,-1.3595608,-1.3461857,-0.9474971,-0.19486862,-0.37380472,-0.20739609,-0.5202351,-0.8643669,-0.9368956,-0.9490576,-1.1251984,-1.1404738,-1.0233219,-1.1224132,-1.2493392,-1.2187179,-1.0632772,-1.2534769,-1.225816,-1.0717837,-0.5666586,-0.26193807,-0.23310313,-0.24736539,-0.4166535,-0.44094366,-0.3078569,-0.12585756,-0.59737664,-0.7085558,-0.87210315,-0.97375345,-1.0774384,-1.0269984,-1.0759546,-1.0270863,-1.066122,-1.1043512,-1.1218466,-1.1906618,-1.2038381,-1.2891579,-1.279924,-1.3354665,-1.2927637,-1.2442961,-1.3382393,-1.3584163,-1.3711406,-1.3080317,-1.0218711,-1.1697432,-0.9702327,-1.1371342,-1.3153352,-1.369323,-1.3887576,-1.3786746,-1.3876381,-1.4049225,-1.1690098,-0.52737015,-0.5731597,-0.60043865,-0.58942455,-0.7985624,-0.892815,-0.9920535,-0.79635316,-0.9529486,-1.085623,-1.182962,-1.2591469,-1.3237212,-1.2506486,-1.2369164,-1.2926949,-1.3352052,-1.3604665,-1.3841698,-1.4057798,-1.4044092,-1.4044935,-1.4009413,-1.4110672,-1.4153366,-1.4187968,-1.1820432,-1.2539275,-1.4194306,-1.372324,-1.3916717,-1.4005259,-1.4115336,-1.411697,-1.4120073,-1.4184606,-1.4214782,-1.4303079,-1.432906,-1.2208552,-0.6024043,-0.84040076,-1.0273665,-1.1411158,-1.1425809,-1.134169,-0.37575698,-0.68497705,-0.679599,0.00015395135,-0.30289793,-0.45069492,-0.55785257,-0.68659157,-0.80897176,-0.8728241,-0.90055645,-1.0001322,-1.0869873,-1.1476861,-1.1751559,-1.2194085,-1.2298064,-1.2456185,-1.3201132,-1.3666854,-1.3509362,-1.3555683,-1.3858594,-1.2885954,-0.3414088,-0.37948847,-0.67359865,-0.8772727,-0.97159135,-0.76979166,-0.9503964,-1.0372753,-1.0684528,-1.169285,-1.2178596,-1.2660972,-1.3057022,-1.3569008,-1.3427837,-1.2414117,-1.339472,-1.365606,-1.4022361,-1.3904394,-1.4122894,-1.4183027,-1.4179068,-1.4311407,-1.4191457,-1.4393681,-1.3619529,-1.4298393,-1.4146631,-1.4222307,-1.415196,-1.4352443,-1.4352927,-1.4229999,-1.2843888,-1.3320525,-1.4090886,-1.4337895,-1.4367268,-1.4419277,-1.4327669,-1.4132292,-1.4020544,-1.4102076,-1.4388049,-1.4184666,-1.392952,-1.4198833,-1.4956466,-1.4728103,-1.5169739,-1.5273786,-1.5241094,-1.4605441,-1.4329503,-1.100743,-0.97411835,-1.1996131,-1.3316982,-1.3728409,-1.3973442,-1.3941009,-1.3879262,-1.4064796,-1.4308633,-1.4437108,-1.4647269,-1.4626211,-1.4509277,-1.4589636,-1.44947,-1.4316405,-1.4332265,-1.3459556,-1.3828282,-1.4153762,-1.4936252,-1.5427104,-1.4566263,-1.4698315,-1.5342253,-1.5406172,-1.542361,-1.5194399,-1.4846041,-1.511033,-1.5094452,-1.5049736,-1.4609041,-1.4643662,-0.6608369,-0.48108256,-0.8308358,-1.0532445,-1.0028583,-0.93131065,-0.50919294,-0.8513477,-0.31899524,-0.7472857,-0.92546797,-1.0512801,-1.1242785,-1.2204279,-1.2668246,-1.2975844,-1.3373716,-1.3796531,-1.4028757,-1.3888855,-1.4167426,-1.4211416,-1.4510561,-1.4499335,-1.4541411,-1.4790025,-1.4782735,-1.5001597
+-0.34614706,-0.6902535,-0.89315796,-0.9323336,-0.7967949,-0.5549172,-0.2842523,-0.6642916,-0.7313508,-0.4587952,-0.6657756,-0.7344036,-0.26562113,0.11764624,0.5824921,0.48359817,0.23667446,0.24103525,0.42512032,0.45715064,0.30666363,0.019077972,-0.14034176,-0.14438841,-0.20413291,-0.21228698,-0.18983907,-0.24974853,-0.30183762,-0.30952027,-0.3199516,-0.4073676,-0.355329,-0.4084022,-0.38275975,-0.37677526,-0.45673633,-0.48599982,-0.47714508,-0.6596274,-0.5756104,-0.5861162,-0.6780615,-0.6063592,-0.57093096,-0.5804982,-0.52166003,-0.45476872,-0.5069257,-0.4917487,-0.49663872,-0.518679,-0.3074542,-0.41658986,-0.28178248,1.2392889,1.7128155,1.4579268,1.2623022,0.88558257,1.3561553,1.7869256,1.1501075,1.4397125,1.792578,1.3327326,1.1644527,0.67404383,0.3406185,0.11501534,0.42743888,0.44580358,1.5715668,1.3908527,0.6896754,0.6361486,0.42714015,0.21096474,-0.034550436,1.4431957,1.4389334,0.80283475,1.3764044,1.4274297,0.76876116,1.531822,1.4253727,1.1670481,0.7239256,0.39291355,0.25709993,-0.015501328,-0.16736558,0.15804574,1.2704911,1.2418015,1.0197113,1.2375886,1.4071333,1.0075282,0.76848924,0.7719126,1.4099822,1.9774566,1.7889934,1.0869994,0.75054336,0.4836998,0.2971905,0.059900805,0.37346113,0.89618206,0.4480592,1.342936,1.5523884,0.9270705,0.56694037,0.2690991,-0.028528921,-0.24432364,-0.3691032,-0.36643445,0.23137063,0.35882354,0.15093285,0.6969739,0.51396525,0.101432525,-0.16829503,-0.2368528,0.108006515,-0.04449784,-0.29855317,-0.38751987,-0.47859788,-0.52884096,-0.009735636,0.26620013,-0.0090966895,0.33429697,0.19309738,-0.006320432,-0.18026295,-0.32423043,-0.46068007,-0.22944278,0.22540715,-0.040333115,-0.2236683,-0.3439421,0.0036682636,-0.098115675,-0.22318166,-0.34988543,-0.4259007,-0.5222798,-0.4432115,-0.28004205,-0.2749944,-0.24552414,0.37521604,0.44181734,0.21288061,0.0009448752,-0.11063542,-0.19152972,-0.19994655,-0.27213287,-0.36707428,-0.26810873,-0.39289784,-0.18602535,-0.27926517,-0.439705,-0.47525424,-0.49420488,0.12236776,0.87894636,0.7580623,0.50201637,0.33909884,0.2385954,0.13097085,0.02033662,-0.048976503,-0.052539714,0.740155,0.4819682,0.3624477,0.04584212,0.0794724,-0.056492634,-0.14734942,-0.09867557,-0.1254257,-0.3639597,-0.17369449,-0.06549754,-0.20485577,0.02756454,0.103125595,0.05344178,-0.09469382,-0.24722683,-0.1534057,0.31936002,0.37507674,0.23267645,0.054983042,0.16224602,0.06342352,-0.011586376,-0.049672924,0.12412525,0.3573504,0.28614968,0.22424567,0.21601668,0.222168,0.19200838,0.14482622,0.07483111,0.09542162,0.06257559,-0.19410175,-0.1526649,-0.13480482,-0.19709611,-0.249681,-0.19208539,-0.2016232,-0.60568225,-0.7299235,-0.8045778,-0.87565506,-0.7979114,-0.72218436,-0.7473516,-0.7378001,-0.7979409,-0.84178364,-0.76669323,-0.5012738,-0.5891695,-0.8226945,-0.8746644,-0.71148384,-0.64796686,-0.83086973,-0.54889774,-0.6414182,-0.78343856,-0.8007827,-0.7622376,-0.76231515,-0.7910998,-0.7929716,-0.79348594,-0.7883277,-0.80868983,-0.80972993,-0.78424543,-0.8391104,-0.71121764,-0.8609569,-0.85817504,-0.88639927,-0.8775624,-0.8250368,-0.5683117,-0.73731405,-0.7818433,-0.77049005,-0.7002994,-0.75453925,-0.800205,-0.8048141,-0.7530679,-0.7400364,-0.75294846,-0.7733784,-0.73536205,-0.7275548,-0.6892668,-0.708585,-0.6707708,-0.682024,-0.66438246,-0.7126249,-0.7645788,-0.7967182,-0.80160445,-0.72724664,-0.6264039,-0.7301817,-0.58451223,-0.6386657,-0.55630904,-0.5596282,-0.62218916,-0.7390728,-0.7991624,-0.8162057,-0.82299256,-0.571862,-0.52334476,-0.6517704,-0.6901008,-0.7209316,-0.74958533,-0.75333077,-0.70451546,-0.6888498,-0.63842344,-0.6633996,-0.6987176,-0.74835724,-0.74211794,-0.7491989,-0.75555944,-0.793713,-0.7170999,-0.49944913,-0.48761028,-0.6316505,-0.5230059,-0.5554145,-0.62134147,-0.5492139,-0.6555277,-0.7435248,-0.77549005,-0.791116,-0.8201717,-0.7609848,-0.7746778,-0.8183497,-0.78917444,-0.6073632,-0.5423926,-0.47295034,-0.54862154,-0.6793954,-0.6463978,-0.6823447,-0.7108104,-0.7034859,-0.7321059,-0.7441337,-0.61737543,-0.34361383,-0.7033533,-0.39120254,-0.32587785,-0.5631877,-0.7796035,-0.56311643,-0.5241724,-0.5216318,-0.10890069,-0.104556106,-0.17434356,-0.043924935,0.26680657,0.5479314
+0.039027616,-0.0930975,-0.011433713,-0.2868104,-0.31244913,0.028826423,0.37542558,-0.22976524,-0.47421002,0.14702977,-0.31750166,-0.3396183,0.0017227605,0.31907344,0.49106646,1.306037,1.3724082,1.2410342,1.2551394,1.2627773,1.2502861,0.8063251,0.7108448,0.7171055,0.71373415,0.54263765,0.5009239,0.48616064,0.35979208,0.3435085,0.2592019,0.2872213,0.25739446,0.16543916,0.13599248,0.13899988,0.046276838,-0.030279033,-0.04350958,-0.13387385,0.08174075,0.25188115,0.20162702,0.10754212,0.06911496,0.013304912,-0.049244754,-0.055682294,-0.0972228,-0.11040764,-0.123278014,-0.2000584,0.6116278,0.5588708,0.64989835,1.2893881,1.1030185,0.85445124,0.8257102,1.0694958,2.3471,2.891253,2.2833924,2.4925306,2.878892,2.2338245,1.6132969,1.2250925,0.8320558,0.57009333,1.8675042,2.517048,2.8781886,2.474835,1.8066142,2.5786848,1.8538928,2.2885542,1.8946826,1.2955159,1.1658192,0.72835267,1.6902347,2.0100694,1.3662103,1.3390688,1.2967247,1.0143512,0.71337086,0.5315464,0.7267275,0.52494967,0.5169105,0.5280093,0.6778306,0.71613663,0.60998887,1.3031113,1.8507912,1.5229509,1.6186199,2.267116,2.585609,2.3678207,1.9510041,1.4231939,2.30694,2.7759204,2.0771024,1.4960392,0.9835478,1.9127722,1.6039606,2.0446596,2.3166797,1.5218606,1.2004673,1.2571241,1.0415533,0.7255979,0.761903,1.3047047,1.1050528,1.125171,0.772437,0.709988,0.7127903,0.54884547,0.41496968,0.23693484,0.22771701,0.48683965,1.9522587,1.7997367,1.4756042,1.1861558,0.8075556,0.75502884,0.5931546,1.4327021,1.5345463,1.2193855,0.9792908,0.69103813,0.48371345,0.49211365,0.3277538,0.2603476,0.16928414,0.11898803,0.075518586,0.102224864,0.014896728,-0.027477294,-0.05342809,-0.06257998,0.8375217,1.4733063,1.087789,1.188947,1.5092331,1.2204623,1.1335652,0.9008925,0.632138,0.5418896,0.41144726,0.33483204,0.84749424,0.9120246,0.7150092,0.59341186,0.45083636,0.33068085,0.31427035,0.5572043,1.3847101,1.2635516,1.2063265,1.0302405,0.77939475,0.62679935,0.46697992,0.40928793,0.2724971,0.22885987,0.5123864,0.88775164,0.72071964,0.5890272,0.47818106,0.42951906,0.33719313,0.2991642,0.26632205,-0.057755254,0.13729286,0.20995823,0.13200223,0.14241421,0.07146632,0.057892937,-0.011469178,-0.038104244,-0.06757475,-0.10344831,-0.070438825,-0.08706466,0.10991272,0.25790182,0.22206229,0.24301946,0.22789398,0.24619454,0.57190555,0.4992158,0.4278978,0.3278357,0.25942487,0.1836273,0.13001606,0.029750682,0.10907992,0.03544227,-0.12183487,-0.08791567,-0.06142328,-0.12641409,-0.039745517,-0.03663694,-0.156769,-0.3468982,-0.50402904,-0.44044387,-0.5091678,-0.42639172,-0.50032496,-0.5196064,-0.6187707,-0.6263855,-0.5819579,-0.37440354,0.019112758,-0.19594184,-0.23143181,-0.38653302,-0.3435227,-0.4084559,-0.4843961,-0.34601316,-0.6322518,-0.7398632,-0.7911737,-0.75701165,-0.75309026,-0.812866,-0.8401641,-0.8574634,-0.8341409,-0.8325037,-0.83192444,-0.7957639,-0.7662831,-0.5049361,-0.51812786,-0.7265767,-0.801051,-0.80591714,-0.75774074,-0.67974764,-0.8277132,-0.76267,-0.743865,-0.82927734,-0.8610249,-0.87226516,-0.7781699,-0.8307259,-0.86606896,-0.8446137,-0.84242666,-0.83256793,-0.8201832,-0.7433065,-0.78955126,-0.80819714,-0.83800405,-0.7886836,-0.8163372,-0.83097017,-0.825888,-0.80138916,-0.58444357,-0.586293,-0.62469923,-0.57880086,-0.69016683,-0.696231,-0.7889596,-0.6917881,-0.7240803,-0.8181842,-0.8183907,-0.77799463,-0.5530462,-0.3071196,-0.84088635,-0.8778196,-0.876506,-0.84313977,-0.8396642,-0.7575905,-0.6601436,-0.7738009,-0.7853502,-0.52454424,-0.71167785,-0.73270524,-0.7596215,-0.7312547,-0.7321633,-0.6026356,-0.35857198,-0.46700203,-0.40141925,-0.113295294,-0.14010519,-0.16603518,-0.46884888,-0.54059917,-0.68947536,-0.7179942,-0.75452465,-0.64539516,-0.6359894,-0.6110099,-0.74516225,-0.59911114,-0.51607734,-0.14811847,-0.39225423,-0.5516337,-0.6676159,-0.6842464,-0.6915399,-0.6025156,-0.6322422,-0.6941179,-0.644349,-0.3797016,-0.09790666,-0.5404216,-0.2616126,-0.22648513,-0.46337748,-0.6028139,-0.26216024,-0.25203198,-0.1432057,0.2939956,0.6785317,0.7849246,0.8432709,0.8572346,0.68288934
+0.23030746,0.2243141,0.37379053,0.102061234,0.13744825,0.18079355,0.16822281,0.041504174,-0.21035042,0.037021838,-0.08648426,-0.15432906,-0.005083896,-0.0192886,-0.02093327,1.1933229,1.2920346,1.0053103,1.1658227,1.1981921,1.0852208,0.7444823,0.6235397,0.8159797,1.7989091,1.248158,1.0433366,0.8178202,0.72415495,0.7198386,0.49808663,0.4087991,0.5591238,0.42557907,0.33633417,0.2539971,0.15091208,0.08677714,0.10012937,0.44798356,0.35412332,0.33368936,0.34873945,0.2553572,0.21521047,0.10307053,0.031314164,0.03393434,0.041233785,0.05086612,0.055268183,-0.08629783,1.5649676,1.3913095,1.1123012,1.6905591,1.3923028,1.0951586,0.9392235,0.9094763,2.0570867,1.9584026,1.447043,1.6883913,1.775567,1.372195,1.0575973,0.8591559,0.6555387,0.46823972,1.1147673,1.0261256,1.0556718,1.0436538,1.714805,2.0515254,1.4465635,1.2462716,1.2347045,0.9746021,0.8618614,0.49331734,1.6702192,1.6045139,1.1590981,0.9370694,0.7757091,0.5971937,0.44164747,0.28776821,0.2824933,0.30543637,0.23540124,0.056710757,0.26788694,0.17656943,0.0016152337,1.6363226,1.4800082,1.3347981,1.6101415,2.4073749,2.7778516,2.2025833,1.8098061,1.418244,1.1531494,1.0738771,0.80332446,0.5103546,0.3021946,0.18389764,0.3167012,1.4497623,1.3803947,0.8145969,1.2922833,1.6871595,1.2471877,0.89733684,0.6960996,0.40405855,0.043245696,-0.11877828,-0.26166677,-0.038360678,-0.070353426,-0.22351456,-0.32845697,-0.40766406,-0.46093076,0.8725277,1.1724955,1.0678997,0.7980784,0.43509167,0.112245895,-0.0760121,-0.19856906,-0.29517868,-0.17592055,0.2512972,0.14424793,-0.03560015,-0.21959433,-0.3071165,-0.42204845,-0.45603383,-0.4548052,-0.4583112,-0.5121109,-0.4705968,0.25720802,0.37529975,0.13252707,-0.027091466,0.17592314,1.4692762,1.0778121,0.9923396,1.1376109,0.8877492,0.8298741,0.5292223,0.2774291,0.10403173,0.036313064,-0.05243828,-0.13239387,-0.10323947,-0.18794686,-0.27692354,0.063403554,0.20794782,0.06108903,0.68169785,0.72038376,0.7410073,0.55726594,0.33026123,0.15484214,0.051252343,-0.05454024,-0.21056455,-0.28561535,-0.3361917,-0.24029157,-0.08940359,-0.13502303,-0.1720776,-0.28507218,-0.27055568,-0.34605092,-0.3721735,-0.3400336,-0.38627002,-0.3745644,-0.38751483,-0.4573896,-0.10769311,0.22127429,0.111487195,-0.015193492,-0.041779242,-0.14900327,-0.26836777,-0.32496753,-0.103200264,0.11647433,0.0650168,-0.0026174411,-0.09469227,-0.15371281,-0.17979601,-0.20121521,-0.27770513,-0.32560116,-0.36680874,-0.41862816,-0.4567951,-0.4671414,-0.5152444,-0.48796558,-0.49878484,-0.54535806,-0.5017473,-0.46958232,-0.5156018,-0.48867762,-0.5336989,-0.49385887,-0.53674936,-0.66440016,-0.5774666,-0.56010544,-0.41257524,-0.5706761,-0.5539465,-0.5738884,-0.53598696,-0.48315203,0.13339658,0.3644091,0.07383388,-0.02475921,-0.23401555,-0.22009695,-0.28308934,-0.22095147,-0.30438864,-0.5438541,-0.57991445,-0.7345579,-0.75439537,-0.6826848,-0.74518585,-0.7985517,-0.8002074,-0.86558133,-0.7369511,-0.79518896,-0.86566764,-0.76060104,-0.43394643,-0.49158597,-0.74451584,-0.78177303,-0.71642715,-0.66014326,-0.5976678,-0.7853453,-0.61422634,-0.60480344,-0.7364614,-0.8124261,-0.80497205,-0.6859315,-0.8124646,-0.9029472,-0.85593486,-0.8801327,-0.9217484,-0.8967866,-0.79992384,-0.79319644,-0.8446951,-0.875269,-0.88512564,-0.87663805,-0.88937724,-0.85797566,-0.82861173,-0.5113281,-0.6471395,-0.56221986,-0.63463235,-0.72383535,-0.73918414,-0.6623349,-0.45969963,-0.6733883,-0.7096705,-0.51135373,-0.5053915,-0.24790221,-0.187626,-0.757556,-0.8969739,-0.9327774,-0.80629766,-0.8300979,-0.8123089,-0.7770715,-0.89877504,-0.9161117,-0.30397403,-0.20421082,-0.52766633,-0.66665673,-0.44425952,-0.63871527,-0.33143252,-0.07665146,-0.095324926,0.13234267,0.3303456,0.21839105,0.024411738,-0.24188972,-0.43648285,-0.6284746,-0.55423546,-0.39338583,-0.5371301,-0.45704377,-0.5063679,-0.6296572,-0.33379775,-0.043325894,0.43570054,0.086706184,-0.38470957,-0.39648852,-0.75005984,-0.7245864,-0.66693103,-0.64693654,-0.67703474,-0.49387187,-0.0918543,0.32025382,-0.08742363,0.38072443,0.650457,0.02181501,-0.16986704,0.25034043,0.51527876,0.39587414,0.6025285,0.49363983,0.31819615,0.3091591,0.25835326,0.23178372
+-0.39150554,-0.31548712,0.06000033,-0.06306534,-0.10838693,-0.06907772,-0.20229355,-0.18386379,-0.5420861,-0.26631594,-0.46720088,-0.5258631,-0.4406911,-0.51153266,-0.5864812,0.41464034,0.49945694,0.69807637,0.7356005,0.7983028,0.7301123,0.5456682,0.33040154,0.111577496,0.19524404,0.17246842,0.653788,0.59605676,0.6876707,0.5880454,0.44891167,0.24473965,0.24552426,0.0762627,-0.14151597,-0.3403592,-0.45460778,-0.5842356,0.44919193,0.6098937,0.5007063,0.4691249,0.18825546,0.19160862,0.026093617,-0.17436555,-0.35666147,-0.52025753,-0.61565363,-0.69299316,-0.7193352,-0.84672284,-0.043840222,-0.22559172,0.38874465,0.36471754,0.27675423,0.2734967,0.17986068,-0.031941794,0.48462576,0.5270645,0.1121471,0.62571657,0.59012663,0.38113108,0.07109839,-0.18214232,-0.36823404,-0.593832,-0.7306516,-0.8302534,-0.6416235,-0.44717854,0.736345,0.82471895,0.5310525,0.17514446,0.36433107,0.13247481,-0.1290617,-0.44006205,-0.31725538,-0.43483847,-0.66095316,-0.78967136,-0.90243995,-1.0068486,-1.0278327,-1.0846272,-0.9383925,-1.0232565,-1.1591976,-1.1717505,-1.2510881,-0.81637347,-0.5561842,0.42871895,0.21688628,-0.13343823,-0.17574418,-0.21074891,-0.41512132,-0.7133889,-0.8999212,-0.70381546,-0.4094171,0.045443825,-0.39140958,-0.72070503,-0.8994818,-1.0349576,-1.0070193,-0.64574516,-0.7981509,-1.0162077,-0.9363626,-0.8306369,-0.8541492,-0.906603,-0.992164,-0.9260541,-0.6655178,-0.8231492,0.09583638,0.45132762,0.124366276,-0.2348162,-0.46047533,-0.65535486,0.0012475103,-0.4525658,0.7215282,0.8631501,0.64696836,0.38079515,0.5317805,0.6533637,0.4010205,0.12978727,0.2856485,0.37170613,0.20528713,-0.043083332,-0.31092384,-0.43532884,-0.6029018,-0.56669664,-0.4068715,-0.6005273,-0.7632729,-0.84502953,-0.5376977,-0.4730448,-0.6445122,-0.7965964,-0.9219929,0.4504357,0.37550074,0.17495987,0.08351162,-0.10035313,-0.13490188,-0.3059442,-0.4788713,-0.51343006,-0.59214544,-0.7456815,-0.04448115,0.10503764,-0.07987302,-0.32812437,-0.4718784,-0.59347343,-0.6639559,-0.29526109,-0.2608615,-0.24542338,-0.33007216,-0.5029714,-0.60654974,-0.7187239,-0.77856576,-0.8406161,-0.8935563,-0.95131135,-0.03556768,0.27048078,0.0078235045,-0.07253487,-0.17202538,-0.30851242,-0.43425816,-0.45001078,-0.41485858,-0.5249135,-0.601529,-0.68219936,-0.72752726,-0.7827265,-0.41472805,-0.4060529,-0.40354085,-0.37494504,-0.4644066,-0.5914142,-0.60589564,-0.62502956,-0.3751555,-0.3820672,-0.4936214,-0.27875805,-0.080970906,-0.09024312,-0.10952694,-0.20177504,-0.30559185,-0.375126,-0.4771124,-0.55101776,-0.6612044,-0.72482145,-0.69803315,-0.7505094,-0.7482836,-0.7427145,-0.7688562,-0.8171245,-0.81200707,-0.8005528,-0.71888787,-0.44554675,-0.7503655,-0.7433225,-0.77818763,-0.59175444,-0.64945203,-0.6974414,-0.7388202,-0.7248875,-0.73067397,-0.14295956,-0.1110517,-0.35473117,-0.4813118,-0.6160188,-0.6458638,-0.6944727,-0.6932435,-0.9816475,-1.097498,-1.0629983,-1.0699359,-0.95530975,-0.96055853,-1.0965087,-1.1281109,-1.1651269,-1.0825548,-0.93094397,-1.1221495,-1.1163876,-1.0191523,-0.81504357,-0.8377491,-0.9990461,-0.91228557,-1.0249485,-0.9354708,-0.9793432,-1.0343025,-0.8684959,-0.9782194,-0.90170574,-0.9478135,-0.9513154,-0.8060217,-1.0108113,-1.0446699,-0.9572606,-0.95677257,-0.97326255,-0.9132421,-0.8633199,-0.8796176,-0.8900728,-0.93472576,-0.88774616,-0.9190184,-0.9038208,-0.89474666,-0.90032107,-0.7682975,-0.7726056,-0.6614136,-0.7374395,-0.8670052,-0.8517803,-0.727894,-0.685306,-0.80020964,-0.9049827,-0.7487038,-0.58576024,-0.639935,-0.6487503,-0.87063944,-1.0475295,-1.0079218,-0.8958731,-0.93628716,-0.878819,-0.9054904,-0.96328163,-0.93902826,-0.60409975,-0.16172475,-0.57886714,-0.7730907,-0.64347655,-0.6731609,-0.5357723,-0.25459623,0.05477508,0.50780565,0.69038165,0.6927221,0.7286545,0.2351901,-0.46684235,-0.749052,-0.70738983,-0.5722725,-0.4858327,-0.6360321,-0.89402103,-0.8275105,-0.635637,-0.16216308,0.31609035,-0.0911695,-0.47774458,-0.5895069,-0.9593475,-0.94996226,-0.9935478,-1.0436714,-0.93342113,-0.8673053,-0.43286163,0.061184123,-0.21440119,0.38171923,0.52485555,0.1823425,-0.19637531,0.02176109,0.28246495,0.12539697,0.18020919,0.19861484,0.17159143,0.09556708,-0.007295117,-0.04176127
+0.20689791,0.31867135,0.49852347,0.4034482,0.24416488,0.23268965,0.13533455,0.027450077,-0.15281355,-0.23805335,-0.24321502,-0.35914543,-0.50023973,-0.43848544,-0.49937093,-0.10240167,1.6750224,1.7061504,1.5069462,1.1832952,1.1877843,1.031255,0.8197937,0.6032808,0.4322385,0.3700925,1.564683,1.3771105,1.2128386,1.0284288,1.2422173,1.2506473,1.3593261,1.1956716,0.85020566,0.5942946,0.38325506,0.19657177,0.855002,1.1776593,1.0463449,0.86275893,0.6111724,0.45810878,0.23091236,0.07515014,-0.10289884,-0.22188511,-0.27508396,-0.31727597,-0.31644127,-0.36017707,1.7207714,1.1776534,1.6356452,1.1178167,1.0613437,1.2465516,0.8934532,0.6054081,0.6540973,0.5057253,0.054557897,0.099397905,0.09720019,-0.21128309,-0.4133861,-0.5405979,-0.55777305,-0.66292477,-0.6634354,-0.69102454,-0.24904567,0.30527574,1.0439012,0.699229,0.23500142,-0.096800275,-0.10490792,-0.25126138,-0.40007162,-0.48104668,-0.5221867,-0.62827957,-0.6485506,-0.70241886,-0.74566686,-0.7642189,-0.7259263,-0.84322214,-0.1399335,-0.18480518,0.09959126,0.24693066,-0.124104284,-0.33695772,-0.46976566,0.019921042,-0.22264296,-0.43291372,-0.5582772,-0.6393976,-0.7552517,-0.8985684,-0.9870515,-0.5317428,-0.5347483,-0.17371744,-0.5058758,-0.5488462,-0.5945296,-0.7177943,-0.7661742,-0.43182433,-0.4900018,-0.6428452,-0.7967161,0.23553252,0.92935026,1.0134106,1.1342709,0.9587687,0.77299315,0.48092175,0.22925529,0.095874555,-0.11950012,-0.29072425,-0.49134982,-0.5310077,-0.6358607,-0.63426673,0.1126172,1.3621955,1.0274178,0.57913935,0.5429724,0.46068227,0.162132,-0.07116557,0.7472962,1.2157507,0.79963166,0.5095938,0.2308566,0.06817875,-0.1600993,-0.34457025,-0.40249372,-0.45246577,-0.5358155,-0.61525935,-0.652486,-0.64854044,-0.62652636,-0.68247104,-0.73482144,0.6875987,1.5643389,1.1030959,0.79678875,0.69910365,0.6349449,0.42586893,0.24925163,0.2421549,0.09020344,0.5760742,0.9262012,0.7434588,0.46985576,0.27163476,0.012715913,-0.06520229,-0.045142733,-0.22037256,-0.23339307,-0.14099571,-0.27628022,-0.4001581,-0.46743947,-0.4977789,-0.44966453,-0.49021012,-0.51616347,-0.53352535,0.3887439,0.9202619,0.75404686,0.89631724,0.781272,0.65903807,0.45934737,0.34974143,0.39569992,0.28932387,0.15314317,0.025775127,-0.028663762,-0.11921819,-0.18041751,-0.2463173,-0.10893563,-0.05514244,-0.06583866,-0.18695813,-0.20610476,-0.34164217,-0.42396456,-0.35324225,-0.37229186,-0.4381135,-0.4534647,-0.4365002,-0.33701426,-0.4662066,-0.41768938,-0.39479652,-0.39927426,-0.44360846,-0.53748715,-0.46313763,-0.39236107,-0.46947676,-0.4489565,-0.3108763,-0.40835017,-0.4349777,-0.4109826,-0.3774828,-0.3641161,0.31982347,-0.109171756,-0.09407685,-0.09063088,0.20364717,0.18281776,0.08184589,0.020534582,-0.00085473806,-0.11287416,0.4505533,0.49758995,0.35678887,0.12753922,-0.08128335,-0.13823324,-0.16276652,-0.117719285,-0.47420025,-0.7473079,-0.83594733,-0.8347661,-0.71681416,-0.69991016,-0.78232926,-0.8084074,-0.85158753,-0.7952903,-0.67751527,-0.8970051,-0.90990174,-0.85922897,-0.59377986,-0.4700237,-0.6348188,-0.4785353,-0.60506636,-0.48499864,-0.5841414,-0.7116513,-0.5007357,-0.65187067,-0.56310034,-0.4567243,-0.47972655,-0.42449427,-0.7445394,-0.82730365,-0.81751406,-0.7901346,-0.7631205,-0.71562445,-0.6112372,-0.555552,-0.63958013,-0.7084199,-0.6269152,-0.5940435,-0.509002,-0.3725557,-0.52458334,-0.4182142,-0.22387287,-0.11998945,-0.01444497,-0.28538075,-0.27421832,-0.18121552,-0.20609492,-0.5240751,-0.59436655,-0.46261835,-0.2209869,-0.19881883,-0.08976432,-0.30096787,-0.688738,-0.70204204,-0.6042391,-0.6448063,-0.4544536,-0.68107414,-0.7114423,-0.67686075,-0.193732,0.38979536,0.12260676,-0.12317615,-0.09728169,-0.0051487014,0.5666377,0.87216693,0.8221641,0.7577882,0.7299815,0.7286596,0.70366675,0.44755766,0.07301564,-0.27067327,-0.30014348,-0.3358441,-0.16655022,-0.21943438,-0.39313534,-0.3579388,-0.08621804,0.46534488,0.6409892,0.4572801,0.11095334,-0.14741856,-0.4965576,-0.5581211,-0.5048102,-0.6868323,-0.67508656,-0.47941095,-0.032219373,0.3008982,0.15841365,0.25439188,0.22523493,-0.07328857,-0.150904,0.17707938,0.28523403,0.2916494,0.29296812,0.20101798,-0.06650705,0.09532858,0.13666582,0.07754954
+-0.7137691,-0.6807217,-0.7632413,-0.92572355,-0.9804013,-0.8213276,-0.8664202,-0.9217832,-1.0924003,-1.0771353,-0.99540293,-1.097892,-1.1711669,-1.2783446,-1.3113332,-0.32301444,0.48791593,0.4290148,0.11138497,-0.13109797,-0.26869527,-0.51211226,-0.630298,-0.7108953,-0.7621144,-0.7492653,0.6383513,0.09260174,-0.18514633,0.4464872,0.41536814,0.023544423,-0.2616498,-0.435498,-0.6402967,-0.73127663,-0.9011978,-0.3473589,0.14976844,-0.20300108,0.06115901,-0.22093195,-0.5203059,-0.57511485,-0.7193255,-0.5643977,-0.47619176,-0.6845751,-0.7496203,-0.7483248,-0.830714,-0.8071242,-0.27662623,-0.4987259,-0.011852823,-0.43554032,0.030559324,0.2894096,-0.09447204,-0.40914005,-0.20100123,-0.4128303,-0.6897521,-0.8740417,-0.92711353,-1.1208348,-1.2511077,-1.3220303,-1.4225717,-0.93237734,-1.1554332,-1.3582804,-1.3571527,-0.9310746,-0.15642965,-0.7863407,-1.1439089,-1.272946,-0.7885469,-1.0629151,-1.1538308,-1.2674978,-1.3211355,-1.403512,-1.5027001,-1.4999194,-1.457825,-1.4947345,-1.2364643,-0.5523571,-0.6153968,-1.0766056,-0.46135402,-0.28806642,-0.6327073,-0.97186303,-1.130959,-0.24831012,-0.7926824,-1.058463,-1.2391927,-1.331306,-1.3468097,-1.2992531,-1.2857423,-0.39450768,-0.5162159,-0.922802,-1.1793492,-0.7198708,-1.0125808,-1.2637545,-1.3670197,-0.99120533,-1.1977136,-1.3224114,-1.4393141,-0.48402,-0.70922077,-0.30230513,-0.13908362,-0.12495727,-0.5175697,-0.6468755,-0.9746411,-1.1665772,-1.2730603,-1.3836619,-0.8003264,-0.98929596,-1.2428002,-1.3944373,-1.2333033,-0.40925735,-0.90914536,-1.2076249,-1.3460159,-1.2662024,-1.1362166,-1.3112923,-1.2080019,-1.1134341,-1.3065556,-1.4666598,-1.493089,-1.3741027,-1.4601068,-1.5191839,-1.4450498,-1.5413938,-1.5678214,-1.3756576,-1.3495203,-1.4629285,-1.5448228,-1.5894806,-1.5898147,-1.0645711,-0.34826586,-0.020520143,-0.45822382,-0.7451373,-0.73104477,-0.8796987,-1.0612473,-0.9877796,-0.9986999,-0.9874201,-0.7163514,-0.888228,-1.0603199,-1.2115747,-1.3169887,-1.3921764,-1.371216,-1.4554956,-1.5058242,-1.3130107,-1.3366275,-1.3996141,-1.4426849,-1.4654273,-1.483371,-1.5184926,-1.5181313,-1.5593052,-1.2399646,-0.9412781,-0.8037274,-0.69195664,-0.83414906,-0.95850086,-1.0340157,-1.0905321,-0.9922545,-1.0271007,-1.0480635,-1.1116326,-1.1657228,-1.1914103,-1.0977188,-1.1002603,-0.8201518,-0.86884063,-0.9071667,-0.97133875,-1.0461454,-1.141762,-1.1427302,-1.1069311,-1.133706,-1.207396,-1.2237055,-1.2059526,-1.1323855,-1.2453912,-1.1909835,-1.1619263,-1.2012091,-1.2442864,-0.5207401,-0.4178093,-0.5691047,-0.6025443,-0.68204314,-0.7733903,-0.70426214,-0.72106683,-0.7501199,-0.8144742,-0.7936169,-0.7224418,-1.0621005,-0.98423636,-0.9327656,-0.5781478,-0.45659482,-0.6852263,-0.7001853,-0.704252,-0.6198636,-0.4053114,-0.4901275,-0.6427364,-0.81232727,-0.96554494,-0.9720955,-0.9382179,-0.8925227,-1.1178584,-1.2676021,-1.3525519,-1.3198183,-1.128997,-1.0457559,-1.1407242,-1.2029243,-1.2792262,-1.2140524,-1.0812562,-1.3484838,-1.4430898,-1.3213918,-1.0577374,-0.9853734,-1.1130806,-0.94637775,-1.122016,-0.9383943,-1.0676157,-1.008143,-0.8670348,-1.0190973,-0.98747766,-0.8363455,-0.9358969,-0.9177929,-1.2393831,-1.3170484,-1.3204558,-1.3988271,-1.3534456,-1.2771363,-1.0716012,-0.88776034,-0.98976815,-1.1825061,-1.1726294,-1.0782224,-0.86435336,-0.48521382,-1.0295343,-0.93920076,-0.6543694,-0.55641294,-0.23944819,-0.4895631,-0.761214,-0.7907866,-0.8238184,-1.0202582,-1.0803381,-0.83375907,-0.7054182,-0.5834738,-0.51209664,-0.6860324,-1.1382786,-0.97979033,-1.0372531,-0.9379866,-0.7217394,-0.7955005,-1.0175779,-1.1071323,-0.5403996,-0.24412194,-0.42839956,-0.79899526,-0.70915294,-0.66992575,-0.45155656,-0.36794275,-0.41181386,-0.4817316,-0.46064347,-0.45385236,-0.46209574,-0.76225877,-0.8296096,-1.1255879,-0.96271443,-0.8939824,-0.7672664,-0.7575611,-0.7932916,-0.8359879,-0.7119477,-0.5084615,-0.46896076,-0.49227738,-0.6707084,-0.69247174,-1.0220745,-1.0528846,-1.0574126,-1.1136332,-1.2009902,-1.0635344,-0.79865515,-0.63818365,-0.741194,-0.7676585,-0.71639353,-0.8112619,-0.95195365,-0.9373447,0.32773516,0.108539455,-0.17078629,-0.36858213,-0.56651634,-0.542814,-0.48578477,-0.6461056
+-0.19401276,-0.084720545,-0.07016405,-0.14314407,-0.2642616,-0.28183448,-0.37349805,-0.40686947,-0.3688,-0.53850836,-0.47402585,-0.45390844,-0.535025,-0.62982845,-0.6418208,1.1263404,1.9193773,2.1326742,1.6148612,1.5709653,1.5944049,1.0290123,0.57562894,0.24869421,0.05430446,-0.10131516,1.6400297,1.6887743,1.4222434,1.2543657,1.4104526,1.4000053,1.1877097,0.82149816,0.37661177,0.08223303,-0.12888312,-0.23322314,0.5719419,0.6206682,1.4335827,1.1902304,0.69043547,0.6319637,0.21487063,0.53424305,1.001534,0.6674041,0.35622966,0.33783773,0.09399091,-0.08433359,0.1989522,0.3250812,0.8819447,0.9671401,1.4157208,1.6677269,1.4912896,1.3561857,1.5788764,1.4283248,0.9002341,0.472569,0.15323615,-0.16115391,-0.41360474,-0.46736062,-0.65906763,-0.7828714,-0.86844313,-0.9088588,-0.93341553,0.71070915,0.41265392,-0.15990022,-0.47710967,-0.6473553,0.6295284,0.4442239,0.017860726,-0.28989285,-0.51401967,-0.6570841,-0.7871324,-0.8821932,-0.8895116,-0.5520798,-0.29349434,0.6714793,1.073104,0.83102113,0.68709093,0.5252637,0.13896626,-0.07404893,-0.024620004,0.8125646,0.35116902,-0.00030916184,-0.37952012,-0.6097649,-0.6693716,-0.5700591,-0.30294514,0.6234996,0.7443413,0.43574256,0.4449384,-0.043247394,-0.34539396,-0.6031131,-0.7133421,-0.56724143,-0.7010025,-0.753654,-0.86927366,-0.39604324,0.8060328,0.7499416,0.27540126,0.4892096,-0.045402013,-0.30692786,-0.5614526,-0.7197186,-0.50604296,-0.37514585,-0.08326017,-0.14436454,-0.4518175,-0.6475752,-0.7134918,0.34719944,0.016860038,-0.19321749,-0.43392962,-0.6355965,-0.8125798,-0.9024288,-0.5224518,-0.10626637,-0.43637908,-0.60401624,0.088042684,-0.08553258,-0.27105302,-0.43582773,0.2120786,-0.043384664,0.06035147,0.1923751,0.62186456,0.68063414,0.3441304,0.077188715,0.8253306,0.5209924,0.25903246,0.18544763,0.092710845,-0.024340384,0.08708413,-0.14725041,-0.36246735,-0.14859706,-0.24089086,-0.40960032,0.5198317,0.58609235,0.45518452,0.26940385,-0.04084932,-0.26942468,-0.38478893,-0.46551663,-0.5618809,-0.48964244,-0.54440844,-0.66557807,-0.7030083,-0.7642485,-0.76874435,-0.8013727,-0.7975998,-0.81402487,-0.8023758,-0.71911085,-0.8181893,-0.77201873,-0.76466095,-0.7806081,-0.8142333,-0.83328605,-0.55546093,-0.5305979,-0.64379776,-0.7540872,-0.77668625,-0.7991705,-0.7083258,-0.79743075,-0.6604525,-0.6036377,-0.6524519,-0.7085085,-0.7196851,-0.8392525,-0.80980206,-0.79466534,-0.81079376,-0.810465,-0.83027065,-0.82521147,-0.75598156,-0.82126784,-0.8392593,-0.7872191,-0.78187245,-0.808583,0.21679747,0.5196288,0.46759638,0.40475792,0.31315777,0.11050916,0.044336807,-0.047643088,-0.14547333,-0.21888691,-0.29930413,0.037224196,-0.45524347,-0.40722847,-0.27507156,-0.1588215,0.09370624,-0.02781286,-0.048633,-0.1380553,-0.13647544,0.18988657,-0.047280975,-0.0134468,-0.31862676,-0.42197704,-0.5292615,-0.4957329,-0.49267918,-0.6640613,-0.8809768,-1.1344054,-1.1180117,-1.0072477,-0.7946997,-0.9100443,-0.9752488,-1.0211948,-0.99779725,-0.9511907,-1.1421512,-1.3331363,-1.2344177,-0.99797904,-0.71339834,-0.7847818,-0.5876212,-0.69976,-0.44843483,-0.5431199,-0.70006096,-0.5717005,-0.65303826,-0.66596836,-0.51630116,-0.70206237,-0.6591861,-0.8889613,-1.1269943,-1.1524831,-1.3030041,-1.247225,-1.1626123,-0.9283389,-0.56979966,-0.6581358,-1.0409107,-1.0203264,-0.9809679,-0.79889953,-0.12986681,-0.7181276,-0.6212736,-0.082485504,0.21709414,0.4409458,0.33141613,0.051039156,-0.2927615,-0.36067778,-0.63398814,-0.77155995,-0.53620577,-0.22336122,-0.035393856,0.04554721,-0.12186728,-0.7232235,-0.8422482,-0.7743982,-0.41280365,-0.21084544,0.092945315,-0.63209414,-0.76023203,-0.17714283,0.043013804,0.0596037,-0.33647063,-0.124797456,-0.17627987,-0.07215694,-0.042045526,-0.084663875,-0.24528244,-0.2930648,-0.19585872,-0.23513567,-0.4009707,-0.5357164,-0.83549255,-0.69493246,-0.65008396,-0.43823576,-0.45577657,-0.59632635,-0.6056138,-0.47875816,-0.5227342,-0.52925897,-0.50254995,-0.5338437,-0.53266805,-0.6702498,-0.7927656,-0.72989863,-0.70460165,-0.86549544,-0.82429177,-0.60230756,-0.6477177,-0.62995315,-0.7539607,-0.68643916,-0.770954,-0.91017413,-0.8129944,-0.5213773,-0.031150036,-0.14074105,-0.20906886,-0.38620752,0.6962338,0.7208909,0.89461005
+-0.6545421,-0.59272575,-0.6693336,-0.7869817,-0.9151685,-0.86673516,-1.0415207,-1.1233159,-1.1762838,-1.2858682,-1.2355176,-1.164572,-1.2649852,-1.3346481,-1.3109186,0.7417161,1.75772,2.0041516,1.3495533,1.3177198,1.0780771,0.84628993,0.62915885,0.3538698,0.17384636,-0.016721465,0.6436706,0.6651285,1.0984356,1.1787686,1.015873,0.8529589,0.6678488,0.5221545,0.20608503,-0.01075273,-0.22107175,-0.16630739,0.7317793,0.40939754,0.39944577,0.24181879,-0.09113019,-0.10341596,-0.34996027,0.029718645,0.6728528,0.5088502,0.4199038,0.4396744,0.3175283,0.18304724,0.030652337,0.78804934,1.2635115,0.8227452,0.92729485,1.3439162,0.83008736,0.53134394,0.72916514,0.59385073,0.20110229,-0.16533267,-0.42271268,-0.7511733,-1.0161719,-1.0065819,-1.2041093,-1.3289819,-1.3850567,-1.399587,-1.4113734,-0.8563227,-1.0652239,-1.2230253,-1.3295565,-1.0797931,0.595887,-0.21220231,-0.57270604,-0.8974668,-1.033932,-1.146551,-1.2401938,-0.95355797,0.5511639,-0.2211689,-0.30198568,-0.23792294,0.20054644,-0.06377522,0.81140226,1.053062,0.602507,0.10983997,0.5504372,0.43646508,-0.03996586,-0.3137481,-0.71867186,-1.0182047,-0.17765456,0.49396473,0.10258051,-0.3029195,-0.2774941,-0.49232996,-0.80732304,-1.0771664,-1.2173128,-1.2932664,-1.2771022,-1.1250288,-1.0934186,0.2091029,-0.4302143,-0.05826784,0.109297015,0.27022633,-0.066318296,-0.18724638,-0.6270643,-0.894416,-1.0007281,-1.1076515,0.23122272,0.23631746,0.8145623,0.5394784,0.15915534,-0.19802311,-0.30697054,0.1447868,-0.26395124,-0.5403359,-0.7474452,-0.9318657,-1.0777158,-1.1786405,-0.86851287,-0.5521053,-0.90713716,-1.0926576,-1.2480092,-1.0051197,0.4462803,0.13240853,0.4530172,-0.01483535,-0.1505493,0.08902124,0.20575055,0.28109136,0.026533373,-0.14405495,0.46867895,0.20180556,-0.12219278,0.074506976,0.16508994,0.026800014,0.118678845,-0.17272568,-0.4784732,-0.44626534,-0.46782053,-0.65285414,-0.18055677,-0.12041395,-0.17722037,-0.41360575,-0.70922303,-0.9029657,-1.017716,-1.074697,-0.8829961,-0.4246716,-0.64738506,-0.84616804,-1.015796,-1.0720341,-1.1226356,-1.2178341,-0.9699849,-0.68299353,-0.71058697,-0.8422976,-0.9747492,-0.8837867,-1.0129743,-1.0799662,-1.0134202,-0.8919103,-0.94483733,-0.962296,-1.0579994,-1.1400054,-1.1375759,-1.1458237,-1.0688463,-1.1639628,-1.2037138,-1.1755441,-1.177978,-1.20597,-1.1980205,-1.2536091,-0.76762694,-0.5628436,-0.7210922,-0.82609713,-0.8970926,-0.9252336,-1.0191236,-0.89340097,-0.7314472,-0.76198614,-0.8297976,-0.88396025,0.33802485,0.34847736,0.24741843,0.20900746,0.09372244,-0.06908887,-0.10154583,-0.18627414,-0.23056793,-0.27605647,-0.34570736,-0.27367973,-0.6738317,-0.68976736,-0.5618125,-0.5825399,-0.5213406,-0.5744975,-0.59750223,-0.63283724,-0.55345833,-0.30467108,-0.4529993,-0.5071304,-0.74345344,-0.78926146,-0.6218927,-0.32514274,-0.31836587,-0.5630497,-0.71680534,-0.90178615,-0.97390676,-0.9254103,-0.78136116,-0.89773893,-0.97020817,-1.0578055,-1.0238914,-0.901578,-1.0171087,-1.2615712,-1.2351775,-1.1223204,-0.95082104,-0.90662026,-0.70991075,-0.8247725,-0.40524673,-0.2994393,-0.6573377,-0.63815045,-0.6470597,-0.74921846,-0.7196853,-0.76905656,-0.69246054,-0.82773817,-1.0911546,-1.1084667,-1.2775048,-1.2454357,-1.1301945,-0.9792445,-0.61598194,-0.66607237,-0.98919296,-1.0304469,-0.8354132,-0.48309737,-0.276811,-0.24118656,-0.28145483,0.031246938,0.13768628,0.14339119,0.305219,-0.050223373,-0.07503318,-0.24066553,-0.7155446,-0.8400126,-0.6488917,-0.39012867,-0.23907018,-0.2536744,-0.3978971,-0.80312246,-0.89621174,-0.89859265,-0.6019108,-0.47898746,-0.4015416,-0.6979819,-0.9288244,-0.6038817,-0.53175384,-0.42818636,-0.6442164,-0.45128375,-0.5410973,-0.5064801,-0.5112031,-0.5216696,-0.52511865,-0.51658684,-0.44554418,-0.42468518,-0.5576295,-0.6210394,-0.93199456,-0.8514489,-0.7958005,-0.6671927,-0.6335671,-0.81112653,-0.846925,-0.76182765,-0.8026955,-0.7448229,-0.72419584,-0.8651155,-0.86647666,-0.86048955,-0.96515,-0.9379765,-0.8834426,-0.9859514,-0.9728775,-0.8962649,-0.9367931,-0.8743775,-1.0136049,-0.9668286,-1.0371877,-1.0165764,-1.0613482,-0.98610103,-0.72132146,-0.8067602,-0.5000436,0.0036953762,0.73888755,0.6691819,0.60849154
+-0.8133609,-1.0150113,-1.1456702,-1.2344824,-1.334049,-1.3435348,-1.4777901,-1.5102339,-1.5730253,-1.6094005,-0.16480595,-0.0630969,-0.27582574,-0.45647252,-0.5588128,0.18450922,1.0020821,0.8422792,0.52894396,0.62341815,0.37026036,0.2229416,-0.049341135,-0.37510902,-0.5515892,-0.80941284,-0.84017074,-1.0678331,1.1548269,0.82487226,0.73274046,0.355241,0.13265437,-0.06334861,-0.3866216,-0.64448893,-0.8798724,-0.8188149,-0.9077121,-1.1022059,-1.2235222,-1.2738715,-1.4076676,-1.3769325,-1.3984137,-0.7975165,0.12542543,-0.0074140057,-0.23377126,-0.02206456,-0.15819716,-0.3777463,-0.64229834,-0.7195626,-0.9025048,-0.76896954,-0.00027626008,-0.26218972,-0.68295413,-0.9219022,0.30095327,0.05921606,-0.31716144,-0.6278632,-0.89561844,-1.1368754,-1.2523646,-1.2978292,-1.385263,-1.4794096,-1.4351544,-1.544028,-1.5632443,-0.45914668,-0.33260298,-0.7665676,-1.0898514,-1.2675631,0.16520715,-0.46995676,-0.8293008,-1.1090534,-1.2678499,-1.2465014,-0.4164188,-0.6179365,-0.6406995,-0.8916998,-1.0646315,-1.0083259,-1.2438967,0.053197034,-0.1924136,0.26421338,-0.17475894,-0.6615898,-0.95955944,-1.186732,-0.9241054,-0.91307175,-1.2381833,-1.3880415,-1.4226178,-1.4950073,-0.5672491,-0.8426261,-0.013728194,-0.7284438,-1.0882815,-1.2682433,-1.4161739,-1.5042006,-1.5247574,-1.5511078,-1.559518,-0.3502536,-0.90842664,-1.1239083,-1.0461414,-0.20423943,-0.5526624,-0.96512413,-1.2548833,-1.0323615,-1.0980151,-1.3027173,-0.9921274,-0.51743495,-0.67535055,-0.84347934,-1.0405736,-0.9401758,-0.84209096,-0.25441372,-0.597627,-0.88432354,-1.0686326,-1.23489,-1.3400183,-1.4433484,-1.496892,-1.4632015,-1.5017587,-1.5589458,-1.6478728,-1.5567322,0.051662512,-0.26049015,-0.55717826,-0.7182877,-0.28092062,-0.15151358,-0.17861676,-0.2566975,-0.2876014,-0.56869495,-0.8471032,-1.0927831,-1.2522732,-1.3138318,-1.185648,-0.81877434,-0.1912987,-0.49607164,-0.84638494,-0.88778627,-0.82543766,-0.9753845,-1.1217339,-1.2095122,-1.2960654,-1.3504716,-1.3990561,-1.4152659,-1.4640445,-1.4587505,-1.0101498,-0.21487403,-0.57156706,-0.7740502,-0.98258257,-1.1182927,-1.2119066,-1.2285709,-1.0350782,-0.9151964,-1.0116441,-1.0643163,-1.2531264,-1.1928525,-1.2868958,-1.3217009,-0.9623039,-0.9366629,-0.94726574,-0.82572144,-1.004618,-1.1031231,-1.1161159,-1.11424,-1.1958063,-1.3154875,-1.3218734,-1.3287525,-1.3611106,-1.3614979,-1.3603425,-1.3615482,-0.8717663,-0.6299428,-0.84924597,-0.94416547,-1.0206933,-1.1062785,-1.1274103,-1.1710732,-1.11971,-1.1108682,-1.2006025,-0.87488145,-0.084171765,-0.14332289,-0.20216662,-0.32161963,-0.41527736,-0.47068214,-0.5950616,-0.6734284,-0.6556189,-0.7437101,-0.8227405,-0.7326402,-0.9692917,-0.98226094,-0.9457983,-1.0652912,-0.88798785,-0.9248867,-0.946661,-0.9345635,-1.066275,-0.7057222,-0.88573015,-0.9578545,-1.0607722,-1.0116827,-0.86549723,-0.42646128,-0.40022737,-0.6144452,-0.81075805,-1.0254688,-1.1075921,-1.0779169,-0.84745383,-1.0253708,-1.0858868,-1.1932354,-1.2238736,-0.9925699,-1.100404,-1.3389125,-1.3267411,-1.2403485,-1.0978625,-1.0057733,-0.9231545,-0.79578125,-0.73234427,-0.42626578,-0.7923269,-0.7538096,-0.84492576,-0.9873198,-0.9073019,-0.9709009,-0.78464395,-0.9648254,-1.2698412,-1.2545162,-1.3447506,-1.4060781,-1.344831,-1.2303599,-0.82361495,-0.802791,-1.0108354,-1.1905348,-0.95635116,-0.22911164,-0.21698758,-0.1168346,0.039791115,0.17303364,0.19167706,0.1774427,0.07603582,0.142078,0.22394493,-0.09486192,-0.67259073,-0.7982162,-0.6207825,-0.3537856,-0.2363159,-0.30677077,-0.5060296,-0.9004793,-1.0702966,-1.0226688,-0.6406996,-0.56914616,-0.43933475,-0.5977956,-0.94238806,-0.67185605,-0.5111804,-0.52771854,-0.72583866,-0.64571756,-0.7253883,-0.7308966,-0.754395,-0.82618964,-0.85114485,-0.9022064,-0.84686726,-0.84056926,-0.9651747,-0.9139317,-1.1836501,-1.1386657,-1.0441968,-0.91185606,-0.985988,-1.099356,-1.082485,-1.0370257,-1.1621348,-1.1850115,-1.0902823,-1.1910065,-1.303385,-1.2395358,-1.226061,-1.1964042,-1.2744756,-1.2576365,-1.3037449,-1.2805545,-1.3029583,-1.2558053,-1.4274802,-1.2798198,-1.366737,-1.365233,-1.4356492,-1.3871578,-1.2247915,-1.3303344,-1.0129476,0.08742861,0.68134594,0.5356633,0.47736174
+-1.0265374,-1.1635034,-1.2579806,-1.3396779,-1.452152,-1.3782761,-1.4634495,-1.5106553,-1.5922381,-1.6116168,-1.4335165,-1.3735948,-1.4132397,-1.3601285,-1.4659157,-1.4035165,0.5414182,0.14090657,-0.1795584,0.09019304,-0.12004351,-0.28998718,-0.56783175,-0.8314761,-0.9910008,-0.9048362,-0.7435731,-0.9284376,-0.27411145,-0.2864533,-0.5154412,-0.5485449,-0.738749,-0.86902726,-1.0552996,-1.1864539,-1.3471345,-1.3678966,-1.357842,-1.405311,-1.5437237,-1.4973104,-1.6106865,-1.4714139,-1.4109409,-0.39387578,0.07577876,-0.14655006,-0.33568245,-0.09914284,-0.3147669,-0.5704197,-0.62103766,-0.7725508,-1.0805631,-1.1508346,-0.022119388,-0.41239405,-0.6589644,-0.7591758,-0.9658636,-0.680903,0.34342504,0.22019911,0.04172019,-0.3151224,-0.6819298,-0.9541403,-1.1738412,-1.3669422,-1.4769862,-1.5370665,-1.5513024,0.30954763,0.36451995,-0.11943122,-0.5597558,-0.90987706,-0.727921,-0.88690174,-1.0960212,-1.2649374,-1.4226533,-1.4818401,-1.0522381,-1.1569061,-1.2220128,-0.9756887,-0.8904617,-0.86755884,-0.7082521,-0.6693277,-0.76085484,-0.3086834,-0.69399285,-0.9825531,-1.2423186,-1.426347,-1.3627204,-1.1837704,-1.4505509,-1.5824854,-1.6029426,-1.6619339,-1.3703012,-0.8349116,0.19327742,-0.48751777,-0.8098907,-1.0430155,-1.2643787,-1.4243095,-1.522372,-1.5943953,-1.6416225,-1.5250875,-1.5510703,-1.6260531,-1.631383,-0.87240064,-0.76368177,-1.0623705,-1.3447665,-1.4678756,-1.5504735,-1.4799051,-1.161825,-1.3253536,-1.08499,-0.93215,-0.9575635,-1.1999625,-1.3742867,-1.0234847,-0.9836507,-1.1813452,-1.2587013,-1.3824859,-1.4779811,-1.5641077,-1.408884,-0.12508821,-0.6298896,-0.85845625,-1.0669808,-0.753882,-0.6619488,-0.72543526,-0.9259324,-0.3988473,-0.42224538,-0.44746578,-0.36163902,-0.2981345,-0.2085877,-0.33787078,-0.5532118,-0.7695674,-0.9532137,-0.9659146,-0.99343324,-1.1322576,-0.28432542,-0.46914452,-0.72659874,-0.7371927,-0.6638512,-0.7724558,-0.8334148,-0.8650745,-0.61973584,-0.6386737,-0.82389545,-0.98188007,-1.0789976,-1.1674259,-0.38740548,-0.23822373,-0.19822872,-0.4103533,-0.6007547,-0.67188525,-0.79539824,-0.93715787,-1.0673752,-1.1734557,-1.2919774,-1.2235014,-1.1863887,-0.49911213,-0.51278824,-0.733677,-0.74999774,-0.85247374,-0.9288174,-0.8603059,-0.8550234,-1.0298443,-1.0653323,-1.1507412,-1.126622,-1.1796224,-1.1838663,-1.1980703,-1.2474821,-1.2534928,-1.2648036,-1.3296916,-1.2492971,-1.247266,-1.3119471,-1.3529857,-1.2892177,-1.3399373,-1.3552647,-1.3241701,-1.279527,-1.2760963,-1.2325282,-0.93017626,-0.4365911,-0.47302455,-0.47229272,-0.54409176,-0.63120717,-0.67476714,-0.72851145,-0.75816655,-0.8041879,-0.8647199,-0.9343333,-0.9055184,-1.0240802,-0.9771223,-0.97374177,-1.0035031,-0.94117165,-1.0016427,-0.9816456,-1.0126811,-1.051595,-0.9629717,-1.0007316,-1.0432156,-1.0670924,-1.0434535,-0.5571299,-0.30596298,-0.41473824,-0.5619945,-0.73932797,-0.8381841,-0.9026628,-0.93140006,-0.65766114,-0.82468534,-0.91433203,-1.0747889,-1.159446,-0.8420663,-0.8040011,-1.3423929,-1.4031389,-1.279585,-1.0651349,-0.9599161,-0.88057864,-0.8355571,-0.81630087,-0.47686166,-0.80786157,-0.69983286,-0.8019126,-0.9049543,-0.83008265,-0.8518071,-0.7569448,-0.79558015,-1.1499393,-1.2958852,-1.2565243,-1.3667469,-1.321619,-1.1579671,-0.7933408,-0.78754497,-0.8097532,-1.0025412,-0.73111117,-0.18682691,-0.271286,-0.19400352,-0.2533038,-0.28532457,-0.26726547,-0.28583163,-0.4561144,-0.41370195,-0.42066914,-0.66149974,-0.9532665,-1.0211861,-0.9694891,-0.7824291,-0.67699987,-0.7302539,-0.75424755,-1.0140635,-1.1828928,-1.0955633,-0.8718482,-0.89208764,-0.7629108,-0.8689018,-1.0249617,-0.9256885,-0.89571035,-0.849718,-0.79937273,-0.19505769,-0.33254597,-0.42146593,-0.4698692,-0.5207407,-0.5907292,-0.6481502,-0.6246085,-0.7527037,-0.8212367,-0.81592315,-1.0858186,-1.0405631,-0.994239,-0.9946364,-0.9806192,-1.122595,-1.1388168,-1.1739237,-1.2875183,-1.3017232,-1.1073232,-1.2415819,-1.3675169,-1.2273042,-1.2145215,-1.142141,-1.1120155,-1.1309719,-1.156722,-1.2407416,-1.2379316,-1.2913647,-1.4122069,-1.3929795,-1.4192151,-1.4330555,-1.5567824,-1.4774443,-1.0979468,-1.2535872,-1.3189095,-0.27010798,0.4793744,0.20189756,0.019755013
+-0.9346671,-0.8796927,-0.94737005,-0.97434926,-0.95788133,-0.9323031,-0.9502927,-0.9714446,-1.0776615,-0.7151365,0.9217952,0.7483268,0.7126773,0.5663674,0.33998644,0.1121605,1.522763,1.2780304,1.246397,1.3785622,1.2935636,1.0738204,0.7573304,0.42855334,0.15722388,0.030809455,0.06789162,-0.2178697,-0.008520015,0.0916876,-0.11795514,-0.31723526,-0.50240624,-0.6403116,-0.7339527,-0.8422097,-0.8969935,-0.9077797,-0.8632731,-0.9021556,-1.0349385,-0.76906586,-0.4510939,-0.409114,0.21657863,0.6452748,1.1916574,1.1516008,1.0287652,1.0154791,0.63615096,0.32994056,1.7670181,1.3981761,1.0672365,0.5807264,0.50684905,0.1943334,-0.09200934,0.49543577,0.44141042,0.63881123,1.3150179,1.2190251,0.9528645,0.5264452,0.07710979,-0.25633693,-0.46279413,-0.6432464,-0.78865165,-0.87201834,-0.8900501,0.16772178,1.0804108,0.3166518,-0.039614208,-0.3334965,-0.5683226,1.2469704,0.7561684,0.382003,0.010536291,-0.31013104,-0.5178356,-0.66907567,-0.45393175,-0.26380965,-0.6093274,0.08500414,-0.084234975,-0.42406678,-0.64084065,-0.23937288,-0.4782765,-0.28148,-0.5728461,-0.07032936,-0.24059713,0.74046373,0.08942071,-0.2584313,-0.5508336,-0.7578181,-0.87662345,-0.59338164,0.90642846,0.116405524,-0.21957555,-0.5000093,-0.70164955,-0.84149086,-0.9199445,-0.97075,-1.0143168,-1.0125736,-0.9952146,-0.9490087,-0.9741409,-0.8977848,-0.35620043,-0.67131734,-0.85466427,-0.94747186,-0.99528766,-1.0146294,-1.0091331,-0.99613726,-0.99013305,-0.24843612,-0.12331761,-0.20780882,-0.5365639,-0.61988556,-0.6318873,-0.8250686,-0.90823984,-0.9331422,-0.9731159,-1.0195642,-0.8420447,1.222878,0.62437147,0.2661888,-0.057209276,-0.05824358,0.35140345,0.12721848,-0.19699886,-0.43049538,-0.61091477,0.0065466687,0.6864854,0.71027786,0.6407219,0.32885462,0.045120396,-0.24673823,-0.47768223,-0.63003206,-0.50035334,-0.5022884,0.9601618,0.66877013,0.38732308,0.2079443,0.56218797,0.444018,0.53711486,0.577082,0.7174944,0.5888588,0.32293662,0.064825155,-0.13551381,-0.33405605,0.124812,0.8408812,0.9836191,0.75760543,0.4953521,0.27043286,0.06873492,-0.17574209,-0.35365394,-0.47144914,-0.5791023,-0.58694273,-0.43934417,1.1039262,0.8897735,0.6141327,0.37830624,0.1519303,-0.008592479,0.2526609,0.41955072,0.2432735,0.104696564,-0.05165889,-0.14581779,-0.27491292,-0.3479277,-0.4109239,-0.47267258,-0.56181455,-0.6197903,-0.6775987,-0.6490902,-0.68858296,-0.6927151,-0.6939545,-0.683329,-0.71027386,-0.7303921,-0.5486823,0.8132794,0.9095722,0.7321014,0.70876074,0.96939355,0.9581114,0.95045435,0.762485,0.65123487,0.5925505,0.40262464,0.26966405,0.16156656,0.02807451,-0.055568613,-0.092977725,-0.06009484,-0.17924985,-0.28827572,-0.32654458,-0.26631176,-0.3309166,-0.3363356,-0.38958126,-0.43716264,-0.39747098,-0.29015622,-0.36108115,-0.41220808,-0.47697008,0.8553159,0.93657595,0.86485857,0.8795279,0.7700989,0.5218469,0.28446913,0.27459332,0.4041436,0.4470692,0.40126047,0.21381393,0.014658876,0.1459471,0.23265103,-0.30065757,-0.61444855,-0.5527358,-0.21194243,-0.043578558,-0.07022489,0.042284973,0.08471844,0.46660754,0.27798513,0.13090387,0.15166053,-0.03302256,-0.06032113,-0.06941479,-0.1146343,0.08793319,-0.14625558,-0.34912145,-0.5150667,-0.76589334,-0.7610613,-0.64306515,-0.21105224,-0.08334055,-0.00903248,0.05387672,0.07114998,0.9687182,0.9882969,1.1443405,0.9979842,1.022153,1.0136698,0.8361556,0.65435404,0.5639646,0.40665942,0.36765775,0.12729353,0.016592674,-0.028234713,0.037226,0.009159602,-0.062953435,-0.101080544,-0.1466395,-0.30552363,-0.3158847,-0.3259943,-0.30527553,-0.18155164,-0.33186802,-0.29002652,-0.47032368,-0.46729308,-0.3811986,0.88315296,1.2425896,1.1812682,1.1010514,0.8797375,0.7247745,0.5464471,0.5328256,0.5421021,0.2890568,0.08840767,0.057915933,-0.12635413,-0.24573961,-0.37911594,-0.37978357,-0.3287367,-0.41256368,-0.50208354,-0.61580056,-0.70640415,-0.7142936,-0.57008433,-0.6534658,-0.80181247,-0.7784507,-0.7641149,-0.7235075,-0.6123689,-0.6547394,-0.71157134,-0.8357885,-0.80875874,-0.8548736,-0.8618792,-0.8670896,-0.86747926,-0.81580114,-0.9382738,-0.864575,-0.79437435,-0.90059286,-0.92286754,-0.7165771,1.372165,1.3083576,1.1586293
+-0.8898723,-0.71016216,-0.86345774,-0.92217875,-0.9409642,-0.93154144,-0.9367931,-1.0192809,-0.8059247,-0.769583,0.3437537,0.7406402,0.96764106,0.8491994,0.5720231,0.30079174,1.3037567,1.3683195,1.2795999,1.5302403,1.566981,1.3351299,1.0167603,0.69114614,0.33876356,0.14778507,0.79892087,0.5000539,0.2013283,-0.014516942,-0.1698784,-0.14905533,-0.08250447,-0.12275123,-0.36388874,-0.5602871,-0.68406796,-0.6639545,-0.27185494,-0.5596466,-0.86895096,0.104744144,-0.080446176,0.29378846,0.098377,0.29919386,0.47300297,1.4064186,1.5882945,1.3886545,1.0244213,0.60383266,0.2782711,0.037680693,-0.21340644,-0.33348227,-0.070724644,-0.35036626,-0.008635335,1.673907,1.3197039,1.2830005,1.1543298,1.6507714,1.6608816,1.2223965,0.7369651,0.30138746,-0.058448233,-0.2959415,-0.48447698,-0.61671823,-0.4119143,-0.5885089,-0.7003374,-0.77971816,-0.841109,-0.87035394,-0.889014,-0.72485244,-0.62348694,-0.8144135,-0.92927563,-0.9701159,-0.96429193,-0.99243164,-0.57526606,-0.52201927,-0.036537685,0.36121076,-0.06837269,-0.38934267,-0.628139,0.23410639,0.3555464,0.40284288,-0.032049708,-0.41646194,-0.65159017,0.11230276,-0.23971346,-0.51717895,-0.75837237,-0.9061358,-0.9776783,-0.08600133,0.7495994,-0.0015389547,-0.3572786,-0.5942285,-0.76364744,-0.88677585,-0.9592943,-1.0139883,-1.0336735,-1.0191715,-1.0319967,-0.97641695,-0.7672194,-0.8427829,-0.9599849,-1.0369091,-1.0689446,-1.0481943,-1.0678908,-1.0605092,-1.0494251,-1.0367255,-1.0342133,-0.7967595,0.32023188,-0.055799715,-0.4046635,-0.5686617,-0.5020191,-0.75879097,-0.86150837,-0.90398574,-0.80005485,1.1018784,1.404493,1.4866478,1.2225361,1.0255904,0.7629658,0.48044342,0.07200418,-0.21475452,0.110763066,0.54703295,0.1480726,-0.12826481,-0.30705965,0.3360426,0.65586215,0.3398868,0.089333735,-0.20870668,-0.44375753,-0.58284867,-0.7092052,-0.7240607,0.9168046,1.0379562,0.70774543,0.35271096,1.1209636,1.2986608,1.4032767,1.25481,1.000822,0.6565992,0.29764497,0.012766816,-0.18526429,-0.33819282,-0.26443577,1.5841724,1.5241163,1.2677221,0.982501,0.72650874,0.48053455,0.18577564,-0.028149836,-0.1877079,-0.35831782,-0.24825466,-0.16368547,0.7874777,1.0947751,0.80477595,0.62129074,0.34218606,0.12575576,0.14514449,0.22937283,0.118531145,-0.04245942,-0.16793004,-0.24527755,-0.3566056,0.30913228,0.6564136,0.5009017,0.2797158,0.07755836,-0.10231029,-0.17472887,-0.32999796,-0.3739147,-0.4035113,-0.44852138,-0.49379474,-0.54030013,-0.58607584,0.97517127,1.2313465,1.2376621,1.3468461,1.4279612,1.4158994,1.3457267,1.1383853,1.0856522,1.0541185,0.91297364,0.802778,0.7033358,0.57564795,0.47800773,0.32900348,0.34145185,0.18340647,0.06401644,0.027687497,-0.031938754,-0.076165475,-0.14646986,-0.18561709,-0.20411175,-0.1596325,-0.105891265,-0.2647223,-0.2712553,-0.28715375,0.82532644,1.0129956,0.98888266,1.0003955,1.0147043,0.8288411,0.57397133,0.5904592,0.66583985,0.6272522,0.5523638,0.52041215,0.4074784,0.3761165,0.37961298,0.08361762,-0.1987611,-0.14695603,0.12135898,0.17525691,0.053125657,0.08596397,0.13837206,0.24382994,0.19660833,0.056848444,0.1038435,0.01733949,-0.13239199,-0.18039376,-0.18200207,-0.14879519,-0.088423185,-0.19430524,-0.3953055,-0.5840602,-0.57723284,-0.46114993,-0.26829553,-0.19307092,-0.12001567,-0.06490018,0.0409588,0.43903366,0.929346,1.150237,1.3491867,1.3686198,1.3615489,1.1284382,0.9346355,0.70854294,0.6427193,0.49029738,0.32788756,0.21070704,0.11963088,0.11630467,0.05209998,0.009221204,-0.072833635,-0.040919878,-0.126652,-0.3137539,-0.25941682,-0.22932622,-0.17698702,-0.30305687,-0.28454387,-0.4469459,-0.44125742,-0.45078385,-0.22974029,1.0427988,1.0026535,1.0133591,0.8728328,0.67805374,0.51947904,0.8169668,0.9981605,0.81498396,0.60770524,0.42422137,0.29499918,0.0344593,-0.13637924,-0.17591673,-0.25513428,-0.30557504,-0.42469597,-0.60168886,-0.6111361,-0.64454097,-0.5665962,-0.6365943,-0.7244835,-0.7527415,-0.76702535,-0.754375,-0.74697316,-0.7352414,-0.80671793,-0.85579056,-0.8032115,-0.8315034,-0.81884676,-0.84340054,-0.85953265,-0.891121,-0.89848375,-0.86641204,-0.92211056,-0.9908061,-0.979283,-0.9326931,1.1687319,1.082043,0.85784787
+-0.6937852,-0.5109345,-0.6689234,-0.7230942,-0.75576437,-0.7579743,-0.76277584,-0.8535551,0.4396548,0.3847319,0.3693593,0.28382683,0.97990763,0.73178893,0.46036896,0.24746019,1.526283,1.4756159,1.293464,1.545651,1.5657264,1.3937476,1.0749499,0.7752917,0.5150605,0.22391704,0.52372587,0.38833413,0.10718451,-0.04184393,-0.22526893,0.7285043,0.64779025,0.43165356,0.14194047,-0.09838625,-0.2934075,-0.40471023,0.99708307,0.62954944,0.36500785,1.3227127,1.0782772,0.9499528,0.8532816,0.6019957,0.3811047,0.91090107,1.2963886,0.9298779,0.6053823,0.31212413,0.06615379,-0.13438913,-0.2828875,-0.25340128,1.5946236,1.0958365,0.7959747,1.6416433,1.3888266,1.4539216,1.327436,1.6948104,1.4674197,1.266226,1.0013446,0.7326127,0.35670108,0.10261721,-0.16922477,-0.28684998,-0.08579668,-0.2582311,-0.45572633,-0.57112926,-0.6496204,-0.7024273,-0.7441869,-0.8177202,-0.7632732,-0.7975006,-0.83277583,-0.8415284,-0.842968,-0.8850986,-0.25395206,-0.39548337,0.67611074,0.42763877,0.0971599,-0.20558748,-0.45114332,-0.6199847,-0.7441871,-0.6156233,-0.6954667,-0.8226099,-0.8599887,-0.87246126,-0.84808576,-0.8725771,-0.9089067,-0.9124582,-0.8926766,-0.88320464,-0.86962897,-0.88530254,-0.8892706,-0.8914441,-0.89349645,-0.88614094,-0.89024985,-0.8964733,-0.8993021,-0.8900329,-0.8815082,-0.88226604,-0.32246765,-0.36040708,-0.59619606,-0.7607286,-0.8549481,-0.87105775,-0.8887557,-0.8863395,-0.889405,-0.8839191,-0.88288236,-0.8948916,-0.9124403,-0.8929918,-0.8836414,-0.28254995,0.95640266,0.7294253,0.73637044,0.83087784,0.8189672,1.0158838,0.96723485,0.855143,0.6910155,0.6536341,0.7023692,0.40398324,0.09206528,-0.18890122,-0.16639686,-0.09259119,-0.26726356,-0.41016376,-0.3168094,0.26065892,0.5620752,0.31620854,0.05505415,-0.17389649,-0.38390234,-0.521283,-0.6258248,-0.6767038,0.14266121,0.6011304,0.23420367,-0.077589564,-0.09352829,0.39310098,0.8766718,0.8487766,0.60272515,0.364385,0.12893209,-0.109521456,-0.3043602,-0.44264674,-0.5577272,0.8332129,1.3541396,1.198348,0.93989336,0.70338196,0.47669044,0.21170875,0.03553822,-0.114952676,-0.26391634,-0.35961276,-0.430659,0.33524552,0.8657415,0.62797433,0.43484756,0.2180506,0.05605284,-0.12992719,0.010020815,0.051140107,-0.07248505,-0.16886637,-0.24526703,-0.33297566,-0.3431577,-0.31891716,-0.38313076,-0.47397763,-0.53036094,-0.5937122,-0.5563696,-0.6025005,-0.59900963,-0.58382595,-0.5741203,-0.58936095,-0.6363474,-0.66456354,1.7611213,1.4485985,1.3264678,1.2571104,1.2946925,1.2151629,1.2703946,1.1260558,1.0271512,0.96597993,0.8149588,0.70586264,0.6093329,0.4740733,0.34949547,0.24345616,0.2910728,0.13395518,0.035189085,0.003007643,-0.017754577,-0.07643861,0.13211116,0.76141673,0.7195334,0.6844772,0.705724,0.5092309,0.36858445,0.19360498,0.8717546,0.91521585,0.79941505,0.8436843,0.8453164,0.7977793,0.6073469,0.58178544,0.6454546,0.5717725,0.51596135,0.48910338,0.43298888,0.39015037,0.34974676,0.22313708,-0.026098214,0.016760148,0.18847781,0.22838923,0.073897965,0.06420437,0.095144935,0.1452449,0.10805527,0.0093647465,0.09796756,-0.014005877,-0.073533915,-0.17766666,0.44779545,0.8968016,0.7997795,0.6215666,0.27949116,-0.067801885,-0.13815716,0.122217394,0.35131714,0.34223837,0.30410483,0.22307917,0.67884886,0.95797986,1.1011378,1.1129707,1.2615758,1.1117235,1.1022094,0.94408,0.9222143,0.6434103,0.5249834,0.4674602,0.28286892,0.18287441,0.16205749,0.13199067,0.10400034,0.032135226,-0.061301343,-0.0652316,-0.10603877,-0.26166457,-0.26333815,-0.22778144,-0.1272316,-0.1703428,-0.24549693,-0.37228677,-0.37499687,-0.38590243,-0.28201246,1.4500504,1.2644523,1.0776492,0.8533015,0.63818544,0.46655723,1.3183899,1.2053854,0.9812981,0.7239598,0.60770303,0.46174997,0.18100917,0.030065052,-0.0013763532,-0.0060530677,-0.116228975,-0.23784328,-0.41531497,-0.3951797,-0.46649927,-0.45012993,-0.44823343,-0.56802267,-0.57174814,-0.57899547,-0.518148,-0.5892719,-0.58590055,-0.7078304,-0.72355735,-0.7461504,-0.7034166,-0.7017315,-0.70347625,-0.7026948,-0.72530603,-0.75128627,-0.555614,-0.5638823,-0.7006668,-0.71104085,-0.82133263,0.10788912,0.24586913,-0.04069408
+-0.020373411,0.04092712,-0.24292696,-0.45655787,-0.5935303,-0.67636764,-0.75475675,-0.84029454,-0.8028222,-0.92065287,-0.93516517,-0.43225467,0.94135827,0.37075675,0.23236933,0.02627813,0.770826,0.7699963,0.65737915,0.6162021,1.00942,0.82436126,0.6841203,0.44205785,0.19197813,-0.104939945,0.28965276,0.14946848,-0.097908355,-0.16838562,-0.30421883,0.038782455,-0.13841513,-0.3500096,-0.52235407,-0.6292549,-0.7451813,-0.84794956,-0.86412144,-0.9056573,0.36702856,0.27646694,0.21251059,0.019563697,0.0108344555,-0.19406319,-0.41579562,1.011782,1.3569003,0.91007286,0.69420385,0.48336244,0.24092567,0.0070036426,-0.13311782,-0.33748475,-0.48627967,-0.5462222,0.53520435,1.1730013,0.9303713,1.0326742,0.9458276,1.1870248,1.092105,0.8806751,0.64036095,0.33989716,0.064100035,-0.15075314,-0.38382834,-0.5500851,-0.3757723,-0.41591382,-0.61560315,-0.7286379,-0.79839766,-0.8411749,-0.864336,-0.87153864,-0.8683211,-0.89700544,-0.9239198,-0.9316616,-0.91829157,-0.95155215,-0.90816104,-0.86710346,-0.39897057,-0.44684845,-0.61939144,-0.723712,-0.841986,-0.91497326,-0.944227,-0.9409087,-0.95165026,-0.94731224,-0.9438361,-0.9316752,-0.91974056,-0.92158043,-0.943007,-0.95361614,-0.93988776,-0.9242017,-0.9174236,-0.9191159,-0.91925335,-0.9135325,-0.91711164,-0.9184834,-0.9120619,-0.90967417,-0.9057665,-0.8905672,-0.57308376,-0.2856384,-0.5121768,-0.4413916,-0.49843365,-0.7156752,-0.8448926,-0.8961425,-0.9086939,-0.9101964,-0.9090116,-0.9110335,-0.90881085,-0.9094176,-0.9105191,-0.90609837,-0.89470184,-0.5137363,0.48880062,0.47613668,0.37262577,0.38154203,0.7656161,0.6014988,0.49426797,0.74114376,0.68276536,0.62975645,0.41914952,0.1554229,-0.09012254,-0.303285,-0.45996958,-0.4761433,-0.5281141,-0.5994293,-0.6348349,-0.14022711,0.3055516,0.27596447,0.25459296,0.06346852,-0.18275821,-0.40226695,-0.5694443,-0.67595476,-0.70197767,-0.71238416,-0.8040283,-0.83661526,-0.8195201,-0.8298769,-0.8464432,-0.88838124,-0.8799893,-0.8874424,-0.8688491,-0.875009,-0.8957533,-0.9224694,-0.93459725,0.8281906,1.09978,0.99638766,0.8080269,0.60234606,0.49461606,0.27414393,0.1155104,-0.05730442,-0.23785847,-0.34917408,-0.43227863,-0.30846438,-0.11705636,-0.2650775,-0.3690599,-0.52337015,-0.6218535,-0.29599133,0.082488246,-0.06232304,-0.16852674,-0.2604488,-0.34175456,-0.42747247,-0.37722307,-0.368361,-0.50020534,-0.64510787,-0.69277,-0.7426143,-0.7450715,-0.7645582,-0.7519523,-0.7611134,-0.7590673,-0.7885971,-0.82958746,-0.812978,-0.5864093,-0.27032274,-0.32528746,0.35140073,0.5587293,0.7040458,0.93231857,0.771694,0.7997085,0.78164446,0.6916525,0.6334232,0.5959025,0.49278462,0.33807233,0.2624233,0.3456983,0.17840111,0.04634752,-0.07411791,-0.0477063,-0.081679516,-0.11311781,0.25793177,0.38859978,0.37337452,0.41195178,0.22884825,0.13037264,-0.011718772,0.9850435,0.7647045,0.7999801,0.7744667,0.7968359,0.89808095,0.702929,0.65438646,0.60090107,0.5699134,0.520869,0.51708114,0.47657323,0.40438256,0.37081715,0.35134223,-0.0059245303,0.051232375,0.04271055,0.0089522675,-0.053313695,-0.07151037,-0.051780306,0.0034651384,0.022456937,-0.01687023,0.0027363077,-0.016081564,-0.16633072,-0.2877988,0.18063396,0.59331805,0.48751953,0.36735827,0.17903405,-0.19577122,-0.3272201,0.013415314,0.05853171,0.047697313,0.023736842,0.039336286,0.03472043,0.0492165,0.5796923,0.63918126,0.82837874,0.68304145,0.7155999,0.6004952,0.5236736,0.28573936,0.1345844,0.06461982,-0.048820175,-0.08627636,-0.13145363,-0.16513705,-0.21077329,-0.28215477,-0.3594864,-0.39021787,-0.35067374,-0.4410224,-0.47532868,-0.49680418,-0.43668783,-0.43439758,-0.51216626,-0.6037196,-0.6531952,-0.6330178,-0.19483435,1.0913477,0.7211267,0.6281589,0.46782416,0.30000496,0.10550781,0.79966164,0.71591127,0.5573143,0.34247398,0.26161852,0.09276865,-0.06670355,-0.2289966,-0.30221665,-0.3223709,-0.38196522,-0.44082147,-0.40643913,-0.065163486,-0.20330778,-0.25382334,-0.36459392,-0.5075644,-0.53363395,-0.54869026,-0.29497895,-0.30300424,-0.36551723,-0.5263058,-0.6364851,-0.7652421,-0.75582373,-0.7953449,-0.81541073,-0.8319051,-0.8622912,-0.88401973,-0.548847,-0.60974,-0.7711503,-0.82347554,-0.89566314,0.3774183,0.3249496,-0.04997898
+-0.3178332,-0.15493321,-0.37499756,-0.45174366,-0.55388916,-0.6168172,-0.6134264,-0.75121033,-0.7133064,-0.73113024,-0.42685544,-0.35183865,1.5389498,0.94864917,0.66322863,0.4192453,0.32325444,0.609452,0.700873,0.414083,0.2520539,0.10299335,-0.008352034,-0.10647764,-0.2157538,-0.43720424,-0.09989513,0.00839781,-0.316546,-0.11569161,-0.22101802,-0.20200673,-0.3591371,-0.5008707,-0.61244625,-0.6534258,-0.71479285,-0.8007429,-0.64094406,-0.7706331,-0.6859066,-0.6042871,-0.72872746,0.010596402,0.86672056,0.8354426,0.53029686,0.7589913,1.4780443,1.3242488,1.0064669,0.8480441,0.6212958,0.41032448,0.2725197,0.08525502,-0.08197538,-0.23245344,1.7016103,1.2689344,1.2715874,1.4591982,1.8383362,1.6806571,1.6024518,1.236633,0.9029194,0.5565412,0.21038687,-0.036371,-0.25097954,-0.43318504,-0.5130578,-0.5729054,-0.6253862,-0.6865848,-0.72919494,-0.7575073,-0.7722745,-0.8001614,-0.78840065,-0.72488266,-0.7866366,-0.8102524,-0.8389759,-0.4578659,-0.09066067,-0.33598435,-0.53403693,-0.6270957,-0.72589105,-0.77000344,-0.79345155,-0.80255926,-0.8255794,-0.83135915,-0.8381494,-0.8412994,-0.84987164,-0.8562918,-0.85921943,-0.8530608,-0.85474354,-0.85865474,-0.863497,-0.86845064,-0.8481195,-0.8586876,-0.87098634,-0.87774146,-0.8666488,-0.85472846,-0.85816985,-0.86005485,-0.8681749,-0.8686235,-0.31862664,0.9091935,0.6320978,0.40212637,0.011524551,-0.29581982,-0.5170907,-0.645502,-0.7358413,-0.771339,-0.803911,-0.8201016,-0.83047307,-0.84580934,-0.847566,-0.8532399,-0.85191905,-0.8440175,-0.61768365,0.39238027,0.72573245,0.95007795,1.2023209,1.0399213,0.78585804,1.4704418,1.5148137,1.2703916,1.0052954,0.7101003,0.41757166,0.15490842,-0.12070715,-0.28615525,-0.32219282,0.02993191,0.6112403,0.5317096,0.4803843,0.4563763,0.25048652,0.16284758,0.04925459,-0.15683249,-0.29757002,-0.40939987,-0.47135073,-0.47373384,-0.5169354,0.25242013,0.48934296,0.43429846,0.20995268,-0.03890256,-0.16821334,-0.30069932,-0.39795405,-0.4837395,-0.55428046,-0.6172787,-0.6487384,0.041720636,0.90584946,0.9238564,0.76243323,0.5090669,0.33217913,0.25000867,0.07462505,-0.07578068,-0.21933174,-0.3003025,-0.35498267,-0.3653272,-0.31755424,-0.36881524,-0.3878427,-0.5011232,-0.54552436,-0.4743312,-0.29015797,-0.4333729,-0.4955387,-0.5393641,-0.56626606,-0.59339285,-0.5795205,-0.4523666,-0.5233534,-0.6181904,-0.67563987,-0.6586841,-0.6805167,-0.6835654,-0.6185147,-0.6483634,-0.65951514,-0.68064755,-0.70489544,-0.7230574,-0.16827697,0.57263625,0.5165697,0.3840156,0.30005398,0.41711718,1.0447553,0.96062565,0.8945989,0.9533857,0.83468276,0.75431484,0.7150732,0.65074384,0.47706002,0.39303696,0.5082945,0.32316998,0.12697467,-0.013938792,0.00018561631,-0.0028562918,-0.12619221,-0.04978823,-0.11713039,-0.1359503,-0.041630812,-0.14949101,-0.21319163,0.077377595,1.6764201,1.4853985,1.7128749,1.5957235,1.4215398,1.4783735,1.4628608,1.265747,1.0805414,1.1210172,1.0964334,1.1009393,1.078979,0.9925848,0.9515967,1.102391,0.84639937,0.7097229,0.57955265,0.43768525,0.36285678,0.3706261,0.41043997,0.50352234,0.6401371,0.67514646,0.67648673,0.6939078,0.4931793,0.3577585,0.3268813,0.38662028,0.2681077,0.12010641,0.26568893,0.09330804,-0.021740831,0.14162397,0.06511975,0.03594833,-0.0016881749,0.026238538,0.044384368,0.022450365,1.1853063,1.1365807,1.143784,0.9876263,0.99235106,0.9398959,0.9263196,0.65133023,0.38385198,0.31509766,0.269574,0.17086583,0.13072312,0.21133482,0.09257645,-0.031171314,-0.18836093,-0.22610992,-0.16233969,-0.18559265,-0.28155792,-0.30756834,-0.27970752,-0.19328105,-0.3015399,-0.43856615,-0.48462898,-0.50288814,-0.52383333,0.98197186,1.0786633,0.7350286,0.5299175,0.4202083,0.22485754,1.2803233,1.1371703,0.92952037,0.6199809,0.58558375,0.40768152,0.19593257,0.05155175,-0.019338481,-0.0062841997,-0.042007394,-0.10925836,0.4944474,1.1101288,0.7781976,0.69893354,0.607037,0.4830285,0.40688643,0.38121685,0.45591596,0.32787752,0.21108793,0.048837848,-0.06927826,-0.16779542,-0.23896691,-0.28822005,-0.33222565,-0.37370208,-0.4239722,-0.47784698,-0.48223227,-0.45732898,-0.58804905,-0.6486119,-0.69358194,0.67064536,0.8600274,0.39993912
+-1.2120302,-1.1088076,-1.2522368,-1.274569,-1.281517,-1.2716738,-1.2721143,-1.337636,-0.8935662,-0.9922757,-1.1315589,-1.0925648,-0.18308562,-0.38385397,-0.72336566,-0.94569004,-0.99185586,0.020956673,0.049471118,-0.34582195,-0.5809193,-0.75531447,-0.8702524,0.1413869,-0.1366323,-0.55961424,-0.7442956,-0.9438236,-1.0799539,-1.0771928,-1.1553397,-1.1111525,-1.0771677,-1.111707,-1.1841583,-1.2180295,-1.2657125,-1.3294842,-0.7688291,-0.89054817,-1.08623,-1.1793265,-1.2255636,-0.29819658,0.18406755,0.2409251,-0.0935858,0.13451543,0.6364051,0.29369038,-0.08685725,-0.26141945,-0.45812488,-0.64164984,-0.79981774,-0.9182948,-0.9438702,-1.0691328,-1.1720042,-1.0908468,-0.9053732,0.22994038,0.26578215,-0.085224785,-0.16665357,-0.32191494,-0.59819806,-0.82123613,-0.84036,-0.9111562,-1.0653014,-1.1817875,-1.2403733,-1.2768075,-1.298378,-1.321094,-1.3306946,-1.3286455,-1.3206754,-1.3284152,-1.2203326,-0.973125,-1.1775856,-1.2702088,-1.3070779,-1.3281718,-1.1301332,-0.91494477,-0.99721813,-1.1418791,-1.1534891,-1.1833681,-1.2447622,-1.270415,-1.2808639,-1.2876611,-1.3142617,-1.3153396,-1.3195589,-1.3143563,-1.306603,-1.3179388,-1.3297892,-1.3331664,-1.3250096,-1.3122354,-1.3037031,-1.3206484,-1.3211381,-1.3303688,-1.2649384,-1.2380383,-1.2655277,-1.2693176,-1.2814848,-1.28898,-0.8168673,-0.49222046,-0.58535045,-0.64923346,-0.033608623,-0.41111678,-0.790928,-1.0023465,-1.1137837,-1.1754625,-1.2247294,-1.2430835,-1.251162,-1.2619003,-1.263146,-1.28304,-1.258534,-1.240366,-1.2721568,-0.52234805,0.50403225,0.60438377,0.2194086,0.14257336,-0.17307475,-0.49401057,0.8887647,0.3109379,0.08469237,-0.28346348,-0.5956091,-0.78745055,-0.9465482,-1.0042586,-0.943418,-0.7548127,-0.47245258,-0.37429446,-0.44005418,-0.4097047,-0.51507545,-0.6901918,-0.9185878,-1.0661261,-1.1141326,-1.1579335,-1.0866934,-1.0136294,-1.0445774,-1.1366849,-0.48732483,-0.28652775,-0.49776602,-0.697358,-0.82139754,-0.9344356,-1.0172479,-1.0730476,-1.1241558,-1.1622117,-1.1950014,-0.9827771,0.81679875,0.46217522,0.2156538,0.1949344,0.11658124,-0.29153943,-0.3604337,-0.4991213,-0.7234424,-0.8492692,-0.9278703,-0.9642459,-0.81588966,-0.8014934,-0.90002066,-1.0441937,-1.0968544,-1.1766316,-1.1924812,-1.1682372,-1.1730587,-1.1848762,-1.1988772,-1.2105417,-1.0793792,-0.85250556,-1.0004522,-1.1609405,-1.2118981,-1.1936733,-1.213962,-1.2339482,-1.1761528,-1.19206,-1.2034801,-1.1947368,-1.2509568,-1.283068,-1.2822282,-0.66947734,-0.32260087,-0.44616306,-0.5897187,-0.27058995,0.40711138,0.2186763,0.16729435,0.018422939,-0.1154717,-0.051826663,-0.1746873,-0.31717938,-0.52342653,-0.67247754,-0.61352503,-0.7095082,-0.84723115,-1.0038252,-0.94006896,-0.9501622,-1.0487077,-1.0974109,-1.039711,-0.98890877,-0.9268962,-0.9616394,-1.0034235,-1.1896234,0.5175203,0.8681195,0.70465285,0.4552732,0.35846025,0.18883744,0.21306899,0.063633,0.0857662,-0.04912915,-0.10693713,-0.14273524,-0.24658021,-0.22393548,-0.29852363,-0.26571274,-0.34645176,-0.4565031,-0.586306,-0.5602373,-0.6369145,-0.71623826,-0.7777026,-0.7884918,-0.8416519,-0.8139187,-0.8388401,-0.8135993,-0.9518068,-0.87870616,-0.92195773,-0.8858416,-0.95156276,-0.992265,-0.9698291,-0.9054618,-0.96446645,-0.9855753,-1.0366353,-1.0816448,-1.1374924,-1.2435534,-1.1546407,-1.1571412,-1.1409979,-1.1575158,-0.888771,-0.72888565,-0.7921755,-0.9035118,-0.97511137,-1.034782,-1.1007006,-1.1342463,-1.0802503,-1.0929784,-1.1049899,-1.0860947,-1.1131655,-1.1463089,-1.1818305,-1.2255952,-1.2523057,-1.2017074,-1.1477745,-1.2311325,-1.1844058,-1.1134299,-1.1581225,-1.2091508,-1.2732041,-1.2702233,-1.2847109,-0.9369333,-0.90145075,-1.0528123,-1.126715,-1.1730704,-1.2520959,0.09236831,0.050506704,-0.37387744,-0.66461,-0.81109357,-0.9359516,-1.0200804,-1.1092211,-1.1442244,-1.1160767,-1.0812323,-1.1305544,0.19137785,0.44872326,0.11833691,-0.09553724,-0.17087159,-0.046116747,0.15489021,0.09737455,-0.028532289,-0.028942525,-0.25719634,-0.5125376,-0.7441759,-0.88656926,-0.98378134,-1.0350006,-1.0743594,-1.1139858,-1.1633368,-1.210405,-1.1704171,-1.1485689,-1.2189589,-1.2531605,-1.278595,-1.1850442,-1.1751311,-1.2470832
+-1.0941567,-1.0323372,-1.1945342,-1.2348346,-1.2559965,-1.2451235,-1.2213883,-1.30808,-1.103216,-1.2185043,-1.2598844,-1.2442641,-1.2165399,-1.1627264,-1.2727337,-1.3122053,-1.3437235,-1.0743059,-0.8057293,-1.0675008,0.04408104,0.14429691,0.5005728,0.7272336,0.021379925,-0.35615364,-0.59579545,-0.8685801,-1.029367,-1.0207543,-1.1073811,-0.6393554,-0.44496024,-0.66540915,-0.94579124,-1.1006947,-1.1915731,-1.2795216,-1.0992515,-1.0845487,-1.2321703,-1.278671,-1.2831646,-0.9095944,-0.62804085,-0.042879157,-0.58585215,0.10523281,0.1171714,0.034530304,-0.375826,-0.6268428,-0.76845443,-0.93185973,-1.0656341,-0.7324243,-0.19746783,-0.7295731,-1.0345235,-1.1294534,-1.1624645,0.67870754,1.2091258,0.37325084,0.11279658,0.43844184,-0.013279252,-0.4380139,-0.7704247,-0.9216485,-1.0585583,-1.1655898,-1.2213182,-1.2461816,-1.2735486,-1.3137903,-1.3291564,-1.320497,-1.3191574,-1.3316628,-1.1225739,-0.9094218,-1.1520543,-1.277801,-1.3166679,-1.3384396,-1.3525414,-1.3165671,-1.2925117,-1.1436503,-1.1570743,-1.2228515,-1.312596,-1.3329197,-1.3521682,-1.3604331,-1.3793359,-1.3792715,-1.3787701,-1.3747693,-1.3643504,-1.3776643,-1.3930045,-1.3915129,-1.3855321,-1.3812501,-1.3727374,-1.3784362,-1.385575,-1.2289627,-0.9867785,-0.9968462,-1.2210041,-1.2935312,-1.3271258,-1.3370198,-1.3157682,-1.1291641,-0.96089613,-0.9895692,-0.97816765,-0.96197677,-1.2103744,-1.2830805,-1.299148,-1.315598,-1.3343992,-1.3395474,-1.3332276,-1.3407018,-1.3225132,-1.1877191,-1.2077161,-1.2873863,-1.2942408,-0.047590427,-0.019966476,0.8689214,0.040113844,-0.07969614,-0.40448147,-0.7006327,0.1972819,0.11255065,-0.37753668,-0.733479,-0.917905,-1.0358574,-1.1086495,-1.0579524,-0.98743844,-0.76387566,-0.657599,-0.30369052,-0.24885729,-0.35568273,-0.50288105,-0.6993628,-0.95977294,-1.1170856,-1.1630726,-1.2001929,-1.2308404,-0.8054941,-0.61928713,-0.9376066,-0.945114,-0.9147401,-1.0014989,-1.0870144,-1.1309677,-1.1662906,-1.1707742,-1.164177,-1.2243919,-1.2035072,-1.263123,-1.258863,0.6538142,1.3404797,0.63070595,0.3310884,0.31091985,0.0006201789,-0.11683639,-0.20124716,-0.47930002,-0.65909994,-0.8016155,-0.6541041,-0.45000607,-0.46881407,-0.6376457,-0.85525155,-0.9545449,-1.092861,-1.1527972,-1.1528033,-1.1581938,-1.1735808,-1.1728673,-1.198838,-0.9979346,-0.6400715,-0.7892828,-1.0907614,-1.1986735,-1.1805701,-1.2050982,-1.197448,-1.2066839,-1.1857455,-1.1978759,-1.1873773,-1.2253006,-1.2620454,-1.1273586,-0.2800679,0.102144785,0.07551206,0.0067066327,0.03703203,0.2293284,0.18046638,0.064118214,-0.08730427,0.027162887,-0.048241578,-0.15473747,-0.29327554,-0.4965135,-0.62840086,-0.62913626,-0.66021156,-0.85622656,-0.98738766,-0.9471111,-1.0173614,-1.036832,-1.057723,-1.0557017,-1.0063511,-0.9145367,-0.87744313,-0.9740912,-1.1433208,-0.96655226,0.13693139,0.5369716,0.12144411,-0.075985886,0.034685902,-0.031778984,-0.16384113,-0.12824893,-0.20503628,-0.40167412,-0.49584246,-0.6166348,-0.6307803,-0.68255514,-0.67392385,-0.675293,-0.7867815,-0.85828763,-0.9828944,-0.9837804,-0.97350955,-1.036553,-1.0288364,-1.0454141,-1.0348985,-1.0331657,-0.94680333,-0.98541534,-1.0593367,-1.0143104,-0.91847885,-0.98544824,-1.0664042,-1.0845501,-0.90817475,-0.9588711,-1.0309637,-1.1155319,-1.1522315,-1.1820562,-1.2226646,-1.2204523,-1.214006,-1.1644611,-1.1597462,-1.1191914,-1.1039491,-1.0947647,-1.068565,-1.0117633,-1.0613936,-1.1402254,-1.1431869,-1.0963719,-1.1817782,-0.5314595,-0.54155767,-0.8039892,-0.97302246,-1.0621042,-1.1319577,-1.208387,-1.1201577,-1.0437489,-1.1621343,-1.1430871,-1.0659697,-1.0629319,-1.1717237,-1.2222626,-1.2260814,-1.2467455,-1.1912652,-1.0491586,-1.1361618,-1.1596172,-1.174212,-1.2494948,-0.8850012,-0.8670916,-1.055384,-1.140333,-1.1356254,-1.151608,-1.1791043,-1.2369862,-1.2301767,-1.1876944,-1.1606619,-1.2308786,0.23310333,0.32331443,-0.016387634,-0.25042468,0.06448413,0.24005854,0.13028345,0.05279655,0.06404125,-0.053251542,-0.29959095,-0.47108483,-0.750534,-0.88751966,-0.99001694,-1.0542722,-1.1033334,-1.1348135,-1.1832526,-1.2515734,-1.1779586,-1.1456759,-1.2069001,-1.2128619,-1.2645612,-1.1589893,-1.142488,-1.2240599
+-0.87247247,-0.9542972,-1.0270424,-1.0119035,-1.0301691,-1.0118922,-0.9826462,-0.98796487,-0.9616231,-0.966769,-0.9547527,-0.9667871,-0.8787845,-0.8140484,-0.8966177,-0.82315946,-0.7633596,-0.04242804,0.64773387,0.2618216,0.03209535,-0.1654647,0.017620869,1.0183313,0.24411616,-0.10765057,-0.28142583,-0.50741076,-0.6542926,-0.6613829,-0.7552631,-0.19583642,0.20911318,-0.06287604,-0.40590632,-0.59881514,-0.7294173,-0.7826824,-0.7413003,-0.71898925,-0.7605892,-0.88591456,-0.7506314,-0.28529897,0.50867766,0.59566087,-0.016462527,0.36694944,0.31850675,0.17647147,0.046605594,-0.14841539,-0.27582213,-0.47681147,-0.5845823,-0.548592,-0.41934347,-0.39081255,-0.40355545,-0.26925176,-0.45049524,0.28878596,0.28324816,0.27435735,0.060461707,0.44551092,0.059981473,-0.28950283,-0.50925833,-0.62199223,-0.67888534,-0.6472886,-0.73085845,-0.82324064,-0.88910276,-0.9240608,-0.94160557,-0.94885397,-0.94478214,-0.85224426,-0.044050418,0.29027745,-0.17447111,-0.55742073,-0.7501377,-0.8556738,-0.89589024,-0.82789516,-0.703036,-0.7654109,-0.81702614,-0.86004066,-0.9418911,-0.9671501,-0.97637606,-0.9728974,-0.98087275,-0.9807472,-0.97839725,-0.98816717,-0.97466993,-0.97758603,-0.9841254,-0.9878727,-0.98767626,-0.9981978,-0.9921627,-0.9963051,-0.99302864,-0.941514,-0.6439221,-0.4738106,-0.5331189,-0.7759034,-0.908551,-0.9567857,-0.96242213,-0.26319546,-0.035275243,-0.24543375,-0.3949695,-0.6079952,-0.8051648,-0.9043815,-0.9640789,-0.9810072,-0.9837192,-0.93866765,-0.779575,-0.9404739,-0.98159826,-0.8181361,-0.696501,-0.85580254,-0.81180763,0.4806869,0.5642376,0.72727513,0.46448517,0.4265349,-0.008780621,-0.24847138,-0.22043878,1.0969313,0.22959691,-0.18420103,-0.49053985,-0.66384953,-0.7690306,-0.7992138,-0.44443607,0.1970669,0.393754,0.4929161,0.10270197,-0.0043375418,-0.072381966,-0.07377867,-0.25513008,-0.5523245,-0.71104693,-0.8063464,-0.8808799,-0.7925638,-0.7060313,-0.71310043,-0.46929365,-0.34211588,-0.372092,-0.42068595,-0.63398015,-0.6949488,-0.74217474,-0.839151,-0.83646995,-0.7817464,-0.8432218,-0.25280538,1.6470792,1.2169031,1.0516278,0.9575279,0.767699,0.6436948,0.53740895,0.41615233,0.030700989,-0.22466278,-0.39423537,-0.45090795,0.5690504,0.67689794,0.2957383,-0.027387895,-0.23911756,-0.42604095,-0.5412941,-0.6213451,-0.6764062,-0.7169073,-0.7493703,-0.78367406,-0.6924464,0.46990496,0.63863397,0.1656456,-0.037784107,-0.059927158,-0.24649283,-0.43380743,-0.5456321,-0.5948806,-0.6596205,-0.72193086,-0.75663596,-0.75732553,-0.657221,1.021859,0.9277335,0.68386036,0.48922998,0.5397731,0.8578395,0.6775997,0.62110764,0.5516676,0.6628508,0.6391786,0.58079785,0.4504633,0.29784787,0.16259986,0.20242047,0.10175579,-0.14667758,-0.36832848,-0.43152702,-0.5196462,-0.5362747,-0.587943,-0.48647183,-0.49583864,-0.4655242,-0.45887107,-0.58580613,-0.7759919,-0.723869,-0.028291278,0.4616595,0.16695604,-0.025524326,-0.028413005,0.16785976,0.025314607,-0.048384584,-0.23834601,-0.34896246,-0.3934772,-0.39180806,-0.32041413,-0.41719866,-0.35915494,-0.35229832,-0.51825535,-0.6288738,-0.8248785,-0.61395717,-0.556743,-0.6322228,-0.6707167,-0.6966678,-0.6979352,-0.6093105,-0.092640094,0.08856989,-0.18634742,-0.29442054,-0.27861324,-0.42862403,-0.45566434,-0.40713304,-0.20953822,-0.35563403,-0.5640096,-0.6776317,-0.72399753,-0.76774424,-0.78789496,-0.7661603,-0.7545128,-0.7722149,-0.80251944,-0.8205938,-0.64491236,-0.6174777,-0.5823581,-0.59490055,-0.6438399,-0.7281573,-0.79684454,-0.74022406,-0.8428284,0.45303714,0.6474392,0.33984238,0.028785743,-0.2190946,-0.4237519,-0.21221453,0.28894728,0.2568165,-0.058988594,-0.21835762,-0.27791327,-0.3891143,-0.5705192,-0.70341086,-0.7476152,-0.79471576,-0.78150856,-0.7148054,-0.7568403,-0.804502,-0.81577736,-0.9031359,-0.8590734,-0.721141,-0.8489158,-0.8872671,-0.90022314,-0.9240941,-1.0032179,-1.0210688,-1.0021718,-0.94864917,-0.95365286,-1.0173258,-0.18405199,0.77092737,0.23976257,-0.03998094,0.15103555,0.38422406,0.6180496,0.69316614,0.81204534,0.8863622,0.52379394,0.30529252,0.015882768,-0.19173905,-0.40616333,-0.5387488,-0.64850557,-0.70472467,-0.7706112,-0.81196535,-0.81052214,-0.82971,-0.85157526,-0.8663676,-0.89779097,-0.8369677,-0.83659256,-0.89478654
+-0.37551934,-0.6260007,-0.7899171,-0.8006905,-0.75592077,-0.39064208,-0.06896309,-0.46862388,-0.7255281,-0.44706005,-0.39270547,-0.51720285,0.15367898,0.8843291,1.3009329,1.5320883,1.3912394,1.272969,1.4272509,1.4240563,1.6329775,1.2743275,1.2258903,1.132436,0.9693569,0.9196064,0.89670926,0.7817723,0.72383595,0.67294335,0.5900203,0.4655707,0.4461727,0.35878062,0.18589738,0.23766482,0.19780594,0.062427577,-0.017525695,-0.14745975,0.023975052,6.3188374e-05,-0.0020675287,-0.036811493,0.023033403,0.1513758,0.12004992,0.042510416,-0.014521688,-0.055686243,-0.0982758,-0.18231681,0.55799735,0.49764526,0.36114717,1.5241644,1.7354116,1.6493397,1.390378,1.1564171,1.666708,2.1473851,1.9552276,1.7929718,2.1806388,1.8774545,1.9226899,1.6050336,1.2952764,1.0172064,1.4793813,1.4871604,2.2730155,2.0802238,1.5091227,1.5683436,1.327132,1.5863061,1.3313498,2.2338529,2.1306336,1.6745043,1.7438729,1.8465625,1.339818,2.05514,1.8012488,1.8697919,1.4988205,1.3385881,1.4266133,1.0991552,0.8408435,0.6307885,1.2182019,1.5136883,1.5100517,1.5637517,1.9847758,1.3940108,1.268271,1.4111178,2.1876626,2.3234391,2.3226378,1.9379879,1.7375927,1.6130546,1.3866818,1.4115984,1.6382563,2.0681357,1.638982,1.5001683,1.7614986,1.3905939,1.2498877,1.1305968,0.96276164,0.71345675,0.4893288,0.33915204,0.6381558,1.029834,0.73143643,1.699187,1.6619648,1.3175718,0.99936926,0.7134391,0.9268596,0.8750707,0.62337244,0.63974714,0.6455619,0.5104014,0.85783154,1.294796,0.9841407,1.1390438,1.169411,1.0826198,0.8250023,0.5355374,0.37138528,0.4453243,1.0280378,0.78758633,0.56013083,0.35781765,0.5768862,0.73349226,0.552688,0.3435636,0.120984845,0.07249856,0.3656076,0.92833734,0.8131716,0.8144914,0.773336,0.96290636,0.7930456,0.68258405,0.7346677,0.81327355,0.6819327,0.58382094,0.78308356,0.89567554,0.49636483,0.7438018,0.7157973,0.5309407,0.5708259,0.37020034,0.7150383,1.2407761,1.3483373,1.264797,1.0557365,0.9285706,0.8091391,0.71824265,0.6687816,0.5529468,0.34280318,0.5965284,0.6858362,0.502145,0.51163673,0.4771412,0.39906386,0.38470948,0.36343268,0.29300267,0.4012766,0.3739695,0.24522537,0.42176372,0.6429122,0.6512661,0.52486885,0.2929375,0.42282605,0.72759384,0.819039,0.69099987,0.5741971,0.7020899,0.6718774,0.6089552,0.62073493,0.7072662,1.0832844,0.8790019,0.76850057,0.72642475,0.68327844,0.6243253,0.59513867,0.52292055,0.5533603,0.6084149,0.2942454,0.3304468,0.37224594,0.31655517,0.18448672,0.32377672,0.41847086,0.08069286,-0.15807006,-0.34302178,-0.37218097,-0.2861418,-0.116549335,-0.14708534,-0.11222949,-0.3467999,-0.45272523,-0.46837556,0.06604952,-0.11637803,-0.5522856,-0.71819353,-0.4786377,-0.42294753,-0.6003245,-0.12965083,-0.096630685,-0.41673434,-0.56901795,-0.61134076,-0.60926884,-0.64443004,-0.6495162,-0.6521685,-0.6344265,-0.6469964,-0.6354168,-0.6318027,-0.6750933,-0.550058,-0.68259895,-0.66031855,-0.6868212,-0.7003504,-0.70063746,-0.39916742,-0.6225489,-0.64130235,-0.713031,-0.7991668,-0.8851044,-0.90644157,-0.9168172,-0.9009486,-0.92597914,-0.9178047,-0.93537045,-0.93207335,-0.9175416,-0.8995253,-0.8589364,-0.9051888,-0.90115243,-0.8937361,-0.90466154,-0.9371952,-0.931177,-0.9323349,-0.86805826,-0.8088777,-0.84759736,-0.46751285,-0.46397072,-0.47917414,-0.5192863,-0.5915266,-0.7703854,-0.8757253,-0.892018,-0.8737598,-0.82151604,-0.7332809,-0.87402755,-0.8741045,-0.8902277,-0.88686895,-0.894578,-0.8777926,-0.84992754,-0.8755603,-0.891042,-0.8384002,-0.8711246,-0.8447223,-0.8436689,-0.80713665,-0.8777733,-0.8378836,-0.60123515,-0.46126205,-0.7222431,-0.51406616,-0.55819255,-0.61788654,-0.53853995,-0.762666,-0.8171315,-0.7834332,-0.82459307,-0.8534393,-0.82271004,-0.81990385,-0.8751836,-0.7834263,-0.64183325,-0.6589738,-0.57602215,-0.6839247,-0.810122,-0.8220669,-0.82095647,-0.84883094,-0.8379138,-0.86991113,-0.8404649,-0.72682685,-0.24596033,-0.65916145,-0.38897616,-0.34556526,-0.5497428,-0.7493285,-0.47311264,-0.37837595,-0.37449855,0.15514934,0.25201842,0.02348692,0.2819806,0.763667,0.9565854
+-0.3064883,-0.6215672,-0.75123966,-0.8791826,-0.75777876,-0.32860917,0.054247566,-0.4720193,-0.74711967,-0.38254562,-0.40309414,-0.64593583,-0.005607657,0.6121245,0.5616185,1.3608978,1.5429494,1.7015346,1.595071,1.5374144,1.4537528,0.87556124,0.6508107,0.5200033,0.52107406,0.4487645,0.3837006,0.27436253,0.16523266,0.116179205,-0.018707283,-0.07723685,-0.11830964,-0.25168628,-0.3009123,-0.32579908,-0.39865357,-0.47854286,-0.49712926,-0.39142105,0.07126091,0.05261091,-0.030546404,-0.18772137,-0.18671402,-0.23294884,-0.37446785,-0.41403133,-0.46081364,-0.4936875,-0.520229,-0.60684013,1.2764375,1.0519191,1.4482172,2.4589314,1.8308104,1.8642792,2.5052233,2.5648708,2.6798708,2.7979274,2.537893,2.0759957,1.9911244,1.479105,2.124917,1.779824,1.1493951,0.6347872,2.0087707,2.0898588,2.1003606,1.8653699,1.6142349,3.2327137,2.549512,3.3007374,2.9264066,2.7144537,2.5018666,1.9221427,2.021189,2.3259578,1.6176283,1.2692893,1.0896708,0.98472834,0.750257,0.58229077,1.3907464,1.1303163,0.927552,1.2570126,1.1947508,1.135998,0.9543907,1.8654296,2.1871269,1.7873181,2.220013,2.8797646,3.0962434,3.005875,3.0813894,2.7603726,2.3441565,2.56952,2.2129357,1.5216475,1.1073468,1.7534894,1.4712217,2.2350824,2.5551186,1.8022895,1.7357197,2.123544,1.6040779,1.1228356,1.5243199,1.439912,0.93560845,1.0929644,0.5389384,1.9573047,1.9682773,1.3842511,0.98917526,0.58114696,0.59134984,1.2762859,2.6577945,2.2284126,1.7762483,1.4465808,1.0257431,1.0656182,0.84259725,1.8260876,1.8338172,1.6748445,1.2231445,0.7168351,0.48783505,0.56119215,0.4381119,0.25707453,0.18720058,0.13442385,0.13734558,0.03505686,-0.17599091,-0.3389562,-0.42428023,-0.4313783,1.0182232,2.2906656,1.5961674,1.5363523,2.0751631,1.6491799,1.2633955,0.8731708,0.7099408,0.60591674,0.34188586,0.08806326,0.12994933,0.32418883,0.1289702,0.09348468,-0.028597854,0.012421958,0.2625857,0.04249107,1.2076427,1.4562037,1.5002868,0.9843623,0.6012424,0.5459254,0.3549677,0.22012109,0.08487647,0.018546827,0.11517999,0.6549408,0.42740065,0.28604499,0.19982141,0.09594773,-0.0059258714,-0.034435578,-0.10089534,-0.47982717,-0.22062758,-0.06785286,-0.22048268,-0.18766299,-0.25671667,-0.19120699,-0.38609865,-0.3719272,-0.36660695,-0.32764465,-0.3725821,-0.3847603,-0.008210368,0.15055713,0.09021448,0.17670736,0.08400166,-0.037070893,0.13164401,0.037106715,-0.020256072,-0.06768029,-0.08564492,-0.117508985,-0.16916072,-0.25597313,-0.22160208,-0.24383074,-0.5024762,-0.45308334,-0.40590233,-0.46996367,-0.4123739,-0.37048972,-0.5090197,-0.7622089,-0.95365787,-0.9957533,-1.0553738,-0.75196683,-0.83242905,-0.79678285,-0.8424688,-0.9126649,-0.93310857,-0.3702831,0.026410975,-0.13687384,-0.37765142,-0.7297064,-0.59215105,-0.6219808,-0.7844604,-0.35569862,-0.6115925,-0.7317614,-0.7652508,-0.70333123,-0.6254615,-0.74494994,-0.79436255,-0.7998157,-0.74307376,-0.7410338,-0.7395507,-0.71072984,-0.7900251,-0.58331376,-0.6322778,-0.74984884,-0.80741656,-0.8068509,-0.76261497,-0.69067407,-0.8163084,-0.80867463,-0.7842121,-0.82172835,-0.8391133,-0.8439144,-0.7488328,-0.73312926,-0.78803045,-0.781755,-0.790109,-0.78268826,-0.7622614,-0.7087956,-0.7047223,-0.741449,-0.7692355,-0.72757465,-0.7568377,-0.79410446,-0.79939103,-0.7903086,-0.6758114,-0.6503606,-0.5901431,-0.4036647,-0.46500224,-0.5222863,-0.6855804,-0.5719627,-0.64042985,-0.7693423,-0.7933303,-0.79215825,-0.68386006,-0.38364872,-0.7404666,-0.78556335,-0.81139654,-0.7899112,-0.78844845,-0.74490047,-0.6160032,-0.69201815,-0.7147449,-0.6431722,-0.7032542,-0.7416768,-0.7706205,-0.7568977,-0.74634916,-0.6872381,-0.47187716,-0.4679122,-0.40267742,0.02951429,-0.08568435,-0.054199956,-0.31733584,-0.34666854,-0.5284493,-0.5946227,-0.6462711,-0.587158,-0.63040346,-0.5827582,-0.66518337,-0.58238995,-0.49743152,-0.13091445,-0.3886016,-0.5066365,-0.6884557,-0.6626917,-0.6799185,-0.67008567,-0.6580051,-0.7195871,-0.68758017,-0.47315872,0.038856007,-0.42344862,-0.11908684,0.15403834,-0.13215318,-0.51426107,-0.06104795,0.19735667,0.18898824,0.87273186,1.185554,1.4027584,1.3488485,1.1541653,0.81048775
+0.08890666,-0.24415284,-0.14168853,-0.41778916,-0.5068756,-0.254241,-0.24831343,-0.4973725,-0.7670486,-0.5647396,-0.64426565,-0.70328903,-0.50558925,-0.2691418,-0.33920595,0.7329723,0.6596196,0.5630966,1.2685112,1.3696321,1.1637676,0.7860552,0.524826,1.0583237,2.2526417,1.7597501,1.5268552,1.2830555,1.0544809,0.85864335,0.5273237,0.31536716,0.25706518,0.10128118,-0.036456965,-0.10114815,-0.15040523,-0.31423616,-0.37122434,0.17771837,0.8162676,0.81342554,0.48570767,0.24058938,0.073095,-0.032254912,-0.18362796,-0.31083268,-0.37176615,-0.39842263,-0.42927396,-0.5492593,0.87480223,0.89992505,1.0607142,2.2367797,1.7760218,1.48315,1.3232147,0.72643626,1.8597465,2.0017292,1.4704367,1.4571193,1.7107196,1.2076821,0.8274417,0.5971082,0.27330372,0.079461776,0.13294083,0.16927823,0.17345676,0.6582806,1.9308896,3.0892348,2.530624,2.1742043,2.6106007,2.366909,1.9396149,1.4057295,2.1707075,2.0859663,1.2881373,0.86504626,0.6404539,0.47851008,0.32975072,0.20703748,1.0565339,0.9768692,0.41017878,0.13359877,0.062706344,0.18643259,0.17316878,0.4476902,0.6708171,0.44288838,1.7897238,2.7099512,2.7285848,2.2586865,1.8254302,1.5867283,1.1525853,1.0712119,0.8078543,0.51556224,0.2925733,0.2090192,0.14049745,0.102082334,0.30941895,0.09444468,1.0748901,1.941401,1.4195199,0.9936865,0.598328,0.34194577,0.11661603,1.2796283,1.0382308,1.7295431,1.5015068,0.8884678,0.41743824,0.08206675,-0.09640799,1.9349594,2.509431,2.2676654,1.8570356,1.6309106,1.3978301,1.0576805,0.871246,2.0351243,2.1302397,2.0603015,1.5939412,1.0086694,0.5827857,0.5757431,0.35796052,0.15190104,0.1978804,0.064303406,-0.07068833,-0.13313073,-0.28852132,-0.3872377,-0.44718337,-0.47565305,-0.57116514,0.23383558,0.92175996,1.2643118,1.2829198,1.0149102,0.98702884,0.6244551,0.41702324,0.3253723,0.0747663,-0.11841922,-0.085579716,0.093503885,-0.11452641,-0.15527302,-0.2345894,0.0122388825,-0.16176808,0.39037314,0.60595924,0.55236936,0.5835387,0.36321664,0.19682309,0.0500763,-0.057965778,-0.24878731,-0.2693124,-0.31984872,0.06889007,0.6798694,0.44738045,0.3325344,0.08865204,0.025636353,-0.07601295,-0.06157907,-0.032389216,-0.37818086,-0.2808305,-0.172158,-0.22985989,-0.2806006,0.07745192,0.04132109,-0.15185696,-0.2172643,-0.23953944,-0.2774281,-0.33647794,0.15202057,0.8127912,0.51819,0.40082857,0.4677894,0.307699,0.15913686,0.14845583,0.087111,0.032297976,-0.031898,-0.09408059,-0.14643732,-0.16794723,-0.23795053,-0.24455407,-0.27184632,-0.38817075,-0.5140306,-0.36148244,-0.3986141,-0.3493958,-0.33325654,-0.39431047,-0.48679352,-0.83180064,-0.8699374,-0.9839479,-0.54445386,-0.62884873,-0.596537,-0.6954771,-0.74433595,-0.7587545,-0.017289944,0.28267968,-0.0065018013,-0.13811606,-0.31184655,-0.40953052,-0.5201037,-0.5551933,-0.5717748,-0.73385066,-0.781323,-0.9040625,-0.820263,-0.69944584,-0.7854466,-0.8180363,-0.86243486,-0.86231256,-0.7056156,-0.7069484,-0.7376746,-0.7985612,-0.6939664,-0.73140144,-0.8410787,-0.86566603,-0.8591619,-0.6162769,-0.4860857,-0.71648496,-0.7183979,-0.7509719,-0.79435647,-0.82325214,-0.82962644,-0.31010664,-0.58761364,-0.60637033,-0.616531,-0.6391176,-0.6498765,-0.6253804,-0.5663001,-0.59773445,-0.63078994,-0.6838726,-0.6573957,-0.6967398,-0.72624296,-0.7375229,-0.7261523,-0.6704349,-0.6747515,-0.63260394,-0.50900155,-0.5823076,-0.6629114,-0.6372861,-0.51459914,-0.5949054,-0.74021673,-0.76589596,-0.7483561,-0.647938,-0.32679743,-0.69494617,-0.74768674,-0.76518106,-0.74569947,-0.7327666,-0.71568227,-0.67697203,-0.71595764,-0.74724185,-0.6900971,-0.64963233,-0.6932633,-0.73526824,-0.7151278,-0.7197187,-0.6556661,-0.47400784,-0.32790703,-0.22231454,0.30225846,0.046210535,0.5502639,-0.112058274,-0.29496604,-0.44459367,-0.5225673,-0.48570228,-0.54316473,-0.55412704,-0.62831575,-0.68523765,-0.53956795,-0.28058156,0.49405134,-0.09097018,-0.4278952,-0.5498198,-0.62083375,-0.6661604,-0.5751585,-0.5915482,-0.6806595,-0.6583727,-0.40464064,0.11533109,-0.16099289,0.406367,0.9250854,0.20924005,-0.29074946,0.037056394,0.76512367,0.5678056,0.92188877,1.0877115,0.7790705,0.5734383,0.380233,0.31798333
+0.40421212,0.48883384,0.6106057,0.5828544,0.29059517,0.22927052,0.24153802,0.25187,-0.24282324,0.075290225,0.07266726,-0.25331163,-0.0343718,-0.1555078,-0.4032715,-0.03054031,0.77827126,1.3378079,1.4387102,1.2197254,1.1440046,0.7955607,0.51754946,0.30112803,0.28258747,0.626001,1.273807,1.3714974,1.3398688,1.185307,0.97299033,0.6789654,0.571835,0.393107,0.111394115,-0.08086967,-0.15337554,-0.25900865,-0.25567907,0.9642322,0.90816355,0.8974042,0.67103577,0.7505952,0.5079667,0.19350338,0.035533022,-0.12806106,-0.2516818,-0.2980888,-0.3617988,-0.51223636,0.7839054,0.48994848,1.3438878,1.4204541,1.6856627,1.7949961,1.69415,1.1400033,1.1696296,1.1039948,0.50249296,1.5098543,1.662807,1.1674204,0.74697244,0.5154736,0.17303786,-0.086232,-0.2709039,-0.38941237,-0.4509381,-0.34548187,0.202809,0.5390703,0.04941634,-0.04921695,-0.13947809,-0.2482689,-0.4115175,-0.59916395,-0.43395334,-0.44260818,-0.66319406,-0.5951949,-0.7368317,-0.7651719,-0.7663234,-0.8055169,-0.8255886,-0.7795452,-0.8256139,-0.81093323,-0.8457339,-0.7718686,-0.6550282,0.66665804,0.57754505,0.110614516,0.63461894,0.63026994,0.2245372,-0.22973233,-0.3947131,-0.50955576,-0.6084551,0.41857463,-0.032652892,-0.26351285,-0.38188338,-0.5911938,-0.23872343,0.45912483,0.41095495,-0.14568642,0.41890562,0.9514678,0.60184693,0.27684388,-0.10776802,-0.34867248,-0.49844402,-0.5693229,-0.6891165,0.2099102,0.061518244,-0.32869276,-0.5238759,-0.64409024,-0.73888963,-0.7912276,1.0099937,1.7838547,1.3850019,0.92344666,0.77510566,0.9866044,0.6278293,0.20760977,0.54664284,1.1970358,0.76379466,0.37404802,0.017679103,-0.021701038,-0.18982413,-0.370915,-0.39656466,-0.5455666,-0.5832521,-0.5987156,0.46260476,0.5017673,0.20192116,-0.021650985,-0.22000861,0.43992338,0.82599056,0.6236546,0.46336088,0.49099708,0.7893667,0.5017752,0.3157276,0.38270432,0.058026068,-0.11596543,0.17901051,0.37984955,0.16087106,-0.020449862,-0.19248673,-0.27872512,-0.31493098,-0.43599743,-0.27157354,-0.21988618,-0.31555694,-0.43793738,-0.52188414,-0.5911964,-0.61692834,-0.6275658,-0.67384946,-0.6965656,0.014134534,0.68498385,0.49197033,0.50943685,0.3956074,0.24909037,0.07941309,0.03554741,0.10260739,-0.08100935,-0.106596924,-0.17471635,-0.21656257,-0.37005538,-0.33537596,-0.22201523,-0.18146628,-0.24211839,-0.28515124,-0.35512722,-0.36082202,-0.35779884,0.20957512,0.292866,0.24531314,0.07662856,0.3469293,0.29742727,0.28987348,0.24954045,0.15276355,0.10421777,0.033130758,-0.10587218,-0.104514964,-0.01837816,-0.06734144,-0.12244014,-0.15798259,-0.27750194,-0.18657324,-0.19577134,-0.22020784,-0.20904002,-0.19306323,0.19147182,-0.31405622,-0.42221785,-0.46304196,-0.15614843,-0.095747925,-0.3937718,-0.41322225,-0.46037406,-0.48333132,0.39762002,0.3970393,0.057395376,-0.01958879,-0.05131557,-0.45006502,-0.5136402,-0.5616133,-0.7502449,-0.92965496,-0.9419012,-1.0143323,-0.98471,-0.7774406,-0.9798455,-1.0071086,-1.0020266,-0.98397136,-0.9197264,-0.9155624,-0.9541254,-0.9899161,-0.94727206,-0.8713751,-0.91753745,-0.8494245,-0.846054,-0.48599064,-0.4218372,-0.70500505,-0.7079496,-0.73610586,-0.7128767,-0.7213787,-0.7196912,-0.5641049,-0.7260131,-0.7392309,-0.73701453,-0.7560399,-0.745231,-0.7686653,-0.7765248,-0.7666236,-0.7881426,-0.80226135,-0.7693844,-0.79189193,-0.78125185,-0.7781602,-0.7702631,-0.77157104,-0.7249808,-0.6171899,-0.5098168,-0.59957033,-0.6458048,-0.57123333,-0.46215796,-0.5533878,-0.70619303,-0.70801795,-0.6220348,-0.580073,-0.49936426,-0.6116595,-0.75382566,-0.76958585,-0.74511653,-0.70015484,-0.6958461,-0.6499665,-0.7331576,-0.7671822,-0.6427749,-0.29849622,-0.2748127,-0.45403093,-0.32708782,-0.28668308,-0.07246726,0.25192842,0.30484378,0.31833124,0.8989017,0.9442854,1.2306623,0.83446985,0.11202975,-0.3722026,-0.25711107,-0.033704825,0.24917632,0.013702698,-0.30213737,-0.49985218,-0.15465415,0.5491655,1.1712524,0.7702496,0.058556937,-0.3360729,-0.6706228,-0.8010255,-0.58665097,-0.6436575,-0.72479147,-0.68385434,-0.33001697,0.33439198,0.2604459,0.91733027,1.2189171,0.92924833,0.23505893,0.42886454,1.001387,0.9310257,1.0555288,0.96335137,0.79586995,0.66970557,0.68606484,0.650679
+0.4014527,0.4579984,0.57025784,0.52778053,0.21680048,0.2578946,0.0971776,0.09756923,-0.22930133,-0.043481447,-0.039315008,-0.15236238,-0.25036934,-0.32860315,-0.41181737,-0.43263328,-0.21181962,1.1528542,1.2244585,1.2213173,1.5988832,1.4048302,0.92898643,0.5560145,0.36048517,0.27003518,1.6671519,1.712296,1.716241,1.765025,1.8663876,1.584275,1.2096299,0.8813698,0.43657136,0.117556155,0.29782793,0.39249283,0.92279196,1.3879178,1.894839,1.5897083,1.050834,0.8698746,0.5129574,0.29050484,0.08553335,-0.04163281,-0.22554713,-0.32759196,-0.2992186,-0.4217986,0.64800036,1.2107893,1.5908734,1.5623211,1.4725103,2.1893327,1.8990221,2.0896542,2.2588148,1.8626933,1.178089,0.98471475,1.216366,0.64223206,0.2531289,0.030060038,-0.19764695,-0.46233922,-0.6434972,-0.700013,-0.796335,-0.19732472,0.3752586,0.8123591,0.19453946,-0.20850638,0.61465496,0.64620054,0.20345235,-0.20359623,-0.3836594,-0.44911277,-0.64429885,-0.7394841,-0.70284367,-0.72118944,-0.69438577,-0.7438994,-0.79835796,-0.7786356,-0.6553595,-0.40721524,-0.6348849,-0.79693663,-0.77982247,0.18062624,0.12742504,-0.33392066,-0.43078518,-0.5281524,-0.6543286,-0.77872664,-0.8490348,-0.7395216,-0.79170203,0.70804906,0.07329537,-0.22507334,-0.3857567,-0.6084001,-0.75528526,-0.44067425,-0.08005922,-0.4698093,-0.662146,0.22946543,-0.04244045,0.43865746,-0.115111895,-0.39595315,-0.37905356,-0.41566932,-0.6397564,-0.75676644,-0.86122906,-0.9340869,-0.9896667,-0.9618349,-0.9956105,-0.8715525,0.3737355,1.3202641,0.87037516,0.3923267,0.20823792,0.12588932,-0.19941595,-0.4266619,0.16098091,0.8887032,0.39864233,0.0064410195,-0.25981086,-0.4104752,-0.55075526,-0.669912,-0.74727565,-0.7804749,-0.8400052,-0.876082,-0.8928411,-0.861752,-0.84007215,-0.8164333,-0.87776685,0.52379614,0.72822076,0.87185067,0.7588941,0.7736299,0.91024995,0.50689244,0.2237097,0.30040485,0.044219285,1.453102,1.2157934,0.9836769,0.61129725,0.37047625,0.18376884,-0.012590177,-0.032758705,-0.1643703,-0.21604407,0.19887263,0.15016815,-0.036593206,-0.15712199,-0.299362,-0.36319038,-0.40829504,-0.48283863,-0.4962014,0.3223999,0.75279725,0.65617853,0.9460858,0.88258463,0.70651877,0.49129665,0.29898223,0.30293497,0.16725054,0.010566562,-0.16147876,-0.20820227,-0.38916582,-0.3591082,-0.07232373,0.3888156,0.42027012,0.31774646,0.17698371,0.100384474,-0.022783704,-0.18058664,-0.23630366,-0.27645206,-0.34308603,-0.39296567,-0.41178685,-0.4510119,-0.45954514,-0.520796,-0.50105405,-0.5060688,-0.52430755,-0.5329223,-0.2639553,-0.22747308,-0.32850748,-0.38343397,-0.37060755,-0.41979897,-0.479015,-0.54326296,-0.49874973,-0.46993667,0.25303915,-0.36294705,-0.44346738,-0.540393,-0.2103419,-0.16176051,-0.303302,-0.25666663,-0.17684793,-0.29051578,0.5532867,0.30440757,0.11864077,-0.07082515,-0.005112894,-0.41605818,-0.365658,-0.18292123,-0.69071615,-1.0029668,-1.023957,-1.1260686,-0.99642324,-0.9304192,-1.1472746,-1.1831431,-1.1811159,-1.1871178,-0.9891856,-1.1459231,-1.2778009,-1.2055346,-0.97237325,-0.83476806,-0.9899738,-0.75734353,-0.93403673,-0.6398589,-0.7685584,-0.9090886,-0.7526336,-0.8225156,-0.84637296,-0.7532074,-0.79267365,-0.5514916,-0.8519812,-1.0097597,-1.057256,-1.0193949,-0.9900706,-0.9331684,-0.9277948,-0.8972075,-0.87060785,-0.9527626,-0.89260787,-0.8762434,-0.8433973,-0.78807855,-0.86419153,-0.81403494,-0.5765799,-0.3919675,-0.18979478,-0.3801257,-0.47988415,-0.37991607,-0.10073023,-0.56547403,-0.67920345,-0.6488326,-0.549443,-0.5217652,-0.39373848,-0.46269894,-0.7625855,-0.7800035,-0.69023025,-0.6726699,-0.59962606,-0.5737205,-0.7328506,-0.71276677,-0.5617006,-0.021270633,-0.10845973,-0.29865158,-0.103116415,-0.18822008,0.11910468,0.74915886,0.9051535,0.9584548,1.11868,1.0623232,1.1005896,0.5404704,-0.06890602,-0.49341542,-0.55224633,-0.5664925,-0.39934686,-0.21171081,-0.33066598,-0.47193837,-0.3067875,0.3354845,0.73229825,0.44641253,0.23118103,-0.009105392,-0.4685552,-0.66659963,-0.6816968,-0.7593738,-0.8948721,-0.7918005,-0.37299034,0.24605861,0.2261368,0.4550562,0.56425315,0.28050873,-0.20149711,0.022043511,0.21450227,0.4535765,0.5725781,0.52009845,0.48698518,0.29761758,0.28693706,0.19758609
+0.17438756,-0.16676599,-0.26578,-0.37504485,-0.49109066,-0.48919225,-0.56367517,-0.67038786,-0.7370658,-0.6983082,-0.7139387,-0.79573345,-0.8001832,-0.8419045,-0.83738834,-0.85408074,0.15320617,0.8276728,0.48830348,0.759839,0.9857526,0.4554798,0.22062364,-0.07675951,-0.10138776,-0.19552451,0.8036689,0.76654035,0.61507374,1.0278349,1.1190077,0.68145037,0.30009508,0.026356034,-0.24547875,-0.48074275,-0.5791832,-0.61484855,0.12881017,0.35044137,1.595941,0.74793684,0.33818385,0.17146352,-0.2117109,0.23076117,0.2710803,-0.032182284,-0.22190982,-0.34763223,-0.41151398,-0.5483253,0.042729057,-0.047716714,0.43695432,0.34992993,0.3279249,1.2926335,0.6929356,0.3512264,0.9411714,0.35044497,-0.20739019,-0.5225557,-0.5473062,-0.6976775,-0.76969194,-0.80760443,-0.9341085,-1.0062548,-1.0713036,-1.104481,-1.1343995,-0.5328525,-0.08124135,-0.15040985,-0.45097965,-0.73744226,1.0915761,0.435546,-0.1543633,-0.36756063,-0.6400653,-0.6673806,-0.87934136,-1.0300629,-0.8890722,-1.0089471,-0.94934344,-1.0199708,-1.023707,-1.0049491,0.7766688,0.90592104,0.4775146,-0.08865278,-0.14538702,0.75640047,0.17906842,-0.37690502,-0.6745991,-0.8068498,-0.75301385,-0.8994565,-0.79023254,0.3840428,0.15155125,-0.40398282,-0.5970836,-0.76386786,-0.8267727,-0.9905826,-1.0743443,-0.8315258,-0.7247314,-0.8448027,-1.0019903,-0.70206374,-0.36193478,-0.5342807,-0.09729602,0.54577,-0.043556653,0.9296662,0.35025525,-0.07395131,-0.1198431,-0.34469393,-0.5613202,-0.6989469,-0.9463242,-1.0253608,-0.585707,0.5129709,0.091105945,-0.26786402,-0.51743233,-0.6166998,-0.67795944,-0.8666524,-0.9187162,-0.8749732,-0.92684543,-1.0113894,-0.6996336,-0.4569164,-0.58944464,-0.7229925,-0.91196394,-0.9659467,-1.0328891,-0.42689908,-0.2772626,-0.36100423,-0.5061951,-0.65599144,-0.7998455,-0.8958155,-0.3562503,-0.20069182,-0.26936203,-0.116727404,0.22970003,-0.07153834,-0.3630016,-0.035295926,-0.21531889,-0.48125464,0.39108455,0.2962697,0.009244077,-0.15824842,-0.34875172,-0.5031773,-0.5769769,-0.53334254,-0.41580886,0.039123505,0.055386398,-0.11424943,-0.24929577,-0.39370108,-0.47239053,-0.51975,-0.5861622,-0.6518271,-0.35097697,0.16514283,0.15386707,0.34569827,0.2174102,0.047953982,-0.09683459,-0.23632735,-0.066947885,-0.1516785,-0.3074775,-0.39496014,-0.44466478,-0.46998787,-0.3181228,-0.44944286,-0.4974103,-0.46609807,-0.44858313,-0.48067462,-0.49231923,-0.6508101,-0.66482747,-0.55662215,-0.60351634,-0.64613557,-0.62829316,-0.6349186,-0.55957747,-0.67029047,-0.5944303,-0.5988771,-0.62503064,-0.72041243,-0.21557891,0.14333186,0.2013152,0.17838079,0.12962809,-0.021400794,-0.040898345,-0.07644635,-0.14502916,-0.16598535,-0.22599506,0.21174276,-0.32198226,-0.44987476,-0.39829904,-0.015939929,0.21827391,0.019274428,-0.017356731,-0.033029087,0.033184685,0.4389576,0.43017447,0.20323558,-0.05576911,-0.30439496,-0.4095924,-0.3536924,-0.20290643,-0.5021621,-0.80699253,-0.90509,-0.8732065,-0.7538841,-0.66338253,-0.70875585,-0.79483473,-0.8198148,-0.7854041,-0.6461781,-0.754112,-0.74361527,-0.741264,-0.64162344,-0.50485843,-0.5809326,-0.4177528,-0.4660465,-0.3771095,-0.56625617,-0.6817376,-0.6063478,-0.731884,-0.7551578,-0.64322984,-0.6229191,-0.44172245,-0.73259676,-0.8341063,-0.8447932,-0.8241226,-0.80998397,-0.77828705,-0.73429585,-0.6235683,-0.63401526,-0.7075078,-0.7192079,-0.7131573,-0.5431491,-0.051196538,-0.55295074,-0.5177757,-0.12978974,0.2088243,0.45425007,0.23312268,-0.13009664,-0.082004,0.06628158,-0.49639207,-0.6324074,-0.4836536,-0.3125372,-0.19560277,-0.07545518,-0.27348322,-0.7163649,-0.6770396,-0.6499957,-0.5610522,-0.3140461,-0.26044163,-0.39495146,-0.60584,-0.23950958,0.5391945,0.38442323,-0.15870363,-0.020468779,-0.07503111,0.16971031,0.37680757,0.3354471,0.1437732,0.12995026,0.23208624,0.17656174,-0.13552037,-0.22938254,-0.75368613,-0.73540103,-0.72275805,-0.46092892,-0.5142407,-0.619128,-0.64595824,-0.49804688,-0.1709674,-0.18577164,-0.19716585,-0.37914443,-0.4337452,-0.6708047,-0.824481,-0.80740774,-0.7611344,-0.9097233,-0.81764454,-0.61949104,-0.16252351,-0.37545267,-0.42439717,-0.37265748,-0.483738,-0.73948634,-0.7483299,-0.05943113,0.3963812,0.3204277,0.1808182,0.13554831,0.11392198,0.5228,0.45748007
+0.1298728,0.18508184,0.040911805,-0.020651542,-0.16262263,-0.24234608,-0.33622962,-0.31500554,-0.27546045,-0.4804722,-0.335039,-0.33305416,-0.42637265,-0.5730709,-0.5680926,-0.6072954,0.5922906,1.5647819,1.3775126,1.5461662,1.503809,1.0488945,0.565129,0.3785953,0.7087145,1.0475284,1.3962045,1.7050275,1.3828763,1.6186988,1.5639294,1.6117297,1.2080805,0.8218388,0.4503652,0.1289044,-0.04696887,-0.026862457,1.2817858,1.2628012,1.6886674,1.4302764,0.7322403,0.6966288,0.21724415,0.7096221,1.24282,0.7945137,0.4556807,0.36835182,0.18749543,0.005756341,0.06570245,1.2570068,1.628758,1.6565821,2.1562176,2.4700246,1.8783095,1.4225521,1.9893925,1.6264691,0.8781415,0.60821366,0.48100442,0.057816096,-0.24592566,-0.22322878,-0.4846968,-0.6471141,-0.7242439,-0.7618445,-0.793852,-0.75697494,-0.82148504,-0.824276,-0.8779793,-0.86152434,-0.72875106,-0.7440779,-0.7811692,-0.8080758,-0.87680733,-0.81498486,-0.88826865,-0.5400697,-0.3058821,-0.5962598,0.4891385,0.35098964,-0.13136187,-0.3739701,0.53343606,1.2042059,1.0644529,0.34105965,0.17876685,0.87187564,0.53707314,0.16257235,-0.2356765,-0.45619923,-0.11400496,-0.0050215498,-0.21774232,-0.032101966,0.32887766,-0.20817918,-0.12841064,-0.45544767,-0.6244976,-0.7622,-0.7096509,-0.7397086,-0.8763764,-0.8585888,-0.9217349,-0.96957874,-0.9275216,-0.7387526,0.21871975,-0.0062538087,-0.4300295,-0.17265683,-0.33523768,-0.09520098,0.69066656,0.41344315,0.7751557,1.0488133,0.5179273,0.12583564,-0.010097273,0.6984492,0.39298254,-0.05202333,-0.30067807,-0.52239645,-0.69486046,-0.7617668,0.23055032,0.9788531,0.31973824,-0.0566675,-0.3119259,-0.16716093,0.15982172,0.06392154,0.2999881,0.02441328,0.52327913,0.78122985,0.9546683,0.9462706,0.64981747,0.70073736,1.2566319,0.85636884,0.49076635,0.5979256,0.5024167,0.43135703,1.0226854,0.5645551,0.23080334,0.57841694,0.7892734,0.39954525,0.90515655,0.89437646,0.51811105,0.19173296,-0.03534221,-0.23721954,-0.33226275,-0.3554287,-0.23095742,0.38726488,0.31100127,0.007362999,-0.15236583,-0.29049897,-0.39115855,-0.4502759,-0.51046014,-0.5522986,0.41308564,0.7138059,0.6387383,0.8859062,0.67388564,0.4519005,0.19026992,0.15953875,0.18737502,0.054168172,-0.18968406,-0.28557274,-0.35394505,-0.4046511,-0.33154184,-0.4116454,-0.45525408,-0.44940257,-0.45593858,-0.4916954,-0.4391874,-0.60875356,-0.60594237,-0.58777726,-0.58920693,-0.61316836,-0.57537603,-0.6053413,-0.5690842,-0.58906955,-0.6183672,-0.60809505,-0.60842985,-0.6393813,-0.106968544,0.35275757,0.3490148,0.31020525,0.25150782,0.09493513,0.0006388277,-0.07394052,-0.15492344,-0.21158645,-0.30196792,0.015411839,-0.4219584,-0.3862741,-0.2222648,-0.20754844,0.12561636,0.079449885,0.09552481,0.013383187,0.052791603,0.35049564,0.28467026,0.25366932,-0.0076478496,-0.19180757,-0.25539273,0.16795611,0.1958677,-0.05275666,-0.5793812,-0.9601823,-1.0760467,-0.8941189,-0.5819349,-0.82126904,-0.8887151,-1.0088122,-0.98465633,-0.87836784,-1.0007123,-1.3031187,-1.2438862,-1.0559065,-0.8166727,-0.7110093,-0.64059585,-0.6128693,-0.16107309,-0.18165421,-0.5366683,-0.48686492,-0.54825306,-0.65160406,-0.44463605,-0.6311444,-0.4164946,-0.6339106,-1.0746634,-1.1673954,-1.2852979,-1.2396814,-1.1634519,-0.9723922,-0.5802695,-0.5368415,-0.97888625,-0.9728315,-0.9273555,-0.69573843,-0.076159306,-0.51584816,-0.57689047,0.076533705,0.4828611,0.6456193,0.52140504,0.2057786,0.080516204,-0.04565873,-0.47624665,-0.676942,-0.5262816,-0.15877575,0.09459035,0.23649648,0.064974256,-0.53883284,-0.77220076,-0.8258752,-0.4240712,-0.12521464,0.2549975,-0.50441283,-0.7699689,-0.17410943,0.3140216,0.34199792,-0.10276533,0.10480662,0.0625105,0.20282327,0.26370525,0.24509841,0.063220546,0.028542139,0.123782665,0.095518656,-0.0052386224,0.07561665,-0.4697669,-0.2990055,-0.109328024,0.38465133,0.4088918,0.12307886,-0.018863216,0.22729334,0.119487084,0.050788585,0.11958864,0.01574663,0.00031533837,-0.16246322,-0.4745313,-0.47481376,-0.30991054,-0.701095,-0.72548026,-0.26807493,-0.18368995,-0.20055917,-0.34803075,-0.34365413,-0.34895402,-0.45108247,-0.47297454,-0.5311394,-0.049928956,-0.00860133,0.05998671,0.07842917,0.74517953,0.9937123,1.0040832
+-0.23437876,-0.35417545,-0.50035834,-0.62270534,-0.66121083,-0.59713924,-0.66782403,-0.85825443,-0.9335358,-0.9975401,-0.9766543,-1.0235285,-1.0835333,-1.0905994,-1.0839134,-1.1199586,0.98797643,1.5050831,1.152508,1.5617499,1.4547999,1.1366769,0.7956924,0.84326035,1.0370716,0.8108651,0.8152907,1.0103464,1.6673672,1.804748,1.7258298,1.5478987,1.199121,0.9542331,0.5226283,0.14361417,-0.14525482,-0.35016078,0.0056857243,0.11995947,1.0757794,1.0624536,0.56816053,0.40274203,0.13636729,0.5391817,1.3078558,1.0885373,0.808938,0.9181662,0.73610425,0.5872751,0.4600219,1.1926899,1.6367683,1.2978814,1.8035405,1.8107805,1.5786608,1.467828,1.8559139,1.6616254,1.0774393,0.65304613,0.3108977,-0.0037625954,-0.40374002,-0.4131397,-0.62271523,-0.86093634,-0.96417,-1.0272387,-1.096183,-1.0792971,-1.1134146,-0.7021035,0.6832792,-0.07963311,0.13503304,0.08015629,-0.31964225,-0.6985837,-0.8234477,-1.002612,-0.98748446,-1.0031972,-0.16427416,-0.06040054,-0.05750715,-0.29208386,-0.6996883,-0.6157711,1.070445,1.1239177,1.0758722,0.49499893,0.53859484,0.3400599,0.03205567,-0.3014652,-0.60748756,-0.79933524,0.83858836,1.0868347,0.74880147,0.30933356,-0.0128603205,-0.31024414,-0.5454544,-0.76677454,-0.9016626,-1.008196,-1.0866593,-1.0900397,-0.97108614,0.02980052,-0.20446473,-0.57647365,-0.76829565,-0.032806776,-0.26321444,0.040199317,-0.30554396,-0.10135292,-0.3094902,-0.47780097,-0.1656647,0.10568616,0.5577523,0.44726127,0.068656296,-0.24517947,-0.41100746,0.27450714,-0.121484034,-0.4534943,-0.6474941,-0.7837074,-0.88429385,-0.97614944,-0.13166377,0.6506622,0.11836621,-0.24561337,-0.5215645,-0.6146188,0.29021612,0.4233114,0.6826829,0.35047588,0.18476099,0.94304407,1.3558934,1.3995959,1.236648,1.0319372,0.91790867,0.8274219,0.52033,0.2582077,0.19852121,0.39332077,0.4788461,0.11248073,-0.12082829,0.23333064,0.5524123,0.202189,0.3890493,0.67300576,0.38822713,0.16952571,-0.14313355,-0.27715817,-0.3455109,-0.505245,-0.33210146,0.6594256,0.3538759,0.07919732,-0.17567798,-0.30989993,-0.4766763,-0.61608547,-0.720115,-0.7984714,-0.22300816,0.5213316,0.28809586,0.23962316,-0.011351444,-0.21647143,0.011584543,0.35996664,0.23316672,0.15332082,-0.01870621,-0.15832907,-0.27462697,-0.32584363,-0.4173311,-0.5597427,-0.5858146,-0.63305384,-0.7086457,-0.78386384,-0.79001284,-0.8642208,-0.3950176,0.05227057,-0.11400374,-0.25651938,-0.3187821,-0.36620185,-0.519346,-0.42828095,-0.30596787,-0.41638,-0.560222,-0.70174277,0.056779362,0.5984229,0.42478848,0.3178068,0.16698164,0.044494227,0.0035906583,-0.10623825,-0.17417094,-0.2558856,-0.28717256,-0.28664774,-0.5690961,-0.60882026,-0.48278582,-0.43265867,-0.13550308,-0.17365983,-0.24007922,-0.3216198,-0.2569764,-0.21448371,-0.29253778,-0.35176954,-0.5827912,-0.63234603,-0.44551134,0.09547379,0.14754921,-0.18084201,-0.44029206,-0.7829347,-0.90764594,-0.8239445,-0.5278245,-0.7579051,-0.82898116,-0.93850374,-0.8939699,-0.71192217,-0.7806423,-1.1065464,-1.1173894,-1.0273849,-0.85335565,-0.7121877,-0.44454914,-0.4806975,-0.2504425,-0.023742847,-0.46428317,-0.4720726,-0.46164006,-0.69113207,-0.590963,-0.6570526,-0.4404856,-0.43078685,-0.9523735,-1.0186487,-1.1416022,-1.0926392,-1.0395766,-0.95907056,-0.38118577,-0.3478298,-0.8539529,-0.9400251,-0.7355591,-0.5049123,-0.28698552,0.01677528,0.027367778,0.26520583,0.3077254,0.33964977,0.5261848,0.20832865,0.1646913,0.116160944,-0.39617017,-0.6142019,-0.4495762,-0.1758106,-0.023409195,0.001969926,-0.18572268,-0.65996134,-0.7741286,-0.8253095,-0.5105275,-0.2868984,-0.16119093,-0.4969427,-0.8414727,-0.46275926,-0.21316725,-0.10396185,-0.30001122,-0.24889478,-0.37696204,-0.3822649,-0.3175485,-0.34708068,-0.35983136,-0.40595132,-0.28097215,-0.34052384,-0.39425594,-0.3488276,-0.78718096,-0.77427673,-0.6382791,-0.5289675,-0.53056806,-0.73530716,-0.786349,-0.6950575,-0.6436335,-0.6280126,-0.70939374,-0.8284981,-0.81932056,-0.8690949,-0.9789295,-0.93132997,-0.91168165,-0.96287215,-0.9821873,-0.7989433,-0.82031083,-0.7885634,-0.86193585,-0.91678786,-0.9217044,-0.9252666,-0.9846884,-1.0000184,-0.507362,-0.13629818,0.26474416,0.1250219,0.9939312,1.0948402,0.9931997
+-0.7590556,-0.8114538,-0.96618533,-1.0086441,-1.0861495,-1.0922676,-1.167865,-1.2415257,-1.2432222,-1.3429765,-0.1971432,-0.046925046,-0.24132255,-0.3531435,-0.52081996,-0.63629246,0.84421605,1.1810772,0.87027884,0.9974288,0.9133461,0.8117673,0.38698104,-0.028129093,-0.22858047,-0.4168933,0.56278783,0.40558463,0.6949899,0.89151704,0.8568882,0.7222084,0.41857073,0.09992004,-0.293656,-0.5790682,-0.821175,-0.60954386,0.32141674,0.19831142,0.04419934,-0.2572999,-0.50981855,-0.50490105,-0.736319,0.6739307,1.0044719,0.96045494,0.7585149,0.9029186,0.7403382,0.52269715,0.5167708,0.6830629,0.93651295,0.727572,0.9107958,0.8257882,0.4841597,0.14274138,0.4443229,0.50780165,0.23321795,-0.070039056,-0.3745426,-0.7298378,-0.9897766,-1.1046329,-1.2225,-1.3097707,-1.3419663,-1.3464566,-1.3241334,-1.2836676,-1.3134136,-1.3146832,-1.3032014,-1.2669926,0.30897582,0.26421452,-0.0041426793,-0.4304996,-0.78588843,-0.8296654,0.13987426,-0.3791622,-0.06149309,0.05735316,-0.31746757,-0.6421505,-0.89469564,-0.7317054,0.3870553,1.0478545,0.92122746,0.6332084,0.36590344,-0.08759437,-0.18515548,-0.12178709,-0.6375865,-0.97982764,-1.0841081,-1.2050213,-0.07324656,0.0533631,-0.24880451,-0.71797293,-0.9809363,-1.1108596,-1.2234514,-1.2921844,-1.314666,-1.3253702,-1.35309,-0.37221116,-0.6587117,-0.9236635,-1.0298343,0.49153912,0.4853524,0.09385192,-0.36528212,-0.6958629,-0.9359585,-1.0548763,-0.5433767,0.92515004,0.76202726,0.7054977,0.7672713,0.570116,0.21993113,0.53486246,0.62831366,0.38077292,0.05411663,-0.2682219,-0.60849303,-0.8399687,-0.9993197,-0.3146153,-0.54992855,-0.8704238,-1.1062989,-1.1180248,-0.25391102,-0.3823667,-0.7195556,-0.14767417,0.19243199,0.32772624,0.43228337,0.48005164,0.5325734,0.25401175,-0.07077422,-0.41307628,-0.68382704,-0.88184536,-0.5111779,1.1813041,1.2677953,0.96038944,0.8031571,0.7577119,0.7722806,0.50288934,0.38538927,0.6076821,0.38124588,0.10801237,-0.18660203,-0.4525587,-0.63866764,-0.76468426,-0.037374087,0.9718492,0.89694357,0.70761836,0.49448895,0.4129312,0.18503553,-0.07026818,-0.24195507,-0.31958443,-0.07689873,0.31650847,0.29120392,0.5139563,0.36343667,0.096053645,0.13557291,0.10428063,0.18395412,0.33746415,0.11149125,-0.08691675,-0.1563966,-0.42179167,-0.3603294,-0.47467124,-0.51759934,-0.7175708,-0.82433045,-0.8800628,-0.86102027,-0.963029,-0.7582267,-0.6593319,-0.840688,-0.94508886,-0.82182723,-0.94416213,-1.0284622,-0.9689071,-0.8446081,-0.9227555,-1.0247909,-1.0895283,0.025758862,0.36096808,0.250927,0.106051154,0.08312785,-0.050829403,-0.18988809,-0.17130375,-0.23863727,-0.3775859,-0.524418,-0.43540007,-0.6424488,-0.72205514,-0.66978,-0.6999107,-0.4564603,-0.5795497,-0.5764601,-0.6584151,-0.711065,-0.60024846,-0.6296865,-0.685429,-0.79439455,-0.76343477,-0.66086197,-0.18270034,-0.18626243,-0.3108159,-0.45075494,-0.82858753,-0.99186075,-0.8704581,-0.6255034,-0.7902519,-0.804342,-0.97684085,-1.0241376,-0.65587455,-0.7253611,-1.2168593,-1.2243629,-1.1079125,-0.9247829,-0.7667662,-0.58292955,-0.5293856,-0.30365273,0.05282236,-0.32122278,-0.3004666,-0.42078722,-0.6436847,-0.53318053,-0.48266274,-0.36080855,-0.30729395,-0.94106054,-1.0451555,-1.1655396,-1.2024735,-1.0835929,-0.96181166,-0.5676762,-0.6189907,-0.6730427,-0.8622648,-0.6054538,0.3451431,0.83781767,0.763973,0.6390828,0.6191616,0.6298907,0.5973158,0.6423677,0.65644115,0.59407896,0.48070684,-0.076901756,-0.35719392,-0.16875374,0.0551947,0.11790601,0.02949705,-0.09933878,-0.4969536,-0.73480475,-0.7392074,-0.3706619,-0.3025446,-0.2913073,-0.3257935,-0.7535052,-0.53096884,-0.48998064,-0.40446073,-0.58663654,-0.45581752,-0.4122011,-0.5017772,-0.53827584,-0.5251536,-0.5562747,0.24149653,0.5290062,0.37570357,0.24075308,0.20092252,-0.39219117,-0.37584716,-0.2567979,-0.338265,-0.38617155,-0.62039804,-0.7032042,-0.76049674,-0.87565094,-0.93877435,-0.8454632,-0.97981155,-1.0544581,-0.96851337,-1.083662,-1.0284377,-1.0159026,-1.0481756,-1.0560665,-1.1109139,-1.1211257,-1.0952642,-1.228415,-1.1915655,-1.1180284,-1.1850255,-1.2689934,-1.3560377,-0.9333787,-0.75873435,0.11695575,0.117471226,0.961264,0.99361324,0.903237
+-0.7831619,-0.887406,-1.0229244,-1.1089072,-1.1786852,-1.2600212,-1.316567,-1.3693179,-1.4103131,-1.5139605,-0.02692125,0.097343154,0.029778324,0.012282796,-0.21731246,-0.45005685,0.8688275,0.8716897,0.755069,0.8647418,0.7770835,0.65440536,0.2431412,-0.09339564,-0.35999882,-0.6193173,0.016709909,-0.027625285,0.05304072,0.19126399,0.02791413,-0.05561339,-0.34266153,-0.57457566,-0.78076494,-0.9249331,-1.0725775,-1.1895081,-1.0039133,-1.0748451,-1.2229141,-1.2483734,-1.3441231,-0.71088517,-0.8899114,-0.09408786,0.5114284,0.5291729,0.33207375,0.5450988,0.3499287,0.07821896,-0.14003834,-0.32365403,-0.7200108,-0.9592185,-1.0568979,-1.1171476,-1.2446907,-1.0735254,0.00665956,0.4331033,0.51647204,0.65188026,0.6562438,0.31175196,-0.26581106,-0.7019355,-0.975428,-1.1787906,-1.3098109,-1.3853049,-1.3942788,-1.2580531,-1.1058257,-1.3128859,-1.439334,-1.4334819,-0.36923894,-0.7027899,-1.0198568,-1.2334696,-1.3752062,-1.4409983,-1.5021381,-1.5046401,-0.5593668,-0.007882409,-0.03478334,-0.08165877,-0.39641115,0.010000594,-0.22309703,0.24941936,0.02529011,-0.43625283,-0.85302544,-1.1280595,-0.9000468,-0.6247778,-1.0218065,-1.2478719,-1.3214905,-1.4620862,-1.2435529,0.66872793,0.22201824,-0.27508736,-0.7101591,-0.97991335,-1.1489093,-1.2785307,-1.3697948,-1.4318805,-1.4895592,-1.4418007,-1.1888782,-1.1334031,-0.5662085,0.2661727,0.4095012,0.11640797,-0.3827049,-0.82531536,-1.0948828,-0.8745866,-0.9386492,-1.1495693,-1.3001143,-0.3408251,-0.46704763,-0.86376774,-1.1388359,-1.3222324,-1.2210076,-1.392441,-1.4727039,-1.4303263,-1.4900343,-1.5031457,-1.5402895,-0.7793193,-1.0152141,-1.236751,-1.4432702,-1.3941586,-1.2237482,-1.3422338,-1.4347448,-1.5102983,-0.95422244,-0.924201,-0.5668139,0.5556733,0.5436607,0.33789584,0.010746352,-0.36910433,-0.70072144,-0.9383036,-1.1122886,-1.2475312,0.3220714,0.13020161,-0.21875954,-0.39745975,0.24962634,0.24213007,0.05318878,0.11163708,0.30327258,0.13177654,-0.2542076,-0.5774276,-0.8201959,-1.0099208,-0.93055475,0.4022953,0.5702666,0.29382837,-0.05270583,-0.1895226,-0.401774,-0.6396246,-0.83593637,-0.9860089,-1.09014,-0.68761694,-0.25856113,0.45193523,0.2645823,-0.066105954,-0.4035743,-0.6835977,-0.83476144,-0.7976092,-0.92058575,-1.0905049,-1.1739533,-1.2739717,-1.2165705,-1.2443876,-1.2356672,-1.2610152,-1.3217713,-1.3858758,-1.3841896,-1.4628205,-1.4292321,-1.4199586,-1.473136,-1.5148678,-1.4138253,-1.4475383,-1.5393589,-1.5028421,-1.3970866,-1.3689976,-1.4506001,-1.0398381,-0.09081992,0.065831475,0.03499069,-0.04506851,-0.18868303,-0.2496357,-0.37071714,-0.45749772,-0.5680568,-0.7224594,-0.8942547,-0.85396993,-0.8407099,-0.9038805,-0.9406676,-1.083024,-1.0018598,-1.032338,-1.053257,-1.0108325,-1.1570632,-1.0904914,-1.0618678,-1.0403532,-1.0920715,-1.0842294,-0.5639944,-0.18306217,-0.21690252,-0.28866276,-0.38516498,-0.59619665,-0.7749051,-0.6359964,-0.42595005,-0.5078733,-0.49055177,-0.7226171,-0.83957446,-0.46663183,-0.41071808,-0.93432164,-1.1155958,-0.9900025,-0.7764324,-0.6610354,-0.5913363,-0.48983026,-0.5793086,-0.49979347,-0.6827296,-0.67519486,-0.70543504,-0.8523198,-0.7653121,-0.7159127,-0.7431774,-0.6430241,-0.90703285,-1.007803,-1.0977863,-1.2175562,-1.126845,-0.99850583,-0.6913934,-0.6672059,-0.6575942,-0.7048149,-0.3864152,0.16580424,0.52274245,0.6541029,0.59101963,0.43708974,0.37347195,0.2852935,0.20177302,0.19142658,0.10056699,0.008991227,-0.32263562,-0.43724942,-0.3573029,-0.23793432,-0.2694858,-0.369289,-0.42060888,-0.56383044,-0.75840986,-0.67772657,-0.50685686,-0.54052776,-0.5671462,-0.6498268,-0.76252395,-0.7706702,-0.81788045,-0.8249992,-0.7278717,0.3810934,0.28861448,0.24647388,0.10325336,-0.013087742,-0.14205423,0.54577947,0.62474364,0.5044909,0.25107133,0.20714924,-0.1576772,-0.25526404,-0.20568344,-0.34801775,-0.40007553,-0.628354,-0.7098698,-0.8038516,-0.89952296,-0.9661083,-0.91096103,-0.9953023,-1.123246,-1.0527058,-0.4948545,-0.31911546,-0.3246502,-0.43216306,-0.4412135,-0.5221092,-0.63400626,-0.72112596,-0.88458323,-0.9980272,-1.0392686,-1.050921,-1.1984637,-1.2821717,-0.83781946,-0.87488675,-0.9865055,-0.8940023,1.3133459,0.69752777,0.598374
+-0.7002344,-0.7422836,-0.8329534,-0.85265636,-0.8690645,-0.874629,-0.9012133,-0.9602231,-0.967906,-1.0158229,0.23624349,0.6439867,0.5004623,0.41935533,0.233861,0.0405292,0.8636892,1.0789386,1.1232369,1.1976026,0.99992245,0.8411917,0.58660406,0.42503962,0.27336892,0.059496157,0.31306362,0.2930156,0.5109608,0.630503,0.4980655,0.44274935,0.33414677,0.21399441,0.051069267,-0.15344396,-0.32145217,-0.49464673,-0.19807136,-0.18265674,-0.40040547,-0.09190235,-0.23549017,0.16263354,0.13218594,0.076034926,0.8449973,0.8051289,0.53388226,0.5600504,0.37520993,0.17518884,0.84483516,0.7778883,0.6148022,0.39330724,0.7008305,0.68505913,0.3503709,0.26382303,0.09489653,0.41473413,0.9864549,0.89574194,0.7823318,0.6791217,0.4420387,0.16737354,-0.106342174,-0.35550773,-0.57768214,-0.5185571,1.5907826,1.3578274,1.3412882,0.8782784,0.59484607,0.36607233,-0.032338,-0.14472619,-0.23353103,-0.44019932,-0.6325822,-0.77503526,-0.8944534,-0.9767494,-0.9558444,-0.31848422,-0.4417503,-0.6180694,-0.7835851,-0.8340343,-0.9130783,-0.78418636,-0.54942435,-0.7780857,-0.96443415,-1.0683969,-1.1107844,-0.08414545,-0.4078191,-0.69640857,-0.9106307,-1.0376811,-1.0915632,-0.88580024,0.26745537,-0.30123731,-0.5800428,-0.8130628,-0.9530542,-1.0505779,-1.1117482,-1.1528163,-1.1784422,-1.1237117,-0.95356596,-0.9611418,-0.9996439,-0.83769965,-0.85102427,-0.7531158,-0.93104553,-1.061221,-1.1390101,-1.1684283,-1.1692075,-1.1188295,-1.159034,-1.163691,-0.98441446,-0.9676404,-1.099399,-1.1271071,-1.0827667,-1.1814233,-1.1936035,-1.1964236,-1.240957,-1.2501416,-1.0400748,0.53220767,-0.0279684,-0.267004,-0.5013063,-0.6378662,-0.8448411,-0.9823775,-0.8126806,-0.34698236,-0.51803285,-0.736202,-0.6950059,-0.034836404,0.02690769,-0.2544414,-0.4208886,-0.6718619,-0.8511474,-0.9766625,-1.0524458,-1.1016635,0.31411365,0.29070425,0.014373489,-0.23851857,-0.093785994,0.2874715,0.1894871,0.30083185,0.45234162,0.36392465,0.14425,-0.06549231,-0.24438581,-0.44418752,-0.5775368,0.818232,0.72055274,0.48713955,0.3199653,0.24808651,0.08958829,-0.08097149,-0.20391697,-0.32286462,-0.46994394,-0.50871885,-0.6037227,0.104511626,0.24468327,0.043231107,-0.09120535,-0.22395152,-0.35107857,-0.18064356,-0.091573946,-0.13444328,-0.16620702,-0.2153146,-0.28561342,-0.39061314,0.21386561,0.3443357,0.21914464,0.09620943,-0.023051344,-0.12849,-0.1716719,-0.28692806,-0.32256556,-0.3566465,-0.4121523,-0.4694171,-0.5300535,-0.5798992,-0.032052763,0.34323096,0.20360857,0.15695447,0.4194564,0.43277428,0.4223745,0.28652224,0.24066445,0.21093747,0.13434735,0.09066861,0.061761595,0.026475824,0.031013377,-9.5404685e-05,0.045004703,-0.035581104,-0.11897773,-0.14355665,-0.10837334,-0.15270406,-0.18085298,-0.16987962,-0.21416739,-0.07579144,-0.020186774,-0.074424766,-0.13492876,-0.23479253,0.0805283,0.35307485,0.30786237,0.3139049,0.3320194,0.2642069,0.15211076,0.13937294,0.17783988,0.17598978,0.14212835,0.15683165,0.08857832,0.04883028,0.09734634,-0.12303468,-0.4190091,-0.35966533,-0.15481883,-0.05463084,-0.11578884,-0.016326942,0.016697384,0.3483479,0.2606129,0.14677772,0.19636908,0.1084634,0.018914051,-0.032927923,-0.05658614,0.13912511,0.11381846,-0.05935403,-0.16369939,-0.35155213,-0.25093043,0.035006024,0.32683983,0.31992245,0.21849802,0.2928535,0.11273075,0.27644372,0.76401925,0.6741221,0.6611969,0.6129364,0.6533267,0.5648294,0.41518924,0.39329466,0.32164448,0.32260314,0.24450824,0.15234333,0.116627894,0.12912905,0.1033821,0.045118697,-0.04408828,-0.015426584,-0.05700413,-0.16767463,-0.20906836,-0.1645366,-0.09726294,-0.16195202,-0.13977346,-0.24963886,-0.25571808,-0.2942342,-0.25457683,0.85189915,0.7580342,0.7315712,0.52004844,0.38149142,0.2914367,0.5838661,0.69239825,0.60086,0.43596137,0.415693,0.41223913,0.20937729,0.07817518,0.0736813,0.08628177,-0.0033894703,-0.12203767,-0.23630857,-0.3495709,-0.32364255,-0.29575723,-0.26065361,-0.44064945,-0.49801338,-0.5288615,-0.4549669,-0.4410745,-0.38007128,-0.45155483,-0.58607906,-0.6392795,-0.7247155,-0.7417286,-0.785847,-0.8100651,-0.8137921,-0.91893744,-0.9320104,-0.86846745,-0.91897357,-0.9223062,-0.98482144,0.8894288,0.744124,0.5663639
+-0.6353659,-0.64923674,-0.7924518,-0.8699137,-0.90973556,-0.90431726,-0.9672103,-1.0000641,-0.9642823,-0.88759625,-0.366616,-0.07644995,0.09738649,0.14284775,0.061144404,-0.08231451,1.6980623,1.3021262,0.90746754,1.2787596,1.1757659,0.9564707,0.82019675,0.6545374,0.53460634,0.34279642,0.6685309,0.49397314,0.3863991,0.46068442,0.40003547,0.44548643,0.30953678,0.2321986,0.022898108,-0.11891431,-0.27509516,-0.48158532,0.6557156,0.47525972,0.20745063,0.33179718,0.15742135,0.015886955,-0.09274154,-0.14444706,0.53695226,0.71259624,0.71937203,0.53227836,0.36927086,0.20781922,0.41170385,0.35910392,0.3263857,0.2267209,0.6620867,0.4607834,0.94860816,1.2441318,0.8224704,0.8247176,1.1820441,1.3114462,1.1678691,0.87547976,0.6894961,0.47029704,0.23178491,0.02909761,-0.211799,-0.3872005,0.015612893,0.18837398,0.12586206,-0.07159837,-0.29140607,-0.43090147,-0.5687183,-0.66477156,-0.71374035,-0.80209225,-0.8775247,-0.91993976,-0.9445913,-1.008265,-0.9990665,-1.0430927,-1.0619102,-1.0426457,-1.088879,-1.0830139,-1.118836,-1.1488804,-0.1556291,0.104730524,-0.2543943,-0.537214,-0.73760855,-0.5820311,-0.501004,-0.7032649,-0.86701274,-0.96387887,-1.0092368,-0.8632746,-0.85947585,-0.9796753,-1.0503037,-1.0942023,-1.1249323,-1.1542077,-1.1828798,-1.2144567,-1.2295516,-1.2319634,-1.2587903,-0.7376514,-0.5031205,-0.6055191,-0.87607884,-1.0816667,-1.188759,-1.2233114,-1.2504566,-1.2638599,-1.261177,-1.2541351,-1.2617629,-1.275022,-1.3229681,-1.2584995,-1.2525996,-0.9472314,0.32771602,-0.31162703,-0.5632491,-0.6795506,-0.78848815,-0.11838619,1.1992555,0.80414057,0.58503646,0.3828802,0.22535586,-0.034961842,-0.29446566,-0.51945823,-0.6469484,-0.7444526,-0.7735031,-0.85496485,-0.95679414,-0.7119554,-0.22884458,-0.4488727,-0.5033694,-0.7154118,-0.8377263,-0.9266616,-0.97189736,-1.0144761,0.00023088604,0.17369395,-0.10139329,-0.34480748,-0.40628892,-0.2723842,-0.23826343,-0.41130638,-0.54982376,-0.6745613,-0.8212139,-0.8919326,-0.90600896,-1.0353131,-1.0496322,0.47963965,0.8084686,0.51952785,0.39486143,0.25878182,0.12434419,-0.06445443,-0.20175824,-0.3375527,-0.50579834,-0.5783133,-0.6792738,0.6812292,0.6613904,0.49351335,0.33762318,0.22304392,0.048963286,-0.08313764,-0.2037676,-0.2726817,-0.3262889,-0.38768446,-0.46549094,-0.56993496,-0.33117452,-0.25580627,-0.28340676,-0.42998445,-0.57322574,-0.66981286,-0.7027912,-0.6267258,-0.49154443,-0.5157459,-0.5794872,-0.6489347,-0.72521085,-0.77336806,0.14444205,0.45025304,0.2336478,0.21799013,0.62394273,0.5581851,0.5339856,0.41285464,0.36300114,0.35351488,0.25939125,0.2100445,0.18377459,0.1179818,0.09536139,0.027465649,0.12953785,0.07144755,-0.049026735,-0.12766,-0.10122388,-0.10960149,-0.19361588,-0.20741677,-0.25293398,0.109942295,0.48525792,0.3819019,0.31692418,0.12839025,0.25325608,0.29818475,0.27261826,0.2928088,0.31853548,0.37700793,0.1958341,0.15325153,0.19516206,0.21646544,0.1750012,0.23665738,0.13046473,0.098529376,0.14601782,0.064833485,-0.22641581,-0.22109428,-0.0628882,-0.0029227063,-0.020473912,-0.050197013,0.037198313,0.110034205,0.10000049,-0.0074044093,0.06439499,0.0519576,-0.056956045,-0.17492765,-0.11384421,0.07612123,0.133695,0.009495728,-0.28588983,-0.45987874,-0.41279125,-0.24492425,-0.090978615,-0.0027044937,-0.013155855,0.107140414,0.24231511,0.19005996,0.56525517,0.56682867,0.6977158,0.50883037,0.6810551,0.5659372,0.55229753,0.3646313,0.36457577,0.30866456,0.33110905,0.24491045,0.18803264,0.13539104,0.0994494,0.07358254,-0.059933074,-0.010111637,-0.071638115,-0.19949162,-0.2250188,-0.24711788,-0.18226379,-0.24394488,-0.24424618,-0.38424787,-0.42420805,-0.452793,-0.4236995,0.6609672,0.3933078,0.440805,0.3944142,0.31294182,0.17548627,0.82510906,0.64267594,0.60295266,0.46374893,0.4545165,0.4892027,0.23743254,0.095238514,0.018839829,0.08061924,0.060661495,-0.068955176,-0.21334133,-0.2754457,-0.34985733,-0.32187197,-0.26575157,-0.47367966,-0.5368132,-0.578997,-0.51122886,-0.52478087,-0.4569472,-0.55480874,-0.70320636,-0.8106506,-0.79374135,-0.82903135,-0.84221286,-0.87478614,-0.88447416,-0.92023015,-0.902211,-0.80549943,-0.8689697,-0.84286195,-0.9017158,0.041630395,0.27090457,-0.012239359
+0.30755308,0.5763877,0.17688575,-0.042754136,-0.20495504,-0.24634144,-0.36836556,-0.41864038,-0.31981504,0.030927874,-0.19129187,-0.049607627,0.3495109,0.6055189,0.36119398,0.1540581,1.6883814,1.7315223,1.4963567,1.7834247,1.6624513,1.5477425,1.3419696,1.1975633,1.0185065,0.7312746,1.2098404,1.0443429,0.96818674,1.4647862,1.4249783,1.4810709,1.3638971,1.1388978,0.8507486,0.59007627,0.4010252,0.20048875,0.112201616,0.06329902,0.9056052,1.2144873,1.0090772,0.7936192,1.0746348,0.89545214,0.765309,0.9622498,1.6257792,1.1716245,0.8818271,0.70748866,0.52812177,0.33504412,0.2730547,0.57134527,2.275331,1.5219159,1.1134393,1.2612898,1.5061264,1.435914,2.0060318,1.778874,1.607944,1.3802459,1.1702669,0.8756709,0.5742496,0.34799337,0.12208645,-0.018300265,-0.1467902,-0.14890483,0.118093126,-0.14414921,-0.26987195,-0.37751544,-0.47234678,-0.5368643,-0.49993515,-0.56246966,-0.6137465,-0.6372975,-0.67245257,-0.7148099,-0.6826112,-0.69885796,0.34861565,0.66384983,0.21095496,-0.05243873,-0.2351242,-0.37622938,-0.30826846,0.08733115,-0.11701568,-0.33600983,-0.44767296,-0.5376407,-0.50266093,-0.50327396,-0.6411841,-0.69115794,-0.721276,-0.74633247,-0.76517445,-0.78444767,-0.809364,-0.8268234,-0.8139439,-0.80589354,-0.81919616,-0.8388065,-0.8498125,-0.83893317,-0.826097,-0.83455914,-0.3134337,0.0819746,-0.19557229,-0.44736636,-0.5950725,-0.6715956,-0.74423766,-0.7550136,-0.77184755,-0.7692739,-0.7824282,-0.78981984,-0.78543955,-0.8090358,-0.79299617,-0.45306772,0.3803535,0.4513861,0.24591452,0.9328036,1.9697231,1.4647225,1.274341,1.3348861,1.3881725,1.0105387,1.1182005,0.8945126,0.6420222,0.37569243,0.49899065,0.6640964,0.437223,0.39392442,0.3689619,0.22610027,0.17388684,0.015852071,-0.14535901,-0.21775308,-0.1999678,-0.12865692,-0.31103453,-0.39401588,-0.16674158,0.26716185,-0.09502902,-0.26857442,-0.16557938,0.27771145,-0.0025366917,-0.113169454,-0.06701162,-0.1962466,-0.28912488,-0.35059085,-0.39366537,-0.47641432,-0.50494885,1.2528,1.5731571,1.4118137,1.2003791,1.0204268,0.8608778,0.6564,0.49348673,0.3130807,0.13109177,0.016243257,-0.06515872,0.71225387,1.2557669,0.9664935,0.799886,0.60964036,0.45332628,0.36363798,0.7968089,0.91837573,0.7791454,0.72077316,0.6308712,0.51397216,0.57115257,0.6604289,0.5501918,0.36075205,0.20019813,0.13881755,0.119276546,0.055017687,0.04179445,-0.0011337548,-0.040159993,-0.08361434,-0.16510168,-0.18503591,1.2614545,1.4606938,1.4809518,1.3599172,1.3707781,1.2911336,1.483949,1.4665023,1.4232874,1.4007366,1.2905529,1.2268333,1.2165544,1.1065925,0.9578955,0.8962698,1.0135554,0.7914418,0.6425301,0.4833747,0.61085594,0.5919699,0.5721465,0.8736857,0.8176013,0.6842642,1.0709695,0.8523606,0.73642784,0.5134871,1.0487795,1.079172,0.9712115,1.1002321,1.0983438,1.2135289,0.9691874,0.9183549,0.87175965,0.8870235,0.87451994,0.9643159,0.913826,0.8489995,0.83266526,0.84501684,0.5152448,0.59552205,0.6459707,0.6436772,0.58882093,0.53838074,0.6467116,0.6798878,0.68181,0.5568806,0.63789225,0.598713,0.40000394,0.25038564,0.80261326,1.1433852,1.0676194,0.90327954,0.6585741,0.38609296,0.34779882,0.6863491,0.7293317,0.78244954,0.8039771,0.78436285,0.8692028,0.81815296,1.2965703,1.2877202,1.4651383,1.3154895,1.4061413,1.3175476,1.3627484,1.0953305,0.9300481,0.83555573,0.8906587,0.7941148,0.6691088,0.59054464,0.4954962,0.39541647,0.26822433,0.34999055,0.40243706,0.21986571,0.14434625,0.09366923,0.13185921,0.15456916,0.1056103,-0.037913136,-0.11845521,-0.10665641,-0.004610829,1.530388,1.3141296,1.073431,0.943045,0.82043535,0.7029736,1.1865504,1.1995512,1.04569,0.84216315,0.80420196,0.81745416,0.58507013,0.41605198,0.36648545,0.36778608,0.31443682,0.14960614,0.03659553,0.33270422,0.44346485,0.4053144,0.35271314,0.16257402,0.09204493,0.035481907,0.46029443,0.52487075,0.45878428,0.29337865,0.09926751,-0.048676006,-0.09514984,-0.16765553,-0.23109359,-0.30442682,-0.3805673,-0.43730634,-0.31908292,0.16530949,-0.15006286,-0.22619593,-0.22885871,0.5607908,0.8769593,0.35813883
+1.1899186,0.77596617,0.45782688,0.23955792,0.031309314,-0.11584749,-0.19904009,-0.2785729,-0.33942625,-0.41224158,-0.51271677,-0.4980834,1.5119144,1.1337497,0.8426964,0.681783,1.3551702,1.7062991,1.3805609,1.3109304,1.3224837,1.2234373,1.0132818,0.8559042,0.71306103,0.46148258,1.2761275,0.93176603,0.7199875,0.72830915,0.6877301,0.8374022,0.59300923,0.34418148,0.12359867,-0.043876447,-0.17358643,-0.18235424,-0.13162154,-0.3469749,0.03922481,0.4487619,0.2587707,1.1542552,1.3031149,1.1041701,0.8928166,1.1302967,1.9530702,1.3088262,1.0556481,0.90454066,0.8006376,0.64849985,0.5892095,0.47829556,0.8410631,0.9371588,0.87851334,1.3141574,1.1551592,1.1675147,1.6090515,1.3140876,1.4496933,1.1653183,0.855519,0.55756336,0.35715368,0.15435973,-0.022575013,-0.17247605,-0.28480515,-0.36201125,-0.44175255,-0.49418128,-0.5360813,-0.5699605,-0.60302985,-0.5844926,-0.52093726,-0.5794777,-0.60387045,-0.6016617,-0.6202285,-0.61094934,-0.5742037,-0.6096035,-0.35834733,-0.046764337,-0.36699638,-0.5136618,-0.5715082,-0.6033394,-0.62655306,-0.6269017,-0.6420276,-0.64254665,-0.65440214,-0.6632405,-0.2025721,-0.26927176,-0.45781332,-0.57841,-0.6324499,-0.6524426,-0.6541785,-0.6642434,-0.67442805,-0.6692657,-0.6608958,-0.6596421,-0.6620897,-0.6717521,-0.68061674,-0.6724196,-0.32566097,-0.038996838,-0.2295447,-0.4311735,-0.574877,-0.6342448,-0.65556926,-0.65934247,-0.66959375,-0.6595249,-0.66847026,-0.65806836,-0.64723086,-0.6512102,-0.65814805,-0.67435,-0.6582321,-0.63513815,0.4715591,1.0098624,1.6063123,2.2178464,2.311186,1.9390405,1.4987856,1.3199359,1.6482728,1.3943506,1.1119173,0.8935739,0.6696394,0.5265984,1.1339849,0.93167365,0.8490933,0.86938983,0.7765274,0.5759174,0.7132014,0.7942325,0.6080298,0.5508876,0.41510677,0.21850514,0.018796735,-0.15136099,-0.031865187,-0.04665508,-0.24178955,-0.28696615,-0.12408059,-0.07194468,-0.18264109,-0.30476052,-0.373976,-0.44553912,-0.48488492,-0.5119239,-0.5318259,-0.56120545,-0.47785854,0.87030876,1.4960114,1.3082142,1.0213536,0.77581227,0.6172422,0.48687613,0.26922473,0.08272035,-0.04950022,-0.13894373,-0.20165458,-0.14593315,-0.033336185,-0.10728092,-0.17422962,-0.3083071,-0.40933394,-0.427674,-0.31627613,-0.28052273,-0.35013518,-0.39058736,-0.40954554,-0.4278655,-0.3508276,-0.2808557,-0.3491774,-0.44133848,-0.4951619,-0.49131775,-0.48861665,-0.4953522,-0.4614895,-0.4835428,-0.49148113,-0.48566306,-0.49953032,-0.46469605,1.0507153,1.3003836,1.1221523,1.4705955,1.2665336,1.5184718,1.5276985,1.3539134,1.31187,1.2133116,1.1432819,1.0614653,1.0074226,0.88230586,0.7301925,0.6762301,0.8078873,0.6173555,0.45503962,0.36966446,0.6004121,0.7085868,0.661471,0.78912926,0.6377764,0.5469191,0.54413426,0.42479253,0.30308074,0.32700512,1.3975468,1.1554896,1.2298163,1.0868894,1.0637,1.2390571,1.0473704,0.98637605,0.8659472,0.8533266,0.83387816,0.853537,0.85515225,0.7431407,0.73405886,0.84733963,0.49106136,0.62861043,0.52704877,0.4807684,0.436247,0.43746883,0.49821898,0.55588293,0.56375927,0.60148513,0.5840444,0.636075,0.39638206,0.2632004,0.63808405,0.972947,0.9423827,0.8355672,0.79796726,0.4066594,0.30291077,0.6066331,0.5976355,0.5802976,0.5560268,0.6748133,0.87443113,0.87446344,1.1044393,1.1749914,1.4876682,1.1331971,1.0820704,1.0663434,1.1598783,0.8366785,0.66399,0.5751765,0.5891749,0.54861355,0.40772775,0.33366886,0.24138406,0.12837374,-0.02503673,-0.037215523,0.17847794,0.12898311,-0.047972046,-0.073213376,-0.08967122,-0.026042871,-0.13137409,-0.24546605,-0.30717307,-0.30746248,-0.18394077,1.5803566,1.2415708,0.9750322,0.8102304,0.6642406,0.51146424,1.3828844,1.1835046,1.0315527,0.8014232,0.7147969,0.71068454,0.4878546,0.34072435,0.289523,0.22071433,0.20575248,0.0383571,0.31187087,0.916711,0.6836895,0.6640486,0.6472926,0.47523046,0.373392,0.49794587,1.2427776,0.8914248,0.79541135,0.69633466,0.53993005,0.41525608,0.2614276,0.10420912,-0.018052168,-0.114410676,-0.20769891,-0.25863686,-0.1673842,0.0055873394,-0.23641485,-0.31965244,-0.3847084,0.5851283,0.80132306,0.41379166
+-0.50574,-0.7399074,-0.9107307,-0.9877887,-1.0502713,-1.079666,-1.0931342,-1.1570324,-1.1498572,-1.1910342,-1.0457143,-0.93369067,0.37102908,0.025216967,-0.21839148,-0.44934142,-0.27913314,0.26911578,0.10183999,-0.044876687,0.10789748,0.07730273,-0.1205738,-0.36765012,-0.5747694,-0.77288043,-0.14705122,-0.31996906,-0.63148916,-0.108894266,-0.22642031,-0.35688466,-0.4618023,-0.6737822,-0.8485668,-0.93203974,-0.9938637,-1.0973122,-1.0574266,-1.1054231,-0.18026945,-0.24350095,-0.53268945,-0.585426,0.009582445,0.29926187,-0.0039370432,0.7670815,1.0845153,0.5894182,0.11639305,-0.04100313,-0.20933801,-0.40091616,-0.58803195,-0.6584816,-0.7977111,-0.88984007,-0.24233153,0.25841147,0.95794666,0.61106443,0.8700441,0.6263718,0.4540359,0.34216934,0.0766897,-0.27731532,-0.39581227,-0.4710493,-0.6715441,-0.8307304,-0.940294,-0.99761796,-1.0452949,-1.0852907,-1.1199405,-1.1385946,-1.1599784,-1.2139107,-0.7550118,-0.34739578,-0.71239823,-0.9263016,-1.0595474,-1.0067341,-0.78500605,-0.9426693,-1.0121588,-0.43695086,-0.62614834,-0.82160985,-0.9615418,-1.0731542,-1.1345643,-1.1713239,-1.2067928,-1.217497,-1.2347741,-1.2373413,-1.2312303,-1.2417848,-1.2461557,-1.2596822,-1.246228,-1.2399441,-1.2320883,-1.2485638,-1.2592919,-1.2582333,-1.2343295,-1.2061402,-1.2226579,-1.221578,-1.225339,-1.2340351,-0.20745787,0.13337141,0.027808927,-0.07329398,-0.37872267,-0.66324955,-0.8805779,-0.9950793,-1.0585043,-1.0969391,-1.132083,-1.1458031,-1.1722004,-1.1930794,-1.2063091,-1.2269492,-1.2263567,-1.2174442,-0.52046067,-0.17025626,0.4852805,0.6318328,0.554478,0.38415,0.14685789,0.01796759,1.2023796,0.7159825,0.30074385,0.02432447,-0.2321316,-0.42773342,-0.5782819,-0.6256927,-0.09912255,0.0023403987,-0.051533766,-0.097858526,-0.18587884,-0.13607669,-0.20828289,-0.13814744,-0.23099604,-0.29380807,-0.5052487,-0.7014346,-0.8339902,-0.80785656,-0.86011994,-0.96156347,-1.0703561,-1.0056206,-1.0002377,-1.0588379,-1.0384033,-1.0672808,-1.0800133,-1.1350775,-1.1106867,-1.1652591,-1.0152551,-0.27357602,1.1017416,0.37823164,0.11800138,-0.20013773,-0.4054348,-0.6607244,-0.7410845,-0.8465199,-0.9267763,-0.9706924,-1.0213499,-1.0144304,-0.90694904,-0.9235134,-0.95490384,-1.0097606,-1.0872024,-1.1901462,-1.006083,-0.8912157,-1.0012546,-1.0665067,-1.1149642,-1.1748075,-1.1669447,-0.9940698,-1.02079,-1.0908129,-1.2227185,-1.1446276,-1.1515313,-1.2668188,-1.1170268,-1.1383514,-1.145051,-1.1642151,-1.2497516,-1.1427588,-0.6878136,-0.42169696,-0.5004177,-0.30248737,-0.08910244,0.13361546,0.20760173,-0.04380419,-0.09736278,-0.082829155,-0.26535928,-0.26276267,-0.37790343,-0.46488833,-0.59649044,-0.7748428,-0.627869,-0.65900004,-0.74769473,-0.8942685,-0.8352564,-0.8395449,-0.8993873,-0.91110563,-0.9012298,-0.9023208,-0.8537233,-0.8582038,-0.85934335,-0.58642733,1.2811538,0.94367456,1.3641229,0.9910085,0.8016989,0.4506787,0.083496496,-0.1422931,-0.18905804,-0.26485386,-0.33763534,-0.3684081,-0.44441152,-0.45650178,-0.51386726,-0.45507258,-0.6603911,-0.57473063,-0.5728793,-0.654107,-0.75646687,-0.8408694,-0.80206853,-0.8598674,-0.80287486,-0.74589425,-0.7950349,-0.7949081,-0.8504311,-0.7727933,-0.7869686,-0.68877304,-0.7596082,-0.76341903,-0.7996146,-0.8614619,-0.87815213,-0.77317315,-0.7780485,-0.84998167,-0.9465451,-0.9664457,-0.80804664,-0.90390664,-0.20424488,0.081458524,0.35204393,0.22247976,0.07169924,-0.01537326,-0.16219553,-0.29774258,-0.44580233,-0.57828426,-0.57324564,-0.60154295,-0.69354284,-0.69565135,-0.7423502,-0.77836144,-0.8296451,-0.87293565,-0.88195574,-0.8957995,-0.8634508,-0.94421685,-0.9202914,-0.8978338,-0.91041565,-0.9416064,-1.0220518,-1.0377603,-1.0937865,0.23205477,0.08224118,-0.19545326,-0.3474865,-0.5022029,-0.67176896,0.42990083,0.1742245,-0.17807049,-0.33199677,-0.45055676,-0.5128372,-0.63253474,-0.73831344,-0.7866629,-0.8028513,-0.77531624,-0.8373946,0.0011587143,0.34070483,-0.043693177,-0.23832932,-0.3241205,-0.14860195,0.7241778,0.38985926,0.41139498,0.16334423,0.02689635,-0.20635465,-0.35558754,-0.5426067,-0.6619641,-0.74726856,-0.8073356,-0.8548455,-0.89924437,-0.9402666,-1.0098953,-0.95035255,-1.008781,-1.0592773,-1.1084132,-0.16487774,-0.15867311,-0.41078222
+-0.913018,-1.2352996,-1.3393993,-1.4064538,-1.4684598,-1.4968884,-1.4803329,-1.5617695,-1.2218006,-1.4216826,-1.514854,-1.3673608,-0.9108155,-1.0027361,-1.2223192,-1.3825371,-1.4258648,-0.44474095,-0.07439964,-0.39870626,-0.6279894,-0.77900064,-0.948516,-1.0634531,-1.0837504,-1.303211,-1.2621156,-1.2327936,-1.3989236,-1.3663579,-1.4075856,-1.4260986,-1.3472103,-1.3517535,-1.4009184,-1.4176847,-1.5073614,-1.5892835,-0.8285632,-1.0487896,-1.245114,-1.3772056,-1.4299679,-0.99715126,0.1806956,0.7000449,-0.07380221,-0.16023952,0.35289612,0.19540444,-0.14300841,-0.30508474,-0.5547234,-0.837438,-1.0648699,-1.2119746,-1.3326095,-1.3940436,-1.4298403,-1.1761951,-0.0205222,0.78956133,0.4177509,0.43790096,0.53054285,0.50540155,0.13256335,-0.16559029,-0.2939993,-0.5913743,-0.82277495,-1.0416195,-1.2104288,-1.3380443,-1.4340117,-1.5002002,-1.5169262,-1.4946373,-1.5033745,-0.96467304,-0.98137045,-1.1421845,-1.3013977,-1.4327083,-1.4958298,-1.2493789,-1.1957686,-1.3021718,-1.3345224,-1.0295439,-1.1498327,-1.2355015,-1.3956873,-1.4631834,-1.4694536,-1.4763726,-1.5006148,-1.5081326,-1.5090781,-1.4948746,-1.4897183,-1.4882536,-1.496258,-1.5074868,-1.4826727,-1.4608498,-1.4393002,-1.4544778,-1.4587518,-1.4937124,-1.4573812,-1.4157776,-1.438988,-1.4041879,-1.4125588,-1.4488714,-1.0280328,0.32117367,-0.23227754,-0.56968784,-0.7931014,-0.98308325,-1.2307256,-1.3511496,-1.3564818,-1.3970264,-1.4327521,-1.3914511,-1.4225297,-1.4227107,-1.4334338,-1.4696755,-1.4317825,-1.4187671,-1.2967639,0.36434257,1.3397942,1.5677705,0.7244064,0.4673847,0.1898751,-0.11448618,0.7679794,0.7814642,0.33798826,0.032775395,-0.26685634,-0.4978693,-0.6570221,-0.8587525,-0.8149134,-0.671882,-0.5608334,-0.09517493,-0.22506237,-0.2128331,-0.27266032,-0.30035043,-0.5437765,-0.700724,-0.9749465,-1.1661545,-1.2072477,-1.0618868,-1.1226509,-1.244961,-1.3045136,-1.2681481,-1.2650087,-1.3440661,-1.3618976,-1.4006592,-1.4136208,-1.460456,-1.4044511,-1.4139214,-1.483074,-1.3006122,0.7410736,0.38613182,0.25738558,0.007856406,-0.32905063,-0.6129076,-0.8238257,-1.0235075,-1.120848,-1.2200285,-1.273761,-0.689343,-0.0030640587,-0.29812804,-0.5661491,-0.8265722,-1.0442332,-1.1715053,-1.2033725,-1.2700324,-1.3398085,-1.3960111,-1.4236789,-1.4007518,-1.2917863,-1.1669513,-1.2981738,-1.4627161,-1.5174216,-1.4385622,-1.4427137,-1.4814969,-1.4403573,-1.4557273,-1.4774451,-1.4934683,-1.5090741,-1.5006365,-1.3629636,-1.2389373,-1.0892133,-0.9987745,-0.80014867,-0.018153481,0.09319741,-0.043481253,-0.13729486,-0.23877794,-0.3810476,-0.45540047,-0.59634113,-0.7100122,-0.85901904,-0.94497,-0.7531418,-0.91819215,-1.1316981,-1.3051146,-1.288137,-1.3008456,-1.335411,-1.2792631,-1.2618725,-1.3097745,-1.3148601,-1.3037604,-1.3501608,-1.3732989,-0.73207545,1.3209572,1.3110987,0.56414115,0.4469231,0.386773,0.3037821,0.05003663,-0.08492314,-0.15385151,-0.18783152,-0.2194686,-0.26548967,-0.28689608,-0.32473138,-0.2667043,-0.4583149,-0.5770962,-0.6947396,-0.8322923,-0.84162426,-0.8413881,-0.79971325,-0.7877072,-0.7655019,-0.75653136,-0.831763,-0.8833056,-1.0721645,-0.99809337,-1.0472388,-1.0407534,-1.1343216,-1.2247269,-1.1419611,-1.1111189,-1.1313813,-1.2280056,-1.3334005,-1.4255967,-1.4693182,-1.4154729,-1.3313495,-1.3018279,-1.2540097,-0.95276296,-0.02081316,-0.08349229,-0.23837408,-0.33166513,-0.46696627,-0.7426885,-0.9867327,-1.093483,-1.0801532,-1.1763047,-1.2241051,-1.1962674,-1.2829782,-1.3760898,-1.4756546,-1.497735,-1.4676164,-0.95393217,-0.8913703,-1.0825145,-1.1740388,-1.2204118,-1.2697077,-1.4047403,-1.5348139,-1.5403422,-1.5285249,-0.8441949,-0.55110043,-0.8427728,-1.0232987,-1.2035141,-1.3970199,-0.1669656,0.15100852,-0.21813229,-0.55361915,-0.71876365,-0.84037626,-1.0566814,-1.2469693,-1.3634058,-1.3633575,-1.2791653,-1.3793141,0.161616,0.8846668,0.2799872,0.13196799,0.0017661229,-0.007831089,0.48307115,0.488225,0.36452508,0.18921122,0.016818441,-0.15646559,-0.3031733,-0.49762642,-0.7062239,-0.8806694,-1.0523154,-1.1881659,-1.2966977,-1.4057271,-1.4809419,-1.4162554,-1.5298041,-1.5511225,-1.6133338,-1.3821254,-1.2801025,-1.4958991
+-1.0421097,-1.5369418,-1.4850602,-1.492202,-1.5030255,-1.5211697,-1.511111,-1.538816,-1.532289,-1.594734,-1.5621473,-1.5341983,-1.5272219,-1.4611894,-1.5173078,-1.547094,-1.552346,-1.551728,-1.2532606,-1.3839967,-1.3600304,-1.3481629,-1.4494228,-1.4677417,-0.91975415,-1.1079332,-1.2392671,-1.357265,-1.4645885,-1.4289823,-1.4504492,-1.493049,-1.5577865,-1.499655,-1.550273,-1.5549002,-1.5893179,-1.64137,-1.5855316,-1.5091335,-1.5400236,-1.532531,-1.528882,0.18565595,-0.6170522,-0.53019094,-0.84186554,-0.9200702,-0.86734766,-0.99616885,-0.9973066,-0.9326198,-1.0817466,-1.2103636,-1.3277434,-1.3856001,-1.4002105,-1.4194574,-1.4386344,-1.3582205,-1.146059,0.4687037,0.1426681,-0.4041563,-0.52699566,-0.29204327,-0.6168506,-0.7811675,-0.7565773,-0.7578828,-0.89324313,-1.0139744,-1.1624252,-1.2301575,-1.3197184,-1.3793087,-1.3999782,-1.4116784,-1.4295092,-1.045481,-0.89412767,-0.8809377,-1.1156821,-1.306447,-1.3943264,-1.3529139,-1.175148,-1.2966468,-1.3562856,-1.3959932,-1.4619567,-1.4560913,-1.5015156,-1.5003204,-1.4990603,-1.4916705,-1.4943085,-1.496516,-1.4867184,-1.4816257,-1.504516,-1.5026238,-1.5152725,-1.5151451,-1.4883988,-1.4938495,-1.3685834,-1.4463347,-1.4951785,-1.4996065,-1.5089587,-1.5161171,-1.3203089,-1.2963756,-1.4238935,-1.5004779,-1.5220728,-1.536189,-1.5380142,-1.535887,-1.543412,-1.5331174,-1.53082,-1.5396825,-1.517296,-1.539484,-1.5484465,-1.5303929,-1.5373828,-1.5244689,-1.5407653,-1.5472298,-1.5172858,-1.5240974,-1.5297225,-1.5161188,-1.1868101,-1.0739901,-0.9771315,-1.1505784,-1.3191288,-1.4390523,-1.3006749,-0.8150736,-1.1598966,-1.2854276,-1.368904,-1.3959721,-1.438513,-1.4730362,-1.4765828,-1.1575683,-0.80070984,-1.0099643,-1.127562,-0.90591323,-0.69914937,-0.8461917,-0.9511275,-0.9578428,-1.138364,-1.2921641,-1.3798013,-1.3589725,-1.335501,-1.3878804,-1.43143,-1.4275362,-1.1165621,-0.87333906,-1.114038,-1.2503659,-1.3297894,-1.4006596,-1.4502324,-1.386338,-1.4691548,-1.5118896,-1.3621073,-1.2489238,-1.2926297,-1.32504,-1.3236415,-1.4405916,-1.5059252,-1.4801917,-1.4705346,-1.5174737,-1.5375721,-1.4363196,-1.2563218,-1.348706,-1.418528,-1.481232,-1.5213089,-1.5510944,-1.5416641,-1.5505972,-1.5555882,-1.5763223,-1.5743159,-1.5750511,-1.4476066,-1.0299199,-1.2402363,-1.4295516,-1.5157765,-1.508468,-1.4996077,-1.5422556,-1.535362,-1.538574,-1.5392491,-1.5603034,-1.5852382,-1.5879749,-1.5696036,-1.5311501,-1.4110564,-1.4592592,-1.3212181,-0.85539174,-0.5638876,-0.7558955,-0.8485286,-0.9263022,-0.8661134,-0.91806126,-0.9828434,-1.0998334,-1.2228184,-1.2972012,-0.5812651,-0.66373557,-0.90573776,-1.0885681,-1.1435244,-1.2076669,-1.2708882,-1.1947299,-1.2085369,-1.2485735,-1.2946573,-1.3062356,-1.429141,-1.359682,-1.2485046,-0.9659213,-0.61580825,-0.8524171,-1.0213587,-0.8889113,-0.90137756,-0.9821687,-1.0543103,-1.1198223,-1.186274,-1.1962997,-1.2536454,-1.2454898,-1.2834051,-1.2369478,-1.293551,-1.2693481,-1.3585517,-1.4109228,-1.4084153,-1.3447821,-1.1418494,-1.232805,-1.2763491,-1.2986498,-1.3333347,-1.3567561,-1.4181058,-1.4187863,-1.3900809,-1.4298565,-1.4749,-1.4990118,-1.5084783,-1.457479,-1.4590544,-1.5197574,-1.5331104,-1.5555719,-1.5501736,-1.5158058,-1.4937619,-1.4210976,-1.4558015,-1.481111,-1.4764748,-1.1932597,-1.165931,-1.1843452,-1.2709249,-1.3801563,-1.5093644,-1.4936519,-1.5098575,-1.5628347,-1.5703199,-1.5357085,-1.5691576,-1.5882605,-1.6018212,-1.5925555,-1.5936798,-0.9924412,-0.8447928,-1.0751758,-1.1940922,-1.2805579,-1.3651266,-1.4348513,-1.4906315,-1.5026207,-1.5047292,-1.51231,-1.4983151,-1.5691054,-1.4959666,-1.4851747,-1.5575827,-1.0402466,-0.8306792,-1.09916,-1.2786076,-1.3698672,-1.4184923,-1.5097034,-1.5276064,-1.5499964,-1.5338713,-1.6381981,-1.6506573,-0.95483875,-0.41119456,-0.756066,-0.97522354,-1.0269703,-0.7489654,-0.59660995,-0.4307078,-0.6332937,-0.6763313,-0.8745806,-1.0210402,-1.1228502,-1.2175924,-1.2784055,-1.3184783,-1.3817508,-1.4125309,-1.4313567,-1.4706566,-1.5011799,-1.4583914,-1.5124592,-1.5217323,-1.5427799,-1.5120854,-1.5257034,-1.5814152
+-0.093020506,-0.21085453,-0.55339926,-0.62562525,-0.7387461,-0.7735098,-0.7656827,-0.7707814,-0.7798102,-0.77070916,-0.7007257,-0.6930575,-0.575091,-0.5102859,-0.67500937,-0.7689799,-0.75962675,-0.4399786,1.1430917,0.89695424,0.6882563,0.71282196,0.6042989,1.7410545,1.5716636,1.167361,0.86897326,0.54548556,0.3031213,0.15109172,-0.030405842,-0.105558746,-0.022932343,-0.23096603,-0.49297732,-0.66122293,-0.7534634,-0.7057325,-0.6840265,-0.56934434,-0.5310088,-0.6074763,-0.6671009,-0.72036636,0.6417842,1.6542237,1.1836045,1.4590927,1.5206671,1.4683111,2.1759825,1.8367217,1.467806,1.0522095,0.6329932,1.6199812,1.5118694,1.2027128,0.95127094,0.7204517,0.6899265,2.5306594,2.2343228,2.538187,2.4000068,2.7550912,2.5962424,2.3183894,2.1206431,1.8914639,1.6463611,1.2998576,0.92418283,0.6548115,0.35660827,0.16358641,0.04641535,-0.029532962,-0.1259147,-0.21166372,0.41463822,1.2061398,0.90453064,0.37983635,0.17351857,-0.033836477,0.3605156,0.21423724,0.14614525,-0.029296614,-0.16739422,-0.2656381,-0.3502385,-0.3929586,-0.41448694,-0.4595393,-0.46967542,-0.48887908,-0.5061622,-0.5381229,-0.5819343,-0.5812038,-0.60240865,-0.5959649,-0.6394993,-0.69031113,-0.7035709,-0.69635504,-0.68599087,-0.7697742,-0.46716738,-0.35236192,-0.26645976,-0.30144843,-0.47468686,-0.57306087,-0.63450134,-0.59150773,-0.5007529,-0.54754007,-0.3918537,-0.51291984,-0.60913265,-0.6626291,-0.6722555,-0.73807555,-0.72967255,-0.56653637,-0.2807989,-0.41507083,-0.61284745,-0.6537888,-0.6937246,-0.758569,-0.7561121,-0.6141841,-0.1526488,0.24957237,0.5560175,0.528937,0.12254671,-0.1510661,-0.29505292,0.2833433,0.089670576,-0.10514427,-0.32860792,-0.34954077,-0.43705934,-0.29171193,-0.45106322,-0.35761887,0.73822606,0.97926646,0.5436093,0.5284121,0.6319276,0.86078763,0.717068,0.56064796,0.2596097,0.0649643,-0.12739125,-0.25405562,-0.24032736,-0.36788493,-0.41498482,-0.34850827,-0.33783072,-0.3105776,-0.4246406,-0.48418576,-0.54863507,-0.5521499,-0.45989078,-0.342317,-0.47798425,-0.5223961,-0.033989184,1.0037218,1.2004607,1.3021376,1.5417864,1.4283459,1.3964866,1.4003266,1.0635818,0.7075182,0.5471078,0.5934178,1.3026756,1.1940491,1.084562,0.78830093,0.4370619,0.22994298,0.12393493,0.013186969,-0.11071732,-0.17894542,-0.2250826,-0.2558751,-0.2590269,0.4169268,0.43943468,0.098496415,0.013232388,0.08652524,-0.086463206,-0.14612338,-0.21629256,-0.25440842,-0.32870457,-0.4321229,-0.45329595,-0.4359045,-0.32948738,0.2751133,0.36172318,0.27201262,0.111695625,1.108809,1.6826334,1.7366837,1.815744,1.8780826,1.8375299,1.8447036,1.7975571,1.6215726,1.5190734,1.3248675,1.7669251,1.9381572,1.5607742,1.3187814,1.2425958,1.2510294,1.2284689,1.3404397,1.1139821,0.86046916,0.60821784,0.71193373,0.45030433,0.3677741,0.7165538,1.0977368,1.5049788,1.1256849,1.0498621,1.3687454,1.7786541,1.4240575,1.1127118,1.0032295,1.0102066,1.1008384,1.2101636,1.167738,1.0621812,1.3468324,1.1472737,0.5765029,0.32525358,0.2110821,0.2635967,0.33066034,0.36822242,0.39483625,0.54629284,0.5938198,0.5578683,1.1090494,0.8901104,0.71855736,0.6304126,0.5550728,0.30343935,0.12400404,0.28319973,0.23263907,-0.114609964,-0.32947636,-0.35839802,-0.367325,-0.34430444,-0.30486405,-0.20426029,0.11327881,0.11903492,0.1183222,0.1391387,0.5238524,0.62403405,0.5242016,0.4322989,0.055254944,-0.22622845,-0.37475163,-0.31102055,-0.47372246,0.39949125,0.6763654,0.44275278,0.2544619,0.039332025,0.009335585,-0.011416458,0.8300027,1.1064942,0.9606468,0.90830106,0.7807655,0.715089,0.47237924,0.22331831,0.1308339,0.048485644,-0.03432318,-0.04134009,-0.38105255,-0.5911787,-0.6004125,-0.63287944,-0.27711254,0.1456424,-0.09697173,-0.35161778,-0.5360689,-0.62402034,-0.7753867,-0.76508987,-0.72733927,-0.72063845,-0.14429137,0.13083899,0.3130215,1.1786653,1.0652993,0.9288553,1.0343376,1.2943801,1.4630346,1.6766107,1.8448547,1.9936848,1.7821677,1.441618,1.2020591,0.9033725,0.69594204,0.48730946,0.24081263,0.09548,-0.047230653,-0.16588145,-0.23967174,-0.31709382,-0.4168082,-0.45859367,-0.5023732,-0.5257198,-0.53374696,-0.6201352
+0.4265105,-0.008556537,-0.13148677,-0.10552157,-0.016070724,0.40649134,0.6365573,0.21911943,-0.021476425,0.15357009,0.31263265,0.31727877,0.95767903,1.4307004,1.3048724,1.7115302,1.5168356,1.7597792,1.972076,1.8586836,1.888567,1.5423841,1.3284478,1.1805428,1.0267936,0.9221355,0.86557,0.81162786,0.7349577,0.6705501,0.62736773,0.53436774,0.55333453,0.4843579,0.34628496,0.3576465,0.39254367,0.28634533,0.24137688,0.083918706,0.017058007,-0.0025727376,0.110016495,0.0037935078,0.160914,0.24326235,0.2564671,0.25084886,0.221142,0.16692847,0.13123497,0.013672598,0.4814093,0.7342466,0.5426622,0.9476213,1.0208709,0.9673541,1.1965297,1.0561708,1.2513764,1.3282164,1.4318244,1.2785652,1.1269921,1.22142,1.4095743,1.0703609,0.83177733,0.68377817,0.7280956,0.9138329,1.2834206,1.5247748,1.3272429,1.1847651,1.1146506,1.2938733,1.3880938,2.184752,2.0279837,1.8320447,1.4817176,1.4990896,1.2453104,1.7672215,1.8395824,1.8956122,1.5717328,1.437335,1.7114742,1.4013598,1.1030633,0.82977295,1.150013,1.7275255,1.7522197,1.4373026,1.8664193,1.5214357,1.4551857,1.5158951,1.9216968,2.1371303,2.2175698,1.8844362,1.6165825,1.6731958,1.5300531,1.1919583,1.2670946,1.6559873,1.4935769,1.1367226,1.4947681,1.3160597,1.0906562,0.9422401,0.70294416,0.5695524,0.43684685,0.36164707,0.5597298,1.2220393,0.8787037,1.4954615,1.56193,1.3995037,1.0803047,0.7645999,0.99019754,1.037073,0.8236209,0.98575157,0.92560124,0.7799134,0.7102111,1.3860154,1.1926068,1.1940677,1.3874419,1.3027892,1.1223823,0.65724546,0.5303636,0.77597606,1.3565675,1.1606282,0.85150874,0.7314185,0.6803632,0.6901988,0.54476225,0.37729853,0.19684675,0.1686254,0.94179666,1.6602395,1.3808894,1.4050759,1.2751237,1.3809338,1.2794206,1.0699188,1.149329,1.2881017,1.3050275,1.0277932,0.9298785,1.2656524,1.0374168,1.2408972,1.2064562,0.99711776,0.9375916,0.8889108,0.63554806,1.0979116,1.6256132,1.5464102,1.3176308,1.2357529,1.159508,1.0278366,0.98807424,0.8547077,0.67888623,0.87883973,1.2523386,0.9710028,0.8284422,0.742696,0.73295903,0.5904639,0.57871336,0.8072188,0.71765316,0.6810163,0.5424219,0.6470665,1.0630455,0.9351423,0.8088795,0.6374604,0.7802759,0.6125799,0.9333176,0.9090427,0.6585728,0.860157,0.8271873,0.6609954,0.66832745,0.5596005,0.9511193,1.0292429,0.98922145,1.0153518,1.0384761,0.94633704,0.989748,0.9806422,0.90296507,0.85650384,0.7024367,0.72572935,0.6767696,0.58090544,0.46551418,0.65162563,0.64732265,0.38944244,0.09658458,-0.12975925,-0.059442632,0.03396661,0.2588594,0.20165041,0.2707563,0.057704784,0.02374921,-0.024046205,0.30629084,0.26981747,-0.038156368,-0.16097596,-0.0719905,0.09175489,0.08500507,0.30249265,0.7400858,0.26854768,0.081011616,0.09512905,0.11829581,-0.026154421,-0.07692429,-0.076148696,-0.06768807,-0.030743875,-0.06283552,-0.047210865,-0.057599626,0.024415664,0.057076417,-0.0005211383,0.027662337,0.04066459,0.08414661,0.5617881,0.39846188,0.17871568,0.12470027,0.21996933,0.10733727,0.040246636,0.1106504,0.2477032,0.0701881,0.026754938,-0.040725105,-0.0076197013,-0.041624434,0.10635892,0.054655023,-0.019604273,-0.04789997,0.043360256,0.057525598,0.010203145,0.039949693,0.021176152,0.045493238,0.18713933,0.26800364,0.5408901,0.7370547,0.5737375,0.46699494,0.43156302,0.2645053,0.15665019,0.13708606,0.12273352,0.1653398,0.17001495,0.14695877,0.10185661,0.06331227,0.11693124,0.074816845,0.14754957,0.17607695,0.07648013,0.08722275,0.08007946,0.11326351,0.12970942,0.12481299,0.20674199,0.14935476,0.21568012,0.3853284,0.5453947,0.5693369,0.7095275,0.77269375,0.79154897,0.6326152,0.32337907,0.19962084,0.1305837,0.12642857,0.22590077,0.21046436,0.23135689,0.20170349,0.29236743,0.49244756,0.71456385,0.4245813,0.30869123,0.2687626,0.27893734,0.21055168,0.15745312,0.19422415,0.22199893,0.2326363,0.30422103,0.86493194,0.9291928,1.0433286,1.3596283,1.0756679,0.59656906,0.7914741,1.3554115,1.423005,1.963934,2.1006382,2.0390384,2.066229,1.9518766,1.780921
+-0.14601901,-0.6250752,-0.78684986,-0.9390714,-0.8328532,-0.5607642,-0.5113472,-0.88678706,-0.9386792,-0.7308846,-0.76556134,-0.7780744,-0.60524476,-0.36342862,-0.31004876,0.11983853,0.7896491,1.0709472,0.934813,0.77792156,0.6486188,0.14704941,-0.074449666,-0.07694932,0.8587649,0.7939521,0.52313495,0.21223998,-0.008226819,-0.09163537,-0.21874398,-0.3384899,-0.32975453,-0.4382633,-0.48902047,-0.47207308,-0.5430245,-0.64712095,-0.657388,-0.7340035,-0.09283026,-0.2413348,-0.3833999,-0.5796561,-0.59742516,-0.5596422,-0.6504948,-0.6615693,-0.6722012,-0.69031745,-0.7219013,-0.76795423,0.9153385,0.8401189,1.3836092,1.7426133,1.3692155,1.2650019,1.5318747,1.0241609,2.0565863,2.3881593,2.200199,2.2103562,2.3367515,2.035237,2.0290709,1.6392174,0.9502937,0.48783773,0.91051906,0.8683547,1.5899403,1.4948059,0.6558703,2.0746214,1.7644416,2.2719553,1.769511,1.4637014,1.3689733,0.8109828,1.0496198,1.7234505,0.9304081,0.39896816,0.2811489,0.12459627,-0.14587688,-0.31044137,-0.23672557,-0.37621945,-0.65965486,-0.6198715,-0.62530595,-0.1244765,0.17802855,0.98535204,2.4501,1.8607701,2.1132123,2.442495,2.730444,2.5290442,2.5138419,2.1950288,1.6562815,1.9457152,1.7404209,1.0409089,2.2892594,2.5873048,2.0207975,1.8020293,2.1126547,1.5938671,1.2095492,1.6849359,1.2118213,0.6123414,0.5744185,0.56974703,0.03258466,1.063401,0.6863671,2.2638507,2.1957738,1.722808,1.1846869,0.6267665,0.24792197,0.7680476,2.3351982,1.7922366,1.3935869,1.015046,0.46077687,0.39005354,0.26074454,0.4371993,0.80661035,0.49340612,0.06845486,-0.2891131,-0.4863962,-0.40347424,-0.6211743,-0.63274837,0.7720799,0.88284934,0.78952444,0.52960056,0.10382556,-0.2179577,-0.3986366,-0.48201156,0.6644797,2.2901309,1.8333421,1.7230228,2.195062,1.8252277,1.38224,0.8285384,0.75021863,0.81449926,0.3299631,-0.070564024,0.17159581,0.9598848,0.37835076,0.2209095,-0.07108786,-0.16293785,-0.07536297,-0.3914619,0.3929533,0.52283937,1.4116998,0.96369195,0.4990973,0.13639572,-0.01361794,-0.24827045,-0.3272928,-0.3590147,-0.16405833,0.99592924,0.721842,0.26400107,0.08037099,-0.11054858,-0.23712328,-0.22475898,-0.35377958,-0.55802345,-0.45312893,-0.4649878,-0.53431636,-0.5218575,-0.5597056,-0.5950291,-0.70505357,-0.680955,-0.6725836,-0.6958563,-0.67818576,-0.68023,-0.2983634,-0.044477038,-0.18667445,-0.11241818,-0.19214267,-0.29337555,-0.22210044,-0.2738983,-0.3153095,-0.3236268,-0.34595543,-0.35851407,-0.4020453,-0.442124,-0.43731272,-0.47577447,-0.6303232,-0.6641679,-0.54675424,-0.5857092,-0.56783736,-0.5143372,-0.56196296,-0.7005317,-0.8584473,-0.9687284,-0.9651747,-0.50036395,-0.57109576,-0.5680878,-0.58704174,-0.67763555,-0.7271781,-0.28102684,0.078306906,-0.101835124,-0.39987493,-0.678162,-0.67190397,-0.5583683,-0.6459369,-0.1456011,-0.3451077,-0.6397983,-0.8149912,-0.76961464,-0.705184,-0.75140196,-0.78964907,-0.7676245,-0.71831316,-0.7429061,-0.7479056,-0.677789,-0.79738724,-0.59358376,-0.65284,-0.768617,-0.75773835,-0.7932968,-0.7685338,-0.442425,-0.6936387,-0.7396851,-0.6820204,-0.7283263,-0.78407264,-0.78471065,-0.73873353,-0.56441855,-0.65424705,-0.6958864,-0.7109144,-0.7079451,-0.6754186,-0.63731486,-0.62302035,-0.6380146,-0.6721933,-0.6257847,-0.674138,-0.71022105,-0.7341284,-0.74408096,-0.7336944,-0.6276708,-0.45710605,-0.29543766,-0.27340406,-0.4612413,-0.6861305,-0.54201794,-0.5860051,-0.73482335,-0.76951134,-0.7865111,-0.65164804,-0.52257097,-0.6970192,-0.7095082,-0.7284738,-0.71997213,-0.73169065,-0.7333664,-0.6653147,-0.6822443,-0.7031028,-0.67965966,-0.7227494,-0.693476,-0.74356854,-0.67610514,-0.749333,-0.69716156,-0.5151012,-0.43976593,-0.39234352,0.030833758,-0.09967331,-0.12206095,-0.3941974,-0.62376195,-0.68527514,-0.6690741,-0.76399213,-0.72636604,-0.7942779,-0.75600326,-0.79012513,-0.6682362,-0.4988681,-0.092783324,-0.36012393,-0.56126195,-0.76301944,-0.75971663,-0.78814584,-0.81006104,-0.7573026,-0.7955051,-0.76752484,-0.5454575,0.06400693,-0.23663238,-0.010935955,0.19586527,-0.20278567,-0.5987492,-0.008052044,0.36757758,0.38888484,0.8916353,1.3520513,1.5621656,1.2676766,0.9184563,0.65797603
+0.029516168,-0.49189043,-0.5933,-0.7301722,-0.68961245,-0.4981237,0.20786583,-0.38204685,-0.63596934,-0.45461833,-0.55619437,-0.5843774,-0.5053678,-0.2916523,-0.3382253,-0.24037492,0.268772,0.4257778,1.066353,1.5125793,1.2215579,0.87991405,0.4330762,0.93229914,2.2651215,2.1100867,2.0387998,1.5562049,1.0521605,0.764295,0.35739136,0.06761325,-0.004899882,-0.17860365,-0.30141926,-0.32819504,-0.36578378,-0.52073133,-0.48242152,-0.12550682,0.46020234,0.51525164,0.1997436,-0.17257434,-0.25847626,-0.34401068,-0.4520136,-0.5493388,-0.5710668,-0.57622147,-0.60231763,-0.64985347,-0.574278,-0.50355333,0.23184487,1.3970176,1.027458,1.070132,1.1324058,0.6763584,1.6849334,1.1792384,0.9166043,0.9519485,1.3125514,0.96121615,1.0321311,0.6821775,0.11995009,-0.13148054,-0.24366432,-0.25046915,-0.03767743,0.39898562,0.4889718,1.7697313,1.1733681,0.8181012,1.0182985,0.9804564,0.4984203,0.1418314,0.57100207,0.752703,0.116564326,-0.1449441,-0.31265077,-0.37414414,-0.41956222,-0.5428685,-0.14244384,-0.36910477,-0.5831858,-0.6423646,-0.66609585,-0.58069575,-0.56460786,-0.51996815,-0.27622625,-0.4708383,1.4513894,2.1527646,2.3171518,2.0182853,1.8609341,2.0822392,1.6556668,1.9034514,1.6765406,1.1391237,0.7330836,1.428369,1.2649492,0.7331451,1.2952118,0.88020897,0.8930758,1.8698845,1.4952548,1.1421311,0.74413836,0.35949168,0.016950972,-0.10969999,-0.22858956,0.3747641,0.6807172,0.28078535,-0.06895437,-0.28951532,-0.3715435,1.3285638,2.0643039,1.961523,1.9288205,1.7476861,1.4202981,1.1771424,0.7582644,0.8869952,1.5175469,1.3283907,1.0887548,0.50782675,0.06162534,-0.009827569,-0.14982459,-0.25184467,0.39912328,0.6104023,0.2956675,0.2241205,-0.024115153,-0.22787738,-0.35339332,-0.41826338,-0.50990164,0.21186188,1.1611369,1.3026849,1.5590532,1.1593882,1.0469799,0.59506714,0.32458186,0.29955137,0.10624158,0.2423332,1.3440892,1.459397,0.8881973,0.7598447,0.4650419,0.47989815,0.42482084,0.40620852,0.78249866,0.88851625,1.0040692,0.5932174,0.44373935,0.25951794,0.14332956,0.004556179,-0.109095566,-0.16431016,-0.09814393,1.0363507,0.89775825,0.64987737,0.33069476,0.17468277,0.029662497,-0.068233185,0.050189428,-0.18730813,-0.168854,-0.24622214,-0.14986038,-0.390216,-0.23983341,-0.11873745,-0.1832386,-0.2621101,-0.31819358,-0.35100436,-0.33708924,-0.32260457,0.561315,0.47944853,0.30599147,0.39802676,0.30145136,0.121574156,-0.0037563592,-0.06891354,-0.12383937,-0.16894731,-0.20722753,-0.2613927,-0.2768566,-0.3219325,-0.3148071,-0.37305206,-0.38390505,-0.55527997,-0.40448865,-0.45523947,-0.455936,-0.37816352,-0.42080808,-0.22734797,-0.58678097,-0.71433485,-0.7763635,-0.48067492,-0.46806324,-0.48685682,-0.58891743,-0.64107585,-0.6400211,-0.09136204,0.3988008,0.35861725,0.16787452,-0.28560078,-0.3038256,-0.30774736,-0.39967993,-0.3591441,-0.6149876,-0.6751238,-0.80704796,-0.862404,-0.69815636,-0.77054584,-0.8579821,-0.8901198,-0.86522007,-0.8837433,-0.7804928,-0.8999827,-0.9226142,-0.6943464,-0.685411,-0.79199255,-0.7904457,-0.81619847,-0.71639997,-0.2678846,-0.7091888,-0.62267005,-0.6356591,-0.80058426,-0.80897826,-0.830405,-0.6193361,-0.59528637,-0.8261446,-0.8531994,-0.8702972,-0.88873625,-0.8750309,-0.6969747,-0.63140583,-0.75971806,-0.8351794,-0.82797605,-0.84856343,-0.8695965,-0.87032175,-0.87701184,-0.8276069,-0.72254,-0.6158129,-0.41348147,-0.32154223,-0.6445933,-0.70812964,-0.56016487,-0.57580966,-0.783276,-0.82643336,-0.851909,-0.80599767,-0.36534297,-0.76867545,-0.9273033,-0.9543538,-0.9294014,-0.8635472,-0.8601354,-0.7830679,-0.9014323,-0.9355943,-0.77090013,-0.65701485,-0.63005686,-0.7390361,-0.6788912,-0.7747599,-0.64236486,-0.39764136,-0.20676515,-0.15137646,0.53048486,0.6077024,1.0890002,0.44814798,-0.15111479,-0.29022604,-0.43157506,-0.47622228,-0.44190097,-0.5289927,-0.67001677,-0.73407376,-0.5165698,-0.1436938,0.5943589,0.11790682,-0.3002584,-0.62784183,-0.78859574,-0.92097926,-0.8508001,-0.8223866,-0.85625505,-0.8289596,-0.4754706,-0.091944076,-0.2402929,0.08220983,0.7884681,0.19259587,-0.48091626,-0.21102571,0.43601367,0.2898312,0.5652414,0.5947761,0.4508079,0.31605008,0.1842547,0.16905364
+0.11836688,-0.35485777,-0.16143876,-0.36228615,-0.53487706,-0.3572597,-0.44877142,-0.6245469,-0.9997412,-0.7297546,-0.72995925,-0.87176615,-0.59799486,-0.5087927,-0.63644475,-0.6500577,-0.5637162,0.010860719,1.121466,0.75333846,0.62132204,0.32361138,0.082398765,-0.114638455,1.0506388,1.2954264,1.2271005,1.4892603,1.2114129,0.8475182,0.51748526,0.24933591,0.19792527,-0.013183579,-0.18084824,-0.2678581,-0.2811599,-0.46601498,-0.66802496,0.16773775,0.8537689,0.77013654,0.6841403,0.4725294,0.13873997,0.0029275343,-0.14122587,-0.34417647,-0.4204768,-0.5023861,-0.5175477,-0.63534117,-0.39299935,-0.088304095,-0.18452612,0.5057061,0.3369857,0.87618,1.0689148,0.34845614,0.98608917,1.0158242,0.48968923,1.2572079,1.622123,1.1533345,0.71937114,0.44892234,0.13837138,0.008080691,-0.1393322,-0.13084921,-0.24047121,0.1510089,0.24207354,0.7654911,0.2455427,0.2782028,0.68228817,0.1328989,0.20921615,-0.14940488,-0.060874455,0.02214425,-0.31181955,-0.3475324,-0.22889769,-0.34052777,-0.4151963,-0.51968056,-0.5110842,-0.54293257,-0.62342113,-0.6299305,-0.6722544,-0.0504426,0.662391,1.0574352,1.3059171,0.53056294,1.3701156,2.0641127,1.9392531,1.2441124,0.7836839,0.548731,0.19627173,0.9456344,0.86796427,0.3423567,-0.025038034,-0.16040298,-0.22657096,1.1695303,1.3771191,0.8681154,0.5077286,0.9502606,0.7182259,0.3128576,0.07654916,-0.15300438,-0.30500793,-0.3935731,-0.3538432,0.2895138,0.59127986,0.2246435,-0.02656164,-0.19661528,-0.35848567,-0.39757496,0.8316956,2.0495982,1.5184238,1.0241786,0.5697068,1.1368892,1.2882333,0.8761844,1.9140277,2.2971206,1.609397,0.80367416,0.2973206,0.22449997,0.23207027,0.081416376,-0.006444551,0.19377255,0.14989522,0.20150343,0.15479508,-0.03712461,-0.17480427,-0.28388864,-0.43948853,0.4601141,1.471432,1.2563851,0.9837332,1.2368582,1.4155357,0.7424518,0.33913898,0.45221126,0.29503313,0.23070106,0.91849375,0.76910174,0.28660503,0.29469773,0.11571582,-0.10790316,0.17386621,0.5548913,0.6730516,0.587384,0.6448162,0.39002937,0.24482617,0.0629375,-0.035987146,-0.16096064,-0.27748188,-0.28970164,-0.10944987,1.0763412,0.92170405,1.0753047,0.56300837,0.34839648,0.17179352,-0.010213062,0.15229745,-0.1068589,-0.13900125,-0.20707732,-0.2308822,-0.37529737,-0.26232907,-0.2677909,-0.35919663,-0.44300973,-0.4430927,-0.45509434,-0.5094566,-0.6167624,0.13183048,0.12753108,0.036483996,0.10819676,0.169841,0.085033275,0.006327398,-0.024167486,-0.08906499,-0.14226645,-0.20195112,-0.28758207,-0.30066437,-0.3673855,-0.38385162,-0.44461977,-0.51204,-0.61797446,-0.49590623,-0.5489477,-0.5428912,-0.5101887,-0.54806477,0.050308034,-0.6942513,-0.8040662,-0.8805667,-0.42199016,-0.41292793,-0.48203093,-0.47701526,-0.62025714,-0.5651138,0.34894374,0.34774578,0.14220175,-0.16004515,-0.37369853,-0.6337209,-0.4801883,-0.6145421,-0.8269433,-1.0086882,-1.0010554,-1.1118006,-1.0201647,-0.77241635,-0.9985714,-1.1036828,-1.1392748,-1.1440552,-0.92872894,-0.90174425,-1.0326588,-1.0988754,-0.85328037,-0.736029,-0.9072887,-0.7628394,-0.9517344,-0.69846284,-0.4759513,-0.85184956,-0.76603234,-0.789492,-0.8506359,-0.8344352,-0.8225535,-0.5162085,-0.71453655,-0.8393835,-0.81952477,-0.8327776,-0.85856366,-0.8671257,-0.7381363,-0.58905584,-0.6250773,-0.7895776,-0.7969469,-0.8217137,-0.84912395,-0.7946516,-0.8295678,-0.7485361,-0.58502376,-0.46944535,-0.14864355,-0.22962436,-0.5785963,-0.5149711,-0.31944004,-0.46621346,-0.7078221,-0.73872113,-0.7455984,-0.6344459,-0.32213634,-0.67155445,-0.9045681,-0.9418253,-0.895538,-0.8443523,-0.83813274,-0.7593279,-0.8692796,-0.93108475,-0.6601293,-0.034201793,-0.16435435,-0.4188906,-0.32896298,-0.4894371,-0.08975337,0.37795752,0.70087016,0.7564385,0.7553705,0.7754912,0.80599254,0.33222726,-0.31733763,-0.59599936,-0.5619128,-0.51446867,-0.37349355,-0.5511959,-0.9350482,-1.0158796,-0.79181015,-0.16397625,0.2692412,-0.09550818,-0.6498403,-0.87010515,-1.1862144,-1.2301762,-1.0216209,-0.99855053,-1.0803787,-1.032948,-0.81031334,-0.3711137,-0.56156904,-0.18625203,0.2979955,-0.1636649,-0.80100137,-0.2513807,0.31103897,0.050746106,0.29775545,0.2875386,0.13762799,-0.07610128,-0.15376633,-0.14293453
+0.6501765,0.25921616,0.4268734,0.2658646,0.08263219,0.17419615,0.21895349,0.11373075,-0.30738547,-0.13348708,-0.1658594,-0.32020158,-0.2957274,-0.3671002,-0.38458782,-0.41534722,-0.47537798,0.43372232,0.8950825,0.9058494,1.3496171,1.069593,0.7373694,0.47393167,0.9689806,0.83769166,1.7854415,2.0502431,1.7665346,1.6233814,1.7721503,1.1866169,0.8041791,0.43319607,0.13115725,-0.12897763,0.06503072,0.30006772,0.6966578,1.1804235,1.7366571,1.4996051,0.9366311,0.65546983,0.20106646,-0.028297149,-0.18336004,-0.26607728,-0.35029346,-0.40564847,-0.44927675,-0.52976567,0.56410676,0.7064895,0.6829667,1.1252656,0.9910584,1.8862913,2.0884588,1.5698911,1.7425957,1.2011993,0.49523568,0.42552915,1.1219931,0.45941788,0.048125543,-0.17628491,-0.20698887,-0.403378,-0.6159495,-0.6631151,-0.683703,-0.275693,0.38796183,0.7545628,0.08547755,-0.31337494,0.683787,0.48951298,0.0063002333,-0.15598825,0.033377193,-0.14909899,-0.41082323,-0.47208863,-0.28108516,-0.5177555,-0.55622816,0.29966873,0.045927532,-0.19792211,-0.38139814,-0.4535216,-0.6715593,-0.783251,-0.6836278,0.33110544,0.51108223,-0.030657478,-0.08676996,-0.19361418,-0.3237287,-0.23146367,-0.41654307,-0.5341234,-0.63649404,-0.09129981,-0.31508505,0.44509017,0.71659696,0.20241314,-0.1137548,-0.16523755,-0.105064325,-0.2606678,-0.48617083,-0.67306113,-0.7148456,-0.8645029,-0.84967613,-0.75745,0.07376001,0.24673837,-0.09407102,-0.29401177,-0.3785373,-0.58681715,-0.75726265,-0.81922483,-0.8874141,-0.8734025,0.14560905,1.0069423,0.9694587,0.5407862,0.5194061,0.7764175,0.5453629,0.22726768,0.06962394,0.47910434,0.10936967,-0.18135333,-0.27996618,0.21379241,0.111431144,-0.099332176,0.05424676,-0.075565256,-0.28890747,-0.3544672,-0.38139728,-0.5069014,-0.6298645,-0.6290731,-0.4151767,0.9423044,0.8728135,1.1195456,0.9336237,1.1290159,1.2116889,0.82193714,0.60530275,0.7616945,0.5692228,1.8206505,1.6426923,1.454255,1.0842708,0.82333046,0.6470672,0.42186457,0.5465195,0.6346506,0.72274816,1.0956755,0.9871135,0.7044687,0.612387,0.4228067,0.25646615,0.15013641,0.021513984,-0.017666988,0.065277286,0.9553498,0.89271843,1.1900964,0.92399573,0.7980872,0.6610098,0.56415856,0.5874955,0.4279505,0.27424747,0.20284763,0.14111313,-0.021988176,0.13635108,0.028480269,0.1531657,0.13216797,0.03848187,0.016160078,0.0345043,-0.07863443,-0.14763293,-0.022786565,-0.009628028,-0.06706574,-0.02050943,-0.024091668,0.0090039745,-0.052064322,-0.07531103,-0.15251774,-0.18235171,-0.21152875,-0.2961363,-0.19887102,-0.10688459,-0.2174285,-0.17683789,-0.2183857,-0.2385,-0.25646442,-0.2841168,-0.22716644,-0.25197002,0.45025003,-0.040490948,-0.27709815,-0.35229862,-0.010342427,0.3713256,0.14119104,0.14784452,0.1433481,0.109411456,0.7856163,0.686528,0.42074957,0.17651302,0.19026068,-0.08760766,0.03916926,0.119763754,-0.39523864,-0.76841056,-0.8786442,-0.8546058,-0.7356451,-0.68016255,-0.78688604,-0.79535985,-0.80302846,-0.74863684,-0.6714533,-0.69021803,-0.6030018,-0.62580407,-0.65073293,-0.5703013,-0.59126765,-0.43970156,-0.4144168,-0.20352313,-0.26779884,-0.52061015,-0.44020241,-0.5188461,-0.52240956,-0.46603805,-0.4063303,-0.12767455,-0.49676424,-0.6399113,-0.6493813,-0.6413977,-0.6081762,-0.54125875,-0.5252829,-0.53033215,-0.5545108,-0.6402128,-0.5635082,-0.5373107,-0.4891901,-0.284643,-0.400659,-0.42039293,-0.18835843,0.16920245,0.58341974,0.27360278,0.0019515231,0.19378874,0.30347645,-0.24386358,-0.40849614,-0.3063009,-0.30778068,-0.29541203,-0.16045216,-0.28255054,-0.53813875,-0.5443647,-0.45535713,-0.456881,-0.33718306,-0.30772293,-0.5258592,-0.49654,-0.32004458,0.47317547,0.36909962,-0.04574146,0.057044007,0.0018823072,0.28077462,0.7613455,0.9817577,0.8006946,0.86641407,1.0477644,0.9975311,0.6970023,0.11393465,-0.5216095,-0.6031881,-0.608941,-0.40606272,-0.27808976,-0.54142183,-0.54746675,-0.4464162,0.2248362,0.5250784,0.29788777,-0.04384453,-0.26160127,-0.6196321,-0.73021907,-0.68216985,-0.66671646,-0.83154726,-0.81842494,-0.61504817,-0.16410094,-0.28030503,-0.11149814,0.13776034,0.05415324,-0.36423844,-0.2986613,0.41885695,0.6243963,0.5734774,0.47498494,0.41019863,0.1762608,0.34641528,0.4122426
+0.51154184,0.15726915,0.0519469,-0.012265094,-0.1878758,-0.15009353,-0.25230926,-0.2738126,-0.44152147,-0.3565086,-0.37207356,-0.47749972,-0.4822359,-0.5356876,-0.54698265,-0.5832377,-0.5814547,0.37152997,0.9603752,1.830152,1.7063727,1.4010994,0.8522353,0.6293025,0.8905988,0.6780545,2.098116,2.2014928,1.849365,2.375,2.2433105,1.9017991,1.1174384,0.6534376,0.29819518,-0.0102616325,-0.1175537,-0.18644053,0.7231398,1.2891781,2.2245138,1.7024784,0.8184633,0.67185026,0.13380858,0.51042014,0.5028159,0.13660577,-0.08616071,-0.17883009,-0.1973902,-0.32947364,0.27433476,1.2571104,0.7932512,0.3538762,0.23333302,0.97398037,0.58239007,-0.012037776,-0.0013910756,-0.21895087,-0.43639213,-0.11315846,0.14458379,-0.27282494,-0.4209745,-0.46444798,-0.5772953,-0.7187723,-0.7406362,-0.7505324,-0.7739041,-0.64786536,0.28237978,7.959455e-05,-0.36052942,-0.5406182,1.729742,1.1226184,0.90050215,0.6862531,-0.0070184395,-0.1218581,-0.35387585,-0.5776835,-0.4780926,-0.5684042,-0.5330078,-0.026256599,0.17745844,-0.059494086,1.079725,1.6599506,1.061187,0.23009235,0.35182518,1.1882131,0.7656057,0.1397408,-0.22934502,-0.38108408,1.6433488,1.0904706,0.29860833,0.3722562,0.14803773,0.10200686,0.9416879,0.43366128,0.22105971,-0.111019395,-0.29478192,-0.40688998,-0.3990598,-0.3938169,-0.50874746,-0.59287333,-0.5559663,-0.62179023,-0.639118,-0.6027739,-0.17970496,0.6517497,0.19568029,-0.07294611,-0.06000679,-0.32508916,-0.4357059,-0.5857539,-0.6788347,-0.7391422,-0.0318008,0.976951,0.8024455,0.3293897,0.091685764,0.48469007,0.32294387,0.112944596,0.13162401,0.9487636,0.37122992,0.025545292,-0.22626173,0.8940071,0.89460725,0.5126513,0.347102,0.026328333,-0.09212356,0.38961133,0.47720593,0.29370672,0.0035703406,-0.10102259,-0.24857923,-0.21330032,-0.39385474,-0.3543498,-0.19760957,0.06882367,0.6229304,0.29277265,0.034382366,0.47315222,0.71221435,0.7154424,1.834531,1.1470922,0.7631289,0.47086382,0.28697908,0.044054247,0.2923926,0.28864583,0.1947371,0.8142655,0.81446505,0.537602,0.41976008,0.29590827,0.13774109,0.026727714,-0.10474504,-0.18217328,0.11150686,0.69446087,0.70340997,0.9652106,0.7574103,0.5705548,0.5003259,0.34637943,0.45789456,0.3455722,0.16188905,0.013199754,-0.054282732,-0.13156527,-0.0015576184,0.001655139,-0.0549125,0.011299744,-0.027651466,-0.0697281,-0.030134015,-0.21986741,-0.3278444,-0.18259284,-0.2381421,-0.28356233,-0.18357849,-0.2580907,-0.24055877,-0.28467196,-0.22557771,-0.21672514,-0.23297206,-0.2335898,-0.332674,-0.30657375,-0.08968628,-0.14406511,-0.18109399,-0.17150849,-0.15901256,-0.22322696,-0.23193026,-0.19374967,-0.28285682,0.38494524,-0.019992568,-0.23583117,-0.26209265,0.25314474,0.6499102,0.48319313,0.5583456,0.536328,0.45032075,0.5708999,0.80033517,0.57694936,0.3365949,0.25139928,-0.06598025,0.17002574,0.2874792,-0.0846288,-0.5645146,-0.71092397,-0.71470726,-0.5957974,-0.46389544,-0.61929786,-0.7146416,-0.7614564,-0.76944894,-0.57612133,-0.683649,-0.77533513,-0.7761094,-0.6764452,-0.4857968,-0.47265583,-0.3039682,-0.33818457,-0.0023020133,-0.082643114,-0.44429135,-0.3383587,-0.43188524,-0.5328117,-0.4258595,-0.4547149,-0.099631496,-0.39958853,-0.7273173,-0.7445689,-0.77381665,-0.7449635,-0.71834683,-0.6841658,-0.49830782,-0.5402263,-0.64925444,-0.69016063,-0.6778417,-0.53455746,0.10467947,-0.31439593,-0.5129225,-0.019137673,0.5312711,0.6744499,0.5993994,0.16632184,-0.03218063,0.19281068,-0.29482228,-0.5771622,-0.42942828,-0.2998224,-0.30934107,-0.056075104,-0.08456602,-0.59255624,-0.6394529,-0.61315244,-0.4769187,-0.31684348,-0.114657454,-0.46062124,-0.7131746,-0.47404015,0.48967642,0.4898187,-0.03032007,0.14763418,0.07619523,0.33448696,0.66961604,0.8948814,0.7411235,0.45985118,0.5843255,0.56409603,0.45446327,0.19822162,-0.43851614,-0.531334,-0.5075253,-0.087613456,0.061090775,-0.30195296,-0.50556016,-0.37588978,0.20869005,0.18865594,0.25045055,0.025463946,-0.08418133,-0.403236,-0.5878809,-0.5498352,-0.45074868,-0.62442917,-0.6656593,-0.45867985,0.06077557,-0.07111978,-0.14377046,-0.018772863,-0.18290779,-0.3907483,-0.29543394,0.24261251,0.7618023,0.67528665,0.6556493,0.5733083,0.5723491,0.864117,0.86764884
+0.5072956,0.4822846,0.192575,0.1469222,0.020752124,-0.023997657,-0.09331959,-0.13697937,-0.17207658,-0.2998915,-0.21510541,-0.2645423,-0.35427237,-0.39928496,-0.442452,-0.4468308,-0.4406966,1.536413,2.001681,2.53922,2.4860544,2.1476374,1.464307,0.9672654,1.3185921,2.0481477,2.8680396,2.8155136,2.4027812,2.8161106,2.5761828,2.3940644,1.9680789,1.4258772,0.9350177,0.4957769,0.3272788,0.23887148,1.743915,2.575782,2.64935,2.4985533,1.8613187,1.593312,0.8643607,1.4025533,2.2303739,1.7746493,1.2742368,0.9519154,0.91755843,0.563338,0.5290967,1.6751523,2.416929,2.4960802,3.075613,3.243379,2.6492312,2.337957,2.0275116,1.45738,0.72875357,0.29214877,0.87324727,0.56504405,0.065247186,-0.014194019,-0.21392614,-0.394895,-0.42337632,-0.466309,-0.49946702,-0.50037986,-0.55175525,-0.5622219,-0.55925596,-0.5966528,0.6746339,0.9414622,0.24385107,-0.01848913,-0.32405788,-0.30213004,-0.39138746,-0.5311111,-0.031617723,-0.15112102,-0.19053888,-0.26895535,-0.42131364,-0.4586749,0.50232,1.4300338,1.6289008,0.8356765,0.34387395,1.1853508,1.108256,0.57391554,0.084838726,-0.15521827,0.14626598,0.3210343,0.23801714,0.10723347,0.12836555,-0.30018124,0.364254,0.076472245,-0.21363822,-0.37709183,-0.4746046,-0.41913807,-0.4342513,-0.4867245,-0.6061447,-0.70353526,-0.71275723,-0.6808813,0.0950507,0.6035491,0.097649686,1.0180565,0.7695329,0.090827905,0.41588506,0.21793768,0.50498676,1.1384214,0.657256,0.18694335,-0.08003468,0.93471086,0.92541367,0.29304558,0.026760109,-0.19973448,-0.40622026,-0.34306216,1.1241238,2.157801,1.4390893,0.697005,0.3264078,0.5414649,1.067625,0.9826401,1.1079925,0.98162043,1.8612307,2.1898508,2.1491792,1.8993886,1.6018339,1.0946008,0.66302496,0.42778546,0.16095915,0.16149154,0.30469534,0.21392626,0.8607073,0.4458913,0.18303278,1.0299606,1.9019089,1.3969548,1.369009,1.272512,0.8302213,0.4706636,0.28694475,0.07303066,-0.01275707,-0.044320248,0.46527147,1.6129155,1.28379,0.8115785,0.6053635,0.5272359,0.31885123,0.20491064,0.10499326,0.023659863,0.09711584,0.81179655,0.9885652,1.4244787,1.1331033,0.8639985,0.7988271,1.0099169,1.0704521,0.8761027,0.62059855,0.39841762,0.28077683,0.21243611,0.28738266,0.19207594,0.20415506,0.16035557,0.0828309,-0.008826174,0.029596038,-0.13577849,-0.24374044,-0.18573153,-0.23084247,-0.28112358,-0.18836421,-0.2612542,-0.30966485,-0.32380486,-0.24881661,-0.22132432,-0.26190427,-0.27312344,-0.4093495,-0.22791761,-0.21406192,-0.20153412,-0.21857977,-0.22776851,-0.22432974,-0.2630893,-0.24089074,-0.25272286,-0.29609147,-0.21004158,-0.44640648,-0.49647397,-0.43412095,0.15594059,0.6825447,0.5409967,0.64408123,0.5431489,0.4654937,0.6337736,0.7243096,0.7518134,0.4034235,0.09997884,-0.03737759,0.564437,0.5475821,0.38352072,-0.23506248,-0.5526679,-0.65101564,-0.49958408,-0.21632272,-0.50352764,-0.5750697,-0.7109032,-0.7138731,-0.5139635,-0.5797592,-0.7440076,-0.7926076,-0.744958,-0.55421674,-0.45433027,-0.17017204,-0.22570488,0.35950089,0.5749057,-0.03343933,-0.055329286,-0.17513376,-0.38258737,-0.22661465,-0.2576585,0.13476822,0.15267593,-0.4645332,-0.53611785,-0.6084167,-0.5853994,-0.54630876,-0.5010448,-0.12228104,-0.059169464,-0.3179105,-0.39129084,-0.46764922,-0.21760735,0.28734884,0.1161489,-0.12879619,0.75297403,1.1462559,1.1016543,1.1396844,0.6414628,0.59990734,0.6347664,0.16592151,-0.22372997,-0.17479801,0.12377649,0.413489,0.65546125,0.6258322,-0.11996419,-0.3902582,-0.5145138,-0.17997247,0.15731707,0.8337754,-0.058605067,-0.50884295,-0.09363822,0.88314587,1.0135671,0.44782534,0.6044601,0.42240095,0.5598795,0.7268264,0.6885292,0.5662451,0.3194354,0.536792,0.5864891,0.6249479,0.54048604,-0.08534386,-0.15158433,0.09319086,0.66658884,0.7612584,0.3759076,0.056809895,0.37797374,0.43870187,0.18549612,0.40854427,0.2324022,0.24215612,0.075821735,-0.2574642,-0.31026614,-0.10929676,-0.4187613,-0.54433554,-0.20994145,0.12071239,0.056964405,-0.05167099,-0.13810405,-0.04067742,-0.20582741,-0.3277496,-0.52571756,0.72692966,0.79219437,0.79603285,0.7665971,1.8385406,2.4635146,2.1645086
+-0.038856216,-0.20681584,-0.28256506,-0.34120902,-0.29596025,-0.11756679,-0.160532,-0.2928997,-0.38317204,-0.5566081,-0.54758275,-0.521499,-0.63185936,-0.6705015,-0.67994565,-0.72540593,-0.07843273,1.4901512,1.205843,2.0189962,1.8725636,1.5392118,1.0682571,0.82481825,1.4740324,2.0749145,2.4584804,2.4606884,2.2827563,2.661423,2.3136373,2.0376596,1.6636397,1.4459093,1.0594229,0.65304875,0.36060086,0.2619696,0.96122324,1.1639864,1.0771546,0.89410776,0.590625,0.5784366,0.28894967,1.0122173,1.7614422,1.4550242,1.1868342,1.0931458,1.0024729,0.77452475,0.77971995,1.7321172,2.1114192,2.3222485,3.1117826,3.2776144,2.8975508,2.39271,2.1011887,1.8173957,1.138306,0.69953054,0.74156713,0.57741994,0.14165655,-0.053191505,-0.2448442,-0.3817576,-0.47402638,-0.5213102,-0.581915,-0.58153033,-0.6127529,-0.6322024,-0.41319984,-0.3830248,-0.48899364,-0.5126386,-0.59739757,-0.6578746,-0.67404485,-0.7501862,-0.56105083,-0.53993064,-0.33472872,-0.26034215,1.1400537,0.8379172,0.32047436,0.11261857,1.5847967,2.1744218,2.2255626,1.4601731,0.9179872,0.64181054,0.51927614,0.22539008,-0.061317526,-0.25108024,0.4696111,0.9132595,0.88391954,0.37245584,0.07713569,-0.18619162,-0.37943327,-0.50324297,-0.57431644,-0.64988637,-0.6961265,-0.55614626,-0.34314927,1.61477,1.4695938,0.84143734,0.48871827,1.1247187,0.7870172,1.1416172,0.7735886,0.21862265,-0.09406149,-0.27523613,0.9383403,1.2787987,1.4374409,1.49863,1.001076,0.52597225,0.16501284,1.1035788,1.1417086,0.5492986,0.22555178,0.0042906776,-0.21205318,-0.36442053,0.24894872,1.674221,1.1106141,0.5458651,0.17633805,0.018568136,1.1456604,1.2372427,1.3512179,1.1348475,0.8168139,0.7439752,1.0425556,1.2455796,0.7808094,0.42612264,0.11413235,-0.07565718,-0.21609402,-0.27299872,0.28815392,0.9803821,1.5382477,1.1957392,0.7348676,1.6655736,2.3130202,1.7259324,1.7267854,2.0182264,1.4584422,1.1159168,0.74393606,0.5378114,0.40367824,0.20839769,1.0781614,2.0811327,2.0124986,1.6233418,1.2386606,1.0879838,0.7691998,0.5598467,0.3432396,0.13452387,0.0019885376,0.8273477,1.2558924,1.70297,1.4413035,1.0649787,1.0476934,1.2127271,1.1795497,1.0979987,0.81681985,0.6940788,0.60811526,0.5663812,0.552868,0.37016922,0.3798611,0.25520647,0.105978675,-0.026217364,-0.10255539,-0.24155855,0.47646624,1.0306355,0.7811602,0.6450896,0.60899734,0.5223749,0.36426714,0.24439472,0.28905097,0.22770116,0.12155732,0.05048149,-0.00428804,0.23342746,0.22709057,0.23864314,0.09715892,0.12790743,0.11602879,0.0053008124,-0.03616131,-0.077138506,-0.040408514,-0.040235125,-0.1370661,-0.19093716,-0.14269936,-0.12951502,0.13350481,0.1809476,0.15326881,0.19447812,0.16546023,0.22538945,0.1794045,0.12567958,-0.07363438,-0.14746565,-0.11355325,0.4383965,0.66033256,0.37112233,0.07453052,-0.37802884,-0.5266517,-0.26855245,-0.058516465,-0.3408329,-0.41141254,-0.56970966,-0.5326676,-0.37603253,-0.46588695,-0.74175614,-0.7391523,-0.64472586,-0.4602421,-0.32250726,-0.17320973,-0.026774205,0.37090307,0.62944585,0.17011562,0.14187938,0.13804224,-0.19418287,-0.056454472,-0.13416255,0.2523331,0.48429856,-0.47478247,-0.61116,-0.71449286,-0.6723407,-0.61958367,-0.5252441,0.07412476,0.36672848,-0.3288832,-0.50082195,-0.35319287,-0.17560932,0.3078407,0.56876963,0.68739986,1.0518702,1.1989133,1.349246,1.4147098,1.1730227,1.1342676,1.0993111,0.57437646,0.14520314,0.25522757,0.6300111,0.7520957,0.7544821,0.5812604,0.07205311,-0.14180934,-0.2693351,0.07001313,0.4537927,0.57997876,0.26270983,-0.19163302,0.21115261,0.40680617,0.530834,0.3744914,0.40405506,0.2912949,0.29094902,0.28293288,0.21784899,0.20278046,0.6753604,1.243923,1.122302,0.9840822,0.9763622,0.3026989,0.2430692,0.46619093,0.5148797,0.5320716,0.26395658,0.14633042,0.19484186,0.12489516,0.123641334,0.07267595,-0.02623514,-0.14749193,-0.14394718,-0.2872441,-0.3640375,-0.25909516,-0.3760614,-0.47971022,-0.24780571,-0.14560345,-0.13167244,-0.23487476,-0.31581885,-0.27264437,-0.22968581,-0.44804007,-0.51005054,1.2138693,1.3222947,1.6955061,1.5299718,2.3663316,2.4310653,2.2911568
+-0.027171545,-0.024766468,-0.18917787,-0.23251072,-0.26575926,-0.29093397,-0.35706806,-0.41856122,-0.50173634,-0.59988,0.9135529,1.0481386,0.6764866,0.5429394,0.39473552,0.2333467,0.8553642,1.802645,1.366773,1.4369318,1.3875566,1.2807338,0.9186718,0.72689396,0.55635536,0.32472408,1.885202,1.6689607,1.7104318,1.8944229,1.7878367,1.6402403,1.350218,1.1419028,0.8033154,0.4493919,0.23164651,0.24922907,0.58764166,1.1451211,1.1462227,0.8820693,0.5177136,0.842819,0.78716004,1.5776746,2.3463202,2.3611362,1.8805202,1.8584268,1.6941196,1.5433693,1.9133834,2.2807615,2.8489738,2.54945,2.6754663,2.8581831,2.7935688,2.6243744,2.5126028,2.586627,2.3397722,2.096425,1.9142578,1.7021146,1.1378266,0.7952354,0.5065139,0.22835958,0.020529382,-0.11731469,-0.16987246,-0.072285675,-0.21264738,-0.29231936,-0.12856856,-0.074348964,0.19379371,0.69655305,0.36270356,0.058381476,-0.1258927,0.3852511,0.8878624,0.57606035,0.3410346,0.96416986,0.6438112,0.2876666,0.26303065,0.4099705,0.60787284,1.8951119,1.8289998,1.1632876,1.5717708,1.2208338,0.9081012,0.82839656,0.48374614,0.166904,0.27998966,0.34452227,0.64235425,0.9169726,0.43256792,0.11461226,-0.09323179,-0.24803138,-0.34162706,-0.43293005,-0.5015071,-0.56483734,-0.58452547,1.2754874,1.047428,0.59017396,0.46577087,0.83786476,0.6442906,0.27448863,-0.013681389,-0.24182883,-0.3759368,-0.49113363,-0.20129097,1.0430051,0.78296876,1.1711502,0.9576709,0.64981276,0.25127053,0.47912648,0.81742233,0.41880897,0.3157637,0.08806089,-0.117917486,-0.2696285,-0.36564752,1.4275366,1.0073159,0.52986836,0.2927631,0.27572706,1.6781514,1.5966766,1.070416,0.79220873,0.7962831,0.6789118,1.0039098,1.2901804,0.9788114,0.7409734,0.4060092,0.18526289,-0.0011920556,-0.150224,0.20482028,1.8800361,2.1512027,1.7812209,1.3628588,1.1151013,1.1522613,0.8331662,1.6539351,1.754096,1.4452673,1.1950355,0.9416311,0.7751408,0.5876685,0.34873164,0.17794779,1.966114,1.8504895,1.626922,1.2808044,1.1921495,0.9586797,0.7775796,0.56294316,0.35285228,0.1198222,0.47691688,1.6830218,2.0858178,1.771652,1.4808896,1.1580695,1.0969529,1.1886739,1.562176,1.2723027,1.237062,1.2051704,1.1196342,1.0581475,0.89354664,0.8831985,0.62376606,0.46386805,0.29908618,0.17054677,0.07900316,0.4009989,0.88368815,0.7241477,0.6636496,0.6235975,0.5125927,0.42254734,0.33590174,0.41662726,0.3812765,0.29908666,0.19691718,0.12420977,0.4436866,0.46326977,0.43502116,0.3855879,0.43768534,0.34874022,0.24344295,0.20599526,0.15589294,0.17012838,0.20459592,0.228547,0.15381569,0.1714142,0.04945413,0.22144619,0.24956751,0.23151895,0.30050573,0.18798143,0.2549398,0.34136865,0.33093035,0.20456514,0.21215627,0.21225381,0.5859895,0.8688946,0.78457433,0.6924695,0.20428798,-0.009896241,0.1529783,0.48426908,0.26091832,0.21021125,-0.058266737,-0.236193,0.05341216,0.22088397,-0.47998136,-0.5883673,-0.5091537,-0.33751184,-0.15123478,0.093736134,0.40186256,0.3616432,0.8678495,0.70396876,0.7122581,0.6333012,0.3320221,0.43299752,0.4595456,0.46253303,0.66077363,0.12134235,-0.09914597,-0.40566164,-0.51601344,-0.43495142,-0.35591865,0.23477265,0.4012168,0.46391472,0.081195556,0.055521645,0.9878019,1.3502643,1.5845935,1.4723212,1.3617878,1.3543217,1.3478758,1.3077725,1.3155581,1.2837267,1.3043511,1.0340917,0.78095734,0.91207826,1.0605438,1.0304748,0.9187548,0.88575745,0.6031264,0.3804348,0.18225524,0.55131227,0.61592126,0.67130554,0.74580735,0.3272197,0.5062911,0.5032903,0.6355565,0.5042307,0.37039164,0.4522983,0.35886896,0.28388625,0.19535911,0.14888975,1.0518479,1.4032133,1.1590343,0.9863266,1.1373299,0.83872044,0.8054112,0.75067353,0.6632143,0.7427401,0.6777506,0.5185915,0.39104778,0.28818956,0.24689993,0.26575842,0.14702332,-0.025241219,0.07557214,0.07160587,-0.012686975,0.031036876,-0.005551152,-0.14642516,-0.066183634,-0.12803695,-0.11151367,-0.2719749,-0.31731215,-0.33068025,-0.2880951,-0.41867316,-0.38281247,0.7773346,0.7219079,1.1005887,1.0519339,1.8668784,2.0685825,1.847577
+-0.16440678,-0.48061568,-0.6693125,-0.6690059,-0.6171638,-0.6258288,-0.6964221,-0.80201304,-0.77619755,-0.8324193,0.51293194,0.56384736,0.3119626,0.4216233,0.36152396,0.2285927,0.5214088,1.3107672,1.0260743,1.2834499,1.0073274,0.8890135,0.6819426,0.56124747,0.4704067,0.29108438,0.7467945,0.70083356,0.52984405,0.5332195,0.4955515,0.36903936,0.30974975,0.18272352,0.04943292,-0.089593716,-0.18196112,-0.27712294,-0.30243996,-0.1678834,-0.2973432,-0.18379033,-0.2835598,-0.2680705,-0.33543563,0.37597853,0.6629974,0.5595207,0.29845634,0.52738553,0.40095508,0.30852556,0.2533723,0.8849137,1.0831687,0.9488534,0.8638082,0.71522903,0.44591984,0.28423333,0.4255057,0.45442182,0.4543316,0.4900756,0.4466064,0.3419169,0.1829614,0.016916193,-0.111818664,-0.23365325,-0.35790986,-0.44836974,-0.5169681,-0.4764579,-0.5406147,-0.620715,-0.68478364,-0.6818695,-0.65380347,-0.56094694,-0.6056514,-0.70078295,-0.7661586,-0.80097646,-0.83226275,-0.855817,-0.87368685,-0.3245722,-0.24314177,-0.36746743,-0.5116234,-0.3062577,-0.24327654,0.24794146,0.7667526,0.27522084,0.064596854,-0.11809947,-0.056590788,0.32772657,0.061837368,-0.15536153,-0.33000028,-0.4677657,0.332346,0.8665195,0.36715096,0.1541383,-0.06376775,-0.2595944,-0.40055206,-0.5115293,-0.5952311,-0.6662508,-0.7627208,-0.8023902,-0.41938692,0.35940176,0.35610166,0.2538413,0.22306788,0.15009171,-0.06956615,-0.2823683,-0.45766914,-0.59284616,-0.5646131,-0.0302063,-0.20771831,-0.40733796,-0.5503183,-0.55368614,-0.65892833,-0.79510814,-0.4800771,-0.65798914,-0.77763057,-0.7826219,-0.867046,-0.9298301,-0.958086,-0.7778414,-0.78670555,-0.8875203,-1.042912,-0.8735049,-0.9415066,0.21414837,0.5284903,0.14283201,0.016051449,-0.081203185,0.018233337,0.37843934,0.22755766,0.08569748,-0.09095361,-0.2890945,-0.45610994,-0.5779433,-0.65133905,-0.63252646,0.33548984,0.20605895,0.041167997,-0.1959244,-0.40559655,-0.48641682,-0.4676562,-0.330792,-0.2930958,-0.27748555,-0.41407257,-0.4774431,-0.5149665,-0.60425675,-0.7276087,-0.11466583,0.32647863,0.20324081,0.016015343,-0.09402222,-0.21926087,-0.31443387,-0.39033556,-0.46150792,-0.57353866,-0.36043057,-0.027554773,0.6812343,0.50357825,0.40846932,0.2942758,0.1864779,0.004436843,0.030181669,-0.08650284,-0.07425142,-0.095225655,-0.13380766,-0.20301476,-0.2918186,-0.30465466,-0.28182274,-0.25788206,-0.311691,-0.3916418,-0.47224617,-0.23927137,0.04513655,0.022050165,-0.03148433,-0.10825994,-0.15104195,-0.2109203,-0.29586947,-0.25636077,-0.18548983,-0.18959731,-0.22309649,-0.39116532,0.2508586,0.2613603,0.23666248,0.16239005,0.15723947,0.12657416,0.05371847,-0.015113272,-0.027598523,-0.01647707,-0.06515082,-0.004619032,-0.026813425,-0.107957356,-0.19826669,-0.06743639,0.008714125,-0.056351848,0.0020318404,-0.07985755,-0.018069893,0.023174055,-0.015700452,-0.032137968,-0.1059488,-0.19973269,-0.050413348,0.07161612,0.06930221,0.047163628,-0.038766854,-0.19081384,-0.15599951,-0.042385913,0.026514493,0.026448674,-0.0058015734,-0.09617185,-0.05025988,-0.030872382,-0.2792607,-0.49396193,-0.44805002,-0.32143837,-0.26416767,-0.22597986,0.0033605173,0.041075684,0.34024796,0.38949236,0.2787647,0.3284053,0.26831093,0.21768661,0.14724022,0.06752839,0.13906646,0.0996797,-0.14397803,-0.36401176,-0.5816971,-0.47336262,-0.3556203,-0.035094045,0.13289186,0.13218355,0.14613175,0.21180585,0.43599638,0.7025932,0.65559584,0.6928834,0.5219853,0.55916715,0.5756673,0.4880837,0.50424486,0.5386907,0.51361203,0.5081685,0.3958374,0.38253164,0.409367,0.4275836,0.38432738,0.33855116,0.28105903,0.16311488,0.04768438,0.03917738,0.09760026,0.1560522,0.18700597,0.15409422,0.082318835,0.09460961,0.077407636,0.054272287,0.5664299,0.5669267,0.6158596,0.4926137,0.41518328,0.3372736,0.38485825,0.5793416,0.5039143,0.41043773,0.38899228,0.42647463,0.3000136,0.18397719,0.15371886,0.2395615,0.17762348,0.088071324,-0.027387314,-0.12381578,-0.19836771,0.076707534,0.14750862,-0.0020202994,-0.045404606,-0.024702169,0.21562755,0.20682266,0.24199384,0.16303927,0.10965165,0.06584441,-0.0022635981,-0.055965446,-0.112217255,-0.20507273,-0.25324175,-0.2916634,-0.36888337,-0.32066354,-0.30128312,-0.3305824,-0.3470565,1.2010077,0.79618245,0.7230319
+0.4331527,0.4565708,0.23717234,0.051434092,-0.08400082,-0.1778594,-0.23857349,-0.35144717,0.0030687526,1.3988677,1.2687016,1.3566642,1.154597,1.326232,1.2917955,1.1682123,1.9575645,2.0625255,1.7642024,2.128728,1.8747052,1.7964873,1.5407073,1.3709322,1.2377014,1.0696772,1.6821258,1.517214,1.9977579,2.1796126,1.9975173,1.89628,1.7947946,1.6034328,1.4209958,1.1284051,0.89931273,0.69280976,1.9849436,1.7749684,1.59509,1.9716147,1.6677079,1.6068692,1.4787056,1.2065358,1.9697039,1.9400136,1.595911,1.6101117,1.4443431,1.2342446,1.544763,1.6982236,1.8683927,1.8208345,1.7119055,1.7238473,1.5899805,1.7895379,1.8364704,1.7880564,2.3014712,2.0604658,1.9726751,1.8476372,1.6022394,1.2721854,0.9194703,0.6735708,0.4173219,0.21003057,1.5712677,1.6680156,1.3710912,1.3699269,1.263955,1.119978,0.7538168,0.59898615,0.51674706,0.2979369,0.14386475,-0.009422623,-0.14766756,-0.27533346,-0.38017917,-0.35511395,-0.35182166,-0.5192384,-0.57639474,-0.6386236,-0.66191643,-0.44428873,0.640552,0.20890254,-0.035204776,-0.18637389,-0.33305794,0.23802781,0.4393431,0.06091333,-0.16050637,-0.31753168,-0.40361953,0.6033418,0.1649079,-0.12606421,-0.32361323,-0.46609616,-0.5523238,-0.62109905,-0.6789387,-0.71200246,-0.7290057,-0.74078494,-0.6364583,-0.16794759,-0.32682148,-0.4992349,-0.5952678,-0.42434508,-0.50519246,-0.6410657,-0.70030063,-0.749234,-0.76189107,-0.6478984,-0.6119515,-0.09289741,-0.07415389,-0.34150416,-0.5444972,-0.64002043,-0.421723,-0.61041313,-0.68304706,-0.7203038,-0.80492616,-0.83143497,-0.63823897,0.079502635,-0.164208,-0.3741606,-0.5128548,-0.65700823,-0.73593575,-0.7466738,-0.57894385,-0.7111315,-0.53260845,-0.43908757,-0.33942702,-0.25143057,-0.09789052,-0.33168486,-0.4900483,-0.6465299,-0.70519507,-0.7411975,-0.7560429,-0.78064585,-0.2193836,-0.004419349,-0.36424765,-0.60436475,-0.6041138,-0.16773418,0.13066119,0.13368118,0.7251314,0.5111722,0.3710493,0.26874408,0.15458864,-0.021151327,-0.15748838,0.97863245,1.2083337,0.9700855,0.88270265,0.82294124,0.6065056,0.44619688,0.20702164,0.03360445,-0.1107137,-0.25264907,-0.32373238,0.7151325,0.92533714,0.6811545,0.48286724,0.34432685,0.16258779,0.19438696,0.02503135,0.15715593,0.061051242,-0.02201628,-0.09624564,-0.19417036,0.9630786,0.92938143,0.79035485,0.66081566,0.50338596,0.36753651,0.3998673,0.63033473,0.58590585,0.50961494,0.36201802,0.23047218,0.14209655,0.033268936,0.17276827,0.5926936,0.39636984,0.30314627,0.10581199,0.6039373,0.696296,0.55525845,0.47646737,0.4611286,0.31933245,0.21967936,0.14674062,0.12611899,0.081204094,0.01522582,0.18708175,0.065322064,-0.062997036,-0.19576383,0.2319797,0.5058406,0.39575702,0.40063035,0.2576301,0.49184686,1.0158395,0.9188512,0.7925221,0.59828615,0.5569471,0.87649995,0.86649853,0.8871297,0.90032625,0.8264805,0.5552058,0.5350001,0.5957341,0.7518893,0.67399055,0.7676558,0.60431075,0.4895963,0.56398386,0.30886614,0.037293814,-0.054065205,0.12845045,0.27404648,0.14441097,0.21148852,0.5164047,0.6109279,0.80007297,0.6178042,0.69093573,0.48423573,0.30097082,0.23805001,0.29294628,0.81793153,0.719758,0.47629878,0.27528045,0.24193925,0.29906222,0.6306746,0.9181382,0.9503016,0.9510095,0.9878533,1.0550466,1.1059299,1.5951712,1.5751339,1.3823003,1.5203846,1.5606256,1.4747734,1.4008172,1.3822098,1.2932618,1.2550825,1.297901,1.1758056,1.1371522,1.1068997,1.0083228,0.92270446,0.7907904,0.83838844,0.6598767,0.40434164,0.3175268,0.3782776,0.40808237,0.36955738,0.3864896,0.16844735,0.13515884,0.12611687,0.089496516,1.5755507,1.4541261,1.5228583,1.4104965,1.2830353,1.1906142,1.2135073,1.4352312,1.3434122,1.2211094,1.227736,1.2749022,0.9755285,0.7685937,0.7206201,0.85642034,0.87073356,0.5725635,0.33412415,0.12912768,0.060075216,0.37036452,0.3985478,0.023991533,-0.11162647,-0.15086612,-0.05169048,-0.04937049,0.13072133,0.00022620708,-0.17845088,-0.26799318,-0.32487452,-0.39480254,-0.44536662,-0.4466297,-0.49738443,-0.54230344,-0.6047276,-0.46961117,-0.5580756,0.30483723,0.44588003,0.5251536,1.0186206,0.59460455
+1.4637566,1.4372253,0.8929186,0.7045,0.5634485,0.47952375,0.2978172,0.29362822,0.20079917,0.28587514,1.915318,3.0018215,2.798633,2.9208505,2.5030088,1.9515694,3.2378721,3.3802667,3.2018905,3.2680469,3.3531337,3.27679,2.9312067,2.3599634,1.873301,1.4044132,3.2269788,2.890736,2.554347,3.1416261,2.7858596,2.7468023,2.7867405,2.1912124,1.7375062,1.423331,1.2160544,1.0306079,1.7783712,2.0203137,1.649434,1.7125394,1.5053171,1.487818,1.4055485,1.3520327,1.5171666,1.5858057,2.0483243,2.179703,1.6583018,1.3414071,1.8495336,2.0220973,1.7176712,1.4268733,2.1462219,2.4738865,1.930853,2.4552994,3.313034,3.3879974,3.3531032,3.5492835,3.2672286,2.9720554,2.5562265,2.0289073,1.6417155,1.4379877,1.2510206,1.2044108,2.2942922,2.9651737,2.858228,2.328096,1.7903723,1.4756529,1.2895792,1.1421828,0.99236244,0.7789842,0.5984308,0.52197593,0.4487364,0.3298429,0.30647463,0.287692,0.24882433,0.22350106,0.14064547,0.03674954,-0.05847674,-0.118429296,0.36068863,1.0573792,0.5276523,0.25433803,0.13346165,0.779922,1.2410529,0.63895315,0.3321368,0.21728903,0.08107649,0.70540357,1.0011909,0.55791706,0.42748383,0.28396273,0.15280783,0.018013515,-0.079755194,-0.14066982,-0.15623617,0.111097634,1.0497011,1.3089745,0.8906992,0.7812775,0.3578775,0.091093995,-0.068284534,-0.12997985,-0.16279301,-0.18618718,-0.19874495,-0.19611001,-0.19997653,-0.22848207,-0.24935809,-0.25878567,-0.24714929,-0.12953922,0.16365558,0.14443447,-0.023753025,0.29384494,-0.07526281,0.07038397,1.8880135,2.6412516,2.0113559,1.646698,1.5324697,1.0959796,0.8650874,0.936567,1.4216254,1.0678538,1.3855295,1.529777,1.4906154,1.5444301,1.9930404,1.5646107,1.2432213,0.82622826,0.6585064,0.5648877,0.424321,0.33282486,1.0399729,1.2451239,0.8572712,0.5871666,0.50807816,0.66460824,0.71800625,0.48227245,0.7105489,0.7129297,0.4355412,0.39267933,0.32713795,0.081092596,0.03772542,1.3239357,2.8967237,2.2327526,1.6246804,1.4474561,1.3074057,0.9494281,0.77881277,0.6583129,0.54815865,0.34343284,0.2980249,1.254116,1.6573986,1.3049872,0.91956913,0.7368523,0.6109947,0.5091293,0.4801262,0.40312308,0.31662723,0.30054188,0.2548803,0.66280544,2.0700448,1.7942204,1.3943906,1.164273,1.0127897,0.98506176,0.9286394,0.8925994,0.7784374,0.632689,0.5497057,0.45847043,0.33832014,0.30324677,1.275512,1.8358091,1.4636172,1.6391397,2.5398703,2.6032615,2.5679855,2.524044,2.3263943,2.1566875,1.7921772,1.8002299,1.7533611,1.4962804,1.2672294,1.5564027,1.7173486,1.4436207,1.306566,1.0426294,1.6612836,1.8433022,1.6428659,1.5895152,1.1766665,1.5427308,2.0275404,1.8360147,1.6319939,1.4658523,1.76039,2.1278574,2.0934253,2.1861563,2.0449872,1.799077,1.5052934,1.3194475,1.2604835,1.5484043,1.498889,1.5493934,1.3284582,1.180365,1.218535,1.2616687,0.9548433,0.85439557,1.0659993,1.0995392,1.211929,1.3415025,1.1779444,1.1714658,1.0868086,1.0639051,1.1079125,0.92103696,0.7116673,0.9611558,1.2141192,1.7485354,1.48474,1.3518765,1.1717267,1.0318004,0.88332236,1.0921023,1.1392915,1.2667034,1.3018715,1.5697541,1.9112513,1.8499658,2.5165782,2.8039422,2.8138523,2.7456064,2.5094724,2.3986502,2.5325358,2.4797196,2.1555789,2.1854713,2.0538888,1.8722105,1.7174875,1.5981182,1.3988299,1.1646011,1.1288888,1.1308293,1.1369312,1.1075481,1.0948715,0.95925915,0.9151893,0.7838784,0.971966,0.8160764,0.567869,0.7315163,0.47845185,2.15862,2.569414,2.253867,2.0287187,1.9312657,1.7600036,2.1314976,2.7055924,2.2983265,1.8971359,1.8498517,1.7149742,1.405452,1.7392156,2.037702,2.1288586,1.7892554,1.2354901,1.1639926,1.434122,1.6524324,1.9409107,1.7270509,1.2271554,1.1650603,1.0978105,1.2323352,1.2287054,1.0705429,0.91034937,0.7459512,0.6082503,0.62302697,0.5055373,0.39158636,0.31078094,0.329497,0.23731819,0.5896033,1.1966832,0.88356566,1.2894828,1.4036711,1.6657412,1.9609077,1.3889856
+1.8839686,2.1440892,1.6577246,1.0858942,0.62883276,0.47955972,0.18041763,0.01552093,-0.0637471,0.076650135,-0.14000973,0.40903053,0.7548801,1.073974,0.75554866,0.2990305,2.3110323,3.1270838,2.9613435,3.0669641,3.1267428,3.0969622,2.9289393,2.6315422,2.310716,1.7793598,2.7172897,2.7302718,2.4053156,3.0786386,3.0111785,2.9329977,2.8577702,2.417174,1.8251649,1.165533,0.741043,0.4837029,0.74798775,0.37969398,1.8447285,2.3553085,1.9385238,1.80704,1.7671943,1.9104621,1.8678259,1.6938847,3.0794647,2.928615,2.6305432,2.4064164,2.0579772,1.539321,1.142687,1.6554867,3.2215037,2.9321213,2.5838628,2.5664592,2.4452472,2.7252002,3.210814,3.1451921,3.0234888,2.906942,2.6775103,2.2482827,1.6260393,1.0256679,0.70325494,0.5740892,0.5555153,2.9570584,2.8647943,2.5085251,2.078282,1.4835646,1.0865808,0.86849815,0.77128106,0.6640196,0.52074116,0.39217412,0.27822125,0.10893636,0.08669344,0.031387776,0.08490767,0.25752,0.051044807,-0.07501004,-0.1856257,-0.26741868,2.014303,2.0672605,1.2105719,0.677832,0.42351735,0.2718017,0.40466362,0.19897822,-0.07911088,-0.18309784,-0.23075885,-0.2586696,-0.24238876,-0.2616351,-0.2936607,-0.32182437,-0.29171234,-0.3132267,-0.3670059,-0.38883102,-0.39078045,-0.073928215,0.019347638,-0.14446342,-0.01385802,0.47163263,0.17624849,-0.13632318,-0.3038923,-0.35531098,-0.4019612,-0.4287225,-0.44663548,-0.4508226,-0.4766593,-0.50584465,-0.5110616,-0.5210796,-0.51169336,-0.49988687,0.01907944,0.93539536,1.8660276,2.695236,2.9484177,2.9150798,2.8480814,2.851745,2.855342,2.8061962,2.7419329,2.4671817,2.096372,1.6792271,1.8807998,1.3285582,1.4323817,1.7999012,1.6003602,1.0920876,0.8405993,0.71649563,0.48325953,0.21922058,0.0625103,0.054659158,-0.02868782,-0.1073586,-0.09749896,0.03168431,-0.1801607,-0.33271438,-0.33035472,-0.34620205,-0.27041,-0.2480188,-0.39098448,-0.26226917,-0.39123505,-0.27961248,-0.28642875,-0.47098494,-0.36766022,0.6444848,1.6041067,1.1206889,0.9896075,0.7255339,0.56831217,0.24048191,0.09456085,-0.057455443,-0.20271036,-0.31644148,-0.33124942,-0.26751232,-0.1367107,-0.18586808,-0.2817715,-0.26177335,-0.4055158,-0.48316455,0.6078724,0.7996081,0.369721,0.29490608,0.13135554,0.040209606,0.5863375,1.0841718,0.57860774,0.4037605,0.117661454,0.13349998,0.017862216,-0.064378254,-0.0811831,-0.15638816,-0.17946053,-0.22026318,-0.37958628,-0.3806462,0.74256563,1.40633,1.3648366,1.8065438,1.6719737,1.8121588,1.8953555,1.911622,1.7189777,1.4486682,1.0492408,0.8427524,0.62797713,0.4580216,0.27454004,0.29061398,0.47855532,0.2986672,0.21583074,0.0158239,0.65824926,0.98562396,0.70736945,0.76345617,0.61423445,0.7255906,1.0302395,0.6980447,0.560623,0.40859106,1.6289679,1.946541,1.7950847,1.975198,1.9139899,1.8040392,1.3525097,1.004675,0.8850694,0.93265563,0.8744472,0.87442255,0.7639912,0.6385522,0.4537332,0.84919524,0.5430055,0.23568174,0.3835714,0.40969476,0.33266452,0.6147334,0.71410954,0.74336827,0.8310313,0.7027754,0.6163652,0.45834517,0.31911403,0.2408669,0.64763314,1.1561286,0.93716574,0.8880825,0.75658035,0.6228879,0.41849533,0.585797,0.60882777,0.7799746,0.7853141,0.8588061,0.7694562,0.84485245,1.596836,2.20028,2.990925,2.8448162,2.843059,2.7873836,2.6717908,2.5420103,2.3331313,2.2546792,2.1892204,1.9272076,1.5741718,1.260171,0.94090533,0.68703043,0.55735046,0.5981536,0.6733084,0.28565383,0.26950917,0.09467868,0.08506463,0.03891331,0.07341783,-0.029646046,-0.19696069,-0.11366924,-0.24162346,1.5904667,2.0148664,1.5072109,1.3155842,1.160022,0.9005221,2.150906,2.5471072,2.1809435,1.8004665,1.5808592,1.4576521,1.0890812,0.8810743,0.6359241,0.71131027,0.57079476,0.3354294,0.23938519,1.1083622,1.2457199,1.1292155,0.9165639,0.65871143,0.46532488,0.38322687,1.9503524,1.9713045,1.6450946,1.3350456,0.9122807,0.49617153,0.46449107,0.26305106,0.1349998,0.030493222,-0.04003089,-0.14989772,0.25275692,1.1823951,0.5749712,0.7979647,1.0134934,1.497021,1.865271,1.0786978
+0.4735411,0.18317997,-0.18991438,-0.3558483,-0.476892,-0.49502623,-0.5939956,-0.6228457,-0.59421897,-0.6026182,-0.62972665,-0.4200368,1.0758498,0.85695505,0.52831995,0.31116176,0.24336094,2.0350459,1.6492801,1.9097027,1.9469378,1.6317141,1.233702,0.8802768,0.76549137,0.5022384,0.96865976,0.82556325,0.41697243,1.0318102,0.93243206,1.0288699,0.8661659,0.4105612,0.12751439,-0.03750541,-0.21443462,-0.3077069,-0.2788542,-0.3736181,-0.17811686,-0.050709374,-0.23020798,0.5734975,0.9577051,0.88333464,0.70508456,0.77104026,2.1353872,1.6215647,1.6950738,1.590806,1.181134,0.87588656,0.6630727,2.547196,2.6812243,2.4034543,1.8908114,1.5286511,1.1822494,1.629868,2.1013556,1.9133394,1.8256357,1.9188216,1.5266851,1.0930711,0.7033881,0.48635465,0.3038125,0.106632814,0.02626951,0.13173461,-0.06647078,-0.20018291,-0.3071507,-0.37952104,-0.41738564,-0.4179933,-0.23371607,-0.23503003,-0.3645594,-0.45453143,-0.52054656,-0.5013648,-0.45888728,-0.53711015,0.43503994,0.700024,0.21665433,-0.010853164,-0.14799431,-0.26201868,-0.40083158,-0.49389333,-0.54756856,-0.58575404,-0.60185343,-0.62913543,-0.6563596,-0.71226513,-0.76405656,-0.76043606,-0.743937,-0.7575326,-0.76345944,-0.7776059,-0.7745771,-0.75181377,-0.7396457,-0.7566818,-0.7741772,-0.7758414,-0.77561194,-0.6460713,-0.59734285,-0.29753584,-0.18089396,-0.2889057,-0.48973775,-0.61261356,-0.67361295,-0.7232748,-0.7501926,-0.76334065,-0.77515244,-0.7772449,-0.7828212,-0.7870294,-0.7521624,-0.76206344,-0.7623484,-0.76923764,-0.4329239,1.668267,1.6818758,1.9561913,2.4118729,2.1131625,1.8019683,1.7615726,2.616514,2.5818958,2.3458762,1.903156,1.3157338,0.8910744,0.6099048,0.5746008,0.9326766,0.77622426,0.9562319,0.7142296,0.40657327,0.23214519,0.023139022,0.3310123,0.53273845,0.36416316,0.25041997,0.058522843,-0.075575076,-0.06916117,-0.2568696,-0.39695454,-0.43012726,-0.43961823,-0.40054166,-0.38656503,-0.4482507,-0.49214435,-0.60252887,-0.47179914,-0.52186894,-0.600417,-0.46949148,0.48850852,1.1094377,0.5273986,0.39736885,0.18593791,0.0241488,-0.19881499,-0.27734837,-0.34206718,-0.4111867,-0.43949425,-0.4827323,-0.40051487,-0.39655417,-0.38986003,-0.493914,-0.56762016,-0.6077875,-0.23440099,1.0252928,0.74482524,0.61032903,0.5394016,0.45658976,0.3710226,0.34130833,0.3142672,0.06364994,-0.066017054,-0.18651831,-0.2067197,-0.25784865,-0.35625964,-0.33138734,-0.37821963,-0.41457796,-0.4486239,-0.60030806,-0.4816646,-0.4746815,-0.23073208,0.14583865,0.6933434,0.69871515,0.7157324,0.7000808,0.60867655,0.4121616,0.34666023,0.19066471,0.19520944,0.09953243,0.010705292,-0.024473853,-0.1436581,0.045720246,-0.173583,-0.2204768,-0.32623363,0.15044725,0.5538909,0.28552392,0.32714418,0.1652646,0.063832134,0.18784112,0.08990347,-0.0850076,-0.14795315,1.1807413,1.1569998,1.512206,1.3197018,1.1633177,1.25758,0.94693947,0.6144289,0.60177124,0.67777705,0.6500251,0.6720061,0.6306783,0.43839788,0.459108,0.8832047,0.32395756,0.042808756,-0.02641385,0.04022847,0.049239114,0.13171811,0.22532594,0.32454985,0.34170845,0.29192206,0.29614723,0.13056298,-0.053943597,0.013538204,0.4701987,0.7787905,0.6582778,0.49240345,0.5313311,0.13053346,-0.07854719,0.086411454,0.19168967,0.34273177,0.3859569,0.36634678,0.31509194,0.36577302,1.1771708,1.3051099,1.9018881,1.5261678,1.2930077,1.1511875,0.97675085,0.8599015,0.7281053,0.7034171,0.70762986,0.479497,0.16834846,0.07279201,-0.08244332,-0.13908935,-0.14922118,-0.13392416,-0.025658734,-0.15952122,-0.12609398,-0.028924935,-0.055618905,-0.15454307,-0.14499786,-0.26034647,-0.33598155,-0.2867158,-0.29683226,0.777539,0.7463191,0.39957643,0.34966856,0.28099564,0.19491102,1.7251606,1.4724622,1.2509526,0.9881424,0.88192487,0.8668084,0.6111671,0.47611016,0.42936146,0.4560266,0.35960332,0.079358384,0.051038314,0.8158194,0.76668954,0.6927026,0.59578675,0.597478,0.5332507,0.42602056,0.81569475,0.5401403,0.45946768,0.2627168,0.071889915,-0.020001754,-0.03652016,-0.17151406,-0.2588484,-0.3237228,-0.3652131,-0.43861634,-0.2788067,0.34784424,-0.0459347,-0.043338813,0.0011013821,0.5504425,0.65019715,0.1991814
+0.49750507,0.14090942,-0.38165188,-0.5258669,-0.5909905,-0.6037871,-0.61016583,-0.6496292,-0.66381925,-0.72506297,-0.7324074,-0.33575788,1.7022758,1.3352318,0.8971859,0.7729638,0.67218196,2.575489,2.7920632,2.7604132,2.8677435,2.8661046,2.4862566,2.3514943,2.7311487,2.2124398,2.1319816,1.7331343,1.4311769,1.6988692,1.2566876,1.453634,1.664192,0.88855195,0.32568264,0.008386239,-0.22161576,-0.37288654,-0.2340138,-0.116023295,-0.21532592,-0.24844345,-0.3954212,-0.3298499,0.30395544,2.004674,1.6151447,2.6057878,2.8281069,2.7900276,2.483549,2.5306418,2.366983,1.968576,1.4807096,1.3129756,1.6275725,2.9023428,2.2815535,1.9998146,1.9587197,3.0217836,3.100899,3.1935282,3.193749,2.963058,2.632327,2.5734148,2.5144677,2.7432032,2.614533,2.1387074,2.4978209,2.6625185,1.8372753,1.2011473,0.7673771,0.4048125,0.10201719,0.9575454,1.8840554,1.1423393,0.87862754,0.5753278,0.13138795,0.05421046,0.29517606,0.015740193,0.78347665,1.4145658,1.3951416,0.9906703,0.53990954,0.19002897,-0.096326016,-0.2229976,-0.30057442,-0.35520208,-0.40922177,-0.4675718,-0.5227468,-0.5863262,-0.6385568,-0.67047286,-0.6412034,-0.6532953,-0.67799795,-0.7048774,-0.6364628,-0.18781477,-0.08558773,-0.035134427,-0.36944327,-0.48209524,-0.55072916,-0.5198957,1.4934222,1.368011,0.81770515,0.6052582,0.23896518,0.073688895,-0.123362236,-0.32514095,-0.38455182,-0.46273327,-0.55089265,-0.36096478,-0.5690733,-0.6087614,-0.6190168,-0.63239133,-0.6182473,-0.64217496,-0.17584175,2.116155,2.491259,2.6580558,2.6368408,2.826953,2.7285376,2.5804849,2.7096982,2.903915,2.611394,2.2422976,1.9081504,1.5827683,1.4530196,0.9853461,1.3344458,1.302534,2.0612557,1.8416067,1.2095678,1.766497,2.357966,2.5936341,2.3237479,2.158918,2.004113,1.671016,1.4816132,1.0823305,0.7580199,0.51710606,0.7233379,1.1706312,0.79007983,0.65272117,0.57453185,0.35194382,0.17964408,0.27848992,0.25121883,0.6291777,0.9230058,0.767483,0.7499676,0.5013104,0.35334203,0.11787942,-0.039452083,-0.26209038,-0.32576925,-0.42874157,-0.4563828,-0.447294,-0.18730423,0.486276,0.17780802,-0.0024530515,-0.15688571,-0.3258997,-0.44090492,-0.40930122,0.022866905,-0.08902504,-0.17221135,-0.21487027,-0.25001368,-0.31256407,-0.2395074,-0.20091355,-0.3630107,-0.48828393,-0.5745075,-0.49423957,-0.5415698,-0.574947,-0.5772802,-0.56656635,-0.5870496,-0.6258073,-0.3363409,0.36024886,0.30882415,0.92628133,1.171575,1.4123883,2.081493,2.0948343,2.218655,1.8876951,1.5649742,1.5224088,1.0468141,1.1922199,0.97724426,0.74586165,0.623002,1.013979,2.055809,1.4008564,1.1964005,0.95110554,1.1491721,1.3847101,1.0787071,1.1051979,0.88678193,0.76681787,0.8294811,0.6447495,0.4230039,0.14207062,1.4255807,2.9957228,3.052795,2.802983,2.634705,2.6610518,2.4434478,2.0734482,1.8054851,1.7469721,1.6749098,1.6441631,1.6512642,1.393973,1.2311895,1.9426627,1.577941,0.9460323,0.48208806,0.44359493,0.53252655,0.68293095,0.88863045,0.84281206,0.92388475,0.8572918,0.8035774,0.50477886,0.57633835,0.99186313,0.9086654,0.8909647,0.79179025,0.6713033,0.96952164,0.8786136,0.69113874,0.39096063,0.4604776,0.6243999,0.6883083,0.6760278,0.66054296,0.70464945,1.2332001,2.004739,3.1844997,3.1253178,3.099268,3.0767817,2.8820875,2.7222474,2.4470532,2.2740314,2.2478707,1.8646017,1.3021731,1.2197105,0.78499544,0.56245404,0.44562057,0.40430903,0.5764297,0.41054776,0.36563084,0.5386241,0.4952773,0.33450744,0.25476682,0.093426794,-0.010104492,0.0476161,-0.020748936,2.1278172,2.3557463,1.9472697,1.8205338,1.8834214,1.5741961,2.8412766,2.8031325,2.5180671,2.1589112,1.9581068,1.8574898,1.3360922,0.86484575,0.6503999,0.5856149,0.5225011,0.18703301,0.06043817,1.972523,2.3069396,2.6396375,2.7389345,2.5798507,2.4778886,2.7570086,2.9811268,2.7781954,2.5976338,2.2981093,2.0127938,1.6416595,1.5031631,1.143887,0.8531235,0.62959254,0.4524693,0.2670118,0.2546896,0.99400675,0.64280784,0.31354484,0.15742612,1.3983665,2.1113079,1.4705851
+0.8110126,0.34129155,0.14784923,0.08725376,-0.18945864,-0.07670777,-0.10531401,0.050616674,-0.44734943,-0.2576423,0.0014783815,-0.21485841,-0.15244004,0.045571722,0.054354154,-0.07227104,-0.057735614,-0.09103178,0.000845395,0.26373532,0.20494288,0.17085883,0.09842514,1.0583037,1.6174664,1.408002,1.1998773,0.8615848,0.5321212,0.445412,0.38017905,0.27659675,0.23480049,0.22477731,0.080964886,-0.052469574,0.041501395,-0.024347194,-0.079029955,-0.042983316,0.35730362,0.3771296,0.38446108,0.23179027,0.20136788,0.10447445,0.06789302,0.03525976,-0.0058341995,-0.04226532,-0.08890202,-0.09740854,-0.3100021,-0.025559463,0.036085226,0.09003754,0.0062834844,0.061705694,-0.08136361,-0.12883788,0.3952812,0.49883085,0.39148098,0.19743866,0.4433319,0.18697277,0.16869369,0.051254414,-0.05616919,-0.25497305,-0.31144083,-0.2955724,-0.32776415,-0.28094643,-0.061349355,0.25756866,0.13593656,0.5134054,0.5457376,0.12928751,0.088692114,-0.10387335,-0.22092009,-0.28078052,-0.3864024,-0.48049545,-0.32821327,-0.3935395,-0.375975,-0.3966687,-0.37338987,-0.31226304,-0.37480217,-0.43573487,-0.4832266,-0.4325186,-0.1279361,-0.09329366,0.12486394,-0.044698484,0.7608979,1.4215554,1.5726918,1.0390487,1.0359586,0.92906296,0.5534028,1.1973002,0.9579258,0.38708606,0.11474489,0.67620414,0.52691394,0.39214933,1.2284976,0.6925914,0.24825573,0.72294223,0.736768,0.2661731,0.078587346,-0.095105015,-0.21319869,-0.2755381,-0.26564354,0.11947848,0.20626736,-0.024115086,-0.16076618,-0.27372962,-0.37684137,0.9276943,1.1170764,0.7576741,0.4203906,0.14512864,-0.014295824,-0.083027504,-0.19814649,-0.17474142,0.008607216,0.07836618,0.0123886615,-0.16048467,-0.28245455,-0.28489912,-0.309707,-0.35875294,-0.43831325,-0.4344265,0.4738062,0.6022123,0.2690042,0.058322422,-0.08836233,-0.22281325,-0.31059963,0.24868825,0.5435081,0.4749323,0.84278035,0.7157557,0.36854672,0.15067253,0.007277772,-0.0007808879,-0.06317022,-0.28303552,-0.09053459,-0.1414015,-0.1741637,-0.24088353,-0.22752559,-0.2506348,-0.2518437,-0.3847575,-0.35449326,-0.24730456,0.1716201,0.11106824,-0.10497778,-0.18551475,-0.19534004,-0.22192669,-0.33387974,-0.3473542,-0.40748268,0.51132417,0.7150315,0.39819318,0.3897428,0.24494621,0.03253518,-0.03829954,0.048515745,0.006465517,-0.06670024,-0.21152008,-0.062999465,-0.29076394,-0.25358778,-0.07017621,0.078502275,-0.021255895,-0.05963918,-0.05977293,-0.052696563,-0.16353762,0.17660919,0.28300914,0.2600048,0.2586672,0.31263655,0.15643665,0.16757375,0.15229109,0.13939962,0.1267192,0.10254108,0.021993883,0.03160242,0.14482608,0.022324122,-0.026186362,-0.0019523948,-0.111989446,-0.05116623,-0.09145487,-0.21803358,-0.101907335,-0.12436669,0.52950877,0.52285284,-0.0846762,-0.30529428,-0.27480263,-0.09367267,-0.06539657,-0.14644003,-0.20903775,-0.26511413,0.30686572,0.58913535,0.56354594,0.46872616,0.012504615,-0.16710687,-0.08409231,-0.12930337,-0.068129875,-0.2041673,-0.12157852,-0.27915338,-0.22834429,-0.0953948,-0.20472968,-0.2185216,-0.21424156,-0.11679856,-0.28030935,-0.075257085,-0.041423194,-0.18928409,-0.1581021,-0.16790807,-0.1575863,-0.18480235,-0.15280291,0.07749572,0.37615627,0.1340819,-0.17742234,-0.012685053,-0.19506189,-0.19655252,-0.20135224,-0.19851872,-0.0011205301,-0.064672224,-0.16813445,-0.21399504,-0.16076753,0.024272121,-0.1821168,-0.014173768,-0.037503265,0.039269052,0.03630107,-0.07599298,-0.12698892,-0.17452526,-0.16154808,-0.16572577,-0.09415173,0.030517757,0.20927712,0.2987226,0.22668788,0.07979391,0.16195536,0.16214886,-0.090500094,-0.061847083,-0.082444765,-0.17042431,0.20228714,-0.06402018,0.0133102015,0.020601757,-0.15616485,-0.14177704,-0.13967979,-0.12449134,-0.02183213,0.03129319,-0.18044347,0.0071913972,0.15914552,-0.009105757,0.19429654,-0.04547613,-0.0726235,0.09278127,0.49792296,0.5322345,0.8718436,1.1369896,1.2369344,0.8256785,0.45577955,0.2574639,0.17863563,0.103574224,0.28413767,0.26667422,0.077442735,-0.077029906,0.07588687,0.47235012,0.9640088,0.91870725,0.37425807,0.10760319,0.096103095,-0.07688951,-0.12764433,-0.03647674,0.0072735325,0.0077685937,0.120129675,0.6110574,0.643103,0.7271591,1.159813,0.732476,0.11461909,0.40186632,0.74882156,0.7722978,0.82858247,0.75626236,0.70857286,0.6378807,0.57189673,0.5269842
+0.37630314,-0.27679828,-0.34327233,-0.39208323,-0.74804115,-0.3662028,-0.29605728,-0.56916434,-0.8999921,-0.6512161,-0.62604743,-0.86191773,-0.62118644,-0.54062593,-0.555426,-0.70348346,-0.6984701,-0.84348977,-0.5113157,-0.5087992,-0.17938578,0.19896206,-0.15993214,-0.3758998,0.8385831,1.5563381,1.4410185,1.8822035,1.6373112,1.1705853,0.6537228,0.049999397,-0.20586109,-0.40471667,-0.64624923,-0.76752865,-0.80627096,-0.94361794,-0.83936924,0.9118557,1.1810443,1.2922702,1.0730405,0.50663596,-0.031186886,-0.28819174,-0.46430814,-0.67664605,-0.80772173,-0.8826604,-0.8904767,-0.9849912,-0.70812064,0.5486796,0.21726635,0.47377273,-0.13305974,0.95368963,1.4190722,0.4226206,1.0097938,0.79521257,0.06896769,-0.2003439,0.84335876,0.3172035,-0.2712065,-0.40139225,-0.5580714,-0.3317548,-0.50055224,-0.59428734,-0.7233832,0.13512355,0.8557049,1.3506565,0.63280433,2.0546927,2.6337922,1.9778225,2.3107667,1.6452684,0.6294869,0.36685508,-0.14870575,-0.19552243,0.027187392,-0.4668889,-0.56384563,-0.79521173,-0.4638235,-0.35533985,-0.7653345,-0.880267,-0.98557043,0.41864127,1.9175103,1.7982836,1.8337302,0.9126932,2.269248,2.4467878,2.4508362,1.2414546,0.4085945,0.24386397,-0.25768024,2.1200967,2.0101945,0.9798678,0.46733814,0.1375941,-0.13627732,0.724674,1.9712657,1.013471,0.38373116,0.022299454,-0.080582045,-0.22657198,-0.44427377,-0.62865716,-0.7479971,-0.7171082,-0.7937256,-0.0067890286,0.5707122,0.048940834,-0.18026912,-0.36658138,-0.63794965,-0.45680386,2.0353665,2.0236838,1.9162799,1.2702477,0.82199526,0.89186263,0.6003549,0.34487417,1.6531391,2.1668706,1.5512921,0.79629,0.31689668,0.9541433,0.7854883,0.24843201,0.6343781,1.135185,0.6660035,0.9382697,0.8613732,0.33010727,0.12530418,-0.05640354,-0.27377418,1.0152214,1.5768378,1.6304795,1.1201615,1.0068202,0.98347926,0.39140126,0.022942238,-0.04948332,-0.1335912,0.3248259,0.949398,0.68348,0.29446548,0.084549345,-0.006857276,-0.28683043,-0.0071022436,0.20995928,0.65321034,1.2507807,1.0495574,0.4255934,0.25711444,0.06646222,-0.05076035,-0.15098822,-0.20476145,-0.21710724,-0.39914715,0.9583523,0.8847283,1.4881992,0.64488095,0.37773502,0.1794807,0.09659067,0.10467538,-0.2023932,-0.31983995,-0.3875361,-0.30035108,-0.5393261,-0.32712623,-0.42452502,-0.43963528,-0.59937304,-0.65725785,-0.63483775,-0.58635724,-0.73163056,0.3209529,0.1182379,0.08245344,0.09364414,0.07478721,0.040618084,-0.075068794,-0.10950186,-0.18197477,-0.2429569,-0.3136338,-0.38584238,-0.39573494,-0.49586076,-0.5240514,-0.61806977,-0.5834359,-0.73414993,-0.6668732,-0.7143891,-0.68772495,-0.6284287,-0.68052065,0.10410779,-0.6978668,-0.89382714,-0.9601784,-0.61042595,-0.28394288,-0.52420026,-0.30069745,-0.5931704,-0.61435246,0.33526605,0.30810282,0.3261406,-0.18353373,-0.70042276,-0.87674737,-0.626832,-0.7437343,-1.0350007,-1.2190491,-1.2143848,-1.2644395,-1.2366172,-0.9391192,-1.1465993,-1.1449499,-1.1970032,-1.1252879,-1.01246,-1.0006576,-0.9374782,-0.9876616,-1.0049007,-0.9801016,-1.0278263,-0.9982239,-0.95857084,-0.7461275,-0.60977757,-0.96992075,-0.9388944,-0.9641446,-1.0610986,-1.0281439,-1.03746,-0.80577844,-0.9953244,-1.0814506,-1.1187629,-1.1269197,-1.0711489,-0.99126625,-0.98506165,-0.85932136,-0.9762496,-0.9956974,-0.95674264,-0.9282712,-0.93157804,-0.90599537,-0.9505806,-0.9082401,-0.761214,-0.41532135,-0.28203818,-0.25184435,-0.5726005,-0.5728569,-0.39394608,-0.7082057,-0.8829713,-0.90682817,-0.9428456,-0.93673384,-0.4844131,-0.865674,-1.0004643,-0.98991597,-0.9850646,-1.0070204,-0.93912387,-0.94442225,-1.0319233,-0.99597037,-0.904386,-0.29367694,-0.13068095,-0.4875931,-0.29089433,-0.6511513,-0.44569063,0.12916358,0.6514876,0.6658488,0.7045386,0.8901679,0.642308,0.35275277,-0.4271232,-0.84078443,-0.82238865,-0.79355687,-0.63306105,-0.78002,-1.0354812,-1.099942,-0.9324652,-0.51457405,0.075108595,0.13588157,-0.5467117,-0.7317255,-0.94656396,-1.1125027,-1.0274644,-0.98293424,-0.99218476,-0.9943931,-0.9580213,-0.48932868,-0.68609554,-0.50604,0.11248016,-0.37758377,-0.84655,-0.5467601,-0.025748216,-0.20166561,-0.012978204,0.051121265,-0.032625385,-0.17934233,-0.18308589,-0.24766496
+1.0040741,0.32501453,0.36237013,0.18496129,-0.28719229,0.049998835,0.0073091313,-0.09278176,-0.40236092,-0.28750682,-0.14680177,-0.3253751,-0.21739507,-0.21925235,-0.2725966,-0.39281243,-0.33048606,-0.14287195,0.9686057,1.0952601,1.2732646,0.97741044,0.60762143,0.50952333,1.7415138,1.448508,1.892277,1.935404,1.6706334,1.9660965,1.7884614,1.4237039,0.95455337,0.5044806,0.19308117,0.009350553,0.15971062,0.1142818,0.80900973,1.6723328,1.5074809,1.5303961,1.141097,0.823532,0.2998342,0.09894365,-0.06428828,-0.21525127,-0.32296434,-0.42346138,-0.42562652,-0.54657155,-0.32389778,0.83158886,0.55679464,1.335906,1.022596,1.7665765,2.1533177,1.7590547,2.1032178,1.7373552,0.98801243,0.6708822,0.9664175,0.6200167,0.18652306,-0.0613325,-0.28193486,-0.46907955,-0.4875161,1.2491431,0.85701865,0.38489392,1.8164794,1.893092,1.1681316,0.84270084,1.50274,1.1488032,0.5394536,0.40118086,1.4548361,1.3389885,0.6374065,0.1811276,0.033183753,-0.16214526,-0.22020406,-0.032030307,0.028291605,-0.0041675046,-0.2901091,-0.38549176,-0.5144855,-0.6815259,-0.4742893,1.1802462,1.1423137,0.47513354,1.3133422,1.3153582,1.7434531,1.5791194,1.0617296,0.6099008,0.20846373,1.5896962,1.3193473,1.5247917,1.7530408,1.212631,0.8594405,1.0221167,1.2704549,0.8847443,0.45185202,0.21751338,0.19631138,0.07558991,-0.09111696,-0.26694033,-0.014811531,0.2369684,0.05395329,-0.08869768,0.025320224,-0.14065066,-0.25368017,-0.30186933,-0.43016732,-0.5108992,0.74322164,1.4130081,1.1167607,0.778688,0.52443945,0.35357818,0.20744523,0.12473632,0.0054464564,0.38722834,0.2910811,-0.06500005,0.37068,1.0939864,0.86810815,0.50631756,0.637262,0.36785942,0.20600706,0.16955982,0.2891656,0.08316591,-0.08858649,-0.20481816,-0.3948802,1.0082937,1.0843539,1.501785,1.0918226,1.2964468,1.4123851,0.97964734,0.66829693,0.73984927,0.52887255,1.4923604,1.8525872,1.3504262,0.88399446,0.65682995,0.58624256,0.43450367,0.36646894,0.9982432,1.0399806,1.4692433,1.2940555,1.521271,1.1899724,0.8899466,0.7096857,0.53109676,0.5618668,0.49743372,0.55090666,1.7113028,1.2447572,1.7513076,1.0839924,0.84268755,0.64046335,0.5905359,0.58374196,0.3335711,0.25548208,0.22065058,0.23409835,0.14583075,0.25116643,0.26415718,0.1956105,0.09774784,0.0357288,0.026357539,0.02028852,-0.13734362,0.8250902,0.7131772,0.64166784,0.5324448,0.5785092,0.5170335,0.4049687,0.4604773,0.399884,0.29120502,0.21086872,0.17213911,0.16019753,0.06297804,0.072318085,-0.020996071,-0.04752206,-0.20147786,-0.1417116,-0.11770568,-0.09196367,-0.05338808,-0.12813342,0.4026364,-0.19898096,-0.4079473,-0.41909933,-0.059949853,0.28188288,-0.04884074,0.039530788,-0.05370047,-0.07693861,0.82013386,0.7069108,0.4664238,-0.054582708,-0.1613326,-0.40171856,-0.27004445,-0.20892319,-0.46813232,-0.8763745,-0.9661522,-0.9930264,-0.84874773,-0.5972317,-0.80036247,-0.80387545,-0.7736809,-0.7247939,-0.67374635,-0.50106454,-0.51538324,-0.49942726,-0.534855,-0.43961382,-0.49461198,-0.3567077,-0.2736392,-0.012375325,-0.040795676,-0.21647093,-0.21626782,-0.2454372,-0.35533375,-0.27126047,-0.3491374,-0.16753486,-0.28297877,-0.59171486,-0.5951475,-0.5971956,-0.5746325,-0.5214813,-0.47176522,-0.36231935,-0.47425884,-0.566252,-0.51805484,-0.51510036,-0.46054012,-0.19267118,-0.07581773,-0.22749609,-0.07866665,0.14843756,0.20788155,0.19895788,0.06635671,0.10218445,0.23489049,-0.06712476,-0.25299326,-0.24459809,-0.2680432,-0.2497086,-0.0019384772,-0.23520952,-0.5326896,-0.5046772,-0.36547482,-0.28220642,-0.2755921,-0.119890355,-0.44761443,-0.5012157,-0.22946346,0.39141828,0.23735747,0.048218425,0.18004476,0.02025482,0.17771319,0.6872268,0.8816546,0.8684161,0.71163374,0.9072485,0.7443665,0.45121408,0.29540578,-0.23635751,-0.37270367,-0.34727377,-0.011551335,0.0015043095,-0.34780797,-0.43791783,-0.14222348,0.38854015,0.89082354,0.75209606,0.18197724,-0.1646961,-0.54280686,-0.7276579,-0.48668993,-0.43322778,-0.5039066,-0.5463128,-0.38488704,0.19852944,0.1429817,0.36792192,0.85025615,0.45668003,-0.19869128,0.03794619,0.83574164,0.7775564,0.6285294,0.7093983,0.6483671,0.70311314,0.9851292,0.8005861
+0.765867,0.1619798,0.20301607,0.17650709,0.069838665,0.13483065,0.18349886,0.09204811,-0.33788064,-0.1763981,-0.1431647,-0.33650357,-0.31638783,-0.2908823,-0.31621307,-0.4032563,-0.37876597,0.21688917,0.66474694,1.0103763,1.205137,0.9422122,0.6029076,0.3264269,0.6338668,0.5218047,0.88759327,1.2639956,1.1770142,1.7526197,1.6153352,1.4823687,0.8762458,0.57878816,0.32889232,0.066531755,0.07022654,0.08666685,0.7972883,1.9277611,1.548896,1.461055,0.88323414,0.80969596,0.30031055,0.2939865,0.2538654,0.0728396,-0.0075708926,-0.111028545,-0.16727453,-0.28964564,0.24692461,1.2468936,1.0569738,1.535933,1.9173517,1.8654847,1.4235775,0.8157091,1.0963602,1.0569029,0.3829551,0.024183474,0.21495134,-0.02832847,-0.18699285,-0.2183488,-0.3298599,-0.5249343,-0.55508804,-0.5724102,-0.5925162,0.2086829,0.71968114,0.37531054,0.018553399,-0.22610271,-0.3011646,-0.38647085,-0.16095698,-0.031622373,-0.42704767,-0.27604342,-0.40676332,-0.4972853,-0.35092738,-0.45839918,-0.40260154,-0.14005786,0.615839,0.26666263,0.48202276,0.9241377,0.34585002,-0.1301367,0.1272662,0.9457624,0.9624956,0.23853815,-0.16930005,-0.32591832,1.4534689,1.0939791,0.5171564,0.19474831,-0.10158556,0.048676543,1.1676869,1.2777776,1.3691009,0.8018212,0.34711176,0.16421428,0.01994478,-0.0391031,-0.2183919,-0.023913167,0.24261498,-0.057003446,-0.18258947,-0.357374,0.8967428,1.5070283,1.1828178,0.71062094,0.69418126,0.30926877,0.076500595,0.034392275,-0.15926737,-0.28200126,-0.018391274,1.18451,1.0386741,0.5747636,0.3357013,0.20385797,0.04846654,-0.11136805,0.2660021,1.2634342,0.71622443,0.28738207,0.05127511,0.21003336,0.38572288,0.27350354,0.5420529,0.17449194,0.32902086,0.46954238,0.53987145,0.4789395,0.22314498,0.12059513,0.108401485,0.20655169,-0.025495484,0.2530204,0.5822076,1.0921727,1.4646416,0.9923412,0.6807873,0.94089633,1.1193686,0.8828324,2.0356092,1.4010676,0.93749833,0.55221397,0.3870954,0.19164398,0.15634313,0.16204035,0.38343173,1.2164507,1.000654,0.6914798,0.59625304,0.43718958,0.25977764,0.17024183,0.21611056,0.18685529,0.25121114,0.96179324,0.86948407,1.2361628,0.9525676,0.716762,0.6385659,0.5618224,0.5143627,0.55994356,0.3684985,0.21973777,0.14888054,0.13906232,0.3045791,0.32856017,0.2625731,0.35299966,0.24827838,0.18127307,0.2785095,0.0926294,-0.011694245,0.12078056,0.024531737,0.0085289255,0.2040832,0.096826226,0.034062304,-0.07467926,0.12896031,0.16004124,0.1078467,0.13148244,0.096474186,0.047982827,0.21134597,0.17977113,0.14706665,0.08809598,0.16740453,0.13339695,0.09357542,0.12230212,0.058013387,0.13621362,-0.10776471,-0.3044248,-0.3441363,0.022669755,0.6879728,0.46569467,0.5196555,0.50828683,0.5050743,0.70210946,0.9221386,0.6419714,0.41305843,0.34061533,0.0646763,0.25385264,0.4640725,0.20257878,-0.4365698,-0.60226953,-0.6225924,-0.5353321,-0.3762283,-0.54574645,-0.619399,-0.6762814,-0.6928272,-0.59267414,-0.6060025,-0.65083885,-0.6766572,-0.642331,-0.47317845,-0.4159065,-0.14469215,-0.10083882,-0.027648129,0.32606792,-0.3589707,-0.29296982,-0.35707623,-0.49885136,-0.4173419,-0.47450846,-0.2135815,-0.3034675,-0.7183957,-0.7597771,-0.78710806,-0.7336622,-0.70606565,-0.65026015,-0.35832417,-0.43795455,-0.6702693,-0.6808952,-0.6468528,-0.52871686,0.044857793,-0.05594512,-0.35123357,0.06571271,0.61452097,0.739272,0.655393,0.25337252,0.040666632,0.31615537,-0.17869407,-0.48765743,-0.43630803,-0.4040357,-0.3848735,-0.16443127,-0.2531114,-0.6673195,-0.7112045,-0.6526985,-0.4899103,-0.30189115,-0.011020891,-0.48917806,-0.68853956,-0.4465801,0.5242778,0.54639673,0.038411953,0.13072813,-0.093787245,0.1453014,0.5604954,0.7104644,0.5719174,0.4059273,0.78120077,0.8365728,0.7294662,0.5125021,-0.18530247,-0.35949445,-0.26606718,0.42383406,0.3075291,-0.17289713,-0.44044584,-0.40209034,0.31773928,0.35469595,0.5447139,0.21637845,0.005843498,-0.32740554,-0.5275701,-0.54996336,-0.51454985,-0.6546261,-0.69256204,-0.5255867,0.14487329,0.06387265,-0.064415835,0.14975147,0.010248408,-0.152616,-0.09950852,0.11410702,0.82880086,0.8032831,0.74996156,0.6554173,0.9013339,1.0763222,1.0139711
+0.38571465,0.080434866,-0.06734226,-0.03422811,-0.07902808,0.24960262,0.18829584,0.011373974,-0.16995463,-0.18127763,-0.17348716,-0.28653604,-0.31156036,-0.33144102,-0.3750734,-0.45211792,-0.40668416,0.29393166,0.8228195,1.2550066,1.2697247,0.9409187,0.54811376,0.32117733,0.60893756,1.2837961,2.5467153,2.1997354,1.9676323,2.5530512,2.3514457,2.2440743,1.4792488,0.84010476,0.41440597,0.11042115,-0.040493988,-0.055659957,0.25084558,1.5280907,1.8613268,1.5555203,1.7616209,1.7262211,0.6560936,1.0372727,1.642313,0.9229261,0.50259155,0.24267754,0.22663161,0.041251063,-0.09714655,0.43139616,0.33937317,0.7420654,1.8704561,2.161735,1.8260614,1.4522774,1.2657092,0.87817776,0.19992761,-0.1154064,0.3270062,0.049742855,-0.20963645,-0.22339997,-0.36185414,-0.5307888,-0.55497974,-0.5885531,-0.60402966,-0.6067003,-0.6339788,-0.602824,-0.6338353,-0.67319965,-0.63184434,-0.6368482,-0.60866505,0.99105334,0.36933017,0.23881161,0.014380902,-0.12024405,1.3055472,0.98638594,0.5712979,0.38127542,0.119811304,-0.02855546,0.34695345,1.4377058,1.5087596,0.7751242,0.3135049,1.2030365,0.9673554,0.36106762,-0.04146292,-0.23310146,1.2737308,1.503179,1.1104467,0.7063079,0.28701696,-0.17252973,0.46836603,0.72200376,0.3588741,0.06867724,-0.13353884,-0.23267311,-0.2566322,-0.19990468,-0.2993716,-0.4586075,-0.41691852,-0.4759828,-0.48963755,-0.5918269,-0.40163752,-0.25840035,-0.36796987,-0.51334226,-0.12282943,0.06274251,-0.020294018,-0.033727042,-0.11446623,-0.36898923,-0.43663675,0.6714087,0.9906781,0.6775084,0.46829185,0.26104873,0.015025571,-0.1765641,-0.34965095,0.6249194,0.2770592,0.0327845,-0.24929479,0.5824375,0.96054614,1.0140871,1.2463684,0.8714414,0.8571272,1.0107198,1.1551228,0.9968778,0.665699,0.37522888,0.19439173,0.0035596266,-0.18945637,-0.22136569,0.12051495,0.03820067,0.5722625,0.3521711,0.15942022,0.4666742,1.3577149,0.90819395,0.72703516,0.7097936,0.5608342,0.26394778,0.10022987,-0.007938825,-0.01580017,-0.0059130043,0.008445658,0.9677425,0.97936493,0.7776611,0.65455675,0.5721752,0.41562715,0.2456677,0.15781584,0.15157293,0.032461204,0.6948398,0.75060654,1.1006079,0.87451535,0.6682956,0.42978722,0.6805375,0.7783859,0.849282,0.6014375,0.4141621,0.33176208,0.31317806,0.39482236,0.4119954,0.41042688,0.30317917,0.19071674,0.10171148,0.20493448,0.0057907924,0.069964714,0.5256856,0.45334443,0.30916712,0.44511688,0.3721454,0.19311176,0.07973584,0.27488494,0.2988367,0.21383673,0.18938318,0.1409596,0.12649515,0.20964375,0.21102801,0.116761304,0.18406458,0.19961944,0.042325262,0.048292696,0.038160436,0.04762332,0.12655959,-0.00428278,-0.15025976,-0.19481575,-0.04341998,0.4286158,0.5699827,0.6394512,0.5801783,0.4108607,0.58926284,0.761868,0.671752,0.43635693,0.32843056,0.20552462,0.42270267,0.6931343,0.49628568,-0.15078104,-0.43722695,-0.5301784,-0.43024784,-0.20640731,-0.37794566,-0.50877106,-0.60630596,-0.646696,-0.51831865,-0.5253127,-0.718772,-0.69023556,-0.6808461,-0.58686846,-0.44689572,-0.27185225,-0.12968883,-0.15128341,0.3033758,-0.18517876,-0.24899209,-0.26536846,-0.4161529,-0.32045898,-0.33272138,-0.14127296,0.063214995,-0.62729704,-0.6565521,-0.70784825,-0.6606097,-0.6237533,-0.555887,-0.18036577,-0.18022156,-0.509076,-0.54345644,-0.45986223,-0.30550066,0.20422566,0.24040675,0.017596535,0.47721204,0.83019036,0.711452,0.8683291,0.574964,0.39623064,0.41895208,0.09880567,-0.26918557,-0.3013528,-0.18737337,-0.06985595,0.232925,0.18415111,-0.34653923,-0.5228121,-0.54369867,-0.34976283,-0.11627173,0.5070802,-0.14216223,-0.55865735,-0.3554095,0.4136362,0.6243693,0.2640636,0.31463286,0.20595275,0.13169141,0.32973516,0.32292664,0.22509065,0.06698949,0.36765605,0.4404018,0.4816088,0.32395378,-0.16721693,-0.28433344,-0.0837696,0.2377983,0.33009642,0.11934091,-0.20969129,-0.05349887,0.060064755,-0.01453612,0.32873306,0.09638834,0.15219256,-0.014683016,-0.44704425,-0.51991487,-0.2936125,-0.46108556,-0.61039746,-0.46963513,-0.028114222,-0.0036413744,-0.1670017,-0.13096175,-0.07449489,-0.20769885,-0.40511388,-0.143702,0.93773067,0.8962074,0.807767,0.822379,0.93785167,1.4672589,1.2716821
+0.6383337,0.5376424,0.3138049,0.2372112,0.15461266,0.029663816,0.11058902,0.10048054,0.02111286,-0.22590739,-0.17384705,-0.041903444,-0.14470917,-0.17154065,-0.21227181,-0.21795446,-0.2206201,0.43684816,0.95308995,1.27427,1.113529,0.8322979,0.5560987,0.2811029,0.5259262,0.7820688,2.1489968,2.0813837,1.7974607,1.9042598,1.7876008,1.6114469,1.4297616,1.1692827,0.8882632,0.5202084,0.25207868,0.69397414,1.5681756,1.6145515,2.027685,1.8853004,1.6486288,1.5906355,1.1001477,1.5708623,1.9248283,1.7583165,1.4689243,1.3110094,1.2986984,1.177626,1.2728913,1.8700646,1.9778702,2.1060576,2.7924566,2.6855567,2.291975,1.8564359,1.4853207,1.1722885,0.8197286,0.47761592,1.0084616,0.8189184,0.37544,0.19387576,-0.013489775,-0.17327622,-0.24368459,-0.28149205,-0.31833702,0.16787177,0.17275587,0.11256505,0.61917514,0.48951083,0.21203592,0.04158234,-0.14727801,-0.22707641,-0.30618382,-0.26907712,-0.28766906,-0.35497016,0.504549,0.54369795,0.3470123,0.6927596,0.91008157,0.5231683,1.848872,2.3150945,2.042264,1.5957878,1.480236,2.1310246,2.1299732,1.772306,1.7578341,1.3195642,1.9237844,2.0901358,1.92834,1.3958216,0.9662733,0.4627406,0.24467576,0.08654266,-0.04571327,-0.14623293,-0.20999819,-0.24662572,-0.29650626,0.58256274,0.52788514,0.14036894,-0.027120523,0.64938474,0.66698354,0.49097428,0.23716676,0.06631421,-0.059873097,-0.16521487,-0.22377673,-0.109557204,0.5286184,0.82830846,0.4998433,0.22099358,0.06354683,0.9665531,0.8960557,0.5206582,0.32370347,0.13920939,-0.0509995,-0.17319834,-0.2585427,1.333822,1.0206695,0.6037356,0.31811962,0.24331227,1.696563,1.513713,1.508251,1.3238863,1.2713475,1.5154443,1.7180417,1.7805243,1.4628177,1.2090149,0.94560516,0.62423044,0.37815738,0.23596218,0.9460205,1.6780236,2.2296124,1.6984301,1.2415497,1.1369541,1.7606993,1.4681268,1.4532368,1.7552404,1.3406796,1.0438246,0.832481,0.6726232,0.5347305,0.44658625,0.24670815,1.077084,1.5381554,1.174164,0.9447868,0.79801714,0.65328366,0.5102843,0.37421227,0.3556723,0.16084975,0.8123704,1.0018915,1.4767901,1.3095986,1.0109445,0.7829751,0.7432562,0.8043059,1.1256931,0.72184813,0.635525,0.5388727,0.49336287,0.50775087,0.3928032,0.40066132,0.4558762,0.29256225,0.15984832,0.15213151,-0.0094746575,0.10242643,0.5255686,0.37517294,0.2217446,0.20663437,0.14188418,0.023974948,-0.09911824,0.5273455,0.83481234,0.738341,0.69707596,0.53959984,0.5515593,0.7290025,0.7675296,0.5402731,0.6005006,0.56100684,0.3527364,0.3751373,0.3410918,0.32899556,0.34888893,0.410042,0.21833059,0.17471513,0.028223418,0.18964076,0.4600034,0.34948385,0.48511833,0.26735923,0.4740829,0.7317983,0.52968794,0.4638726,0.354204,0.25278875,0.7242384,1.1281003,1.0780561,0.7077948,0.25763148,-0.028844886,0.02431164,0.33664984,0.15379336,0.025201283,-0.17861319,-0.28382415,-0.16585413,-0.08894681,-0.40698338,-0.35257274,-0.28860658,-0.19635412,-0.07997774,0.0138392225,0.33812016,0.2916162,0.5778078,0.68789446,0.55346173,0.57756543,0.33557367,0.41901112,0.29359156,0.29155383,0.49609438,0.027494788,-0.18782732,-0.32801497,-0.2964176,-0.2253215,-0.111229785,0.43781227,0.639889,0.24148053,-0.09492234,-0.13772231,-0.1062622,0.50392824,0.96760726,1.1539736,1.0763152,1.1319836,1.3101827,1.1952417,1.2814602,1.2004648,1.2085501,0.9663343,0.6637421,0.6155731,0.67509,0.7757622,0.8406084,0.70700854,0.3714646,0.14395377,0.02559524,0.24577776,0.38845733,0.54133004,0.44145772,0.074015774,0.40668356,0.49849495,0.645658,0.6301023,0.5597349,0.525919,0.515905,0.55588806,0.46291068,0.40045848,0.29319665,0.3770612,0.46814585,0.41258898,0.33606955,0.11103233,0.030779429,0.17480439,0.061152726,0.27500054,0.18834472,0.059445325,0.05731132,-0.051340453,-0.15144688,0.4410334,0.51521087,0.2960127,0.33708015,0.07036826,-0.01285024,0.02222357,-0.11179229,-0.23673066,-0.013101064,0.034373492,0.16942298,0.07214691,-0.06841328,0.07769783,0.07775509,-0.09753234,-0.30866128,0.12230435,0.10611715,0.6145114,0.88640267,1.4091978,1.3507516,1.4904485
+0.4598224,0.3782001,0.26109675,0.07706647,0.011000559,-0.07829515,-0.09165578,-0.19177634,-0.3168654,-0.47180742,1.3998237,1.5590458,1.1142786,0.9259516,0.75353146,0.6075093,0.6764147,1.6616516,1.8151224,2.062156,1.9134048,1.7080988,1.3560121,1.1589141,0.93129796,0.6499029,2.041182,1.9159752,1.745934,2.334577,2.107393,1.9366562,1.5853887,1.365174,1.1003002,0.72798157,0.5024965,0.3072454,0.27241734,0.75682247,0.8510357,0.70064825,0.4025538,0.36851847,0.32214728,1.1885537,2.6144938,2.1937373,1.8209845,1.7184585,1.6773489,1.4324766,1.2510266,1.3998611,1.6847653,1.600277,1.677352,2.0803456,1.7352297,1.529573,1.6767373,1.6598678,1.5345471,1.2997932,1.8536589,1.6901965,1.1139396,0.74271774,0.43578106,0.2141414,-0.003267534,-0.17823887,-0.12660798,0.33760467,0.06715036,-0.13449362,-0.20785084,-0.2696253,-0.40279192,-0.466703,-0.51440203,-0.5581368,-0.5649911,-0.5037488,0.5310073,0.4497885,0.23592928,0.46469277,0.2556941,0.01343482,0.16145173,0.25914243,0.16984154,0.9960657,1.547771,0.9428042,1.0781317,1.155347,1.3864033,1.1826425,0.98557943,0.6920117,0.672912,0.9882622,1.2058129,1.3665576,0.87844384,0.5043859,0.21121475,-0.049963586,-0.20160684,-0.33233446,-0.43415278,-0.5089492,-0.5465848,0.8956785,0.74506384,0.5087068,0.46124572,0.26024282,0.02687759,-0.12491801,-0.27833268,-0.40221995,-0.48234183,-0.522851,-0.4944057,1.0938547,1.0365181,1.0746396,0.8451377,0.6565689,0.53062874,0.32653758,0.53488874,0.23959398,0.050616585,-0.074406765,-0.2251904,-0.34272107,-0.4521823,1.0570561,0.8522158,0.5523064,0.29889536,0.09469623,-0.038099997,0.20238361,0.35709864,0.039079167,-0.096418254,-0.16435915,0.38985857,0.6603046,0.438841,0.2181395,0.037177898,-0.14851671,-0.29927254,-0.38154915,-0.10620812,1.3410068,1.9212487,1.3199152,1.1537707,0.9375236,1.0086005,0.993984,1.6824644,1.6887311,1.4931319,1.2566656,1.0030605,0.85167086,0.66387635,0.45307955,0.21773642,0.36201406,0.8899193,0.6703989,0.45360708,0.35231858,0.16744155,0.060691454,-0.022193067,-0.10105837,-0.2049036,0.0018284991,2.0973616,2.6508114,1.8758063,1.640245,1.3740759,1.172695,1.2878357,1.7133667,1.5467317,1.7398415,1.6542919,1.5519154,1.399797,1.2812295,1.2800443,0.91577536,0.77803767,0.60582626,0.44948608,0.2979712,0.29258376,0.6881032,0.5585245,0.46945134,0.37848875,0.2755794,0.17405754,0.10217696,0.15746689,0.39780003,0.28976658,0.20722261,0.2344183,1.0472975,0.9629769,0.93530077,0.84985965,0.89555955,0.80865204,0.649487,0.58018535,0.5166139,0.5134938,0.4801119,0.52830195,0.3756956,0.2961009,0.15507334,0.25449392,0.43666676,0.40817213,0.5255228,0.380891,0.31395063,0.39094007,0.394502,0.29954806,0.23339805,0.11976997,0.4826474,0.9550382,0.95459914,0.7480044,0.36378798,0.14314276,0.19571698,0.35818288,0.46783155,0.5025651,0.21348336,-0.0164788,0.11964279,0.37792632,-0.31943238,-0.39303613,-0.31057897,-0.1301032,0.0057731345,0.14107051,0.60731685,0.579741,0.8973008,1.1780922,1.1473204,1.150888,0.8183416,0.89586455,0.8369949,0.7689018,0.818869,0.39815843,0.1522902,-0.23772436,-0.30726856,-0.20504826,-0.07104861,0.454337,0.59187734,0.6788879,0.28065127,0.23079085,0.769493,1.5427811,1.478805,1.5003242,1.3677455,1.4543793,1.4300772,1.5928954,1.7361822,1.6668409,1.7049985,1.5555352,1.3695992,1.4396441,1.4633974,1.3802379,1.2234617,1.2402709,0.9908863,0.6525842,0.41490853,0.7298098,0.7136147,0.7735962,0.8977082,0.5296846,0.6891783,0.6102391,0.66622317,0.54746,0.31311598,0.47499126,0.42142758,0.3167035,0.17897758,0.10393015,0.20830932,0.8592211,0.7009411,0.61505616,0.64702004,0.5904754,0.44096017,0.34259954,0.3168192,0.5328262,0.5792266,0.39241928,0.21459877,0.029840432,-0.04796254,0.7686045,0.9390973,0.5929515,0.6101864,0.52759445,0.36219236,0.31970263,0.40290582,0.18796727,0.2963732,0.24054566,0.22732306,0.03577728,-0.08843874,-0.0800915,-0.1705795,-0.3101575,-0.40936017,0.18424895,0.09086234,0.6314146,0.817101,1.4009672,1.3402327,1.2662265
+0.53129315,0.9583856,1.0525689,0.98267096,0.74370337,0.6802394,0.7259431,0.75794363,0.46670708,0.31128323,0.6599333,0.7154237,0.59561443,0.5753647,0.6127614,0.5383703,0.8214782,1.3983016,1.2474279,1.2674692,1.2904025,1.278101,1.043234,0.915142,0.8670802,0.79727143,1.7357539,1.45645,1.6107466,2.2617235,1.8362801,1.6748383,1.6844902,1.6373916,1.4893968,1.173327,0.9623342,0.8317999,0.82652307,1.0249039,0.9173296,1.5861205,1.3078954,1.3182567,1.1139274,0.80690444,0.9664289,1.1999378,0.96491015,0.897114,0.8558061,0.8303827,0.7218048,0.7089114,2.1770942,1.8863226,1.7662816,1.7481859,1.3748794,1.1607403,1.0910922,1.0200619,0.9657837,1.3440137,1.400973,1.4269667,1.3246582,1.1329782,0.9315671,0.8284384,0.7549077,0.68110627,1.06852,1.1092244,1.0648601,1.0182099,0.92577887,0.8720504,0.8049796,0.72262204,0.6574099,0.58568877,0.49496195,0.48387456,0.42335498,0.3565181,0.2964695,0.24809891,0.33461133,0.27250475,0.17878735,0.12461093,0.20914379,0.67316407,1.2456896,0.92365843,0.78971446,0.74146,0.6932136,0.6927958,0.66613054,0.55159605,0.4146454,0.3420656,0.8186343,1.1569085,0.87967277,0.7760397,0.70824045,0.56280667,0.5048494,0.42724985,0.3583537,0.28149116,0.21608007,0.1495489,0.13460475,0.40689057,0.51051754,0.48407656,0.7718956,0.76141596,0.63174224,0.52765495,0.40123045,0.30277327,0.20567435,0.8726872,0.60670316,0.5002415,0.4108932,0.44910985,0.4278928,0.18327492,0.51088554,0.40487593,0.18039179,0.27397734,0.18206759,0.1049771,0.10695489,0.24479029,0.38119006,0.20919524,0.03009767,0.05242406,0.04113186,-0.06709541,0.27464607,0.13114473,0.13373703,0.1161682,0.31046823,0.61129624,0.63075626,0.52210027,0.39088112,0.24940318,0.15190484,0.09039182,0.05354172,0.028583221,0.9328791,0.7002578,0.54014444,0.40142095,0.24439353,0.41005495,0.57821095,0.6397801,0.62095386,0.47468293,0.3617464,0.35281223,0.30422974,0.21334589,0.048462264,0.07943264,0.69372314,0.511124,0.3448813,0.326454,0.14682898,0.04780007,0.009860344,-0.025159903,-0.10467308,0.45557258,0.6008987,1.1929973,1.0009698,0.84789145,0.756833,0.6637304,0.51869893,0.7251504,0.67013764,0.6592873,0.72815704,0.7271327,0.67748845,0.57966715,1.0347415,0.8408467,0.83448863,0.7724782,0.6611975,0.5204269,0.3934135,0.5480788,0.46232635,0.42267972,0.42753264,0.3310386,0.23081797,0.17203559,0.13914236,0.19832456,0.1558386,0.12533481,-0.10616007,0.2010906,0.4688279,0.4490691,0.38258535,0.40355426,0.33700594,0.2484225,0.22537401,0.21751004,0.15829602,0.1725272,0.45891118,0.31738907,0.116906375,-0.067830436,0.3364877,0.49066687,0.48285782,0.5379191,0.41314775,0.39698946,0.6249453,0.6977179,0.7323711,0.5007946,0.30965465,0.59669864,0.64036626,0.71680164,0.74238443,0.76228404,0.67382926,0.4411563,0.4682515,0.6473999,0.5756107,0.6707917,0.5639721,0.45468882,0.5013251,0.71464884,0.5105885,0.4481669,0.5356487,0.6356339,0.47690895,0.64500916,0.733039,1.0721915,1.1119854,1.0517914,1.22208,1.2752273,1.0544264,0.9412098,0.76922244,0.910493,1.1309211,0.85700166,0.6196399,0.4992811,0.59840214,0.72551775,0.9409377,0.93270266,0.9356406,0.940922,1.5581257,1.2617131,1.3325405,1.4903357,1.4068475,1.327257,1.4620497,1.4513094,1.3546004,1.2803813,1.3913734,1.3907652,1.5660229,1.5559984,1.5016158,1.3777361,1.311751,1.2605258,1.2337693,1.2304429,1.0983844,0.9350403,0.7284702,0.8355644,0.96351665,1.0266641,1.174395,0.8706269,0.85176116,0.9373896,0.84829473,1.2737178,1.3467981,1.3956976,1.4042325,1.2397223,1.2110052,1.0336937,1.1302499,1.2088194,1.2278976,1.2653409,1.5159434,1.1631672,0.88669896,0.9388459,1.0917693,1.2666214,1.0551778,0.83263445,0.7055572,0.6641923,1.052328,0.98581946,0.78718126,0.8879652,0.84708357,1.0214785,0.90782785,1.1651583,1.1824257,0.9391366,0.96658623,0.97224516,0.88370657,0.8547356,0.8136044,0.705727,0.595742,0.54466784,0.82126397,0.85890174,0.96243167,0.89004636,0.78244257,1.0422666,0.94429946
+1.667791,1.864656,1.6220088,1.381885,1.1738536,0.9124182,0.99272645,1.0268605,0.53233516,0.26447448,1.5381207,2.15141,1.6525805,1.5189776,1.6344526,1.5413363,2.0839667,2.578954,2.0614386,2.2541013,2.0885038,2.0587313,1.8481324,1.6197658,1.4149587,1.2931539,2.328165,2.3434608,2.7446651,2.9475527,2.7723615,2.515067,2.5873,2.2901616,2.1737137,1.9179201,1.5681114,1.2334108,2.2624283,2.458568,2.1258903,2.2623916,2.2932348,2.199388,2.070189,1.6796596,2.1091807,2.181644,1.8366416,1.7975001,1.7469845,1.6196798,1.6085751,1.6741813,2.6767337,2.3146343,2.1918628,2.1628447,1.876709,1.9416358,2.3836617,2.237319,2.1739259,2.2698708,1.898196,1.9992516,1.8204572,1.5793357,1.353009,1.2326366,1.0911525,0.9069227,0.9977663,1.2155945,1.1288328,0.9791267,0.98602164,0.92492044,0.99508595,1.0024686,0.7746521,0.6556126,0.5224969,0.49606234,0.5006672,0.43535513,0.36469117,0.39101416,0.53850967,0.46001303,0.34362045,0.27448195,0.3696904,0.17565143,1.8921523,1.3447888,0.9906101,1.044573,0.9887382,0.9363562,0.9591959,0.7243122,0.5520054,0.49093664,1.6556294,1.5676471,1.2761829,1.0718422,0.9494956,0.8287722,0.70394266,0.5800691,0.48141664,0.43681005,0.4501133,0.4288832,0.55102813,0.4858393,0.4429627,0.47506526,0.70460325,0.7883638,0.55567783,0.4646596,0.39675683,0.31322286,0.18636295,0.23587763,0.8006505,1.013524,1.1189922,1.2729423,0.8465761,0.74184024,1.6789818,1.5105901,1.1892583,1.3808317,1.1498947,1.1604148,1.4000651,1.7452866,1.8288684,1.36908,1.1141019,0.9745964,0.902828,1.0403693,1.6431217,1.3122075,1.156785,0.9889185,0.92516786,1.2932668,1.5766054,1.3638607,1.1039208,0.7997353,0.6572343,0.5905874,0.50580883,0.46571666,0.5069551,0.75940895,0.4528612,0.2441262,0.26621312,0.22219431,0.42896503,0.8550108,1.7233617,1.3976635,1.1641753,1.2082541,1.0605984,0.81282514,0.6538161,0.63771653,1.0061474,1.0534523,0.8026403,0.8686808,0.5919604,0.3428256,0.32146153,0.3296913,0.21555623,-0.00044522434,0.070431374,0.38773134,0.8697501,0.63465035,0.3436575,0.27831465,0.110095926,0.27089036,0.2942744,0.23431265,0.13598406,0.19594637,0.19316095,0.14378422,1.1008377,1.2715876,0.981793,0.83506405,0.66909707,0.511655,0.64422905,0.95009553,0.781516,0.72093976,0.66678035,0.5610596,0.43599227,0.3462761,0.31393045,0.5519681,0.54541993,0.46354443,0.119440176,0.32935366,0.5424775,0.5851459,0.41156355,0.46913755,0.4383035,0.28713447,0.29036105,0.32116488,0.296672,0.5482767,1.2267311,0.8940489,0.75106555,0.45849437,1.3569465,1.6038067,1.3243632,1.3167114,1.103092,1.6328254,1.9156758,1.9809042,1.7032837,1.5179958,1.3704021,1.4853363,1.5128362,1.5222474,1.5036685,1.931598,1.5188146,1.3611708,1.3467119,1.5783348,1.6294097,1.7313952,1.6618586,1.4568474,1.350594,2.1314855,1.4522243,1.344126,1.554456,1.5956206,1.1973766,1.1701896,1.3298072,1.4686236,2.0533442,1.7861676,2.1498842,1.8761533,1.4542123,1.5247815,1.3765032,1.631467,2.0242796,1.5595524,1.4234111,1.1844177,1.1010654,1.2370679,1.272957,1.5656784,1.6061405,1.6745627,2.126315,1.8253547,2.2487295,2.3519926,2.2239575,2.038396,2.1645253,2.329925,2.074587,2.2823079,2.0649862,1.965642,2.3420873,2.003736,1.8775761,1.7894179,1.6982099,1.8180501,1.7969347,1.789721,1.6521528,1.3298631,1.0759814,1.158292,1.3765433,1.6779562,1.7854967,1.3109937,1.1731248,1.4012704,1.47592,2.6109958,2.3357253,2.3336525,2.1385877,2.0106692,2.0389853,2.0654535,2.2809553,2.2088268,2.1385336,2.1635027,2.560514,1.7768487,1.3932211,1.3957014,1.7102449,2.1649587,1.7567362,1.5300529,1.2452605,1.1847353,2.2109013,2.2475653,1.6800123,1.7173655,1.6883175,1.6757383,1.6567615,2.1001058,1.8053842,1.5406008,1.5235019,1.5210605,1.3992378,1.2575545,1.341362,1.2500356,1.047634,1.5174326,2.1466653,1.9566635,2.0460114,2.0334108,1.789751,2.1639795,2.1335075
+1.2316487,1.647212,1.7202228,1.712381,1.7976376,1.7114613,1.509388,1.4824226,1.2002728,0.9966419,1.1555614,2.195836,2.3724844,2.6238043,2.4823847,2.3599575,2.7299395,3.174261,3.0695767,3.2597494,3.161594,3.065064,3.0034873,2.8674698,2.7008686,2.4237123,3.0213282,3.0595975,3.1697056,3.2960563,3.1995091,3.1579854,3.1749532,3.0057187,2.8912582,2.7407436,2.4779863,2.2509673,2.2576623,2.7893243,2.7727332,2.6276898,2.5637264,2.2921855,2.090187,1.8070068,1.8416891,1.7583848,2.3847678,2.599306,2.3954296,2.1412115,2.2247767,2.182448,1.9813907,1.913291,2.3431935,2.517445,2.3393557,2.4286625,2.7581441,3.159257,3.07966,3.1171775,3.0609837,2.9376047,2.770947,2.4444728,2.0871346,1.8354295,1.5207386,1.2732711,1.0990181,2.57368,2.514895,2.0610378,1.8052852,1.6095247,1.4874618,1.4693975,1.3732793,1.2353048,1.1563182,1.0580742,0.91516083,0.81501245,0.6838201,0.6713971,0.76270515,0.7329961,0.6434084,0.5223558,0.39350405,0.2539598,0.1437209,0.124883406,0.07185363,0.03669975,0.015615754,0.018871464,0.13997567,0.07310233,-0.025369763,-0.074115835,-0.12843618,0.17037281,0.3057039,0.14735857,0.07454292,0.016320564,-0.033358864,-0.06302782,-0.096651934,-0.10210126,0.39115253,0.25062287,0.16613135,0.23504034,0.15302461,0.16827092,0.15456212,0.13587368,0.015137963,-0.029666342,-0.04998357,-0.07199343,-0.087059714,-0.087917484,0.060803093,0.45989168,0.29534855,0.12678143,0.16359878,0.2886899,0.39206472,0.6052523,1.6493223,1.893119,1.4922316,1.7497442,1.9536676,2.2203727,2.1096075,2.232237,2.3174403,1.9794577,1.7070572,1.4836373,1.3562045,1.3035641,1.3890772,1.0759166,0.98201245,0.78748757,0.9848266,0.95145065,0.80923843,0.5412736,0.4615177,0.35420585,0.3150769,0.2738315,0.27100903,0.3391976,0.24795529,0.05323814,0.087828286,-0.06442178,-0.000349544,0.06880028,0.6550822,0.91999197,0.55242276,0.6265793,0.57980835,0.30072108,0.2674492,0.1568061,0.10286583,0.17586151,0.11582173,0.12978455,0.06294241,-0.017950185,-0.011034854,0.02006822,-0.023585849,-0.12115506,-0.07222705,-0.045912467,0.05176518,0.02119448,-0.0580019,-0.087093405,-0.20290819,-0.2720543,-0.042875774,0.13216546,-0.039246477,-0.00354103,-0.0861438,-0.080035634,0.20179991,0.6546712,0.435125,0.32908213,0.11042837,0.09454168,0.12506193,0.15743929,0.20749605,0.14552191,0.0649595,0.029943846,-0.019001655,-0.023683868,-0.08718296,0.052858636,0.15122804,-0.007294856,-0.11540485,-0.06750899,-0.018418036,0.13681555,0.01719457,-0.0778387,0.0385421,-0.06738003,-0.12927255,-0.08580064,-0.04153312,0.48437807,1.4102361,1.1170079,1.1135837,0.76322174,1.7639933,1.9345,1.6687083,1.6934307,1.4627662,2.2391195,2.2056787,2.0665174,1.9683512,1.816716,2.1452234,2.07305,2.0296323,2.0799582,2.0897982,2.2295284,1.9693096,1.6423525,1.581385,1.8633931,1.94872,1.841573,1.6645555,1.4146426,1.5240444,2.0157745,1.6655316,1.3445047,1.4196427,1.5107925,1.3204695,2.648632,2.8729239,2.9687839,2.96817,2.958478,2.9626627,2.9497194,2.6107137,2.682021,2.727582,2.9126182,2.940754,2.782988,2.4723766,2.168981,1.9756929,1.9346564,1.9162512,2.4360952,2.4999094,2.5791178,2.5704384,2.636654,3.00317,3.0450904,3.238453,3.1060705,3.173019,3.1751242,3.0033953,3.0794044,3.1195173,3.0434291,3.098231,2.9704688,2.7753954,2.6159217,2.452446,2.3233113,2.3031292,2.2022223,2.058594,1.787405,1.5095942,1.7329445,1.8808153,2.0349228,2.111506,1.9220166,1.732733,1.8214667,1.5265143,2.0522254,2.5346355,2.5913968,2.5972576,2.6251814,2.5654988,2.8275912,3.07416,3.0345268,3.0404506,3.0195627,3.0554202,2.8334293,2.9247484,2.9035687,3.0124254,3.045795,2.8285356,2.615128,2.4142392,2.4688199,2.6955442,2.8075461,2.4996657,2.4128604,2.109386,2.0585947,1.9515322,2.208356,2.0406291,1.8041707,1.7183814,1.6735301,1.676985,1.5187576,1.4640365,1.4304231,1.3276238,1.4357827,2.3966336,2.2035346,2.0392506,2.0589242,2.0711682,2.4459171,2.3159242
+1.1828752,1.2078102,0.95328915,0.73925984,0.52548254,0.38221812,0.17750204,0.057273664,-0.12564513,-0.057748236,0.037258305,1.2984234,0.8680834,0.69723344,0.58547807,0.4255903,0.22514072,2.302813,1.6677969,2.218959,1.7434471,1.5005922,1.3167925,1.087957,0.9758444,0.8351406,1.9543107,1.501525,1.0842211,2.6402066,1.9333183,2.3057346,1.8924446,1.5890608,1.279383,1.0893922,0.89010465,0.7172097,0.6398456,0.5228117,0.4761021,0.4731644,0.43823242,0.35076636,0.39774382,0.43764964,0.46499646,0.63197356,1.4960177,1.3767151,0.9886713,0.8346114,0.72424066,0.5871547,0.4694106,1.4894917,2.3679667,1.9151484,1.306938,1.2155678,1.0481459,1.1548401,1.8486865,2.1244693,1.612467,1.3277965,1.1316235,1.0313147,0.91410255,0.763144,0.5783287,0.53328824,0.7763137,2.0641046,1.4804342,1.1425304,0.99806917,0.8734942,0.7534529,0.6674546,0.5390925,0.47509617,0.43427643,0.40163666,0.35833603,0.2744507,0.22278267,0.1621927,0.36512065,0.3271489,0.25612703,0.19090284,0.087966405,0.013183288,-0.08622757,0.015273146,-0.026107974,-0.070183985,-0.089741,-0.11712519,0.10755921,0.22225165,0.049359284,-0.053723373,-0.083968125,-0.1259011,-0.13401967,-0.18136036,-0.18986735,-0.17766148,-0.18239439,-0.17294273,-0.19136828,-0.20131075,0.004383631,0.15451398,0.33271834,0.33458275,0.17555293,0.48203743,0.25414428,0.10190872,0.011257254,-0.036476247,-0.07586826,-0.105753265,-0.12472189,-0.13403064,-0.14375636,0.021981157,0.09711438,0.005752966,-0.04173959,-0.096013986,0.092291676,0.8069339,1.2373773,1.6024847,1.9907078,1.9800051,1.455756,1.3464913,1.7632761,1.7160654,1.4764674,1.2439616,1.0663329,0.9143405,1.0234425,1.2316785,1.5173858,1.7063675,1.2793558,1.041898,0.9028313,0.8506988,0.68156683,0.8692206,1.1805811,0.91009223,0.81501627,0.71347517,0.68008786,0.6744497,0.50962394,0.35745296,0.25434297,0.15324506,0.14810246,0.17887752,0.13868257,0.31298935,0.21376514,0.27848184,0.20251471,0.04548555,0.1872719,0.28801206,1.20176,0.7983009,0.7140542,0.61965734,0.5456111,0.41951752,0.3194818,0.26419094,0.1159274,0.036615044,0.014629178,0.0071791485,0.04780566,0.08424445,0.029507056,-0.093663014,-0.16078013,-0.26383632,0.23114145,0.5413384,0.37366152,0.36906934,0.3096803,0.22128746,0.2434667,0.59040505,0.5050479,0.3917499,0.12456098,0.12430991,0.07971018,0.035739325,0.0015032291,-0.012017921,-0.025592156,-0.039701425,-0.116624944,-0.11555769,-0.19271892,-0.17875475,0.1512954,0.26254508,0.24307266,0.39881825,0.3394762,0.48361507,0.38266438,0.24095446,0.15191302,0.13617203,0.08282665,0.09638808,0.048039712,0.008145802,0.59266514,0.50519484,0.4057246,0.13077876,1.840399,1.497863,0.98205477,1.0931618,0.9824742,1.1247915,1.2091495,1.1934972,1.1794326,0.9469485,2.3808813,1.6446002,1.4490308,1.4206127,1.3222196,1.4084787,1.2864826,1.0295793,0.9452486,1.0441287,0.9996088,0.9248712,0.886922,0.79999983,0.8611889,1.4347235,1.0599887,0.8303647,0.6533258,0.7914723,0.6052128,0.64126545,0.80809987,1.0886618,1.3291054,1.1076773,1.2573469,1.3056272,0.8680659,0.98010945,1.2983658,1.4344451,1.4059644,1.2705237,1.1532881,1.064348,1.0140771,0.93411005,0.98371255,1.2276676,1.2365845,1.169553,1.1310912,1.2282262,2.105468,2.3935523,2.490151,1.7368809,1.7353401,1.671612,1.7452701,1.7538332,1.5613658,1.37919,1.5706058,1.4120381,1.2494109,1.2519997,1.1822786,1.1540968,1.0662007,0.91013587,0.90383565,0.6832011,0.6845052,0.85814154,0.9616355,1.0067862,1.021244,0.8100638,0.64785534,0.651556,0.49004287,1.302745,1.6776084,1.4203231,1.2002103,1.1478931,1.0723764,1.9518275,1.9570793,1.5557177,1.5070374,1.5708464,1.7234825,1.3547144,0.99402654,1.0727382,1.2285016,1.3250206,1.0273906,0.80994725,1.2562386,1.0122805,1.1797848,1.2241917,1.0253202,1.156041,1.5634615,1.8845831,1.3367629,1.5128276,1.3358121,1.1101563,1.0622784,1.1067455,0.9881725,0.9149131,0.860481,0.7489924,0.6136211,0.9963093,2.2668798,1.5073142,1.2808172,1.0982163,1.4101803,1.6827502,1.3664618
+3.0419273,3.1586823,3.168017,3.1396976,3.1398418,3.159261,3.1182714,3.1395414,3.1500442,3.1275306,3.211957,3.2093363,3.3826857,3.244354,3.2792053,3.2834187,3.278687,3.5773728,3.2885113,3.3007374,3.298737,3.3289685,3.326893,3.2585518,3.2838678,3.2915869,3.2917485,3.315249,3.3005013,3.4534311,3.2723908,3.3226833,3.3052833,3.303874,3.2901258,3.2775369,3.2569418,3.2581854,3.2475705,3.2457776,3.2483253,3.2496161,3.2707107,3.293357,3.3297086,3.2784786,3.3175378,3.2978652,3.2674904,3.3037248,3.2901404,3.2570436,3.2958004,3.2716637,3.2714405,3.239555,3.5471392,3.3695378,3.3752098,3.35157,3.3440056,3.2988272,3.3342266,3.2692418,3.2887638,3.2883925,3.2977488,3.316401,3.3229654,3.3047423,3.2673936,3.2699416,3.2996862,3.2741492,3.2503119,3.2676044,3.2547874,3.2517796,3.2467933,3.2648134,3.28266,3.2908187,3.247161,3.2365751,3.2423553,3.2307334,3.2345526,3.2235422,3.2796082,3.296678,3.2623634,3.2605813,3.2385418,3.2269232,3.2050796,3.2157001,3.205707,3.2056623,3.2062657,3.2506824,3.2202117,3.18253,3.197774,3.2024167,3.1698074,3.1607015,3.1694279,3.1698909,3.2066214,3.2606812,3.2036161,3.1624806,3.1688933,3.163947,3.1552162,3.2152476,3.2938318,3.3209658,3.2584639,3.2881706,3.286683,3.2713525,3.2614453,3.2503262,3.239915,3.231486,3.224987,3.1981127,3.1981316,3.196463,3.206017,3.1835456,3.1696668,3.169693,3.3014946,3.352728,3.2847633,3.28338,3.256907,3.2861342,3.2554336,3.2749357,3.2907712,3.261329,3.276981,3.287641,3.2931485,3.2910445,3.2929666,3.285572,3.2766385,3.2979312,3.286407,3.2984881,3.2794495,3.3121011,3.2891574,3.296027,3.2994955,3.2870805,3.280054,3.2366195,3.2906718,3.2761636,3.2947116,3.2918315,3.2904,3.2875633,3.2732625,3.2590888,3.2514691,3.262564,3.2732763,3.2496855,3.2442067,3.2620363,3.2755394,3.2863803,3.2848425,3.27941,3.2768614,3.288532,3.2737043,3.2624114,3.253909,3.246529,3.2392125,3.2414908,3.2393432,3.2234964,3.2164543,3.1997886,3.181977,3.237932,3.2486553,3.2192113,3.2203643,3.2237847,3.2132049,3.210404,3.2102365,3.2124104,3.2339492,3.1972868,3.174921,3.1741266,3.2056658,3.1863377,3.182259,3.189908,3.1865187,3.1764631,3.176272,3.1778212,3.2047243,3.236329,3.218204,3.2332683,3.2310953,3.205345,3.3196998,3.2842808,3.2874491,3.283632,3.2742968,3.2726145,3.2740602,3.2302425,3.227409,3.2246609,3.2168643,3.2272234,3.2086806,3.173308,3.218975,3.2198875,3.2561498,3.2836962,3.276794,3.2740107,3.2610092,3.2462258,3.293433,3.2734344,3.24859,3.2717576,3.4072337,3.3254466,3.3171184,3.269539,3.297679,3.2351327,3.2309597,3.248633,3.2677293,3.2336266,3.261742,3.2707083,3.2592707,3.2444286,3.2533808,3.2312129,3.1103358,3.1341462,3.2619433,3.258881,3.2574875,3.272722,3.2543325,3.2571821,3.2992952,3.28193,3.2817636,3.2323613,3.274475,3.2845006,3.2880201,3.2871675,3.2706997,3.2593012,3.1876493,3.1273828,3.127614,3.2888556,3.3027496,3.2941856,3.2953362,3.3032358,3.298967,3.2841322,3.2937462,3.3039927,3.2820888,3.26975,3.3205838,3.282834,3.3077052,3.3015056,3.2819262,3.2749295,3.2520041,3.2213168,3.2524989,3.23174,3.2629318,3.2610908,3.2611117,3.2664914,3.262811,3.2532082,3.2488713,3.2748356,3.2580142,3.2674804,3.2585618,3.2435713,3.2565007,3.2633986,3.2855718,3.3211784,3.2827685,3.2546191,3.2440662,3.2935388,3.2857966,3.341355,3.242805,3.2929132,3.2704823,3.2681475,3.2765503,3.2688587,3.263657,3.2635803,3.2622561,3.258216,3.2428193,3.2599194,3.2927957,3.3236678,3.2699707,3.291346,3.2764416,3.2971642,3.2909622,3.3036404,3.3059347,3.2728198,3.2837858,3.2789607,3.2623281,3.2570872,3.2523873,3.2427673,3.2411284,3.2376537,3.229707,3.2095327,3.311845,3.2898464,3.2659523,3.2718942,3.2241912,3.2917476,3.275384
+1.4135003,1.2320576,1.1052809,0.8428868,0.6648141,1.0010943,0.9329947,0.96632576,0.60499513,0.73354506,1.1355594,0.88645005,1.2146214,1.5251026,1.7366333,1.892162,1.9281937,2.2768288,2.1631227,2.1422486,2.1336873,2.0147736,1.8995467,1.8086075,1.8787842,1.9397142,1.8722537,1.9145682,1.9412005,1.8849258,1.90402,1.8195076,1.9339668,1.8821983,1.8550177,1.9973366,2.1096787,1.9048549,1.8677375,1.8176091,1.5008073,1.7789708,1.8123116,1.7590494,1.747915,1.8272145,1.7796743,1.7602599,1.7646601,1.8417964,1.8443621,1.8132693,1.5639644,2.0552013,2.086799,2.1834173,1.976295,2.0174317,2.0504634,2.2362351,2.7137237,2.731554,2.662597,2.3242836,2.379898,2.6035426,2.7360573,2.7338142,2.4993892,2.306876,2.2163024,2.5204358,2.5441275,2.8750205,2.6645217,2.5739946,2.667018,2.3730524,2.779741,2.3604703,2.844958,2.8335676,2.7161942,2.6859722,2.5331473,2.505509,2.696195,2.8958812,2.7756863,2.6224577,2.7434525,2.7252588,2.5092757,2.402053,2.3662658,2.3420615,2.5029984,2.3201418,2.8012812,2.7449694,2.513421,2.4075778,2.5416698,2.3184738,2.7300296,2.751178,2.637433,2.3249073,2.7274466,2.5253837,2.363723,2.6718764,2.752637,2.5957332,2.6863885,2.6738977,2.5789323,2.5153112,2.6820326,2.523885,2.3932607,2.3012595,2.2418633,2.5684838,2.6984842,2.6385698,2.9332464,2.8877244,2.7600622,2.6123445,2.3323696,2.4273477,2.4396229,2.2318187,2.5355952,2.7229831,2.5903587,2.563694,2.5755596,2.4889004,2.6357436,2.5229154,2.806847,2.5041761,2.3254957,2.439055,2.568283,2.5550964,2.1795123,2.5163844,2.6196108,2.8916261,2.8700619,2.69206,2.5725617,2.3925014,2.2668884,2.1914473,2.5558639,2.648189,2.5768476,2.631484,2.7953486,2.5814404,2.607915,2.7361672,2.499581,2.2526531,2.019496,2.3807302,2.4175708,2.420753,2.5386672,2.3049595,2.345168,2.1529922,1.8390292,1.7760385,2.527046,2.4818172,2.6216092,2.4825664,2.4074929,2.365304,2.2907462,2.315299,2.0406783,1.934644,2.4026375,2.2717962,2.2398553,2.0948465,2.0105283,1.9484303,2.3715477,2.229486,2.0177288,2.0149634,2.1336746,1.8746485,2.3437867,2.3001366,2.2532434,2.0597622,2.1116529,1.9703405,2.0796123,1.9625833,1.7740722,1.8259145,1.7358553,2.0096517,2.0261405,1.7864318,1.8681147,1.8948716,1.8509209,1.8854909,1.8664696,1.786302,1.9099468,2.175037,1.9401462,2.0448658,2.087866,1.8744206,1.8338194,1.8743242,1.7196599,1.734333,1.8494112,1.9620092,2.0081882,1.5374651,1.2446207,1.1851416,1.4584596,1.5583285,1.4693829,1.389256,1.267849,1.5848012,1.7719837,1.7532059,1.6909658,1.4257182,1.1866882,1.1650385,1.2011794,1.2488478,1.2120106,1.124272,0.8920998,0.81674814,0.8410056,0.84082997,0.81407976,0.8204243,0.7946768,0.78739536,0.8064976,0.76015496,0.7754349,0.8796923,0.9737954,0.9180233,0.9176652,0.96578825,0.9046922,1.0624777,0.9573399,0.88535625,0.9572817,0.8644303,0.8563669,0.89678943,0.92230105,1.1251094,0.910065,0.83887374,0.8087033,0.83053726,0.75264716,0.82224905,0.9255139,0.84391695,0.7507016,0.75669414,0.7631918,0.7717447,0.8082051,0.84719443,0.9051955,1.0167041,1.2690493,1.454884,1.5340959,1.4770997,1.1532979,1.1095221,1.1697825,0.93275005,0.9402725,0.9069917,0.9684073,1.0222054,0.86930466,0.82454187,0.7977519,0.8073238,0.8603394,0.8682758,0.90990555,0.811859,0.78722155,0.8911264,0.8856285,0.94970787,0.907707,1.0796877,0.9392123,0.92285836,1.0260913,1.1309938,1.1867363,1.5185586,1.3431561,1.4759688,1.2376809,1.0211569,0.93519914,0.94071186,0.8818697,1.0394509,1.02215,0.9481548,0.85731936,0.8547678,0.98239833,1.2665912,1.2087252,0.86700857,0.87664133,0.8963806,0.85490656,0.81966835,0.8280609,0.8031564,0.7971163,0.85221535,1.3090569,1.3154237,1.2525545,1.5256846,1.2339718,0.95317715,1.0982919,1.4952455,1.3793607,1.4845611,1.6580994,1.7375035,1.7536753,1.8360945,1.8877978
+1.4758173,1.3369488,1.305554,1.2395787,1.10563,1.3582077,1.2200167,1.1269103,1.0844448,1.1809446,1.2277501,1.1167468,1.1808879,1.1889168,1.1807547,1.0831559,1.1098311,1.0612358,1.027736,1.373252,1.727185,1.8304119,1.6490624,1.6177616,2.3118992,2.0802414,2.0814393,2.2538614,2.3687372,2.1358175,1.9137617,1.6223843,1.469167,1.4189832,1.2036601,0.9958217,1.082908,0.99720746,0.8813456,1.9849851,1.8942153,1.9652162,2.097423,1.8284496,1.6187459,1.3681831,1.2912883,1.2279997,1.1398203,0.9913741,0.9692618,0.91424376,0.74692893,1.204737,1.2027245,1.715405,1.5879765,2.0222402,1.9172635,1.5800616,1.3678162,1.3466811,1.1129229,1.1418422,1.4681573,1.3247526,1.2074871,1.0946145,0.9864459,2.4157162,2.4006221,1.9444164,1.8576875,2.3964305,2.6239014,2.734734,2.2414267,1.8715131,1.7919048,1.5718231,1.761944,1.5341573,1.2901642,1.5768024,1.3905535,1.1467742,1.0418386,0.9558194,0.95983136,0.8926505,0.8445319,0.9969745,0.8544353,0.77640367,0.7536645,1.1956174,2.3608797,2.1629493,1.8222587,1.5196843,2.2437174,2.1399493,1.9939476,1.5881445,1.3272222,1.9077826,1.6125438,2.078442,1.7534512,1.4156965,1.3068278,1.5190217,1.4260272,2.408847,2.399821,1.935342,1.5631727,1.740375,1.8782362,1.6862104,1.4936022,1.3816463,1.3167605,1.2042335,1.1170181,1.7436011,1.7677041,1.5097281,1.3429685,1.2161853,1.1584927,1.1492263,2.7867968,2.7928832,2.6775239,2.488631,2.0100112,2.6337247,2.3684902,2.1929052,2.7492445,2.9713626,2.40563,2.0415287,1.7740769,2.3699589,2.0475054,1.6996796,1.7365632,1.7403166,1.585458,2.2574408,1.9869843,1.7625885,1.6668055,1.5720716,1.5058818,2.0037816,2.5047283,2.371842,2.0491405,2.1430902,1.9882597,1.8099134,1.6663535,1.5403862,1.4283941,1.6841516,2.0022423,1.8511605,1.7255348,1.583205,1.5095639,1.4475403,2.4020448,2.4803839,2.408397,2.4514184,2.219553,1.9535481,1.7551124,1.6233839,1.5600257,1.5187631,1.4490676,1.4332654,1.3760568,1.9750748,1.8975928,2.4397018,2.2262554,1.9023516,1.8525755,1.8167198,1.6857797,1.6882747,1.6410992,1.6426284,1.5873953,1.4891893,1.9983835,1.9256575,1.9061391,1.8017733,1.6459589,1.5823181,1.6437774,1.484674,1.961492,2.0834997,2.0300767,2.0306313,1.9348816,1.9936687,1.8539394,1.8379964,1.6907309,1.6662854,1.6433474,1.6521286,1.7051377,1.5870934,1.6502695,1.5579513,1.5958004,1.6274064,1.7481711,1.6022027,1.5517007,1.5877553,1.559009,1.8224386,1.9025235,1.4883711,1.4959346,1.3874029,1.6488535,1.7872248,1.8037918,1.785641,1.7678034,1.8594029,2.1395183,2.0449517,1.9474727,1.7569423,1.5917542,1.4383556,1.6559341,1.4708232,1.0788004,0.9856897,0.74742186,0.46443918,0.52146655,0.76197904,0.6123099,0.562183,0.65138435,0.6602229,0.66082144,0.80165887,0.8276192,0.93989694,1.1804501,1.1553795,0.96819985,1.2090468,1.3201036,1.3423035,1.4166692,1.234436,1.1975927,0.9818644,0.9832862,0.87959397,1.0344247,1.0250782,0.48620486,0.38774693,0.42007434,0.48553956,0.59174067,0.58159655,0.54771984,0.61212194,0.57484543,0.62975883,0.65756655,0.6774142,0.83617485,0.9118396,0.9189527,1.022232,1.1275607,1.2048751,1.1519179,1.1458341,1.152283,1.1483587,1.0638555,0.95390534,0.8982833,0.80102575,0.62866664,0.99922544,0.96884185,0.49303293,0.46841428,0.52796793,0.8027382,0.8089728,0.9484555,0.671646,0.47747365,0.51323795,0.97959375,1.2063944,1.1287253,1.2422218,1.0163844,1.0126683,1.2196227,1.5273368,1.5589219,2.0526607,2.013938,2.0968053,2.0237448,1.7263634,1.3931046,1.3551972,1.394662,1.5572764,1.3529123,1.1164521,0.802243,0.9681983,1.4028544,1.6814744,1.6712836,1.3646535,1.0971758,0.92450404,0.4804544,0.20474973,0.40642345,0.5703964,0.44516093,0.73602545,1.0971911,1.2054325,1.2869141,1.4529562,1.2454996,1.0795525,1.2247735,1.379401,1.4259934,1.3836601,1.4274386,1.4947759,1.4617714,1.3312751,1.3726839
+0.79341966,-0.004116684,-0.017060012,0.07455883,-0.43420196,-0.06578226,-0.09869204,-0.21512723,-0.55465937,-0.43768513,-0.25158238,-0.44607484,-0.3519523,-0.30911118,-0.3297612,-0.4188789,-0.3828499,-0.5082134,-0.4121343,0.025514103,0.46285737,0.34316266,0.1574789,-0.07019048,0.24853784,0.22455326,0.6180587,0.6552762,0.6172283,0.87102103,0.99208856,0.8100858,0.50275666,0.28556895,0.055799566,-0.122736804,-0.20499283,-0.32493484,0.15086046,1.0273255,0.8292063,0.79045355,0.6442783,0.5692046,0.08236515,-0.031058393,-0.061604865,-0.22527647,-0.35178456,-0.48313272,-0.5063444,-0.6143722,-0.33837217,0.25353354,-0.0051654354,1.0359582,0.7640097,1.224529,1.8383698,1.1477158,1.460345,1.5550908,0.7928332,0.3763278,1.2409043,1.0804864,0.3578043,0.13088423,-0.00051417947,0.55717146,0.59948957,1.5967623,0.95184374,1.0790159,2.0126457,2.1159368,1.8345671,1.0553787,0.6180111,0.22121552,0.008858152,0.009568088,1.5989351,1.4912741,0.80487704,0.32527092,1.237647,0.8444851,0.37934488,0.012849763,0.24378693,0.4444128,-0.103052296,-0.2294324,-0.4203173,-0.6420888,0.10886028,1.1358843,1.2848903,0.66529226,1.1405923,1.3029474,1.9673893,1.345293,0.6936178,0.38456488,0.0119496435,2.320857,1.7861533,1.5194253,1.5783126,1.0419433,0.9782365,1.2958555,1.3803115,0.9641919,0.46173418,0.17338097,0.82679737,0.96426743,1.0734652,1.3781309,0.6321083,0.46329808,0.16524836,0.5020087,0.9821248,0.5143699,0.11131402,0.15173936,-0.20085877,-0.3460642,0.23853192,1.180734,1.1546866,0.72765356,0.39641,0.12782192,1.0876228,0.7112992,0.82738924,1.8613613,1.2722969,0.66575694,1.0160425,2.0740042,1.561759,0.9080672,1.245477,0.6221547,0.32037148,0.2278322,0.36638108,0.28928965,0.18338013,0.035551064,-0.07750609,0.12845072,0.204021,1.4423966,0.9105537,1.2617188,1.4816724,0.982857,0.5354056,1.3761104,1.1856862,1.2630186,2.1882687,1.5229313,0.940227,0.41597715,0.44489995,0.573764,2.0211008,1.7286344,1.2658547,1.8371174,1.5758691,0.74820626,0.66819453,0.42103136,0.3268829,0.140226,0.20235297,0.15647118,0.103945486,0.4977545,0.75189877,1.3609073,0.76892066,0.5682494,0.29986933,0.285762,0.36556685,0.36880332,0.17032392,0.005323954,-0.029702596,-0.19540346,0.011250719,0.0006587282,0.10605935,-0.056638263,-0.15425333,-0.15341172,-0.0808127,-0.24348468,0.85941184,0.5230168,0.3852522,0.32760084,0.5157365,0.33994022,0.2302298,0.3330556,0.19789392,0.13905232,0.07930054,0.040452868,0.04352095,-0.044217654,-0.029192932,-0.106347464,-0.09645506,-0.31029892,-0.18067104,-0.2159406,-0.23263326,-0.21629322,-0.25974342,-0.23121017,-0.46906704,-0.61786044,-0.66491246,-0.4523818,0.048485078,-0.19770566,-0.06347395,-0.18106478,-0.14674848,0.23648995,0.43415427,0.18339929,-0.11320799,-0.28178686,-0.43842816,-0.097683154,-0.24691099,-0.42265564,-0.8760667,-0.9623978,-0.96558,-0.7919155,-0.51462054,-0.8267596,-0.8837833,-0.91368806,-0.9116055,-0.79629886,-0.6230543,-0.76444656,-0.7510531,-0.76151586,-0.6485227,-0.6529547,-0.36936665,-0.18530005,-0.18593681,-0.08361518,-0.55682766,-0.56406,-0.5936508,-0.7279961,-0.63499415,-0.72190315,-0.3387875,-0.3185243,-0.79902315,-0.8806232,-0.89007473,-0.8600497,-0.8046059,-0.7710481,-0.46808958,-0.71555173,-0.82112825,-0.83942306,-0.7622243,-0.7395972,-0.36375326,-0.20156401,-0.5783274,-0.36303914,0.02252724,0.2310079,0.18240991,0.0730655,0.06794972,0.47590578,0.06427785,-0.42306256,-0.55059505,-0.6363151,-0.649643,-0.1727317,-0.4490943,-0.79944044,-0.80676013,-0.74668,-0.7181152,-0.6865336,-0.4029244,-0.77931523,-0.7684012,-0.65018976,0.013763875,0.121809185,-0.31574947,-0.100757934,-0.34453318,-0.30352986,0.1814631,0.73954195,0.75360847,1.1984007,0.9214429,0.89399153,0.7221596,0.46854424,-0.36093616,-0.5557227,-0.53980154,0.050009638,0.018575765,-0.47897077,-0.64879334,-0.51501775,0.16388136,0.81206584,1.0116353,0.03359001,-0.23081523,-0.57562274,-0.76213026,-0.67177606,-0.5572149,-0.68013006,-0.6962122,-0.679261,-0.20061898,-0.21251774,-0.14661232,0.5403961,0.33395132,-0.45512724,-0.12692133,0.4160978,0.5234562,0.39524937,0.47301146,0.4547684,0.5758397,0.71846247,0.6814125
+1.1367337,0.5972091,0.44300544,0.3141118,0.16477168,0.49213284,0.4979592,0.5115515,-0.0751785,-0.0074105635,0.09759768,-0.06692914,-0.07168298,-0.034688316,-0.068174206,-0.15957919,-0.205392,-0.40247372,0.08375516,0.47303817,0.8305517,0.6609782,0.43504715,0.25081432,0.15150255,0.109127246,0.5541836,1.0955151,1.1076378,1.3292303,1.3775439,1.2362024,0.90193486,0.584079,0.3598923,0.18713333,0.08821283,-0.0029584616,0.33674797,0.62746394,0.4684223,0.6418226,0.49592775,0.38560945,0.092458725,-0.033565022,-0.041976117,-0.07257558,-0.14751863,-0.25634328,-0.2548145,-0.37252253,-0.49014938,-0.3701722,-0.02417516,0.97260475,1.3016579,1.4041123,1.072705,0.57183623,0.9155967,1.1116899,0.4729323,0.07471992,0.007555872,-0.13132375,-0.2525982,-0.2983397,-0.41429913,-0.54066616,-0.62150997,0.58439237,0.4081063,0.15550919,0.048994772,1.0953084,0.55161285,0.19626738,-0.029955082,-0.18426526,-0.35817575,-0.1536211,-0.14062452,0.049596585,-0.15361673,-0.40907514,0.6762442,0.42442986,0.121022485,-0.10085025,0.7163466,0.6844256,0.12684464,0.1556696,-0.12085026,-0.27862734,0.3220971,1.4845681,0.9896765,0.4372037,0.4036817,0.19131611,1.692734,1.4747479,1.0120604,0.61136836,0.21113339,0.8040551,1.9653804,1.9720491,1.9533796,1.5393761,1.1279013,0.9224737,0.7685765,0.6290237,0.36073995,0.17320466,0.101827435,0.026125051,-0.034880765,-0.14910325,-0.2904231,0.8716024,0.8676646,0.4446833,0.93007,0.5838992,0.2211155,0.20961432,0.0045745373,0.30973873,1.1759346,1.6797507,1.6786394,1.3863094,1.0384511,0.7744099,1.0078478,0.72825015,0.50956285,1.7096529,1.4920338,0.8701352,0.5255116,0.58038205,1.0921955,0.8766953,1.104657,0.629609,1.2714338,1.2260191,1.0846609,0.9026369,0.7202077,0.5227812,0.30910435,0.19197762,0.027563274,0.4743001,1.3703002,1.2364652,1.598444,1.0045199,0.639426,0.808777,1.0190425,0.78042305,1.6176747,1.512192,1.0704118,0.7760219,0.6176176,0.4567694,0.34777343,0.90429336,0.93053377,1.4737916,1.4117975,0.94627815,0.7787212,0.592562,0.47080243,0.29924425,0.36228338,0.32790402,0.29787016,0.2674759,0.27504048,0.60926664,0.5731337,0.38810974,0.30374113,0.5711146,0.60046387,0.7140812,0.5150425,0.31779337,0.23111802,0.26384506,0.3638846,0.3952096,0.3871834,0.29202026,0.21543771,0.18209484,0.19398773,0.10645525,0.2106664,0.4196492,0.3584846,0.23238924,0.38083324,0.2863639,0.21359482,0.6684711,0.82640755,0.8326663,0.7317562,0.66869736,0.61591506,0.5853994,0.51153874,0.4463489,0.33571398,0.22951978,0.20610824,0.18953377,0.22257435,0.21422917,0.23152763,0.26182356,0.0994441,-0.30468634,-0.36188382,-0.17863327,0.5199471,0.4517453,0.4392999,0.3554727,0.38462448,0.6383326,0.8402048,0.70567703,0.48420846,0.38299692,0.24375397,0.5119128,0.5621358,0.3091222,-0.21630281,-0.45211422,-0.5454491,-0.4441514,-0.2396144,-0.3792898,-0.50728977,-0.5819824,-0.5991031,-0.4277097,-0.37440562,-0.6122179,-0.534224,-0.4172005,-0.26350793,-0.21232653,-0.09601655,0.062088676,0.0015078112,0.39752302,0.04014779,0.02287452,0.029787324,-0.11303707,-0.049142502,-0.11576659,0.14215517,0.18229708,-0.42714906,-0.5688166,-0.6048391,-0.5091494,-0.44334704,-0.24927104,0.271509,0.14393355,-0.21132678,-0.24955413,-0.11373236,-0.07823562,0.4016812,0.43619508,0.22292733,0.36040896,0.72574514,0.8010173,0.87145543,0.6910954,0.5838989,0.6274819,0.3340798,-0.022006541,-0.17032158,-0.18840867,-0.16119128,0.043882765,-0.0146679655,-0.45478696,-0.5371745,-0.39657325,-0.23501873,-0.11149124,0.21547598,-0.24223346,-0.38976938,-0.11615468,0.38340387,0.5602023,0.1699509,0.23575562,0.025812343,0.140531,0.58840406,0.5842309,0.47884768,0.4385345,0.78775877,0.78077495,0.7695782,0.67822605,0.052091405,-0.12108863,-0.05403962,0.368661,0.5143444,0.056701176,-0.29109707,-0.21487868,0.31337264,0.38994738,0.76577294,0.4236309,0.21661735,-0.13476875,-0.43830955,-0.47614443,-0.34781712,-0.40169597,-0.4640059,-0.34817368,0.17524615,0.24031967,0.1833165,0.27748612,0.24823192,-0.034733795,0.056075804,0.108329706,0.7475644,0.7550385,0.8011099,0.7850773,0.8975439,1.3082817,1.1528134
+1.4017038,1.7068723,1.7717302,1.6347511,1.6948757,1.7779,2.113497,2.037611,1.9413476,1.618848,1.922315,1.7944088,1.5627742,1.3430634,1.0879021,0.77803457,0.7206974,0.78298664,1.6986105,1.6700925,1.9274453,2.0195503,1.7338016,1.3041449,1.4658046,1.9396422,2.2886195,2.4483032,2.4505208,2.4697127,2.2643137,2.3338897,2.3611212,2.1465027,2.040615,1.6174929,1.3855357,1.5070523,1.4134214,1.7490225,2.03464,2.154606,2.0791442,2.1863613,1.9035115,1.8966322,2.4263663,2.2482834,2.0863156,1.6909693,1.6774483,1.3307264,1.0259955,0.86941147,0.6714507,0.8882884,1.9511838,2.6366313,2.3022833,1.8546948,1.5177989,1.4856256,1.180293,0.91390896,1.9248037,1.8200133,1.2675029,1.1151351,0.8054768,0.5925647,0.40640134,0.3307716,0.2803461,0.19512987,0.10210199,0.10575083,0.08431008,0.1021053,0.1180061,0.019416153,0.81949854,2.352543,1.7799883,1.3659091,1.2187574,0.8337151,1.16874,1.0446682,0.8115875,0.8275816,1.7783753,1.8189389,1.2316238,1.9966865,1.8138117,1.3593881,0.9777428,1.6035937,1.4287432,1.1179918,0.8291289,0.56845665,1.953614,1.7909878,1.3750242,1.1883125,0.9648371,0.5367333,0.84102345,1.7601362,1.5399598,1.0223088,0.74065864,0.59060585,1.1079705,1.1920812,0.87088555,0.59809285,0.46777835,0.36935574,0.31146368,0.21521726,0.9464886,1.598139,1.2115248,0.8763523,2.3491225,1.8700826,1.4625847,1.3922856,1.3292472,0.9194518,1.2376229,2.149591,1.9183595,1.432738,1.2408364,1.0609319,0.86107767,0.68950725,0.55669737,1.6137354,1.601668,1.1058528,0.74981415,1.0897701,1.5989528,1.7011466,1.8426024,1.4641082,1.5611985,1.5633976,1.5273621,1.5833337,1.3901423,1.0998874,0.8633003,0.64471024,0.42401615,0.5542115,1.9784358,1.5988967,2.357902,2.0919566,1.6065568,1.7074435,2.3549235,2.0439525,1.7915082,1.6732241,1.5233722,1.1757343,1.522823,1.4073586,1.077192,1.1023434,0.99878204,1.0970848,1.5020933,1.2176445,1.0664343,0.9903596,0.87433094,0.59020025,0.52902603,0.4800638,0.37170643,0.4498724,1.15318,2.0904646,2.125655,1.760516,1.5123432,1.3910811,1.3831713,1.743842,1.2516669,0.8100697,0.6631412,0.5763585,0.61465,0.800561,0.76552963,0.86997885,0.7457434,0.5315658,0.7344004,0.53662765,0.3515345,0.8990849,0.660154,0.48038328,0.66573846,0.58302027,0.35339513,0.43648195,0.97057664,1.0412731,0.9387335,0.95447016,0.8693596,0.62582,0.9023646,0.83207154,0.72825116,0.81019956,0.7787837,0.5891085,0.6354957,0.5618119,0.43519655,0.5990325,0.7971094,0.6260444,0.5323745,0.47566557,0.5667749,0.9338401,0.977864,1.0530288,0.7973375,0.99007785,1.606976,1.3975986,1.4141364,1.3656131,1.3377845,1.2660024,1.8261478,1.7388198,1.3306174,1.0317268,0.7876973,0.57482845,0.7410915,0.5771641,0.52032,0.32421097,0.16849032,0.20221266,0.27959573,0.18182349,0.15561935,0.2272278,0.3201435,0.6175904,0.74952614,1.000247,1.0807564,1.502387,1.6273515,1.5032449,1.5185542,1.2377255,1.299606,1.093197,1.2326541,1.5610669,0.7508014,0.64105785,0.61865973,0.6358203,0.6521143,0.6059035,0.9812684,1.332811,0.98346686,0.6762567,0.69751394,0.7197362,1.2424815,1.7331355,1.8977075,2.1121645,2.1832201,2.3110366,2.4172533,2.512029,2.3672855,2.3082,2.34266,2.2625027,2.1339583,2.2482746,2.2372444,2.2129092,2.1348999,1.7147986,1.4707615,1.0994802,1.4064034,1.6922574,1.5551839,1.4869726,1.0041417,1.1200991,1.5454233,1.634393,1.5816181,1.590887,1.545466,1.5179291,1.5458779,1.5012594,1.3495085,1.0223695,1.4246905,1.5303953,1.6167192,1.4594705,1.3526821,1.0620924,1.3403656,1.1561071,1.483364,1.4693456,1.105757,1.1856349,1.1846632,1.0392601,1.6765558,2.124948,1.8948011,1.687562,1.1422684,0.8725661,0.97920305,0.6633192,0.38146394,0.69481575,0.97514725,1.031926,0.9874099,0.8806069,1.0589603,0.9933988,0.74047273,0.75890094,1.6596335,1.7821143,1.9089792,1.9992732,1.9600234,2.246309,2.3454082
+1.1342432,1.5175085,1.3205513,1.0689265,0.9230654,0.63534456,0.76648104,0.89728445,0.69316787,0.35542125,0.5537027,0.6698489,0.5591422,0.47826466,0.3309049,0.16324168,0.14448063,0.102328576,1.1708874,1.394197,1.3693416,1.3123982,1.0122925,0.744822,0.579453,1.5162082,2.525547,2.5004108,2.2366917,2.5307093,2.315718,2.0974102,1.9768848,1.8396921,1.6851811,1.2716256,0.9822041,0.9899926,2.0605526,2.2448256,1.8869659,1.860358,1.5853555,1.8327162,1.3616652,1.9010156,2.5755334,2.3774343,2.0450296,1.7277737,1.7757955,1.491353,1.2214,1.1107819,1.1682137,1.7414508,2.756339,2.7200518,2.350462,2.0388618,1.8954947,1.7538142,1.342592,0.944175,1.6574371,1.5946101,1.0045483,0.76024675,0.52145374,0.27477956,0.066138774,-0.020777099,-0.099771105,0.03890895,0.009937957,-0.1099607,-0.20670313,-0.18232551,-0.15915489,-0.3479308,-0.4556371,-0.028715454,-0.08271233,-0.14680216,-0.21089295,-0.40847117,0.84098744,1.1590732,0.74453247,0.5073214,0.27407816,0.48842862,1.615255,2.6792579,2.445649,2.0813332,1.8271029,2.1879206,2.2036953,1.6899076,1.1966705,0.848802,2.1769347,2.9103804,2.5647523,2.1074624,1.7116969,1.1114976,0.7383874,0.46848625,0.27707025,0.1293132,0.005755037,-0.05750241,-0.17054623,1.3169746,1.0138584,0.4169429,0.21653536,0.1581961,-0.01166261,-0.05707819,2.3079932,1.9949477,1.4980117,0.967824,0.6540022,0.5553879,0.33195564,0.3791774,0.32157144,0.16484243,0.07250099,0.04952901,0.47710153,0.2365498,0.07186965,-0.08696807,-0.24293315,-0.33704838,-0.38173887,0.6034846,0.5474257,0.22014552,-0.084269784,-0.12334133,1.2080985,0.9397248,0.6489728,0.4237424,0.33835277,0.21300644,0.63442445,1.0708815,0.85809064,0.5258666,0.3267748,0.061183304,-0.14006576,-0.23187554,0.42522654,1.248248,2.4961948,1.8716896,1.5274011,1.1972175,1.3512163,1.092178,0.88586277,1.1970026,0.9956058,0.6826005,0.5080973,0.43101138,0.34391427,0.22609779,0.10317313,0.02975557,0.33535808,0.20210212,0.056725428,-0.023171142,-0.15736967,-0.34201416,-0.38101873,-0.38056666,-0.38981378,-0.34243718,0.5597613,1.7541184,1.3046765,1.080909,0.85796225,0.7169051,0.49845457,0.87882763,0.5619081,0.38785285,0.34479657,0.30466208,0.29483753,0.3350664,0.2657041,0.16212475,0.01901906,-0.09093208,-0.038760386,-0.19585323,-0.32949853,0.04610718,-0.06627735,-0.14479327,-0.12740651,-0.17724183,-0.28704968,-0.32670796,0.4299271,0.66786504,0.66521823,0.6116378,0.4381883,0.76438266,0.8430577,0.8740917,0.7389934,0.7901832,0.6823409,0.52418935,0.51962423,0.4769866,0.5122852,0.5231341,0.55894893,0.2486138,0.18834235,0.06651386,-0.009582944,0.21047515,0.21652928,0.27950752,0.09252492,0.076842055,0.5405018,0.45753503,0.2680213,0.3647452,0.3099212,0.5299698,0.96183765,1.0276365,0.60891104,0.18596148,0.031378217,-0.040744267,0.17882133,0.22051707,0.075930744,-0.08271041,-0.20440668,-0.13038653,0.08087515,-0.25458694,-0.0835299,0.02852077,0.18065977,0.46361902,0.36418965,0.85244024,0.7647656,0.813522,1.1616628,0.9963916,1.065568,0.672624,0.7255163,0.6974009,0.5571995,0.65075386,0.049141146,-0.2266373,-0.27030855,-0.11279551,0.009836175,0.10137037,0.8144213,0.929616,0.7410114,0.07333462,-0.053994067,-0.018439673,0.63044417,0.9935709,1.13167,1.0822526,1.1474402,1.347635,1.4216373,1.4147682,1.4528109,1.3615777,1.2377838,0.85696787,0.8838898,0.9858979,0.9330586,1.0049154,0.8881273,0.45929134,0.07519888,-0.030120783,0.29695255,0.5027913,0.5947145,0.6510901,0.03351323,0.3063893,0.5550182,0.7825023,0.5350098,0.4392978,0.45048186,0.3603139,0.3979579,0.32294303,0.24366379,0.04790517,0.29380652,0.289379,0.3018695,0.2136766,0.35162345,0.08202039,0.0986404,-0.057147615,0.8573431,1.0191303,0.7989366,0.7629638,0.5944534,0.38664886,1.0852052,1.1528628,0.7713202,0.8906158,0.34022203,0.14053386,0.18061665,0.05371713,-0.24369383,-0.043057613,0.066547595,0.1745618,-0.05013112,-0.1847235,-0.05018314,-0.082832225,-0.31893176,-0.13306299,1.0994368,1.1398624,1.1920778,1.2733891,1.6644025,1.8998016,2.0307527
+0.75461066,1.1627152,1.0396097,0.7281171,0.57917964,0.4711647,0.60720265,0.72120446,0.5302467,0.17674497,0.8976493,1.25653,0.98651254,0.7329428,0.58820987,0.44328073,0.38716188,0.20201099,0.23205507,0.1955569,0.20684743,0.16944513,0.075507395,0.02324982,-0.06305993,-0.068462856,0.2898766,0.5983192,0.35387465,1.1750867,1.0592275,0.7726656,0.83867633,0.8355826,0.71829194,0.47889414,0.31177163,0.13350663,0.021396153,0.15736681,0.12986779,0.25105387,0.31856048,0.20264503,0.08736891,0.4333501,1.3156128,1.0144401,0.8590405,0.72443855,0.7496215,0.74132895,0.58971375,0.5770536,0.7215824,0.74099827,0.7501912,0.7099004,0.6135406,0.39465427,0.26882455,0.289762,0.3479492,0.25621864,0.20995942,0.23604998,0.14218721,0.07745644,-0.006574139,-0.11935007,-0.1400136,-0.1734901,-0.186483,-0.15382162,-0.2264089,-0.12903035,-0.14806935,-0.21243101,-0.17022356,-0.23702806,-0.26611048,-0.27701622,-0.2982883,-0.30865684,0.64695317,0.4993368,0.35443163,0.3386987,0.2963708,0.21635738,0.10856582,0.4287337,0.32227227,0.6195527,1.0140146,0.6932937,0.57285947,0.57618624,0.55615747,0.5397735,0.44893447,0.37241897,0.21160871,0.3803373,0.3861099,0.37701318,0.23507869,0.06910385,-0.0018753782,-0.07050189,-0.1291936,-0.16643131,-0.18023583,-0.20163062,-0.21622187,-0.14648467,0.1422584,0.23469695,0.28906608,0.2459721,0.18236813,0.050971366,0.073967986,0.0036248416,-0.10168991,-0.14711174,-0.2029581,-0.076662876,0.118235804,0.5926234,0.3778841,0.284033,0.19216874,0.17181128,0.622505,0.46972233,0.31393737,0.27396527,0.1608038,0.046783864,-0.06842192,-0.09523616,0.026433453,-0.10309274,-0.19126564,-0.12647384,-0.17797482,-0.20726877,-0.22074297,-0.28739202,-0.24911135,-0.16528651,0.100922495,0.33470052,0.2954292,0.12037016,0.099538766,-0.06538951,-0.17108047,-0.22023427,-0.15066841,0.56874764,0.9466206,0.7177384,0.56608844,0.39551514,0.29398167,0.21558532,0.93289095,0.82271147,0.726063,0.65510654,0.5494252,0.47267523,0.41089302,0.3079292,0.17120066,0.15906817,0.5638869,0.5679855,0.42107564,0.3495457,0.20144391,-0.010303177,-0.054151647,-0.071496345,-0.12493075,-0.06080369,0.31628004,0.45960313,0.5457988,0.42755002,0.319535,0.23477834,0.37487894,0.72910535,0.58054245,0.6024638,0.63274646,0.67419183,0.5507516,0.5816902,0.87725437,0.7892322,0.8404827,0.789973,0.6688417,0.5335717,0.44788432,0.4008894,0.3256368,0.30898595,0.24128288,0.15942861,0.11126139,0.019880123,0.23418197,0.5881621,0.5589964,0.485856,0.40796232,0.5287884,0.61023474,0.69278944,0.58485895,0.7137892,0.63890266,0.519342,0.51727766,0.53354573,0.60275376,0.54687333,0.7622993,0.63266265,0.43968186,0.3036327,0.27692014,0.41888285,0.40702772,0.5380496,0.4438137,0.44585532,0.5892986,0.61451626,0.6491074,0.49828446,0.3451774,0.38852048,0.538079,0.5690929,0.62251604,0.62866944,0.57425624,0.46645525,0.40054458,0.58133376,0.43867826,0.6489421,0.5237918,0.4685763,0.3999458,0.24985981,0.24535793,0.39735755,0.63112116,0.7567736,0.34143218,0.43163288,0.51001024,0.76523864,1.0845636,0.9242805,1.1669915,1.2640212,1.0367151,0.92793405,0.5679499,0.60989106,0.8928102,0.47701037,0.51869714,0.40466002,0.48477453,0.576441,0.86909246,0.8303491,0.7171319,1.0498583,1.0160022,1.3745192,1.2027662,1.2333462,1.3966339,1.1409363,1.3135962,1.4934806,1.3867332,1.2530887,1.4943911,1.5698559,1.6820014,1.7534747,1.7479737,1.4931295,1.4771302,1.3549062,1.3419576,1.2673719,1.1181047,1.0338233,0.936873,0.7805133,0.8980833,1.0841225,1.0688941,1.0268714,0.923769,1.0133,1.0037378,0.66075075,0.9318902,0.97868514,0.93280494,0.7121296,0.6397383,0.63968587,0.5472358,0.53441757,0.6222555,0.62190866,0.8609251,0.5656554,0.3745305,0.47021562,0.6892564,0.9229132,0.8076657,0.65718395,0.45960733,0.39973,1.0367005,1.1513752,0.76806784,0.7742055,0.54435486,0.64768076,0.52607346,0.6062293,0.62090474,0.53158534,0.59667873,0.78858083,0.6033052,0.46048462,0.46224296,0.47538167,0.42070952,0.45890626,1.1304595,0.92365396,1.2099082,1.0046613,0.9649588,1.0460545,1.0902766
+1.5965936,1.8256373,1.5365349,1.4171062,1.2537504,0.9397106,1.2205702,1.541199,1.0872573,0.5271154,0.8311721,1.1474628,0.9623918,0.8388144,0.73852754,0.6791424,0.66987157,0.53237,0.62384105,0.65814984,0.88235515,0.90039575,0.6464555,0.48287404,0.332538,0.28051955,0.71400106,1.293983,1.6667801,1.9025772,1.7725788,1.6326895,1.6526673,1.5994148,1.592275,1.2672954,0.95882404,0.725366,1.1978312,1.5391545,1.3035057,1.7772162,1.7749854,1.7696791,1.5717762,1.2259693,1.2753389,1.7882562,1.4241763,1.4004192,1.3459461,1.2403091,1.0166932,1.0641072,1.7804662,1.627651,1.6134845,1.5866505,1.4736242,1.1731563,1.159935,1.1136081,1.06733,0.9352271,1.1134372,1.3422266,1.241643,1.0999851,0.91067266,0.6891215,0.6316775,0.56696707,0.5005483,0.5860093,0.50128233,0.49858624,0.55555534,0.5449178,0.711621,0.5892135,0.45144087,0.4298113,0.35564178,0.37222373,0.44341838,0.42166042,0.34061995,0.4651671,0.6934798,0.56472033,0.4466874,0.5874975,0.4535352,0.62186885,1.4064505,1.1641959,0.8711581,0.7614679,0.80593264,1.6501412,1.2403227,0.9411433,0.71076614,0.6223025,0.67811537,1.0882714,0.97331,0.7533519,0.7032128,0.6359499,0.5663656,0.50946945,0.498823,0.5013497,0.5326532,0.67032146,0.7891067,0.7411115,0.70918846,0.764381,0.71779287,0.77364844,0.5752707,0.5616793,0.51717573,0.48895735,0.4452331,1.2504547,1.3539438,1.5062523,1.3189708,1.104291,0.952678,0.908044,1.4321344,1.5130093,1.4274147,1.3909364,1.2136905,1.1504253,1.4496018,1.4851203,1.7158133,1.2230825,0.86167604,0.7145265,0.71614647,0.6517926,0.676642,0.67319727,0.5731277,0.724252,0.6297357,0.60449547,0.81106526,0.58638686,0.50736403,0.31325418,0.24519888,0.22873846,0.22418979,0.43915823,0.8395395,0.9787521,0.5908764,0.45262602,0.47063047,0.689435,1.0460216,1.5526863,1.3981426,1.2368668,1.0821233,1.0056647,0.8982669,0.7394372,0.58532095,0.5232577,0.8581815,0.8286915,0.60608995,0.7547975,0.50223297,0.25457418,0.3081295,0.27943382,0.2445041,0.596588,0.8279316,0.9588624,1.1577859,0.8797225,0.6175482,0.54135627,0.60503787,1.6256247,1.3242602,1.1405623,1.004563,1.0049937,0.97738504,0.8613516,1.404393,1.5453587,1.3219802,1.2090755,1.0856537,0.8794824,0.71131647,0.76462173,0.67408204,0.6122228,0.58167654,0.54013556,0.41727132,0.35157877,0.33559883,0.4439333,0.4956224,0.5089398,0.41210556,0.8422211,0.980588,1.0616012,0.9516207,0.9929969,0.9760791,0.7922494,0.823686,0.76095337,0.70311487,0.65175855,1.3909228,1.0951399,0.8927104,0.6977519,1.0563817,1.5061011,1.3866061,1.3507984,1.1579053,1.4136877,1.6834221,1.9533513,1.8544979,1.5674891,1.1990072,1.2208798,1.3559282,1.4272463,1.5280159,1.6112285,1.4111925,1.1528063,0.9741634,1.2567279,1.2897524,1.4623542,1.4587096,1.2064226,1.0936639,1.5023323,1.2746933,1.2472525,1.3781108,1.4162798,0.94304574,1.1383436,1.1870216,1.3088114,1.8899982,1.5491798,1.9197637,1.8478674,1.4916701,1.5193284,1.109709,1.441304,1.7497947,1.3435962,1.1754327,1.2192587,1.1091028,1.145363,1.0910438,1.4188131,1.5169921,1.6902599,1.7037265,1.5757008,1.6099479,2.103327,1.9399817,1.5890454,1.7979281,1.9693027,1.9469354,2.0579379,1.7981695,2.0160763,2.292384,2.199469,2.1847718,2.0018916,1.9548309,2.004904,1.8438346,1.7737052,1.5320477,1.3683257,1.1420885,1.2172294,1.3714557,1.7248447,1.6998336,1.384649,1.3707676,1.6148989,1.6306863,1.845864,1.7869978,2.070377,1.9714735,1.750893,1.7030615,1.474498,1.7062955,1.3835118,1.5880282,1.7711139,2.2582746,1.6533191,1.2213322,1.1797972,1.48606,2.0191596,1.7363093,1.5615835,1.3278825,1.0476303,1.745364,2.121582,1.5847695,1.8540939,1.7391126,1.7640239,1.5665376,2.0616124,1.7936585,1.4931065,1.561561,1.7600718,1.7387052,1.6518035,1.6661847,1.6515192,1.3482281,1.2012354,1.752984,1.6453266,1.9150999,1.7480694,1.6509303,1.7312946,2.0377371
+1.2903168,1.6694976,1.5312998,1.3602773,1.2799599,1.0289437,1.1046596,0.94940877,0.6558275,0.29088238,1.7674483,2.398951,1.6520666,1.8019334,1.7914684,1.628358,1.6011322,2.1874857,2.2558675,2.1872928,2.109815,2.115811,1.8552604,1.7560421,1.6080625,1.4906523,1.6385381,1.9289389,2.59156,2.8949237,2.643217,2.445974,2.3887658,2.322132,2.1824076,2.040416,1.8473349,1.5650184,1.5557408,1.9398371,1.7576306,1.9955429,2.132129,1.9736545,1.9043281,1.3383385,1.5721037,1.5871096,1.6325629,1.7875993,1.5594339,1.6481396,1.468351,1.3113455,1.4163218,1.7040951,1.7161384,1.6718585,1.8278899,2.1341774,1.8522494,1.7173378,1.7150705,1.8050008,2.2996938,2.116897,1.8778403,1.698349,1.5755596,1.4222903,1.3844321,1.1233065,1.2635505,1.6235919,1.730904,1.468083,1.421417,1.2242823,1.4316764,1.3396224,1.1410451,1.1335722,1.0612806,0.9939036,0.8894777,0.8948416,1.2014053,2.5023577,2.140159,1.7600248,1.6389287,1.576919,1.6607794,1.461472,1.7013602,1.7321553,1.4752365,1.4054973,1.3007134,1.2993383,1.4475758,1.3937988,1.1712427,1.1055397,1.9305933,2.263989,1.740828,1.5991775,1.4610647,1.3668255,1.2649989,1.2097131,1.0714413,0.9364517,0.90390205,1.0578982,1.4002616,1.1269981,1.1002562,1.0859548,2.2721627,2.1561127,1.7166865,1.6017358,1.4217057,1.2446941,1.0863143,0.9610015,1.1853327,2.4101653,2.2610817,1.9809723,1.7928369,1.6684914,2.487033,2.6469073,2.782487,2.688084,2.2891178,2.337239,2.4276805,3.0320764,2.7772698,2.3687112,2.084253,1.8704189,1.724199,1.6766691,1.6355926,1.6432687,1.5990366,1.7698816,1.9648035,1.8254008,1.9372098,1.8426543,1.6233854,1.3519125,1.2374064,1.1616454,1.1241822,1.0676836,1.0346599,1.2663765,0.94085014,0.7593424,0.9180687,1.0651385,1.0708175,1.2989616,2.112471,2.0172708,1.7184309,1.6347692,1.4909945,1.2327927,1.1485144,1.0849351,0.97664714,1.0903394,0.7721842,0.79358125,0.5378993,0.25354365,0.31229028,0.38402694,0.33700415,0.21026492,0.28951994,0.3476408,0.53304785,0.4453415,0.23454145,0.23769325,0.14901945,0.43913484,1.2106488,1.0619364,0.8845812,0.8856477,0.7718592,0.67609847,1.2614853,1.6092656,1.2848477,1.1189183,0.885087,0.7216846,0.5999559,0.52909553,0.52778095,0.4696952,0.39785945,0.36126742,0.3310758,0.29628825,1.027258,1.4362854,1.2056851,1.0720676,1.4170454,1.5554135,1.3594143,1.4137876,1.2578411,1.1384754,1.0962431,0.8982485,0.79178,0.76386523,0.6997668,1.9821364,2.3989983,1.7220646,1.5460659,1.6461625,2.3634737,2.1091304,1.9236118,1.9492073,1.9824178,2.5102344,2.3699608,2.4823523,2.3330693,2.074266,2.2362435,2.1523592,2.0081758,2.1930203,2.088394,2.3106694,2.044984,1.7224689,1.6682003,2.0707254,2.0368156,2.1244624,2.160105,1.8842821,1.6794724,2.4788265,1.8062782,1.5971329,1.7355068,1.8267972,1.621696,2.3240428,2.1464267,2.4580219,2.538669,2.358635,2.445507,2.4641345,2.0046623,2.1249034,2.2086074,2.252202,2.5123816,2.097781,1.8713814,1.6224449,1.4751757,1.5456296,1.6390778,2.0289876,2.1169202,2.2029297,2.0757782,1.962481,2.4465337,2.3823984,2.3113205,2.0439205,2.2429385,2.4133084,2.7154686,2.5995278,2.4236443,2.3689475,2.6416821,2.4300458,2.3211675,2.2829962,2.245294,2.359231,2.3433268,2.321941,2.1185873,1.7714754,1.5776248,1.7329593,2.0831215,2.2656069,2.406002,1.9915891,2.0009668,2.1378794,2.2762532,2.7359834,2.446587,2.377715,2.3488078,2.4164343,2.2199526,2.1932735,2.880068,2.3376994,2.3788953,2.5192933,2.7678945,2.2178483,2.0050628,1.9091314,2.233553,2.6400537,2.337304,2.2395182,2.0667603,2.0914128,2.6355405,2.5843582,2.3413076,2.3708038,2.267695,2.184363,2.2931688,2.4204001,2.323984,1.990657,2.2692804,2.3241487,2.2802436,2.2430382,2.337626,2.241393,2.089747,1.9977435,2.838438,2.6850765,2.7654753,2.569262,2.5512693,2.9965615,2.8437624
+1.8685968,2.8195798,2.970098,2.9412959,2.8478143,2.7683468,2.76262,2.6398115,2.4579682,2.1686325,2.6900604,2.9860425,2.995799,2.991878,3.037331,2.9738827,2.9426417,3.0713084,3.1685557,3.1740675,3.0802217,3.0505223,3.054556,2.9782553,2.900958,2.8390288,2.8839664,3.0111206,3.005127,3.2200022,3.1533778,3.151626,3.1098397,3.077031,3.0171006,2.9450274,2.8665085,2.7482185,2.6872244,3.0037646,3.0526485,2.9551184,2.984394,2.861123,2.801558,2.6450303,2.6952596,2.6546583,2.9271286,2.933598,2.9540415,2.8845363,2.776951,2.5777373,2.3913548,2.7382302,3.1046906,3.029972,2.9216256,2.8838787,3.0701692,3.153285,3.1083515,3.1145587,3.1691256,3.0874465,3.058536,2.988085,2.9121094,2.840541,2.7126305,2.4472346,2.3971128,2.7708697,2.988654,2.8517582,2.7634606,2.6577783,2.575814,2.5050817,2.3165078,2.15922,2.0636194,1.8496482,1.581506,1.4657657,1.3571262,1.4675055,1.8733107,1.756678,1.5233676,1.2794348,1.0853539,0.95785224,0.88661826,0.8288907,0.82279634,0.793296,0.767788,0.70911753,0.8188582,1.268965,1.0940597,0.9019891,0.75774395,1.0113388,1.3204976,1.220464,1.0234923,0.8937504,0.78827226,0.75358355,0.6941233,1.5568604,2.2445807,1.8590071,1.7175144,1.7059033,2.807081,2.7719727,2.5680747,2.493453,2.276893,2.0141332,1.702908,1.4680336,1.2748173,2.1030788,2.2255416,2.100318,1.9823213,1.6174209,1.3901752,1.5077612,2.116314,2.621266,2.7491112,3.0298626,3.017055,3.0456634,3.100805,3.0576255,3.0647883,3.0520368,3.0340796,2.963572,2.8897667,2.813171,2.6547186,2.6710653,2.6519785,2.4335477,2.2485263,2.1658583,2.2789352,2.230287,1.8445091,1.5736558,2.2396586,2.4534273,2.2181907,2.072339,1.9206252,1.9180276,1.6737578,1.3970935,1.240931,0.9939151,0.9384036,1.0586312,1.6577337,1.8748622,1.6641786,1.4872227,1.235702,1.0482601,1.0265912,1.0043495,0.8853606,0.95008826,0.72616446,0.81515753,0.5625307,0.32271963,0.28858623,0.37889594,0.28673327,0.25654218,0.34541646,0.39840126,0.5614044,0.47590423,0.22339737,0.008977838,0.05756948,1.3343815,2.4697554,2.289481,2.2048104,2.221447,2.1756825,2.0669444,1.9705646,2.1730373,1.97707,1.6752732,1.3576261,1.204457,1.0322909,0.8515217,0.74769145,0.71846944,0.6913364,0.5916325,0.6017194,0.61667526,0.61881834,0.8196492,0.86205703,0.6134145,0.8407955,1.4932715,1.3152676,1.5427015,1.334768,1.1414989,1.096256,0.7833626,0.66389936,0.66770285,0.6403204,1.0498462,2.1274924,1.7670844,1.6298751,1.4969442,2.3556395,2.7615194,2.732033,2.7593126,2.781116,2.8751698,2.9188864,2.921647,2.951295,2.880507,2.8972073,2.893777,2.9288197,3.0337715,2.9880254,3.0191817,2.9755561,2.8830771,2.9210613,2.9300303,2.8816826,2.8948104,2.8770728,2.7866259,2.8048878,2.9311361,2.6825247,2.4068894,2.2976956,2.6070323,2.608695,2.9077547,3.0232842,2.9998353,3.1161723,3.0735974,2.9828556,3.0431361,2.9185681,2.940372,2.9293466,2.9826765,3.003578,2.9293408,2.8334827,2.7664027,2.6135874,2.557842,2.7099693,2.9898405,3.0007665,2.9871407,2.8896759,2.9001513,2.9384952,3.1278083,3.1536589,3.0685434,3.1325393,3.1068606,3.0830693,3.0404074,3.0966425,2.998742,3.0216007,2.974656,2.9416218,2.9073849,2.9005141,2.9197862,2.9062726,2.8968377,2.8927479,2.7926369,2.7687845,2.9051356,2.9986613,2.979903,2.964099,2.882843,2.8580103,2.843672,2.8060741,2.8476198,2.9048195,3.0165043,2.9809637,2.9510803,2.9357522,2.874618,3.056181,2.9583182,3.0450068,2.989049,3.0077584,2.8836665,3.01019,3.0256166,2.9964552,3.0645795,2.9591866,2.9197335,2.8240623,2.8719401,2.9729326,3.0212088,2.8888314,2.8991628,2.9309926,3.0082731,2.9702826,3.0569236,3.0224748,2.9362316,2.9337559,2.9113383,2.886003,2.7982774,2.7833316,2.723988,2.5543327,2.3978324,3.0526514,3.0601335,2.9781623,2.9364674,2.9333863,2.9285104,2.9695377
+2.1827948,2.561704,2.5421858,2.3833606,2.1772907,2.0595696,2.1090114,2.0106769,1.7453557,1.4362358,1.5021375,2.9962773,2.6262455,2.8707316,2.786644,2.6633544,2.3723235,3.1960592,3.0865014,3.1674886,3.0300395,3.0252416,2.9702482,2.810602,2.525343,2.2389736,2.6915612,2.8895876,2.7921422,3.2159119,3.0944676,3.10737,3.14026,3.056398,2.9512587,2.8446522,2.604212,2.295362,1.9517299,1.6615648,1.6445701,1.6444635,1.6258787,1.508363,1.4598892,1.1860011,1.3741066,1.3040953,1.4297231,1.5009248,1.4959052,1.4156952,1.3402897,1.1354876,1.0917436,1.1238103,2.9703856,3.128606,2.7343693,2.4837341,2.1691198,2.534937,2.961864,3.1156998,2.9389114,2.8350024,2.6788118,2.548652,2.221149,1.9838743,1.6878448,1.4670689,1.6330085,1.8784938,2.3526697,2.0172856,1.8758245,1.6934671,2.0704167,2.2335944,1.9364517,1.8014965,1.7228863,1.6680708,1.4484215,1.3016748,1.3286328,1.3443252,2.0254877,1.7644088,1.5988697,1.4393613,1.1968374,1.0488391,0.9716713,0.9523334,1.0698888,0.9692452,0.9851625,0.90735996,0.8402911,0.85500497,0.7746414,0.7493117,0.80423754,0.7507237,1.4117395,1.4499776,1.0569756,1.0256466,0.9259215,0.81929886,0.70357835,0.6783283,0.7370312,1.0698928,1.2464281,2.5953732,2.9468088,2.7119205,2.466581,2.1429703,1.8473163,1.584595,1.365782,1.2113343,1.0720034,1.1299683,1.2462455,1.746516,1.618056,1.2929144,1.4820423,1.7811298,1.6213008,2.1878083,2.8980522,3.0671186,3.1490614,2.9721503,3.1275668,2.974173,2.8885598,2.8705528,2.8190928,2.6650574,2.4508467,2.3163717,2.6757257,3.1238618,2.9239082,2.7637901,2.5707986,2.2688498,2.1497407,2.0067885,1.6696545,1.6380312,1.9732683,1.9078071,1.807718,1.7508525,1.8896446,3.0052352,2.53978,2.33654,2.058714,1.7926221,1.673038,1.6919811,1.6288131,1.5297587,1.4296515,1.3807014,1.203804,1.1071647,1.1431422,1.0961808,1.0918446,1.0523194,0.966657,1.0409533,0.97033376,0.7458024,0.6892133,0.6763972,0.5607692,0.54932404,0.61609286,0.62371707,0.6341985,0.6947279,0.5696966,0.38636887,0.36946338,0.41350615,0.8418072,1.1072972,0.85303545,0.8908533,0.8653954,0.81635123,0.8084291,1.2835387,1.1869683,0.99411273,0.7516738,0.6970113,0.6422835,0.58532804,0.5222941,0.52931,0.54928094,0.53028286,0.49572486,0.5099669,0.48872167,0.44614062,0.5799406,0.42120746,0.47567606,0.99496937,0.86252177,1.039504,0.93255293,0.8018419,0.79280376,0.67757905,0.60088277,0.63260496,0.58845603,0.5939756,1.7246403,1.3714924,1.2643325,0.97775173,2.005257,2.4170392,1.9405253,1.9736142,1.8815725,2.2989902,2.5191085,2.5481558,2.4949565,2.2301846,3.2178054,2.9468117,3.1441264,2.9039536,2.9930186,2.9922643,2.8911495,2.7617865,2.513453,2.4837651,2.537993,2.5829284,2.6150358,2.4311419,2.1697383,2.8869264,2.4460034,2.1916556,1.7976004,1.8694408,1.8195621,1.7734739,1.997836,2.0445907,2.1415544,2.084639,2.1494398,2.212456,1.749558,1.8694801,2.5729046,2.8079965,2.9028559,2.817504,2.7220564,2.567483,2.2905593,2.1514664,2.0901613,2.462959,2.5471032,2.5522954,2.417545,2.4393759,2.3863363,2.8316255,3.1187057,3.0579205,3.0523543,3.0579462,2.9920542,3.089388,2.9745436,2.784374,2.9541407,2.8008523,2.673355,2.6264915,2.4429564,2.3498714,2.2347746,2.0680294,2.296152,1.9355042,1.6089377,1.815125,1.9324949,2.0224452,2.1534164,2.002952,1.6801857,1.7334198,1.7099723,2.1723428,2.7837143,2.5995083,2.3534682,2.2061276,2.0768473,2.064364,2.744073,2.4305604,2.3754935,2.265492,2.4861915,2.1585317,1.6933919,1.6174364,1.6681309,2.0532427,1.7468739,1.4362322,1.5502708,1.7809424,2.4854267,2.6429863,2.3272061,2.1244626,2.1108654,2.5357943,2.2427547,2.5632386,2.4649901,2.1814284,1.9136862,1.8342117,1.6478086,1.5696087,1.5163312,1.4730717,1.3414688,1.2694725,2.7293408,2.7481163,2.3290827,2.1839855,2.1374252,2.3877041,2.2951083
+2.097002,2.424193,2.4422946,2.3527837,2.1482196,1.9343255,2.069185,1.9193271,1.6418183,1.3492763,1.1793358,1.3723202,2.0548012,2.4404807,2.2310796,2.115664,1.9567841,2.9747849,2.8099346,2.9033127,3.009415,2.9023702,2.8476872,2.6750023,2.4905548,2.4553065,2.4699392,2.6782982,2.403387,3.1417263,3.0602002,3.1567674,3.0112667,2.9090624,2.838361,2.8175611,2.6822958,2.4742587,2.2788916,2.3007557,2.1737282,2.0774379,1.903821,2.0873985,2.1682649,2.4168303,2.4836063,2.3381438,2.3022766,2.6883104,2.4988182,2.6156473,2.583095,2.4128046,2.2594712,2.0583043,2.9623814,2.939075,2.7036214,2.508241,2.4116664,2.3147223,3.0201168,3.067225,3.0375888,2.8684635,3.0032403,2.897651,2.7163138,2.5374947,2.3800955,2.4690223,2.690514,2.8065228,2.7959208,2.582705,2.4388163,2.3063629,2.1656244,2.2337725,2.193448,2.1199813,2.1322994,2.1687117,1.909643,1.9609399,2.0016935,1.8517587,1.7934772,1.782633,1.8882504,1.7110648,1.5231345,1.6333652,1.4863365,1.4954072,1.5282393,1.4483911,1.3466685,1.4795175,1.4775486,1.9561458,1.6353267,1.6031555,1.5979121,1.4751735,1.4703233,1.651622,1.5613034,1.7626598,1.6862376,1.5425805,1.4157681,1.3939232,1.347278,1.507161,1.8593832,1.8540514,1.9861135,1.8903619,1.7333915,1.657065,1.6443839,1.5565279,1.4454904,1.3872377,1.2701259,1.3353188,1.3455694,1.4897301,1.3651955,1.3978497,1.4693155,1.3507845,2.8051357,2.829721,2.7934208,2.852194,2.8441205,2.8315492,2.7816374,2.6753778,2.5714202,2.7491164,2.8569899,2.712201,2.4842038,2.3932168,2.5699635,2.8461618,2.795132,2.615202,2.3827088,2.2244563,2.0765505,1.910188,1.6899836,2.1322231,2.3616748,2.2009964,2.0547047,2.1215491,2.0910957,1.9636605,1.8046296,1.8067305,1.7001729,1.6930404,1.5660579,1.7516394,1.7068217,1.6222733,1.65306,1.620369,1.420335,1.4263794,1.446599,1.2567353,1.3743287,1.5522733,1.5446253,1.5539457,1.51506,1.1925156,1.0262333,1.0556653,0.685717,0.93714637,1.2105145,1.1103853,1.1397393,1.2355797,1.0261908,0.71195346,0.73103213,0.7273203,0.7172269,0.76228243,0.72681576,0.76457965,0.75135565,0.79703027,0.78298825,1.3555205,1.2040002,0.9962158,0.72929895,0.7734817,0.717988,0.67238116,0.6400707,0.6803535,0.67227435,0.63767606,0.6215186,0.6096604,0.6733069,0.6018701,0.8136517,0.70032156,1.1424091,1.6122584,1.4818275,1.530854,1.3758059,1.2417119,1.1365832,1.0457435,0.7845745,0.92582256,0.7584491,0.5719317,1.5928068,1.6675651,1.3320436,1.0603569,1.206851,2.0620854,1.6844275,1.6945391,1.5349627,1.354164,1.7905483,2.2737489,2.4792035,1.9914099,3.1452522,2.9130902,3.0500531,2.8574085,2.8285282,2.8837707,2.8437548,2.7700095,2.6366243,2.4973147,2.568736,2.664612,2.7130203,2.61112,2.406997,2.7296453,2.7622213,2.6137948,2.406264,2.287746,2.2314649,2.2418053,2.3502574,2.2937312,2.282964,2.1509159,2.26327,2.4863238,2.698671,2.6793485,2.757526,2.8223317,2.8126802,2.7090826,2.935304,2.8410523,2.7493668,2.5523965,2.3870606,2.5759306,2.6015487,2.5849762,2.532011,2.5183544,2.4368205,2.875245,2.9093943,2.9898152,2.923746,2.9173737,2.968315,2.9112086,2.8290596,2.7066028,2.831767,2.7675776,2.647375,2.7108552,2.6284542,2.5602362,2.4904406,2.381051,2.6262264,2.6246243,2.4351535,2.4192214,2.4428437,2.4470317,2.6182394,2.4743946,2.2881112,2.3169823,2.3497612,2.4350572,2.8244822,2.7886167,2.63274,2.6095128,2.6115727,2.6308126,2.9861832,2.7411637,2.6844673,2.6125033,2.785459,2.6229854,2.3676553,2.306422,2.2587142,2.7058165,2.519482,2.1643429,1.9794264,2.0540335,2.4551113,2.715794,2.543775,2.4626782,2.5127034,2.712594,2.6015108,2.7777433,2.7050393,2.476086,2.4232671,2.4476285,2.2901406,2.27649,2.2781591,2.200334,2.1176968,1.9731979,2.8987012,2.8607996,2.7111964,2.6725645,2.9468684,3.1271172,2.9958224
+2.8429964,2.947423,2.9019542,2.9400663,2.8148494,2.8455358,2.9005537,2.830192,2.618888,2.8100007,2.9458685,2.8153663,2.8928764,2.8912024,2.9851918,3.0741901,3.0295696,3.1855848,2.933459,2.985555,3.0519636,2.9997044,3.013973,2.9810827,3.0915635,3.0050802,3.053621,3.054696,2.9769907,2.9739928,2.9852433,3.07162,3.0078928,3.0088196,3.0111217,2.9871747,2.9790807,2.9937396,3.0093172,2.9750845,2.9383814,2.9859061,2.994099,3.0015569,2.9952068,2.9341052,2.9087849,3.0107179,3.035879,3.0067768,2.9701812,2.9811382,2.9463499,2.9681745,2.9406743,2.9220665,2.9911902,3.0205116,3.0507383,2.9841375,2.9811215,3.003419,2.9873674,2.9672952,3.0315015,3.013083,3.036225,2.982458,2.9790394,2.9728088,3.024107,3.0081193,2.9971242,3.0671048,2.955328,3.0075407,2.9874904,2.9815536,3.0013208,3.0102673,3.0939937,2.9912138,2.9623752,2.955094,2.9565349,3.0549998,3.0042534,2.9835129,2.952227,2.9765534,3.0088553,2.9695344,2.966963,2.9569116,2.947381,3.0112805,3.0075333,2.9964051,3.0642679,2.9517467,2.969173,3.0132408,2.9935048,3.0165374,3.0131109,2.9726322,2.961404,2.993672,2.9850025,2.9614694,2.9719996,3.0455518,2.989859,2.965655,3.0223727,2.9999132,3.030088,2.9757066,2.9640179,2.9534428,2.9237556,2.9357584,2.9618573,3.0667462,2.9566026,3.0258,2.9949086,2.974578,2.9585812,2.949745,2.971901,3.031776,2.9930377,3.0062919,2.9910436,2.973531,2.9536843,2.956029,2.9473345,2.9566345,2.9720356,3.0181408,2.9702625,2.9388514,2.9545794,3.019759,2.9674406,2.9487066,2.9212012,3.0442488,3.0984058,2.9614182,2.9689393,2.962994,2.976388,3.003639,2.9937727,3.0911353,2.9812143,2.9639883,3.067856,2.9555879,2.971517,2.954953,2.97752,2.9788573,2.9621663,2.9837952,3.017558,2.9992433,2.9761028,2.975315,2.9684138,2.9649448,2.938486,2.958257,2.9599612,3.0335279,3.1299393,3.1242378,2.9538164,2.9746327,2.9714518,2.9809356,2.9800525,2.9789934,3.0173478,3.0165584,2.9767513,3.0271347,2.9472241,2.9199386,2.9940903,2.9921823,3.033954,2.9603314,2.9982464,2.9880753,3.0044289,3.0222921,2.9692543,2.9479814,2.9433117,2.9358237,2.957807,2.9648986,2.939201,2.9914443,3.0093637,2.9660134,2.9823797,2.9828572,2.9385083,2.9809177,2.9686384,2.9621124,2.977644,2.9681902,2.9721766,2.9900475,2.9904985,2.9992483,2.9726064,2.9901066,2.9580266,3.0047283,3.0124073,3.0202613,2.995438,2.97721,2.9455845,3.1710536,3.0949943,2.89186,2.7883017,2.7346747,2.7243438,2.880374,2.8261216,2.8251183,2.7868617,2.7710612,2.7525344,2.8032448,2.8020368,2.7417948,2.7138648,2.6704855,2.8384318,2.7032971,2.556698,2.6300673,2.2805865,2.070322,2.0907137,2.1241913,1.9869945,2.0122807,2.0776355,2.0401435,1.9836769,1.9445679,1.9950235,2.2622075,2.4582355,2.7021723,2.732832,2.6716418,2.514675,2.4678612,2.4350219,2.1359198,2.4884415,2.067787,2.1652293,2.2201548,2.0441368,2.1155295,2.0049014,1.8354477,1.850038,1.9175525,1.8905264,1.9874339,2.0560215,1.992063,1.9507082,1.9744534,1.9850572,2.1097803,2.4669328,2.6182635,2.6907158,2.7886617,2.8777003,2.8643122,2.9255702,2.873899,2.8127518,2.7541518,2.772101,2.6583605,2.6032958,2.4148118,2.0838358,2.4579456,2.3085136,2.0893977,2.0444539,2.069392,2.3770816,2.0092168,1.9711113,2.0047023,1.9734718,2.058089,2.4773927,2.6579866,2.7002397,2.8060532,2.5130987,2.484869,2.790429,2.9950957,2.9354,2.9363446,2.9176712,2.9854748,2.7519288,2.5987298,2.5374088,2.4095664,2.395295,2.6364603,2.6272535,2.503346,2.1165602,2.3750749,2.7440872,3.0591407,2.8856485,2.5426645,2.2872453,2.1508076,2.107313,2.092817,2.2293763,2.3192291,2.4077904,2.6142538,2.7784276,2.9210277,2.8992214,3.1798844,2.8202744,2.5818295,2.6249928,2.8424878,2.7989316,2.8843322,3.0624785,3.067833,3.1017869,3.0723968,3.0099487
+0.90906835,0.6389675,0.72333276,0.7726273,0.20581406,0.5339708,0.65595084,0.41985863,0.24087727,0.59598804,0.77148765,0.597767,0.74728066,0.8321312,0.81635904,0.66482145,0.5775152,0.5466238,0.46155852,0.51325315,0.5299642,0.8002975,0.7677188,0.5190078,0.6965509,1.0154685,0.9460676,0.947693,1.2085464,1.3441045,1.2750624,1.0759597,0.90142375,1.0165033,0.8043556,0.52325565,0.64183235,0.6019285,0.5351613,0.527033,0.8895466,0.8706679,1.0490752,1.1222783,0.9807146,0.8389212,0.9631165,0.8071542,0.6853468,0.5339648,0.50093377,0.37805295,0.17106807,0.20350233,0.32547587,0.84347844,0.77557814,0.98815084,0.92504764,0.8628093,0.7946636,1.0746617,1.0347705,0.78897035,1.275212,1.1934232,1.2216662,1.2367742,1.0072333,0.7155329,0.82942647,0.74778324,0.82715744,1.506628,1.2206491,1.3458302,1.264118,0.9048947,0.6777817,0.48527652,0.4833073,0.5062098,0.38284916,0.4289128,0.3993564,0.14010128,0.30771872,0.35748613,0.3837918,0.16392773,0.2902208,0.673432,0.37787664,0.24032909,0.10966035,-0.06739896,0.9760575,0.91219705,0.58739763,0.5398899,0.32958385,0.29027566,0.5476589,0.46065718,0.27663282,0.3850271,0.3207587,0.5861895,0.42373824,0.21355236,0.0370299,0.14258522,0.16136631,0.17558172,0.5829387,0.49018562,0.24550584,0.13189389,0.5172406,0.579556,0.27177137,0.0623274,0.048029818,-0.09433431,-0.15839684,0.029436834,0.45472503,0.2925121,0.14977023,0.037955143,-0.11525812,-0.16968745,0.82909524,0.68889767,0.5501984,0.46935007,0.37309054,0.16399926,0.4115979,0.30606797,0.78335524,1.12363,0.9688883,0.6737925,0.47974887,0.67809093,0.683548,0.51128644,0.3679703,0.38119948,0.21633759,0.20733427,0.42058325,0.28619143,0.15871339,0.07456613,-0.07430033,0.03532339,0.5494049,0.7294314,0.65490717,0.56233335,0.6328261,0.5988698,0.44978905,0.4125356,0.5292477,0.3547673,0.4335409,0.60163265,0.51085174,0.38407403,0.4481839,0.6798499,1.03617,1.0358752,0.8667253,0.72887266,0.89753604,0.86976004,0.768818,0.808532,0.81460667,0.6561725,0.5492517,0.55790645,0.48322034,0.40337336,0.71291846,0.8961751,1.0904459,0.93467504,0.7494012,0.62696075,0.7166859,0.8961913,0.77369344,0.5704084,0.6892917,0.37693995,0.80268985,0.9883926,1.0749439,0.9751382,0.8041295,0.85728884,0.91904485,0.8512952,0.7685183,1.0651925,0.9564575,0.8637115,0.8849175,0.97184384,0.9382243,1.0242239,0.93859226,0.89879775,0.8755649,0.8533367,0.8740053,0.88975537,0.950372,0.8889144,0.9375476,0.87875116,0.8018353,0.7764603,0.71107614,0.7078559,0.6719285,0.5329727,0.73272747,0.33178785,0.12613657,-0.020168163,0.1974296,0.56331825,0.57513803,0.69300437,0.6492896,0.6313843,0.93944377,0.95591134,0.8404233,0.8462888,0.56667674,0.24377099,0.3405281,0.29605022,-0.084749795,-0.15727782,-0.23615009,-0.31843734,-0.19788885,0.012746491,-0.066249706,-0.048302807,0.038435213,0.024634667,0.08971668,0.35951772,0.22393033,0.052935235,0.022528835,0.021805413,-0.048331283,0.15315753,0.08036152,0.38044968,0.3210467,0.15272793,0.08993951,0.0785628,0.1196334,0.10576119,0.06573776,0.21298078,0.13659844,0.13935173,0.18904671,0.18661153,0.33701956,0.109105416,0.2530257,0.44589946,0.41225216,0.47686952,0.38662377,0.35274845,0.24374959,0.45442355,0.41936585,0.29975402,0.45080078,0.62348026,0.88619554,0.9195945,0.8178246,0.4645638,0.68825114,0.39514935,0.23007756,0.17500713,0.06854517,0.31577924,0.26596504,0.27194798,0.3167814,0.23319736,0.21883035,0.23377874,0.32933173,0.2787658,0.30556485,0.17840475,0.39465874,0.4877805,0.37703478,0.47093225,0.37179905,0.27154493,0.40495914,0.73678887,1.0154756,1.084328,1.3226157,1.3825004,1.4812415,1.0260227,0.81567025,0.5152368,0.40932834,0.67876315,0.6173682,0.43612844,0.2028172,0.23569012,0.78569126,1.1374097,1.5580711,1.1734133,0.7032679,0.22279075,-0.07873558,-0.21265653,-0.20255673,-0.028358854,-0.016228363,0.079482675,0.51692754,0.7204088,0.84597623,0.84681314,0.8506821,0.36972687,0.70437396,0.5915585,0.9037782,0.71358126,0.68881464,1.0161219,0.9544183,0.71613073,0.92491937
+1.0697439,0.407931,0.36617583,0.6701851,-0.18072072,0.23510903,0.47022742,0.15228936,-0.3222648,-0.08262356,0.3665847,-0.018757291,0.06753211,0.121161275,0.060456686,-0.028771177,-0.07805636,-0.116331644,-0.098268546,0.5155487,0.61752397,0.67110723,0.42826092,0.18117884,0.21975666,0.22478527,0.44074953,0.6897055,0.6776881,0.87666994,1.1284984,1.1015968,0.8196493,0.6538546,0.3728355,0.13835979,0.060992315,-0.04959493,-0.12233811,0.93825907,0.81785035,0.78389907,0.93926126,1.0864937,0.4196735,0.26567206,0.16109979,0.029075392,-0.11109062,-0.21004069,-0.26512396,-0.35752338,-0.49757123,-0.13899276,-0.15508074,1.158776,0.9618297,1.1922382,1.4410826,0.7220986,1.130316,1.9202023,1.2352488,0.59940064,2.032182,2.167543,1.346175,0.92409164,0.32999676,0.84464383,0.9558401,1.3446617,1.9856007,1.6719458,1.7662915,3.0111609,2.4909034,1.7449019,1.0827832,0.5640207,0.08566204,0.00092143565,0.029744528,0.7299789,0.3400861,-0.10411025,1.1751547,0.817509,0.28997132,0.038447283,0.19683772,0.39491826,-0.05906426,-0.18846178,-0.3329442,-0.52026284,1.275894,1.9314113,1.64913,0.9844613,1.0217781,1.4232193,1.7494792,1.3295591,0.5826143,0.3801653,0.03758063,2.3043613,1.732299,1.268409,1.445991,1.0521389,0.65537345,2.5417724,2.1189103,1.6501913,1.0250723,0.5092852,0.3943329,1.491292,1.1375227,0.81272316,0.42837328,0.44844982,0.25300506,0.7337848,1.9081817,1.5434458,0.84342134,0.74733627,0.3455528,0.06676442,0.9707929,1.4934242,1.7447494,1.2667193,0.75683486,0.3814294,0.92352945,0.8981334,1.0407513,2.0467482,1.6139925,1.1422887,0.84933424,2.8128831,2.2857056,1.8541238,2.015709,1.3678417,1.0374798,0.8272608,0.69623417,0.48078454,0.2955224,0.10575016,-0.011215232,-0.16924587,0.018606268,1.9999511,1.5178611,2.5085588,2.5025458,2.1029427,1.5379615,1.9076598,1.7799467,1.3219705,2.4521513,2.1079488,1.6113472,1.07444,0.95793873,0.68343264,2.6087694,2.2440124,1.9763854,1.9516991,1.9394205,1.3127465,1.164527,0.7650615,0.6669681,0.59550774,0.51315945,0.404215,0.36350375,0.27957463,0.25503898,0.37275192,0.37280473,0.30697063,0.1179204,0.11080319,0.37170675,0.5277126,0.43118703,0.24259725,0.14399959,0.049730532,0.19323972,0.2066969,0.26489896,0.10325055,-0.007323429,-0.031939827,0.06543329,-0.089649,1.4321404,1.1549023,0.9717892,0.7815273,0.980965,0.8109252,0.58427966,0.7365129,0.5381417,0.42528456,0.41372305,0.3534072,0.3653409,0.28635532,0.26284522,0.25014788,0.23487177,0.03064435,0.09202498,0.123342484,0.064043,0.031768106,0.100120015,0.10971823,0.09005287,-0.3042715,-0.40649176,-0.45266223,0.086465724,0.26953426,0.31039396,0.2483513,0.24191543,0.60768026,0.8147416,0.6022496,0.40091914,0.1744262,-0.1684424,0.017208993,0.09714601,-0.1862669,-0.6948572,-0.77254987,-0.7706029,-0.7291924,-0.48458344,-0.66299903,-0.67507404,-0.6664397,-0.578684,-0.55931,-0.3691165,-0.33635238,-0.45436954,-0.55424196,-0.46133882,-0.4606312,-0.366876,-0.18491027,-0.13789275,0.08021545,-0.43088824,-0.41618407,-0.40797782,-0.5019869,-0.43758518,-0.48941743,-0.22894877,-0.09761145,-0.4716035,-0.48631942,-0.49072814,-0.45714998,-0.4033218,-0.47375184,-0.045316987,-0.2832359,-0.39850914,-0.35866693,-0.3639065,-0.36618835,-0.16224712,0.19243899,-0.21027514,0.02551727,0.45388725,0.7052663,0.5714486,0.5969493,0.30554116,0.6897462,0.61299944,-0.1980691,-0.35031655,-0.4298905,-0.46173024,-0.021727897,-0.2637699,-0.47839946,-0.48673117,-0.4987206,-0.4718125,-0.42580593,-0.11683714,-0.4557035,-0.46903086,-0.42981523,0.20350054,0.30972442,-0.25739253,-0.06432415,-0.29501635,-0.2695349,0.23130187,0.8399267,0.9186583,1.3507564,1.0736182,1.1885982,1.11963,0.8380804,0.13457131,-0.27985412,-0.2873091,0.60519123,0.56446594,-0.32919124,-0.5349505,-0.41732603,0.4475401,0.9458748,1.176074,0.46686965,0.07057583,-0.36941725,-0.5689142,-0.66895336,-0.51120883,-0.67485857,-0.70185506,-0.6891049,-0.21931517,0.110353254,-0.051845692,0.542588,0.51098675,-0.16656992,-0.13001317,0.19793427,0.4381749,0.66984385,0.8216238,0.9053666,0.75489527,0.91553366,1.0431899
+0.931162,0.6963054,0.56085813,0.8425371,0.38756886,0.96032524,1.2315462,1.1353635,0.3319203,0.54025215,0.72077215,0.43854153,0.38732648,0.37901837,0.29102677,0.15249115,0.089998074,0.025212504,0.08316178,0.37258184,0.6309826,0.66122067,0.46904904,0.27591017,0.10106873,0.12226965,0.21387991,0.7098633,1.0553486,0.9141052,1.3981674,1.5840452,1.2010347,0.9102651,0.62304693,0.39915928,0.2945881,0.28319064,0.70045066,1.5403295,1.4397197,1.2260554,1.0873052,1.2871933,0.76623696,0.49732617,0.36303014,0.2239435,0.1327289,0.05683344,-0.0007515028,-0.100181706,-0.19755837,-0.17878473,-0.18935174,0.35000113,0.34017548,1.1511846,1.414599,0.6615514,0.29104847,0.8793385,0.49933967,0.113334574,0.54793423,0.5780503,0.06722107,-0.06670537,-0.1606437,-0.3011102,-0.42534238,0.044551276,-0.079865105,-0.17327288,-0.20642158,0.8681946,0.42779136,0.11245523,-0.034852766,-0.16057783,-0.30785415,-0.1294944,0.663773,0.91244376,0.46010613,0.12477092,0.89185834,0.6995393,0.23612335,0.08619625,1.3944503,1.7547944,0.80283463,0.52015746,0.18455297,0.009683363,0.3082693,0.8389374,0.6129739,0.2529261,0.44662967,0.860057,1.2643645,1.4326897,1.3376606,0.7351425,0.3342406,0.44207045,1.2653611,1.0764221,1.2417169,0.6757235,1.1031731,0.9296553,0.603876,0.4182628,0.21658841,0.06887921,0.0018470511,0.22062528,0.35322565,0.12154771,-0.13777202,-0.031594403,0.10185779,-0.060504146,1.420048,1.1771276,0.6704011,0.62453276,0.29744872,0.10404677,0.3548801,2.1138248,1.9350647,1.4377065,0.9708054,0.6465703,0.6345906,0.50549656,0.330013,0.6200906,0.9018416,0.50531733,0.2897099,0.2301015,0.94758075,0.99225986,1.1787832,1.0017637,1.1268529,1.1911943,1.1427454,0.97605455,0.76834226,0.58313566,0.39804706,0.24004614,0.020913683,0.35563594,1.2252421,1.1148638,1.5393422,1.1987356,0.84268856,0.6882972,0.87814814,0.7746414,0.9755697,1.1251693,0.925209,0.61439407,0.4909923,0.3133724,0.24071264,1.1830692,1.2184156,1.0220159,1.1268835,0.8673274,0.85320747,0.6889818,0.5738719,0.5060288,0.58350754,0.5548377,0.4825471,0.29280907,0.33077493,0.4303165,0.53333116,0.39451984,0.29158095,0.41779023,0.6066442,0.74295104,0.5965428,0.38831428,0.25511366,0.4524705,0.50567293,0.6074947,0.6163819,0.4848018,0.36495525,0.26648152,0.32743704,0.3319688,0.7640426,0.98084974,0.9655672,0.7150541,0.8415736,0.7802528,0.61609435,0.61648816,0.8819782,0.8536662,0.8432784,0.772722,0.70525885,0.6378679,0.599522,0.6143646,0.53772706,0.4850454,0.47807914,0.42339814,0.35875514,0.3203615,0.40605247,0.44400567,0.38820973,-0.00928089,-0.13293418,-0.15536544,0.24105138,0.36424023,0.39553735,0.39812347,0.3784718,0.5571493,0.95989,0.9272995,0.8274414,0.80713296,0.6869024,0.5041968,0.74821466,0.655457,-0.1813358,-0.5078056,-0.6164287,-0.5664547,-0.34654015,-0.5541588,-0.66333866,-0.7307996,-0.7152909,-0.66202223,-0.6149169,-0.7068722,-0.6890601,-0.6927724,-0.5560772,-0.49328744,-0.42128223,-0.21134818,-0.20693618,0.657943,-0.21832916,-0.26704723,-0.24295655,-0.4459632,-0.3686601,-0.4074502,-0.14792037,0.22181225,-0.51371276,-0.6120472,-0.6215656,-0.5942901,-0.5175364,-0.52040297,-0.12079296,-0.11534815,-0.3839226,-0.46197218,-0.412785,-0.39083588,0.07282204,0.30857694,0.05669052,0.51934344,0.9872693,1.090745,1.1571116,1.0440531,0.7803141,0.7337242,0.55461866,0.003312789,-0.29655975,-0.3541558,-0.4430375,0.07897376,0.13672662,-0.50050396,-0.62399846,-0.6424538,-0.41879582,-0.19651288,0.6215383,-0.34045613,-0.6008012,-0.48906314,0.5563446,0.83327603,0.2660407,0.4235062,0.16145408,-0.0018106624,0.77634066,1.005924,0.94042665,0.56177235,0.7341892,0.7890167,0.7374798,0.59163105,0.01447884,-0.1900081,0.052402116,0.32615876,0.51875657,0.12133049,-0.23267564,-0.12071999,0.37371874,0.3830142,0.82037365,0.6515174,0.4810774,0.12244166,-0.28012982,-0.46619153,-0.39826107,-0.5705468,-0.6972616,-0.58810616,0.041344874,0.35862523,0.21311101,0.48383638,0.57373035,0.09036917,0.08285373,0.21485284,0.4738611,0.63266134,0.79584193,0.82810134,0.5873783,0.9801866,1.1211376
+1.4737146,1.8136183,1.6771611,1.4663863,1.4706526,1.5006896,1.9135203,1.8961009,1.6699659,1.5314006,1.9256889,1.7808719,1.5158635,1.3098426,1.0294759,0.84238696,0.7824758,0.6268053,1.1430289,1.447771,1.9042832,2.0947986,1.7574147,1.4439623,1.1813648,1.9103937,2.310636,2.8193412,2.658318,2.7732925,2.7440267,2.5773425,2.4554853,2.178297,1.935184,1.5164381,1.5809035,2.0391335,2.7442446,2.860925,2.7402158,2.713663,2.8260946,2.8017108,2.3741195,1.9607143,2.4561827,2.4733124,2.1739078,1.804074,2.0630982,1.5934553,1.3010849,1.0206195,0.7432323,1.1999446,1.788384,2.847581,2.5106642,1.9100208,1.4103744,1.2817552,0.8635566,0.5596175,1.2063777,1.289664,0.62438565,0.46407026,0.25564134,0.051471837,-0.07935577,-0.08842606,-0.17548549,-0.21966127,-0.318492,0.2639138,0.1255675,0.06391301,-0.008436285,-0.1471299,-0.28225562,0.6773019,0.78084487,0.56405854,0.41515577,0.07510223,-0.0063813925,-0.05670502,-0.120368786,-0.21181044,-0.036690257,0.89508176,0.6067822,1.5098599,1.5403609,1.3444834,1.059914,2.0308225,1.8062079,1.3126475,1.104285,1.0441312,2.0291607,2.050342,1.717639,1.3190149,1.0122713,0.5742151,0.3208477,1.7047266,2.0094118,1.4537575,2.033793,1.6738567,1.0533644,1.3364577,1.1380519,0.690079,0.6187028,0.4611656,0.32863766,0.14621532,0.029611923,1.8786231,1.6182194,1.2397268,2.4941728,2.1161497,1.4065022,1.278857,0.9828564,0.7127136,0.53167546,1.6092021,1.8702841,1.3298607,0.9606385,0.8548994,0.625003,0.4337088,0.2888005,1.2384888,1.3619314,0.8179903,0.5286389,0.7162342,1.9081402,2.1199534,2.0096707,1.773385,1.6378719,1.5039725,1.8442872,1.767067,1.5163796,1.1537416,0.8128091,0.5889812,0.32565036,0.37332398,1.5702238,1.4065076,2.3287754,2.100154,1.7351818,1.4311144,1.6066403,1.4632628,1.3725822,1.7009213,1.3987656,1.0115136,0.7301797,0.5354693,0.44514167,0.37715504,0.30086902,0.13383725,0.23611969,0.10689946,0.037181042,-0.051028006,-0.15406227,-0.3578692,-0.32613456,-0.32653934,-0.28314352,0.0154268965,1.0902249,1.6854196,1.7283638,1.4197705,1.2430942,1.0420461,1.0255679,1.5206723,1.2314031,0.96598154,0.82664704,0.71791404,0.65726215,0.5859352,0.46465448,0.39682767,0.24300659,0.10172163,0.15676627,0.06490216,0.026265927,0.6522192,0.5426813,0.40886962,0.48560524,0.36411676,0.23700604,0.5463766,1.0890547,1.0723741,1.005003,0.93905437,0.79943824,0.73914796,1.1009263,1.0802062,0.92593217,0.89736044,0.8816118,0.7146765,0.71308804,0.619206,0.62478626,0.6731683,0.6697372,0.30790243,0.14919645,0.19960561,0.23004097,0.43961054,0.44185397,0.51827353,0.5570549,0.8487859,1.2944279,1.1549753,1.0170629,0.94784343,0.8924942,0.9806101,1.3047686,1.264558,0.7303222,0.15308383,-0.088537104,-0.13081837,0.107795306,0.14762318,0.021504782,-0.18845183,-0.21753928,-0.29944924,-0.031983532,-0.13899034,-0.0024302378,-0.026184864,-0.007817499,0.24606943,0.21680751,0.86667234,0.78098947,1.3960822,1.5320876,1.2672873,1.2698753,0.7023792,0.7445754,0.5659681,0.93226993,1.0229897,0.10987569,-0.23508948,-0.2952548,-0.16746843,-0.05212591,-0.116009034,0.3813812,0.9715571,0.9005901,0.1701104,0.01921343,0.16319159,0.659481,1.4050744,1.6939771,1.6518037,1.958225,2.2004182,2.2532697,2.2162542,2.1556835,2.0538812,2.1112761,1.6859524,1.4333652,1.4474571,1.1461085,1.4569192,1.3808852,0.80932236,0.35437074,0.056414433,0.5222155,0.99196434,1.0965086,0.94258285,0.23082411,0.19780399,1.0834368,1.264157,1.0080291,1.144328,1.1428757,0.95666754,1.1799599,1.0932734,0.971385,0.7887591,0.8638896,0.8680364,0.9295753,0.77788484,0.72965103,0.3433838,0.6569537,0.63926125,0.96967125,0.94192827,0.54352665,0.6532109,0.83602273,0.65978277,1.5448468,1.7039728,1.4187576,1.1740663,0.51074165,0.39242303,0.42362142,0.28608102,-0.00504639,0.23816347,0.69011724,0.77593493,0.47437876,0.5437612,0.7315706,0.60110176,0.3850829,0.6192271,1.5743126,1.6667163,1.8092458,1.9852417,2.0864568,2.5371006,2.561038
+1.6545959,2.1296382,2.085491,1.8212247,1.8206732,1.4565802,1.8417027,1.964615,1.9087417,1.3795831,1.6914781,2.3314333,2.0848353,1.8727555,1.6169925,1.5450094,1.4287007,1.2188699,1.2425802,1.5299551,1.6467791,1.6952102,1.4587538,1.2349559,1.0437412,1.3555777,2.0617654,2.205527,1.9325318,2.2606592,2.3814638,2.1885889,2.2744741,2.1764183,1.9611534,1.4705889,1.0927081,0.8549344,0.6775775,1.144015,1.0034293,1.0644401,1.0197119,1.0157349,0.92402494,0.83752584,1.9603446,2.2043686,1.8680873,1.4080347,1.7232364,1.3584236,0.98743,0.9133065,1.5165532,1.3509161,2.6154885,2.6150908,2.3076708,1.9516435,1.5683696,1.5148358,1.6161819,1.0782797,1.2432895,1.1143162,0.8202456,0.67161095,0.4971138,0.3289388,0.25746045,0.28583285,0.2360523,0.19044334,0.12394392,0.20104483,0.19698864,0.17979869,0.19395307,0.01987829,-0.05170078,0.9078723,0.9486898,0.76076305,0.6450529,0.31251594,0.7376764,1.0545216,0.7959734,0.6024745,0.5011583,0.8661289,1.0046364,2.4031181,1.9971776,1.9341216,1.782805,2.1014261,2.3742723,2.1529894,1.7376341,1.4959574,1.489517,2.1080778,2.2096057,1.9359274,1.8395576,1.7199725,1.4531908,1.2100866,0.98980904,0.8966315,0.98461956,1.2200747,0.9215185,1.8894988,1.8777267,1.3678105,1.1706233,1.0964797,0.8575841,0.67652893,2.0909364,2.3677378,2.2266474,2.0879695,1.9950173,1.9597316,1.6314542,1.386831,1.2522519,1.5184443,1.7852291,1.7064443,2.1443906,1.9126478,1.6759311,1.6127319,1.3908205,1.1728425,1.0078995,1.2198048,1.4776926,1.0569279,0.7426288,0.9134035,0.8175308,0.7873105,0.61106914,0.63324857,0.5618145,0.61135644,1.0658064,1.2462682,1.0602112,0.7983371,0.5307301,0.41634685,0.26812553,0.28591517,1.4187005,2.0224159,2.6604304,2.356082,2.0353825,1.7631302,1.6813401,1.765831,1.9825524,2.1887794,2.0520287,1.8339947,1.6129346,1.4389858,1.2805929,1.0544164,0.9225831,0.80294645,0.8956327,0.7854525,0.59828496,0.48816037,0.31030318,0.13583857,0.10964414,0.14845064,0.2333433,0.35285464,0.81261134,1.0642221,1.092115,0.7597861,0.56452835,0.47218376,0.25889862,0.4814415,0.18728235,0.0312502,0.049869858,0.06690618,0.09211124,0.4695074,1.3532974,1.4565563,1.28124,1.08811,1.1638076,0.996256,0.80066574,0.8649901,0.7506495,0.6169532,0.54344577,0.43703493,0.3283966,0.24299327,0.93449473,1.5414845,1.448009,1.3705503,1.2624239,1.0786735,1.5008099,1.4596757,1.391968,1.4056144,1.3532801,1.1607616,1.2210481,1.1346288,1.1757929,1.1814828,1.3467743,1.0538659,0.93364143,0.7519808,0.89364064,1.2344731,1.2308764,1.265902,1.1266762,1.0716565,1.3335192,1.2467656,1.1528168,1.1985381,1.0509982,1.0240686,1.6402493,1.6961536,1.5709327,1.48033,1.3038914,1.1120548,1.0966125,1.4146172,1.4179424,1.1738974,1.056089,0.82092315,1.1864727,1.0223495,0.8576125,0.892416,1.1767818,1.4119732,1.0142298,1.3790162,1.354234,1.3519514,2.0946581,1.8803189,1.9774863,1.877105,1.8251791,1.7419752,1.2156754,1.3402071,1.4649677,1.0548452,0.9246666,0.9321268,0.9228854,0.93776065,1.463829,1.5144414,1.5437264,1.3455875,0.9770131,0.90638584,1.0075337,1.2394536,1.7038147,1.3252093,1.6343336,1.958301,1.7685997,2.028366,2.0606964,2.0369465,1.9972527,1.9388627,1.9028089,1.7118213,1.7585349,1.7774401,1.7055737,1.6001048,1.3782141,1.1463785,1.5684073,1.3835816,1.4426947,1.7465515,1.3089681,1.4212278,1.3750846,1.5818048,1.5789207,1.4095827,1.575172,1.4197206,1.460931,1.3117076,1.247778,1.2369437,1.2376313,1.4728608,1.6087987,1.4936469,1.6348765,1.397809,1.322304,1.2337062,1.8036687,2.1432893,2.0299034,1.9421642,1.7510204,1.616636,2.0975554,2.271108,1.8191516,2.2394352,1.7980976,1.7662741,1.4076076,1.7173574,1.6249707,1.6762114,1.5451943,1.7757037,1.3146615,1.2180805,1.3353492,1.4680839,1.2445824,0.97383547,1.4337947,1.8972282,1.9743292,2.0201035,2.025329,2.2844408,2.442361
+1.4828396,1.6899785,1.6082312,1.223845,1.2412024,0.96694267,1.2303563,1.6451344,1.5421468,0.87256867,1.4291148,1.6427238,1.5514233,1.252511,1.1069365,1.0219761,0.87559,0.8912209,0.749033,0.7947864,0.9576154,1.1019351,0.97604525,0.85540485,0.71348,0.6236025,0.84108067,1.1805723,1.0233938,1.248246,1.1130748,1.2531002,1.2514135,1.3965482,1.4676462,1.1580012,0.9151621,0.6927796,0.51384485,0.94612396,0.7276062,1.2825692,1.1784091,1.2072176,1.191102,1.1705178,1.7493349,1.2029902,1.1302968,1.081402,1.1086845,1.0975626,0.9993262,0.8437562,0.85138595,0.77978003,1.0512334,0.9505438,1.0124773,0.88747656,0.8165984,0.83011293,1.0789678,0.79752326,0.88322085,1.0616918,1.0444945,0.9801839,0.82637084,0.60745436,0.5354509,0.4848773,0.51747394,0.6732565,0.58462924,0.6180922,0.6179445,0.58807623,0.61186767,0.4431743,0.40341118,0.39354134,0.3374551,0.35472375,0.84431636,0.6034222,0.6383762,0.6988308,0.7408568,0.6674228,0.49430478,0.7534517,0.69292104,0.6931265,1.3342515,0.7672752,0.80908024,0.72347206,0.8166964,0.86255634,0.76678866,0.7528316,0.671725,0.66385114,0.7138753,0.75831866,0.7147968,0.5389089,0.5246335,0.4789514,0.4157847,0.4096716,0.40900877,0.34763938,0.3328594,0.5754152,0.7383504,0.66803515,0.75560486,0.7493643,0.7793313,0.56921405,0.68814546,0.6906733,0.7311163,0.71227884,0.71364105,0.8814993,0.76208556,0.6692492,0.6784715,0.62306845,0.64116716,0.5868615,0.86195636,0.78605527,0.79776156,0.8420535,0.8232064,0.773123,0.70652115,0.7473867,0.8445786,0.63120574,0.47951722,0.5173382,0.52329755,0.48182702,0.58386755,0.5760994,0.52239776,0.46825826,0.5426922,0.65921456,0.61944854,0.4750037,0.37740958,0.25901565,0.21367824,0.20909745,0.2880937,0.5628773,0.80765295,0.83003116,0.64395726,0.51631635,0.4265648,0.3939222,0.60239804,0.8647964,0.7731561,0.8092147,0.77873003,0.71558315,0.67260957,0.5875972,0.48422298,0.45819542,0.98053825,0.9694744,0.8252923,0.7638605,0.59860605,0.444123,0.37912112,0.3350723,0.28767332,0.30717364,0.4682815,0.5686,0.69556856,0.4916336,0.3799637,0.25968572,0.45657694,0.941787,0.83566004,0.6835319,0.6548737,0.63253576,0.5837574,0.7656034,1.0681496,1.1733,1.1599102,1.0525142,0.85370666,0.7568555,0.6496822,0.6110283,0.5340558,0.5072685,0.4599902,0.38941675,0.39498872,0.33928636,0.44105613,0.7497189,0.8155619,0.6896287,0.6002264,0.48474583,0.71452487,0.8480987,0.7490575,0.87046576,0.86041796,0.7530304,0.6963166,0.71632934,0.65519875,0.571701,1.124433,1.0692493,0.9373157,0.6818466,0.50966823,0.8031155,0.9194945,1.0700265,0.9452459,0.751364,1.1403759,1.3268554,1.3153113,1.2176335,1.0094784,0.6758125,0.98713887,0.89990246,1.1816947,1.3508381,1.1927731,0.99299407,0.92692727,0.8991009,0.8773777,1.1929113,1.0313332,0.8600331,0.67144984,1.0057579,0.86830306,0.80341816,1.052927,1.0956254,0.46917087,0.5875992,0.8211241,1.1208987,1.6001637,1.4711792,1.6990212,1.7298009,1.5807787,1.3681221,0.76708573,1.0033058,1.5397224,1.1042094,1.0733355,0.9570633,0.82017386,0.8041132,1.054238,1.075296,1.0975716,1.4648001,1.3634036,1.1388154,0.9372395,1.3035846,1.5121073,1.1067492,1.3859825,1.696823,1.5492513,1.4814656,1.5791223,1.6436586,1.8917755,1.8897883,1.9501517,1.7139732,1.6589732,1.6340733,1.5693822,1.5807326,1.6368254,1.4244254,1.3170307,1.025191,1.2758684,1.4759068,1.4940473,1.4974456,1.2062218,1.3526157,1.4765255,0.95398325,1.3780652,1.5087575,1.4617733,1.0809683,1.1333995,1.2178385,1.3907356,1.1854885,1.4552433,1.6036257,2.0446668,1.6665269,1.1533742,1.1086664,1.4634305,1.9116428,1.8521066,1.8065914,1.5865928,1.3520555,1.7122295,2.0275662,1.5705438,1.6339889,1.3650801,1.5552444,1.1838439,1.4317648,1.6719007,1.4626298,1.2967172,1.6611907,1.5353446,1.3032382,1.1707186,1.1735277,1.2080145,1.3582394,1.6076084,1.5314,1.5636458,1.2440109,1.20265,1.6541649,1.5140247
+1.3703318,1.6966395,1.6271279,1.3737605,1.3819349,0.9845994,1.1590271,1.4787531,1.206828,0.51436937,0.88440675,1.3788197,1.0500333,0.9798493,0.7543629,0.6360002,0.5523082,0.5160056,0.45384246,0.658077,0.8256791,0.89520353,0.7818093,0.6129575,0.47231227,0.4419644,0.7238936,1.3619685,1.5366892,2.0851305,2.1649575,1.8346264,1.9360524,1.8844278,1.8946235,1.5877589,1.1644995,0.9771916,0.89798,2.4274607,1.8411585,2.220852,2.2682323,2.073769,1.9953954,1.441916,1.8561358,2.0297,1.7778984,1.8161488,1.6622335,1.6907992,1.4599898,1.7274878,2.0435944,1.7488065,1.9167782,1.9273463,1.7917098,1.6079249,1.8627924,1.6281022,1.589413,1.996821,2.2516117,2.0365603,1.9849539,1.774891,1.6710782,1.3278117,1.2082124,1.0452356,1.2361767,1.3460498,1.1238589,1.0662956,1.0833579,1.1076813,1.3482094,0.88462675,0.8023672,0.82130516,0.73951906,0.71863914,0.87400955,0.78436524,0.6699872,1.5181386,1.7933753,1.4342531,1.1644427,2.0861137,1.6027814,1.2028513,1.3765669,1.3284488,1.1198126,1.1008556,1.1224649,1.5472323,1.3190403,1.116761,0.93064404,0.8350519,1.4570644,1.347583,1.0923053,0.93090975,0.87185335,0.7764348,0.72964203,0.6772139,0.6642208,0.689248,0.68141156,0.6289531,0.9337785,1.148941,0.94057846,1.3805898,1.5006123,1.4075508,1.5566475,1.2230122,0.9953702,0.9284042,0.8562149,1.5403813,1.9283972,1.7404833,1.3871701,1.1196456,1.0319824,0.9459363,1.1849461,1.9013011,2.3748,2.029766,1.7613306,1.6939971,1.5987809,1.838747,2.0027368,1.7629789,1.2873871,1.1264565,1.0999218,0.97163665,0.9780015,1.0098314,1.0940188,0.9958783,0.9358227,0.95001245,1.0818434,0.9275657,0.78362757,0.5098333,0.4892292,0.58179903,0.5380945,0.5662389,0.640201,0.88940066,0.6191981,0.41068172,0.79715985,0.8887107,0.7683078,1.8421692,1.4593434,1.3470298,1.1827912,1.0725833,0.986347,0.82833326,0.7126872,0.6447167,0.67918503,0.7334708,0.5397853,0.656747,0.3347802,0.13369213,0.14570874,0.2386702,0.26342958,0.21628337,0.5065633,0.5201112,0.77292687,0.53714746,0.2713773,0.25555488,0.1481117,1.3729753,1.3401577,1.0419515,0.8605803,0.8544543,0.7907893,0.65285665,0.8185625,1.2900885,1.0003178,0.8128998,0.7118401,0.62328184,0.50370693,0.4226042,0.45236576,0.37250102,0.35868984,0.37359983,0.33298612,0.31730646,0.25754672,0.43104422,0.45851558,0.3403202,0.15811715,0.18292746,0.38476816,0.47929204,0.3882422,0.5926789,0.5748183,0.3480422,0.26353306,0.39856553,0.3488561,0.77139896,2.0077338,1.573345,1.2563344,0.9833569,2.0214317,1.7439623,1.7066833,1.7563093,1.6466744,1.7176044,1.8402824,2.103807,2.2513194,1.9133809,1.5858896,1.4750947,1.5714622,1.7338355,1.8861275,1.9248658,1.6739366,1.3866482,1.2221149,1.4363194,1.5701728,1.795978,1.6684335,1.2430434,1.1353045,1.9689059,1.5453801,1.4006174,1.4812607,1.6164248,1.1826344,1.3510458,1.4861734,1.4317548,2.2106285,1.876354,2.0934117,2.0882535,1.5851822,1.6497958,1.6135795,1.7288306,2.3298337,1.6425464,1.3960639,1.3866674,1.2739016,1.1963867,1.1787305,1.5146782,1.5993589,2.0778337,1.8752313,1.6429765,1.6730416,1.8590343,2.0821078,1.6921637,1.765398,2.018754,2.065073,2.1992025,1.8797736,1.8934815,2.310297,2.1760821,2.1406782,1.9048042,1.9305393,1.924797,1.8443723,1.7877243,1.4887576,1.2134697,1.0235524,1.1885275,1.4187088,1.9182911,2.2136362,1.5863307,1.4982586,1.7798824,1.9555148,1.7350008,1.8214502,2.058723,1.9148357,1.7922953,1.7680261,1.6333255,1.889675,1.7352631,1.7317585,1.86977,2.5059752,1.7010219,1.2487414,1.2868427,1.6814706,2.1288452,1.8162172,1.6096437,1.3446617,1.1703994,1.976097,2.2430298,1.7571795,2.027567,1.8492548,1.703639,1.565922,1.9376154,1.848263,1.5053763,1.5054173,1.8553393,1.8119454,1.5891757,1.5739179,2.0382533,1.3765416,1.3538097,2.1134405,1.9428357,2.2458613,2.0879638,1.8529445,1.8895564,2.1830854
+1.7468867,2.4135535,2.423561,2.215105,2.099415,1.7882309,1.831779,1.7818487,1.5689468,0.98088086,2.1067073,3.007628,2.7448702,2.687128,2.6394844,2.5695229,2.586408,2.3001208,2.399166,2.819362,2.7949307,2.667107,2.4583216,2.0663571,1.6640918,1.3905628,1.2696624,1.6691601,2.9194038,3.2245185,3.1261954,3.0563407,3.0448556,2.9572728,2.8449025,2.6628745,2.2206101,1.6957452,1.4086126,2.57332,2.7404032,2.6082697,2.5225286,2.0964746,1.7920208,1.2482378,1.7299266,1.616706,1.4112778,1.419713,1.5737371,1.4294679,1.1820464,0.9318866,0.9122676,1.4102641,1.4371675,1.7605963,1.5876191,1.6334779,2.5336447,2.9282656,2.9756866,2.9487894,3.0718946,3.07074,2.9186325,2.7214527,2.470324,2.0055177,1.6185184,1.1638484,1.1419083,1.7517692,2.254045,1.9458365,1.7665522,1.5743682,1.5607393,1.2105603,1.1280158,1.2313856,1.121334,1.1529126,1.0312648,1.0976461,0.94724965,1.2167981,1.8919345,1.4804842,1.2398831,1.2040132,1.4946984,1.2197214,1.0970914,1.2446408,1.2329919,1.1486953,1.1111839,1.1931217,2.1738398,2.4272935,2.0629194,1.7705188,1.5071007,2.497647,3.1566424,2.8758357,2.6190672,2.2475414,1.8720751,1.7496481,1.7382331,1.4197642,1.4602494,1.198495,1.2165154,1.110785,1.3834326,1.6102724,1.7089275,1.9042702,1.6361358,1.4680332,1.2031571,1.0975199,1.0232694,1.3181211,2.5134487,2.7302988,2.382101,2.0004888,1.8466423,1.6327393,2.0427792,2.6084306,2.8861406,3.0257287,2.9466944,2.8888988,2.8530157,2.9555275,2.9679995,2.8260405,2.6969447,2.487241,2.207532,2.0413628,1.7695475,1.7457721,1.4510669,1.4000566,1.30202,1.1209451,1.2598099,1.2263963,0.98255527,0.75341046,0.8919213,0.8783346,0.9481702,0.88867193,0.90638566,1.0631449,0.8235435,0.5494102,0.61599743,0.6104832,0.60986084,0.76939464,1.8881426,2.1672719,1.7348717,1.5862219,1.3601601,1.0942206,0.97171474,0.9019545,0.878356,0.9871087,0.6726064,0.8107299,0.49615884,0.3531625,0.45941418,0.55227447,0.4901146,0.39708412,0.51055,0.5343428,0.6272765,0.54302025,0.3257581,0.15504766,0.111130305,1.0518285,2.1245193,1.8429215,1.7526902,1.7579632,1.627476,1.5143387,1.7048469,2.0292912,1.9072714,1.4880803,1.3113817,1.241989,1.0013908,0.7986109,0.7776023,0.71375704,0.6903101,0.7024497,0.72729576,0.693401,0.6144769,0.6970824,0.74972916,0.58529496,0.32604778,0.32975698,0.48138374,0.5166882,0.2999726,0.49308467,0.58999854,0.27506903,0.2117843,0.21472555,0.24059546,0.6482996,1.6164718,1.3618975,1.153965,0.90243506,1.7402028,2.1125793,2.0104272,2.0292733,1.9877294,2.8263807,2.8457124,2.7746763,2.8747706,2.778944,2.7040577,2.900978,2.8765306,2.9019346,2.9504635,2.9394002,2.8723738,2.6351829,2.5176895,2.71282,2.8417425,2.9193795,2.8876722,2.641694,2.57973,2.9855206,2.7048428,2.5346081,2.5442133,2.752541,2.6631055,3.0437424,3.0163984,3.03274,3.037839,3.0048058,2.997942,3.0603886,2.879816,2.8868961,2.9351423,2.9542181,3.0421615,2.9436345,2.7666368,2.609557,2.3447409,2.3119628,2.450175,2.7777753,2.865998,2.8837914,2.7967682,2.7657669,2.6988554,2.9878361,2.987938,2.9870682,3.035428,3.0369904,3.0171854,2.997254,3.031363,2.9497898,3.0213866,2.949345,2.8195972,2.6899881,2.6488419,2.5670733,2.552752,2.6316895,2.4887264,2.1590056,1.8819479,1.9708221,2.4195137,2.7229338,2.8721342,2.7347631,2.5468569,2.5443978,2.6944237,2.4843712,2.8694644,2.9040408,2.858147,2.788598,2.7572355,2.6287465,3.0693867,3.0247576,3.0130496,2.9804292,3.059529,2.9660218,2.873671,2.9059248,2.9879704,3.0566278,2.9761107,2.865328,2.6546345,2.9265168,3.1116974,3.1209192,2.9673243,2.9109387,2.8927336,2.92018,2.869237,2.8865778,2.8918464,2.655807,2.582597,2.5130968,2.357315,2.1448715,1.9108922,1.9218591,1.7130569,1.315023,2.2261066,2.8101306,2.6421237,2.606471,2.3309681,2.0733688,2.0423064
+3.0958123,3.1205826,3.0826256,3.0081005,3.0054936,2.9741266,2.9811964,2.988639,2.9841526,2.9185777,2.9819844,3.0714002,3.0001535,3.019247,3.0282269,3.036746,3.0081253,3.0137508,3.0543184,3.0339434,3.0114412,3.0345192,3.0280683,3.0212512,3.0135713,2.9991436,2.9843504,3.0149212,2.9971147,3.0736961,3.0435371,3.0574093,3.060815,3.0449905,3.0263138,3.0330434,3.0248582,3.009481,2.9671445,2.9582655,2.9914148,2.980073,3.0208383,3.0353901,3.0456152,2.981183,3.0003288,3.0114996,3.0217369,3.0158112,3.0341134,3.0413702,3.0224323,2.9759269,2.906815,2.9295812,2.889153,3.0384364,3.0043216,3.0004668,3.0061455,2.9846292,3.007656,3.001524,3.0191226,3.0119252,3.012794,3.0176208,3.0393155,3.04593,3.042692,2.9484882,2.9979062,3.0098257,3.0165153,3.0619574,3.007687,2.9941568,3.006616,3.032145,3.0337148,3.0184379,3.017717,3.0117579,2.994011,3.0050142,3.0051897,3.0309074,3.0250182,3.0897646,3.0624254,3.0176682,2.9843397,2.9185505,2.849816,3.0018466,3.0099254,2.954711,2.963469,2.922665,2.9725883,3.0328774,3.0155783,2.972396,2.9529605,2.9538805,2.9947336,3.0251017,2.9499822,2.9930649,2.9788952,2.9414692,2.8857403,2.869535,3.002625,3.048022,3.0283604,2.983632,3.0948691,3.0774608,3.0002036,3.044715,3.0536308,3.0110621,3.0150256,3.016148,3.0065975,3.010211,3.065465,3.057434,3.0387557,3.0548282,3.0369294,3.0209973,2.9543824,3.1306129,3.063015,3.0320418,3.0787885,3.0418894,3.0311694,3.0189164,3.0283852,3.040299,3.026218,3.0103807,3.0221825,3.0470972,3.0443263,3.055986,3.0534847,3.028983,3.0868938,3.0781693,3.0772886,3.0658023,3.0060701,2.957543,3.0012624,2.9940963,2.9972188,2.9882252,2.9753351,3.0475721,3.0441542,3.01512,2.9950457,2.9703565,2.941206,2.979844,2.9326634,3.0503912,3.0115833,2.967809,2.9019666,2.8172545,2.8175423,2.8196595,2.869122,2.8362708,2.7538855,2.7946835,2.6874142,2.5387075,2.5483754,2.5722551,2.5238936,2.403288,2.4826431,2.4267387,2.45498,2.3857057,2.1667557,1.9987708,1.9177103,2.019169,2.9186459,3.0472736,2.954749,2.8770413,2.8393092,2.8608465,2.8420975,2.9503984,2.9234915,2.8725224,2.8180387,2.808451,2.7992668,2.739454,2.7110007,2.7103524,2.710678,2.6674297,2.683724,2.6694047,2.6332052,2.6611395,2.6731317,2.5513592,2.2962973,2.6262789,2.6553073,2.66277,2.5648737,2.5484676,2.5735612,2.5046256,2.4128704,2.441025,2.469668,2.5715284,3.1666715,2.9262543,2.879149,2.871029,2.9492612,3.0105247,2.9626143,2.9682455,2.9851856,3.0298824,2.984949,3.0270069,3.0453572,3.0017476,3.0426219,3.0257752,3.0047917,3.0342143,3.0170152,3.004858,2.9811547,2.9541254,2.9848192,2.9761057,3.0023994,2.9818754,2.9521997,2.9593346,2.9699385,3.129239,3.0393226,2.9859085,3.0035646,3.0250177,2.9990022,2.9667854,3.0232427,3.0153375,3.021354,3.0284772,3.0245223,3.0440886,2.9774976,2.989725,2.961513,3.0241184,3.0327497,2.9746149,2.9065676,2.9338818,2.8706412,2.9450808,3.076898,3.0638938,3.0392609,3.0100946,3.001247,3.0038526,2.990916,3.012492,3.079935,3.025491,3.0585659,3.038739,3.0216684,3.064458,3.0303366,3.0039988,3.0261385,3.0277796,3.0391083,3.04708,3.0762389,3.0747144,3.0481386,3.0727894,3.010075,2.9716623,3.0216172,3.011963,3.0119739,3.034768,3.0073702,3.0283341,2.9912906,2.99574,3.007876,3.0422688,3.0711033,3.0396276,3.0395865,3.0039625,3.0114734,3.005478,3.078128,2.9943938,3.0061007,3.0071483,3.0307245,3.0081434,3.071829,2.9860954,2.9843829,3.0388927,3.0251637,3.020502,2.9844847,2.9902105,2.9968657,3.0347657,2.998681,3.01557,3.0645638,3.1022656,3.016217,3.0376215,3.0516224,3.010363,3.02354,3.01446,3.0350642,3.0272524,3.0209603,3.0385876,3.042076,2.9999247,3.0730307,3.02807,2.9952962,2.9945138,3.0162308,3.0314095,3.0350738
+2.410919,2.8744502,2.8946137,2.801807,2.7978444,2.6847472,2.8141778,2.8080575,2.7159882,2.298047,2.0363991,3.0749402,2.83317,2.8801923,2.9934573,3.0059924,2.9583511,2.968556,2.9109554,3.0759058,3.0193076,3.003963,3.1142168,3.0708816,2.9279816,2.8483229,2.8182805,2.971454,2.874598,2.9080508,2.9888697,3.0539498,3.0856605,3.1210513,3.088419,3.0726914,2.9982848,2.8207214,2.648752,2.4835362,2.436219,2.669452,2.815158,2.8283942,2.7173252,2.4508069,2.76649,2.8369462,2.8216074,2.6642756,2.654212,2.6678162,2.5707955,2.2517638,1.9174974,1.8543348,2.4301958,2.9368358,2.7016563,2.5382988,2.401373,2.2267628,2.4093127,2.6395934,2.8904953,2.7051105,2.669541,2.7180634,2.6130176,2.5152996,2.2217896,1.950542,2.113923,2.4496007,2.5539172,2.3948326,2.243106,2.1098793,2.119536,2.6463065,2.7024283,2.5773885,2.4891815,2.4498937,2.2368248,1.9785737,1.9529558,2.3037415,2.6305184,3.0981472,2.8016112,2.5901642,2.2345865,1.9140348,1.754586,1.8776107,1.9653596,1.8343205,1.7690382,1.8229365,1.8240348,1.7832341,1.6939647,1.6907055,1.8192115,1.8935232,1.8082684,1.8064413,1.689912,1.6703691,1.5439892,1.3619759,1.4624157,1.7241375,1.8742213,2.0405324,2.1638393,2.7307801,3.1694613,2.9201365,2.730109,2.7050707,2.559945,2.4519608,2.2971022,2.1230392,1.9870684,2.1761012,2.2368567,3.0058904,2.699141,2.3814926,2.4971366,2.7015748,2.925379,3.152175,2.974815,3.0926578,3.201909,3.1080065,3.0954833,3.0105214,2.9846544,2.9665964,2.9691334,2.8505497,2.8450184,2.8704464,2.8770537,2.9327025,2.8969564,2.8043952,2.8397899,2.742844,2.711444,2.6804452,2.3600774,2.5693216,3.012919,2.7685573,2.7707,2.6759377,2.6743927,2.619958,2.5990958,2.5531037,2.3737597,2.0892954,2.0498333,2.3557618,2.3872561,2.3779182,2.2900367,2.1646757,1.811441,1.6079448,1.617733,1.5977694,1.5264467,1.6011095,1.4253308,1.6022024,1.5084144,1.2055897,1.1352594,1.224053,1.0984824,0.97370577,1.1413631,1.1722594,1.2236856,1.2905645,1.0337981,0.7857162,0.7717676,0.77682805,0.86798656,0.8972712,0.8901971,0.89593506,0.8858541,0.9232633,1.2118793,1.9974432,1.8271687,1.4844007,1.292494,1.1565126,1.1219867,0.95615745,0.8675382,0.963318,0.9642415,0.8920336,0.9047853,0.85642934,0.8545403,0.76261216,1.207429,0.9399638,0.64859056,1.1669804,1.1767584,1.3554587,1.1766262,1.0694969,1.0705801,0.9723489,0.8386478,0.89815843,0.922498,0.83430153,1.5587531,1.5611825,1.3752794,1.1948019,1.5791243,2.5700607,2.2455723,2.216516,2.1786075,2.3850403,2.6818593,3.076741,2.9829726,2.8178678,3.1894236,3.1961184,3.1797652,3.0345545,3.1484072,3.1291864,3.1364002,3.1195235,3.0723612,3.000198,3.000863,3.0747557,3.1194139,3.0851777,2.9712558,3.2189507,3.1428037,3.0823019,3.0682425,3.083919,3.0673943,3.0212376,3.082462,3.0572634,3.014222,3.0220141,3.0403428,3.1303442,3.0546203,2.9783678,3.037225,3.0541644,3.1272948,3.0878177,3.0502675,3.0720875,3.017798,3.022345,3.0276546,3.1506982,3.1275492,3.1169744,3.0898342,3.1071858,3.0149078,3.063773,3.1034343,3.0800898,3.084785,3.1322317,3.0984201,3.170133,3.1917963,3.0642128,3.1503801,3.1564746,3.1394567,3.1458979,3.1480837,3.1275368,3.1006536,3.021656,3.0917077,3.0284567,2.8867328,2.978557,3.0153172,3.0726714,3.1348493,3.0905051,2.9564548,3.0031462,3.0607715,2.8437335,2.957972,3.0839381,3.0418,2.9901443,3.0107253,2.9176033,3.234593,3.0154846,3.085269,3.0463433,3.1527643,3.137964,2.9927692,2.9209921,2.987396,3.1717854,3.1210508,3.065073,2.8792913,2.843884,2.9495978,3.0782075,3.0102265,2.9859843,2.987294,3.1568608,2.9844537,3.1225157,3.1745844,3.0806072,2.9721177,3.021612,3.0024717,2.9302206,2.9113588,2.9409504,2.88139,2.6843421,3.145996,3.0730505,2.9891112,3.0048356,2.9586377,3.1491292,3.1432767
+1.7825577,2.6148205,2.951412,3.0344834,2.8942015,2.7472684,2.58157,2.3162098,1.9437022,1.5367827,1.3549852,1.6625401,2.7577715,3.1003933,3.178494,3.1244419,3.166432,3.1308236,3.1176085,3.094122,3.1805637,3.2024236,3.1790206,3.0638578,2.9825125,2.9213142,2.8676903,3.081542,3.0372431,3.0625157,3.3966734,3.23767,3.279577,3.2494855,3.1698298,3.0753415,2.8865771,2.6904912,2.510051,2.360961,2.0736673,1.8055806,1.3508763,1.1216891,0.9708758,1.0837973,2.6385832,2.6411557,2.532363,3.061635,2.9844966,2.7772114,2.5161963,2.0694976,1.6887801,1.3897134,1.2143013,2.3940911,2.6195726,2.1657698,1.8007276,1.7752569,2.5876427,2.9267209,3.2896633,3.193212,3.1509597,3.0467136,2.8312786,2.5060995,2.2700691,2.5577753,2.7738323,2.9435325,3.163001,3.0015678,2.7870722,2.3731112,2.0796778,2.3244252,2.3149462,2.0917792,1.8101723,1.3955629,1.0367496,0.85436666,0.76067984,0.71737003,1.7106421,1.9275739,1.6154721,1.3066885,1.025072,0.9046605,0.81517017,0.81885076,0.8639816,0.86761653,0.7316886,0.9279444,0.79191065,0.957834,1.076356,0.9891144,0.90704834,0.80618453,1.4603422,1.8057245,1.963131,2.3072114,1.9490496,1.5149287,1.1929119,1.0408942,1.1604623,1.271318,1.9226214,2.458837,2.6146207,2.6839325,2.6268454,2.4619684,2.0880854,1.6574988,1.2368951,1.0318143,0.9419448,1.0978048,0.9192166,1.0670723,1.0024863,1.1330587,1.633086,2.900021,3.326291,3.1409862,2.9713097,2.9997904,2.9926026,2.961855,3.004075,3.0523372,3.0417838,2.992508,2.9588187,2.8441858,2.7294192,2.589415,2.5089324,2.6819434,2.6423838,2.6613178,2.2457695,1.7631633,1.3860512,1.1072546,1.2163692,2.4072256,2.7349396,2.8091753,2.9213946,2.9933236,2.9928224,2.9031875,2.9020047,2.8963327,2.9239786,2.8932664,2.9139147,3.046091,3.1099753,3.0541477,2.93642,2.7563052,2.514102,2.345443,2.0473156,1.6708307,1.2841818,1.1914985,1.149648,0.9711751,0.9428271,0.6581105,0.49322405,0.50688016,0.38207772,0.56141007,0.5172375,0.4219004,0.46120998,0.52826333,0.3673478,0.21563137,0.26000714,0.24608225,0.23259905,0.21947256,0.22818133,0.22637832,0.23576984,0.23462903,0.334758,0.9034693,0.7626453,0.5743742,0.3939306,0.37375152,0.31357598,0.21883656,0.2110144,0.22766918,0.1846993,0.14596571,0.1631541,0.13682723,0.16443703,0.036581397,0.19593021,0.10238646,0.12151962,0.839161,0.8694035,0.9529958,0.86531913,0.7871126,0.75599504,0.675408,0.5353046,0.5510021,0.48902616,0.4290672,0.6387632,0.9684759,0.75321484,0.5191354,0.6193591,1.4605504,1.3540001,1.2976768,1.2559477,1.0226238,1.2393498,1.795172,2.36482,1.9948728,2.6558244,3.1512318,3.124226,3.0777068,3.1373835,3.108714,3.2095754,3.2160506,3.0779667,2.9604073,3.072391,3.125381,3.1511889,3.1281583,3.1691556,3.1718044,3.2306564,3.2075698,3.1143699,3.0653,3.0896187,3.152494,3.1771228,3.1711123,3.1650462,3.1119444,3.1238625,3.2261338,3.3352005,3.4109192,3.26726,3.252008,3.2387602,3.2072678,3.209917,3.2810779,3.3327858,3.1770859,3.1400716,3.2253048,3.2085247,3.1673374,3.1997707,3.1963968,3.1792672,3.2080631,3.1749046,3.0980046,3.2046642,3.1414406,3.2348883,3.1990204,3.1808558,3.160409,3.1916938,3.2247758,3.159152,3.1841583,3.1556888,3.109298,3.112759,3.102024,3.0944762,3.1297934,3.0713422,3.1133204,3.1275778,3.172954,3.1809835,3.0944326,3.0877788,3.1152565,3.048212,2.9330955,3.0289412,3.0885842,2.9605665,2.9653685,2.971229,2.8815744,3.1274102,3.1530838,3.1658444,3.1686451,3.2061656,3.1522074,3.0651472,3.114369,3.1026764,3.2291093,3.1840482,3.0904305,2.8930402,3.0087757,2.988258,3.1111526,3.1880236,3.1572318,3.0751817,3.140334,3.1442723,3.1882954,3.2171745,3.1403122,3.0759654,3.0565212,2.9372523,2.8790298,2.8188014,2.7050657,2.4879313,2.3108132,2.7804458,3.1367474,3.0808656,3.0222895,2.904893,3.3665357,3.2481403
+3.0541456,3.1490543,2.8366804,2.7953286,2.700136,2.8357081,2.901247,2.6709247,2.5777004,2.6320543,3.1060746,2.9588265,3.0700974,3.502148,3.607843,3.6077046,3.616246,3.4903939,3.2698977,3.4501996,3.5249472,3.3894455,3.3490653,3.3489122,3.4082317,3.3483052,3.4126058,3.437925,3.396503,3.4242544,3.430831,3.4871864,3.444268,3.4596696,3.453921,3.462427,3.4478774,3.4562805,3.449159,3.4587114,3.41435,3.5348005,3.4737236,3.4981797,3.4911976,3.4593706,3.4259205,3.5076165,3.507038,3.494884,3.4477687,3.4264603,3.4214106,3.5268517,3.485986,3.5071409,3.5033803,3.5353484,3.5305443,3.5383916,3.5276349,3.5164003,3.5276473,3.5591025,3.5500631,3.520362,3.5029762,3.4908934,3.520093,3.5114098,3.5827336,3.5520644,3.496264,3.550047,3.5280957,3.5345669,3.511819,3.5431323,3.560876,3.5661585,3.5108252,3.4911318,3.495976,3.5356004,3.5415192,3.5308046,3.4675095,3.5144737,3.4944398,3.5243146,3.5511198,3.5368733,3.5490034,3.530007,3.5082884,3.5540779,3.5428147,3.5355713,3.5521145,3.5176396,3.5173004,3.566392,3.5400763,3.4860625,3.5665417,3.530794,3.5454333,3.524328,3.5070505,3.5395465,3.5584946,3.5398045,3.5487325,3.5395613,3.5329995,3.5629594,3.5193217,3.551053,3.5183656,3.5083635,3.5045762,3.531704,3.5343535,3.5564225,3.5314994,3.542828,3.5655642,3.5370255,3.5276952,3.5163224,3.5189223,3.5710235,3.530191,3.5262547,3.5178523,3.538244,3.521435,3.531841,3.5219817,3.5347402,3.5427032,3.5300188,3.4937787,3.4909945,3.538013,3.5594642,3.5243592,3.5117617,3.4926722,3.519026,3.551279,3.5406518,3.5244112,3.5150414,3.5235145,3.5372808,3.532679,3.5312977,3.4919064,3.5333247,3.5338063,3.4872534,3.5156362,3.5036557,3.5051336,3.5106604,3.5241547,3.5423608,3.5430326,3.5267448,3.4924483,3.498335,3.5254388,3.4715116,3.4819536,3.510226,3.517839,3.5219297,3.4983587,3.477229,3.4648113,3.4946373,3.5205426,3.523799,3.5143104,3.5231502,3.546871,3.5385532,3.4779286,3.4927514,3.4404476,3.4229157,3.541649,3.5115097,3.5038862,3.4582958,3.527666,3.5393784,3.4942183,3.5598211,3.5114813,3.4839761,3.4691424,3.4569325,3.5103245,3.5168173,3.49592,3.500949,3.5091906,3.511777,3.5198846,3.5169,3.458794,3.4793463,3.5123096,3.5039177,3.480092,3.4977455,3.5251231,3.5325274,3.5381358,3.5095587,3.489223,3.5247774,3.4598794,3.462098,3.513304,3.5126758,3.444471,3.4476767,3.4408174,3.4800425,3.4749007,3.3608222,3.294533,3.2614863,3.3502154,3.4608717,3.4231663,3.3593574,3.3207853,3.2169719,3.2973723,3.365227,3.310558,3.2312152,3.1434407,3.019271,3.1703897,3.150605,3.0965085,2.9975677,2.7605438,2.515773,2.4480512,2.509263,2.2355313,2.1979587,2.249767,2.20349,2.101023,2.0856457,2.1311467,2.356444,2.7358675,2.8840473,2.9117084,2.8253605,2.6101775,2.745288,2.7069335,2.2770784,2.692411,2.3878882,2.200713,2.533471,2.2028232,2.5098221,2.3744698,1.943242,1.9493185,2.0194674,1.9729962,2.0385838,2.1944165,2.3063607,1.999084,2.00523,2.0319827,2.2494943,2.6021137,2.671042,2.8548074,2.9129264,3.0334883,3.0015798,3.0177927,3.1270833,3.0038643,2.9423292,2.9865546,2.8308716,2.7450686,2.4827783,2.1268997,2.5649045,2.53407,2.171072,2.1660085,2.1399975,2.4945207,2.0621784,2.0640984,2.2096767,2.0217414,2.0868769,2.4966302,2.6747673,2.7558622,2.9485457,2.5982306,2.2974792,2.7397175,3.1165545,3.0581398,2.9935446,3.1301165,3.250608,2.963712,2.6890595,2.607221,2.6193457,2.5380158,2.7081544,2.6443355,2.5359383,2.2274144,2.2687452,2.72024,3.0225217,3.073413,2.718115,2.5144632,2.2360673,2.2538412,2.131615,2.2370176,2.4070153,2.505946,2.6858623,2.8353477,3.0945973,2.9602113,3.291099,2.9717448,2.6305456,2.645492,2.909533,2.9152212,2.9227095,3.1593919,3.0701144,2.9843047,3.0095553,3.1123981
+1.0708115,0.52677745,0.4993628,0.7946201,0.21997869,0.8560607,1.2098777,0.56817126,0.41114646,0.796485,1.2636244,0.9145763,1.0083239,1.2054697,1.1684949,1.0788826,0.9159696,0.8537224,0.8253311,0.84517163,0.6556344,1.0124103,0.9605139,0.9056301,1.3242557,1.5527086,1.5834789,1.2605815,1.4141676,1.5709114,1.4842322,1.2481564,1.0400021,1.0856339,1.0130004,0.71683496,0.73002446,0.7708148,0.7699766,0.6920262,1.330102,1.3140959,1.4035064,1.5338886,1.2525961,1.0878837,1.1413301,0.959033,0.8285161,0.7247696,0.63450223,0.5236122,0.35194123,0.4168049,0.903911,1.6846186,1.4182693,1.3988464,1.6794193,1.5320365,1.1886343,1.7861911,1.622222,1.45131,1.9688332,1.8905712,1.6433362,1.5585101,1.3450084,1.0156598,0.8484053,0.89091617,1.170726,1.4267616,1.5102406,1.7005978,1.7456625,1.3891923,1.0673848,0.89422,0.97965926,0.95789975,0.7463161,0.97375655,1.4205645,0.986794,1.422007,1.1966796,1.1525636,0.79854023,0.7794981,1.3147296,0.89554584,0.6518657,0.5338824,0.29441538,0.9177985,1.1200036,0.8478264,0.82747734,0.4700239,0.37569988,1.0634117,1.0312611,0.64815366,1.0768529,0.8564488,0.97245145,0.8440643,0.57878304,0.4180867,1.2768607,1.211821,1.008165,1.1988442,0.9662458,0.5630635,0.5630458,1.9967088,1.7423395,1.4843528,1.2153406,0.9613167,0.76637506,0.75319713,0.71371734,1.213624,0.8925928,0.7243922,0.5408899,0.29979032,0.19773331,1.2601614,1.3564181,1.701052,1.3728181,1.1777103,0.8526647,1.3446686,1.2695149,1.0455872,1.4213918,1.6069001,1.3031988,0.97879326,1.11144,1.169666,0.94756794,0.76042783,0.72524416,0.4944932,0.39356,0.6404596,0.54746383,0.45704016,0.3783884,0.24814576,0.12934884,0.2635158,1.2831681,1.3318753,1.1908964,1.6149576,1.4041786,1.1270363,1.0815437,1.162374,0.92665195,0.7454401,1.0315421,0.935771,0.7623563,0.8833803,1.7614613,2.1955194,1.8330553,1.599786,1.3175356,1.4425924,1.4199315,1.4035887,1.3283122,1.2378812,1.0687171,0.9916429,0.9306498,0.8464122,0.8404987,1.1909604,1.1731395,1.5493605,1.3699234,1.0861601,0.96230745,1.2146686,1.3278427,1.2400986,0.9793545,1.1025742,0.7698275,1.2646284,1.254776,1.3626323,1.2501359,1.0971093,1.1187892,1.2144123,1.1542192,0.9251442,1.4408832,1.3217373,1.2708228,1.3213025,1.3025506,1.2577541,1.3544794,1.2397798,1.1750717,1.1620386,1.1160591,1.1220245,1.1688012,1.2224028,1.1193986,1.2553675,1.1017059,1.1133918,1.0779325,1.0307349,1.0428879,0.97143775,0.88192564,1.0639262,0.5753898,0.3009476,0.18763232,0.5035098,1.0989182,1.0562409,1.0573194,0.9569762,1.0290241,1.1727216,1.2654794,1.1622738,1.1917031,1.0664505,0.65239066,0.83342546,0.787492,0.09035253,-0.07667848,-0.24421936,-0.40048805,-0.30626395,-0.18223274,-0.3184701,-0.4196229,-0.37764245,-0.3899725,-0.19620433,-0.12916416,-0.24602026,-0.19580323,-0.1958715,-0.12701538,-0.10253712,0.10377701,0.036385663,0.6193932,0.21794456,0.121678405,0.07878364,0.007856123,0.0455916,0.033349104,0.11961619,0.38848665,0.112989046,-0.050748743,-0.0881092,-0.09640292,0.06602702,-0.028907113,0.31143755,0.3499,0.26576582,0.3285008,0.20914692,0.18922016,0.1351341,0.5317256,0.44438305,0.39705056,0.72145694,0.9089974,1.1135929,1.173822,1.1565241,0.776166,1.0377594,0.5850083,0.36408368,0.21012414,0.13514575,0.2944774,0.3583324,0.14231417,0.13648221,0.033590965,0.13948527,0.18230626,0.3606254,0.31401303,0.17381167,0.054609247,0.35441458,0.60942507,0.3819046,0.46736377,0.4823619,0.2969114,0.5211712,0.77933073,1.2623847,1.1642431,1.4704206,1.4502769,1.847467,1.108251,0.7551168,0.42751634,0.48814923,1.0381765,0.8122827,0.58391273,0.17913568,0.12503591,0.51239806,1.0972972,1.4955704,1.1035058,0.55175364,0.112202354,-0.10970875,-0.14006683,-0.2373245,-0.02461151,-0.0005527362,0.07035563,0.3083984,0.5624765,0.70887566,1.1567166,1.2625067,0.48809102,0.756531,1.0499566,1.5257283,1.3081386,1.458936,1.6779606,1.6371272,1.3890922,1.5650866
+1.0035107,0.88476086,0.85308915,0.95330644,0.4705456,0.60254526,0.8135687,0.8358155,0.58360124,0.7989643,0.90614235,0.7539418,0.75476056,0.82982373,0.7974532,0.6470824,0.5617406,0.52894926,0.5052714,0.43466103,0.44472173,0.60784405,0.56286633,0.3537267,0.36570176,0.55298,0.58158106,0.44960397,0.37834713,0.3826871,0.69186556,0.7335223,0.8559439,0.8754449,0.94943523,0.6865365,0.70865387,0.7888969,0.7737314,0.638989,0.81780505,0.74056566,0.9248323,1.0450202,0.97018933,0.7616881,0.79521555,0.8218101,0.71480596,0.6286204,0.54564756,0.39384326,0.2637199,0.16792983,0.13317299,0.41897577,0.5164791,0.85252637,0.8204608,0.768061,0.5389536,1.2245288,0.97645056,0.74903476,0.66497934,0.9413438,0.7393587,0.71113986,0.6212511,0.6164809,0.7306161,0.87126803,1.0350606,0.8019837,0.6020937,1.0131896,0.8382325,0.63204986,0.46869063,0.32676098,0.12858143,0.16707766,-0.0014631972,0.0433008,0.06594888,-0.18642321,0.5417755,0.3589518,0.23736393,-0.017693363,0.21009494,0.34238023,0.055094935,0.021167643,-0.15103939,-0.1978806,0.48127615,0.701446,0.33826768,0.22975633,0.019561358,-0.043727495,-0.0015767962,0.00597509,-0.10560364,-0.15849811,-0.071000256,0.7500298,0.39091486,0.21608368,0.17784701,0.07318454,0.6402646,0.58152497,0.6438067,0.57163537,0.4094633,0.23177642,0.44107836,0.61658955,0.47708863,0.33623502,0.21491775,0.04332892,-0.07427444,0.38071316,0.68498033,0.43501985,0.2566609,0.19989328,-0.068269484,-0.09365966,0.11406017,0.30923247,0.49010497,0.26061192,0.14287218,-0.004567094,0.24970189,0.16005164,0.34762925,0.6876717,0.7085885,0.441531,0.22351947,1.3245382,0.66856366,0.60148835,0.7594546,0.55560344,0.37529203,0.23581904,0.39715677,0.23273411,0.23809949,0.08689331,-0.0573465,-0.14511633,-0.23733938,0.9324163,0.59563583,0.48688722,0.66869915,0.6798078,0.5202445,0.65705645,0.7466043,0.58376235,0.62063086,0.6511413,0.54458123,0.39118534,0.49745542,0.7808844,1.6595244,0.9440529,0.90983725,0.77795506,0.86673164,0.8977971,0.6949791,0.77640927,0.7016541,0.5167177,0.5200153,0.54207367,0.46025786,0.37145412,0.53025746,0.4308758,0.7701401,0.6855868,0.4928557,0.32123992,0.41006503,0.68538636,0.65886366,0.3776531,0.30329815,0.2548608,0.27944523,0.47435552,0.5312466,0.63365674,0.46581757,0.4879945,0.6313306,0.5080547,0.81798184,0.9943403,0.887898,0.80888116,0.99237126,0.91523635,0.776416,0.88493645,0.8296307,0.8547611,0.8144122,0.80261385,0.816656,0.76290214,0.9330698,0.8864516,0.9205013,0.9016985,0.8486844,0.7275771,0.71002835,0.69979715,0.65560627,0.6451151,0.76979446,0.43487504,0.19570728,0.21072742,0.30392423,0.78567696,0.7642242,0.86626536,0.85247713,0.8833027,0.99494994,0.9979207,0.8918911,0.9523612,0.8843937,0.5740953,0.799323,0.76062685,0.27810046,-0.071578465,-0.16287777,-0.2614626,-0.16797882,-0.09893682,-0.2278817,-0.1445258,-0.04363791,-0.06940723,-0.00719925,0.13832074,0.117765106,0.012195535,-0.05138903,0.0063733384,-0.09522989,0.21199417,0.09888276,0.56403375,0.35919,0.16806933,0.112125814,0.10154709,0.21741337,0.10001042,0.26123676,0.33653888,0.12811786,0.058398418,0.06965435,0.061200492,0.18806571,-0.06124685,0.31223774,0.3178128,0.1672211,0.1317145,0.090525545,0.11271674,0.13152575,0.4897071,0.48960516,0.48098466,0.65016377,0.88506293,1.0365069,0.97237694,1.0071522,0.75150204,0.93938386,0.70284927,0.38710833,0.19878098,0.09798231,0.3867777,0.4027451,0.15517896,0.12244157,0.050515153,0.18385205,0.21426827,0.47169644,0.31082553,0.15938076,0.055554844,0.5389325,0.69401836,0.5156274,0.58576137,0.44241804,0.44500273,0.79195434,1.1010282,1.0784127,0.72234154,1.0774848,1.2108659,1.2078727,1.1752374,0.9793375,0.63598734,0.65585005,0.8384476,0.9921477,0.9245564,0.43804866,0.32005414,0.7820646,0.8460518,1.0796188,1.3760145,1.132258,0.5821592,0.14572981,0.011107244,-0.17829451,-0.095778994,-0.10292467,-0.024724774,0.4155834,0.6828212,0.7563051,0.84956014,0.9440783,0.58665,0.534404,0.45686412,0.45937002,0.5192925,0.64942276,0.9508339,0.83438826,0.71583015,1.080244
+0.6447485,0.4693119,0.26260704,0.6967602,0.21877605,0.66758627,0.8750069,0.71501285,0.16744682,0.34165424,0.5726341,0.33465645,0.25576213,0.2681675,0.19927113,0.083530575,0.024235286,-0.03395436,0.15938598,0.71145976,0.8667389,1.0508354,0.74846196,0.5433337,0.31419215,0.26939476,0.30795103,0.681663,0.87456834,0.85527384,1.3265295,1.5428073,1.2575057,1.1168997,0.8877666,0.5048674,0.353197,0.32455856,0.21961126,0.87667054,1.2121581,1.2064877,1.3572035,1.4266826,0.9730897,0.55986226,0.42078388,0.23189712,0.10086044,0.053406395,-0.057984404,-0.1724464,-0.24498168,-0.3242218,-0.33367977,0.40058488,0.3793664,0.93483055,0.9451053,0.3479185,0.042325906,1.3311477,0.8199746,0.19851956,0.07865556,0.33424312,-0.074509166,-0.16304845,-0.24636266,0.34087917,0.25972283,-0.06619228,0.303898,0.26293966,-0.10025894,1.4129634,1.0106653,0.368547,0.093827076,-0.08972549,-0.27366585,-0.16186899,1.1707164,1.8572598,1.3704374,0.60474914,1.9938928,1.5989683,0.73891103,0.40593976,0.18716377,0.21456388,0.00028201193,-0.057090662,-0.18503517,-0.17167798,2.115879,2.0273278,1.713003,1.132568,0.73410404,0.7260727,1.0851041,1.5565244,1.3958248,0.81557494,0.44133976,0.69903046,0.7666578,0.5079309,1.1305876,1.4135965,1.7489121,1.5401714,1.6165345,1.3840711,0.7414838,0.33585602,0.16672832,0.18662581,0.33370057,0.23756212,-0.048246138,0.044896714,-0.008548938,-0.09554777,1.3077712,1.1519129,0.586621,0.5277581,0.21587148,0.12704477,0.39011204,2.0647619,1.923743,1.4588302,0.9052367,0.7414142,0.4772648,0.54155356,0.527296,1.2159734,1.2808586,0.64222014,0.41143665,0.96439326,1.4350283,1.3447897,1.3965228,1.2705667,1.8447814,2.0924697,2.1726663,1.8764884,1.3659089,0.8120017,0.5522311,0.36573672,0.15673125,0.6713643,2.2399793,1.645541,1.8538058,1.5008276,0.9776944,0.6674117,0.70157194,0.56971407,0.39495993,0.53859603,0.49987775,0.32161227,0.19840005,0.07131002,0.2217642,0.45908543,0.7107607,0.5943183,0.8038586,0.6341822,0.6353097,0.48166946,0.41634133,0.26590693,0.43691406,0.384769,0.29905272,0.15218052,0.18821946,0.98698545,1.0770196,0.8291255,0.713894,0.5136751,0.5327873,0.61610395,0.46695212,0.3272707,0.16776723,0.31441665,0.318952,0.44779712,0.49399698,0.42873228,0.27919522,0.227997,0.28076118,0.29579738,0.737791,0.8821249,0.980234,0.71673477,0.75036275,0.85950696,0.69316083,0.5888459,0.83966506,0.77225536,0.78052694,0.6808029,0.6289449,0.59888756,0.57616925,0.593928,0.51666194,0.47858298,0.4348895,0.444965,0.37836692,0.32135913,0.3834822,0.45074832,0.43135735,0.012841143,-0.15317574,-0.14582258,0.2672526,0.5886412,0.5302706,0.4110582,0.4234355,0.71381354,0.93193185,0.9960531,0.93493253,0.9374858,0.832884,0.5579703,0.66706413,0.34394985,-0.2671064,-0.54407185,-0.6174216,-0.5628529,-0.2774493,-0.50900114,-0.6723131,-0.7366838,-0.71717274,-0.668421,-0.57063186,-0.6250448,-0.66575706,-0.71615237,-0.66286576,-0.59451944,-0.52494854,-0.27232635,-0.33865795,0.6986245,-0.22169417,-0.3003508,-0.23868981,-0.43161964,-0.40724313,-0.4107911,0.06182372,0.35938707,-0.55887145,-0.6561997,-0.67514706,-0.6662413,-0.59366196,-0.57453734,-0.13054407,-0.14310393,-0.30169356,-0.5220123,-0.42740875,-0.44687676,0.093619876,0.34288225,0.091679536,0.30851364,0.926384,1.094427,1.1829721,1.0955052,0.9812802,0.7786534,0.55951786,0.039068393,-0.3595961,-0.471007,-0.5768219,-0.18182099,-0.08595436,-0.6112494,-0.70808065,-0.7354233,-0.5659405,-0.3634604,0.34625658,-0.32298824,-0.6712983,-0.62859523,0.20105076,0.56811255,-0.10138831,0.005286768,-0.13809726,-0.3504962,0.33374715,0.70201516,0.70644814,0.466596,0.5251121,0.80164826,0.7587563,0.783599,0.29907933,-0.13246402,0.16767642,0.5360048,0.84016407,0.45426685,-0.17695189,-0.04139223,0.6272696,0.6780238,0.91363716,0.79055566,0.628942,0.1454294,-0.30640012,-0.47182405,-0.28823024,-0.4885875,-0.66808295,-0.6313585,0.0964481,0.5268993,0.24604839,0.48840475,0.78345776,0.17230201,0.21825421,0.38884702,0.52621365,0.90884435,0.9859468,0.97114074,0.72380996,1.4728497,1.4665745
+0.98948663,1.0811493,0.71203727,0.74609685,0.6505653,0.44918,0.62583125,0.66393316,0.3474964,0.36128423,0.67233455,0.6138947,0.51952964,0.5349606,0.45518926,0.37637132,0.3353648,0.18441334,0.18029395,0.4522447,0.8826647,1.1619973,0.9965087,0.67688155,0.43803072,0.5272172,1.0605187,1.5738903,1.4778955,1.4170614,1.7422584,1.5443897,1.1794496,0.9639233,0.7274536,0.40385085,0.25224352,0.2907404,1.592267,1.8923302,1.7900928,1.7801465,1.7464817,2.16322,1.6994162,1.2013903,1.2101971,1.1762295,0.84807515,0.5785169,0.42627656,0.1832594,0.05765683,-0.029697143,-0.17852694,0.7057877,1.5413907,1.9833186,1.9476078,1.2763249,0.67849517,1.4238288,1.1002772,0.52022904,0.22404969,0.11131805,-0.06993926,-0.09824707,-0.12880754,-0.2760002,-0.394716,-0.3735749,0.13257152,0.6147928,0.04767791,0.5760064,0.29949743,0.14631936,0.0039023086,-0.20935956,-0.34276456,0.25412622,0.32510146,0.20313394,0.12034253,-0.25744733,-0.24507448,-0.23490861,-0.2643093,-0.27393836,-0.39903903,0.58361197,0.13919148,0.6718426,0.8372075,0.7322419,0.8547436,1.3595582,1.1236882,0.7785451,0.9818384,1.2106299,1.1297895,1.372193,1.3513545,0.8989885,0.5642815,0.42678407,0.7673264,1.6541505,2.0046282,1.637472,2.147017,1.6688471,1.0091065,1.0939171,0.90152067,0.4973899,0.70409817,0.6354437,0.49221238,0.25719056,-0.10344031,-0.11316458,-0.1312775,-0.18293321,1.1889791,1.2890888,0.6329703,0.5246608,0.23596942,0.10741256,-0.0077229515,0.38358292,1.3903147,0.9535042,0.5086353,0.9043398,0.5122925,0.24849135,0.07763412,0.27214602,0.60252845,0.29877192,0.054987833,-0.16583815,0.9529507,1.2479347,1.4662311,1.272362,1.2988966,1.29353,1.4544654,1.4774125,1.1410422,0.87889016,0.51660234,0.3459672,0.056345172,0.6865485,1.614643,1.3464887,1.7850533,1.6253042,1.2366725,0.9070063,0.84461695,0.7911143,0.6710874,1.2295567,1.1328366,0.7592595,0.48494202,0.29018202,0.2902412,0.20724598,0.11034945,-0.06735668,0.101465166,-0.0034454241,-0.12013503,-0.1802612,-0.33284897,-0.33052832,-0.068414114,-0.1329417,-0.17185947,-0.21420324,0.14967886,0.78962123,0.7882588,0.5608662,0.40690562,0.32011762,0.24126336,0.7981448,0.66201526,0.3339433,0.28777924,0.39893752,0.42241314,0.45999515,0.4027611,0.33423418,0.20689067,0.034199268,0.049937803,-0.019175299,0.0048571676,0.46040556,0.4793407,0.25450304,0.3162904,0.2954552,0.07763009,0.32926267,0.7933032,0.8377344,0.81026167,0.73504424,0.6630789,0.39607334,0.64478916,0.66205543,0.5100166,0.4876535,0.45227748,0.31461546,0.26769954,0.25559628,0.2906583,0.34027994,0.34046325,-0.034217082,-0.19185734,-0.23585957,0.10841935,0.5496796,0.6383096,0.6445509,0.5384387,0.58894926,0.86362886,1.0014902,0.93022275,0.89876646,0.76939726,0.5083235,0.6312726,0.7796712,0.30675137,-0.2120102,-0.38568735,-0.41596907,-0.1092334,-0.1449562,-0.35703015,-0.52559805,-0.57122475,-0.54882556,-0.3313573,-0.6013036,-0.4818083,-0.47144836,-0.44233894,-0.23974904,-0.16099828,0.34518003,0.33726293,0.6401129,0.82007825,0.39848927,0.46168172,-0.01477582,-0.06657978,-0.15113375,0.22220954,0.39562148,-0.3749683,-0.62228096,-0.67110443,-0.5851232,-0.4859169,-0.5015333,0.19549051,0.42362314,0.40552306,-0.3313077,-0.35439062,-0.3473525,0.10336562,0.8498164,0.8330229,0.74598014,0.85725224,1.028534,1.238104,1.1036708,0.96702665,0.89917344,0.8449583,0.5145971,0.082154214,0.14605883,-0.10572893,0.46266013,0.60382247,0.06758364,-0.22502995,-0.36320528,-0.108883135,0.28822508,0.34984595,0.2737276,-0.34992927,-0.35750762,0.42267975,0.68194276,0.32513,0.5334545,0.4105935,0.2237005,0.5479958,0.5480371,0.51139677,0.47410893,0.48252177,0.86747026,0.9272447,0.83776367,0.73059547,0.29113686,0.5596104,0.5085962,0.8703097,0.84067273,0.3375268,0.5460479,0.8280605,0.651391,1.037377,1.1868544,1.0225878,0.74572176,0.29593632,0.15208256,-0.058089502,-0.12504306,-0.28664494,-0.1347579,0.27615225,0.5653964,0.44351253,0.5254332,0.58416206,0.37508923,0.14311239,0.29355815,0.40932798,0.71985936,0.8641928,1.1245104,0.94328433,1.678927,1.7532067
+1.8392153,2.2301145,1.8628447,1.5216033,1.4214752,1.44658,1.8617435,1.791228,1.6953934,1.628751,2.5640824,2.620147,2.392266,2.097746,1.7717433,1.5332919,1.3120359,1.0467515,0.88112664,1.2219142,1.6153519,1.6411836,1.3280723,1.0384463,0.7298975,1.7609477,2.2144976,2.2603106,2.0514295,2.8310378,3.0787873,2.9470167,2.9171999,2.7288384,2.4258914,1.8567843,1.5050375,1.4453696,1.1783547,1.5584418,2.133718,2.7246416,2.5645156,2.5348268,2.278529,1.9240549,2.6258125,2.7537756,2.5038674,2.2549229,2.157094,1.6671662,1.2339692,0.95376015,0.7979045,1.5472517,2.41786,2.5277321,2.2516446,2.0603158,1.7283295,1.924814,2.1496139,1.6233346,1.8355496,1.8232735,1.4055548,1.2174715,0.9801631,0.78206456,0.66926134,0.6778765,0.7048267,0.7804632,0.8557453,0.98537385,0.90137243,0.91235876,0.87398076,0.7477894,0.72370005,0.8322526,0.77685416,0.7823075,0.8137017,0.94310963,1.7002995,1.5174241,1.275387,1.1366279,1.0131574,2.0472891,1.6841223,2.779797,2.7553082,2.6464148,2.8066883,3.0993154,3.1952007,2.9985647,2.6511254,2.4672217,2.2528672,2.971107,3.014116,2.7417262,2.4676695,1.9262028,1.7210711,1.5390267,2.5144825,2.5528455,2.5302117,2.415065,2.0535917,3.1241648,3.1435094,2.903431,2.7216845,2.3896806,2.0459008,1.642962,2.2326095,2.70111,3.0278049,2.8930533,3.248033,3.2478917,3.0558343,2.8328958,2.553352,2.2145472,1.947787,1.859153,2.8733814,2.7776804,3.2068257,3.2339792,3.0273514,2.7958715,2.4670873,2.1828701,2.016115,1.5699883,1.2513115,1.3149667,1.2624503,1.260154,1.1671268,1.5117581,1.551113,2.0122762,2.2785926,2.2276852,1.9613109,1.645305,1.3411852,1.1359339,1.0133785,1.0249358,1.3410957,2.5594597,2.9834714,2.808745,2.5842965,2.3080535,2.0781713,2.1826432,2.6435883,3.1235776,2.837861,2.6281161,2.3336964,2.069006,1.8273118,1.5250797,1.3937867,1.24727,1.5552182,1.3419482,1.1047713,1.0012879,0.80748546,0.828812,0.883218,0.8542801,0.838767,0.77117777,0.74777704,0.7306808,0.77449346,0.5266864,0.40536556,0.43768758,0.34124324,0.6483947,0.4882717,0.38973206,0.4178976,0.46974954,0.4738302,0.745912,2.0092258,1.9258921,1.7400562,1.5734473,1.4530668,1.3809452,1.1890125,1.1766816,1.1413019,1.0633792,0.99700654,0.9357492,0.86509985,0.85007113,2.1909738,2.0672622,1.9357064,1.7240821,1.56408,1.5267718,1.5328416,1.5834596,1.4804181,1.493087,1.4289112,1.2585328,1.1920536,1.1504378,1.212786,1.1491739,1.3624179,1.1059111,1.0191051,1.0221065,0.9353426,1.1060385,1.228477,1.3260026,1.3092887,1.3569167,1.6071501,1.7097795,1.6214054,1.5772729,1.4545538,1.3048401,1.6718479,1.7643672,1.6580787,1.3766998,1.2742723,1.1865083,1.4330038,1.6332715,1.3425338,1.1648407,1.0337499,0.9076729,1.3521771,1.0064068,0.7743475,1.1171381,1.4236805,1.6269007,1.3452706,1.7164973,1.5895576,1.865001,2.2825234,2.20628,2.2688766,2.105347,2.015621,1.9540601,1.8206726,2.0912764,2.0304925,1.6867622,1.3759764,1.23737,1.2500663,1.3666692,1.9634922,2.0327673,1.783562,1.4221442,1.4471519,1.7727094,2.1016293,2.248365,2.3971407,2.2316666,2.2069464,2.3798962,2.3563714,2.288105,2.1970372,2.0805566,2.0541275,1.712787,1.5468217,1.5395966,1.4451976,1.5362617,1.3934999,1.1351622,1.0113096,1.0392268,1.2807378,1.3137565,1.3061979,1.3778133,1.0845305,1.1760001,1.3353724,1.3587524,1.2583555,1.1280854,1.1125722,1.0245486,1.059232,0.9709605,0.9327417,0.98544216,1.0147804,1.2257643,1.248682,1.2243431,1.3547056,1.1390257,1.0464461,0.8412026,1.4954809,1.6871452,1.6008148,1.5086341,1.4890928,1.3669513,1.6324124,1.7811891,1.469775,1.4446986,1.0700618,0.9912577,0.9327444,1.0607367,1.0187602,1.0649213,1.1747742,1.2122484,0.9930805,0.8988906,0.8566721,0.8521553,0.6912948,0.7680639,1.1897893,1.8568298,1.9545441,2.1914558,2.1189673,2.7470663,2.8878684
+1.9437964,2.562715,2.671014,2.4522302,2.5465822,2.1156743,2.4375942,2.8097665,2.7527792,1.9046245,2.5507424,2.8369145,2.6746378,2.5188322,2.3012943,2.2456875,2.2332187,2.243272,2.0284026,2.3865657,2.318748,2.535983,2.4948425,2.2232316,2.0413651,2.0815153,2.1246696,2.5033665,2.4745407,2.7161574,2.5616617,2.634379,2.6450057,2.6541514,2.756495,2.5043077,2.2726588,2.1238055,1.717637,2.9055963,2.4935493,3.2170982,3.0516453,2.930947,2.866734,2.5339267,3.0801804,2.846288,2.76664,2.565105,2.7980938,2.74154,2.5933485,2.351971,2.347592,2.6829684,3.1514206,2.6929057,2.715506,2.783412,2.4170845,2.5432801,2.5565994,2.3421037,2.5917268,2.7408123,2.6315222,2.5500352,2.4977503,2.2078,2.0896444,2.0552626,2.008963,1.9479115,1.7252979,1.8208914,2.0048993,2.072274,2.14915,1.7918882,1.7055292,1.7333803,1.6951196,1.6685243,1.8724629,1.5856519,1.5255289,2.2111254,2.4156904,2.3610735,1.9408859,2.0412982,2.0078537,1.9607433,2.7760415,2.5164192,2.4611065,2.7183158,2.9183872,2.808271,2.57799,2.4551227,2.1139472,2.1569965,2.1328049,2.3197217,2.4232883,2.0651515,2.0100203,1.9498965,1.8679197,1.7676815,1.8068922,1.811631,1.7845566,1.6873897,2.365378,2.5031073,2.4146256,2.443889,2.4971833,2.3676593,2.2617664,2.2368422,1.9694606,2.221817,2.2001333,2.5556061,2.1830688,2.068243,2.0133877,1.9229208,1.7796973,1.7951558,3.0057492,3.158883,3.3783083,3.2593,2.7799315,2.6568859,2.5214853,2.4952626,2.856846,2.70375,2.2872715,2.10463,2.1387734,2.138484,2.0791175,2.0709276,2.0278492,2.0816145,1.9873912,2.238062,2.3602283,2.142004,1.9726106,1.684543,1.5919423,1.5583043,2.294345,2.3263679,2.3065848,2.6697164,2.3656113,2.0968137,1.8697002,1.8494512,1.8415487,3.0750775,2.666879,2.5714679,2.4343314,2.3169127,2.2581408,2.113699,2.0140948,1.8778245,2.1789148,2.291886,2.102192,2.1102922,1.9154187,1.7925838,1.630548,1.5324216,1.5295184,1.3154122,1.3449318,1.5902767,1.9883242,1.6921291,1.4051352,1.324096,1.1682224,2.201896,1.8345072,1.6121414,1.5319444,1.5488527,1.5686618,1.6110451,2.5910425,2.6460621,2.383327,2.2336552,2.2448053,2.1511195,1.8120105,1.8993325,2.0234065,1.8525828,1.777632,1.6995255,1.6793616,1.6263266,1.5125774,1.9439275,1.9868991,1.7387335,1.5579486,1.3389089,1.7162513,1.8238046,1.756366,1.9651983,1.9261225,1.6635199,1.4504008,1.6479077,1.5431476,1.3827068,2.582422,2.3812046,2.1106591,1.9172959,2.0552008,2.24733,2.2391295,2.5217955,2.3789415,2.8261752,2.5952609,2.9843278,3.0605378,2.9578743,2.7904444,2.2586694,2.4318142,2.369144,2.7226496,2.6987052,2.5366745,2.1048381,1.8871331,1.9150608,2.1732905,2.300578,2.0532765,1.5894836,1.5107276,1.8996317,1.7216501,1.6512889,1.7288456,1.9759696,1.5781584,1.513819,1.8419929,1.9886932,2.9679213,2.585289,2.7646916,2.7309918,2.4460611,2.4004517,2.0777922,2.1128383,2.6731076,2.187045,1.9000453,1.7356349,1.6095133,1.5403476,1.5558249,1.9953127,2.08849,2.56332,2.3315184,2.0173762,1.9086868,2.345343,2.7517116,2.4194388,2.682629,2.8338559,2.953073,3.1125822,2.792868,2.7792182,3.1238272,2.9358478,2.965649,2.8217437,2.7788846,2.84079,2.9368603,2.7478805,2.5616825,2.3417985,2.1586134,1.9998872,1.9833086,2.7690296,2.573163,2.321539,2.1041365,2.5845404,2.78312,2.2636614,2.6175354,2.6629572,2.5550928,2.3207302,2.365233,2.5259888,2.327816,2.4171448,2.6413288,2.7997637,3.2830498,2.6897128,2.1680174,2.1323621,2.6813097,3.0549407,2.918848,2.7270908,2.4799285,2.1867664,3.011005,3.1029844,2.999167,3.2144222,2.7241378,2.6171877,2.236875,2.510903,2.5021534,2.2275324,2.0036888,2.7646449,2.6811552,2.3517964,2.610353,2.579525,2.2649612,2.2749443,2.633162,2.716639,2.8877978,2.9172645,2.7240012,2.6108565,3.1517158
+1.2314821,2.0763395,2.231903,1.8985643,1.7799621,1.4142629,1.537152,1.5634859,1.3933003,0.99304384,1.0471762,1.5707604,1.3338125,1.25207,1.269948,1.636133,1.8246291,1.7738044,1.6736611,2.1852138,2.2672787,2.184012,2.0362222,1.7023075,1.4487097,1.0798519,0.9993981,1.3196809,2.4338353,3.2356706,3.2025356,3.0926414,2.9835663,2.832966,2.6117845,2.1200457,1.5099111,1.0662556,0.90260124,1.9543769,2.0790985,2.5615616,2.7583065,2.3803554,2.0905511,1.4419041,1.3681167,1.5476179,1.1133828,1.3000201,1.5877738,1.2642795,0.8331537,2.913624,3.14435,3.2371473,3.3089433,3.3222172,3.1007137,2.8353915,2.6258223,2.4653115,2.5263345,2.9876328,3.247452,3.0483308,2.797843,2.391848,1.9892198,1.3320284,0.84287167,0.5444586,0.35954827,0.4951531,0.48629868,0.46018955,0.594419,0.6160656,0.48345736,0.1859583,0.10786572,0.07306667,0.06798854,0.056818265,-0.008603834,0.069401644,0.13048317,0.8739431,1.0722946,0.9608128,0.6537827,0.55972606,0.50834584,0.35304844,0.22143212,0.2708362,0.28474322,0.4024701,1.0255023,1.279873,0.8221102,0.65924877,0.81890655,0.72795695,1.7411678,1.7508137,1.1464679,0.8312472,0.6938926,0.5690711,0.5731115,0.7913319,1.3950267,1.4998806,1.4194984,1.2029114,1.0297998,1.151068,1.795377,2.2342317,2.0241137,1.5985378,1.5604439,1.5214512,0.9694771,0.8344828,0.6696063,0.5417291,0.43012947,0.3161445,0.27327758,0.056775223,0.11861825,0.05152691,0.47796652,1.6308949,2.1841621,2.6898034,2.7450545,2.8110347,3.1006474,3.194809,3.0774636,2.8663352,2.8127394,2.663024,2.3979974,2.1593537,1.9305675,1.5498505,1.0648153,0.8175472,0.67460835,0.60084206,0.6261288,0.3690681,0.15191382,0.07463764,0.20357963,0.14551765,0.115836255,0.10555686,0.25990772,0.42256442,0.066982895,0.038578562,0.1862071,0.052677006,0.4140809,1.7808152,1.7130362,1.6976221,1.4507297,1.1601073,0.8901068,0.6137072,0.43059465,0.3088804,0.29194495,0.3631159,0.115207784,0.06654431,-0.24744552,-0.36611423,-0.39814812,-0.3172281,-0.36671305,-0.41255277,-0.0168939,-0.1706999,-0.14107785,-0.3349797,-0.480618,-0.532241,-0.5847926,0.037464075,0.9125965,0.9167559,0.865767,0.78646165,0.6397281,0.45056713,0.5280116,0.79118973,0.43197736,0.23705354,0.14587787,0.09316113,-0.13058946,-0.05736027,0.33789277,0.17593735,0.09965125,0.02456493,-0.082900144,-0.15656352,-0.16335341,-0.06693772,-0.13683686,-0.2792857,-0.34723988,-0.49880457,-0.1441868,-0.2747664,-0.31406212,-0.17913747,-0.27028942,-0.43038905,-0.48179555,-0.4107293,-0.39290124,-0.27876323,0.39168364,0.29388458,0.10826353,0.0025873706,0.6674655,0.9619653,1.0452869,1.0635296,1.0369283,2.187939,2.4010482,2.3377945,2.398676,2.147973,1.8938286,1.7364645,1.9057546,2.3530579,2.3483355,2.342444,2.0052743,1.723064,1.4042038,1.4417272,1.6123662,1.8825318,1.8334397,1.3435087,1.5617907,2.2212903,1.9103756,1.7179067,1.9168694,2.0563035,1.7015762,1.8946929,2.3190618,2.7521484,3.065279,3.0638602,3.0198398,3.0717816,2.8765516,2.867932,2.9446657,3.0240178,3.130293,2.8983397,2.378277,1.9918848,1.6416948,1.5894334,1.8411515,1.7740543,1.8681213,2.1240823,1.9468653,2.0245483,2.1988225,2.7250538,2.956442,3.000502,3.0149903,3.0945253,3.0432298,2.9985986,2.9891458,2.9724858,2.976897,2.8338914,2.7903886,2.5131183,2.3554795,2.1430135,2.1310987,1.9250777,1.4749553,1.1662673,1.0511236,1.2152066,1.3658516,1.7633376,2.037431,1.8087063,1.790674,1.755508,1.8228102,1.3160462,1.4405261,1.7118855,1.8538897,1.825403,1.9151044,2.0414941,2.0668364,2.5386362,2.6605337,2.7116215,2.7878165,2.3152783,1.9204748,1.983377,2.5296144,2.8205042,2.6526227,2.4213262,2.1486557,2.1447535,2.9890163,3.117943,2.9845765,3.012723,2.9046702,2.9633455,2.8369036,2.8453975,2.7959108,2.4163094,2.2776115,2.362659,2.504394,2.4451551,2.3568487,2.671073,2.51162,2.5426283,2.9930081,2.9839172,3.0715566,3.0240197,2.9788866,2.927414,2.8429284
+1.6724516,2.7114053,2.8716536,2.7071865,2.5146008,2.0891638,2.0398989,1.9642309,1.5664122,0.9886651,2.1980822,3.096107,3.034976,2.9124618,2.9976854,3.147655,3.2041674,3.0963268,2.9544282,3.1893754,3.382453,3.2845922,3.195855,2.9834375,2.7490997,2.4115276,2.1985364,2.2837837,2.7950606,3.441817,3.2913895,3.3019853,3.2739482,3.2349615,3.069148,2.8576994,2.4415627,1.8418378,1.2997425,1.6790311,1.7744946,1.681348,1.8152843,1.4352746,1.1964694,0.5777839,0.7285601,1.016185,1.0313153,1.8254781,2.1665828,1.8242998,1.3166614,0.95354235,2.148184,2.8659368,3.04079,3.2238488,3.0540516,2.6799316,2.4766572,2.5084808,2.2285964,2.2708979,2.567796,2.5499768,2.306149,1.9243364,1.7081165,1.4223652,1.3165865,1.157275,1.3654704,1.5753785,1.8910669,2.1329856,2.2536633,2.2598577,2.311574,1.9275188,1.7493818,1.790534,1.6865357,1.7356797,1.6856586,1.7577481,1.9112079,2.5159621,2.2807112,2.0982552,1.9000273,1.5959182,1.5639476,1.5341785,2.274036,3.252436,2.9764977,2.7743096,2.4423094,2.0605443,2.8461192,3.202113,2.992258,2.678637,2.66951,2.6790872,2.3635306,2.1975808,1.9249921,1.9806627,2.0523772,1.782372,1.786509,2.159147,3.163844,3.1082077,2.9905434,3.107781,3.4014359,3.3310695,3.2992265,3.3366988,3.2765512,3.1644096,2.923246,2.603795,2.4312034,2.4356148,2.27386,2.0883877,2.009609,1.766026,1.7398024,1.8183494,1.8782043,1.9607708,1.9831895,2.7807324,3.192779,3.043594,2.9759884,3.1331847,3.1440585,3.1256838,3.019559,2.8586698,2.6262834,2.5927315,2.534824,2.2753904,1.9590795,1.718357,1.6535165,1.5755736,1.5892295,1.55328,1.3702412,1.3061863,1.3490739,1.333109,1.6746459,1.7401259,1.7126675,1.807302,1.4720689,1.2116011,1.1676722,1.1422336,1.0331359,1.1676309,1.60267,1.5814996,1.3540833,1.2307848,1.0883069,1.0215719,1.021744,0.9887575,1.0668625,1.0978539,0.87637454,0.8878359,0.6296893,0.45681274,0.38724825,0.40713674,0.320752,0.27766147,0.3805802,0.36517715,0.33537564,0.22775114,0.072455026,-0.034529887,-0.043959104,0.14619744,1.7047408,2.006451,1.8929073,1.9345042,1.8744988,1.7768121,1.8267952,1.9606891,1.4699614,1.0419191,0.87749165,0.85758513,0.6665533,0.5688767,0.57216054,0.57161564,0.59309244,0.5838198,0.59307456,0.54789025,0.5451288,0.613818,0.66925216,0.36022937,0.2214959,0.33865917,0.693139,0.64993787,0.4220103,0.42825276,0.4184639,0.19240406,0.05675345,0.09135523,0.06866672,0.6150485,1.7285554,1.5575958,1.2859476,1.0591663,1.1867514,1.777627,1.7515584,1.824136,1.7346106,2.6060274,2.752746,2.9845743,3.042887,3.0117817,2.8606608,3.0351667,2.981145,3.1632965,3.046995,3.0573158,3.1377392,3.0887043,2.986872,3.0152318,3.04607,3.133672,3.1527605,3.001802,2.9848266,3.2340164,3.202941,3.1584153,3.125995,3.2478771,3.1336827,3.1139028,3.1009455,3.266833,3.2317555,3.1393933,3.1674848,3.2450764,3.1453214,3.0547307,3.1306486,3.1464741,3.2063174,3.1606922,2.9706578,2.9264803,2.6353636,2.5556054,2.9056282,3.0395486,3.2788224,3.2077403,3.0906875,3.057881,3.0227957,3.20504,3.1314962,3.2093892,3.1980371,3.2586684,3.2333376,3.1926765,3.2143924,3.2116823,3.277925,3.2431812,3.2321684,3.166791,3.1197095,3.03647,3.0216706,3.0219495,2.9702578,2.6822531,2.4931638,2.7599263,3.0546403,3.1514282,3.1825287,3.0153275,2.972959,3.05762,3.115368,2.8306794,2.8328288,2.9389694,2.951881,2.9289968,2.9505043,2.9317842,2.946734,3.0355673,3.051301,3.0634584,3.1808622,2.9412177,2.7847824,2.9469051,3.1452084,3.2617297,3.149838,3.0101366,2.6946673,2.6593113,3.1117542,3.2153351,3.109568,3.1190453,3.0731354,3.0747557,2.989944,3.029759,2.9696615,2.6937373,2.592133,2.6754906,2.5766072,2.269612,2.044236,2.009006,1.7760601,1.5493555,2.3195467,2.9147954,2.763566,2.694262,2.3621476,2.2216253,2.3722684
+2.009218,2.4935935,2.293909,1.7615207,1.209604,0.8988112,0.9058085,0.7782424,0.6690407,0.43387192,0.9502355,2.7531376,2.804223,2.6956458,2.7168925,2.7892935,2.7795172,2.5046787,2.1273994,2.4274428,2.5592303,2.3670034,1.9094114,1.2878433,0.9214718,0.64364505,0.94589233,2.058816,1.5316365,2.4519188,2.9687228,3.043823,2.9545066,2.702496,2.1727805,1.5571915,0.9467034,0.6720783,0.35227823,0.5144667,0.34492698,0.5819136,0.85210276,0.5550014,0.50461394,0.10373101,0.25821218,0.540731,0.44025463,0.30621508,0.30909777,0.3185365,0.25134373,0.19618352,0.058946855,0.23718545,0.38614792,1.0421981,0.8380635,0.65438575,0.6207629,0.81144714,1.2754805,2.276805,2.918054,2.9128103,2.676435,2.001198,1.1982639,0.8141202,0.62081194,0.40351737,0.83199537,1.0134215,1.7561877,2.393568,1.8664441,1.3331482,2.2416432,2.2677562,1.8555665,1.5474721,1.1631875,0.9423695,0.71276134,0.8178221,0.7202886,0.7784786,0.8863869,1.0880808,0.8767575,0.7232379,0.64178073,0.6583529,0.5549938,1.5866894,2.0183897,1.4237186,1.0808988,0.8702305,1.6029049,2.0177865,1.3842108,1.0677198,0.83665013,1.2588757,0.99633694,0.94851995,0.8892964,0.86158466,0.9654571,0.75282514,0.75146365,0.7122224,1.6615005,2.48361,1.8496442,2.3556266,3.1540165,3.1059175,2.9448175,2.9469748,2.8376994,2.2903612,1.6674438,1.1696657,1.1152092,1.6518829,1.8255703,2.1270752,1.6824021,1.3818824,1.7443869,1.964754,2.0678704,2.3190894,2.1877916,2.6643946,2.9972935,2.9873135,2.960878,2.9154055,2.6770644,2.9215908,3.1100476,2.968954,2.7165885,2.6044314,2.3733976,1.6335886,1.117229,1.0653342,1.0195497,0.86095065,0.8779801,0.8257662,0.5097663,0.66647875,0.8640257,0.7318177,0.70213616,0.73959327,0.6676239,0.9778027,0.9132051,0.67278975,0.63409925,0.63390505,0.52807635,0.4830643,1.3090123,1.7005191,1.089269,0.8815112,0.6305832,0.4767482,0.5515677,0.77041125,0.8372703,0.90070474,0.6130863,0.53064364,0.3672729,0.19781512,0.23166957,0.3388969,0.30049908,0.24495825,0.33378866,0.35071576,0.3779037,0.36745468,0.30753493,0.22332573,0.20775914,0.04472132,0.36907223,0.6626961,0.45258796,0.4009948,0.30733594,0.31305337,0.45364934,1.173927,0.8429419,0.57713306,0.33328992,0.20863158,0.08337457,0.01820615,-0.0062594637,0.012768656,0.02693919,-0.032475404,-0.039940216,-0.08125109,-0.023408853,-0.015513696,0.018073253,-0.0857136,-0.16365647,0.130042,0.564632,0.43357486,0.116759494,0.10467238,0.11861395,-0.00067581236,-0.079057045,0.09825349,-0.0054382905,-0.05586862,0.9799322,1.5120797,1.1653677,0.97459584,0.79322165,1.639272,1.393825,1.4294862,1.2379498,2.4479692,2.8732207,2.8935814,3.0411098,2.828228,2.821242,3.041481,3.0009418,3.0703075,3.0230875,3.0329971,2.9806252,2.6961815,2.4740794,2.510932,2.5649986,2.6126277,2.5155923,2.239419,1.9628587,2.8459191,2.854615,2.756042,2.6783118,2.5910196,2.5560594,2.4291878,2.5844235,2.572631,2.8369927,2.708232,2.888866,2.927699,2.859458,2.8868153,2.9793277,3.0754766,3.0879388,2.9857588,2.8410668,2.409018,2.0926414,2.0314891,2.1023498,2.366725,2.4355173,2.5307317,2.5284064,2.489691,2.5095763,2.9084134,3.0742152,3.1570742,3.169764,3.1453202,3.1454003,3.1737518,3.1222885,3.052334,3.1338754,2.9952526,2.8128533,2.621069,2.4644694,2.308908,2.304394,2.429945,2.5224395,2.3932657,2.6593165,2.8690128,2.9488242,2.996472,2.9987445,2.8284998,2.5997052,2.646749,2.6850722,2.4166203,2.5064785,2.4592524,2.2918456,2.2207615,2.1301167,2.000209,2.4248273,2.7944767,2.6884527,2.5899127,2.738532,2.453102,2.5845,2.9529855,3.0464408,3.0868926,2.872751,2.6427617,2.1558137,2.29528,2.7303238,3.0004764,2.811829,2.8679266,2.8491197,2.9022908,2.8358498,2.8435133,2.7490678,2.534294,2.2706184,2.1734319,2.2014785,1.8760242,1.6785924,1.4970222,1.3050004,0.9614198,1.7611471,2.695143,2.2837377,1.9929117,1.4581525,1.914932,2.650292
+1.7815602,2.3729823,2.4046738,2.3261414,2.1877048,1.9292321,1.9307429,1.8964767,1.7960649,1.4673886,1.7148163,3.077543,2.7080073,2.7377841,2.9179668,2.7344823,2.6040936,2.5314841,2.3485394,2.2628236,2.3415487,2.3767087,2.5290692,2.3691576,2.1269493,1.9519044,1.8272047,2.0956326,1.8925378,1.8656113,2.5156398,2.3704476,2.1453824,2.3043017,2.1939714,2.1280708,1.9242946,1.7010005,1.3997393,1.3553401,1.2613255,1.2543588,1.3734108,1.3865876,1.3061248,1.0117846,1.5484431,1.9705741,1.7101486,1.420168,1.447164,1.6011136,1.4971995,1.2177539,0.98582673,1.1011927,1.1601138,1.315477,1.5561413,1.200495,1.0459996,0.995425,1.0892613,1.2316375,1.4185011,1.3562927,1.2463272,1.3067484,1.3424946,1.2152574,1.0470057,0.77085125,0.79992026,0.91694367,1.150122,1.3185959,1.0781419,1.0122383,1.4877862,1.5462327,1.5505153,1.4767544,1.2969472,1.3029449,1.1126639,0.9632448,0.90603244,0.9492084,1.6238862,1.8283764,1.6412518,1.452769,1.1695762,0.98769534,0.82425773,0.95438945,1.1639785,1.0244097,0.9187983,0.87709117,1.094711,1.7083954,1.22566,1.0625039,1.1436958,1.4019858,1.2020365,1.0868243,1.2743127,1.2101167,0.9818717,1.0617294,1.4442348,1.5703998,2.6174538,2.1242766,1.6581097,2.080162,2.4400468,2.2357123,1.8257995,2.1018026,2.1566389,1.7169337,1.6054606,1.5274557,1.4751704,2.0278594,1.899205,1.7226005,1.6298732,1.7627728,2.2169762,2.7374682,2.5070403,2.1882591,2.097546,2.1838222,2.1509523,2.0973861,2.2689006,2.2360826,2.3044448,2.2662866,2.1307147,2.0313685,2.0420086,1.978939,2.056645,1.8815341,1.6990762,1.5844296,1.6181216,1.4884546,1.4053226,1.3162351,1.1079073,1.1528082,1.4174639,1.3033959,1.3893837,1.2575166,1.1265261,1.1105202,1.3458068,1.2601054,1.1284645,1.030787,0.84361637,1.3355386,1.4932594,1.3318874,1.3062,1.2035843,0.95253146,0.82824993,0.87476826,0.81084186,0.837683,0.96048135,0.80383927,0.9443278,0.8118923,0.53622144,0.5617424,0.7795039,0.63443816,0.5641806,0.70121795,0.6319749,0.7752313,0.84158254,0.70675397,0.4965694,0.5019372,0.4803499,0.49735957,0.49954587,0.5084238,0.44903988,0.4323836,0.49411768,0.755558,1.2765533,1.1200428,0.9064409,0.6993869,0.69154716,0.543604,0.45602474,0.4926922,0.5468894,0.52440876,0.48976952,0.49830905,0.4807424,0.47556126,0.50604594,0.7247455,0.52729446,0.35384536,1.1928525,1.5181394,1.4849446,1.3061556,1.1891258,1.082218,0.923036,0.6630405,0.7260631,0.6496507,0.57086504,1.1274552,1.3178327,1.1125826,0.93951666,0.86098456,1.5418863,1.4490135,1.403355,1.2946446,1.2639596,1.878861,2.3040173,2.376411,2.0197253,2.1449082,2.3460135,2.5815341,2.4212437,2.2829313,2.3962717,2.3777244,2.2305727,1.9067382,1.679287,2.0426311,2.225594,2.3878634,2.1144228,1.9000876,2.675922,2.5741012,2.3752167,2.1356401,1.923436,2.0020998,2.0294116,2.1729577,2.1075578,2.0381262,1.9776115,2.2428155,2.4505482,2.3466468,2.3680758,2.8144898,2.6610274,2.732533,2.4842436,2.6534774,2.5651913,2.2319694,2.0892594,1.9289988,2.2178307,2.3023944,2.2088447,2.228081,2.2268186,2.1153486,1.9961419,1.9613757,2.9675548,2.6692567,2.794674,2.875786,2.7983222,2.728478,2.5360262,2.7303977,2.7040443,2.5697865,2.504735,2.3309927,2.2334497,2.1980448,2.0176997,2.318435,2.1484396,1.651343,1.8787171,2.0008626,2.2126155,2.4731572,2.2465868,2.0313284,2.0142152,2.2084193,1.8924721,1.9094961,2.1204932,1.8533142,1.7094927,1.8103082,1.7551202,2.2927752,2.4636369,2.2846599,2.1850133,2.2827013,2.2585886,2.1544757,2.385395,2.2729714,2.67599,2.4237568,2.1540425,1.6942594,1.7099428,2.1789577,2.6072838,2.137513,2.026674,2.1239738,2.4590573,2.15798,2.3446336,2.5324352,2.3275523,2.1938484,2.0815802,2.1553981,1.938801,1.8621771,1.8620307,1.7974524,1.6036644,2.1005242,2.4109063,2.0995688,2.0498867,1.9378133,2.7038815,2.7128494
+1.6815155,2.4757276,2.7119694,2.7873335,2.6791177,2.5377684,2.4778333,2.4384751,2.2995238,1.9035844,1.7479242,1.8081071,2.787797,2.6948965,2.5857782,2.6229484,2.5500095,2.5426445,2.4377239,2.375905,2.213172,2.3694816,2.5139399,2.378043,2.1195974,2.0544255,1.9248857,2.4788456,2.3949637,2.6459458,2.886786,2.841484,2.7529347,2.7710695,2.7156656,2.677426,2.506165,2.2891133,2.063344,2.023482,1.9094381,1.8066274,1.691979,1.7705946,1.6153961,1.2230313,2.3694358,2.5556326,2.2958088,2.885068,2.7334402,2.5478716,2.4866161,2.2981424,2.1538327,2.0225706,1.943838,1.7700955,1.8885181,1.6394105,1.7464445,1.7170682,1.9221518,2.5153253,2.6420345,2.6107569,2.6848283,2.511182,2.3372343,2.1614075,1.9994982,1.83099,1.8401959,1.7396028,1.8408008,2.0104709,1.7921079,1.6522698,1.6034629,1.711319,1.6212127,1.7207718,1.51916,1.4646952,1.3408428,1.2166401,1.1454427,1.155762,1.7304013,2.2015932,1.8333578,1.7403096,1.5893788,1.5121233,1.5171206,1.4805453,1.507204,1.3760626,1.3832297,1.3602657,1.2308896,1.3188319,1.3385458,1.224753,1.8974984,2.2177434,2.2351418,1.9758182,2.0440924,1.9354885,1.7974763,1.5426354,1.6162472,1.7102159,1.7725263,1.9805497,2.244732,2.4787402,2.2857606,2.064996,1.9573185,2.023362,2.0062315,1.9083006,1.8059301,2.0376704,2.2625284,2.13458,2.5394335,2.5796196,2.3205428,2.3563304,2.6701467,3.3815684,3.1661506,2.942237,2.8510423,2.791875,2.6792521,2.6300821,2.610017,2.6579914,2.7000148,2.7212296,2.5600262,2.5072212,2.5195913,2.516018,2.3406563,2.6094742,2.5000243,2.4131498,2.3680496,2.2399285,2.0355568,1.925551,1.912361,2.23351,2.1785383,2.1609292,2.2294776,2.0485716,2.0625436,2.0431852,2.1195736,2.1982527,2.2300267,2.1401396,2.1200576,2.5038173,2.494517,2.3338163,2.2851586,2.1695051,2.0284512,1.8805848,1.8459463,1.7943326,1.5669127,1.7000766,1.6283017,1.6753392,1.7444358,1.4391812,1.2271647,1.2909502,1.1798388,1.127413,1.1541345,1.060511,1.2271652,1.2559214,1.0444509,0.8828461,0.9293947,0.8953193,0.8811409,0.81130725,0.93043685,0.81933594,0.80812263,0.8816038,0.89328146,1.2924991,1.5597794,1.2562639,1.0579163,1.0116489,0.9629033,0.8671562,0.8817086,0.9075141,0.86050147,0.8104182,0.83984643,0.76449287,0.81785065,0.7427795,0.9605055,0.7719971,0.6471957,1.9305077,2.2278552,2.2402892,2.1003242,2.032173,1.9847176,1.8380969,1.6572976,1.6311054,1.5657097,1.4625528,1.5571073,1.9369825,1.6461353,1.3262994,1.0880425,1.4604464,1.4857795,1.4675651,1.4281453,1.0343374,1.4497374,2.3688293,2.7297735,2.3897748,2.1130464,2.4431162,2.8089101,2.7983904,2.8164165,2.755692,2.8437402,2.8161771,2.5538104,2.3681781,2.6554885,2.7529166,2.854114,2.7674716,2.6490335,2.8083818,2.8379767,2.819232,2.686471,2.4994068,2.5315897,2.607454,2.5507827,2.5104551,2.5056815,2.427915,2.4905663,2.6722221,2.6316524,3.0196762,2.9062495,2.9300945,2.8867674,2.818606,2.9366903,2.840257,2.8698354,2.7501562,2.5870185,2.6676068,2.7142403,2.722229,2.7305813,2.7014966,2.594843,2.5577374,2.55634,2.7881272,2.8651605,2.8241105,2.947091,2.9284954,2.908319,2.8401804,2.788958,2.9046552,2.7676368,2.8569355,2.8035223,2.746089,2.6580455,2.6177201,2.6436427,2.660223,2.479327,2.487701,2.5527377,2.8309436,2.821308,2.7886498,2.7187707,2.6903062,2.6318824,2.516004,2.5462449,2.7560387,2.5373902,2.485358,2.6099136,2.569448,2.7064922,2.7827942,2.7275772,2.692616,2.7378697,2.7370467,2.5081336,2.6569674,2.6398106,2.693138,2.804211,2.6316798,2.3583317,2.3076706,2.5527267,2.9172103,2.7445178,2.6966844,2.6478224,2.8997464,2.786538,2.872655,2.9397712,2.8456244,2.7165523,2.7050812,2.5583751,2.5158644,2.4953334,2.4300241,2.303608,2.157076,2.5230966,2.830746,2.7406683,2.6842918,2.6037974,2.6528378,2.8432293
+1.3872862,0.9729164,0.60421294,0.5423103,0.27198067,0.51231354,0.7259052,0.38544554,0.46956134,0.5640557,0.78690696,0.66190094,0.42440727,0.6697059,0.87053186,0.8832978,0.7255683,0.67869115,0.7169679,0.5735135,0.46477458,0.9377257,0.85300946,0.64142275,0.7218791,0.8493093,1.0743483,0.7876441,0.71912193,0.9181452,0.8867062,0.7978107,0.60660166,0.779675,0.7904502,0.48804674,0.5480717,0.72687304,0.6776959,0.39912435,0.41398728,0.53410184,0.7405237,0.8760972,0.8187421,0.7550908,0.8718793,0.7338753,0.6752695,0.5592296,0.53711027,0.42200762,0.2060582,0.14590701,0.37717175,0.6628493,0.58324647,0.72046864,0.8565461,0.8926383,0.7199404,0.858418,0.9076078,0.72212684,1.1825244,1.1566304,1.0938506,1.1725926,0.9944288,0.63379097,0.50793475,0.6785298,0.93735385,0.9446189,0.91753083,1.2756221,1.2212588,1.0074557,0.78038526,0.64612466,0.54908156,0.6330029,0.46188426,0.5813522,0.6624868,0.39195347,1.1427224,1.0339417,0.97333765,0.56446725,0.5937894,0.95038986,0.7007911,0.52220845,0.38097948,0.22903875,0.428022,0.4224966,0.5755746,0.64059234,0.35133594,0.3048664,0.53342044,0.5715366,0.5122275,0.68143076,0.49508333,0.6087177,0.662918,0.45731813,0.2564415,0.3985044,0.49677467,0.3749103,0.6165408,0.6586276,0.40563583,0.35751632,0.81688416,0.96883047,0.7840564,0.6633456,0.49090534,0.37651634,0.29361904,0.27924964,0.5124248,0.4457231,0.38857234,0.22890529,0.070083134,0.019631706,0.2254937,0.4924788,0.7287191,0.56606495,0.42388183,0.2635617,0.4863127,0.3823352,0.40155,0.69491994,0.8647385,0.62717295,0.3862209,0.53160095,0.6852126,0.5983137,0.45898286,0.45365322,0.32579705,0.2666787,0.495105,0.37566826,0.33250695,0.17202589,0.046645954,-0.06897903,0.070344746,0.55912995,0.78414696,0.64901507,0.81124073,0.75691086,0.5855289,0.6421703,0.7794593,0.5327776,0.4951374,0.6756261,0.61253977,0.4452172,0.47822446,0.4880829,0.721818,0.9898856,0.817184,0.6530662,1.0234216,0.97739065,0.8072234,0.8527783,0.77502465,0.5473308,0.5250654,0.565017,0.4857197,0.46042305,0.6674937,0.6666783,1.0031546,0.80966413,0.5715707,0.5321224,0.77101356,0.9356455,0.78650534,0.60117435,0.6022893,0.46025887,0.5947556,0.76962936,0.8322393,0.7549052,0.6628029,0.7030835,0.7907585,0.7641128,0.6621846,0.85610956,0.6691724,0.6998366,0.8315749,0.7699869,0.7516545,0.8399151,0.73544204,0.7721927,0.7494249,0.7175221,0.71996784,0.6889216,0.83739483,0.78140783,0.8881793,0.86877894,0.8463499,0.6926024,0.6618527,0.7277871,0.61922306,0.6085168,0.8774779,0.8423389,0.6538982,0.4609531,0.3174329,0.61859965,0.6002707,0.6245804,0.573177,0.7809273,1.1231154,0.95453274,0.91999763,0.906525,0.86219156,0.7192788,0.6591217,0.49052918,0.34225142,0.20723727,0.08504068,0.076512046,0.058017172,0.20934102,0.41221362,0.4757592,0.47998685,0.34138012,0.39666164,0.52277446,0.5999024,0.50984794,0.31404054,0.33671403,0.38700867,0.42347988,0.37363866,0.8424407,0.7415492,0.53300655,0.49902418,0.43355933,0.29002962,0.45828602,0.28212172,0.47873574,0.642565,0.51571405,0.449565,0.4480593,0.5319362,0.4304818,0.97915864,0.85687923,0.5956554,0.6900008,0.63159275,0.6794052,0.5879915,0.6790866,0.7699564,0.6694027,0.60101384,0.841363,0.96017367,0.95751286,0.958124,0.7447416,0.8373373,0.7331208,0.49925864,0.44607955,0.47512835,0.36574522,0.49928215,0.62838316,0.6404195,0.6559323,0.56628007,0.5483121,0.41151094,0.5766487,0.64325476,0.5310633,0.4891922,0.65050113,0.63729566,0.63330996,0.5607912,0.39786756,0.52704823,0.7717895,0.9660649,0.74347913,1.2262871,1.0701947,1.316112,1.0780522,0.90015566,0.5467113,0.39411068,0.338831,0.49554276,0.5436457,0.51070756,0.45146435,0.55305016,0.7699598,1.3154854,1.0903239,0.8414219,0.7642524,0.6415592,0.36233833,-0.0036766753,0.06777566,0.16581178,0.1981861,0.13488826,0.4813913,0.5049541,0.6582316,0.87779814,0.62779546,0.36708724,0.512217,0.8608376,0.6842965,0.8228922,1.0963855,1.0780623,0.83081865,1.0079
+0.72965777,0.24312696,0.21254234,0.7437999,0.04581915,0.5559006,0.8756081,0.4896428,0.08985377,0.41303343,0.88399553,0.73806477,0.70470446,0.7853658,0.76025474,0.6526775,0.4895655,0.40183175,0.16778569,0.35156024,0.45798194,0.48794717,0.46549743,0.23946181,0.23666435,0.3249873,0.21773356,0.20025069,0.46008068,0.47734815,0.6700884,0.8585608,0.7543667,0.6033495,0.65460217,0.3926264,0.2647801,0.30533633,0.2875542,0.4960823,0.9598706,0.97864074,0.9717052,0.9294981,0.8676277,0.685169,0.6579463,0.5824636,0.3760386,0.3006185,0.16743872,0.025329925,-0.06970962,-0.12622029,-0.12508315,0.16706161,0.37333128,0.56597656,0.6946122,0.6155553,0.322077,1.0460417,0.82057446,0.43719617,0.222942,0.38974726,0.4734375,0.45324966,0.20980655,-0.051184513,0.7370895,1.0461211,0.94325227,0.62772346,0.37864533,1.498265,1.4550109,0.8960119,0.43166655,0.18872602,-0.07278099,-0.11989158,-0.20177186,0.015242375,-0.045038693,-0.32443702,1.1995647,1.0228043,0.58661795,0.2869309,0.35724834,0.7748004,0.46301264,0.1887759,0.00436119,-0.16427433,0.2551584,1.1259513,0.7602657,0.30945945,0.063346595,-0.04396265,-0.07611286,-0.12124782,-0.2862714,-0.17266959,-0.013617165,0.102663144,0.042435378,-0.06874903,-0.25008664,0.21241337,1.156282,1.1592728,1.8305376,1.3038952,0.6629781,0.37287465,0.3115235,0.43769163,0.31603277,0.15541948,-0.029598303,0.4077133,0.7206965,0.37746787,1.2169857,0.9353416,0.5447711,0.41906548,0.1624032,-0.018014178,-0.059363417,0.2435106,1.1115335,0.67189777,0.404325,0.2053324,0.3292133,0.2993846,0.63058984,1.390086,1.2380682,0.81723624,0.56162184,0.6579634,0.91811466,0.71809417,1.0731302,0.92200816,0.66450226,0.45913506,0.5110804,0.3980223,0.30908656,0.17448333,0.081331104,-0.016608752,-0.11634215,1.1146975,1.1306674,0.8641169,0.7203576,0.7134257,0.5461751,0.5027156,0.6863908,0.59591585,0.3671836,0.5764717,0.48329163,0.3513638,0.66839415,1.3314219,1.5676527,1.3884857,1.2287664,0.93483365,0.9609724,0.74460554,0.7117876,0.8579199,0.637817,0.49645334,0.68020403,0.65359175,0.5738412,0.4230035,0.50604886,0.5407221,0.72221184,0.64738554,0.5022235,0.3788014,0.40432143,0.6659918,0.62206787,0.45666385,0.41437775,0.621152,0.7794869,0.7318438,0.774778,0.65591735,0.4675455,0.40069672,0.46377206,0.39565018,1.2610407,1.1899569,1.0100428,0.82503414,0.9420878,0.7731254,0.6370925,0.62070245,0.6979556,0.67073,0.60496104,0.5337983,0.51407135,0.46834332,0.5176565,0.4661625,0.49706846,0.2539925,0.21209586,0.24227744,0.24327704,0.21243636,0.22355756,0.28439668,0.34430194,-0.089871906,-0.3461848,-0.4217881,-0.052773543,0.34925646,0.19434804,0.11338349,0.09718695,0.52295166,0.718963,0.81769097,0.56654954,0.55702335,0.29682177,0.04917577,0.14794177,0.17656961,-0.49764776,-0.7584182,-0.76234543,-0.90069014,-0.6059985,-0.66632503,-0.9001475,-0.9569136,-0.9626672,-0.8436109,-0.65403986,-0.7345775,-0.7436567,-0.71282744,-0.690634,-0.5910389,-0.5735627,-0.2404539,-0.37686703,0.5329925,-0.18606788,-0.40362328,-0.29572776,-0.40279302,-0.2882043,-0.43140608,0.006092556,0.54014874,-0.42700768,-0.71281564,-0.77743435,-0.77527386,-0.7301322,-0.5991417,0.02503679,-0.25643718,-0.37654433,-0.64735657,-0.5563378,-0.5357732,-0.214598,0.36191016,0.08359039,0.1168932,0.6617911,0.88409066,0.9279953,0.92858326,0.93774295,0.7430764,0.6489252,-0.040012993,-0.4354692,-0.6078491,-0.69734824,-0.25668684,-0.15638608,-0.5756571,-0.66455245,-0.6750479,-0.43726212,-0.42618668,0.13458073,-0.005751431,-0.4979217,-0.48895705,0.19932106,0.4840591,0.027923398,0.21553436,0.26246488,0.026610069,0.5286835,1.0357717,1.0843693,0.97144634,0.83015794,1.1075191,1.151999,1.1291965,0.47182342,-0.123528235,0.08221355,0.88183904,1.1394879,0.99939984,0.077275544,-0.18650779,0.3108867,0.96866685,1.0604502,0.8481209,0.6580405,0.05448488,-0.3502764,-0.49433488,-0.5713506,-0.5132154,-0.5710015,-0.5706183,-0.25098893,0.39409947,0.15800816,0.73061556,0.85932124,0.35615802,0.1798301,0.5332469,0.68382025,0.61648726,0.7711433,1.1164181,1.0831451,0.8698252,1.233969
+0.94171333,0.32746547,-0.019257672,0.38222003,-0.24810463,0.62818396,0.73535275,0.33928895,-0.20286253,0.15073413,0.41261896,0.10806469,0.08973114,0.12524256,0.06454033,-0.03270208,-0.11564662,-0.19424647,-0.36878768,0.026481338,0.48529288,0.65484184,0.3440698,0.1012922,-0.06717833,-0.07878757,0.3988313,0.93969744,0.9040991,0.770224,1.2981955,1.5466166,1.3116525,1.4562428,1.2064056,0.5242699,0.32974026,0.20923918,0.06248983,0.98707163,1.7651918,2.419483,2.388879,2.6056557,2.006278,1.1365016,0.8850928,0.5216266,0.13343284,0.023897,-0.07868036,-0.21220356,-0.34987783,-0.44120038,-0.12623563,0.20453984,-0.06077408,0.11844491,1.0278339,0.4411533,1.0834535,1.9569442,1.2442665,0.5212471,0.45715636,0.8692573,0.25665665,-0.017957643,-0.21051848,0.07088464,0.81523716,0.11805775,-0.036927454,-0.16895446,0.88411105,2.6343644,2.112558,1.4617096,0.6635231,0.20631641,-0.22766852,-0.16580886,1.0459853,2.385737,1.9591223,1.1458074,0.81123066,0.40560445,0.09279319,-0.051775746,-0.28547168,-0.2572144,-0.3509236,-0.43183196,-0.586213,-0.5501204,1.3453641,1.4346559,0.9828743,0.587899,0.15220599,-0.14831576,-0.32012993,0.24286598,0.831985,0.44626176,0.21943888,0.28262952,0.8605493,0.29104906,0.0015843734,-0.21303892,1.4485748,1.291067,2.1246812,1.7286708,1.0452238,0.36049327,0.5834024,1.340131,1.4099319,0.96901643,0.34708172,0.08946595,-0.14304751,-0.3069455,0.75604254,0.6722261,0.0986786,0.039458074,-0.22699332,-0.42063975,-0.3998554,0.81322604,1.2671276,1.0818034,0.43988463,0.5051391,0.19323337,1.6638551,1.8680956,2.0696552,2.01399,1.1695671,0.5353024,1.287699,2.0165753,1.4933026,1.9250003,1.762899,1.8138971,2.6446288,2.3238463,1.8679228,1.4181352,0.8482971,0.492418,0.1658377,-0.08677953,0.19076198,1.4513551,1.2342166,1.1376827,0.8736816,0.43021762,0.1475562,0.10276266,-0.00080035627,-0.25205097,-0.14647326,-0.109739326,-0.27420676,-0.33827415,0.2950421,0.41941804,0.39185822,0.37173575,0.12389768,0.36339372,0.2475482,0.11220287,0.0378604,-0.13811398,0.12307493,0.25131857,0.27259645,0.1587739,-0.0018863156,0.19485015,0.38144588,0.5541477,0.32426107,0.2200982,0.08503305,-0.002493225,0.4392304,0.27788174,0.068238124,-0.019189052,0.020480417,0.027209222,0.18140362,0.10471875,0.14075656,-0.031599812,-0.15873212,-0.114024185,-0.1763528,0.3409289,0.48799327,0.46862772,0.20494777,0.3166015,0.32012293,0.18923324,0.29962602,0.3680313,0.31687835,0.3412622,0.21275917,0.17184743,0.12922135,0.08979198,0.037000254,-0.038274504,-0.18527102,-0.2060939,-0.17924517,-0.22161853,-0.238278,-0.18636853,-0.12079976,-0.20516336,-0.59199566,-0.68689066,-0.6021832,0.09572265,0.30391592,0.16693497,0.067265466,0.17980915,0.5217181,0.5281541,0.5127518,0.39088133,0.26203382,0.044083685,-0.032077156,0.20672378,-0.09015023,-0.6214117,-0.8340627,-0.88315386,-0.85009366,-0.4786371,-0.5991242,-0.8878721,-0.96176314,-0.9686105,-0.9104737,-0.7619506,-0.7983592,-0.93968654,-0.9616411,-0.8669005,-0.8408967,-0.69098026,-0.3494183,-0.4010222,0.80274117,-0.31805152,-0.5084542,-0.45070332,-0.6571622,-0.632251,-0.72033477,-0.178907,0.26999083,-0.85643315,-1.045272,-1.0928643,-1.1199018,-1.088359,-0.9944619,-0.16818985,-0.15910867,-0.2393685,-0.71262056,-0.6120514,-0.7013464,0.06077481,0.6290604,0.42414013,0.7346961,1.1821612,1.0976076,1.1409013,1.0251384,0.8048662,0.50707114,0.40855855,-0.18394107,-0.5451168,-0.71417415,-0.8219282,-0.42812824,-0.45295447,-0.8741106,-0.9142215,-0.88261926,-0.65268445,-0.49827242,0.49086383,-0.0844922,-0.73398936,-0.6885091,-0.027797602,0.27091646,-0.3738718,-0.29542142,-0.468984,-0.5602019,0.12400506,0.5584718,0.45853627,0.33565348,0.27352813,0.299652,0.24084425,0.49717534,-0.044949405,-0.4319039,-0.1196179,0.23509872,0.6906074,0.3799659,-0.29248208,-0.34786886,0.32280976,0.57207006,0.81207204,0.5001734,0.39222294,-0.25866902,-0.60289645,-0.6685697,-0.527394,-0.6596532,-0.76987475,-0.68492377,-0.24819618,0.27166626,-0.14599738,0.39009333,0.68504834,0.007835269,-0.045813553,0.2911743,0.49052808,0.7956745,0.7762888,0.8467593,0.57099146,1.815869,1.7162918
+0.47154096,0.1784097,-0.17587963,-0.013981067,-0.22804573,0.29053235,0.41970032,0.0987519,-0.30763173,0.24591193,0.53068894,0.22346592,0.011435904,-0.009198748,-0.07147422,-0.18199581,-0.21807134,-0.3102285,-0.43083638,-0.48424876,0.5048701,0.59524554,0.2907424,0.005328767,-0.1882663,-0.27392885,-0.045314275,0.76640284,0.566413,0.8517349,1.3611776,0.7900773,0.6464464,0.62171465,0.33985844,-0.015677243,-0.21105409,0.095235966,1.3350282,2.0062764,2.0488966,2.1942337,1.8084193,2.1279364,1.5759516,0.66900724,0.4393977,0.43058538,0.10554088,-0.042550065,-0.124291964,-0.2641476,-0.38901964,-0.48622757,-0.63079953,-0.027131133,-0.07590973,-0.04707951,1.0513332,0.4835204,0.009742744,0.84087193,0.5843338,0.04594534,-0.060868554,-0.017205529,-0.3359638,-0.4104126,-0.45213902,-0.27770036,-0.27239728,-0.5406158,-0.6055863,-0.5625837,-0.60943794,0.7630513,0.21956256,-0.065782,-0.26798773,-0.49587798,-0.70890164,0.39753237,1.2302208,1.0695326,0.7051149,0.21987411,0.12272448,-0.008106895,-0.21071428,-0.2593233,-0.29137623,0.37648585,-0.2097488,0.33966744,0.43142408,0.3122793,1.0650842,1.3918651,1.3312666,0.85635287,0.38432103,0.02672889,-0.2905,0.91702753,1.3500816,0.755318,0.3639546,0.7852923,1.4574587,1.5328083,1.5582719,1.2147235,2.075681,1.6957142,0.9847857,2.4672694,2.0546465,1.5588145,1.8306823,1.8221112,1.232944,0.7259734,0.18071148,0.45408463,0.67014575,0.18967691,0.668116,0.64333117,0.15388474,-0.002881229,-0.2074818,-0.38027918,-0.54597276,0.12766361,1.2750345,0.8298859,1.315015,2.1824083,1.5707126,0.95019466,0.5170452,0.6410833,1.0898998,0.4786176,0.17150983,0.27014226,1.232564,0.9546405,1.3865634,1.309602,1.005754,1.232427,1.2644631,1.008571,0.64072,0.3415486,0.086743556,-0.21048972,-0.43710732,-0.5089185,0.97772956,0.79451793,1.3671381,1.1962574,0.68134165,0.35221866,0.68096817,0.7785414,0.58796036,1.4664536,1.0164264,0.5000724,0.23338348,-0.004020132,-0.07904128,-0.1872021,-0.27072617,-0.39845014,0.08840015,-0.0066926703,-0.1625886,-0.076916896,0.103995614,0.23905903,0.22387642,0.16817498,0.058431618,-0.079173066,-0.011473604,0.19096106,0.39514732,0.1892606,0.039673142,-0.08932438,-0.13877821,0.32773402,0.14815392,-0.061485462,-0.059872843,0.030315481,0.0072854534,0.0076263025,0.18742701,0.38675517,0.24907097,0.049129017,0.014275193,-0.0025489107,-0.009217732,0.16743708,0.22605053,-0.0033669472,-0.019724362,0.01537735,-0.12418521,0.0059300885,0.32903054,0.391513,0.3745643,0.2478272,0.16290018,-0.031926714,0.2182386,0.20782426,0.08326537,0.012121595,-0.14170626,-0.16910982,-0.21504846,-0.22268707,-0.21486792,-0.31163776,-0.19901994,-0.5518627,-0.614829,-0.5538248,0.19399774,0.28928763,0.20761451,0.05323668,0.086233616,0.3719419,0.27175513,0.33958897,0.2966568,0.2524209,0.12881902,-0.07737956,0.1326642,0.04392837,-0.4118817,-0.7035022,-0.7772074,-0.7544046,-0.5242613,-0.49801385,-0.7297071,-0.9652293,-1.0391488,-0.8777782,-0.5325631,-0.95161164,-0.96871257,-0.9503701,-0.82089597,-0.70098984,-0.48313224,-0.20291573,-0.24749953,0.4432118,0.09370624,-0.39256138,-0.42422903,-0.6902325,-0.61786693,-0.6383265,-0.21053916,0.35949308,-0.7228731,-0.9564251,-1.0058557,-0.99900377,-0.96644783,-0.83158684,-0.060586356,-0.13383815,0.1434933,-0.69032884,-0.48908395,-0.47779918,-0.046889476,0.7292335,0.31947032,0.37059623,0.77546984,0.6755718,0.6399002,0.7290303,0.4423493,0.32490548,0.20057437,-0.3030225,-0.5945295,-0.5832039,-0.7048888,-0.4034299,-0.2092596,-0.6816642,-0.849842,-0.8876157,-0.6511302,-0.40156937,-0.052938603,0.037255257,-0.7868978,-0.7094211,-0.18398967,0.26778218,-0.3032542,-0.22080606,-0.32907304,-0.5006912,-0.0059798807,0.16739267,0.10659049,0.08150669,-0.06409945,-0.0118670985,0.018727683,-0.03244231,-0.0882835,-0.50277966,-0.29918134,-0.2049273,0.3704408,0.11988194,-0.43707168,-0.2937073,0.15134296,0.14003316,0.6329303,0.38960603,0.35561118,0.038917094,-0.4625756,-0.5820813,-0.41585714,-0.57287645,-0.8102433,-0.7029768,-0.112603985,0.3277959,0.011936478,0.09973469,0.30406368,-0.114215426,-0.2805991,-0.024837948,0.19172043,0.5092914,0.45139906,0.7093757,0.40577596,1.5243206,1.4246194
+1.1543672,1.78788,1.9596658,1.7026203,1.6822121,1.5087826,1.8997641,1.8608454,1.8686162,1.5989611,2.5102262,2.78657,2.7527843,2.5457592,2.2341597,2.0275996,1.8147255,1.581495,1.2996665,1.5375631,2.574648,2.5691826,2.474132,2.1880808,1.8627074,2.3790097,2.8526256,3.0660987,2.8158717,2.964201,3.169302,3.0532498,2.937372,2.8667588,2.6702054,2.175289,2.03341,2.3745832,2.3810203,2.9276438,3.0391169,3.0960834,2.972183,2.896327,2.705843,2.2126212,2.4557006,2.7352467,2.5780516,2.2343435,2.145662,1.8090988,1.4644868,1.174222,0.9853488,1.5851212,2.559104,2.9159012,2.6042972,2.1107907,1.8581135,2.0553617,1.780268,1.3872178,1.9129899,2.4542878,1.9316856,1.3880618,1.0637213,0.62583387,0.24393249,0.08643568,0.12366442,0.09587604,0.8741753,1.877589,1.2266376,1.0107619,0.6916173,0.24864048,0.017265826,-0.14398432,-0.27641225,-0.38844144,-0.34806082,-0.48881924,-0.53303766,0.30205673,0.06985487,0.0012334064,-0.16486213,0.2799502,0.06909753,1.692088,1.9504492,1.6038153,1.7235779,2.3172143,2.3240724,1.8896792,1.367799,0.8381331,0.44892067,0.639294,1.4193406,0.794593,0.52930695,0.66477084,0.8760731,0.4126899,0.9337597,0.883373,0.79094434,0.43776736,0.19881807,0.48255774,1.621007,0.7989736,0.9049126,0.77688944,0.68556106,0.32294354,0.6793895,0.8995222,1.2770693,1.1248665,0.8716854,0.5902817,0.27285573,0.16112077,-0.062466405,-0.19228142,-0.22306377,-0.24794212,0.7166354,1.6917417,2.6575553,2.9693708,2.742981,2.552805,2.291731,1.9888102,1.797538,1.4047694,0.87480146,0.48995987,0.3279352,0.48384938,0.36723047,0.19008082,0.05597078,-0.096742176,0.15795282,0.28166184,0.124380045,-0.14970726,-0.26873222,-0.4395672,-0.46188718,-0.4662941,-0.29813638,0.64696866,2.153356,1.8987228,1.5888451,1.1877759,0.78706086,0.63679785,1.0513661,2.452231,2.080534,1.7881978,1.3856001,1.0407946,0.7346583,0.3532681,0.19313082,0.2662843,1.1451588,1.0434424,0.66611993,0.56723946,0.6844036,1.1340953,0.9359143,0.8104911,0.78030634,0.63263977,0.53644776,0.3644457,0.36861444,0.029056855,-0.1399146,-0.19763947,-0.31804097,-0.13574645,-0.27934211,-0.44048107,-0.469756,-0.35920805,-0.4199686,0.2823049,1.9139805,1.9803296,1.8086416,1.5888345,1.452013,1.4185746,1.256631,1.041059,1.093827,0.85640705,0.68770546,0.5390569,0.38184804,0.31505206,0.7287006,0.95322955,0.7878511,0.6378785,0.5525488,0.34920633,0.6063343,0.5872241,0.51335007,0.57315826,0.4756147,0.34620845,0.27669945,0.22044078,0.20845632,0.47104865,0.96984094,0.84459496,0.5655587,0.6418507,0.97465,1.1826446,1.3811828,1.4417231,1.4656115,2.2130866,2.2309775,2.3071709,2.1854818,2.115865,1.9242156,1.6879514,1.8224659,2.0038323,1.7403235,1.340947,1.0616324,0.7500761,0.9192692,1.4554658,1.1621939,0.82702017,0.6397478,0.54465026,1.0349729,0.82130516,0.47628722,0.58990186,0.8252638,1.2876893,1.0198509,1.3401638,1.3677577,1.5516443,2.207807,2.0305672,2.019513,1.856348,1.776943,1.8332376,1.6197352,1.6563418,1.7012581,0.9633012,0.7212877,0.70768154,0.7446569,0.82712436,1.5382023,1.5539554,1.2890668,1.327004,1.1081499,1.3002049,1.549629,2.017976,2.445473,2.426535,2.5329318,2.6695874,2.6603575,2.5436623,2.3066168,2.1558335,2.104604,1.7209816,1.4618479,1.4314955,1.1782086,1.4820453,1.5322638,1.1619077,0.81428236,0.5095877,0.9349227,1.161631,1.1582378,1.4536079,1.0719796,0.7879744,1.3126962,1.3330072,1.3382173,1.2189384,1.401465,1.0669508,1.2218554,1.2932299,1.1900545,1.1779735,1.0178297,1.0222479,1.1295701,1.1260915,1.417984,1.0457122,1.046169,0.978139,1.5060039,2.2182312,2.1231327,1.9768622,1.9565291,1.9773514,2.1727715,2.4258194,2.3106449,2.2807205,1.7934167,1.4038182,1.0667777,1.2021224,0.9682291,0.8634103,1.1735902,1.4484954,1.429048,1.4020748,1.3804902,1.3705167,0.9168649,1.2696342,1.524932,1.7039732,1.8187879,1.8722268,2.0375912,2.1980407,2.5641885
+1.6444347,2.4552078,2.7558093,2.4873068,2.639879,2.3251529,2.4601436,2.4178352,2.7122288,2.225561,2.4317188,2.797203,2.818336,2.591259,2.396789,2.3219972,2.2027779,2.0507894,1.9350252,1.8696364,2.8413548,2.6202924,2.602774,2.5234141,2.4337616,2.3596566,2.3906257,2.5228176,2.4136565,2.8404694,2.7615633,2.7407608,2.7950463,2.660005,2.763784,2.4830766,2.2072077,1.8403555,1.5871897,2.6081016,2.6398888,2.8987784,2.8713539,2.78603,2.7983217,2.4078832,2.711531,2.782724,2.7975025,2.5935905,2.6084306,2.5206068,2.2179713,1.9585761,1.7813518,2.763586,2.8214216,2.7994552,2.664198,2.4279428,2.1449432,1.937082,1.854521,1.7779727,1.8622746,2.0220306,1.7468532,1.5780967,1.4615649,1.1378558,0.96278536,0.8500565,0.76750106,0.65889966,0.6520061,0.9536488,1.1011423,0.9671135,0.86258596,0.6469598,0.61278105,0.57560825,0.5648581,0.5423703,0.5793869,0.58555275,0.5876522,0.6152118,0.70984346,0.6926906,0.54278684,0.5430962,0.6291375,1.4595368,2.4174628,2.156499,2.1776073,2.6935682,2.3563793,2.2840493,2.1297865,1.8827561,1.6940019,1.7810187,1.6038575,1.5061083,1.4581242,1.2023816,1.0566274,1.0652461,0.99550056,1.0058018,0.85991037,0.9594048,0.85149175,0.7609831,1.2419367,1.5040215,1.8780543,2.0178804,2.1847248,1.9732099,1.8741472,1.8961275,1.6793952,1.9414419,2.1654546,2.0353131,1.9000723,1.8362143,1.6233506,1.3454442,1.4101226,1.2303538,2.2735784,2.4499822,2.7078035,2.6012168,2.4969482,2.4616773,2.3930967,2.506241,2.4786932,2.3578813,2.1586754,1.9081185,1.6246827,1.4361931,1.4548688,1.5336134,1.2857416,1.1212499,0.9693354,0.96507126,1.0065318,0.8512402,0.6934618,0.61514556,0.72530705,0.6633582,1.0402676,1.5842888,1.4622728,1.5458021,1.3340261,1.10554,0.8602656,0.87551033,0.94347024,1.6544809,1.6172616,1.5288117,1.3227203,1.1514974,0.97204834,0.7936275,0.6935404,0.6097731,0.7382416,0.99105036,0.85002327,0.7363459,0.6767129,0.7109348,0.7068063,0.6526209,0.6385369,0.47231972,0.5314411,0.47655606,0.6183731,0.4624555,0.34842402,0.31373334,0.23705912,0.47061273,0.5553465,0.61411136,0.5456032,0.47149897,0.41977078,0.39306104,0.8378751,1.156791,1.237392,1.159518,1.0520372,1.1152589,0.9357194,0.85880375,1.0927663,1.0028461,0.89297235,0.77736604,0.6797879,0.6526669,0.5037897,0.56744653,0.6435116,0.51234835,0.4281548,0.3108522,0.3683285,0.55293745,0.49320066,0.6426829,0.631963,0.44163352,0.329904,0.42719036,0.45086166,0.48128137,1.1001043,1.2399472,1.1116258,0.99204195,1.3953571,1.2880076,1.4398047,1.5791216,1.6175945,2.5004454,2.2150419,2.141942,2.4650047,2.4764125,2.4204779,2.0473156,2.1861968,2.3601136,2.4568577,2.730134,2.5944815,2.4143698,1.8318791,1.8830273,2.1105175,2.440114,2.1963358,1.8622165,1.9396687,2.2685785,2.083952,1.8979425,2.0882652,2.307117,1.751064,1.6491065,1.9320672,2.6535072,2.605441,2.716358,2.7268305,2.9661186,2.5850072,2.3805234,2.1305509,2.166297,2.7365456,2.49857,2.1434777,2.014286,1.7497505,1.7038343,1.8054395,1.7484684,1.7780025,2.3482034,2.5226989,2.293737,2.2424912,2.398109,2.5906763,2.4589572,2.5818384,2.768706,2.61748,2.6066341,2.5840409,2.4874787,2.5804045,2.5021715,2.6222959,2.246075,2.3150012,2.361277,2.4185152,2.3998547,2.1370606,1.8712039,1.9997402,1.8951819,1.8262202,2.197349,2.468983,2.5119388,2.3682172,2.216271,2.4981232,2.0574267,2.2467566,2.377539,2.3187346,2.0382557,2.1088848,2.3406181,2.2471786,2.1958709,2.245152,2.2884727,2.5462542,2.3253558,1.8824568,1.9461037,2.3578095,2.7181392,2.8003664,2.7585788,2.5433764,2.2732458,2.9667356,3.08185,3.0544894,2.941114,2.8519018,2.9164948,2.4259405,2.6415377,2.7714977,2.7378392,2.216395,2.256716,2.5076895,2.1414833,2.1320338,2.5405738,2.0458112,2.1482997,2.2848117,2.3894777,2.384944,2.4809859,2.5378158,2.5097935,2.6057034
+0.9960367,1.6450025,1.9873674,1.8498436,2.0252707,1.786412,2.0637944,2.0078657,2.036414,1.5404924,1.5396197,2.0321586,1.9087387,1.5959101,1.411836,1.3835119,1.2569599,1.0856532,0.8663286,0.7073607,1.896136,2.3513167,2.228823,1.9848802,1.7321217,1.4506023,1.3364358,1.6110542,1.8271544,2.6777074,2.6319752,2.5456758,2.5886636,2.434946,2.323201,2.0207527,1.6327267,1.278131,0.946481,1.8854076,1.8493526,1.7735525,2.1421297,1.8393011,1.7856965,1.2059927,1.1423876,1.6785096,1.4703027,2.1079812,2.3312464,2.0924597,1.6843412,1.2952085,2.1593785,2.8346026,2.7585194,2.759404,2.4765127,2.0318475,1.5905361,1.9277942,2.2328644,2.3062239,2.6296878,2.7158558,2.3514404,1.9569885,1.6714526,1.2405701,0.8753729,0.53579855,0.27795002,0.26036114,0.16984361,0.5048489,1.3292427,1.0748982,0.82172257,0.46970218,0.27358818,0.22014466,0.3497284,0.16123134,0.13674821,0.12802984,-0.025858,1.0032811,1.626071,1.2115271,1.0043161,0.58439577,0.47246727,0.27339688,0.18672554,0.34716555,0.28245568,0.19215333,0.10052184,0.14302212,0.36632043,0.2118401,0.10866202,-0.046981744,0.7980554,1.153165,0.63429356,0.6123536,0.3401051,0.1513072,0.041170992,-0.05722121,-0.105227984,0.023761518,0.035828017,-0.09500978,-0.053144895,0.13583836,1.451214,1.0557554,0.8121507,0.61908466,0.57580173,0.70318663,0.63536465,0.45946693,0.5292982,0.35966992,0.5342242,0.4093815,0.23571357,0.07898872,0.009900503,-0.086798154,-0.17113441,-0.044860832,0.44737202,0.6781744,0.94534725,0.90474224,1.1495252,1.4335742,1.6392155,1.4831781,1.0691247,1.0363063,0.77013594,0.7595022,1.0225457,0.91962045,0.60394853,0.40506774,0.24790916,0.17060274,0.24420992,0.09169688,-0.14526784,-0.25191793,-0.28695455,-0.3414657,-0.38644478,-0.43350738,-0.4067468,-0.21452406,-0.30290875,-0.45220345,-0.47040325,-0.46835536,-0.52438134,0.25056255,0.7724079,0.546828,0.41265672,0.26130733,0.10458336,-0.05862149,-0.15780711,-0.23900625,-0.06436499,0.44849673,0.19070801,0.13313401,-0.05049277,-0.15671921,-0.25368142,-0.30068696,-0.34042415,-0.43559456,-0.40699488,-0.44659853,-0.3574667,-0.37337708,-0.46965235,-0.5320604,-0.5888746,-0.5761254,-0.20065776,0.3252864,0.17938241,0.05756981,-0.062739365,-0.13572428,-0.184643,0.06635482,-0.057612576,-0.26794407,-0.3166013,-0.29923525,-0.42832857,-0.54031414,-0.47887778,-0.5258935,-0.54069674,-0.5495448,-0.5705722,-0.58296037,-0.5756347,-0.48569417,-0.42486274,-0.49790293,-0.5554196,-0.59932786,-0.17599642,-0.21436456,-0.36806667,-0.2127609,-0.268977,-0.47241515,-0.57761127,-0.5092853,-0.5287362,-0.5165056,0.9550705,1.0466609,0.75315285,0.6125145,0.41058117,0.7874926,0.82111824,0.87426054,0.76047397,1.1471496,1.3151826,1.1529315,1.4553171,1.2411225,1.1133949,0.88315415,1.3249276,2.1078284,2.064721,2.0864956,1.9031682,1.6128771,1.5317261,1.5654342,1.8776515,2.145362,1.935185,1.5037589,1.4870734,2.758467,2.449047,2.0276632,2.041342,2.2376273,2.0758817,2.2860081,2.3339438,2.531649,2.923667,2.7845078,2.6941428,2.7031662,2.502197,2.4108367,2.2065132,2.4751222,2.7092552,2.3450387,1.7683887,1.556681,1.2970691,1.2686703,1.5864673,1.5476255,1.8809787,2.1314666,1.9426668,2.0006878,2.0021892,2.4916954,2.6020877,2.6804395,2.6875834,2.683732,2.5726724,2.6621451,2.624367,2.4239929,2.5179396,2.4450448,2.3654413,2.1446588,2.078511,2.030702,1.9826806,2.0497444,1.8208219,1.5233564,1.4004487,1.4090388,1.8419466,2.2912436,2.4739273,2.2518945,2.0508635,2.0422184,2.16783,1.6433077,2.1489897,2.2866526,2.205071,1.8952348,2.1165762,2.1667266,1.9142423,2.1685994,2.226506,2.1739917,2.3672197,2.085902,1.5697647,1.840426,1.988368,2.401836,2.2845047,2.1854296,1.8563209,1.6669273,2.4392457,2.6552505,2.5019279,2.7271638,2.656003,2.6039314,2.4777226,2.6446834,2.5955858,2.3759613,2.2176633,2.3437088,2.4826927,2.4590945,2.301269,2.5421584,2.5347471,2.3905702,2.488329,2.7470632,2.7024083,2.8043308,2.6987438,2.6110759,2.688364
+2.056523,2.5435019,2.7206984,2.6166697,2.69307,2.257146,2.3670735,2.5979838,2.4925416,1.7613969,2.7481031,2.9578128,2.936142,2.7414908,2.7960186,2.633597,2.712737,2.6918423,2.4607506,2.170672,2.2988293,2.373342,2.5152378,2.241901,1.9626126,1.6347091,1.4737756,1.8465147,2.363169,2.310852,2.3281307,2.5691943,2.6212468,2.6203642,2.5922513,2.3190794,1.9036392,1.5773654,1.2223938,1.2917902,1.2291719,1.3257158,1.7517841,1.7077315,1.6716058,1.0532302,0.83374435,1.0961049,1.1375949,0.94838244,1.1675811,1.2764153,1.1347814,0.7543217,0.8147174,1.3709002,1.1651719,1.305107,1.3781743,1.3511419,1.1156238,0.95521855,0.93307453,1.2847162,1.6956513,2.0137818,1.7994325,1.7458227,1.7367394,1.4472666,1.2585967,0.87451756,0.7710123,0.83825314,0.7536217,0.77041185,1.4616058,1.5107217,1.8373501,1.433515,1.2361591,1.0486593,0.85790837,0.725675,0.7037461,0.67455244,0.59467787,1.204363,1.7777121,1.4713686,1.409205,1.0215112,1.0077319,0.7003519,0.5514206,1.3772035,1.3009495,1.0578833,1.0008554,0.92750794,1.5089543,1.941603,1.3891954,1.2884278,1.1449652,1.1914692,1.1445677,1.1332947,1.01464,0.93322253,0.9216412,0.84569514,0.810609,1.2411844,1.7648265,1.4128187,1.3257976,1.2005459,2.0427687,1.8798203,1.6952131,1.6243901,1.4751501,1.3450503,1.3547544,1.402899,1.403547,1.5160389,1.4440746,1.5057261,1.2799957,1.1318619,1.0829558,0.9197233,0.8617027,1.3238783,1.720496,1.8677243,2.085353,1.8824911,1.8080804,1.653965,1.9585447,1.8472072,1.5438508,1.2362325,1.0843632,1.2645648,1.5884012,1.3440192,1.2411581,1.0506977,0.9929632,0.90818965,0.9883564,0.88434434,0.5581787,0.53254485,0.6039353,0.51354045,0.45419246,0.46835196,0.4731634,0.7589817,0.65892506,0.52992445,0.47777018,0.5448733,0.42944384,0.41822568,1.110803,1.166601,1.2008153,1.0233036,0.840438,0.6204629,0.5872687,0.6524036,0.68223625,0.69312936,0.51819706,0.6048827,0.24002284,0.101269074,0.14380835,0.3303711,0.3270074,0.21998534,0.3553948,0.39231867,0.5139109,0.47607243,0.25658226,0.109366566,0.09657489,0.13642481,1.4019718,1.8091364,1.4225705,1.2653072,1.1307085,1.0568479,1.0273429,1.6029785,1.3944275,1.0612792,0.8369091,0.8259851,0.6115922,0.43590087,0.4767096,0.40497494,0.3936162,0.35676292,0.3466974,0.3257139,0.25657883,0.57316005,1.0000304,0.63332576,0.60017765,0.3433172,0.714092,0.8053267,0.63713944,0.71256816,0.5984978,0.3959456,0.35849962,0.7222397,0.5993112,0.526267,1.5375364,1.6357424,1.3645916,1.1547645,0.7852711,1.1408201,1.3536253,1.4191555,1.2705194,1.4236771,1.9472678,2.4479795,2.6028287,2.3102171,2.027523,2.4641447,2.23738,2.5581868,2.3980155,2.6017704,2.5745785,2.3254666,1.9848938,1.8201339,2.0309825,2.4809458,2.5352614,2.0088978,1.5081468,2.645035,2.7796824,2.3862698,2.175751,2.182145,2.1446877,1.9220853,2.113979,2.24783,2.5675697,2.338066,2.46194,2.624827,2.2099519,2.009525,2.2994392,2.6883492,2.9865847,2.6456523,2.4835854,2.3878584,1.8855966,1.7694452,1.7214782,1.616894,2.0490344,2.3996055,2.2219093,2.2760587,2.1353345,2.340468,2.4468868,2.717083,2.8464227,2.893166,2.9086854,2.9688716,2.8668113,2.7483375,2.883929,2.846777,2.8499577,2.615965,2.5615423,2.5832095,2.5483232,2.5897315,2.414569,2.129847,1.7454064,2.2754273,2.4300365,2.6638055,3.0040364,2.6414557,2.4255295,2.5386143,2.8318982,2.430303,2.269875,2.3340583,2.2208552,2.092196,2.1362567,2.1094549,1.9316269,2.3664656,2.310855,2.3145115,2.7446675,2.4506469,2.3909016,2.546802,2.6401157,3.0731714,2.8120854,2.554581,2.1688437,1.8324134,2.5156624,2.8342018,2.6200283,2.6692896,2.625052,2.5537212,2.3206296,2.573214,2.7958796,2.3090355,2.10058,2.382288,2.5133028,2.3495514,2.2328768,2.3702455,2.0566378,1.9156736,2.1933217,2.42373,2.432338,2.4048743,2.2726243,1.9473405,2.1646545
+2.452774,2.8904314,3.0243268,2.9586575,3.0404253,2.8388784,2.8351245,2.9426022,2.954876,2.7810762,2.9739487,3.3507884,3.0967727,3.0278673,2.9493566,2.9578433,3.012676,3.0342128,2.9607315,2.9401731,2.845096,2.827139,3.005966,2.9286194,2.8099222,2.686166,2.671927,2.788474,2.817737,2.6783533,3.0820396,3.019881,3.0039115,3.0587263,3.0439682,3.0364957,2.9427338,2.8743157,2.7703753,2.6778243,2.6735837,2.7695355,3.0069036,3.011542,3.0149596,2.7962227,2.710502,2.7711177,2.8388531,2.6699414,2.7505872,2.8464038,2.7478862,2.5644019,2.3070998,2.1924503,2.1672623,2.1808228,2.2517166,2.2634192,2.044202,1.9797833,2.2250435,2.6443362,2.7455873,3.0052075,2.930836,2.9414392,2.981615,2.8736749,2.7621927,2.4162292,2.2609987,2.1611228,2.3420606,2.4469352,2.3822927,2.5942192,2.8277764,2.7507758,2.591833,2.450078,2.2916362,2.1499953,2.0396543,2.0787337,2.1925068,2.2183118,2.3586981,2.5179589,2.4322631,2.2172284,1.8683772,2.107112,1.751472,1.9692278,2.1481667,1.9329259,1.9030504,2.7616508,2.9843266,2.9677424,2.7128713,2.6605313,2.5144362,2.4997504,2.3644977,2.3376455,2.3177638,2.1383672,2.0852036,1.9820361,2.0120385,2.527361,2.529354,2.3553486,2.3200405,2.25421,2.4142742,2.3243465,2.4379437,2.4704738,2.291918,2.0885782,1.9573942,2.1519542,2.6566668,3.2433236,2.943519,2.8491063,2.9484696,3.029076,2.951892,2.9798207,2.8030152,2.8387127,2.8953202,2.8754945,2.8793416,2.8172033,2.9423332,2.9469535,2.8472,2.7819114,2.729978,2.5564363,2.2941384,2.187969,2.1995893,2.236056,2.0853596,1.9534178,2.0496855,1.981284,2.0002332,1.9944632,1.6883956,1.7997143,1.8064325,1.6886811,1.6585348,1.7033784,1.5622523,1.817156,1.8303635,1.9252167,2.044586,1.9326916,1.6999936,1.5436616,2.1097608,2.5244749,2.412807,2.2058544,1.9192727,1.5510141,1.6283834,1.647674,1.6228316,1.7808416,1.6790944,1.7719653,1.4169222,1.2231474,1.2023423,1.4884571,1.3329003,1.2328404,1.3353806,1.3527073,1.4788963,1.5019264,1.2665921,1.0456657,1.0848792,1.0758443,1.019406,1.1190504,1.0605024,1.0496031,1.0952697,1.1919613,1.4652301,2.1338692,1.8968072,1.471525,1.2010686,1.2474376,1.0865606,1.0556749,1.0979815,1.1496787,1.1816988,1.1563756,1.1321073,1.1400027,1.064714,1.1731639,1.3046957,1.0463785,1.089812,0.8380657,1.2188671,1.3131905,1.1054946,1.179535,1.1334822,0.98624974,1.4663463,1.8614619,1.74389,1.6299412,1.9648461,1.945622,1.573406,1.34379,1.0918308,1.2564356,1.4600414,1.6087484,1.4348471,1.9682546,2.88771,2.814929,3.144684,2.8383632,2.8016658,2.892116,3.04808,3.059829,3.0401864,3.080561,2.9183247,2.8428192,2.7282913,2.6663017,2.854804,3.0180178,3.027132,2.7820969,2.746346,3.1202643,3.00391,2.86864,2.8694475,2.937528,3.0029566,2.9088387,3.0165849,2.9519813,2.9031591,2.9085464,2.9351711,2.9830813,2.8224897,2.9063733,3.003613,3.0398457,3.136076,2.9914305,2.884154,2.8486848,2.6857102,2.6259718,2.601226,2.801449,2.996805,3.0000548,2.9754443,2.9926596,2.947317,2.8283856,2.8985658,2.8729963,3.0555162,3.094809,3.0900297,3.150467,3.143027,3.0094566,3.1597693,3.0844526,3.0507936,3.0371623,3.0470333,3.0418487,3.0254345,2.9500027,2.971765,2.951259,2.959952,3.1094556,3.0102015,3.0982394,3.1804714,3.0240254,2.9719734,2.9709034,3.127176,2.96805,2.917923,3.0083666,2.9343007,2.8695536,2.8739977,2.8818908,2.7267914,2.9114544,2.9642892,2.9489427,2.9909856,2.965632,2.9295237,2.9107118,2.9164915,3.2095344,3.0709,2.9613152,2.8230572,2.7534804,2.950804,3.1053054,2.989955,2.990822,3.0817924,3.1023102,3.0048838,3.0876915,3.1420262,2.93911,2.9250712,2.9397106,3.0615082,2.9348838,2.8769882,2.964077,2.9058201,2.6803641,2.8226132,2.9834814,2.9462407,2.9399872,2.947185,2.8696792,3.0033176
+2.109212,2.6847672,2.4556665,2.148943,2.0507686,1.7175107,1.7028136,1.7039735,1.5862982,1.1660395,1.0220613,2.763476,2.6991005,2.9753897,2.811848,2.625997,2.5492296,2.413689,2.0564022,1.8968576,1.6602563,2.2415767,2.527378,2.1170168,1.8165282,1.6049035,1.4329083,1.7589757,1.5757647,1.4062383,2.3107574,2.2238262,2.0827653,2.275919,2.0566,1.9335012,1.6034162,1.3171608,1.0895323,1.0487249,1.0188817,1.030169,1.1914554,1.2334803,1.2275755,0.9648238,1.8912919,2.3003798,1.8732967,2.4572535,2.171247,2.170362,1.8956677,1.5463214,1.3139472,1.1636766,1.047214,1.0886875,1.1542871,1.0892886,0.9470699,2.070539,2.0230765,2.0483434,1.8035913,2.0959225,1.7991353,1.8423648,1.77334,1.5953045,1.3968298,1.1447809,1.1501794,1.142296,1.7671387,2.2912202,1.6274434,1.6010356,1.4563966,1.7410191,1.6079421,1.4725885,1.3293259,1.2966771,1.1784601,1.0811161,1.0473689,1.173905,1.1591873,1.7164826,1.5366564,1.3176657,1.1332299,0.9845633,0.98100966,1.3290322,1.3896762,1.4345179,1.2222813,1.2295657,1.4244165,1.8277032,2.0006096,2.05188,1.914609,1.8621923,1.5975182,1.4465814,1.4732524,1.3114107,1.2090284,1.2614262,1.3908321,1.8712769,1.3282645,1.6503377,1.5179315,1.4892437,1.7158091,1.772944,1.5039289,1.5054536,1.4898372,1.2579687,1.247338,1.5612092,1.814983,1.7337217,1.5633299,1.516703,1.8138521,2.3578668,2.8874173,2.5008655,2.22725,2.1779912,2.3231285,2.3325539,2.0761623,2.102893,2.07515,2.1979842,2.1658506,1.9435482,1.9621346,1.720202,1.69303,1.539427,1.5909421,1.495296,1.3426379,1.3781959,1.3844105,1.2583395,1.2084917,1.1659875,1.6033297,1.8455533,1.7199253,1.5197638,1.4095302,1.2699587,1.1492492,1.1304717,1.4585617,1.2258888,1.1932818,1.1263428,0.9766041,1.6153618,1.7748762,1.4977164,1.5062987,1.3863682,1.1548883,0.96632946,1.0935676,0.9954443,1.040985,1.1770004,1.0987853,1.2393278,1.1610909,0.9166942,0.8531258,0.965818,0.86787415,0.81828976,0.87845457,0.8243728,0.9381339,1.018864,0.90054226,0.73534584,0.7343963,0.67348737,0.65957654,0.6596808,0.6597961,0.6254815,0.6542887,0.716425,0.7959191,1.6018292,1.5033023,1.2277529,1.0573517,0.936437,0.827885,0.74384344,0.7419833,0.79335296,0.801985,0.7714939,0.73913205,0.7001265,0.7342807,0.7407117,0.88363266,0.7242442,0.7402629,0.62097764,1.2460754,1.2979641,1.1084594,1.0156866,0.9385003,0.8167312,0.7524676,0.8874918,0.82976,0.7151828,0.92998946,0.96884924,0.7551056,0.6739696,0.55038023,0.63588285,0.793613,0.90042746,0.7907069,0.44053656,2.1243129,2.5354085,2.645679,2.1198487,2.048117,2.2274241,2.5573652,2.431653,2.343783,2.3884115,2.1824756,1.9368495,1.7038043,1.7083042,2.7733576,2.6147027,2.644519,2.2399364,1.7811477,2.657642,2.6296554,2.2981868,2.0877712,1.9819939,2.0800982,1.9073539,2.0054064,1.8656459,1.859216,1.8103635,2.0499678,2.3333693,2.09556,2.6186213,2.7674217,2.6758616,2.6727827,2.4865754,2.7379246,2.3516407,2.009574,1.812651,1.6893425,1.8500589,2.090205,2.2557416,2.208979,2.1487036,2.0054598,1.9116546,1.985304,2.5420198,2.627671,2.9332337,2.880518,2.9033852,2.724019,2.4083037,2.5748794,2.5953145,2.2781634,2.2490973,2.2110615,2.1106935,2.0366325,1.964143,2.1875958,1.9677848,1.6278062,1.7027957,2.0017304,2.5376158,2.5513568,2.287693,1.9360986,2.0123558,2.2897751,2.0083444,1.9136639,2.12258,1.8091602,1.6657829,1.7707232,1.7209413,1.8587958,2.4122567,2.0072627,1.8723438,2.1365364,1.929864,2.1800804,2.3469958,2.0757308,2.74551,2.3570251,2.049809,1.6510284,1.5478519,2.309349,2.8190897,2.3706014,2.2640948,2.4898214,2.7656755,2.4581995,2.602765,2.648575,2.2491813,1.9787319,1.9891107,2.0933485,1.8103839,1.7337551,1.662164,1.5100557,1.2272533,1.949592,2.4991097,2.0587838,2.6608152,2.4473863,2.361403,2.7804008
+2.1391535,3.2412395,3.1509867,3.1217568,3.118194,3.092298,3.0083039,2.9538927,2.9420605,2.7596035,2.6924736,3.0033202,3.2175047,3.1556778,3.0870123,3.083938,3.0355678,3.0676596,3.0509777,2.9978912,2.9473586,2.84731,2.8871398,2.8943162,2.7662678,2.7335205,2.7691264,3.2648273,3.2026954,3.2829833,3.2496095,3.209906,3.1399097,3.1950934,3.0894656,3.0645614,2.9775476,2.880764,2.773932,2.824662,2.808566,2.725186,2.6981316,2.7586365,2.6927562,2.5218518,3.1651099,3.1194303,3.0929704,3.2511063,3.1112356,3.1372764,3.1230927,3.0465875,3.0116851,2.9717283,2.9320374,2.9394267,2.8876998,2.8537447,2.8537076,2.9245176,2.9917793,3.015164,3.2539382,3.265012,3.1735625,3.1057348,3.1207595,3.0844922,3.0713162,3.035248,3.0409226,3.1310487,3.1845255,3.1766691,3.1378305,3.0899258,3.0959888,3.2549367,3.168944,3.1068096,3.0706027,3.073975,2.9915102,2.9101276,2.8493469,3.2210689,3.2116811,3.231005,3.1671743,3.1106648,3.0572243,3.0349925,2.9810853,2.9960866,3.0039225,2.9559455,2.9163902,2.9484823,2.954495,3.1154013,3.2223997,3.2044492,3.1737683,3.1769562,3.183252,3.1428533,3.1360936,3.1458645,3.1234431,3.1336317,3.1626544,3.197389,3.201385,3.188364,3.238976,3.2165866,3.1830287,3.1812472,3.140768,3.1673973,3.1690044,3.147913,3.1754558,3.2286472,3.1727579,3.1594462,3.1508808,3.1803892,3.1607487,3.239088,3.2505312,3.301478,3.2307248,3.2275944,3.2100563,3.198288,3.1789188,3.2052498,3.206099,3.1581087,3.1733863,3.187004,3.1704404,3.1727755,3.2022061,3.191802,3.163852,3.2114582,3.1670046,3.1116757,3.112147,3.0001757,2.8937407,2.924471,3.1439042,3.2170696,3.1718621,3.1740975,3.1666996,3.1489863,3.1336555,3.0775776,3.2761686,3.175439,3.1378067,3.1383824,3.1510043,3.269329,3.1791778,3.172184,3.182469,3.197308,3.1976047,3.1591296,3.131754,3.1124282,3.1352,3.300308,3.1728628,3.1890016,3.1915395,3.0967453,2.9946256,2.9904342,2.9578362,2.9304173,2.9168923,2.7463014,2.7846541,2.8603551,2.8019257,2.7616186,2.7567723,2.6726215,2.7142427,2.6716874,2.71259,2.6112163,2.6782331,2.739203,2.7308056,2.8039837,2.9123034,2.778189,2.6006837,2.5299842,2.5865216,2.5465136,2.5012922,2.5678585,2.5489264,2.4934394,2.6288486,2.644287,2.62174,2.5088248,2.6406329,2.5859637,3.0345066,3.263953,3.2062807,3.168418,3.129488,3.1071987,3.0945811,3.0464048,3.006646,2.9793282,3.038404,3.0397549,2.9814525,3.0281382,2.944446,2.898272,2.832615,2.7876458,2.8519182,2.9062467,2.9298992,2.6908176,2.7620516,3.1307106,3.2035685,3.0522714,2.9377122,3.2164493,3.1828985,3.1399753,3.1638918,3.0896764,3.0763397,3.0352142,3.0611134,3.042126,3.2209504,3.120627,3.1648202,3.087802,3.0941005,3.1992068,3.1468391,3.1009743,3.0894108,3.0109196,3.0322437,3.0991874,3.123454,3.12748,3.0960484,3.041167,3.0456038,3.1410842,3.0412593,3.3390043,3.2749724,3.184853,3.234838,3.1660132,3.2264194,3.1063452,3.0997155,3.069688,3.1399293,3.1798582,3.1678395,3.147111,3.1364398,3.131249,3.1117687,3.0800686,3.1507287,3.2164052,3.1401148,3.2468214,3.2230678,3.1450496,3.2049384,3.171637,3.100745,3.1879127,3.053365,3.0142913,3.0668018,3.0240862,3.0668552,3.070824,2.9766665,3.0896287,2.959107,2.996152,3.2245617,3.1209517,3.171067,3.1592627,3.1226091,3.1337852,3.0458908,3.095841,2.9761963,3.1403842,3.0363977,3.1297228,3.1214585,3.1296275,3.144741,3.1122077,3.1246822,3.1607633,3.1351159,3.1298726,2.9966385,3.0408738,3.0695019,3.1619272,3.0693827,3.0009665,2.8500342,2.8400302,2.764985,3.2314167,3.1116257,3.067522,3.0984688,3.1445327,3.0258713,3.102189,3.12488,3.0531173,2.9809651,2.9877563,2.9873753,2.9403987,2.8897798,2.8837268,2.8858876,2.818181,3.1017969,3.1415918,3.15241,3.1417613,3.145689,3.1460462,3.1332533
+0.6459815,0.47263974,0.0019600913,0.27368867,0.064506285,0.68848467,0.83810186,0.4645471,0.18611416,0.54446965,0.9978066,0.9096793,0.5801922,0.5492234,0.4519748,0.29332495,0.2241137,0.06769459,-0.058391593,-0.05170404,0.8123609,1.2572639,1.0425041,0.55314946,0.31348047,0.17986095,0.5831375,1.5186027,1.3914088,1.7789477,2.1804368,1.9865702,2.041964,1.826286,1.7966317,0.84903777,0.6246066,1.095443,1.9367746,2.2840922,2.5807798,2.2018876,1.7766452,1.9811275,1.6290767,0.7945417,0.4617613,0.6166533,0.23354593,0.11134057,0.2600373,0.01843036,-0.10693007,-0.26044875,-0.4006118,0.060920455,0.66356725,0.9278699,1.3913245,0.8230298,0.22915512,0.47656277,1.2264206,0.5885979,1.7004017,2.0036116,1.3373598,0.78863966,0.3720702,-0.0365308,-0.1300784,-0.35116833,-0.3140473,-0.23356077,-0.2594336,1.0195737,0.96576965,0.633166,0.22366133,-0.11754482,-0.3534311,0.66092736,1.4161301,2.0967631,1.7589521,1.0383973,1.7775726,1.8353198,1.1245542,0.7411028,0.2522615,0.53978485,0.08903716,0.33703762,0.79822874,0.54925144,1.1831595,1.1419806,0.9817467,0.5570114,0.23840487,-0.051088013,0.33177724,1.5712953,2.2847862,1.8185484,1.2778996,0.88842785,2.412807,2.0086267,1.4057662,1.0656804,1.3259906,0.79244524,0.33710852,1.2540736,1.0382077,0.4638203,0.4441505,0.2564945,0.16724,0.1763564,-0.11958178,-0.18117324,-0.25177258,-0.34511715,-0.49174845,-0.30885437,-0.36507827,-0.33143592,-0.40231192,-0.6082556,-0.6354464,-0.6629383,-0.3727076,-0.086685084,0.77111953,1.7323021,1.2039121,0.87268656,1.0626332,1.090884,1.5230293,0.9615426,0.5160108,0.80516076,1.457221,1.3432493,1.1636025,0.95847744,0.9261869,0.64614606,0.50903606,0.6313913,0.5033253,0.32037508,0.13821907,-0.17469966,-0.3626127,-0.4033176,0.3521155,0.6113598,1.750746,1.4598246,1.026138,0.72086155,0.6587997,0.7074936,0.3272214,0.72924066,0.8107644,0.56101906,0.3230835,0.153923,0.041828826,-0.08693782,-0.13242128,-0.15954444,0.4587654,0.47931954,0.2652621,0.30684376,0.5919647,0.65828437,0.56972104,0.4406467,0.3383041,0.21174386,0.10870866,0.10617344,0.20348322,0.024810754,-0.038582467,-0.17539111,-0.14511728,0.3671061,0.21082622,0.0024082735,-0.07919604,0.037728466,-0.03049802,0.042617016,0.57639426,0.76209277,0.55054545,0.40598947,0.3558174,0.3722387,0.22090575,0.33796853,0.42913532,0.22566739,0.08942991,0.1817976,0.05119083,0.096114464,0.557894,0.630676,0.5538995,0.41945714,0.36383763,0.22965074,0.4463701,0.5034013,0.35584038,0.32594758,0.13767207,0.107301444,0.009220481,0.017650917,0.046547264,0.07244801,0.5147506,-0.12736326,-0.3788662,-0.22837591,0.37728295,0.56206477,0.51656705,0.42707402,0.399734,0.6437637,0.6352456,0.70078653,0.6706649,0.5267649,0.40986258,0.09299244,0.302569,0.34958982,-0.12771058,-0.5536713,-0.6973215,-0.76318526,-0.50708413,-0.37755919,-0.5841166,-0.84271026,-0.8721605,-0.8067627,-0.3357904,-0.67717135,-0.77899516,-0.775475,-0.7041037,-0.5198043,-0.43243396,0.22140366,0.21657231,0.99333566,0.7190489,-0.115803085,-0.1522367,-0.45922202,-0.49466032,-0.46579778,-0.069791935,0.49309152,-0.3972495,-0.821089,-0.8924626,-0.87789744,-0.8226245,-0.7737983,-0.006310992,0.21822491,0.7366371,-0.11664792,-0.1955635,-0.25589418,0.21501362,0.9345005,0.94438815,0.7145475,1.2684865,1.1359752,1.0495698,1.1656387,0.86014444,0.7240877,0.54533887,0.02453491,-0.37005728,-0.40118736,-0.58558863,-0.32680884,-0.037815668,-0.50051904,-0.7055707,-0.77742165,-0.51636165,-0.14161876,0.4763426,0.6698634,-0.34725103,-0.5605596,0.22433981,0.5984044,0.07537396,0.14943123,0.051644973,-0.24361205,0.2351177,0.44144422,0.38224816,0.42873165,0.22432202,0.22011784,0.24981892,0.2132377,0.26242435,-0.25621778,-0.10130822,0.13535237,0.61382526,0.5925495,0.0052052364,0.036619674,0.43270314,0.36490905,0.7810534,0.72426975,0.7203774,0.41856128,-0.13746074,-0.27615857,-0.39545465,-0.42292202,-0.57776713,-0.5556405,-0.2813435,0.23657346,0.08001144,0.76768154,1.1672848,0.6581018,0.39624697,0.52578324,0.32054245,0.5183502,0.6368051,0.8741183,0.8003685,1.1096311,1.2843924
+0.5323786,0.9194653,0.8613348,0.795027,0.95240164,0.63606846,0.7421436,0.73592836,0.89117014,0.6886194,1.8608793,2.02607,1.998942,1.7987975,1.4477315,1.1847999,0.9832797,0.7455544,0.56541145,0.39335227,0.9128593,2.1211424,1.888589,1.6259787,1.3606695,1.700183,1.9428205,2.345859,1.9910791,2.1071155,2.1785316,2.0867581,2.1214948,1.9809122,2.054751,1.597134,1.180877,1.7497872,1.9064105,2.236915,2.7133436,2.9087481,2.6868343,2.468553,2.2633486,1.6343873,1.8271809,2.2422943,1.9044583,1.8114636,2.1358356,1.8680618,1.476908,1.1125045,0.85504156,1.024136,1.2330244,1.0056785,0.9395808,0.6214327,0.30720198,0.15706432,0.22162801,0.2554955,0.9054315,1.4984655,1.1225677,0.8499123,0.57983947,0.22270685,0.028809503,-0.12616208,-0.20454535,-0.1730862,-0.28479135,0.94922245,0.97340035,0.71298707,0.37601188,0.05944334,-0.1485529,-0.26710612,-0.37104988,-0.42857063,-0.35739657,-0.4462819,-0.65261173,0.59950215,0.28802583,0.07839337,-0.19106203,-0.30595583,-0.40961623,1.5300949,2.0781558,2.0461476,1.9403502,1.8618339,1.6290832,1.3384566,0.9565432,0.58512586,0.3176553,0.54851663,1.6637669,1.377589,1.0026592,0.5976192,0.549952,0.84106916,0.67671037,0.8982344,1.1611307,1.0374591,0.7105375,0.3979035,0.62322974,0.5999504,0.34728348,0.670465,0.5254063,0.3977221,0.9456288,1.1102179,0.7490932,0.5166894,0.24940878,0.29102737,0.17165586,0.062143654,-0.09056809,-0.3032751,-0.23969018,-0.2195003,0.56603944,2.166459,2.4530807,2.6587381,2.481069,2.0918834,1.7463099,1.450955,1.5661392,1.2230157,0.78584397,0.56020045,0.42829007,0.35046458,0.41595984,0.42572397,0.66717374,0.60973215,0.42401034,0.4190585,0.23742586,-0.0013603792,-0.13318953,-0.3393766,-0.36945975,-0.41267538,-0.4403342,-0.057263784,0.38349977,0.40064162,0.20260188,0.019929633,-0.11911849,-0.1002804,0.07256461,1.2696605,0.9975661,0.8028351,0.5561866,0.38305122,0.2180335,0.04880461,-0.050055318,-0.14583722,0.5913712,0.5785084,0.41291732,0.4610712,0.71258605,0.5543805,0.3838055,0.286175,0.22705719,0.06440432,0.004000835,-0.09138594,-0.057196952,-0.28198272,-0.31812215,-0.37883264,-0.54139304,-0.24697927,-0.25901514,-0.46158934,-0.53389096,-0.5327345,-0.5640105,0.025381036,1.6217561,1.2633194,0.8685978,0.74325687,0.6409862,0.6260879,0.44990236,0.26203635,0.21222843,0.06359522,-0.011076786,-0.04201614,-0.19931751,-0.1936484,-0.2572745,-0.09737619,-0.16500407,-0.24427107,-0.3165422,-0.39837164,-0.07624719,-0.047360472,-0.13289437,-0.047649495,-0.19962758,-0.31061256,-0.3979336,-0.400167,-0.36358446,-0.060906045,0.7977299,0.32550985,0.10251053,0.27733573,0.6437225,0.6296842,0.7438301,0.699659,0.7375718,1.0210897,1.1294653,1.139169,1.0462539,0.8746114,0.8117497,0.50489116,0.6625041,0.6716227,0.6844094,0.29717544,0.053260036,-0.025089495,0.00035797805,0.41804516,0.40141642,0.05541209,-0.21685028,-0.20088494,0.5381149,0.087597474,-0.20150691,-0.11334219,0.03620939,0.2402471,0.36707088,0.733968,0.7724787,0.7064965,1.0215311,0.9374583,0.8789718,0.5965587,0.47335,0.6269847,0.5018884,0.48814934,0.6275089,0.056731187,-0.16541791,-0.22343534,-0.13657495,-0.041119166,0.29662654,0.4475785,0.4371741,0.48559442,0.55306345,0.609028,0.7329118,1.0049032,1.175479,1.0429547,1.8958621,2.0028162,2.001881,1.9761937,1.5512797,1.2835379,1.1491885,0.83192617,0.4904457,0.58160937,0.27079684,0.48618504,0.56237984,0.25756186,-0.019209303,-0.13298967,0.123286955,0.39122394,0.23687065,0.50780964,0.32180685,0.07046452,0.452973,0.5093645,0.4636069,0.45093268,0.4110595,0.13037047,0.2946382,0.28453425,0.23187989,0.30735284,0.1437899,0.32745123,0.36870366,0.37610894,0.61601865,0.2327205,0.3195764,0.4562325,1.2223358,1.2504225,1.1262299,1.0227917,1.0690405,0.76885784,1.4785359,1.4939116,1.3385618,1.3745942,1.0486991,0.70868784,0.50793594,0.60487574,0.25533807,0.08196323,0.35029602,0.6409894,0.6528208,0.6362933,0.73119813,0.69024414,0.4613714,0.41347754,0.33547089,0.41484383,0.5709216,0.7549528,0.8121321,0.80200946,1.0971054
+1.564842,2.1458125,2.570477,2.2186635,2.4386082,2.0153892,2.0676382,1.868312,2.291317,1.734704,1.9258208,2.4808564,2.5578914,2.307498,2.0751793,1.994377,1.8100394,1.5879837,1.4075185,1.196702,1.3175653,2.0799458,2.0203056,1.9172931,1.74871,1.4923182,2.3403683,2.8597326,2.7320375,2.8455603,2.8424635,2.7974176,2.7234004,2.4829865,2.5392516,2.1797633,1.74557,1.3118734,1.1205654,1.9063789,2.4376426,2.7005184,2.786487,2.628716,2.6246963,2.1002338,2.254268,2.6703656,2.5565128,2.5915036,2.622384,2.5132966,2.1592896,1.8645868,1.8854508,2.521964,2.5553813,2.5169613,2.316058,1.8262454,1.4356991,1.085985,1.0545611,1.4472954,1.4079874,1.8524573,1.6201588,1.3547617,1.2307067,0.8741356,0.60508716,0.42065632,0.29968953,0.25575605,0.20297003,0.5190188,0.83249325,0.7298481,0.55127984,0.2558038,0.19929475,0.13223913,0.13330555,0.086981356,0.58271366,0.6096884,0.4232755,0.4564911,0.68335205,0.5350659,0.34364766,0.1801691,0.24157193,0.34147105,1.5899702,1.4862163,1.6179658,2.6622596,2.4185166,2.0501559,1.7679207,1.4203196,1.90845,1.9324716,2.071429,2.2052808,1.9141293,1.5739956,1.1378103,0.9610318,0.7400556,0.59923303,0.5141587,0.67043126,0.5595417,0.3905551,0.38787788,0.4377004,1.5253384,1.5087556,1.312605,1.2359242,1.0281976,1.0173776,0.88495773,0.9539203,0.94258714,0.8823058,0.9078788,0.8296586,0.62065613,0.42917338,0.6062348,0.56761783,0.6469948,0.8855359,1.1573015,1.2315427,1.3187895,1.2564485,1.2014769,1.0995305,1.5654638,1.3989108,1.153146,0.84249425,0.6877223,0.5850716,0.75442344,0.9603933,0.8124218,0.6505357,0.48999557,0.4910813,0.52511954,0.30236915,0.091085,-0.013116121,0.014223978,0.0033484995,-0.025722355,0.95648503,1.6826363,1.6227669,1.3925737,1.1401753,0.94080824,1.2633376,1.140806,1.0514055,1.2097347,1.1348145,0.9641415,0.76923865,0.56941295,0.3760268,0.29878384,0.23552,0.21193919,0.4699261,0.2644529,0.16169393,0.7575056,0.96875715,0.9028154,0.9011517,0.87417614,0.7747883,0.69421285,0.53650725,0.58233005,0.3523563,0.17972589,0.07919115,0.0020754114,0.3791299,0.61628395,0.49227494,0.4507094,0.37990263,0.29267785,0.27338785,0.34281555,0.5899079,0.5542591,0.30562434,0.27025563,0.32682404,0.08012454,-0.07270407,0.06157168,-0.054605745,-0.07484915,-0.13139239,-0.13595426,-0.15852815,0.10446859,0.26620916,0.25549683,0.110007435,0.007714957,-0.13624328,0.086178474,0.31958175,0.24276525,0.32002187,0.3011133,0.09141898,-0.038773797,0.022487782,0.088051476,-0.043209262,1.03682,1.4503212,1.3124733,1.0711007,0.81635725,1.0187807,1.286896,1.3638071,1.3718036,1.5951186,1.8354261,1.7457397,1.9619132,1.9567587,1.7968409,1.7735682,1.9967852,2.5395167,2.525453,2.6742158,2.689788,2.4072104,1.998061,1.6819812,1.8559206,2.192039,2.1005225,1.6402106,2.3296766,2.9617121,2.8368764,2.5210814,2.5240924,2.514053,2.0487616,1.7389567,1.8614454,2.2342074,2.7740862,2.8467896,2.8178973,3.0121531,2.64151,2.1658387,2.059888,2.246137,2.68785,2.584361,2.1679041,1.9811552,1.6064943,1.5344704,1.7369142,1.271204,1.5363541,2.444253,2.172519,2.177284,2.0344326,2.4144363,2.6289563,2.668069,2.735667,2.8880057,2.878584,2.7799945,2.695602,2.4839716,2.4517443,2.2278423,2.3133345,2.0032947,1.9238678,1.8901227,1.8552079,1.9306911,1.8670295,1.6024613,1.4707772,1.4460962,1.5706075,2.0884414,2.5079763,2.498788,2.198617,2.0684686,2.3514328,1.8767631,2.0650897,2.1546822,1.9972767,1.6742246,1.6374693,1.9094398,1.8729765,1.7666934,1.8417122,1.919031,2.046121,1.8943381,1.3171816,2.1933546,2.6545339,2.867416,2.978607,2.8743787,2.7055464,2.313866,2.8848877,2.9891891,2.9605532,2.8955925,2.7564998,2.7477832,2.3579116,2.4977424,2.525525,2.3632727,1.7649777,1.8578846,2.2678056,1.8632993,1.8271375,2.2013285,1.6773233,1.7094587,1.892607,1.974142,2.0564795,2.2356446,2.3028443,2.160221,2.5040185
+1.5056016,2.2478843,2.4830856,2.0817206,2.378249,1.6704887,1.8058271,2.0967638,2.4708595,1.834958,1.2956754,2.0002964,2.2212691,1.586606,1.549199,1.544641,1.5796101,1.604759,1.4299419,1.1794195,1.1023366,1.4730966,1.7192848,1.5695316,1.3294523,1.166964,1.450825,1.6335714,1.6799095,1.4396915,1.4635472,1.9867301,2.0305307,1.9684418,2.2141886,2.0790398,1.8225999,1.6032715,1.3122666,1.1314882,1.2068546,1.2297729,1.8990896,1.798118,1.8905196,1.4251411,1.3312978,1.5657564,1.561691,2.157031,2.0413485,2.0017064,1.8578284,1.5367181,1.2055035,1.6716504,1.5779654,1.4897385,1.4891261,1.5851307,1.4822286,1.2549021,1.219856,1.2527167,1.5561838,1.6207297,1.7220507,1.6856809,1.7112792,1.5289774,1.3582743,1.1781662,0.9505639,0.92656183,0.9152326,1.2963194,1.4696815,1.4465714,1.4105542,1.1117312,1.0878588,0.9711925,0.9109104,0.90603626,1.6670122,1.4292476,1.08341,1.3730425,1.7849561,1.6456702,1.5944817,1.2063278,1.3739276,1.1250694,0.923748,1.3454928,1.2709816,1.4789991,1.3288724,2.099115,1.8157824,1.4126154,1.2991736,1.2814442,1.573652,1.8296471,1.974625,1.7859378,1.531995,1.3624586,1.391157,1.2990654,1.2331831,1.1984347,1.1797204,1.1532491,1.2629795,1.1552893,1.8534261,1.6601961,1.4448392,1.419061,1.6024232,1.8848047,1.7118301,1.558327,1.7477269,1.7209463,1.8630528,1.8929608,1.5837777,1.3093455,1.2018101,1.1710517,1.1382004,1.1001267,1.1696172,1.2001221,1.3787689,1.4903542,1.6256555,1.7481172,2.0889702,2.0877216,1.7901965,1.5802417,1.4673321,1.4494684,1.982422,1.7864139,1.6258068,1.5875473,1.4799291,1.3704231,1.6358091,1.475153,1.1854013,1.027693,1.0465529,0.96098185,0.85964787,0.82802606,0.8541599,1.4116787,1.278032,1.0318083,0.9481796,1.0173436,0.8500418,1.1678594,1.6294806,1.5898387,1.5426247,1.411573,1.2429415,1.0770651,1.011607,0.9803703,0.91766685,1.1667042,1.0126321,1.0231538,0.85614413,0.73794997,0.597136,0.58821386,0.6241676,0.5568102,0.59722906,0.5979527,0.75549805,0.76147,0.5459646,0.4544854,0.43682685,0.3843042,0.5175397,0.8569323,0.76879305,0.66583616,0.61334276,0.6129725,0.54055905,1.3024532,1.3778634,1.0781451,0.8950521,0.97523314,0.7782763,0.51108074,0.64687157,0.53651303,0.5178599,0.4707566,0.45562512,0.4384731,0.41520283,0.5741499,0.74300045,0.5550915,0.48203117,0.28587413,0.6311237,0.8649868,0.82422316,0.9433625,0.8967466,0.73159117,0.4546042,0.5684137,0.53193986,0.4943101,0.8371844,1.4704771,1.3713219,1.1533844,0.51234394,0.88679963,1.2037376,1.4278997,1.4353521,0.7917565,1.3510158,1.5873163,2.3798733,2.2383218,2.0683146,1.4513913,1.8147242,1.6902891,2.2253692,2.2878063,2.2681456,2.0290039,1.6532733,1.5282911,1.6956807,2.2270513,2.3377073,2.0123765,1.2936115,2.2419078,2.4606276,2.2107124,2.002006,2.0664165,1.9953384,2.2051363,1.8047086,2.0050554,2.1576362,2.3020687,2.2115927,2.8277001,2.1874654,1.8924999,1.8932395,2.0043569,2.5937383,2.5537174,2.28651,2.1893182,2.0231504,1.7786015,1.515766,1.3851051,1.9912539,2.3903058,1.8103887,1.9489133,1.9073703,1.9341551,2.4213612,2.0257673,1.9638917,2.4568624,2.414289,2.403329,2.5765696,2.3453152,2.679862,2.667873,2.8461614,2.547343,2.4194882,2.5877612,2.5858574,2.6474237,2.5409565,2.5932117,1.9757719,1.8212264,1.7958354,2.3068073,2.8011265,2.5823011,2.046081,2.1921737,2.8013618,2.2634497,2.275949,2.683951,2.5408149,2.0246394,2.1672769,2.302945,2.055457,1.9456404,2.1962419,2.2555554,2.7545376,2.795436,1.8751409,1.7639036,2.1114814,2.9857469,2.9662607,2.8946342,2.6532357,2.0609305,2.0932724,2.8281858,2.8096206,2.6942172,2.5089648,2.5880287,2.2320113,2.4796114,2.7130537,2.6641808,1.7606179,2.3431332,2.6934447,2.2302728,2.1999464,2.4873908,2.494059,2.1874862,2.2255652,2.0754967,2.077306,2.2206924,2.337311,2.1622849,2.3558035
+1.5438488,1.5012902,1.5404572,1.4507531,1.2739332,1.0357758,1.2393453,1.196634,1.1625428,0.8654768,1.5330138,1.6140976,1.4658742,1.5995605,1.4897742,1.4764547,1.4826174,1.3516135,1.1487659,0.94094795,0.7637408,0.69267404,0.7313041,0.54851073,0.4395648,0.3542953,0.28367296,0.42803666,0.61321,0.9306265,0.9769615,0.8287845,0.87475866,0.8230289,0.7048732,0.5332285,0.37011755,0.26244625,0.12743771,0.32831326,0.40353233,0.34522277,0.8396869,0.56581956,0.48804802,0.24312973,0.06210337,0.1799752,0.14051946,0.07113867,0.11806146,0.100368656,0.08210954,0.008993097,-0.051017188,-0.04444044,-0.053435616,-0.05464486,-0.007877745,-0.013398677,-0.046320282,-0.028419092,-0.014217295,0.50252163,0.57980174,0.96928245,0.71946,0.62732893,0.4832808,0.32077506,0.20211634,0.1014853,0.13789552,0.30598104,0.32036826,0.6005695,0.8778174,0.6471167,0.5710134,0.40977627,0.2802569,0.14945576,0.072631486,0.010622762,0.10323162,0.28886235,0.2644669,0.7642888,0.6821584,0.53251475,0.41297096,0.26379827,0.12646735,0.078778975,0.0028958768,0.40642458,0.4485774,0.30226448,0.1544354,0.05688422,0.2969947,0.7802162,0.5422889,0.3703938,0.52886784,0.7382171,1.0605053,0.8297447,0.6600002,0.52444476,0.37996235,0.27598923,0.3443923,0.40901858,0.600091,0.6798384,0.53866804,0.36546746,0.6020372,0.92892635,0.89210385,0.8043008,0.6838465,0.9220948,0.84682655,0.6971575,0.54189384,0.80453026,0.72214913,0.64064133,0.6743527,0.6987222,0.5776326,0.5105319,0.51006603,0.6903402,0.58425665,0.45555976,0.3201238,0.4924329,0.72790694,0.8528849,1.0058124,0.8925226,0.72300804,0.50760245,0.34766415,0.35092208,0.63413525,0.4636997,0.31034428,0.21574649,0.1537557,0.08274849,0.0790886,0.009290397,-0.0055519342,0.005550131,0.020422585,-0.012085237,-0.030423336,-0.019504428,-0.08291682,0.00905858,0.110845774,-0.0788436,0.046973936,-0.015697941,0.01663842,-0.053675942,0.26736662,0.2730729,0.21943507,0.058008455,-0.0016504899,-0.036776267,-0.033536993,-0.012965083,-0.03335815,-0.014637373,0.013743646,-0.021247968,-0.1169908,-0.24230522,-0.18780133,-0.12169766,-0.114462815,-0.1221725,-0.07747536,-0.08560147,-0.06280496,-0.05176661,-0.10804913,-0.11496531,-0.103063665,-0.17163679,-0.2409921,-0.13674179,-0.18586963,-0.2010662,-0.22419202,-0.20517528,-0.08482016,0.28562376,0.1313471,-0.04118552,-0.12289771,-0.11299587,-0.14343819,-0.19555503,-0.17170009,-0.17998394,-0.17957628,-0.19049886,-0.18329972,-0.17520234,-0.20576963,-0.18530196,-0.093663506,-0.18395948,-0.14577532,-0.214641,-0.18251735,-0.061930977,-0.14742103,-0.15837318,-0.17309362,-0.26759726,-0.26637885,-0.2228499,-0.19849,-0.19802678,0.08605607,0.3137277,0.17100129,0.03791878,-0.10499754,-0.18329358,-0.083705716,0.029787764,-0.00097513944,-0.16654056,0.89250755,1.6123354,1.5107708,1.3708677,1.079069,1.3626821,1.2080157,1.4524709,1.335351,1.456096,1.6298547,1.4297205,1.2787789,0.93648505,1.2079165,1.3786658,1.5708692,1.3908129,1.0566326,1.5137212,1.7544651,1.6168005,1.3720478,1.3482895,1.3576305,1.1619178,1.2042247,1.2675312,1.3572056,1.4020944,1.4762869,1.7642486,1.4540861,1.1599491,1.2431029,1.7116277,1.7064266,1.7413459,1.5885986,1.506674,1.3773618,1.3002548,1.2386311,1.2023888,1.4038671,1.4135733,1.3229432,1.2816678,1.2427876,1.2630006,1.2018617,1.3804123,1.5905371,1.5752511,1.8561723,2.0141003,1.8103359,1.7482367,1.8371248,1.8197975,1.8300151,1.5608597,1.4589574,1.473146,1.4083235,1.3027632,1.2527863,1.3001826,1.1071088,1.1622728,1.4051316,1.487155,1.8293841,1.6106014,1.4272926,1.3835764,1.5300238,1.3317802,1.3584626,1.4976258,1.4417801,1.2036011,1.2054099,1.220729,1.1011208,0.97831666,1.1044321,1.1594018,1.3225551,1.2028127,1.0463853,1.2964761,1.3963404,1.7434769,1.5892494,1.4248292,1.2588329,1.0902567,1.6999319,1.8278022,1.7060084,1.9706459,1.8544958,1.718917,1.651936,1.7162989,1.8151865,1.7193661,1.4288443,1.645421,1.7198433,1.5620313,1.4312676,1.336481,1.2273445,1.1314634,1.127401,1.1969,1.3692567,1.8476276,1.5332782,1.5879133,1.7392082
+2.4056506,2.0674195,1.703196,1.324136,1.2102709,1.0280807,1.1033506,1.0077795,0.92712057,0.7509147,1.0685471,2.2672698,1.554358,1.2826197,1.1817583,1.1363053,1.302592,1.2544498,1.0626183,0.86683404,0.7699853,0.84527344,0.89349264,0.7415396,0.5697878,0.49096668,0.3026099,0.33780137,0.42399526,0.5395393,0.8211988,0.82227886,0.7746453,0.7548312,0.5618127,0.4364452,0.261567,0.13519105,-0.028802179,0.06753721,0.03129419,-0.05744236,1.0410342,0.63767326,0.50262314,0.31335586,0.18071118,0.2728849,0.41983593,0.19986519,0.28028905,0.3276971,0.17604437,0.08522383,0.04516428,0.007830299,-0.10565125,0.029481776,0.09588217,0.062182896,0.04595057,0.050309487,-0.024018146,0.12394702,0.39316133,0.77350515,1.41572,0.9746782,0.8579021,0.70256436,0.5462897,0.7931266,0.8301901,0.54841405,1.1658273,1.9325523,1.825274,1.7761482,1.2670155,1.2250443,1.1030648,0.8888433,0.69018185,0.5916893,0.45117414,0.47298136,0.40895528,0.41081977,0.4561085,0.5110395,0.44243586,0.35185394,0.19121349,0.38242888,0.18437073,0.22308037,0.56204015,0.27642116,0.18159372,0.071262054,0.21555012,0.98655474,0.80175877,0.46382043,0.32938054,1.5412937,0.8921838,1.2661271,1.3922942,0.7190711,0.70132554,0.5927109,0.9276041,0.7571716,0.57624894,0.61651206,0.54171085,0.4994236,0.5323883,0.4113082,0.51031625,0.5674039,0.3283812,0.6404356,0.740702,0.46420604,0.5374026,0.91748726,1.2830803,1.5067061,1.3458077,1.1328971,1.2257724,1.248746,1.2723376,1.4199857,1.0816386,0.90355515,0.805253,1.0497255,1.6276028,1.7401552,1.5880532,1.3208807,1.093839,0.91787386,0.7620877,0.75317764,0.7672807,0.7069062,0.63490546,0.560114,0.5414191,0.4062198,0.53325766,0.37198037,0.32119676,0.3520725,0.28244027,0.2212528,0.21776396,0.19451311,0.08164757,0.17311826,0.21020459,0.21165413,0.38544047,0.2844465,0.2334989,0.4748283,0.756306,0.5031727,0.60421836,0.47918966,0.40206376,0.3214085,0.36529532,0.34093803,0.2588471,0.44324225,0.34546062,0.31209496,0.14025074,0.06110754,0.0362313,0.16544467,0.121753745,0.119472794,0.17602223,0.13365018,0.12271597,0.13275465,0.05522106,0.008437417,0.01517763,-0.023708917,-0.023546733,-0.0060853288,-0.060194217,-0.018407844,-0.10547077,-0.04588685,-0.03423489,0.17034379,0.09067286,-0.013336219,-0.10322381,-0.09254665,-0.10390823,-0.11452579,-0.048561327,-0.045408823,-0.043635927,-0.048916034,-0.04226885,-0.025597118,-0.06552275,0.012878932,0.06644613,-0.007195525,0.00019795448,-0.099391855,-0.0034663156,0.025433652,-0.057205983,-0.10497516,-0.10978825,-0.1731224,-0.11161696,0.048491307,-0.01648634,-0.066374905,0.0101799,0.05195833,-0.09033469,-0.11561202,-0.15881485,-0.23953503,-0.05299426,-0.011537828,-0.04360103,-0.22156021,1.5982366,2.1864803,1.8360254,1.3981386,1.212143,1.4000099,1.7149959,1.6458206,1.4557412,1.5445745,1.3295431,1.0026331,0.92167354,0.7899473,0.91240597,1.1543412,1.3384641,0.95973355,0.73870564,1.4491055,1.6343153,1.1515621,1.1045719,1.094195,1.2361711,0.98112726,1.1066247,0.9794645,0.89316,0.9562132,1.0527956,1.3063805,0.9014417,1.2728027,2.1072927,1.7642957,1.6703825,1.4992775,1.4398458,1.0101843,0.6866506,0.5723565,0.934442,1.018744,1.2303222,1.327132,1.2641356,1.2405208,1.186507,1.0282916,1.0950413,1.5632852,1.6621171,1.7707372,1.967473,1.9944993,1.6374869,1.3950139,1.8476135,1.696274,1.412889,1.2960991,1.3303417,1.2910233,1.3065586,1.1849633,1.418502,1.1374935,1.3011392,1.7924209,1.9263026,1.7160368,1.9075029,1.5365617,1.2914965,1.3102154,1.6527518,1.5043473,1.3478453,1.4179345,1.1008034,1.0430785,1.1397996,1.1434996,1.1897435,1.367038,1.2183083,1.1374543,1.3345888,1.2367795,1.2423879,1.1214352,1.0736513,1.619134,1.3280946,1.0778419,0.87788516,0.82533896,1.7542844,1.8437481,1.5580387,1.4864078,1.8858805,2.0546856,1.6919537,1.7155449,1.8087485,1.3927765,1.2898955,1.3124269,1.503363,1.235086,1.0916984,1.0457621,1.0434542,0.7827172,1.0376563,1.312913,0.9915675,1.1455874,0.92096573,0.8177583,0.88943636
+2.3262453,2.7069356,2.528633,2.456368,2.405227,2.1666222,2.0959358,2.130104,2.0961294,1.727553,1.7033143,2.7556577,2.6708817,2.6757452,2.5079322,2.3558307,2.4785087,2.3993988,2.1897786,1.826385,1.7385302,1.9431908,2.144968,2.0085096,1.7433319,1.6369452,1.7574754,1.8402941,1.7652917,1.6092827,1.7830977,2.0198257,1.838951,2.0128772,1.8989846,1.8176425,1.5204122,1.2679698,0.9790352,1.1952922,1.1599761,1.0364151,1.7229723,1.7475665,1.5703523,1.2646154,1.2703298,1.9678061,1.5397472,1.962586,1.7728014,1.8475523,1.6390901,1.3882756,1.2028356,1.1081333,0.9261335,1.0151039,0.98372614,0.9850204,0.972733,1.1411173,0.9252844,0.9126613,1.4300101,1.6139848,1.353624,1.3843219,1.459409,1.2892162,1.1192303,0.8326192,0.84163296,1.0540465,1.754932,2.0101435,1.627617,1.9392576,1.8367672,1.7402713,1.6025009,1.5109787,1.1695485,1.1854248,1.0314459,0.9106609,0.9236624,1.2820106,2.521368,2.0354683,1.8371915,1.7662311,1.4879074,1.2552108,1.0962456,1.5208138,1.6297275,1.3518162,1.2266588,1.3736674,2.0372846,2.3905587,2.0993557,2.2688003,2.4327734,2.2555225,2.1611915,2.589854,2.2382674,1.8897184,1.5417985,1.4199458,1.5298512,1.6178763,1.4265642,1.3472097,1.1981091,1.2542857,1.1615933,1.0739518,0.95240366,1.150146,1.7349815,1.7136939,1.495328,2.251451,1.9385663,1.715996,1.6588572,2.2967088,2.221467,2.223137,2.2738128,2.2268996,2.3003986,2.3116493,2.2094905,2.0652747,1.8911917,1.7691576,1.6583403,1.7852192,1.7678928,1.7860687,1.7411706,1.658914,2.0751932,2.1178062,1.6621871,1.6270504,1.5603082,1.4386387,1.3745309,1.1929562,1.1401484,0.96878934,0.9388882,1.0131207,0.99962354,0.9515281,0.9276087,0.8882872,0.74946105,0.87986684,1.5908501,1.8276918,1.4708321,1.3337448,1.17061,1.2670498,2.3926935,2.0661392,1.7450318,1.6519277,1.3863926,1.254096,1.3801095,1.4221781,1.3566694,1.2952102,1.192358,1.2904247,1.2747548,1.0899826,0.8532343,0.8399775,0.7982801,0.79770756,0.7515141,0.7099346,0.7575342,0.87174654,0.7602377,0.6491049,0.61383957,0.5336643,0.51222366,0.50705934,0.37651545,0.5072542,0.5147855,0.61496913,0.5351348,0.73289216,0.7960453,0.6297555,0.44288516,0.41682205,0.3476097,0.30217534,0.35317302,0.3980912,0.40387648,0.3988819,0.40297556,0.4100144,0.27395582,0.35326105,0.5127472,0.4082659,0.3776268,0.14150861,0.2255575,0.49219096,0.34550753,0.24578843,0.31282234,0.25006402,0.290646,0.52666336,0.4403612,0.38286245,0.41661477,0.7304902,0.5937211,0.4073559,0.2990318,0.13945453,0.32777163,0.5412646,0.57280844,0.23178205,1.9587168,2.439529,2.5712228,2.1787648,1.8303362,2.083867,2.6195369,2.261839,2.2931468,2.3990576,2.393399,2.2328207,1.9998002,1.8222905,2.6165218,2.3899026,2.6515,2.3251688,2.0437157,2.489483,2.9042737,2.6452763,2.4258964,2.1622093,2.3525329,2.162015,2.2701087,2.1234279,1.9970527,1.8510113,1.9555042,2.3159785,2.1416543,2.7555928,3.03138,2.9682484,2.9033656,2.819137,3.006328,2.8394742,2.7320724,2.4570851,2.2573023,2.2456155,2.3916545,2.4879394,2.4935741,2.48655,2.4038453,2.2342243,2.2032394,2.4590888,2.855062,2.911844,2.935155,2.8852704,2.9480004,2.8147154,2.881647,2.930616,2.7289686,2.735337,2.7172484,2.642219,2.6465878,2.5263433,2.453062,2.4888322,2.1589065,2.2015765,2.647593,2.7596436,2.8060517,2.7369719,2.5339692,2.5375135,2.6675904,2.5303607,2.310034,2.4896855,2.2189212,1.9492772,2.055516,2.101142,2.4931421,2.5113518,2.4085674,2.3387718,2.4545581,2.4469414,2.4702804,2.5130951,2.4632297,2.8664107,2.7071252,2.5350637,2.2183945,2.0767465,2.0449228,2.8500686,2.6686,2.5716887,2.7425957,2.8570626,2.5209937,2.8218517,2.9404879,2.659958,2.4378114,2.4030223,2.6287618,2.3821385,2.1970222,2.2113748,2.1149983,1.8161252,2.132874,2.44411,2.1955225,2.1421485,2.0657701,2.1880338,2.4025743
+2.0253792,2.6625614,2.963718,3.038052,3.078753,3.002236,2.888704,2.8886034,2.812074,2.470999,2.3780596,2.578466,3.1720426,3.2700179,3.0277057,2.9578123,2.835404,2.7811227,2.6733584,2.505758,2.4276376,2.6266499,2.868424,2.7605479,2.5483944,2.4283152,2.298256,2.3773558,2.490584,2.3957028,2.6264505,2.861444,2.7930048,2.8922563,2.7996387,2.6500263,2.3971982,2.1116652,1.9271066,1.9850557,2.0080862,1.9943922,2.1137538,2.2136493,2.1391294,1.92261,2.0892968,2.6761184,2.54011,3.1263933,3.1014576,3.027025,2.8849611,2.5784004,2.4285738,2.2739246,2.1843274,2.1659276,2.0494065,2.0226088,2.1450777,2.1534698,2.0248845,1.9380838,3.017375,3.2983377,3.0887218,2.9257493,2.8131342,2.6363752,2.5379486,2.496686,2.6401536,2.6205559,2.7998657,2.796437,2.7583656,2.6133146,2.8027766,3.0913978,2.9140372,2.6813238,2.526147,2.3849077,2.2718787,2.1767037,2.168057,2.7300704,3.0242724,2.7735596,2.865611,2.995363,2.7407198,2.5457518,2.3603246,2.2706168,2.422878,2.5421925,2.3682432,2.3045604,2.3713384,2.4808903,3.0334294,3.1183953,2.972189,2.945087,3.052684,3.1922946,3.0896556,2.982009,3.0312927,3.048593,3.0302896,3.0575008,2.9664178,2.996006,2.9603097,2.9459264,2.842436,2.7080197,2.730718,2.6644087,2.570766,2.827676,3.0963163,2.960164,3.0430284,2.9381871,2.7929385,2.7817445,2.7897573,3.2077065,3.2479439,3.313991,3.2540019,3.1221962,3.025488,2.9467568,2.8176281,2.7628508,2.7962017,2.9064534,2.8793747,2.8326173,2.8317034,2.8406656,2.914979,2.8366094,2.6272583,2.7974312,2.8873622,2.658378,2.5706515,2.3929543,2.3059797,2.4006298,2.8813953,3.0261626,2.998108,2.9113486,2.7888124,2.6600158,2.5248094,2.492892,2.492369,2.5978715,2.5485637,2.4070232,2.447484,3.019192,3.1201572,3.101616,2.9951124,2.901205,2.7565866,2.6070309,2.48674,2.4795866,2.5552433,2.5216591,2.3609896,2.427359,2.5642176,2.3584766,2.1335506,2.0144105,2.0506196,2.1002636,2.0045643,1.9932178,2.0011451,2.1109352,2.025605,1.9947264,1.9761091,1.8968298,1.9855379,1.9883639,1.9892273,1.9994514,2.0146883,2.0797157,2.0568957,2.033524,2.260953,2.0844283,1.9251363,1.8063666,1.844843,1.8468213,1.8274915,1.8821714,1.866184,1.8431453,1.9391757,1.972801,1.8945959,1.8768358,1.9278921,1.8201158,1.7879694,1.7015693,2.52658,2.6672595,2.5071201,2.4213896,2.3215332,2.1405368,2.1449347,2.0292666,2.0893133,2.0857508,2.1427732,2.4797578,2.2787771,2.1389766,1.9334918,1.9548024,2.0734937,2.2311969,2.2833042,1.8496076,1.9344246,2.5482366,2.8461797,2.615416,2.0223105,3.088974,3.2184436,3.1916685,3.134908,3.0909932,3.0151856,2.9171903,2.9117994,2.8955765,2.99375,3.1891515,3.1134458,3.0044303,2.9676263,3.078104,3.3391361,3.1050382,3.107059,2.9771383,2.9606154,2.9813685,2.997028,2.9704509,2.9114828,2.8152866,2.7513123,2.924148,2.5779557,3.2371402,3.152452,3.1694026,3.0790298,3.1018043,3.2804718,3.1983418,3.0547986,2.9984994,2.9998095,3.0083623,3.0408902,3.0491512,3.0367298,3.0289083,3.007092,2.9867687,2.9771957,2.942274,3.1550984,3.2560174,3.2161803,3.1406157,3.1406603,3.0462148,3.0203166,3.1402278,2.981685,2.9564526,2.9858265,2.8329294,2.8169827,2.8063679,2.6874614,2.8779025,2.6584983,2.5993683,3.106161,3.099534,3.1079702,3.0765295,2.9878786,2.9833589,2.9275217,2.9062192,2.7264347,2.9416025,2.7457452,2.7139091,2.8619313,2.8398309,3.1748235,3.1280875,3.0459876,3.0389752,3.0300813,3.0271852,2.7944553,2.803634,2.738573,2.860907,2.8661928,2.6950595,2.3753886,2.318906,2.2748175,3.0471177,3.0666325,2.9573283,2.9455507,2.8309765,2.708288,2.8477569,2.9612036,2.7736216,2.5353696,2.4567492,2.4828548,2.3590822,2.3139982,2.3352742,2.3311312,2.1835654,2.1164274,2.4720654,2.6669939,2.6079466,2.516623,2.7702792,3.0357382
+2.9959302,3.165417,3.1917784,3.2667232,3.0000076,2.8516161,3.6003845,3.3887153,3.287202,2.774566,3.180215,3.3671784,3.322616,3.36341,3.3368695,3.233429,3.174531,3.1193595,3.0395408,2.9186003,2.881432,3.2543218,3.1225352,2.905284,2.884538,3.230321,3.2226048,3.2368565,3.3859406,3.2699177,3.3103368,3.3947737,3.2769597,3.293625,3.5362742,3.4693494,3.4082768,3.326791,3.1865654,3.0896132,3.3114386,3.2686095,3.4745383,3.4520283,3.4575584,3.39477,3.3716638,3.2456279,3.1416936,3.0513024,2.945457,2.8270957,2.752399,2.7038386,2.5998917,2.994642,3.1452487,3.1328483,3.2205687,3.170836,2.987503,2.7317371,3.0091255,2.8502328,2.7203412,3.1557946,3.3044515,3.2855618,3.0700517,2.6747556,2.6653924,2.5284603,2.8670826,2.6594648,2.6287158,3.1072347,3.397762,3.3517556,3.0530717,2.8849719,2.6848183,2.9226627,2.6918244,2.726858,2.6911852,2.51474,2.9069464,3.2218466,3.072134,2.9287107,2.741559,3.0845418,3.1353106,2.989358,2.8025255,2.6381462,2.481711,2.6400294,2.9126377,3.1719563,2.8562303,2.8835235,3.1270027,3.055123,2.9608037,2.6748116,2.807786,2.5251067,2.5438116,2.5585277,2.455696,2.5020049,2.8397737,2.7313452,2.8380961,3.6238172,3.433271,3.1658382,3.2875676,3.5050845,3.4527512,3.3404057,3.1569338,2.9442272,2.7281036,2.6149879,2.5343366,2.7044945,2.569932,2.5252674,2.395506,2.2414804,2.0846815,2.888119,3.3654091,3.4252467,3.0754142,3.2100484,2.9334922,2.8311532,2.6459036,2.856096,3.5989711,3.4135942,3.0471542,2.9048734,3.2333376,3.4390538,3.2480643,3.2603545,3.0921614,2.7344391,2.8681898,2.7453585,2.7543654,2.6026807,2.5624857,2.4358933,2.2278478,2.7983866,3.1504467,3.5125632,3.397564,3.5668492,3.2576096,3.0591888,3.0182118,2.8700676,2.744502,3.0666854,3.3660157,3.0463283,2.949514,3.063299,3.0414984,2.9167776,2.8953295,2.880137,3.179498,3.36525,3.291117,3.0787992,3.0097432,3.2214684,3.3998628,3.2705994,2.8519516,2.9459918,3.1624002,3.225995,3.5762718,3.1649895,2.9799583,2.756531,3.065711,3.6035738,3.2557206,2.9751039,2.9938397,3.4331293,3.3633676,3.415555,3.212782,3.2094612,3.0681276,2.9460058,3.1531458,2.962995,3.2038708,3.557976,3.4500103,3.3011374,3.454349,3.197384,2.9859424,3.3472705,3.5054913,3.5397704,3.299258,3.2726676,3.194695,3.1880698,3.2419696,2.953584,3.2000117,2.993854,2.9199147,2.9916923,3.0795603,2.992703,2.8805218,2.9406736,3.547485,3.3826194,3.1865005,2.9917219,2.893033,3.3837242,3.5137053,3.5412667,3.3801858,3.3378742,3.375707,3.577586,3.5174985,3.544253,3.4057674,3.2464194,3.3127322,3.283641,3.021289,2.9414327,2.971027,2.6652946,2.5873575,3.0426168,2.8264718,2.6331124,2.6266356,2.1382644,2.2538092,2.686428,2.332266,2.4472597,2.8546524,2.9226847,2.754348,2.9549155,2.8444922,3.0792804,3.05123,2.756186,2.9942324,3.0012934,2.7604334,2.869163,2.7404203,3.07625,2.7750304,2.3041792,2.1467462,2.419661,2.5106418,2.1941,2.6312816,2.9366639,2.9734275,2.7537827,2.6563635,2.8504195,2.7212996,2.9714944,3.1929464,3.029764,3.0713773,3.3340101,3.3813975,3.539149,3.5185838,3.3856664,3.4951382,3.3273337,3.2385333,3.0837686,2.7988677,2.71335,3.0913167,2.8139029,2.7923808,2.6165,2.7567906,2.8276672,2.8471322,3.0517926,2.6970797,2.4081638,3.0123231,3.042193,2.9094143,2.9921162,3.1166463,2.7502346,2.8376565,3.2024803,3.486422,3.3306892,3.2223043,3.3626451,3.4539185,3.338913,3.5372872,3.22789,3.277027,3.4775796,3.4762547,3.4807925,3.3273122,3.03031,3.1662087,3.567159,3.594184,3.4069555,3.2131255,3.0704486,2.9090748,2.8250496,2.596259,2.96887,2.9347067,2.8927376,2.5238194,3.1459842,3.2197714,3.0984879,3.4248023,3.0919201,2.8003707,3.199168,3.3284895,3.1994643,3.4452746,3.4956725,3.369378,3.2614467,3.5408595
+0.9597226,0.6580055,0.32525265,0.47938734,0.22955981,0.9868302,1.1039994,1.0034894,0.6367376,0.7274142,1.0757018,1.0729359,0.91322076,0.8368578,0.6848934,0.45278966,0.2841047,0.13567205,0.040815927,-0.012068264,0.748806,1.0313823,0.8000319,0.442486,0.22826809,0.9350984,0.8664243,0.6545824,0.6297445,0.9625462,1.305913,1.1607054,0.93317163,1.1344062,1.4134601,0.96152174,0.4963565,0.42631513,0.1955957,0.8823186,1.2369287,1.0536073,0.8072069,1.3349619,1.0179973,0.6686709,0.32998148,0.29195434,0.090211205,-0.02255135,-0.1911524,-0.25478452,-0.315386,-0.44134623,-0.5388563,-0.44890785,-0.52804875,-0.59371656,-0.58649576,-0.5614184,-0.59002495,-0.5480646,-0.51800287,-0.5230165,-0.61774534,-0.45574123,-0.111536674,-0.2858688,-0.4054631,-0.5695642,-0.49742383,-0.62374914,-0.5595133,-0.54534376,-0.69249976,0.28200808,0.026013322,-0.14119771,-0.29616225,-0.4884891,0.6098521,0.29706562,-0.08265371,1.1181947,0.70954955,0.15281966,0.40586084,0.15879345,-0.13253209,-0.28547242,-0.41093683,-0.39683503,-0.41961575,-0.52809834,-0.6103517,-0.6111342,-0.184344,-0.18546465,-0.3247754,-0.41691118,-0.49518955,-0.60441506,-0.6230708,-0.29026496,0.38356036,-0.10445451,-0.27148652,-0.47585446,0.014921747,-0.2605364,-0.41487956,0.011847638,0.18477696,-0.13673204,0.8753918,1.0626719,0.38349488,-0.01514902,-0.11173091,0.023519807,0.26435173,0.046240855,-0.19933596,-0.35110086,-0.4364761,-0.51048976,-0.6095046,-0.5485107,-0.56181985,-0.48958933,-0.5098872,-0.5597556,-0.6601085,-0.6921092,0.4570438,0.27970517,0.6514483,2.0472956,1.1840973,0.9192674,0.96618646,1.0187445,1.0393654,0.65236324,0.35022867,0.17672253,0.46717203,0.26657164,0.90600014,0.77042896,0.5788974,0.762926,0.80409604,0.64645296,0.3953326,0.23828039,0.07002444,-0.10399168,-0.2500192,-0.30313385,-0.06753402,0.076451756,0.81297386,0.7924398,0.5802593,0.29912463,0.15494491,0.10955163,-0.038683884,0.79173654,0.53865814,0.3403257,0.10332359,0.007560618,-0.12194388,-0.22589552,-0.20612118,-0.2264081,0.23261791,0.3447336,0.0740475,0.4858182,0.6594688,0.9213321,0.83862793,0.7345526,0.6438398,0.47039348,0.5254225,0.51152897,0.48113522,0.21195194,0.14619529,0.09511837,0.5204073,0.88135046,0.76751953,0.5634322,0.8648826,0.75736916,0.6312226,0.5419222,0.60889983,0.66851735,0.5332061,0.48847044,0.4580318,0.31854168,0.38580886,0.7680661,0.72817755,0.61572385,0.7479735,0.84328055,0.6927948,0.57120425,0.7860183,0.90838474,0.81568253,0.6642209,0.6326534,0.56795,0.5407006,0.5632411,0.43540627,0.38146418,0.330754,0.32266557,0.27323726,0.25714257,0.31870195,0.43043327,0.9738639,0.65963674,0.5828362,0.33426738,0.55591357,0.9204769,0.9511404,0.87491316,0.8249507,0.77844137,0.9797621,1.033593,0.9224328,0.74709314,0.676519,0.5766418,0.6677078,0.720088,0.43537605,0.11566592,-0.058097474,-0.25376552,-0.049890645,-0.04854571,-0.21739286,-0.2495786,-0.32091755,-0.29441208,-0.049906366,-0.023344062,0.09086005,0.09553663,0.06661099,0.28896284,0.097774446,0.3331619,0.4269964,1.0047373,0.9626,0.434664,0.53735816,0.27932438,0.29636264,0.43513048,0.34136593,0.9256434,0.5834089,-0.038763456,-0.16039348,-0.19173005,-0.09826232,-0.033262424,0.5066051,0.6970854,0.931321,0.49800223,0.20433658,0.38184947,0.31112075,1.0314894,1.1018838,1.2011976,1.5005786,1.302027,1.3658953,1.256103,1.0746651,0.93269587,0.86423343,0.6203372,0.37736753,0.22216973,-0.10524299,0.026037417,0.24704921,-0.0746899,-0.35246032,-0.36484605,-0.0772815,0.11033111,1.4159243,1.362505,0.68240434,0.048012756,0.5584436,0.67349523,0.61130065,0.47125468,0.6255559,0.29153702,0.54947275,0.7981124,0.75498384,0.6442249,0.5182999,0.5523084,0.56404024,0.71459126,1.0088298,0.605739,0.66275465,0.56724876,1.636541,1.4348818,1.0335785,0.5813932,0.5456958,0.77999365,0.97250736,1.0141095,0.84946465,0.5086094,0.16751164,0.015677162,-0.1777116,-0.07189656,-0.21211123,-0.07059988,-0.17826504,0.24984255,0.3117356,0.4658119,0.7139353,0.51935744,0.2545388,0.5067978,0.73676956,1.2132647,1.1613934,1.0913744,1.0310992,1.4594649,1.2142932
+0.14840838,0.24769092,-0.027817458,0.2847213,0.23144406,0.08251707,0.63096976,0.4062602,0.27413067,0.23872405,1.0337893,1.1022873,0.80534923,0.679852,0.49969757,0.2741446,0.14084977,-0.023164965,-0.1400412,-0.20818481,0.35746357,1.6371272,1.5943475,1.0625094,0.6340003,0.41406596,0.43870306,1.3209121,1.355961,1.5343056,1.901973,2.4341815,2.592904,2.4081779,2.6250105,2.2001133,1.6509235,1.2907529,1.5259823,1.7594738,1.9112586,1.9606302,2.0319412,1.7983185,1.5449203,0.9686043,0.5138253,1.021472,0.68375146,0.32629758,1.3459141,1.1479162,0.6016005,0.164408,-0.14620692,-0.16846514,-0.21257693,-0.4373682,-0.34361887,-0.31403494,-0.48298013,-0.3093776,-0.19643149,-0.34312147,0.86686575,1.572129,0.9806144,0.5199235,2.717294,1.9920621,1.7609265,1.3676839,0.9205221,0.51428705,0.93596816,2.1772733,2.1984918,1.9286454,1.1965368,0.51494485,0.30196857,2.535065,2.4703043,2.9806762,3.0460508,2.3447132,1.7975163,2.4004197,2.1067014,1.5093443,0.74124503,0.61769843,0.36391902,0.7232847,1.4228173,1.5119392,1.2204373,1.561893,2.2066364,1.9004343,1.2634721,0.65692806,0.2047737,1.3118916,2.3812387,1.9990581,1.3967025,0.742905,2.2587047,2.6389384,2.0705736,1.534091,1.1653761,0.67713827,0.3678397,0.22768226,-0.0065389723,-0.043620907,-0.1720323,0.17124474,0.88366127,0.69807744,0.17540467,-0.051624276,-0.19410971,-0.15582371,-0.152401,-0.17271394,-0.28692493,-0.36800796,-0.49762237,-0.6380448,-0.4463629,-0.4047807,-0.31033868,0.17160818,0.85126865,1.2762411,1.3481265,0.88357985,0.70239186,1.078727,1.4722995,1.0364637,0.5093171,0.6813605,1.7569052,1.7218274,1.5821292,1.6574407,1.626309,1.5952923,2.1584907,2.0902088,1.5993196,1.0335183,0.41076446,-0.06202925,-0.1991342,-0.30690944,-0.19413102,0.1458872,1.055723,1.1255084,0.63059676,0.29592848,0.019157209,-0.006801717,0.16973984,1.3178742,1.4400702,1.0112431,0.5352559,0.2185283,-0.010962091,-0.16152614,-0.24172038,-0.3172511,0.14241615,0.3582105,0.21543169,0.46672377,0.8714223,0.9966222,0.86138374,0.6706592,0.36301363,0.026717506,-0.06758801,-0.10389539,-0.08620458,-0.23726097,-0.28469902,-0.38642564,-0.4463083,0.26621842,0.23230389,-0.008316815,-0.1975489,-0.10024766,-0.22016758,-0.111108296,1.1543906,1.1283159,0.83186984,0.5853812,0.41683102,0.35345528,0.12889771,0.036985468,0.046152096,-0.05214507,-0.20587057,-0.19544461,-0.31673875,-0.35746711,-0.31697127,-0.15062192,-0.22117364,-0.29961243,-0.31125957,-0.24377602,0.12416901,0.09666797,-0.009374239,-0.041738756,-0.24799606,-0.26335624,-0.30269736,-0.35457265,-0.36422998,-0.37235853,0.49432617,-0.059296064,-0.42860645,-0.3711175,0.25695682,0.50752217,0.39135206,0.29049474,0.16083315,0.33770302,0.53240293,0.5675549,0.4692568,0.26735115,0.15631986,-0.03412103,0.13993287,0.16022554,-0.30935794,-0.7358512,-0.89076185,-0.9747319,-0.6737983,-0.4569475,-0.65937245,-0.9829061,-1.1845936,-0.9858477,-0.2777672,-0.6129818,-0.941394,-0.9770421,-0.9460559,-0.80524516,-0.7038351,0.019208841,0.050245557,0.4315011,0.5822834,-0.15151536,-0.2385334,-0.57304263,-0.60685027,-0.6665627,-0.20348954,0.5446359,-0.07010897,-0.7928684,-0.97125447,-1.0522975,-1.0999475,-0.93765616,0.02353859,0.20484407,0.65961236,0.30010292,-0.064615496,-0.20283201,0.16685304,0.73799384,0.7523216,0.6391082,1.3517852,1.0961097,0.97949517,1.1787646,0.87251043,0.6704215,0.4074964,-0.1449418,-0.48895794,-0.5558214,-0.7751102,-0.53896564,-0.28607067,-0.6928247,-0.9719353,-1.07931,-0.66646904,-0.33283073,0.17883897,0.46310484,-0.47075582,-0.7483827,0.07312167,0.37219453,0.080207795,-0.015027933,0.061036788,-0.44664538,0.020800434,0.3074386,0.23575437,0.14233293,0.044192135,0.036918856,0.0031015798,-0.07738469,0.3508198,-0.40351427,-0.12753272,0.086740226,0.5337073,0.54761684,0.024365366,-0.2846381,0.015813924,0.21399254,0.5868337,0.6197157,0.52276707,0.49743968,-0.1871548,-0.41004944,-0.50155175,-0.46936548,-0.61360717,-0.68606746,-0.46240294,0.05266693,0.09592973,0.6955387,1.0077493,0.6102418,0.1021391,0.3456006,0.2205249,0.84589946,0.97895443,1.2203656,1.2112612,1.2236104,1.5888065
+1.9778743,2.3246706,2.7099514,2.3066337,2.6297674,1.8958684,2.074953,2.0668046,2.3823395,1.7442571,2.6649852,2.7882667,2.9217055,2.789673,2.341631,2.2134514,2.1071398,1.7859523,1.5522792,1.3695208,1.1214467,1.8056853,1.9697281,2.0381298,1.8944812,1.6531144,1.64695,2.360108,2.3023267,2.1768634,2.1592815,2.345653,2.4217556,2.381461,2.5582995,2.5830252,2.3245916,2.2592301,2.1355753,2.2158237,2.3348198,2.319265,2.678731,2.6439652,2.8652263,2.6757798,2.2880936,2.3676841,2.4849105,2.2160518,2.2066226,2.2752657,2.1905375,1.9000514,1.5311332,1.4106898,1.5322007,1.2004999,1.2237763,1.1071737,0.9011798,0.6936109,1.0376331,1.4163396,1.1155121,1.4424236,1.3903141,1.2337668,1.1500015,0.8598157,0.61423427,0.52885324,0.5270482,0.6493548,1.0639662,1.2386975,1.3625151,1.5409641,1.3151419,1.0182343,0.7773998,0.6523571,1.0354878,1.3202503,1.3554754,1.1722203,0.8393354,1.037677,1.0232452,1.0562558,0.8194351,0.55055225,0.5239479,1.2326313,1.6209806,1.3485944,1.1952113,1.4988483,1.3944559,1.6308048,1.5461075,1.2896166,1.0343933,0.99418586,0.9148092,1.1074471,1.025947,0.75996405,0.81720626,1.3233423,0.8865144,0.95513785,0.9418907,0.93281233,0.78052175,0.7519373,0.6990746,0.94173706,1.0776118,1.2773862,1.1417128,1.0718399,0.9326112,1.1535125,1.0189593,0.79971474,0.91438186,0.9779532,0.9747483,0.84320855,0.6193913,0.64784354,0.95644885,0.83898765,1.055611,1.5156252,1.4376729,1.5254915,1.7241263,1.4232095,1.4613367,1.3072977,1.6652106,1.6624917,1.4360664,1.179625,1.0617328,0.97593653,1.0001042,1.2182503,1.0860387,1.0205351,0.85688657,1.166601,1.0621761,0.7135958,0.5726843,0.32897788,0.42852867,0.3812774,0.33780143,0.59843063,0.8931428,1.0729417,0.8598138,0.65265584,0.49332723,0.3600111,0.18869439,0.5332554,0.8757984,0.82920504,0.6526421,0.486996,0.3512371,0.25183392,0.22092268,0.18697815,0.4507939,0.9831039,0.8900902,1.0035772,1.0212021,1.0239965,0.9537258,0.82581663,0.68789655,0.50278145,0.5393643,0.47384983,0.54472065,0.33696595,0.16882819,0.09550629,-0.030931138,0.21671626,0.21516812,0.015397482,-0.026858337,-0.01975359,-0.021687798,0.56674993,1.4043549,1.4183471,1.5724707,1.4349861,1.361938,1.4417781,1.0999991,0.9836117,1.0318944,0.8892387,0.78425145,0.66364264,0.5166526,0.6126534,0.46076655,0.6488372,0.5908172,0.47406507,0.38515615,0.18047637,0.5851551,0.7873535,0.65074193,0.71671116,0.7769687,0.66802216,0.32904142,0.43214375,0.42177057,0.38065037,1.308348,1.5626471,1.5019464,1.229741,0.69966257,0.9144472,1.430105,1.5474418,1.5017636,1.2139893,1.2197144,1.5169711,1.9383583,1.84587,1.7799399,1.3518714,1.3897336,1.4098237,1.6673832,2.0234802,1.9524825,1.7272694,1.207542,1.1708932,1.1188018,1.4413108,1.3219669,0.9765612,1.0784096,1.440006,1.5520148,1.430629,1.4119861,1.5303783,1.1021523,0.86206484,1.0551931,1.1484034,1.755577,2.0122201,1.917901,2.1684177,1.9082403,1.6657034,0.9798727,1.0572481,1.8404481,1.6381382,1.5211749,1.3303071,1.2421527,1.0521051,1.052718,0.8403964,0.9630597,1.5213785,1.5052688,1.4310751,1.2844504,1.4591726,1.961922,1.7466931,2.0064764,2.1017368,2.15985,2.2315354,2.1463947,1.955308,2.105937,2.0471888,2.1434696,2.0168629,1.9705741,1.9426793,1.6902723,1.9219955,1.8010826,1.479553,1.4222994,1.2039146,1.1256057,1.5532116,2.057652,1.831804,1.4614948,1.3136106,2.0614476,1.8192579,1.9619508,1.898891,1.6549127,1.4880445,1.3642095,1.4293185,1.257638,1.225555,1.477684,1.4834838,2.0392616,2.096671,1.3990875,1.4642576,2.1322608,2.400316,2.5774348,2.3236432,2.2006512,1.7084448,2.184055,2.5229464,2.5849714,2.6803339,2.646602,2.4420407,1.7304121,2.0169888,2.1883593,1.9763912,1.1766546,1.2941159,1.7040621,1.3832628,1.5691655,2.2074916,1.88113,1.468215,1.3590848,1.5067698,1.7137909,1.8691427,1.9815814,1.868331,2.099077
+1.857108,2.116672,2.5033836,2.2224703,2.4307847,2.189693,1.8153231,1.8812203,2.2634578,1.5830972,1.3924471,1.9060495,1.9365264,1.7425361,1.5607904,1.6207155,1.5248764,1.3750805,1.2606196,1.0637538,0.94657433,1.19942,1.3092897,1.3425115,1.276912,1.1326907,1.5884943,1.8473586,1.6802356,1.4375861,1.3171731,1.392591,1.6045241,1.6167974,1.5768756,1.8454331,1.8011694,1.3854457,1.179019,1.2810955,1.2551479,1.9445183,1.8173338,1.8810656,2.1294007,1.5222356,1.5787423,1.8780067,1.6241739,2.0452213,1.7434963,1.9003702,1.764952,1.458286,1.0867549,1.7979871,1.5711535,1.3523884,1.3837247,1.1371526,0.9894388,0.7500886,0.6536338,0.8975781,0.7295258,0.94983256,1.124332,1.0582094,0.975638,0.7686166,0.575016,0.4330879,0.3125955,0.28381094,0.64654505,0.8942909,0.8560812,0.94516957,0.8228487,0.60224485,0.54785776,0.41723844,0.41591698,0.47097224,1.6934406,1.3337412,0.87317246,0.79797876,1.0815175,1.0294007,0.9157219,0.5952929,0.6596894,0.3478529,1.5922551,1.3948026,1.2928226,1.6184475,1.4636225,1.2134495,1.2775576,1.0876993,1.0072052,1.1873502,0.9317148,1.0664104,1.0261734,1.0189009,0.7846375,0.6848705,0.62038213,0.56158817,0.4191441,0.3454424,0.36669007,0.23686582,0.24145195,0.2582878,1.3829093,1.0393134,0.90889394,0.8855852,0.9295113,0.8893928,0.8604104,0.7822913,0.8115993,0.90122986,0.9118471,0.88884854,0.73616695,0.7395761,0.7440876,0.67677057,0.5892263,0.6421716,0.9576472,0.92669547,1.232163,1.0840968,1.1183603,0.9968268,1.8664262,1.399328,1.2797775,0.9985136,0.7881229,0.6999208,0.60848343,0.5661111,0.5983908,0.5865643,0.47274363,0.72810763,0.78703994,0.6202362,0.41948333,0.23480043,0.22459692,0.17253289,0.09656245,0.20527759,0.7865104,0.96754813,0.9595308,0.7823122,0.5719667,0.44601756,0.33674103,0.6726179,0.930205,0.9597031,0.96508855,0.8019155,0.6459126,0.466294,0.37496752,0.30351868,0.2680554,0.5442692,0.41442704,0.54979366,0.7317736,0.7690555,0.72923166,0.73101383,0.71472514,0.6330289,0.5816146,0.50093997,0.56135905,0.48590297,0.33386207,0.17758088,0.12422675,0.23386246,0.5184525,0.31802288,0.39918196,0.30951926,0.22250652,0.21577081,0.49612314,1.0096066,1.1935599,1.0517603,0.9697101,1.0695194,0.81949973,0.5303447,0.75111926,0.58545524,0.47757348,0.3782447,0.3048643,0.31824526,0.20660913,0.42336124,0.4660573,0.36788517,0.21585177,0.080067515,0.28542805,0.5626921,0.49245125,0.60718733,0.5851186,0.40085828,0.24831492,0.30400702,0.3308405,0.27277657,0.68515587,1.2233278,1.1456056,0.9063231,0.45485085,0.703947,1.0455893,1.243167,1.1771756,1.0823882,1.4112554,1.2237054,1.6504042,1.908464,1.7817097,1.2278402,1.3234036,1.7604823,1.9396442,2.1941276,2.3212976,2.144485,1.6459239,1.9736246,1.8595829,2.0545447,2.2102478,1.8753028,1.4437076,2.6118095,2.655266,2.5091176,2.3874154,2.3071134,1.9830594,1.8698363,1.5095516,1.7760402,2.1224096,2.2155237,2.178934,2.4396725,2.2023273,1.673086,1.4437753,1.7977493,2.0831792,2.2307663,2.0796719,2.0158153,1.7861068,1.7612178,1.8251696,1.4806113,1.4927688,2.2561064,1.9758193,1.7523931,1.5986726,2.1231108,2.0353084,1.992826,2.1121616,2.0677233,2.020825,2.0016687,2.0918458,1.9590958,1.9867485,2.0002344,2.2573366,1.8533745,1.9578638,2.030794,1.8546642,1.9008014,1.9885925,1.7984326,1.5461123,1.3747625,2.099595,1.9040813,2.228716,2.4684353,1.996239,1.8077836,2.3551602,1.7754436,1.9176205,2.2834754,2.1551533,1.6304256,1.456773,1.7095213,1.6875131,1.4138207,1.6068811,1.8462851,1.8962002,2.2366629,1.578845,1.5175585,2.1331434,2.4327083,2.6742043,2.6279895,2.5265176,1.8391397,2.2710395,2.4618332,2.6158013,2.4745207,2.3768198,2.5049415,2.1400402,1.9809365,2.2918708,2.2500424,1.5676613,1.6090394,2.1115067,1.8420712,1.7078736,2.1299968,1.8320513,1.6154563,1.5472622,1.6668255,1.8833548,1.6756577,1.8792489,1.8753483,1.8773781
+1.9737483,2.2513444,2.6213822,2.497406,2.639641,2.3483298,2.6485438,2.4412491,2.7927158,2.578546,2.4828644,2.3803306,2.391646,2.0971956,2.0916119,2.0573165,1.9367473,1.8198974,1.6624764,1.4957659,1.4240317,1.7497805,1.9196802,1.7698038,1.5448276,1.4155341,1.1988031,1.1286739,1.1880524,0.87771654,0.99398994,1.1762763,1.3236401,1.6265478,1.6913512,1.5669378,1.2626688,1.0195034,0.871481,0.84415686,1.0882994,1.2976022,1.5136192,1.4370525,1.4938506,1.1951227,1.1456234,1.3360902,1.3030727,1.3608097,1.5100443,1.4958266,1.2918373,1.1146002,0.91891897,0.9260255,1.0263033,0.90350235,1.1700242,1.0299866,0.9763112,0.941942,1.3003945,1.3003929,1.3504596,1.5888201,1.473876,1.5598989,1.5193965,1.3563416,1.1931467,1.0008767,0.8971752,0.82954895,0.9335066,1.1177232,1.2668872,1.2951883,1.2127314,1.0053664,0.9700908,0.84572077,0.7808868,0.74574685,1.949406,1.521255,1.2751212,1.3126587,1.4995258,1.4263098,1.4177402,1.1383998,1.1088086,0.98341954,1.0026463,1.1889045,1.4985156,1.7690151,1.4895477,1.4884567,1.529007,1.2992554,1.2793083,1.2235193,1.1879718,1.437741,1.2480078,1.2633883,1.1148329,1.0019597,0.9649295,0.9019574,0.7825979,0.73458517,0.7192912,0.73223245,0.73535526,0.6932663,0.90907276,1.3307397,1.2504586,1.206284,1.2176553,1.1323495,1.1782672,1.1373421,1.3485423,1.15468,1.2932462,1.2663405,1.1643641,1.1192515,1.0440011,0.9518708,0.8754465,0.8181004,0.79211134,0.73997223,0.71757007,0.90021354,1.091038,1.1493798,1.4269004,1.4302586,1.3742297,1.1731577,1.0474306,0.99800026,0.8942009,1.1420758,1.1801317,1.1236949,1.0332054,0.9721396,1.0575688,0.91812015,0.81260926,0.7411021,0.7392086,0.71317464,0.6613462,0.6339189,0.5838793,0.82781947,1.0037698,0.8505449,1.0418342,1.0164222,0.87810284,0.70067227,1.6233939,1.3654065,1.4286674,1.3139113,1.181159,1.0550832,0.9689907,0.9069543,0.8745159,0.954602,0.89001083,0.80778277,0.7882787,0.697352,0.6662258,0.6603617,0.65087974,0.6476582,0.66858774,0.6506107,0.73688686,0.7551362,0.67612386,0.60174966,0.6037735,0.50764006,0.46511036,0.43679398,0.45341533,0.45588344,0.4362527,0.45925552,0.70294344,1.5763407,1.6338831,1.5082325,1.2991529,1.283144,1.1093633,0.88900876,0.91563797,0.8187677,0.74724984,0.7057431,0.6619145,0.6623692,0.59940916,0.72873604,0.7998742,0.713241,0.63449425,0.62453246,0.5843287,0.7507595,0.71004,0.7468879,0.71406686,0.64850825,0.5615923,0.5051538,0.5275895,0.47571656,0.8773798,1.381937,1.3756324,1.2561526,0.8986454,0.72070843,0.9248361,1.1280663,1.1330342,0.8207911,1.2879349,1.9703205,2.3623955,2.3380303,2.3073468,1.9512613,1.8927004,2.181103,2.2763705,2.4218678,2.6397614,2.5887814,2.4899015,2.5076787,2.1482644,2.2932916,2.5813315,2.6099472,2.3117776,2.7376435,2.7060199,2.6030266,2.6167536,2.4920292,2.4666657,2.5570092,2.212642,2.3593097,2.652257,2.5914621,2.5538168,2.6504922,2.5768287,2.1509311,2.0656712,2.433508,2.3721833,2.4876952,2.4541962,2.4732432,2.3248253,2.4655664,2.4179397,2.0907075,2.2486575,2.305851,2.2077353,2.2146256,2.2644343,2.3646426,2.3230195,2.4340703,2.4877675,2.4306142,2.3572822,2.5364187,2.4419541,2.3800902,2.4996839,2.6819959,2.8485541,2.5369194,2.5524364,2.659199,2.516301,2.4716735,2.4683318,2.5082445,2.2523906,2.031383,2.2364268,2.2868137,2.4854975,2.7474494,2.5104547,2.3062496,2.7180598,2.3750145,2.3109417,2.632616,2.7288518,2.336839,2.1755934,2.3952813,2.2614756,2.08572,2.1612427,2.1768472,2.6956754,2.6798959,2.5487947,2.4739974,2.6089163,2.8354344,2.8698215,2.908008,2.876206,2.4888158,2.6386387,2.6880941,2.8857853,2.7624235,2.6112432,2.7704153,2.4751844,2.510113,2.8454542,2.9797149,2.5419033,2.481135,2.7102597,2.581802,2.4841723,2.4868736,2.635305,2.5794024,2.4951942,2.5530412,2.4323657,2.461368,2.3565521,2.3740323,2.6312528
+2.4619741,2.670517,2.8091984,2.8104987,2.84098,2.7711143,2.9402466,2.8872,2.901105,2.8431585,2.8528833,2.9085784,2.8729072,2.83405,2.8412478,2.8244815,2.8244116,2.776331,2.6617572,2.4678335,2.29487,2.2601457,2.2605083,2.0803676,1.813081,1.7167989,1.638241,1.5749438,1.6459215,1.5489398,1.6488625,1.8946729,2.086278,2.3371036,2.385739,2.3874567,2.1959722,1.916477,1.7319878,1.5943252,1.4407572,1.5586718,2.1675832,2.2683363,2.333934,2.1401727,1.7868407,1.6719654,1.570105,1.4531444,1.5757533,1.6413978,1.5535673,1.4555209,1.325363,1.2795604,1.2561047,1.2248635,1.3089995,1.2096046,1.2034458,1.2124932,1.6742005,1.820044,1.5710338,2.0122814,2.0278187,1.9015632,1.8431238,1.6747223,1.4669822,1.2963867,1.2366843,1.3452,1.2353961,1.3437929,1.8743477,1.7626371,1.6203436,1.4752442,1.3636817,1.2301661,1.160702,1.1577477,1.1582464,1.1412659,1.212592,1.4356266,1.5558455,1.5094066,1.4216969,1.3350811,1.149871,1.0677637,1.1300514,1.9948001,2.1512523,1.9328661,1.734372,1.5570037,1.758723,1.8919606,1.7145579,1.59979,1.4265046,1.4164686,1.2392899,1.2870533,1.2015421,1.1918849,1.222269,1.1310971,1.3158169,1.3828913,1.35459,1.3357068,1.1639872,1.201149,1.5426378,1.7350972,1.889306,1.8438219,1.6533691,1.8727129,1.935547,1.6783047,1.5146947,1.4272046,1.3638473,1.3953146,1.5102783,1.5426022,1.4201868,1.3301344,1.2610557,1.1653209,1.1910288,1.1134285,1.1054957,1.4086953,1.5911808,1.7614701,1.8835237,1.7750323,1.5627233,1.3345814,1.4214275,1.3318743,1.342097,1.3226078,1.3327999,1.1981251,1.1101396,1.0659301,1.2128705,1.1351748,1.1306036,1.1062862,1.0987926,1.0639793,1.0502392,1.0696461,1.0612123,1.380327,1.5889115,1.1693922,1.1635201,1.0837885,1.0366278,0.9799141,1.34717,1.4966344,1.4731456,1.2492541,1.1704555,1.100385,1.0609759,1.0009955,0.9239694,1.0872451,1.1046342,1.1476468,1.0976642,1.0049064,0.9690943,0.94135576,0.9167769,0.94104207,0.93227684,0.88589525,0.9391465,1.0504587,0.9442167,0.86484826,0.88075304,0.82119465,0.75171185,0.7651915,0.7729926,0.8329626,0.845757,0.8797096,0.93266046,1.2703539,1.320354,1.1160549,0.98689806,0.92382324,0.8347551,0.8098768,0.8174976,0.78662145,0.804425,0.7937691,0.78710186,0.8275933,0.818817,0.8227314,0.9172009,0.8417017,0.7793026,0.8197023,0.76729774,0.87404513,0.8319304,0.78452325,0.7384912,0.73223335,0.7542083,0.7215399,0.7239885,0.6833642,0.82771397,1.2298505,1.2489892,1.0799156,0.93916655,0.7554594,1.0092033,1.1764253,1.1392417,0.9255096,1.7761264,3.0261078,2.9951675,2.9213831,2.8827183,2.9432316,2.8996768,3.009452,2.923781,2.936524,3.033368,3.0089402,2.9341624,2.7770486,2.8091848,2.9026566,2.9648752,2.8970253,2.7784965,2.9373865,2.9508023,2.9634566,2.9089754,2.8946612,2.8989801,2.833495,2.8002179,2.8044653,2.8226607,2.8907552,2.8976295,2.9582691,2.9477615,2.894083,2.942247,2.9170272,2.9472437,2.9281347,2.8974643,2.9394407,2.9277267,2.8549597,2.8515413,2.739948,2.8280885,2.8423035,2.8260016,2.8178267,2.781179,2.7592108,2.7681508,2.7569313,2.9824786,2.8846197,2.9834745,2.975137,2.9572175,2.9311368,2.9920068,2.9373524,2.9611816,2.9517,2.9110613,2.963927,2.9414186,2.9028885,2.8785634,2.8949728,2.8425968,2.8075716,2.8248973,2.8390286,3.0153327,2.9735165,2.9295278,2.8869383,2.9546878,2.913426,2.9492047,2.9528055,2.9476495,2.8633842,2.8669477,2.8765445,2.831385,2.8289616,2.8151312,2.836423,3.0008116,2.940925,2.8635323,2.99746,2.8955188,2.9602778,2.9206712,2.903556,2.912694,2.856747,2.855728,2.8973556,2.9363914,2.9534354,2.9109678,2.863357,2.91858,2.928707,2.9293072,2.9613106,2.874938,2.9671054,2.9429035,2.8864875,2.8216844,2.9508595,2.8997045,2.850996,2.81963,2.9490352,2.8878398,3.0412374,2.889261,2.8458023,2.849389
+2.335992,2.894432,2.977878,2.8293314,2.8279204,2.6498175,2.8018527,2.7558465,2.797998,2.4658945,2.6279376,3.129056,2.9002533,2.9329777,2.8114848,2.702126,2.7901158,2.8194547,2.693726,2.4281974,2.3474913,2.2805924,2.3916245,2.2466583,2.0237234,1.9199247,1.7878194,1.6210303,1.7905877,1.8664436,2.7960832,2.5138738,2.537986,2.5716655,2.303021,2.439749,2.0910628,1.7831733,1.5541791,1.4376569,1.3656708,1.1962872,1.6431148,1.6609036,1.6164358,1.3513091,1.052506,1.2961816,1.4380956,1.4811842,1.5431738,1.7778986,1.5653672,1.3313446,1.1658976,1.0656221,0.997519,0.9979293,1.0698609,1.0105735,0.95306337,1.4100237,1.6389575,1.4269662,1.2435992,1.5448979,1.6135093,1.607547,1.6746508,1.4401256,1.2780739,1.0160797,1.0234838,1.1324754,1.7133238,1.9163016,2.319712,2.2180777,2.067138,1.9555328,1.8352151,1.581487,1.4077957,1.3319013,1.2619839,1.2956619,1.6625506,2.0793252,1.702343,1.862331,1.672251,1.5163243,1.2032821,1.186874,1.2292204,1.1858124,1.4215254,1.5010966,1.2524672,1.2775856,1.5309445,1.7389512,2.1963127,2.354704,2.0027473,1.7027495,1.6376657,1.5936913,1.4778224,1.4325231,1.446025,1.4709897,2.64879,2.177494,1.8120593,1.7635198,1.5883976,1.4848773,1.5020345,1.5865839,1.51578,1.5519193,1.4979328,2.3051896,2.368405,1.8807795,1.754447,1.7147415,1.6708446,2.1369424,2.3664265,2.006802,2.064047,1.9547565,1.9508572,1.8868932,1.632344,1.5189178,1.6936185,2.1372437,2.1538174,2.1440966,2.3292332,2.2833314,1.9904377,1.7370001,1.9695343,2.071339,1.7925277,1.735529,1.5912216,1.396361,1.3510892,1.2324541,1.864887,1.8850764,2.139607,1.7755282,1.5882602,1.4144566,1.2903843,1.2161164,1.0603592,0.9944872,1.1381248,1.207477,1.1255101,0.9929547,0.982585,0.7996044,1.2549856,1.3855617,1.4131653,1.1145898,1.0418146,0.94283605,0.9399462,0.87453306,0.8276204,0.8875543,1.0109861,0.99705243,0.9027619,0.7539959,0.5444403,0.65659964,0.6223091,0.6444635,0.6185064,0.55607635,0.57743096,0.7730253,0.5619129,0.46539268,0.4557195,0.3708065,0.36998647,0.45066568,0.3030485,0.4549342,0.36955404,0.52001375,0.5643457,0.78189677,0.8581635,0.56973416,0.37967226,0.36593875,0.36031604,0.22494859,0.33705524,0.34936312,0.35342616,0.36448386,0.36924413,0.38992894,0.33397338,0.46346375,0.5701022,0.45064995,0.30167606,0.32244658,0.30790463,0.4700359,0.37266782,0.31815672,0.30360824,0.2137599,0.25242692,0.2515061,0.34459418,0.28906995,0.40323544,0.7661437,0.5795446,0.3643701,0.35651547,0.105883844,0.30762753,0.6363508,0.5209694,0.2655899,2.4788566,2.6018915,2.793221,2.5247495,2.0605016,1.9999719,2.3971155,2.4501586,2.4568274,2.5462093,2.4886527,2.1097844,1.9330096,1.5273926,1.597291,1.8887709,2.4738917,1.9853716,1.4388685,1.7238822,2.336468,2.1659322,2.0243464,1.9863176,2.192667,1.9401278,2.0763328,2.071721,1.9460425,2.0162597,2.3794503,2.635594,1.949867,2.3757977,2.8852983,2.9289649,3.0043967,2.870932,2.7877798,2.6670017,2.174233,1.8253357,1.8403478,1.7440796,1.9796237,2.2850351,2.4502263,2.5328856,2.5648298,2.4875042,2.3899333,2.3557372,2.794498,2.9969077,3.0310338,3.1366127,3.0344255,2.9704194,2.992475,3.0008106,2.875557,2.7831402,2.7634108,2.8018055,2.767786,2.619396,2.7689762,2.6911411,2.4371705,2.4843569,2.7908745,2.8367007,2.926354,2.8628495,2.6686177,2.6523807,2.8519392,2.820528,3.0111275,2.9278173,2.7992277,2.61069,2.672205,2.7238355,2.631361,2.7955465,2.741786,2.7026315,2.6549911,2.790245,2.6049595,2.481468,2.3892365,2.8728206,2.8554962,2.6542158,2.3209734,2.1714823,2.4127514,3.0052083,2.8362322,2.8244104,2.852027,3.0202322,2.6825018,2.8873022,3.0477595,2.8164923,2.547685,2.6451426,2.8715093,2.755524,2.6531165,2.6658509,2.6938844,2.4872155,2.506372,2.9477813,2.8123662,2.8020482,2.7097654,2.6713612,2.64072
+2.1250308,3.0074592,2.734214,2.6062405,2.4972544,2.2345865,2.111394,2.0566115,2.0521228,1.6630296,1.5909541,2.5729876,2.4783106,2.9319563,2.5334756,2.4303496,2.4011655,2.4208498,2.124913,1.6620352,1.4439772,2.0007079,1.9868639,1.7202634,1.395103,1.2949662,1.392643,1.8365867,1.7178085,1.3993542,1.624322,1.6516039,1.5738919,1.6899834,1.5424353,1.4778455,1.2413934,1.015763,0.86181754,0.76432645,0.79936266,0.7107322,0.9130095,1.0214148,0.94281334,0.8097224,0.513042,0.82056844,1.0270052,1.4771668,1.5281459,1.4671314,1.3179089,1.1264107,0.97028875,0.86428416,0.76433563,0.6717514,0.69030964,0.62992644,0.6278349,0.7431961,0.6524564,0.58514893,0.8972677,1.6437898,1.3661654,1.2459291,1.2101052,1.097861,0.91125065,0.6755376,1.0644131,1.1358995,0.9836203,1.4675173,2.3068104,1.7251252,1.4853033,1.4818072,1.3338464,1.2316728,1.0238866,0.93410754,0.8254671,0.7357326,0.7972348,1.2396023,1.0449513,1.0765911,1.6916482,1.7711763,1.2285497,1.0959781,0.96543765,1.066491,1.5226433,1.4193122,1.131275,1.2039118,2.1522963,2.0532005,2.0131595,2.0279408,1.8875582,1.7058346,1.3952718,1.3988551,1.2008114,1.1485121,1.0693139,1.0794326,1.3829757,1.4359548,1.1654333,1.072119,0.9551921,1.4816836,1.1696758,1.0733215,0.9735341,0.984691,0.9986601,1.165154,1.5195119,1.200217,1.2123892,1.3386816,1.126193,1.1978016,1.620637,1.3155859,1.5063381,1.6268053,1.9601979,1.855372,1.597655,1.3321202,1.2062832,1.2783341,1.0699024,1.0817775,1.0399014,0.94288594,1.0861286,0.91444397,1.5339664,1.4265201,1.1797731,1.138534,1.0523368,0.9920949,0.9443393,0.7888292,0.73724854,0.5706231,0.6503154,1.0624783,0.8977406,0.87906164,0.8174102,0.78353405,0.68310523,0.59002244,0.6370026,0.87808555,0.838562,0.7903253,0.70573103,0.7833057,1.691268,1.439316,1.3331529,1.164865,1.0721691,0.9806019,0.8716881,0.7138324,0.75676537,0.6861979,0.61711997,0.78942317,0.836087,0.7432375,0.62405634,0.5630953,0.52404845,0.5497344,0.50848794,0.49447283,0.43323377,0.56939185,0.5917432,0.5441985,0.46389574,0.4266888,0.41631556,0.37673748,0.17572597,0.43661147,0.31471047,0.36502573,0.37553662,0.42798805,0.58705384,0.4944572,0.3916489,0.35351086,0.34101278,0.2560752,0.29833078,0.31215307,0.31841516,0.32873544,0.3157083,0.3045927,0.1805956,0.28948018,0.41919243,0.38033676,0.2388657,0.1869072,0.2169414,0.39610013,0.3354568,0.24245766,0.261382,0.19106624,0.1957722,0.17880835,0.24820873,0.2441448,0.3368158,0.5908485,0.4958974,0.30367985,0.28508145,0.05195404,0.13611093,0.4517169,0.42812464,0.18143725,0.9021661,2.0502062,2.3223267,1.9431494,1.5104766,1.8190898,2.3545346,2.4697313,2.2338076,2.2591517,2.2929754,2.0754015,1.813756,1.3665891,2.2445984,2.254461,2.433366,2.1740642,1.6013604,1.8378506,2.9859064,2.5120547,2.3160753,1.8914355,2.1028597,1.8364737,1.8122022,1.6646587,1.6250714,1.5105692,1.5976409,1.956575,1.4824129,2.7977197,3.0944967,2.9686065,2.808095,2.712616,3.0224519,2.9238575,2.7770844,2.589601,2.4878387,2.1481953,2.3775811,2.4307718,2.3554702,2.2422612,2.1386847,2.046533,1.9234257,1.9115503,2.3492062,2.8545318,2.9886527,2.9499793,2.8835406,2.762229,2.7064555,2.7743635,2.536573,2.4405167,2.358078,2.1848392,2.199061,2.1272123,2.0795689,2.3283305,1.9684982,1.8619697,2.5869603,2.8362448,2.8095107,2.7938936,2.553084,2.4458477,2.5303895,2.4152517,2.312493,2.5324578,2.3711276,2.0271459,1.9816908,1.9615405,2.3889792,2.8377295,2.5422685,2.4318812,2.4208565,2.4533007,2.698805,2.717491,2.6579876,3.044431,2.8706279,2.7275832,2.4080129,2.0816443,2.0461683,2.6680012,2.612862,2.481688,2.6869087,2.533227,2.3785067,2.5904827,2.7428474,2.5261097,2.2077284,2.0590892,2.1819787,1.9413527,1.6923062,1.6058986,1.5443546,1.2572606,1.2605227,1.892926,2.1446977,1.7894069,1.7697372,1.5750499,1.9850838
+2.1721194,2.8851068,2.6950932,2.737516,2.6565907,2.5237498,2.3903697,2.3610818,2.3449502,2.1370685,2.0993319,2.0710518,2.814841,3.0034137,2.9502878,2.838201,2.7123451,2.5976143,2.4120963,2.2488825,2.181624,2.7580776,2.949669,2.717014,2.481701,2.4022856,2.23246,2.2983994,2.2044957,2.1505623,2.145981,2.0943592,2.3219268,2.6701345,2.5461564,2.3896048,2.1693683,1.9622896,1.9097326,1.8557014,2.1275373,2.0245767,2.1425216,2.096992,2.0516627,1.9408059,1.9426982,2.4804754,2.433236,2.9046435,3.0266473,2.8717983,2.62964,2.3117595,2.1359344,2.0361667,1.9684354,1.9554594,2.020999,1.9856654,2.000925,1.9867312,1.8999048,1.8469101,2.3754885,2.9553874,2.806004,2.871222,2.555044,2.3370404,2.2301862,2.1185179,2.123265,2.243555,2.4517632,2.543955,2.899245,2.7734718,2.6155555,2.7102032,2.3951137,2.181738,2.0913754,2.0379639,2.022356,2.0339472,2.060525,2.1072602,2.0433333,2.071272,2.3251345,2.6486654,2.3647342,2.2088184,2.1703486,2.3936589,2.2745416,2.200164,2.1250014,2.203097,2.33069,2.4723072,2.3718722,2.7586355,2.8382027,2.6803083,2.4964852,2.6923199,2.8543198,2.638816,2.4318259,2.3241,2.5278463,2.669408,2.608319,2.680419,2.5938811,2.7696946,2.4995403,2.3748875,2.401613,2.4768407,2.8189464,2.8799,2.8546338,2.8784738,2.8498936,2.8265967,2.7205708,2.8568368,2.9176493,2.9170067,2.933267,2.979282,2.975293,2.8768673,2.8672454,2.901941,2.8308368,2.937413,2.8016334,2.6841443,2.6725817,2.8399665,2.7421541,2.7561076,2.8880277,2.8820574,2.6624231,2.4944525,2.6688142,2.4724588,2.3728216,2.2800236,2.5678926,2.5345542,2.9730499,3.0219522,2.8469858,2.6964188,2.5296845,2.4109695,2.31946,2.300203,2.2953763,2.519123,2.4218788,2.3154278,2.1756792,2.4469464,2.6291308,2.7914858,2.7257087,2.7541475,2.6056821,2.591292,2.4417996,2.4181826,2.5275686,2.5156517,2.4892216,2.53454,2.5474038,2.4204702,2.3032284,2.2052794,2.1237383,2.1241841,2.054969,2.1361723,2.182427,2.1754875,2.1223862,2.050451,1.9809171,1.9857025,1.9964817,1.9486296,1.9361309,1.9700798,2.0039861,2.060207,2.0869162,2.1767094,2.2322288,2.1102905,2.0187535,1.9490812,1.8732394,1.8447526,1.9065975,1.912091,1.9203923,1.9477041,1.896735,1.8881466,1.875078,1.9849987,1.9594111,1.9224675,1.7638385,1.8491583,1.9867581,2.1709967,2.0992594,2.03442,1.9133661,1.8315725,1.9293466,1.8921952,1.9172025,1.840255,1.9937326,2.0985603,1.9417224,1.8210227,1.742825,1.760054,1.918077,2.116183,2.0972133,1.7950878,1.8657762,2.4452171,2.942725,2.706696,2.3798113,2.2370133,2.9945302,3.137267,3.03125,3.111451,2.9354057,2.7216382,2.6731997,2.457128,2.6536908,3.0156045,3.0806975,2.9500816,2.7975998,2.665639,3.0943499,2.9723918,2.966828,2.7867332,2.6963906,2.6242251,2.5923352,2.566919,2.5527668,2.5254421,2.5559907,2.7058573,2.3934128,3.0356207,3.0778184,3.0311203,3.0184832,3.0643888,2.91226,3.1034942,2.9668303,2.8604984,2.816846,2.6826108,2.7808285,2.743639,2.6980066,2.6488059,2.5870771,2.5466423,2.5321083,2.4743657,2.9760888,3.1287336,3.1179078,2.980074,3.044989,2.891765,2.7923055,2.8925648,2.7300894,2.6453207,2.6201751,2.4641569,2.4326825,2.4403903,2.443058,2.619163,2.4064927,2.3044555,2.8547478,2.977971,3.057351,2.9660676,2.7698464,2.6478908,2.6509633,2.5992808,2.4728112,2.6243968,2.4840415,2.2785664,2.457099,2.4001615,3.011478,3.1560788,2.9741766,2.9382427,2.8448172,2.795227,2.5261595,2.4475923,2.6161594,2.6667452,2.7441206,2.554906,2.3728456,2.294915,2.298675,2.6584015,2.776916,2.6082094,2.657979,2.4656959,2.6866848,2.8150082,2.8187468,2.591932,2.4296393,2.317295,2.332242,2.3301346,2.2076802,2.2286315,2.1942992,2.1107178,2.1356924,2.575014,2.768147,2.5836954,2.4548988,2.239714,2.8836854
+0.77027243,0.73719823,0.7495644,0.72048175,0.6415918,0.77381134,0.8507948,0.74823534,0.71056485,0.5631129,0.8774675,0.9248222,0.9510379,1.0696981,1.475208,1.6095774,1.3507187,1.190245,1.3240104,1.3832744,1.0116746,0.98791087,0.86014706,0.9305489,0.8233105,0.9088466,0.94734794,0.8612519,0.81293726,0.804128,0.93677217,1.1110299,1.1521176,1.4391389,1.22741,1.4475279,1.5882386,1.2985922,1.2127744,1.2726871,1.50195,1.4018182,1.6380764,1.8048416,0.9822979,0.9709379,1.083362,1.2038773,1.4510651,1.6222503,1.4746554,1.3966839,1.3129594,1.5506529,1.7235558,1.2856472,1.1845176,1.5544956,1.7139294,1.891921,2.0573854,1.5445206,1.5150285,1.6913196,1.7358531,2.3509874,2.7963755,2.2067127,1.9752556,1.6525106,1.4186516,1.5231633,2.1939836,1.6144199,1.4052312,1.2232556,1.2759244,1.239561,1.2490551,1.4113797,1.8924093,1.9379432,1.5955312,1.5201836,1.3978003,1.3449256,1.8797069,2.256824,2.2180676,1.5986786,2.16242,2.2953172,1.9247863,1.670135,1.7075334,2.076464,1.9050777,1.9248898,1.7961879,1.7587248,1.5657141,1.3370148,2.006912,1.9677136,2.1796947,2.3498237,1.6801505,1.6125143,2.4254022,1.9461159,1.6029627,1.5543485,1.9127473,1.9944922,1.601594,1.8542258,2.0171442,1.8441597,1.669306,1.4819834,1.2824094,1.2791903,1.2322205,1.3372488,1.5210662,1.3734272,1.7749393,1.9232419,1.8057618,1.5929465,1.2019906,1.6569016,1.6280105,1.5852852,1.4071293,1.6539159,1.5270567,1.5765237,1.517555,1.4632165,1.459511,2.0928798,3.1658435,2.1307003,1.8177594,1.8366685,2.0632372,2.3575554,1.8077751,2.238126,2.103914,1.8944405,2.0429082,2.075147,1.7200243,1.5376558,1.5317979,1.4929819,1.6081061,1.8740258,2.2066398,1.9073074,1.9423544,1.7061683,1.8387604,2.5478144,1.8549066,1.7639068,1.5779433,2.0770452,1.9240193,1.6152449,1.8758953,1.8463523,1.6632936,1.4820577,1.228982,1.0270293,1.5576053,1.9275887,1.7598552,1.6147702,1.5471473,1.5362514,1.534707,1.2310655,1.1363848,1.2105815,1.3519788,1.6547413,1.8305377,1.5738177,0.99486166,1.2993194,2.0399516,1.5632563,1.0932828,1.176887,1.7710578,1.7700274,1.5191209,1.4057696,1.4309703,1.235746,0.91535157,1.000303,1.1307747,0.833719,0.47231972,0.3222223,1.1628352,1.7239394,1.2207224,0.986004,1.3516018,1.6022757,1.5857344,1.1671909,1.1697121,1.0825825,1.1834551,1.457839,1.1040022,1.1922698,1.1755296,0.86283106,0.91534936,0.94947183,0.6840014,0.80365926,0.8387365,1.6339024,1.6678587,1.0873148,0.6460309,0.3430641,0.1440095,0.43100587,0.38264093,0.37062076,0.27689597,0.19218203,0.6083633,0.70409,0.8060481,0.5204753,0.340525,0.246286,0.44282797,0.38190728,0.5267941,0.6373776,0.45482966,0.437631,0.45708036,0.34157643,0.4867084,0.6396223,0.67793226,0.69314075,0.6333174,0.6912416,0.566115,0.64168596,0.51542014,0.47740942,0.44451767,0.47292724,0.5807912,0.8295582,0.6641898,0.73650706,0.6127864,0.6450697,0.7501213,0.58126616,0.5750836,0.5618003,0.7684378,0.7519406,0.7285153,0.69930506,0.702407,0.5813735,0.5613948,0.7160865,0.82349515,0.7648717,0.69913554,0.6395362,0.4940734,0.50066966,0.4845285,0.4395141,0.46398365,0.43842304,0.5572962,0.85150635,1.038094,0.91005105,0.62459356,0.5532893,0.5591817,0.62044865,0.641964,0.5336833,0.6207148,0.74186325,0.76132905,0.67802745,0.650853,0.62620866,0.6410435,0.73594224,0.7372168,0.6959913,0.5141018,0.5554318,0.5523366,0.765309,0.69944084,0.6255866,0.47310668,0.54676664,0.83010757,0.45932406,0.89354396,0.7042409,0.6924138,0.55014896,0.6998739,0.6030419,0.5805588,0.60664403,0.74401546,0.7643192,0.72976494,0.73801565,0.50969017,0.73440963,1.0719815,0.717418,0.76632667,0.8134193,0.78455526,0.76712453,0.78448206,0.6517539,0.6639544,0.6728481,0.56958616,0.59588224,0.6057359,0.8821238,0.83849585,0.8059044,0.56015193,0.809127,0.7595725,0.5980264,0.8349249,0.90476686,1.0143014,0.9541393,1.0582533
+0.87987125,0.18423226,-0.03433021,-0.07995785,0.14540148,0.38480747,0.63205093,0.4258972,0.5943225,0.38259417,0.97803736,0.9998634,0.65183246,0.9659355,1.1985136,0.9173048,0.58825815,0.5748715,0.62060857,0.58272195,0.35274887,0.4543302,0.45598057,0.3420122,0.68031716,0.5506857,0.27165845,0.2230807,0.2907654,0.23551339,0.2175223,0.2247152,0.26211149,0.6924348,0.4797692,0.40424427,0.40170392,0.39878002,0.23788616,0.18614437,0.1998454,0.14955464,0.21222487,0.43332776,0.16497257,0.15192094,0.15162843,0.08468002,0.09305673,0.103259884,0.08876391,0.03586381,-0.022876494,-0.08627512,0.41930342,0.2450909,0.13751242,0.035342693,0.11216183,0.15620285,0.1553075,-0.005231239,0.12556979,0.097761594,0.042469434,0.40562305,0.34328622,0.33427763,0.24706513,0.10509396,0.02339863,0.28116354,0.34193823,0.19220376,0.11602757,0.35703906,0.62212265,0.30619442,0.18250293,0.13416374,0.041687656,0.12889233,0.08526642,0.060667932,-0.025614314,-0.13717857,-0.12635678,0.04006048,0.047511004,-0.018631764,-0.16537943,0.54391843,0.19932279,0.04136225,-0.011952363,-0.111192085,-0.19080392,-0.06160783,0.37056214,0.56608963,0.34328106,0.21647218,0.17522505,0.23697776,0.15448977,0.43977976,0.31767705,0.2718892,0.28231815,0.26782793,0.11170805,0.16547558,0.18316817,0.14868397,0.009812839,0.035860006,0.060595907,-0.070089065,0.059817545,0.030633427,-0.011910789,-0.090036996,-0.10961615,-0.18347919,-0.268324,-0.28386384,-0.27159962,-0.1669231,-0.17314062,-0.21892428,-0.27310196,-0.36324072,-0.3597052,-0.16189963,0.4082502,0.27760217,0.17484945,0.09136765,0.2858806,0.28519428,0.28912163,0.49091783,0.6502719,0.48962724,0.30356586,0.284199,0.3084048,0.3352374,0.27437755,0.34039265,0.33254203,0.2338982,0.38404894,0.307587,0.25324,0.17052093,0.1303355,0.053035215,0.07895314,0.2335136,0.49240148,0.49546853,0.40222365,0.65279514,0.41030708,0.3375901,0.430139,0.3466968,0.29682615,0.18196572,0.35138044,0.23273936,0.38935918,0.26614133,0.17391694,0.5579373,0.43721718,0.34461334,0.34459156,0.63041264,0.48881567,0.4265364,0.37508976,0.36127838,0.5239216,0.35974216,0.29387712,0.26406363,0.43304944,0.28149697,0.59665596,0.4291452,0.38666815,0.26853916,0.31214672,0.6799156,0.456965,0.29746732,0.42373484,0.42213404,0.3681445,0.5468131,0.5186347,0.49477825,0.44530773,0.3437355,0.4409794,0.36453992,0.3149397,0.5465883,0.37465638,0.3520283,0.4981591,0.41839954,0.28021032,0.50274783,0.43519744,0.48384264,0.39285034,0.40483773,0.36362475,0.4761577,0.54426163,0.3966719,0.58290887,0.33999717,0.32533845,0.36617488,0.40786076,0.38865107,0.3280587,0.33226967,0.6665244,0.61347634,0.19345652,-0.115923695,-0.09407639,0.17950204,0.07440032,0.17754355,0.04893494,-0.007889621,0.4145921,0.5135456,0.55990636,0.53344434,0.42704815,0.3560657,0.21725422,-0.08071386,-0.1417906,0.027908057,-0.1043806,-0.068652384,0.048095427,0.28286004,0.22434875,0.38495782,0.6856429,0.32690823,0.34504575,0.4044677,0.42709476,0.4841519,0.44472802,0.53369725,0.49630415,0.6821643,0.4154021,0.6102283,0.6398938,0.3961353,0.5174393,0.6362712,0.5256775,0.58200413,0.48327854,0.6795761,0.6818024,0.49020523,0.36331245,0.3908858,0.48514917,0.38901472,0.5613863,0.7536876,0.73237705,0.5862777,0.40787634,0.40114993,0.38859153,0.67020464,0.71203804,0.63787216,0.67709506,0.7741233,0.93729377,0.9083776,0.80418885,0.6735116,0.6226375,0.49533182,0.48440108,0.34975687,0.27191344,0.25533402,0.5501187,0.51963186,0.48676816,0.4417194,0.53321254,0.5083617,0.6106017,0.6244266,0.4610521,0.32759377,0.5392209,0.67737734,0.71459,0.7084796,0.65068763,0.4749487,0.36450857,0.83416414,1.0320189,0.84199345,1.1674836,1.1286373,0.7977692,0.74290276,0.27059373,0.012237586,0.2605209,0.64290184,0.84337693,0.54031104,0.47490737,0.46001223,0.45439893,0.99791455,1.3466359,0.80567837,0.48427427,0.24220884,0.0015727878,0.009596005,0.037250668,0.16413167,0.34867427,0.389256,0.43622008,0.82874244,0.90722203,0.9366667,0.6539367,0.15964234,-0.17119962,0.2787103,0.3304706,0.48724866,0.7546928,0.9125605,0.52789146,0.1333954,-0.007518895
+0.3383222,0.37455118,-0.19690251,-0.24231789,-0.41473496,-0.20149505,0.23305768,-0.32926244,-0.19190788,-0.3589694,0.4614615,0.6025218,0.66752535,0.69003224,0.66605175,0.587339,0.4617954,0.32905182,0.26737338,0.14975974,0.04042415,0.10058324,0.16176385,0.035903364,0.054256015,0.9062529,0.8197955,0.59233874,0.47144264,0.48360148,0.6371336,0.61131066,0.591887,0.9172759,1.0538536,0.75759625,0.4816049,0.37764218,0.18907668,0.28565767,0.5177549,0.8972833,0.8225385,1.2534065,0.7951242,0.70670676,0.703286,0.5679519,0.3072602,0.091111615,-0.1143628,-0.2906845,-0.39816275,-0.5364522,-0.6455307,-0.29198402,-0.351691,-0.44079363,-0.3482033,-0.45270002,-0.5830505,-0.5951162,-0.610643,-0.7210549,-0.6790198,-0.08748845,-0.15730137,-0.35569727,-0.42838818,-0.6416987,-0.6844915,-0.8278369,-0.6991829,-0.79712725,-0.7843276,-0.58110344,-0.028625838,-0.021172248,-0.30685365,-0.48585618,-0.5496615,-0.51814246,-0.67837936,-0.62269425,-0.7048306,-0.7751033,-0.8705569,-0.75162226,-0.7666946,-0.72317195,-0.8334403,-0.09373578,-0.23685086,-0.37948895,-0.5395359,-0.7296337,-0.82304263,-0.7484729,0.37682512,0.28606775,-0.011412911,-0.25059187,-0.02632939,0.19514525,0.044102885,-0.1356546,-0.2473948,-0.4385196,-0.58295953,-0.60342693,-0.6645618,-0.56615114,-0.4235512,-0.43824005,-0.28825438,0.2060611,-0.020675175,-0.03267982,-0.15418735,-0.17307937,0.008108966,0.14867866,-0.011441998,-0.17079112,-0.31107193,-0.40232927,-0.56389225,-0.5119827,-0.5343964,-0.5479839,-0.61956877,-0.6970713,-0.79933894,-0.38985717,0.42880225,0.36465728,0.23150104,1.4006798,0.8638175,0.57243633,0.37591913,0.5472507,0.6908068,0.5380187,0.296456,0.05518214,0.055085085,0.07683676,0.28023332,0.42491555,0.3479713,0.10972019,0.15667728,0.21493602,0.03849011,-0.100721546,-0.19131038,-0.3271752,-0.4975664,-0.41574514,0.1759659,0.26590368,0.07672312,0.12772956,0.010714479,-0.16137043,-0.24741876,-0.19931972,-0.28957623,-0.13124287,0.151203,0.09086251,-0.04526698,-0.038546436,0.056804337,0.010225095,0.14021653,0.021222554,-0.07505079,0.026084691,0.024863034,0.14014506,0.49477643,0.69836473,0.744956,0.52229667,0.47596088,0.40268436,0.32196763,0.43875155,0.5660998,0.45962673,0.2905479,0.17869037,0.13185638,0.4314037,0.3431124,0.19064039,0.33331862,0.29881367,0.28904057,0.3205745,0.24436554,0.23516154,0.10109666,-0.045001037,0.011865407,-0.0826673,0.15992686,0.5148827,0.3445478,0.23328292,0.35763288,0.24649602,0.0696116,0.26077902,0.54540354,0.5147512,0.37183827,0.22872522,0.18026108,0.12910262,0.16561255,0.02135513,0.047158472,-0.13667819,-0.20777655,-0.23695973,-0.2233516,-0.18042076,-0.17652303,-0.18533704,0.22678015,0.0916156,-0.22149432,-0.3611254,-0.32992125,0.2314919,0.2634924,0.24030817,0.19235122,0.1084017,0.39000764,0.45382398,0.3768476,0.17755246,0.08859321,0.0028099641,0.05808699,-0.043300085,-0.30890813,-0.5376886,-0.55554676,-0.7679012,-0.5971272,-0.45256042,-0.77945507,-0.6876296,-0.7231188,-0.5874374,-0.40135613,-0.5835507,-0.522519,-0.4636534,-0.418536,-0.28778043,-0.28695288,0.13206594,-0.02093301,0.50008047,0.1542475,0.10039655,0.20455003,0.26895517,0.1562194,0.15168875,0.3164197,0.7386246,0.094380856,-0.32340345,-0.4316014,-0.46003377,-0.38966507,-0.28696132,0.32913804,0.38550708,0.768394,-0.0072560236,-0.066114165,-0.001640223,0.19510894,0.70512486,0.8550625,0.7268792,0.865886,0.8915396,1.0838072,1.0530277,1.0106202,0.62829435,0.5605897,0.15732837,-0.2757037,-0.45095283,-0.6511755,-0.53735995,-0.43444514,-0.70941174,-0.8078326,-0.72503954,-0.5822174,-0.5943477,-0.06870302,-0.09642544,-0.58054256,-0.5443845,-0.07605185,0.41299534,0.20439725,0.30363685,0.5545308,0.035388995,0.25337565,1.0098658,1.0745025,0.8468087,0.6861434,0.6165694,0.6992274,0.9101894,0.63917124,0.06805077,-0.034064762,0.35486972,0.7671733,0.40637046,-0.19983342,-0.45220065,-0.3714509,0.25966802,0.5490053,0.3306259,0.047677033,-0.19378236,-0.5336803,-0.6278733,-0.61540943,-0.7023689,-0.7523869,-0.49631602,-0.5786907,-0.11508242,0.09357537,0.25270984,0.4408292,0.09211722,-0.30341354,0.13085574,0.3479217,0.41686612,0.38334936,0.615235,0.64364964,0.7067448,0.64726675
+0.9125036,0.95259327,0.7479064,0.91063476,0.6058817,0.7328049,1.0071493,0.8316784,0.6738206,0.4854442,1.2649939,1.5209575,1.3671315,1.3874232,1.1972413,1.0341321,0.86954635,0.6683922,0.5862835,0.5350854,0.19501299,1.0834787,1.3144538,0.9922607,0.7128731,1.3115659,1.5710502,1.1870496,1.2158208,1.363195,2.0091145,1.8305769,1.9843156,1.6837832,1.8098593,1.3362373,0.9339403,0.8934927,0.60937965,0.8079238,1.3909674,1.3519294,1.7713616,1.9091189,1.7763882,1.4575717,0.9244387,1.1960863,0.82241493,0.66076523,0.4803908,0.34819895,0.27104846,0.056671597,-0.112670995,-0.2513804,-0.2953124,-0.41951716,-0.4641508,-0.37933576,-0.36468613,-0.44714957,-0.5240786,-0.42794025,-0.18081626,0.8672429,0.5835668,0.24350438,0.07419425,-0.17402458,-0.42276502,-0.62187827,-0.3970062,-0.3765419,-0.6667303,-0.23574635,0.47597423,0.32697153,-0.03947202,-0.28339404,-0.6329119,-0.20480162,-0.52111185,0.86819345,0.7800627,0.21255058,0.26186493,0.6005333,0.23138776,0.047368784,-0.16093683,0.07758423,-0.04599022,-0.30017757,-0.48666203,-0.5805392,-0.73781645,-0.6907983,0.33322853,0.30236858,-0.00018072873,-0.36802122,-0.5085278,-0.062191255,0.3980683,-0.15266988,-0.18615305,-0.49050933,0.14880729,-0.064176194,-0.25608626,-0.29402602,-0.3675895,-0.410604,-0.20047167,0.5557746,0.17903724,-0.13116494,-0.34903508,-0.22492793,0.64326775,0.65261286,0.24608165,0.014764406,-0.17114878,-0.34478936,-0.46771157,-0.34734878,-0.44724345,-0.48312628,-0.6209318,-0.39205188,-0.6142345,-0.42307562,0.25453168,0.6898113,0.37790465,1.1731429,0.93627465,0.6826623,0.47970447,0.42190683,0.46870917,0.37864718,0.10106017,-0.004840225,0.13483629,0.20656931,0.086965986,0.19239697,0.19770446,0.07098812,0.6621828,0.61822796,0.40999356,0.23378661,0.03846153,-0.17833221,-0.46994722,-0.5968868,-0.5067122,-0.23327816,0.47803012,0.5404667,0.3786474,0.16380075,0.01972562,0.13043083,-0.060348324,0.0019429028,0.34868598,0.26644045,0.019417427,-0.057557784,-0.20932591,-0.3491575,-0.24298456,-0.29089105,-0.18242389,0.052793432,-0.016630732,0.64893514,0.6833975,0.7888324,0.708557,0.58312106,0.43302268,0.265773,0.105299324,0.047212034,0.07205578,0.036939174,-0.07669296,-0.13243777,-0.18329766,0.22329158,0.30610922,0.12179609,0.16480806,0.26284707,0.1422766,0.24287716,0.6332718,0.8394391,0.7331408,0.6645644,0.6332066,0.6397114,0.4200439,0.8492023,0.82250476,0.6442692,0.66313386,0.72513545,0.5855549,0.4982643,0.6043649,0.83098245,0.7624768,0.6275618,0.5817184,0.58354604,0.5180479,0.4820088,0.46823427,0.4277062,0.33746612,0.29397437,0.23594433,0.25083092,0.28590304,0.28991914,0.560522,0.35183337,0.1074536,-0.05647824,-0.08366182,0.547713,0.6557323,0.67283857,0.69849247,0.6288527,0.770203,0.9109849,0.9558046,0.70775,0.6584505,0.5080623,0.5551356,0.4379704,0.29860106,-0.16514951,-0.27298716,-0.5260111,-0.3688563,-0.15261099,-0.3705002,-0.39876798,-0.40777034,-0.34392244,-0.17082393,-0.0063290596,-0.11634626,-0.1102409,-0.17154384,0.019748412,-0.09572711,0.255559,0.3213655,0.9243363,0.95962197,0.39948764,0.47866088,0.41501802,0.24533638,0.28993198,0.43868232,0.9621892,0.52300256,-0.17334324,-0.26463348,-0.32321212,-0.27107024,-0.24008629,0.24667716,0.8187036,1.484662,0.83016264,0.24497506,0.16426075,0.034492053,1.0300121,1.2523377,1.2009686,1.0839983,1.117223,1.1852837,1.115749,1.0725664,1.2082094,1.0818155,0.7603657,0.36223367,0.18387823,-0.10347245,-0.05008682,0.117341675,-0.19388586,-0.5403972,-0.5466403,-0.32841003,-0.17878675,1.0023707,1.1654681,0.57674843,-0.11815678,0.4495147,0.68310654,0.66860294,0.487986,0.67097014,0.32745895,0.5583605,0.8979036,0.9016278,0.89718425,0.738606,0.6505116,0.7212751,0.6823566,1.0659246,0.8295968,0.82023096,0.71173614,1.4555465,1.4823725,1.0625207,0.46209097,0.39527905,0.8393417,0.76388896,1.0702906,0.96964365,0.67408437,0.199893,0.08866385,-0.32148013,-0.08901351,-0.15754443,-0.0004023388,-0.2923103,0.12746507,0.40009522,0.43241948,0.81023496,0.6363343,0.3130479,0.7120558,0.71024024,0.7009559,0.95668995,1.1786141,1.2075157,1.7662421,1.5889435
+1.0408772,0.9359889,0.75231767,0.9529435,0.8662189,0.48246145,1.081626,0.83664626,0.85081136,0.47685823,1.1977167,1.5965922,1.37517,1.2500503,1.0220603,0.73515034,0.55615914,0.36843762,0.2642901,0.22990271,-0.019730955,0.5162811,0.7974508,0.50173974,0.17145453,0.05804917,0.32987034,1.0373974,1.2042065,1.1895664,1.8220694,2.0841014,2.0710607,1.627023,1.7145891,1.4357021,0.9465816,0.72328454,0.50976795,1.0551057,1.1373417,0.98823094,1.9579732,1.8202333,1.7996305,1.5006866,0.9195435,1.4934657,1.2701061,0.81728673,1.305701,1.2314808,0.8601564,0.44609267,0.060331073,0.07359938,0.017606735,0.3994589,1.0099049,0.8632221,0.3775333,0.23255345,0.16705444,0.036110684,-0.099780686,0.9112622,0.5705009,0.27458733,0.16353953,-0.13603935,0.7937309,0.95866233,0.61359626,0.31903568,-0.16036516,1.016051,1.7350518,1.4838746,0.8202216,0.2945746,0.10532509,0.63472605,0.48443753,1.6156918,1.5079478,0.6605488,0.1688146,0.95274246,0.90311223,0.6196213,0.19468975,0.24938744,0.12885956,-0.09067317,0.4283544,0.91561824,0.56842816,0.6629768,0.36524493,0.20351273,0.17903009,-0.059160046,-0.19264811,0.03798239,1.1354673,1.1614845,0.78815985,0.31356013,1.6308862,1.777576,0.9004719,0.6200112,0.83628523,0.7106198,0.32013884,0.18239152,0.01730632,-0.0356633,-0.22655407,0.06228625,0.41360632,0.25341684,-0.0009043664,-0.16382536,-0.2904082,-0.4377424,-0.4861338,-0.43004835,-0.4888584,-0.59602714,-0.66316956,0.15301576,0.55770564,0.30765012,0.5431823,1.4473249,1.7771316,2.0998507,2.2443423,1.7915896,1.6774809,1.930273,2.1896524,1.8390105,1.1489958,0.7017664,1.9466077,1.9084629,1.5466936,1.5743078,1.543872,1.2215931,1.7446938,1.974709,1.5795825,1.0914944,0.59164524,0.24682823,0.09417987,0.0023199245,-0.008021496,0.5230875,0.88926584,1.0880811,0.611677,0.29220444,0.09157202,0.13932931,-0.091482006,0.6340333,1.1155447,0.7822966,0.47402465,0.26427,0.08676607,-0.032190345,-0.0710861,-0.13647664,0.107362576,0.4953016,0.52662235,0.9794133,0.9509754,1.0151646,1.0137138,0.8856286,0.6344748,0.31122994,0.172408,0.1087903,0.10516428,-0.024526283,-0.10429045,-0.18996203,-0.30570748,-0.15647945,-0.05076783,-0.26517892,-0.35654804,-0.23883843,-0.33468962,-0.2322667,1.1639252,1.6217694,1.3182755,0.987012,0.7934464,0.66227186,0.41820508,0.34351665,0.40437293,0.2662356,0.11500035,0.12376757,-0.015648194,-0.0882371,-0.15154669,-0.12470081,-0.19184297,-0.22444648,-0.19045216,-0.22721446,0.06878368,0.042340852,-0.0054211244,-0.013710633,-0.21878618,-0.19701675,-0.20172375,-0.22005406,-0.18874234,-0.18514562,0.28041664,0.23785949,-0.07040622,-0.20022523,-0.008313589,0.36059886,0.42202383,0.46298406,0.34356537,0.30027622,0.57382894,0.65338457,0.6599749,0.49982262,0.43682957,0.16700673,0.30818552,0.25945732,0.115635574,-0.3603789,-0.4946068,-0.5960691,-0.357067,-0.090133734,-0.34298366,-0.67737234,-0.88210034,-0.69835925,-0.14181793,-0.17410591,-0.53939617,-0.6520301,-0.6570233,-0.47269273,-0.43078208,0.21493843,0.3351792,0.51805484,0.5604826,-0.020817466,0.01020091,-0.092375435,-0.26416564,-0.1807611,0.2026976,0.7681117,0.47786012,-0.3439382,-0.52743995,-0.62202764,-0.663232,-0.57700825,-0.060341604,0.23850176,1.1322052,0.8601032,0.35610732,0.2552679,0.40239465,0.85162425,1.0545552,0.9236889,1.334905,1.2856646,1.2602844,1.2470651,1.1486583,0.9622968,0.69289523,0.36389813,-0.035163544,0.039708495,-0.26531342,-0.10177823,0.21488568,-0.1349225,-0.5756032,-0.74605465,-0.3165775,0.0076245144,0.47161967,0.8011222,0.2792206,-0.34587666,0.34161818,0.6075181,0.4778053,0.2569936,0.5275293,0.05472263,0.32938594,0.59787565,0.53758126,0.447394,0.39996293,0.3444533,0.3259611,0.27429098,0.7910067,0.28427383,0.32602903,0.3014589,0.9593041,0.92888135,0.6734916,0.09218323,0.2032691,0.5756725,0.8336887,1.0374284,0.88526845,0.8348577,0.070407026,-0.187082,-0.29275268,0.048092663,-0.20417494,-0.27695683,-0.30445996,0.2124606,0.36702654,1.025705,1.2959731,1.1252978,0.5186147,0.74202985,0.61763656,0.584199,0.9938779,1.373326,1.5518082,1.4901974,1.7043474
+2.057742,2.1975622,2.454087,2.1498084,2.2699547,2.01136,1.7831631,1.7924273,2.0723135,1.8560586,2.0145445,2.1871624,2.484858,2.4858475,2.2370949,2.1564198,2.0646038,1.8733907,1.7244258,1.6100035,1.2517073,1.40279,1.6177741,1.765967,1.5051807,1.3538574,1.717972,1.7129446,1.9732184,1.7320173,1.8662735,1.7886776,1.8941643,1.9307016,2.1712162,2.179817,1.9277198,1.6421463,1.6870437,1.7727892,1.8074143,1.7172848,1.9507728,1.957741,2.3190806,2.3432608,1.8202261,1.9125651,2.1327448,1.779057,1.7871304,2.0930512,2.054108,1.875916,1.624043,1.3983014,1.6346455,1.4736979,1.5098863,1.4708331,1.5037458,1.3418458,1.1601388,1.3048666,1.0962688,1.4105529,1.5598874,1.4849375,1.3962982,1.1854935,0.8388845,1.1644052,0.9807323,1.129252,0.85991174,0.61713576,1.1882987,1.2503519,1.1130537,0.87820435,0.73259,0.6578092,0.8470146,1.2741709,1.1795199,1.178533,0.94200695,0.9109766,0.8815191,0.8430397,0.7421738,0.49863994,0.7536359,0.6221212,1.3320453,1.3330163,1.2324133,1.2305684,1.1490419,1.4237585,1.2666912,1.0828835,0.7981386,1.0463789,0.9281102,1.2133617,1.237148,1.0412303,0.85407305,1.1341596,0.9876487,0.8272736,0.7452022,0.70044744,0.66616863,0.64804804,0.5607678,0.9242061,1.3774637,1.3515002,1.3273165,1.3265941,1.2304744,1.395564,1.307723,1.1834056,1.0663322,0.9883735,1.017801,0.8860574,0.5751198,0.9040186,0.97343904,0.85879743,0.7429528,0.82294035,1.215828,1.3448536,1.4934788,1.5160815,1.4062486,1.2336764,1.5403676,1.6051006,1.4456698,1.2167337,1.0883398,1.0275937,0.9001646,0.8415977,1.2510467,1.3367376,1.2301747,1.2348944,1.2281106,1.0844692,0.97889185,0.80592644,0.78224707,0.75904405,0.7165572,0.6341419,1.0541035,1.325784,1.2773194,1.1139393,0.9733937,0.913123,0.66843784,0.70309997,0.85739934,0.94875336,0.9193704,0.83837354,0.76665527,0.7147569,0.72468567,0.6983042,0.6962653,1.3280858,1.1996653,1.4610656,1.3349526,1.3865843,1.3631462,1.3015046,1.2193041,1.1462429,1.0997515,1.0573075,1.1250365,1.096052,0.9756703,0.8505412,0.73544395,0.63278806,0.84956574,0.63277936,0.6233014,0.586724,0.59634143,0.6070375,1.4269173,1.6839483,1.8372715,1.709342,1.695301,1.8011665,1.5885004,1.347165,1.4354718,1.2845742,1.1858549,1.2144177,1.028096,1.06273,1.015546,1.3017963,1.2957376,1.1969229,1.1357943,0.8714632,1.16468,1.5878294,1.506593,1.5637553,1.559962,1.5134668,1.267108,1.32861,1.3114581,1.2138858,1.4249876,1.890555,1.7869078,1.7747381,1.2647705,1.1033245,1.7514088,1.7679044,1.8714373,1.3254623,1.5630275,1.6692531,2.083915,2.059094,1.9831239,1.7754397,1.6035564,1.7152743,2.1235502,2.287704,2.2542129,2.124774,1.8190627,1.682055,1.775328,2.0005343,1.9252288,1.5482247,1.6527035,2.4493115,2.5109801,2.2596562,2.24939,2.2951322,2.0373213,1.6144844,1.8681618,1.7365103,2.015423,2.3494418,2.1624532,2.3300135,2.2466505,2.0694473,1.783507,1.6821451,2.1181064,2.1220007,2.1004508,1.8915355,1.7347562,1.5893724,1.7839721,1.6924684,1.7218969,1.8759254,1.982555,1.9171435,1.8064141,1.9213252,2.107539,2.153358,2.033172,2.121571,2.242529,2.104035,2.0528154,2.27115,2.3420274,2.3060641,2.3913667,2.2909186,2.235416,2.32165,2.1524577,2.2267423,2.157624,1.9326838,2.1094646,2.005759,1.7173419,1.8833504,2.2010155,2.2583182,2.1858213,1.7777327,2.4584856,2.4195318,2.4511023,2.3381097,2.2939284,1.9420495,1.6848652,2.0399842,1.8380615,1.6552973,1.9572418,2.0717423,2.159407,2.3524656,1.839803,2.001902,2.4711878,2.6088068,2.6501555,2.4736845,2.527326,1.9038537,1.9444287,2.4253643,2.57538,2.4947305,2.5780554,2.423522,2.1892068,2.2361248,2.2630148,2.1535854,1.7149563,1.8683004,1.980664,1.6484026,1.7506179,2.394711,2.3950686,1.9857521,1.8865188,1.6729085,1.7540941,1.7315695,2.0888853,2.035536,2.0193372
+1.8289189,2.0265534,2.5836458,2.3985276,2.6795418,2.371504,2.208417,2.1703782,2.6157522,2.3612,2.1717198,2.247185,2.4300249,2.2379515,2.1088266,2.148831,2.0226374,1.8116739,1.5773512,1.3468034,1.1430932,1.1948009,1.4507942,1.5050888,1.328316,1.1982603,1.4563737,2.016534,1.9133106,1.6893238,1.8793612,1.8447753,1.8516738,2.0508468,2.0162957,2.328124,1.9985572,1.7386869,1.8344891,1.5950842,2.2696984,2.1297228,1.9710786,2.1770792,2.5001645,2.264516,1.7743151,1.7477782,1.7942433,2.1326008,1.8405757,2.101028,2.0745509,1.8732268,1.6194332,1.603854,1.6190813,1.541051,1.4680047,1.2417467,1.2241346,0.91413575,0.81414384,1.0814365,0.8662569,1.2479336,1.398998,1.2984962,1.3253217,1.1476383,0.8983895,0.74386567,0.6181748,0.6542173,0.45437962,0.37794197,0.6331743,0.66207004,0.62313133,0.41131267,0.3870122,0.300749,0.5865742,0.62857664,0.86609036,0.96077985,0.68941855,0.68855226,0.93766665,0.87324077,0.77713126,0.5695856,0.5729297,0.3517406,1.2929455,1.1086655,1.0364934,1.6579573,1.3286787,1.3601716,1.4375553,1.2211597,0.86269546,1.1179047,0.8887446,1.1126534,1.0808568,0.9754406,0.7488407,0.7601824,0.6960742,0.625683,0.4528489,0.6663931,0.7578473,0.5924339,0.75614667,0.783655,1.6389271,1.1885996,1.131306,1.0911156,1.0784649,1.4848964,1.2494706,1.0561072,1.1844459,1.0018784,1.1887598,1.2694027,1.0124087,0.9254247,0.9855923,0.88084006,0.74331665,0.67495036,0.67402935,0.6835229,0.8271336,0.9325362,0.93694955,0.8075745,1.3051243,1.3435997,1.2892483,1.012703,0.8164338,0.7606846,0.70386225,0.6901178,0.9621007,1.0014843,0.9349368,0.94208133,0.9877176,0.80853724,0.6258249,0.43101463,0.4090287,0.3187698,0.27322388,0.19267324,0.2676338,0.52489054,0.7207919,0.569207,0.44906166,0.3854596,0.25294647,0.14973482,0.99613345,1.0333568,1.130697,1.0622857,0.9393573,0.7894364,0.70256776,0.6187696,0.54001915,0.6306772,0.49581,0.7834846,0.8102958,0.88347685,0.78482646,0.85083544,0.7697681,0.73703706,0.67592436,0.5816801,0.6142075,0.606739,0.48380443,0.33433613,0.33142486,0.09654541,0.26752508,0.07346833,0.13225847,0.1295963,0.114097536,0.1818395,0.25534058,1.2884942,1.4229822,1.389073,1.2796454,1.445467,1.2185572,0.9580289,1.0780473,0.9112032,0.784706,0.73919594,0.5853906,0.60256594,0.4873169,0.6740992,0.8897313,0.8010427,0.6781746,0.47331783,0.59714174,1.0033529,0.9588219,1.0614815,1.0355424,0.90861875,0.7470955,0.74121964,0.79600847,0.7114178,0.8326902,1.2783825,1.2295277,1.1604195,0.83138543,0.6470383,1.1405969,1.4037578,1.4093587,1.1114744,1.0448548,1.2933471,1.7236133,1.9983673,1.9842257,1.375925,1.4449863,1.4817631,1.9254146,2.232879,2.2310963,1.9859185,1.8903921,1.9867718,1.9289055,2.104609,2.2405057,1.860369,1.6525993,2.120059,2.393425,2.3933978,2.2834706,2.2396634,2.1542013,1.8376641,1.5553553,1.8502551,2.061928,2.2862408,2.2162833,2.4830484,2.2863054,1.6743815,1.6438751,1.678914,2.0070646,2.398135,2.1986952,2.0192497,1.6426781,1.5107701,1.8363802,1.685391,1.7656782,1.8781447,1.4625225,1.7108381,1.8196912,1.9850643,2.1174383,2.069767,1.9257601,2.0739312,2.2115498,2.1287007,2.0592794,2.222385,2.3137617,2.449871,2.6393318,2.5068998,2.4516575,2.5284305,2.387292,2.4881,2.5958884,2.3739777,2.2758236,1.8602746,1.6947324,1.8721251,2.238018,2.5742655,2.1607628,2.0529447,2.6660151,2.309387,2.1383877,2.5146167,2.4619496,2.1679337,1.9293941,2.0661607,2.0146406,1.611496,1.8995432,2.045238,2.2725997,2.504816,2.2550268,1.8960013,2.1833687,2.4768624,2.7755837,2.7949038,2.7027483,2.0838115,1.9548857,2.3030376,2.6621375,2.4161463,2.5804176,2.5897765,2.398782,1.9239552,2.433494,2.4282804,2.1022756,2.2640927,2.3670955,2.259079,2.029413,2.6307793,2.6394591,2.2772887,2.1848717,1.9879906,1.9051192,1.8453006,2.02079,1.9982548,2.0124822
+2.4997258,2.832837,3.217543,3.0240905,3.271656,2.8898587,3.1958654,2.9944386,3.3905592,3.0385532,2.7452593,3.0214677,2.9845705,2.8744068,2.916255,2.9005065,2.8300292,2.7371511,2.613283,2.3920908,2.3401513,2.881614,2.7965598,2.7053394,2.51901,2.4105983,2.2898078,2.154756,2.31945,2.2033,2.2463508,2.7051263,2.6644607,2.8280573,2.9574106,2.9151254,2.6852047,2.4042323,2.190309,1.9793448,2.2511566,2.5892384,2.7307143,2.5765467,2.862575,2.303688,2.0111148,1.8160561,2.0854812,1.9261782,1.9063553,2.2420764,2.082564,1.8866313,1.6089222,1.4136696,1.4535611,1.5690012,1.566098,1.5088786,1.5529536,1.3988392,1.2512646,1.4319391,1.5476716,2.5458589,2.5140944,2.2991714,2.3629656,2.2322485,1.9889767,1.7236264,1.6086853,1.7106199,1.6912606,1.3652062,1.543153,1.7093167,1.7195269,1.3971448,1.3916366,1.183161,1.2652943,1.2275032,2.0857787,2.18728,1.7190305,1.8203704,2.414978,2.1755106,2.0525734,1.81833,1.562938,1.7386379,1.3538533,2.0399241,2.2480206,2.44274,2.6179223,2.4407434,2.40211,1.8933257,1.8152196,1.8897002,1.7499039,1.8598497,1.7861929,1.8300195,1.7368791,1.6510421,1.7757609,1.6836348,1.5011888,1.8633723,1.7006519,1.4934433,1.4592044,1.399765,1.8787788,2.184029,1.9594991,1.968704,1.8785038,1.6580672,1.7951593,1.7442067,2.2951832,1.9487536,2.342838,2.179954,1.808868,1.5886618,1.514318,1.3938596,1.2176548,1.1313965,1.1311238,1.1500957,1.5578052,2.2010388,2.2842064,2.1366534,2.505096,2.675414,2.3394966,1.8905703,1.7148294,1.7703084,1.5778017,1.5852656,1.7386453,1.6773623,1.6529582,1.5673676,1.7413826,1.4919288,1.2155917,1.1814277,1.1689091,1.1604781,1.1188555,1.0688043,0.99553645,1.3291092,1.4188931,1.0496938,1.0348469,1.2057923,0.9581007,0.8021866,1.7013079,2.3973892,2.1627622,1.9371625,1.7056894,1.4941719,1.3921455,1.2692516,1.1962945,1.4766347,1.4233704,1.2753855,1.1508081,0.9177792,0.7692784,0.72614264,0.6202295,0.7805284,0.8035593,0.7452261,0.78985125,0.9989041,0.74511516,0.56164277,0.6822649,0.5607512,0.555971,0.39703602,0.56339973,0.58485556,0.5410486,0.63482994,0.70190734,1.7203549,1.7877976,1.5634483,1.4065902,1.4344082,1.1631413,0.89797837,1.0807022,0.97785467,0.9287681,0.8621383,0.8221812,0.8984251,0.7734978,0.9507493,1.0277313,0.8719112,0.76304346,0.7168692,0.5230069,0.822781,0.7910142,0.8812368,0.76486945,0.65650827,0.69618726,0.60333514,0.7573174,0.7294797,1.2246218,1.6450691,1.4644288,1.2766707,1.1373112,0.82810766,1.176941,1.5403419,1.352422,1.1032041,1.6317229,2.8758564,3.002718,2.8743362,2.6517284,2.7005882,2.3420105,2.9937587,2.9353905,2.940563,2.7746563,2.3526425,2.1687944,2.3885496,2.2958302,2.4919648,2.732492,2.2205672,1.8494585,2.5409448,2.750554,2.4405103,2.438746,2.4865518,2.5915203,2.3809052,2.529253,2.4974895,2.9272366,2.9012334,3.1177301,3.0579338,2.6113436,2.3005874,2.6066349,2.6161885,2.9009576,2.8150432,2.420455,2.2473326,2.0959775,1.8838437,1.9770405,2.0782964,2.1196113,2.7250447,2.570149,2.5396214,2.6234522,2.6060138,2.8559756,2.76492,2.8586633,2.8775253,3.0230718,3.2930813,3.0065136,2.990262,2.9831235,3.0840466,3.0975156,2.9486618,2.8063626,2.9286199,2.927315,2.9244885,2.8323169,2.5633078,2.360382,2.4440036,2.4429102,2.6819599,3.0810766,2.7541807,2.4452581,2.6540565,3.0780957,2.7576625,2.8268027,2.8223686,2.7274303,2.7075663,2.6038797,2.8205743,2.6867166,2.6236978,2.5548666,2.6743493,3.2716641,3.061698,2.6112475,2.933237,3.02989,3.3376465,3.3210635,3.0661516,2.9183211,2.6858664,2.8660336,3.0820107,3.3321476,3.3669612,3.0244067,2.84099,2.6325397,2.7782116,2.888341,2.5546494,2.2228947,2.8568254,2.9134603,2.7973793,2.8152404,3.1685548,3.0129333,2.8450823,2.9901161,3.0476427,2.8501673,3.3105502,3.0590475,3.0048375,3.252806
+2.5278382,2.7928393,2.9395766,2.7115183,2.757294,2.4077995,2.7958188,2.763198,2.9725404,2.551896,2.2648976,2.2936082,2.4873,2.4505007,2.4828901,2.5116296,2.5905676,2.4980206,2.3843355,2.0658143,1.9639089,2.1890545,2.5996773,2.3643708,2.1977851,2.1272807,2.1076646,1.8668615,2.0823245,1.6118455,1.9321653,2.17265,2.4943705,2.5189838,2.5795445,2.5851724,2.229261,1.8370384,1.7399075,1.7150798,1.6701124,1.6820723,1.8485893,1.9565958,2.0402496,1.6378907,1.3453894,1.3362148,1.540409,1.4822073,1.5473006,1.8885598,1.7457975,1.5426335,1.3869383,1.2552354,1.1938894,1.3220952,1.2980399,1.1508188,1.1659217,1.1388975,1.3798251,1.4961877,1.395071,1.9598675,2.1609135,1.9855461,1.9682846,1.713017,1.5474908,1.3747095,1.2498269,1.3949518,1.7596285,1.958882,2.0123816,1.7879286,1.9045877,1.5767136,1.5192442,1.2511063,1.2169721,1.2422829,1.2818861,1.5695108,1.3411248,1.4148976,1.5285997,1.675411,1.4698306,1.3765906,1.1753092,1.1215351,0.9089656,1.0636351,1.7417657,1.9219186,1.6865139,1.648382,1.799218,1.3336806,1.3329039,1.4126651,1.2905073,1.2795447,1.4085693,1.695205,1.517642,1.5328435,1.4813306,1.5035365,1.7002323,1.442359,1.3828181,1.2972364,1.5270904,1.3854403,1.3025731,1.5802934,1.5266485,1.4856658,1.3339795,1.5324655,1.7713251,1.8252316,2.0431743,1.6319894,1.8361588,1.8063333,1.6419117,1.4691169,1.5252103,1.4483683,1.4188399,1.261791,1.1736076,1.1873946,1.1983935,1.4668164,1.7462604,1.8122325,2.081441,2.2327998,1.8696847,1.4637592,1.4945042,1.4117162,1.5556264,1.6075428,1.5546377,1.4531338,1.316511,1.0832331,1.2753596,1.1799047,1.1057252,1.0107847,0.92221546,0.8743219,0.8859118,0.86165047,0.7730678,0.8183652,1.0808494,0.87353027,1.0091183,0.8620284,0.8207297,0.704318,2.0007994,2.5634956,2.0282657,1.7718923,1.640943,1.5219433,1.3342651,1.2885695,1.2543299,1.4546678,1.4010545,1.3841556,1.1602421,0.95322657,0.73674303,0.78955597,0.72982365,0.789127,0.7365046,0.5559954,0.6412797,0.7797191,0.61786216,0.54593676,0.5807922,0.44762814,0.43909538,0.41976482,0.49150258,0.48009104,0.46203727,0.5529295,0.5557316,0.6883166,1.0578636,0.7174836,0.46915007,0.5129346,0.41580415,0.32984805,0.48768502,0.53840035,0.52800494,0.5526732,0.62012935,0.6346593,0.45878518,0.5996357,0.7118913,0.6003763,0.56919086,0.5601422,0.4285422,0.5583661,0.5084986,0.46878272,0.41763514,0.4243856,0.4614411,0.40068775,0.50860447,0.48919368,0.6602589,1.0098606,0.8832529,0.6399567,0.5976702,0.3831885,0.5354326,0.93439966,0.81474775,0.5450746,1.8554075,2.573937,2.809531,2.7334523,2.311108,2.503265,2.3060317,2.4581952,2.4972715,2.7482805,2.6589434,2.1487265,2.0224535,1.8005431,1.8211936,2.1639738,2.8266983,2.1413295,1.8484911,1.9288177,2.4248657,2.3228087,2.415841,2.5629563,2.609948,2.203827,2.2859488,2.3144777,2.3500934,2.476274,3.0072455,2.8649487,2.2450585,2.3651247,2.4982681,2.6975906,2.94489,2.7958574,2.7332234,2.6416588,2.224406,1.8494738,1.8300073,1.615087,1.9178159,2.3068035,2.557874,2.6333773,2.6874151,2.6266875,2.5922236,2.562542,2.7141097,2.8485904,3.025646,3.1132317,2.9618006,2.9785147,3.0245895,3.0818796,3.0032394,2.835854,2.9344916,2.9265544,2.93988,2.899993,2.9752104,2.8153872,2.3953724,2.444974,2.5438132,2.692739,3.1159673,2.8446019,2.6291018,2.702444,3.0707817,2.8978417,3.001114,2.9612827,2.8506536,2.6893597,2.735289,2.9049973,2.670197,2.4623146,2.6118655,2.6919703,2.8625998,2.935514,2.2191558,2.5744967,2.8452144,3.1186078,3.0541947,2.8463345,2.622788,2.45614,2.6108875,2.8673775,3.0558825,3.0231042,2.9303887,2.903729,2.6619983,2.9009085,3.0370812,2.6317449,2.3979,2.69354,2.9595385,2.76373,2.7139392,3.093143,2.8701634,2.8309155,2.8759403,2.9441867,2.892373,3.1286635,3.0150716,2.998682,3.0932217
+2.203771,2.6403954,2.2782824,1.829346,1.6964746,1.5165203,1.6883931,1.638519,1.6507559,1.3784568,1.1737803,1.6076231,1.5086491,1.3824911,1.4315195,1.4462962,1.5689485,1.5159711,1.3392162,1.1693988,1.1065116,1.317862,1.3330796,1.3107505,1.132658,1.0564915,0.96104765,1.0780451,1.084366,0.87803,0.9566276,0.94948626,0.9429977,1.0552182,1.0121801,0.95478886,0.6964878,0.53619796,0.48562145,0.58372176,0.5815806,0.6188457,0.8901738,0.83452135,0.69297165,0.5869123,0.86602557,0.9281457,1.3526331,1.0120974,0.87859344,1.0391355,0.85461533,0.6908914,0.56271106,0.43343353,0.4672543,0.5161442,0.43710348,0.38465777,0.36310357,0.336117,0.40781552,0.5316303,0.4315948,0.5680477,0.5620749,0.8750141,0.74773616,0.6602911,0.56246865,0.36673898,0.45956373,0.48385587,0.4458865,0.6475018,0.66297483,0.71280307,0.7987894,0.7959858,0.69516504,0.5584556,0.41624168,0.37054193,0.32383412,0.37567958,0.9271594,1.0238632,0.8015466,0.9927206,0.77604306,0.7525457,0.64881843,0.51827186,0.39885226,0.9450666,1.3679944,1.1107657,0.80041265,0.7716769,0.81621635,0.9474325,0.96205527,0.88351786,0.7394656,0.6760248,0.6028689,0.68597496,0.55250156,0.6461429,0.8043964,0.66248465,0.7183386,0.59829295,0.53207195,0.5863223,0.55855286,0.47948992,0.38649637,0.37531272,0.72253895,1.4228239,1.0345421,1.0507879,1.0302416,1.0964899,0.88448876,1.0414289,0.94579077,0.7700327,0.85879326,0.89001787,1.0229685,0.83790135,0.9204104,0.7834713,0.72625315,0.64756185,0.7789513,1.020868,1.0280622,1.0707513,1.1462551,1.144812,1.0057722,0.73278457,1.2916348,1.1798749,1.0483837,1.0271217,0.88689995,0.77532536,0.8293597,0.6599475,0.6213762,0.5237238,0.70891994,0.67588544,0.6293801,0.6169826,0.5956329,0.5553065,0.49630445,0.41218585,0.54167974,0.5765921,0.58068454,0.53810644,0.49708915,0.3845671,1.0410161,2.0084436,1.2420899,1.1161628,1.12063,1.0399077,0.93760407,0.88363034,0.8202451,0.7230102,0.71878207,0.8826003,0.8186687,0.7105311,0.6556637,0.62916195,0.5415174,0.565073,0.51239914,0.41432667,0.45530242,0.64847857,0.6278824,0.543972,0.49418297,0.43168104,0.4253633,0.38022837,0.30922583,0.54204726,0.3543275,0.3999368,0.436028,0.5473311,0.6485585,0.52782536,0.41588277,0.44025332,0.34131464,0.2255913,0.42403716,0.44238847,0.391473,0.4520326,0.39940137,0.3620519,0.29274592,0.52235156,0.56688744,0.5245203,0.42484748,0.44929066,0.39122924,0.49038032,0.44198498,0.38033706,0.35018346,0.38557768,0.32520965,0.34587872,0.3778612,0.3514043,0.42869055,0.6234809,0.48542124,0.31511667,0.27430946,0.095016636,0.23377344,0.5298245,0.45927238,0.24365178,1.9218853,2.0427976,2.1642585,1.8840628,1.5590553,1.8713995,1.9393181,1.9197208,1.8008904,1.9149344,2.0473475,1.7334697,1.575438,1.2174565,1.6241705,1.7330878,2.1178248,1.8142116,1.2469578,1.3147142,2.178594,1.784834,1.8530331,1.7265991,1.9383336,1.5613112,1.5238541,1.4644464,1.4518275,1.5731523,1.812751,2.1624656,1.6033347,1.9349593,2.2254405,2.4721475,2.313809,2.1307378,2.1056693,2.3079474,1.9542502,1.6834497,1.7367454,1.4222461,1.8594623,1.9251491,1.9659467,1.9167717,1.9031551,1.746098,1.7016747,1.7245588,1.8306158,2.4348326,2.5576591,2.5013433,2.3441193,2.0632286,2.2451065,2.3757286,2.1879482,2.010622,2.0654483,1.9271472,1.8922486,1.8179457,1.8962051,2.0625997,1.5920224,1.6112882,1.973733,2.1073442,2.330159,2.2248192,1.8276389,1.8153558,2.1475265,2.053421,2.2481756,2.3558388,2.083974,1.6632254,1.8487654,1.9486278,1.6838315,1.9758773,1.877413,1.8795186,1.910778,2.1807206,1.5770948,1.5582224,1.5989358,2.2772303,2.1173918,1.8629711,1.59146,1.510412,1.5912428,2.1052732,2.0374773,1.6762049,1.9115452,2.0516553,1.7183133,1.9003713,2.1249902,1.754691,1.5563935,1.6347885,1.8770308,1.7154529,1.5753409,1.6389725,1.6482587,1.4228904,1.4651957,1.4466616,1.4008598,1.7350701,1.5303417,1.5595176,1.7205236
+1.7225704,2.4150376,1.61413,1.0851518,0.71362555,0.4044325,0.76290125,0.687858,0.38464674,0.07950817,-0.095852844,0.22615433,0.36294812,0.9202844,1.1693255,0.8603619,0.6082157,0.40484223,0.17521144,0.01849807,-0.065517165,0.5546468,0.74657625,0.37599838,0.12930982,-0.015654325,-0.08603852,0.03390582,0.13162923,-0.051954485,-0.11660015,-0.13214985,-0.030309103,0.030016795,-0.04733146,-0.31515312,-0.43690413,-0.48044866,-0.49296457,-0.4203533,-0.44025904,-0.4293986,-0.41275406,-0.3916989,-0.45051837,-0.47275746,-0.40802413,0.6315489,1.3500247,1.0710561,0.8244662,0.70917594,0.35469592,0.10363196,-0.06487476,-0.1549184,-0.21615916,-0.29570925,-0.29538798,-0.25731048,-0.24477226,-0.02317147,0.052242033,-0.1455811,-0.2176606,-0.20375317,0.03798271,0.48182932,0.1403265,-0.020830415,-0.12871954,-0.2117629,-0.21624094,-0.2153157,-0.2262947,-0.0037297532,0.32261285,0.27969313,0.30937,0.28343898,0.006490074,-0.10842619,-0.19986194,-0.23148936,-0.27052975,-0.12960196,0.50447345,0.6362619,0.36739784,0.59655106,0.40852845,0.31835186,0.07620665,-0.035285734,-0.10189568,0.17712879,0.3545569,0.19870262,-0.019081421,-0.04317189,0.59083045,0.8208058,0.58614874,0.25331002,0.09835639,0.013658188,-0.05806201,-0.021941878,-0.028205551,0.67109525,0.41934368,0.75124365,1.0513273,0.42670074,0.16451555,0.014255635,-0.1059685,0.08370474,-0.091357134,-0.15026987,-0.17645696,-0.11258229,0.6251893,0.6757998,0.8943242,0.67697644,0.71663225,0.59261155,0.56491494,0.60176444,0.5471715,0.6034516,0.6068492,0.5149893,0.5704932,0.34916154,0.23873815,0.17345774,0.06484683,0.33577025,0.13912854,0.17786503,0.12829798,0.28484634,0.15468942,0.11139579,0.20129463,0.8561381,0.3398453,0.13835746,0.08955158,0.03167823,-0.0013284534,-0.07686847,0.027135082,-0.039399333,-0.13368887,-0.11699755,-0.20157242,-0.21231052,-0.20545298,-0.22298306,-0.23582008,-0.2431969,0.60754335,0.5223992,0.29812756,0.19923002,0.10019274,-0.04779192,-0.10342301,0.37633792,0.36748946,0.21633995,0.14135495,0.024962254,-0.023974575,-0.08084855,0.30975103,0.2457968,0.12575881,0.13221473,0.03900779,-0.11778972,-0.17900479,-0.17764863,-0.19504505,-0.21888894,-0.2244103,-0.26149267,-0.25450146,-0.23834723,-0.29266012,-0.40654385,-0.4370649,-0.44272673,-0.39629877,-0.4085703,-0.4064613,-0.40767515,-0.43859297,-0.40196323,-0.349712,-0.38343436,-0.3861397,-0.48142707,-0.5260997,-0.4851877,-0.47842675,-0.46728438,-0.41654646,-0.38392466,-0.38086683,-0.3773911,-0.3552451,-0.40935647,-0.41546637,-0.393018,-0.35374856,-0.43757927,-0.47454572,-0.46120185,-0.51268697,-0.46343482,-0.51008207,-0.54171026,-0.5124749,-0.5411234,-0.56375396,-0.55732757,-0.50121814,-0.51496893,-0.5086967,-0.38009852,-0.50444824,-0.5925681,-0.5881843,-0.60603523,-0.53298104,-0.4682892,-0.4608041,-0.5567673,-0.43881208,0.6584449,0.8831425,0.6894649,0.39395934,0.44431356,1.8674251,2.2851694,1.5977224,1.2584796,1.1577606,0.9472711,0.71357936,0.50985366,0.7194311,1.2667501,1.1678724,0.9979638,0.6494286,0.5595486,1.8523471,1.3350635,1.0791427,0.7501463,0.6587286,0.4955728,0.39663425,0.31577933,0.24808583,0.22990671,0.41882586,0.78575206,0.5641219,1.8929944,2.2080226,2.2795882,1.8737137,1.4892179,1.5415676,1.982501,1.5316648,1.2520219,1.1583118,0.7982412,0.7284438,0.6984116,0.64130247,0.5637412,0.49045575,0.43657744,0.40952635,0.3454182,0.595991,1.9471735,2.5038404,2.0924127,1.7754992,1.442168,1.2022452,1.372805,1.0413727,0.9807995,0.84110475,0.6286539,0.5428079,0.45084676,0.51026475,0.74474937,0.48767376,0.31139198,0.7237522,1.5160944,1.2719617,1.0997005,0.77078974,0.6282568,0.5609661,0.4174686,0.4756679,0.83042204,0.52945817,0.26992872,0.20438391,0.14614746,0.22971117,1.2017443,0.97242814,0.69307274,0.6338431,0.6475475,0.31633383,0.974146,1.0493059,1.0662566,1.0816299,0.683465,0.38957655,0.22316068,0.1550908,0.22068596,0.35670698,0.22593033,0.3773532,0.33208114,0.6376071,0.84215736,0.83198696,0.502183,0.20709658,0.09523063,0.108967334,-0.047126748,-0.120859616,-0.10783274,-0.118766166,-0.23185018,-0.2952543,-0.294195,-0.26029846,-0.2924866,-0.30344898,-0.31696838,0.7711165
+2.130835,2.823382,2.5274878,2.131519,1.6907628,1.2827529,1.1304803,1.0845149,1.0037638,0.7222376,0.5735524,0.46063396,1.3497672,2.3223531,1.6676425,1.28946,1.2361945,1.143413,0.9235792,0.73298705,0.5259864,0.69044507,0.984098,0.74277943,1.3813326,1.5030413,1.8308785,2.4530878,1.6897992,1.3383934,1.1573431,0.95982313,0.90379626,0.90292966,0.9242284,0.7454529,0.59276783,0.42747712,0.32122976,0.20561826,0.3101828,0.23032546,0.2526444,0.25681615,0.22798714,0.16066739,0.57071716,1.1388468,0.95562255,1.796,1.5650178,1.4244863,1.1235532,0.8839656,0.70016825,0.56269294,0.51903826,0.4455219,0.39928013,0.4020037,0.34398487,0.3279959,0.28277048,0.25241965,0.23564333,0.3094406,2.4214096,2.087589,1.3411062,1.0035523,0.88587,0.7654536,0.7923305,1.2251298,1.0818704,0.94362617,1.0526639,1.5496422,1.1085143,0.9105158,0.84111756,0.6990788,0.6029142,0.54548013,0.4919235,0.45498145,0.7950072,1.2298784,0.97281,1.3689834,1.3688422,1.270855,1.0433242,1.3669083,1.4253058,1.209641,1.5546159,1.2843372,1.079493,0.9432875,0.92681086,1.3133614,1.1488729,1.107249,1.0487275,1.645227,1.6081324,1.6217798,1.4858639,1.3066628,1.131688,1.0592258,1.3106699,1.1358397,1.0267079,0.941291,0.84515053,1.2852702,1.0630956,1.093244,0.992362,1.0288098,1.2608519,1.2746762,1.0346413,0.89800346,1.36274,1.3365555,1.1924593,1.33048,1.2957776,2.0108862,1.5301192,1.2903745,1.368381,1.2100201,1.1817704,0.99401045,0.85745597,1.0480204,1.0019051,1.0101906,1.27725,1.1757789,1.0133563,1.4785993,1.2110518,1.6551473,1.335989,1.0860213,1.1115589,0.93766224,0.8538966,1.0040604,2.297372,2.395904,1.7454009,1.4738641,1.2566493,1.1448804,1.0028404,0.8596541,0.7304646,0.64210105,0.8359773,1.1947198,1.1510817,0.96458703,0.7721519,0.68909836,1.2596333,1.3871632,1.2789983,1.0530764,0.9137598,0.8137082,0.68619555,0.5585431,0.72584397,0.68199897,0.5901585,0.58017236,0.54997885,0.46418992,0.37342763,0.28585058,0.19785026,0.18174808,0.13177776,0.19553317,0.22734293,0.24356881,0.26242495,0.15817747,0.1242706,0.12277795,0.16140726,0.092339315,0.2037816,0.36841413,0.25585574,0.22221252,0.20461562,0.22129938,0.30199113,0.20329452,0.15231444,0.12097136,0.069291435,0.021195717,0.07584971,0.09065653,0.08742264,0.13801475,0.11034953,0.030302174,0.124955565,0.10800576,0.17081922,0.10202536,0.022249423,0.03589589,0.019397609,0.15373987,0.13182971,0.072151594,-0.001671426,-0.0012656674,0.05803088,0.0039184913,0.05622127,0.025860481,0.063550554,0.22673348,0.13410252,0.010597803,-0.05777558,-0.072256126,-0.023882203,0.081936754,0.08783532,-0.049252473,-0.084400006,0.23748493,1.1835717,1.080021,0.70443135,0.5120637,1.8408675,2.4578915,1.7236955,1.5290353,1.4831637,1.2623992,0.97043383,0.86737025,1.1011844,1.9389565,1.6272186,1.4676262,1.1630942,1.0438864,1.7193762,1.5022802,1.3941898,1.2139856,1.0847281,1.019444,0.909837,0.8003557,0.80780137,0.8498505,1.1728017,1.3746122,0.9300769,0.9645915,1.151473,2.312047,1.8445463,1.6134038,1.2676682,2.4505186,1.9123516,1.6484228,1.3969438,1.2470639,1.2476835,1.2081074,1.112707,1.0270581,0.94006574,0.8919718,0.9020767,0.88026273,1.0227921,2.1963034,2.4771554,2.3640585,1.9577055,1.5792946,1.433852,1.5923907,1.3365873,1.2567687,1.2224954,0.9607265,0.89995444,0.828477,0.7427947,0.8101089,0.6384789,0.5242229,0.5054084,1.8694836,1.9377513,1.5862012,1.2759905,1.1512413,1.0934851,0.97876513,0.82037765,1.043832,0.82527244,0.57642925,0.69408447,0.5898413,0.45597705,1.8264391,1.6379992,1.278502,1.2599,1.254945,0.9121817,0.7649539,0.7125579,1.0047673,1.3676202,0.9554495,0.72979426,0.5782757,0.52263653,0.50098056,0.6345806,0.5508988,0.56099766,0.3359375,0.9845145,1.6113816,1.396915,1.1504347,0.8566031,0.7314812,0.71356386,0.5914179,0.4369167,0.43467546,0.34261763,0.2532934,0.22048515,0.244225,0.45998776,0.4724385,0.35895222,0.2885401,0.47577256
+1.0372075,0.76442444,0.698551,0.6789012,0.6681609,0.9212304,0.87565637,0.79267085,0.6980728,0.73950815,1.2352059,1.1122837,0.96144,1.0768793,1.4435273,1.5308505,1.6090422,1.2169614,1.2616484,1.5888351,1.7748395,1.3141316,1.197139,1.2856021,1.1442631,1.1800461,1.1385238,1.2984592,1.4974899,1.684253,1.6667243,1.7148144,1.8994446,2.0176897,1.850472,2.0150564,2.091927,1.7493987,1.6388934,1.6802378,1.8568926,1.9004395,2.1513896,2.3762517,1.7499962,1.7412151,1.9410436,2.017152,2.041494,2.0231907,2.1041641,1.9638418,1.9127455,1.9252081,2.0979536,2.0124936,2.153511,2.1501112,2.4550219,2.4147224,2.3431327,2.1940322,2.2156005,2.4837704,2.2738824,2.4990103,2.9096122,2.4023633,2.3159702,2.1869078,2.1495888,2.1558402,2.278654,2.17201,2.1354957,2.0427792,2.0402694,2.044216,2.0140526,2.0155168,2.3975563,2.4919238,2.3623152,2.2085552,2.097827,2.033317,2.2482052,2.5357327,2.2648997,2.1676092,2.2929535,2.4741642,2.2867212,2.162796,2.1078525,2.452473,2.509342,2.4722328,2.3099718,2.2315383,2.1634507,1.9748809,2.3787093,2.3900454,2.5458636,2.4442003,2.253503,2.1623535,2.7781124,2.3681777,2.1996472,2.1272924,2.5592043,2.690641,2.3642757,2.5743032,2.4837372,2.2983868,2.2432585,2.2042706,2.0421925,2.0895467,2.0571778,2.0786595,2.2817822,2.135284,2.4385433,2.4772592,2.3346894,2.1451762,2.0494187,2.4427342,2.2384539,2.200821,2.2181954,2.0939074,2.2376244,2.2644556,2.237137,2.1619606,2.234955,2.8637362,3.2634206,2.5616522,2.5748563,2.5300393,2.6678607,2.992836,2.4421327,2.6744757,2.5740514,2.5742717,2.81325,2.6847253,2.319985,2.2442794,2.117746,1.916146,2.2736588,2.528009,2.8068519,2.5575044,2.611573,2.8398626,2.5830238,2.9042487,2.4486196,2.2908072,2.1103177,2.5291853,2.518393,2.3719392,2.399816,2.233777,2.0364292,2.0513961,1.9987657,1.8540552,1.8971144,2.3828208,2.1238744,2.1640058,2.0988646,2.065347,2.0614882,2.0219247,1.9661949,1.8517433,2.0496123,2.1135392,2.3967462,1.9635417,1.7282878,1.8761241,2.3122544,2.0396636,1.72756,1.8744564,2.5179725,2.2478156,2.4325576,2.3452494,1.9877747,1.9501696,1.8866079,1.9025664,1.9177103,1.8403807,1.5580388,1.2202309,1.4351819,2.3158617,1.8145039,1.6166431,2.1738176,2.3019834,2.0019836,1.7259421,1.7850947,1.6806931,1.7933235,2.0705838,1.736403,1.7252591,1.8111377,1.5530334,1.5905732,1.6656353,1.4813164,1.6004702,1.4609439,1.9838421,1.7349852,1.562433,1.4035723,1.2277137,1.0355848,1.2435489,1.2895392,1.2372258,1.1122508,1.111098,1.4372358,1.5181971,1.5925138,1.563464,1.2358433,1.0623976,1.331208,1.2528492,1.4281812,1.4205195,1.1604,0.9821396,0.947857,1.023165,1.029831,0.99502957,1.0088254,1.0265026,1.0511388,1.0456008,1.0376978,1.2908212,1.1299694,0.9608712,0.95248497,1.0377924,0.96541625,1.3521323,1.2796214,1.0980134,1.2263327,1.1367768,1.0491058,1.0076466,0.95995426,1.0741712,1.1518545,1.0885259,1.0932156,1.0575013,1.0289649,1.052058,1.1156754,1.2729212,1.1306624,1.0725657,1.0405365,1.0205439,0.9995692,1.0147083,1.0763003,1.0282983,1.0238712,1.0900998,1.1258833,1.2197151,1.3783388,1.3772976,1.1811873,1.1727917,1.1688963,1.0612006,0.9764695,1.0194842,1.0473733,1.0274538,1.0070491,1.0326524,1.0902904,1.0082824,1.0639735,1.0963525,1.0729859,1.1137484,1.0764278,1.2040138,1.1632107,1.3316956,1.3908031,1.1064937,0.98762184,1.0984781,1.2523949,1.0075548,1.2976215,1.3052318,1.2558539,1.0573138,1.212971,1.0853363,1.016381,1.2826413,1.151855,1.047559,1.0175095,1.0147593,0.9973717,1.2149378,1.3669454,1.2721639,1.0007359,1.0199754,0.9492675,0.9481257,0.9759051,0.9254985,0.937356,0.88750994,0.8957164,1.0625514,1.0690337,1.1723853,1.0751998,0.86326593,0.89208585,1.140243,0.9568713,1.0270361,1.2080877,1.213126,1.1990879,1.1102225,1.1678648
+1.4704517,1.212337,1.082527,1.075047,1.108155,1.109966,1.1313926,1.026015,1.0325441,0.9992142,1.0811893,1.2687569,1.1744653,1.518225,1.8201215,1.978417,1.7483493,1.3954911,1.081397,1.1787393,1.5487368,1.132201,0.7835075,0.85238373,0.7917392,0.6423557,0.6490392,0.5812517,0.69807446,0.8763828,0.9251472,1.0123432,1.3283851,1.8734088,1.5762165,1.9022228,2.5374584,2.0987759,1.7894676,1.8275008,2.2396212,2.3188417,2.5033913,2.270952,1.6893609,1.5088177,1.6357896,1.8358953,2.2805552,2.5072896,2.4107232,2.552679,2.485487,2.5176136,2.8045566,2.4448118,2.6701925,2.7192864,2.918756,2.8435252,3.0570629,2.5919003,2.6958437,2.631632,2.7543976,2.916904,3.15201,2.9759722,2.9672732,2.7916822,2.7965367,2.6360297,2.9190483,2.6681745,2.685946,2.627735,2.5512385,2.5399194,2.460641,2.3964653,2.461752,2.7058868,2.4185574,2.4291968,2.3768153,2.3932028,2.5554833,2.8586779,2.9623191,2.7206597,2.4631586,3.0765314,2.7704892,2.845136,2.7745914,2.6401618,2.8887303,2.7448463,2.9578652,3.2638493,2.898425,2.8210368,2.8423853,3.0120106,2.9828632,3.1426542,2.968608,2.8874993,2.728662,2.8473792,2.8650408,2.5670154,2.656702,2.729002,2.5504036,2.567576,2.7643294,2.6260927,2.6762722,2.339272,2.1659687,2.243657,2.151842,2.149357,2.1233716,2.0518978,2.6194773,2.6707587,2.6550102,2.6013331,2.4759505,2.19234,2.4923034,3.0860093,2.736062,2.550438,2.696786,2.7727757,2.5477562,2.6431303,2.5749793,2.9375458,3.1976812,2.9495473,2.7841034,2.720026,2.8292031,2.7724519,2.7741055,2.6523247,2.785719,2.753102,2.9182916,2.9588456,2.8573833,2.7237258,2.6964698,2.4892907,2.343194,2.608429,2.961523,2.896293,2.9526734,3.0169024,2.9525685,2.8727517,2.912346,2.9216776,2.7543163,2.6001883,2.5829196,2.7235384,2.8363085,2.748279,2.4979277,2.5431426,2.1365027,2.058445,2.318311,2.6732244,2.7276828,2.8149343,2.7996264,2.6809964,2.4232526,2.4579487,2.4295115,2.520338,2.5538104,2.513967,2.709825,2.743883,2.341198,2.2540224,2.6127775,3.0013742,2.4709406,2.4912257,2.7698023,2.9646084,2.9374738,2.7729564,2.703186,2.608459,2.2943842,1.9117072,2.0779955,1.8199356,1.2930332,1.0268536,1.0908042,1.8002253,1.6106513,1.5190258,1.9596739,2.3490064,2.5105343,2.385438,2.248609,2.3903284,2.553973,2.531041,2.4008048,2.073566,2.3771791,1.6000502,1.901126,2.0732853,1.7869973,1.8158877,1.9578136,2.1172922,2.0589888,1.6086171,1.1792326,0.9633172,0.7431748,0.74258673,0.73876184,0.78992873,0.66673607,0.69790107,1.013262,1.094886,1.0901885,0.95473284,0.7476399,0.7758362,0.84260744,0.8671925,0.90246654,0.96375614,0.9023402,0.8860059,0.84702885,0.87239623,0.9356145,1.0829262,1.1760726,1.1115962,1.0484855,1.1190202,1.0517964,1.0255384,1.0276129,0.9115863,0.9590242,1.034309,1.1146424,1.1616364,1.1253012,1.0459312,0.9573041,1.0735892,1.0752226,0.9249456,0.88513803,0.82218957,1.0070993,1.1125101,1.1607983,1.060325,1.1268483,0.96697944,0.8758322,1.1200168,1.1584144,1.1675941,1.0929017,1.1254064,0.98423016,0.9994472,0.9102092,0.993703,1.0134621,1.0499603,1.114027,1.1289978,1.2573884,1.1587849,0.9642668,0.873258,0.8168376,0.93501174,0.98952234,0.9081726,0.9071733,1.0088936,1.0541875,0.9908703,0.91469,1.0036718,0.93682384,1.0539443,1.082766,1.0584538,0.8853983,0.88902104,1.0388312,0.9858059,1.0790266,0.97734845,0.94365746,1.0630753,1.150033,1.0125815,1.161228,1.3452784,1.3075647,0.9926659,0.965858,0.95722544,0.9343037,0.9709025,1.0215983,1.0769556,1.0545931,1.1009684,1.0709316,0.9590961,1.4680674,1.3148677,1.1651573,1.109165,1.1121365,1.0805587,1.1186714,1.0954556,1.1145422,1.121924,1.0979153,1.0092506,1.1506636,1.2859411,1.2644808,1.0835487,1.0537862,1.1376,1.1858172,1.0057886,1.2550659,1.2965534,1.2290661,1.0998096,1.2440014
+0.9507168,0.9287394,0.3875851,0.24431512,0.11865049,0.22788346,0.71539724,0.3826125,0.45988733,0.03307963,0.8823544,1.0243366,0.9568093,0.9767921,0.9830854,0.9638629,0.84651494,0.67150885,0.61456877,0.45789897,0.15584868,0.37519592,0.47402304,0.35040566,0.28478903,0.8569006,0.8455844,0.76840615,0.59002924,0.49118775,0.7684157,0.84481996,0.8594771,0.65331376,0.8123343,0.52792484,0.29726118,0.3359001,0.24384922,0.16543859,0.018276714,-0.0323449,1.0454599,1.4977336,1.2012885,0.9771176,0.96916884,0.80759287,0.46867356,0.2603059,0.08013892,-0.017815933,-0.08093958,-0.2395218,-0.41651702,-0.5049931,-0.29743683,-0.40001723,-0.14770135,-0.19760501,-0.2773072,-0.3431605,-0.58488595,-0.62176794,-0.5462996,0.915344,0.9408565,0.45253825,0.2992398,0.047541555,-0.2180517,-0.47101825,-0.124036126,-0.33943674,-0.46101618,-0.3820021,0.89095235,0.7590146,0.2519755,0.019771732,-0.2915183,-0.3078357,-0.4818955,-0.43699813,-0.43665165,-0.55336225,-0.7749677,-0.6516617,-0.6487205,-0.52959704,-0.65296364,-0.010898404,-0.15223548,-0.36827224,-0.47067332,-0.6916332,-0.7653154,-0.6370841,0.92125016,0.6914307,0.4176022,0.108604886,0.095220305,0.30443832,1.059323,0.48902225,0.44481277,0.045751765,-0.20236877,-0.21541229,-0.35858965,-0.4512726,-0.47091037,-0.40033156,-0.51149774,-0.18138331,-0.25799823,-0.19281796,-0.22044054,-0.30310297,0.09160685,0.69425905,0.4300387,0.17504606,-0.044699155,-0.19354594,-0.43694174,-0.3308298,-0.4071697,-0.4214673,-0.53307205,-0.601594,-0.6429304,-0.22953424,0.59833914,0.6973953,0.60419834,1.1802399,0.9273232,0.97652686,0.7722193,0.6501685,0.63924676,0.74054635,0.48745027,0.28161347,0.31932634,0.38478965,0.24909252,0.4046631,0.4876785,0.18470308,0.25447527,0.39538822,0.26076907,0.122832105,-0.012586668,-0.16860613,-0.3839084,-0.46090895,0.084520794,0.4380648,0.413795,0.66116947,0.49269617,0.2704261,0.1857914,0.23247144,0.11579095,0.38659018,0.6418576,0.5854996,0.38423175,0.3014422,0.11258376,0.064520225,0.25617537,0.06210522,-0.14978588,0.22153527,0.17210585,0.2768245,0.5578744,0.7725248,0.7541099,0.71287495,0.59778637,0.5328936,0.4907598,0.5418088,0.69483745,0.64404964,0.52319884,0.39292523,0.28738037,0.9780867,0.77613,0.66382545,0.6179377,0.72213054,0.65466887,0.79056954,0.71161455,0.9893689,0.88044363,0.54072887,0.6681281,0.67599875,0.5951093,0.79961324,0.75195277,0.6984328,0.8302124,0.6617362,0.5405282,0.5772695,0.78432655,0.91130733,0.82150054,0.69908017,0.6984379,0.6576715,0.6535243,0.62288254,0.6665385,0.49297947,0.44944698,0.39837956,0.35507372,0.4018153,0.3756038,0.395976,0.5901326,0.5597306,0.33073568,0.16907576,-0.0012546256,0.40973812,0.4630686,0.49921945,0.57487315,0.4556983,0.5001562,0.759312,0.76853156,0.5338991,0.50718725,0.36808926,0.500603,0.52135974,0.43730992,0.17236906,-0.0019133165,-0.25587296,-0.05969078,0.15156019,-0.15159488,-0.2935163,-0.3229497,-0.27462113,-0.02876769,-0.042701475,-0.2227324,-0.1352402,-0.052232273,0.14115067,0.11426283,0.4091848,0.45251727,0.6661149,0.59028625,0.41183233,0.5183328,0.59927213,0.31454873,0.40041965,0.47798532,1.0805633,0.6712916,-0.020186715,-0.20778114,-0.23032066,-0.17514357,-0.12546271,0.3785855,0.5578912,1.001603,0.43673813,0.20244539,0.22654969,0.21888843,0.754179,1.0420792,0.819651,0.9213939,1.0809789,1.2447095,1.1347799,0.89613044,0.86230683,0.95279336,0.7582712,0.49707213,0.1671732,-0.01848334,-0.0319845,0.13108733,-0.14012662,-0.41506648,-0.3872026,-0.11378964,0.035924204,0.3522737,0.715143,0.32745612,0.0528934,0.5373268,0.94634616,0.87238634,0.7264242,0.9193319,0.49713528,0.4111471,1.1075659,1.0796907,1.0381393,0.8840687,0.8979169,1.0334566,1.0160809,1.0730904,0.82190216,0.6872572,0.81204236,1.0766095,1.0391027,0.4586368,0.110311195,0.020510666,0.60765976,0.702249,0.8208069,0.59104216,0.31496423,-0.11461856,-0.22059062,-0.38273203,-0.24980259,-0.27449015,-0.14046025,-0.20199043,0.13598466,0.3921764,0.43432358,0.7287327,0.4607983,0.05859045,0.42983305,0.8254893,0.7569184,0.8090681,1.1093314,1.1045275,1.3921208,1.2707292
+1.5358272,1.8050284,1.6340973,1.3661535,1.4380376,1.071291,1.2240422,1.2187333,1.2600257,0.90986454,1.3596909,1.5504012,1.743545,1.6752294,1.449109,1.2965231,1.1248654,0.8964034,0.70523727,0.59391093,0.345848,0.6680379,0.8936361,0.73209333,0.4711412,0.5390535,0.88584524,0.8978441,0.8795915,0.88462,1.356183,1.5449338,1.5375481,1.3326834,1.3543203,1.1595256,0.8450581,0.8035786,0.6888881,0.86602235,1.132155,1.1273282,1.4881526,1.5464046,1.6008606,1.5489936,1.230113,1.3497603,1.2994823,1.1098585,1.1564612,1.3492692,1.2408571,0.939954,0.6785978,0.4977627,0.35691783,0.54974306,1.2322674,1.342819,1.0364646,0.73951006,0.46422598,0.40867049,0.38647234,1.5191646,1.3021209,1.1127625,0.87007225,0.50368553,0.28076097,0.25071347,0.22237238,0.25964016,0.032474816,0.24479058,1.0694461,0.9439646,0.65832037,0.40525484,0.17226335,0.104655184,0.07309253,1.6361291,1.6265221,1.2838845,0.90840435,1.1018171,0.95979965,0.7805915,0.5244409,0.2521588,0.28205374,0.11789457,0.08259022,0.2524258,0.28371873,0.32923198,0.21952984,0.16259736,0.13865665,0.10202179,0.0031974986,-0.04518657,0.33099505,0.3964805,0.239171,0.109304406,0.6065483,0.56696045,0.4384272,0.20688608,0.24447992,0.29387167,0.15081754,0.06094504,0.06567287,-0.030809663,-0.10698598,0.15076315,0.38329422,0.9741992,0.59830254,0.5302499,0.40816903,0.26348972,0.10764865,0.031087004,0.08059972,0.070545785,-0.0736111,0.12813741,0.2121666,0.069507964,0.57285917,1.2380893,1.538399,1.5046736,1.7610097,1.5399821,1.3817823,1.4936612,1.5687196,1.4060203,1.0873867,0.85737,1.1521542,1.1290138,0.93854684,0.81659526,0.6724528,0.557727,0.28632644,0.40605366,0.32504675,0.2423929,0.16296762,0.06663699,-0.109279074,-0.1393359,-0.19071096,0.66909146,1.2093573,1.4033811,1.1844172,0.92661166,0.72156,0.6833429,0.4909842,0.43462932,0.972592,0.8694776,0.8113111,0.622738,0.3985445,0.21738705,0.16641402,0.16378242,0.12348133,0.4398905,1.0075488,1.3430946,1.514471,1.5306417,1.519145,1.407831,1.3192072,1.0968753,0.9032804,0.7487973,0.59232295,0.5522979,0.36063945,0.29903486,0.16852605,0.09218871,0.31593412,0.048813075,-0.059435375,-0.03815847,0.016477577,0.055200838,0.9234016,1.5158075,1.470768,1.2311137,1.2525681,1.2223014,0.94077516,0.7673943,0.9375241,0.8320024,0.73759776,0.8176972,0.63074225,0.52389,0.43623084,0.5399216,0.4679296,0.35669327,0.42644602,0.248864,0.6196904,0.753186,0.6495753,0.6800423,0.5240539,0.46611798,0.37513313,0.4133811,0.46708864,0.4571069,0.7871959,0.8993374,0.8191559,0.61717033,0.46014532,0.4869951,0.7455865,0.6491991,0.713444,0.42634037,0.79070544,1.012775,1.1311148,1.0408674,0.9675058,0.89856005,0.79560906,0.9565773,1.2251451,1.0240088,0.8625906,0.65089965,0.5121256,0.7800791,0.90101266,0.7159384,0.40994537,0.32700828,0.7824239,1.3663299,1.2915533,0.9682418,0.9313131,1.2225337,1.148209,1.0564333,1.3152817,1.2315674,1.2612805,1.4293585,1.1135131,1.1977664,0.83117825,0.9316857,0.95749164,0.99387246,1.517554,0.96034765,0.6853875,0.5296895,0.4974194,0.41449654,0.5038307,1.0763633,1.5646579,1.7428483,1.3366637,1.3858495,1.1281517,1.0085986,1.3028262,1.4446411,1.4283669,1.5471835,1.5817289,1.6374873,1.5950418,1.565197,1.6268978,1.437598,1.2430652,1.166163,0.9173762,0.82277584,0.95540607,0.9199871,0.5186099,0.22111818,0.4087834,0.7796258,1.0311216,1.2560918,1.5006368,0.8048458,1.0098313,1.0445762,1.5750124,1.3731501,1.3941822,1.1358019,1.008784,1.1272374,1.0075969,1.1234093,1.0907886,0.9680388,0.98377216,0.9991484,1.5172845,1.3784276,1.1944456,0.9214963,1.6025751,1.7095817,1.7330155,1.2062032,1.0973537,1.0821118,1.4036961,1.5646389,1.6862091,1.5024071,1.1140349,0.8190226,0.76645184,1.1119205,0.8533392,0.7870953,0.44194996,0.7137321,0.9208889,0.7452999,0.9996296,1.2990832,0.9216105,1.0028977,1.024134,0.89924073,1.218957,1.3733491,1.561135,1.4602878,1.6718378
+1.0743936,2.3064914,2.92703,2.8563726,3.1363516,2.2174432,2.3354075,2.4137807,2.6535492,2.2289505,2.019405,2.7642512,2.9216871,2.845161,2.6637416,2.6736803,2.6938324,2.5391135,2.4202397,2.5212302,2.2475526,2.2264037,2.3748665,2.4245076,2.0353317,1.7831371,2.1906629,2.2310724,2.398938,2.5304744,2.3171463,2.412994,2.544608,2.4810858,2.658573,2.7354953,2.2360718,2.0053957,1.9226174,1.7546761,2.0595093,2.187221,2.5928142,2.5532813,2.6926198,2.8613257,2.4913526,2.7947774,2.8115034,2.5441208,2.4309926,2.6416242,2.7795937,2.4487886,2.149361,1.9317693,1.8391929,1.7630309,1.6007855,1.7210331,1.8155215,1.7325704,1.3387836,1.6212065,1.522928,1.8425796,1.9273218,1.8332511,2.1154513,1.8708589,1.2269163,1.1033388,1.1647522,1.7078788,1.2115176,0.8367078,1.0335462,1.3294967,1.455325,1.1924187,0.89329845,0.9618707,1.332732,1.8060141,2.2270079,2.2214057,1.8103893,1.6151865,1.7951182,2.0607462,1.9361511,1.2983806,1.4547765,1.468224,2.13839,2.1354337,2.0406804,2.0469346,1.9302152,2.0565405,2.095294,1.86523,1.4882838,1.5017178,1.3937608,1.7224133,1.8161285,1.7058887,1.3622367,1.5359912,1.6371775,1.3351957,1.2116058,1.3827112,1.2334425,1.2324417,1.5194988,1.461967,2.2275043,2.3316214,1.9670091,1.7371825,1.6221862,1.6775296,1.549411,1.4661827,1.2264184,1.1236099,1.3960981,1.3720183,1.036541,1.1784238,1.1812854,1.0638132,0.95524263,1.1347127,1.3497026,1.4790064,2.4020944,2.3019114,1.8420634,1.764863,2.1937358,2.370561,1.9273489,1.586005,1.2848319,1.2628465,1.2291944,1.0986059,1.2370918,1.3140575,1.0895149,1.2933221,1.7064351,1.2461939,0.9684526,0.8146591,0.70152396,0.7062417,0.6564007,0.6091794,0.78475714,1.1785439,1.1966059,0.95605636,0.872516,0.829875,0.7030778,0.60981625,0.9459108,1.0098525,1.0597851,0.96930796,0.7867639,0.69797516,0.6646617,0.6883309,0.66020554,0.93049514,1.1869597,2.0584526,2.251277,2.1622572,2.0503728,1.9512031,1.679992,1.3521144,1.377017,1.2544224,1.3609713,1.4326348,1.1690412,0.90814567,0.7667661,0.7240457,0.92358816,0.6432682,0.5861359,0.55257094,0.47282857,0.5341038,1.1010437,2.4148233,2.3482866,2.2011156,2.1976368,2.387665,2.0958354,1.6612246,1.7759588,1.6214147,1.4679887,1.6284161,1.2532833,1.269633,1.3734293,1.8565103,1.9641999,1.8151768,1.6291336,1.4266512,1.786102,1.929135,1.876965,2.163321,1.8430508,1.6942015,1.6165229,1.573066,1.6237667,1.5821705,1.843466,2.0895808,1.9965007,1.7114947,1.5034695,1.1309384,1.6328454,1.8879112,1.8475895,1.8313183,1.5434594,1.8783634,2.3323443,2.4554865,2.3882885,2.2712607,1.7657385,2.1492953,2.242273,2.478027,2.345809,2.0145955,1.8491495,1.8997725,2.084022,2.0896537,1.9183187,1.4132128,1.3580351,2.572711,2.390048,2.215148,1.9369102,1.9504876,1.7886863,1.3840511,1.7454365,1.9782128,2.4916806,2.6274724,2.2416391,2.62285,2.3473248,1.906048,1.9649317,2.12636,2.408752,2.507503,2.0314066,1.7176859,1.4688863,1.36975,1.3913878,1.394951,1.6662748,2.4008355,2.4599557,2.1362,2.0309372,2.0746586,2.6598325,2.6906593,2.486135,2.6649516,2.8622327,2.9866893,2.6328418,2.639783,2.8036966,2.7801318,2.8014717,2.9160328,2.568263,2.415576,2.4462662,2.5324783,2.3760233,1.9488261,1.8217702,1.7417376,1.6285815,2.226664,2.7420325,2.239475,2.0122156,2.1084146,2.7377803,2.5302124,2.7218456,2.5563943,2.2526212,2.2858522,2.2605805,2.5257251,2.6598654,2.5033388,2.4886932,2.7247825,3.1882372,3.084374,2.5542293,2.7417362,3.0560462,3.189568,3.236681,2.7983825,2.4995818,1.9438369,1.9855396,2.6563148,3.0135376,2.9706974,2.9359746,2.4600341,2.0625584,1.9074159,2.0041697,1.6792198,1.3747318,1.2564585,1.6294355,1.4013417,1.6366208,2.600667,2.4064617,1.8510284,2.0756555,2.0528402,2.1032233,2.4031844,2.6977274,2.5117676,2.9051056
+2.1611872,2.6696932,2.9946835,2.8090959,3.1273484,2.5843081,2.5949135,2.439752,2.5462997,2.2224379,2.213798,2.5694962,2.820993,2.8998063,2.9544253,3.0204496,3.0259163,2.8939219,2.743512,2.6138518,2.4797025,2.5439515,2.6364965,2.6393037,2.5415707,2.4561126,2.3957443,2.822626,2.714737,2.5207603,3.0340228,3.171729,2.9488842,2.7688828,2.799971,3.002408,2.8567867,2.8996763,2.7106872,2.6119008,3.042965,2.7550132,2.8837972,2.7828043,3.007707,2.803512,2.6580498,2.6533997,2.7546043,2.8223958,2.935712,2.8482585,2.9939241,2.906406,2.7050903,2.5064104,2.655168,2.8421674,2.6907864,2.6963713,2.8597286,2.594894,2.3228464,2.3616548,2.2391949,2.5908108,2.5895083,2.4713516,2.6796827,2.5736656,2.3240328,2.0708177,1.9956206,2.3706937,2.2310247,1.7876896,1.8021415,2.0885766,2.2120094,1.8683324,1.6706266,2.0987532,2.584017,2.1497066,2.6692848,2.6638765,2.3425295,2.6917408,2.811851,2.7309227,2.7529793,2.4293537,2.5050855,2.2848966,2.719504,2.947988,2.8171759,3.0314035,3.321428,2.8935642,2.7855582,2.6334872,2.4306505,2.370324,2.2472138,2.4426835,2.4172187,2.40035,2.1008134,2.2936072,2.339817,2.2856321,2.0673218,2.0211108,2.028376,2.22655,2.2851894,2.1110601,2.910097,2.817401,2.4192634,2.3239696,2.5516176,2.6686833,2.62578,2.6132398,2.4875734,2.544818,2.645101,2.5818582,2.3384626,2.194561,2.1569118,2.1687174,2.0304582,1.975529,2.1619623,2.2544563,2.7241952,2.7862654,2.4016728,2.3679311,2.80298,2.8521252,2.6375022,2.376577,2.1757798,2.2721272,2.280851,2.1707149,2.376646,2.410343,2.2645578,2.251126,2.5342426,2.2804093,2.0135393,1.7911863,1.745539,1.7464993,1.6782928,1.6064581,1.5449624,1.9284312,2.075592,1.7564459,1.7644737,1.7663772,1.5199122,1.3103608,2.1372874,2.6956577,2.49102,2.520401,2.3251872,2.1108615,2.0181537,1.9884207,1.8694232,2.0201285,1.894917,1.9028225,1.9147611,1.9076767,1.6916678,1.7219896,1.6046727,1.5744479,1.6476141,1.606725,1.6787611,1.8509943,1.7023301,1.399499,1.4042511,1.3634257,1.5469586,1.422883,1.407481,1.3624547,1.309437,1.3435664,1.3961383,2.7000487,2.8189433,2.4220328,2.4375968,2.5655298,2.2102692,1.9933362,2.0361998,1.9862301,1.8796169,1.8179691,1.6138005,1.6501423,1.5770792,1.8466945,2.0301013,1.961128,1.7794662,1.7114911,1.7839274,1.9682195,1.9352784,2.149794,2.0262806,1.9082414,1.750005,1.655647,1.6496737,1.6396224,1.9309127,2.4161227,2.1658316,1.9940361,1.9220775,1.6880662,1.8775027,1.941019,1.9404604,1.8400197,1.632566,2.771637,2.6154811,2.6347394,2.5772972,2.2196667,2.104125,2.4896193,2.4311562,2.526972,2.3347735,2.0511658,2.0154352,2.2938597,2.1826193,2.155605,2.3139863,1.7209053,1.7708206,2.4123373,2.3971922,2.0935516,2.039868,2.1691751,2.0505886,2.011933,2.0604467,2.150269,2.6696756,2.6309965,2.691745,2.5920184,2.3018785,1.9152637,1.9503276,2.1835763,2.5215282,2.3133059,2.060554,1.6925397,1.5337064,1.3612664,1.4442549,1.4215741,1.8506465,2.422894,2.0453212,2.1268072,2.1077323,2.2239814,2.6095786,2.5133276,2.3667643,2.625383,2.6907897,2.9977083,2.792153,2.5822868,2.821429,2.657442,2.6154442,2.4754095,2.310048,2.525032,2.6540802,2.6654274,2.6415877,2.2953541,2.1694298,2.04788,1.9405359,2.4116933,2.8708167,2.2572565,2.221891,2.3921,2.9069586,2.7150288,2.470211,2.6250298,2.4872108,2.6426518,2.6086016,2.753181,2.8311915,2.5265985,2.5020623,2.6850593,3.0116444,2.8047006,2.7435274,2.4180589,2.7795124,3.0107956,2.9432504,2.6201491,2.4685512,2.2628987,2.088419,2.658302,3.0277607,2.8599334,2.744454,2.5295372,2.2195284,2.2183561,2.4294639,2.0994248,1.7711074,1.819963,2.196094,2.0215774,2.233659,2.9241457,2.7290368,2.4461215,2.498798,2.4519439,2.5182307,2.6830854,2.7965958,2.6286683,2.765593
+1.9551008,1.8058939,2.2236717,2.0796127,1.9358261,2.0852747,2.0817347,1.8301783,2.0887947,2.036315,1.9330012,1.6437187,1.7010976,1.6461992,1.7287805,1.6525367,1.560364,1.3447056,1.1543734,0.9945222,0.9478325,1.3485308,1.2934465,1.3177588,1.233371,1.1418302,0.9442582,0.9840517,1.076473,0.9140343,0.9099488,1.0405419,1.2505877,1.283745,1.660156,1.321296,1.4580975,1.2832793,1.1041877,0.97084296,1.2129359,1.424612,1.3342887,1.3771942,1.6089007,1.3425243,0.93829876,0.8896939,0.84783125,0.73258877,1.197413,1.1559367,1.0464678,0.85415435,0.6721807,0.5277953,0.48121506,0.5087206,0.4293101,0.2844867,0.30466303,0.2709059,0.19174713,0.24997604,0.6511301,1.1308349,1.0682608,1.0438474,0.9546289,0.8122928,0.6254915,0.4484386,0.33284068,0.31265727,0.28678766,0.7759918,0.87116843,0.71146727,0.65614647,0.47856665,0.40199482,0.27576444,0.26911458,0.26934323,0.6723616,0.7147938,0.5367089,0.5036911,0.6023181,0.5073975,0.39986986,0.34173968,0.21285275,0.1483343,0.15156102,0.69200915,0.83553374,0.9983432,1.1291306,0.975694,0.8814778,0.717136,0.5949406,0.62103665,0.65441054,0.71783704,0.890038,0.8684724,0.7477619,0.6580788,0.6053879,0.5165165,0.38473213,0.33681667,0.31952003,0.2482296,0.23356616,0.20122233,0.18552637,0.7400217,0.7503545,0.66296464,0.5997902,0.55537486,0.5404136,0.65094423,0.7183389,0.6955327,0.80005336,0.81594115,0.7131381,0.6277442,0.51997703,0.45880342,0.3749756,0.37865266,0.45153898,0.39052588,0.578109,0.828676,0.8008084,0.6921109,1.0049063,1.058323,0.9404559,0.7825923,0.6712079,0.580162,0.49143898,0.4168425,0.4062677,0.335053,0.2689585,0.31592578,0.59850323,0.5363007,0.36739117,0.30139828,0.24653119,0.19781485,0.16536844,0.13198438,0.10908585,0.08329705,0.20139658,0.10882915,0.09789274,0.11613933,0.049505837,0.040518902,0.16318136,0.613209,0.5081633,0.44049388,0.3429149,0.25263682,0.20360357,0.14870015,0.1509195,0.58817714,0.58170325,0.43952698,0.28976047,0.23408148,0.13881648,0.067884065,0.06882527,0.069242395,0.07151637,-0.0788767,0.19620463,0.41590056,0.29004246,0.15583804,0.15196598,0.021881461,-0.06319182,-0.060807757,-0.04691886,-0.052927487,-0.08081149,-0.0802161,-0.06388854,0.6358775,0.9282036,0.8775253,0.6428534,0.58849734,0.41094965,0.1683793,0.20112956,0.16050616,0.05642251,0.015397057,0.0017750412,0.007295206,-0.04965084,-0.0033436045,0.17121461,0.094514675,0.07954247,0.046312943,-0.10563245,0.032332167,0.088457175,0.056560703,0.107665844,0.045775063,0.021683224,-0.08201947,-0.0078079104,-0.016646102,0.03869666,0.4337533,0.52671814,0.42410254,0.16790354,-0.075137384,0.008596085,0.22005725,0.36845562,0.060687266,0.28945044,1.4262528,1.3014369,1.6371238,1.4780093,1.2140836,1.0909195,1.4929197,1.3568532,1.6889031,1.9595027,1.8895677,1.8171897,1.6691412,1.4700865,1.3626784,2.0434914,1.9844491,1.3339787,1.4090846,1.5646029,1.8290836,1.8695852,1.6808056,1.6753933,1.262809,1.2197325,1.486716,1.5736648,1.6876924,2.0412192,2.0977142,2.056771,1.2346678,1.0890561,1.2907144,1.4387076,1.8270243,1.5727103,1.4942719,1.5939231,1.2808282,1.284214,0.8394028,1.2786255,1.319694,1.4143107,1.3998944,1.4774518,1.5383492,1.4502108,1.708796,1.432335,1.5026816,1.4736018,2.2958465,1.7869893,1.9137768,2.006455,1.9109387,2.13435,2.0063841,1.830609,1.915909,1.6810056,1.3955162,1.5466142,1.9307306,1.5202134,1.322342,1.3230083,1.3981295,1.8627894,1.8790687,1.6460536,1.5248809,1.9773266,1.7597342,1.5830569,1.8759224,1.9902308,1.7349484,1.4550152,1.6040759,1.5993476,1.3200853,1.3328043,1.5402421,1.7288353,1.8459597,1.7102405,1.4153237,1.7545664,1.9013752,2.1704416,2.1448703,2.000693,1.689919,1.4531754,1.5969787,1.9994657,1.8402078,1.7731209,1.8620763,1.8177463,1.4490774,2.00612,2.111876,1.592824,2.0273898,1.78854,1.8095508,1.5763671,1.6936777,1.8752843,1.8048196,1.752232,1.5777994,1.5773951,1.6659956,1.5185337,1.6182978,1.789958
+2.188036,2.6621313,3.0184956,2.865261,2.85251,2.7753963,3.0213997,2.9860203,3.0837846,3.0292513,2.7967973,2.7617722,2.7911751,2.7845223,2.802632,2.6046567,2.5458975,2.3901904,2.2394812,1.967008,1.9771526,2.0979006,2.4097037,2.3665085,2.0872638,1.8758811,1.7464702,1.7098656,1.9647225,1.7045126,2.6650965,2.6470475,2.6634438,2.8004057,2.7287993,2.6452389,2.4271164,2.1422539,1.7615019,1.7936397,1.7346671,2.2175484,2.6248279,2.598773,2.5169187,2.2379308,2.0337522,2.3464131,2.4958236,2.548921,2.5847049,2.714906,2.5552993,2.2920363,2.0436237,1.6574218,1.6940339,1.9499953,1.8422451,2.1378915,2.265536,2.1929648,2.143389,2.082783,1.9458187,1.8873751,2.1016815,2.329085,2.2900023,2.1165428,1.9090235,1.6813817,1.6234899,1.6407052,1.7646558,1.745011,1.8643277,1.7790086,1.8494668,1.8282533,1.7606254,1.6075432,1.4596097,1.4721853,1.4983139,1.7147014,1.6163276,1.6530893,1.9728154,2.0631282,1.9073832,1.8938806,1.8684785,1.6662718,1.5019275,1.6841322,1.7126515,1.6938875,1.7224683,1.925683,1.9554459,1.6105528,2.0216687,2.137455,1.9325311,1.8064051,2.1584473,2.385643,2.3403378,2.2610302,2.0788057,1.9132764,2.0476189,2.1219287,2.1218047,1.8650893,1.9780838,1.9146104,1.8409939,1.785281,1.8547453,1.9251486,2.0566409,2.517828,2.488309,3.1617188,2.9982555,2.896971,2.7875512,3.1002755,3.0763807,2.9695232,2.8638275,2.8447118,2.8016076,2.7165675,2.527616,2.4409165,2.3111308,2.2652936,2.777128,2.8642914,2.9463859,2.8873158,2.6860604,2.413403,2.487574,2.3186927,2.2987838,2.2230182,2.2392633,2.1714063,1.9932499,1.8101301,2.1877818,2.3090343,2.1541786,1.9909267,1.8193525,1.773854,1.732764,1.679135,1.6038533,1.5363204,1.7283089,1.7666341,1.95554,1.8184606,1.7173289,1.6505908,1.6474434,1.8624227,1.895007,1.8385627,1.7901849,1.8104225,1.6895318,1.6826469,1.6391951,1.703992,1.8186016,1.8878968,1.8767686,1.8147744,1.6544657,1.6259843,1.5468825,1.6229162,1.5054893,2.1196337,2.430057,2.3787444,2.2484179,2.0231707,1.930936,1.6922462,1.562811,1.4780934,1.5328672,1.4648231,1.4124291,1.4457902,1.4654944,1.6565137,2.0149486,1.8529229,1.6115937,1.5717049,1.2834815,1.070373,1.2597911,1.3098414,1.268504,1.365288,1.2833443,1.2692876,1.2270232,1.5242447,1.6076026,1.492204,1.4416008,1.3774767,1.2433053,1.353539,1.3708553,1.2921377,1.1947324,1.3135183,1.3995193,1.3354018,1.3132983,1.1954284,1.3199859,1.6941605,1.621261,1.435491,1.2632015,0.8778395,0.9270523,1.4486594,1.4496362,1.1331288,2.4906108,2.8656464,2.8845313,3.0252452,2.8920536,2.9197078,2.8914003,3.090889,2.9286745,3.0089045,3.098981,3.0462613,2.8427281,2.730298,2.829258,2.7942786,3.025384,2.8324342,2.415433,2.4407701,2.6173306,2.740809,2.9599962,2.914125,2.8689399,2.597492,2.5690804,2.4409702,2.487597,2.708147,3.0078108,3.096706,2.9751792,2.8698645,3.0761929,3.1515782,3.0433564,3.073989,2.896163,3.0587249,3.1772993,3.02568,2.9731674,2.7171469,3.015728,3.0172844,2.952529,2.9133797,2.838704,2.7857113,2.8838682,2.9054897,2.7870493,3.0910854,3.070096,3.1421273,3.0719187,3.0984378,2.9954333,3.1118908,3.0901413,3.0516934,3.0479283,3.0910845,3.0524611,2.998588,2.9021897,3.0357175,2.8392456,2.7675319,2.7176132,2.926879,3.0910757,3.153149,2.992237,3.0205526,3.1597514,3.08434,3.0590048,3.149846,3.1204748,2.9925523,2.9662514,3.0223117,2.8538368,2.6722507,2.7139816,2.7748103,2.8397472,3.0342317,2.7304428,2.428134,2.5211802,3.0877252,3.1288033,3.0812693,2.9642644,2.6824229,2.6052263,2.804464,2.9954271,2.9487102,2.9778519,2.9720907,2.927745,2.865221,3.136152,3.0898538,2.985657,2.921751,3.0563107,2.9246564,2.603652,2.7355266,2.9204214,2.6405551,2.6532588,2.617784,2.659555,2.9940934,2.9946926,2.8104165,3.160655
+2.2112815,3.0479696,3.0753756,3.0407653,3.0146997,2.9417143,2.8986726,2.964192,2.982082,2.8340938,2.493215,2.5262113,2.657106,2.5724692,2.5869792,2.6251645,2.7445421,2.5947874,2.4370637,2.1905797,2.0479515,2.0441484,2.2614527,2.270721,1.990478,1.6227641,1.666465,1.553752,1.899812,1.7540381,1.8662975,2.0565913,2.09148,2.2583737,2.1359594,2.072375,1.8665979,1.6552463,1.4275378,1.4744775,1.47708,1.3265984,1.4651246,1.6415405,1.5699589,1.4219258,2.793679,2.8106475,3.0551927,2.907066,2.7342567,2.8038402,2.6221282,2.3301663,2.022558,1.5981716,1.8743113,1.831142,1.6726978,1.728738,1.6354982,1.57183,2.3233907,2.816071,2.2392402,2.1044822,2.4786768,2.7194004,2.4576564,2.2514868,2.0335407,1.6841621,1.6171675,1.6660142,1.5791609,1.5666485,1.7800978,1.9187115,2.1782925,2.0659206,1.8124756,1.6140904,1.4096218,1.3485489,1.2797753,1.4485179,1.4948382,1.468126,2.1385279,2.579249,2.304226,2.5007396,2.2649665,1.8871588,1.7468709,2.2299316,2.889893,2.5225792,2.1859813,2.1930258,2.162855,1.9159579,1.9516525,1.8699367,1.5777023,1.560561,1.6333083,2.713139,2.4117665,2.1724446,1.971981,1.8219447,1.8865789,1.6771848,1.5875359,1.6155449,1.6016563,1.4966516,1.4118288,1.3617111,1.5233984,1.7833,1.6849613,2.6869555,2.5705142,2.389372,2.2136774,2.092639,2.804369,2.8439894,2.7045865,2.6962295,2.530376,2.4333475,2.4367328,2.4213634,2.9263937,2.684104,2.6392157,2.7085733,2.7087982,2.7889311,2.7612562,2.662898,2.2669516,2.1839874,2.6687322,2.8616357,2.5395572,2.3956838,2.172384,2.2074714,2.3344054,2.057449,2.6837907,2.8563352,2.5716257,2.4667258,2.2308097,2.0939565,2.0215745,1.9069114,1.742257,1.6168239,1.9494499,2.2023034,2.2588649,2.0876522,1.9830348,1.8090264,1.7262473,1.9093508,1.9697711,1.8641183,1.8225646,1.8381691,1.7028329,1.6901495,1.7311707,1.8580916,1.6689425,1.8208392,1.9269122,1.8282619,1.6726916,1.5698502,1.5306672,1.620127,1.5236719,1.5809022,1.8169388,1.8831885,1.8070302,1.6264457,1.5227473,1.398865,1.3676177,1.3444986,1.5003945,1.3989224,1.3152832,1.3964312,1.4745736,1.5407095,1.8273165,1.6735387,1.4883823,1.4682639,1.3297837,1.1155258,1.2659869,1.3757014,1.3184173,1.4646839,1.4323969,1.3780106,1.3072836,1.567394,1.7001616,1.5824968,1.4841774,1.4438703,1.3054376,1.4803172,1.4909738,1.3972946,1.2076957,1.2336118,1.2743901,1.313125,1.3511472,1.3283966,1.3889608,1.7332172,1.607275,1.4266394,1.2314625,0.9893457,1.0463215,1.5117337,1.5283968,1.1799672,2.244618,2.9132981,2.9195657,2.9844701,2.7919266,2.7641678,2.8738241,3.0985346,2.9504821,3.0181117,3.0680385,3.007988,2.77028,2.6817589,2.9559937,3.0288363,3.1019008,3.0170236,2.8221145,2.8426456,3.1654773,2.9841866,3.0560591,2.9950213,3.0661755,2.895821,2.895919,2.808838,2.7227314,2.7564325,2.9379883,3.0454147,2.834436,2.9627123,3.1602566,3.1616588,3.0718942,3.104488,2.9822273,3.1469514,3.152707,3.0727515,3.0185103,2.9537904,3.1073093,3.0247202,3.0248408,2.9710765,2.9504275,2.8707137,2.8596761,2.8819532,2.7246103,3.171049,3.241022,3.0390568,3.1225233,3.1188622,3.069766,3.1511207,3.1134033,3.0725574,3.0969481,3.0874672,3.0730855,3.0238333,2.8962035,2.9863875,2.8435082,2.906134,2.7759275,2.9230704,3.0289521,3.0679853,2.9585268,2.9423678,3.0829039,3.0060349,2.9022293,3.0658853,3.0334563,2.8889132,2.9113855,2.9831095,2.8112214,2.6929855,2.7357483,2.592965,2.5932665,2.8716745,2.3905768,2.2519407,2.2832894,2.7674332,2.8792267,2.7163844,2.4698253,2.1974645,2.3140864,2.3149037,2.6360488,2.3534746,2.4594727,2.5410116,2.6579227,2.5534763,2.8623881,2.6958332,2.5379822,2.3608189,2.685733,2.6250358,2.4480672,2.4314818,2.5769944,2.287301,2.2566025,2.1013212,2.0686486,2.0326512,2.1529722,2.010679,2.0639088
+1.3485665,2.255793,2.0246289,1.8127285,1.551136,1.2265275,0.97074986,1.0867742,0.948745,0.6419575,0.34430182,0.4428779,0.8021226,0.76604366,1.3346881,1.2261369,1.1995587,0.9635691,0.6749964,0.44273138,0.27524427,0.7250243,1.001237,0.6307464,0.42739546,0.26721653,0.17387977,0.117385834,0.4115823,0.30396655,0.6602942,0.9648056,1.1145252,0.9919109,0.9669651,0.67639935,0.38127542,0.15410823,0.03872759,-0.01716248,-0.013711967,-0.043644838,-0.057906993,-0.042631023,-0.097653575,-0.13738209,0.15118027,0.7086261,0.9766215,1.053614,0.8155957,0.8527391,0.69733536,0.41656274,0.2034438,0.12515354,0.097059235,0.026998363,-0.027817778,-0.019491918,-0.046199836,0.16193101,0.06906364,0.4558646,0.5395064,0.5164289,1.5693765,1.4339797,1.0059032,0.6784401,0.4176017,0.26339406,0.19853327,0.143663,0.08782498,0.033338122,0.06003619,0.15788722,1.26559,0.9710405,0.60756236,0.42879415,0.26864657,0.15959913,0.082859345,0.06308415,0.015881948,0.50786984,0.3362472,0.3660901,0.30968344,0.48720777,0.40463248,0.35042077,0.25866285,0.41058648,0.35583943,0.33922145,0.20225069,0.16908145,0.14587115,0.053066887,0.02375687,0.13242918,0.15692955,0.09202475,0.048802145,0.024994023,0.16532934,0.35404158,0.39992905,0.2970525,0.33388788,0.33812636,0.72683895,0.5199164,0.3462473,0.17294252,0.04599128,-0.021594368,-0.043989934,-0.058553107,0.059016056,0.44125712,0.37203258,0.34441265,0.5314603,0.57186544,0.37155902,0.22167337,0.478382,0.5982872,0.6138363,0.42279124,0.84188306,1.4312145,0.8497999,0.6469401,0.50754803,0.7410841,1.6283104,1.0205698,0.738011,0.577876,0.42971113,0.5226107,0.36994117,0.929944,0.6801607,0.462452,0.38966024,0.29812744,0.24175215,0.30280223,2.0327847,1.7699368,1.1887157,1.0188323,0.79154855,0.6206058,0.5076325,0.41296813,0.30635825,0.1947861,0.121244684,0.76793677,0.8564973,0.6887412,0.56789744,0.44393262,0.26861155,0.26682198,0.42505294,0.3467545,0.24214289,0.19540796,0.1510083,0.120303996,0.08229608,0.041371755,-0.02144704,0.012725212,0.09414748,0.03481306,-0.023056053,0.27064866,0.74665785,0.46901056,0.39133877,0.32624996,0.85600615,0.7636787,0.6449812,0.4503488,0.2777715,0.15691161,0.14101444,0.107511215,0.06353032,0.013149284,-0.004829295,0.012821086,0.0052145943,-0.061570518,0.0056272596,-0.11903175,-0.26513827,-0.20113337,-0.19458264,-0.16032043,-0.16422433,-0.14034885,-0.14657348,-0.13728654,-0.1206189,-0.17449337,-0.18154174,-0.1629628,-0.10994219,-0.21787971,-0.27586728,-0.2726611,-0.3551226,-0.2579505,-0.37743068,-0.37371692,-0.40382048,-0.35000888,-0.3679269,-0.3925599,-0.34228104,-0.3266769,-0.33734614,-0.16408107,-0.29315698,-0.45351708,-0.40795642,-0.39371678,-0.32569814,-0.2687416,-0.21098909,-0.33278978,-0.3681533,-0.17639992,0.87800825,1.1556203,0.66197693,0.4740825,1.2325604,2.4796584,2.0254147,1.7998633,1.8252414,1.6507602,1.3307239,0.9942448,1.1749525,1.4652421,1.6945848,1.6063288,1.2406006,1.2206453,1.9817953,1.8442501,1.731889,1.4566891,1.3733933,1.2285377,1.1758453,1.0456303,1.0099335,0.91639215,0.9812346,1.4687086,1.1211957,1.4243486,1.7160113,2.0266948,1.997416,1.8121287,1.549409,1.995631,1.9416115,1.7885107,1.582042,1.3193681,1.3369954,1.3039212,1.266124,1.2276313,1.1870049,1.1014389,1.0441394,0.940328,0.871892,1.9060242,2.6609879,2.2812953,2.200243,2.006344,1.6843361,1.9070911,1.7527342,1.6902788,1.6623013,1.4624279,1.3648412,1.2867503,1.1339775,1.1410723,0.9100416,0.8925938,0.8867412,1.8346319,1.9782267,1.8774585,1.6323946,1.482799,1.3804469,1.3327656,1.165921,1.4253268,1.2396679,0.8406582,0.80797803,0.77938545,0.6942287,0.6272949,0.7417215,0.8098122,0.6902232,0.902933,0.51323396,1.0568472,1.3819118,1.3104377,1.652385,1.3042436,0.9808693,0.7409327,0.66807556,0.5761931,0.757341,0.4494326,0.64320326,0.4411257,1.1641552,1.5437641,1.6775612,1.460877,1.1820943,0.94814765,1.0154173,0.83775,0.60680336,0.50814503,0.43581372,0.25500694,0.21731764,0.15256934,0.12095196,0.09562481,0.08766592,0.0453552,-0.018839978
+1.399683,2.7446175,2.5912786,2.1286244,1.7563668,1.3570535,1.0680453,1.168889,1.138676,0.775661,0.5314297,0.35501432,0.7936841,0.91019607,1.2085791,0.93727416,1.1187297,0.93411905,0.7021976,0.48657766,0.26018393,0.5256007,1.135572,0.79620755,0.51798034,0.4499616,0.41380832,0.27813458,0.30024433,0.1768645,0.5669944,0.33604807,0.57406807,0.65530276,1.0190643,0.7287513,0.48639798,0.2695478,0.13945602,-0.024230503,0.12554091,-0.00075084716,0.07125761,0.116320156,0.119140856,-0.13068795,0.052492015,1.0848153,1.3541045,1.0445011,1.1446955,1.112639,0.96906984,0.699685,0.41803408,0.36514822,0.32899824,0.22179091,0.09433093,0.16116978,0.53685737,0.979082,0.4696446,0.44034177,0.33193174,0.3085032,1.6074128,1.859878,1.2406727,0.88988644,0.68694323,0.66267526,0.5475425,0.47034627,0.36074623,0.45608675,0.54276323,0.7434598,0.7048913,1.292665,0.99418473,0.8081155,0.55198234,0.38719228,0.27907524,0.24003094,0.1536777,0.20418742,0.3042722,0.20067772,0.4586404,0.6581076,0.8470768,0.49558866,0.5378449,0.4852724,0.42517886,0.3472643,0.28824562,0.24132478,0.15878172,0.17078206,1.3016984,1.5050014,0.8577709,0.61685586,0.8655288,0.8104759,1.0427328,1.0156097,1.0126965,1.0179294,1.1121966,1.0285156,0.91578853,0.73084563,0.6594367,0.7053313,0.5125583,0.44977602,0.33178863,0.27757257,0.41968036,0.89820075,0.53138804,0.6290629,0.98104495,0.8585559,0.835376,0.7623062,1.402225,1.2932628,1.6251097,1.042098,1.4327782,0.9828254,1.2189689,1.2922345,1.010209,0.93623966,0.9385316,0.8151871,0.68804055,0.6037872,0.9446102,1.1271129,0.9452493,1.0645462,1.2181566,0.8520976,0.90982974,0.71281695,0.6879519,0.7734276,2.1638865,2.094327,1.6108675,1.7397535,1.4366779,1.1508495,0.9661777,0.8138616,0.6659472,0.4945752,0.40603417,0.5551046,0.8048471,0.6782574,0.6120727,0.57391626,0.48821878,0.7528302,0.7168611,0.67519194,0.61815965,0.5189837,0.41776294,0.43670702,0.46289587,0.7630613,0.51880413,0.6240325,0.62333596,0.6191664,0.46356088,0.1469315,0.53255445,0.77372867,0.7064234,0.76838034,1.1564375,0.97047496,0.85903674,0.62001705,0.5438597,0.42710334,0.3995813,0.20710278,0.84420484,1.1286707,0.8887619,0.8398414,0.7436331,0.6683643,0.81837595,0.6431458,0.40173486,0.27286723,0.14058197,0.11589868,0.17891714,0.13540304,0.096455246,0.11238057,0.120083965,0.06349133,0.11848078,0.090515375,0.24677855,0.11640264,0.06639064,0.06810791,-0.036237277,0.18252699,0.11184698,0.022025079,-0.031823568,-0.029145427,-0.015046664,-0.07149466,-0.0042563826,-0.06695876,-0.06990067,0.2672905,0.10413103,-0.08581769,-0.20891964,-0.24069893,-0.07616382,0.06277346,0.11485322,-0.17250109,-0.28129828,-0.0477229,0.76695955,1.3306859,0.7972346,0.53320664,0.64924765,1.7620051,1.8902776,1.5307477,1.6163182,1.3426372,0.9488829,0.7969531,0.9896816,1.016825,1.2487864,1.2214357,0.90486944,0.8741559,1.1742791,1.5559549,1.2324008,1.1891592,1.0766816,1.0039452,0.9676256,0.96655667,0.9181859,0.84473693,0.90091133,1.4641863,0.9913286,0.68628097,0.75684476,1.3305835,1.8356228,1.5121343,1.292749,2.190685,2.1916778,1.7758512,1.3412178,1.1135687,1.1867967,1.2296547,1.1897755,1.1422282,1.0731235,1.0333029,0.98200816,0.94652253,0.87702894,1.5399706,2.4288206,2.4515018,2.1147733,1.833961,1.5071018,1.7895162,1.592973,1.4995475,1.4684582,1.1581855,1.1035835,1.0924705,1.055826,1.1238292,0.9593405,0.74845695,0.69919753,1.0893241,1.7464018,1.6054153,1.2204987,1.1115422,1.1377921,1.0582033,0.84651244,1.2115674,0.9659566,0.54038143,0.77316463,0.70270956,0.59161097,0.51239157,0.70670813,0.53691804,0.42689967,0.73163325,0.34552008,0.16641301,0.24887991,0.67352605,1.3677602,0.92500794,0.64147145,0.48314178,0.47939545,0.40836236,0.50597495,0.36699578,0.46347874,0.2998583,0.35335845,1.2640342,1.4929307,1.2250597,0.8365842,0.67456925,0.6961829,0.6527114,0.42370784,0.42654064,0.38118047,0.3543371,0.2834342,0.14490211,0.1435068,0.17099304,0.15672168,0.07581479,0.012514077
+0.72135246,0.3667829,0.18941364,0.21899426,0.2774843,0.6028862,0.5069122,0.37209716,0.2967386,0.32093912,0.7290609,0.63758004,0.51550186,0.90132904,1.3076279,1.7901119,1.6674021,0.89489204,0.9918766,1.3826075,1.6896957,0.9296516,0.5487086,0.404103,0.36374724,0.27816403,0.123720504,0.27615723,0.62453365,0.91232467,0.93333673,1.1205409,1.2863295,1.839559,1.5676472,1.7579913,1.9276409,1.3867304,0.9355353,0.9926967,1.3859138,1.7389027,2.6637702,2.830157,1.687996,1.2955291,1.2088478,1.2854096,1.6362467,1.9114133,2.0426342,1.6591014,1.6506156,1.789161,2.2524176,1.7316546,1.7797079,2.012184,2.433544,2.3431644,2.542428,1.8944522,2.174733,2.395175,2.1428783,2.4159064,3.0912228,2.8928294,2.4507184,2.142321,1.9317651,2.0301163,2.4473,1.9518646,1.8408868,2.0063007,2.1142876,2.0772817,1.9915329,1.8093545,2.1305382,2.500104,2.1493983,2.1331615,2.0128503,1.954589,1.9312619,2.524981,2.4812775,2.0204115,2.1353855,2.6166358,2.3397372,2.0652244,2.0912094,2.532769,2.388561,2.4040096,2.2915044,2.4003649,2.1568704,2.0122778,2.1523361,2.4577587,2.4172997,2.8111043,2.167286,1.9596734,2.4531686,2.330725,1.8457096,1.7691829,2.3917859,2.673984,2.145222,2.3075461,2.4393554,2.1727195,2.0359583,2.0116658,1.7476995,1.672697,1.5554228,1.5353222,1.5307913,1.5603462,2.2175233,2.5862455,2.414811,2.1033792,1.6860602,1.9962053,2.0118208,2.1285217,1.8057725,1.4537408,1.4202797,1.682667,1.706664,1.7773738,1.698981,2.6059155,3.2299068,2.557011,2.331071,2.2496018,2.2129948,2.5628538,2.0836546,2.530452,2.4885974,2.2160854,2.539464,2.5916982,2.050525,1.7959557,1.6673398,1.4816836,1.5156615,2.0268242,2.2246232,2.2033298,2.572968,3.0864265,2.4504375,2.8519983,2.4859605,2.1831474,2.066131,2.161934,2.3701096,2.0882344,2.1000342,2.0348806,1.820622,1.7461326,1.528796,1.37219,1.3887434,2.0243356,1.8567178,1.7487533,1.7007883,1.6457492,1.6352654,1.5120305,1.2931285,1.2659408,1.3315575,1.412406,1.9770442,1.7303147,1.2841082,1.4173,2.1131282,2.397438,1.6864603,1.7275647,2.35351,2.3540006,2.5347528,2.3631206,2.176096,1.938906,1.5387443,1.3603896,1.1919241,1.0343872,0.70776224,0.4282674,0.7593347,1.926866,1.6650716,1.3736672,2.071807,2.3725595,2.2211347,1.5657535,1.4571683,1.3984268,1.6067141,1.9523292,1.6129911,1.4390435,1.4366436,1.0368097,1.2796241,1.3857372,1.1502899,1.248674,1.3483312,1.7899661,2.0621367,1.7099092,1.3185561,0.922648,0.47103664,0.62669826,0.74150836,0.7602583,0.6047599,0.5525321,0.8901088,1.1739064,1.2432075,1.0518385,0.5419943,0.38588583,0.5661521,0.71106845,0.8059398,0.7452431,0.39646447,0.22192532,0.15401173,0.21949077,0.30198276,0.39229435,0.5022638,0.5414838,0.535817,0.567649,0.59109575,0.6680305,0.5060685,0.46332553,0.5292609,0.57836646,0.4698115,0.82614315,0.7767951,0.6400404,0.51993746,0.513959,0.60525125,0.559782,0.4227612,0.37012935,0.5309626,0.6056284,0.52337927,0.4767675,0.48974216,0.5174374,0.470515,0.655881,0.6640068,0.63783354,0.6309264,0.5956812,0.4887051,0.45569724,0.45934647,0.38584256,0.44368428,0.40232766,0.45900458,0.67961454,0.84637487,0.6688772,0.41457418,0.3628526,0.36041364,0.30362844,0.30583256,0.36888155,0.40124834,0.39043218,0.47849035,0.5337537,0.4769372,0.41004616,0.5033487,0.56593263,0.49536255,0.5946653,0.45146543,0.46565908,0.48981512,0.6039295,0.5515631,0.24078256,0.2469104,0.47147027,0.5699822,0.3530084,0.76333594,0.747741,0.7563103,0.2913925,0.31380677,0.42144066,0.38496602,0.57338744,0.36133933,0.43170035,0.4217666,0.47336167,0.5104797,0.67929053,0.93161523,0.831087,0.47015056,0.4291451,0.41676745,0.43111986,0.53699315,0.46399665,0.5150646,0.4231347,0.38913235,0.42557922,0.57542956,0.91378206,0.63565683,0.44447944,0.42123124,0.7673006,0.47261655,0.4284966,0.78903335,0.7658232,0.7802863,0.63754946,0.7365376
+2.7389007,2.80444,2.482401,2.3182411,2.2014408,2.1922295,2.5945725,2.3679948,2.1469426,2.076428,2.3997545,2.5324457,2.3619292,2.3836193,2.398956,2.3876379,2.3386884,2.3095424,2.2540357,2.1653178,2.09092,2.3059437,2.2086425,2.0756154,1.9670334,2.3415222,2.6736395,2.4436576,2.3931031,2.3600247,2.4198802,2.6396284,2.676588,2.5557518,2.5328684,2.4289274,2.3047915,2.4421897,2.3597205,2.194937,2.1292613,2.0976846,2.6453872,2.9610486,2.9039216,2.8865395,2.7753482,2.5992398,2.4370022,2.298067,2.1720822,2.2012744,2.164647,2.1786315,2.1250036,2.1376312,2.3191845,2.377286,2.6905177,3.1765232,3.1228614,2.9141364,2.791835,2.8025672,2.6898727,3.0350053,3.3500137,3.3544164,3.3334641,3.1677666,2.9252915,2.9551578,3.1371999,3.050871,2.952958,2.906157,3.2272387,3.408759,3.3024144,3.1653223,3.034551,3.0415003,3.0250983,2.9182186,2.8574376,2.7935932,2.8405857,3.1298683,3.2113957,3.088745,2.953977,3.0987144,3.1841486,3.0554633,2.9247277,2.8589523,2.882911,2.9405303,3.3710291,3.6153169,3.592257,3.4692252,3.3198195,3.2647095,3.5150843,3.642608,3.489243,3.3706615,3.31666,3.2472172,3.1348546,3.0350232,3.1771019,3.163248,3.0582418,3.3899689,3.493961,3.371225,3.3984149,3.4507613,3.3502047,3.365549,3.5300138,3.477759,3.3460689,3.2057815,3.1305165,3.2023082,3.107596,3.0119734,2.8998094,2.8644135,2.8725715,3.0856996,3.4384093,3.5568936,3.5366416,3.6061304,3.5756726,3.6595318,3.5787017,3.5952387,3.639729,3.5961611,3.5730734,3.4715335,3.5263176,3.6185007,3.4551907,3.5569053,3.5566711,3.4567084,3.4439113,3.4189682,3.3351426,3.240464,3.15107,3.0405526,3.0376594,3.1672184,3.452867,3.5929394,3.4723217,3.6458383,3.476795,3.4065304,3.3981879,3.2790442,3.162044,3.187196,3.5128002,3.4507952,3.3950212,3.284242,3.2043912,3.2319894,3.1257792,2.9827669,3.0431097,3.2373,3.1374505,3.0635843,3.0262053,3.1087687,3.24987,3.2994652,3.225338,3.1041229,3.049395,2.9973269,3.0949392,2.9485898,2.8941598,2.8123765,2.7932835,3.0517416,2.9721804,2.7988286,3.0572119,3.3021245,3.2885566,3.2873917,3.268495,3.379126,3.392091,3.399971,3.2968583,3.215815,3.0588984,3.0524845,3.183545,3.1952515,3.2488852,3.1720164,3.0051565,3.1860943,3.3192763,3.368949,3.3577728,3.2619247,3.2262027,3.2016668,3.1582274,3.0775914,2.9981937,2.8721917,2.7219315,2.6414235,2.6160316,2.6716056,2.6234338,2.6248875,2.816168,2.731801,2.5406446,2.4905155,2.2616816,2.4717257,2.5181787,2.552349,2.5287595,2.516182,2.6107068,2.8322885,2.8661165,2.7044346,2.6296682,2.5434372,2.6155255,2.5409458,2.5208488,2.2599397,2.1733122,1.9879857,1.9667982,2.1967006,2.1428313,1.8751581,1.6501348,1.5867898,1.7389603,1.8805146,1.6278862,1.6944296,1.9135361,2.0475426,2.0204444,2.1279411,2.070917,2.0983465,2.1468203,1.9705172,1.9741659,2.0017571,1.9309776,2.031679,1.9808605,2.159309,2.0993106,1.6726774,1.497621,1.4580461,1.4989488,1.6295285,1.8464855,2.173315,2.400697,2.0745864,1.8338311,1.9110686,1.9662354,2.1215796,2.3263502,2.2298963,2.1940427,2.4296942,2.5038738,2.5395293,2.5158172,2.4407992,2.438846,2.0876994,1.8897276,1.8498683,1.7067366,1.7521677,2.0783775,1.9165666,1.6097271,1.6180246,1.7428538,1.9073473,1.8629172,2.1497579,1.7624798,1.6055964,1.9221059,2.038377,2.0934644,2.0666635,2.2359443,2.0009763,1.9197278,2.2847278,2.5426216,2.379584,2.5009065,2.7167552,2.7371967,2.6396089,2.8109899,2.3158717,2.4158547,2.5722535,2.7918954,2.6880622,2.2176213,2.066974,2.0877469,2.4018135,2.6074462,2.575691,2.2746153,2.0236146,1.7370621,1.7126648,1.6230545,1.6906865,1.7652199,1.9084059,2.0534942,2.0484502,2.214558,2.3175192,2.4770398,2.0919368,2.0335665,2.196695,2.4142342,2.527219,2.7302372,2.8331547,2.703653,2.5728836,2.8177962
+1.9278135,1.7306383,1.925285,1.3167071,1.933197,1.3456318,1.48356,1.6507134,1.4680984,1.4151309,1.2788117,1.6439396,1.9768288,1.9947917,1.7593817,1.6604059,1.5002916,1.3196907,1.1797326,1.1666708,0.81358635,0.6982032,0.9847541,1.2898722,1.1054523,0.7525399,1.018815,0.9694873,0.91412103,0.93554294,0.8017771,0.8468139,1.1595339,1.0696207,1.0512999,1.2336187,1.1268872,1.1126772,0.97964656,0.8080863,0.78209543,0.9389946,0.94955623,1.0026281,1.2939878,1.6346118,1.2781205,1.0678198,1.2657377,1.2473904,0.8927845,1.0907748,1.2209108,1.1446517,1.0673411,0.867032,0.7918464,0.75608987,0.74450654,0.6745163,0.7088511,0.63889605,0.41256458,0.40676993,0.46941775,0.4106921,0.7165866,0.7247585,0.92047954,0.82190585,0.5721334,0.38659653,0.4094472,0.5107743,0.24744979,0.0942215,0.28959748,0.59291977,0.5158695,0.37781945,0.14945701,0.07277426,0.16010405,0.5795865,0.8751129,0.7775904,0.61145127,0.52898496,0.67884606,0.6673535,0.5448796,0.33918753,0.40710574,0.26636872,0.1953581,0.2878541,0.32919055,0.30154285,0.21866548,0.2190576,0.22835532,0.22015873,0.053281628,-0.0024187043,0.123928495,0.48470122,0.41838467,0.32193595,0.19339281,0.36318374,0.3794394,0.22156832,0.06262688,0.09963404,0.10768756,0.119338885,0.19845536,0.07220812,0.17516084,0.6279279,0.4337781,0.67415655,0.60209894,0.58309525,0.585555,0.45526874,0.3575609,0.342731,0.58764845,0.45035368,0.26022246,0.2242268,0.46287534,0.43138397,0.38578796,0.6182062,0.8229153,0.7365433,0.8890664,0.91372776,0.9505171,0.86098886,0.7888767,0.92462516,0.7259822,0.6299006,0.5350382,0.78112215,0.77681583,0.58571506,0.6672823,0.56584424,0.3164454,0.86401653,0.9065939,0.7259503,0.6137782,0.47781602,0.2425344,0.12503448,0.042956594,0.28623882,0.65587616,0.8715024,0.90493226,0.7992923,0.65259033,0.67231524,0.4950964,0.17255977,0.5006381,0.59959066,0.5959774,0.48126274,0.35917306,0.22962171,0.26325843,0.2609022,-0.032920234,0.20649019,0.0692686,0.5887123,0.85836554,0.80098313,0.87432677,0.93630683,0.94821745,0.86268604,0.8343363,0.7518476,0.63690007,0.71896696,0.57605577,0.49219558,0.2996992,0.117519155,0.4254424,0.26176366,0.012858428,0.025078759,0.3127815,0.3391436,0.6404417,1.131453,1.2896856,1.2516944,1.2592139,1.4549913,1.3632824,0.6879068,1.1853988,1.0423647,0.8137367,1.1826614,1.0586835,1.0989988,0.9016702,1.2706034,1.2426054,1.1199832,1.1834351,0.97545534,0.7665205,1.195055,1.1512908,1.3380064,1.2895067,1.2477598,1.0246768,0.9397512,1.0999968,1.0220507,0.83946383,1.1400813,1.3369482,1.2387123,0.9523454,0.5060114,1.0293763,0.9368751,1.1521742,1.0802411,0.5481627,0.65153575,1.0012181,1.172554,1.1337177,1.2371107,0.8246771,0.9743211,1.1433177,1.3907125,1.4459429,1.2813209,0.8633804,0.8198784,1.1348262,1.0892607,0.9783366,0.86265075,0.79739773,1.5947444,1.8125784,1.5684757,1.5204725,1.5728674,1.4392986,0.9477234,1.2621543,0.9108595,0.78770316,1.2931397,1.1794579,1.2284446,1.1609893,0.98606884,0.8202243,0.70183414,1.1068803,1.6576873,1.2736454,1.0414793,1.0108021,0.92304647,0.65532225,0.9526564,0.97148436,1.3637199,1.1997874,1.4400952,1.3136275,0.6917354,0.9387694,1.4039215,0.91131353,1.0970995,1.2464607,1.1166755,1.0649259,1.0633307,1.3038386,1.4266555,1.5721736,1.4751369,1.4557378,1.197564,1.1142956,1.3621691,1.4013773,1.1031241,1.1002018,1.1498915,0.7998067,0.9015068,1.4869095,1.4056065,1.0512174,0.7007028,1.5530231,1.6780441,1.4869161,1.4504516,1.3696235,1.3287498,1.2476722,1.4587914,1.2827861,1.1743033,1.119765,0.97563505,1.187938,1.6517824,1.4232354,1.0061895,1.4212463,1.65029,1.993755,1.9831502,1.7625189,1.018771,0.84233654,1.4092011,1.9081929,1.5661826,1.8488083,1.6228064,1.4065872,1.45827,1.5309987,1.5477839,1.0350844,0.8652754,1.004496,1.1702229,1.2136549,1.8384001,1.7065196,1.1288254,1.1339326,0.9897876,0.896955,1.0144371,1.3548447,1.0747298,1.3990371
+1.3099904,2.6699011,3.373697,3.4740763,3.6631713,3.3020627,3.263894,3.317382,3.325832,3.2153845,3.059584,3.4137034,3.5147643,3.5321202,3.496934,3.5183358,3.483887,3.3901815,3.3135326,3.273778,3.147062,3.0679972,3.1417255,3.1374812,3.1483924,3.0480232,3.220593,3.2794247,3.3214269,3.2988358,3.3469627,3.3732796,3.3640268,3.3395586,3.3833933,3.3533719,3.372942,3.3551147,3.2876348,3.1915722,3.232321,3.1933022,3.3558564,3.3367212,3.377345,3.5048718,3.2699046,3.312136,3.3768382,3.4010406,3.4499776,3.3798747,3.3927836,3.4106836,3.339948,3.2423182,3.2103295,3.1905067,3.094542,3.0699337,3.0859056,3.000136,2.8306818,2.8627858,2.8561425,3.0091677,3.082008,3.0426388,3.1975846,3.1305022,2.881297,2.637734,2.6062644,2.9259772,2.7058697,2.4538715,2.2826781,2.4787354,2.6377354,2.559474,2.2910035,2.1489317,2.3044138,3.5321774,3.4092512,3.3215764,3.2764454,3.181303,3.1863346,3.2603087,3.2245004,2.913634,2.907207,2.7055058,2.9875674,3.1474876,2.9965024,2.9895394,2.8911128,2.922499,3.0034144,2.955438,2.7288291,2.6410713,2.5490975,2.6885064,2.6664004,2.650125,2.506022,2.6751597,2.8007703,2.6968346,2.4754515,2.4946427,2.4579809,2.4063745,2.997692,2.9188023,3.2311802,3.2622857,3.0672002,3.005675,2.9344697,2.9351258,2.8789322,2.8502579,2.6753755,2.557593,2.80159,2.7441928,2.5357676,2.3380804,2.283615,2.3025723,2.332965,2.427394,2.576576,2.616594,3.3030336,3.1988094,2.983572,2.9312449,3.124359,3.225806,3.0728273,2.849224,2.6513448,2.679315,2.7090025,2.4143984,2.6290722,2.7978153,2.5676599,2.5505867,2.9218469,2.7182333,2.5374346,2.412508,2.2559953,2.1261923,2.1596167,2.144185,2.202013,2.5564096,2.626842,2.4861488,2.4462707,2.375589,2.2376425,1.8869741,2.0429769,2.4641757,2.55866,2.4806075,2.181564,2.0232735,1.9164963,1.9645503,1.8300209,2.163181,2.1617484,2.6197665,3.1518302,3.0983393,3.1369307,3.1453707,2.9889355,2.8207672,2.836215,2.6681523,3.1644664,3.276181,3.3103774,3.1839328,3.0611525,2.9314888,3.0264559,2.9403567,2.7741795,2.683073,2.5568905,2.5397317,2.699623,3.611134,3.4109879,3.4869509,3.48525,3.4764361,3.4491177,3.2945797,3.2963135,3.2700758,3.1034458,3.168292,3.0069175,3.0599678,3.0285134,3.238934,3.296678,3.2726536,3.192883,3.1427906,3.1758237,3.2282982,3.2655718,3.4043846,3.299666,3.2279515,3.1615965,3.091015,3.0735788,3.0813522,3.1417208,3.3457146,3.2951012,3.1589189,2.940165,2.653354,2.948357,3.205471,3.1540546,3.298798,3.0683875,3.2641926,3.3959541,3.40171,3.3570018,3.3184457,3.1391463,3.2413015,3.2168336,3.3612294,3.3043993,3.211663,3.1315238,3.1905448,3.1942894,3.1685567,3.029211,2.5133839,2.52742,3.1512816,3.1801708,3.055136,2.8608742,2.8861713,2.8097067,2.556014,2.8232121,3.1784656,3.4144871,3.3932588,3.2425544,3.3383636,3.1911283,3.0207758,3.1039407,3.1328402,3.3453498,3.2860198,2.9592962,2.6535258,2.3920672,2.2408423,2.25838,2.409095,2.528822,3.1313596,3.3028398,3.071226,3.0825028,3.1763391,3.4136014,3.3540325,3.2597976,3.3823545,3.4370213,3.4060545,3.263096,3.2802334,3.3383818,3.3246846,3.353674,3.3735435,3.26656,3.2692943,3.1843882,3.292078,3.2799792,2.9852555,3.0269346,2.941959,2.9375844,3.2506561,3.4025996,3.2006981,3.1446648,3.14934,3.3405926,3.3572636,3.3998907,3.3747294,3.2517478,3.3934417,3.394873,3.489295,3.5155556,3.364433,3.391807,3.4998362,3.4878633,3.4603415,3.2986293,3.2621782,3.3728173,3.4549744,3.4191227,3.3840303,3.3689852,3.1309266,3.11195,3.4120576,3.5882535,3.4601986,3.4296653,3.3322353,3.2497098,3.2154865,3.1324592,3.0133712,2.736921,2.7452447,2.9044275,2.950962,3.0831957,3.4972155,3.3181765,2.9997165,3.1787553,3.1502118,3.1779451,3.3338873,3.4437654,3.3129394,3.3885708
+2.0521348,2.6443057,2.8429039,2.417233,2.8286495,2.233318,2.1190226,2.3068514,2.3503587,1.8714753,1.9445584,2.4507353,2.530482,2.4815643,2.646157,2.6928568,2.6972368,2.6528966,2.5765238,2.445021,2.2795997,2.4419048,2.7135458,2.5587735,2.4546542,2.4481626,2.467065,2.5892272,2.6163425,2.3619065,2.8820782,3.1430233,2.9636047,2.7697854,2.9823203,2.9813375,2.7978065,2.7226148,2.6800303,2.6030102,3.179341,2.940283,3.0532188,2.860176,3.0906043,2.815721,2.520241,2.534198,2.6910198,2.6044724,2.7820632,2.9644313,2.6708176,2.6969252,2.603823,2.4510365,2.4481936,2.507994,2.453215,2.5383484,2.4724934,2.30122,2.154625,2.201939,2.444019,2.812611,2.7152982,2.4766839,2.6432514,2.4422994,2.1777163,2.052421,2.026174,2.2451692,2.024641,2.0150874,2.894639,2.816489,2.736801,2.5735264,2.4025424,2.4877915,2.7256782,2.4038882,2.9747312,2.9634914,2.6501143,2.5360966,2.7204344,2.646369,2.5889425,2.4379287,2.345787,2.2527912,2.3788152,3.222347,2.914848,2.6898355,2.9323478,2.9728048,2.8492436,2.6764388,2.5252404,2.6479754,2.6495728,2.7315645,2.6613877,2.642973,2.3747063,2.4858482,2.5086107,2.4655318,2.3112192,2.2830725,2.2273142,2.1773922,2.253011,2.3433325,2.91322,3.2058063,2.7425027,2.5625591,2.5805871,2.4713337,2.4644146,2.511644,2.4072628,2.6088803,2.6095989,2.4818816,2.3938146,2.2648072,2.186945,2.1586814,2.0890775,2.1442835,2.2798338,2.4046845,2.482758,2.5777245,2.5521247,2.5111938,2.6004744,2.7666807,2.548581,2.2866235,2.2971637,2.3737264,2.2941232,2.2673035,2.3156524,2.4676433,2.2978182,2.2421749,2.4835513,2.258814,2.0026848,1.861261,1.8203032,1.8638126,1.8445983,1.800232,1.7423723,1.8378348,1.9374382,1.7112441,1.7331431,1.7460177,1.5912898,1.4936599,1.8140967,3.0208533,2.82328,2.5703332,2.443542,2.288899,2.175847,2.1192632,2.016157,2.0867026,2.0429358,2.2102442,2.6018229,2.380878,2.2709594,2.1755977,2.0001435,2.0756392,1.9997182,1.771827,2.48157,2.9496195,2.5762706,2.2590485,2.1556792,2.0478122,2.0339694,1.8794557,1.8851376,1.8123469,1.8035568,1.7949307,1.8157002,2.8200607,3.1589658,2.6967096,2.5950081,2.6165333,2.343465,2.1845536,2.305551,2.2468736,2.1363316,2.0169494,1.880009,1.9306462,1.8253658,2.330813,2.5067205,2.291341,2.04962,1.9739025,1.9626763,2.1320138,2.077812,2.0786774,1.8321097,1.7239109,1.7074287,1.5791028,1.6207403,1.6828668,1.9029645,2.3288238,1.9000357,1.4664907,1.4857676,1.5272282,1.6592584,1.8988527,1.6965668,1.543232,1.6978451,2.8103013,2.8753395,2.8598452,2.682837,2.081867,2.137009,2.6265152,2.5943737,2.5250132,2.1085644,1.591424,1.426621,1.8406613,1.7810872,1.9750838,1.983769,1.172003,1.4215567,1.891657,2.1570816,1.7256377,1.7286494,1.8821568,1.8464043,2.01829,1.9485745,2.1948175,2.623016,2.63095,2.7564075,2.5722976,2.0053313,1.8189967,1.865006,2.05363,2.7288508,2.2258523,1.69152,1.3784009,1.3046994,0.9692494,0.9179741,1.3164654,1.4430853,1.8016644,1.7543026,2.1168919,2.0743122,2.2445567,2.6961577,2.5649078,2.394166,2.6637917,2.649092,3.1187758,3.028976,2.6364136,2.7912958,2.6417909,2.3925579,2.1579003,2.05015,1.9271715,2.0595317,2.3630419,2.2358665,1.6686308,1.6779453,1.7913868,1.9939687,2.3502445,2.8471575,1.9171115,2.0237324,2.1345859,2.8800275,2.3204083,2.375914,2.5073962,2.1770203,2.3777847,2.468412,2.5813575,2.6694684,2.498516,2.5432992,2.6653066,2.8775988,2.7716923,2.331215,2.325418,2.70123,3.041809,2.7953615,2.2487547,2.0857313,2.0306895,1.9149148,2.4413023,2.8127284,2.690173,2.4729729,1.9771805,1.6448379,1.7374502,1.8190398,1.4684157,1.086451,1.8613967,2.0663102,2.0694516,2.2937198,2.9041333,2.4163136,2.2070901,2.4674897,2.466171,2.4966547,2.6648335,2.805087,2.66392,2.9094505
+2.7330604,2.6915476,3.0183144,2.7424946,2.9115887,2.4277952,2.5132241,2.6941946,2.6933095,2.3930674,2.0549626,2.2075033,2.4111586,2.3250637,2.3531165,2.311387,2.2924416,2.228652,2.122049,1.9240193,1.6709354,1.7766929,2.112917,2.0380566,1.790907,1.7836127,1.7177297,1.6989247,1.963244,1.7635477,2.8993912,2.4662046,2.9547462,2.8146842,2.7573328,2.8021252,2.6470084,2.5084462,2.3358417,2.214109,2.264094,2.4444156,2.34263,2.5086884,2.6575406,2.2428274,1.7355132,1.8751723,1.8357234,1.7683004,2.6386957,2.6583748,2.331203,2.2157767,2.131271,1.7966764,1.7245126,1.7734311,1.4909263,1.6621802,2.0008795,2.424081,2.5003166,2.3790097,2.1673672,2.3064418,2.377152,2.2132034,2.3439028,2.1065094,1.7990512,1.4928756,1.4265077,1.5410984,1.4630499,1.4152782,1.633883,1.6413652,1.7865001,1.513751,1.2894108,1.0685041,1.1411633,1.2764063,1.253764,1.5217152,1.393243,1.5658735,1.8987708,1.7841322,1.6285378,2.62919,2.3025305,1.9682055,2.3745937,2.296452,2.3610797,2.105229,2.019166,1.8937768,1.9968671,1.8459723,1.7219512,1.7009908,1.5998913,1.6479571,1.8178948,2.011532,1.7103825,1.6747313,1.7619735,1.6055617,1.3618612,1.4375486,1.3638977,1.2765326,1.5540727,1.8625411,1.8832777,1.672221,1.6948907,1.6816611,1.6023998,1.9775058,2.4177487,2.7962809,2.702334,2.2832808,2.342256,2.915797,2.7922573,2.6572862,2.5749106,2.2618513,2.1071434,2.0659106,2.0138845,1.8773359,1.871784,2.1125188,2.3673618,2.2747393,2.41043,2.580527,2.1156967,1.9299269,1.747165,1.7779067,1.7422729,1.7442398,1.6427994,1.460197,1.3230737,1.5468698,1.9058175,1.7515935,1.4386092,1.2766602,1.212796,1.2512747,1.2897615,1.2484183,1.1967365,1.2373741,1.2648308,1.0243787,1.1027074,1.1490688,1.2926161,1.4800844,1.3343691,1.402794,1.5243123,1.5027586,1.3849977,1.1788409,1.1359808,1.1198269,1.6113693,2.3565454,2.0458508,2.19341,2.1943328,2.2402372,2.0646238,1.7802205,1.6942486,1.7112647,1.5167296,1.9633019,2.8593483,2.7772448,2.5472221,2.2260265,2.0739427,1.8535484,1.7762263,1.5646281,1.5103947,1.4892126,1.4316881,1.5017291,1.4722351,1.5081832,2.0614853,1.7510206,1.4862604,1.5666336,1.3110352,1.081908,1.2397194,1.2686172,1.2805536,1.2464882,1.1130005,1.1550696,1.1782442,1.4228365,1.6678693,1.5042901,1.3201795,1.2244794,1.1146166,1.4929652,1.3791889,1.330405,1.256046,1.1444588,1.1745846,1.1547217,1.1725912,1.1673279,1.3475653,1.8889176,1.6920625,1.37145,1.1559441,0.9166184,1.0251272,1.567195,1.4593215,1.1031296,2.1634045,2.6801646,2.7444272,2.8307245,2.5842347,2.625009,2.656855,2.8939717,2.698584,2.8383512,2.6267977,1.878835,1.531252,1.663923,1.6623406,1.7252071,2.412344,1.4951501,1.5339824,1.5063642,2.0046513,2.0394092,2.1431122,2.2530632,2.1660347,1.7082534,1.8135216,1.8842212,1.991867,2.459058,2.7424033,2.7482872,2.1771998,1.9075639,2.376885,2.6235633,2.707446,2.5956404,2.1541939,2.102723,1.8317816,1.332093,1.1613142,1.4748795,1.370437,1.6501955,1.7381828,1.9578094,1.9551064,2.0852783,2.3806303,2.485361,2.4271917,2.3517184,2.231152,2.984118,2.8316636,2.8302875,2.7526746,2.8923755,2.5975337,2.4446297,2.2534199,2.1675432,2.3037152,2.3584743,2.3017945,2.0386722,1.7581084,2.0349638,2.0275257,2.2572532,2.9836826,2.258041,2.1804495,2.30191,2.9053102,2.3047729,2.5453439,2.65132,2.374975,2.41201,2.3827403,2.4310498,2.2166338,1.9101853,1.962817,2.028848,2.1793485,2.5797465,1.9014921,1.7575336,2.375492,2.907854,2.7382598,2.2893057,1.9819245,1.8306952,1.7631743,2.3345141,2.6271355,2.4352388,2.4664838,1.8254092,1.5400965,1.9431126,1.938498,1.5312972,1.3764262,2.16792,2.6704202,2.441473,2.367494,2.6160529,2.2992797,1.9280779,2.0679975,2.3237963,2.4845,2.5284164,2.6156678,2.3507762,3.0976748
+2.600046,2.458765,2.743503,2.487803,2.506118,2.4384463,2.1054869,2.166363,2.38355,2.32029,1.7506138,1.7218294,2.1551948,2.1456957,2.2753105,2.1411302,2.058956,1.8197323,1.6027555,1.4744078,1.5224118,1.2496581,1.4278278,1.4500287,1.2455405,1.1216302,1.0739443,1.0247234,1.1944816,1.0639944,1.9458945,2.3851783,2.5318031,2.3498878,2.289566,1.9680514,1.8145444,1.4873567,1.4000497,1.3327543,1.2626086,1.064711,1.6725171,1.7134963,1.5591826,1.4847097,0.969282,1.1952183,2.4536214,2.604123,2.123513,2.1187277,1.9578092,1.6200707,1.4152057,1.2258227,1.1971413,1.2922233,1.3436879,2.1305914,1.744384,1.5762258,1.4049702,1.3277887,1.1914527,1.425909,1.588484,1.7325689,1.5631487,1.4548166,1.237695,1.0443546,0.95180523,1.010607,1.029719,0.8521117,1.0393608,0.93884563,1.1850926,1.024347,0.8857081,0.66758716,0.6212132,0.65134156,0.7001569,0.87045467,0.91185164,0.8196102,1.0658644,1.3841217,1.2223054,1.2589899,1.0980065,0.96584,0.83638304,0.9065646,0.8610612,0.9385257,1.3586861,1.2939854,1.2303305,1.1785314,1.3431556,1.1589775,1.0058708,1.1156125,1.7929578,1.723804,1.579434,1.5444753,1.3957839,1.4081998,1.533463,1.5532871,1.7316906,1.3299472,1.3470551,1.1704462,1.1212809,1.0640045,1.0907892,1.3844748,1.2067617,1.5178006,1.3417414,1.8263773,1.9629493,1.5417014,1.3844297,1.4587392,1.4141135,1.8968139,2.1132033,1.7457815,1.6035858,1.4883578,1.3619707,1.2694936,1.3954355,1.682493,1.5521636,1.7763735,1.8658984,1.7684491,1.4901166,1.3462402,1.3050588,1.2458198,1.319953,1.2335812,1.3137286,1.2238071,1.0462006,0.94820875,2.4942286,2.5886736,2.131159,1.9252899,1.6671295,1.5032337,1.3891734,1.2904836,1.2001023,1.0637738,0.99499834,1.2575763,1.1761914,1.0691974,0.96017635,0.9726761,0.81894636,0.92225945,1.5901444,1.4016608,1.288763,1.2227864,1.2407944,1.1497514,1.0484991,1.091615,1.3366535,1.5339868,1.445099,1.4291444,1.2341938,1.0985928,1.0727504,0.96923864,0.81058043,1.2354665,2.6100645,2.2674315,2.2361727,2.0591762,1.8817523,1.6332127,1.4884821,1.3345585,1.390944,1.2500014,1.181052,1.1665878,1.1517984,1.1347637,1.345897,1.2401069,1.0008994,1.083458,0.9633989,0.7131423,0.7530203,0.89619255,0.7931943,0.8472198,0.8044826,0.8115312,0.76003784,0.91948795,1.0546701,0.9564972,0.9555955,0.9045028,0.6866254,0.88123614,0.88526666,0.9016913,1.3986118,1.6503779,1.6806033,1.6476896,1.5401351,1.414253,1.3717186,1.5885894,1.398284,1.2541461,1.1269282,0.82690156,0.77249944,1.1233482,1.2269914,0.9767172,1.1288841,2.2639813,2.2331893,2.4177318,2.1135426,1.9930041,2.4707906,2.6934235,2.5442708,2.4252927,2.6665425,2.3878787,2.1553607,1.9268823,2.189967,2.2723193,2.6021638,2.427402,2.0802965,2.0466309,2.8022757,2.715539,2.7696552,2.6705759,2.8108704,2.4462295,2.4655392,2.4223833,2.3158746,2.5597565,2.6338797,2.7228827,2.3988886,2.1322284,2.7670815,2.8715186,2.9656339,2.9518933,2.7161226,3.0486977,2.746964,2.4158363,2.1663256,2.0814116,2.3917503,2.554329,2.608712,2.64825,2.6045666,2.5667782,2.623423,2.7980716,2.5045266,2.7755713,2.9784799,3.1528795,3.0659132,3.1127915,2.9449244,3.077247,2.9123902,2.761747,2.7124753,2.723174,2.6726525,2.652258,2.4977074,2.6303947,2.368432,2.513812,2.4309158,2.5531492,3.0056791,2.9802732,2.7676935,2.7720113,2.9286551,2.8465383,2.8979433,2.973959,2.9465952,2.7861114,2.8126075,2.8364632,2.7121596,2.4338484,2.5011103,2.4012861,2.3956254,2.6480496,2.3259344,2.0712526,1.942163,2.972549,2.9394786,2.7659461,2.5214958,2.3491192,2.3940518,2.4601421,2.6341987,2.5826783,2.681797,2.814336,2.7739906,2.7960773,2.9430013,2.5298567,2.3901582,2.2395341,2.6903975,2.5725274,2.258503,2.6151018,2.8096688,2.5193582,2.5443435,2.4779453,2.2462666,2.2376757,2.3545299,2.07436,2.2451894
+2.1945539,2.62705,2.3976936,1.8467377,1.4687402,1.1251394,1.2510312,1.5284889,1.2916987,0.9388557,0.6007081,0.86320424,1.1865839,0.8479171,0.75717884,0.7344098,0.50508636,0.24769679,0.08236148,-0.0125603005,-0.05355849,0.11002929,0.5607887,0.34791148,0.046656936,-0.11309969,-0.05565647,-0.033283107,0.13391975,-0.027068943,0.08140368,1.0807532,1.5140059,1.23894,0.94209623,0.5840696,0.29990432,0.0844759,-0.03646972,-0.051005565,-0.0198998,-0.115154155,0.77181125,0.95132935,0.45195353,0.22137749,0.6976515,1.461743,0.9515538,1.4892668,1.4031738,1.3411355,0.88608015,0.48933643,0.21673898,0.06894349,0.15775727,0.08905568,1.9722316,2.200315,1.3053453,1.5470331,1.5092494,1.2297399,0.81343985,1.2844732,1.8071651,2.301735,1.4429034,1.0051783,0.6652672,0.40187818,0.41137746,0.3394612,0.18263924,0.57814443,0.89601207,0.8147943,1.1679076,0.8434589,0.49655473,0.1969698,0.03927222,-0.030776612,-0.026689,0.13266312,0.07467202,0.02178856,0.21891075,0.82696253,0.5407723,0.37492684,0.27821097,0.16086484,0.23701105,0.6957576,0.93669873,0.6821907,0.3922674,0.4208449,0.46783924,0.29874033,0.3009804,0.10309284,0.019234158,0.094307646,1.504322,2.288372,1.4241631,1.1190064,1.2551544,0.941072,0.7825924,0.5518034,0.3996769,0.32131335,0.2991427,0.16548654,0.12538105,0.12067724,0.12128743,0.36382198,0.49881762,0.87710154,1.2022338,1.3765132,1.6128621,1.0939169,0.8818678,0.7489359,0.84923244,0.9644432,1.0872179,1.1413714,0.77452683,0.6569975,0.53857994,0.42956144,0.3673278,0.7666845,1.2942001,1.4957333,1.2501163,0.9410258,0.65021634,0.7264911,0.8655088,1.4687408,1.2065802,0.77645814,0.67650473,1.014845,0.9565915,0.71305853,2.283238,2.2809489,1.551389,1.2900689,0.9888765,0.77300256,0.65999633,0.5480914,0.42003405,0.42742932,0.81849116,1.0862689,1.331867,1.0076321,0.81126976,0.6463858,0.5166705,0.55261004,0.5222591,0.7107018,0.9542725,0.73911303,0.6175983,0.5087915,0.4302002,0.46194804,0.31297362,0.33953905,0.4342687,0.44170728,0.26382512,0.1449388,0.12792641,0.1942023,0.16060624,0.71330476,2.368712,2.2529275,1.7207129,1.3666468,1.0991583,0.8837718,0.74227965,0.56793475,0.6163404,0.48165417,0.40437505,0.4234795,0.40624356,0.46127146,0.72046083,0.39554828,0.16982797,0.16156942,0.09367126,-0.083827876,0.03341028,0.10492686,0.10381675,0.1905683,0.08354456,0.103848554,0.092666484,0.24366882,0.32955503,0.16367194,0.08194803,0.06457628,-0.050408624,0.12835938,0.042411275,-0.012540139,0.31876194,0.7323499,0.6451208,0.5407328,0.42204148,0.35853815,0.39565778,0.57262605,0.32916546,0.15077682,0.05447311,0.009719342,0.1254512,0.37937766,0.3101477,0.026810326,-0.048208408,0.3347362,1.0573274,1.5462058,0.98171747,0.89231926,1.459226,2.179923,2.2271516,1.7972283,1.6869373,1.4079368,1.2878623,0.9754994,1.5122757,1.9285743,1.9341426,1.6515992,1.1762955,1.2306716,2.0126934,2.0672586,1.7196279,1.4964488,1.4655471,1.2206392,1.2286698,1.2226732,1.1320682,1.2526462,1.3219419,1.669787,1.2108812,1.2856541,2.0517914,2.2254214,2.374045,2.0189507,1.8364575,2.3913553,1.8677926,1.5435162,1.4495912,1.2013848,1.367974,1.3861216,1.4085064,1.3866482,1.3272989,1.2354064,1.3169185,1.3019583,1.0987759,1.6167512,2.3720102,2.4946134,2.3426156,1.9522235,1.8119531,1.9866681,1.6539123,1.43888,1.4608712,1.2589747,1.2398638,1.3033028,1.3033278,1.4827833,1.2441304,1.2316763,0.9908761,1.5454782,2.0993986,1.7816167,1.46029,1.3054277,1.5445783,1.2772232,1.534842,2.065344,1.6261692,1.3791875,1.4383605,1.2901739,1.051766,1.0251979,1.3025956,1.0566953,1.034327,1.2011657,0.7424263,0.6031006,0.7782772,1.1089413,1.3304396,0.8753383,0.6107098,0.41715208,0.5569516,0.55854595,0.6801972,0.4086139,0.47148648,0.49097216,1.2752314,1.5410907,1.6094099,1.2088654,0.9901462,0.8961432,1.1624482,0.89785707,0.7221937,1.099186,1.459453,0.8907055,0.7910796,0.6692836,0.65386957,0.621078,0.6410413,0.37866396,0.6478287
+2.2181,2.9191551,3.1575446,3.053388,3.0299602,2.9780025,2.7596827,2.8544173,2.8802161,2.7613344,2.417492,2.2264416,2.519458,2.4417586,2.8263903,2.8796287,2.8665886,2.730245,2.5545182,2.3846707,2.196062,2.0904293,2.6593056,2.6055112,2.446405,2.2525153,2.0279348,1.8603524,1.9023294,1.8845387,1.8568037,2.8797376,2.6714978,2.801128,3.0929344,2.990909,2.824817,2.7029092,2.5331204,2.2138457,2.2270608,2.0798185,1.8893739,2.2886949,2.5629644,2.2502563,2.2678022,2.9289603,2.8245487,2.9692051,2.8224542,2.8678122,2.8590796,2.79527,2.606011,2.436427,2.410726,2.266198,2.2465878,2.7917185,2.4879782,2.423523,2.6633162,2.7646904,2.7919261,2.852657,3.051705,3.056651,3.0187516,2.9322264,2.7779064,2.6796122,2.459065,2.46631,2.620429,2.8231258,2.747789,2.6462245,2.9035344,2.9816294,2.8917806,2.7587855,2.5976763,2.396156,2.222285,2.0447884,2.2115066,2.710446,2.5827143,2.546658,2.875224,2.7593946,2.7464688,2.5985446,2.5678446,2.426804,2.24525,2.4451385,2.1743817,2.0442908,2.0577374,1.9695325,1.8730253,1.8294148,1.6652386,1.7417505,1.6641197,1.7424245,2.2107797,2.026216,2.5763211,2.6888542,2.323211,2.3421757,2.388218,2.7338128,2.4255316,2.2869444,2.0862558,1.9544772,1.7839234,1.6475275,2.1661422,2.3392327,2.162735,2.28404,2.5558202,2.4910612,2.3068666,2.0855057,2.4555612,2.4543142,2.3147736,2.4189925,2.2585251,2.166947,2.0521126,1.916175,1.840499,1.7124232,1.7059696,2.0534217,2.2695951,2.0932832,2.1325738,2.7313933,2.4750104,2.818596,2.8035388,2.5475936,2.343619,2.4123914,2.3702354,2.5459042,2.8753195,2.948681,2.871146,2.8780847,2.7800379,2.6378956,2.5203345,2.4057136,2.286398,2.1054118,2.0544603,2.264878,2.5863304,2.6158602,2.488032,2.3809347,2.1330507,2.0831587,2.0323153,2.4583008,2.3633728,2.2755346,2.127088,2.0815034,1.8974373,2.0047996,1.7472999,1.7507886,1.8006148,2.112069,1.8267335,1.6099248,1.6318712,1.6347722,1.6119857,2.4597392,2.9947543,3.074862,3.0208907,2.9545078,2.84596,2.7022314,2.6344757,2.4053705,2.627763,2.519148,2.3993018,2.3353653,2.2508614,2.1057892,2.4044318,2.3514717,2.1403599,2.0260048,1.898751,1.7964039,1.8522198,1.8383603,1.808069,1.8167499,1.8221502,1.7406081,1.7050192,1.7188998,1.9591521,1.7968655,1.7542822,1.7239348,1.5594124,1.7766588,1.750309,1.6586576,1.605953,1.6111279,1.5892541,1.6034551,1.5547615,1.5053813,1.5407736,1.9792966,1.8308816,1.5679859,1.3332841,1.2159071,1.3621333,1.4699333,1.7876368,1.3602574,1.1575422,1.330884,1.6801474,2.4816077,2.2190573,1.7895753,1.7302871,2.9200745,3.0512705,2.9914331,3.1307843,3.1259255,2.9479713,2.78564,2.747,2.940791,3.0240116,3.0728097,2.8739357,2.7914178,3.0224504,3.101193,2.992898,2.9481525,2.9348657,2.8200355,2.794371,2.6885462,2.620009,2.5585477,2.5586085,3.060379,2.8900957,2.6887894,2.6452353,2.6709526,2.9492826,2.93829,2.8545444,3.151746,3.1510825,3.119228,2.982844,2.9352698,2.9249244,2.8854494,2.8448052,2.816114,2.7867608,2.7205215,2.6402276,2.6238103,2.5620413,2.683765,3.0489902,3.0096812,3.026847,3.0291321,2.9034505,3.0584464,3.008059,2.9899044,2.990982,2.897363,2.8277574,2.779717,2.6854854,2.8041768,2.6386557,2.6096458,2.4732075,2.8446045,2.9093194,3.132441,2.9428527,2.8539548,2.81855,2.8051043,2.568573,2.8110814,2.7378006,2.4944615,2.4323454,2.3421268,2.274317,2.4736526,3.0990663,2.9583035,2.8537753,3.017301,2.831606,2.5466921,2.7149181,2.7036064,3.1195507,3.0089211,2.8610024,2.6676948,2.5167863,2.3752434,2.4689674,2.2886457,2.4212089,2.21483,2.199887,2.7357988,3.1260185,2.9805813,2.823625,2.6399028,2.691666,2.6814895,2.4672036,2.2749267,2.2634282,2.0225995,1.995975,1.9060137,1.8657539,1.8519554,1.8445957,1.6618769,2.1624506
+2.21073,2.5897064,2.8785179,2.7822387,2.7128057,2.5730777,2.4156973,2.6640384,2.6030416,2.4314537,2.2892847,2.2792225,2.15018,2.0059867,2.3309305,2.555907,2.481104,2.332302,2.2219207,2.053037,1.8708467,1.7738951,1.9312011,1.9540117,1.7881154,1.8670739,1.70423,1.7219541,1.5886319,1.6081187,1.6878229,1.5493867,1.7249613,2.6576536,3.0838575,2.9612286,2.8714573,2.6759224,2.4652705,2.2616572,2.1616046,2.1406255,2.1214674,2.089398,2.084178,1.7417834,2.692966,3.0239906,2.9403043,2.8879483,2.905243,2.962958,2.942735,2.843473,2.7492561,2.6124358,2.4299455,2.3054268,2.1298544,2.4276,2.3585162,2.4497092,2.5026026,2.3533008,2.1337168,2.0723188,2.5438404,2.8860512,2.969418,2.9956129,2.954768,2.9781582,2.9939308,2.9261267,2.8247533,2.726846,2.8843205,2.9165857,2.9220195,2.943797,3.0245554,2.9551601,2.8462281,2.7161896,2.5705163,2.390261,2.5375755,2.701238,2.6022282,2.886084,2.7988453,2.8713205,2.8658853,2.8994212,2.9015484,2.8495646,2.723011,2.6081405,2.4801927,2.366967,2.2856002,2.2137494,2.1581173,2.5538988,2.7065048,2.7392595,2.7060509,2.661117,2.5590014,2.8800921,2.817637,2.8848827,2.9902768,2.926248,2.957456,2.9829278,2.8433871,2.8472834,2.7220874,2.6686678,2.8820791,2.747493,2.6724272,2.4375396,2.3218014,2.2812805,2.6265013,2.524414,2.529762,2.6265411,2.6296823,2.864604,2.7764611,2.9797397,2.9130526,2.843615,2.7980032,2.665344,2.8633204,2.6558073,2.7039032,2.539928,2.4842892,2.3341336,2.3296049,2.3015118,2.6069732,2.8317485,2.5957003,2.7612288,2.589447,2.8190145,2.9536567,2.9682465,3.066394,2.9368768,2.9599133,2.924231,3.0582652,3.0321524,2.9902806,2.9562886,2.897057,2.820397,2.6726234,2.7390182,2.7623084,2.7604475,2.6459622,2.692219,2.8226318,2.768116,2.9492803,2.8892255,2.893796,2.8970332,2.6918044,2.7819593,2.7633157,2.7790172,2.8682,2.7786398,2.783022,2.7630591,2.7420943,2.6961405,2.709681,2.7264493,2.8787184,2.9221616,2.9838047,3.0022063,2.9602137,2.8698356,2.7312942,2.7432885,2.7078142,2.5369287,2.715908,2.6388614,2.621902,2.5958557,2.566455,2.5284917,2.583935,2.5068097,2.4098969,2.3689122,2.3118143,2.3119636,2.293602,2.2723927,2.2925875,2.2688491,2.2346275,2.2172582,2.2172627,2.2908833,2.2372122,2.2182024,2.1895278,2.2124617,2.1739306,2.2469115,2.2508419,2.1931508,2.1365802,2.09648,2.2553582,2.2479262,2.174335,2.1300013,2.1565666,2.3094122,2.2996917,2.1571958,2.031818,2.010043,2.0541728,2.055666,2.1222327,2.0452876,2.022997,1.8834696,2.0748606,2.1745844,2.151345,2.0040605,2.009647,2.2697358,2.8551698,2.6991365,2.6176324,2.641297,2.5108,2.5073578,2.474496,2.4650764,2.4611912,2.4613562,2.3697133,2.2399907,2.3436408,2.555256,2.7315335,2.6397798,2.5923095,2.530676,2.4920478,2.4395707,2.435478,2.4110396,2.3982944,2.5533938,2.4439204,2.303549,2.2628288,2.2860415,2.3174577,2.5726755,2.423654,2.4781938,2.9579892,2.7686114,2.6845784,2.634827,2.5731263,2.5437193,2.5186164,2.4835987,2.4446015,2.4214296,2.415617,2.4022512,2.3594513,2.3278062,2.2792249,2.539917,2.8973207,2.7032428,2.6488886,2.6644297,2.6225493,2.537678,2.749618,2.6808364,2.6191525,2.5554116,2.5578318,2.5247152,2.4655137,2.4775972,2.3256235,2.560028,2.8577163,2.7713175,2.644567,2.5764027,2.5553017,2.5081348,2.394321,2.5927339,2.572103,2.3296528,2.4381633,2.4778419,2.3525689,2.1882591,2.634001,2.6793907,2.5712729,2.5565848,2.4279587,2.2982678,2.261988,2.1886804,2.3355122,2.2145052,1.9747303,1.9017437,1.8322959,1.8507526,1.7846291,1.8436627,1.843781,1.7367706,2.281957,2.4715168,2.7892473,2.5872195,2.4401255,2.3290155,2.3088489,2.2333915,2.0906227,2.0165162,1.7707508,1.8911443,1.8727665,1.7322235,1.7245016,1.7120624,1.590102,1.4905447,1.585282
+1.3066443,1.6833856,2.0242414,2.2342854,2.2074003,1.9615757,1.8304043,1.9018201,1.9170552,1.7718282,1.7513299,1.6971751,1.5677844,1.3759339,1.679134,1.6778902,1.5964012,1.4649686,1.3443446,1.2193193,1.226192,1.0413858,1.4636397,1.3354106,1.1274179,1.1957481,1.359459,1.1785967,0.9927586,1.0222311,1.1942382,1.1849217,1.1035745,1.8223152,2.161578,1.9459307,1.7294174,1.3079542,1.1058363,1.0917509,1.069451,1.0321212,1.0367087,1.0021956,0.90961444,0.79395247,1.0620666,2.2638102,2.3886497,2.1720552,2.1563923,2.3215313,2.1575031,1.9941659,1.6686263,1.5376943,1.3163102,1.1809599,1.4158108,1.8877034,1.8298393,1.6783919,1.6501867,1.7056955,2.0728621,2.0862577,2.388748,2.6981728,2.6082687,2.8155231,2.8677068,2.975625,2.8745272,2.945763,2.942514,2.9563982,2.879332,3.0349567,3.0047855,2.8501902,2.9650168,2.8537729,2.5463204,2.587677,2.773802,2.800581,2.844904,2.9400787,2.8769493,2.9612417,3.0173397,3.000577,2.9337263,2.9062057,2.8353944,2.9009485,2.8649082,2.6447864,2.7151723,2.7103536,2.792284,2.7950592,2.7748017,2.817401,2.8529294,2.91782,2.8050718,2.8621354,2.7852123,2.896924,3.0008378,2.7589421,3.003389,2.9500062,2.9342208,2.9094002,2.8149672,2.727447,2.615778,2.4719725,2.4809065,2.7585099,2.7972012,2.8406365,2.8836303,2.8919106,2.9802475,2.8581734,2.70856,2.8312235,2.852339,2.6768963,2.6908724,2.8376346,2.7864008,2.6543884,2.5681057,2.5463538,2.710871,2.7039008,2.5917065,2.4869657,2.4942787,2.4491363,2.4781725,2.4009724,2.3656037,2.7841594,2.567114,2.5474412,2.4395247,2.3684118,2.290717,2.6071491,2.7764745,3.0275211,2.878344,2.857794,3.0706515,2.9660883,3.031509,2.8733413,2.6946313,2.782051,2.6672497,2.7857394,2.834682,2.8736038,2.7187061,2.9361367,2.7789721,2.8569198,2.7355075,2.7292159,2.536797,2.6086073,2.6803875,2.8553019,2.8835764,2.9458046,3.033253,2.9163404,2.936049,2.8406882,2.8180737,2.903392,3.042987,3.02841,2.960889,3.0439212,2.9777188,2.9815106,2.947585,2.9088154,2.752431,2.8448434,2.8019717,2.680148,2.6914172,2.6773353,2.6534357,2.657036,2.5166948,2.47335,2.5071754,2.4582515,2.29141,2.194058,2.1528215,2.1064835,2.067543,1.984884,1.9827816,2.061086,1.8908871,1.9217451,1.9419119,1.8745615,1.8459517,1.9064898,1.9601393,1.8401036,1.7429698,1.7912822,1.8178445,1.8204117,1.8451282,1.829256,1.8033593,1.7957064,1.8016638,1.7868786,1.7938795,1.913454,1.9568152,1.8633106,1.7546463,1.736939,1.7922903,1.6754358,1.8587424,1.7624409,1.8334835,1.6371866,1.7776592,2.018345,1.930223,1.8005545,1.8621746,1.7497499,2.1395235,2.0620294,1.8882226,1.9124913,1.7566469,1.8081882,2.118902,2.1121979,2.103775,2.086452,1.8871348,1.929781,1.9726818,1.975322,1.9841251,1.9880102,1.9084966,1.9323143,1.8918173,1.8791423,1.9021611,1.7807283,1.8373771,1.973459,1.9377806,1.7802036,1.6817394,1.9515429,1.8647788,2.2106526,2.085281,1.9594892,2.5233574,2.2153196,2.1095533,2.0660107,2.023078,2.007396,2.0320008,2.0119743,1.987581,1.8970075,1.9157075,1.9474205,1.9746016,1.9920743,1.9746338,1.9456656,2.3543346,2.2445712,2.1986275,2.2155433,2.214176,2.3711033,2.534933,2.5395749,2.477394,2.3946157,2.36034,2.322847,2.2572281,2.2466872,2.111379,2.2269995,2.2953472,2.357613,2.1369412,2.1097093,2.1699433,2.0875497,1.883231,2.3018322,2.334757,2.1769557,2.0991342,2.1136906,1.8928633,2.114202,2.6348822,2.4539223,2.3774202,2.3156686,2.1860757,2.0976746,2.051023,2.0079765,2.042694,1.9086468,1.7911623,1.8106503,1.726707,1.6340164,1.5342395,1.531166,1.5093383,1.4226917,1.5229384,1.887585,2.2386627,2.075976,1.8339425,1.5386798,1.5390333,1.5873964,1.3659275,1.3167157,1.1771197,1.3971972,1.3642943,1.2798989,1.1623285,1.14112,1.0103655,1.0090275,1.0844637
+1.1575849,0.9586333,0.8835024,0.921304,0.97329056,0.87258565,1.0370954,0.8907256,0.8711798,0.9869063,1.0068109,1.017013,0.9231131,1.1226485,1.5955749,1.8258476,1.5795422,0.65842557,0.75367296,1.0145069,1.3836354,0.5776923,0.4357241,0.3570583,0.3966092,0.36906222,0.29479825,0.37783903,0.57713383,0.7263485,0.684024,0.7817996,1.0089155,1.5428678,1.3014402,1.6794493,2.4127536,1.8276647,1.3394898,1.4002098,1.8437192,2.5217447,2.902535,2.9839666,2.6000628,2.3310933,2.2885919,2.3504095,2.807283,2.962362,2.888645,2.6800373,2.6538835,2.833848,2.826833,2.559135,2.730361,2.8964806,3.1362908,3.161853,3.1406865,3.0596995,3.040329,3.1375194,3.0880523,3.131597,3.202488,3.1545472,3.1024275,3.061892,3.0852993,3.0271235,3.0754905,3.0514126,3.0122995,2.9806347,2.9271433,2.8682795,2.7156186,2.7209496,2.9912055,3.0950994,3.006733,2.9679294,2.9049635,2.7957413,2.836252,3.236166,3.1209822,3.0402908,2.9635296,3.1695335,3.054626,3.0329342,3.0767205,3.1980853,3.1014028,3.120239,3.1007917,3.0712907,3.0398726,2.9302032,2.9876566,3.1246195,3.1607914,3.1562948,3.0859838,3.0196538,3.1003528,3.0445006,3.030613,3.065146,3.2250834,3.2576208,3.1771054,3.1989272,3.2380276,3.1708422,3.106416,3.0592062,3.0357032,2.9860375,2.9058337,2.8373756,2.782424,2.7531176,3.1410336,3.234494,3.1070623,3.1376514,3.0214057,3.0756247,3.0475318,3.0349002,2.9682305,2.8763156,2.8178515,2.9351997,3.0977054,3.0909824,3.0591173,3.193563,3.2438736,3.072487,3.13754,3.1215994,3.159828,3.1899724,3.0859141,3.1746893,3.0709972,3.142706,3.1851492,3.0873475,3.1135015,3.0603452,3.0491858,3.0012674,3.0276248,3.1228266,3.202661,3.0963254,3.166986,3.258257,3.1005685,3.2072043,3.0860589,3.1046786,3.10111,3.1195064,3.175758,3.122943,3.0993419,3.0786407,3.0754733,3.0434973,3.0457768,2.9588745,2.9432435,3.0397239,3.0792828,3.0765433,3.052949,3.0312672,2.9815462,2.9233842,2.7544222,2.716669,2.7179866,2.818768,3.0022972,2.8982272,2.6862893,2.6584985,2.9470687,3.2075272,3.0597055,3.057108,3.1746397,3.1356952,3.218842,3.0378695,3.0363145,3.0105038,2.9844131,2.9224467,2.7980967,2.5805118,2.2314723,1.8341266,1.8742743,2.5741622,2.609814,2.3764553,2.7911203,3.001842,2.991505,2.9108078,2.8454063,2.7971377,2.919003,3.0174835,2.874988,2.7760882,2.753776,2.3859713,2.5356545,2.7044983,2.5522795,2.5126734,2.5865562,2.8556695,2.9964328,3.0404158,2.9322476,2.6999893,2.4337196,2.2059526,2.0915093,2.0271046,1.7447817,1.664181,1.6960876,1.9598792,1.8668847,1.6664264,1.310588,1.2606004,1.152256,1.2466938,1.2044585,1.2597872,1.1619823,1.0387918,1.0306244,1.0749543,1.1028798,1.2194563,1.2713269,1.2280097,1.2289201,1.2322066,1.2509142,1.168243,1.144144,0.9988228,1.0777329,1.1399071,1.2031221,1.2943003,1.2334112,1.226037,1.0049938,1.1577171,1.1913979,1.1862037,1.0519825,0.99629605,1.094441,1.1729519,1.1853137,1.142484,1.1310909,1.1494082,1.0747153,1.1204016,1.2596666,1.2545469,1.2798775,1.2496012,1.1141242,1.1512493,1.0611898,1.0922817,1.0620698,1.1354923,1.0675648,1.0321254,1.0591922,1.0835122,1.0605701,1.016189,0.92155933,0.96617603,0.9878684,0.9849396,1.0164704,1.1413034,1.1757891,1.1726377,1.1249487,1.0925533,1.1282778,1.1618359,1.1477863,1.1814615,1.0360574,0.9272921,0.91294867,0.9017675,1.089488,0.9432338,0.8570769,0.94037986,1.0675838,1.1168971,1.0467079,1.1827706,1.1762611,0.9334406,0.8892262,0.97461534,0.9382479,0.87911177,0.91785824,0.9965761,1.0637518,1.1069354,1.1430612,0.94858956,1.1607685,1.2542317,1.2195222,1.1686091,1.1209735,1.0714675,1.090342,1.0169499,0.9856553,0.9312372,1.0291572,1.0879265,1.1183975,1.2134928,1.1451585,0.9977615,1.0209595,1.0236665,1.1628965,1.0573982,1.0568794,1.1431084,1.0843939,1.1153257,1.1026517
+1.4259241,0.9930069,0.80290055,0.84009635,0.866284,0.8637506,0.9821264,0.9055898,0.9068121,0.8639448,0.83713365,0.9804116,0.956837,1.175617,1.4010922,1.5767295,1.7581711,1.2897027,1.073699,1.0472699,1.1678394,0.9068819,0.4750775,0.43980867,0.37008256,0.28973743,0.32000056,0.2842582,0.33530286,0.55369806,0.5992656,0.71575797,0.7836517,1.1073177,1.2350796,1.4487084,1.9088573,1.7798262,1.3868755,1.511939,1.7709098,2.0923884,2.2181826,2.1959548,1.8391154,1.4058262,1.350439,1.4028718,1.7095895,2.1933227,2.2894928,2.3486454,2.065281,2.0562513,2.5679576,2.0317252,1.9944745,2.1599855,2.4863138,2.510689,2.7873423,2.676085,2.1316626,2.2467804,2.399209,2.4542,2.8473344,2.9432673,2.7308278,2.6460977,2.536394,2.202125,2.610154,2.4417167,2.3140476,2.194264,2.3015172,2.2902386,2.1961215,2.0521002,2.115886,2.4122896,2.0620017,2.0558743,2.1492684,2.0704303,1.8735025,2.251051,2.6660006,2.1887026,1.8082385,2.6209908,2.6991525,2.481669,2.4918618,2.37418,2.7207825,2.5875874,2.7457695,3.000503,2.8284075,2.657247,2.5250752,2.5813732,2.638235,3.10902,2.6518006,2.6852133,2.6686013,2.5730143,2.5920734,2.3701797,2.6821904,2.8273425,2.6385827,2.3670273,2.5642252,2.4812217,2.5693393,2.2320864,2.1206465,2.1921594,2.1168728,2.0511093,1.8614552,1.7956476,1.8494786,2.2666106,2.27816,2.3107243,2.0661583,1.8518418,2.0136895,2.8311696,2.459928,2.2808204,2.110548,2.2136173,2.216583,2.2291129,2.2584662,2.6302772,2.8902307,2.8378546,2.45392,2.4650888,2.4067178,2.5593317,2.4726458,2.4156423,2.5280485,2.2362757,2.59296,2.62641,2.5796528,2.23285,2.1802328,2.115841,1.8944025,2.2655282,2.746376,2.4566016,2.388637,2.8623366,2.5641942,2.6058552,2.8656538,2.592638,2.476931,2.2651153,2.528438,2.5270865,2.593866,2.6721635,2.5721233,2.413638,2.390838,2.2949193,1.922749,2.1588857,2.5212197,2.54884,2.5140314,2.384886,2.0523617,2.0817974,1.8994459,2.1666923,2.1412764,2.0248778,2.3333838,2.4074185,1.8196731,1.750078,1.8487271,2.9494462,2.136101,2.0154195,2.3003168,2.5365334,2.4320908,2.5418634,2.4198837,2.4623797,2.174874,1.794449,1.6050117,1.4397339,1.0740854,0.76926184,0.74001837,1.4634106,1.5299449,1.16028,1.3793662,1.7873721,2.0748425,1.8420639,1.586076,1.6662132,1.8005478,1.962672,2.1044211,1.5804243,2.0574682,1.3086398,1.4066255,1.5050244,1.485147,1.5311702,1.5375762,1.5924466,1.8532038,2.6141605,2.1390755,1.5397942,1.1000507,0.80310524,0.7744187,0.782184,0.6553816,0.56731796,0.7201966,0.6802467,0.9379822,0.98829734,0.62351596,0.5764306,0.66497195,0.66045415,0.69753647,0.74003804,0.6802077,0.57183367,0.6138405,0.6875257,0.71096754,0.75963664,0.9784349,0.9122304,0.8364264,0.9697245,1.0202839,0.88324773,0.87713647,0.7461763,0.77941644,0.8847371,0.94356364,0.99428827,0.867182,0.8403679,0.72090673,0.8703753,0.86180806,0.73877525,0.6864127,0.69902885,0.8974327,1.0013033,1.0406009,1.0016536,0.99029243,0.8853979,0.75925624,0.9686272,0.9934416,0.97389114,0.9775702,1.0204647,0.8150352,0.87882495,0.7745576,0.82524633,0.7824736,0.81268644,0.77661705,0.7939327,0.8265349,0.88074166,0.78615355,0.7383758,0.6552136,0.7265351,0.79292595,0.7434472,0.7407836,0.836783,0.8842753,0.875146,0.7619211,0.92410874,0.8318955,0.94384825,0.943879,1.0292097,0.811764,0.7451714,0.7836689,0.7308948,0.89438224,0.7918042,0.7293154,0.7973459,0.97709286,0.9024436,0.81373286,0.93002474,1.24138,0.92850524,0.838726,0.8843633,0.7867621,0.79380596,0.998417,0.9758352,0.97588134,1.0275581,1.084515,0.75588787,1.0249895,1.0611279,1.0160896,0.9163903,0.9131631,0.9379743,1.0136393,0.9677495,0.9638201,0.93687433,0.98886925,0.97816634,0.98309034,1.1060379,1.1156006,0.9695616,0.94748414,0.95891464,1.0864053,0.9017488,1.008359,1.1455276,1.1171284,0.98451,1.0187759
+1.946958,2.1270325,2.0464945,1.714443,1.7190466,1.3139024,1.431845,1.4608396,1.373406,1.1650873,1.2170749,1.4568938,1.5263456,1.4523835,1.485035,1.412442,1.3436071,1.2378707,1.1874844,1.1847734,0.9872044,0.89764744,1.1070479,1.1333356,0.9574684,1.5314559,1.8870409,1.807413,1.5171363,1.3951776,1.1754951,1.4084657,1.6014035,1.5533736,1.507667,1.37468,1.2026374,1.2184353,1.2406912,1.1925658,1.1253468,0.89097846,1.1969608,1.7419014,1.9838402,1.8165584,1.518159,1.428778,1.2010059,1.15955,1.0598966,1.0382754,0.96770823,0.91223454,0.78388274,0.65526474,0.70617145,0.69142234,0.63563055,0.733764,0.8357852,0.8303942,0.6409873,0.73652345,0.7444248,0.9696175,1.4026128,1.3344194,1.2785544,1.0798074,0.8975712,0.61078286,0.71431696,0.65862393,0.67384934,0.55512416,0.75404716,0.7932521,0.6120048,0.52193916,0.41054004,0.5098318,0.5072794,0.51063293,0.5498835,0.46403933,0.33921015,0.47984475,0.6319796,0.49462065,0.55415326,0.6454932,0.8703083,0.6362789,0.60402215,0.4413838,0.37129378,0.3408278,0.8761394,1.3032664,1.266278,0.95051444,0.71474147,0.55139846,1.1041375,1.2425034,1.0100708,0.7810977,0.5815223,0.6541431,0.65700924,0.48920798,0.39464957,0.46599987,0.4330292,1.4250236,1.5984693,1.1825911,0.973245,0.9452188,1.0918629,1.3357127,1.3662472,1.1342576,0.9507129,0.76089114,0.59681606,0.675149,0.67479604,0.684919,0.6062337,0.4479108,0.5269432,0.69449687,1.0932604,1.458536,1.3491644,1.2028551,1.5157611,1.2941502,1.0693345,0.99573195,1.3820262,1.3823378,0.99641395,0.79433846,1.2185193,1.5397214,1.330729,1.058779,1.106701,0.8465353,0.72298265,0.87296283,0.8700827,0.8743446,0.78140557,0.7142782,0.6097936,0.5399018,0.9696313,1.1252177,0.96928763,1.4881918,1.4270301,1.1335227,0.9396137,1.0350459,0.89037037,0.9622619,1.3308358,1.2311374,1.0325843,0.91222465,0.7890191,0.705973,0.80226886,0.89027256,0.78771985,1.1458391,1.0176347,0.7972628,0.90432507,0.9469125,1.4040821,1.5143836,1.3278729,1.2374729,1.1313211,1.0552311,0.938871,0.9734755,1.0575547,0.97286296,0.8733984,0.778619,0.9955663,0.91424227,0.94810027,1.2159271,1.0738358,1.0681281,1.1840411,1.6223346,1.7500447,1.5957282,1.4653144,1.3468477,1.3899769,1.1034184,1.2499378,1.1843902,1.1176852,1.2704552,1.1902848,1.1426749,1.5286288,1.8374445,1.6723137,1.585977,1.5359874,1.450567,1.3723803,1.3977914,1.2915149,1.3431511,1.37369,1.3610249,1.299042,1.212292,1.2904598,1.1619484,1.2212924,1.1789103,1.1130856,1.2349824,1.1218334,1.0472789,1.1352825,1.1470747,1.2666936,1.262049,1.2586563,1.4336379,1.6150274,1.68579,1.5774503,1.4786422,1.5421478,1.6049731,1.5993822,1.5160838,1.3985475,1.1471007,0.9491044,1.1515764,1.0617316,0.85618615,0.6439906,0.5036525,0.52361727,0.77456474,0.49568242,0.38163802,0.5556595,0.670745,0.771351,0.8867414,0.9047724,0.7000856,1.1074407,1.0794764,1.0096858,1.0521556,0.97208405,1.1292524,1.051143,1.0069957,1.0603608,0.74678886,0.4860278,0.3578118,0.41680703,0.28920987,0.2929429,0.8632123,1.1179188,1.0327495,0.78862417,0.7894672,0.6905744,0.6774178,1.1176305,1.2086596,1.093889,1.2305351,1.2995566,1.1529781,1.228271,1.2127011,1.1702695,1.1472623,1.1076047,1.0841566,0.97801864,0.83550954,1.044222,1.0510806,0.83900285,0.6172435,0.694896,0.86242515,0.78088963,0.95925045,0.88004667,0.61895996,0.90480125,1.0168042,1.0434465,1.1225388,1.1557806,1.0679715,1.0166246,1.2165233,1.3391945,1.3403392,1.234124,1.215662,1.2770593,1.2680718,1.8357366,2.3290133,2.2285376,1.8974487,1.7926593,2.157337,1.852541,1.5876378,1.4430575,1.3652351,1.3344662,1.7601955,1.741888,1.5665361,1.309417,1.0156198,0.94384116,0.9892944,1.1524853,1.1948562,1.2326945,1.1808367,1.2001914,1.3334725,1.5146146,1.4742699,1.3062656,1.154997,1.2166848,1.2506111,1.1996568,1.3353469,1.5635873,1.6313484,1.8657063
+2.229919,2.7414718,2.597807,2.5050802,2.6676621,2.3503823,2.397133,2.799049,2.7040677,2.4157896,2.5829215,2.8678913,3.3683782,3.350088,3.181779,3.1479363,3.1489797,3.1377082,3.0738373,3.0992327,2.596535,2.3454938,2.9845896,3.0499663,2.8033824,2.328292,3.1017554,2.5345411,2.5560217,2.7067864,2.3312314,2.6810906,2.8434389,3.0099683,2.9939818,3.1337502,2.7106328,2.9795287,3.0212865,2.663096,2.4331002,2.3092816,2.6796231,2.7981582,3.0171971,3.0582285,2.8147302,3.1534648,3.095948,2.874871,2.3596044,2.8953385,2.882639,2.8110185,2.6485286,2.3450484,2.3304818,2.2898898,2.276501,2.3863163,2.474719,2.4375257,2.1346707,2.5321999,2.4831555,2.2539387,2.7296143,2.6715007,3.026673,2.920041,2.7335334,2.393764,2.7021403,2.8742514,2.5742178,2.3919442,2.1900377,2.7122746,2.729896,2.5678217,2.347649,2.48346,2.6611962,2.3230138,2.6731272,2.4886851,2.2814155,2.230922,2.5575821,2.56954,2.4431496,2.1947415,2.587182,2.3750267,2.234363,2.0616846,2.1582558,2.5101323,2.5764709,2.6491036,2.8138695,2.6813664,2.444901,2.3336184,2.289832,2.4666104,2.4506485,2.39147,2.123279,2.590363,2.574072,2.3085277,2.1739743,2.5277247,2.362625,2.1728044,2.4472804,2.2933736,2.1338065,2.0524864,2.0933557,2.2792068,2.238807,2.341497,2.252294,2.0184171,1.8750808,2.316577,2.2991197,2.1424627,1.9376242,1.696113,2.0316467,2.1297495,2.0774956,2.327351,2.3199925,2.0517056,2.3752832,2.280841,2.2052526,1.9919139,1.9996885,2.2141495,2.164003,1.9266338,1.7844467,2.1654978,2.0354095,1.8279016,1.996963,1.9040806,1.6536629,2.4075894,2.3315406,2.1840363,1.9630246,1.8166201,1.6489868,1.5641733,1.9087429,2.2108974,1.9320639,2.4500062,2.4866138,2.2035913,2.20702,2.4455247,2.1205149,1.7965789,2.259731,2.3776793,2.39042,2.2451286,2.1597307,2.0235846,2.307708,2.3552191,1.7098541,2.3767629,2.3026047,1.9439857,2.1664863,2.337554,2.3168507,2.590465,2.5160868,2.376262,2.3985012,2.331272,2.3307989,2.6176658,2.5178566,2.3541412,1.9561076,2.121212,2.6403403,2.2422519,1.8882425,1.8930876,1.9073834,2.108595,2.393588,2.8855696,2.8100963,2.7429335,2.6746578,2.8279061,2.7509384,2.43886,2.7784152,2.6202607,2.4412959,2.882527,2.5776665,2.5816526,2.5192454,3.0115023,2.7799008,2.843453,2.8247428,2.629313,2.6429377,2.8599522,2.8841326,2.95051,2.8640091,2.905639,2.7717888,2.6622534,2.6814237,2.5073714,2.4969366,3.0448637,2.8894906,2.823224,2.6826658,2.2200077,2.586533,2.4695911,2.727184,2.7493918,2.3210497,2.5264463,2.7949638,2.8159287,2.7677927,2.719814,2.6200252,2.556615,2.8260512,2.8661304,2.6985126,2.5953605,2.1883802,2.2943892,2.2544136,2.2213037,2.1944518,2.106347,1.8752825,2.4688878,2.4043112,2.29026,2.2353783,2.3601098,2.4078422,2.4094548,2.6594534,2.4503436,2.561864,2.698178,2.3619876,2.5318224,2.3079066,2.4106855,2.35064,2.251231,2.516373,2.2664855,2.1605277,2.063494,2.0915158,1.9481962,1.9173775,2.468623,3.0057855,3.0584888,2.9371336,2.9904907,2.7483592,2.3429215,2.5739856,2.8647358,2.5239463,2.602095,2.7604966,2.7745128,2.7046285,2.741037,2.6867595,2.8135357,2.783783,2.7171233,2.414463,2.1161513,2.252655,2.373652,2.2011018,2.1397913,1.955506,2.1535912,2.4770765,2.602318,2.6389785,2.2221599,2.270352,2.3019345,2.6197217,2.5884328,2.5868049,2.443489,2.2726912,2.564774,2.7545123,2.9971285,2.761673,2.6117058,2.6669312,2.670683,2.5955315,3.1948352,2.9467802,2.8070598,2.4860406,3.1404357,2.8851485,2.6771986,2.439916,2.2772133,2.4824243,3.08561,3.4859602,3.1162796,2.8421483,2.6465194,2.4795852,2.3684287,2.285664,2.3313406,2.2907467,2.2265377,2.5728202,2.5768602,2.8105342,3.0957448,2.6950498,2.4737983,2.5463073,2.5191307,2.489225,2.6842623,3.107052,2.541512,2.5539227
+0.72272134,0.9159081,0.8606564,0.69659674,1.0059128,0.8769408,0.8641062,0.9305836,0.92787755,0.88789606,0.69164205,0.949999,1.139931,1.0407779,0.9488068,0.87776184,0.78922474,0.68201977,0.59106976,0.5803177,0.3471455,0.25721857,0.26342574,0.5056468,0.36255205,0.1657829,0.1926953,0.29178363,0.34752077,0.37601063,0.5046279,0.5183319,0.53178835,0.619076,0.61955327,0.69041514,0.6204201,0.6697102,0.5402898,0.447334,0.5743047,0.5430063,0.60441315,0.7232256,0.88139904,0.9483707,0.7005379,0.62236816,0.7102758,0.7066909,0.67361474,0.7510113,0.7507799,0.7667835,0.75261515,0.58902824,0.4846604,0.40166497,0.3471624,0.30115223,0.29941377,0.22183102,0.0079818,0.06423008,0.10392123,0.20738769,0.4815613,0.6905608,0.64276993,0.55924827,0.31281888,0.13208684,0.1176168,0.16754618,-0.00048536807,-0.19743878,0.41358042,0.7267097,0.4573151,0.43521732,0.2205205,0.09347421,0.13155392,0.3087768,0.39718798,0.31205162,0.17532462,0.06381246,0.13400514,0.09462575,0.042566553,-0.15005413,-0.01956664,-0.033191554,-0.22248682,-0.023216285,-0.08725437,0.23716459,0.14916492,0.12221132,0.09336741,0.023562804,-0.17866915,-0.279023,-0.30119848,-0.07918791,-0.13970229,-0.18646288,-0.34190923,-0.2268835,-0.13876891,-0.24726236,-0.4316309,-0.18141237,-0.12141416,0.019134574,0.16616511,0.010420337,-0.049918555,0.2649936,0.15309374,0.53304577,0.33793008,0.33523396,0.33193845,0.14373866,0.075070046,0.062258683,0.40698263,0.17011529,-0.023755223,-0.16560847,-0.08178096,-0.03002622,-0.05686707,0.36806658,0.55482,0.5113444,0.68565345,0.65099883,0.6176292,0.49246562,0.35569397,0.47124124,0.27167478,0.13277134,-0.07115651,0.03317035,0.044233285,-0.16430187,0.0053004473,0.19124989,-0.12302499,-0.078295015,0.052141365,-0.07511122,-0.120045386,-0.20898217,-0.31940803,-0.33547014,-0.23771876,-0.14296132,0.29799232,0.40316474,0.44445872,0.20799375,0.07182092,0.023902223,-0.2073304,-0.28068316,-0.17140043,0.0071076155,0.0349437,-0.05651652,-0.17895493,-0.24645787,-0.22064295,-0.11073833,-0.437801,-0.17678115,-0.21327168,-0.24649063,0.8567411,0.63622826,0.5945591,0.6356629,0.68181777,0.5997695,0.5289604,0.29992932,0.5356103,0.7786157,0.7086123,0.61245,0.4100505,0.27962735,0.49752393,0.25080058,0.15535659,0.35270524,0.6039088,0.57077354,0.6072791,1.1466143,1.0229702,0.9369384,0.9849138,1.0678105,0.91554457,0.6243912,0.7813644,0.77571607,0.6982398,0.7842493,0.6831342,0.7018173,0.66488343,0.88672894,0.8647284,0.6704344,0.7201491,0.6145152,0.5386301,0.7862718,0.69915175,0.8698661,0.7811483,0.73031145,0.6378559,0.552868,0.6664388,0.5587135,0.666144,0.8244442,0.8449368,0.82279336,0.66177577,0.39398092,0.6532375,0.7214413,0.7955693,0.7366999,0.38834158,0.5727034,0.95260507,0.98138106,0.9216494,0.9287176,0.6630529,0.7577942,0.8916714,1.0318743,0.9895747,0.7781613,0.51724786,0.6497495,0.8074464,0.7145361,0.5425493,0.43614095,0.6201349,1.5229809,1.3644218,0.9852178,0.8137703,0.8695796,0.87211657,0.69093573,0.8788962,0.54237306,0.6525411,1.0270662,0.7358624,0.7337335,0.519048,0.66077995,0.50236875,0.7353944,0.99373734,0.9722803,0.64557827,0.52860564,0.49165154,0.41498578,0.3304668,0.7022285,0.9417928,0.98853266,1.0079157,1.0598245,1.0315773,0.6094089,0.7793945,1.0132165,0.82610774,0.7912064,0.86232364,1.0200433,1.0203165,0.93763494,1.1386437,1.1656667,1.1466274,1.1395845,0.9718616,0.7630806,0.7937232,0.92766464,0.8416035,0.5911907,0.5992147,0.8476306,0.7309139,0.78767985,1.2049319,0.78174186,0.75808907,0.7112285,1.092311,1.2020191,1.1192989,0.99015903,0.8362433,0.94871485,0.9672686,1.0502,0.8483223,0.8849517,0.85283685,0.84009665,0.90046644,1.1266637,0.9119062,0.623685,1.1929843,1.2626872,1.333082,1.2683177,1.0710146,0.77379614,0.74252236,1.0493824,1.4434346,1.2096508,1.098525,0.9718833,0.8020054,0.95365286,0.9061791,0.87134176,0.650797,0.64716995,0.71188974,0.81606084,0.8847182,1.3051176,0.96715015,0.63561726,0.6801277,0.6489854,0.7951714,0.77138424,0.9522102,0.71892935,0.9447789
+1.6932753,2.779253,2.7472258,2.4176378,2.7226062,2.2368538,2.4064748,2.4973683,2.3700612,1.8828591,1.9359901,2.2053168,2.5882058,2.621076,2.7644737,2.847282,2.9249403,2.9091022,2.8712783,2.7357426,2.5766118,2.366354,2.4356704,2.5007596,2.612079,2.615065,2.7877216,2.4584258,2.530835,2.4088535,2.774249,2.6386166,2.6156096,2.6021304,3.025,2.8047566,2.6179194,2.821487,2.6583285,2.5498931,2.5132992,2.6501727,2.6836202,2.8690295,2.853242,2.870018,2.541553,2.509596,2.4898381,2.629622,2.8690448,2.850836,2.7045412,2.793755,2.8908138,2.6892278,2.6672828,2.7592962,2.7018633,2.8002949,2.923606,2.8028383,2.535026,2.4727757,2.3704967,2.6430516,2.759666,2.5851207,2.9958773,2.9753652,2.7284198,2.4609687,2.3534274,2.7472148,2.3458488,1.9002206,2.440836,2.6499598,2.384882,2.2849574,2.1189647,2.1104767,2.256528,3.2362134,2.9486902,2.7437582,2.541381,2.500325,2.6390939,2.7597134,2.6251106,2.3206303,2.3947308,2.074156,2.2157993,2.8944097,2.4606662,2.2979946,2.2451868,2.288978,2.5012054,2.3812914,2.0430503,1.9205434,1.9073036,2.022842,2.050993,2.114437,1.9012194,2.132764,2.3053155,2.1123462,1.8315563,1.8977742,1.8909225,1.7758689,1.9129128,1.863898,2.2018733,2.7256036,2.1348007,2.0088096,2.0437174,2.071589,1.868589,1.7454212,1.7765167,2.103201,2.320205,2.0424156,1.7829033,1.6425622,1.6269554,1.600898,1.6093917,1.6468489,1.8574405,1.7908593,2.345766,2.5838203,2.2099795,1.9982255,2.1031024,2.5024257,2.1891751,1.9626527,1.8200943,2.0343833,1.9712269,1.8385388,2.0971465,2.2335687,1.9354994,1.868154,2.1946754,2.0711882,1.736995,1.6005492,1.5261834,1.5347307,1.4866883,1.4400887,1.4169339,1.4821985,1.5936314,1.3553247,1.4077246,1.2907372,1.2261815,1.0860722,1.0999776,1.5646229,1.8492544,1.801935,1.5954432,1.495909,1.5161631,1.5210462,1.4007282,1.7287891,1.6442974,1.5287116,2.9935799,2.4527836,2.4257114,2.32883,2.3912911,2.3554258,2.2560964,1.944325,2.824203,2.979086,2.846674,2.5113564,2.460866,2.3780632,2.3818922,2.2970715,2.1867692,2.095309,1.9881958,1.9258595,1.8196431,2.8543317,3.302654,2.783948,2.7730074,2.7929235,2.4843707,2.2865262,2.5049295,2.6862059,2.5184703,2.7190762,2.47753,2.554754,2.6280475,2.8205028,2.7066727,2.7227664,2.693338,2.6544814,2.8344631,2.5900495,2.6586802,2.8023286,2.633612,2.5597892,2.329751,2.505645,2.5231318,2.6484978,2.6337056,2.853102,2.5963564,2.3267179,2.1084094,1.7862803,1.9399018,2.2349472,2.2190251,2.2697613,1.9023652,2.3987658,2.6449203,2.614802,2.5180483,2.1390176,1.9992816,2.2702055,2.2072282,2.2782795,2.2142653,1.8176502,1.6051617,1.9058938,1.7699082,1.7166528,1.737388,1.364873,1.6500261,2.077461,2.1155503,1.8171368,1.8456442,1.9707937,1.8248209,1.8472086,1.7589417,1.9797144,2.3996308,2.4632466,2.315307,2.3165092,2.0605247,1.8902228,1.7295704,2.052152,2.7125576,2.315157,1.7566333,1.4758635,1.5354763,1.3170315,1.2676342,1.57723,1.6619952,2.0250351,2.45402,2.1647787,1.9131234,2.0209384,2.354873,2.3943334,2.1870637,2.3745484,2.3739,2.5310946,2.364147,2.2269938,2.4972491,2.466814,2.3537815,2.1736274,2.0215178,2.0514586,1.9982998,1.999661,2.057671,1.7302781,1.8284471,1.7746704,1.9069161,2.0331903,2.4611874,1.8389907,2.0783403,2.064578,2.5862608,2.2500484,2.4141312,2.4418359,2.24634,2.5115683,2.4590428,2.5550594,2.6899767,2.6621127,2.6528397,2.7215743,2.7458282,2.8614354,2.339551,2.1578333,2.377246,2.9143195,2.6983342,2.3427196,2.0853004,1.9709558,1.7934492,2.508534,3.0148501,2.7704973,2.5967538,2.0810018,1.6752908,1.7135751,1.8901906,1.6516638,1.4819658,1.8932288,1.7742243,1.849753,1.9724066,2.707557,2.4772935,2.31007,2.5027199,2.344258,2.579185,2.6155767,2.6511698,2.4052124,2.5769386
+1.1719375,1.978799,2.4930162,2.3127756,2.7312565,2.0900881,1.7483671,2.0436077,2.107459,1.8703811,1.5859202,1.930515,2.3511822,2.204917,2.0858545,1.9750881,1.8340309,1.737243,1.64204,1.6536095,1.4002352,1.6699387,1.8259606,2.0355825,1.8466177,1.7797153,1.9019692,1.6603746,2.0006487,1.8445449,2.5751264,2.646208,2.590593,2.5288842,3.0159822,2.6481755,2.5945544,2.4409335,2.3642368,2.2744293,2.7953854,2.6781607,2.4535997,2.428676,2.87514,2.566659,2.1660898,1.9977329,1.9181687,1.9869752,2.7875347,2.4316044,2.3804593,2.414163,2.2201848,1.9190183,1.7540514,1.6824436,1.4436263,1.683215,1.5817282,1.4775474,1.4990551,1.4333932,1.537189,1.7574112,1.8646818,1.70511,1.8143803,1.6467506,1.2169211,0.9732712,0.8433268,1.1475654,0.94713736,1.6439166,1.621547,1.9117477,2.1387334,1.7920312,1.4675148,1.2610916,1.2648369,2.0423493,2.8194757,2.282121,1.9651572,2.0470512,2.179864,1.9697068,1.8436837,1.5696034,1.7770182,1.6281815,2.2015324,2.5490828,2.0653465,1.8214504,2.0519793,1.7776995,1.7808261,1.5206677,1.7778227,2.019197,1.7750511,1.5953778,1.5270972,1.448492,1.1708202,1.1129738,1.1545217,1.0818969,0.8423363,0.87182564,0.7832382,0.7819656,1.0233513,1.4484557,1.8912466,2.3630302,1.9920083,1.860786,1.920094,1.8398614,1.996682,2.6385858,2.3292983,1.9814764,1.8745286,1.9600265,1.9252383,1.9481308,1.697866,1.552168,1.4326975,1.4832134,1.7335305,1.4753069,1.4745579,1.4812274,1.4292731,1.2123082,1.4668796,1.7140398,1.4724671,1.1929601,1.0475123,0.9745978,0.90542424,0.9901254,0.8945799,0.748378,0.7004827,1.0751598,1.4769182,1.3066365,0.984004,0.8947612,0.7676345,0.6951929,0.70741427,0.66030717,0.5763935,0.62976974,0.64705867,0.45375356,0.49453285,0.5261148,0.41394758,0.37748078,0.33250904,0.7189822,1.1656411,1.036507,0.84399223,0.7177202,0.61744285,0.6451856,0.93666065,1.8997991,1.8894516,2.2408142,2.6309853,2.1255965,1.910521,1.8641937,1.7616701,1.8095329,1.7017295,2.1574597,2.6225348,2.5764651,2.3635256,2.14718,2.0436041,1.9723712,1.9357817,1.7924482,1.7176983,1.590548,1.5262434,1.4476837,1.3730237,1.467458,1.9939121,1.7065277,1.5052485,1.5519989,1.2706966,1.1564225,1.127204,1.1480036,1.029747,1.0077724,0.90285254,0.8592018,0.77762735,0.956637,1.1161985,1.0547475,0.94533837,0.83186066,0.764478,1.0850337,1.0641872,1.1275843,1.1103528,1.0067389,0.90665495,0.78196394,0.8432914,0.83184177,0.99000406,1.5654442,1.3770014,1.1490277,0.9560716,0.7895807,0.7934655,1.2160225,1.3234229,1.0499676,1.0776672,1.82935,2.089875,2.3461075,2.1905928,1.8217936,1.7189562,2.3626513,2.103462,2.3536701,2.3111856,1.7644022,1.4378791,1.460192,1.4652412,1.4966626,2.044275,1.3406844,1.1577063,1.1607506,1.6271927,1.4674103,1.5012007,1.7123494,1.7316239,1.6968237,1.6291698,1.7622337,1.9104264,2.4288776,2.3618371,2.5468667,1.9944901,1.7022249,1.71683,2.034695,2.0031207,2.3455732,1.8852968,1.8725426,1.6756808,1.2739651,1.0635973,1.2179593,1.3296188,1.3701903,1.5148256,1.5652094,1.7523063,1.8427331,1.9847374,2.2539136,2.1620808,2.1380582,2.2429035,2.8862264,2.6064272,2.504444,2.4788904,2.7617657,2.5311158,2.3274467,2.2055345,2.0066545,2.0759432,2.2339988,2.387584,1.8604939,1.7080861,1.8307076,1.7814858,2.0177686,2.6334352,2.0477157,1.8439567,2.0223093,2.7643638,2.1201234,2.0379934,2.3589373,2.0137866,2.0566502,2.1252759,2.1746876,2.1291356,1.99805,1.7798505,1.987006,2.0601814,2.6341252,1.9327495,1.6880538,2.017431,2.6569366,2.6880808,2.2346952,1.7732838,1.6007129,1.3153238,1.7041109,2.3739257,2.4063432,2.3881114,1.7256387,1.2784567,1.4720767,1.4856138,1.1783941,0.8966671,1.4225593,2.0600908,1.9351628,1.8233745,2.4787984,2.0235965,1.6204067,1.735755,1.762028,1.7126396,1.9253179,1.9280354,1.8662674,2.5106483
+0.9436681,0.9822067,1.1114041,0.86904395,0.88328713,0.85031164,1.068578,1.0993903,1.0635579,0.9081434,0.67798907,0.7482611,0.96655023,0.8854085,0.8165132,0.7195077,0.60420835,0.45475975,0.3542719,0.34708267,0.22575912,0.49450368,0.7132369,0.52811754,0.30868334,0.19764668,0.12252588,0.7496121,0.6333168,0.44678468,1.2648163,1.0791855,1.6133943,1.1748043,1.5760376,1.6650162,1.236213,0.8791349,0.7286035,0.56105185,0.58063513,1.1108735,1.4590299,0.8925941,0.79880196,0.5945538,0.9540197,0.92194855,0.79541934,0.8422421,1.8000305,1.1176438,0.9687425,0.76835454,0.5265213,0.37090418,0.24433213,0.26171425,0.10713171,0.330967,0.2509892,0.1912809,0.5008578,0.2873443,0.18775412,0.97983587,1.208395,0.86099744,0.5822909,0.44814354,0.28241804,0.107236885,0.034642033,0.08135188,0.037812807,-0.035603203,0.3079598,0.14168581,0.2049433,0.10722632,-0.026602082,-0.14477357,-0.11819523,-0.13484213,0.68678737,0.40411088,0.28323725,0.19160292,0.16131407,0.55613333,0.23843434,0.8354136,0.528603,1.0182225,1.4397647,0.9245461,0.7491729,0.95657647,0.6029463,1.133992,0.5876238,0.48850727,0.3586439,0.31980067,0.19185221,0.11933866,0.22362784,0.4343949,0.17844206,0.113569655,0.120694615,0.10219527,-0.0050963685,0.5803154,0.29915053,0.119018815,0.08027154,0.11094188,0.6613754,0.30750048,0.16698736,0.16314524,1.7847326,1.5569487,0.95041335,1.0417552,1.225815,1.4482931,1.1812861,1.2780422,1.4142873,1.3736918,1.1450559,0.9248652,0.81924,0.7490486,0.6559377,0.530197,0.6709393,0.72683775,0.52588314,0.4965337,0.92084324,0.82119906,0.64125085,0.49937832,0.36717203,0.27941123,0.28903183,0.5184379,0.39743066,0.30985263,0.20106769,0.63474214,0.62200594,0.6087827,0.4796602,0.3858942,0.23673913,0.12964147,0.07506948,0.025735937,-0.017983042,0.006414108,0.059782468,-0.040325694,-0.010920115,0.020382337,0.049226187,0.058045052,-0.032600947,0.119181134,0.32465914,0.19973281,0.4032346,0.3776974,0.27537894,0.17812335,0.26854026,1.4540398,1.1129041,1.1502575,1.0661055,1.026271,0.97282887,0.78706026,0.7430924,0.6475631,0.5264381,0.8394331,2.3073096,1.8850647,1.3313457,1.2382886,1.14708,1.0020752,0.9893272,0.8890963,0.8502201,0.72729266,0.6388059,0.56196046,0.49153435,0.47408321,0.6054898,0.46339485,0.2553606,0.27910724,0.20286411,0.02331724,0.1079256,0.11479064,0.043819673,0.08053749,0.03213086,0.009708725,-0.021687917,0.10963664,0.14927027,0.078107856,0.065101184,0.029397763,-0.11555851,0.061350994,-0.009084441,0.013075151,0.099292494,-0.14103094,0.003139548,-0.024561979,-0.04263576,-0.06366607,-0.019757785,0.20778912,0.18737899,0.109455414,-0.025871925,-0.1372405,-0.082675435,0.12066453,0.24803445,0.053306945,0.33945775,0.99214196,1.2801678,1.3529567,1.1115674,1.1074957,1.4318374,1.5876234,1.3307408,1.2835232,1.385953,1.0367464,0.8320092,0.8039464,1.076735,1.0662192,1.3344758,0.7905272,0.72129226,0.87121856,1.3727088,1.212579,1.1650736,1.1065356,1.2275916,0.9069046,0.9846715,0.9963537,0.98427355,1.2735918,1.2800361,1.4394863,1.1544417,0.8597972,1.5531416,1.7394944,1.3826437,1.5830456,1.2880481,1.2847351,0.97496986,0.842286,0.81024456,1.0892966,1.1499658,1.341198,1.489604,1.2915314,1.3018205,1.2454039,1.3093188,1.531481,1.5756984,1.6438187,1.6596675,2.071687,1.5851469,1.7506083,1.658479,1.8795648,1.7038767,1.676705,1.5262203,1.5601099,1.3618702,1.3423476,1.4399911,1.2308316,1.0773718,1.1731285,1.1710224,1.231485,1.667936,1.4942303,1.2267404,1.2358861,1.5864365,1.2427984,1.2911408,1.5904632,1.3455161,1.2571149,1.2371752,1.2100973,1.1185768,0.9758299,1.0032266,1.0075548,1.0805001,1.2830791,0.90632784,0.7631265,1.0415018,1.935144,1.6047099,1.276126,1.1007802,1.1087735,1.0647973,1.2246368,1.2141101,1.0515041,1.1077712,0.8806984,0.7726842,1.228621,1.1571314,0.85206264,0.8855567,1.1124847,1.2555251,1.1467822,0.9489021,1.0119157,0.903386,0.7240107,0.6831845,0.7357377,0.8817904,1.1608477,1.0663334,0.89833754,1.6057386
+1.9108589,1.9010506,1.8713814,1.3291703,1.1487845,0.92561877,0.6200118,0.82488436,0.77114224,0.5072507,0.111537986,0.32815734,0.7924104,0.5623886,0.4387261,0.2819473,0.11921014,-0.02443663,-0.071767665,-0.115696035,-0.18852937,0.31301346,1.1734573,0.748716,0.45171085,0.29388982,0.1858961,0.09412216,0.12088934,0.0066556707,0.8987174,1.5401676,1.5287964,1.3891461,1.1512969,1.1893015,0.7926611,0.40004462,0.22431114,0.16577223,0.1085637,0.13482355,1.306859,0.9783931,0.62891996,0.3411415,0.26761976,0.9891434,1.1340208,1.4106742,1.3790617,1.2066978,1.0894598,0.6688769,0.32967392,0.1874592,0.08874233,0.039883487,0.8578894,1.7735887,1.0761559,0.9259491,0.95159537,0.91683847,0.73571545,1.2561474,1.6682011,1.6546965,1.1260641,0.7691916,0.45372206,0.20669359,0.13570197,0.1263348,0.46315855,0.78275687,0.7221759,0.499615,0.49715465,0.25058708,0.087312154,-0.054135494,-0.095786504,-0.15399545,-0.12418335,-0.0038321689,0.054506786,-0.08887901,0.33568388,1.0911806,0.51127386,0.4307538,0.34469768,0.33961985,0.6128691,0.78818583,0.6505425,0.67744875,0.44584242,0.6378479,0.62255394,0.6154603,0.90191334,0.45294088,0.3008681,0.2798937,1.0609182,1.3505135,1.2884305,1.0002402,1.1407615,0.84276426,0.551532,0.38895336,0.32293847,0.18486267,0.080871694,0.024319284,0.033436403,0.0191935,0.08195768,0.44824487,0.8418604,1.2840725,1.1334543,1.0823398,0.9786303,1.2459952,1.1380398,1.0061826,1.1751308,1.2577683,1.1739526,0.9447085,0.90948665,0.6710237,0.46097738,0.31223977,0.20307821,0.17580366,0.6750423,0.7577315,0.6427828,0.5109507,0.32277712,0.1814223,0.085108995,0.112198725,0.12071874,0.052989207,0.110970415,0.03329075,-0.08381762,0.14896616,2.0932407,2.434173,1.7599957,1.3350215,0.9632366,0.6871433,0.4908011,0.38363814,0.28118244,0.17652673,0.13717356,0.6901066,0.71697605,0.89549124,0.58569944,0.4525622,0.3012359,0.2866721,0.49395972,0.93406487,1.3203158,1.0181681,0.91478246,0.7352564,0.6352432,0.6384066,0.48804316,1.2330809,1.287632,1.0583321,0.86578935,0.6453836,0.46037716,0.35552168,0.2787819,0.6158309,2.3168373,2.2564564,1.9917674,1.6728407,1.4122436,1.1800007,0.9900514,0.8710808,0.73506063,0.60944045,0.5626071,0.5389872,0.49968514,0.46404135,0.6716106,0.45274773,0.21719882,0.22575837,0.08909845,-0.0059254095,0.032001622,0.083980456,0.06101851,0.04232344,0.04107476,0.019808866,0.025210649,0.03368172,0.078132816,-0.045543544,-0.05886229,-0.0958237,-0.2739247,-0.10413993,-0.12723574,-0.13459557,0.24911568,0.82961524,0.7274851,0.66667783,0.5552124,0.4512658,0.42083254,0.6552531,0.49439675,0.36314237,0.15401432,0.0013128147,0.09423143,0.2019288,0.3727138,0.12407845,0.24400365,1.0483631,1.2107406,1.4392989,1.1425035,0.8712052,1.3067784,1.547807,1.4783483,1.2678592,1.4877174,1.3129158,1.1116068,0.7431462,1.3444,1.5814464,1.588753,1.5176393,1.010998,0.96933734,1.9949524,1.9506477,1.7367315,1.4823002,1.4628215,1.0818645,1.0995922,1.1629014,1.1145993,1.2652704,1.4651489,1.7396891,1.3848262,0.9855397,1.7212212,1.9635031,1.8895996,1.7496061,1.4691874,2.001928,1.7373257,1.5277417,1.3638889,1.1227925,1.1623226,1.1635594,1.2244605,1.1730047,1.217649,1.1687953,1.2275952,1.2560343,1.0730951,1.4121485,1.9667587,2.1059728,2.025914,1.7853315,1.5708493,1.7003416,1.5379734,1.3881474,1.3522062,1.1767925,1.0885704,1.1272881,1.2068422,1.494304,1.1869054,1.2153926,1.072377,1.3641489,1.9223254,1.8168395,1.4789658,1.2992134,1.3994328,1.225451,1.6144667,2.0132418,1.684197,1.4413378,1.3847216,1.2745415,1.0978692,0.94780445,0.85355574,0.7766384,0.72101295,0.90117306,0.5186862,0.3418215,0.33259374,0.98569334,1.4690268,1.064008,0.69874954,0.55093163,0.5350791,0.534651,0.717531,0.46974736,0.7826411,0.67923373,1.1945617,1.5216901,1.6065639,1.0779676,0.9028566,0.8020061,1.2135552,0.95397216,0.76021564,0.91924226,1.2935967,0.9096278,0.8231474,0.7377299,0.63587976,0.6737987,0.6982213,0.5698362,1.2606711
+3.548364,3.4198802,3.4597032,3.466338,3.4514291,3.4430737,3.4881423,3.4723253,3.4728107,3.4416633,3.4519825,3.4372225,3.4419832,3.4525905,3.4458866,3.4421642,3.4548063,3.4593139,3.466332,3.4621947,3.442466,3.4605694,3.4682636,3.4660048,3.4584122,3.4547567,3.4596934,3.426437,3.4506526,3.450858,3.4948,3.4593363,3.4479127,3.4540043,3.4691775,3.4571693,3.464074,3.4644916,3.4682112,3.4601178,3.447159,3.4542227,3.441154,3.445962,3.4644833,3.4625149,3.4801114,3.4874663,3.4512641,3.4453878,3.4854112,3.4826941,3.4727192,3.4700735,3.4543796,3.465831,3.4597452,3.4528055,3.5793471,3.4763627,3.5017843,3.491234,3.4704251,3.4470587,3.4524307,3.4898324,3.508511,3.5177398,3.5079765,3.4902463,3.465537,3.4527574,3.4595807,3.455688,3.4310637,3.419741,3.4529474,3.5077748,3.496601,3.4824035,3.4744415,3.4665742,3.4607432,3.4564214,3.4312243,3.5096426,3.4862409,3.478041,3.4916985,3.483162,3.4523172,3.4792972,3.473547,3.4644303,3.4371605,3.464837,3.489079,3.4775043,3.4805546,3.4990957,3.4885712,3.460359,3.4746442,3.456472,3.4507098,3.4889038,3.4786692,3.4844818,3.4939551,3.4516156,3.4609427,3.4576826,3.4827676,3.4764938,3.438508,3.4566882,3.4534073,3.457522,3.4659185,3.4669194,3.4697924,3.5011,3.467438,3.4758992,3.4717562,3.472074,3.5096388,3.4717286,3.4845815,3.458818,3.4417005,3.4830303,3.4847424,3.4493773,3.463258,3.456339,3.4500732,3.4321995,3.447465,3.469767,3.5138078,3.483591,3.4623814,3.4753332,3.4459555,3.4506326,3.4670992,3.4975169,3.4805555,3.4410942,3.4583373,3.4543872,3.4329617,3.4411085,3.4746814,3.494487,3.4911613,3.4843054,3.480295,3.4685931,3.465475,3.4673212,3.4624116,3.4359446,3.467082,3.4861677,3.484353,3.4817522,3.4846315,3.4650712,3.4432845,3.494138,3.467072,3.4521124,3.4468615,3.4893637,3.47955,3.4724996,3.462673,3.4638143,3.4625819,3.4494572,3.4362974,3.4661064,3.46514,3.464055,3.4549646,3.4550796,3.4514,3.483443,3.7411761,3.595662,3.563162,3.5484993,3.5413253,3.5388584,3.5368643,3.5285745,3.528644,3.5250711,3.5243695,3.5256402,3.5228045,3.5221689,3.5402298,3.5349808,3.5366971,3.5333726,3.523676,3.5227377,3.5208964,3.522344,3.5215807,3.5214891,3.5134296,3.5154085,3.514852,3.5151,3.5217285,3.519814,3.5177383,3.510619,3.521659,3.5171707,3.5140514,3.5274293,3.4900696,3.4707854,3.4723613,3.472648,3.4757836,3.4732351,3.4626782,3.4608362,3.4468427,3.4437253,3.4606123,3.4638457,3.4651875,3.462625,3.446844,3.4560099,3.4118214,3.4438848,3.477088,3.472753,3.469039,3.4840207,3.4771714,3.5153916,3.4737124,3.4870777,3.4513779,3.4324188,3.487839,3.4840384,3.4834127,3.4952068,3.5053678,3.4330883,3.5067406,3.474882,3.4583266,3.4773726,3.4579427,3.4808917,3.4735153,3.4820142,3.4712038,3.4598155,3.4466023,3.4613485,3.442712,3.4499562,3.436374,3.4506757,3.4374971,3.4768307,3.506498,3.4997623,3.467266,3.5245214,3.4266868,3.4585426,3.4828072,3.5046153,3.4861789,3.482006,3.4775205,3.4726872,3.4658084,3.464874,3.4643292,3.4678388,3.4552798,3.481943,3.5366595,3.4900973,3.4871063,3.4765017,3.4677105,3.4632065,3.4564135,3.4545422,3.459868,3.4579215,3.4650135,3.465103,3.4591289,3.458142,3.4568655,3.4525104,3.4566422,3.5025668,3.492114,3.4538798,3.4858036,3.4733543,3.4734597,3.4689062,3.4584935,3.4742525,3.4715714,3.4712782,3.4747615,3.469908,3.4589634,3.457035,3.45151,3.451561,3.4504523,3.4603696,3.4560797,3.449361,3.4422996,3.4425373,3.4546537,3.4252582,3.4420066,3.454083,3.4493856,3.4536676,3.4677625,3.4540896,3.4553485,3.4426033,3.4665349,3.5172248,3.4660807,3.4457107,3.462656,3.4715476,3.4611895,3.4631648,3.4625835,3.4925268,3.4659867,3.4686348,3.4624147,3.4578936,3.4615293,3.4450731,3.4654117,3.4556832,3.4599895
+2.4827337,2.4946222,2.1458535,1.7665794,1.4169153,1.1124611,1.640717,1.7686607,1.3708873,0.9746789,1.8585302,2.331708,2.0412471,2.0626478,2.270502,2.7336323,3.1400511,3.3019328,3.302239,3.1820064,2.8299718,2.6262445,3.1729841,3.1129372,3.0143142,2.7198873,3.0974555,2.7869968,2.3705378,2.629056,2.518269,2.8427377,2.8233097,2.8898983,3.135921,3.184973,2.80099,3.0164795,3.1541252,2.7388067,2.6524043,2.7809613,2.9183502,2.7901464,2.9131541,2.872005,2.6345592,3.0934153,3.1106334,3.1188397,2.6466303,3.1229196,2.937788,3.1317358,3.150588,3.0141265,3.0534458,3.147304,3.1065302,3.2013454,3.3829913,3.3460479,2.8524923,3.1394544,3.0357738,2.8834662,3.0393717,3.1077402,3.2586975,3.2432408,3.199739,2.9116366,3.2904842,3.3276505,3.2467122,2.988646,2.8794744,3.293535,3.3205724,3.1461372,2.894492,2.9730535,3.1386333,2.8237846,3.1686287,3.033668,2.8297098,2.6360044,2.9448357,3.053542,2.9835663,2.6116986,3.068192,2.9128108,2.722136,2.4503913,2.6174269,2.663637,2.7408943,2.9562292,3.119409,3.0153415,2.8041308,2.696907,2.54862,2.7687235,2.8427615,2.8811557,2.780757,3.225965,3.10924,2.9053795,2.70355,3.013746,2.9886684,2.7759876,3.175204,3.0277097,2.9018238,2.8716583,2.8550348,2.9150677,2.8801055,3.0944316,2.9646564,2.8065608,2.6088805,2.9954407,3.2094574,2.9526544,2.7058392,3.2271683,3.2582088,3.0503573,2.9039066,3.1203542,3.0511637,2.7830946,3.0301502,3.059047,3.1385021,2.870166,3.0325484,3.2811222,3.088667,2.9654994,2.755033,3.008308,3.0645404,2.720459,3.1378589,3.0951474,2.714147,3.1679816,3.2913218,3.1743689,2.9867454,2.8576097,2.80799,2.6718564,2.7460504,2.8856783,2.6567085,2.9148867,3.026167,2.8207688,2.8227248,3.095635,2.7384527,2.291008,2.7239025,2.9573274,3.0102754,2.9955783,2.8912244,2.793104,3.0706406,3.037043,2.3845186,2.732327,2.8041666,2.5440125,2.7745945,2.7678597,2.7430115,2.9078379,3.033176,2.9511247,2.9107535,2.8399396,2.6453109,3.2521324,3.2398448,2.881247,2.6382203,2.6066303,2.9873636,2.761183,2.4548714,2.4779701,2.6795855,2.8401458,3.0242398,3.676116,3.3410916,3.1186752,3.1170797,3.1812952,2.9793124,3.1337361,3.0545926,2.8871853,3.0118475,3.1333733,2.850044,2.939387,3.0517912,3.3451662,3.132928,3.2099447,3.1937027,3.1453629,3.149671,3.0359797,3.1810913,2.9914856,2.8702874,2.7926478,2.8123598,2.610848,2.6830707,2.8010092,2.784847,3.0351992,2.8986201,2.7062836,2.246943,2.1153512,2.374654,2.3828037,2.4380035,2.4136581,2.121954,2.2479668,2.7616901,2.714148,2.7296567,2.561956,2.4461582,2.380652,2.4070644,2.3465269,2.0624504,1.6925571,1.2995118,1.656491,1.3471844,1.2117314,1.0394068,0.76640004,0.64722043,1.5067282,1.0675589,0.8964795,0.8339075,0.9607473,0.8689363,1.203314,1.020032,0.8962567,1.6699902,1.2822876,0.95583904,1.011826,0.72704756,0.8123243,0.7362664,1.1538045,1.3216476,0.7005732,0.56832147,0.5780943,0.6389076,0.6165086,0.4802309,1.0234584,2.6920087,1.9580442,1.322237,1.227115,1.1006409,1.5833672,1.7501384,1.8003764,1.6222184,1.8030605,2.0216582,2.1379037,2.3604665,2.0551157,2.1478763,2.1571167,1.843899,1.6109664,1.2071934,1.0153344,1.2858665,0.9236872,0.7902372,0.7018473,0.5745245,0.6721779,1.5034256,1.9531138,1.3001099,0.74899805,0.8889145,1.4120882,1.3218352,0.8513175,1.121211,1.0013839,0.68085206,1.3446865,1.9251618,1.8675386,1.6119928,1.7723153,2.108694,2.4287868,2.5601182,2.7792768,2.2808905,2.255671,2.0500066,2.7491727,2.1441245,1.5760168,1.2363265,1.368748,1.9126226,2.4421902,2.696422,2.0966728,1.4267738,1.0200993,0.8287281,0.7997738,0.8492573,0.8814584,0.817613,0.8226773,1.1799688,1.2529706,1.7225066,1.2484422,0.749892,1.2024943,1.7967628,1.9788321,1.953712,2.3594759,2.8589425,2.2724247,2.71846
+1.2760074,1.6546962,1.5317359,1.1153462,1.6227841,1.2093382,0.8442376,1.0966616,1.1275272,1.1065365,0.75606453,0.91129375,1.4567926,1.3887298,1.3845372,1.4260888,1.4452165,1.4849145,1.4015867,1.4514824,0.95261854,0.7388421,0.9163462,1.2878685,1.1011574,0.7059394,0.8148315,0.6756668,0.76279914,0.91896474,0.9031658,0.9208584,1.1463754,1.0252124,1.0856371,1.156865,0.96282893,1.2313548,1.3524508,1.1295786,0.85411483,0.95359075,0.8886708,1.1144856,1.3847215,1.4746912,1.3041537,1.162407,1.2397323,1.3748436,0.9701572,1.1998825,1.2213448,1.3649839,1.325655,1.0068911,1.0070903,1.029726,0.9562342,1.0850496,1.2069951,1.2332759,0.7614075,0.94465405,0.98826313,1.0448577,1.2727536,1.3697069,1.5640547,1.5368098,1.3605683,0.92660075,1.2444181,1.4248312,1.1148398,0.77165735,0.9007709,1.3356609,1.2383151,1.0833267,0.90411776,0.85296893,1.0572644,0.9205463,1.0887866,0.92345273,0.7628694,0.59776324,0.6616124,0.74482083,0.7203616,0.3417272,0.5978846,0.36602902,0.19766688,0.3170863,0.33872148,0.26419103,0.3941443,0.41901636,0.53959197,0.5126426,0.17738238,0.028499104,0.2266624,0.33904597,0.26820284,0.33909696,0.18764734,0.38479328,0.47592196,0.2475045,0.05151216,0.25701594,0.33253697,0.13510409,0.38131875,0.31276622,0.2558428,0.8293483,0.8990375,1.2092218,1.0517025,1.0036985,0.73433757,0.5699935,0.4287016,0.56244653,0.84823513,0.46954095,0.28680396,0.21975634,0.3350799,0.65452015,0.7052872,1.075593,1.1909144,0.8866322,1.1559827,1.2633735,1.0578213,0.766033,0.7849901,1.2919023,0.7859141,0.6117787,0.44662806,0.5810043,0.5644533,0.29315037,0.98118585,0.89663875,0.57614136,0.81878185,0.8522856,0.59726167,0.47757798,0.3373815,0.37727854,0.6258161,0.7898004,0.6528077,0.48330766,0.65100425,0.6013168,0.2406581,0.32896656,0.2164284,0.08967429,-0.054682173,0.1602036,0.73105365,0.8539516,0.6948582,0.4811207,0.39319444,0.46703076,0.55253845,0.14800459,0.40743804,0.34781143,0.53856844,1.1091875,0.9217007,1.0220702,1.0265223,0.84616023,0.8348956,0.75139755,0.5488212,0.7768235,1.5556633,1.4669337,1.21577,0.8587055,0.86665523,1.2230487,0.8953581,0.6389279,0.7102504,0.62749445,0.6930382,0.5330186,0.8839098,1.897577,1.6264356,1.4977405,1.7094169,1.4911234,0.8245227,1.2527918,1.1497275,1.0744572,1.5645893,1.156644,1.0824106,1.1325463,1.6877341,1.6083987,1.4865737,1.4711885,1.3637128,1.0742998,1.4642103,1.4662219,1.5449841,1.4091928,1.3626465,1.2831123,1.2237376,1.2663627,1.1418608,0.9992622,1.4295548,1.3862389,1.3152255,1.0382944,0.8430147,0.9928303,1.0743474,1.1122613,1.0831444,0.5074013,0.7208921,1.2583466,1.4807541,1.5228004,1.4043462,0.9971285,0.8419175,1.0873296,1.28367,1.4009087,1.1067894,0.7637023,0.7374258,0.8153844,0.7521457,0.87494457,0.7993158,0.94369745,1.473623,1.2348826,0.96923757,0.88204074,0.8782309,0.8822017,0.87847495,0.9847174,0.92433995,0.7157576,1.0755962,0.8831808,0.9749099,0.74408424,0.79798883,0.66965085,0.7019688,0.93632793,1.0668321,0.9010366,0.8884579,0.8804354,0.8261585,0.6518382,0.57808197,0.731987,1.0354542,1.2018538,1.198185,1.0948188,0.7096693,0.9256159,1.2925348,1.0499506,1.1472194,1.241948,1.2791455,1.3438133,1.1929113,1.3050556,1.538188,1.4761302,1.3754004,1.2017993,0.7399402,1.0085266,1.0713342,0.94422114,0.88663626,0.7088579,0.8448663,0.76394534,0.917414,1.1575601,0.93384624,0.9600471,0.8181997,1.1906955,1.2334075,1.1049699,1.2748748,0.99969065,1.0609179,1.1579958,1.3633903,1.2590686,1.1824303,1.151828,1.14183,1.0651921,1.7455846,1.3536477,1.136847,1.2177885,1.7215282,1.637963,1.5182148,1.1952158,0.93421507,0.8060533,1.202009,1.8930367,1.4791911,1.2971389,1.021791,0.72086763,0.6104009,0.8189817,0.85458493,0.71347415,0.6720467,0.8182899,0.9551703,0.8870134,1.2907498,1.1070875,0.66623366,0.785257,0.93662626,1.082354,0.9140004,1.3877759,1.2302762,1.0023853
+0.5212598,0.8488085,1.4315394,1.1123954,1.5794735,1.3673406,0.9272883,1.3625681,1.6520184,1.5661311,1.0050951,1.1889132,1.5902885,1.3850007,1.3216684,1.2991734,1.302874,1.2858189,1.2349142,1.2973447,0.7815182,0.58013725,0.8062605,1.1302283,0.97536904,0.84939146,0.86372304,0.7716025,0.73907703,0.8046676,0.841295,1.0322356,1.1467992,1.1585371,1.2978978,1.3093123,1.0465331,1.2108938,1.2964985,1.2664664,1.0903456,1.1250479,1.1276029,1.3362684,1.7852678,1.8934867,1.2935262,1.2500218,1.1377937,1.371984,1.1472888,1.2502832,1.2204006,1.2835922,1.4410483,1.1407075,1.07024,1.10887,1.1363189,1.1812258,1.2541226,1.2391883,1.1187553,1.0742894,1.1008847,1.0224046,1.2430604,1.3014091,1.4732506,1.4694403,1.1184206,0.7188376,0.77413833,1.0549452,0.6983836,0.44661808,0.66320443,1.1952604,1.115645,0.93587816,0.8601067,0.71576756,0.9994072,1.4590954,1.476207,1.2565663,1.1387002,0.9962424,0.9995232,1.2127509,1.0610431,0.72672856,0.9158883,0.63589215,0.79503447,1.0349951,0.8899692,0.85973126,1.0099678,0.9425952,0.97846174,0.9158889,0.59754544,0.59546113,0.5989003,0.6109861,0.58861583,0.68552184,0.5414402,0.8097038,0.9618895,0.6981057,0.46583045,0.4521662,0.48095307,0.5029022,0.65404105,0.91003656,0.91178834,1.1761333,0.8678821,1.0779781,1.0648645,1.0824436,0.8891908,0.8391963,0.6741002,0.79357,1.059525,0.73901594,0.6063644,0.52165717,0.4832139,0.52052057,0.9029769,0.83626604,0.83183444,0.9258261,0.93429375,1.1495798,1.065266,0.93332696,0.6994921,1.0660595,0.7354177,0.5264051,0.4971239,0.5336873,0.60951686,0.4471329,0.43173826,0.5107308,0.3418261,0.32536864,0.6034762,0.46371573,0.24834362,0.2186946,0.17636278,0.47888196,0.5867771,0.46485507,0.3642502,0.41521114,0.4747991,0.19555974,0.2812185,0.32244426,0.17455503,0.09752632,0.053410403,0.42589992,1.0227677,0.95835114,0.7653149,0.62790805,0.5625341,0.5606982,0.42786187,0.77919495,0.82906497,1.5607414,1.7090684,1.3458108,1.280519,1.390077,1.3454723,1.2479157,1.1405534,0.9704673,0.98801845,1.659852,1.7371702,1.4107053,1.1338487,1.1733539,1.2601428,1.0530188,0.9283041,0.9251017,0.86092436,0.83066666,0.76427567,0.6827084,1.3604455,1.3409309,1.117582,1.3604265,1.1712878,0.84237444,0.9192503,0.91925126,0.7159661,0.9655943,0.86287516,0.80082744,0.7859689,1.0900248,1.3952961,1.3581705,1.3439887,1.1738613,0.9005902,1.227159,1.2708763,1.426086,1.3823166,1.026653,0.874064,1.1984956,1.2461425,1.201309,1.249824,1.6208546,1.5417695,1.3912289,1.1713648,0.9171812,0.9161849,1.1234431,1.1781499,1.1207783,0.615608,0.8918212,1.3397801,1.6845021,1.7054853,1.5339371,1.1064132,1.3212761,1.348774,1.6954508,1.954139,1.5459294,1.099203,0.9335288,1.162782,1.1933281,1.4403331,1.0248702,0.6397587,0.71328086,1.2413895,1.0517716,1.1209877,1.2692668,1.246274,0.6864774,1.0984793,0.92804104,1.1160791,1.7531543,1.2788217,1.8381155,1.6099072,1.2707655,1.0409218,1.0739783,1.2009242,1.7887306,1.1742456,1.1460077,1.123308,0.89860654,0.7322618,0.8031144,0.70266414,1.0586578,1.039727,1.0797526,1.1323675,0.9209576,1.2470703,1.5711619,1.2635691,1.2622381,1.3413998,1.708594,1.5728986,1.4329945,1.708683,1.9941034,1.8918865,1.7450132,1.5213721,1.5766779,1.5595577,1.5384495,1.7173779,1.5070233,1.3626395,1.3321339,1.0632173,1.2051216,1.4263428,1.5655241,1.3316867,1.0209074,1.8168182,1.6715356,1.6297674,1.7986904,1.4280431,1.4159544,1.2725708,1.5448406,1.3576475,1.2016461,1.1468576,1.1829368,1.1541556,1.7967725,1.4662583,0.92709076,0.9056149,1.7131057,1.8909222,1.7491558,1.3191438,1.1093271,0.5637264,1.0230747,1.8942809,1.5034525,1.6183777,1.2383687,0.864984,0.8729625,1.122312,1.0255849,0.7901542,0.830195,1.0360134,1.1035333,1.0704937,1.6613511,1.5750344,1.1511284,1.1358422,1.0908606,0.9247241,0.91622674,1.2636883,1.1915584,1.1211202
+1.7409364,1.8310239,2.8078573,2.5791667,2.8801594,2.5974827,2.4631953,2.6549654,2.8890638,2.9791126,2.410829,2.4557257,2.7836392,2.6828814,2.5880353,2.502408,2.398635,2.2511935,2.1359408,2.1580253,1.7636174,1.576277,1.49785,1.9638324,1.8065839,1.7422692,1.6834247,1.5234244,1.6916218,1.4749722,1.9114717,2.2571604,2.481214,2.4247868,2.7866552,2.838675,2.5764155,2.702116,2.7284272,2.4355688,2.3761213,2.1660352,2.0967386,2.4212613,2.786354,2.5889935,2.4199562,2.1786704,2.2559745,2.3502183,2.6874194,2.4355018,2.5569189,2.4268725,2.5035772,2.253515,1.899846,1.7932901,1.6223605,1.7619817,1.8796985,1.7116363,1.6336324,1.945982,1.9185758,2.3175015,2.0713565,2.099844,2.2974374,2.1805258,1.8749001,1.4434712,1.3915287,1.6954277,1.4077684,1.1226028,0.9875143,1.3591805,1.6965339,1.5927461,1.367532,0.9869937,1.046249,1.480727,1.8397367,1.8081055,1.6540475,1.3809936,1.3110352,1.6574857,1.4592142,1.3023098,1.4283938,1.3625023,1.5336983,1.3153304,1.4814787,1.4545846,1.4079387,1.3089674,1.485775,1.2885447,1.0261298,1.268568,1.2238462,1.1773138,1.2553285,1.3307126,1.153349,1.1418344,1.3136265,1.3036628,0.98712707,0.9275423,0.8602934,0.78927743,0.7580189,1.5059891,1.2383811,1.7757607,1.5782429,1.7745066,1.6176962,1.4325149,1.2817249,1.2932719,1.1152184,1.3439355,1.6867937,1.4886138,1.4607553,1.3027084,1.1387227,1.001626,0.96211815,0.9638878,0.9906618,1.0937158,1.0429347,1.0928528,1.0361406,1.0530957,0.8580382,1.2491584,1.166436,0.90490425,0.7640978,0.7528785,0.70831263,0.96395594,0.94123495,0.8253808,0.6304723,0.6138759,0.909593,0.8257415,0.62162685,0.73987174,0.55896735,0.48711818,0.5348168,0.55073786,0.5190628,0.56185424,0.78045154,0.49331996,0.5581308,0.70075744,0.5376838,0.5194762,0.39791745,1.859639,2.0387988,1.9023077,1.7718935,1.7808313,1.6230159,1.396602,1.2186797,1.5239255,1.5643777,1.8014709,2.469582,2.3590155,2.0233517,2.0313969,1.9906031,1.9263184,1.7529602,1.7828981,2.4387913,2.7458901,2.5129888,2.303546,2.1059895,1.9202766,2.08803,1.9270526,1.7667933,1.710845,1.584305,1.4906235,1.3878946,1.3216962,1.6552867,1.6577394,1.4162256,1.5442016,1.2904263,1.0185705,1.0729659,1.0756512,0.9884274,1.0190667,0.8120972,0.8393324,0.75005543,0.9941252,1.3904414,1.3168677,1.2791586,1.1331204,0.80805194,1.2341231,1.3112907,1.369193,1.4135492,1.0923951,0.9779209,1.2761264,1.2979829,1.2405748,1.206073,1.6634622,1.6765996,1.617588,1.3664823,1.1490576,1.196612,1.4403946,1.6420851,1.4518607,1.0419664,1.1526597,1.9224532,2.3529396,2.122734,1.8168373,1.818456,2.2884822,2.0850725,2.3488114,2.547796,2.2484837,1.9761832,1.5847096,1.7482178,2.0002418,2.5928664,2.0243933,1.6709914,1.4413993,2.2808194,2.1720722,2.1168637,2.1587567,2.2003112,2.1357656,1.9642203,1.8977661,1.9262142,2.56671,2.362212,2.710825,2.3947716,2.0743823,2.2782645,2.4624195,2.2446003,2.6815076,2.1653476,2.0568614,2.022931,1.753815,1.4963698,1.4923468,1.5106407,1.7284582,1.9019709,1.8417387,1.8917925,1.7122825,2.0004535,2.4204636,2.2194138,2.065577,2.265712,2.687842,2.4916768,2.5540776,2.5655699,2.8979216,2.7804234,2.652605,2.6529617,2.6419578,2.4108143,2.406809,2.547051,2.3370516,2.0746052,2.1050751,2.024516,2.214735,2.350464,2.4433641,1.9887662,1.964744,2.700795,2.4006157,2.1151016,2.4570217,2.3349802,2.2614183,2.2109303,2.392227,2.2521093,1.9144043,1.7249482,2.0574563,2.1418056,2.798046,2.378629,1.9574229,1.8420973,2.364687,2.8421335,2.5752423,2.1662984,1.8410484,1.6630254,2.098713,2.6943393,2.5463169,2.6804757,2.2809834,1.7616313,2.0866644,2.4084053,2.2352304,2.1317687,1.7365948,2.1825187,2.31874,2.095119,2.5672567,2.5877361,2.066888,2.1152997,2.2069638,1.9891677,1.9550731,2.1647086,2.0627794,2.5232613
+1.0399698,1.6258204,1.9224174,1.4371037,1.6021903,1.3570693,0.8831199,1.3187063,1.5285566,1.3883636,0.9230678,1.3726326,1.7737777,1.831271,1.649506,1.544606,1.4272912,1.2759578,1.1779461,1.1413968,0.89962375,1.017791,1.4000432,1.5940464,1.2664509,1.0719528,0.8808725,1.0797869,1.6195848,1.288914,1.143703,1.1355044,1.3249114,1.3771491,1.731127,2.0095704,1.7728463,1.5374951,1.3655555,1.0687673,1.1238418,0.9620919,1.161816,1.2142632,1.2012717,0.99527144,0.87772703,1.6712462,1.2520871,1.2082438,1.9725783,1.8048626,1.6201608,1.5813012,1.2989743,1.014132,0.7229334,0.843434,0.9846214,1.6992303,1.2488644,1.0978158,1.1282647,0.6812842,1.0908912,1.6355622,1.5520482,1.5823897,1.4667175,1.2523854,0.9234228,0.5811188,0.4214731,0.6013954,0.4100942,0.1759586,0.99969006,1.0431927,1.0560433,0.92441,0.5896176,0.24664086,0.14992727,0.40893734,1.3806236,1.2297661,1.0555514,0.8076608,0.96673316,1.3569561,1.2901059,1.2853281,1.4628118,1.989244,1.4543297,1.372627,1.2025844,1.07789,1.0824914,1.2510319,1.0269125,0.6747137,0.6038822,1.2744436,0.7231978,0.7905357,0.9526857,1.714575,1.2608216,0.92631674,0.9230679,0.7947829,0.59705293,0.521595,0.4298553,0.33938375,0.23144677,0.35666716,0.33607435,0.31127483,0.14525524,0.27541032,0.41433045,0.3600468,0.5814823,0.56334347,1.2053728,1.3606297,1.0349529,1.2255324,1.149513,0.94538486,0.8216049,0.68207407,0.5961531,0.45066184,0.4215823,0.35647464,0.26420426,0.32985702,0.33098578,0.4808645,0.30820608,0.51994175,0.42538005,0.232427,0.12517676,0.08697327,0.11190913,0.3975454,0.33304992,0.22570398,0.092844166,0.08714209,0.78311664,2.095944,1.3045408,1.1958654,0.90827537,0.7096699,0.56430674,0.44297838,0.34113932,0.30308765,0.3904643,0.2305041,0.2326423,0.24461174,0.30725327,0.26040947,0.075518854,1.5428975,1.593281,1.74048,1.715353,1.3094454,1.2217383,1.1629846,1.0578742,1.0411351,1.0133383,1.4568148,1.5640948,1.3065364,1.2501605,1.1342129,1.0587325,0.98760694,0.8372222,0.9675064,2.705512,2.804665,2.231961,1.9061532,1.6483619,1.3585014,1.4485769,1.2183313,1.2058017,1.0580151,0.9928407,0.91373384,0.8336699,0.7730292,1.2413328,1.0537214,0.7524452,0.91070294,0.6538375,0.32815439,0.42347103,0.53579086,0.42048204,0.4702013,0.2985824,0.220523,0.220198,0.41324368,0.7979932,0.5943249,0.5770118,0.45666984,0.2432374,0.5296654,0.463361,0.5504988,0.52463883,0.4378349,0.8660835,0.90279704,0.8768748,0.70631313,0.7246767,1.1573782,1.055768,0.91513705,0.6982534,0.42131686,0.530548,0.82970023,1.0152975,0.7044182,0.43141842,0.653899,1.036496,1.4521832,1.2343483,0.8581289,1.5402625,1.6539648,1.5786684,1.7397176,1.9699098,1.5824578,1.3282754,1.123863,1.5688812,1.4553564,1.9752641,1.548007,1.2492002,1.172687,1.8955472,1.6669421,1.8034958,1.714035,1.9299155,1.3530469,1.5263436,1.5883174,1.491538,1.9394274,1.8730316,2.2773962,1.8817483,1.7151824,2.2353063,1.9162353,1.9736247,2.384105,1.8961868,2.0418518,1.8103192,1.4375007,1.1446923,1.3663576,1.3874817,1.6954935,1.9369215,1.688834,1.7659469,1.56825,1.8004527,2.1099355,1.6239014,1.5444336,1.7295711,2.0511863,2.1016874,2.0849943,2.0123987,2.4427977,2.2121434,2.193453,2.1271596,2.007467,1.8351536,1.9358361,1.9469836,1.7709031,1.4263945,1.6039436,1.5450358,1.70773,2.018288,2.1394002,1.6558206,1.8185818,2.360802,1.9480731,1.7960427,2.2945714,1.9594558,1.89791,1.9838691,2.044892,1.8179077,1.6123769,1.4442778,1.5103527,1.5826266,2.1589682,1.617523,1.309375,1.1937474,2.3835309,2.4856436,2.1299858,1.6789048,1.4544102,1.532914,1.7521727,2.1566124,1.9149538,1.9705215,1.4238716,1.0904728,1.5750127,1.8992093,1.5107399,1.3423111,1.2027094,1.6386062,1.7357905,1.6142402,1.8308172,1.8572897,1.3075674,1.3857707,1.5128782,1.3788406,1.357182,1.488221,1.2471905,1.6984541
+1.9986969,2.2216787,2.5513911,2.314937,2.1860838,2.0068715,1.8330245,2.2245457,2.5392146,2.3603573,1.8683915,1.9590807,2.3032846,2.2983336,2.0536036,1.8291113,1.6868427,1.3326755,1.0836457,0.90837014,1.2965232,1.9592453,2.5502596,2.508614,2.3214462,2.121605,1.8374567,1.6403881,1.4998937,1.4147,1.3899955,2.0695112,2.6614766,2.5527463,2.5498984,2.4977264,2.4291844,2.058182,1.633688,1.4399984,1.2996554,1.3008108,1.6391695,1.6660666,1.6650677,1.3602084,1.1917763,1.7451093,1.5681973,1.505584,1.4318941,1.5835342,1.6664711,1.6507883,1.1897125,0.9366913,0.915069,0.8113564,1.4570856,2.0229023,1.6028504,1.5323269,1.387463,1.035776,1.0130469,1.0645813,1.2813337,2.4029732,2.1387072,1.8270369,1.3604097,0.9755757,0.87414664,1.0192988,0.9373034,1.3940117,1.4624575,1.4301229,1.3938336,1.1305282,0.8788427,0.5889924,0.5266578,0.48927683,0.67182016,1.5681933,1.3687423,1.1083589,0.88603055,0.9671606,0.8071929,0.6789926,0.62734276,1.6315508,1.7891941,1.4078159,1.5838923,1.4611384,1.2655454,1.4761269,1.4563828,1.8823943,2.361278,1.8079666,1.5303992,2.3116577,2.246528,2.2766016,2.0635755,1.9622425,2.2377393,1.8347132,1.5791872,1.764019,1.9315577,1.5393429,1.2883831,1.2380822,1.2432525,1.1224291,0.91942084,1.0811206,1.4779142,1.5638794,2.8803606,2.6923144,2.6507328,2.5418744,2.4077454,2.3879158,2.2622552,2.053139,1.8819461,1.697545,1.6318204,1.48627,1.3096297,1.2060922,1.0569991,1.1631594,1.5414035,1.6885138,1.7068273,1.649302,1.3934298,1.190527,1.1791748,1.3340983,1.2373774,1.1122572,1.0646454,1.056626,1.0163945,0.9643352,2.975515,3.0672731,2.7109644,2.4462261,2.205122,1.9108837,1.660097,1.4584534,1.3182896,1.1999564,1.6579375,1.86821,1.6645143,1.5062606,1.4224372,1.1864972,1.2506421,1.9264691,2.066291,2.1487153,2.2733765,2.3249123,2.1795335,2.0390437,1.8953094,2.2171118,2.4134526,2.8949084,2.9235034,2.8140423,2.6819816,2.5860221,2.3807483,2.2581754,2.1769977,2.1601572,3.2983122,3.053092,2.990547,2.851457,2.692441,2.5149224,2.4315739,2.253095,2.0647295,1.8874776,1.8297963,1.8061743,1.8080223,1.5574789,1.9696624,1.8954829,1.5473872,1.6092712,1.4234767,1.1056,1.0778663,1.1398375,1.058454,1.1262333,1.1126251,0.9718149,0.9320382,1.0709574,1.2687426,1.0332805,1.0115373,0.93319726,0.73502195,1.0681661,1.0347482,1.0465287,1.1964462,1.9625973,2.0220418,2.0793567,2.0068796,1.8532801,1.7439903,2.1973405,2.0162594,1.8232484,1.4638033,1.1015241,1.2331195,1.2642132,1.7390691,1.2749162,0.96510863,1.1799053,1.4004219,1.9495822,1.8745642,1.499954,2.4981914,2.8299828,2.751443,2.8126307,2.9153032,2.679294,2.6000075,2.3729706,2.8444405,2.7346005,2.9503107,2.792066,2.465857,2.4665923,2.9730213,2.8285315,2.9061162,2.8762102,2.9102955,2.7687707,2.8157372,2.8043656,2.5177689,2.6744084,2.81795,2.973716,2.8538208,2.7695463,2.7914019,2.8971353,2.929476,2.9956005,2.8748407,2.9843912,2.7979646,2.6278453,2.7071085,2.512791,2.625557,2.7246797,2.8406081,2.777711,2.8003542,2.647917,2.6796384,2.7492752,2.587952,2.4284477,2.5312672,2.8780155,2.9511085,2.9014344,2.7870383,2.89883,2.765133,2.6739936,2.629493,2.5033329,2.432645,2.4303317,2.4838424,2.4705174,2.297912,2.3887749,2.2285075,2.325236,2.787294,2.8764408,2.6940193,2.6952367,2.7964268,2.620984,2.7426229,2.9576917,2.8705206,2.8305025,2.7692068,2.677092,2.5513394,2.373712,2.2096922,2.1601079,2.044697,2.3093557,2.0192428,1.7206078,1.6464584,2.1125107,2.5559084,2.361409,2.018362,1.702395,1.6574116,1.6822171,1.9865755,1.5793718,2.028664,2.0783179,2.4976578,2.7705734,2.947999,2.8066168,2.7577527,2.5064244,2.8909724,2.897068,2.7876236,2.864714,2.8455257,2.7280111,2.702707,2.638745,2.5678406,2.540492,2.5586908,2.4999883,2.5871582
+2.211101,1.9573846,1.7647823,1.6909766,1.6117003,1.6651583,1.624541,1.5881487,1.5164897,1.4887507,1.6554351,1.7950209,1.5919356,1.7999415,2.1898634,2.582211,2.8469896,2.2378082,2.7171736,2.5330606,3.1637259,2.6042876,1.938518,1.8586111,1.7938404,1.6829202,1.6114967,1.7824773,2.1678028,2.4810917,2.7452412,2.991339,2.9174569,2.9720035,3.2234526,3.3537798,3.3187532,3.3108234,3.3161664,3.3489363,3.45524,3.5333488,3.4856339,3.3997827,3.4384308,3.4177814,3.5195465,3.5303764,3.5785522,3.608815,3.561749,3.5184417,3.5482645,3.5035813,3.4593039,3.453523,3.4867592,3.4182787,3.5145664,3.4686296,3.5302563,3.476585,3.4817648,3.4728067,3.4857187,3.4636443,3.5387897,3.5283527,3.5604665,3.5590787,3.5770266,3.5571446,3.6151063,3.5464098,3.5562654,3.5420778,3.535152,3.5307176,3.5354779,3.5166981,3.5761135,3.5509868,3.5066323,3.4959617,3.4868221,3.4924679,3.5440276,3.541573,3.539267,3.5127287,3.5090399,3.5677,3.540592,3.504418,3.5340395,3.5535762,3.4719458,3.5038126,3.532007,3.514412,3.5024624,3.508103,3.5654552,3.5565438,3.5279775,3.6376824,3.560505,3.540588,3.5756433,3.5356445,3.5255516,3.5330243,3.5717902,3.5472856,3.519733,3.5688345,3.5563502,3.5340676,3.5323248,3.5195765,3.509863,3.5120752,3.517625,3.520707,3.571952,3.5296998,3.5152423,3.5792499,3.5573404,3.5388446,3.5285258,3.519198,3.5185513,3.5004888,3.5076492,3.5205927,3.5132189,3.5329597,3.5516639,3.532329,3.5558217,3.5108213,3.551485,3.5347912,3.549553,3.5332828,3.5487142,3.5681853,3.4946704,3.5519783,3.5178008,3.518316,3.5453043,3.5267837,3.511794,3.5150304,3.521408,3.52915,3.53661,3.575152,3.532897,3.4985108,3.5397255,3.5734298,3.4600768,3.555687,3.5629585,3.5160632,3.525704,3.5462584,3.537669,3.5196996,3.5244095,3.5180736,3.5092187,3.4962535,3.5088873,3.5280676,3.52811,3.5869555,3.517629,3.5218434,3.528167,3.5199478,3.5192935,3.5048885,3.517534,3.5340614,3.5269027,3.5425634,3.5230935,3.5135913,3.5129886,3.5075557,3.5381556,3.608451,3.5106497,3.5142424,3.5419278,3.5171173,3.5779085,3.5131845,3.4980047,3.4982457,3.5114474,3.5265684,3.5442905,3.542547,3.5595367,3.4749107,3.4868224,3.593584,3.575729,3.5286584,3.6159995,3.5911107,3.5486627,3.528705,3.5630782,3.5312786,3.560056,3.5916796,3.5447502,3.5225306,3.5767617,3.5090146,3.5780737,3.5863829,3.536766,3.594101,3.5788157,3.5739174,3.563087,3.5953946,3.4521494,3.5250783,3.4353862,3.3266857,3.3152509,3.3078983,3.3054018,3.1625001,3.1130552,3.1823921,3.0885987,3.254486,3.1518152,2.9717817,2.7459304,2.8855636,2.8310323,2.7019894,2.5838566,2.1534553,2.0180304,2.0495026,2.125755,2.052621,2.0832846,2.049653,2.0538142,2.0325248,1.9811451,2.1003444,2.167856,2.0299304,2.1977131,2.2317228,2.0955403,2.0288818,2.046276,1.9401557,1.8852522,1.8300066,1.7489803,1.7140148,1.7323401,1.6875094,1.7308329,1.7190406,1.6968515,1.6305811,1.6541288,1.6725237,1.6283069,1.8820765,1.8225881,1.724664,1.7275356,1.7100743,1.7054939,1.6748855,1.6881046,1.9417661,1.7998435,1.9314244,2.0977483,1.9171832,1.8112895,1.8062406,1.735008,1.6825011,1.6331661,1.6279509,1.5924237,1.5130305,1.5571467,1.5596998,1.571284,1.5650784,1.5798373,1.5526321,1.5857828,1.6383245,1.5906122,1.5646551,1.5536749,1.4921118,1.5219123,1.4711659,1.5140692,1.675756,1.6168957,1.5381162,1.6922895,1.6252179,1.6338013,1.9070247,2.030278,1.6232698,1.6204312,1.5934867,1.6105661,1.5168518,1.5222819,1.5631706,1.6349367,1.5600221,1.5369986,1.4489505,1.5692377,1.7420788,1.7037354,1.6236746,1.5596156,1.5273929,1.5034194,1.4517252,1.4680669,1.4466228,1.429965,1.4372731,1.4873025,1.5499325,1.708641,1.4913918,1.489831,1.5320296,1.5339966,1.4564006,1.5446954,2.000165,2.1527102,1.9063381,1.9948823
+1.1127913,1.0843275,1.1603494,0.7587893,0.81835866,0.49373803,0.49008223,0.6089238,0.5283984,0.63201207,0.5154618,0.7044388,1.1463369,1.3076236,1.3471129,1.3660564,1.3649828,1.2836039,1.226385,1.2835175,1.0064143,0.5590234,0.92529035,1.1027951,0.87732756,0.46259022,0.8424219,0.7584522,0.39794734,0.53144604,0.40041292,0.74794483,0.78761303,0.7494813,0.9412402,0.92502546,0.7144281,0.9549501,1.2316011,1.1541507,1.0149183,0.85026276,0.4897669,0.74581164,0.9905497,1.185043,0.981678,1.1485445,0.9681274,1.0236009,0.52250785,0.7679771,0.88582987,1.0423695,0.9487808,0.73119473,0.6059522,0.64317393,0.5605823,0.6411992,0.83714736,0.8443682,0.34962884,0.57192504,0.6701467,0.3990689,0.8421978,0.85173094,1.0847095,0.98591805,1.1833422,0.75430715,0.9071355,0.95254624,0.92547035,0.73346114,0.5472761,0.8480787,0.8121886,0.6591131,0.51120645,0.7682203,0.79534477,0.70385015,0.8905511,0.56670445,0.3978426,0.38573217,0.44862944,0.57421416,0.55462635,0.30734602,0.4882095,0.38974553,0.201026,-0.013846993,0.07003727,-0.014642827,0.04572337,0.009068988,0.16836366,0.21795845,0.019410461,-0.08442093,0.17641816,0.22179168,0.18226004,0.23129764,0.041134782,0.350034,0.33770698,0.19111109,-0.07873612,0.048522048,0.023108475,-0.120483406,0.39783245,0.28068486,0.07299473,0.0068415552,0.20074725,0.5468555,0.30755427,0.5842405,0.39877245,0.26066428,0.17826891,0.20662916,0.40795696,0.26365167,0.12012481,0.25016433,0.4523768,0.5486343,0.5203853,0.6146445,0.66870797,0.4384033,0.6905623,0.630042,0.6621151,0.5154594,0.25357372,0.80292356,0.66245604,0.50369793,0.27872896,0.3106077,0.4160323,0.19026974,0.29712272,0.28218994,0.038972937,0.17557856,0.2589581,0.21348971,0.08288924,0.03185048,0.04887177,-0.19401646,-0.13413137,0.14589825,0.3116398,0.46044827,0.5521751,0.33866066,0.2046023,0.48378342,0.1306516,-0.028590634,-0.015663944,0.37740427,0.55671704,0.53323066,0.46532553,0.284918,0.4364487,0.52351147,0.19575664,0.056848057,0.28487802,-0.024290122,0.4845808,0.48890638,0.61418325,0.7055198,0.7341281,0.74851525,0.74581337,0.66607344,0.3174616,0.9743482,1.1079175,0.9134216,0.64561975,0.48086363,0.9060732,0.78976816,0.41295785,0.3081526,0.58868605,0.607671,0.50524443,1.8716977,1.5148783,1.3286898,1.1691606,1.1634161,1.2342947,0.9951117,0.9755973,0.91653645,0.7102799,1.0765369,1.1483977,0.8660147,0.8061054,1.2715367,1.1944016,1.2135421,1.283626,1.1464858,0.8442818,1.0925874,1.2405175,1.3317963,1.264425,1.3493494,1.2185528,0.9299673,0.9447353,0.8892015,0.761461,1.1790899,1.2753345,1.180737,0.93280876,0.5963481,0.62842405,0.5955004,0.6741481,0.9430859,0.5172933,0.46649975,0.7459115,1.1432085,1.1334877,1.1465703,0.8037259,0.7352755,0.6589174,0.9841753,1.0881016,0.644186,0.5184333,0.35872984,0.46856093,0.46074867,0.5181137,0.41694945,0.34459594,0.7783747,0.8138286,0.6550802,0.59898055,0.57606065,0.6424241,0.7040627,0.7150554,0.53311443,0.7294409,0.85594845,0.54790676,0.69983804,0.5623715,0.65830994,0.5973455,0.6114905,0.6999624,0.65885985,0.41636118,0.29478157,0.277287,0.23645943,0.20151725,0.42279556,1.1787608,1.1536424,1.0307174,0.7961203,0.69216967,0.54306555,0.591573,0.7906242,0.5759236,0.6714325,0.76151466,0.88360107,1.2104002,1.0097315,0.82456565,1.1430054,1.066286,0.89178026,0.67737585,0.45429346,0.46405265,0.52820027,0.53847605,0.47806904,0.32849133,0.4737313,0.6249646,0.7755333,0.6430078,0.509017,0.42815903,0.6521023,0.8681593,0.69391453,0.69957864,0.79553545,0.63470066,0.95446455,1.0018088,1.1106219,0.99142027,0.77079606,0.69163144,0.77043515,0.5781822,1.319004,1.2978051,1.0710346,0.63664067,1.251131,1.3350155,0.96568763,0.83208275,0.5381364,0.51834106,0.75040483,1.4837303,1.2071763,0.95574206,0.60913324,0.4812049,0.37929422,0.49546373,0.50910425,0.52670985,0.3408532,0.37391254,0.5410205,0.80237734,0.67170304,0.43360668,0.4695124,0.67111564,0.76268476,0.69185275,0.61523575,1.1492435,0.94268966,0.9512241
+0.8267413,0.8411572,1.1122026,0.6794758,1.2427962,1.1085567,0.80172884,1.1778231,1.2240204,1.4056791,0.8963544,0.717534,1.3912842,1.3013834,1.2224224,1.1511072,1.0796045,0.9935969,0.9027716,1.0363977,0.6033863,0.35315788,0.52282107,0.94030523,0.72470945,0.3032572,0.38573718,0.3828781,0.5725814,0.6615527,0.7035843,0.8540538,1.0086764,0.8822305,1.0927491,1.1151575,0.95124173,1.1068679,1.3160203,1.1717489,0.87996626,0.88644826,0.74563384,0.84479547,1.1706969,1.1743405,0.89069617,0.75705314,0.66755253,0.8313184,0.609004,0.9065673,0.8320178,1.0609995,1.0078249,0.8612654,0.70382965,0.6702027,0.63197505,0.69031775,0.76532817,0.8118813,0.6819206,0.6588783,0.7145547,0.7782291,1.0332444,0.9173528,1.0699085,0.9945376,0.8658502,0.50690556,0.5268982,0.5018219,0.35939896,0.2807079,0.5498404,0.64296365,0.55266446,0.4671137,0.33609918,0.10588659,0.22392574,0.22678602,0.51751226,0.5330371,0.44819164,0.31144515,0.66681814,0.7114047,0.59032166,0.338793,0.37223592,0.23877391,0.018569008,0.5206058,0.34136182,0.18573058,0.4640742,0.51574033,0.4609677,0.33731133,0.16638353,-0.015281551,0.09471036,0.011248268,0.0053188056,-0.032542996,-0.19733745,-0.03482499,0.026745059,-0.07371532,-0.21048719,-0.20819098,-0.12913328,0.09548307,0.5364349,0.39643866,0.1106113,0.43530917,0.40921918,0.62295115,0.4784686,0.940439,0.6535411,0.60824126,0.42880118,0.31470397,0.5113521,0.34199288,0.17258337,-0.0350995,0.13892063,0.526033,0.39468628,0.5862874,0.6347083,0.46299762,0.76140475,0.6254456,0.55657685,0.39417008,0.32406238,0.88689566,0.6991872,0.5071034,0.28820643,0.1680457,0.20284006,0.10835635,0.06698226,0.10553383,-0.15320358,-0.036438458,0.05595369,-0.042938195,-0.03882154,-0.08862861,-0.08299909,-0.18823841,0.33489862,0.30018288,0.37851563,0.69636446,0.6097969,0.32833064,0.18844423,0.16487354,0.0018193126,-0.04245832,-0.26180843,0.19834082,0.61026967,0.51484555,0.4482588,0.27114195,0.14724511,0.2414946,0.013540886,0.12881014,0.3566315,0.62860215,1.0401329,0.9561913,0.97763085,1.0064154,1.0161686,0.97399735,0.9273808,0.7662717,0.59266216,0.92149526,0.9412515,0.74126285,0.50403565,0.50251263,0.62347555,0.544068,0.35343337,0.25362477,0.2258319,0.18373454,0.10287064,-0.07380644,0.4951053,0.40328947,0.17384636,0.23461503,0.11039061,-0.053528063,0.33421898,0.33376718,0.10801131,0.65085155,0.65306705,0.32097372,0.35121605,0.52200544,0.52717,0.37153482,0.4223916,0.35728306,0.26482695,0.7434317,0.66522586,0.7995272,0.77356553,0.7130118,0.5091394,0.58692926,0.5466705,0.4990111,0.2981154,0.74773717,0.6959168,0.64677775,0.70898956,0.4935904,0.4295923,0.6638398,0.691708,0.7976584,0.62672836,0.94003356,1.1669905,1.473099,1.5208796,1.4136969,1.0420383,1.1717719,1.0888492,1.5292523,1.6956441,1.5607495,1.1982845,0.6760237,1.078997,1.0902221,1.0411468,0.7773807,0.61445457,0.81331575,1.0666641,0.95457566,0.8626611,0.97937524,1.0293182,0.68503106,0.9900137,0.9369422,0.80971855,1.1018627,0.79072046,1.1016084,1.0353899,1.0099022,0.6262982,0.6188559,1.04004,1.5632488,1.065573,0.9751251,0.8492985,0.73948944,0.615728,0.4165743,0.55610293,0.76800376,1.2507269,1.2325954,1.2328441,0.5748178,0.81524813,1.0818503,0.8694682,0.95882183,1.0008227,1.055702,1.2833037,1.3583955,1.362459,1.6633852,1.6652199,1.555419,1.5100017,1.1604751,1.2025619,1.2020528,1.3486155,1.1294749,0.9545862,0.9937917,0.48731607,0.9465563,1.4082463,1.3067799,1.1171728,0.67847097,1.3401648,1.4177217,1.3264947,1.3927287,1.2457602,1.1193119,1.1832825,1.3487597,1.3037027,1.0217636,0.92792153,1.03302,0.91399914,1.4944779,1.4366784,0.9691794,0.8892194,1.5594962,1.768939,1.585207,1.3297652,1.0881543,0.5165777,0.8776194,1.5879469,1.4141977,1.3915426,1.1918745,1.007247,0.96875876,0.9617155,0.999401,0.9533449,0.75610906,0.67750466,1.0299296,0.9880463,1.3253146,1.2509146,0.9338918,0.7879924,0.7416704,0.6644966,0.6921128,1.121351,1.1885259,0.85253334
+0.26722637,0.31853876,0.30573225,0.1548838,0.2684969,0.34163347,0.89622235,0.86311024,0.8198621,0.726817,0.66345924,0.59636164,0.6639615,0.58781135,0.5378505,0.45321482,0.37452954,0.2615408,0.2067636,0.23480093,0.106778055,0.07167896,0.16268511,0.193887,0.062010184,-0.014330544,0.028808556,0.17940938,0.5064896,0.4659269,0.6387995,0.7251701,0.9773504,0.8896985,0.8963245,1.2697476,0.89664054,0.8141122,0.9425694,0.8059554,0.69500357,0.6575768,0.65953076,0.7002317,0.5718437,0.39025396,0.4820122,0.6931118,0.48086578,0.3714391,0.46591297,0.84138477,0.8119517,0.5629423,0.3994081,0.3043669,0.19483629,0.113612704,0.074600354,0.3733138,0.25573102,0.17084913,0.06489492,0.22092673,0.4036551,0.354318,0.40072194,0.27810255,0.17741737,0.050989565,-0.034034155,-0.12812534,-0.142737,-0.14206457,-0.18556055,-0.241956,-0.11434565,0.78509593,0.46918905,0.2351911,0.08566539,0.60352653,0.3599725,0.52193207,0.4096806,0.29155633,0.16823262,0.066174656,0.12254695,0.6582588,0.3291048,0.28704363,0.19043511,0.17963451,0.1738292,0.6989226,0.3068545,0.22559673,0.23577648,0.26519495,0.17727894,0.039083436,-0.05946002,-0.14471292,-0.15630192,-0.17059541,-0.094659425,-0.07559962,-0.08193124,0.0013094172,0.032355636,-0.02992744,-0.13650006,-0.17154005,-0.18856478,-0.21195066,-0.20887128,-0.20217112,-0.16034341,0.40458608,0.3069845,0.43627185,0.28868577,0.18169744,0.083645225,-0.008647881,-0.08831898,-0.07630587,-0.09690491,-0.122874565,-0.1625529,-0.19995719,-0.20204091,-0.21830791,-0.17752016,-0.16678795,-0.045336686,0.6458949,0.29462862,0.5493783,0.35677516,0.22475329,0.090711094,0.64923716,0.3602849,0.19367735,0.05904391,-0.02724082,-0.07160368,-0.13177875,-0.16406357,-0.16951543,-0.2015054,-0.18490636,0.03661822,0.07948534,0.010551117,-0.029057875,-0.10828253,-0.07482531,0.0858053,0.051967815,-0.042389445,-0.081531905,-0.07440477,-0.15310603,-0.15981558,-0.11129444,-0.1528452,-0.18573466,-0.18556377,-0.13203463,0.31487435,0.22854686,0.1283254,0.03167806,-0.02723857,-0.04174923,-0.0643247,-0.0629433,0.50555176,1.3543396,1.1014116,0.9472266,0.79494727,0.7068452,0.6462548,0.5825899,0.5136812,0.39608452,0.24178043,0.69592166,0.66011894,0.5811842,0.47621506,0.42454892,0.44505507,0.3984149,0.3138492,0.23068684,0.19275287,0.13433048,0.048425958,0.004336469,0.47102922,0.41606602,0.28943148,0.29781613,0.30152434,0.16195735,0.2285862,0.24805754,0.117295265,0.16910431,0.15994605,0.07484907,0.08245818,0.08776902,0.15406035,0.108585216,0.13321503,0.12730527,0.103811376,0.35969794,0.3171392,0.3393228,0.35565668,0.34192124,0.21960036,0.2702743,0.26956895,0.25043902,0.205089,0.2447477,0.27232087,0.28603467,0.23443404,0.151934,0.15828319,0.22447795,0.29193085,0.23419222,0.16652697,0.3683136,0.71592724,0.7942877,0.7363859,0.6972901,0.5095346,1.0104052,0.953352,0.968337,0.8641546,0.7601926,0.64100474,0.61430764,0.75238836,0.7726021,0.75668806,0.41643864,0.1723938,0.68583965,0.75412667,0.45382774,0.4293316,0.6738515,0.77674884,0.80826354,0.93078995,0.7936842,0.817105,0.90648615,0.62630516,0.79851305,0.6892503,0.8078005,0.6900727,1.1632328,1.1198332,1.0447701,0.9144052,0.73210835,0.557153,0.47628874,0.49762216,0.7620791,0.83090746,0.9289903,0.65808153,0.7171011,0.80618703,0.69792444,0.9273531,0.953204,0.8291632,0.7875005,0.74758947,0.935657,1.0567105,1.0555334,1.0539192,1.1023743,1.0036854,0.97336394,0.82042986,0.7679855,0.92763877,0.91571784,0.8442581,0.6016807,0.639807,0.80353636,0.7912767,0.763768,0.74696004,0.60119003,0.6840902,0.7083418,0.75380766,0.73233086,0.71010506,0.7106406,0.63966864,0.6306126,0.5664461,0.61720324,0.5658607,0.52335465,0.48011345,0.45791438,0.39383692,0.6271672,0.60917926,0.52205044,0.46348843,0.7767024,0.7715931,0.5790493,0.39117295,0.47424442,0.508238,0.48245305,0.5418935,0.59752,0.33569172,0.32481113,0.2512711,0.9019337,0.90511,0.70759714,0.5859186,0.75147814,0.886828,0.88765746,0.8218279,0.8010584,0.6862119,0.54181606,0.50290257,0.5944768,0.4637842,0.45649803,0.46812522,0.57921636,1.0383427
+3.2383146,3.3290648,3.2397957,3.279178,3.3647304,3.2885666,3.2711492,3.277504,3.2552974,3.2897453,3.2496474,3.2883425,3.2932415,3.3103113,3.3140433,3.3121219,3.2976456,3.2655067,3.2247195,3.215425,3.1555877,3.2199526,3.3360064,3.2740285,3.2258945,3.1380832,3.2402446,3.3080304,3.3364205,3.2700787,3.30542,3.305511,3.345419,3.311963,3.344348,3.3728838,3.2726364,3.2897863,3.2922792,3.2786448,3.2744844,3.2687435,3.2329493,3.275986,3.2737274,3.2648187,3.2699275,3.2456264,3.2826364,3.2933621,3.2875075,3.2647524,3.3190398,3.2623835,3.2707064,3.259066,3.184597,3.2042365,3.2758794,3.3285918,3.2709749,3.2582011,3.273311,3.317367,3.2292085,3.3022385,3.2851439,3.2812872,3.2813993,3.2638223,3.2584414,3.1231499,3.1423178,3.2238607,3.178944,3.1389542,3.19914,3.2840142,3.2384963,3.283423,3.2279725,3.151891,3.1681793,3.2974563,3.3045928,3.2422807,3.2520933,3.2461042,3.2581887,3.265706,3.2601585,3.2765071,3.2890563,3.2686057,3.28427,3.2295818,3.2425473,3.2594936,3.262992,3.2212396,3.2227511,3.21355,3.1679635,3.1086054,3.055782,3.0494757,3.2685785,3.359362,3.2236662,3.2931073,3.2835631,3.2518916,3.1620312,3.1638544,3.1338706,3.0704896,3.059576,3.190249,3.2560205,3.2957575,3.2733064,3.2283669,3.231318,3.294255,3.2528305,3.2458198,3.2061148,3.1064324,3.1981502,3.233569,3.2683196,3.2018504,3.1629343,3.1145878,3.060584,3.0632143,3.1891186,3.211575,3.1192503,3.114444,3.1098382,3.0795546,2.9977314,3.0546193,3.0310602,2.9829912,2.8546984,2.79531,2.8228092,2.86347,2.84431,2.7869709,2.747106,2.7217195,2.821383,3.2891488,3.239769,3.2255287,3.1595964,3.2193265,3.288412,3.2267966,3.189676,3.170237,3.178671,3.084988,3.0188084,3.025509,2.94215,2.9119802,2.823503,3.303227,3.2957807,3.357407,3.3095622,3.3026803,3.3082945,3.309431,3.2606585,3.2660737,3.328915,3.378607,3.3368824,3.295458,3.3197541,3.3299642,3.3166628,3.3163633,3.31246,3.294147,3.301216,3.416464,3.2994275,3.2922027,3.2908444,3.2835596,3.3018231,3.289688,3.2525322,3.2295926,3.1967194,3.1954432,3.2011952,3.205089,3.2007606,3.2427802,3.2136521,3.2469537,3.2337492,3.1856656,3.2043326,3.1941066,3.1412332,3.2045026,3.1769402,3.1188302,3.107973,3.292735,3.2537937,3.2348692,3.2255228,3.231315,3.221799,3.2355301,3.2322993,3.2070642,3.1922607,3.2490902,3.281713,3.2434561,3.2488813,3.2407734,3.2209065,3.1765099,3.1828206,3.196304,3.184157,3.1707172,3.1814976,3.210444,3.1942172,3.183354,3.1888356,3.21478,3.2538776,3.2674813,3.2673268,3.2449474,3.3046718,3.3130355,3.2616317,3.2662268,3.2938528,3.3119962,3.260212,3.2463715,3.2659576,3.27527,3.2612085,3.2478392,3.1444917,3.202669,3.2427967,3.2456036,3.2454963,3.2141285,3.2400675,3.2633371,3.262865,3.2487335,3.223524,3.2857022,3.2826214,3.225706,3.2285578,3.2129579,3.2729373,3.3103204,3.2417018,3.2674356,3.2572925,3.2066207,3.1771846,3.080449,3.071875,3.1491604,3.2426138,3.276242,3.1945095,3.2017758,3.2427478,3.2037463,3.2291367,3.2605643,3.2536592,3.2376332,3.3112051,3.3000746,3.2594466,3.2746887,3.2361584,3.246915,3.2115057,3.2535653,3.2274153,3.2260907,3.2742512,3.275045,3.250924,3.2666268,3.1924572,3.2519462,3.2651017,3.2623496,3.3302937,3.222801,3.1692724,3.2245288,3.2726254,3.236626,3.3229282,3.2460382,3.2538118,3.2740922,3.2656727,3.2896843,3.278695,3.2654607,3.2181363,3.2404413,3.282561,3.2648387,3.2250736,3.2246299,3.1837473,3.3356662,3.2338176,3.2459183,3.2510395,3.1651335,3.1893396,3.191041,3.27328,3.2294726,3.1842132,3.2030163,3.179157,3.424594,3.2942762,3.353335,3.3403816,3.2671824,3.3700597,3.303267,3.2991855,3.317235,3.3079057,3.2948678,3.2958534,3.290564,3.2398028,3.279801,3.2766156,3.2598882,3.3028374
+1.4079077,2.3608198,2.9640546,2.9658372,3.1839623,3.0261543,2.7438004,2.9856617,3.055128,3.0588112,2.8131504,2.7486668,3.1960092,3.1907923,3.176967,3.150229,3.108243,2.9676113,2.8851044,2.878473,2.5821497,2.3689659,2.931601,3.1236608,2.9444447,2.8630776,2.7332587,2.8398416,3.0869021,3.1485925,3.0319688,2.9715514,2.9742072,3.0996757,3.1388535,3.1012735,3.0826936,3.1020494,3.046948,3.0358562,3.01819,3.0122132,2.9816341,3.0722966,3.1258688,3.0594938,2.8511925,3.1082468,3.0653524,3.1156573,3.068995,3.0681295,3.1028357,3.079453,2.980327,2.8399096,2.527662,2.4437418,2.3126054,2.8337147,2.9308343,3.026674,3.023798,2.9110718,2.98461,2.874291,2.8501573,2.969699,3.0724864,3.0292678,2.9087615,2.5211096,2.0915623,2.3382,1.9850147,1.7590817,2.009119,2.5813856,2.8909721,2.6918812,2.3040535,1.7155608,1.3497174,1.5068312,2.3372262,2.7736135,2.9005036,2.5756578,2.185015,2.4628267,2.5742295,2.46105,2.4520798,2.9042666,2.7793005,2.6119502,2.730702,2.6486056,2.7199106,2.8302023,2.8197846,2.5667782,2.3023753,2.355457,2.0840576,1.8763754,2.3292751,2.9168274,2.5572124,2.483108,2.5010605,2.510395,2.0780509,1.6183832,1.4363948,1.3298533,1.146592,1.2321631,1.1728115,1.0641576,1.1082244,1.4989965,1.470073,2.541886,2.8396487,2.735213,2.5927577,2.1873417,1.9509572,2.3949533,2.8926673,2.6902869,2.542951,2.255792,1.8853972,1.5290349,1.3544698,1.2497598,1.0981022,1.2404332,1.9528158,2.3723052,1.9267068,2.1009889,2.1033597,1.7642071,1.3166347,1.0478334,1.0606053,1.2660062,1.2665255,1.1738851,1.031931,1.8031186,2.8487396,3.1606598,3.0815966,3.077345,2.903802,2.8054943,2.7589884,2.7402754,2.60183,2.4768,2.528123,2.3722956,2.0761273,1.9082867,1.9483402,1.6606696,1.3945622,2.933354,3.0858052,3.218228,3.081697,3.0265694,3.0506022,3.0867038,3.0225034,2.9535468,3.0191402,2.9912877,3.04447,2.9852185,2.9779012,3.011989,3.0193782,2.9871297,2.9205363,2.9816105,3.1890883,3.5090008,3.266911,3.1620934,3.1142943,3.0863085,3.1746578,3.1509607,3.0813208,2.9497166,2.9127517,2.8516552,2.7991667,2.712008,2.8797154,2.9275546,2.8093445,2.9017968,2.6964188,2.3832574,2.2556334,2.3037758,2.0105884,2.1500807,2.1029623,1.6949631,1.6100241,2.0527036,2.6106148,2.5005312,2.6319551,2.4516058,2.3927367,2.5749724,2.6392255,2.8054945,2.6276965,2.511044,2.5220637,2.5844355,2.625978,2.5641627,2.4815216,2.7519727,2.6921988,2.5625868,2.3577127,2.178576,2.3158321,2.757476,2.8545094,2.7338057,2.6166234,2.6304278,2.954002,3.0896246,2.988271,2.9591508,3.1088266,3.1347947,3.088475,3.08751,3.0775285,2.9818,2.9416106,2.871132,3.072972,3.0996094,3.0882206,2.941081,2.8402064,2.8531408,3.2093165,3.0951037,3.0634916,3.0794857,3.110642,3.0342588,3.087685,3.1119084,3.013001,3.1293056,3.1283503,3.1148095,3.0554872,3.0649981,3.0854912,3.0769172,3.061339,3.1447544,3.1235108,3.1048555,2.9534082,2.759005,2.7964542,2.7521791,2.911211,3.122316,3.138279,3.058351,3.0974977,3.0161602,3.016247,3.0990186,3.0240154,2.9893885,2.9902678,3.0928078,3.0887141,3.0530925,3.0174906,3.0873394,3.0211935,3.0059218,2.9894164,2.9722981,2.9896326,3.0341642,3.044986,2.903839,2.8398075,2.922584,2.9313853,2.9489312,3.1562755,3.0646915,3.0556602,3.0974581,3.1593142,3.0539067,3.1067145,3.1441429,3.104166,3.12017,3.117089,3.1903546,3.1192925,3.0767303,3.0345027,3.0406656,2.9592876,3.146726,2.9694088,2.766534,2.6014202,3.0545764,3.231755,3.1493535,3.0668464,2.9948382,3.0004134,3.0148296,3.1676183,3.0553064,3.1074193,2.960398,2.7945063,2.9696536,3.2118082,3.1573362,3.1665967,2.9459634,3.1157641,3.1768117,3.1249285,3.2308307,3.2058315,3.141816,3.149781,3.191726,3.1261566,3.0819116,3.1645505,3.0982673,2.9805508
+1.9863397,2.5641458,2.5969203,2.1371393,2.0848284,1.7885102,1.9841666,2.233739,2.483128,2.235024,1.913134,2.3736484,2.624908,2.7971113,2.8694744,2.7248545,2.559448,2.1564727,2.5537453,2.5884361,2.291462,1.8185616,2.4455404,2.521213,2.452018,2.2926517,2.307905,2.4100342,2.4598777,2.3936152,1.9383513,1.8140559,1.866185,2.0193613,2.0673542,2.0446403,1.6401451,2.1225045,2.1752787,2.15351,2.035354,1.772229,1.4578378,1.6615219,2.0581584,2.0847604,1.939498,1.8490438,1.6946151,1.723668,1.4973519,1.4907173,1.4941553,1.4551592,1.3023714,1.3317795,1.2015138,1.2099757,1.1431127,1.1630855,1.2631932,1.36765,1.0293255,1.2329559,1.196182,1.7984415,1.9832841,2.1072762,2.2736826,2.33214,2.1871052,1.8517051,2.0531611,2.1252878,2.0390713,1.6712755,1.6292436,1.6151719,1.4270369,1.3021698,1.1947885,1.3297955,1.4107223,1.445492,1.3021045,1.1195427,0.99951243,0.9239019,1.3835475,1.4838319,1.5201955,1.2765105,1.4774511,1.3955433,1.212256,1.1280714,0.96775067,0.8572209,1.0755773,1.2345433,1.7281501,1.6393961,1.4241371,1.2240576,1.1578606,1.2317597,1.3360298,1.2443395,1.0873312,1.3431373,1.3453212,1.0677754,0.88292766,0.9559439,1.0711938,0.84583676,1.2106187,1.1643302,0.96460444,1.0254489,1.0708027,1.0110617,0.7663765,0.8322517,0.80123127,0.8473011,0.75255007,0.80063033,0.9585346,0.9606383,0.8624413,0.76058763,0.7597511,0.6019889,1.1467584,1.1041553,1.3023549,1.1118938,1.6205267,1.4180124,1.4044099,1.2916439,1.1080518,1.9432312,1.7704723,1.5510879,1.320497,1.3877044,1.4581399,1.2587986,1.5018795,1.4184995,1.4135869,1.814082,1.7540299,1.885081,1.6064248,1.4880471,1.2685695,1.1463714,0.9920927,1.4475462,1.31829,1.3636309,1.7623334,1.447691,1.292758,1.4677323,1.1918716,1.2909677,1.307319,1.4336325,1.3808756,1.2856135,1.3937713,1.3116732,1.6650441,1.6309233,1.3182497,1.1184944,1.3651185,1.3480724,1.2533687,1.0822648,0.84860265,1.1349087,1.1565661,1.0245563,1.0419545,1.0448277,0.9494815,1.9250932,1.8571439,1.6518178,1.4083155,1.2817678,1.7260367,1.4216421,1.0381508,1.53457,1.4229486,1.5390035,1.873905,2.2039852,2.4306703,2.6053925,2.57916,2.670865,2.486599,2.2412615,2.3540444,2.0681653,2.302538,2.5649137,2.3761892,2.0189857,2.1612325,2.4228868,2.4740615,2.2292633,2.4968855,1.8971457,2.2100546,2.5266185,2.2303488,2.510707,2.1016138,2.3866072,2.369605,2.0236416,2.257222,2.38905,2.3401885,2.3036504,2.544163,2.3349495,2.1455393,1.9938524,2.2492495,2.2733293,2.3743236,2.4309573,2.1230261,2.10119,1.9650894,2.4470778,2.7288122,2.7100618,2.0534348,2.3350947,2.134922,2.2047153,2.3300114,1.9228961,1.7567883,1.6601803,1.7896311,1.7731528,1.672255,1.6214608,1.5849218,1.62781,1.6109011,1.5542696,1.5985281,1.6487044,1.5980725,1.6642443,1.7418346,1.4981462,1.6616877,1.8597078,1.6206416,1.7134476,1.5638263,1.8364928,1.7009981,1.5777498,1.6930124,1.7319955,1.6696297,1.5940052,1.5093797,1.3937194,1.3008049,1.5184627,1.7056973,1.970568,1.5781083,1.5398307,1.5000482,1.5336736,1.6945395,1.8727233,1.8647321,1.9918058,2.3672116,2.2932074,2.0152037,1.9731791,1.9539026,2.0094848,1.8965325,1.8544912,1.7845242,1.651436,1.6017021,1.7114686,1.6716319,1.6266717,1.6307567,1.7067835,1.5799658,1.6998599,1.6811907,1.5866964,1.4645523,1.4259312,1.6949966,1.5906749,1.5744734,1.7902598,1.7926663,1.7869561,2.1693065,2.3317509,1.9076891,2.2464304,2.32055,2.4448762,2.001791,2.3629076,2.463098,2.530181,2.1559448,2.5541987,1.9256523,1.8069446,1.7452743,1.7157487,1.7887107,2.2116385,2.5555515,2.365749,1.688082,1.5640295,1.5404062,1.4817581,1.6010511,1.7699599,1.8626217,1.8980114,1.9454917,1.9414394,2.24579,1.9598148,1.7656767,1.7148602,2.290493,1.9296348,1.9755433,2.3780584,2.651063,2.745251,2.343039
+2.044066,2.8161469,2.2998672,1.7998812,1.4688792,1.2050426,1.7941122,2.045343,1.3420577,1.0414172,1.548156,2.250131,1.7933553,1.6772403,1.927915,2.1826785,2.3661478,2.5188932,2.5103772,2.4333644,2.3668897,2.250474,2.4601588,2.1803508,1.9773803,2.26929,2.3475966,2.1927314,2.2277298,2.2127347,2.314464,2.7686222,2.7828145,2.8009906,2.8895922,2.7376084,2.5858064,2.6341212,2.9140239,2.860889,2.749755,2.6759055,2.3379536,2.5790472,2.7710676,2.79953,2.7386112,2.78164,2.5406933,2.5766857,2.4304852,2.2934237,2.3992078,2.4348025,2.2677588,2.277189,2.2391825,2.260334,2.6109421,2.8124585,2.9092932,2.8651414,2.4511678,2.6111197,2.6952395,2.7741585,2.9666357,2.9818783,2.9339705,3.051517,2.94451,2.9111671,2.9791827,3.0454745,2.9437962,2.7902625,2.6337023,2.5645056,2.310109,2.1558716,2.0073068,2.6758852,2.7352498,2.6953235,2.5924852,2.3030734,1.970561,1.9285514,2.2707784,2.337728,2.428778,2.1730895,2.2692714,2.3412123,2.1453352,1.7718918,1.7279654,1.6427088,2.1617959,2.7726228,3.1498322,2.9288402,2.7716956,2.6278038,2.776132,2.9078712,2.8454657,2.6471176,2.402677,2.6829908,2.6578672,2.3336916,1.878947,2.1740952,2.4080067,2.1720188,2.526065,2.4226685,2.150993,2.0525603,2.0236983,2.0369008,2.651492,2.4570384,2.451457,2.1579924,1.9459774,2.034998,2.3214803,2.2260842,1.9738946,2.2559798,2.4409568,2.2715244,2.9247093,2.919887,2.8955514,2.6186543,3.063674,2.815922,2.7376187,2.6451545,2.6436696,3.0164075,2.9269824,2.637683,2.3958898,2.3114905,2.5557308,2.2353692,2.3899639,2.4321842,1.9186115,2.1278732,2.134862,1.9993416,1.6972849,1.5548877,1.5002191,1.3943043,2.0768874,2.8556716,2.6450634,2.6378324,2.8838558,2.5206811,2.3057158,2.6946418,2.216299,1.7147474,2.4663157,2.9622974,2.8163824,2.757077,2.594216,2.344149,2.5695338,2.4087162,2.0842319,1.7441195,2.3615444,2.253646,2.1477778,2.0979414,2.3330457,2.8190975,2.7590055,2.755005,2.6941905,2.612583,2.4098616,2.9755409,2.9712377,2.667756,2.462821,2.3417523,2.8254642,2.6710486,2.071063,2.3775887,2.4953332,2.898247,3.0400796,3.3378599,3.393586,3.0273676,3.059826,3.0975173,2.9712496,2.785151,2.8864846,2.682753,2.8033724,2.9626508,2.8716645,2.6498694,2.9227433,2.9593525,2.940446,3.0189052,2.9565284,2.8369236,2.7957492,2.7991607,2.7832525,2.8163977,2.6870425,2.7468832,2.6938367,2.6467876,2.6777234,2.8060713,2.8044143,3.049991,3.044032,2.8911943,2.4616153,1.9895056,2.217699,2.335658,2.3190107,2.475564,2.4080777,2.6038227,2.8048177,2.8075843,2.8817415,2.794097,2.4769423,2.588101,2.5628858,2.5600011,2.2963796,1.7027718,1.3920476,1.7905588,2.0096004,1.5667508,1.5070455,1.3612578,1.3593714,2.1653671,1.7183064,1.4882994,1.4527816,1.5218356,1.48944,1.4787961,1.4788481,1.1839421,1.7939572,1.6343145,1.2096109,1.6480601,1.140823,1.285189,1.1037287,1.4085779,1.7419566,1.1999435,1.0303186,0.98712856,0.9933783,1.0046341,1.0037646,1.4998598,2.3816988,2.143534,1.1161764,1.1704592,1.1775681,1.6184528,1.8777088,1.7464886,1.4740081,1.9709063,2.057269,2.023853,2.2196627,1.7182494,1.6703424,1.8465971,1.5367912,1.3586165,1.3209062,1.1825948,1.2769582,1.3687472,1.2049029,1.0972164,0.9553058,1.0679953,1.053225,1.7150856,1.4205011,1.1163672,1.0026697,1.366235,1.673497,1.2697225,1.387566,1.4587281,1.3103976,1.2589735,1.6739477,1.5830734,1.2566569,1.7719522,2.0335684,2.1397266,1.98867,2.4502797,2.081908,2.5904088,2.4055774,2.8555727,2.0490363,1.3777733,1.2409666,1.0028754,1.6499438,2.0943487,2.2518878,1.7326118,1.2738599,1.0248233,0.9466013,1.1713147,1.2670697,1.1481996,1.1333294,1.156668,1.1966063,1.2550915,1.37286,1.2377598,1.0809553,1.049645,1.5166254,1.0532192,1.5685976,1.6989179,1.511982,1.1041565,1.3621521
+1.1784357,1.4540621,1.7053092,1.2022092,1.4273738,0.9060176,1.5396082,1.4374006,1.543632,1.6402733,1.0063174,1.0559826,1.826963,1.8952127,1.9395378,2.0091286,1.9858086,1.9212052,1.9027098,2.0558538,1.6268067,1.1258729,1.5787418,1.924073,1.4615216,0.9800414,1.4799479,1.6292984,0.95137966,0.9023984,0.7684715,1.1811666,1.1740048,1.0374335,1.3930851,1.3650997,1.2288477,1.4664748,1.9109387,2.0833173,1.8499404,1.7446383,1.1220171,1.4799248,1.7781799,2.0055814,1.6187215,1.8766291,1.6536324,1.8272424,1.4107059,1.312925,1.508986,1.7094285,1.669893,1.4017606,1.1151302,1.3223219,1.4009583,1.4077563,1.8214192,1.9591208,1.5103157,1.3434372,1.5411656,1.7237854,1.9360867,1.8777618,2.2357578,2.2881966,2.475142,1.9304079,2.2287242,2.4608407,2.4077222,2.1140087,1.5928502,1.9992038,2.035829,1.7687072,1.6010889,1.7619879,1.8114388,1.6903487,1.9218357,1.5805781,1.2797339,1.1069363,1.4328129,1.7173889,1.7924321,1.3109288,1.8660467,1.7995698,1.5248778,1.165628,1.4005973,1.240872,1.6237736,1.453155,1.8071804,1.9972229,1.6067092,1.219178,1.1867967,1.4542203,1.5294869,1.7789284,1.4179604,1.8150363,1.810138,1.526289,1.2035568,1.4048126,1.4788662,1.5061128,2.0811265,1.8306909,1.5085379,1.7157619,2.1810834,2.450399,1.9719781,2.017212,1.9425075,1.7282078,1.5211642,1.5075082,1.8687236,1.6939652,1.4450539,1.2496781,1.547656,1.7816362,1.7844913,1.9762113,2.0680037,1.6580368,1.9495385,1.8613011,1.9360205,1.7054996,1.7951467,2.4042153,2.0262666,1.707902,1.432984,1.4702239,1.682067,1.2905246,1.3746185,1.4165511,1.0609015,1.3546516,1.6631464,1.462287,1.2808697,1.1369324,1.2789685,1.0724968,0.7585599,1.1810051,1.2469075,1.4786735,1.6000527,1.2454259,1.0833201,1.5565935,1.0879387,0.75497305,0.62497437,1.7206961,1.7425976,1.6583022,1.5826545,1.3281827,1.568208,1.6456994,1.1314183,0.79643226,1.2289884,0.8521427,1.4646976,1.4427965,1.3841002,1.558212,1.5913162,1.5627973,1.4850827,1.399124,1.1233219,1.6441667,1.9585472,1.4352105,1.1301455,1.0444101,1.5182787,1.3422638,0.96149325,0.7598924,1.1437681,1.2228765,1.1273632,1.23769,2.2586613,2.1306577,2.0067017,2.1764162,2.0316708,1.8519804,1.8571762,1.6752377,1.5318179,2.0224013,1.9728348,1.6126513,1.6415933,2.1681843,2.0227275,2.0777407,2.0608315,1.8202281,1.5250888,1.8518895,2.003975,2.0500355,1.8493133,1.8374567,1.2441256,1.2791227,1.4790237,1.6044524,1.6028459,2.0316803,1.8570502,1.8396581,1.6328317,1.1123548,1.2792587,1.2477056,1.477936,1.4449764,0.9334736,1.0291314,1.3839629,1.798897,1.9960978,1.8240552,1.4345345,1.4649305,1.1838858,1.556529,1.7030997,1.4808695,1.1608016,0.88301885,1.0076783,0.89377415,0.9346287,0.74169284,0.6448618,1.4044545,1.2245215,1.0306638,0.90939265,0.78707933,0.81059325,0.8901555,0.89130265,0.6191618,0.89351964,0.9641542,0.58367735,0.83664197,0.5764254,0.78351766,0.62983954,0.82773423,0.9347835,0.6733841,0.42021337,0.30541697,0.32377318,0.3250767,0.31239465,0.6361438,1.1457297,1.1606674,0.8589331,0.67122394,0.6410605,0.63943595,0.8459391,0.9685204,0.9333965,0.8368956,0.95416737,0.8689802,1.2276675,1.3579664,1.2129331,1.5683427,1.5566131,1.4481833,1.3701131,1.0575051,1.007872,0.9549701,0.8747769,0.77410775,0.56975824,0.696926,0.7482455,0.93908525,0.81145483,0.663538,0.48845786,0.92033774,1.1786094,0.8140676,0.73537695,0.83632964,0.6844665,0.7300817,1.1986437,1.1881303,0.88523686,0.95990914,0.9462881,0.7418668,0.6466476,1.6532296,1.687299,1.473115,1.0611459,1.9577599,1.9621422,1.6032982,1.3532114,0.93682873,0.8981784,1.1544299,1.8766732,1.5529022,1.2604077,0.97436833,0.7287156,1.4683623,1.3353451,1.1220993,1.1054072,0.91483516,0.94759357,0.85540307,1.0045,0.8387723,0.68727666,0.68945754,1.1663545,0.9876282,0.9680153,0.8069462,1.5084087,1.3408885,1.1945405
+1.0491745,1.1493597,1.6697569,1.1601188,1.8331258,1.720848,1.2556868,1.6019197,1.4532833,1.8876045,1.4719379,1.2245908,1.884235,1.6868298,1.6686977,1.6379372,1.527118,1.2922785,1.1847419,1.3610135,0.95414865,0.5788453,0.54512507,1.0509275,0.7470426,0.39269954,0.46067524,0.40710235,0.65509903,0.6790914,0.64788884,0.94966173,0.95398796,1.0860187,1.2036752,1.2435777,1.1699346,1.4136795,1.747468,1.4218023,1.2367275,1.1860256,0.97002155,1.1221504,1.4912127,1.6311858,1.0403705,1.0861108,0.9787157,1.0806662,0.7218553,0.92001677,0.98977506,1.2392635,1.1964399,0.9910867,0.765981,0.74885404,0.67810404,1.1358579,1.0689071,1.0630759,0.9202562,0.760857,0.91927755,0.9851699,1.1962026,0.9903352,1.3265741,1.2977836,1.1546742,0.6924826,0.6765105,0.5941284,0.48055726,0.3367143,0.18608455,0.5763539,0.37293085,0.2725763,0.1689808,-0.017587446,0.11256194,0.021977343,0.38109615,0.41598082,0.23702571,0.10963859,0.3088925,0.75843215,0.6232935,0.26972654,0.61981016,0.38784924,0.19462988,0.8040565,0.5797475,0.3500259,0.39525425,0.44657758,0.896245,0.7304052,0.47323114,0.3077326,0.6758978,0.655708,0.5397826,0.4732142,0.2777053,0.50653046,0.52277505,0.28054795,0.10541014,0.0307642,0.09101913,0.345451,0.7902149,0.6186346,0.33796364,0.7686791,0.60090476,0.93817914,0.75636417,0.8035506,0.9002571,0.73373187,0.53969616,0.5578788,0.90137017,0.72295487,0.55758613,0.233969,0.27999642,0.41432145,0.586955,0.5181402,0.6131466,0.4519961,0.5667589,0.60314274,0.67424,0.5846308,0.43055424,1.063268,0.84882224,0.6302129,0.3954563,0.34944773,0.40528437,0.2771468,0.18623978,0.25773662,0.014062576,0.09226706,0.6023799,0.38809848,0.35350558,0.24596101,0.1893625,0.04707446,-0.05993723,-0.06545963,-0.13779336,0.27348262,0.35145733,0.12767327,-0.021120928,0.09650513,-0.002833195,-0.08755415,-0.15632796,0.4847054,0.88167816,0.8483481,0.82123613,0.6735814,0.52012354,0.68970263,0.5323202,0.28743643,0.40884465,0.40130693,1.038862,1.033608,0.96010303,1.0567089,1.1267016,1.1290864,1.0838974,0.94978046,0.78954303,0.89028513,1.2846832,1.0683547,0.8343781,0.738981,0.9728692,0.9138566,0.6390127,0.5163362,0.48448774,0.49931872,0.44970798,0.29953432,0.95909107,1.2440355,0.9398121,1.0572469,0.86754227,0.5448498,0.98915696,1.2694305,0.7517835,1.2392365,1.2465951,0.95102215,1.0272698,1.2724445,1.2890985,1.1131728,1.215697,1.1022793,0.7655839,1.3159068,1.3577712,1.4878988,1.3947415,1.3262839,0.9610503,1.0924885,1.1160687,1.1191143,1.0553447,1.1429571,1.2301666,1.175081,1.1900507,0.8689413,0.7810452,0.96315724,1.0856603,1.0797598,0.92738295,0.92776847,1.122666,1.517677,1.5627172,1.5007659,1.0410947,1.2170062,1.0118469,1.5702747,1.7759047,1.6727709,1.397955,0.91285586,1.4408641,1.3841789,1.440545,1.141005,0.7828671,1.016947,1.4332048,1.194494,1.1313494,1.2160025,1.2979777,0.8987974,1.3933337,1.2668638,1.0409381,1.5776616,1.061991,1.5248293,1.4818845,1.4336097,0.9286705,0.863855,1.1896563,1.8067786,1.2677919,1.2110069,1.1095324,0.9539838,0.8110846,0.8585322,0.85657334,1.3078327,1.4772145,1.3887155,1.3876497,0.85116655,0.7772182,1.2847075,1.1615614,1.2100364,1.3690709,1.1650518,1.2550801,1.5506787,1.5275321,1.8086672,1.7795663,1.6751013,1.6694169,1.4567986,1.3594965,1.4261887,1.583761,1.3841109,1.1790369,1.3034859,0.68986297,1.0311642,1.3532045,1.4522034,1.3550794,0.8492416,1.5326366,1.6132767,1.5075252,1.5874584,1.456089,1.4375808,1.3960288,1.5999962,1.5522622,1.1481221,1.0852221,1.1161603,1.0286033,1.7297318,1.7420051,1.2609109,1.0909841,1.7823042,1.8260169,1.6759669,1.4101312,1.2006514,0.62186575,0.96391046,1.7660182,1.176779,1.4455448,1.3454969,1.1791911,1.2251632,1.3370342,1.3007107,1.3053803,1.1116289,1.267705,1.416431,1.2026143,1.5642779,1.4013066,1.3177891,1.0745113,1.1693254,0.82616556,0.8461338,1.411001,1.5639781,1.7053839
+1.7554696,2.0028503,2.5439246,2.4364424,2.531894,2.398172,2.158011,2.6078281,2.6503801,2.6843252,2.3452134,2.2624197,2.6177633,2.4302661,2.3610423,2.2502646,2.0936222,1.7832545,1.5522553,1.5927594,1.2950542,1.0124133,1.1429224,1.5142288,1.1772069,0.94765043,1.0300713,1.5159416,1.6598551,1.6733024,1.7461429,1.9992534,2.342098,2.6207294,2.3471642,2.6038296,2.476076,2.3805876,2.131163,1.8717309,2.0975544,2.0258641,1.9865272,2.0847185,2.3594382,2.2376237,1.6607299,1.9097644,1.878648,1.7771002,1.9989468,2.2360587,2.0232036,2.0580022,1.825988,1.5184563,1.2591734,1.0519984,1.1150848,1.559973,1.8331623,1.6459819,1.4696919,1.2967672,1.1060336,0.99853045,1.1389104,1.0816087,1.031738,0.9161588,0.7654322,0.5084574,0.4920051,0.64780915,0.4942428,0.35846424,1.3864245,1.5307531,1.4521066,1.1512098,0.8937319,0.82472044,1.2812468,1.1172957,1.3962487,1.522682,1.2502509,1.0099987,1.4116526,2.208844,1.686691,1.3066795,1.5893149,1.4253778,1.4697049,1.4482523,1.3074629,1.1314986,1.0221617,1.0060521,1.0080216,0.9007978,0.7845988,0.63103664,0.94219804,0.8066296,0.7202096,0.69209445,0.9219992,1.073908,1.0152688,1.0349141,0.7553845,0.62951577,0.64189047,0.5419807,0.8415668,1.0080166,1.4322941,2.1072617,1.6449752,1.6301467,1.7096397,1.9266422,1.7883344,1.5982857,1.3113532,1.4621676,1.505239,1.366961,1.154851,1.0061867,0.8222861,0.73754495,0.7016326,0.6651815,0.7022282,1.0361407,1.1308099,1.4268882,1.3956511,1.2364736,1.4252758,1.8005893,1.6081533,1.3489559,1.0832835,0.9086151,0.9734332,0.9480314,0.84852123,0.85317045,0.7188024,0.87828743,1.367152,1.1645539,1.3953762,1.3361337,1.168891,1.000387,0.7859852,0.78474844,0.7148696,0.73595077,0.93261373,0.8055035,0.66453856,0.73290163,0.7414261,0.70291233,0.5859611,1.1594361,1.7466546,1.6076058,1.6651936,1.5317781,1.4266843,1.4849594,1.3006684,1.4650434,1.8678,2.57965,2.7142904,2.3730733,2.2420964,2.095178,2.0049577,2.001016,1.8699373,1.7751763,1.673613,2.6508293,2.6274912,2.247847,2.083588,1.8893573,2.0126278,1.7977257,1.646669,1.51192,1.4064374,1.3169343,1.3357612,1.2562306,1.5868161,1.8478675,1.6074256,1.7480826,1.637969,1.160208,1.4523582,1.4702566,1.2212694,1.4438454,1.3228694,1.1454458,1.1000156,1.2572592,1.3663259,1.2738388,1.3881382,1.2345014,1.0362943,1.5059874,1.409752,1.5815308,1.3984604,1.2463605,1.1190248,1.2757087,1.3175104,1.320702,1.2018453,1.4370135,1.3519683,1.3530042,1.3676562,1.0324464,1.0641065,1.1421436,1.2634757,1.1936903,0.9218563,1.0771682,1.2603151,1.6680087,1.5656412,1.5010023,1.5465703,1.9799104,2.157605,2.1650136,2.3753583,2.1702108,1.844723,1.6783489,2.1082292,2.0275187,2.2787962,1.7516038,1.6452253,1.8476768,2.3374557,2.0775456,1.9597081,1.8931841,1.9600967,1.8232825,2.1866112,2.0901656,1.7819498,2.3031645,1.8602667,2.3034503,2.165985,1.8922336,2.066015,2.10443,1.9788494,2.4117947,2.0445783,1.7864051,2.0233788,1.4165013,1.203882,1.6497879,1.7681351,1.9422,1.9116051,1.9322454,2.1911764,1.7475655,1.7824045,1.977983,1.9356289,1.8523831,1.7546711,2.431849,2.4228384,2.29767,1.991852,2.3220506,2.2825723,2.167044,1.9828359,2.0618663,1.912939,1.9425764,2.0383604,1.9570658,1.6925741,1.7977266,1.6070466,1.6848308,1.9094383,2.2067852,1.712606,1.6809546,2.0885344,1.9772316,1.867836,2.2799783,2.1059988,1.8514386,1.7395834,1.9603872,1.8395904,1.6116023,1.5984287,1.6243637,1.6806902,2.1673281,1.9811165,1.7263818,1.8602916,2.3003073,2.3062224,2.244844,1.9449995,1.606571,1.4516773,1.656387,1.9223399,1.6312466,1.8890889,1.7412468,1.492029,2.4929986,2.5866718,2.5166695,2.4016132,2.2372446,2.382824,2.6049466,2.1947157,2.5437603,2.3734329,2.177981,1.9476701,2.0587294,1.8092153,1.7063997,1.879107,1.7965965,2.2024438
+1.5829036,1.741642,1.8662748,1.0220354,0.7490877,0.6579664,1.1773062,1.1951218,1.3900366,1.2367944,1.0894586,1.4620056,1.7682357,2.1216974,2.2203078,2.2182057,1.9548551,1.516289,1.7142415,1.8597052,1.623386,1.2451665,1.815879,2.0589218,1.9651359,1.4582278,1.7956487,1.8243712,1.8674431,1.855661,1.219411,1.4133346,1.499895,1.3522159,1.4772682,1.5702293,1.2801998,1.3964236,1.723794,1.739665,1.6038492,1.379795,1.1231962,1.2031062,1.2291393,1.5281961,1.4346051,1.3665488,1.1674584,1.29445,1.2057978,1.1395466,1.1346201,1.0988399,0.97648877,1.0573386,0.85327446,0.914241,1.0254807,1.2980591,1.3201642,1.2913734,0.98262936,1.0699309,1.1074249,1.3687439,1.5345349,1.4316667,1.448868,1.4482319,1.367572,1.1563327,1.216913,1.4170508,1.3812054,1.1834998,1.1561185,1.1344105,1.0226779,0.92011976,0.87850374,1.0333833,1.2759259,1.2630123,1.1760777,1.0271375,0.9019116,0.9555058,1.3378221,1.5788125,1.4254465,1.2086053,1.1629137,1.1369514,1.0440904,1.0096763,0.88961095,0.8068124,0.88814616,1.2403119,1.5390141,1.4548578,1.2200158,1.0045183,0.95210123,1.0143002,1.0284117,0.9563565,0.96426034,1.1745237,1.0910712,0.9336468,0.8678007,1.4084299,1.354861,1.041493,1.0414767,1.0908867,0.9097092,0.9618256,0.9195806,0.8507743,0.7350444,0.82596517,0.7498972,0.6785288,0.60320973,1.0193573,1.1655593,1.1021526,0.9860482,0.785475,0.74657524,0.958608,1.2894589,1.3066499,1.2886575,1.1611202,1.4910116,1.2476597,1.1663687,0.9887897,0.8908936,1.3335068,1.1897289,1.0046053,0.9114263,0.9153061,0.9301888,0.81332505,0.9058981,0.84559035,1.1202209,1.3131621,1.2335451,1.1505567,1.0260996,0.94786716,0.9174077,0.81475145,0.84613395,1.105857,0.99439514,1.1999046,1.287758,1.0884286,1.1052905,1.2629107,1.1180602,0.9062916,0.9265157,1.0224906,0.9607474,0.94645226,0.8918798,1.2162337,1.3807056,1.3372567,1.2036047,0.97363204,1.0666709,1.060491,0.96112,0.8613037,0.8206342,0.9725821,1.0361837,0.9623665,0.93896794,0.90510625,0.98222065,1.4002519,1.4072292,1.2639457,1.08892,1.0022117,1.3274109,1.237864,0.94198567,1.1023141,0.9463159,1.3209653,1.4074968,2.2808924,2.5040689,2.1373863,1.9508827,1.9006554,1.6809537,1.2962197,1.3955104,1.4176874,1.5945351,1.7185149,1.5781714,1.3364145,1.4277803,1.7890112,1.6490915,1.5772035,1.6451662,1.4718287,1.4143963,1.5261679,1.3959852,1.7223542,1.5188417,1.5484791,1.4686935,1.2875457,1.5019904,1.5296527,1.4469632,1.7763667,1.6418858,1.5137829,1.4539937,0.9411917,1.1555148,1.185232,1.3546529,1.443953,1.1029063,1.1836579,1.3628561,1.4986229,1.6780348,1.7423677,0.9319721,1.408359,0.9820263,0.9496709,0.9092473,0.57862747,0.4638367,0.50988394,0.60326004,0.5624478,0.5882242,0.7937429,0.5861466,0.83272266,0.86295915,0.69737345,0.79233146,0.82204914,0.8899604,0.9318447,0.9580913,0.71461934,1.2440658,0.953098,0.69184405,0.9269915,0.72818834,0.9035268,0.85002124,0.9226688,1.1510525,0.9673244,0.7837783,0.73612845,0.73814726,0.846246,0.6563841,1.0643352,1.4084549,1.2836134,0.94881123,0.91714096,0.857186,0.90086794,1.0036355,1.1525946,1.1004112,1.2053511,1.3544003,1.3736024,1.0662051,1.1769991,1.1967027,1.1951395,0.99492395,0.9074637,0.8548868,0.82514095,0.7390275,0.917192,0.8684405,0.94289565,0.83369404,0.97677475,0.74625313,1.0578964,1.0094763,1.0075765,0.6927015,0.9220047,1.0236839,0.8644842,0.8809887,1.028736,1.1123581,1.0896086,1.4634182,1.5457482,1.1231588,1.4439483,1.559797,1.4365288,1.609757,1.555078,1.4218142,1.5718892,1.3538322,1.4615645,1.2002244,1.1216488,1.1566951,0.7857733,1.2169981,1.4824135,1.4136672,1.1124835,1.0398786,1.0686255,1.108146,1.0886263,1.168922,1.1324232,1.2374374,1.2451898,1.300574,1.3582641,1.4467885,1.3948674,1.2897737,1.2696414,1.4238914,1.2492799,1.3590144,1.4539945,1.7570438,1.7931156,1.2563932
+0.97143435,1.9344053,1.8634487,1.3357441,1.4296808,1.0150073,1.2570481,1.2393761,1.5636239,1.6137896,1.1190925,1.061273,1.6419284,1.6685272,1.796983,1.841938,1.7283106,1.6775589,1.5765226,1.6995366,1.2751434,1.0150181,1.2520409,1.4968243,1.1402255,0.97720623,1.1726849,1.5114305,1.0205956,1.1556518,0.85892904,1.0303444,1.1333607,1.2531767,1.4700427,1.5154518,1.3536102,1.4988469,1.9006361,2.0115569,1.7458421,1.644999,1.2125351,1.4345577,1.8079371,1.9999679,1.481538,1.7455626,1.4165044,1.7284224,1.2881383,1.3983899,1.3949027,1.3278344,1.2278987,1.1853983,1.085508,1.0249975,1.0559989,1.4002845,1.219275,1.5741043,1.2415236,1.1660118,0.99241686,1.2652985,1.7073317,1.8052481,1.8471162,1.866863,1.81829,1.2804269,1.365598,1.6090076,1.4439564,1.1681323,0.76130795,0.98296916,0.8578883,0.6231759,0.4518628,0.48565865,0.6153866,0.47915244,0.6950449,0.49231577,0.26409423,0.44734743,0.61549294,1.3762167,1.3973197,0.9451604,1.4968777,1.3576199,1.1138184,0.9967478,0.89374673,0.9087811,1.4602208,1.697892,1.9758322,1.5672158,1.3287299,1.0174686,1.0459896,1.1019534,1.063787,1.2936127,1.1916461,1.5578325,1.443192,1.1009548,0.8074348,1.0066017,1.1219847,0.9244994,1.4532859,1.3161451,1.0444078,1.158722,1.4766688,2.1052556,2.2031684,2.1609473,1.8284407,1.5324435,1.2753098,1.1578215,1.3659936,1.2482074,1.0131745,1.1948028,1.5247618,1.547678,1.6333519,1.9161257,1.7808297,1.4839337,1.4808779,1.5721607,1.3751451,1.125934,1.0774442,1.8669456,1.5821822,1.0915241,0.8713519,0.9038222,1.1135243,0.71854794,0.8197934,0.87234545,0.6552097,0.9458345,1.1981649,0.90976,0.83019096,0.7292837,0.5705243,0.5598636,0.38853335,0.6034309,0.7808384,0.892215,1.1525216,0.5787645,0.51433146,0.9515109,0.48252437,0.19455662,0.0993571,0.57896715,1.1910415,1.099978,1.0041747,0.75144887,0.8994485,1.1204512,0.6064977,0.5858727,1.0005254,0.9272394,0.9175872,0.99325,0.8112744,1.0051595,1.0546908,1.0808146,0.85852015,0.7809108,0.5595573,0.7975255,1.2074115,0.7593168,0.27332705,0.36595833,0.96056426,0.66517055,0.26076686,0.30416736,0.26687354,0.44862932,0.593792,0.4047593,1.6790904,2.092228,1.6313992,1.7991203,1.6496978,1.4957931,1.6678331,1.4539322,1.372286,1.8108163,1.6126306,1.3483319,1.4832255,1.984225,1.8261459,1.7999622,1.8000247,1.5456319,1.2585428,1.5081593,1.6170369,1.7506099,1.4160635,1.450325,1.7584292,1.6624676,1.7890913,1.8707763,1.8036785,2.1857424,2.0681686,1.9557877,1.8050864,1.2312963,1.1439408,1.2498118,1.5576375,1.4994408,1.5608089,1.7195636,2.04165,2.1437595,2.3156433,2.110672,1.5504959,1.5903752,1.4012738,1.6535494,1.8729448,1.6593083,1.2526094,1.1196675,1.3961022,1.1321532,1.0825242,0.8824747,0.9645531,1.459167,1.1643751,0.96114826,0.8677699,0.94382113,0.93832946,1.0069063,0.96817315,0.5572744,0.87496257,0.8013782,0.6310853,0.89052296,0.7093562,0.8061091,0.7701196,0.84397316,0.7297363,1.0907859,0.84204483,0.80109143,0.57879037,0.5299179,0.52771056,0.85936594,1.2219476,1.1376438,1.5391879,1.2206228,1.1483841,1.015071,0.9367303,0.96294683,1.0922086,0.8479695,1.0709771,1.4513019,2.026901,1.7497451,1.6034279,1.9495558,1.9236255,1.6958828,1.6428978,1.168935,1.158389,1.1636467,1.0124462,0.92615247,0.75462717,0.9818623,0.7674583,0.75587296,1.0328656,0.9122403,0.49486732,0.89871585,1.1700199,0.75203854,0.60394406,0.80504835,0.6675983,0.6273539,1.1715566,1.1266418,0.7027128,0.91053426,0.84415376,0.88766813,0.9523451,1.55007,1.4847565,1.2930331,1.0885758,1.8040724,1.8530505,1.3516881,1.1170728,0.9564743,0.82476217,0.7409235,1.4718047,1.1798904,0.9498785,0.7455549,0.6542245,1.3605864,1.4333034,1.2179763,0.9704846,0.85965073,0.97168183,0.88520455,1.0969048,0.8290955,0.51763994,0.5958038,0.96591985,0.6567167,0.8801009,0.76269174,1.0825139,1.3370662,1.2083931
+2.0219405,2.2768924,2.163442,1.1656682,0.9888485,0.72554135,1.4276443,1.5124981,1.6062639,1.3590728,1.0611329,1.9169908,1.9902086,1.8355355,1.9168564,1.9574883,2.0620844,2.2770312,2.2924051,2.3084774,2.0433328,1.8928457,2.3476207,2.121854,1.8807598,1.9619515,2.0570679,1.8810235,1.740401,1.6826389,1.551752,2.3180556,2.139742,1.9290202,2.2688074,2.1765604,2.1394491,2.1805146,2.5492315,2.4560554,2.3197684,2.2291377,1.884736,2.4503772,2.5827718,2.5847168,2.4845986,2.3523512,2.0322545,2.3959694,2.1068254,2.0411458,2.2440085,2.2416496,2.5235999,2.346301,2.0417542,2.0235841,2.060123,1.8266187,2.31338,2.2410874,1.8091583,1.7572272,1.985983,2.2528503,2.8654537,2.3428087,2.6313572,2.6003463,2.5537364,1.9369682,2.4997046,2.5849962,2.4145443,2.2459059,2.126227,2.2267556,2.0809536,1.851984,1.7434642,1.8881817,2.2703874,2.4031343,2.2811985,1.9653205,1.7930683,1.6198828,1.6901357,2.4991674,2.668124,2.203107,2.8723826,2.6558697,2.440664,2.1423554,2.2383337,1.9624214,2.2901788,2.7149324,2.6516063,2.7269688,2.4978545,2.1467657,2.0096016,2.4592772,2.430696,2.446569,2.4168928,2.6515276,2.5805879,2.2868161,1.9818876,2.3564703,2.8149338,2.2730305,2.3502495,2.2905812,2.086793,2.562467,2.4168746,2.3313518,2.7006364,2.8278823,2.634758,2.3953834,2.1666915,2.0821702,2.6141431,2.402438,2.2052743,1.939201,2.469864,2.2657652,2.5208175,2.8349175,2.8088484,2.459356,2.5680697,2.565559,2.535891,2.2476602,1.8696686,2.988161,2.7185898,2.3409204,2.1098776,2.2247088,2.5731654,2.0734625,2.1734014,2.4519832,1.9778533,2.1924205,2.2807202,2.11545,1.9992349,1.9813118,2.0023665,1.8207237,1.742651,1.9211574,2.224784,2.1682656,2.7379017,2.186077,2.114198,2.6534457,2.0277903,1.7027366,1.6531904,2.5462954,2.7834506,2.5199711,2.3983939,2.2328112,2.7369409,2.739666,2.2378845,1.7784669,2.4579523,2.3758726,2.097559,1.9473661,2.0770998,2.117722,2.1973205,2.2064214,2.0556362,2.082612,1.8487918,2.118732,2.7005339,2.0479188,1.628229,1.6590405,2.483866,1.9340813,1.5265095,1.7332524,1.7902923,2.386473,2.5158143,2.65692,2.7643452,2.8086724,2.7420254,2.438168,2.1387677,1.5970119,2.681658,2.1068354,2.0659282,2.5145755,1.9796736,1.6834486,2.0838122,2.7134008,2.3657143,2.2177343,2.2890046,2.0112865,1.8227634,2.0058227,1.9030331,1.9871895,1.7391894,1.7994092,1.8995175,2.0429792,2.409309,2.4500065,2.0729506,2.152516,1.9216554,1.8047748,1.7294525,1.1460813,1.161385,1.3824155,1.5531545,1.5901816,1.3422477,1.7461631,2.3900137,2.1246347,2.1471786,1.9886711,1.1805159,1.4689142,1.0736423,1.1152745,1.3049785,0.94470567,0.6709696,0.9114723,0.93902594,0.7587534,0.7726792,0.7871282,0.59283423,1.3710693,1.0613369,0.81262505,0.83751637,0.82856333,0.9428055,0.9239613,1.1581807,0.7903241,1.3690186,1.2220168,0.8559551,1.1374538,0.739692,0.9344281,0.8063616,0.92998886,1.3136911,0.90648645,0.7579577,0.7276384,0.7729443,0.7537681,0.64275575,1.0604929,1.2559732,1.3327774,0.8507529,0.79124624,0.793278,0.7795348,1.0144169,1.0798241,0.9411279,0.99487185,1.1909273,1.0383822,1.2441448,1.547703,1.0805913,1.3173785,1.2490344,0.91821295,0.87014574,0.7905011,0.6629838,0.76629674,0.77355725,0.81617266,0.69395274,0.97051644,0.6704986,1.1548173,1.0905385,0.9534408,0.6249213,0.7800447,1.0451696,0.92492914,0.8074975,1.2225068,1.0035418,0.87061167,1.2869433,1.4069908,0.9685205,1.0982136,1.3219482,1.5455348,1.4968623,1.9016724,1.4001924,1.2256837,1.2172556,1.7062031,1.2085233,0.87194026,0.8290485,0.73557943,0.6709237,1.1266676,1.2905523,1.0716466,0.86166275,0.73663056,0.76831174,1.0991377,0.94937104,1.0414364,1.0746937,0.99434114,1.0223515,1.1713605,1.3173206,1.1851921,1.1559434,0.836438,1.4915104,1.0169879,1.2563154,1.5665576,1.6715796,1.4543772,1.2226532
+1.2259653,1.6676524,2.2074409,1.7109838,1.6985518,1.2464659,1.6504397,1.9659404,2.0535824,1.8866875,1.577034,1.5598749,2.0938299,1.8781362,1.7678709,1.6807852,1.540566,1.4312402,1.4099965,1.4920696,1.2722299,0.98877877,1.3964972,1.705373,1.4428315,1.3346678,1.6573731,1.624125,1.4522398,1.295083,1.1089019,1.4365797,1.6563243,1.8118161,1.7817264,1.6140692,1.6084294,1.6539202,1.8621138,1.8506758,1.6261661,1.5487304,1.2056565,1.5000805,1.5023205,1.697243,1.4224309,1.4605191,1.3525013,1.321031,1.1865954,1.2482767,1.1967946,1.113242,1.4045168,1.2696524,1.1141193,1.0164713,0.9956071,1.4300587,1.6283889,1.5648851,1.4329934,1.1724269,1.2305615,1.2119137,2.160204,1.4931402,1.6042541,1.6346544,1.4946268,1.256208,1.6612827,1.6191905,1.4852779,1.3213816,1.1863326,1.1974037,1.1025817,0.9737508,0.9044883,0.86089766,0.9585887,0.87855446,0.85656214,0.80980337,0.65861994,0.5921799,0.53722364,0.9063718,1.021751,0.69892097,1.8086023,1.32272,1.1406697,1.1224096,1.2725198,1.200182,1.3657684,1.252765,1.3608001,1.4191496,1.2351519,0.9649989,1.0686892,1.2419147,1.1794982,1.004016,0.97351646,1.255572,1.2262073,1.0236874,0.7638074,0.8680492,1.055036,0.73329616,0.792057,0.8537632,0.7084863,0.72300136,1.0960064,1.132103,1.7321619,1.7849653,1.6136812,1.4330275,1.220503,1.019072,1.2032104,1.0994503,0.9612115,1.0740031,1.5372727,1.3070165,1.3813272,1.5943875,1.4231548,1.3157787,1.2548432,1.2263668,1.0908743,0.91777825,0.8405973,1.9740552,1.6459496,1.3570011,1.1614683,1.0725231,1.1516085,0.92655814,0.92637885,0.9456001,0.72590023,0.83678675,1.1075115,0.9253966,0.87754154,0.83179176,0.7265477,0.70722324,0.7859883,0.74873006,0.8879448,0.9765347,1.2709808,0.99287504,0.7759099,1.0046813,0.8273771,0.7060108,0.53693366,0.73813593,1.1913824,1.1329705,1.0214024,0.83870864,0.96277934,1.3291061,1.1785781,0.92966115,1.3992021,1.3457053,1.172049,1.2924826,1.3575343,1.2182661,1.1916077,1.2607763,1.1150801,1.04412,0.82764184,1.4908156,1.9654732,1.6327196,1.4225305,1.2524024,1.5220097,1.4379525,1.1543853,1.0864959,0.97202444,1.0013633,1.0577645,0.79884434,1.6528256,1.7481546,1.5443782,1.6801423,1.644695,1.6353853,2.011818,1.8315814,1.5628642,1.885086,1.7537808,1.4604433,1.3927857,1.5914105,1.5948393,1.5715854,1.6408503,1.4796848,1.295371,1.4945371,1.4979938,1.601187,1.409979,1.3860441,1.5990506,1.8109355,1.8489368,1.841954,1.6762936,1.9626622,2.0075166,1.8951814,1.797837,1.4924281,1.3836765,1.5345212,1.7475114,1.6565535,1.7026391,1.7790087,1.9527935,2.1553433,2.189117,2.0924768,1.7826711,1.7398236,1.574248,1.8257763,1.8831267,1.7492235,1.3659286,1.3847821,1.9025537,1.6977009,1.5103548,1.0190359,1.0650247,1.607304,1.4782636,1.1122539,1.1515173,1.397136,1.4913791,1.3713336,1.7499232,1.3657358,1.3601072,1.726885,1.3967826,1.6470057,1.4015298,1.3099009,1.3736166,1.433803,1.6689825,1.7618229,1.4509361,0.95536935,1.2096751,0.9443705,0.95165837,1.2421482,1.5113548,1.7418115,1.6712093,1.3445003,1.0326369,1.0600843,1.261926,1.6159395,1.5695792,1.4769628,1.5868742,1.8146183,2.0627394,2.0797064,1.8683164,2.0400133,2.01425,1.8622324,1.832375,1.2772522,1.3963335,1.489546,1.1826944,1.2107848,0.99684,1.4193225,1.1097493,1.2623202,1.8820534,1.4649063,1.0719675,1.2489065,1.7611283,1.2919099,1.3491194,1.6726701,1.479393,1.3072746,1.6599798,1.8169034,1.521433,1.4970101,1.656014,1.5312747,1.5042251,2.0473893,1.625258,1.4462488,1.3026536,1.880723,1.722534,1.3176937,1.0094556,0.8354892,0.89444494,1.0698704,1.6704102,1.491531,1.2478929,0.9625006,0.80061483,1.4758141,1.4952854,1.2222023,1.2584782,1.2334332,1.6355748,1.4828433,1.5904226,1.660191,1.1212026,1.0185952,1.4926976,1.492965,1.5251207,1.5566914,1.6949236,1.8579627,1.5465407
+1.629145,0.9412353,0.61052847,0.46515483,0.5459894,0.6350635,0.73753184,0.94670814,0.81898844,0.76259524,0.7204106,1.016763,1.0597639,0.9896083,1.042364,1.1083099,1.5054108,1.4340725,1.1742643,1.0763006,1.3053337,1.5837669,1.2572463,0.75195193,0.6043242,0.593681,0.39079413,0.49496096,0.70109785,0.89365196,0.97099584,1.1806117,1.1508372,1.1455482,1.1855702,1.1025735,1.1813283,1.7782062,1.2956243,1.029589,1.0916156,1.1829112,1.2916591,1.4734833,1.7348533,2.0887375,1.7255752,1.7576029,1.8388478,1.9335594,1.8144548,1.9948424,1.9003472,1.9847264,2.1951766,2.3917785,1.8733654,2.2508507,2.3819504,2.6422458,2.6343381,2.769452,2.1656108,2.4840138,2.595282,2.5213902,2.888796,2.6127741,2.6970348,2.8375218,2.4278347,2.2645025,2.7274346,2.842164,2.6076715,2.4350724,2.4002023,2.2814307,2.1963482,1.9372603,1.9769216,2.527131,2.3727126,2.201554,2.2929783,1.819743,1.9722413,2.255619,2.8409166,2.9882274,2.9049413,2.6150498,2.8553402,2.7824097,2.607953,2.7450376,2.9631436,2.6384041,2.7754488,2.7306073,2.4748878,2.4840813,2.5446377,2.3060985,2.327745,2.851469,3.0023417,2.3889997,2.2698078,2.6970596,2.6767976,2.4149895,3.0302465,2.9190998,2.9097385,2.5107262,2.7799919,2.659072,2.7659287,2.7274277,2.6077452,2.6140318,2.6477823,2.4753737,2.155273,2.0269384,2.081144,2.804738,3.0777178,2.782009,2.6931472,2.2741966,2.2377665,2.5249584,2.723379,2.267339,2.3257284,2.215008,2.8396153,2.756614,2.8385038,2.496344,2.131742,2.7587137,2.6214924,2.3327641,2.3715656,2.639205,2.8932476,2.2750661,2.6489458,2.7616234,2.3982508,2.8410287,2.7099636,2.5948195,2.3768616,2.378786,2.286459,2.064225,2.8151417,2.7927551,2.7915006,2.4551263,3.022818,2.5984974,2.9055104,2.946822,2.4791355,2.1955333,2.6380348,2.7402358,2.474271,2.8699074,2.6615777,2.6257944,2.67118,2.2451854,2.0698764,1.8746271,1.8180443,1.9865317,2.1416488,2.2114391,2.169262,2.3159475,2.0288305,1.9107873,2.03104,2.1415486,2.0200982,2.6323712,2.5023332,1.9734597,1.9219234,2.0775216,2.3389776,1.5697062,1.5269125,2.208309,2.1420932,2.163423,2.3140287,2.720121,3.0505724,3.0739737,2.6021814,2.3841572,1.8022964,1.2618798,0.996224,1.1782024,1.3600616,1.3752881,0.8153417,1.2690104,1.4761927,1.686193,1.0975801,1.289777,0.8665973,1.3666978,1.6716558,1.1029481,1.850745,1.1573706,1.2511821,1.3541254,1.3191497,1.920584,1.9627875,1.8424008,1.7405331,1.5915782,1.4527926,1.7740388,1.5487957,0.90078974,0.6130074,0.6565477,0.749718,0.721635,0.5284888,0.462529,0.7821036,0.70456237,0.694481,0.6080251,0.619404,0.5352689,0.56378466,0.69229305,0.7746544,0.93079364,0.76425564,0.8214427,0.84285057,0.7554876,0.978818,1.0239527,0.8536017,0.77952695,1.0005716,0.87211835,0.7230154,0.68886817,0.6624616,0.7194804,0.8978466,0.9842267,0.98856187,0.83769023,0.7864789,0.83980256,0.940951,0.8073893,0.7181764,0.75658375,1.0171809,1.0189105,1.0102413,1.0290735,1.0001988,0.97276497,0.774269,0.9058906,1.0064327,0.98941135,1.066145,0.98420894,0.9185525,0.96777564,0.8866395,0.7891411,0.7455914,0.74535227,0.722792,0.87036866,0.7395469,1.1174182,0.9237933,0.96005726,0.9380419,0.8672254,0.8905375,0.8646215,0.9042895,0.8079549,0.8812931,0.8626486,0.77434635,0.9281948,1.0016301,0.95849496,1.0631062,1.0147399,0.9732368,0.9439711,0.8060203,0.8699585,0.7141684,0.7638883,0.90800613,0.7722643,0.8291184,0.9162035,0.85325074,0.810208,1.109011,1.033592,0.779719,0.94669294,0.8344505,0.8528441,1.0661212,1.1398493,1.0068115,0.9841876,0.95809716,1.0025129,0.79675245,1.0490218,0.9840498,0.8771259,0.9196344,0.8483583,0.8160528,0.8384495,0.9489,0.88762486,0.7972789,0.83904606,0.8930094,0.8786344,0.92724985,0.8709243,0.79951787,0.7113881,0.8548695,0.8588524,0.8378294,0.9147102,0.9023671,0.92909753,0.89010394
+1.5495944,1.3594025,1.0562598,0.8142885,0.80614567,0.77260673,1.0545017,1.3086008,1.0585334,0.96762323,0.9489529,1.2829862,1.1688434,1.1401857,1.3535966,1.6299499,1.655591,1.5271511,1.5714111,1.5199339,1.4407443,1.2027917,1.5406713,1.3721235,1.4296916,1.2254137,0.9784931,0.8723632,0.9595034,1.1482207,1.2864251,1.0216826,1.2346389,1.3178997,1.4233794,1.5191463,1.3086609,1.4069521,1.5717417,1.5106682,1.5406551,1.4724231,1.2736576,1.2440186,1.3358858,1.7507493,1.5893435,1.5605264,1.4440911,1.5027181,1.494989,1.3637899,1.4391704,1.4081523,1.2363985,1.5205383,1.2813447,1.3994868,1.5048418,1.638456,1.6783998,1.7764647,1.3061459,1.3191974,1.48687,1.6012914,1.7139238,1.7005402,1.8570523,1.7811502,1.5710888,1.4123336,1.5489159,1.7252431,1.635659,1.5101273,1.5415759,1.4293855,1.3558567,1.158616,1.1257999,1.3102055,1.635426,1.5060527,1.471082,1.3084189,1.1504757,1.0449916,1.4516778,1.8272374,1.7559412,1.5975721,1.664316,1.7661035,1.4818454,1.3322484,1.3983419,1.522964,1.6722847,1.5123708,1.6321875,1.6522121,1.4081594,1.3283417,1.3529274,1.5940924,1.6134737,1.5070534,1.3731015,1.6224201,1.4427029,1.2437658,1.2955296,1.7266605,1.7765538,1.357322,1.5904686,1.4415137,1.2304643,1.3232509,1.2288078,1.1268138,1.1167735,1.0695628,1.0031012,0.79552364,0.8760793,1.1276579,1.6064534,1.4805503,1.3648283,1.0751215,0.90531003,1.0876442,1.3153589,1.3118517,1.62867,1.4542018,1.5664895,1.4997184,1.5292985,1.3198651,1.0450572,1.398794,1.5861741,1.206994,1.0249869,1.038593,1.2133996,0.97498786,1.2349746,1.2605149,0.9819128,1.0980409,1.1920404,1.1059048,1.0686573,0.9800962,0.92476964,0.83822554,0.8710148,1.282834,1.2742399,1.2325543,1.6215448,1.3546734,1.1529123,1.4212141,1.2569349,1.0563914,0.9018875,1.0846792,1.2345778,1.2894222,1.1602621,1.3102127,1.5485015,1.455508,1.3640412,1.1468241,1.1846449,1.3650808,1.4033,1.3141204,1.2523017,1.119928,1.2528024,1.0595651,1.0761391,0.94804966,0.93474877,1.2263851,1.3459036,1.3176675,1.1251054,0.98599255,1.4408221,1.3107382,1.0868146,1.3984001,1.2329339,1.395857,1.4004263,1.452362,1.4615796,1.8776586,1.7415861,1.6784339,1.5806184,1.562917,1.4674228,1.5416262,1.6787382,1.6023622,1.607862,1.4018173,1.4262421,1.7807035,1.6207445,1.5951296,1.5777476,1.6019658,1.5370727,1.4773542,1.4413893,1.5847313,1.5119549,1.5171692,1.541625,1.5607524,1.6752986,1.8020375,1.7507528,1.5463269,1.5596334,1.5399814,1.5816932,1.4954989,1.2601824,1.2689278,1.1923506,1.255967,0.9746585,1.1966372,1.3624424,1.3990564,1.4494542,1.2404547,1.0535262,0.9285719,0.88451195,0.8562083,0.8941095,0.8158889,0.7594191,0.8716353,0.8485976,0.85961896,0.85684043,1.0435842,0.88344014,0.9185738,0.9309646,0.8787167,0.7744161,0.9222642,0.9155594,0.88161755,0.89056337,0.85112005,1.0888603,0.9862056,0.8256917,1.0630146,0.83303905,0.83647317,0.78644323,0.71280015,0.94254357,0.72557616,0.73609155,0.7855591,0.8105557,0.8076441,0.60156906,0.9776636,0.8805252,0.8248671,0.81989074,0.6521527,0.6457493,0.7423922,0.68390894,0.83115697,0.8425634,0.8163369,0.8393787,0.8727604,0.9546772,1.0830946,0.89822686,0.8743734,0.7344489,0.7634512,0.69800067,0.67868745,0.7100492,0.66144556,0.68147963,0.6523169,0.6377633,0.649842,0.72665334,0.7398621,0.7351756,0.7695252,0.7043066,0.6702571,0.65045524,0.6695492,0.669925,0.78182364,0.8303639,0.7304261,0.9327144,0.8882493,0.8118167,0.89196306,0.88462627,1.0358664,1.1291802,1.0406777,0.8080621,0.890887,1.1262786,1.1137019,0.86910117,0.81688976,0.83598554,0.83343184,0.72784746,1.0873001,0.96578383,0.7806448,0.77614003,0.76171213,0.7312547,0.62828445,0.9591908,0.78883505,0.7152217,0.81497467,0.8886884,0.9105086,0.9198406,0.7726494,0.79571426,0.6929516,0.93523455,0.9104117,1.0590985,1.1228818,1.0871094,1.0371021,1.0462624
+2.4777014,2.6629746,2.744659,1.6518968,1.531404,1.2833602,1.3745368,1.9819818,1.9199951,1.6133206,1.1793694,2.0317867,2.390084,2.5447426,2.7296686,2.777212,2.7006254,2.5873592,2.7373984,2.6343951,2.5786314,2.4468913,2.622063,2.882193,2.6814566,2.4767632,2.2109065,2.2071452,2.1024196,2.330942,2.2227807,2.6046622,2.3645425,2.3641765,2.6191137,2.5282521,2.521494,2.4978862,2.6402078,2.8922193,2.9197564,2.8840277,2.535797,2.7716186,2.5339346,2.7110188,2.7644777,2.820919,2.6407135,2.885911,2.8171942,2.8132176,2.9244618,2.785844,2.7088509,2.783533,2.5814807,2.423293,2.5959663,2.3690095,2.329273,2.8111763,2.5440059,2.4561486,2.39818,2.1660914,3.0784473,2.723516,3.153097,3.0305548,2.94768,2.6827343,2.6327536,2.8251643,2.9435933,2.82138,2.9274335,2.95322,2.8634574,2.6552181,2.5137217,2.4588356,2.2966344,2.518734,2.590675,2.6205726,2.5258286,2.3261595,2.1656265,2.899763,2.9588623,2.796802,2.6868176,2.9207876,2.7318082,2.633615,2.535355,2.519822,2.688303,2.3694282,2.7980084,2.9470363,2.7675424,2.6735573,2.506312,2.4385417,2.6301556,2.9398677,2.8372822,2.9571252,2.974729,2.7519088,2.4160166,2.5609002,2.89517,2.5980344,2.5133774,2.6681907,2.4316247,2.5713813,2.7121627,2.6645064,2.4327114,2.5050702,2.397224,2.295826,2.1977477,2.1549745,2.3352852,2.462819,2.47596,2.1531744,2.1551619,2.3967118,3.043338,2.678112,2.752976,2.6143503,3.040143,2.9099042,2.8685226,2.7402334,2.5333595,3.008127,3.0131464,2.6583412,2.5284815,2.512835,2.7380948,2.2991898,2.573434,2.6465316,2.3453126,2.446155,2.789453,2.543661,2.401704,2.3985138,2.2021887,2.0383272,2.0748327,2.1726637,2.385168,2.3323188,2.7691746,2.4179246,2.1560388,2.7477686,2.1751757,2.1505122,1.957077,2.2151184,2.428349,2.42088,2.3213646,2.4644883,2.8459384,2.565171,2.4680386,2.0413847,2.5943303,2.668778,2.4505594,2.0768573,1.9822345,2.1818948,2.1367776,2.119478,2.1534343,2.1360955,2.096201,2.320472,2.8379636,2.4086678,2.0872495,2.0718672,2.5005655,2.4928246,1.9673815,2.0859833,2.3090563,2.1367662,2.3510256,2.1402774,2.8603473,2.8338103,2.8309064,2.723658,2.6624455,2.5022125,2.7884796,2.6881952,2.5965815,2.7243905,2.6334238,2.1303887,2.5858202,2.8571086,2.5900402,2.4810297,2.5317712,2.4004574,2.3768034,2.5378053,2.321515,2.549374,2.2254715,2.3095887,2.416188,2.783165,2.8691468,2.9040608,2.8067398,2.641658,2.374701,2.128131,2.3109193,1.9215763,1.6223438,1.7591012,1.9485912,2.264617,1.8701563,2.2834854,2.4497306,2.26818,2.457632,2.4356978,1.7450442,1.6467909,1.2512034,1.2082444,1.2609816,1.1037829,0.89419144,1.1310408,1.055761,0.84782296,0.945884,1.0587741,0.971927,1.2093015,1.1675115,1.0382503,0.93565917,0.9698702,1.0460479,0.97727334,1.310311,0.94452375,1.3667192,1.4541264,0.9255916,2.0979772,1.3420655,1.1755667,1.1465119,0.94642645,1.4793551,1.2265933,1.0829293,1.0411787,1.0361315,1.0765486,0.91951597,1.2435763,1.349086,1.4867444,1.0584389,0.9570374,0.93676156,1.0182784,0.87181044,0.9704296,1.1044086,1.0322623,1.2241133,1.0497253,1.8244069,2.2270317,1.350316,1.3260667,1.2930454,1.1472349,1.161503,1.1477556,1.0149608,1.070594,1.0836562,1.0930375,1.0141966,1.2195337,0.97454476,1.3764561,1.2980785,1.1824465,1.0534118,0.89006597,1.9982634,1.5894673,1.1019976,1.2854216,1.5000753,1.2373511,1.2675114,1.615636,1.2153141,1.1634555,1.2595558,1.637883,1.6637769,1.7897468,1.3200233,1.3973168,1.5608042,1.7767296,1.3338497,1.1491613,1.1897054,1.1765859,0.989956,1.383913,1.5929141,1.2648633,1.0562382,1.0382029,1.0866091,1.3372366,1.4815042,1.385951,1.288666,1.1814113,1.2352998,1.4411271,1.3977499,1.287072,1.1369255,0.92268795,1.2795153,1.2344404,1.2197865,1.4209569,1.4741199,1.4675018,1.3416463
+2.5027838,2.198678,1.9684064,1.2156335,1.0410024,0.9858539,1.0100719,1.9449161,1.8563298,1.3922681,1.079488,2.1748466,1.8225757,1.5664742,1.4948757,1.4105716,1.6659204,2.166551,2.0822957,2.1971784,2.1246536,2.2822142,2.4030063,2.3999662,2.0315793,1.6943283,1.5820816,1.5037996,1.2970374,1.6599579,1.915052,1.6853831,1.9373397,1.7653139,1.8431876,2.0051298,2.1239522,2.0579798,2.176263,2.2584066,2.5258193,2.6039176,2.5438147,2.5019493,2.4000604,2.5160897,2.2419333,2.4463675,2.2358322,2.634545,2.5903752,2.5145793,2.7151222,2.568521,2.1464632,2.432336,2.0076938,2.2285705,2.1224432,2.0237875,2.145687,2.6738505,2.2898076,2.0267394,2.1736355,2.4072356,2.6614811,2.3710291,2.5407233,2.4815683,2.5788293,2.3349342,2.604971,2.6728587,2.6002245,2.4890504,2.5872169,2.6518373,2.582075,2.322787,2.2045298,2.151176,2.24539,2.2148516,2.514646,2.226816,2.1168513,1.9517467,1.7628204,2.2349155,2.3608832,2.3238983,2.2838783,2.689714,2.452334,2.0891588,2.358705,2.8654046,2.7791615,2.4914722,2.5355878,2.6630223,2.4725614,2.365575,2.1645925,2.621407,2.704824,2.4531558,2.2981935,2.5247912,2.4930632,2.2784226,1.9097366,2.6373973,2.5666761,2.4004798,2.5331416,2.57061,2.3031194,2.5681481,2.4695363,2.364048,2.322651,2.2626603,2.0172687,1.9281043,2.0525978,2.1915057,2.5352428,2.5663137,2.4100041,1.9849166,2.183158,2.5157466,2.655877,2.9109397,2.8380728,2.5502791,2.8372679,2.7307434,2.7117462,2.5445,2.3473742,2.74796,2.7862277,2.416585,2.2973099,2.3121855,2.6454096,2.2723172,2.3230867,2.3870656,2.205475,2.2894404,2.5185132,2.4069295,2.144439,2.113906,2.1120758,1.9381183,1.9522982,2.0880919,2.3565722,2.0836043,2.6556063,2.2451596,2.0784671,2.4926114,2.041224,2.091324,1.7968025,2.0643249,2.082747,2.22121,2.3309753,2.503841,2.5326817,2.274169,2.166711,1.973525,2.1518729,2.290538,2.2099645,2.0283806,1.9355313,2.2153542,2.2185943,1.8711163,1.9915669,2.0220802,1.957221,1.9117819,2.4361737,2.1432314,1.7814941,1.8518999,2.2200842,2.129119,1.5270901,1.9852865,2.0057724,1.9033775,2.1718302,1.91467,2.6622038,2.5015054,2.3850965,2.2112722,2.1848087,1.9992411,1.8462778,1.7684786,1.9236603,2.1836505,2.0911183,1.6082278,1.9524121,2.268736,1.9962981,1.8563386,1.8447397,1.7689042,1.810346,1.920298,1.6482364,1.9936428,1.7598026,1.7654871,1.8769695,2.3516636,2.3846128,2.5503616,2.4228556,2.0301871,1.8110138,1.8215227,1.8811176,1.6747583,1.2234071,1.383192,1.4778025,1.4615203,1.2159398,1.5452154,1.7735299,1.573967,1.3150723,1.015141,0.92103076,0.8431386,0.81564516,0.85324717,0.9240241,0.9645025,0.94224787,0.83776814,0.91006994,0.8320721,0.8797356,1.0586997,0.9534055,1.0124596,1.1149513,1.0778598,0.8779592,0.8857649,0.97786546,0.8720761,1.1310958,0.9435154,1.3164513,1.1207924,0.7969059,1.660787,1.2171748,0.9641249,1.0083088,0.91347915,1.4000401,1.1485198,1.0861475,1.0808698,0.9919896,1.0480348,0.9092921,1.0518442,1.031464,1.1733906,1.0291547,0.8567878,0.88528323,0.94997925,0.9359026,0.7521565,0.9556303,0.9101893,1.0149754,0.93509567,1.2510401,1.7191114,1.2536023,1.1380472,1.0706136,0.9259582,0.9763673,0.9779536,0.92614084,0.87697226,0.96408504,0.92744493,0.8640836,0.9053769,0.98218644,0.9967166,1.0850934,1.087661,1.0586108,1.000444,1.2926986,1.2115202,0.982275,1.1063111,1.2781644,1.0776209,1.0237833,1.1948075,1.0824685,0.9715282,1.0565735,1.2484306,1.2717922,1.532994,1.2349392,1.2403721,1.1806576,1.5683942,1.2413032,1.1067618,1.1158317,1.1048739,0.9224221,1.2440805,1.2627738,1.1820922,1.0312158,1.0186979,1.0214206,0.87514687,1.1228131,1.139437,1.147249,1.0723037,1.1520845,1.3162471,1.3047137,1.1809199,1.106534,0.9818766,1.1903818,1.1697203,0.94629025,1.10148,1.1798751,1.3896067,1.2351899
diff --git a/example/output/CONUSv4f1_multi/SOILM_0-10_NOAHSigmaX_CONUSv4f1_20160401_20170401_ep100.csv b/example/output/CONUSv4f1_multi/SOILM_0-10_NOAHSigmaX_CONUSv4f1_20160401_20170401_ep100.csv
new file mode 100644
index 0000000..95989ac
--- /dev/null
+++ b/example/output/CONUSv4f1_multi/SOILM_0-10_NOAHSigmaX_CONUSv4f1_20160401_20170401_ep100.csv
@@ -0,0 +1,412 @@
+-0.19359839,-0.2658239,-0.29167438,-0.83858985,-1.0545719,-1.143678,-0.77887803,-0.6868834,-0.7550203,-0.904044,-0.8893315,-1.241499,-1.4400387,-1.3124578,-1.1355157,-1.0226288,-0.8525607,-0.8776522,-0.9740558,-1.2533247,-1.3920803,-1.4465764,-1.8294029,-2.1111178,-2.162346,-2.1005516,-1.9512072,-2.0899804,-2.057171,-2.3644676,-2.5239377,-2.6573017,-2.5241165,-2.792749,-3.0113847,-3.114409,-3.2196617,-3.1498141,-3.140037,-3.2218454,-3.2635536,-3.3014963,-3.3829794,-3.4552994,-3.4431055,-3.4085174,-3.4066281,-3.3254523,-2.913142,-3.204763,-3.3558762,-3.165923,-3.417655,-3.5478797,-3.58212,-3.5549653,-3.0801466,-2.7834995,-3.1372945,-3.5170932,-3.712335,-3.5157328,-3.3032522,-3.7261648,-3.8785644,-4.025326,-3.9853187,-3.9928565,-3.3709793,-3.5542476,-3.1594217,-3.1964278,-3.5756197,-3.346671,-3.1545181,-3.2009785,-3.4071145,-3.4187648,-3.168201,-3.4040024,-3.7908378,-3.8784351,-3.855865,-3.3733597,-3.7059093,-3.8184438,-3.9746785,-4.110084,-4.103212,-4.082805,-4.006848,-3.902969,-3.8872108,-3.5958433,-3.5550025,-3.5630357,-3.7549958,-3.4448733,-3.3801131,-3.5621736,-3.6610339,-3.8948631,-3.9229379,-3.7924972,-3.778068,-3.8133912,-3.848794,-3.4829433,-3.8222451,-3.6092567,-3.9797769,-4.079526,-4.056729,-3.9376884,-3.9966588,-4.0235724,-4.0041795,-3.9775724,-3.967373,-3.921104,-3.8266883,-3.7990694,-3.8279428,-3.2614002,-3.723256,-3.8146777,-3.7912245,-3.7455883,-3.3954215,-3.4936244,-3.8390136,-3.8571439,-3.91567,-3.9131937,-3.8722615,-3.8198252,-3.810903,-3.792091,-3.7757726,-3.7874455,-3.811788,-3.8414397,-3.6106966,-3.5894265,-3.723847,-3.7712302,-3.799396,-3.8223157,-3.7758684,-3.6411076,-3.7290874,-3.7612128,-3.086178,-3.0375118,-3.413651,-3.6224875,-3.8354902,-3.760334,-3.5855393,-3.495803,-3.5377176,-3.8199124,-3.8649502,-3.8097653,-3.874055,-3.9304028,-4.017308,-4.001386,-3.9216108,-3.235601,-3.2888057,-3.442007,-3.5746298,-3.8001323,-3.8026986,-3.2750692,-3.5263848,-3.602736,-3.8229346,-3.8046207,-3.7919197,-3.8157935,-3.7813754,-3.358293,-3.2101533,-3.5703547,-3.0254142,-3.2606087,-3.4028997,-3.1895387,-3.2948112,-3.5260642,-3.479291,-3.3071928,-3.2194676,-2.628223,-2.8372974,-3.0653212,-3.160789,-3.5070438,-3.6317987,-3.4346244,-3.4070668,-3.4119306,-3.3563592,-3.3438294,-3.5940654,-3.1997895,-3.0549674,-3.128055,-3.5332363,-3.3033395,-3.3475666,-3.2892342,-3.2202382,-2.9052792,-2.9191773,-3.397281,-3.0739393,-3.4512482,-3.0415044,-3.449944,-3.7615066,-3.8180933,-3.8114858,-3.50002,-3.4062753,-3.2458935,-3.3431041,-3.1376452,-2.9083676,-2.788825,-2.4628377,-2.0305533,-2.1218643,-1.9069235,-1.8783154,-1.6971982,-1.8404288,-1.9804592,-2.142203,-2.314215,-2.4176855,-2.5046356,-2.5389225,-2.5999815,-2.7503414,-2.8091187,-2.8948274,-2.813476,-2.8935747,-2.907714,-2.9999833,-2.940439,-3.0306015,-3.0350106,-3.0005393,-3.0089927,-3.0310297,-3.062409,-3.0449352,-3.2701488,-3.141669,-3.3473072,-3.321412,-3.4189053,-3.4280539,-3.3285997,-3.36009,-3.5039644,-3.3406496,-3.5499482,-3.299077,-3.4211912,-3.4421635,-3.365295,-3.3816786,-3.40433,-3.4072628,-3.4232826,-3.545465,-3.464598,-3.514931,-3.4790828,-3.4171438,-3.4130669,-3.393099,-3.3828533,-3.4061365,-3.390337,-3.4945488,-3.0721126,-2.757328,-3.1019447,-3.2509336,-3.246459,-3.264134,-3.246595,-3.2614257,-3.2674575,-3.308403,-3.3602166,-3.2881846,-3.354946,-3.317309,-3.3198762,-3.3217652,-3.3383355,-3.4441314,-3.3553438,-3.4503098,-3.4679067,-3.3933625,-3.3003943,-3.13588,-3.2251506,-3.3056905,-3.0759416,-3.0449095,-3.1480393,-3.052216,-3.1213293,-3.0991986,-3.0334535,-3.2495322,-3.3540478,-3.1910148,-3.236135,-3.2545881,-3.273601,-3.2773767,-3.3653016,-3.2967143,-3.3249688,-3.3825183,-3.3901246,-3.1813354,-3.2343287,-3.1476145,-3.3179855,-3.354803,-3.4163818,-3.2918358,-3.303287,-3.2898097,-3.321241,-3.369628,-3.4256153,-3.362946,-3.2816365,-3.2622557,-3.2470942,-3.0388806,-3.0571518,-3.22782,-3.2131948,-3.2617924,-3.1930416,-3.2419405,-3.2457151,-3.254446,-3.1649814,-3.4137049,-3.1562705,-2.896137
+-0.7142634,-1.2885773,-1.5515318,-1.9557667,-2.684207,-2.662266,-2.6737618,-2.5434358,-2.5031774,-2.3994918,-2.3202975,-2.2747822,-2.3468604,-2.5015993,-3.5567393,-3.221155,-3.2950726,-3.2874742,-3.233667,-3.0657878,-2.8687704,-2.4902687,-3.586772,-3.6717615,-3.8017044,-3.533387,-3.3622293,-3.5882251,-3.577286,-3.556897,-3.5139294,-3.1845841,-3.0884252,-3.1395369,-3.028646,-3.115243,-3.1350582,-2.9856868,-2.964563,-3.114468,-3.1545558,-2.9973288,-3.0011141,-2.141755,-3.6150475,-3.6502018,-3.7887359,-3.5675628,-3.488512,-3.458056,-3.312143,-3.222073,-3.4784195,-3.441143,-3.4958477,-3.4552155,-3.282269,-3.2316406,-3.2376482,-3.4528606,-3.4735265,-3.253724,-2.85079,-3.6689715,-3.7383718,-3.5697713,-3.533383,-3.4550018,-3.075692,-3.2329035,-3.2406814,-3.5677161,-3.8855991,-3.4733644,-3.025175,-3.8930187,-3.8244739,-3.8995137,-3.7186465,-3.874216,-3.695726,-3.59218,-3.5162826,-2.9749103,-3.813908,-4.120109,-3.9943442,-3.7860928,-3.705029,-3.605291,-3.5148392,-3.4159071,-3.3148096,-3.216943,-3.2657247,-3.0667725,-3.0486093,-3.1340764,-3.0277634,-3.2026296,-3.2249382,-3.9352388,-3.7257934,-3.5737658,-3.652724,-3.5238342,-3.442015,-3.374558,-3.2417543,-3.1140523,-3.2293038,-3.302108,-3.1874244,-3.2355304,-3.2819977,-3.283277,-3.3147755,-3.3040657,-3.3464122,-3.3995235,-3.38835,-3.367888,-3.3767223,-3.299346,-3.3082352,-3.3458982,-3.3711696,-3.3543677,-3.2797363,-3.081461,-3.2827563,-3.346858,-3.4632823,-3.4695072,-3.4747372,-3.480484,-3.4402704,-3.4292521,-3.4284184,-3.4647777,-3.5638528,-3.5721664,-3.5279856,-3.5023239,-3.4672418,-3.5248666,-3.6275368,-3.6611571,-3.573547,-3.5148365,-3.491796,-3.427051,-3.3611865,-3.3770883,-3.1061347,-3.2386608,-3.334093,-3.329966,-3.3702097,-3.3952222,-3.3813515,-3.437912,-3.4851289,-3.4472072,-3.4568577,-3.572731,-3.5311127,-3.5449657,-3.5818176,-2.826812,-2.885897,-3.4232905,-3.3940537,-3.324042,-3.402513,-3.1890116,-3.505127,-3.4252295,-3.530499,-3.4983306,-3.4188504,-3.4298215,-3.4243069,-2.7645102,-2.4650936,-3.5722396,-3.4494011,-2.744976,-3.6719537,-3.2387493,-3.8404655,-4.053468,-4.004124,-4.2422028,-4.1429753,-2.7294137,-2.834949,-2.8643734,-3.1121838,-2.92434,-3.651937,-4.0666213,-3.6142764,-4.2928753,-4.2871923,-4.0434546,-3.9362617,-3.9144688,-3.069324,-3.6248698,-3.9606261,-4.147821,-3.8898826,-3.375533,-4.070784,-3.9567628,-4.0938735,-4.1241,-3.6675186,-3.8599162,-4.184944,-4.156462,-4.175858,-4.191329,-4.1411586,-3.7969737,-4.226417,-3.5937793,-3.1642218,-3.9058523,-4.162413,-4.160176,-3.8634253,-3.5806985,-4.0163145,-3.9393907,-3.2203066,-2.7802,-2.6935382,-3.8706532,-3.9447942,-3.7151103,-4.020825,-3.5269408,-4.1236253,-3.9058185,-3.9184136,-3.467116,-3.5492785,-3.6624913,-3.6384585,-2.5110984,-2.2741282,-2.441362,-2.6681418,-3.2066565,-3.5631948,-3.091959,-2.7816787,-2.8533235,-2.729072,-2.3629045,-2.0800233,-1.7531862,-2.7689052,-2.469501,-2.2209876,-2.3511019,-2.284042,-2.0931563,-1.6401861,-2.4534044,-2.4725888,-2.6163445,-2.7591183,-2.1567929,-2.499879,-2.172688,-2.2731643,-2.2107105,-2.225785,-1.8725431,-1.0233605,-1.0385158,-1.1941772,-1.384367,-1.8170161,-1.9045033,-1.7552948,-1.8640013,-1.6969385,-1.3755553,-1.310874,-1.6164901,-2.000172,-2.0608115,-1.9711361,-2.0078838,-2.10157,-1.7248662,-1.4846826,-1.6790774,-1.65764,-1.517257,-1.2671366,-1.3290832,-1.7079978,-1.560303,-1.4530671,-1.7252605,-1.766238,-1.9142382,-3.2492065,-2.6504195,-2.3591132,-3.3017874,-3.6020603,-3.591961,-3.317247,-2.9637446,-2.1695945,-2.2540987,-3.7045884,-3.796925,-2.9134245,-2.9146733,-3.2302227,-3.7268023,-3.7895837,-3.383854,-3.0670836,-2.3506587,-2.5576468,-2.2121696,-1.972651,-1.8289099,-1.7362955,-1.6029866,-1.9440699,-1.7002542,-1.807595,-2.294376,-2.3179784,-3.0948608,-3.6216445,-3.815001,-3.8799915,-3.622096,-3.1762981,-3.9624534,-3.8335934,-3.3594022,-4.0395246,-3.8214831,-3.4917746,-3.389635,-3.7962332,-2.9593973,-3.4746225,-3.1965985,-3.2023153,-3.4120917,-3.264288,-4.0262723,-4.0300164
+-1.2433338,-1.9820931,-2.3674622,-2.2472496,-2.7316895,-2.8092847,-2.889824,-3.0064356,-3.0045538,-3.0477414,-2.9996893,-2.9351048,-2.8017051,-2.2734537,-3.395587,-3.4008675,-3.364516,-3.458517,-3.5323925,-3.4473133,-3.3473375,-2.7307744,-3.4076457,-3.4816904,-3.8143206,-3.709846,-3.173861,-3.6895704,-3.4800184,-3.6312015,-3.5080051,-3.284432,-3.2033339,-3.012455,-3.6440077,-3.6878963,-3.6277149,-3.626592,-3.64439,-3.5477233,-3.4646053,-3.4779,-3.4709656,-2.7579095,-3.310385,-3.5348163,-3.8058863,-3.686758,-3.1819263,-3.4924011,-3.6615133,-3.3333745,-3.2759597,-3.5607345,-3.71837,-3.7509942,-3.711038,-3.6165378,-3.5779686,-3.5896292,-3.5851846,-3.5251758,-3.3923793,-3.5699947,-3.620757,-3.614725,-3.591914,-3.5945497,-3.489976,-3.4808307,-3.3603857,-3.604848,-3.4929411,-3.2622886,-2.64166,-3.9301853,-3.3660975,-3.888877,-3.429105,-4.0725083,-3.9514375,-3.9707856,-3.8927035,-3.595595,-3.6503212,-3.671096,-3.6132035,-3.5614347,-3.505517,-3.4391403,-3.3794508,-3.322699,-3.2387905,-3.2932918,-3.2646713,-3.2094748,-3.191691,-3.1725454,-2.038632,-3.5019135,-3.7970853,-4.145616,-4.0092163,-4.043157,-3.9323063,-3.8143907,-3.7044883,-3.6316895,-3.479085,-3.4714246,-3.4712977,-3.4525776,-3.3906906,-3.3800998,-3.344995,-3.3294768,-3.3281655,-3.3070133,-3.3065581,-3.3430269,-3.3280773,-3.306513,-3.3186817,-3.2815611,-3.2540076,-3.273449,-3.2425127,-3.2321203,-3.2521548,-3.221406,-3.1854858,-3.2647448,-3.2959538,-3.3417335,-3.3875053,-3.36272,-3.385221,-3.3704011,-3.37115,-3.3741136,-3.4698722,-3.52741,-3.5226312,-3.4642057,-3.4273093,-3.4147315,-3.3964043,-3.4776964,-3.6154656,-3.6350622,-3.6581128,-3.6134994,-3.6239123,-3.6322784,-3.6176476,-3.6279693,-3.6001487,-3.598399,-3.593169,-3.6021287,-3.7089248,-3.6971974,-3.74925,-3.785252,-3.6872144,-3.7114406,-3.7660742,-3.7963805,-3.864921,-3.841392,-3.8680663,-3.8968492,-3.8635964,-3.8416586,-3.7418036,-3.6395483,-3.8188252,-3.9394789,-4.1298156,-4.165375,-4.0923104,-4.0503325,-4.079801,-2.37675,-2.0484462,-3.2891998,-3.148775,-3.131023,-3.7711558,-3.7374015,-4.087787,-4.151645,-3.92557,-3.6571703,-4.0234437,-2.612218,-2.332859,-2.5903244,-2.374282,-3.0956056,-3.1042747,-3.6837296,-3.59725,-3.5223343,-4.0525346,-3.9392858,-3.2934887,-3.866284,-3.1651688,-2.8503053,-3.9598393,-3.6365163,-3.8812823,-3.7394204,-3.7737718,-3.599486,-3.5421176,-3.6135244,-3.143096,-3.316771,-3.7610917,-3.7661967,-3.806788,-3.7994733,-3.7148318,-3.4296775,-3.6758008,-3.1323037,-3.5124266,-3.616594,-3.8485637,-3.8587584,-3.393355,-3.2580488,-3.5685308,-3.8131275,-3.3964155,-3.4270177,-3.2062442,-3.475089,-3.2824764,-3.5757723,-3.7389054,-3.5122375,-3.7876167,-3.8112645,-3.6051438,-3.451768,-3.6424372,-3.6379051,-3.4867,-2.6924982,-2.971511,-3.0585794,-3.3192158,-3.4580026,-3.6066067,-2.0303764,-2.5306442,-3.459457,-3.5755966,-3.2810678,-2.497508,-1.853926,-2.971458,-3.1477342,-2.2890878,-3.300127,-3.5883715,-3.3027773,-2.473891,-3.2115293,-3.3485687,-3.500465,-3.662603,-2.6797059,-2.6415348,-2.7405043,-2.4174347,-2.5214496,-2.732457,-1.4836435,-1.1502571,-1.9090571,-1.8217754,-2.7696202,-3.4354105,-3.5428157,-3.2158008,-2.9781883,-2.5202484,-2.3411524,-2.0049133,-2.8458686,-3.4519358,-3.0900905,-3.078335,-3.3730166,-3.4964697,-3.4178534,-3.262651,-3.5558534,-3.5256498,-3.5116818,-3.451756,-3.4818873,-3.2721524,-3.2304466,-2.7502174,-3.06533,-3.2367198,-3.3140974,-3.2227147,-3.295064,-2.688346,-3.4270205,-3.5463016,-3.4856224,-3.2769032,-3.400459,-2.8931274,-2.290111,-3.466504,-3.5364428,-3.3565466,-3.315644,-2.7231855,-3.4449155,-3.4786828,-3.3676615,-2.981302,-2.5387983,-2.323059,-2.8667192,-2.9786859,-2.982937,-2.586804,-2.4829736,-2.6759517,-2.6763277,-2.8732657,-3.236714,-3.3758001,-3.3470075,-3.3295772,-3.2226648,-3.2868142,-3.2024636,-3.0103073,-3.2481825,-3.3777783,-3.179792,-3.6856449,-3.528483,-3.5641108,-3.6031175,-3.650536,-3.0636983,-3.4844584,-3.5545166,-3.488632,-3.468656,-3.119083,-3.4250207,-3.4867616
+-0.8982112,-1.487081,-1.9149029,-2.2500753,-2.4958248,-2.4901416,-2.5950897,-2.632906,-2.6344738,-2.7420666,-2.8218012,-2.8584046,-2.8332334,-2.0137398,-2.8776212,-3.066938,-3.1868515,-3.2835493,-3.3512745,-3.3564074,-3.4304976,-2.9834995,-3.361433,-3.3972688,-3.753387,-3.4165797,-3.1180298,-3.7492194,-3.7428842,-3.8301425,-3.7236328,-3.7639136,-3.5800786,-3.3068674,-3.338902,-3.6344528,-3.6670754,-3.823111,-3.8578634,-3.7806878,-3.7374864,-3.6682398,-3.6619623,-3.4408398,-3.4005215,-3.6151433,-3.5286655,-3.5204017,-3.6253734,-2.8760042,-3.3306105,-3.3519306,-3.573648,-3.621674,-3.8023095,-3.8517728,-3.7982326,-3.6949725,-3.6194584,-3.6006804,-3.5453453,-3.4987879,-3.5659194,-3.487648,-3.416164,-3.5196226,-3.455459,-3.4775293,-3.4857771,-3.59966,-3.6515338,-3.5631592,-3.5017326,-3.5182228,-3.5362206,-3.5453746,-3.2070632,-2.8965275,-3.5039923,-3.8179502,-3.719222,-3.6723957,-3.6310918,-3.6719253,-3.629449,-3.5333796,-3.514341,-3.5970478,-3.5075526,-3.4946241,-3.5189304,-3.5132852,-3.461944,-3.5520597,-3.5817654,-3.6636868,-3.6609144,-3.6702042,-2.284771,-3.324771,-3.6797209,-3.8701015,-3.806583,-3.704474,-3.5994196,-3.5792506,-3.6177158,-3.6279287,-3.6818671,-3.689305,-3.6774035,-3.6642225,-3.6610582,-3.6302478,-3.631943,-3.6403122,-3.5954735,-3.6008468,-3.623704,-3.6868026,-3.6860318,-3.7218266,-3.7605562,-3.7790146,-3.7191916,-3.7650757,-3.760388,-3.699922,-3.7753668,-3.7211738,-3.647829,-3.6560936,-3.7431788,-3.7839937,-3.7761164,-3.7393231,-3.7190146,-3.7236238,-3.7008772,-3.7435894,-3.8217125,-3.8446717,-3.8462968,-3.8269114,-3.8148942,-3.8091645,-3.766191,-3.87214,-3.913632,-3.9092097,-3.9752197,-3.9326105,-3.7800512,-3.7690315,-3.8001037,-3.7326298,-3.717421,-3.7010245,-3.8126364,-3.7577615,-3.8168898,-3.8524532,-3.977682,-3.9260826,-3.6978402,-3.7553334,-3.8841147,-3.7934184,-3.866846,-3.9850683,-3.9063668,-3.8483276,-3.8283582,-3.8030238,-3.299024,-3.447809,-3.7197251,-3.7328734,-3.8643637,-3.8782248,-3.893219,-3.9232116,-3.873403,-2.9017386,-1.5825224,-2.9909644,-3.2648144,-3.0985563,-3.8070345,-3.679358,-3.726141,-3.7280388,-3.7229838,-3.7569337,-3.7744708,-1.7393076,-1.7241106,-2.019179,-1.8140602,-2.0694778,-2.340111,-3.034316,-3.4208755,-3.9384665,-3.823254,-3.6375895,-2.4958878,-3.4161916,-2.7920609,-2.8499036,-3.6588137,-3.5850787,-2.73514,-2.817348,-3.2980316,-3.705696,-3.9174733,-3.8489528,-3.7254643,-2.8816094,-3.4956274,-3.8060598,-3.8983507,-3.7868752,-3.7598543,-3.5036201,-3.7637887,-3.6701589,-2.7554517,-3.1679034,-3.2639723,-2.539978,-2.127243,-2.3152726,-2.8056536,-3.0546794,-2.094701,-2.3429933,-2.024281,-2.5136724,-2.2663717,-2.436782,-3.019001,-2.6409612,-2.88725,-2.3374553,-1.9056828,-1.9192424,-2.0962045,-1.859386,-2.118229,-1.3580525,-1.4315617,-1.5658548,-1.6181078,-1.9147313,-1.9932351,-1.2073371,-1.690424,-2.2545993,-2.3807116,-2.28308,-1.9141636,-1.4704041,-1.7704749,-1.7409177,-1.2858815,-1.4143653,-1.9973574,-2.0997896,-1.6432021,-1.9068842,-1.819824,-1.748436,-1.955019,-2.0740495,-1.989233,-1.9263599,-1.8484478,-2.5048046,-2.5800855,-1.9815497,-1.2740462,-1.1580493,-1.5200431,-1.3709455,-1.6251984,-1.9015932,-2.0062494,-1.9749415,-1.7918968,-1.5376887,-1.1942127,-1.3359711,-1.1762872,-1.2477088,-1.2668846,-1.336133,-1.6038616,-1.711133,-1.3422289,-1.8349938,-1.7720661,-1.6569409,-1.2647634,-1.1004097,-1.264905,-1.5997529,-1.5241079,-1.4735763,-1.7906861,-1.901696,-2.1234808,-2.2392783,-1.9583344,-2.4431481,-2.958219,-2.5225954,-2.1990554,-2.3322377,-2.1042874,-1.7165904,-2.6668751,-2.892267,-2.315919,-2.2800405,-2.2687163,-2.2853582,-2.382154,-2.3605075,-1.9610405,-2.0637217,-1.9605918,-1.9423499,-2.4314628,-2.3661814,-2.1531334,-2.035297,-1.9692245,-1.9410524,-1.8384924,-1.6786544,-1.654217,-1.7311349,-2.0436046,-2.7617702,-3.030328,-3.073972,-2.6794953,-3.5366092,-3.3744335,-2.5921988,-3.341928,-2.9056234,-2.9148319,-3.1476274,-3.2698193,-2.1884537,-2.9600747,-2.6067286,-2.9098146,-3.1314735,-2.7927277,-3.5167909,-3.7033887
+-0.8064019,-1.3671949,-1.849751,-2.217705,-2.4056087,-2.4061093,-2.488988,-2.4978352,-2.5562425,-2.454297,-2.647705,-2.8348823,-2.83424,-1.8830903,-2.991631,-3.2004151,-3.2461433,-3.253965,-3.2497787,-3.3485773,-3.1975787,-2.0474646,-3.0082655,-3.3187253,-3.6080403,-3.4081953,-3.094284,-3.6207352,-3.5945218,-3.643619,-3.5580006,-3.5753908,-3.4148726,-3.1374822,-2.9083161,-3.3418221,-3.25171,-3.4162407,-3.7751126,-3.8185549,-3.7468448,-3.6406803,-3.6061203,-3.4343848,-3.6146715,-3.6571403,-3.603135,-3.5122652,-3.6171694,-3.5688572,-2.6105423,-3.319509,-3.6485384,-3.2789125,-3.7194896,-3.917438,-3.8904495,-3.7793298,-3.7017713,-3.649378,-3.6113248,-3.5110357,-3.5595825,-3.524874,-3.3698707,-3.4500322,-3.44797,-3.3643239,-3.350319,-3.4879746,-3.575438,-3.60248,-3.5272002,-3.5269175,-3.554431,-3.1039166,-3.0845966,-2.8025231,-3.6148455,-3.8585334,-3.7825055,-3.6441386,-3.7038293,-3.722139,-3.7115955,-3.673315,-3.646522,-3.6885083,-3.674884,-3.6411777,-3.6785176,-3.6782968,-3.6555722,-3.6334977,-3.5894423,-3.6895258,-3.6712174,-3.6265898,-3.4732869,-3.3367534,-3.4954877,-3.522379,-3.5256126,-3.518047,-3.5363312,-3.498797,-3.5891776,-3.5881183,-3.5276694,-3.5286584,-3.530594,-3.5081048,-3.544938,-3.5577261,-3.5593176,-3.6170807,-3.634408,-3.6902025,-3.74797,-3.8937354,-3.8856988,-3.8757825,-3.824226,-3.8181968,-3.8004122,-3.840536,-3.8081737,-3.7657523,-3.9019694,-3.8827405,-3.845138,-3.88063,-3.9216561,-3.9591022,-3.9807887,-3.970883,-3.9594688,-4.105964,-4.128878,-4.1658735,-4.2725897,-4.2477,-4.174241,-4.275269,-4.1825194,-4.0555177,-4.0572433,-4.101624,-4.075025,-4.0851293,-4.1686654,-4.26292,-4.0974097,-4.0997634,-4.1743083,-4.1013637,-3.9840107,-3.9720273,-4.107926,-4.0550733,-4.2329297,-4.2088246,-4.232601,-4.1598344,-3.993051,-3.9708886,-3.9865103,-4.0373235,-4.124967,-4.2240047,-4.1788898,-4.1822705,-4.141115,-4.157864,-3.9740129,-3.9639974,-4.0987096,-4.3353453,-4.268723,-4.215327,-4.19546,-4.1052065,-4.0329137,-3.914114,-2.3887982,-2.9900177,-3.1593614,-3.775104,-3.8440037,-3.887124,-3.9347491,-3.9849138,-4.018355,-3.995708,-3.9986749,-3.7964544,-1.2294183,-1.8844781,-2.2135637,-2.5081687,-3.1074834,-3.5519571,-3.8520594,-4.027079,-4.0471363,-3.9408607,-2.3252292,-3.5180135,-3.356022,-2.9049225,-3.705348,-3.5395758,-2.8336372,-3.4599566,-3.3720965,-3.7832255,-3.952129,-4.0573754,-4.090161,-3.523978,-3.9713273,-4.159368,-4.154435,-4.1012077,-4.06634,-3.568284,-4.1504226,-4.078096,-3.6831505,-3.904418,-3.8506227,-3.4604988,-2.6454058,-3.228003,-3.5939949,-3.6902738,-2.8071046,-3.3711922,-2.8577843,-3.0394564,-3.11116,-3.4104247,-3.692348,-3.4549596,-3.674428,-3.3778906,-3.3624678,-3.609457,-3.6903179,-3.1245713,-2.470882,-1.7470574,-1.8941135,-2.1103935,-3.296032,-3.2921786,-2.935651,-2.356854,-2.0719066,-3.270394,-3.4192767,-3.0200262,-2.2185895,-1.8792839,-2.3115566,-2.8359199,-2.4462626,-3.0313935,-2.878295,-2.1609068,-1.438684,-1.576633,-1.3387477,-1.3248191,-1.6841443,-1.8497102,-1.7873745,-1.4914408,-1.476299,-1.375787,-1.650341,-1.1419697,-1.6001596,-1.655628,-1.6692245,-1.9572005,-2.2223845,-2.3032641,-1.80196,-1.6192486,-1.5118117,-1.4676437,-1.7617841,-1.8086658,-1.7923703,-1.7699666,-1.6724045,-1.5923376,-1.5981205,-1.465646,-1.1688802,-1.4807453,-1.4092441,-1.4787104,-1.524914,-1.6409285,-2.1055593,-2.4745955,-2.2987418,-2.5542212,-2.9359002,-2.7083879,-2.2065043,-2.6339884,-2.200422,-3.1690102,-3.3973913,-3.1666393,-3.0866957,-3.5084672,-3.509916,-2.2173586,-3.1490626,-3.227401,-3.204194,-2.8548384,-2.653884,-3.2869382,-3.2024007,-2.9152498,-2.0036411,-2.0141892,-1.8799298,-1.8565912,-1.897162,-1.8453245,-1.7495832,-2.088375,-2.577992,-2.291996,-1.9413412,-1.8936219,-2.0743132,-2.8268583,-3.4485683,-3.7759848,-3.7690969,-3.738872,-3.4817054,-3.8331685,-3.8800473,-3.510213,-3.8574347,-3.7628813,-3.1065292,-3.41188,-3.5685391,-2.639031,-3.39053,-3.4666097,-3.672039,-3.8473163,-3.7753778,-4.0101476,-4.1809764
+-0.5788674,-0.8430868,-0.8519972,-1.0568926,-1.0272079,-1.1353278,-1.3124533,-1.5173059,-1.5724301,-1.721457,-1.6428053,-1.4561684,-1.4897256,-1.5665276,-1.6510878,-1.6447828,-1.736063,-2.0407853,-2.354313,-2.7446127,-2.7231088,-2.3149507,-2.5683742,-2.482246,-2.545684,-2.6067028,-2.63612,-2.7248662,-2.574847,-2.9026737,-3.1498814,-3.344411,-3.423586,-3.018392,-3.554628,-3.7285495,-3.9243016,-3.7969613,-3.197875,-3.7354026,-3.2241545,-3.7236023,-3.87156,-4.0490956,-4.0687337,-3.883707,-3.9302964,-3.7180934,-2.973248,-3.4566917,-2.9776516,-3.2217236,-3.0288866,-3.6151981,-3.8294663,-3.709221,-2.9262457,-2.6800022,-2.8580823,-3.5366364,-3.7221103,-3.5561707,-3.0189085,-3.7504134,-4.1726394,-4.443862,-4.459596,-4.4585347,-3.8094544,-3.7545552,-3.4445922,-3.145708,-3.5656188,-3.1503978,-2.9312277,-3.1690745,-3.4641685,-3.6673732,-3.1587124,-2.674025,-3.9866552,-4.112716,-4.0799613,-3.2295442,-3.551886,-3.7903113,-4.207474,-4.498413,-4.5975537,-4.5992455,-4.543636,-4.251483,-4.4016914,-4.0045342,-3.7298427,-3.582968,-4.0901523,-3.550289,-3.6338224,-3.3940802,-3.8899798,-4.079432,-4.080745,-4.248528,-4.1281667,-3.5947235,-3.7961268,-3.508534,-4.223339,-3.6836216,-4.35681,-4.522757,-4.377101,-4.3803363,-4.5600166,-4.5677567,-4.651444,-4.648326,-4.684545,-4.7307377,-4.6294446,-4.4274893,-4.488622,-3.4844763,-4.105213,-4.4970117,-4.5506005,-4.524134,-4.372845,-4.01396,-4.0195107,-4.2175255,-4.5186486,-4.6307473,-4.605695,-4.5749803,-4.582602,-4.548446,-4.5889325,-4.607495,-4.614113,-4.591599,-4.084307,-3.9212122,-4.3321414,-4.464318,-4.4957676,-4.4524436,-4.3127403,-3.8964844,-4.238847,-4.3159714,-3.9099932,-3.3754911,-3.1991715,-3.7665224,-3.8167906,-3.8134065,-3.736505,-3.795055,-3.753409,-3.9358864,-4.1261315,-4.114326,-4.072581,-4.201922,-4.419287,-4.349838,-4.17252,-3.0335991,-3.459784,-3.354134,-3.7605877,-3.8675408,-3.8272223,-3.2622561,-3.5385609,-3.5739222,-4.0786223,-4.1185155,-3.9319415,-3.9482942,-3.9368176,-3.5029674,-3.5479307,-3.63859,-3.0674639,-3.4081016,-3.2981539,-2.4573698,-2.9117765,-3.3766532,-3.3333864,-3.091239,-2.9997268,-2.5158038,-2.4149585,-2.843617,-2.911727,-3.412128,-3.542878,-3.307159,-3.1051726,-3.3107677,-3.0086641,-2.9615614,-2.995122,-3.0251422,-2.7443576,-2.9226298,-3.1163077,-2.7298293,-2.8092895,-2.5653238,-2.8095756,-2.6765213,-2.965167,-3.1986294,-2.757231,-3.2317562,-3.092309,-3.444823,-3.3574667,-3.547429,-3.4521565,-3.063134,-3.246199,-3.0288882,-2.8673897,-2.7902603,-2.5059254,-2.3554447,-2.145238,-1.8442693,-1.8293681,-1.6053245,-1.5724936,-1.4506042,-1.6020191,-1.6831503,-1.9439907,-2.1223464,-2.3272457,-2.4243133,-2.5086184,-2.6726506,-2.7361662,-2.83248,-3.051055,-3.1995234,-3.3396049,-3.4069414,-3.57016,-3.6597216,-3.7020102,-3.717009,-3.6435895,-3.5972385,-3.5979075,-3.5967453,-3.628684,-3.631599,-3.599012,-3.63041,-3.5977888,-3.6205392,-3.6298723,-3.5934896,-3.5702486,-3.604402,-3.598638,-3.6039736,-3.646296,-3.598648,-3.5803337,-3.5409412,-3.4988794,-3.5132134,-3.517799,-3.563968,-3.6050954,-3.566712,-3.592669,-3.6147013,-3.5454497,-3.4879868,-3.5317283,-3.53992,-3.513229,-3.4584565,-3.5555663,-3.493789,-3.2047803,-3.4170601,-3.3764906,-3.3630328,-3.4378421,-3.446866,-3.3530552,-3.414322,-3.481232,-3.4964406,-3.427829,-3.4880788,-3.482585,-3.5069747,-3.5006614,-3.4916635,-3.5821838,-3.55653,-3.639948,-3.6024854,-3.5893362,-3.5664766,-3.259499,-3.5194592,-3.4166896,-3.3543682,-3.3260727,-3.3519032,-3.3180342,-3.4018931,-3.0898933,-3.3025355,-3.378475,-3.436066,-3.433434,-3.4589586,-3.489479,-3.5418642,-3.510744,-3.5603123,-3.5733998,-3.525207,-3.4893403,-3.5805225,-3.3772488,-3.50271,-3.5391166,-3.4794142,-3.556233,-3.525403,-3.5350935,-3.2847602,-3.5074692,-3.4450557,-3.4511874,-3.4249535,-3.4387355,-3.3567276,-3.3871408,-3.2296934,-3.3108401,-3.389892,-3.3887649,-3.3922145,-3.3262467,-3.3665392,-3.300765,-3.3082957,-3.278376,-3.2771673,-3.3309932,-3.1662073,-3.122755
+-0.9980659,-1.4118621,-1.6913192,-1.5048089,-2.078392,-2.254646,-2.4256525,-2.4816914,-2.615299,-2.8413725,-2.7423081,-2.6669025,-1.9035869,-1.9956169,-2.5886793,-2.6619005,-2.625507,-2.7436998,-2.7684858,-2.8464372,-2.9923406,-2.853897,-2.6953983,-2.4590573,-2.777783,-3.1390376,-2.6413038,-2.8590872,-2.6256056,-2.9795642,-3.1099086,-3.1136904,-3.065201,-2.6050272,-3.2745872,-3.3807983,-3.494982,-3.1944673,-3.8322945,-3.7496452,-3.6789868,-3.5381765,-3.3787408,-3.2533646,-2.346028,-3.1347976,-3.7268243,-3.6913304,-2.7983685,-3.2897348,-2.8386197,-3.0041246,-3.1792498,-3.4731848,-3.6653974,-3.7145734,-3.2038548,-3.7891617,-3.7652707,-3.7382016,-3.6695259,-3.3784325,-3.1784413,-3.3496628,-3.229548,-3.1894484,-3.2087362,-3.2293835,-3.1389754,-3.3531222,-3.1735487,-2.7399616,-3.5216289,-3.3961134,-2.4839,-3.453288,-3.2190475,-3.3561244,-3.1292593,-3.830852,-3.849205,-3.8659568,-3.7155614,-3.3943796,-3.2402751,-3.8610196,-3.6930947,-3.559193,-3.4588504,-3.4455957,-3.454505,-3.3832283,-3.2814608,-3.33865,-3.3506098,-3.1988864,-3.3066761,-3.1980448,-2.6327586,-2.9604673,-3.11469,-3.8087482,-3.7447524,-3.7848563,-3.673233,-3.6583138,-3.63,-3.545627,-3.4903166,-3.4761949,-3.369908,-3.2697978,-3.251696,-3.2989004,-3.2159162,-3.1582856,-3.1817212,-3.1710777,-3.1368346,-3.1290116,-3.172605,-3.2424755,-3.1541972,-3.203116,-3.1789727,-3.0062323,-3.041164,-3.1371722,-3.1600156,-3.0695767,-3.0814087,-3.3093376,-3.2137926,-3.1124372,-3.0555048,-3.0968137,-3.104043,-3.0948596,-3.1014576,-3.0424342,-2.9306946,-2.9582882,-3.070929,-3.134778,-3.065261,-2.9939005,-2.9454699,-2.941051,-3.0469642,-3.0983315,-3.09161,-3.1033134,-3.1603045,-3.2227514,-3.0842788,-3.2015803,-3.297295,-3.2934256,-2.522767,-3.1049833,-3.4861999,-3.342969,-3.2714922,-3.3420553,-3.2583687,-3.1923065,-3.2665539,-3.2659063,-3.2144852,-2.917972,-2.2777781,-3.8004684,-3.7885747,-3.8581986,-3.1331794,-3.60365,-3.7596755,-3.8396602,-3.870401,-3.8979716,-3.7292361,-3.6355352,-3.6099515,-3.0381017,-3.1200597,-3.4964974,-2.6074622,-2.5140386,-3.0396466,-2.8598647,-3.3892536,-3.71805,-3.5134573,-3.483243,-3.3808174,-2.760066,-2.7503066,-2.5638478,-2.721741,-2.7929962,-3.0874965,-3.16298,-2.8890405,-3.4704711,-3.372459,-3.2954082,-3.4450521,-2.9926407,-3.2512653,-3.4253862,-3.5477214,-3.3916674,-3.6608293,-3.0030813,-3.2660875,-3.0768142,-3.3867571,-3.6160545,-3.3301845,-3.2769647,-3.4192953,-3.6909673,-3.7761064,-3.9936123,-3.9442601,-3.143506,-3.7987275,-2.9643416,-2.6465356,-2.9523728,-2.875267,-2.461616,-2.300517,-2.2455742,-2.5843093,-2.5969906,-2.0428894,-1.9543917,-2.0843,-2.2619739,-2.0965815,-2.0059404,-2.2125154,-1.9304352,-1.8162253,-1.4600983,-1.329911,-1.4727852,-1.5763066,-1.4732082,-1.8348322,-1.7394767,-1.3726723,-1.3942244,-1.5346501,-1.6920564,-1.6067808,-1.7283835,-1.5920632,-1.9858148,-2.3242593,-2.33562,-2.0121315,-1.7359877,-1.8132548,-1.7571316,-1.6937778,-1.6529706,-2.0869403,-2.0807452,-1.5659907,-1.5226755,-1.3924239,-1.2521613,-1.8585055,-1.7842774,-2.0087802,-2.1975446,-2.4228406,-2.6619854,-2.7504687,-2.705132,-2.3074665,-2.351973,-2.45562,-2.5061328,-2.7919803,-2.886631,-2.8597283,-3.0147297,-2.8641906,-2.723411,-2.0278296,-1.5920613,-1.6651673,-1.8465016,-2.0005853,-2.208034,-2.5190697,-2.2435074,-2.1391084,-2.5009043,-2.5126026,-2.3596525,-2.012339,-1.9379923,-2.5005636,-2.716465,-2.6079988,-1.765408,-1.7821445,-1.7778151,-1.5451076,-1.5735705,-1.6116664,-1.5467005,-1.4044616,-1.5677061,-1.6210561,-1.7293372,-1.28199,-1.27437,-1.1207271,-0.99537605,-1.0782146,-1.2539086,-1.2309623,-1.2259324,-1.5477378,-1.6838822,-1.8889894,-1.9271629,-2.2848976,-2.1299217,-2.091582,-2.1878629,-2.1877997,-1.9198675,-2.1081502,-2.0587888,-2.1215305,-2.0517173,-1.9943471,-1.7260365,-1.5959139,-1.3215866,-1.0631058,-1.0455048,-1.2477636,-1.4181361,-1.3475275,-1.4252167,-1.5137963,-1.0704618,-1.0163944,-1.2046356,-1.4288819,-1.3352575,-1.4336324,-1.4657955,-1.5881054,-1.1889453,-1.4942997,-1.2446074,-1.3447211
+0.18551554,-0.35549688,-1.1455865,-1.6838927,-1.8287408,-2.255849,-2.6262066,-2.7466023,-2.5949917,-2.689578,-2.3095994,-2.559524,-2.483343,-1.9916117,-2.1565566,-2.404636,-2.6386003,-3.0555456,-3.1835544,-3.0777307,-3.1292157,-3.0013814,-3.0661826,-2.500781,-2.4798985,-2.6698132,-2.4098036,-2.735931,-2.3348591,-2.674582,-2.931754,-2.652432,-3.0044484,-2.9883828,-3.0449471,-3.2133055,-3.2745068,-3.349804,-3.5623624,-3.6248422,-3.5875587,-3.405064,-3.4167283,-3.1927776,-2.9153593,-3.1045623,-3.5348763,-3.4181037,-3.1616554,-3.0281825,-2.7554123,-2.9117947,-3.160995,-3.241442,-3.4223325,-3.6351829,-3.6918068,-3.732666,-3.7314196,-3.8392186,-3.8139176,-3.4956682,-3.1323438,-3.2878413,-3.2880533,-3.1360765,-2.7684274,-3.393384,-3.363082,-3.7043486,-3.710267,-3.8974867,-3.9783978,-3.6473413,-3.3794975,-3.586648,-3.2005787,-2.9831648,-2.686257,-3.7543473,-3.7281194,-3.981412,-3.8276992,-3.6546288,-3.877976,-3.8734527,-3.6541116,-3.4926212,-3.4661875,-3.3659005,-3.4320774,-3.396246,-2.9902716,-3.241277,-3.3827467,-3.2428613,-3.2129498,-3.1609273,-2.8670878,-3.0305095,-2.9951413,-3.6671586,-3.7942233,-3.8058372,-3.6873362,-3.5511713,-3.568326,-3.462775,-3.3161821,-3.3355155,-3.2762833,-3.2301555,-3.2405472,-3.3481846,-3.2310257,-3.1750689,-3.2591844,-3.3020062,-3.3176055,-3.3515074,-3.3596861,-3.406156,-3.4210467,-3.3959448,-3.4971669,-3.3749309,-3.2612445,-3.2927787,-3.4171643,-3.3148308,-3.3324933,-3.343852,-3.3862963,-3.3580809,-3.4156785,-3.4179544,-3.4504924,-3.4225664,-3.4586678,-3.4782448,-3.5177407,-3.553322,-3.5516317,-3.5452912,-3.5551543,-3.5056012,-3.5252159,-3.5016932,-3.5151603,-3.5719235,-3.593058,-3.599503,-3.617426,-3.5615551,-3.5397758,-3.5426602,-3.4616327,-3.5071602,-3.3732083,-3.3356814,-3.4088473,-3.3998663,-3.364924,-3.4386077,-3.4133303,-3.3966923,-3.3522584,-3.4073896,-3.427981,-3.373806,-3.334927,-3.44837,-3.4119515,-3.2899277,-2.3308058,-3.1406083,-3.4978557,-3.5039172,-3.758356,-3.792657,-3.7279458,-3.6553652,-3.5265207,-3.4338012,-3.1374104,-3.008741,-2.5661633,-2.5205157,-3.1453395,-3.4152882,-3.7518702,-3.7583642,-3.5418754,-3.7243547,-3.69449,-3.1317902,-2.9056163,-2.9538822,-2.7744198,-2.6877387,-2.683657,-2.7202177,-2.7432923,-3.247211,-3.3138654,-2.940062,-2.718268,-2.6824245,-2.7515578,-3.1825976,-3.5125918,-3.105623,-3.2142236,-2.989468,-3.026556,-2.8757238,-2.8998666,-2.877709,-2.9413786,-2.6514184,-3.1318607,-3.350068,-3.391205,-3.2592478,-3.3230247,-3.2693582,-3.2121944,-2.7861204,-2.951914,-2.5966506,-2.400462,-2.0682476,-1.6136742,-1.4843993,-1.3712418,-1.5445011,-1.4751353,-1.5476708,-1.5558112,-1.3000388,-1.6008635,-1.9402294,-2.290618,-2.710455,-3.1358702,-3.3304477,-3.3287055,-3.140263,-3.5214205,-3.8223357,-3.986755,-4.002221,-3.0802686,-3.134338,-3.2462254,-3.616146,-3.8355775,-3.3340628,-2.5652032,-3.2737536,-3.668126,-3.7085228,-3.7688003,-3.4748988,-3.8277478,-3.751864,-2.96178,-3.6052952,-3.9490929,-4.0624166,-3.7231393,-4.1140904,-3.9293036,-3.907784,-4.204432,-4.2868915,-4.2774014,-4.188009,-4.0558996,-4.242542,-4.1685157,-3.968388,-3.8518367,-3.6104789,-3.4561386,-3.4046748,-3.5940475,-3.745399,-3.863976,-3.9956527,-3.7862191,-3.641485,-2.8797078,-3.0609856,-3.3905778,-3.7430053,-3.8418355,-4.073348,-4.186834,-4.100049,-3.9791226,-3.9969716,-3.8007712,-3.6886144,-3.3272493,-3.1537485,-3.3415565,-3.552152,-3.6517978,-3.1473274,-3.157346,-3.2157173,-2.97824,-3.087151,-2.4482782,-2.1111877,-2.6279702,-3.0270786,-3.2060933,-3.3929968,-3.354529,-2.3513982,-2.1979837,-2.703146,-3.1866243,-3.0490289,-3.0656075,-3.4451683,-3.9208307,-4.080863,-4.0476303,-4.2084427,-4.2961326,-4.2920127,-4.2427487,-3.9479756,-4.0598183,-3.9790602,-4.176591,-4.183567,-3.7809668,-3.9362726,-3.7133021,-3.18653,-2.964665,-3.0486488,-3.0246277,-2.471828,-2.0252585,-1.6808214,-1.6502712,-1.4467857,-1.3324051,-1.1886847,-1.060504,-1.1270702,-1.569011,-1.4936314,-1.806983,-2.1440935,-2.507006,-2.8344178,-2.6340709,-2.736933,-3.0381975
+0.22011037,-0.36610276,-1.3632917,-2.1450014,-2.4581385,-2.56424,-2.6215322,-2.66712,-2.5710278,-2.6103306,-2.7551723,-3.1454213,-3.343121,-3.027382,-3.1859295,-3.2671833,-3.4680104,-3.5983334,-3.6211462,-3.533804,-3.568151,-2.7529635,-3.3990226,-3.3647094,-3.2949567,-3.4460135,-3.3727605,-3.5395699,-3.4520483,-3.7019706,-3.7429705,-3.495864,-3.5571156,-3.4876542,-3.510229,-3.288579,-3.4794817,-3.552187,-3.697455,-3.8489337,-3.8868527,-3.8281302,-3.7226014,-3.5009286,-3.397968,-3.6594286,-3.7691293,-3.6826985,-3.7616076,-3.2010057,-3.4018135,-3.3239257,-3.5116472,-3.503403,-3.520374,-3.6857567,-3.8716674,-3.9282327,-3.8365273,-3.8683386,-3.8018765,-3.5777524,-3.610749,-3.4680438,-3.429875,-3.3579345,-3.314118,-3.3434126,-3.33079,-3.3279135,-3.301085,-3.350822,-3.2954478,-3.2100055,-3.1281023,-2.8871746,-2.2667973,-3.1490622,-2.8956478,-3.3187876,-3.6871593,-3.73345,-3.7492275,-3.7573466,-3.788299,-3.7545533,-3.6238775,-3.5514321,-3.4863253,-3.4397492,-3.4284,-3.4412346,-3.3595173,-3.3728166,-3.3875244,-3.4255788,-3.3571136,-3.320042,-3.1370912,-3.0746078,-3.0157976,-3.3236628,-3.2821615,-3.269291,-3.3557258,-3.3712702,-3.401186,-3.3568978,-3.333333,-3.3437138,-3.360845,-3.4360619,-3.4357247,-3.5328264,-3.5480628,-3.547348,-3.5745184,-3.654509,-3.7043104,-3.764049,-3.8095822,-3.8383145,-3.8721366,-3.8689485,-3.8941975,-3.815783,-3.6718712,-3.7196903,-3.7868037,-3.7747836,-3.7698283,-3.7683415,-3.8499532,-3.839591,-3.8923364,-3.9246736,-3.9729114,-4.0195985,-4.0387845,-4.018646,-4.0678296,-4.084269,-4.1159043,-4.130377,-4.1117625,-4.0540156,-4.051828,-4.0818696,-4.142654,-4.1494384,-4.2077994,-4.319011,-4.2667794,-4.238032,-4.280599,-4.280318,-4.2257566,-4.214174,-4.1825933,-4.138866,-4.187645,-4.137402,-4.141082,-4.1970763,-4.2173505,-4.179459,-4.209076,-4.1761403,-4.1992173,-4.2481036,-4.2732215,-4.247023,-4.3108954,-4.28347,-3.3951004,-4.031589,-4.088555,-3.90773,-3.969792,-4.0750175,-4.1186595,-4.212448,-4.244205,-4.1345515,-3.2789006,-3.1104193,-3.6534207,-3.5605407,-3.7618346,-3.832049,-3.8091645,-3.7884088,-3.7801838,-3.844151,-3.8290048,-3.5974536,-1.9359751,-2.3862705,-2.2742546,-2.2899358,-2.6190462,-2.8636484,-3.338509,-3.6426291,-3.8107762,-3.700086,-3.113338,-2.948676,-2.9008842,-2.5756392,-2.987023,-2.8798618,-2.7489789,-2.9496682,-3.0778694,-3.3604298,-3.5378628,-3.7155056,-3.7597775,-3.5963392,-3.6249,-3.7561736,-3.7434893,-3.7100105,-3.831027,-3.864324,-3.8547626,-3.8471298,-3.2016506,-2.9624615,-2.517336,-2.347622,-2.3046112,-2.3588312,-2.6014342,-2.301281,-1.8377934,-1.5510983,-1.23984,-1.1509507,-1.3045347,-1.3672123,-1.2625375,-1.2561893,-1.1740646,-1.1411166,-1.0688949,-1.0491476,-1.3853848,-1.5008204,-1.4999642,-1.6363394,-1.8547843,-1.2562282,-1.3475127,-1.4631212,-1.6077371,-1.4047816,-0.9029996,-0.9634139,-1.1223807,-1.2234871,-1.3576972,-1.7229388,-1.4993939,-1.6114666,-1.9474864,-2.3586001,-2.090816,-2.015171,-2.2610416,-2.2245045,-2.1078067,-2.0483243,-2.2300766,-2.2239904,-2.2639127,-2.4371145,-2.129877,-2.3960462,-2.3364534,-2.4495063,-1.8263223,-2.3409667,-2.0280013,-2.3557668,-2.49721,-2.4285989,-2.4426866,-2.5540183,-2.613974,-2.63159,-2.6283665,-2.5534031,-2.5429468,-2.800799,-2.3316565,-2.7492151,-2.774137,-2.7672644,-2.8725367,-2.8166642,-2.7193227,-2.752479,-2.6589727,-2.2905645,-2.0635264,-2.0404963,-0.8288087,-1.4685457,-1.4139068,-1.4480038,-1.7645922,-2.1312823,-2.180314,-2.2978458,-2.0516946,-1.6669574,-1.6425874,-1.7318561,-1.7333782,-1.5576367,-1.8607383,-2.061444,-2.3362637,-2.2397158,-2.0718892,-2.3110735,-2.4001074,-2.0818875,-2.0907981,-1.9862587,-2.2637324,-2.4622478,-2.1811552,-1.9728994,-2.0671568,-2.2577562,-2.533181,-2.392538,-2.2650237,-2.094126,-1.8485599,-1.5282791,-1.6554263,-2.194158,-2.7690353,-3.208446,-3.3565693,-3.632478,-3.4950056,-3.3365362,-3.472892,-3.4752693,-3.0682986,-2.7936702,-2.7520103,-2.691056,-2.743279,-2.6720834,-2.7659233,-2.7330737,-2.693832,-2.8612816,-2.9048681
+-0.9800367,-1.3228745,-1.5250037,-1.6219769,-1.4776547,-1.5031393,-1.5880678,-1.6038303,-1.7138524,-1.9028964,-2.1981318,-2.3108788,-2.1947174,-2.2503552,-2.5905313,-2.6385224,-2.6405666,-2.6654475,-2.7280042,-2.735496,-2.6631765,-2.0564134,-2.7635822,-2.9573693,-2.9278035,-2.8991053,-2.903821,-3.0385852,-3.07764,-3.082203,-3.0770552,-3.0006902,-2.990315,-3.0131536,-3.0539107,-2.5906494,-2.621682,-2.580789,-3.0767493,-3.1390095,-3.1536348,-3.180777,-3.1829848,-3.1552541,-3.2367792,-3.254418,-3.2291093,-3.2464595,-3.2616901,-1.9348483,-2.3852527,-2.8527732,-3.0458975,-2.8674061,-2.8193421,-2.9036555,-3.248836,-3.2511497,-3.2753944,-3.2945013,-3.2740674,-3.1944427,-3.2309206,-3.2836547,-3.2351584,-3.3276567,-3.409007,-3.382885,-3.3648891,-3.3834364,-3.3787003,-3.4592097,-3.4456906,-3.394794,-3.4739745,-3.314989,-3.1698987,-3.059016,-1.8934379,-3.182573,-3.3660154,-3.4298358,-3.4356854,-3.3569274,-3.4276848,-3.4250998,-3.388893,-3.4463787,-3.4468117,-3.4687784,-3.5731854,-3.5686376,-3.5349724,-3.5062704,-3.5132275,-3.5520535,-3.5970993,-3.566265,-3.5816474,-3.5479472,-3.6037214,-3.62851,-3.5643845,-3.6107252,-3.6188405,-3.6568358,-3.72862,-3.6865532,-3.6132925,-3.6168942,-3.6221883,-3.602719,-3.6279626,-3.6827834,-3.7395353,-3.7838807,-3.8373814,-3.8635612,-3.9127731,-3.975462,-3.9989243,-3.985086,-3.9806232,-3.9781747,-4.0196123,-3.995606,-3.9862704,-3.992784,-4.003612,-4.0203195,-4.032538,-4.0315323,-4.0508676,-4.0769706,-4.0772424,-4.0901914,-4.104982,-4.1328483,-4.161167,-4.162101,-4.1876183,-4.1742096,-4.1797414,-4.171774,-4.170921,-4.171923,-4.1944456,-4.1800904,-4.1673098,-4.1718373,-4.181951,-4.2141795,-4.17744,-4.165501,-4.1873355,-4.156705,-4.109508,-4.0935826,-4.1541095,-4.153396,-4.201968,-4.2244315,-4.2422643,-4.238519,-4.185869,-4.0517087,-4.1005926,-4.1531463,-4.1898704,-4.2235117,-4.242546,-4.2104983,-4.1879363,-4.2183957,-4.0815363,-4.061108,-4.113334,-4.2218013,-4.2475247,-4.235272,-4.233486,-4.181271,-4.144339,-4.035884,-3.2047768,-3.0667305,-3.4455616,-3.4948401,-3.5186281,-3.6239824,-3.74614,-3.802503,-3.8606076,-3.838995,-3.8218775,-3.8393102,-1.40343,-2.792574,-2.9327474,-2.7872028,-3.1953568,-3.343027,-3.4385228,-3.4758573,-3.52805,-3.3852005,-2.9183366,-2.3813095,-3.101825,-3.211025,-3.3827436,-3.1323256,-3.2958028,-3.4100337,-3.008899,-3.3678467,-3.2396872,-3.1897001,-3.1984606,-3.225315,-3.268618,-3.312726,-3.3415036,-3.317346,-3.305057,-3.3272977,-3.3962393,-3.3695152,-3.3394213,-3.404562,-3.301478,-3.1988235,-2.3198702,-2.7906122,-3.326684,-3.2188053,-3.1123421,-3.209388,-3.105465,-3.024955,-3.2171822,-3.2219129,-3.3194494,-3.1400428,-3.086523,-2.9968643,-2.9357257,-2.9288168,-2.903604,-2.8306217,-2.6128201,-2.2637691,-2.7598915,-2.5401454,-3.1168072,-2.99364,-2.819858,-2.650719,-2.544446,-2.9251373,-2.9919267,-2.8075073,-2.5298536,-2.487676,-2.5395753,-2.5275753,-2.5412698,-2.9024196,-2.7528534,-2.5017176,-2.4154663,-2.4345074,-2.441411,-2.5064628,-2.5461416,-2.4961824,-2.3587933,-2.4377842,-2.6335368,-3.0275948,-2.7324314,-2.2396047,-2.3822098,-3.0180175,-2.9143167,-3.13538,-3.3385882,-3.221232,-2.952868,-2.7254062,-2.574575,-2.4765172,-2.4835126,-2.6370242,-2.7395947,-3.0187414,-2.8494387,-3.2643957,-3.1563957,-2.936037,-2.7321892,-2.667425,-2.5405853,-2.4768426,-2.4683118,-2.5541883,-2.60107,-2.7711873,-2.4922545,-3.1006298,-3.1918745,-2.9179037,-2.7462025,-3.1267693,-2.8245087,-3.4609575,-3.5132203,-3.34059,-3.0392375,-2.8540292,-2.8125176,-2.7782946,-2.750068,-2.631354,-3.224564,-3.013338,-3.0990338,-3.4019322,-3.219932,-3.0808117,-2.9279757,-2.743341,-2.7704632,-2.6695952,-2.5768356,-2.5119207,-2.5613627,-2.7789323,-2.8609517,-2.9201298,-2.9145815,-2.8456483,-2.7323468,-2.7677464,-2.7760568,-2.7466788,-2.7568998,-2.8202915,-2.9590008,-2.9485946,-2.892358,-2.9717207,-2.9972868,-2.975237,-2.8802662,-2.9193878,-3.0252042,-2.8998508,-3.181694,-3.2061965,-3.1885707,-2.9797893,-3.0384674,-3.0921035,-2.817517
+-0.12022412,-0.613587,-1.1413586,-1.4103286,-1.4716971,-1.5661123,-1.6743166,-1.7292943,-2.0091057,-2.3155434,-2.325451,-2.173492,-2.1840665,-2.193894,-2.2920625,-2.2437015,-2.2101803,-2.2244966,-2.212606,-2.2124207,-2.2532403,-1.638896,-2.3867629,-2.40687,-2.3909998,-2.453312,-2.411758,-2.4785657,-2.4497957,-2.5133352,-2.582264,-2.6733098,-2.661819,-2.6025865,-2.2669473,-2.3669024,-2.4141407,-2.4655747,-2.6470652,-2.606422,-2.5803738,-2.6352055,-2.6234727,-2.602623,-2.5597107,-2.4548411,-2.4697871,-2.5259914,-2.5447543,-2.4563332,-2.1446881,-2.5097713,-2.5413005,-2.5624714,-2.405092,-2.0221844,-2.5050788,-2.639039,-2.86033,-2.9181182,-3.0671153,-3.1937711,-3.2136881,-3.4500456,-3.5859308,-3.656413,-3.7287607,-3.6106725,-3.5389576,-3.5680265,-3.551559,-3.6477284,-3.6977491,-3.6721725,-3.583362,-3.5768082,-3.734816,-3.553189,-3.5051923,-3.6247327,-3.7327762,-3.8993158,-3.8569865,-3.8714294,-3.8187308,-3.900793,-3.992022,-4.0707984,-4.1154943,-4.0813165,-4.064697,-4.0894446,-4.047438,-4.0083966,-4.047019,-4.0140295,-4.028848,-3.9986372,-3.98109,-4.0000415,-3.9146686,-4.0521083,-4.038943,-4.0922894,-4.1414475,-4.2254214,-4.1864104,-4.1129737,-4.0782657,-4.078089,-4.12852,-4.140572,-4.145265,-4.266929,-4.274734,-4.2350173,-4.300282,-4.337315,-4.3824267,-4.4185596,-4.3825927,-4.3616366,-4.3654256,-4.3525944,-4.4285526,-4.3464847,-4.272391,-4.3115687,-4.288881,-4.367379,-4.3539166,-4.368913,-4.3913927,-4.3724294,-4.413647,-4.4346805,-4.477165,-4.53577,-4.549062,-4.525335,-4.5357437,-4.535746,-4.5297647,-4.534597,-4.544868,-4.5502195,-4.565163,-4.5102315,-4.5004363,-4.4944096,-4.5563664,-4.576433,-4.4945555,-4.4191318,-4.4722495,-4.4908957,-4.3652053,-4.5425396,-4.6097274,-4.5726266,-4.5190406,-4.55289,-4.5877633,-4.566694,-4.4333754,-4.3841534,-4.4405746,-4.537773,-4.6001306,-4.582415,-4.5180554,-4.470697,-4.4645805,-4.524704,-4.369416,-4.6058707,-4.676063,-4.5680947,-4.466429,-4.442493,-4.465791,-4.474015,-4.5110683,-4.482184,-4.5005145,-4.39815,-4.4312916,-4.5442886,-4.6894603,-4.781554,-4.699901,-4.605843,-4.6168776,-4.4976745,-4.5303655,-4.606767,-3.197805,-4.067039,-2.3177161,-2.8611195,-3.104186,-3.2974124,-3.6314175,-3.7715306,-3.7948384,-3.8803172,-3.5578413,-2.460196,-3.3260407,-3.2902775,-2.0612636,-3.059511,-2.8593102,-3.045813,-2.7700734,-3.0115814,-2.9928026,-3.0029514,-2.999246,-3.0921834,-3.1471682,-3.1166403,-3.1330948,-3.185968,-3.2203956,-3.2624202,-3.2867174,-3.2884054,-3.2567174,-3.2262611,-3.2373228,-3.3785176,-1.877625,-2.7342877,-2.939332,-2.9729242,-2.744598,-2.9326692,-3.0057864,-2.757266,-2.9675298,-2.8229103,-3.0084386,-3.0509617,-3.0999725,-3.113421,-3.1149712,-3.1228604,-3.0937505,-3.0281696,-3.081828,-2.455313,-3.012676,-2.858611,-3.0519571,-3.14509,-3.2369623,-3.0820184,-2.4067202,-3.241208,-3.3592582,-3.5812378,-3.5320206,-3.4344645,-3.299706,-3.39308,-3.1223798,-3.534688,-3.5635898,-3.508904,-3.44138,-3.3995278,-3.3430412,-3.2964234,-3.376253,-3.4348314,-3.4248693,-3.2551517,-2.8264809,-3.3533814,-3.718773,-2.8421702,-2.5081136,-3.410072,-2.8602183,-3.2640965,-3.4787593,-3.6720858,-3.953033,-4.010572,-4.0032606,-3.9185357,-3.2037578,-3.117705,-3.112779,-3.4027665,-3.009629,-3.43943,-3.7590299,-4.0200014,-3.8484898,-3.9519796,-3.8077502,-3.7457757,-3.6744862,-3.5442142,-3.5603218,-3.1203141,-3.0733256,-3.4527986,-3.643979,-3.0488024,-2.8512983,-3.4125586,-3.233145,-3.5120938,-3.647726,-3.7029834,-3.5141284,-3.4352841,-3.411896,-3.079358,-2.808681,-3.2604713,-3.3777761,-2.919857,-3.358787,-3.4002411,-3.7466607,-3.706852,-3.7581782,-3.6854606,-3.7077723,-3.5604184,-3.4787138,-3.3661795,-3.2736163,-3.2690897,-3.2505517,-3.557724,-3.4251153,-3.4119885,-3.219974,-3.0035648,-3.0020478,-2.9621837,-2.935799,-2.9042928,-2.8582864,-2.8737698,-2.8474731,-2.8012953,-2.719904,-2.7414327,-2.5943215,-3.2302842,-3.414463,-3.3458967,-3.543817,-3.5994174,-3.4575055,-3.307391,-3.014646,-2.8384452,-3.062696
+-0.7317216,-0.9482148,-1.1295879,-1.2325146,-1.4515817,-1.7186086,-1.9873328,-1.9097462,-1.1661551,-2.0046954,-2.407559,-2.545308,-2.465827,-2.2587256,-2.3428102,-2.2861128,-2.345272,-2.4795413,-2.5777183,-2.6651945,-2.5491834,-1.5665758,-2.230463,-2.3166118,-2.3665395,-2.4195516,-2.1850305,-2.3845263,-2.409521,-2.4139583,-2.622799,-2.8130455,-2.8053284,-2.7806225,-2.7557685,-2.0897665,-2.5629623,-2.550304,-2.6708417,-2.7248235,-2.7782445,-2.8758204,-2.9139676,-2.8581324,-2.8041768,-2.832417,-2.9276485,-3.067971,-3.0117364,-2.9553528,-2.548,-2.8740675,-2.6888404,-2.8495965,-2.9207377,-2.937312,-2.9954386,-3.0587602,-3.141063,-3.1448145,-3.1732264,-3.2350132,-3.260986,-3.2634654,-3.2850251,-3.324047,-3.3140216,-3.345999,-3.313249,-3.300817,-3.2650084,-3.3143764,-3.4250007,-3.3945923,-3.2855313,-3.3222961,-3.3596358,-2.9578698,-3.224748,-3.3337524,-3.3795447,-3.4762058,-3.5149906,-3.5119424,-3.4902992,-3.5104585,-3.4990306,-3.5306842,-3.53777,-3.5566812,-3.552143,-3.5975668,-3.6253014,-3.6225247,-3.622028,-3.6190054,-3.598305,-3.5688505,-3.5287251,-3.480935,-3.4810658,-3.5368338,-3.5668364,-3.569868,-3.5925753,-3.6102724,-3.6475601,-3.6120977,-3.5673256,-3.551029,-3.5981722,-3.5204475,-3.5680785,-3.5606928,-3.5918581,-3.6307602,-3.6269288,-3.6099722,-3.6374283,-3.6525626,-3.6734905,-3.674779,-3.6513977,-3.6491838,-3.6471322,-3.6315231,-3.577532,-3.566822,-3.5507188,-3.5517845,-3.544951,-3.599846,-3.5913372,-3.5867596,-3.5709252,-3.5863566,-3.5806706,-3.5794017,-3.60077,-3.6126533,-3.614396,-3.6112087,-3.595991,-3.5631325,-3.5788455,-3.5707035,-3.5869122,-3.6028767,-3.574759,-3.5726833,-3.5120318,-3.4609475,-3.4489229,-3.4184182,-3.413268,-3.4681993,-3.3967533,-3.4110284,-3.4748824,-3.4898648,-3.5639822,-3.5043073,-3.5182467,-3.5398674,-3.497809,-3.372242,-3.4955406,-3.459474,-3.4763181,-3.4964094,-3.525776,-3.5466678,-3.5446281,-3.4821653,-3.284045,-3.3375242,-3.3982155,-3.470589,-3.5495024,-3.5817971,-3.5781212,-3.5115519,-3.4186535,-3.2993011,-3.2797575,-3.213212,-3.3793097,-3.268837,-3.352974,-3.431138,-3.4799743,-3.4861639,-3.5281253,-3.375403,-3.3564458,-3.359786,-2.650399,-2.8717227,-1.4380217,-2.3573384,-2.7398758,-2.810574,-2.9061134,-2.93016,-3.082186,-3.262999,-3.1843143,-2.8181338,-3.029712,-2.6802492,-1.7290545,-2.6869884,-2.2861252,-2.8868346,-3.0249045,-3.1297855,-2.9697957,-2.8062396,-2.7010136,-2.7238166,-2.7699664,-2.75685,-2.7264225,-2.7833843,-2.862145,-2.950879,-2.8488345,-2.8732328,-2.8519192,-2.8979545,-2.7454097,-2.806323,-2.303721,-1.9344878,-2.7027833,-2.8658638,-2.9830394,-2.997333,-2.944838,-2.406732,-2.9388912,-3.096465,-3.0731173,-3.1168125,-3.0939217,-2.9571755,-2.937395,-2.9227471,-2.9014592,-2.8429565,-2.8577907,-2.4778893,-3.0052516,-2.9056892,-3.2676494,-3.208765,-3.183126,-3.2566445,-2.876917,-3.4427307,-3.2288718,-3.1593697,-2.9933043,-2.9543781,-3.0748868,-3.0229602,-2.7732828,-3.1946096,-3.2407367,-3.1557674,-3.0668516,-3.0567126,-2.9810693,-3.0209427,-3.0544908,-3.0624433,-3.1111948,-2.9875715,-3.0725799,-3.5991964,-3.3596554,-3.344637,-2.7745805,-3.4304404,-3.4048367,-3.5715423,-3.75837,-3.5400496,-3.4920537,-3.408059,-3.3136008,-3.2743804,-3.2586827,-3.564346,-3.2603307,-3.6330671,-3.4386907,-3.6997595,-3.722455,-3.50928,-3.431425,-3.379201,-3.3193486,-3.2909565,-3.2464802,-3.2484322,-3.2821932,-3.3143473,-3.189136,-3.6678553,-3.5016127,-3.4657907,-3.245057,-3.7473254,-3.7050872,-3.836358,-3.5588772,-3.5530553,-3.5366197,-3.507451,-3.393012,-3.3376558,-3.5575933,-3.7413259,-3.5729554,-2.8583598,-3.2255483,-3.659402,-3.4897182,-3.443126,-3.392181,-3.3786376,-3.4887056,-3.3542364,-3.312045,-3.3191285,-3.2747126,-3.202928,-3.056768,-3.4425726,-3.3625813,-3.4387257,-3.4162016,-3.3330832,-3.1920943,-2.976686,-2.7541432,-2.6139722,-2.5072055,-2.4418852,-2.4364672,-2.4804568,-2.4938233,-2.3769917,-2.1708884,-3.0680695,-2.9496999,-2.9842725,-3.3236392,-3.3241992,-3.450896,-3.3684058,-3.2147803,-2.9816985,-2.847394
+-0.3108372,-0.21132123,-0.25914317,-0.51275235,-0.5100197,-0.666444,-1.0210261,-1.6020875,-1.9456391,-2.2151856,-2.1545105,-2.1527603,-2.2266817,-2.246293,-2.1882362,-2.4314504,-2.7102132,-3.0122852,-3.2022,-3.3546352,-3.4821024,-2.895854,-3.7657456,-3.7404656,-3.5486236,-3.4389539,-3.4612265,-3.480901,-3.371539,-3.5278192,-3.8658247,-3.9510589,-4.0298605,-3.2291787,-3.7972388,-4.0744824,-4.121122,-4.1356225,-3.398672,-4.0436273,-3.650438,-3.8351703,-4.197582,-4.13092,-4.116593,-4.0873075,-4.1146045,-4.028349,-3.448741,-3.8696923,-3.100547,-3.635406,-3.5669858,-3.7444549,-3.8539023,-3.8190885,-3.4798236,-3.3244634,-3.473495,-3.7314954,-4.0180807,-4.00517,-3.8137507,-3.9129405,-4.112737,-4.1328893,-4.2567015,-4.276302,-4.165045,-4.040673,-3.2385712,-3.688799,-3.975716,-3.5954995,-3.5674014,-3.79291,-4.0295253,-4.153589,-3.3876243,-3.5067754,-4.052052,-4.1594024,-4.180182,-3.7084022,-3.5352821,-3.9200592,-4.142567,-4.332531,-4.345731,-4.423516,-4.3716846,-4.367162,-4.287543,-3.9637685,-3.6230142,-3.588957,-4.13605,-4.0169325,-3.7954025,-3.3912458,-3.8994837,-4.0940585,-4.1373873,-4.2408514,-4.24241,-3.2578635,-3.5435686,-3.4659705,-4.2272997,-3.8712554,-4.3515024,-4.5383377,-4.1960425,-4.3877454,-4.451671,-4.4777293,-4.26376,-4.2161546,-4.6583614,-4.7330217,-4.564759,-4.3666224,-4.5038447,-3.9683576,-4.040631,-4.719377,-4.7214065,-4.5807767,-4.37398,-4.374584,-3.8743768,-4.1717186,-4.622791,-4.637627,-4.841886,-4.70619,-4.6110215,-4.615129,-4.4557476,-4.3225217,-4.414569,-4.6291904,-4.4988666,-4.3199205,-4.324654,-4.3246894,-4.454482,-4.4858747,-4.377225,-4.325439,-4.4528966,-4.5210834,-4.4468923,-4.2568164,-3.234718,-4.1015544,-4.2318654,-4.4380507,-4.375426,-4.4198413,-4.3140607,-4.4762673,-4.4227166,-4.322128,-4.253364,-4.2228246,-4.312781,-4.3590827,-4.4047904,-2.9954658,-4.0557885,-4.0209613,-4.326976,-4.2511754,-4.243586,-4.0199113,-4.2097783,-4.2103763,-4.283111,-4.352597,-4.1897535,-4.2401032,-4.308843,-4.1586657,-4.146833,-4.162684,-3.999765,-4.1480756,-4.1390176,-3.2271783,-3.6014652,-4.044606,-3.797977,-3.623117,-3.3299465,-2.664132,-2.6303432,-3.1989522,-3.3848794,-3.537995,-3.8397956,-3.6391532,-3.4246683,-3.548555,-3.39989,-3.4728174,-3.6135578,-3.6818898,-3.4061584,-3.3930583,-3.871019,-3.670247,-3.492804,-3.259666,-3.3747268,-3.2107072,-3.6227288,-3.6085129,-3.6742163,-3.7502456,-3.880262,-3.884408,-3.811747,-4.011863,-4.0659823,-3.8267102,-3.8391242,-3.625883,-2.8782349,-2.729237,-2.4601617,-2.2030077,-2.0181713,-1.9258623,-1.8987575,-1.8946352,-1.9661958,-2.0694942,-2.2297177,-2.3749552,-2.4305139,-2.5135598,-2.6248717,-2.775378,-2.865528,-2.8288465,-2.8992116,-3.061589,-3.1423469,-3.2231765,-3.3011322,-3.3781323,-3.4343581,-3.3880153,-3.4486551,-3.6860228,-3.728908,-3.784144,-3.8071837,-3.7871232,-3.7639437,-3.7654634,-3.696858,-3.7421632,-3.6710305,-3.656741,-3.7899547,-3.7746296,-3.7675457,-3.7321057,-3.7110844,-3.6614861,-3.6812007,-3.6495018,-3.617515,-3.76785,-3.7531333,-3.7804623,-3.8064752,-3.7387452,-3.7429738,-3.7646823,-3.850308,-3.8024101,-3.835071,-3.8395104,-3.7748141,-3.77675,-3.6966786,-3.666535,-3.6378877,-3.5199869,-3.367074,-3.45664,-3.486257,-3.5608408,-3.5437987,-3.6296964,-3.5394735,-3.5418925,-3.4176416,-3.4493804,-3.3966947,-3.3353102,-3.3923316,-3.5521626,-3.608132,-3.6507277,-3.7693,-3.7731423,-3.7426848,-3.9123502,-3.8577242,-3.860178,-3.3917384,-3.3842423,-3.5016127,-3.5072303,-3.3950562,-3.400777,-3.4192462,-3.280797,-3.1177475,-3.3825922,-3.4151702,-3.4085345,-3.5111856,-3.5145907,-3.59108,-3.575759,-3.615284,-3.7193723,-3.7258859,-3.7540736,-3.651191,-3.549313,-3.4718547,-3.5279331,-3.7223115,-3.6490304,-3.6249795,-3.708259,-3.7036414,-3.508814,-3.6104817,-3.4333987,-3.291033,-3.2137213,-3.231507,-3.1428213,-3.3940854,-3.303403,-3.407732,-3.484748,-3.4180748,-3.3352153,-3.2316303,-3.1473022,-3.0347793,-3.1571102,-3.017742,-2.8767211,-2.8451962,-2.727507,-2.4659803
+-0.6834641,-1.5010681,-1.8154807,-1.6329873,-1.4607425,-1.7217455,-2.0944118,-2.458561,-2.6331677,-2.6668117,-2.7036393,-2.6562166,-2.6053624,-1.827636,-2.0873322,-2.2431087,-2.3719952,-2.729618,-2.9707391,-3.0795546,-3.1593637,-3.0236826,-3.0401864,-2.8118396,-2.856371,-2.8462257,-2.6536393,-2.7024472,-2.7333603,-2.9212632,-3.1467147,-3.2600768,-3.3291616,-2.7351143,-2.9907818,-3.3617792,-3.5158486,-3.44118,-3.3355565,-3.3825598,-3.4097264,-3.5089612,-3.5117364,-3.353861,-3.2036443,-3.3685198,-3.410741,-3.3885136,-3.0593219,-3.2081757,-2.285296,-3.2290065,-3.3216693,-3.4564207,-3.5624766,-3.5492046,-3.2924137,-3.285481,-3.328669,-3.5765076,-3.6492543,-3.6472924,-3.4612942,-3.5572052,-3.6283762,-3.6125498,-3.627483,-3.5853643,-3.4790196,-3.4190092,-3.288989,-3.1185153,-3.3176181,-3.3172235,-3.1929684,-3.2259483,-3.2855427,-3.3516202,-2.259271,-3.232306,-3.5824547,-3.5851846,-3.6833403,-3.6607928,-3.449372,-3.5340757,-3.6561956,-3.6755834,-3.6741025,-3.6548533,-3.629304,-3.556737,-3.5314343,-3.5045547,-3.3900251,-3.365862,-3.379388,-3.399229,-3.1915278,-3.10542,-3.224575,-3.4550147,-3.3893907,-3.5327585,-3.5767999,-3.4841037,-3.43615,-2.975299,-3.236865,-3.1079478,-3.5998025,-3.9520621,-3.247742,-3.9237475,-3.991878,-4.0215087,-3.8588653,-3.448879,-3.911674,-3.9347796,-3.8882256,-3.7690763,-3.7294745,-3.6213622,-3.5258875,-3.6937518,-3.72999,-3.6568675,-3.6229749,-3.0448248,-3.1993632,-3.5159307,-3.6160002,-3.628535,-3.6553614,-3.6127787,-3.5864043,-3.6314812,-3.6034498,-3.5847955,-3.5383964,-3.6139874,-3.6463633,-3.5131907,-3.5162675,-3.526338,-3.529601,-3.5739388,-3.5707502,-3.5598948,-3.6252823,-3.6168137,-3.670623,-3.572964,-3.0873227,-3.3848224,-3.360273,-3.4374933,-3.3112006,-3.4382324,-3.4191773,-3.4348154,-3.5048633,-3.479371,-3.2834303,-3.2938988,-3.4263852,-3.5219822,-3.4963782,-2.5047562,-2.8845708,-3.5149996,-3.3599858,-3.40043,-3.0055468,-3.4195185,-3.5506415,-3.6232457,-3.7776513,-3.7384768,-3.4307237,-3.4883156,-3.516311,-3.3134766,-3.208429,-3.1360772,-3.1152945,-2.8885293,-3.0819635,-2.1055226,-2.1223154,-2.514454,-3.0665123,-3.1186094,-2.8586156,-2.1139903,-1.8860698,-1.8684361,-1.9155569,-2.0432246,-2.2978916,-2.5520282,-2.0760643,-2.363026,-2.2584536,-2.2598922,-2.324398,-2.2743652,-1.8921375,-2.3706837,-2.6170335,-2.2112346,-2.220941,-1.7981725,-1.8859887,-1.9232097,-2.2282674,-2.681202,-2.7236438,-2.5546703,-2.990528,-3.1919253,-3.2787595,-3.3178117,-3.3190427,-2.8574486,-2.891389,-2.2227652,-2.0734606,-2.0368357,-1.7780538,-1.5270078,-1.2782717,-1.2722101,-1.3319471,-1.4862893,-1.7351525,-2.13,-2.466002,-2.6459785,-2.6817157,-3.1049757,-3.1926718,-3.3733478,-3.287446,-3.3961344,-3.486541,-3.65097,-3.7449136,-3.7484412,-3.7589245,-3.7355423,-3.8970513,-3.907395,-3.888012,-3.8726015,-3.7857013,-3.8378782,-3.7736902,-3.8724341,-3.9108958,-3.8054419,-3.8616266,-3.7651696,-3.8760858,-3.8062954,-3.8094482,-3.9231238,-3.8591166,-3.7980351,-3.6527874,-3.9255815,-3.8975806,-3.912788,-3.8593297,-3.7977734,-3.7419205,-3.8944545,-3.8589792,-3.8543758,-3.8413887,-3.8641477,-3.93301,-3.9061112,-3.8581595,-3.865806,-3.8836613,-3.7985535,-3.7462287,-3.7618337,-3.68593,-3.573338,-3.2388575,-3.6082597,-3.6665258,-3.759911,-3.7762094,-3.8279223,-3.6803439,-3.6028101,-3.6615977,-3.6913056,-3.5549908,-3.4501004,-3.5283556,-3.7700896,-3.7210517,-3.7089152,-3.8713832,-3.7581654,-3.8065429,-3.909943,-3.8646822,-3.845016,-3.3251803,-3.4805567,-3.6470547,-3.5696754,-3.4687922,-3.4747684,-3.582533,-3.5377913,-3.5499268,-3.6299427,-3.6967473,-3.8021116,-3.7434115,-3.7121177,-3.7859812,-3.7790418,-3.7842703,-3.8964643,-3.8573375,-3.9062762,-3.7686977,-3.6668992,-3.733307,-3.8572555,-3.856341,-3.7763462,-3.8417,-3.871778,-3.8238716,-3.7436,-3.7496877,-3.667501,-3.634138,-3.5557494,-3.442131,-3.5824983,-3.6268702,-3.4062755,-3.5977688,-3.6296153,-3.6520596,-3.5788674,-3.552773,-3.5107448,-3.5144722,-3.5486498,-3.4974978,-3.3786895,-3.4297657,-3.3715677,-3.3769035
+-0.81029624,-1.1416993,-1.3927681,-1.3220491,-1.6001883,-1.7270968,-1.8471696,-1.9253902,-1.9588382,-2.0732899,-2.073954,-2.0765476,-2.0888054,-1.8360758,-3.0969098,-3.3669038,-3.3331184,-3.261948,-3.1476443,-2.997124,-2.922823,-2.8311973,-2.8103669,-2.8560112,-3.0408874,-3.2182257,-3.2083795,-2.9415581,-2.8274143,-2.9456658,-3.0254197,-2.9883246,-2.9381151,-2.8012805,-2.720864,-2.7914424,-2.8892279,-2.856336,-2.9915261,-3.1371112,-3.135016,-3.0514047,-3.0251446,-2.7723346,-1.6547971,-3.159721,-3.7382526,-3.701293,-3.4880304,-3.7131038,-3.2570553,-3.4952993,-3.6591022,-3.5627267,-3.5814364,-3.4828327,-3.4845405,-3.4573717,-3.42758,-3.505879,-3.4422233,-3.3308759,-3.0048456,-3.0351267,-2.9786143,-2.9030018,-2.8914843,-2.9679835,-2.8088908,-3.1126828,-2.7698493,-3.3441424,-3.5009346,-3.4756765,-3.395895,-3.566623,-3.5674715,-3.4232967,-2.747204,-3.6527917,-3.6245873,-3.5252075,-3.5286417,-3.4547749,-3.2913857,-3.4817317,-3.4155643,-3.2503881,-3.2004824,-3.1869268,-3.2028182,-3.254126,-3.1753302,-3.2173376,-3.2991967,-3.2617083,-3.3053536,-3.222328,-2.7156854,-3.6022203,-3.5106578,-3.5704618,-3.4630713,-3.478417,-3.4704444,-3.4207764,-3.401805,-3.3757596,-3.15128,-3.415556,-3.4571264,-3.3687909,-2.985355,-3.47845,-3.4771938,-3.4009333,-3.2926922,-3.3329,-3.3503556,-3.4115303,-3.4559782,-3.5473661,-3.6196456,-3.576046,-3.6145484,-3.6671612,-3.6313338,-3.6344619,-3.6938376,-3.5400808,-3.5215101,-3.5943065,-3.5875096,-3.5873165,-3.5913165,-3.5863547,-3.6251748,-3.6159923,-3.6032689,-3.6197176,-3.667636,-3.749393,-3.6635203,-3.712081,-3.8442283,-3.813641,-3.7863803,-3.7854047,-3.6409411,-3.6804404,-3.802568,-3.6570606,-3.7472796,-3.7138672,-3.2147076,-3.8656912,-3.8444004,-3.8594604,-3.151282,-3.78027,-3.694178,-3.8725162,-3.8464932,-3.7508998,-3.852594,-3.9199877,-3.8872876,-3.8191705,-3.7732577,-3.4330044,-3.48102,-3.6805015,-3.812108,-3.8454041,-3.7421365,-3.5025783,-3.7805939,-3.6677747,-3.7359414,-3.5906546,-3.701861,-3.3174253,-3.520544,-3.4488502,-3.4215288,-3.4905434,-3.4115329,-3.003841,-3.1925383,-2.551077,-3.2864895,-2.7754157,-1.8186305,-3.073099,-3.0039978,-2.4519596,-2.3361511,-2.5568147,-2.983138,-2.9372306,-3.2505796,-3.3804002,-2.9580703,-3.2108283,-3.3070614,-3.36125,-3.3439617,-3.1893635,-2.2793474,-2.8598337,-3.2279372,-3.0456843,-3.2526174,-3.0477798,-3.2352462,-3.2678266,-3.2884247,-3.214865,-3.0927305,-2.7869563,-3.1843028,-3.2689073,-3.2145667,-3.2049537,-3.192885,-3.1580591,-3.045887,-2.9368148,-2.5157359,-3.1114821,-3.2128053,-3.2183833,-3.1468263,-3.2540803,-3.176546,-3.1488562,-2.9845157,-2.9813719,-2.8214235,-2.9962409,-2.9416742,-2.6873097,-2.8167558,-2.761918,-2.7519875,-2.750042,-2.792757,-2.6179922,-2.322466,-2.2846704,-2.0756636,-1.8720407,-1.4158971,-1.4836805,-1.4000161,-1.3331454,-1.423733,-1.2142034,-0.95572346,-1.0755489,-1.0810869,-1.1511433,-1.1884418,-1.1569912,-0.9694225,-1.0150595,-1.1202099,-1.0500836,-1.1086342,-1.06637,-0.9523062,-0.8970198,-0.9753254,-0.950622,-1.0614827,-0.92026776,-0.93969387,-1.1899357,-1.1994991,-1.2183805,-1.274235,-1.2363927,-1.0788188,-1.1029196,-1.2424369,-1.4481688,-1.3570347,-1.3790658,-1.3719025,-1.4196846,-1.4172399,-1.3764102,-1.2646699,-1.2508512,-1.0123589,-1.293812,-1.3701739,-1.2211018,-1.3577099,-1.1073217,-1.0204,-1.2755871,-1.2350993,-1.2053251,-0.8905733,-1.2746377,-1.2707002,-1.2767277,-1.2301838,-1.1623621,-1.1619232,-1.3610053,-1.5072889,-1.5857058,-1.7868218,-1.6210144,-1.4206464,-1.5099621,-1.5860789,-1.6885476,-1.6596336,-2.0547733,-1.6123357,-1.5590041,-1.4955413,-1.6426365,-1.6614969,-1.4388609,-1.5633996,-1.4467032,-1.4947937,-1.5962787,-1.7072935,-1.4605811,-1.2370083,-1.1491435,-1.1021414,-0.86483926,-1.0893128,-1.2717197,-1.3967755,-1.5971146,-1.6704798,-1.5307381,-1.0345452,-0.49545705,-0.6012514,-0.99509686,-1.604429,-1.9046159,-1.9084466,-1.9370828,-2.126885,-1.8681929,-1.9476595,-2.1665306,-2.1728988,-2.3040316,-2.2343454,-2.4408765,-2.4798374,-2.1401873,-2.2721205,-2.4352698,-2.6437917
+-0.9946889,-1.568253,-1.8892262,-1.7960954,-1.8899102,-2.0937936,-2.2161393,-2.3387856,-2.46907,-2.6095233,-2.7174842,-2.662447,-2.5155978,-2.2195225,-2.4436936,-2.7244463,-2.8682046,-2.9781194,-3.0597603,-3.0963554,-3.1531363,-3.0741346,-2.9050522,-2.8018966,-2.797923,-3.0016177,-3.067471,-3.0861135,-3.1200602,-3.168507,-3.204601,-3.2834156,-3.376788,-3.2138593,-2.6499848,-2.9612002,-3.1522493,-3.2721677,-3.442681,-3.4845152,-3.574347,-3.5840807,-3.4726145,-3.1351457,-2.7817774,-3.0650868,-3.1428118,-3.2192588,-3.1827526,-3.220881,-2.6855617,-2.4551318,-2.5933893,-2.6437514,-2.7680354,-2.772024,-2.9152322,-3.2659082,-3.2973754,-3.3781984,-3.384437,-3.4331155,-3.45422,-3.463748,-3.4330118,-3.4639893,-3.5132287,-3.5585685,-3.4545696,-3.5711644,-3.584877,-3.6737018,-3.8329268,-3.8327417,-3.683144,-3.913796,-3.2164357,-3.4141002,-2.6385717,-3.1358514,-3.2547717,-3.5222168,-3.5535502,-3.5280862,-3.5944564,-3.8204722,-3.7015843,-3.6615434,-3.6794395,-3.6914291,-3.7484622,-3.77851,-3.7386594,-3.7681708,-3.8396115,-3.7951632,-3.8266091,-3.8491464,-3.1165462,-2.9699783,-3.2154841,-3.3202004,-3.4075575,-3.5097919,-3.4436862,-3.5009875,-3.5848403,-3.5378945,-2.726972,-3.1978328,-3.3074965,-3.3154922,-3.4510472,-3.5035,-3.454915,-3.408389,-3.447564,-3.4605093,-3.4670496,-3.4741282,-3.5612845,-3.6338844,-3.6396842,-3.6792822,-3.7727304,-3.6987848,-3.6703858,-3.7539005,-3.7971835,-3.794989,-3.6144645,-3.7044091,-3.7392988,-3.7002053,-3.6405783,-3.7380166,-3.7598853,-3.7991,-3.8220592,-3.8146281,-3.7908244,-3.8330407,-3.8867087,-3.9989924,-4.009384,-3.9734387,-3.9676614,-3.9798217,-4.004359,-4.127292,-4.1183596,-4.0788646,-4.155019,-4.2030854,-3.999257,-3.9552846,-4.0572996,-4.1303043,-3.5277305,-3.6879363,-3.843964,-3.9915977,-4.055721,-4.092336,-4.034085,-3.9699292,-4.000976,-4.1420503,-4.085607,-4.023316,-3.5327744,-3.8886085,-3.994844,-3.950931,-3.7311406,-3.577793,-3.6754482,-3.746666,-3.9285588,-3.9431424,-3.9601917,-3.964438,-4.0333967,-4.0606117,-4.1072674,-4.0238643,-3.6801293,-3.0173144,-2.8849125,-2.779339,-2.9417312,-3.0393064,-3.032572,-2.8884187,-3.0899982,-2.1624436,-1.9578521,-1.8266039,-1.8756862,-1.8149152,-2.0079067,-2.1785765,-2.2182689,-2.0649357,-2.2037468,-2.4706025,-2.594747,-2.4665542,-2.0349586,-2.1085258,-2.2852454,-2.1572134,-2.2827318,-2.1396677,-2.2101011,-2.3024364,-2.4385571,-2.6831088,-2.9150252,-2.9394093,-3.132114,-3.3167503,-3.3794684,-3.4452357,-3.485855,-3.4811077,-3.4972348,-2.9214756,-2.8972206,-2.8215494,-2.8533607,-2.9048536,-2.8947647,-2.7285013,-2.523414,-2.3819118,-2.169545,-1.9737401,-2.1544528,-2.3020592,-2.1949816,-2.0134864,-2.0450346,-1.952249,-1.8905952,-1.8716569,-1.9084096,-1.6689799,-1.6188269,-1.5167358,-1.4984152,-1.0986786,-1.1103945,-0.9980311,-0.9673559,-0.987812,-1.0143223,-0.98023957,-0.83188456,-1.1205847,-1.25017,-1.423837,-1.4365222,-1.44872,-1.6037881,-1.517993,-1.4284449,-1.9691167,-1.9438686,-1.8844762,-2.0579066,-2.0203612,-2.1244223,-2.1871471,-2.2219875,-2.2034492,-2.385737,-2.4938123,-2.4401698,-2.2483675,-2.0901732,-2.0443058,-2.1012287,-2.412456,-2.539598,-2.7625055,-2.5921898,-2.402765,-2.3391383,-2.3167243,-2.2626038,-2.1957226,-2.2357845,-2.3414001,-2.3019567,-2.4082797,-2.5467563,-2.703348,-2.7003202,-2.8242562,-2.634467,-2.5354645,-2.4118333,-2.413919,-2.320166,-2.4064364,-2.6221323,-2.6822484,-2.64376,-2.365271,-2.1069179,-1.9513097,-2.0906525,-2.32111,-2.240836,-1.9627018,-1.860425,-1.9393287,-1.8662095,-1.8459246,-1.8535306,-2.032268,-1.937367,-1.8432488,-1.7169592,-1.5932479,-1.5501175,-1.2783401,-1.2614164,-1.3243887,-1.3121924,-1.4054422,-1.5652313,-1.655453,-1.5034406,-1.525497,-1.5642998,-1.5348687,-1.9869366,-2.0460043,-2.3081884,-2.1964588,-2.0183442,-1.4720316,-0.84842724,-0.7643594,-0.8219697,-0.8172793,-1.0569096,-1.5223665,-1.389441,-1.3813627,-1.4575589,-1.43841,-1.6103916,-1.6709125,-1.6727118,-1.3733861,-1.4631953,-1.5375338,-1.6610434,-1.4586313,-1.4121184,-1.2471683,-1.6092589
+-0.31699353,-1.1530056,-1.5134387,-1.832273,-1.8516622,-2.0196142,-2.0199077,-2.0239205,-2.041694,-2.0713453,-2.133597,-2.3035612,-2.540435,-2.4236913,-3.153035,-3.1794991,-3.1297007,-3.058265,-3.0062037,-3.044403,-3.2627563,-3.336299,-3.0632215,-3.0882506,-2.966391,-3.341467,-3.256361,-3.1818218,-3.0618916,-3.2738838,-3.2710962,-3.2884693,-3.3015747,-3.26749,-3.2397127,-3.2717683,-3.2925558,-3.3863835,-3.3343282,-3.2625551,-3.2836046,-3.3345912,-3.302991,-3.3597376,-2.8911552,-3.019219,-3.54394,-3.3748598,-3.3896847,-2.8735569,-2.9381933,-3.5535207,-3.5043886,-3.5755358,-3.4850721,-3.4494102,-3.5389948,-3.5703907,-3.4664626,-3.4509592,-3.3797169,-3.4863338,-3.4825041,-3.517856,-3.4532506,-3.5012155,-3.5335793,-3.6348314,-3.641787,-3.572685,-3.495471,-3.429776,-3.4443598,-3.531166,-3.5524364,-2.9459214,-3.2723498,-3.7190514,-3.1081512,-3.7996297,-3.6174147,-3.6920478,-3.533124,-3.6146774,-3.4966955,-3.4342647,-3.467053,-3.5816905,-3.5694206,-3.5526004,-3.5359628,-3.5453575,-3.6205857,-3.6910682,-3.6275597,-3.6195729,-3.6495588,-3.7092142,-3.62952,-3.427582,-3.354546,-3.675825,-3.6284845,-3.645399,-3.5921988,-3.6372156,-3.6235552,-3.6345608,-3.6880653,-3.6744857,-3.6753752,-3.72364,-3.7230992,-3.6596096,-3.6625433,-3.7524452,-3.7966604,-3.7821994,-3.791698,-3.791061,-3.7886848,-3.7324266,-3.7484608,-3.76269,-3.7538638,-3.7284942,-3.7584424,-3.7960672,-3.7757926,-3.8205752,-3.7837806,-3.788753,-3.831172,-3.8533006,-3.8521628,-3.8678584,-3.8659005,-3.8462634,-3.85284,-3.8665957,-3.8628182,-3.886581,-3.8695188,-3.8804412,-3.8890252,-3.9045334,-3.925899,-3.9583077,-3.9517393,-3.9994874,-3.9379005,-3.9204326,-3.982123,-4.017442,-3.9734359,-3.947194,-3.9298415,-3.9379544,-4.0222096,-3.9668431,-3.9502525,-3.9533534,-3.98323,-3.9602466,-3.9382129,-3.9436765,-3.97331,-4.0054493,-4.0329213,-3.9617004,-3.94002,-3.9992738,-4.010922,-4.0090766,-3.294744,-3.558031,-3.8329253,-3.7987275,-3.8450108,-3.8830848,-3.8856912,-3.852366,-3.8814483,-3.9259725,-4.0290327,-3.872476,-3.688286,-3.6258442,-3.75952,-3.8002915,-3.8253722,-3.8315864,-3.8710966,-3.829681,-3.8331609,-3.4985247,-2.4546695,-3.1218715,-2.9888523,-3.1652703,-3.0300448,-3.838972,-3.8766222,-3.926251,-3.9186702,-3.7770152,-3.7654567,-3.4225454,-3.1201653,-3.226504,-3.8856897,-3.1843371,-3.5206268,-3.5606875,-3.720015,-3.9131188,-3.9326715,-3.9393754,-4.0036325,-3.865622,-3.9540162,-3.930502,-3.9689078,-3.9999743,-4.0270452,-4.015674,-4.086065,-3.977231,-3.0225587,-3.552495,-3.6497018,-3.551558,-3.2285976,-3.3574626,-3.6297133,-3.470645,-3.0064764,-3.0019546,-3.1707106,-3.3568225,-3.2310221,-2.781428,-2.8281188,-2.6173549,-2.630254,-2.6137648,-2.5978396,-2.3815455,-2.008197,-1.772464,-1.7825599,-1.7047489,-1.4311585,-1.0836887,-0.99731845,-1.342041,-1.5538011,-1.439014,-1.314825,-1.2378745,-1.581945,-1.676172,-1.6787901,-1.6203701,-1.8795233,-1.9355116,-1.9483557,-2.1336827,-2.296471,-2.2429361,-2.0978503,-2.2653074,-2.2689114,-2.3597045,-2.4045234,-2.3715544,-2.2712004,-2.2334101,-1.976296,-2.2191696,-2.1841066,-2.1540356,-2.187865,-2.1913028,-2.2591238,-2.3763673,-2.374763,-2.3817222,-2.3792715,-2.4042232,-2.4361875,-2.4158006,-2.280047,-2.5713155,-2.6111958,-2.681539,-2.711935,-2.7349963,-2.71167,-2.5761857,-2.4801936,-2.5836892,-2.503861,-2.4950528,-2.4579086,-2.4403198,-2.388566,-2.5035858,-2.4808922,-2.3175538,-2.0852194,-2.0934205,-2.413043,-2.4787273,-2.4575095,-2.526577,-2.5365653,-2.5027392,-2.5510025,-2.551733,-2.5623648,-2.5361328,-2.7363324,-2.7958055,-2.6849644,-2.681755,-2.5460153,-2.6345422,-2.7610834,-2.6128097,-2.5340872,-2.5490189,-2.5707912,-2.5037036,-2.5102723,-2.4848561,-2.438744,-2.4376678,-2.4165535,-2.386767,-2.33006,-2.344736,-2.3408632,-2.0485172,-1.9874966,-1.9999104,-1.943193,-1.8009217,-1.5465379,-1.6215925,-1.2820017,-1.3871405,-1.9078202,-2.1830907,-2.4736066,-2.2743266,-2.1077547,-1.6487808,-1.6036048,-1.3068798,-1.3566456,-1.1707149,-1.2327783,-1.3182192,-1.0124536
+-0.5718407,-1.1772993,-1.3706064,-1.4895399,-1.5158503,-1.5704958,-1.5992186,-1.6657674,-1.8139496,-1.3017545,-1.0859926,-1.5440981,-1.6887317,-1.5245395,-1.8151412,-2.4835985,-2.498588,-2.4559731,-2.5262651,-2.6885722,-2.8210936,-1.4101624,-2.1393976,-1.4933641,-1.7292633,-2.5302734,-2.7619467,-2.3034568,-2.492344,-2.699294,-2.8548465,-2.5932665,-2.8949533,-2.92822,-2.2424088,-1.6186252,-1.488615,-2.2218447,-2.752573,-3.0169697,-2.9749048,-2.9872937,-3.0465274,-3.0991302,-2.9926765,-2.260579,-2.9222548,-2.9759927,-3.0240817,-1.0717967,-2.006296,-1.9624133,-2.8286371,-3.160926,-2.9444218,-3.1404395,-3.1937613,-3.1060774,-3.0348344,-2.9926481,-2.9996724,-3.0606012,-3.1724288,-3.1225019,-3.0198717,-3.1468084,-3.1269455,-3.2909982,-3.3182504,-3.3812423,-3.4122577,-3.3905382,-3.4081764,-3.5271273,-3.4814887,-2.7375891,-1.5637298,-2.7745225,-2.0081117,-2.8633475,-2.961298,-3.0135384,-3.1276474,-3.2143285,-3.1959944,-3.2066088,-3.1962621,-3.2877665,-3.2746344,-3.2969491,-3.3147383,-3.352478,-3.408455,-3.483125,-3.525006,-3.5851316,-3.609533,-3.6463962,-3.5209522,-3.615703,-3.3658352,-3.624852,-3.7106671,-3.6657574,-3.6149411,-3.6489406,-3.676976,-3.7251492,-3.7784028,-3.7780442,-3.7551227,-3.7734046,-3.7617712,-3.70504,-3.6761167,-3.7373705,-3.72191,-3.75002,-3.7660856,-3.8039417,-3.812451,-3.8457727,-3.887528,-3.9192748,-3.8508658,-3.831719,-4.0059047,-3.9719462,-3.9968486,-4.017731,-3.9864135,-3.9714646,-3.9958434,-3.9809432,-3.9861479,-3.9759426,-4.0018616,-3.9921985,-3.9982553,-4.0027165,-3.993754,-4.0638328,-4.1171346,-4.1675887,-4.1614385,-4.140038,-4.0734434,-4.084627,-4.1846232,-4.166613,-4.1743283,-4.220032,-4.247855,-4.1611967,-4.1735377,-4.1858325,-4.1955595,-4.1980085,-4.211716,-4.0865765,-4.110203,-4.0211916,-4.0273385,-4.1234193,-4.0674424,-4.082173,-4.2040534,-4.1351223,-4.034223,-4.0694566,-4.0955396,-4.011871,-4.078502,-4.120727,-3.9450293,-3.8645191,-4.0449405,-4.058886,-3.96938,-3.978763,-3.9886642,-4.032783,-4.036817,-4.1121063,-3.896924,-3.2520478,-3.6173794,-3.6202664,-3.8892417,-3.9895463,-3.9225063,-3.900958,-3.937488,-3.966238,-3.9425654,-3.8055792,-0.943345,-2.29982,-1.7651682,-0.80850536,-0.7171286,-1.7398384,-2.0778022,-2.156592,-2.2837214,-2.3149858,-2.3557467,-1.5106494,-2.21508,-1.8865051,-1.7301309,-1.6712813,-1.7523608,-1.0708005,-1.3304672,-1.9990149,-2.1005776,-2.108006,-2.1367579,-2.1020103,-2.2725122,-2.1532505,-2.2363024,-2.349932,-2.436903,-2.6267176,-2.55183,-2.71382,-1.645328,-1.5758715,-1.848731,-2.0234275,-0.9647798,-1.4866645,-1.2484248,-1.4633908,-0.8474756,-1.4056451,-1.3768711,-1.4953754,-0.53396004,-0.6478079,-1.2210917,-0.83603233,-1.2383575,-1.0899026,-1.2472596,-1.1734393,-0.95088285,-1.2547543,-1.2967179,-0.9139704,-1.0286219,-0.6867254,-0.9908889,-1.1298122,-1.2101991,-0.97394556,-1.1717677,-1.1575873,-1.299712,-1.288065,-1.2819223,-1.1738138,-1.1424699,-1.1801498,-1.1843622,-1.2365127,-1.3717947,-1.3842416,-1.2680354,-1.2147365,-1.2081277,-1.167964,-1.2130547,-1.2930176,-1.361207,-1.3305969,-1.1151621,-1.2354593,-1.3795762,-1.2685227,-1.125777,-1.0665367,-1.1660128,-1.1912296,-1.2271285,-1.1772981,-1.1559255,-1.1665208,-1.1574562,-1.1400008,-1.0022249,-1.0754743,-1.175492,-1.1932783,-1.1968179,-1.1673048,-1.1968594,-1.262938,-1.2116947,-1.2267268,-1.2495322,-1.239378,-1.1940763,-1.1066682,-1.2023406,-1.0415587,-1.174541,-1.1930254,-1.210592,-0.94691414,-0.40990573,-0.60388595,-1.0613682,-1.1959465,-1.1848836,-1.2110367,-1.25211,-1.2725387,-1.2601285,-1.162612,-1.1675842,-1.3623455,-1.2806747,-1.4330602,-1.2003415,-1.272793,-1.3574703,-1.374505,-1.2904239,-1.2798703,-1.259661,-1.202688,-1.1617801,-1.1662903,-1.060755,-0.99526614,-1.0611358,-1.2906811,-1.210057,-1.1126435,-1.0846832,-0.7572493,-0.39566094,-0.023973614,0.27635658,0.24204728,-0.029717565,-0.30525446,-0.26603472,-0.371473,-0.6243364,-0.7499078,-0.9229408,-1.3882444,-1.48615,-1.5172205,-1.4704556,-1.2945967,-1.3919744,-1.2332723,-1.2969816,-1.2467873,-1.154063
+-0.3809598,-1.4938562,-2.024272,-2.1841407,-2.2315645,-2.271144,-2.3152747,-2.485282,-2.5867898,-1.8556335,-3.0266986,-3.4240735,-3.2027326,-2.8973465,-3.378061,-3.3601027,-3.2280042,-3.2180414,-3.250873,-3.3615265,-3.3994472,-2.0200744,-3.142694,-3.5355654,-3.3390532,-3.7250304,-3.6406467,-3.355654,-3.6150525,-3.6649642,-3.5669758,-3.4928417,-3.5406597,-3.2373385,-2.5329404,-3.3198152,-3.0486114,-3.534425,-3.9182935,-3.892757,-3.689684,-3.673944,-3.7151513,-3.7810493,-3.7352028,-3.72508,-3.7386665,-3.7364602,-3.802495,-2.844424,-3.7642717,-3.8250046,-3.8611283,-3.460534,-3.4527168,-3.9219613,-3.842548,-3.7849703,-3.802342,-3.7815337,-3.758278,-3.756513,-3.8171802,-3.8282313,-3.8188548,-3.9119878,-3.900329,-4.0109262,-4.011355,-4.0450854,-4.062445,-4.0791903,-4.086764,-4.1022196,-4.130992,-4.150911,-4.1042557,-4.1762505,-3.660143,-3.953289,-3.9575467,-3.984551,-4.0212884,-4.050763,-4.0946355,-4.117179,-4.11551,-4.1348634,-4.140974,-4.144959,-4.1850076,-4.203028,-4.2049394,-4.2258887,-4.243626,-4.2590003,-4.2681127,-4.2718124,-4.2746377,-4.263434,-4.2589602,-4.2964206,-4.2664905,-4.2426934,-4.218418,-4.236047,-4.282779,-4.2859554,-4.273567,-4.2757564,-4.275831,-4.2516265,-4.24047,-4.234127,-4.22043,-4.249491,-4.271416,-4.2497306,-4.233088,-4.256047,-4.2733808,-4.3180366,-4.3358035,-4.339564,-4.331818,-4.2838893,-4.347421,-4.4002,-4.404442,-4.3932037,-4.4367414,-4.4290757,-4.401841,-4.3696647,-4.3455186,-4.3638406,-4.4262843,-4.368235,-4.328963,-4.333427,-4.3149877,-4.385079,-4.396514,-4.1123405,-4.585398,-4.5527186,-4.5046773,-4.5024724,-4.5341115,-4.512888,-4.4715657,-4.4438977,-4.520271,-4.5475307,-4.5243983,-4.569682,-4.595264,-4.591156,-4.5333304,-4.5480247,-4.4978204,-4.3804975,-4.3650975,-4.444536,-4.5492616,-4.52216,-4.6892877,-4.5704837,-4.4682837,-4.4466834,-4.482081,-4.4695687,-4.441907,-4.43307,-4.5316644,-4.6702676,-4.6093206,-4.4500756,-4.4174666,-4.3926396,-4.36421,-4.4571214,-4.500976,-4.581528,-4.533719,-3.4577165,-4.457149,-4.483535,-4.4675956,-4.501931,-4.4747806,-4.5125184,-4.5096383,-4.5906816,-4.552195,-4.3923645,-0.5908415,-2.8808658,-1.9214983,-2.1365674,-3.095243,-3.3540566,-3.4865484,-3.4996848,-3.6123328,-3.673342,-3.67753,-3.0295806,-3.8661199,-3.5746706,-2.0868173,-3.2497478,-2.9077952,-3.0231216,-3.0612562,-3.094208,-3.0830336,-3.124742,-3.1628995,-3.3614337,-3.4992306,-3.3268661,-3.3121395,-3.3618758,-3.5058343,-3.653822,-3.6280222,-3.737389,-3.6312366,-3.7036672,-3.43835,-3.5589218,-2.4528265,-2.6249337,-3.2060952,-2.81457,-2.586866,-2.6655965,-2.689981,-2.6900575,-2.3359625,-2.7846537,-2.5434728,-2.5647068,-2.5562515,-2.4885683,-2.4785752,-2.6741958,-2.6031811,-2.5759306,-2.435429,-1.9190607,-2.2452486,-1.4571369,-1.7051477,-1.9921458,-1.9218957,-1.8434129,-1.4257464,-1.394346,-1.8452039,-1.7084212,-1.6397545,-1.5783927,-1.4573913,-1.6093614,-1.425895,-1.6089058,-1.810561,-1.7727156,-1.6717906,-1.6148963,-1.6474237,-1.6180792,-1.6292362,-1.7284615,-1.353714,-1.0512242,-0.6054403,-1.2752178,-2.0028312,-2.1268067,-0.73579496,-0.6297714,-0.7005858,-0.5131865,-1.4008434,-1.6133602,-1.6363199,-1.7184937,-1.780333,-1.8464503,-1.8845265,-1.3591125,-1.689827,-1.9510036,-1.8835828,-2.1251998,-2.265008,-2.3000166,-2.1016526,-2.3545203,-2.4652631,-2.4789112,-2.3843784,-2.100806,-1.8800032,-1.6640847,-1.0919781,-1.260737,-1.4141772,-0.9946466,-0.6098793,-1.4137142,-0.77605695,-1.2162299,-1.8316832,-1.8985848,-1.6742551,-1.6401331,-1.5927937,-0.924339,-0.91451377,-0.9728797,-1.0928035,-0.3043596,-0.3690949,-0.8546805,-1.4998922,-1.6550851,-1.5485461,-1.7160246,-1.7424135,-1.8542428,-1.9856019,-1.9732392,-1.8504524,-1.6283524,-0.91675717,-1.5966368,-1.6347349,-1.5288751,-0.9576643,-0.72469825,-0.9826519,-1.479152,-1.8170815,-2.5137093,-3.1476393,-3.4080756,-3.4600384,-3.502403,-3.4846556,-3.5433192,-2.5791836,-3.047613,-3.2596161,-3.0204966,-3.0856626,-2.9868884,-2.9159536,-3.0623646,-3.0930505,-3.2572823,-3.3022885
+-0.3785224,-0.92781156,-1.4275465,-1.8680134,-2.06469,-2.015797,-2.0565448,-2.1488514,-2.3059974,-2.984672,-2.9265614,-3.125053,-3.1493921,-2.983886,-3.1442664,-3.0262978,-3.0005126,-3.0551975,-3.0275803,-3.0529132,-3.1991222,-2.6743677,-2.9836211,-2.9570243,-2.793367,-2.6730938,-2.5233333,-2.7903094,-2.8739285,-2.9709454,-3.0563898,-3.1179273,-3.0868213,-3.0033417,-2.925373,-2.891882,-2.8742883,-3.170635,-3.4841793,-3.5028694,-3.4366546,-3.301438,-3.2339349,-3.3539886,-3.4330635,-3.4403288,-3.4316347,-3.312925,-3.3158278,-3.3230774,-2.9834352,-3.2129416,-3.1220694,-2.772986,-2.9940243,-3.3918207,-3.529306,-3.5206342,-3.4330525,-3.342303,-3.2220569,-3.113828,-3.1378329,-3.0151777,-2.8251495,-2.8715744,-2.8119957,-2.7646937,-2.8006139,-2.8206835,-2.806326,-2.8678505,-2.7489905,-2.838253,-2.7900684,-2.4822974,-2.9643185,-2.5931249,-2.72194,-2.831673,-2.7332828,-2.7340753,-2.757498,-2.7051904,-2.7521586,-2.7305536,-2.6564798,-2.6630826,-2.6177952,-2.6026554,-2.6497493,-2.643683,-2.6211548,-2.6586668,-2.64922,-2.6628428,-2.6495297,-2.5918417,-2.5684597,-2.5430365,-2.641181,-2.676237,-2.6107876,-2.636295,-2.6183012,-2.5559716,-2.628883,-2.5873516,-2.5468283,-2.5397475,-2.5437927,-2.5019236,-2.5584278,-2.5412736,-2.555067,-2.6317353,-2.6761827,-2.724539,-2.8593726,-2.9489703,-3.0165524,-3.0061789,-2.9376197,-2.9066935,-2.8813648,-2.8576202,-2.8177047,-2.7796574,-2.7779517,-2.7531495,-2.726087,-2.745872,-2.749168,-2.819403,-2.9334383,-3.0346968,-3.0258708,-3.047432,-3.1174495,-3.1359124,-3.199966,-3.2162611,-3.2431934,-3.1805143,-3.2362585,-3.1895685,-3.1716228,-3.1342702,-3.1230955,-3.1494126,-3.185938,-3.2578208,-3.2242901,-3.2204452,-3.2084436,-3.242391,-3.1649752,-3.0634286,-3.1501417,-3.2158046,-3.2585657,-3.3466942,-3.4162672,-3.4713283,-3.3797693,-2.945644,-3.0518732,-3.0429115,-3.1899505,-3.2873802,-3.411483,-3.496281,-3.5337453,-3.3991165,-3.1919122,-3.150096,-3.3402047,-3.5782533,-3.54486,-3.6074352,-3.6565685,-3.703897,-3.663144,-3.4812517,-2.992062,-2.4257493,-3.4147544,-3.7230616,-3.5838728,-3.6008308,-3.6300092,-3.62506,-3.699296,-3.6166563,-3.5447013,-3.548214,-1.4852953,-3.1175234,-2.1399815,-2.3169644,-2.8983383,-3.2297182,-3.394805,-3.7396774,-3.946783,-4.066237,-4.0463595,-3.9576993,-4.436376,-3.4104266,-2.5267434,-3.7097316,-2.9353652,-3.4461114,-3.4013588,-3.8968124,-3.8789124,-3.9595065,-4.023193,-4.33787,-4.3593807,-4.3948894,-4.3463616,-4.3017898,-4.419247,-4.3944087,-4.4637876,-4.3617578,-4.414805,-3.4175081,-4.2384915,-4.042772,-3.5674047,-2.6174846,-3.2070184,-3.7633696,-2.4760628,-2.7605908,-2.5777593,-2.0481625,-1.3744836,-1.5010202,-1.9071889,-2.103418,-2.4484,-2.5900297,-2.3421826,-1.8778667,-1.7922566,-2.0783167,-2.3601665,-2.1799824,-2.0010457,-1.7416797,-2.294489,-2.438533,-2.326907,-2.3106346,-2.5303636,-1.8673453,-2.4256134,-2.4695883,-2.1689746,-1.8023007,-1.6220741,-1.5798464,-1.645514,-2.0082192,-2.6636562,-2.7775426,-2.541698,-2.3827028,-2.1441793,-1.9566152,-2.1263304,-2.5366583,-2.6473813,-2.7006433,-1.4293187,-1.3630624,-1.8741488,-1.9491446,-1.4272256,-1.413959,-1.3990669,-1.4151404,-1.4848328,-1.6066422,-2.0011954,-2.3492756,-2.4659514,-2.3818183,-2.455052,-1.4319265,-1.5794866,-1.3917813,-1.4691002,-1.4461398,-1.7342014,-2.2758255,-2.334637,-2.6678472,-2.6592398,-2.4754255,-1.9734046,-1.6849678,-1.3611734,-1.4052885,-1.499423,-1.6703134,-1.3636124,-1.5220864,-1.3204129,-1.5334082,-2.0588357,-1.6455398,-2.1320548,-2.0578394,-1.9677563,-1.9927526,-1.7395523,-1.5788062,-1.6239445,-1.7451625,-1.8283243,-1.2607648,-1.2452898,-1.3590338,-1.6769087,-2.604323,-2.7830977,-3.1048274,-2.9290051,-3.4653711,-3.4925895,-3.279553,-3.0477042,-2.9914498,-2.0486822,-2.4264991,-2.7941065,-2.7665515,-2.4687135,-1.7277846,-1.4537828,-1.5852678,-1.7910817,-1.9739137,-2.0527205,-2.1331542,-2.1369762,-2.178528,-2.24833,-2.2602677,-2.043826,-2.3791876,-2.2318933,-1.9826572,-2.0051847,-1.8405902,-1.963346,-2.4148784,-2.082014,-1.8617485,-2.0193
+-0.43513054,-1.0004141,-1.3800132,-1.5946481,-1.7724166,-1.8758721,-1.8909159,-1.7683175,-1.2312319,-3.3029437,-3.4693246,-3.6848063,-3.5959363,-3.428011,-3.6393657,-3.544935,-3.2255416,-2.9917002,-2.8674502,-2.8120823,-2.7558522,-1.8815055,-3.047112,-3.16755,-3.210095,-3.171246,-2.160402,-2.8796258,-3.3462005,-3.256277,-3.1233358,-3.064652,-3.1170285,-3.1300557,-3.160281,-2.743184,-2.8066902,-3.1226568,-3.1974888,-3.334784,-3.311226,-3.357454,-3.3664382,-3.4479525,-3.5171156,-3.5752273,-3.651874,-3.7613974,-3.8279781,-3.8690257,-3.8959336,-3.9703965,-4.0015798,-4.0073,-4.0402865,-4.0384955,-4.041147,-4.107189,-4.163382,-4.1837287,-4.21154,-4.205542,-4.2598095,-4.2875037,-4.2910047,-4.3639097,-4.3803377,-4.3928037,-4.4182267,-4.411283,-4.440657,-4.4588017,-4.4515796,-4.5127354,-4.5206943,-4.485192,-4.4903965,-4.5195136,-4.578811,-4.5614176,-4.5685406,-4.6059337,-4.6267266,-4.6567564,-4.709047,-4.727134,-4.710999,-4.697188,-4.704245,-4.7238145,-4.7737327,-4.7563615,-4.7637405,-4.800195,-4.8261495,-4.846576,-4.856484,-4.881107,-4.885112,-4.88061,-4.912884,-4.8887634,-4.860103,-4.879151,-4.86625,-4.849805,-4.912138,-4.945752,-4.973945,-4.9942975,-4.969335,-4.9555063,-4.950664,-4.913195,-4.8837194,-4.9247446,-4.914883,-4.812652,-4.7295384,-4.7119355,-4.7462583,-4.854901,-4.905556,-4.9275084,-4.906144,-4.8998322,-4.9883513,-5.0283775,-5.037462,-4.9835005,-4.9993134,-5.0119405,-5.029735,-5.005847,-4.939061,-4.819227,-4.8655834,-4.892719,-4.8249955,-4.850156,-4.8363767,-4.8949804,-4.9099245,-4.8704996,-4.8537846,-4.8432307,-4.7717867,-4.8743286,-4.935502,-4.921348,-4.858406,-4.819115,-4.885714,-4.9411154,-4.9421473,-4.952624,-4.9771714,-5.0075364,-4.971246,-4.8178425,-4.8160596,-4.892931,-4.8616834,-4.8264832,-4.902744,-4.914763,-4.9693427,-5.013382,-4.9849496,-4.893256,-4.7267413,-4.5995693,-4.679915,-4.6409574,-4.879748,-4.9468284,-4.939052,-4.8856,-4.7355547,-4.668543,-4.655461,-4.744509,-4.8340583,-4.905229,-4.921351,-4.8985777,-4.94041,-4.9234595,-4.935539,-4.9062304,-4.794542,-4.6881175,-4.686197,-4.8895698,-4.956318,-4.961829,-4.7703695,-4.549626,-3.763517,-3.340499,-4.616632,-4.586227,-4.658347,-4.7244864,-4.8137965,-4.8122435,-4.5175853,-4.675735,-4.698549,-4.4282846,-0.8521051,-3.3976138,-3.0087636,-3.674194,-3.7132983,-3.80681,-3.7439303,-3.748785,-3.7716384,-3.8014417,-3.8025484,-3.7606168,-3.749475,-3.7306695,-3.7236562,-3.7777777,-3.6983428,-3.6986432,-3.7056575,-3.8522139,-3.7741575,-3.7120657,-3.6939445,-2.7133837,-3.5509353,-3.8330336,-3.8063827,-3.7653823,-3.74265,-2.9402342,-2.6956391,-3.7604122,-4.0242267,-3.9101558,-3.9958968,-3.9791589,-3.874391,-3.853294,-4.0412536,-3.9768047,-3.9306102,-2.8204126,-3.8753705,-3.3541486,-3.2077055,-3.8965483,-3.9159055,-3.7853694,-2.9387665,-3.0267754,-3.7798204,-3.6532636,-3.581292,-3.5428112,-3.5606787,-3.6192052,-2.9132116,-3.7118196,-3.6983504,-3.623847,-3.6351798,-3.6491015,-3.6011472,-3.6043675,-3.469594,-3.8954391,-3.7335901,-3.5420232,-3.0503504,-3.258335,-3.6224067,-3.2596805,-2.6910744,-3.1532264,-3.2418633,-3.4791245,-3.5435963,-4.203343,-4.315855,-4.249291,-4.166633,-4.0404468,-3.4280057,-3.833921,-3.5785048,-3.950603,-3.992725,-3.8969073,-4.245206,-4.18241,-4.190252,-4.184321,-4.01027,-3.877111,-3.8757777,-3.887907,-3.8731456,-3.4552808,-3.4862878,-3.9756894,-4.0377493,-3.6013756,-3.41809,-3.8102994,-4.172705,-3.3192677,-4.323571,-4.5633497,-4.4852715,-4.4042206,-4.214248,-3.991044,-3.6240904,-4.216512,-4.282926,-3.637835,-4.036173,-4.3923144,-4.4005194,-4.1265683,-3.878325,-3.9943175,-3.8503313,-4.0679307,-4.0797105,-3.945706,-3.8061595,-3.68322,-2.864682,-3.7590175,-3.7899418,-3.8100896,-3.7703815,-3.6825967,-3.7001166,-3.7150187,-3.6420617,-3.507351,-3.3967226,-3.394785,-3.3919966,-3.2748365,-3.241275,-3.1897287,-1.9412107,-3.0889688,-3.8083606,-3.3878326,-3.429145,-3.8659883,-3.4677975,-3.9108043,-3.8595324,-3.7028852,-3.888165
+-0.6633803,-0.878709,-1.0528233,-1.1898949,-1.3391008,-1.4143453,-1.5469747,-1.575114,-1.6448925,-1.6169577,-2.4012783,-2.592609,-2.6991692,-2.780006,-2.801429,-2.86709,-2.9765348,-3.1117158,-3.2388105,-3.373345,-3.4085221,-3.1813636,-3.3813717,-3.353353,-3.365376,-3.3621206,-3.268837,-3.399013,-3.4393482,-3.4516244,-3.487451,-3.5334783,-3.56982,-3.6091702,-3.564147,-3.2764564,-3.2532177,-3.5645425,-3.6501122,-3.6643558,-3.650414,-3.6693773,-3.725123,-3.704763,-3.6782408,-3.7121997,-3.742044,-3.8071365,-3.8469715,-3.7850218,-3.7594924,-3.7776341,-3.8048978,-3.7319412,-3.8080592,-3.8212724,-3.8439689,-3.8726802,-3.8592834,-3.877355,-3.905683,-3.9095883,-3.911096,-3.9470334,-3.9643846,-4.007741,-4.0435357,-4.082483,-4.113047,-4.094089,-4.0961275,-4.0534625,-4.1136594,-4.1151323,-4.077173,-4.014193,-4.0067706,-4.072619,-4.079465,-4.0699797,-4.1209216,-4.0713124,-4.074735,-4.067221,-4.1279593,-4.158649,-4.1764812,-4.1705575,-4.159612,-4.1645055,-4.1739154,-4.2011666,-4.2217035,-4.2307715,-4.2378135,-4.2541337,-4.2237935,-4.2454176,-4.2542872,-4.2865844,-4.272684,-4.232555,-4.221606,-4.1980753,-4.197206,-4.1899977,-4.194578,-4.1993937,-4.1941886,-4.2196016,-4.1949563,-4.184387,-4.1588235,-4.160451,-4.1772785,-4.195501,-4.2073827,-4.169269,-4.1667504,-4.164769,-4.177815,-4.2244563,-4.252272,-4.275636,-4.2550845,-4.2310376,-4.2459893,-4.2806025,-4.298205,-4.2698503,-4.2670674,-4.279837,-4.30688,-4.2992797,-4.2805867,-4.2451806,-4.24767,-4.2546268,-4.2328506,-4.232965,-4.2507935,-4.272868,-4.272818,-4.274242,-4.2821507,-4.307231,-4.2493477,-4.274734,-4.3110027,-4.3253293,-4.3075404,-4.254233,-4.306579,-4.3394256,-4.345052,-4.352157,-4.331204,-4.322673,-4.3621287,-4.320109,-4.3079076,-4.3288207,-4.3220897,-4.3047686,-4.3110237,-4.228109,-4.271941,-4.3079114,-4.3282256,-4.3207374,-4.2758946,-4.207153,-4.2004104,-4.2962766,-4.2713866,-4.2673936,-4.3387027,-4.3219724,-4.3050666,-4.2975225,-4.257405,-4.229115,-4.302279,-4.309944,-4.2574115,-4.210592,-4.308103,-4.2413216,-4.267092,-4.3220377,-4.3522143,-4.28817,-4.259674,-4.254127,-4.272734,-4.2977486,-4.2637935,-3.8186088,-3.6011372,-3.571457,-4.149553,-4.295091,-4.5270333,-4.632856,-4.688639,-4.6051364,-4.452344,-4.2879767,-4.383637,-4.250174,-0.883238,-3.2343922,-2.7100997,-3.3915014,-3.4033303,-3.4391842,-3.485024,-3.672843,-3.7818847,-3.8069263,-3.8685532,-3.8288012,-3.9066377,-3.9499836,-3.9822927,-4.149029,-4.0474563,-4.043567,-4.050643,-4.0524507,-3.9461741,-4.088377,-4.1145177,-2.521285,-2.3484693,-2.933679,-3.096795,-3.0877826,-3.1838746,-3.1634383,-3.056301,-3.1129918,-3.211656,-3.2339792,-3.2838204,-3.2675555,-3.3505025,-3.4626524,-3.5213075,-3.5310051,-3.5050223,-3.43078,-3.0196462,-3.2351656,-3.3585167,-3.4430885,-3.5901864,-3.6090791,-3.0777342,-2.3564978,-2.777352,-2.7449555,-2.8628318,-2.9661613,-3.1081305,-3.1833797,-3.1462927,-2.487061,-2.7551627,-2.8229594,-2.916525,-2.9760544,-3.062506,-2.5003984,-2.949183,-2.9848266,-2.9671464,-3.0265884,-2.0777028,-2.7115455,-2.7650595,-2.3512058,-2.5564353,-2.2967377,-2.596883,-2.4166172,-2.528987,-2.6970038,-2.6884685,-2.7278905,-2.7524495,-2.7746139,-2.7491508,-2.782186,-2.7452161,-2.7788873,-2.5707061,-2.6559317,-2.7457998,-2.7457309,-2.717402,-2.7424538,-2.7134414,-2.7503567,-2.8179374,-2.849089,-2.8562331,-2.6442976,-2.8204424,-2.9994206,-3.002209,-2.865766,-2.9278278,-2.9342785,-2.916188,-2.5478017,-3.0048394,-3.0339355,-3.023695,-3.027567,-2.9716167,-2.8974085,-2.6194496,-2.8478656,-2.869,-2.722395,-2.914661,-3.0638921,-3.0881238,-2.9314423,-2.8620331,-2.9696407,-2.9576225,-2.997354,-2.9909544,-3.0383897,-3.0612645,-3.0650277,-2.5397432,-3.271166,-3.0830877,-3.1369042,-3.2083926,-3.2197094,-3.2537997,-3.281127,-3.2986484,-3.2963433,-3.3173263,-3.3501587,-3.3825161,-3.3917952,-3.404957,-3.3968515,-2.7385745,-3.1352825,-3.4208422,-3.1528754,-2.503634,-3.131248,-3.2577734,-3.314428,-3.3696241,-3.4200175,-3.3526044
+-0.67946625,-1.5264394,-2.057969,-2.1868122,-2.2432218,-2.3577225,-2.434032,-2.3689632,-2.9401836,-3.1067939,-3.05858,-2.9750855,-2.896956,-2.8674512,-2.7847023,-2.8262575,-2.8464122,-2.8531406,-2.7965763,-2.8419714,-2.7636504,-2.721158,-2.7292767,-2.6888156,-2.7383184,-2.7261996,-2.7412577,-2.747479,-2.7468476,-2.7428446,-2.8372326,-2.8312707,-2.736157,-2.8226318,-2.7739668,-2.6727448,-2.6947308,-2.709586,-2.7615993,-2.7916434,-2.80561,-2.3602648,-2.8038754,-2.7743998,-2.7336566,-2.7421386,-2.7161005,-2.7533102,-2.720023,-2.6891754,-2.7461333,-2.7586417,-2.7305195,-2.649355,-2.6834497,-2.7208161,-2.7428813,-2.7869477,-2.7746282,-2.7638755,-2.77214,-2.8005998,-2.7668242,-2.797411,-2.832832,-2.8136258,-2.7687292,-2.7529316,-2.780396,-2.787832,-2.7574787,-2.747882,-2.7664137,-2.7645223,-2.8201556,-2.8533494,-2.8448591,-2.8278248,-2.8352475,-2.8180299,-2.8724456,-2.9119942,-2.9345949,-2.9442868,-2.9556432,-2.9715312,-2.9859838,-2.9908166,-2.9735234,-2.9157214,-2.9365654,-2.9612393,-2.949592,-2.9277034,-2.9048712,-2.8531897,-2.8568878,-2.8570554,-2.8783212,-2.8740406,-2.9218385,-2.9548457,-2.93585,-2.9135985,-2.9513323,-2.9371371,-2.9312594,-2.9027815,-2.884175,-2.8799562,-2.917026,-2.9383855,-2.9536934,-2.9607782,-2.97611,-2.906203,-2.8799815,-2.873568,-2.8252518,-2.788928,-2.8089359,-2.8191338,-2.7834013,-2.7357798,-2.7855859,-2.7856708,-2.834883,-2.8492897,-2.8823404,-2.901208,-2.90282,-2.9189763,-2.92458,-2.8676853,-2.8693213,-2.874535,-2.9011896,-2.9111764,-2.937457,-2.9761355,-2.9822178,-2.920093,-2.856481,-2.853045,-2.8685853,-2.873505,-2.8906713,-2.895852,-2.9002671,-2.8881981,-2.9551613,-2.9728258,-2.9859967,-2.992995,-2.947771,-2.950266,-2.9492488,-2.958059,-2.9541001,-3.042462,-3.083962,-3.0061548,-2.9828825,-2.9331076,-2.951682,-2.9419355,-2.9485655,-2.913097,-2.9348109,-2.9325123,-2.9397237,-3.0126576,-2.8567817,-2.8076932,-2.9272068,-2.9220996,-2.831611,-2.879752,-2.7005303,-2.638293,-2.7884548,-2.8059297,-2.8048515,-2.8813853,-2.930828,-2.9451802,-2.992943,-2.9686427,-2.9216657,-2.926209,-3.003241,-3.0576234,-3.0730147,-3.0173187,-2.9738045,-2.9618123,-2.9768996,-2.9132085,-2.8884401,-2.7749038,-2.904758,-2.7681694,-2.726197,-2.7610369,-2.9035435,-3.0704765,-3.0986235,-3.0504837,-3.0038288,-2.9424756,-2.411581,-3.1283808,-3.2520669,-3.347221,-3.1875067,-3.099552,-3.0879388,-3.0780573,-3.0664048,-3.000278,-2.9442508,-2.9769952,-2.9547973,-2.9471917,-2.974883,-2.8808045,-2.8991895,-2.9207268,-2.9169855,-2.8891582,-2.7530863,-2.9045613,-3.1014671,-2.741375,-3.1962814,-3.1456752,-3.0816455,-2.9507308,-3.0643468,-2.8776712,-3.1881757,-3.030713,-3.0029721,-3.124054,-3.0415583,-2.9188728,-2.927689,-2.9814162,-2.9747047,-2.9775715,-2.930434,-3.0535817,-2.9343338,-3.2217019,-3.205222,-2.975982,-3.0422769,-3.2389784,-3.072915,-3.125011,-3.0111673,-2.9618118,-2.9601421,-2.9913988,-2.9580517,-3.166913,-2.8779566,-3.2336025,-3.0503578,-3.2332768,-3.1712713,-3.1378748,-3.3375192,-3.1998405,-3.2769883,-3.1397114,-3.2064788,-3.3904424,-3.2348409,-3.1160994,-3.2937539,-2.9835055,-2.9564395,-2.6033292,-3.034713,-3.126902,-3.1504261,-3.1263266,-3.0500023,-3.1148686,-3.3114452,-3.3880203,-3.4395828,-3.0252054,-2.8563328,-3.1926484,-2.971255,-3.0406756,-3.1905503,-3.241881,-3.1663585,-3.183796,-3.1759224,-3.2138412,-3.2033901,-3.3112888,-3.508256,-3.351853,-2.878808,-3.3603408,-3.4086528,-2.5906706,-3.165162,-3.2404842,-3.4322867,-3.1958132,-3.3968585,-3.4353848,-3.275276,-3.1454892,-3.2855456,-3.1314015,-1.9629717,-3.151876,-3.0177765,-2.8401053,-3.0288396,-3.1464798,-2.9396899,-2.9945226,-3.05377,-3.0718699,-3.3784673,-3.2414236,-3.1927452,-3.277739,-3.2918448,-3.1799498,-3.083151,-3.1374278,-3.0264192,-2.9649944,-3.009554,-3.0298865,-2.9771173,-2.9308147,-3.006772,-3.0732422,-3.0079436,-2.9385357,-2.9277868,-2.9996665,-3.037272,-3.0277443,-2.6030138,-3.3069468,-3.0978892,-3.0839643,-3.0806355,-2.9473603,-2.9085941,-2.9162068,-2.8861098,-2.9055958,-2.8788514
+-0.45392781,-0.27419102,-0.15730402,-0.050614238,-0.11622167,-0.3321796,-0.4173712,-0.4552675,-0.21493381,-0.30929023,-0.34267795,-0.3594516,-0.4488988,-0.5403763,-0.48137712,-0.4009449,-0.44217807,-0.5079872,-0.5020748,-0.86536354,-1.4542761,-1.3712006,-2.6457562,-2.538968,-2.9525971,-2.6897242,-2.3901649,-2.2237916,-2.2410164,-2.4889421,-2.4804878,-2.46005,-2.4952054,-2.5126493,-2.6798434,-3.3586445,-3.5853446,-3.723796,-3.5361266,-3.4425187,-2.8079886,-2.4686613,-3.2230027,-2.8651607,-2.784652,-2.7520747,-3.1584687,-3.3480425,-2.6505651,-3.4425104,-2.536923,-2.4956894,-2.7892787,-3.6469107,-3.6795988,-3.7020507,-3.3642957,-3.284393,-2.825245,-3.5958037,-3.7392907,-3.5395827,-3.5782516,-4.0089107,-4.206126,-4.2975097,-4.2857504,-4.2765446,-3.5304658,-3.702487,-2.9500594,-3.4547086,-4.143353,-3.7724738,-3.724341,-3.881641,-4.1426578,-4.051337,-3.3419297,-3.3843164,-4.375172,-4.440302,-4.6480145,-4.0830574,-3.4231796,-4.3013277,-4.594777,-4.740948,-4.672538,-4.7083583,-4.6373754,-4.7324758,-4.7170076,-4.385719,-3.6172104,-3.5782464,-4.3979506,-4.5446315,-3.6991992,-3.762814,-4.1782975,-4.63249,-4.441686,-4.722714,-4.808368,-3.345449,-3.945517,-3.9917746,-4.816196,-4.027744,-4.8060565,-4.9168735,-4.19159,-4.823299,-4.9359207,-5.027405,-4.1544986,-4.447897,-5.0657034,-5.0126224,-4.8757606,-4.6132364,-4.625902,-4.0579786,-3.1447515,-4.91702,-4.984546,-4.855243,-4.8557925,-4.6691146,-4.135878,-3.5768147,-4.6682167,-5.040862,-5.0627847,-4.924761,-4.8423047,-4.88842,-4.8074746,-4.718515,-4.728082,-4.750114,-4.702146,-4.445355,-4.652122,-4.6709304,-4.592508,-4.610624,-4.5610094,-4.4728074,-4.573316,-4.6203094,-4.5133023,-4.415548,-2.7667856,-3.9597807,-4.3237967,-4.466121,-4.1989837,-4.411659,-3.9001904,-4.7471304,-4.727584,-4.544291,-4.5518055,-4.430296,-4.503227,-4.594984,-4.6073403,-2.5502906,-3.9261909,-4.12071,-4.471253,-4.4532294,-4.2633824,-4.1108856,-4.276418,-4.504673,-4.4730544,-4.6927485,-4.4310145,-4.376616,-4.4954267,-4.016604,-4.0985727,-4.16771,-3.8522654,-3.8115373,-3.6732593,-2.5221148,-3.1952102,-3.4407537,-3.720696,-3.2353048,-2.8223464,-1.8880935,-1.4048042,-1.7720559,-2.1243734,-2.5759869,-3.1428246,-3.0578237,-2.1988168,-2.5723639,-2.4781113,-2.354038,-2.2399302,-2.213128,-2.4017582,-2.4050534,-3.1913695,-3.2705283,-2.980586,-2.398085,-2.2821975,-1.8697886,-2.4528546,-2.819698,-3.058577,-3.056487,-3.4494452,-3.6167066,-3.830421,-4.0633874,-4.021909,-3.6488724,-4.022369,-3.562796,-2.734261,-2.6868863,-2.1454737,-2.0050225,-1.9109697,-1.9089098,-2.0787995,-2.207962,-2.4060702,-2.5209513,-2.5509913,-2.642665,-2.7726166,-2.958702,-2.9384158,-3.086411,-3.1761498,-3.153481,-3.2888288,-3.414246,-3.5446477,-3.5539453,-3.5640368,-3.6420202,-3.8673248,-3.9623322,-4.0201774,-4.132981,-4.0272593,-4.053098,-4.0779257,-4.045062,-4.051263,-4.020605,-3.9615116,-4.0658765,-3.947424,-3.8866448,-4.008246,-3.9661365,-3.9021606,-3.8938885,-3.863151,-3.8901277,-3.9149137,-3.916947,-3.9249778,-3.9922576,-3.9434981,-3.9912324,-4.003839,-3.973968,-3.9563313,-3.905581,-3.937396,-3.9881506,-4.010424,-3.9720798,-3.968124,-3.968801,-3.9313078,-3.8544803,-3.795755,-3.7099605,-3.5602512,-3.6710622,-3.704102,-3.7752633,-3.7450252,-3.8957725,-3.8092618,-3.7881455,-3.645908,-3.7270083,-3.7068868,-3.699562,-3.737823,-3.8545308,-3.8472724,-3.836999,-3.9434924,-3.9299126,-3.9583478,-4.225766,-4.0620737,-4.040252,-3.6054096,-3.616745,-3.8412828,-3.7590775,-3.6824005,-3.6513615,-3.6348772,-3.594595,-3.6500847,-3.7859225,-3.8409085,-3.8046165,-3.9212227,-3.880721,-3.898511,-3.8298297,-3.8660665,-4.0012455,-3.9815054,-4.013779,-3.9248323,-3.8819356,-3.7224383,-3.8632555,-4.0838113,-4.0523863,-4.0426955,-4.0705876,-3.954472,-3.759111,-3.9186478,-3.7872062,-3.6377869,-3.7096138,-3.7247405,-3.7994604,-3.8395553,-3.6536474,-3.980744,-3.9399743,-3.7845616,-3.7754984,-3.7702994,-3.7809577,-3.8665957,-3.8479514,-3.7923236,-3.739108,-3.6448746,-3.7351947,-3.6131725
+-0.8056237,-1.7342253,-2.080864,-2.0749176,-2.8772874,-3.0386503,-3.2481017,-3.2446153,-3.2105837,-3.1306162,-3.1967888,-3.2532501,-3.2423089,-2.535692,-3.333661,-3.6131868,-3.5209556,-3.4996781,-3.4756064,-3.4239025,-3.4865224,-3.4528375,-3.2995117,-3.2131166,-3.2643306,-3.3036351,-3.205514,-2.9896977,-2.956407,-3.0263455,-3.4104395,-3.4344635,-3.4716709,-3.3654332,-3.09336,-3.439897,-3.3980412,-3.3808875,-3.0204453,-3.250445,-3.3041635,-3.3975759,-3.2248452,-3.1233869,-3.045577,-3.1908364,-3.3350952,-3.2693696,-2.0866048,-3.8160348,-3.3038793,-3.3293986,-3.6988945,-3.954822,-4.0255275,-3.8768492,-3.8826032,-3.9174113,-3.7696452,-3.74546,-3.70223,-3.719726,-3.5725818,-3.560195,-3.5455875,-3.4026601,-3.320789,-3.3427346,-3.2713144,-3.3381617,-2.6088629,-3.6538978,-3.8262687,-3.8166456,-3.6826005,-3.870954,-3.8103166,-3.8201547,-2.159813,-3.8617969,-4.0356364,-3.7173705,-4.0653377,-3.7419305,-2.8867729,-4.1006284,-4.1456776,-4.0031476,-3.9149632,-3.8559232,-3.834992,-3.8307142,-3.7034583,-3.718381,-3.5679688,-3.5308936,-3.5641794,-3.6209955,-3.4798985,-3.6608024,-3.5820363,-3.5955334,-3.523663,-3.5368352,-3.6563182,-3.4853601,-3.336834,-2.7918072,-3.6664293,-3.7700381,-3.793579,-3.6352592,-3.2444105,-3.7769966,-3.720984,-3.5554593,-3.4058442,-3.387495,-3.3131056,-3.256784,-3.2205012,-3.2452893,-3.278347,-3.272694,-3.2351775,-3.3372355,-3.236187,-3.1998906,-3.266777,-3.297172,-3.111904,-3.1525364,-3.1321993,-3.0213091,-3.0381565,-2.9668722,-3.0479023,-3.0249429,-3.0581393,-3.034432,-3.0790968,-3.0471878,-3.0644765,-3.0638485,-3.1214304,-3.1291552,-3.1480722,-3.1042485,-3.0837843,-3.1709945,-3.1484091,-3.0928278,-3.177368,-3.2525125,-3.19268,-3.3409624,-3.391508,-3.327065,-3.239194,-3.500885,-3.2325385,-3.3171873,-3.3587222,-3.200884,-3.2726371,-3.2462702,-3.1962118,-3.256424,-3.288535,-3.198688,-3.262601,-3.2050211,-3.2875915,-3.2607853,-3.080632,-3.4080858,-3.3981102,-3.2019203,-3.410314,-3.3091607,-3.2169447,-3.2729707,-3.2889569,-3.2934203,-3.4078555,-3.256856,-3.402607,-3.4177382,-3.241366,-2.6642761,-3.676024,-3.906497,-3.4082677,-3.4449573,-3.3465972,-2.8223038,-2.2570138,-3.3502717,-3.546796,-3.5194929,-4.008906,-4.0893807,-3.0370517,-3.9172478,-4.1339574,-4.207415,-4.087912,-3.9044547,-3.5003252,-3.5023243,-3.8163667,-4.023354,-4.0687623,-3.5286517,-3.877377,-4.022574,-4.0444083,-3.9543176,-3.9287252,-3.490391,-3.9403791,-4.001621,-3.936667,-3.929768,-3.8642573,-3.7165756,-3.7208824,-3.2639713,-3.3888702,-3.6644201,-3.4535408,-3.3841634,-3.1498725,-3.421033,-3.4719522,-3.3275785,-2.643722,-2.1667507,-2.4698954,-2.39988,-2.3827848,-2.04605,-2.004659,-1.9331965,-1.7573428,-1.6281753,-1.5109437,-1.4815102,-1.3101165,-1.2596421,-1.2591422,-1.2977452,-1.3425179,-1.3031542,-1.3859859,-1.4107249,-1.4616466,-1.555186,-1.6189523,-1.6678016,-1.8280773,-1.9845545,-2.0435216,-2.3069487,-2.400815,-2.4476485,-2.5474396,-2.280532,-2.6440377,-2.5415053,-2.8714066,-2.8421407,-2.9038982,-2.694609,-2.8879392,-2.9972384,-3.061015,-3.059554,-3.1083677,-3.1278853,-3.1476102,-3.1542344,-3.1444974,-3.2041662,-3.2818742,-3.3624063,-3.4936488,-3.5035107,-3.4773393,-3.456561,-3.4444635,-3.3531609,-3.63799,-3.470926,-3.3590007,-3.3745737,-3.453441,-3.4957778,-3.3359103,-3.2995927,-3.2620919,-3.3459113,-3.3410418,-3.3385143,-3.3341918,-3.2691493,-3.401421,-3.4445598,-3.5488782,-3.4429219,-3.347299,-3.573165,-3.4954705,-3.4631984,-3.6538992,-3.6758852,-3.7412887,-3.529475,-3.4941883,-3.4445693,-3.8191314,-3.290974,-3.063331,-3.4059448,-3.4106135,-3.6241434,-3.4888747,-3.3916154,-3.4216394,-3.4191384,-3.4609427,-3.6123252,-3.4609172,-3.433169,-3.315351,-3.2207994,-3.0754766,-3.1108468,-3.4659972,-3.335463,-3.480185,-3.5465326,-3.3042893,-3.3112507,-3.105252,-2.8628898,-2.8365378,-2.9026232,-2.659874,-2.4894757,-2.6440687,-2.3994467,-2.5883293,-2.6950402,-2.6644661,-2.7312741,-2.6614351,-2.8447948,-2.9248366,-2.8773723,-2.797461,-2.4260902,-2.8362696,-2.5146575,-2.5232968
+-0.13099241,-0.89737076,-1.4284494,-1.9198341,-2.2714534,-2.5780063,-2.688694,-2.7249641,-2.8123055,-2.825867,-2.9017277,-2.9582868,-3.1667986,-3.0874667,-3.6560113,-3.908503,-3.8447733,-3.781858,-3.7527223,-3.6957726,-3.6541476,-3.6412036,-3.6384487,-3.6960588,-3.823021,-3.913282,-3.8514957,-3.7164607,-3.558372,-3.5659032,-3.9121976,-3.9658456,-4.0103087,-3.8773613,-2.7570152,-3.4342837,-3.6618156,-3.9469633,-4.015697,-4.024177,-4.2158723,-4.211251,-4.1375093,-3.3348186,-2.7011228,-3.1422124,-3.6229026,-3.9307332,-3.9788537,-4.045964,-3.8458467,-2.6940336,-3.7207823,-3.8626723,-4.0377955,-4.1297674,-4.177962,-4.3046117,-4.2546587,-4.2419515,-4.2445016,-4.204149,-3.9926772,-4.1808352,-4.248183,-4.2034335,-4.2152076,-4.3468146,-4.1835294,-4.4924483,-4.229915,-4.4815865,-4.5924172,-4.636154,-4.50112,-4.701878,-4.6452174,-4.4489083,-2.6480103,-4.059056,-4.145291,-4.2905912,-4.3660398,-4.3624525,-4.186946,-4.5296035,-4.493734,-4.3490615,-4.3017397,-4.367043,-4.4939823,-4.6106544,-4.4268336,-4.5578485,-4.7026434,-4.630257,-4.738108,-4.650842,-3.887323,-3.5960746,-3.8832383,-4.3293557,-4.296336,-4.422393,-4.492656,-4.500904,-4.545049,-4.5052667,-4.2686563,-4.5082335,-4.5937376,-4.5128107,-4.393375,-4.6298394,-4.643324,-4.519793,-4.464395,-4.5077157,-4.5247655,-4.4977837,-4.5442214,-4.745893,-4.753138,-4.7300124,-4.7882752,-4.7494006,-4.614984,-4.6105485,-4.7371345,-4.736605,-4.5220847,-4.617095,-4.6532655,-4.557731,-4.4663453,-4.4847198,-4.563584,-4.574947,-4.582861,-4.5596395,-4.571267,-4.636791,-4.6094213,-4.7115784,-4.8030233,-4.767184,-4.703774,-4.6518826,-4.5707064,-4.5964694,-4.666072,-4.5090656,-4.6183023,-4.685604,-4.645167,-4.7857323,-4.769013,-4.789972,-3.177831,-3.9955401,-4.1419554,-4.370685,-4.44867,-4.4389706,-4.590711,-4.5829864,-4.571277,-4.609592,-4.566729,-4.050573,-4.2209682,-4.471931,-4.5620737,-4.6189866,-4.4994636,-4.2691383,-4.5470104,-4.610768,-4.5194087,-4.423127,-4.4906974,-4.5331373,-4.565416,-4.565156,-4.636834,-4.5548162,-4.451984,-4.442403,-4.4578876,-3.8742657,-3.9011922,-3.1857712,-2.5745425,-3.5001507,-3.669487,-3.3501573,-3.5025842,-3.1927927,-3.4757557,-3.3135824,-3.4966185,-3.7689605,-3.774086,-3.5997682,-3.6861913,-3.920277,-4.030339,-4.011822,-3.7657757,-3.6983633,-3.8371787,-3.873855,-3.908012,-3.352868,-3.5882332,-3.9448457,-4.1990275,-4.251829,-4.2401505,-4.1871214,-4.137809,-4.2261653,-4.2222657,-4.273129,-4.2950363,-4.2012625,-4.134252,-4.078569,-3.8006458,-3.778442,-4.0282555,-4.1728997,-4.149322,-4.0492406,-3.9073548,-4.0491414,-3.9067316,-3.9786372,-4.0231204,-4.059366,-3.872571,-3.7707195,-3.9098463,-4.0390544,-3.9684863,-3.95514,-4.0518613,-3.9826646,-3.875874,-3.8580012,-3.6827133,-3.5756876,-3.310721,-3.364222,-3.224589,-3.1200562,-3.2213073,-3.0791378,-2.6645048,-2.701375,-2.4496555,-2.320609,-2.3794932,-2.2190168,-2.1313148,-2.142377,-2.2625465,-2.2520869,-2.1817033,-2.1092625,-2.2795756,-2.064028,-2.2141354,-2.208771,-2.015216,-2.0192988,-2.013267,-1.9423208,-1.6137047,-1.5229611,-1.5441165,-1.4498911,-1.5948689,-1.5482132,-1.4635797,-1.7593493,-1.3870671,-1.3678443,-1.3308103,-1.3537688,-1.3630016,-1.4300678,-1.536171,-1.4911802,-1.4198356,-1.565439,-1.5186465,-1.3583734,-1.3376238,-1.5004458,-1.4453948,-1.305224,-1.3469846,-1.3568323,-1.4348054,-1.5102904,-1.2601433,-1.2188761,-1.2175229,-1.2391341,-1.2942071,-1.2228019,-1.1627121,-1.2387073,-1.3341398,-1.204247,-1.0957439,-1.0482128,-0.953232,-0.9164515,-0.9727536,-0.8695666,-0.72574323,-0.78889984,-0.64441407,-0.51141804,-0.3995793,-0.20187253,-0.11090946,-0.48372358,-0.47379327,-0.43809736,-0.417193,-0.4277668,-0.50167567,-0.34780848,-0.11424017,0.16706645,-0.010777831,-0.46430105,-0.6144368,-0.85845155,-1.381285,-1.7326698,-2.1001976,-2.1415799,-2.3430326,-2.3492646,-2.37044,-2.5453877,-2.5253158,-2.6859899,-2.8530617,-2.7747512,-2.941719,-3.1328278,-3.1331794,-2.9136975,-2.845168,-3.1173356,-3.09193,-2.8975787,-2.9615414,-2.989459,-3.1982164
+-0.8492002,-1.4868553,-1.8142152,-1.7320828,-1.850946,-2.0895565,-2.2745085,-2.4337351,-2.3799486,-2.4410138,-2.523361,-2.490444,-2.4322414,-2.2808049,-2.3963203,-3.0426552,-3.1199048,-3.1513867,-3.1155543,-3.0869331,-3.1161985,-3.161651,-2.8618393,-2.7520137,-2.6746902,-2.6835158,-2.6896226,-2.634558,-2.5876591,-2.5597196,-2.8122597,-2.8541923,-2.928296,-2.9906464,-2.879754,-3.2304978,-3.1674597,-3.0473185,-3.0736752,-3.116939,-3.1799598,-3.1966677,-3.1672058,-2.4626338,-2.9259765,-2.8381166,-3.6698499,-3.7170925,-3.4850593,-3.3637013,-2.7481718,-3.2462246,-3.4926863,-3.4540505,-3.3447385,-3.3950758,-3.298119,-3.4528396,-3.427987,-3.4636946,-3.439649,-3.3908024,-3.1654468,-3.1731913,-3.2570133,-3.175818,-3.1309245,-3.1760592,-3.1625233,-3.2721171,-3.013668,-3.490405,-3.7138224,-3.5725608,-3.2770476,-3.2133508,-2.775055,-3.573501,-3.0168712,-3.8793325,-3.8435254,-3.72195,-3.67633,-3.5151787,-3.4481597,-3.5293546,-3.4577422,-3.405792,-3.251753,-3.1709833,-3.0770261,-3.1268852,-3.1241136,-3.0518723,-3.1459599,-3.1188374,-3.1071084,-3.1359494,-3.1663642,-2.6371264,-3.3650112,-3.4735837,-3.407243,-3.402289,-3.3603096,-3.2441206,-3.2704744,-3.2347288,-3.1557908,-3.2528648,-3.3981593,-3.4017665,-3.174921,-3.2027688,-3.1888852,-3.1382751,-3.0993125,-3.1010427,-3.1101317,-3.138788,-3.0949416,-3.100317,-3.1458802,-3.0897002,-3.1839652,-3.295608,-3.29671,-3.2219253,-3.1810927,-3.225163,-3.155131,-3.238143,-3.362065,-3.4044132,-3.4331121,-3.4335904,-3.4264245,-3.4541972,-3.462975,-3.5071735,-3.5295763,-3.5510266,-3.46246,-3.4707172,-3.5428221,-3.5957866,-3.6082644,-3.6187053,-3.536241,-3.5770962,-3.671843,-3.6896858,-3.6838923,-3.6489937,-3.572669,-3.597917,-3.637761,-3.638689,-3.1086135,-3.5792844,-3.6498647,-3.7260747,-3.8476038,-3.7449727,-3.7361126,-3.750023,-3.7946877,-3.8313823,-3.8647442,-3.7426581,-3.5994008,-3.7839313,-3.8285751,-3.8254771,-2.4974432,-3.3956256,-3.7735367,-3.8458114,-4.128143,-4.1391387,-4.1589932,-4.1308646,-4.033323,-3.8522277,-3.8717399,-3.8294616,-3.6984735,-3.5066826,-3.2759204,-3.860702,-4.0407124,-3.990921,-3.9160595,-3.7561808,-3.7781234,-3.1434011,-3.092918,-2.6999345,-3.3503041,-3.6730056,-3.6895375,-3.9988341,-4.1845074,-4.1025896,-4.0702686,-4.1136403,-4.314685,-4.011271,-2.9764094,-3.4719636,-4.044534,-3.4685194,-3.5941763,-3.6144598,-3.9817019,-3.9310308,-4.009957,-4.0544972,-4.1147094,-4.100467,-4.155252,-4.2022233,-4.1938834,-4.2441745,-4.2528543,-4.207758,-4.136741,-3.8995528,-3.6550543,-3.6624672,-3.3657503,-3.3713083,-3.2605038,-3.6485124,-3.780911,-3.459183,-3.141252,-3.3417163,-3.2956161,-3.5652835,-3.5239124,-3.1794715,-3.1222816,-2.99299,-2.813509,-2.5647817,-2.588582,-2.5114505,-2.2098434,-1.9054227,-1.6600943,-1.3933015,-1.5237567,-1.6289308,-1.4955726,-1.591563,-1.5987768,-1.5511365,-0.6145285,-1.358268,-1.6151576,-1.8815043,-2.055629,-2.2392797,-2.3848796,-2.337287,-2.449263,-2.6712694,-2.7592788,-2.711844,-2.6970053,-2.8508663,-2.8570716,-2.8909879,-2.9638975,-2.9244313,-2.9457374,-2.9874997,-3.015719,-3.053141,-2.9643905,-2.9396048,-3.022319,-2.996232,-3.0418487,-3.1540036,-3.1607945,-3.0574312,-3.0349445,-2.9952788,-2.9879036,-2.949106,-2.8211622,-2.8218765,-2.8582606,-2.828074,-2.8094249,-2.900626,-2.9222157,-2.877819,-2.9437537,-2.9530194,-2.8575351,-2.7875593,-2.802894,-2.8250704,-3.0109787,-3.072052,-2.976142,-2.7951546,-2.3140404,-2.2261026,-2.5233035,-2.6142187,-2.370472,-1.7752984,-1.9276633,-2.2184663,-2.29031,-2.25135,-2.2080114,-2.2370005,-1.880341,-1.8912947,-1.8834615,-1.7925453,-1.5824008,-1.5307827,-1.7236826,-1.9742537,-2.1411417,-2.2672143,-2.4125056,-2.472651,-2.4918814,-2.4894702,-2.4370563,-2.3867571,-2.4491029,-2.5662189,-2.5882895,-2.4839501,-2.2749288,-1.7596092,-1.2223089,-1.0495696,-0.94694096,-1.0607517,-1.3625715,-1.3452086,-1.4279163,-1.6295369,-1.9939089,-2.0701504,-2.0696437,-2.0903044,-1.8814435,-1.3949847,-1.3464148,-1.1623387,-1.0291796,-1.1265874,-1.0978856,-1.092483,-1.1645441
+-0.9171942,-1.6261628,-1.8049874,-1.9362645,-1.9039145,-2.109795,-2.145509,-2.150762,-2.168593,-2.2083669,-2.2693024,-1.4940588,-1.808178,-1.8977094,-2.1055574,-2.777217,-2.732562,-2.7630289,-2.7749915,-2.7156043,-2.755522,-2.738771,-2.6074994,-2.0063372,-2.1117516,-2.7033396,-2.7306533,-2.6090596,-2.4084463,-2.5416384,-3.0064049,-3.0172782,-3.030393,-2.9466927,-2.3243742,-2.1474063,-1.8197587,-2.6512914,-3.1275854,-3.1299024,-3.1598744,-3.1323977,-3.128137,-2.804834,-2.0487418,-1.9621203,-2.9956965,-3.1412764,-3.1127079,-2.1541867,-2.020664,-2.3236856,-3.1182323,-3.0732336,-3.0901031,-3.1622174,-3.1755562,-3.2758589,-3.2369008,-3.3190014,-3.304576,-3.2494938,-3.2392435,-3.3403296,-3.3327935,-3.283924,-3.3727736,-3.4437795,-3.4901116,-3.6445627,-3.6512923,-3.7858243,-3.8190799,-3.7438025,-3.7579794,-3.1938138,-2.4133089,-3.197737,-2.1467953,-3.1222525,-3.0219033,-3.2062893,-3.1453373,-3.3014348,-3.425379,-3.5049882,-3.4275734,-3.447163,-3.5025115,-3.5455523,-3.6146083,-3.674316,-3.701105,-3.761467,-3.813785,-3.8585162,-3.9001603,-3.9001226,-3.7637768,-3.7711487,-2.2057807,-3.3033104,-3.4494596,-3.5179687,-3.4897442,-3.5755262,-3.6745663,-3.6936765,-3.7349782,-3.7750635,-3.7988906,-3.799305,-3.8683991,-3.9025073,-3.9001155,-3.8757653,-3.9367604,-3.9702644,-3.970615,-3.9945836,-4.049492,-4.114961,-4.100303,-4.133796,-4.182624,-4.1278963,-3.9603424,-4.179687,-4.208114,-4.2639155,-4.2774186,-4.284714,-4.2116694,-4.1577363,-4.14247,-4.12995,-4.1563144,-4.1431937,-4.1780977,-4.1690593,-4.1668077,-4.201188,-4.224453,-4.25069,-4.2412963,-4.2415032,-4.2649617,-4.252005,-4.2430754,-4.2747397,-4.1699033,-4.146117,-4.2887764,-4.2778525,-4.2805796,-4.3987904,-3.246736,-4.072825,-3.931674,-4.131576,-4.186394,-4.169296,-4.1368876,-4.1600738,-4.204743,-4.283995,-4.268583,-4.252443,-4.1676326,-4.1022716,-4.092419,-4.1296134,-4.1485686,-4.164472,-3.0995011,-3.585636,-3.4884293,-3.8681664,-3.793882,-3.8153396,-3.8213968,-3.8462286,-3.9020276,-4.0144534,-4.0584836,-4.0551696,-3.8491254,-3.6344736,-2.835184,-3.3246102,-3.484781,-3.576774,-3.6153915,-3.600081,-3.7292151,-2.4900248,-1.9669428,-2.0401716,-2.1365066,-2.4533877,-1.7610309,-2.3753166,-2.7443576,-2.7950864,-2.7334528,-2.7869327,-2.802119,-2.359185,-2.4067013,-2.5282664,-2.6977413,-2.7080605,-2.2087266,-2.4371588,-2.3541472,-2.613039,-2.7052538,-2.6406882,-2.7364817,-2.670491,-2.7279468,-2.8573337,-2.8979394,-2.9812539,-2.958331,-2.9790213,-2.8876681,-2.8673258,-1.7760324,-2.3858936,-2.3006346,-2.446574,-2.2081537,-2.6963787,-2.4625385,-2.2911704,-2.2840872,-2.5654774,-2.7296817,-2.5917387,-2.6884162,-2.4217858,-2.6189508,-2.059658,-2.357532,-2.3161924,-2.4632382,-2.1841145,-2.227003,-2.4107738,-1.5922365,-1.0315251,-0.93939394,-0.78782374,-1.2572155,-1.5278912,-1.2240176,-0.6588108,-0.46014023,-0.8674359,-0.6310456,-0.5451177,-0.43898743,-0.15023583,-0.71600884,-0.619134,-0.030359626,-0.070776284,-0.3887015,-0.28572237,-0.27468896,-0.5710422,-0.6588652,-0.63758606,-0.7270865,-0.5018386,-0.5432393,-0.5040806,-0.50695544,-1.0280385,-1.195153,-1.4941978,-1.2670608,-1.2434425,-1.1019878,-1.1144412,-1.5724802,-1.7413831,-1.7645473,-1.8285241,-1.8081431,-1.91434,-1.6171608,-1.5235348,-1.6736755,-1.6787305,-1.7127168,-1.8268929,-1.6001184,-1.6553586,-1.5216997,-1.6346619,-1.7156191,-1.7756877,-1.5980906,-1.413425,-1.1731615,-1.358856,-1.2510035,-1.0092008,-0.85583764,-0.7357606,-0.8681292,-1.0450721,-0.9654537,-0.80279404,-1.0853009,-1.3627284,-1.3821414,-1.4703758,-1.4176126,-1.2029023,-1.0824225,-0.9430925,-0.9719824,-0.84538585,-0.74548286,-0.9133919,-1.1388514,-1.2317588,-1.1570551,-1.343415,-1.1749825,-1.1412847,-1.0861392,-1.1905267,-1.1265061,-0.7806602,-0.7278932,-1.2515886,-1.0046604,-0.77916116,-0.70247597,-0.5388092,-0.38029397,-0.28452528,-0.19335055,-0.1915654,-0.107476294,0.2734007,0.27055544,-0.14452338,-0.6374721,-0.82905763,-0.9786745,-0.9873052,-0.9957358,-0.7075929,-1.0140882,-1.0262196,-1.2893307,-1.4293835,-1.0830543,-1.0035782,-1.2651839
+-0.38519412,-0.9863915,-1.5708363,-2.0189009,-2.0938113,-2.157774,-2.2803855,-2.390614,-2.4530063,-2.490402,-2.6378832,-2.6651235,-2.6629171,-3.3993778,-3.3116357,-3.818501,-3.6664765,-3.6401896,-3.6267338,-3.6044521,-3.6746159,-3.590323,-3.4919899,-3.3773768,-3.0350192,-3.8996034,-3.6646068,-3.8895202,-3.8095732,-3.6538115,-3.8510098,-3.670682,-3.7565284,-3.5860038,-3.320618,-3.3894887,-3.0360065,-3.3737302,-4.312509,-4.2209086,-4.2036886,-4.2132845,-4.108033,-4.062719,-3.5539536,-3.3127916,-4.1426063,-4.032247,-4.0304666,-3.2735705,-3.6967463,-3.879231,-4.192738,-3.9381323,-3.8574648,-4.087051,-4.013699,-4.0018415,-3.926765,-3.874411,-3.7981906,-3.8602157,-3.8698964,-3.811201,-3.7638617,-3.7682786,-3.6863127,-3.8775144,-3.990148,-3.950994,-3.8692455,-3.7647471,-3.687037,-3.8968625,-3.862228,-3.68051,-3.6245885,-3.8416886,-3.7364898,-3.9279304,-3.8481536,-3.796062,-3.8064399,-3.898085,-3.8765974,-3.819892,-3.8405442,-3.912713,-3.9033403,-3.8846083,-3.8762503,-3.8558335,-3.88481,-3.9058585,-3.893404,-3.9064965,-3.9096093,-3.955635,-3.9685287,-3.9443345,-3.508587,-4.0508013,-4.0051165,-3.9848008,-3.9679947,-3.9889483,-3.957859,-3.9736447,-4.0179176,-4.025299,-4.001523,-3.9672885,-3.9982076,-3.9366293,-3.9317393,-3.9362626,-3.9193702,-3.8941731,-3.8497348,-3.7924714,-3.7735906,-3.7933478,-3.841082,-3.8443055,-3.8513227,-3.8519826,-3.827393,-3.8069067,-3.786696,-3.8121562,-3.7930937,-3.7643857,-3.7852712,-3.7796097,-3.75352,-3.7217155,-3.7278042,-3.7055383,-3.502342,-3.6206694,-3.7469187,-3.7271976,-3.7496119,-3.7499046,-3.7654948,-3.8036523,-3.7905946,-3.767898,-3.7388816,-3.7234044,-3.6502452,-3.633463,-3.6365817,-3.6720355,-3.6766138,-3.7116838,-3.5300097,-3.8024359,-3.7403045,-3.778521,-3.7457438,-3.8066525,-3.8099322,-3.7370915,-3.765471,-3.7839007,-3.7337503,-3.7814846,-3.799971,-3.6794424,-3.6134925,-3.6684024,-3.604053,-3.5214489,-3.3610291,-3.3528824,-3.5493174,-3.618638,-3.6358144,-3.6568809,-3.6719072,-3.5669656,-3.5798323,-3.7333937,-3.8352342,-3.7284932,-3.6677408,-3.7457452,-3.711771,-3.6819057,-3.6402411,-3.5966215,-3.6031246,-3.5945582,-3.6605902,-3.41542,-2.9751735,-3.1200337,-3.1707144,-2.7622108,-2.9523392,-3.4022093,-3.3641355,-3.4399679,-3.495173,-3.3607926,-3.3485703,-3.1442108,-3.2691865,-3.2233577,-3.109154,-3.4129367,-2.9979064,-3.1993537,-3.2211385,-3.4833841,-3.5186396,-3.5656261,-3.6248178,-3.6307771,-3.6687288,-3.556981,-3.5998452,-3.6115086,-3.6179457,-3.6653047,-3.6949892,-3.6609662,-3.5734,-3.5320013,-3.3517163,-3.4040053,-3.4366422,-3.2863088,-3.3464503,-3.2009208,-3.345511,-3.1771312,-3.3178563,-3.24849,-3.0252721,-3.1023986,-2.9304385,-2.9847078,-2.848452,-2.660515,-2.8561788,-3.070541,-2.8458128,-2.6563113,-2.506363,-2.5399745,-2.3810487,-2.0110853,-2.0515728,-1.879395,-1.9042506,-1.2161171,-1.3924353,-1.1749897,-1.2177327,-1.2988822,-1.4017351,-1.5970228,-1.8112037,-1.755394,-1.8601453,-2.0590975,-2.1134236,-2.02669,-2.0042014,-2.1249409,-2.0702457,-2.0919557,-2.163206,-2.1217396,-2.0682485,-2.1109035,-2.3063316,-2.265934,-2.0845985,-1.941443,-2.1213765,-2.3302033,-2.321959,-2.5285223,-2.6355748,-2.4339938,-2.3677387,-2.3404403,-2.3199587,-2.2444806,-2.2781613,-2.4005363,-2.479235,-2.3610306,-2.4069784,-2.6221085,-2.4813066,-2.3473198,-2.5313358,-2.4147954,-2.240487,-2.2202997,-2.2394588,-2.1969452,-2.2526503,-2.3132017,-2.354034,-2.0857677,-2.084089,-1.8632417,-2.028862,-2.0368156,-1.7322865,-1.6252708,-1.9674284,-1.8664775,-1.8559418,-1.7989697,-1.7887995,-1.5449705,-1.8622148,-2.0947595,-1.9076936,-1.9069152,-1.8765545,-2.2618973,-2.2590744,-2.0482616,-2.0087044,-1.9485531,-2.0334997,-2.0670877,-2.0454664,-1.8921604,-1.9232755,-1.8137951,-1.7269058,-1.8492694,-1.8293314,-1.9145505,-1.8589511,-1.7025089,-1.6017938,-1.3896046,-1.1236467,-0.88867134,-0.5042146,-0.5972369,-1.0745401,-1.579663,-2.0211248,-2.4699905,-2.6557155,-3.1218336,-3.065434,-2.5713573,-2.557527,-2.395451,-2.2574542,-2.433741,-2.4830556,-2.3483124,-2.8162384
+-0.9173456,-1.4819996,-1.7073178,-1.8107564,-1.9018731,-1.97332,-2.0303493,-2.1554434,-2.3632107,-1.8707557,-3.54663,-3.2669854,-3.6747847,-3.8659244,-3.9035516,-3.8842788,-3.814413,-3.7537894,-3.7882857,-3.8359694,-3.8520274,-3.8682323,-3.6107206,-3.732141,-3.6284113,-3.842321,-4.016379,-3.9116364,-4.004441,-3.7735028,-3.8162417,-3.857501,-3.8960667,-3.8797307,-3.5729449,-3.1469011,-3.4992561,-3.7878418,-3.9138713,-3.8462029,-3.7160344,-3.676954,-3.6870322,-3.6179085,-3.6819992,-3.6895187,-3.6093,-3.6968632,-3.6233134,-3.610917,-3.6240652,-3.8196998,-3.7957358,-3.7772508,-3.2971704,-3.8256135,-3.7716365,-3.763949,-3.7812743,-3.7600508,-3.749704,-3.7465186,-3.6529238,-3.7495856,-3.747026,-3.6959019,-3.7177896,-3.7122188,-3.6928077,-3.7138543,-3.7056422,-3.8538795,-3.8517084,-3.865934,-3.7599006,-3.8810601,-3.8005385,-3.9351077,-3.8511887,-3.94981,-3.8642297,-3.84649,-3.7870555,-3.7544694,-3.8197184,-3.9145293,-3.9045367,-3.8071876,-3.8160663,-3.7970767,-3.817141,-3.838274,-3.7971463,-3.808465,-3.8221202,-3.8198476,-3.8439155,-3.8715906,-3.8461633,-3.8252807,-3.7382836,-3.9679046,-3.9347835,-3.9667602,-3.9472947,-3.889978,-3.8845716,-3.856835,-3.8515472,-3.8970313,-3.9198833,-3.9147549,-3.887156,-3.9823222,-3.9858289,-3.930921,-3.899857,-3.9163709,-3.8876529,-3.799087,-3.7856436,-3.8238316,-3.9258046,-3.9256196,-3.9992957,-4.073089,-3.951253,-3.951024,-3.9761796,-4.033625,-4.0346255,-4.0793147,-4.069034,-4.040824,-3.985403,-3.9463263,-3.9495225,-3.9998498,-3.9364653,-3.920792,-3.9690104,-3.987413,-3.966558,-3.983273,-4.001115,-4.0967493,-4.146334,-4.13497,-4.0800385,-4.09061,-4.0617094,-4.01987,-4.0325227,-4.0503516,-4.12093,-4.1780868,-4.1196685,-4.2180552,-4.2108865,-4.187534,-4.1429067,-4.165213,-4.1742067,-4.077051,-4.107202,-4.1941695,-4.2263646,-4.221948,-4.2058196,-4.186747,-4.109562,-4.06933,-4.0585456,-4.0211535,-4.139457,-4.127211,-4.360546,-4.2586064,-4.2148557,-4.157776,-4.140768,-4.027839,-4.1040854,-4.2269626,-4.2920356,-4.2975607,-4.365042,-4.3587203,-4.4067736,-4.356281,-4.277164,-4.204696,-4.2249284,-4.25989,-4.2666636,-4.2533803,-4.150488,-4.3202987,-3.8216052,-3.8643208,-4.275919,-4.250568,-4.225386,-4.22113,-4.2934747,-4.216173,-4.064091,-4.1822476,-4.2519,-4.2273335,-2.0322008,-3.8333578,-3.4644973,-3.8078866,-4.0415645,-3.8598337,-3.789804,-3.853117,-3.9059396,-3.9827785,-4.060309,-3.944593,-3.9544425,-3.96071,-3.980288,-4.0282283,-4.052712,-4.0382905,-4.00386,-4.1306434,-3.764524,-3.683555,-3.8514972,-4.1639175,-3.5811388,-3.8174644,-3.821569,-3.6408534,-3.6006765,-3.670833,-3.73384,-3.8570967,-3.6741657,-3.602272,-3.7546554,-3.7378578,-3.5665135,-3.7420664,-3.8312283,-3.4999714,-3.520533,-3.1903458,-3.5579252,-3.0068097,-3.1686547,-3.3753543,-3.310679,-3.460592,-3.4075713,-2.977769,-3.1066513,-2.697829,-2.5780854,-2.757971,-2.8882043,-2.7135363,-2.7094226,-2.5148182,-2.5158556,-2.4648118,-2.490613,-2.6506941,-2.6074123,-2.619677,-2.6026864,-2.538016,-2.4536045,-2.422433,-2.3285034,-2.1547434,-2.0510297,-2.127338,-1.9260459,-1.5474818,-1.9416893,-1.6321075,-2.0048332,-2.0752482,-2.005993,-2.026362,-2.0622876,-2.0743957,-2.0489392,-1.714014,-1.6150951,-1.687077,-1.7470834,-1.4806428,-1.7416697,-1.9346128,-1.7518361,-1.803513,-1.7414374,-1.7106731,-1.6916513,-1.7297852,-1.5769584,-1.6387396,-1.5034914,-1.1397896,-1.1162765,-0.84602135,-0.9943475,-1.4531097,-1.9125581,-2.7069488,-2.8500996,-2.6059246,-2.4189315,-2.2940407,-2.3001559,-2.505874,-2.5955894,-2.6836765,-2.8802447,-2.451742,-2.7422185,-2.6384807,-2.5646906,-2.2770193,-2.1700363,-2.0826602,-2.0718248,-2.047563,-2.0327506,-1.9318767,-1.9263105,-2.071172,-2.1677098,-2.270462,-2.3719811,-2.460892,-2.743234,-3.090922,-3.2298152,-3.281012,-3.3114748,-3.2945142,-3.3853168,-3.5643682,-3.6204472,-3.6284642,-3.7419224,-3.777389,-3.267612,-3.7462745,-3.7853675,-3.6274095,-3.8635292,-3.8542972,-3.5923433,-3.7368093,-3.7692995,-3.2211456,-3.6012874
+-0.563868,-1.1851146,-1.3875086,-1.5117507,-1.683228,-1.740696,-1.7984385,-1.91454,-1.6483395,-2.65104,-3.5197906,-3.6041934,-3.606998,-3.3839703,-3.4646602,-3.4795203,-3.3862824,-3.3327906,-3.2911167,-3.242741,-3.2372205,-2.9804113,-2.9900672,-3.4099836,-3.1089602,-3.4494426,-3.2977219,-3.2152588,-3.4256964,-2.7516003,-3.5746493,-3.4127374,-3.4510002,-3.3762054,-3.3279781,-2.6695673,-3.3664415,-3.7098842,-3.8701887,-3.7398067,-3.5882878,-3.433752,-3.323007,-3.252902,-3.2514088,-3.2440739,-3.2676473,-3.3036335,-3.1913114,-3.2236514,-3.327288,-3.4127703,-3.4887223,-2.4665356,-3.449254,-3.4605374,-3.7456336,-3.6842952,-3.563172,-3.3687906,-3.273725,-3.2033858,-3.1923537,-3.3007195,-3.3226678,-3.3315341,-3.3914719,-3.4303167,-3.4487953,-3.5497942,-3.6216106,-3.762792,-3.3669314,-3.7262416,-3.647535,-3.6565948,-3.6923747,-3.7626433,-3.7370248,-3.8263478,-3.738875,-3.7175903,-3.6887221,-3.7111,-3.8022742,-3.885872,-3.8641238,-3.796567,-3.8056936,-3.829873,-3.8735032,-3.8682876,-3.8474574,-3.9053445,-3.8761315,-3.8778129,-3.8908448,-3.9177976,-3.9419074,-3.9746213,-3.9091377,-4.08702,-3.9840746,-3.9943547,-3.9428968,-3.89368,-3.8934689,-3.9268298,-3.9587102,-4.0059676,-4.0166817,-3.9660983,-3.9641938,-4.018399,-4.0214825,-3.8976712,-3.9306874,-3.911693,-3.9430518,-3.6505513,-4.0410438,-4.002785,-3.9906344,-3.9551558,-3.9790053,-4.0592957,-3.9941835,-4.03674,-4.047852,-4.0611453,-4.088675,-4.0914903,-4.138018,-4.1236587,-4.048426,-3.9817853,-4.023723,-4.0779743,-4.031961,-4.0398746,-4.035221,-4.042439,-3.9932132,-4.0259957,-4.0827656,-4.0486903,-4.0899644,-4.1126122,-4.0575614,-4.0769553,-4.061444,-3.9962878,-4.0556765,-4.0886006,-4.1323323,-4.1664834,-4.124214,-4.2761483,-4.306383,-4.2677064,-4.2234654,-4.2686925,-4.24962,-4.094711,-4.025567,-4.269461,-4.2140164,-4.358594,-4.339953,-4.258876,-4.1550922,-4.0558085,-4.061355,-4.0833197,-4.1310077,-4.0884175,-4.232055,-4.3302975,-4.281366,-4.2312303,-4.218694,-4.1004987,-4.148479,-4.1882925,-4.1696734,-4.119683,-4.268952,-4.2495494,-4.30983,-4.333113,-4.3279295,-4.254993,-4.260816,-4.229299,-4.2809563,-4.258938,-4.125789,-4.22102,-2.9894943,-3.473386,-4.0251684,-3.889614,-3.8539538,-3.8350372,-3.8630772,-3.8326097,-3.854724,-3.893498,-3.8618188,-3.8425403,-2.871903,-4.221147,-3.9682393,-3.8367076,-4.0313916,-3.893561,-3.8382516,-3.882568,-3.9082718,-3.934156,-3.9427009,-3.8641243,-3.8531227,-3.8592625,-3.8447104,-3.820807,-3.8566394,-3.8299623,-3.7760491,-3.9191508,-3.730825,-3.7974982,-3.8097734,-3.88627,-3.4449582,-3.8578544,-3.6989841,-3.617403,-3.5457728,-3.540978,-3.279003,-3.5867038,-3.3607235,-3.3129563,-3.4284077,-3.3588598,-3.178785,-3.382411,-3.4529257,-3.1943262,-3.0349,-3.035377,-3.2843237,-3.167726,-2.9818137,-3.4416294,-3.3954134,-3.405168,-3.300764,-2.8327227,-2.9398115,-2.6105504,-2.570062,-2.6823115,-2.7015173,-2.6293368,-2.6636448,-2.5475059,-2.5027895,-2.464857,-2.499663,-2.6259859,-2.6162338,-2.6479394,-2.6499627,-2.6145892,-2.6333668,-2.6475725,-1.7253163,-1.6577187,-2.007392,-1.9347446,-1.0091178,-0.9487857,-1.5592525,-1.2296557,-1.7889907,-1.8006458,-1.9112031,-1.9627006,-2.0128863,-1.9854069,-1.8880007,-1.7422857,-1.9264555,-1.930553,-1.8590908,-1.9758773,-2.1133761,-2.0457838,-1.9617143,-2.0349371,-1.987596,-1.9357646,-1.9143152,-1.7851429,-1.7583075,-1.5712531,-1.6761541,-1.572206,-1.4882221,-1.2444136,-0.62178475,-1.0331037,-1.5704069,-2.1345284,-2.8546681,-2.8010879,-2.521922,-2.3777382,-2.3586268,-2.2531233,-2.3502607,-2.2358618,-2.290197,-1.4226038,-1.7913601,-2.1755016,-2.2398014,-1.929209,-2.0450346,-1.8340352,-1.9931741,-1.9053109,-1.8610675,-1.8093643,-1.8382647,-1.9397659,-1.8411682,-2.00557,-2.020474,-2.0038757,-2.2689798,-2.5992994,-2.8313606,-2.9590907,-3.0780525,-3.092615,-3.1258838,-3.194522,-3.2127812,-3.161478,-3.2695417,-3.2624307,-2.835184,-3.0755134,-3.4495616,-3.1953745,-3.2819638,-3.4752116,-3.505334,-3.3853834,-3.2889707,-3.0075984,-3.3083045
+-0.6595505,-1.3405612,-1.6361067,-1.786355,-1.9184487,-2.0547612,-1.9996247,-1.9560776,-1.9146342,-3.2468042,-3.3552694,-3.4261432,-3.391552,-3.405994,-3.4506183,-3.3877122,-3.2876427,-3.2220397,-3.233025,-3.2634664,-3.2956538,-3.3095987,-3.1259904,-3.3490334,-3.134313,-3.3570335,-3.3084645,-3.0825326,-3.3504837,-3.330193,-3.3242748,-3.3350773,-3.4612217,-3.5509295,-3.5466833,-3.2987704,-2.6424444,-3.5128322,-3.6444774,-3.6875668,-3.6671972,-3.6811733,-3.712482,-3.6811924,-3.6467447,-3.658439,-3.6685143,-3.760192,-3.8192697,-3.7492738,-3.6662827,-3.6667488,-3.6784434,-3.6618245,-3.7641492,-3.7936072,-3.8212981,-3.8723917,-3.8665943,-3.956799,-3.9846902,-4.0756316,-4.149092,-4.187984,-4.262636,-4.3145328,-4.3348393,-4.35679,-4.369554,-4.413423,-4.4509997,-4.4697585,-4.128391,-4.2702065,-4.479336,-4.3878455,-4.326754,-4.4004583,-4.4314923,-4.548472,-4.566665,-4.5896516,-4.606501,-4.584454,-4.5830464,-4.6018987,-4.6620727,-4.7056627,-4.7119985,-4.752731,-4.7968497,-4.811591,-4.8465614,-4.8667626,-4.8661466,-4.8536115,-4.8549104,-4.8566575,-4.870907,-4.8791814,-4.870612,-4.836844,-4.8257523,-4.8358808,-4.865074,-4.877811,-4.8948865,-4.901526,-4.865051,-4.868366,-4.8588214,-4.8729463,-4.8603997,-4.8519187,-4.847713,-4.885843,-4.8959947,-4.871507,-4.8617606,-4.8006034,-4.8822584,-4.9295936,-4.940479,-4.9317317,-4.9035144,-4.8056436,-4.906094,-4.9077864,-4.920769,-4.8987513,-4.891644,-4.9057612,-4.9315996,-4.9390855,-4.9131947,-4.874643,-4.8762145,-4.8592257,-4.8329873,-4.8473935,-4.8553133,-4.8843646,-4.911984,-4.82244,-4.910991,-4.9034657,-4.872294,-4.9139085,-4.940136,-4.929357,-4.872997,-4.8096147,-4.8161225,-4.8620124,-4.8886976,-4.914925,-4.9266744,-4.944178,-4.958023,-4.8887067,-4.898916,-4.8974023,-4.8601184,-4.884821,-4.930393,-4.948078,-4.9345713,-4.9966493,-4.9793105,-4.9327645,-4.8370004,-4.717215,-4.80764,-4.839149,-4.877085,-4.847985,-4.960822,-4.924473,-4.8180776,-4.7705526,-4.738855,-4.7848268,-4.823982,-4.862732,-4.8442206,-4.8560205,-4.9033437,-4.922461,-4.9483423,-4.9685597,-4.8815,-4.7948346,-4.8029838,-4.875068,-4.922388,-4.9619017,-4.9593816,-4.8371406,-4.7216163,-4.670282,-4.7859225,-4.8976026,-4.9558873,-4.9470134,-4.9168553,-4.8729367,-4.818727,-4.7781634,-4.915949,-4.8643117,-3.2125554,-4.549788,-3.317974,-4.1797776,-4.4074626,-4.4999022,-4.5458217,-4.651297,-4.727663,-4.7217126,-4.7469273,-4.745479,-4.759747,-4.7348585,-4.741221,-4.8164787,-4.7377553,-4.770928,-4.770291,-4.7020197,-4.589196,-4.7105036,-4.833442,-4.8661356,-3.9273157,-4.4177513,-4.561891,-4.52747,-4.5133023,-4.04857,-1.5001669,-3.4446871,-3.9193802,-4.0097995,-4.057139,-4.1021295,-3.977859,-4.0154805,-4.066524,-4.1255603,-4.1025543,-3.1896782,-3.8433962,-4.2124515,-4.236325,-4.183174,-4.081232,-4.153438,-3.7666001,-2.0393457,-3.2846792,-3.431924,-3.5178084,-3.4930427,-3.5695047,-3.95891,-3.8729172,-2.825245,-3.6284018,-3.7216096,-3.878364,-4.0442986,-4.0173073,-3.1525812,-3.9117122,-3.8333783,-3.9342952,-3.988954,-2.988897,-3.147938,-3.7682796,-3.3584092,-3.4662955,-3.1403472,-3.7633138,-3.4872613,-3.4593296,-4.0195265,-4.3380156,-4.5215545,-4.5109763,-4.3557734,-4.22605,-3.4512892,-3.53666,-3.6201177,-3.5530517,-3.5962129,-4.0339074,-4.131829,-4.222363,-4.2104573,-4.085894,-4.056515,-4.1435184,-4.2094107,-4.0905704,-3.826198,-3.453652,-4.0288553,-4.1976557,-3.1478732,-3.5791593,-3.557173,-3.9446054,-3.5171015,-3.8523374,-4.358625,-4.444265,-4.4212065,-4.287125,-3.8537169,-3.4553845,-3.702344,-4.019121,-3.415738,-3.7476993,-4.094005,-4.4189467,-4.3049765,-4.0299973,-3.893334,-3.9483776,-4.2675104,-4.173246,-4.0714455,-3.9464188,-3.8282447,-3.0387359,-3.9545407,-4.061018,-3.9639812,-3.925249,-3.897881,-3.870935,-3.837634,-3.8313231,-3.809371,-3.6993542,-3.6030288,-3.6354918,-3.6133747,-3.5049324,-3.401132,-2.8940163,-3.4750466,-3.2690616,-3.8268886,-3.5633333,-3.970859,-3.773728,-3.7073689,-3.6914318,-3.658804,-3.5918064
+-0.24391562,-0.7499613,-1.3972554,-1.64959,-1.7179568,-1.8235545,-2.0304005,-1.9750733,-1.9116926,-2.704986,-2.7599225,-2.8203874,-2.91393,-3.0667918,-3.0234075,-2.9800339,-3.0348601,-3.2001882,-3.3567853,-3.5207703,-3.6136441,-3.7100577,-3.7258382,-3.705904,-3.8019838,-3.7168517,-3.8787365,-3.7973976,-3.8731227,-3.913011,-3.859425,-3.9201975,-3.9548593,-3.9857512,-3.977017,-3.0887227,-3.473779,-3.490584,-3.736114,-3.827207,-3.8687844,-3.9397097,-4.001214,-4.042271,-4.058266,-4.0981927,-4.096188,-4.14421,-4.1826186,-4.217955,-4.1970434,-4.2388506,-4.2585015,-4.212109,-4.2289305,-4.3013616,-4.270833,-4.2386575,-4.2781262,-4.324577,-4.325101,-4.330197,-4.3503394,-4.3450313,-4.3562546,-4.4521265,-4.5081706,-4.5336394,-4.526993,-4.538433,-4.5466294,-4.559924,-4.589036,-4.6150765,-4.6255255,-4.6337233,-4.649521,-4.6325803,-4.602956,-4.610824,-4.583776,-4.593777,-4.6740317,-4.6898484,-4.6754794,-4.638182,-4.6657453,-4.685332,-4.685571,-4.7417517,-4.710333,-4.731468,-4.7378306,-4.751805,-4.7739425,-4.7988505,-4.7992654,-4.8096814,-4.7991242,-4.79087,-4.8210263,-4.795318,-4.769006,-4.759334,-4.735103,-4.74713,-4.746018,-4.7196097,-4.734484,-4.7294755,-4.7002378,-4.7062297,-4.6986966,-4.6262555,-4.6974635,-4.777931,-4.81324,-4.7972403,-4.808383,-4.7871823,-4.7910385,-4.8109827,-4.8363442,-4.8490825,-4.8416166,-4.8235717,-4.8018155,-4.80312,-4.827745,-4.7976165,-4.7941647,-4.7984467,-4.7837815,-4.798556,-4.8035975,-4.7808957,-4.7658715,-4.6585603,-4.629218,-4.630489,-4.6654983,-4.739284,-4.781201,-4.7785106,-4.78632,-4.7998605,-4.7804956,-4.789277,-4.8016267,-4.808005,-4.769424,-4.7009864,-4.713856,-4.7252,-4.7648654,-4.7856507,-4.82083,-4.8213744,-4.807697,-4.764368,-4.75064,-4.744303,-4.7754645,-4.763333,-4.7572837,-4.7477784,-4.7761817,-4.820107,-4.7899337,-4.762311,-4.6867576,-4.695838,-4.737626,-4.7750793,-4.79516,-4.823473,-4.8275843,-4.7426467,-4.6468043,-4.6625285,-4.6929784,-4.6978908,-4.790321,-4.8087726,-4.7873273,-4.821569,-4.878199,-4.8128104,-4.8397174,-4.7967095,-4.7320914,-4.6966224,-4.756589,-4.808435,-4.7689557,-4.795337,-4.8308864,-4.736814,-4.637251,-4.21937,-4.6034884,-4.625174,-4.6634526,-4.6750965,-4.679816,-4.738363,-4.657491,-4.5917974,-4.691195,-4.7740784,-2.3333974,-3.9324155,-2.8730335,-3.681582,-3.710135,-3.8683443,-3.8259053,-3.9835634,-4.121773,-4.181624,-4.283651,-4.293244,-4.354573,-4.312982,-4.32012,-4.4778495,-4.432715,-4.374264,-4.392845,-4.413111,-4.12501,-4.295872,-4.345694,-4.5488963,-2.3227968,-3.6109118,-3.4809911,-3.3437965,-3.385501,-2.9548647,-3.207664,-3.4026883,-3.3667734,-3.26677,-3.3847303,-3.1626105,-3.1115353,-3.3444047,-3.4089937,-3.360123,-3.3871393,-3.6719255,-3.518908,-3.450378,-3.5471656,-3.6081252,-3.6438951,-3.664706,-3.6626961,-1.608711,-1.9241269,-1.9893265,-2.1586986,-2.2439718,-2.3869991,-2.6563392,-2.8846765,-1.8225961,-1.8101168,-1.9943867,-2.067955,-2.1481776,-2.3540058,-2.307756,-2.9959416,-3.2026167,-3.148489,-3.2848754,-3.4213226,-3.4335394,-3.5303133,-2.9815402,-3.4357953,-3.1805177,-3.4407523,-3.6779847,-3.6033056,-3.2928953,-3.0103564,-2.9123578,-2.809403,-2.769689,-2.7640228,-2.3461065,-2.268673,-2.4844227,-2.0282793,-2.0518484,-2.4048471,-2.3832645,-2.2879314,-2.1752772,-2.075654,-1.9776492,-2.0156918,-2.1817079,-2.434329,-2.7938955,-3.107377,-3.402712,-3.5096073,-2.7530198,-3.4102416,-3.708302,-3.6698225,-3.6930146,-3.8771415,-3.6874669,-3.3759131,-3.4752064,-3.539394,-3.6496747,-2.021369,-2.0903404,-2.1898243,-2.533145,-3.256477,-3.2918754,-3.15612,-3.0706718,-2.96166,-2.9566483,-3.3272433,-3.352207,-3.326729,-3.2728982,-3.2694774,-3.4157627,-3.4260008,-3.4340787,-3.3809109,-3.4524498,-3.5256917,-3.5868535,-3.6016865,-3.5779426,-3.5479383,-3.539239,-3.5534117,-3.5155933,-3.4615393,-3.474735,-3.5029101,-3.5120828,-2.584362,-3.415966,-3.5076258,-3.422523,-3.4747207,-3.5311484,-3.376422,-3.3702884,-3.2993257,-3.2966962,-3.3164966
+0.28550264,0.20105174,0.2209499,0.36121926,0.6193943,0.61978537,0.23344904,0.036681294,-0.15226534,-0.2717914,-0.29570198,-0.23124051,-0.122838974,-0.37298155,-0.29517126,-0.49375498,-0.59909075,-0.67306846,-0.734425,-0.91952807,-1.3229599,-1.2967327,-1.5547991,-1.3963921,-1.67047,-1.6759553,-1.352313,-1.0514169,-0.6693441,-0.7538158,-1.2195437,-1.3886552,-1.7031002,-1.8191967,-1.45682,-2.813776,-3.32369,-3.4171047,-2.5862696,-2.9421306,-2.1435924,-1.649086,-2.2078533,-2.1919122,-2.1430912,-2.1531386,-2.2907763,-2.5447357,-1.8936939,-2.2032619,-1.7122617,-2.0363684,-2.4834328,-3.2643428,-3.5490594,-3.8213181,-2.9707477,-3.2680836,-2.8828678,-3.7719007,-3.7610626,-3.333999,-3.3901405,-4.1518073,-4.220465,-4.2333455,-4.2850266,-4.3753924,-3.5338151,-3.8109932,-3.3387532,-3.786995,-4.0140076,-3.4420493,-2.803771,-2.8291278,-2.6889243,-2.384667,-1.6424057,-1.3908997,-2.1023521,-1.7952027,-2.2411132,-2.0866594,-2.32596,-2.6494656,-3.6190019,-3.8217978,-3.9695277,-4.0093503,-4.0660357,-4.085827,-4.18765,-4.1227183,-3.5452225,-3.3883438,-3.9997244,-4.4261346,-4.1611047,-3.691256,-4.047918,-4.2097125,-4.568082,-4.174337,-4.5978007,-3.5163848,-4.1741147,-4.288465,-4.689157,-4.335847,-4.538634,-4.8066425,-3.9097953,-4.165962,-4.8609204,-4.8382773,-4.0927167,-4.4659104,-4.9743686,-4.968885,-4.9163437,-4.683883,-4.6184826,-4.624602,-3.3275776,-4.711609,-4.879293,-4.7004886,-4.496972,-4.6247807,-4.558277,-3.409139,-4.2031064,-4.9836383,-4.9948897,-4.6417813,-4.561055,-4.9687567,-4.8679786,-4.876574,-4.791837,-4.773382,-4.699331,-4.1575413,-4.0499797,-4.81604,-4.6981764,-4.6846504,-4.466484,-4.434837,-4.615617,-4.676227,-4.538149,-4.4286113,-3.2177658,-4.1156793,-4.6482396,-4.37386,-3.8275046,-3.8533025,-3.4132805,-4.3830934,-4.428023,-4.449211,-4.3110003,-4.550161,-4.5423117,-4.5488477,-4.551068,-3.1147861,-3.8848872,-4.285431,-4.2561584,-4.20781,-3.8024592,-4.1145644,-3.8015604,-4.3815703,-4.388826,-4.5587754,-4.480538,-4.5986166,-4.571013,-3.5593076,-4.2983704,-4.2278104,-3.9921045,-3.8415694,-3.7019954,-3.1928883,-3.1063826,-3.0275517,-3.341885,-2.9433951,-2.7054608,-2.091823,-1.4389455,-1.1329052,-0.924709,-0.9573273,-1.0901754,-1.1124103,-1.0704868,-1.478369,-1.5481291,-1.5831795,-1.3530242,-1.1785951,-1.5807941,-1.419786,-1.5559664,-2.1109278,-2.0157628,-1.5109766,-1.4783778,-1.351017,-1.8522711,-2.1938338,-2.49058,-2.2566333,-2.96279,-3.465086,-3.9317298,-4.037477,-4.130927,-3.7583961,-3.961679,-3.5105817,-3.3571055,-3.233015,-2.8440201,-2.474244,-2.2043667,-1.91885,-1.6378875,-1.8728063,-1.8730702,-1.8713379,-1.6860008,-1.634002,-1.6615117,-1.9308002,-2.0860708,-2.2945995,-2.3671203,-2.6163843,-2.717749,-2.922657,-3.0954733,-3.1817763,-3.3911567,-3.5683463,-3.7612252,-3.988875,-4.056252,-4.0700674,-3.9911718,-3.9916801,-3.9970307,-4.0425816,-4.032457,-4.1373696,-4.2199683,-4.2311287,-4.1952186,-4.056392,-4.1894097,-4.2170615,-4.176809,-4.0568337,-4.2161765,-4.2900305,-4.2186217,-4.2723575,-4.1739154,-4.216726,-4.129522,-4.1141725,-4.1235595,-4.176477,-4.153794,-4.050378,-4.061785,-4.2257676,-4.2979274,-4.1336646,-4.090085,-4.0639367,-4.0303836,-4.006868,-4.0025496,-4.023643,-4.006913,-4.009458,-4.0284624,-4.0965834,-4.0770745,-4.1291127,-4.1156464,-4.179112,-4.109802,-4.0553646,-4.0001407,-3.986463,-4.064356,-4.1217895,-4.106409,-4.0555406,-4.2050395,-4.198026,-4.208289,-4.26563,-4.2567377,-4.1454496,-4.064463,-4.048909,-4.2029696,-4.084273,-3.9824252,-3.9007182,-3.8982048,-3.8426352,-3.8791595,-4.0103354,-4.060967,-4.082337,-4.134343,-4.145879,-4.131844,-4.1177998,-4.157647,-4.2770677,-4.2587485,-4.278295,-4.282187,-4.209034,-4.14138,-4.1912284,-4.293319,-4.2616835,-4.221703,-4.2813463,-4.2448263,-4.08346,-4.1882873,-4.1026363,-4.033127,-4.0388474,-3.9120588,-3.8664522,-3.9442153,-3.9124475,-4.25144,-4.007919,-4.0186787,-3.913959,-3.9279785,-4.033588,-4.05448,-3.9728627,-3.9267545,-3.97965,-3.9246364,-3.9108076,-3.8335986
+-0.85222024,-1.676147,-1.9858177,-1.974761,-2.2123356,-2.4094687,-2.5586822,-2.577289,-2.6112647,-2.538698,-2.6076338,-2.5840626,-2.5462232,-2.1379218,-2.5080428,-2.8213587,-2.745307,-2.763648,-2.7097569,-2.7083821,-2.7592006,-2.7738125,-2.6899202,-2.6302726,-2.7656999,-2.7836227,-2.7662745,-2.640593,-2.532187,-2.084498,-2.8254032,-2.900053,-2.935571,-2.876582,-2.1807685,-2.9501154,-2.9976325,-2.9862483,-2.5932207,-2.811504,-2.8945713,-2.9256623,-2.8335984,-2.7958236,-2.675436,-2.640257,-2.834112,-2.7826421,-2.6850524,-2.725219,-2.5448337,-1.4646096,-2.0749655,-2.9567976,-3.310427,-3.3006816,-2.5930195,-3.2716556,-3.2634587,-3.243616,-3.2286868,-3.1948156,-3.07999,-3.073685,-3.0678434,-3.045382,-3.0402746,-3.0093808,-3.0432208,-2.9317532,-1.9443302,-3.0015569,-3.4065332,-3.3333826,-3.1085558,-3.321095,-3.1475148,-3.156094,-3.0268502,-3.1390657,-3.1223538,-2.9691808,-3.0214567,-3.0411475,-2.784956,-2.9377446,-3.0259557,-2.9212303,-2.880147,-2.849853,-2.8449314,-2.8144197,-2.8133988,-2.7499495,-2.7036147,-2.6528227,-2.5123062,-2.7628877,-2.2275276,-2.2106419,-3.1358416,-3.1936374,-3.183137,-2.4858816,-3.4227548,-3.3198795,-3.2830243,-3.2179365,-3.2291245,-3.1941135,-3.1462574,-3.0997372,-1.8544102,-3.1471648,-3.4939353,-3.4574842,-3.1714818,-3.184541,-3.4585273,-3.4181275,-3.3638558,-3.266139,-3.1980023,-3.216556,-2.9866252,-3.0515656,-3.0076268,-2.901534,-2.8408473,-2.9007096,-2.832977,-2.7984564,-2.7644558,-2.9514308,-2.8894324,-2.7818582,-2.7523394,-2.6630666,-2.6460972,-2.6205273,-2.647892,-2.617266,-2.5953188,-2.5992715,-2.5894778,-2.631275,-2.6396394,-2.6026375,-2.4860568,-2.6064255,-2.6033669,-2.5906565,-2.6536007,-2.686946,-2.7255454,-2.6666076,-2.8395967,-2.8054175,-2.7012,-2.8405046,-2.7092862,-2.7637684,-2.8513556,-2.801158,-2.7209897,-2.7440271,-2.7601404,-2.788612,-2.8231108,-2.1502051,-2.8481445,-3.001545,-3.1047301,-2.9995954,-3.0349936,-3.0291982,-3.0417604,-2.9295893,-3.0320725,-2.9625793,-2.9647846,-2.9918146,-2.976073,-2.6267185,-3.0129225,-2.941864,-2.965747,-3.0992665,-3.1426234,-1.6362934,-2.8275237,-2.8612936,-2.2548623,-3.167357,-3.1493206,-2.293771,-2.3199835,-2.8996296,-3.057866,-2.9677792,-3.0607991,-3.226796,-2.4191704,-3.0857854,-3.2661672,-3.2152584,-3.3456,-2.7100012,-2.868536,-2.9754124,-3.219344,-3.316392,-3.3594835,-2.3661046,-2.9206092,-3.0927713,-3.2093248,-3.2787004,-3.3135576,-2.9088597,-3.350121,-3.4368343,-3.4062,-3.4138074,-3.3784351,-3.3187559,-3.2635264,-2.882337,-3.0630858,-3.1151838,-2.8899603,-2.7531786,-2.3886454,-2.4683163,-2.1431613,-2.3748045,-1.8045232,-1.764576,-1.5036814,-1.4575598,-1.4211121,-1.3353734,-1.3513062,-1.2947581,-1.2817008,-1.243309,-1.3847461,-1.3817337,-1.4952385,-1.5668232,-1.6553447,-1.7627535,-1.8156958,-1.9556003,-1.9658422,-2.0453491,-2.1277194,-2.194314,-2.1339157,-2.1365426,-2.2601366,-2.2876902,-2.2056217,-2.7204494,-2.6711292,-2.5905228,-2.6409633,-2.933714,-2.7870946,-2.7576408,-3.1583948,-3.009235,-2.9668903,-2.9162102,-3.0515413,-3.3300157,-3.1931264,-3.2232423,-3.3222017,-3.3407006,-3.296989,-3.2980034,-3.3685203,-3.4728405,-3.308721,-3.36234,-3.4176867,-3.4296942,-3.3851538,-3.3479314,-3.3301382,-3.2470524,-3.2921677,-3.3455591,-3.2528684,-3.0797966,-3.2402067,-3.335474,-3.1112247,-3.0427837,-2.940936,-3.0038638,-2.9569762,-2.901088,-2.9042916,-2.8922985,-3.0307736,-3.0943685,-3.3555725,-3.4131207,-3.2240384,-3.3394275,-3.2762957,-3.2661512,-3.0819895,-2.9975069,-2.9526522,-3.0413873,-3.0432897,-3.0351605,-3.3122082,-2.6660237,-2.457547,-2.7608283,-3.0302792,-3.0888753,-3.1639078,-2.974218,-3.1275854,-3.245055,-3.1301956,-3.2251928,-3.4228797,-3.3136125,-3.1431417,-2.9651601,-3.074018,-3.0916336,-3.062442,-3.2037866,-3.492846,-3.4856977,-3.2766986,-3.2132275,-3.029419,-2.9736812,-2.9202852,-2.8945868,-2.5391495,-2.441088,-2.431687,-2.5072808,-2.189382,-2.3258655,-2.2890842,-2.4622707,-2.3282595,-2.7010028,-2.7411938,-2.6119404,-2.5518441,-2.567584,-2.6470022,-2.502091,-2.3506172
+-0.10438591,-0.79822844,-1.318763,-1.4644177,-1.7768817,-2.0624933,-2.0993016,-2.0629907,-2.0802288,-2.0644937,-2.0499089,-1.8872058,-2.2814827,-2.1900058,-2.7343516,-2.9759057,-2.844272,-2.7460182,-2.6426244,-2.5205894,-2.3871698,-2.2582831,-2.1351545,-2.581048,-2.7624836,-2.6445642,-2.597044,-2.5312877,-2.2288666,-2.6168542,-2.924241,-3.011267,-2.9360948,-2.7797534,-2.636075,-2.6630955,-2.9913008,-2.9380522,-2.5292861,-2.565196,-2.7144194,-2.6822152,-2.6201732,-2.350634,-2.0643501,-2.424703,-2.9580612,-3.067174,-2.8709576,-2.843464,-2.6564279,-2.7305543,-2.7405984,-2.7718456,-2.9449935,-3.0424724,-2.966595,-3.1235847,-3.0109615,-3.0049276,-2.88065,-2.644426,-2.5300689,-2.5880814,-2.5677881,-2.5706122,-2.6410224,-2.659022,-2.4625106,-2.5347846,-2.3641539,-2.964374,-3.2752225,-3.0355265,-2.6317458,-2.9825974,-2.526123,-3.036016,-2.6732035,-3.2800975,-3.1348782,-3.0315807,-2.879302,-2.637271,-2.4073377,-2.928516,-2.6858242,-2.6165285,-2.6198146,-2.6280706,-2.6572957,-2.616353,-2.5758653,-2.6918173,-2.7171178,-2.6698642,-2.63794,-2.7831256,-1.9743567,-2.7386875,-2.7312646,-3.129083,-3.3082733,-3.3062778,-3.3771272,-3.2505567,-3.108918,-2.9402034,-2.8648756,-2.742319,-2.6569667,-2.7910533,-2.8329835,-2.8055563,-2.8483868,-3.0047655,-3.2253356,-3.3419237,-3.4542432,-3.565994,-3.593026,-3.551035,-3.53976,-3.5826495,-3.5547357,-3.5536423,-3.5986657,-3.7485695,-3.679833,-3.6224477,-2.3904138,-3.4236608,-3.59005,-3.6167438,-3.658454,-3.6770184,-3.6694038,-3.7119908,-3.7648902,-3.8476748,-3.8585558,-3.8577838,-3.9274683,-3.8783126,-3.809173,-3.8662696,-3.9051042,-3.947381,-3.988235,-3.9954243,-4.034805,-4.179128,-4.1650968,-4.1018033,-3.8123507,-3.9906392,-3.9811673,-3.9083076,-2.9216647,-3.6058078,-3.5522578,-3.548973,-3.6061368,-3.606965,-3.6392417,-3.666822,-3.6911652,-3.6731381,-3.7288823,-3.8496532,-3.616332,-3.756548,-3.7495923,-3.7859712,-3.6525915,-3.7473412,-3.6002212,-3.7757964,-3.7923636,-3.875823,-3.8439145,-3.891478,-3.5918531,-3.701118,-3.695126,-3.7684922,-3.307396,-3.142838,-3.4082642,-2.988606,-3.4378119,-3.0017986,-3.194695,-3.685612,-3.6211553,-3.4325578,-3.0976954,-3.2902145,-3.0708938,-3.1356986,-3.431944,-3.6932797,-3.687049,-3.297916,-3.4921317,-3.6220508,-3.740024,-3.5012364,-3.2722106,-3.4444392,-3.5899973,-3.461206,-3.5395713,-3.2435362,-3.4373276,-3.674174,-3.742848,-3.7974648,-3.8628364,-3.669725,-3.7586513,-3.8856068,-3.9635944,-4.0161433,-4.017387,-3.9608164,-3.6723802,-3.588766,-3.4064937,-3.6393,-3.5162797,-3.3677952,-3.2160482,-3.4241962,-3.345473,-3.45019,-3.2180681,-3.2055776,-3.334425,-3.346056,-3.3615127,-3.068863,-3.0295048,-2.7218418,-2.6634681,-2.479252,-2.346314,-2.2560413,-1.9587128,-1.5366583,-1.5972548,-1.5970252,-1.5827644,-1.6910253,-1.7769742,-1.9156339,-1.9958458,-1.9862537,-2.1557717,-2.261702,-2.1380222,-2.0605357,-2.0575614,-2.0780222,-2.103376,-2.0554733,-2.1436222,-2.2064104,-2.2980719,-2.1678135,-2.1428697,-2.2811663,-2.149065,-2.1888943,-2.2642026,-2.3537507,-2.3763037,-2.3289223,-2.1724875,-2.1494331,-2.1440115,-2.100985,-2.0805259,-2.0891938,-2.2049847,-2.3969464,-2.2096078,-2.1109266,-2.0730011,-2.1074016,-2.1081939,-2.0299182,-1.9195328,-1.9217429,-1.8214493,-1.8758411,-2.0542498,-2.37322,-2.4452207,-2.4287915,-2.38758,-2.2884173,-2.2269626,-2.226317,-2.2398896,-2.4396265,-2.4357839,-2.188929,-2.422113,-2.2996225,-2.3007941,-2.2308664,-2.497326,-2.4614,-2.2676046,-2.0590403,-2.1374712,-2.2501469,-2.275692,-2.3101892,-2.4617352,-2.2452178,-2.2130547,-2.1213956,-2.0284476,-1.7204127,-1.8220801,-1.8866355,-1.8292992,-2.062401,-2.2519503,-2.4455671,-2.5343277,-2.5430224,-2.5582285,-2.2748601,-1.936434,-1.2721431,-1.417247,-1.6950481,-1.7756219,-1.672132,-1.005641,-1.0840044,-0.8794159,-0.8538497,-1.0650904,-1.691946,-2.1074939,-2.4981484,-2.3229153,-2.2714744,-2.4549737,-2.1504116,-2.3265438,-2.4897184,-2.5672202,-2.3660803,-2.4796138,-2.4416177,-2.6587186,-2.597271,-2.4115453,-2.4793725,-2.6608064
+-0.90402037,-1.5512035,-1.7952762,-1.9370325,-2.0202343,-2.1961925,-2.2516017,-2.3597727,-2.3934224,-2.5251443,-2.6319866,-2.458106,-2.7188277,-2.9741287,-3.1480117,-3.2550461,-3.1716611,-3.1497421,-3.1680171,-3.2232232,-3.4100304,-3.46172,-3.0809965,-3.3307414,-3.3001041,-3.3794074,-2.9671228,-3.2773418,-3.061191,-3.0955398,-3.2930002,-3.3638725,-3.3894854,-3.3746772,-3.335122,-2.788159,-3.2679992,-3.3373587,-3.2970512,-3.4973238,-3.6210787,-3.6815326,-3.591993,-3.4409006,-2.6432486,-3.4808984,-3.5876446,-3.5092068,-2.9310946,-3.3722792,-3.1990032,-3.4304528,-3.6982656,-3.4947157,-3.533996,-3.5090933,-3.5181055,-3.6881723,-3.6613395,-3.545963,-3.5772839,-3.6150346,-3.5768213,-3.6474736,-3.589597,-3.579134,-3.5060477,-3.5802584,-3.603064,-3.681707,-3.6297145,-3.666366,-3.816854,-3.8797507,-3.5090733,-3.81454,-2.8444357,-3.771236,-3.6776686,-3.8462963,-3.7286115,-3.7460108,-3.7210383,-3.737802,-3.705553,-3.9184728,-3.813415,-3.693931,-3.586125,-3.5381923,-3.5339112,-3.5422347,-3.5672917,-3.6128023,-3.6857712,-3.7187004,-3.7570643,-3.7539234,-3.6197462,-3.4183059,-2.7095203,-3.7766213,-3.7015986,-3.7471404,-3.7616134,-3.6537123,-3.6954403,-3.6377616,-3.6603901,-3.6459577,-3.6044533,-3.6205726,-3.6641574,-3.5787547,-3.5824726,-3.5510488,-3.5034688,-3.48517,-3.4742408,-3.5065584,-3.555554,-3.6515462,-3.5975733,-3.6652036,-3.628799,-3.6030586,-3.4769638,-3.4967341,-3.4342535,-3.6932788,-3.523749,-3.80378,-3.7948403,-3.7865953,-3.7394872,-3.739059,-3.5917988,-3.578524,-3.53654,-3.468883,-3.436531,-3.4709287,-3.561264,-3.6039782,-3.5309632,-3.4971118,-3.4798186,-3.494105,-3.6216004,-3.6499093,-3.6243148,-3.5593529,-3.5637975,-3.5813928,-3.5688398,-3.5576813,-3.4779634,-3.5713038,-3.6573133,-3.6412296,-3.679351,-3.62347,-3.6635907,-3.6912975,-3.508333,-3.5273385,-3.5539732,-3.5733364,-3.5847154,-3.5810523,-3.5058017,-3.7196174,-3.732308,-3.6968608,-3.3974645,-3.5766354,-3.7322965,-3.803588,-3.8556066,-3.876789,-3.8415647,-3.8218837,-3.8057566,-3.685007,-3.6648312,-3.703094,-3.6940389,-3.6350677,-3.5994694,-3.4365084,-3.6852021,-3.6558254,-3.6760292,-3.5852616,-3.7886734,-2.8864853,-2.9234965,-2.9563441,-3.1211495,-3.334866,-3.3103528,-3.2932098,-3.5493593,-3.6728392,-3.5062037,-3.5218039,-3.789678,-3.3374119,-3.2909112,-3.4871666,-3.708695,-3.6593595,-3.1618428,-3.2022362,-3.388181,-3.4266183,-3.4940104,-3.5300756,-3.598899,-3.6488302,-3.608913,-3.6703699,-3.6309385,-3.6196816,-3.658597,-3.6687365,-3.5789888,-3.608254,-2.792839,-2.9461942,-2.7342021,-2.5863378,-2.635817,-3.0070105,-2.8218596,-2.5540679,-2.3395634,-2.2895563,-2.324314,-2.4076853,-2.3473854,-2.1245992,-1.9793277,-1.9709256,-1.8833992,-1.7402148,-1.4298675,-1.3544734,-1.3516064,-1.2587819,-1.1029236,-1.0464737,-0.9547073,-1.16785,-1.434679,-1.7407267,-1.9365547,-2.2012687,-2.0007806,-2.1943657,-2.10542,-2.0631833,-2.059241,-2.1809535,-2.1304855,-2.140983,-2.3406496,-2.4954858,-2.3736968,-2.2528749,-2.3282678,-2.3425183,-2.3198137,-2.3733988,-2.4036307,-2.285,-2.3204741,-2.4094374,-2.4473062,-2.3634515,-2.2613585,-2.2325375,-2.2842379,-2.281416,-2.5329394,-2.743875,-2.6230683,-2.4829826,-2.4705515,-2.4562817,-2.4392705,-2.3957236,-2.363094,-2.5407052,-2.6853223,-2.811604,-2.8036115,-2.8060474,-2.679861,-2.531753,-2.768214,-2.483564,-2.413134,-2.4171562,-2.4562552,-2.6761014,-2.6740103,-2.682773,-2.390562,-2.4664297,-2.4971108,-2.5020666,-2.697753,-2.7842956,-2.4488974,-2.269163,-2.3599138,-2.3237662,-2.3549547,-2.428537,-2.4632564,-2.5638168,-2.6191962,-2.5078974,-2.5585093,-2.576281,-2.5906553,-2.587581,-2.6485205,-2.4061885,-2.3269882,-2.690206,-2.7997046,-2.8326054,-2.9041853,-2.704741,-2.660819,-2.6430383,-2.7755713,-2.679787,-2.753763,-2.517986,-2.4883063,-2.429281,-2.2552192,-2.3743863,-2.2104957,-1.9845791,-1.6014359,-1.5286434,-1.3138278,-1.7889926,-1.9528952,-1.9972715,-2.204948,-2.2260485,-2.1461437,-1.5763249,-1.7401757,-1.5868444,-1.6874425,-1.62695,-1.6300242,-1.7513902,-1.4621425
+-1.0225904,-1.8192143,-2.1918151,-2.3161836,-2.5021932,-2.5243144,-2.5261316,-2.4653509,-2.558435,-2.5575547,-2.578372,-2.657888,-2.7891536,-2.9995613,-3.1094565,-3.6963086,-3.5262794,-3.3756351,-3.3023047,-3.2594693,-3.2411127,-3.2657032,-2.9989038,-3.3586783,-2.9994025,-3.2997084,-3.288455,-3.3059082,-3.4267814,-3.258368,-3.3263488,-3.2991612,-3.2960002,-3.2969074,-3.3596249,-3.2601755,-2.9187684,-3.5441303,-4.218843,-4.187462,-4.209765,-3.9378958,-3.781674,-3.7195144,-3.451324,-3.4021163,-4.060973,-4.0415015,-3.6642456,-3.392127,-3.7686324,-3.9852862,-4.1944203,-3.985468,-3.8164158,-3.705173,-3.683857,-3.71804,-3.6557424,-3.7145433,-3.7311773,-3.6865683,-3.7459617,-3.7132297,-3.801672,-3.8045297,-3.7011108,-3.9396572,-3.8862362,-3.8693185,-3.8689876,-3.8101516,-3.901648,-3.9038315,-3.592529,-3.7269793,-2.9442458,-3.8071384,-3.6958485,-3.8747883,-3.6573613,-3.7110639,-3.7470908,-3.8114948,-3.7722602,-3.8325977,-3.8503842,-3.9542365,-4.0038967,-4.0944805,-4.025997,-4.1137776,-4.134673,-4.1342335,-4.135322,-4.1339664,-4.13186,-4.240233,-4.240817,-3.9999013,-2.4425707,-3.780919,-4.0605226,-3.9792733,-3.8105621,-3.7792115,-3.7734356,-3.7904449,-3.8457923,-3.8718028,-3.9034715,-3.946597,-3.97255,-4.0103784,-4.0902495,-4.172251,-4.2422223,-4.2415595,-4.3074756,-4.338125,-4.319885,-4.3002524,-4.32285,-4.340301,-4.315696,-4.3588405,-4.4152474,-4.362272,-4.398947,-4.351681,-4.310496,-4.322901,-4.4353795,-4.4289684,-4.443996,-4.461819,-4.487727,-4.5143213,-4.5085335,-4.5179434,-4.514602,-4.493739,-4.4572654,-4.4302764,-4.4639554,-4.493174,-4.5146117,-4.513347,-4.450954,-4.4539266,-4.4442906,-4.4507847,-4.4241385,-4.4297414,-4.44013,-4.3916383,-3.8427815,-3.9959955,-4.2092233,-4.033546,-4.201278,-4.2203093,-4.249246,-4.253696,-4.3585534,-4.344604,-4.3296623,-4.3263125,-4.319318,-4.3010936,-4.290258,-4.3328357,-4.384745,-4.3637214,-4.2367663,-3.6295922,-4.1226697,-4.1269784,-4.198629,-4.193514,-4.2061243,-4.144027,-4.0790286,-4.063003,-4.1339564,-4.2748938,-4.2132115,-4.17162,-3.8843164,-4.214531,-4.0628104,-4.0001464,-4.083232,-4.090443,-4.0716047,-4.0137258,-3.6317008,-3.932221,-3.6125429,-3.6741843,-2.850319,-3.9184136,-3.9604907,-4.117716,-4.2406015,-4.1664786,-3.916748,-4.123365,-4.246022,-4.300531,-4.2091303,-4.2972765,-3.6587377,-3.4941363,-4.2434316,-4.310281,-4.3515105,-4.4367547,-4.480106,-4.5553927,-4.5311255,-4.4945674,-4.560663,-4.578375,-4.60382,-4.5950465,-4.702174,-4.6666155,-4.3527746,-4.561928,-4.325927,-4.2744746,-4.4034038,-4.4262605,-4.2739,-4.316656,-4.257787,-4.2427573,-4.254704,-4.3128486,-4.3640766,-3.7232375,-4.0630817,-3.8359847,-3.934052,-3.8415174,-3.8344722,-3.6484737,-3.3772156,-3.444733,-3.0810943,-2.7947679,-2.8895154,-2.475725,-2.6453686,-2.7921257,-2.8301709,-2.1807475,-2.0266123,-1.7008882,-2.1532793,-2.1607342,-2.2770424,-2.1754766,-2.3644705,-2.315511,-1.954004,-1.9621406,-2.1676068,-2.152234,-2.1425633,-2.2510736,-2.3143642,-2.2728703,-2.3516932,-2.4160757,-2.3220923,-2.4372368,-2.0771801,-2.341981,-2.429788,-2.3296514,-2.1074936,-2.281838,-2.3953357,-2.509188,-2.7598906,-2.6367688,-2.618152,-2.6223774,-2.5536456,-2.6442068,-2.6716769,-2.7174997,-2.8255591,-2.7757719,-2.8548267,-2.8414602,-2.8580651,-2.7355976,-2.6873093,-2.6724572,-2.5892959,-2.5867157,-2.5827537,-2.6097894,-2.661578,-2.6702461,-2.4926848,-2.3161178,-2.1000829,-2.0183659,-2.1771674,-2.4087543,-2.3537009,-2.1891956,-2.2690659,-2.4084017,-2.4352229,-2.439849,-2.4500113,-2.3716393,-2.5744457,-2.2902012,-2.18778,-2.1170015,-1.8311796,-2.175438,-2.271654,-2.188458,-2.1282196,-2.1155653,-2.2414045,-2.2068434,-2.2545114,-2.0945873,-2.065998,-1.7487612,-1.8258173,-2.0040715,-1.7885854,-1.4766183,-1.5909548,-1.3474553,-1.334333,-1.4709761,-1.6362014,-2.0160356,-2.7870538,-3.0716972,-3.5334916,-3.4880285,-3.388059,-3.564185,-3.3619518,-3.5099444,-3.6844895,-3.1393259,-3.288046,-3.4794114,-3.1275146,-3.4629736,-3.1597166,-2.8706274,-3.1141055
+-0.45627362,-1.1588671,-1.6885779,-2.0114703,-2.1313188,-2.3479555,-2.4276104,-2.5679348,-2.70401,-2.8063848,-2.9622865,-3.0857508,-2.8490548,-3.2338839,-3.0515003,-3.5274787,-3.530041,-3.6667314,-3.7446713,-3.7550836,-3.9491768,-3.9829135,-3.8858051,-3.690302,-2.7931087,-3.471498,-3.123097,-3.402316,-3.1746469,-3.3362942,-3.368877,-3.5901475,-3.6614606,-3.6178741,-3.6436946,-3.0230057,-3.7979684,-3.6568966,-3.9445004,-3.9607797,-3.9869418,-4.033584,-3.9812822,-4.0247808,-3.783011,-3.4975586,-3.7474103,-4.046757,-3.619215,-4.0005765,-3.4688492,-4.0194383,-4.186107,-3.8986964,-3.355659,-3.9688592,-4.1652036,-4.0938883,-4.1069303,-3.9501166,-3.9775128,-4.0620112,-4.082126,-3.9378357,-3.8984308,-3.8635783,-3.8436093,-3.9001865,-4.022138,-3.9667745,-3.9654765,-3.7959385,-3.663249,-3.9432693,-3.9645076,-3.7588868,-3.9125142,-4.198361,-4.082397,-3.9661398,-4.012903,-3.9363198,-3.9599528,-4.04785,-4.0125785,-3.9319997,-3.9218106,-4.0931506,-4.103025,-4.1291976,-4.080328,-4.003498,-4.0728397,-4.1062427,-4.07105,-4.027658,-4.0046167,-4.054928,-4.0876765,-4.0552635,-3.9923015,-4.05433,-4.045737,-4.01214,-3.9625401,-4.031857,-4.0009236,-4.033097,-4.063438,-4.081753,-4.068159,-4.0821977,-4.0625873,-4.001829,-3.990264,-4.0335608,-4.078908,-4.0841317,-4.050375,-4.0341144,-4.013971,-4.002011,-4.000177,-3.9894867,-3.9566903,-3.9691234,-4.0262065,-3.9838643,-3.9771614,-3.9936304,-3.988522,-3.996254,-4.0328603,-4.0663133,-4.0723577,-4.060377,-4.042506,-4.061832,-4.030936,-4.030112,-4.0227737,-4.0367866,-4.0327444,-3.9981732,-4.010633,-4.024877,-4.029802,-4.058809,-4.09298,-4.083447,-4.0623565,-4.019222,-3.9861307,-3.980513,-4.0363755,-4.049437,-4.0645432,-4.057226,-4.1324697,-4.091992,-4.073423,-4.076875,-4.097093,-4.0587897,-4.0432057,-4.0462303,-3.3303244,-4.074996,-4.0566454,-4.0925474,-4.0485415,-4.0895867,-3.9522462,-3.943812,-3.7300482,-3.4159799,-3.9824824,-3.9595566,-3.9575658,-3.9723783,-3.9235654,-3.8615193,-3.807919,-3.8360515,-3.920753,-3.9354973,-3.9939194,-4.0638137,-4.048005,-4.023199,-3.9538102,-3.920497,-3.961081,-3.945043,-3.9447384,-3.969748,-3.3249412,-3.1741495,-2.8170705,-2.4232936,-2.651405,-3.192754,-3.2703605,-3.4579515,-3.7464366,-3.563325,-3.631107,-3.5867264,-3.6839333,-3.708064,-2.844746,-3.6905339,-3.3750453,-3.2817864,-3.3692605,-3.1613724,-3.205102,-3.226478,-3.3175116,-3.4391012,-3.5200875,-3.469394,-3.4956627,-3.529876,-3.5413184,-3.5936522,-3.6400342,-3.666129,-3.5502324,-3.3834577,-3.2366724,-3.0534205,-2.987343,-3.244193,-2.9889407,-3.112685,-2.6344366,-2.5226166,-2.4209433,-2.37673,-1.5742803,-1.2944353,-1.3957784,-1.3952327,-1.5742178,-1.636035,-1.300031,-1.4234488,-1.1537106,-1.2850506,-1.3034348,-1.3004777,-1.2560501,-1.6220784,-1.7373261,-1.8790464,-1.981472,-2.3204603,-2.2232308,-2.264801,-2.2477071,-2.2710958,-2.2569432,-2.311944,-2.670184,-2.5793972,-2.5527558,-2.8568258,-2.751388,-2.5213976,-2.3500283,-2.5780969,-2.499065,-2.5438027,-2.714825,-2.586154,-2.533037,-2.506546,-2.685492,-2.5303936,-2.4289474,-2.417573,-2.435293,-2.6853538,-2.4035273,-2.7744663,-2.7108107,-2.6579556,-2.591926,-2.6121035,-2.673514,-2.5035028,-2.507935,-2.5242772,-2.529149,-2.5785384,-2.4480052,-2.7354898,-2.713485,-2.6763134,-2.576445,-2.6355658,-2.4481387,-2.4001856,-2.3833911,-2.3856368,-2.3530118,-2.342686,-2.1653392,-1.9956851,-2.1822689,-1.8267252,-1.8963275,-2.231214,-1.9639566,-2.3796968,-2.2521982,-2.1608787,-2.179512,-2.2194953,-2.1783366,-2.0335703,-2.40447,-2.374213,-2.4706979,-2.4670472,-2.388852,-2.4843583,-2.5527194,-2.2479177,-2.173584,-2.1701093,-2.3196712,-2.3073714,-2.2975695,-2.1997216,-2.209436,-2.069322,-2.0826597,-2.213409,-2.1534486,-2.047864,-2.0747771,-2.0840034,-2.1536539,-2.0756893,-1.8286293,-1.3578823,-0.98167115,-0.6801247,-0.5005508,-0.3472054,-0.7334929,-1.3748786,-2.207486,-2.5931091,-2.436844,-1.9092498,-2.0064979,-1.7491572,-1.7730837,-1.642668,-1.6172311,-1.7589955,-1.7043176
+-0.61743146,-1.3431375,-1.7944536,-2.3002439,-2.2547355,-2.2416606,-2.2376885,-2.3512936,-2.525362,-2.7233624,-3.4843915,-3.5818996,-3.7711906,-3.7220688,-3.5463052,-3.5222974,-3.4676723,-3.4489796,-3.4518294,-3.4733825,-3.4560957,-3.5391197,-2.971281,-3.7025614,-3.0602965,-3.369973,-3.6158965,-3.5744963,-3.6002152,-3.4829512,-3.5872176,-3.5089755,-3.4699755,-3.432047,-3.4453669,-2.9990127,-3.3698301,-3.417519,-3.671218,-3.7661767,-3.778802,-3.688593,-3.6426272,-3.6259513,-3.587825,-3.4196038,-3.6109822,-3.6101737,-3.5776951,-3.5674138,-3.6331782,-3.6956906,-3.6973991,-3.4462435,-3.372253,-3.8818717,-3.9134169,-3.8138595,-3.7294998,-3.6611104,-3.599782,-3.640644,-3.6374855,-3.73306,-3.7113423,-3.7362018,-3.6810193,-3.7648754,-3.6900654,-3.7243161,-3.746973,-3.8155303,-2.8110943,-3.7330966,-3.8179002,-3.8830442,-3.7396054,-3.7850838,-3.8259978,-3.8168173,-3.851551,-3.824986,-3.8801131,-3.8158197,-3.8487597,-3.9022603,-3.9535975,-3.9279928,-3.9290595,-3.9354486,-3.9568782,-4.0036163,-3.9265442,-3.5665836,-4.01367,-3.9436803,-3.946056,-3.9926295,-3.9170508,-3.9140115,-3.798297,-3.9462352,-4.0075946,-4.04666,-4.075398,-4.0402503,-4.0074162,-3.9778762,-4.0157824,-4.0435567,-4.0375676,-4.0957785,-4.024278,-4.115184,-4.15199,-4.154905,-4.0493684,-4.1433597,-4.135527,-4.096542,-3.9952168,-3.9899883,-4.073746,-4.080318,-4.172469,-4.256825,-4.1386075,-4.0726385,-4.104718,-4.1747603,-4.154988,-4.2370477,-4.2548747,-4.2519507,-4.2401414,-4.2160325,-4.0775313,-4.240539,-4.1162047,-4.158911,-4.232591,-4.2665524,-4.2668176,-4.238144,-4.177027,-4.290329,-4.342576,-4.3410163,-4.32342,-4.2452064,-4.2924767,-4.22185,-4.1925564,-4.1993313,-4.2303495,-4.3753905,-4.2689347,-4.3227873,-4.3457465,-4.37485,-4.3470435,-4.3809447,-4.3850465,-4.3220716,-4.263618,-1.8541923,-3.7081227,-3.6496327,-3.639114,-3.6962366,-3.6448145,-3.6410115,-3.6100097,-3.7948031,-3.683802,-3.6890829,-3.8416114,-3.8305478,-3.8766303,-3.877799,-3.8793492,-3.8396578,-3.8309097,-3.9007964,-3.948543,-3.9359818,-4.1061506,-4.1018486,-4.116741,-4.092829,-4.0983067,-4.039173,-4.0569177,-4.0766945,-4.1485934,-4.1935654,-4.1402493,-4.1440706,-2.9793234,-2.6143794,-3.801355,-3.7476888,-3.7126713,-3.7553034,-3.8965096,-3.8772378,-3.9973373,-4.0106215,-4.051704,-4.057154,-2.6716406,-3.9417162,-3.5314424,-3.7753081,-4.0502753,-4.0687203,-3.9501224,-3.9818215,-4.048346,-4.0662894,-4.1481194,-4.1038165,-4.1353,-4.1678658,-4.176376,-4.1683664,-4.191781,-4.1811156,-4.1159244,-4.3315735,-3.948255,-3.7372127,-3.9790545,-4.198755,-3.6660426,-3.8337884,-3.588026,-3.626669,-3.4503303,-3.530302,-3.142243,-3.0670626,-2.9293094,-2.8557796,-3.1328168,-3.1564975,-2.731269,-2.890348,-3.0897946,-2.7415528,-2.6500354,-2.3162763,-2.879004,-1.8074613,-1.583065,-1.9945719,-2.069718,-1.839406,-2.0153587,-1.5719125,-1.6187925,-1.6844625,-1.7212877,-1.7981358,-1.9531446,-1.855108,-1.846926,-1.4501584,-1.6729572,-1.7593346,-1.7651045,-1.825017,-1.8848495,-1.8736374,-1.9778378,-1.9940081,-1.8710186,-1.8295262,-1.3727024,-1.4527652,-1.8571956,-1.7105951,-1.4154203,-1.3035693,-1.2858932,-1.3275874,-1.8659539,-1.8632703,-1.934448,-1.8565269,-1.8203554,-1.7671285,-1.7287817,-1.446264,-1.8220081,-1.7253463,-1.7924552,-1.68278,-1.8410063,-1.8368504,-1.6760473,-1.8762274,-1.8263009,-1.7670898,-1.7329688,-1.6604884,-1.5154912,-1.4825733,-1.4292741,-1.1919787,-1.3141584,-1.0689123,-0.97434133,-1.1025827,-0.3579195,-0.6465116,-0.7725753,-0.8203564,-0.8538832,-0.9092917,-0.9041738,-0.75650495,-1.0535479,-0.8455376,-0.9466898,-0.8979091,-0.9180648,-1.1189725,-1.3813455,-1.4199977,-1.4773021,-1.4081402,-1.1795902,-1.3437741,-1.2149408,-1.0750833,-0.9864922,-0.8193688,-1.0982027,-1.2325251,-1.1572161,-0.8806494,-0.7172455,-0.396962,-0.3293301,-0.17396942,-0.64402187,-1.3756871,-1.8658924,-2.1548672,-2.2832046,-2.2646036,-2.4255164,-2.3736997,-2.5611072,-2.6081083,-2.6213427,-2.743105,-2.6393425,-2.786022,-2.6660452,-2.634615,-2.5766182,-2.7173777,-2.8954787
+0.17823242,-0.25483423,-1.1917326,-1.8819332,-2.1188393,-2.37133,-2.4711063,-2.501307,-2.2497308,-2.8982453,-2.8534408,-2.966175,-3.0767777,-3.0948262,-2.836708,-2.947106,-3.0373797,-3.1343129,-3.2268324,-3.282742,-3.3766026,-3.40135,-3.008624,-3.35785,-2.4443312,-2.3922682,-2.8260489,-2.794385,-2.8351824,-2.7167969,-2.9584413,-3.091776,-3.1616273,-3.1066222,-3.209261,-2.8055725,-3.0788743,-2.8808894,-3.2873662,-3.2836237,-3.3312001,-3.3372838,-3.41229,-3.447983,-3.5015044,-3.3814044,-3.215149,-3.4319067,-3.3988051,-3.5411363,-3.7369113,-3.5548022,-3.6395488,-3.2271488,-2.98976,-3.1300416,-3.3695788,-3.3714724,-3.300684,-3.2782874,-3.2481856,-3.248645,-3.3051639,-3.3386464,-3.3459673,-3.4186745,-3.423758,-3.4415545,-3.4534602,-3.4872096,-3.542401,-3.5311048,-2.1701493,-3.2677374,-3.5152445,-3.6544445,-3.6146965,-3.5376694,-3.445358,-3.4378161,-3.4290838,-3.4796891,-3.5036373,-3.5590253,-3.5659933,-3.5845616,-3.6169987,-3.6614327,-3.6906552,-3.696673,-3.6925344,-3.58309,-3.7497373,-3.7151875,-3.6947017,-3.6670203,-3.666844,-3.6804762,-3.7117133,-3.741403,-3.6676464,-3.6556106,-3.7038293,-3.7240396,-3.7725873,-3.8085375,-3.775824,-3.7967777,-3.8329158,-3.8469682,-3.8511415,-3.8905263,-3.878827,-3.8596392,-3.8852267,-3.9138246,-3.9237952,-3.9559956,-3.974103,-3.9615908,-3.956061,-3.9408073,-3.9513745,-3.9618583,-3.942546,-4.0490136,-3.9212909,-3.9592957,-3.9472733,-3.9556832,-3.9438891,-3.9542713,-3.9706306,-4.00003,-4.019776,-4.0214324,-3.994163,-4.0288415,-4.0272317,-4.1252637,-4.0593357,-4.057549,-4.0686507,-4.1432204,-4.03501,-4.0083365,-4.01388,-4.023446,-4.0344014,-4.036737,-4.073276,-4.0363917,-4.0446105,-4.0338335,-4.043755,-4.058567,-3.9838953,-3.9389682,-3.9842544,-4.0236263,-4.0420938,-4.0454564,-4.0467434,-4.087632,-4.0026293,-1.9008117,-3.3657923,-3.3398108,-3.386262,-3.42459,-3.4716103,-3.514167,-3.5258183,-2.6104126,-3.3637872,-3.1923718,-3.3876498,-3.3039112,-3.3295665,-3.3523455,-3.3521361,-3.440188,-3.37249,-3.4750497,-3.4480677,-3.4829993,-3.4453545,-3.4511275,-3.4662693,-3.4502006,-3.4606485,-3.47638,-3.5517168,-3.5543861,-3.6011388,-3.6976972,-3.6312776,-3.6858883,-3.2839837,-3.3152328,-3.3197346,-3.2443974,-3.2163987,-3.2359147,-3.351684,-3.377796,-3.4207435,-3.47878,-3.4904027,-3.5055523,-2.7740536,-3.4481978,-3.2778566,-3.0281482,-3.354532,-3.2890055,-3.2277777,-3.3202326,-3.3732095,-3.4380991,-3.5060287,-3.444518,-3.4891949,-3.5282543,-3.5155783,-3.538516,-3.5530753,-3.516726,-3.5122352,-3.5636556,-3.0513923,-2.7990355,-2.8400722,-3.164598,-3.4219804,-2.9968104,-2.9120293,-2.8450012,-2.7651517,-2.7557616,-2.7372134,-2.699174,-2.456044,-2.5085506,-2.6845264,-2.651205,-2.467205,-2.7388382,-2.76662,-2.5903687,-2.351114,-2.2588167,-2.793693,-2.9007092,-2.530725,-2.7059796,-2.5847707,-2.778537,-2.8551877,-2.3289027,-1.9859395,-1.9099121,-2.0129077,-2.1792743,-2.3050861,-2.2449355,-2.139917,-2.0930884,-2.0677269,-2.0464735,-2.0981436,-2.1322002,-2.0851214,-2.0983531,-2.1415977,-2.1756594,-2.2562618,-2.2625313,-2.0482762,-1.6895592,-1.7429624,-1.932339,-1.7799025,-1.5893323,-1.4951761,-1.6545494,-1.6889038,-1.7675874,-1.6934242,-1.7691216,-1.866302,-1.8073187,-1.7774804,-1.8430128,-1.842083,-1.9652007,-1.8363934,-1.7413757,-1.7379026,-1.82023,-1.9311368,-1.8740659,-1.7833297,-1.7088833,-1.7042475,-1.6980572,-1.7169733,-1.6865587,-1.7191961,-1.7257905,-1.7302811,-1.7359445,-1.6295271,-1.5369158,-1.2663183,-1.0422571,-1.1306975,-1.1751401,-1.1152937,-1.1057491,-1.0602155,-1.0507629,-1.2843723,-1.0852036,-1.1406524,-1.1325383,-0.93069905,-0.99943715,-1.3199265,-1.2801402,-1.4651997,-1.3086927,-1.4332867,-1.3767719,-1.2626698,-1.1040902,-1.0483022,-0.9966337,-1.1509132,-1.4065039,-1.3287344,-1.0624866,-0.91144985,-0.8104784,-0.6457722,-0.49391633,-0.51316947,-0.4399292,-0.25127602,-0.23039395,-0.56395614,-1.3361182,-2.1360447,-2.3485885,-2.6397004,-2.6860743,-2.55177,-2.397293,-2.2879763,-2.3062754,-2.129264,-1.7728202,-1.774698,-1.6492696,-1.5716891
+-0.8113926,-1.4696975,-1.6965885,-1.8188646,-1.7885599,-1.8589668,-1.9627888,-2.1971154,-1.8672657,-3.1391797,-3.3333945,-3.4758058,-3.6371274,-3.5100622,-3.4294777,-3.4570649,-3.4118857,-3.44851,-3.4877746,-3.5742676,-3.6717725,-3.78406,-3.43554,-3.9158988,-3.3241878,-3.7393737,-3.6273012,-3.5160637,-3.7570968,-3.5374403,-3.798881,-3.469144,-3.7486582,-3.7598853,-3.848256,-3.5492396,-3.810389,-3.5136218,-3.7030597,-3.6820235,-3.6983256,-3.7495532,-3.8213458,-3.8734384,-3.779138,-3.777954,-3.820415,-3.8057246,-3.9080367,-3.894628,-3.8771596,-3.8439813,-3.8605247,-3.750795,-3.4937,-3.6447427,-3.7630234,-3.8638158,-3.8909287,-3.862636,-3.8596244,-3.8899412,-3.9170966,-3.9562192,-3.9684138,-3.970223,-3.9435487,-3.9522176,-4.018288,-4.0165887,-4.049729,-4.0035295,-3.0642943,-3.2465706,-3.8030405,-3.9340453,-3.974608,-4.0342913,-4.0381656,-4.13585,-4.09506,-4.082294,-4.0749745,-4.082274,-4.065843,-4.1202044,-4.1855025,-4.153328,-4.1102486,-4.1191745,-4.1593947,-4.1004186,-4.0543437,-4.136234,-4.1474853,-4.127041,-4.1113667,-4.14854,-4.1818357,-4.2047544,-4.11064,-4.1118426,-4.1502805,-4.1986604,-4.198396,-4.1689796,-4.148519,-4.167795,-4.14714,-4.19076,-4.2003884,-4.2239237,-4.21992,-4.235837,-4.240375,-4.2076354,-4.23943,-4.2648225,-4.2507987,-4.235598,-4.2468963,-4.2480226,-4.2511,-4.2119536,-4.280685,-4.2608356,-4.250713,-4.282276,-4.2782044,-4.284077,-4.2585754,-4.247776,-4.2859898,-4.333509,-4.3277583,-4.328446,-4.2827744,-4.324718,-4.2984095,-4.3194137,-4.365194,-4.3593636,-4.354155,-4.3350425,-4.34253,-4.32677,-4.333738,-4.341329,-4.371815,-4.364974,-4.3517323,-4.3257613,-4.3166776,-4.3334484,-4.3431754,-4.367006,-4.3573823,-4.3221316,-4.35798,-4.382393,-4.393405,-4.3731246,-4.356977,-4.3604655,-4.3583837,-4.373339,-4.3266897,-4.364967,-4.3384633,-4.33573,-4.3667397,-4.3162866,-4.3317685,-4.327228,-2.911429,-3.8658304,-3.8914318,-4.004152,-4.0541453,-4.085754,-4.092633,-4.065056,-4.1232896,-4.14755,-4.1299896,-4.074904,-4.141647,-4.138423,-4.095625,-4.112424,-4.0980115,-4.116075,-4.1033025,-4.113841,-4.0864162,-4.13819,-4.1164155,-4.178208,-4.206667,-4.206766,-4.1880164,-4.109607,-4.1152487,-4.1113124,-4.113373,-4.075925,-4.134257,-4.216114,-4.171882,-4.113175,-3.6196747,-4.003041,-3.4821448,-3.9320388,-4.009455,-3.897344,-3.9474473,-3.9892745,-4.036512,-4.038237,-4.0135484,-3.9663897,-3.9936109,-4.018253,-4.0005355,-4.005301,-4.0463853,-4.049321,-4.010657,-4.0476084,-3.8340287,-3.822822,-3.9863658,-3.983992,-3.9157906,-4.006399,-4.0581613,-3.9370122,-3.9769263,-3.908225,-3.7758145,-3.8287086,-3.5397143,-3.6649394,-3.6701481,-3.5744514,-3.422157,-3.7645144,-3.8446975,-3.8506055,-3.5173216,-3.7345333,-3.8543782,-3.8608484,-3.9217248,-3.9200702,-3.8599296,-3.8548522,-3.8179374,-2.8975816,-3.3416872,-3.076272,-3.0874496,-3.310079,-3.3237598,-3.3789291,-3.4583871,-2.9089668,-3.1918106,-3.232338,-3.264508,-3.4215693,-3.3972507,-3.5118134,-3.469969,-3.5749123,-3.5358112,-3.5559604,-2.803581,-3.2206874,-3.0918958,-3.2619405,-2.831236,-2.2161012,-3.3590953,-2.974164,-3.5059001,-3.389997,-3.1881447,-3.1486104,-3.1086512,-3.1569707,-3.3753405,-2.8789692,-2.8750715,-3.3361058,-2.53196,-2.4088535,-2.680097,-2.5497808,-2.6967418,-2.5678031,-2.5629706,-2.6800559,-2.8089519,-2.9565597,-3.0007463,-3.1233,-3.0746,-3.2653337,-3.3053179,-3.1614192,-2.410277,-3.4661517,-3.7075849,-3.7933855,-3.8588738,-3.63835,-3.5052555,-3.49891,-3.6382847,-3.756925,-2.771524,-3.083753,-3.2258196,-3.244621,-3.2567906,-3.6324525,-3.3968644,-3.3826153,-3.4486904,-3.456386,-3.4812818,-3.3576665,-3.2819111,-3.3820891,-3.5101602,-3.6349235,-3.6477976,-3.6693928,-3.7514338,-3.7833405,-3.740048,-3.8261309,-3.7507257,-3.7715898,-3.7698479,-3.8775706,-3.8896718,-3.8992581,-3.8844256,-3.871509,-3.9185004,-3.9169564,-3.4612753,-3.9407263,-3.7636514,-4.013243,-3.6132774,-3.9807897,-3.9633322,-3.8323674,-3.8325438,-3.9631524,-3.841764
+-1.0311542,-1.5662401,-1.8545165,-2.085338,-2.224119,-2.36089,-2.518609,-2.3396535,-2.4309428,-3.2745895,-3.3927832,-3.451324,-3.5833058,-3.684968,-3.7341952,-3.781073,-3.8840442,-3.9624772,-4.03812,-4.115673,-4.165524,-4.2721972,-4.2032485,-4.3552794,-4.2191854,-4.248241,-4.3160834,-3.3615677,-3.9576535,-3.178736,-3.656768,-3.6096156,-3.751052,-3.9030743,-4.0726237,-3.7554727,-3.3329186,-3.3343844,-3.7573018,-3.789877,-3.81679,-3.9652696,-4.0864234,-4.16506,-4.162313,-4.198046,-3.739625,-3.9701762,-4.0795264,-4.218185,-4.276958,-4.334475,-4.386767,-4.354523,-4.344126,-4.150491,-4.3224406,-4.3568654,-4.344315,-4.3527474,-4.3436723,-4.3524384,-4.3546805,-4.4012995,-4.408393,-4.396563,-4.393803,-4.3939853,-4.414404,-4.408165,-4.460414,-4.4302597,-4.3582215,-4.367686,-4.4053683,-4.3815703,-4.3938665,-4.434349,-4.4454007,-4.454007,-4.3778763,-4.3212543,-4.3019457,-4.3690906,-4.314676,-4.4269676,-4.4687843,-4.4117265,-4.4575562,-4.396237,-4.444653,-4.4818707,-4.475897,-4.4972115,-4.497585,-4.4994426,-4.47595,-4.5268674,-4.5605035,-4.5557256,-4.449681,-4.486625,-4.5064435,-4.5584984,-4.552895,-4.508497,-4.469744,-4.485154,-4.524459,-4.5653067,-4.556567,-4.569404,-4.542781,-4.5517893,-4.521955,-4.5273767,-4.5426455,-4.4886937,-4.463909,-4.39992,-4.4354587,-4.506086,-4.510216,-4.5087852,-4.5314493,-4.5656657,-4.539412,-4.5684614,-4.582651,-4.5756,-4.5623946,-4.587769,-4.6157885,-4.6201053,-4.597795,-4.570311,-4.52838,-4.5409274,-4.5656166,-4.6003385,-4.612153,-4.602572,-4.619188,-4.603216,-4.6125097,-4.614878,-4.613033,-4.6213207,-4.625506,-4.616163,-4.610654,-4.597503,-4.6062407,-4.6086965,-4.6368127,-4.635612,-4.6375012,-4.6560283,-4.6479435,-4.6795716,-4.6721196,-4.649375,-4.6448994,-4.6546,-4.647201,-4.645236,-4.6499257,-4.661907,-4.6567445,-4.6553106,-4.6668634,-4.642755,-4.6637836,-4.6153107,-4.637405,-4.594141,-4.6229825,-4.5982804,-4.626226,-4.663979,-4.654011,-4.689297,-4.6763372,-4.674603,-4.6587625,-4.572824,-4.6513877,-4.645271,-4.5711517,-4.5886817,-4.6336665,-4.661608,-4.6832867,-4.656919,-4.6618195,-4.674939,-4.684632,-4.6777205,-4.642896,-4.6309075,-4.593012,-4.534629,-4.5222692,-4.565955,-4.6174664,-4.6606197,-4.657384,-4.6195726,-4.6135674,-4.6378417,-4.029775,-4.5422025,-3.9055882,-4.3146405,-4.2304645,-4.257978,-4.3779707,-4.443749,-4.453934,-4.482635,-4.4925256,-4.4615464,-4.462791,-4.4611526,-4.4526315,-4.494388,-4.4436827,-4.418593,-4.4354196,-4.479295,-4.3900447,-4.4409075,-4.5617685,-4.531762,-3.856423,-4.3086023,-4.246766,-4.2610126,-4.3070292,-4.3586364,-3.9956355,-4.2109704,-3.9885936,-4.1398816,-4.248155,-4.1339927,-4.099789,-4.361606,-4.398212,-4.448956,-4.383142,-4.417699,-4.405684,-4.3080525,-4.271404,-4.2845845,-4.2777886,-4.219021,-4.3175063,-2.9671183,-4.0301957,-3.7040267,-3.6856494,-3.8405375,-4.090846,-3.952601,-3.9621968,-2.5028715,-3.7135353,-3.6861014,-3.8366704,-3.8644233,-3.8667417,-3.8377671,-4.038587,-3.35653,-3.9238715,-4.0664563,-3.8805528,-3.6686292,-4.0929995,-3.7765374,-3.954197,-3.7178779,-4.1450744,-4.1871514,-4.1797376,-4.327773,-4.116199,-4.139265,-4.11295,-4.1226287,-4.2258143,-3.4544497,-3.2440505,-3.4493744,-2.9761467,-3.0496492,-3.6843216,-3.7626572,-3.7285585,-3.7554464,-3.7935553,-3.8933187,-3.9616904,-3.9648948,-3.939219,-4.021751,-3.9686103,-3.9103603,-3.9349532,-3.1875699,-3.8114328,-3.9419556,-3.987371,-4.032576,-3.7105947,-3.6962194,-3.7754025,-3.903822,-3.9783769,-4.012345,-3.2553682,-3.3927178,-3.9772315,-4.0480413,-4.2133374,-4.150563,-4.0993114,-4.116155,-4.2392216,-4.2296557,-4.1200376,-4.1252036,-4.075918,-4.095343,-4.1606374,-4.199214,-4.187,-4.25213,-4.254756,-4.2044635,-4.1631007,-4.2235227,-4.2415676,-4.282701,-4.3106313,-4.3701854,-4.3906693,-4.399097,-4.451905,-4.50168,-4.519296,-4.576292,-4.4562173,-4.5316224,-4.4519343,-4.5669856,-4.5682626,-4.595747,-4.5721765,-4.517021,-4.610001,-4.58793,-4.4467683
+-0.8484439,-1.5387843,-1.9020882,-2.1671863,-2.3070927,-2.3730862,-2.6172462,-2.568638,-2.5728652,-2.9468808,-2.7821064,-3.0019083,-3.2833219,-3.4877617,-3.6426692,-3.688589,-3.7714653,-3.8831182,-3.981874,-4.024855,-4.0059037,-4.105825,-4.099354,-4.2200055,-4.1001105,-4.179445,-4.240812,-3.8767753,-4.168822,-4.1885366,-4.2032695,-4.251253,-4.2630963,-4.3756227,-4.3425145,-4.267305,-4.3397784,-4.3156915,-4.318211,-4.2923965,-4.285973,-4.3018937,-4.3152246,-4.314726,-4.2472396,-4.2549934,-4.2905827,-4.280236,-4.306943,-4.28346,-4.2377653,-4.2687087,-4.279325,-4.2321315,-4.2525687,-4.27131,-4.302865,-4.318082,-4.285414,-4.2656455,-4.2420735,-4.2128386,-4.190599,-4.181541,-4.17156,-4.165874,-4.2010674,-4.206019,-4.2191405,-4.2237263,-4.2600946,-4.256864,-4.292593,-4.2764325,-4.238319,-4.216393,-4.2271857,-4.2629223,-4.279344,-4.2188344,-4.183559,-4.184384,-4.1247277,-4.1300282,-4.0933423,-4.1757035,-4.217319,-4.2325845,-4.3156133,-4.2610803,-4.248065,-4.296473,-4.311289,-4.316249,-4.2921624,-4.2694364,-4.264451,-4.282371,-4.314314,-4.333534,-4.269727,-4.2983093,-4.260262,-4.2757854,-4.2647805,-4.234194,-4.1911674,-4.208111,-4.262209,-4.2970767,-4.296653,-4.295032,-4.252224,-4.277015,-4.2478423,-4.289622,-4.3034034,-4.2983146,-4.2985973,-4.3048577,-4.3123775,-4.3327317,-4.3600636,-4.3609405,-4.364833,-4.404204,-4.3922596,-4.3789043,-4.372703,-4.370106,-4.307032,-4.3039403,-4.3477798,-4.374517,-4.387341,-4.369549,-4.348267,-4.2817554,-4.2967196,-4.333554,-4.3600526,-4.366532,-4.396363,-4.405761,-4.408495,-4.399775,-4.4106746,-4.419645,-4.4198813,-4.4230337,-4.4179807,-4.3888793,-4.3867574,-4.380255,-4.385669,-4.3560214,-4.3600845,-4.4146066,-4.380997,-4.364469,-4.412493,-4.4324174,-4.4203486,-4.4170823,-4.414655,-4.4278264,-4.4363546,-4.384539,-4.3354683,-4.3369284,-4.3500123,-4.3808084,-4.4479895,-4.501449,-4.464906,-4.416429,-4.4063807,-4.3329325,-4.3770833,-4.42952,-4.453715,-4.4712033,-4.4797378,-4.460877,-4.4459996,-4.3833113,-4.429428,-4.4223933,-4.3587275,-4.298933,-4.3254304,-4.331628,-4.371985,-4.3726835,-4.3661103,-4.3750653,-4.347547,-4.412127,-4.43085,-4.412228,-4.4013143,-4.332929,-4.273649,-4.3047223,-4.30996,-4.3473907,-3.1192305,-3.9370823,-3.9133406,-4.103724,-4.325483,-4.299064,-4.378462,-4.37139,-4.3461704,-4.2328706,-4.194011,-4.2159157,-4.240055,-4.2867975,-4.250917,-4.1907363,-4.204332,-4.188168,-4.1830645,-4.1847997,-4.186647,-4.158027,-4.144064,-4.2657323,-4.169765,-4.121911,-4.1278057,-4.1682277,-3.6284475,-3.931241,-3.9031224,-3.9313922,-3.9517722,-3.9618134,-3.848905,-3.976049,-3.9527946,-3.979434,-3.998147,-3.989181,-3.890386,-3.9919872,-4.0134096,-4.0349736,-4.068092,-4.0507317,-4.037999,-4.05473,-4.061088,-4.0849214,-4.085551,-4.0574365,-4.0709014,-2.7167199,-3.5650795,-3.286243,-3.2457523,-3.3742518,-3.1444998,-1.8309317,-3.078363,-2.5785735,-3.0951123,-3.273242,-3.3172774,-3.344161,-3.3957748,-3.4848573,-3.4249735,-3.1272593,-3.5548015,-3.754415,-3.7965407,-3.8291297,-3.7772765,-3.2212546,-3.4964204,-2.9882703,-3.602704,-3.6699007,-3.3732908,-3.481412,-3.3621242,-3.4942238,-3.4151807,-3.336153,-3.457758,-3.4004934,-2.7376924,-3.395861,-3.2871585,-2.912387,-3.304046,-3.4880338,-3.4323258,-3.3009462,-3.3362584,-3.4473047,-3.5419543,-3.6285157,-3.7124076,-3.8569942,-3.8603253,-3.9076686,-3.8609605,-3.8718843,-3.994526,-3.935597,-3.875422,-3.8442502,-2.9612968,-3.4407406,-3.5687666,-3.5979738,-3.6396842,-3.7387514,-3.287293,-2.1562126,-3.1540685,-3.5734162,-3.6736956,-3.7416282,-3.7611632,-3.8642068,-3.8847494,-3.5790725,-3.782308,-3.8734612,-3.8714538,-3.8261323,-3.828217,-3.9019275,-3.9040794,-3.9781823,-4.011292,-3.9570575,-3.948627,-3.983974,-4.018866,-4.0342946,-4.044306,-4.092315,-4.159105,-4.154037,-4.172534,-4.2190533,-4.2669435,-4.3087525,-4.3630958,-4.07313,-4.221913,-4.2571044,-4.28268,-4.323423,-4.2794466,-4.3336177,-4.341509,-4.3499885,-4.33847
+-0.81793624,-1.172611,-1.4048862,-1.4198265,-1.1791756,-1.3216903,-1.5674164,-1.7998295,-1.9819069,-1.944859,-2.0036879,-2.0297904,-1.9618998,-1.9130833,-1.8198032,-1.9537754,-2.0271719,-2.1328244,-2.3295133,-2.581879,-2.8463378,-2.969524,-2.8876576,-2.511844,-3.3510962,-3.4825647,-3.440688,-3.2755327,-2.8999019,-3.2536106,-3.446019,-3.5419364,-3.642159,-3.6984062,-2.87777,-3.8568158,-3.9641032,-3.9687867,-3.0634828,-3.681158,-3.6878605,-2.9493504,-3.556503,-3.593821,-3.484536,-3.5344896,-3.6473963,-3.7303395,-3.4081824,-3.7266822,-2.607496,-2.7167094,-3.2758844,-3.7705588,-3.8985448,-3.9494996,-3.5615387,-3.7726283,-3.4511752,-3.8807445,-3.9030433,-3.8290606,-3.6522563,-4.0402837,-4.0519257,-4.0778785,-4.1487193,-4.190007,-4.134727,-4.1748977,-3.1831703,-3.9981894,-4.0373616,-4.0313253,-3.654828,-3.6704402,-3.741753,-3.6505356,-3.2291527,-3.273911,-3.9781437,-3.67204,-4.1016054,-4.1895056,-3.464729,-3.9085727,-4.1726046,-4.1609797,-4.1840587,-4.2200084,-4.269983,-4.28455,-4.296844,-4.2226887,-4.1332564,-3.858758,-3.498994,-4.189872,-4.104141,-3.323995,-4.14306,-4.1888704,-4.144362,-4.1275516,-4.245259,-3.0234518,-3.8410206,-4.114187,-4.2311325,-4.115415,-4.258224,-4.3023715,-3.9718022,-4.017519,-4.383964,-4.5311465,-4.1815143,-4.0363746,-4.1676526,-4.5680246,-4.542748,-4.4359174,-4.421204,-4.3897862,-3.707883,-4.392804,-4.434258,-4.352943,-3.6674714,-4.387955,-4.273537,-4.0128846,-4.2725797,-4.493341,-4.485681,-4.3205943,-4.3338842,-4.608127,-4.578377,-4.5480494,-4.403542,-4.517867,-4.50904,-4.3473663,-4.204865,-4.333587,-4.326105,-4.318415,-4.386869,-4.3331146,-4.306037,-4.282326,-4.2010727,-4.2730927,-3.944821,-4.033679,-4.1002135,-4.0008135,-3.7202172,-3.8229866,-3.7066875,-4.197536,-4.18594,-3.6820397,-4.055854,-4.003923,-3.9781423,-4.1005173,-4.1795793,-3.7353945,-3.6817272,-4.17936,-4.0287285,-3.8225527,-3.403777,-4.069222,-4.0617995,-4.051538,-4.0756145,-4.189593,-4.1596355,-4.1993523,-4.238379,-2.641978,-4.0767703,-3.920096,-3.91499,-3.8507934,-3.5242038,-2.8988194,-2.9665318,-3.0595741,-3.2434895,-2.7680893,-2.4652426,-2.3632817,-1.2867117,-1.8891025,-2.2143593,-2.4649792,-2.9158738,-2.9820294,-2.2810683,-2.6129375,-2.5269983,-2.4381611,-2.372914,-2.429762,-2.5809212,-2.6316757,-3.2527184,-3.2721763,-3.0489955,-2.2539482,-2.8662126,-2.8286874,-3.0575345,-2.998828,-2.9185517,-2.8967977,-2.8777976,-2.9454484,-3.1313553,-3.0675416,-2.9834359,-3.1470003,-3.1716685,-2.8074393,-2.4960814,-2.4111912,-2.2103438,-2.1766863,-2.1863236,-2.0920482,-1.9857986,-2.033908,-2.136527,-2.2182412,-1.9934351,-2.036112,-2.1287565,-2.277544,-2.4142122,-2.5372262,-2.4404068,-2.6264465,-2.6142893,-2.5843353,-2.9976807,-3.1371007,-3.3471813,-3.5392861,-3.680725,-3.7203012,-3.7596278,-3.8580742,-3.873114,-3.924787,-3.9295,-3.9479923,-3.9478946,-3.9405284,-3.8537774,-3.8393292,-3.8074994,-3.842915,-3.8531952,-3.7404366,-3.8901815,-3.916627,-3.8036227,-3.7790132,-3.8278704,-3.7898183,-3.861301,-3.9022298,-3.9793086,-4.0530577,-4.059851,-4.022804,-3.8654547,-3.9780645,-3.8613596,-3.7799664,-3.8512254,-4.0723386,-4.038213,-4.008472,-3.9500165,-3.8609686,-3.820067,-3.696393,-3.55539,-3.5266066,-3.7515593,-3.7931209,-3.730001,-3.7588992,-3.7906513,-3.8214135,-3.8499875,-3.822546,-3.7545185,-3.755611,-3.756576,-3.964991,-3.9563189,-4.013002,-4.0503516,-3.84308,-3.7059197,-3.759688,-3.7630715,-3.8942857,-3.6643703,-3.4626837,-3.6967602,-3.7803125,-3.7031198,-3.6995258,-3.6846821,-3.2070298,-3.4292717,-3.6740808,-3.498643,-3.5805886,-3.554465,-3.769073,-3.8439107,-3.858059,-3.7979689,-3.78588,-3.857407,-3.846086,-3.772575,-3.7360635,-3.6175573,-3.5859926,-3.7445369,-3.7075295,-3.749618,-3.7354484,-3.7937322,-3.619205,-3.641327,-3.49749,-3.3977242,-3.42274,-3.209941,-3.1182852,-3.4880822,-3.0706928,-3.3965583,-3.584715,-3.4275675,-3.2116847,-3.2401488,-3.3781114,-3.235411,-3.3758435,-3.1702073,-3.1560507,-3.127503,-3.0380096,-3.042643
+-1.1873796,-2.3494,-2.7550106,-2.4384649,-2.1905909,-2.9656897,-3.1511788,-3.2332728,-3.333133,-3.2716677,-3.3188171,-3.0126877,-2.6607823,-2.575189,-2.6913028,-3.142964,-3.2356129,-3.3043816,-3.3487113,-3.4456367,-3.5073364,-3.5318077,-3.0288255,-2.7237577,-3.4663067,-3.5041962,-3.4394567,-3.4392025,-3.3431273,-3.3935633,-3.4090624,-3.4253247,-3.4355407,-3.449972,-3.425281,-3.2185817,-3.4134831,-3.3895273,-2.5448947,-3.3187313,-3.4824471,-3.4964886,-3.4513383,-3.447446,-3.5019572,-3.5027936,-3.433637,-3.4334512,-2.9308844,-3.4201593,-2.5688353,-2.3292754,-2.6195147,-2.7983654,-3.3565488,-3.5772307,-3.7001586,-3.6486773,-3.6955824,-3.55553,-3.525389,-3.5970972,-3.6148658,-3.5611868,-3.537911,-3.5468166,-3.5705764,-3.6014972,-3.601287,-2.3901267,-3.3936565,-3.7047563,-3.628149,-3.7382646,-3.4528186,-3.3296022,-3.157127,-3.262953,-3.441077,-3.4290776,-3.5942426,-3.246103,-3.7363734,-3.8292718,-2.3413408,-3.6095915,-3.7957697,-3.8295832,-3.8844056,-3.8774595,-3.877656,-3.8135233,-3.8452735,-3.7726626,-3.6972513,-3.6832452,-3.082,-3.6964164,-2.845077,-3.437655,-3.8447938,-3.8411727,-3.754331,-3.673459,-3.739605,-3.702126,-3.6561112,-3.4940107,-3.5804267,-3.6405282,-3.530662,-3.6050797,-3.5274334,-3.3306365,-3.5184746,-3.6545968,-3.651311,-3.6197388,-3.6065056,-3.58915,-3.5857964,-3.5105824,-3.5323915,-3.5072339,-3.433594,-3.469583,-3.4753404,-3.3976295,-2.8690119,-3.6399257,-3.473431,-3.4053426,-3.6635795,-3.7059627,-3.6839762,-3.657965,-3.6336043,-3.6138048,-3.5871572,-3.5780375,-3.518229,-3.5408494,-3.5078692,-3.452415,-3.4396472,-3.4665344,-3.4605312,-3.4244113,-3.3509603,-3.3885903,-3.4264426,-3.3870347,-3.400231,-3.4110024,-3.1500592,-2.6127992,-3.5360494,-1.8731613,-3.297536,-3.3211215,-3.6648774,-3.595046,-3.9474034,-3.8125596,-3.451309,-3.7302947,-3.8032107,-3.8965993,-3.9033284,-3.337461,-2.905066,-3.1677873,-3.8031588,-3.7283063,-3.5029798,-3.9297795,-3.8390698,-3.8619027,-3.8874898,-3.8989067,-3.8970976,-3.900844,-3.8340826,-2.8438416,-3.7080388,-3.691044,-3.8028512,-3.185969,-3.172997,-2.5064569,-3.2899482,-3.1783543,-3.0279064,-3.0410404,-2.8334675,-2.5836515,-2.4282715,-2.82009,-2.901271,-2.996426,-2.8544939,-3.003685,-2.7940483,-2.9159606,-2.9627142,-3.2756424,-3.417935,-3.226195,-3.053533,-3.1313868,-2.9790864,-3.2411883,-3.2669594,-2.6592321,-2.843337,-3.0276306,-3.2228634,-3.3037,-3.3022964,-3.1003034,-3.399407,-3.4289143,-3.493978,-3.4435544,-3.3696866,-3.4023888,-3.392394,-2.512955,-2.6384115,-2.6941469,-2.4228187,-2.0534391,-1.8331289,-1.6058834,-1.5537977,-1.5635068,-1.6710601,-1.6492465,-1.6386366,-1.5189362,-1.6245234,-1.7006009,-1.8259017,-1.9438996,-2.0140388,-1.9324284,-2.0742898,-1.7598946,-2.3474736,-2.503573,-2.5877187,-2.6051927,-2.6804497,-2.7304516,-2.881309,-2.9686232,-2.8855374,-2.8921123,-2.8610463,-2.7990649,-2.9369516,-2.8670473,-3.0745683,-2.9855442,-2.9414034,-2.8074002,-2.851274,-2.843761,-2.8964248,-2.989674,-2.8870308,-2.9899402,-2.845377,-3.0604663,-3.1558843,-3.1508856,-3.061548,-3.0135603,-3.0895562,-3.1022522,-2.9837713,-3.0125852,-2.941035,-2.6888547,-2.8037598,-2.8158133,-2.8505802,-2.8670397,-2.8133583,-2.786092,-2.7804472,-2.699133,-2.8012047,-2.7477643,-2.5205965,-2.5640502,-2.5118752,-2.500927,-2.6341052,-2.6404872,-2.619296,-2.693214,-2.6421127,-2.5713825,-2.5584948,-2.5699244,-2.7081923,-2.80231,-3.0453906,-2.8541942,-2.480698,-2.3761833,-2.389608,-2.4090831,-2.5293756,-2.3641837,-2.1693094,-2.366039,-2.3581676,-2.3474507,-2.2452054,-2.3876424,-2.3330011,-2.008431,-2.2567248,-2.389999,-2.444858,-2.230599,-2.4829147,-2.6045494,-2.5680504,-2.794424,-2.8441172,-3.0101247,-2.8459287,-2.9697862,-2.8196206,-2.7514145,-2.7679467,-2.9430864,-3.1531096,-2.992977,-2.8686576,-2.773009,-2.5958045,-2.626378,-2.540493,-2.4625347,-2.4070673,-2.0491781,-1.720218,-2.2933283,-1.9037309,-2.0424225,-1.9657774,-2.1151698,-2.1859958,-2.218185,-2.3718314,-2.1165469,-2.1714146,-2.0485842,-2.3122277,-2.0254588,-1.8901706
+-1.2635937,-2.419559,-2.8666732,-2.9557893,-2.8497443,-3.0780683,-3.1696572,-3.227134,-3.357191,-3.3843207,-3.4346828,-3.18292,-2.5463598,-2.736936,-3.100303,-3.5399761,-3.524197,-3.5939565,-3.67334,-3.7342525,-3.7548733,-3.7448554,-1.9307532,-3.1240995,-3.4667754,-3.6058283,-3.5811262,-3.6407456,-3.5471768,-3.6009364,-3.4882178,-3.5243032,-3.5801044,-3.6098423,-3.586599,-2.7275853,-3.7279181,-3.8206048,-3.8197455,-3.5643046,-3.696137,-3.7378244,-3.722371,-3.7207098,-2.5597796,-3.1470504,-3.6776388,-3.6784134,-2.3655171,-3.5122924,-3.027819,-2.9701662,-3.606865,-3.5794923,-3.402732,-3.6469975,-3.886425,-3.786778,-3.7922764,-3.7664585,-3.7065902,-3.7283316,-3.8426857,-3.7941742,-3.7490191,-3.7635531,-3.794434,-3.8264112,-3.843515,-3.7888331,-3.8486285,-3.7774749,-3.733667,-3.7220979,-1.9251499,-3.453734,-2.5177488,-3.3510036,-3.7513604,-3.5252278,-3.8179026,-3.9263263,-3.8652315,-3.906035,-3.1092272,-3.851375,-3.9117723,-3.945912,-3.9108796,-3.9559426,-3.9302125,-3.8315063,-3.9571977,-3.8103428,-3.7812586,-3.8135586,-3.311236,-3.7924542,-3.8988676,-2.6532633,-2.4146235,-2.950573,-3.4879324,-3.896511,-3.9441013,-3.9731479,-3.956808,-3.9229817,-3.9352393,-3.9315124,-3.8419747,-3.9318762,-3.9248977,-3.856089,-3.8963943,-3.8647738,-3.8664327,-3.8309407,-3.8078513,-3.8017354,-3.7690272,-3.7163024,-3.7578201,-3.736055,-3.6675334,-3.7199025,-3.713201,-3.732492,-3.612411,-3.6478631,-3.6887531,-3.7910204,-3.7091908,-3.6711497,-3.6426408,-3.6154182,-3.5939114,-3.5651765,-3.5550961,-3.5597765,-3.5567198,-3.5634184,-3.538737,-3.5260892,-3.5197878,-3.5352516,-3.5075636,-3.474761,-3.4934545,-3.5115273,-3.4144394,-3.2683864,-3.3304732,-3.4445136,-3.4884467,-3.411443,-3.432944,-3.4912467,-2.9908767,-3.3307498,-3.5815,-3.594891,-3.6502292,-3.6436403,-3.520855,-3.4948413,-3.4598446,-3.4478223,-3.45418,-3.364963,-2.504887,-3.554865,-3.9200125,-3.8521051,-3.7988267,-3.9063444,-3.922728,-3.8743496,-3.8851838,-3.8819013,-3.8374743,-3.7785687,-3.7806764,-3.6900687,-3.5517006,-3.5342371,-3.537292,-2.643351,-3.3175466,-2.808504,-2.757854,-3.1736622,-3.4097018,-3.8468962,-3.6865582,-3.774837,-2.447618,-3.6778696,-2.8035045,-2.9717245,-3.3439493,-3.7706823,-3.857698,-3.4525375,-3.3669035,-3.8674874,-4.0495977,-3.9989028,-3.5454063,-4.158853,-3.8652225,-4.1156983,-3.4595132,-2.8092952,-3.684932,-3.8138418,-3.8088741,-3.8082018,-3.8515368,-3.9681087,-3.9547505,-4.0006595,-3.9849591,-3.9671845,-3.98812,-3.9685545,-4.020101,-3.157484,-3.1318874,-3.4251494,-3.3589015,-3.1030726,-2.996028,-3.2917113,-2.7583888,-3.0487175,-2.4852333,-2.7626548,-2.6016169,-2.797087,-2.7879376,-1.9822235,-2.0198054,-1.9262948,-1.6932406,-1.713944,-1.6290348,-1.5123835,-1.6876066,-1.6920309,-1.7850895,-1.8953066,-2.0205774,-1.9708722,-2.2309852,-2.303516,-2.3180752,-2.4413128,-2.6699178,-2.458965,-2.7060933,-2.8001223,-2.843769,-2.850096,-2.7681675,-2.7057757,-2.6658,-2.664715,-2.6028533,-2.8463032,-2.2989779,-2.2034745,-2.2810187,-2.4386775,-2.5027468,-2.6309967,-2.5474253,-2.508795,-2.6598933,-2.788417,-2.7384472,-2.7354317,-2.8217292,-2.5712996,-2.3224025,-2.296517,-2.4967966,-2.57046,-2.5582237,-2.5560484,-2.585949,-2.4773269,-2.247345,-2.1312406,-2.0117922,-2.0424228,-2.0516157,-1.9174938,-2.1282082,-2.0932145,-2.1206155,-2.2002819,-2.20228,-2.0869117,-2.0466213,-2.3123138,-2.2114375,-2.4019082,-2.3554065,-2.2426093,-1.8963995,-1.8303957,-1.9321659,-2.0642297,-1.6018505,-1.3592582,-0.84799093,-1.1515858,-1.250812,-1.2766476,-1.3047128,-1.575695,-1.4812472,-1.1574526,-1.3818302,-1.1869626,-1.1108541,-0.85891956,-0.77390736,-1.0914311,-1.016007,-1.332283,-1.630455,-2.0044115,-1.963335,-1.9553444,-1.8407266,-2.034346,-2.1026075,-2.1656303,-2.1668062,-1.8359294,-1.7411044,-1.504215,-0.97588104,-1.106065,-0.814635,-0.88755983,-1.1644299,-1.3773453,-1.1346326,-1.4899409,-1.2869201,-1.1681323,-1.2701218,-1.2275016,-1.2220402,-1.3476639,-1.3537884,-1.3537829,-1.3447244,-1.144737,-1.2414906,-1.1790457,-1.2122471
+0.27983212,-0.37475467,-1.1229889,-1.6159897,-1.6254954,-1.8542817,-2.206431,-2.5823877,-2.7316775,-2.8343472,-2.8835044,-2.7448773,-2.1707602,-2.059009,-2.4674375,-2.5671372,-2.6245046,-2.6782405,-2.9504595,-3.2475808,-3.4564223,-3.5293534,-2.9533062,-3.2782106,-3.105321,-3.1287272,-2.565775,-2.7308002,-2.0663533,-2.3817675,-2.5605,-2.7468562,-2.9716804,-3.223205,-3.3890803,-3.3818278,-3.4535632,-3.0989282,-3.3164756,-3.1921854,-3.4017177,-3.4756532,-3.6106608,-3.7013345,-2.8317952,-3.6356192,-3.5829058,-3.7147384,-2.9158726,-3.5363412,-2.9796224,-2.3054175,-2.8070636,-3.1595232,-3.293717,-3.4632556,-3.5560646,-3.5439472,-3.6818619,-3.6949391,-3.7444673,-3.827108,-3.8019118,-3.9024987,-3.9398837,-3.944015,-3.9462028,-3.986302,-4.0403504,-4.0084167,-4.11649,-4.019336,-4.1228127,-4.1660275,-2.900954,-3.6634297,-2.7992861,-3.85503,-3.9296117,-3.878592,-3.6585815,-4.006208,-4.1415095,-4.130378,-4.066766,-4.178477,-4.182443,-4.142247,-4.069445,-4.0963473,-4.0668626,-4.0517726,-4.0592494,-4.0102987,-4.0671797,-4.111652,-4.0789886,-4.134993,-4.0839496,-3.7405887,-2.0127802,-3.3943424,-4.101217,-4.0953393,-4.1355596,-4.1297708,-4.1057696,-4.168078,-4.173594,-4.163036,-4.129027,-4.1361785,-4.1020303,-4.081575,-4.0908527,-4.0771995,-4.035645,-4.0263095,-4.0043516,-3.9969373,-3.9584346,-3.9639869,-3.9280205,-3.8914347,-3.8092408,-3.8385625,-3.5896125,-3.5086703,-3.506562,-3.5526986,-3.5347338,-3.5686364,-3.5075622,-2.9071622,-3.8476214,-3.7848315,-3.7005138,-3.6104789,-3.4590607,-3.4482388,-3.405635,-3.4355397,-3.4270341,-3.4304476,-3.328414,-3.2612934,-3.268565,-3.230959,-3.359224,-3.3328366,-3.3714526,-3.1160731,-3.1108813,-3.2479343,-3.1601052,-3.240878,-3.0625515,-2.9898767,-3.1837971,-3.1036863,-3.1568532,-3.0845613,-3.1461236,-3.0525093,-2.9704347,-3.0010722,-2.8349953,-2.9492867,-3.0615835,-2.8723025,-2.7926016,-3.5278397,-3.5034864,-3.4282162,-1.9807148,-3.3514268,-3.8276896,-3.7636352,-3.8620243,-3.8080883,-3.747548,-3.6769814,-3.6596503,-3.6533875,-3.6181953,-3.207046,-3.3104134,-3.3265371,-3.1101453,-3.3381119,-3.5643725,-3.5728486,-3.4203668,-3.2540941,-3.0936384,-3.0610816,-1.8674595,-3.002073,-2.5756364,-2.729684,-3.0600097,-2.9253383,-2.8709714,-2.7076595,-2.5332086,-2.850194,-2.9198937,-3.1219845,-3.5825496,-3.5933495,-3.4133606,-3.7179604,-3.4427567,-2.9672902,-3.454938,-3.47019,-3.3534355,-3.259065,-3.2623138,-3.2789464,-3.3456216,-3.4324954,-3.5063317,-3.5796952,-3.5933838,-3.5578282,-3.4126234,-3.348382,-2.54944,-3.1225636,-2.5578249,-2.07647,-2.0856295,-1.9793248,-1.7479279,-1.6943731,-1.7067451,-1.7570887,-2.0914261,-2.0606108,-2.3526673,-2.8337588,-2.9888887,-3.2150588,-3.2786927,-3.42781,-3.2409415,-3.6298218,-3.755639,-3.7266898,-3.6862028,-3.743342,-3.626785,-3.6095536,-3.5147917,-3.8052588,-3.556151,-3.7661948,-3.1027222,-3.3150477,-3.4985576,-3.4851823,-3.4056149,-3.7121234,-3.5515938,-3.4155104,-3.7074313,-3.8109107,-3.5415785,-3.7502666,-3.724525,-3.6758456,-3.494062,-3.4983597,-3.5366287,-3.6183755,-3.8421578,-3.8538818,-3.7053714,-3.7431178,-3.654932,-3.8128443,-3.578866,-3.385172,-3.6552968,-3.7083511,-3.5836427,-3.4559631,-3.4248672,-3.425064,-3.433546,-3.6801353,-3.7155514,-3.2434506,-3.3603833,-3.6277847,-3.7152581,-3.7830024,-3.581326,-3.5542955,-3.51867,-3.5549693,-3.497681,-3.4197621,-3.692905,-3.7122889,-3.8721366,-3.8072124,-3.8317914,-3.2496836,-3.482544,-3.4343457,-3.6092682,-3.6193275,-2.4110897,-2.6441805,-2.6828196,-2.9858139,-3.0778694,-3.0841694,-3.0615354,-3.3673353,-3.4390192,-3.544787,-3.5617628,-3.5591826,-3.439099,-3.437917,-3.2840428,-3.3355954,-3.513436,-3.5599794,-3.681393,-3.6699212,-3.468689,-3.4006884,-3.3400412,-3.4353657,-3.5424302,-3.4676435,-3.604485,-3.5429883,-3.511252,-3.0954714,-2.9097564,-3.3359852,-2.9299967,-2.5817711,-2.7954788,-3.1179764,-2.8043332,-3.0127819,-3.0383153,-2.883125,-2.5797672,-2.95364,-2.9371731,-3.216687,-3.352032,-3.2870011,-3.4366477,-3.422542,-3.2378662,-3.3186953,-3.3061752
+-1.0112786,-1.6893985,-1.8950977,-1.9110987,-1.7568219,-1.9031076,-2.0015833,-1.9468544,-2.082878,-2.117898,-2.1639934,-2.317545,-2.2768445,-2.7037628,-2.6263306,-2.921942,-2.9789946,-2.9723501,-2.9666772,-3.005382,-2.8194642,-2.884474,-1.7984447,-3.0067444,-3.1281402,-3.209796,-3.3443532,-3.3068614,-3.2301612,-3.1654024,-3.2409604,-3.224625,-3.2253575,-3.1923747,-3.2033715,-3.2766821,-2.962273,-3.1024866,-3.3935175,-3.4411461,-3.5046296,-3.4227712,-3.4090889,-3.317884,-3.2853916,-3.2017145,-3.329898,-3.389893,-2.8788214,-3.103601,-3.5354357,-3.5768876,-3.6670938,-3.5022764,-3.4479961,-3.4280295,-3.3981347,-3.4048932,-3.495448,-3.5619516,-3.599163,-3.6288683,-3.6869545,-3.7550173,-3.774314,-3.7170906,-3.7764363,-3.8879228,-3.804676,-3.8763041,-3.8446665,-3.8034658,-3.729404,-3.7926664,-3.7489524,-3.7556462,-3.3572264,-3.697639,-3.7919812,-3.7898078,-3.7839494,-3.8767772,-3.8429942,-3.9459505,-3.9013553,-3.8255548,-3.8626838,-3.8646398,-3.9394426,-3.8989768,-3.9152837,-3.93544,-3.904623,-3.9481778,-3.9363227,-3.909412,-3.922686,-3.9530396,-3.9792538,-3.9997745,-3.537797,-3.7234607,-3.9813828,-4.0179095,-3.985652,-4.015815,-4.003002,-3.9892192,-4.058862,-4.0677943,-4.0451617,-4.019436,-4.049469,-4.036382,-3.999661,-4.00542,-3.9948964,-4.01641,-3.9972205,-3.9805274,-3.981134,-3.974625,-3.9725242,-3.9968343,-3.971613,-3.9804277,-3.9913015,-3.9833465,-3.961761,-3.96553,-3.9827456,-4.0005097,-3.9888577,-3.9892688,-3.9880815,-3.994698,-3.9744315,-3.9862356,-3.9774623,-3.9724545,-3.9720998,-3.992311,-3.9916773,-3.9742026,-3.9660583,-3.9855537,-4.0127416,-4.0231214,-4.022995,-4.003549,-4.012259,-3.9950852,-3.9897628,-3.9795485,-3.97994,-4.056111,-3.803741,-3.8061671,-4.0369706,-4.0447335,-4.0348287,-4.0193324,-4.052011,-4.0242877,-4.0575943,-4.153711,-2.932363,-3.6044836,-3.7876153,-3.8680158,-3.8939896,-3.9645782,-3.9836793,-3.9616742,-2.9862618,-2.6992514,-3.4150841,-3.427517,-3.5602303,-3.5768507,-3.5561037,-3.5524716,-3.5533686,-3.5525272,-3.6719599,-3.7401004,-3.8170562,-3.831509,-3.7907863,-3.767692,-3.7349424,-3.7031913,-3.7461119,-3.8016582,-3.7830548,-3.8516498,-3.788711,-3.730678,-3.415518,-3.2501717,-2.6687415,-3.3102436,-3.3866618,-3.4776735,-3.5564327,-3.5597243,-3.3623476,-2.8209114,-3.4099298,-3.5638795,-3.532474,-3.0426567,-3.0208714,-2.9947085,-3.6048262,-3.616209,-3.605596,-3.6349728,-3.6317778,-3.6662662,-3.66252,-3.685182,-3.7194815,-3.7364783,-3.7590604,-3.7510495,-3.7264075,-3.8308043,-3.7865925,-3.6161304,-3.338923,-3.2064977,-3.4820802,-3.8064551,-3.7405453,-3.562933,-3.298604,-3.3420827,-3.0259867,-3.200104,-3.3514917,-2.7654538,-3.0233245,-2.9240155,-2.8504558,-2.566475,-2.6572914,-2.5906365,-2.157765,-2.329299,-2.1513832,-1.6020448,-1.51776,-1.4248126,-2.0661473,-2.0713592,-2.1903915,-1.6400306,-1.4315064,-1.2477505,-1.5145307,-1.2806642,-1.4476423,-1.5793309,-1.9204602,-1.7341378,-1.5271606,-1.5484478,-1.763309,-1.6712677,-1.8586998,-1.8184681,-1.9338758,-1.8256931,-1.7365527,-1.7999473,-1.8106091,-1.995441,-1.7523785,-2.081303,-1.7420971,-1.8044758,-1.7184463,-2.0713954,-1.9610872,-2.0945287,-2.1902494,-2.2280676,-2.0166824,-1.9167969,-1.8670523,-1.9683404,-2.1695452,-1.9713745,-2.3518767,-2.438765,-2.5311325,-2.5372872,-2.323814,-2.6671824,-2.4800272,-2.407185,-2.2160785,-2.192834,-2.172145,-2.20042,-2.141436,-2.413336,-2.1448913,-1.9073396,-1.640239,-1.5686953,-1.9876177,-2.3942122,-2.6511207,-2.9361134,-2.834901,-2.6167982,-2.3800983,-2.120259,-1.9793496,-2.0528398,-1.7652743,-1.9721503,-2.6299672,-3.215993,-3.3198943,-3.2733383,-2.945589,-2.7978444,-2.4770806,-2.2755246,-2.1567495,-2.01822,-1.7615132,-1.572068,-1.5059481,-1.5528209,-1.956325,-2.210546,-2.2277021,-2.5276356,-2.9226842,-3.139447,-3.1400871,-3.146154,-3.0794573,-3.0785656,-2.9794533,-2.9271626,-3.1368203,-3.1449442,-3.0140152,-3.2055974,-3.2616692,-3.1700919,-3.1198773,-2.7509289,-2.8329759,-3.0788414,-3.128714,-3.0910752,-3.159639,-2.4124136,-2.4403949
+-0.20520204,-0.7646912,-1.6965675,-2.3522797,-2.4406695,-2.4749026,-2.5423748,-2.7029238,-2.7958682,-2.854494,-3.0557494,-3.325438,-3.2740297,-3.4321415,-3.1168303,-3.181157,-3.2311842,-3.3056324,-3.4412742,-3.5097466,-3.8092017,-3.8170571,-2.6518853,-3.2705534,-3.0749764,-3.1962173,-2.9243615,-2.6865273,-2.813816,-2.8566165,-3.115038,-3.3192606,-3.4526067,-3.6255307,-3.7557993,-3.5422373,-3.6683133,-3.5527613,-3.5849733,-3.6894503,-3.788249,-3.948862,-3.8833995,-3.8554049,-3.535165,-3.20833,-3.692531,-3.7900424,-3.1916003,-3.6849902,-3.9228854,-3.946343,-4.0352693,-3.8048992,-3.1677577,-3.724319,-3.8563037,-3.940877,-4.007061,-3.7632337,-3.7816262,-3.8790092,-3.8949099,-3.805306,-3.7575164,-3.7343078,-3.521511,-3.6762574,-3.7636552,-3.9023604,-3.9250464,-3.6612377,-3.5328503,-3.767407,-3.8591762,-3.6143262,-3.780273,-3.9492297,-3.958002,-3.7776456,-3.8092294,-3.7062554,-3.6271386,-3.8014302,-3.7466736,-3.5599258,-3.5019474,-3.5753548,-3.610683,-3.6262932,-3.6990223,-3.6279182,-3.6160896,-3.7050052,-3.6493301,-3.6730096,-3.629229,-3.7010074,-3.777254,-3.7949262,-3.461768,-3.6718583,-4.1154943,-4.016311,-3.8194594,-3.817646,-3.7946239,-3.8230205,-3.958506,-3.9869642,-3.9297519,-3.9163032,-3.964357,-3.8149042,-3.7744336,-3.7950826,-3.8797998,-3.9228716,-3.916965,-3.920363,-3.9672341,-3.9846358,-3.9566588,-3.9967265,-3.9000416,-3.8599114,-3.993679,-4.104477,-4.0720916,-4.0122027,-3.9618154,-3.8816857,-3.8789654,-3.909678,-3.9338126,-4.020814,-4.0287976,-4.052529,-4.1094403,-4.115585,-4.0805216,-4.074179,-4.1036115,-4.080569,-4.05313,-4.0139084,-4.01421,-4.044698,-4.079643,-4.099726,-4.192274,-4.214245,-4.179464,-4.1888256,-4.179128,-4.123606,-3.4561543,-4.277856,-4.3186107,-4.280144,-4.23207,-4.1745353,-4.198882,-4.203562,-4.153872,-3.7662606,-2.661437,-3.800366,-3.8930798,-3.9745994,-4.1001134,-4.123914,-4.092367,-3.9423451,-3.8542008,-2.504173,-3.3274906,-3.5268753,-3.6809669,-3.846973,-3.9126825,-4.0575385,-4.0660925,-4.1503344,-4.161734,-3.8694315,-3.8761973,-3.6022859,-3.8017435,-4.006367,-4.0523353,-4.05503,-4.068212,-4.075782,-4.017778,-3.9930224,-3.5039845,-3.8192916,-2.9336638,-2.7394078,-2.689962,-2.710929,-2.6292062,-2.736929,-2.890008,-3.1256902,-3.3191764,-3.4093776,-3.5261073,-3.579959,-2.6833284,-3.3990214,-3.1214056,-3.132215,-3.0726757,-2.8375945,-2.862187,-2.9299586,-3.0462508,-3.2266793,-3.3888593,-3.5058732,-3.6029506,-3.6691747,-3.7189145,-3.766893,-3.7844472,-3.8627443,-3.832231,-3.7187996,-3.4330788,-3.1078396,-3.2569575,-3.4521477,-3.2848463,-2.9144125,-2.555225,-2.626934,-2.6829765,-2.7003517,-2.3120716,-1.4992886,-1.4598887,-1.5169795,-1.4822912,-1.5221338,-1.5603857,-1.521766,-1.4054742,-1.5614648,-1.5676506,-1.450119,-1.5894525,-1.2954583,-1.9275565,-2.068974,-2.2485263,-2.487988,-2.5609581,-2.3172078,-2.3730192,-2.3044014,-2.2758217,-2.3829024,-2.786086,-2.3870893,-2.3903613,-2.7511172,-2.6527667,-2.566615,-2.4252286,-2.5829954,-2.4747572,-2.499474,-2.5484705,-2.5284576,-2.5926366,-2.643935,-2.5750823,-2.619942,-2.3782034,-2.4066277,-2.6250627,-2.610979,-2.5366664,-2.556285,-2.587698,-2.3190727,-2.2113094,-2.2586432,-2.3380766,-2.3138456,-2.3503156,-2.63129,-2.514084,-2.6707194,-2.4469903,-2.825082,-2.805185,-2.5702066,-2.6139874,-2.5502648,-2.398028,-2.341479,-2.353026,-2.3551168,-2.3887782,-2.3895092,-2.447082,-2.3058538,-2.2741537,-2.2561624,-2.0079885,-2.4544787,-2.4108405,-2.2840981,-2.2878516,-1.9658217,-2.0044417,-2.0876627,-2.1734266,-2.3001626,-2.2361116,-2.3335857,-2.2851026,-2.397583,-2.3339462,-2.4417224,-2.125029,-1.9554975,-1.7334569,-1.7589536,-2.173286,-2.197367,-2.157828,-2.0174146,-2.0407143,-2.0808868,-2.2545621,-2.023031,-2.1565251,-2.4024575,-2.1603737,-2.1862566,-2.0638666,-1.9887178,-1.9451909,-1.7003007,-1.5439484,-1.2382562,-1.0188124,-0.38839597,-0.084301084,-0.2532897,-0.66053724,-1.4381514,-1.9279652,-1.7452731,-1.6975694,-1.7559221,-1.4573803,-1.5230415,-1.4306109,-1.3544788,-1.3013918
+-0.4860385,-1.1270344,-1.6850231,-1.9415524,-2.0179725,-2.1507998,-2.154202,-2.0697412,-2.330604,-2.495703,-2.7885916,-3.558529,-3.5772839,-3.4058537,-2.9001446,-3.4182591,-3.6069074,-3.5901961,-3.5949202,-3.4901469,-3.3171277,-3.1766987,-2.5194087,-3.6052597,-3.3105912,-3.3697467,-3.4209285,-3.37136,-3.4808013,-3.6535654,-3.8347697,-3.9617653,-3.932178,-3.8791857,-3.7710557,-3.7633476,-3.4997773,-3.8148885,-3.8145213,-4.1022916,-4.1431985,-4.080531,-3.9090385,-3.7747426,-3.7171865,-3.5730987,-3.9406972,-3.9633126,-3.7337766,-3.3468404,-3.7509065,-4.041553,-4.113401,-3.798883,-4.0004134,-4.2043242,-4.0901856,-4.051207,-3.9295087,-3.7076955,-3.5544844,-3.5248356,-3.4981685,-3.484002,-3.475143,-3.4230194,-3.5432692,-3.5704222,-3.6268349,-3.6163492,-3.6306877,-3.641975,-3.009483,-3.7391825,-3.7341542,-3.6908789,-3.5795376,-3.5670867,-3.576647,-3.6007957,-3.6235142,-3.6653383,-3.7071872,-3.7678409,-3.7678895,-3.7706609,-3.7986274,-3.906073,-3.9578176,-3.9606113,-3.968802,-4.022389,-3.7520518,-4.0329623,-3.9965777,-3.9762635,-3.978981,-4.015012,-4.0404058,-4.041514,-3.9536843,-3.9760265,-4.0263696,-4.0630937,-4.0628133,-4.096753,-4.100954,-4.1214786,-4.1380086,-4.1371036,-4.140656,-4.1419787,-4.1289964,-4.1127167,-4.083652,-4.106216,-4.1131825,-4.1001525,-4.071548,-4.0390315,-3.9491706,-3.9627643,-4.059421,-4.0583415,-4.0262866,-4.0393467,-3.7396173,-3.9630966,-4.009144,-4.056956,-4.035667,-4.037602,-4.035588,-4.0534797,-4.0595756,-4.0556626,-4.020068,-4.0482855,-4.0360465,-4.0283256,-4.039211,-4.043428,-4.051019,-4.003739,-3.9825492,-4.0005517,-4.034368,-4.037746,-4.0510697,-4.033095,-4.0604815,-4.027044,-3.9920015,-3.9899087,-4.002542,-4.056294,-4.019054,-4.0200343,-4.0451536,-4.0734,-4.06813,-4.0793343,-4.0861,-4.0516973,-4.03034,-3.0819964,-3.6187162,-3.8751993,-3.8458157,-3.9280543,-3.9292183,-3.9293065,-3.9101806,-3.8918867,-1.9061389,-3.0940876,-3.4264748,-3.5822165,-3.3552036,-3.5474038,-3.556077,-3.6414323,-3.6288114,-3.5662901,-3.4125903,-3.2513561,-3.691403,-3.6300716,-3.639319,-3.5282707,-3.4669204,-3.445654,-3.476081,-3.5096288,-3.541243,-3.6509652,-3.5286126,-3.2576454,-2.9643273,-3.0993247,-3.580826,-3.6837773,-3.5825987,-3.5594864,-3.6218367,-3.5630891,-3.6290724,-3.7480993,-3.6956506,-3.6748683,-3.2145677,-3.585772,-3.5433755,-2.9160888,-3.540759,-3.5954576,-3.5487065,-3.5775194,-3.7349238,-3.768107,-3.712874,-3.6965914,-3.7190976,-3.7582684,-3.7969627,-3.8222094,-3.8531976,-3.8280535,-3.779224,-3.7553506,-3.512425,-3.2089086,-3.2636983,-3.4544551,-2.676286,-3.3254793,-3.0445676,-2.8930807,-2.5671997,-2.542639,-2.1891506,-1.6446385,-1.7792811,-1.9244187,-2.2935653,-2.3106027,-1.8584123,-2.0527406,-2.121884,-1.8131447,-1.6984377,-1.7414272,-2.1075194,-1.8729882,-1.7381425,-1.7453549,-1.8184748,-1.8714128,-1.8947644,-2.261437,-2.2549047,-2.2211013,-2.1938639,-2.011067,-2.171319,-2.2194524,-2.066852,-1.9042969,-2.1332688,-2.161295,-2.098474,-2.0421972,-2.0242186,-1.8384402,-1.8897028,-1.8618453,-1.9513876,-2.101637,-2.2968554,-2.2947187,-2.1956887,-2.1303315,-2.526925,-2.7702105,-2.682777,-2.7970114,-2.8985834,-2.947752,-2.85386,-2.63347,-2.5061564,-2.433386,-2.3098097,-2.6773114,-2.8287778,-2.7612762,-2.7481647,-2.9145164,-2.5695395,-2.4267907,-2.46273,-2.4561524,-2.3323267,-2.2094603,-2.096155,-1.9585824,-1.7699399,-1.9428651,-2.2964454,-2.2138393,-2.2111435,-2.043447,-2.2413912,-2.27872,-2.0575936,-2.254602,-2.1553903,-2.0766582,-1.8208485,-1.7612398,-1.6209328,-1.5852046,-1.8278303,-2.0934472,-2.0264475,-2.2614255,-2.1353626,-2.3762593,-2.2566702,-2.0550296,-2.130071,-2.174111,-2.199119,-2.246656,-2.0707073,-1.8928187,-1.7658181,-1.6972399,-1.9234209,-2.0865366,-2.0895529,-1.9938657,-1.8572636,-1.7786298,-1.8226304,-1.6484926,-1.5486002,-1.0662842,-0.95920056,-1.1005373,-2.0975447,-2.3790581,-2.6336915,-2.5935557,-2.6866982,-2.9192152,-3.1253223,-2.884293,-2.6622334,-2.5784159,-2.3017135,-2.100882,-1.9810276,-1.7726521,-1.9936795
+-0.49299866,-1.1851654,-1.6928053,-1.9298604,-1.9933362,-2.0362303,-2.0446954,-1.9879699,-2.1745563,-2.7115133,-3.212953,-3.4212477,-2.8553834,-3.29539,-3.1143332,-3.2275362,-3.241933,-3.2548642,-3.2238302,-3.1701336,-3.2072134,-2.7677195,-2.839952,-3.4078991,-2.855619,-3.3140597,-3.3217287,-3.15977,-3.3518155,-3.389299,-3.5694995,-3.5608482,-3.4781992,-3.2939732,-3.2358506,-3.317822,-2.8511398,-3.287549,-3.474568,-3.625376,-3.5710177,-3.3963525,-3.271873,-3.2590566,-3.3159294,-3.2591467,-2.9369335,-3.3242016,-3.46189,-3.27363,-3.375259,-3.3192143,-3.3812838,-3.2810202,-3.3613772,-3.3188133,-3.4662242,-3.4164367,-3.4434829,-3.4608622,-3.487136,-3.516366,-3.5842767,-3.6417313,-3.63988,-3.6495264,-3.694181,-3.7305264,-3.7360616,-3.7271504,-3.699634,-3.0610855,-3.0334175,-3.248775,-3.4731333,-3.493567,-3.5230837,-3.440484,-3.4614635,-3.5817497,-3.6457314,-3.7592626,-3.8026805,-3.8570638,-3.870501,-3.8374934,-3.8761787,-3.9140773,-3.9106874,-3.8518262,-3.5817752,-3.3824522,-3.5563767,-3.7627301,-3.8722396,-3.9608073,-4.001719,-3.9985614,-3.9697347,-3.949967,-3.973209,-3.9074483,-3.9821444,-3.9827886,-4.005691,-4.02807,-4.023012,-4.002119,-3.9302177,-3.8971677,-3.902594,-3.8894348,-3.9235082,-3.9706197,-3.9765868,-3.9640193,-3.9763517,-3.9756064,-3.9622793,-3.9005146,-3.8621058,-3.892572,-3.927919,-3.9231877,-3.9361768,-3.8174067,-3.2033799,-3.6773078,-3.7516518,-3.8834023,-3.9171433,-3.9148402,-3.9599628,-3.9889398,-4.0049596,-3.9963422,-3.9599853,-3.9998965,-3.9660978,-3.976746,-3.98206,-4.0415225,-4.0541224,-4.03445,-3.9863343,-4.0406833,-4.0502553,-4.015533,-4.0597453,-4.0878778,-4.0969996,-4.0559983,-3.9861875,-3.9496999,-3.9686956,-3.9859595,-3.9825912,-4.0719876,-4.078924,-4.080735,-4.0860286,-4.1507564,-4.1408763,-4.060144,-4.020619,-3.9668078,-3.932508,-4.1023765,-4.088096,-4.1108823,-4.0764956,-4.0389295,-3.9998798,-3.9998631,-2.9770217,-3.5597672,-3.7262816,-3.6867194,-3.759513,-3.7969508,-3.805018,-3.736536,-3.7355514,-3.7354226,-3.7621694,-3.891376,-3.9337173,-3.9284644,-3.9570937,-3.9564452,-3.9652872,-3.9422555,-3.9136643,-3.9180546,-4.00114,-3.960466,-3.8523307,-3.890059,-3.9194493,-3.8944707,-4.0831876,-4.118632,-4.079599,-4.0416274,-3.995376,-3.9343529,-3.6495543,-3.7956977,-3.8151402,-3.7817874,-3.4737551,-3.6646335,-3.5630312,-3.3173983,-3.5727663,-3.3467088,-3.3718047,-3.3888268,-3.4570801,-3.4388838,-3.4393766,-3.461968,-3.496358,-3.5332427,-3.5315561,-3.5381937,-3.5523953,-3.5206017,-3.4877448,-3.497901,-3.2257211,-2.9540296,-3.1084805,-3.3522577,-2.9581916,-3.011608,-2.8915567,-2.8399436,-2.7448473,-2.728688,-2.6535838,-2.5413022,-2.1897726,-2.20131,-2.5875623,-2.675603,-2.291987,-2.6473835,-2.7580795,-2.5208392,-2.2156887,-2.2862482,-2.7546582,-2.832549,-2.7858717,-2.8500938,-2.7398767,-2.912736,-2.8716795,-1.9352608,-2.0986924,-1.7731781,-1.919272,-2.3345985,-2.4742417,-2.4187713,-2.4270005,-2.214978,-2.226583,-2.1307786,-2.2656598,-2.2320137,-2.2901306,-2.2806368,-2.243865,-2.1799767,-2.2046173,-2.1729822,-2.23275,-2.2277324,-1.8073115,-1.8998079,-1.9841838,-1.9301386,-1.8079047,-1.6179836,-1.493849,-1.6202364,-1.5302002,-1.4405196,-1.4211633,-1.4369338,-1.5179119,-1.3925936,-1.3874743,-1.4434061,-1.2742114,-1.1097803,-1.2936463,-1.3183722,-1.4637403,-1.475671,-1.4627149,-1.4535241,-1.4375587,-1.4494572,-1.4544666,-1.4404974,-1.4527979,-1.4038332,-1.3967226,-1.3683355,-1.3584936,-1.4814079,-1.2118571,-0.9876506,-0.5326188,-1.1479733,-1.2549143,-1.3549702,-1.4649456,-1.5532062,-1.4393215,-1.4048436,-1.407748,-1.5999455,-1.614738,-1.3458781,-1.3208587,-1.3823829,-1.5994813,-1.6028829,-1.7149181,-1.6606305,-1.5940876,-1.6301181,-1.718555,-1.796809,-1.8203406,-1.8168442,-1.7416754,-1.7890387,-1.8098743,-1.956032,-1.9481905,-2.1973448,-2.3873906,-2.6810167,-2.8947802,-3.0092795,-3.0907564,-3.098117,-3.141055,-3.1203618,-3.2382193,-3.1987562,-2.5354304,-3.0126033,-2.3136353,-2.8588886,-2.8844087,-2.738307,-2.8272486,-2.5555673,-2.3701859
+-0.64363945,-1.1061912,-1.3762176,-1.5901356,-1.6066277,-1.7317119,-1.8302262,-1.973628,-1.8835812,-2.1476436,-2.7687032,-3.038835,-3.2463558,-3.2684956,-3.2482204,-3.2995768,-3.328087,-3.4046497,-3.4751368,-3.586405,-3.6809711,-3.804749,-3.7109485,-3.966866,-2.6947343,-3.5058393,-3.6205106,-2.977108,-3.2133708,-2.5749617,-3.1212537,-3.1900444,-3.2546132,-3.3488855,-3.5302062,-3.6556253,-3.2479453,-3.3175793,-3.4925294,-3.5160558,-3.5450158,-3.6255693,-3.7639084,-3.837813,-3.8471136,-3.8526516,-3.6300268,-3.5664356,-3.917791,-3.9756632,-4.023847,-4.066261,-4.1372995,-3.9574695,-4.148742,-4.0420775,-4.0859933,-4.187901,-4.2035756,-4.1358294,-4.119077,-4.1470346,-4.197313,-4.1857395,-4.1992774,-4.1720853,-4.189241,-4.182716,-4.2180734,-4.1472054,-4.1903005,-2.4373999,-3.5581439,-3.801723,-4.0350323,-4.0832715,-4.1232047,-4.1810355,-4.1999927,-4.2593136,-4.258063,-4.2749267,-4.2782407,-4.2928762,-4.279842,-4.3291187,-4.374681,-4.3630176,-4.3726306,-4.2919703,-4.2405696,-3.5452437,-2.790515,-3.816277,-4.054193,-4.1489854,-4.1757836,-4.1933656,-4.213035,-4.245961,-4.2284694,-4.287253,-4.3179746,-4.3547916,-4.346546,-4.3287616,-4.299541,-4.271088,-4.254931,-4.302262,-4.3174415,-4.3467703,-4.3524227,-4.3720393,-4.349901,-4.290135,-4.3457055,-4.3593707,-4.340435,-4.200417,-4.2294097,-4.17053,-4.238859,-4.250206,-3.356868,-2.9685097,-3.78484,-4.030585,-4.2563357,-4.3510947,-4.351003,-4.3413334,-4.4044642,-4.4490747,-4.4422417,-4.423305,-4.3694425,-4.4263415,-4.37888,-4.402697,-4.435467,-4.445791,-4.4426436,-3.5207334,-3.5729775,-3.7723064,-3.9791179,-4.1142898,-4.1997294,-4.268991,-4.2538047,-4.2418766,-4.2161794,-4.2863684,-4.311053,-4.30383,-4.339971,-4.3799233,-4.382811,-4.385893,-4.3919444,-4.3978095,-4.367951,-4.379169,-4.386689,-4.415113,-4.392653,-4.389902,-4.374725,-4.3840036,-4.416843,-4.3755975,-4.3809857,-4.3143606,-4.118055,-4.1600904,-4.2110124,-4.2614093,-4.278356,-4.302255,-4.239793,-4.1960015,-4.2399125,-4.2957997,-4.3468833,-4.1625457,-4.2632484,-4.3064246,-4.217087,-4.222346,-4.257878,-4.289926,-4.289043,-4.2502303,-4.246491,-4.2863445,-4.2943525,-4.333868,-4.324816,-4.2866883,-4.1719103,-4.094948,-4.109879,-4.1357265,-4.223301,-4.1521306,-2.346984,-3.7049165,-3.621067,-3.861281,-3.875893,-3.909337,-3.8932405,-3.9639,-3.954031,-3.8611083,-3.9322667,-3.9754887,-4.0001287,-4.0081043,-3.9599771,-3.916184,-3.9445539,-3.963375,-3.9601421,-3.974496,-3.9935136,-3.9805856,-3.9396892,-3.9980397,-3.933907,-3.8382,-4.0435057,-3.5270674,-3.683309,-3.800037,-3.8818889,-3.719358,-3.7500715,-3.7593904,-3.809362,-3.5906217,-3.4767308,-3.5306895,-3.5960908,-3.4243107,-3.3674457,-3.632075,-3.7593293,-3.7800221,-3.4825382,-3.6680822,-3.8086758,-3.7877407,-3.7916722,-3.793727,-3.7651305,-3.7612414,-3.4434915,-3.049405,-3.511924,-3.1181946,-3.0702395,-3.2445185,-3.3994336,-2.8304036,-2.8830166,-2.5764031,-2.860635,-2.7833624,-2.8011572,-2.9207902,-2.9121103,-3.059119,-2.8635077,-3.0121639,-3.0467954,-3.0936804,-3.1375482,-3.2624822,-2.9602437,-3.165713,-3.3225646,-3.4112384,-3.590654,-3.58695,-3.358924,-3.008069,-3.2891302,-3.1406498,-3.03691,-2.9985914,-3.1446662,-2.7783842,-2.7406168,-2.7556753,-2.5330138,-2.794737,-2.6351209,-2.5231028,-2.6433427,-2.524106,-2.4584482,-2.5286653,-2.570992,-2.6775792,-2.7189956,-2.9090147,-2.9617276,-3.1244187,-3.224399,-3.184273,-3.4872406,-3.6093872,-3.617722,-3.6717916,-3.4022026,-3.494491,-3.283957,-3.2979422,-3.3628867,-3.5535939,-3.0759704,-2.9191377,-3.385367,-3.581458,-3.6898737,-3.8438087,-3.6790419,-3.6141114,-3.5805683,-3.590576,-3.6588233,-3.6095824,-3.4427438,-3.4549952,-3.5679803,-3.7487726,-3.7881765,-3.647113,-3.8606029,-3.8069777,-3.7289019,-3.803505,-3.7575955,-3.7829723,-3.752143,-3.813611,-3.8287067,-3.8722444,-3.8997512,-3.9146914,-3.9694839,-4.039616,-4.1173463,-4.18838,-3.9540353,-4.2423534,-2.9070325,-3.727849,-3.8474374,-3.6352992,-3.6483693,-3.6123977,-3.7185345
+-0.9078309,-1.3208005,-1.5261354,-1.6700056,-1.7919064,-1.9004257,-1.9792223,-1.5677998,-2.076282,-2.7111354,-3.4152565,-3.326079,-3.2824948,-3.204596,-3.0821881,-3.2441816,-3.3996532,-3.4775271,-3.5415096,-3.5937295,-3.6436076,-3.7074413,-3.6932125,-3.7435565,-1.6881409,-2.7597675,-2.9977984,-3.0567155,-3.1023426,-2.8185737,-3.4634194,-3.3326554,-3.2602928,-3.3149252,-3.4321678,-3.5426075,-3.5783682,-3.5466468,-3.47152,-3.4604506,-3.4342442,-3.4721088,-3.471161,-3.4792356,-3.4627843,-3.4568336,-1.9108548,-2.962617,-3.0269256,-3.1924734,-3.3472056,-3.4531367,-3.4915633,-3.5136044,-3.5409865,-3.3207507,-3.3190541,-3.3567684,-3.3972888,-3.3974319,-3.4297514,-3.4759345,-3.443542,-3.4630914,-3.4963424,-3.4767869,-3.4844544,-3.4840503,-3.4800699,-3.4693277,-3.4724207,-2.361666,-3.2623305,-3.2885933,-3.375071,-3.4308324,-3.4906557,-3.4791746,-3.4735763,-3.399018,-3.4134202,-3.405927,-3.4257202,-3.4428883,-3.4191732,-3.466243,-3.495832,-3.483532,-3.5560188,-3.5539682,-3.4951982,-2.341546,-3.122639,-3.364497,-3.4332345,-3.5411844,-3.650058,-3.7178273,-3.7542481,-3.763699,-3.743217,-3.7924776,-3.7719169,-3.7608361,-3.7726502,-3.731017,-3.6877646,-3.6706805,-3.6824214,-3.681221,-3.6556032,-3.6459742,-3.6191368,-3.616195,-3.6011324,-3.5876753,-3.605484,-3.6222103,-3.2200782,-3.434665,-3.2713795,-3.469852,-3.5446892,-3.608766,-3.7174535,-2.8424253,-3.6620913,-3.4558892,-3.513,-3.6006517,-3.682016,-3.7574391,-3.7918487,-3.8621964,-3.9059243,-3.902197,-3.8704271,-3.872243,-3.8773704,-3.8970432,-3.921887,-3.8963022,-3.9075756,-3.9174247,-3.233698,-3.604885,-3.6142237,-3.6580133,-1.1559441,-2.7108145,-2.8572378,-3.034121,-3.219665,-3.3678904,-3.466782,-3.5212207,-3.592926,-3.650879,-3.689878,-3.7445126,-3.7585344,-3.790256,-3.7987647,-3.7628589,-3.7570796,-3.7656817,-3.758226,-3.7250886,-3.7399716,-3.7474914,-3.7351708,-3.704032,-3.776504,-3.898797,-3.7530913,-3.658308,-3.7102218,-3.73488,-3.754953,-3.7631335,-3.7830787,-3.807385,-3.7521963,-3.7004628,-3.669057,-3.602479,-3.6627536,-3.6814578,-3.6755292,-3.695253,-3.7159076,-3.7277837,-3.7128105,-3.655263,-3.6933389,-3.6963468,-3.6605406,-3.673347,-3.7449975,-3.7356572,-3.715886,-3.7201319,-3.7012134,-3.6953292,-3.6956897,-3.6794505,-0.92166585,-3.2767673,-3.515107,-3.799151,-3.9850435,-3.9937835,-4.0774074,-3.971119,-3.7576137,-3.6828585,-3.7315168,-3.7816715,-3.8174162,-3.8383136,-3.837791,-3.885695,-3.9175086,-3.942349,-3.9408488,-3.9565864,-3.9721708,-3.9792905,-3.974658,-3.9460864,-4.0204115,-4.13241,-4.0884595,-4.03068,-4.1967874,-4.100285,-4.1170087,-4.1205015,-4.157041,-4.12418,-2.959914,-3.700129,-3.6743765,-3.734807,-3.783043,-3.827498,-3.862298,-3.9311566,-3.9058852,-3.9123163,-3.9122653,-3.9093375,-3.8782563,-3.7910538,-3.754047,-3.7590728,-3.761519,-3.7426395,-3.715989,-2.148319,-3.3824177,-3.5893512,-3.4606175,-3.5051727,-3.6086235,-2.7926536,-3.7059774,-2.7756553,-3.0717192,-3.449635,-3.5237367,-3.5890307,-3.6410708,-3.7449756,-3.8558936,-3.871642,-3.7677279,-3.772911,-3.8286633,-3.824524,-3.7101731,-3.035554,-3.5595078,-3.3789134,-3.7448258,-3.9125228,-3.0202966,-3.0047808,-3.6338253,-3.7275834,-3.6935344,-3.6520343,-3.710472,-2.7373912,-3.1501408,-3.48463,-2.9777415,-3.011942,-3.2815015,-3.5273342,-3.5915089,-3.605585,-3.6061192,-3.718577,-3.8185134,-3.859058,-3.8695683,-3.9320054,-3.991716,-3.955597,-3.9301343,-4.0019836,-4.0057015,-3.9889722,-4.0062127,-4.0014405,-3.3540013,-3.7670383,-3.9677134,-3.9068437,-3.896175,-3.9332557,-3.334485,-2.9313006,-3.79602,-3.921389,-4.110519,-4.039816,-3.8828301,-3.8055468,-3.8791976,-3.9392,-3.9679942,-3.8343272,-3.7611446,-3.8456097,-3.8973556,-3.8901844,-3.864635,-3.784326,-3.886681,-3.8629746,-3.8394551,-3.8555923,-3.866756,-3.869555,-3.899282,-3.8969722,-3.8474536,-3.8411698,-3.837831,-3.832703,-3.835002,-3.8674855,-3.9127011,-3.9818087,-3.8585153,-3.9037638,-3.9439468,-3.9342637,-3.890616,-3.8180194,-3.8611197,-3.744184,-3.6711702
+-0.83412176,-1.2706339,-1.4617412,-1.5668199,-1.6746371,-1.7582548,-1.8146358,-1.6188176,-2.0331998,-2.201438,-2.3498006,-2.4899611,-2.4601016,-2.5223916,-2.5795188,-2.6165378,-2.679758,-2.7371612,-2.8035421,-2.8567271,-2.8927124,-2.9554834,-2.978918,-2.9976835,-2.9921725,-2.979453,-3.0369225,-3.038282,-3.0200706,-3.0733867,-3.0436363,-3.0909781,-3.0886946,-3.1070356,-3.1052907,-3.1222618,-3.100472,-3.068372,-3.0907025,-3.0977712,-3.0912056,-3.1014352,-3.1036475,-3.0943666,-3.0538564,-3.0500298,-3.0770762,-3.0788815,-3.113327,-3.1058543,-3.0489256,-3.0446672,-3.074421,-3.087171,-3.0867233,-3.1068902,-3.0847926,-3.1428213,-3.1489882,-3.1439545,-3.1398077,-3.1479683,-3.117352,-3.1085868,-3.0836043,-3.083996,-3.1097152,-3.1305292,-3.1580658,-3.1666167,-3.1714516,-3.1669073,-3.1690419,-3.1260927,-3.1286044,-3.1208727,-3.115196,-3.122527,-3.1108222,-3.0570016,-3.1059,-3.1021237,-3.1542482,-3.1907043,-3.152539,-3.2000303,-3.2290468,-3.2101843,-3.211266,-3.2256827,-3.2594385,-3.3118362,-3.285298,-3.2489867,-3.2346754,-3.1768932,-3.1988316,-3.1923828,-3.2041457,-3.1907392,-3.157644,-3.1694708,-3.1812825,-3.2044945,-3.2191927,-3.1510687,-3.1306593,-3.1358762,-3.193059,-3.2202144,-3.2139835,-3.2128398,-3.1885934,-3.2158313,-3.222077,-3.2170806,-3.226788,-3.2275872,-3.2071404,-3.2413945,-3.2671146,-3.3101015,-3.339562,-3.3221078,-3.3093352,-3.3131695,-3.299674,-3.2811403,-3.2691076,-3.2546217,-3.2693918,-3.2791436,-3.2544007,-3.2545784,-3.2397642,-3.2278876,-3.181351,-3.1572032,-3.158776,-3.1970897,-3.2049813,-3.1978745,-3.2536077,-3.2705574,-3.285822,-3.2534246,-3.2537012,-3.2714014,-3.2833886,-3.2769938,-3.2891045,-3.2909002,-3.2794948,-3.261682,-3.2772677,-3.2350416,-3.1984377,-3.2194777,-3.2557817,-3.2856522,-3.2479074,-3.283049,-3.2681868,-3.2472725,-3.232309,-3.2483792,-3.2064133,-3.209435,-3.2124455,-3.238956,-3.2460544,-3.2456856,-3.3222194,-2.0942497,-2.900207,-2.9050896,-3.0252593,-3.1153185,-3.2010717,-3.2945375,-3.3108175,-3.3359342,-3.335639,-3.3339255,-3.3356934,-3.2076411,-3.266345,-3.2852182,-3.279972,-3.2977128,-3.3410358,-3.3964138,-3.4253569,-3.4131527,-3.3964376,-3.3722222,-3.4037025,-3.384724,-3.3955326,-3.405544,-3.3825629,-3.3712957,-3.351811,-3.3758245,-3.4247441,-3.3901463,-2.4052777,-2.7083793,-3.1977224,-3.3546858,-3.3043022,-3.3793197,-3.3737555,-3.3268237,-3.2231324,-3.251035,-3.2695277,-3.3028238,-3.347544,-3.368879,-3.3567495,-3.3752024,-3.416799,-3.3940604,-3.4095297,-3.4432628,-3.4370818,-3.4227366,-3.446463,-3.4404297,-3.3961716,-3.4397917,-3.4601429,-3.4267907,-3.599061,-3.4969795,-3.5128727,-3.4845688,-3.5345564,-3.5995212,-3.5876186,-3.568912,-3.5683606,-3.6404629,-3.6203475,-3.544702,-3.600327,-3.6217008,-3.6424282,-3.6353016,-3.6532052,-3.6894841,-3.6889803,-3.669036,-3.6764817,-3.7107544,-3.6676269,-3.7058797,-3.7352395,-3.758287,-3.573874,-3.7226057,-3.7478194,-3.7649474,-3.1610584,-1.2671833,-2.7056942,-2.8363867,-2.917933,-3.0170057,-3.0659273,-3.168869,-3.220632,-3.3301535,-3.3291621,-2.5368352,-3.217245,-3.223153,-3.2861571,-3.351618,-3.2062993,-3.386445,-3.3283737,-3.4382014,-3.3741322,-3.3377714,-3.3850508,-2.432794,-3.051301,-3.202351,-3.189209,-3.1445029,-3.1881123,-2.9642982,-2.629179,-2.9310417,-3.0067499,-3.092258,-3.1793852,-3.2172956,-3.2585304,-3.236917,-3.2399344,-3.249752,-3.250885,-3.2487898,-3.3046775,-3.3314023,-3.2886903,-3.239489,-3.3350387,-3.300729,-3.2812004,-3.2832217,-3.3783731,-3.4287605,-3.3869576,-3.2981396,-3.2512398,-3.2868655,-3.3736198,-3.4571848,-3.570712,-2.3939805,-3.0345173,-3.212639,-3.2683268,-3.1055005,-3.0661764,-3.179453,-3.310114,-3.3020618,-3.3752832,-3.0365467,-3.1455956,-3.1893148,-3.2457538,-3.3116417,-3.3809633,-3.3115318,-3.4382527,-3.3887663,-3.4147902,-3.465456,-3.5012193,-3.5194635,-3.5577633,-3.6168776,-3.6392727,-3.6378942,-3.730948,-3.7945504,-3.7431722,-3.773306,-3.8163133,-3.894041,-3.6042557,-3.6805592,-3.6561193,-3.6986232,-3.632143,-3.553005,-3.5863535,-3.5895963,-3.5150695
+-1.4846182,-2.1323276,-2.3272047,-2.437336,-2.4348547,-2.506362,-2.4328663,-2.2742789,-2.652126,-2.6803837,-2.6227684,-2.7193274,-2.7642393,-2.7508993,-2.6444654,-2.5466993,-2.606933,-2.6401796,-2.724523,-2.7666645,-2.7235553,-2.7562478,-2.7542973,-2.7212496,-2.6803496,-2.605298,-2.6499805,-2.6823192,-2.707738,-2.6863327,-2.7219963,-2.779001,-2.784768,-2.7975461,-2.8068342,-2.6424363,-2.6635587,-2.7211094,-2.7553968,-2.8161302,-2.8301983,-2.8273153,-2.8363068,-2.8603482,-2.8419352,-2.8145092,-2.8208628,-2.838773,-2.8660035,-2.8471303,-2.6919386,-2.6268065,-2.677376,-2.6886024,-2.703867,-2.743137,-2.7961187,-2.8035965,-2.8292496,-2.8441157,-2.8573346,-2.8647203,-2.8737702,-2.878401,-2.8585334,-2.8515015,-2.8650546,-2.8605995,-2.8519242,-2.838476,-2.823222,-2.8342924,-2.8185182,-2.7975526,-2.7910872,-2.8188062,-2.7825594,-2.8147855,-2.8141837,-2.8398414,-2.862801,-2.7976246,-2.8975744,-2.8851132,-2.8472898,-2.8078344,-2.8199835,-2.8407054,-2.8724692,-2.7723265,-2.8205369,-2.8171997,-2.7975624,-2.799055,-2.8162684,-2.7955937,-2.7808914,-2.7824628,-2.7859678,-2.7926493,-2.8187861,-2.7992382,-2.755226,-2.7721405,-2.798413,-2.8263848,-2.823721,-2.8188162,-2.7991314,-2.8058505,-2.805543,-2.8261218,-2.8356352,-2.816533,-2.783453,-2.8150492,-2.8245878,-2.8392863,-2.8414412,-2.7962265,-2.7735035,-2.7802172,-2.793385,-2.7893286,-2.7822661,-2.7722583,-2.7767916,-2.7691143,-2.770193,-2.7649045,-2.756246,-2.7368941,-2.752801,-2.7643025,-2.7773633,-2.7787652,-2.7849371,-2.8174553,-2.8098145,-2.7371874,-2.7838047,-2.782915,-2.7218359,-2.765476,-2.750504,-2.7632275,-2.7638073,-2.7345514,-2.7313619,-2.7059593,-2.7104726,-2.7139888,-2.7349489,-2.7313142,-2.7328424,-2.736863,-2.6614537,-2.6168537,-2.611685,-2.6607943,-2.7305598,-2.7135959,-2.7346172,-2.738072,-2.7373376,-2.6992579,-2.6183167,-2.5145578,-2.534391,-2.5875142,-2.5992625,-2.6904957,-2.5458574,-2.2719846,-2.7755299,-2.602766,-2.5688577,-2.588854,-2.5956833,-2.5694642,-2.67584,-2.710002,-2.7362053,-2.728241,-2.7090678,-2.4883528,-2.5884485,-2.5947657,-2.5095806,-2.471244,-2.5174801,-2.6312332,-2.6705408,-2.6877906,-2.6354103,-2.5286236,-2.6066797,-2.6218786,-2.6737266,-2.6778064,-2.6306615,-2.5583713,-2.468832,-2.4550335,-2.588585,-2.5246634,-2.631776,-2.3048844,-2.649386,-2.6443782,-2.672888,-2.6313689,-2.7019048,-2.7001038,-2.5083466,-2.5374868,-2.4905586,-2.5257115,-2.5967383,-2.587584,-2.5689769,-2.5436044,-2.5108848,-2.4702497,-2.4699097,-2.495154,-2.5298657,-2.4973354,-2.4629536,-2.4962482,-2.3889098,-2.303104,-2.2870724,-2.264615,-2.5577662,-2.4190607,-2.4469528,-2.4017963,-2.3032033,-2.3145604,-2.191657,-2.3447754,-2.3669443,-2.2718143,-2.276455,-2.3193564,-2.2670646,-2.271394,-2.299035,-2.343429,-2.3734212,-2.3374236,-2.386448,-2.447225,-2.4936562,-2.5237715,-2.5580688,-2.5581121,-2.5189645,-2.5471542,-2.353099,-2.2218313,-2.1976984,-2.2535563,-2.2647367,-0.41592246,-1.0344667,-1.0624788,-1.8497715,-1.9800353,-2.1436205,-2.282929,-2.4534316,-2.7464018,-2.9162683,-2.0262046,-2.6643753,-2.745494,-2.794491,-3.006651,-2.9286761,-2.8730538,-3.0097516,-3.130815,-3.1583858,-3.1918702,-3.1671603,-1.2776902,-1.7433362,-2.4037185,-2.452159,-2.3829122,-2.5414433,-2.0723617,-1.6881747,-1.0502365,-2.1762168,-1.248498,-2.1436048,-2.1490927,-2.1204371,-2.075646,-2.1042476,-2.2631862,-2.4825132,-2.6333404,-2.7532454,-2.8249216,-3.105961,-3.1242208,-3.0558572,-3.2545838,-3.3418384,-3.386279,-3.426527,-3.4380722,-3.4738884,-3.299078,-3.330814,-3.3360412,-3.2470155,-3.2792225,-3.3302927,-1.5952928,-2.4626992,-2.6566658,-2.8359237,-3.10633,-2.9409878,-2.8023515,-2.8545752,-3.0403552,-1.602942,-1.2236824,-2.228827,-2.4060936,-2.7254112,-2.9837732,-3.1631432,-3.018658,-2.9533086,-3.174601,-3.3100967,-3.388033,-3.4212995,-3.5184603,-3.5590057,-3.546772,-3.5737176,-3.5818846,-3.5718822,-3.5821173,-3.559401,-3.636056,-3.5971246,-3.5791388,-3.4082344,-3.3905716,-3.4863868,-3.4816072,-3.510722,-3.4453194,-3.4070504,-3.5490615,-3.4684277
+-0.7338541,-1.5111153,-1.7365248,-2.0506797,-2.175569,-2.2290814,-1.9460149,-2.1948504,-3.0873399,-3.0018983,-3.423741,-3.558595,-3.7107944,-3.8755698,-3.9102273,-3.784638,-3.7536788,-3.8082938,-3.9033775,-4.0135303,-4.0650973,-4.15455,-4.203867,-4.2523313,-4.229761,-4.26788,-4.35132,-4.2206874,-4.2952332,-4.3361826,-4.326985,-4.315031,-4.3221946,-4.4004426,-4.383147,-3.745788,-4.112978,-4.227964,-4.381608,-4.4230986,-4.425348,-4.448692,-4.488934,-4.5182533,-4.471075,-4.4778495,-4.473653,-4.4533443,-4.5136094,-4.5404067,-4.5515037,-4.5280876,-4.550518,-4.5599174,-4.533752,-4.52438,-4.55041,-4.5676465,-4.5450654,-4.5105333,-4.5669065,-4.5748205,-4.480903,-4.420819,-4.4227424,-4.4447107,-4.5149646,-4.580571,-4.575103,-4.542627,-4.6900053,-4.7289004,-4.7531934,-4.7883945,-4.7366967,-4.7180657,-4.7572856,-4.756743,-4.650657,-4.4349704,-4.3825183,-4.3256536,-4.657109,-4.751297,-4.641607,-4.702191,-4.7212296,-4.7252917,-4.783129,-4.7634006,-4.8295383,-4.8425407,-4.945574,-4.8793383,-4.793348,-4.7024264,-4.7789993,-4.761769,-4.7373953,-4.7453694,-4.7259917,-4.705664,-4.6852145,-4.675608,-4.6313314,-4.5873885,-4.601809,-4.676637,-4.7622104,-4.8120055,-4.805275,-4.784014,-4.7614036,-4.7264853,-4.753019,-4.8208942,-4.814379,-4.813603,-4.772532,-4.7186046,-4.727243,-4.6402254,-4.6910853,-4.8153253,-4.8471637,-4.8905253,-4.883145,-4.918882,-4.8708186,-4.8259416,-4.8334255,-4.9201007,-4.945889,-4.812007,-4.814505,-4.797354,-4.764016,-4.7664165,-4.75088,-4.7803125,-4.8359632,-4.8553534,-4.847631,-4.8685126,-4.9177327,-4.8581576,-4.847463,-4.884694,-4.918318,-4.8483634,-4.8351116,-4.7663665,-4.732266,-4.733532,-4.809296,-4.7753663,-4.774341,-4.78262,-4.8060117,-4.8105474,-4.8132105,-4.8934174,-4.820557,-4.8026266,-4.825659,-4.808306,-4.8556495,-4.859669,-4.7943406,-4.785286,-4.72936,-4.622441,-2.102809,-2.7635634,-3.641973,-3.6333265,-3.8189907,-4.0043006,-4.2456193,-4.2132535,-4.256882,-4.288584,-4.277317,-4.2403693,-4.2540584,-4.148807,-4.2793756,-4.339341,-4.275413,-4.308699,-4.4089456,-4.4211516,-4.4638577,-4.482182,-4.49223,-4.429077,-4.4309335,-4.446285,-4.4116306,-4.356137,-4.465264,-4.360638,-4.222914,-4.4180374,-4.4444737,-4.4779563,-4.4483204,-4.2715564,-4.277038,-4.3907933,-4.405197,-4.340613,-4.261866,-4.1427226,-4.221319,-4.262819,-4.2762647,-4.3533416,-4.3435616,-4.3134313,-4.316275,-4.290396,-4.226896,-4.2038283,-4.25923,-4.2997813,-4.4329433,-4.246485,-4.352983,-4.399056,-4.17221,-4.2566442,-4.4212813,-4.437013,-3.4425979,-3.8400793,-3.8928041,-3.8863091,-3.9889045,-4.2510543,-3.6899533,-3.7212205,-3.6520576,-3.6914647,-3.9352841,-3.847207,-3.6799111,-3.82649,-4.024625,-4.075681,-4.1249685,-4.0823574,-4.071073,-4.057737,-4.0563726,-4.062094,-4.0531564,-4.0466256,-4.177152,-2.3865914,-3.5831172,-3.3868666,-3.4175124,-3.6241255,-3.8057199,-2.3521984,-3.0979304,-2.7447686,-2.8076305,-2.9089775,-3.0027757,-3.2160587,-3.538186,-3.3220263,-3.9225636,-3.2888806,-3.2492368,-3.4205892,-3.5555828,-3.8291497,-3.9580188,-4.067023,-4.279983,-4.3082304,-4.248217,-4.1463485,-4.10321,-3.563446,-3.766748,-3.6794171,-3.6634655,-3.5883994,-3.6207175,-2.929872,-2.922782,-3.021866,-3.2704582,-2.874374,-2.9991136,-2.9698129,-2.864017,-2.8589618,-2.9300444,-2.8553567,-2.8604603,-2.9602885,-3.161841,-3.4263601,-3.6417918,-3.7226434,-3.761571,-3.8197923,-3.6959958,-4.1072717,-4.145019,-4.237062,-4.268254,-4.006301,-3.9166589,-3.9083362,-3.7513213,-3.7417006,-3.9525466,-2.4681544,-2.9826465,-3.307433,-3.568112,-3.8069243,-3.8656101,-3.9329891,-3.9119277,-3.1797976,-3.12072,-3.005848,-2.8900847,-3.0127587,-3.2343023,-3.5303903,-3.9971309,-4.0806546,-4.037707,-4.0013094,-4.0575023,-4.0710316,-4.0927567,-4.06152,-4.057245,-4.082827,-4.12637,-4.1063867,-4.0679574,-4.0781007,-4.098911,-4.1343727,-4.0476966,-3.920998,-3.7979798,-4.1467853,-4.220303,-4.20035,-4.195412,-4.1603665,-4.06827,-4.133341,-4.0896
+0.2589099,-0.39251274,-0.7604479,-0.912713,-1.0296395,-1.1909623,-1.5247638,-1.8239794,-1.9778113,-2.0111067,-2.0013037,-1.9128408,-1.9305289,-1.9575703,-1.9793682,-1.9888027,-1.9409564,-1.9302857,-1.9424663,-1.9727473,-2.0417695,-2.0706382,-2.100443,-2.1371245,-2.1480486,-2.127122,-2.160155,-2.2395296,-2.1782563,-2.2336528,-2.1790364,-2.1726413,-2.1734033,-2.1841178,-2.1935687,-2.38882,-2.3092537,-2.2370021,-2.1933336,-2.229278,-2.2400908,-2.2366366,-2.2273128,-2.2522328,-2.2568235,-2.2835073,-2.2629755,-2.2407384,-2.2311409,-2.2482767,-2.26614,-2.2407138,-2.2373831,-2.2667227,-2.2810473,-2.2911355,-2.3079295,-2.3021634,-2.2966933,-2.281308,-2.271466,-2.2689543,-2.248529,-2.2417908,-2.2328715,-2.2416754,-2.278069,-2.289981,-2.3033347,-2.280604,-2.2628899,-2.241785,-2.23524,-2.227487,-2.2528462,-2.2734141,-2.2911649,-2.2722712,-2.2547295,-2.1759384,-2.2192354,-2.1727057,-2.1313062,-2.1367316,-2.179023,-2.2064447,-2.2049232,-2.1668892,-2.1461136,-2.2005818,-2.1888127,-2.1897469,-2.1750124,-2.1833324,-2.2007513,-2.2218971,-2.2313905,-2.231388,-2.2278,-2.2160916,-2.2185555,-2.2303576,-2.2310596,-2.2277308,-2.21843,-2.2138734,-2.217927,-2.206638,-2.1933904,-2.1851785,-2.1834054,-2.168946,-2.161057,-2.1379774,-2.1158385,-2.1030197,-2.0873058,-2.077748,-2.0908542,-2.1058445,-2.1016316,-2.0651932,-2.0735784,-2.0722547,-2.0659628,-2.067175,-2.0938354,-2.118925,-2.1198177,-2.1103206,-2.11601,-2.1374712,-2.1421719,-2.1430998,-2.1378977,-2.1334786,-2.1309037,-2.1200752,-2.1147282,-2.126623,-2.1339254,-2.1531272,-2.1703017,-2.1692789,-2.1658683,-2.1747286,-2.1553476,-2.140829,-2.1609974,-2.1796293,-2.180273,-2.1635296,-2.1491046,-2.1384587,-2.124817,-2.136674,-2.164966,-2.1864328,-2.186593,-2.1533504,-2.142612,-2.1647115,-2.1915917,-2.1949248,-2.2131798,-2.1911397,-2.1995945,-2.2106757,-2.21381,-2.2117867,-2.214041,-2.4068823,-2.451714,-2.5831857,-2.5238087,-2.3951793,-2.379826,-2.34651,-2.3224704,-2.2653804,-2.236421,-2.2262735,-2.2176838,-2.2112432,-2.2208734,-2.2638173,-2.2895799,-2.2883778,-2.2821293,-2.2755005,-2.2505937,-2.2479348,-2.264425,-2.2705572,-2.2863598,-2.2954297,-2.299119,-2.3118033,-2.3186865,-2.3223813,-2.3204699,-2.3104873,-2.2815633,-2.2056746,-2.177703,-2.1753116,-2.1306138,-2.1618233,-2.1830187,-2.1797006,-2.1824903,-2.15566,-2.1366377,-2.1693203,-2.2129538,-2.2396994,-2.2193048,-2.1890728,-2.163578,-2.1688557,-2.1654396,-2.1502216,-2.1379206,-2.1104996,-2.0931978,-2.096115,-2.0824304,-2.0663176,-2.0714133,-2.0749934,-2.0760448,-2.0537133,-2.04879,-2.0241401,-2.0312543,-2.0423105,-2.0532942,-2.04817,-2.0305529,-2.018284,-2.0791242,-2.1187396,-2.057894,-2.0336375,-2.0615249,-2.0450704,-2.0701308,-2.0533004,-2.034039,-2.0258124,-2.0468557,-2.0588675,-2.0793645,-2.1032665,-2.117179,-2.1148286,-2.114223,-2.1093225,-2.090705,-2.2146153,-2.2800884,-2.3189332,-2.2727332,-2.200828,-2.1573524,-1.6824408,-2.184551,-2.061434,-2.4037657,-2.300241,-2.2415707,-2.2007225,-2.1251473,-2.2514043,-2.212241,-1.9780023,-2.2764728,-2.257853,-2.2493472,-2.283436,-2.3128495,-2.2587981,-2.2172136,-2.2127802,-2.2431848,-2.260202,-2.355934,-2.3106647,-2.4975557,-2.4243472,-2.3905785,-2.3794005,-2.3751187,-2.4326084,-2.2813468,-2.5926173,-2.464131,-2.5546484,-2.604756,-2.5548162,-2.526713,-2.5246038,-2.504699,-2.4979324,-2.4649656,-2.4672165,-2.4727697,-2.4658284,-2.4711404,-2.4970312,-2.4776092,-2.4722676,-2.5705774,-2.5769882,-2.5045624,-2.479509,-2.4605494,-2.52849,-2.5647297,-2.5485358,-2.5246859,-2.5027683,-2.3873582,-2.1659803,-2.5676923,-2.5602915,-2.5426946,-2.5546365,-2.5857499,-2.5721912,-2.5492697,-2.6273189,-2.6293359,-2.456933,-2.585361,-2.5637941,-2.529592,-2.510645,-2.50584,-2.564619,-2.5542355,-2.5378199,-2.523611,-2.5134356,-2.5226367,-2.5152953,-2.4977894,-2.4619215,-2.4691362,-2.4815574,-2.4732656,-2.4461708,-2.4445095,-2.4661162,-2.4905734,-2.5188212,-2.638599,-2.5284634,-2.5472221,-2.5378919,-2.5434935,-2.5345545,-2.5043545,-2.4839234,-2.5125384
+-0.55708855,-0.62337005,-0.60603637,-0.5445904,-0.49810344,-0.5316109,-0.56292504,-0.92010635,-1.2082796,-1.0343211,-0.87015396,-0.86688286,-0.7106177,-0.5463516,-0.41801614,-0.65457183,-0.869176,-1.2600138,-1.5952106,-1.8073392,-2.0643358,-2.0757368,-2.0205953,-2.174224,-2.4435954,-2.5964844,-2.4981015,-2.2241685,-2.0401063,-2.1912823,-2.4608107,-2.7256198,-2.9392283,-3.0189614,-2.7309103,-3.055855,-3.1962261,-3.3274004,-2.3771026,-2.8464026,-2.9316626,-2.324775,-2.3903933,-2.6618953,-2.6128867,-2.5027447,-2.7888374,-3.0346515,-2.5398884,-2.904429,-2.3532767,-2.379289,-2.563589,-2.7224789,-3.0678227,-3.1120496,-2.9835148,-2.835229,-2.6847372,-2.898016,-2.9344397,-2.9026628,-2.8014984,-3.0472178,-3.20961,-3.3172116,-3.393985,-3.3960056,-3.483059,-3.3752122,-2.913581,-3.0654666,-3.191296,-3.4054255,-3.2624419,-3.1000807,-2.8725038,-3.0853047,-2.8914838,-2.680357,-3.4398477,-3.3616009,-3.5534303,-3.5638003,-2.6967082,-2.9757352,-3.4582691,-3.6758907,-3.7582493,-3.7819953,-3.7884002,-3.7957864,-3.8086562,-3.7076602,-3.6638265,-3.4574423,-2.8932176,-3.5560904,-3.6271265,-3.212935,-3.622079,-3.4433131,-3.3511407,-3.2588382,-3.8178334,-3.120257,-3.1966643,-3.5584903,-3.9290514,-3.6237679,-3.8763576,-3.8964152,-3.7009645,-3.8580575,-4.058844,-4.231996,-3.9965377,-3.7326822,-4.1776466,-4.568784,-4.4307513,-4.5216117,-4.2558537,-4.2517066,-3.7410512,-4.233711,-4.448979,-4.032114,-3.6849198,-3.982079,-4.20966,-4.2097354,-4.2191353,-4.6667905,-4.7563043,-4.6933284,-4.568066,-4.7777424,-4.751238,-4.2306337,-4.223925,-4.5800233,-4.6829205,-4.4210744,-4.3007445,-4.3959613,-4.2903986,-4.526637,-4.5126023,-4.663471,-4.663316,-4.7612524,-4.8106656,-4.5453033,-4.3428063,-4.2648377,-4.378287,-4.299044,-4.0326037,-4.0711656,-3.6745114,-4.1626296,-4.2072005,-3.5540314,-3.9475436,-4.164255,-4.323866,-4.5357146,-4.528271,-4.188087,-3.876392,-4.20583,-4.1097593,-4.1738496,-3.5712407,-4.0424466,-4.399587,-4.394116,-4.4661045,-4.3295817,-4.4712443,-4.555948,-4.562137,-3.7378926,-4.2151837,-4.1984305,-4.064276,-3.8455195,-3.8011346,-2.844149,-2.86649,-3.0999427,-2.4244773,-1.8873897,-1.8958523,-1.9295101,-1.5868466,-1.6645215,-1.6837952,-1.6936259,-1.9144626,-1.964952,-1.7190161,-1.841332,-1.9189112,-1.9284806,-1.8087339,-1.7402911,-1.7358589,-1.8921237,-2.2131367,-2.4828792,-2.3303537,-1.7256546,-1.9169385,-1.9785655,-2.2677174,-2.6656451,-2.890529,-2.9007633,-2.933317,-3.0938303,-3.4513683,-3.6142113,-3.5358033,-3.576295,-3.5381153,-3.0502558,-2.6547947,-2.5251904,-2.3195772,-2.1256104,-2.1175833,-2.2390184,-2.313025,-2.5184078,-2.5023289,-2.6073732,-2.5805144,-2.6838298,-2.77174,-2.7377467,-2.7252884,-2.6351886,-2.694858,-2.7516222,-2.8131561,-2.9036264,-3.0208077,-3.1111093,-3.2503822,-3.2888465,-3.3301811,-3.3659039,-3.3449926,-3.351531,-3.2735043,-3.2530031,-3.3572364,-3.3712974,-3.118656,-3.126486,-3.036581,-3.1650195,-3.1290383,-3.060071,-3.1230822,-3.1571984,-3.2739825,-3.0758162,-3.0645387,-3.1347618,-3.1276107,-3.1580563,-3.1621532,-3.259891,-3.3629155,-3.3754172,-3.4196916,-3.3317103,-3.2679257,-3.2649107,-3.3122563,-3.3146338,-3.3865232,-3.278871,-3.2620568,-3.2078912,-3.123033,-3.0849206,-3.039176,-2.8777547,-2.9821799,-2.9783335,-3.0771928,-3.0506501,-3.0506701,-3.138332,-3.0763793,-3.0631764,-3.0604248,-2.926825,-2.8894904,-2.853969,-2.8645225,-2.9087071,-2.9308796,-2.9321685,-2.9748816,-3.1482353,-3.1266732,-3.262425,-3.3221185,-3.295894,-3.2053528,-3.0914752,-3.1913047,-3.0621486,-2.988492,-2.910819,-2.7375302,-2.8873186,-2.8431325,-2.978938,-3.0624804,-3.1135387,-3.1596146,-3.153573,-3.220344,-3.204042,-3.1215029,-3.2309566,-3.2784667,-3.3347068,-3.2557461,-3.2399006,-3.2034056,-3.1408644,-3.2908795,-3.2612205,-3.2770355,-3.3115923,-3.380318,-3.3389444,-3.3661885,-3.3879642,-3.3149428,-3.3255072,-3.193554,-3.090931,-3.1739793,-2.9224863,-3.132997,-3.0377104,-3.098989,-3.050683,-2.858726,-2.9170117,-2.8916934,-2.7786539,-2.670824,-2.5883222,-2.820705,-2.5663986,-2.5226402
+-1.2062943,-2.4733315,-3.3259404,-3.4671988,-2.9118266,-3.7140737,-3.965682,-4.093588,-4.130962,-4.134683,-4.0511274,-3.996263,-3.5855105,-3.1105623,-2.7564073,-4.0897336,-4.156258,-4.2601943,-4.3116045,-4.3336854,-4.4793735,-4.451535,-3.341764,-3.0369208,-4.327913,-3.4474916,-4.162221,-4.3449397,-4.2743373,-4.3215384,-4.330498,-4.3733063,-4.4313154,-4.48585,-4.46876,-3.800467,-4.450768,-4.2463355,-2.4354107,-4.2666183,-4.405938,-4.4388614,-3.672028,-4.4731803,-4.2877007,-4.1390095,-4.356523,-4.3922677,-2.7995832,-4.0740724,-3.8760033,-3.2822003,-3.3979793,-3.602912,-4.412486,-4.5653014,-4.6506557,-4.745417,-4.5798755,-4.423639,-4.7545776,-4.6915145,-4.625172,-4.500296,-4.503689,-4.594192,-4.468114,-4.437845,-4.3151336,-3.7872252,-4.551547,-4.400832,-4.2703815,-4.346761,-2.9909854,-4.2474713,-2.9510002,-4.313743,-4.5860686,-4.310734,-4.7566543,-3.7969017,-4.65046,-4.7823005,-2.7996929,-3.7584624,-4.7174354,-4.894413,-4.848416,-4.7971816,-4.7472663,-4.55854,-4.566104,-4.416243,-4.3237443,-4.3760715,-3.3728237,-4.3653016,-4.333204,-4.558804,-4.495791,-2.4320006,-4.267686,-4.29711,-4.7765336,-4.7681017,-4.0252156,-4.2069774,-4.7708325,-4.67714,-4.538387,-4.575889,-4.583606,-4.3169074,-4.3886256,-4.4478955,-4.457207,-4.41987,-4.40076,-4.3909917,-4.4330106,-4.2103972,-4.355878,-4.468424,-4.0661798,-4.328027,-4.484711,-4.4097686,-4.3394613,-4.193274,-4.213802,-2.908492,-4.5874534,-4.769232,-4.7816386,-4.7211866,-4.670981,-4.6308427,-4.5979514,-4.519513,-3.9577127,-4.6034694,-4.547793,-4.301547,-4.303229,-4.4223075,-4.3547654,-4.262013,-4.339027,-4.3096843,-4.4399667,-4.4955697,-4.468971,-4.3764358,-4.2462173,-3.8416343,-4.5060143,-4.232524,-3.8338938,-4.101937,-4.0650897,-4.511059,-4.8187366,-3.6274605,-4.2838025,-4.734985,-4.6777716,-4.7082305,-4.713924,-4.3707232,-3.8788962,-4.5415688,-4.7564106,-4.5985017,-3.3538504,-4.5285583,-4.7090707,-4.728499,-4.7885156,-4.730314,-4.6937284,-4.6802726,-4.6198087,-4.382806,-4.4047275,-4.4120855,-4.390199,-3.2310028,-3.9369226,-3.6474185,-4.0913587,-3.857089,-3.444035,-4.023456,-3.7770095,-3.6208143,-3.284844,-4.105643,-4.17047,-4.2463574,-4.3882775,-4.3291783,-4.2705927,-4.0269837,-4.092508,-4.308121,-4.3526597,-4.241668,-4.126741,-4.290763,-4.129806,-4.342702,-4.1380963,-3.4414468,-4.2476125,-4.3556085,-4.3808923,-4.406379,-4.3179355,-4.2761264,-4.136174,-4.1480603,-4.2370343,-4.301992,-4.254034,-4.244206,-4.1588244,-3.6439424,-3.5450733,-3.9348645,-3.8074536,-3.46623,-3.0437741,-2.742176,-2.3265002,-2.3058364,-2.2496831,-2.0492206,-1.9056926,-1.7721615,-1.9101875,-1.6835287,-1.7295952,-1.8353734,-1.6995354,-1.9053569,-1.9620595,-2.0389066,-2.3862998,-2.4836307,-2.6145942,-2.6047037,-2.7374773,-3.012661,-3.1898925,-3.2214012,-3.3267684,-3.4312983,-3.7046866,-3.504914,-3.554602,-3.5819032,-3.7095485,-3.7741323,-3.6445086,-3.5696952,-3.5758662,-3.6210508,-3.8007221,-3.6308298,-3.7532468,-3.7100196,-3.6518097,-3.6747513,-3.6228943,-3.8451533,-3.6988025,-3.720253,-3.73918,-3.7478118,-3.7120786,-3.6745987,-3.8691764,-3.6485872,-3.8519387,-3.7846575,-3.7454767,-3.7689095,-3.7464094,-3.7096257,-3.6515622,-3.579996,-3.4867854,-3.477638,-3.3080988,-3.4618247,-3.4024003,-3.4407344,-3.4661202,-3.6253953,-3.3841586,-3.4336376,-3.4498107,-3.36584,-3.3471537,-3.3848045,-3.481082,-3.5678623,-3.6777415,-3.5858324,-3.53073,-3.426083,-3.5448332,-3.5223668,-2.951823,-3.4058614,-2.9951437,-3.2889898,-3.360063,-3.3343034,-3.2976794,-3.4163556,-3.2878225,-2.9202158,-3.024203,-3.1359305,-3.270701,-3.1990876,-3.317299,-3.5470724,-3.485468,-3.6836112,-3.8237796,-3.8788233,-3.80451,-3.629061,-3.5184898,-3.497172,-3.5308912,-3.8067694,-3.8718185,-3.7505183,-3.5644236,-3.493143,-3.4277775,-3.224988,-3.1968775,-3.214222,-3.0057917,-2.8333952,-2.9920177,-3.134669,-3.0898783,-3.1180623,-2.8754654,-2.8661232,-2.9111643,-2.9063559,-2.9513998,-2.8635268,-2.7624044,-2.2751167,-2.3578658,-1.8916674,-1.7700012
+0.14950319,-0.2277947,-1.0728822,-1.7810907,-1.6858006,-1.8847461,-2.0721529,-2.1720529,-2.296565,-2.4806204,-2.5929441,-2.5512419,-2.3616762,-2.6944523,-2.8562572,-3.1960504,-3.1498137,-3.1514592,-3.198936,-3.2381482,-3.2120352,-3.2378335,-2.684291,-3.1268578,-3.3665419,-3.2523289,-3.49537,-3.4637954,-3.300431,-3.3629916,-3.4097366,-3.3424737,-3.273006,-3.1959338,-3.2299008,-2.5704727,-3.087766,-3.4330692,-3.4412444,-3.324835,-3.6214223,-3.5218897,-3.3878927,-3.3666544,-2.7146914,-3.4118023,-3.6763937,-3.5677123,-3.0155482,-3.16921,-3.2656574,-3.5518332,-3.6348717,-3.775651,-3.6735077,-3.7866554,-3.668256,-3.6531146,-3.6442637,-3.5477538,-3.5938778,-3.549406,-3.5452354,-3.4709473,-3.5015488,-3.473473,-3.5063,-3.5015855,-3.5682573,-3.483837,-3.504352,-3.4173193,-3.395928,-3.4470382,-3.4661102,-3.496151,-3.3674464,-3.3868911,-3.4160843,-3.401908,-3.4445047,-3.4644306,-3.4561515,-3.5753524,-3.516942,-3.5092618,-3.5571823,-3.5884852,-3.700933,-3.7292013,-3.7619557,-3.3573623,-3.8444672,-3.8243737,-3.7627897,-3.6916347,-3.6540222,-3.7354107,-3.816862,-3.8131685,-3.5951512,-3.6719942,-3.7702942,-3.7450528,-3.748509,-3.8198934,-3.783896,-3.792087,-3.8993053,-3.906425,-3.9260678,-3.9472718,-4.0003915,-3.9219527,-3.9359026,-3.9898295,-4.0114284,-4.0719576,-4.1100717,-4.096802,-4.122251,-4.1285663,-4.096114,-4.1098695,-4.080235,-4.036469,-4.0020084,-4.148186,-4.1923714,-4.176454,-4.1310782,-4.0707736,-4.123796,-4.114535,-4.160231,-4.0980015,-4.1940923,-4.1571493,-4.131628,-4.1589293,-4.2706904,-4.285128,-4.2916613,-4.2630286,-4.2353187,-4.224827,-4.228253,-4.2963667,-4.316934,-4.3225656,-4.282011,-4.1704154,-4.1138177,-3.9812222,-4.3167977,-4.345065,-4.0444784,-3.7676377,-4.2608337,-4.3186145,-4.279425,-4.250234,-4.2614465,-4.2967134,-3.8547359,-4.0494637,-1.9251189,-3.5704966,-3.6222377,-3.8126106,-3.9514928,-3.9867415,-4.027671,-3.4295576,-2.7836018,-2.94445,-3.3021984,-3.6835444,-3.9724126,-3.9605055,-4.066196,-4.1916523,-4.129889,-3.217671,-3.8626943,-3.0087519,-3.586721,-3.6974502,-4.011405,-4.1281476,-4.029591,-4.0394073,-4.1814322,-4.188926,-4.059556,-4.2009206,-3.683618,-3.5829842,-3.0501559,-3.0029383,-3.083383,-3.2704618,-3.3353953,-3.4111533,-3.6320436,-3.6627705,-3.5558333,-3.2770348,-3.6076257,-3.583727,-3.147428,-3.3682327,-3.3737192,-2.8846278,-3.2200317,-3.3542914,-3.4284382,-3.502943,-3.596982,-3.7575836,-3.8998399,-3.8948283,-3.9609513,-4.0241594,-4.0636168,-4.113609,-4.1579895,-4.2079177,-4.209744,-4.052932,-3.8297162,-3.6046658,-3.6408904,-3.8174148,-3.51093,-3.591415,-3.0390506,-3.0283132,-2.999553,-2.4863973,-2.1081338,-1.6555374,-1.8280344,-1.8148248,-1.4582896,-1.493752,-1.5992978,-1.2128389,-1.0359571,-1.4205658,-1.4781446,-1.3529291,-1.1370816,-1.5284224,-1.6194279,-1.894865,-2.1201122,-2.1123426,-2.082845,-2.3568993,-2.3129396,-2.282907,-2.2524369,-2.3697429,-2.6518002,-2.6481664,-2.6416361,-2.6090863,-2.7768764,-2.7363162,-2.6914134,-2.7996573,-2.779087,-2.8259895,-2.8298664,-2.7623582,-2.737174,-2.7428908,-2.7814908,-2.7435465,-2.777668,-2.707568,-2.691069,-2.3241162,-2.6252732,-2.4453104,-2.5187793,-2.6555843,-2.6937082,-2.7030852,-2.7124805,-2.6653805,-2.6767635,-2.76593,-2.819223,-3.0284793,-2.9538856,-2.99833,-3.061532,-2.9179277,-2.8331347,-2.818771,-2.8031037,-2.7840078,-2.8319855,-2.8798714,-2.9299273,-3.0029976,-3.0725272,-2.909986,-3.0660458,-2.9853344,-2.9388385,-2.887775,-2.6127846,-2.755841,-2.529944,-2.7093444,-2.7806401,-2.7643225,-2.7228324,-2.8205202,-2.8431544,-2.8629446,-2.8448493,-2.8746328,-2.823533,-2.699635,-2.9447458,-2.8542428,-2.7636776,-2.6924543,-2.8358624,-2.8420267,-2.8125691,-2.8221617,-2.7212179,-2.8181076,-2.8480942,-2.7562604,-2.7574615,-2.6973023,-2.7336774,-2.630641,-2.2016487,-2.3173969,-2.155054,-1.6488068,-1.072612,-1.088315,-0.9598779,-1.569565,-2.2302299,-2.765068,-2.7645693,-2.9218736,-2.8127332,-2.347689,-2.4200816,-2.3085184,-2.3174577,-2.3649065,-2.1017911,-2.1176133,-2.0804725
+-0.52707946,-1.2219005,-1.592792,-1.8294537,-1.9404259,-2.1072834,-2.2547998,-2.4073553,-2.5534887,-2.6016674,-2.9236474,-3.0645251,-2.9234996,-2.9748516,-3.0830789,-3.2012088,-3.2812104,-3.3375168,-3.4408681,-3.4998002,-3.7069526,-3.657197,-2.4118943,-3.1997437,-2.7760663,-3.3307266,-3.2292986,-3.1844423,-3.113089,-3.0185769,-3.1922219,-3.2348168,-3.2956777,-3.3092175,-3.3424053,-3.3185177,-3.2426548,-3.5122895,-3.5746963,-3.6518667,-3.7408466,-3.870706,-3.804285,-3.8395457,-2.883484,-3.672195,-3.828627,-3.734089,-3.7124338,-3.2438676,-3.755466,-3.8521247,-3.9196606,-3.805654,-3.1479273,-3.7521152,-3.669387,-3.8410149,-3.8634892,-3.7256026,-3.7392578,-3.8308873,-3.9240909,-3.8525014,-3.8574872,-3.9027224,-3.8175564,-3.5096004,-3.9706936,-4.0280647,-4.01372,-3.9073424,-3.6538255,-3.9308982,-4.1026683,-3.989986,-4.0628114,-4.0434976,-4.002773,-3.8756094,-3.8943148,-3.8304753,-3.7714896,-3.9193196,-3.9086509,-3.8499246,-3.8856902,-3.9165864,-3.9306774,-3.8533492,-3.6357133,-4.044605,-3.987433,-4.1075454,-4.020002,-3.9818835,-3.9240308,-3.9478545,-3.9530249,-3.9119859,-3.8972454,-3.8544765,-4.073354,-3.9678378,-3.8982015,-3.8970323,-3.9111962,-3.8962607,-3.8812175,-3.848269,-3.8415756,-3.7949848,-3.7684798,-3.7777,-3.7993226,-3.774962,-3.7804112,-3.770042,-3.752944,-3.7350173,-3.2212157,-3.9288645,-3.996418,-3.935266,-3.8152504,-3.7947907,-3.7515082,-3.775494,-3.736847,-3.703668,-3.7138186,-3.7090402,-3.7223983,-3.7411833,-3.7330127,-3.731039,-3.7056909,-3.6991525,-3.726297,-3.689412,-3.6496108,-3.6842818,-3.7036347,-3.672421,-3.6792824,-3.7084832,-3.7207265,-3.754983,-3.7744155,-3.7595134,-3.7486892,-3.7644024,-3.7325544,-3.7075381,-3.7073927,-3.7337723,-3.0486014,-3.6918612,-4.1231074,-4.0773106,-4.093349,-4.0054803,-3.9630623,-3.915646,-3.813867,-3.8029547,-3.7538958,-3.81321,-3.972793,-3.9587893,-3.8304114,-3.8377585,-3.7906537,-3.8405194,-2.051713,-2.9656818,-3.2289047,-3.4873424,-3.597621,-3.6828074,-3.7871366,-3.8136935,-3.6896057,-3.7741542,-3.8810334,-3.7684493,-3.6968207,-3.3514462,-3.54772,-3.7206035,-3.7859058,-3.814086,-3.840271,-3.8389025,-3.780375,-3.693255,-3.6729834,-3.7638779,-3.165399,-2.4824722,-3.1197605,-3.0344563,-3.0121794,-3.1403232,-3.308483,-3.3864632,-3.3756852,-3.2121406,-3.3851814,-3.496385,-3.3244214,-3.5845406,-3.3823414,-3.4733474,-3.4617314,-3.120669,-3.2077198,-3.3017116,-3.4357812,-3.4990144,-3.5198684,-3.5307014,-3.5250056,-3.532949,-3.5342484,-3.5470185,-3.570387,-3.6328526,-3.5699427,-3.5198412,-3.2150583,-2.8490272,-2.7960472,-2.959512,-2.5237813,-2.6141658,-2.3213134,-2.2598858,-2.2658179,-2.2738674,-1.9470611,-1.5162098,-1.522248,-1.4253209,-1.3981705,-1.3893781,-1.4010766,-1.4311314,-1.283148,-1.3705921,-1.3653636,-1.4496107,-1.2347841,-0.9834408,-1.3526013,-1.3565342,-1.4402647,-1.5921683,-1.7296131,-1.9285178,-1.7530491,-1.8770552,-2.1147835,-2.2774067,-2.6169763,-2.4653249,-2.5302157,-2.7218032,-2.5708187,-2.5475705,-2.431767,-2.45903,-2.5872574,-2.488883,-2.5591538,-2.49866,-2.478321,-2.5193958,-2.6418023,-2.6449203,-2.517551,-2.4251406,-2.5167828,-2.5853848,-2.536404,-2.7571402,-2.5912614,-2.4856923,-2.495504,-2.5265248,-2.5538623,-2.497675,-2.4246645,-2.6062925,-2.3592856,-2.5727105,-2.5298119,-2.7424426,-2.7528262,-2.6221519,-2.4780285,-2.487293,-2.4322844,-2.3825068,-2.3650377,-2.3665214,-2.3328757,-2.3423307,-2.3227994,-2.309461,-2.215898,-2.1148446,-2.4059706,-2.457028,-2.4917078,-2.4392595,-2.6265082,-2.3276706,-2.1996448,-2.256391,-2.2791753,-2.2523584,-2.361825,-2.2410393,-2.3388577,-2.277954,-2.2532067,-2.3679433,-2.499742,-2.2693393,-2.0519998,-1.9831815,-2.1147199,-2.0509229,-2.0293908,-2.0231895,-2.0220103,-2.0710642,-2.092266,-2.015193,-1.9100327,-2.1306367,-1.9229088,-1.8021138,-1.7843275,-1.6674664,-1.632565,-1.1708386,-1.051333,-0.6835254,-0.45926565,-1.0948951,-1.4683139,-1.9444463,-2.165884,-2.4030964,-2.8327212,-2.5971541,-2.4909353,-2.4445343,-2.3036332,-2.2725158,-2.173499,-2.0558343,-2.1497264
+-0.48490435,-1.1602778,-1.5423889,-1.7750826,-1.6789165,-1.8253045,-1.849721,-1.8585372,-2.0897253,-2.330945,-2.879954,-3.1768317,-3.290608,-3.2440035,-3.0095344,-3.1342244,-3.222156,-3.2697484,-3.265226,-3.2686214,-3.2413568,-3.2241292,-2.670823,-3.5721064,-2.5565548,-3.3056638,-3.5134606,-3.237525,-3.4252508,-3.637004,-3.496047,-3.690556,-3.8142705,-3.7995162,-3.6604643,-3.7252326,-3.282733,-3.4406877,-3.921568,-3.997415,-4.029749,-3.9671144,-3.8034258,-3.6992087,-3.6426625,-3.5864007,-3.7903428,-3.9365096,-4.006734,-3.3034232,-3.857266,-3.9551091,-3.945416,-3.674262,-3.94872,-4.0076966,-4.1047606,-4.0715957,-4.1242766,-3.9236393,-3.6955657,-3.6648872,-3.644939,-3.7201848,-3.7040977,-3.72327,-3.7712307,-3.7328014,-3.7918878,-3.8540878,-3.774581,-3.7669597,-2.8243203,-3.8630238,-4.0659976,-3.9836116,-3.8486848,-3.7196512,-3.5730438,-3.6351917,-3.6422377,-3.6438189,-3.7955136,-3.778566,-3.812007,-3.8866034,-3.9093175,-3.9207172,-3.8883467,-3.8505964,-3.9331508,-4.003123,-3.6757534,-3.9458613,-3.9051752,-3.904717,-3.8970556,-3.9506717,-3.900292,-3.9100833,-3.8541036,-3.9313626,-3.971044,-3.9584117,-3.9761033,-3.9672236,-3.901794,-3.9606175,-3.9224057,-3.9206128,-3.9159374,-3.9439893,-3.8735828,-3.975905,-4.0156574,-4.0464535,-3.9853745,-4.0046134,-4.0245657,-4.061067,-3.8736129,-3.6937337,-4.0046983,-4.027235,-4.066351,-4.174305,-3.9888315,-3.1792164,-3.8737135,-4.0251293,-3.9868956,-4.1017385,-4.1132917,-4.0990815,-4.1158137,-4.1402407,-3.9636621,-4.0831814,-4.0476346,-4.081571,-4.1133566,-4.1640725,-4.150884,-4.094665,-4.055947,-4.1095414,-4.2322187,-4.1575317,-4.1692433,-4.129872,-4.197557,-4.0872097,-4.041488,-4.0109386,-4.0068274,-4.070563,-4.115762,-4.162364,-4.2017775,-4.190986,-4.128157,-4.1906643,-4.228169,-4.105065,-4.081361,-3.125119,-3.8418808,-3.9766717,-4.0371118,-4.06698,-3.9798055,-3.959228,-3.9616723,-4.0383363,-1.9522119,-3.037219,-3.289677,-3.5633368,-3.662536,-3.6958308,-3.678709,-3.732335,-3.3880513,-3.7100906,-3.760355,-3.7775502,-3.8768597,-3.8635802,-3.860907,-3.8729825,-3.8383584,-3.8081985,-3.823874,-3.830155,-3.9612966,-3.9944263,-3.8652692,-4.054944,-4.0139437,-2.6764922,-3.774732,-3.7293124,-3.692319,-3.7591834,-3.8211107,-3.8347812,-3.9401116,-3.9248953,-3.93924,-3.8959346,-4.075771,-3.7373004,-3.911477,-3.3856115,-3.9832788,-3.8431644,-3.846962,-3.9596944,-4.0548267,-4.0863347,-4.1066375,-4.111414,-4.1057034,-4.117329,-4.119347,-4.110444,-4.1274066,-4.101288,-4.0596647,-4.128633,-3.8155365,-3.3691702,-3.436244,-3.832415,-3.6737359,-3.7263246,-3.3679872,-3.3941905,-3.0791826,-3.0651433,-3.2961974,-2.8899937,-2.9145234,-2.7632499,-2.9452744,-2.9206064,-2.687265,-2.918273,-3.2444944,-2.635426,-2.513484,-2.4836798,-2.7783992,-2.5450156,-2.1051755,-2.5173495,-2.4437892,-2.2739878,-2.5898561,-2.106605,-2.0695446,-1.9512911,-1.9736867,-2.275244,-2.2946463,-2.1116135,-2.080274,-1.5612562,-1.7600722,-1.8108261,-1.8366554,-2.032907,-2.0877295,-2.1165748,-2.2419019,-2.2318647,-2.2248094,-2.1881022,-2.1355557,-2.0869422,-2.2076366,-2.141641,-1.9428325,-1.855876,-2.12255,-1.8885832,-2.4454305,-2.4359288,-2.463241,-2.4314127,-2.4627664,-2.429977,-2.3172543,-2.1739326,-2.4385831,-2.319327,-2.425693,-2.5016708,-2.5965276,-2.5419555,-2.5755348,-2.6467495,-2.6518738,-2.5300505,-2.4594188,-2.267887,-2.0920525,-2.0969977,-2.1155949,-1.9514856,-2.0114605,-1.7583957,-1.6872602,-1.7669826,-1.3590853,-1.4351575,-1.5030081,-1.6713247,-1.5418489,-1.4782038,-1.4505544,-1.5014052,-1.6649363,-1.7038474,-1.7608385,-1.8901122,-1.8763046,-1.8735371,-1.9436119,-1.8309712,-1.7656012,-1.8352346,-1.8816042,-2.0235147,-1.8583956,-1.736542,-1.7245402,-1.7371337,-1.9274595,-2.054245,-2.0361362,-1.9832428,-2.0039992,-2.2828355,-2.5770593,-2.800986,-2.9446745,-3.2128706,-3.3903131,-3.45266,-3.4971864,-3.4743757,-3.6037438,-3.6147366,-3.6578927,-3.5513678,-3.6107216,-3.5823898,-3.2673235,-3.576196,-3.3490908,-3.480112,-3.4681554,-3.0552397,-3.1751814
+-0.45882285,-1.0711296,-1.755882,-2.1351087,-2.321453,-2.3673701,-2.4234278,-2.4585686,-2.5571938,-2.971303,-3.369112,-3.615378,-3.5842443,-3.5055487,-3.0773206,-3.4124174,-3.4562953,-3.4812472,-3.5051162,-3.4848294,-3.4818075,-3.3794231,-3.0324316,-3.71061,-2.9095662,-3.5358787,-3.033411,-3.3499987,-3.5188663,-3.7091289,-3.9103336,-3.9474406,-3.8824563,-3.7958236,-3.8254533,-4.023769,-3.6654012,-3.1807055,-3.9323897,-4.1452603,-4.043224,-3.9814868,-3.9084392,-3.8785558,-3.8926349,-3.5544615,-3.6262345,-4.0987353,-4.1094356,-3.750548,-3.896225,-3.8683515,-3.830648,-3.8365874,-3.715166,-3.7264314,-3.6786911,-3.6442876,-3.7491393,-3.6108432,-3.5481925,-3.5187607,-3.58843,-3.496622,-3.4623933,-3.4508328,-3.4880714,-3.5348628,-3.5841525,-3.59153,-3.4449885,-2.6909776,-3.2553964,-4.0267396,-4.0827155,-3.8904867,-3.7555213,-3.5952847,-3.5046728,-3.4874923,-3.4763515,-3.5054636,-3.4963322,-3.5709844,-3.58754,-3.572056,-3.5877085,-3.606106,-3.6145716,-3.667194,-3.2829733,-3.5651755,-3.747592,-3.9567876,-3.8935747,-3.7570033,-3.7146478,-3.684161,-3.6332915,-3.6172466,-3.6483877,-3.6577125,-3.6833835,-3.6671045,-3.6798286,-3.6695905,-3.6806164,-3.6694841,-3.6817122,-3.6953874,-3.7109485,-3.7223754,-3.722568,-3.7110534,-3.728929,-3.760696,-3.7799735,-3.7165637,-3.6809778,-3.699911,-3.7880397,-3.848844,-3.8345842,-3.854754,-2.9060016,-3.2615879,-3.7122493,-3.68777,-3.8968902,-3.948565,-3.8099103,-3.7621107,-3.7871695,-3.6740327,-3.6251721,-3.594485,-3.6100705,-3.565879,-3.508563,-3.4369369,-3.5319033,-3.52359,-3.539546,-3.6502314,-3.7230353,-3.6709604,-3.6054804,-3.6135285,-3.6963754,-3.689659,-3.581184,-3.5897613,-3.5061955,-3.4993753,-3.5052478,-3.4963517,-3.4991498,-3.675554,-3.723744,-3.705625,-3.725646,-3.70546,-3.7144008,-3.626533,-3.6050532,-3.5755076,-3.6368873,-3.8227835,-3.7132268,-3.7211356,-3.6819358,-3.6065056,-3.5698667,-3.5914915,-2.2995903,-3.31989,-3.4582076,-3.3318803,-3.345818,-3.3950386,-3.322865,-3.4405634,-3.4449377,-3.3929875,-3.2730756,-3.4787688,-3.5274882,-3.5464253,-3.490322,-3.4684155,-3.3950167,-3.4367545,-3.3740802,-3.297725,-3.4013565,-3.4442077,-3.2599618,-3.2646232,-3.2703047,-3.329014,-3.5932345,-3.5204487,-3.5277514,-3.4821367,-3.4211497,-3.3429546,-2.7215235,-3.5838637,-3.6442099,-3.5866346,-2.453994,-3.459757,-3.4345818,-3.0378752,-3.7493758,-3.6787655,-3.715302,-3.7744694,-3.830646,-3.8513637,-3.818893,-3.8346548,-3.8456988,-3.8542972,-3.863872,-3.869389,-3.8442454,-3.8469577,-3.8089547,-3.8044047,-3.354669,-3.0836096,-3.3953323,-3.519675,-3.0990212,-3.2585444,-3.2753592,-3.2327433,-3.286664,-3.2299786,-3.2571871,-2.9246943,-2.7570453,-2.6442552,-2.8493116,-2.697455,-2.5931804,-2.9608226,-3.102869,-2.8868742,-2.6719503,-2.8333902,-3.220551,-3.1648593,-3.0853715,-3.090633,-3.0017688,-3.1571789,-3.0158992,-1.4257965,-1.8929989,-1.8708007,-1.9939044,-2.247631,-2.313087,-2.2111764,-2.1997564,-1.8727102,-2.024356,-1.976764,-1.9990852,-1.984055,-1.9826112,-1.9193139,-2.0277162,-2.0390983,-1.9096255,-1.9612312,-1.9876766,-1.7772231,-2.056256,-1.7532997,-1.741229,-1.5897443,-1.9050777,-1.807929,-1.8736267,-2.094067,-2.0176163,-1.8821099,-1.9155688,-1.8583376,-1.7378535,-1.5777965,-1.8880622,-1.9195828,-1.680866,-1.8288407,-2.4346638,-2.3957582,-2.536555,-2.5423799,-2.380684,-2.0673385,-1.8322413,-1.8360581,-1.8383694,-1.8266232,-1.9419122,-1.830687,-1.8868942,-1.5852673,-1.6481774,-1.6318169,-1.2963986,-1.1056097,-1.156316,-1.27635,-1.2110317,-1.2511775,-1.3007054,-1.4955623,-1.6168365,-1.6226783,-1.8086972,-1.7980356,-1.7043061,-1.8248069,-2.0297608,-2.079242,-2.0436835,-2.1599727,-2.0478349,-2.188748,-2.1873116,-1.9786661,-1.9995608,-1.9223535,-1.7368553,-2.221445,-2.1296084,-2.0834217,-1.9874325,-1.8191125,-1.7278752,-1.8587408,-1.9400702,-2.4883804,-3.0573785,-3.3799677,-3.4666367,-3.4281857,-3.5177612,-3.479347,-3.3616,-3.4256806,-3.22818,-3.6364408,-2.9939828,-3.3454814,-3.2655916,-3.4052,-3.3511138,-2.9817832,-3.2900465
+-0.19285476,-0.38398904,-0.5755022,-0.6878641,-0.79982656,-0.91387326,-1.0140395,-0.97830623,-1.0797346,-1.7343445,-2.1572256,-2.2888567,-2.396658,-2.5146818,-2.5560224,-2.6034937,-2.591491,-2.646236,-2.6605873,-2.694545,-2.8062801,-2.9823632,-2.9516783,-2.9658868,-1.8967237,-2.2983303,-2.549571,-2.4489627,-2.506238,-1.8925841,-2.3854175,-2.3736248,-2.4135115,-2.391716,-2.5679955,-2.7175026,-2.0194051,-2.357037,-2.6375558,-2.665709,-2.6782753,-2.7720962,-2.9031196,-3.0364814,-3.0857868,-3.0967412,-3.0980055,-3.100326,-3.201064,-3.4243846,-3.4729285,-3.4686017,-3.488597,-3.5011213,-3.4716897,-3.470998,-3.4901762,-3.5894823,-3.6242344,-3.6042588,-3.5975132,-3.6794791,-3.7121024,-3.7183475,-3.7302961,-3.7674136,-3.8062768,-3.7762184,-3.7768316,-3.8105116,-3.8518772,-1.8770924,-2.9912052,-3.168224,-3.3281462,-3.4681435,-3.588922,-3.6709714,-3.7312713,-3.7811065,-3.8023849,-3.8552155,-3.8580346,-3.9047837,-3.9138246,-3.9104362,-3.933168,-3.9505115,-3.939025,-3.8636422,-3.482036,-3.5211945,-1.955873,-2.943186,-3.1281343,-3.3565483,-3.5530505,-3.6687326,-3.745049,-3.8195329,-3.8329206,-3.827989,-3.8604279,-3.8831115,-3.8979192,-3.9166474,-3.9225783,-3.9401793,-3.932591,-3.944497,-3.9642205,-3.96494,-3.9708567,-3.9881568,-3.991116,-3.9928308,-4.00259,-4.0006614,-3.969709,-3.7099547,-3.8124819,-2.8083377,-2.2958155,-3.1399398,-3.212743,-2.9375408,-2.8554072,-3.1336331,-3.3498895,-3.5679708,-3.749724,-3.819641,-3.883326,-3.9203725,-3.9737458,-4.0200496,-4.0162096,-4.0790114,-4.0818954,-4.066803,-4.036228,-4.0594125,-4.062572,-2.7650023,-2.2096767,-3.0077953,-3.1334863,-3.3529232,-3.2756948,-3.3707395,-3.4703722,-3.5629067,-3.5971122,-3.6581829,-2.3479035,-3.2878456,-3.5096955,-3.5968852,-3.646543,-3.7467518,-3.742288,-3.764789,-3.8467278,-3.8726873,-3.9078403,-3.9237146,-3.845573,-3.8327117,-3.8543477,-3.8653507,-3.8866534,-3.9098582,-3.9041114,-3.6352103,-3.7688508,-3.7451625,-3.765184,-3.8138843,-3.8048387,-3.8016381,-3.7829442,-3.7234173,-3.6890807,-3.7920127,-3.8643923,-3.6857328,-3.6782544,-3.7178836,-3.6661355,-3.6649811,-3.743363,-3.6833963,-3.7293391,-3.795473,-3.7040715,-3.732614,-3.8292508,-3.8965034,-3.9093976,-3.878193,-3.675629,-3.62471,-3.5906997,-3.6435316,-3.6820226,-3.7179341,-1.7645681,-3.1082106,-3.0645685,-3.1702003,-3.3612046,-3.4030116,-3.497145,-3.558854,-3.4373379,-3.2592764,-3.2966928,-3.3234625,-3.3037653,-3.3003507,-3.297041,-3.2957947,-3.2664657,-3.256315,-3.243686,-3.2715101,-3.273674,-3.259734,-3.2572722,-3.4002028,-3.2264137,-3.0053768,-3.269176,-3.4033422,-3.3023033,-3.2593412,-3.243077,-3.2019343,-3.2316213,-3.2980013,-3.1365554,-2.9868593,-2.8735409,-2.7883048,-2.9000242,-2.8549676,-2.7140443,-2.8851252,-3.0516696,-3.0911336,-2.9343154,-2.9383593,-3.1655374,-3.1683552,-3.2209344,-3.19621,-3.1606302,-3.179953,-3.2065225,-2.1624875,-2.8054004,-2.3275895,-2.267296,-2.4837017,-2.6600518,-2.3638582,-2.4930296,-1.3195326,-1.8698506,-1.6986017,-1.7618384,-1.8801541,-1.9196908,-1.9523327,-1.9269137,-1.9635932,-2.0470676,-2.1012955,-2.2546215,-2.5108047,-2.0618446,-2.1331882,-2.4656498,-2.6412435,-2.8086982,-2.9264946,-2.917904,-2.3917384,-2.53529,-2.3804598,-2.2288065,-2.0978525,-2.0737755,-2.0035791,-1.9637527,-1.2523408,-1.8130584,-1.0491109,-1.5879908,-1.583766,-1.6403592,-1.5962582,-1.582953,-1.5516725,-1.5182481,-1.5210636,-1.5472679,-1.5603921,-1.5710359,-1.5721779,-1.600483,-1.7458045,-2.0383525,-2.3756783,-2.4305277,-2.5046766,-2.4661903,-2.5599017,-2.3388882,-2.1817997,-2.1544347,-2.2147446,-2.1452954,-2.214727,-2.262352,-2.271081,-2.351653,-2.5961032,-2.5880861,-2.4589558,-2.2233622,-2.2389934,-2.4162517,-2.5234556,-2.3825994,-2.3672094,-2.3710964,-2.4753933,-2.790648,-2.8029027,-2.8477008,-2.8032413,-2.8612733,-2.9632149,-3.013795,-3.0848823,-3.1296225,-3.1592631,-3.2443414,-3.3115985,-3.2841454,-3.3357866,-3.4392648,-3.5073047,-3.6455088,-3.5973694,-3.470303,-3.4655766,-2.8473403,-3.1420214,-2.3077073,-2.4356968,-2.7307472,-2.2947745,-2.3699665
+-1.0620751,-2.032445,-2.3481376,-2.613645,-2.8311424,-3.0351,-3.1443353,-2.6093807,-1.45449,-1.8266685,-2.8338816,-3.2759967,-3.4878027,-3.4862316,-3.6109228,-3.6563773,-3.7581491,-3.8515344,-3.924522,-3.960053,-4.045424,-4.0875864,-4.078423,-4.2228065,-4.1041107,-4.186589,-4.1995206,-0.93140596,-2.6802487,-2.480927,-2.8681545,-3.3443093,-3.4924734,-3.6207988,-3.696735,-3.1440449,-3.0166678,-3.4839206,-3.6583319,-3.714807,-3.8441138,-4.0333796,-4.2077246,-4.221957,-4.2172513,-4.266405,-4.214896,-4.2824993,-4.245104,-4.1500373,-4.128219,-4.195495,-4.22422,-4.1893077,-4.2203646,-4.2176356,-4.206278,-4.223044,-4.2347307,-4.266861,-4.3109183,-4.3273425,-4.3595624,-4.349503,-4.371905,-4.348223,-4.3292265,-4.3220425,-4.3192153,-4.2744174,-4.2385907,-4.173542,-4.216512,-4.233664,-4.2407136,-4.215897,-4.19144,-4.2173867,-4.2566686,-4.3356414,-4.3211837,-4.3030624,-4.2827816,-4.290252,-4.300241,-4.3170977,-4.327387,-4.3213906,-4.2859206,-4.2674446,-4.1543937,-3.2138076,-3.9741492,-4.4400053,-4.509708,-4.5176735,-4.4829235,-4.431468,-4.400474,-4.383143,-4.3430867,-4.3898787,-4.376618,-4.37514,-4.370065,-4.3632956,-4.3312826,-4.3213654,-4.2712846,-4.255254,-4.271252,-4.298035,-4.303034,-4.313186,-4.2911334,-4.274899,-4.286203,-4.1316466,-4.2495527,-4.3207994,-4.118604,-4.130403,-3.293961,-4.261873,-4.40962,-1.9711237,-3.678356,-3.918756,-4.0482373,-4.2589717,-4.3478246,-4.296762,-4.398857,-4.496326,-4.5820436,-4.6419487,-4.5840564,-4.603007,-4.5666575,-4.5672145,-4.587051,-4.5525365,-4.4803734,-4.4689794,-2.0444212,-3.73412,-3.899961,-4.0462513,-4.1069984,-4.247243,-4.399339,-4.5183773,-4.5118117,-4.3085523,-4.399542,-4.4109483,-4.3839216,-4.409929,-4.4168735,-4.3855357,-4.3443007,-4.392629,-4.473554,-4.381038,-4.3229446,-4.2651086,-4.2741656,-4.3728404,-4.3967366,-4.4085608,-4.425552,-4.409632,-4.277363,-3.499917,-3.8159804,-4.434436,-4.5249176,-4.5827136,-4.583752,-4.573506,-4.5306096,-4.4835443,-4.4798985,-4.423087,-4.3484397,-4.3320146,-4.439897,-4.390273,-4.4664197,-4.5068736,-4.4667172,-4.436457,-4.3732514,-4.3183455,-4.35772,-4.3511376,-4.3324704,-4.2680435,-4.216795,-4.203054,-4.303024,-4.4585433,-4.4730453,-4.43047,-4.3644414,-4.289841,-2.9693072,-3.1399436,-3.870645,-3.9676375,-3.9706082,-3.9806418,-3.9940019,-3.9920702,-4.079574,-4.2631097,-4.3107657,-4.2527347,-4.177142,-4.2117352,-4.2416253,-4.285734,-4.291454,-4.291472,-4.2993608,-4.270398,-4.2922864,-4.3141193,-4.291018,-4.1618266,-4.3491454,-4.427465,-4.4545217,-4.0853176,-2.1457524,-3.4355292,-3.7524934,-3.94565,-3.991918,-4.0282397,-3.6384785,-3.7386498,-4.0171027,-4.0493174,-4.0565095,-4.111911,-4.057205,-4.0646224,-4.0781713,-4.0417256,-4.056028,-4.0326004,-4.061791,-4.059212,-4.011743,-4.030603,-4.080108,-4.072529,-3.904533,-3.5955694,-4.0087833,-4.0023665,-3.9337072,-4.0008125,-4.0755467,-1.2436621,-3.2419705,-2.4734998,-3.2327175,-3.6535568,-3.782987,-3.8299727,-3.8493428,-3.9017253,-2.9288003,-3.280743,-3.4973016,-3.6547494,-3.7214437,-3.6792817,-3.8909678,-3.8937364,-3.9373422,-3.8700004,-3.7858086,-3.724132,-3.7865496,-3.3342404,-3.1939983,-3.5424519,-3.839447,-3.8402367,-3.9110851,-2.422833,-2.675829,-2.8021107,-2.3396041,-2.509386,-3.0103412,-3.3534007,-3.39377,-3.3456283,-3.318155,-3.3972137,-3.5135627,-3.5974193,-3.6465998,-3.7484431,-3.7805872,-3.677791,-3.8170004,-3.6540003,-3.564263,-3.7129917,-3.7915545,-3.729734,-3.719462,-3.309434,-3.8492227,-3.9340878,-3.9915376,-3.9795413,-3.773131,-2.6447394,-1.9060671,-3.0475054,-3.2835445,-3.4908314,-3.713863,-3.7461715,-3.7968936,-3.7331996,-3.5988874,-2.6897907,-3.507081,-3.6602747,-3.7673287,-3.7285743,-3.6079206,-3.7869115,-3.9631262,-3.9593267,-3.9698033,-3.9964128,-4.011494,-4.042913,-4.10596,-4.102561,-4.082806,-4.114913,-4.207514,-4.2124615,-4.2547264,-4.261642,-4.2330613,-4.24312,-4.23805,-4.477586,-4.3245926,-4.4539876,-4.3522487,-4.434176,-4.4791093,-4.3662353,-3.5690074
+-1.4175165,-1.9279101,-2.2070262,-2.4390926,-2.6026888,-2.6563082,-2.9194875,-2.0261087,-2.3854864,-2.5084624,-3.114388,-3.4547606,-3.6287723,-3.7272944,-3.704062,-3.6741838,-3.7701707,-3.8892865,-4.010566,-4.1226983,-4.1734467,-4.2469535,-4.2999196,-4.3067465,-4.420716,-4.3953834,-4.5065007,-3.3265295,-3.935965,-4.0040445,-4.047682,-4.0919003,-4.162271,-4.3032036,-4.278319,-4.269255,-3.6447697,-4.203904,-4.2857985,-4.335057,-4.349766,-4.36916,-4.445727,-4.475871,-4.500091,-4.5003114,-4.5387235,-4.4619136,-4.522262,-4.5165873,-4.5251055,-4.5238347,-4.548556,-4.5575557,-4.55924,-4.552168,-4.5708876,-4.5890555,-4.5824327,-4.5777574,-4.570026,-4.576325,-4.5720396,-4.5554647,-4.5449004,-4.5764594,-4.6294713,-4.6544514,-4.6566386,-4.6405187,-4.561897,-4.498698,-4.5303693,-4.6446633,-4.6662045,-4.661947,-4.6705813,-4.6744294,-4.6650195,-4.568849,-4.469175,-4.524055,-4.6277733,-4.6225753,-4.6477637,-4.644072,-4.614512,-4.534729,-4.5185485,-4.4869,-4.316737,-3.4552233,-4.399793,-4.5622334,-4.64836,-4.7304325,-4.745937,-4.733259,-4.702602,-4.7187366,-4.7292976,-4.726516,-4.734505,-4.7341127,-4.6922307,-4.6955156,-4.69649,-4.6729007,-4.5773654,-4.5257707,-4.520187,-4.4812355,-4.513905,-4.5330358,-4.4412646,-4.420695,-4.4394336,-4.4282727,-4.4208674,-4.3925223,-3.6517642,-4.345725,-4.432965,-3.8647742,-4.3821244,-3.820169,-4.2874155,-4.4283566,-4.5951724,-4.721309,-4.6374865,-4.473576,-4.381802,-4.4678397,-4.563006,-4.623138,-4.57848,-4.6448107,-4.625428,-4.63613,-3.7308822,-4.4498158,-4.4084835,-4.3679547,-3.5141335,-4.337764,-4.418267,-4.433168,-2.550406,-3.9846044,-4.186954,-4.380364,-4.413102,-4.356124,-4.288569,-4.417804,-4.520495,-4.5718236,-4.6034417,-4.4393244,-4.405498,-4.4647555,-4.5785336,-4.579946,-4.573945,-4.549814,-4.617379,-4.589089,-4.599364,-4.6150517,-4.6156077,-4.563135,-3.7824707,-4.1215167,-4.024852,-4.394906,-4.4505534,-4.466417,-4.5207753,-4.3962855,-4.129755,-4.289001,-4.314495,-4.3088546,-4.2886314,-4.418037,-4.453038,-4.488105,-4.4689364,-4.4246182,-4.4687395,-4.4958115,-4.3756776,-4.3476014,-4.360503,-4.3942094,-4.3895063,-4.3814936,-4.392995,-4.365378,-4.352135,-4.3710628,-4.3235164,-4.3650393,-4.3342566,-4.3090425,-4.3463902,-3.2674417,-4.11204,-4.0806384,-4.129732,-4.1670766,-4.144171,-4.1619124,-4.1995387,-4.2088733,-4.206615,-4.253884,-4.2650857,-4.207047,-4.198693,-4.2183194,-4.1833124,-4.1970587,-4.1992183,-4.196896,-4.228417,-4.2147436,-4.1748652,-4.1848826,-4.2122407,-4.2649283,-4.2611804,-4.277901,-3.5588856,-4.124394,-4.081059,-4.1435804,-4.1880884,-4.148373,-4.229252,-4.2339993,-4.287765,-4.2647867,-4.266251,-4.23544,-4.187482,-4.2280974,-4.2145133,-4.2386575,-4.244991,-4.255457,-4.2067585,-4.1767797,-4.1696153,-4.166826,-4.1476808,-4.1301312,-4.098738,-4.042269,-4.1209826,-4.1763606,-4.184332,-4.2022815,-3.4034035,-1.9752607,-3.5594153,-3.5176902,-4.016578,-4.138004,-4.14545,-4.1747265,-4.1970153,-4.208301,-3.6743758,-3.3304458,-4.141069,-4.3724227,-4.424187,-4.4381995,-4.434155,-4.318873,-4.3084903,-4.2768874,-4.295515,-4.23033,-4.270953,-4.268424,-4.131902,-4.1705613,-4.135227,-4.1173043,-4.106297,-3.1772091,-3.843841,-3.541783,-3.9269776,-3.8444915,-4.083591,-4.112991,-4.1156564,-4.116679,-4.14852,-4.168881,-4.17238,-4.1534553,-4.0948653,-4.0331984,-3.9611926,-3.9338756,-3.9280763,-3.866921,-3.842928,-3.8679442,-3.8927817,-3.7704387,-3.775796,-3.8587117,-3.8692236,-3.8929205,-3.8962913,-3.8964324,-3.8879485,-2.1776721,-3.3064513,-3.8600245,-3.928391,-3.8956265,-3.870564,-3.8972654,-3.9213252,-3.896182,-3.8989673,-2.925539,-3.7316508,-3.7678075,-3.8098936,-3.7443337,-3.7480445,-3.8038468,-3.8488898,-3.8781009,-3.943387,-3.9829974,-4.0341763,-4.0837073,-4.125564,-4.1616893,-4.1740794,-4.215772,-4.235645,-4.2417083,-4.2604537,-4.3202224,-4.294929,-4.3220687,-4.24315,-4.3981724,-4.4194236,-4.2946267,-4.41651,-4.2745967,-4.264152,-4.387475,-4.352264
+-1.282532,-1.8125899,-2.0519466,-2.311278,-2.4522133,-2.539621,-2.7365434,-2.5262418,-2.912085,-2.612523,-2.9693108,-3.1352391,-3.346705,-3.5202827,-3.51909,-3.4949,-3.5306277,-3.5716188,-3.5753982,-3.5962694,-3.6183043,-3.66676,-3.701045,-3.6979766,-3.7493215,-3.784608,-3.8547769,-3.8550038,-3.889338,-3.8349595,-3.7723403,-3.80614,-3.7736368,-3.761828,-3.8145437,-3.8340178,-3.8596578,-3.8806682,-3.8770156,-3.8450236,-3.8185296,-3.7929492,-3.770609,-3.771696,-3.835167,-3.857882,-3.7074466,-3.1087918,-3.6733813,-3.8214002,-3.9326043,-3.956399,-3.9881139,-4.005468,-4.0161076,-4.04198,-4.048056,-4.035599,-4.0157037,-3.9775834,-3.9667025,-3.9382348,-3.9385767,-3.8927689,-3.7663078,-3.7788014,-3.854156,-3.9665437,-3.9837675,-3.9577475,-3.93257,-3.8983665,-3.9606519,-4.0260587,-4.0132957,-4.0294757,-4.019411,-4.019024,-3.980167,-3.787887,-3.7579064,-3.858667,-3.982225,-3.9931412,-3.9989424,-4.002624,-4.0009284,-3.9893513,-3.9863167,-3.935001,-3.8392253,-3.8548112,-3.8892493,-3.9720316,-3.9972625,-3.9910746,-4.0307274,-3.9943075,-3.978088,-3.991899,-4.010327,-3.9654465,-4.005179,-4.012997,-3.9847698,-3.9917507,-3.965835,-3.9383454,-3.9298825,-3.9557796,-3.9565864,-3.933679,-3.9563642,-3.9262738,-3.893211,-3.8772526,-3.899737,-3.912301,-3.929647,-3.898961,-2.7452562,-3.7196908,-3.8757873,-3.928618,-3.9846168,-4.0050797,-4.0087852,-4.009846,-4.045154,-4.037046,-3.9870543,-3.9340806,-3.7212973,-3.8992639,-3.962637,-3.98209,-3.9732394,-4.0204215,-4.0241747,-3.9864764,-3.999754,-4.0251493,-3.6388836,-3.852428,-3.9323087,-3.9667134,-3.9547248,-3.9704952,-3.945344,-3.9845386,-3.9929352,-3.9544406,-3.944521,-3.9301486,-3.9498487,-3.9906774,-3.961155,-3.9752927,-3.9692168,-3.9685473,-3.9420638,-3.977881,-3.9885092,-3.96841,-3.9517674,-3.9806676,-4.019337,-3.9245849,-3.8986497,-3.9351873,-3.914937,-3.9362159,-3.1159515,-3.7278008,-3.8529596,-3.9732113,-3.912397,-3.9073653,-3.9427428,-3.9453912,-3.9657836,-3.9367576,-3.9306536,-3.927073,-3.931272,-3.9577355,-3.9375997,-4.006055,-3.9774728,-3.8716073,-3.86629,-3.9179692,-3.908177,-3.9474053,-3.9685931,-3.9132428,-3.8757606,-3.9282832,-3.9810042,-4.01185,-4.0429144,-3.9762635,-3.8833022,-3.8561082,-3.858945,-3.9075933,-3.9068875,-3.4792542,-3.8067112,-3.8002267,-3.8203635,-3.8321948,-3.8726125,-3.9580836,-3.930756,-3.8769827,-3.8718934,-3.8835764,-3.9376874,-3.8768883,-3.8561168,-3.8327937,-3.781601,-3.8028355,-3.822209,-3.8281074,-3.8308601,-3.8162866,-3.7873998,-3.7617402,-3.8536224,-3.8446689,-3.7892404,-3.6527205,-3.8727875,-3.8498044,-3.8304172,-3.7942472,-3.7815204,-3.7562723,-3.8086157,-3.4990244,-3.6749804,-3.6234765,-3.66682,-3.5040789,-3.6632626,-3.682117,-3.6857827,-3.767755,-3.7661352,-3.7291045,-3.7088184,-3.7037368,-3.725676,-3.7286139,-3.7233858,-3.7037559,-3.6389184,-3.634099,-3.7477818,-3.6690907,-3.663151,-3.6723456,-3.5207639,-1.1793091,-3.3001137,-2.8876874,-3.5592332,-3.6177135,-3.629253,-3.630216,-3.6470053,-3.719771,-3.3652692,-2.9124255,-3.6989608,-3.8696022,-3.8808613,-3.8611732,-3.8475804,-3.7402153,-3.7559915,-3.804781,-3.7763858,-3.7068782,-3.7362013,-3.685964,-3.6775079,-3.7182736,-3.706092,-3.6780074,-3.7177086,-3.6306453,-3.416161,-2.7866893,-3.4161966,-3.3472335,-3.5694032,-3.6260405,-3.5843966,-3.6002324,-3.6861026,-3.7155237,-3.6934528,-3.7071471,-3.7154055,-3.7052245,-3.7290955,-3.7650886,-3.7456136,-3.7496858,-3.7426353,-3.794735,-3.7540116,-3.7323785,-3.7334561,-3.6448312,-3.73067,-3.769896,-3.7683158,-3.8140326,-3.706913,-1.6472361,-2.88914,-3.406827,-3.5106213,-3.6038985,-3.527473,-3.5519094,-3.596907,-3.595677,-3.0286698,-2.7151814,-3.2694974,-3.3670206,-3.4689245,-3.536933,-3.5727105,-3.6349015,-2.9487836,-3.4252775,-3.552012,-3.6595445,-3.7207766,-3.7895813,-3.8228774,-3.838077,-3.8386827,-3.9158635,-3.9034991,-3.9356642,-3.9251084,-3.9286704,-4.021571,-4.0297856,-3.6403039,-4.0022454,-4.022855,-4.052367,-4.085193,-3.993672,-3.9869695,-4.0295005,-3.9866366
+-1.2670634,-1.8428586,-2.034038,-2.1338956,-2.1919236,-2.2709603,-2.2655025,-1.6897626,-2.118454,-1.3176174,-1.7729149,-2.0111995,-2.0853503,-2.1598701,-2.1761534,-2.1373856,-2.1748104,-2.2505248,-2.3211231,-2.384262,-2.3715227,-2.3899703,-2.3743126,-2.415202,-2.4068122,-2.3576088,-2.344627,-2.3345833,-2.3485763,-2.3322134,-2.3773663,-2.3557782,-2.3962882,-2.440243,-2.400657,-2.2460117,-2.3674672,-2.4004254,-2.3740816,-2.3676457,-2.3853366,-2.4439301,-2.4729846,-2.4695263,-2.4606042,-2.4659457,-2.4257994,-2.225646,-2.372365,-2.4154816,-2.449572,-2.478078,-2.4809475,-2.4717016,-2.481564,-2.4908383,-2.47749,-2.45092,-2.4474697,-2.4541445,-2.4625678,-2.457664,-2.4842713,-2.5149612,-2.5598567,-2.5949981,-2.5923052,-2.5616574,-2.54499,-2.5472283,-2.525081,-2.528666,-2.5191674,-2.5417151,-2.547451,-2.5352762,-2.547926,-2.556439,-2.5660977,-2.6583414,-2.7040935,-2.670555,-2.6540122,-2.643712,-2.6197925,-2.61652,-2.640942,-2.6757226,-2.6770554,-2.6328516,-2.6787314,-2.6553864,-2.6208637,-2.6276248,-2.642416,-2.6435695,-2.6336558,-2.6110175,-2.607686,-2.6245832,-2.628026,-2.6402931,-2.626383,-2.6197927,-2.6356215,-2.6506827,-2.6469474,-2.64474,-2.6537743,-2.6601214,-2.6642194,-2.6940265,-2.6879244,-2.6741254,-2.6098106,-2.6098232,-2.6549737,-2.6560204,-2.653142,-2.5956783,-2.4964817,-2.5577927,-2.5693986,-2.5725722,-2.5124831,-2.6143427,-2.633679,-2.596452,-2.607224,-2.612826,-2.5844653,-2.5688615,-2.594078,-2.6265218,-2.5983791,-2.5905333,-2.5612607,-2.6142044,-2.60437,-2.589097,-2.5913153,-2.5436618,-2.5268817,-2.594195,-2.592349,-2.626333,-2.5999303,-2.5837746,-2.619779,-2.6210124,-2.6548,-2.667358,-2.6236176,-2.516317,-2.5748842,-2.5858443,-2.6163855,-2.6188707,-2.596171,-2.5311868,-2.589386,-2.59835,-2.641827,-2.6138225,-2.5985994,-2.5811772,-2.6065028,-2.6229086,-2.5987678,-2.5908012,-2.5834754,-2.3787842,-1.991817,-1.9298389,-2.3757837,-2.4467816,-2.4952788,-2.5280504,-2.480916,-2.5631304,-2.5417352,-2.4447346,-2.531784,-2.4759512,-2.4683769,-2.519854,-2.544065,-2.4918227,-2.5065436,-2.5273728,-2.5880725,-2.4778235,-2.443582,-2.4440222,-2.4481432,-2.4894824,-2.4911287,-2.4550362,-2.4616797,-2.4885476,-2.479576,-2.5026224,-2.3995821,-2.5385342,-2.544189,-2.4622462,-2.435892,-2.4675155,-2.456108,-2.4704266,-2.4397764,-2.4830534,-2.45022,-2.4900243,-2.4826527,-2.4722364,-2.4708052,-2.4981225,-2.497877,-2.4624672,-2.4492621,-2.476622,-2.4993582,-2.4846635,-2.4825964,-2.488822,-2.4663813,-2.4846613,-2.4930496,-2.4440377,-2.445818,-2.3831863,-2.404375,-2.4183695,-2.453022,-2.412926,-2.4202662,-2.4048986,-2.380086,-2.4195387,-2.4201596,-2.4004128,-2.3973393,-2.296672,-2.301866,-2.2485275,-2.332393,-2.271966,-2.3427482,-2.405843,-2.4161484,-2.4031339,-2.4033422,-2.42017,-2.4267015,-2.4359317,-2.4330966,-2.4296536,-2.4149027,-2.462659,-2.4418488,-2.275168,-2.2551227,-2.299072,-2.326198,-1.6652682,-1.8874416,-1.4615362,-1.7752948,-1.9879651,-2.1598551,-2.2878003,-2.377649,-2.435747,-2.2008033,-1.7743542,-1.9635072,-2.2638645,-2.3934433,-2.4884453,-2.520694,-2.4914193,-2.564886,-2.5883646,-2.6214628,-2.627727,-2.6384156,-2.667828,-2.020726,-2.469901,-2.5241196,-2.5082848,-2.4926522,-2.3275104,-2.3953881,-2.2265687,-2.49574,-2.5676465,-2.4771345,-2.4378953,-2.3910584,-2.3964372,-2.3514528,-2.4121137,-2.499792,-2.5374482,-2.5668936,-2.5952675,-2.637219,-2.668194,-2.6755834,-2.7136407,-2.7533822,-2.7394528,-2.7198472,-2.7155695,-2.7072463,-2.2224069,-2.668784,-2.6770272,-2.6645079,-2.6669989,-2.6574595,-1.6346819,-1.5165801,-2.1641316,-2.3797278,-2.4498658,-2.5586765,-2.5315619,-2.541137,-2.6260915,-2.6403399,-2.4009967,-2.6424198,-2.6489801,-2.662755,-2.6878366,-2.747198,-2.7321284,-2.7065992,-2.7434564,-2.801801,-2.848711,-2.8833601,-2.9101164,-2.9245803,-2.9328136,-2.9394135,-2.9280307,-2.9790437,-2.9628038,-2.9810448,-3.006122,-2.944255,-2.9414935,-2.887593,-2.9163222,-2.9303682,-2.922986,-2.9497845,-2.9082294,-2.9225018,-3.006761,-2.9570646
+-0.7659628,-1.4208536,-1.9500263,-2.226934,-2.513472,-2.8444724,-2.92918,-2.8364894,-3.093199,-3.3295157,-3.2336984,-3.3975525,-3.5204704,-3.6138015,-3.58652,-3.7090821,-3.7740722,-3.8708458,-3.946682,-3.9251895,-3.962854,-3.9427333,-3.9068112,-3.9221306,-3.893355,-3.9108624,-3.9522152,-3.8614683,-3.9526873,-3.9241414,-3.891138,-4.009785,-4.068075,-4.0434976,-3.9892612,-3.9424553,-3.906674,-3.885487,-3.9667158,-4.012584,-4.033068,-4.1339,-4.159964,-4.0621724,-3.9990506,-3.9501395,-3.9354868,-3.9792233,-4.055831,-4.03671,-4.0753016,-4.013037,-4.0053973,-4.0096784,-4.031468,-4.048884,-4.1151137,-4.0808454,-4.047293,-4.009216,-4.020673,-4.099601,-4.1814895,-4.2170014,-4.1972446,-4.155088,-4.1683135,-4.18343,-4.180766,-4.2258515,-4.183168,-4.159076,-4.144115,-4.139111,-4.172256,-4.174285,-4.219888,-4.2618737,-4.3413424,-4.3045163,-4.4562874,-4.2707534,-4.22432,-4.260387,-4.262672,-4.2781014,-4.361505,-4.395743,-4.364142,-4.392348,-4.305969,-4.3287053,-4.341621,-4.352656,-4.34049,-4.3001447,-4.281197,-4.3048205,-4.3449903,-4.3198867,-4.318232,-4.3055305,-4.2719846,-4.319719,-4.33726,-4.303282,-4.3004947,-4.2713766,-4.3035135,-4.340244,-4.3529925,-4.3701334,-4.385387,-4.3884068,-4.335001,-4.2833138,-4.3041167,-4.2611585,-4.213138,-4.188971,-4.2014275,-4.189584,-4.198007,-4.196076,-4.203319,-4.2155666,-4.268207,-4.3341827,-4.3921857,-4.367697,-4.3958464,-4.354251,-4.3017783,-4.2989097,-4.273008,-4.268434,-4.330541,-4.3442683,-4.3647637,-4.3337293,-4.276718,-4.284831,-4.3465743,-4.380075,-4.354628,-4.3882966,-4.4264936,-4.3988695,-4.3366156,-4.377445,-4.4721684,-4.5039515,-4.523232,-4.419618,-4.4411087,-4.4043984,-4.3713403,-4.363009,-4.446612,-4.4159274,-4.3928638,-4.5307527,-4.6322904,-4.586592,-4.4774094,-4.3940263,-4.4338126,-4.5798693,-4.529112,-4.570401,-4.6748548,-4.123077,-4.322726,-4.1280212,-4.4860744,-4.714687,-4.788075,-4.993599,-4.8976197,-4.8077064,-4.9034295,-4.958513,-4.8823934,-4.8488374,-4.858652,-4.7659574,-4.7354846,-4.74336,-4.763534,-4.801718,-4.8979483,-4.8858366,-4.8798566,-4.8012414,-4.8048368,-4.8065214,-4.866791,-4.765251,-4.716002,-4.688391,-4.729689,-4.757467,-4.8711815,-4.9488397,-4.831579,-4.7789454,-4.7300057,-4.6076503,-4.754953,-4.815206,-4.7505183,-4.6634297,-4.6341944,-4.6050773,-4.664522,-4.668445,-4.7614036,-4.841869,-4.8855147,-4.8918204,-4.877933,-4.889623,-4.882613,-4.882172,-4.881435,-4.8663664,-4.8850617,-4.9143996,-4.936711,-4.8384404,-4.710748,-4.6781106,-4.72059,-4.6479087,-4.4730306,-4.5742226,-4.586368,-4.6257105,-4.6654468,-4.698483,-4.546299,-4.536136,-4.5382223,-4.580515,-4.616263,-4.228463,-4.5542274,-4.5268683,-4.628435,-4.527185,-4.4981127,-4.5078034,-4.57065,-4.603875,-4.550455,-4.571548,-4.5820394,-4.637261,-4.625285,-4.244313,-4.4392495,-4.409595,-4.441018,-4.4784465,-3.2788954,-3.423472,-4.1100726,-3.8840404,-4.1671786,-4.208912,-4.111901,-4.1876235,-4.248404,-4.334669,-4.258753,-4.032414,-4.1683354,-4.209211,-4.3185234,-4.3260436,-4.2904263,-4.312969,-4.4822145,-4.483355,-4.336302,-4.356474,-4.376915,-4.261539,-2.131292,-4.013714,-4.3543506,-4.42196,-4.460732,-4.3280916,-4.230373,-4.085533,-4.2082334,-4.159179,-4.0264597,-4.068937,-4.0316873,-4.046081,-3.993033,-4.038477,-4.149902,-4.2793803,-4.3583317,-4.302395,-4.28624,-4.2927856,-4.324653,-4.2326484,-4.315109,-4.375548,-4.419622,-4.4812694,-4.3072677,-4.1869006,-3.3328433,-4.1888957,-4.1740227,-4.3344064,-4.0961127,-2.4163184,-3.4939394,-4.096556,-4.293162,-4.487022,-4.387832,-4.205538,-4.2331715,-4.1012797,-4.0515976,-3.9545636,-4.0222707,-4.083236,-4.240577,-4.2659554,-4.208676,-4.151354,-4.2053323,-4.3564277,-4.4783792,-4.535987,-4.5635343,-4.6188865,-4.6159334,-4.639997,-4.653488,-4.6114135,-4.611526,-4.570017,-4.6409955,-4.5723605,-4.3584914,-4.318501,-4.222139,-4.4011393,-4.5137515,-4.4494376,-4.3849297,-4.4126782,-4.482032,-4.4488406,-4.2850003
+-0.75466377,-1.870018,-2.510383,-2.7251945,-2.46643,-3.3851247,-3.5983143,-3.6510587,-3.7216306,-3.5651867,-3.805603,-3.8979936,-3.74398,-3.7914348,-3.2334528,-3.9600759,-4.056538,-4.11548,-4.234341,-4.2359085,-4.1672306,-4.0994,-2.75065,-3.5104089,-3.503221,-3.6911707,-3.7498012,-3.6292977,-3.7835193,-3.8565435,-4.0146937,-4.138506,-4.2838006,-4.3627152,-3.900607,-4.0490184,-4.3766904,-4.3514123,-2.448186,-3.5465918,-3.914824,-3.3480306,-3.7045684,-4.07519,-4.149825,-4.112555,-4.2238035,-4.2969346,-2.8320854,-3.6437545,-3.279841,-3.3352628,-3.3645968,-3.291391,-3.6531386,-3.8786716,-4.1163583,-4.2797794,-4.2734714,-3.8904605,-4.2238965,-4.368156,-4.3198333,-4.3529906,-4.4418545,-4.296781,-4.2813783,-4.304185,-4.0584836,-3.9128432,-4.0556617,-3.6444454,-4.2883134,-4.472548,-3.9205618,-4.4033375,-3.7781434,-4.3861938,-4.1862397,-3.640644,-4.485437,-4.1395683,-4.4106383,-4.3550515,-3.782662,-3.6059773,-3.8287063,-4.2669015,-4.36603,-4.0541945,-3.257147,-3.846023,-4.457646,-4.5867343,-4.5575423,-4.4773583,-3.3264408,-3.9916997,-4.373943,-3.972279,-4.394956,-3.2996116,-3.4441757,-3.3924332,-3.6632318,-3.366989,-3.3422027,-3.762392,-3.9415884,-4.137069,-4.5309577,-4.696288,-3.4444742,-3.8136258,-4.468664,-4.418194,-3.3556414,-3.473559,-3.612798,-3.7695575,-4.1912875,-4.4322944,-4.542564,-4.6294775,-2.858133,-3.9456954,-4.4627624,-4.07287,-3.5346851,-3.3253765,-3.7014036,-3.9730225,-4.0096054,-3.758285,-4.4244766,-4.342529,-3.596466,-4.4559193,-4.2601056,-3.4406972,-3.8987288,-4.4922924,-4.569341,-4.5614953,-4.020885,-4.233417,-3.5852907,-3.8768287,-4.317398,-4.2924747,-4.3150454,-3.4593081,-4.2058225,-4.317237,-4.32665,-4.3259587,-4.276524,-4.2517366,-4.326713,-4.351792,-4.123836,-3.9782453,-4.3009534,-2.7020264,-3.6650264,-4.0768127,-4.22685,-4.179021,-4.222316,-4.1913476,-4.230233,-4.228847,-4.274151,-4.115813,-2.742255,-3.5804627,-4.077583,-4.2213798,-4.2653403,-4.200336,-4.1290126,-4.0467315,-4.017233,-4.014866,-4.1414022,-4.0691094,-4.035162,-3.961,-4.0388393,-3.2337146,-3.4249344,-3.6916485,-2.7474556,-2.7977784,-2.2042778,-2.2029839,-2.0046866,-2.552076,-3.0243864,-3.2010467,-3.29879,-3.484859,-3.4898798,-3.592735,-3.6693144,-3.6488922,-3.6616096,-3.673427,-3.717245,-3.6889596,-3.0400748,-3.3845503,-3.5963302,-3.2456834,-3.4625936,-3.6462693,-3.8325047,-3.9072523,-3.9299326,-3.9924178,-3.92907,-3.9927897,-4.009109,-3.9440255,-3.9429975,-4.037365,-4.0449595,-3.9808254,-3.5386739,-3.66398,-3.4791956,-3.3009596,-3.099094,-3.191378,-3.1271973,-3.0749729,-2.8709884,-2.8772273,-2.9094496,-2.8821576,-2.9347405,-2.8243551,-2.8324435,-2.785758,-2.6720877,-2.6604223,-2.5154963,-2.361105,-2.1926637,-2.2779136,-2.300407,-2.2705827,-2.1858764,-2.042135,-2.1494718,-2.1717782,-2.3585541,-2.4295847,-2.4233687,-2.311995,-2.4267855,-2.4766817,-2.4184203,-2.3219547,-2.3890707,-2.3717918,-2.263454,-1.8221309,-1.8448567,-2.1375551,-2.142835,-2.1986425,-2.1259296,-2.1011205,-2.1872277,-1.9101384,-2.0761673,-2.155063,-2.2596302,-2.3264263,-2.2161968,-2.3574688,-2.4749658,-2.2257762,-2.4618864,-2.7231202,-2.7046604,-2.6674874,-2.577672,-2.3801968,-2.3220892,-1.9611804,-1.8782928,-1.7160335,-1.8316455,-1.8750153,-1.9472809,-1.793756,-1.929182,-1.9583516,-2.0370176,-1.9593573,-1.8121305,-1.7026079,-1.8780355,-2.026793,-2.0005765,-1.87483,-2.0579183,-1.9006512,-1.834065,-1.9407783,-2.149262,-2.2373319,-1.9678855,-1.4944706,-1.8085082,-1.8637447,-1.7218122,-1.5560834,-1.2644103,-0.95058507,-1.0299404,-1.0375896,-0.77288896,-0.91903573,-0.7394423,-0.8874139,-1.051513,-1.1939507,-1.3302827,-1.3313386,-1.3891943,-1.382463,-1.433027,-1.2004855,-1.0316992,-0.93297035,-1.0739665,-1.152775,-1.1734748,-1.2881148,-1.4642258,-1.4234681,-1.4480593,-1.3936441,-1.3062346,-1.0596735,-0.7011718,-0.7241053,-0.90009457,-0.61543334,-0.543281,-0.8147295,-0.8206293,-0.65582865,-0.20647883,-0.049521893,0.21206711,0.43643427,0.94218117,0.9802856,0.6860117,-0.15794122,-0.9506739
+-0.33151537,-0.18401831,-0.5332133,-1.092525,-1.1529913,-1.5147142,-1.4722719,-2.2861862,-2.6152554,-2.8366861,-3.014949,-3.107871,-2.5682259,-2.717248,-2.5875611,-2.9542153,-3.1479783,-3.1857598,-3.3166716,-3.5646,-3.7131371,-3.8372407,-3.0360956,-3.216361,-3.5300364,-3.0978312,-2.9997094,-3.196496,-2.9033828,-2.5040467,-3.1597009,-3.2496517,-3.4826913,-3.7620168,-3.9604244,-3.793991,-3.9987245,-4.002344,-2.9763055,-3.1772408,-3.5410318,-3.799502,-3.5538583,-3.8989396,-3.4040465,-3.8489947,-3.8202128,-3.644154,-2.8597808,-3.3429966,-3.250264,-3.3636427,-3.4253087,-3.4406476,-3.5119812,-3.7851386,-3.5425987,-3.7960095,-3.8559456,-3.6153092,-3.9474525,-4.0246615,-3.962295,-3.861741,-3.6849139,-4.0894217,-4.0860963,-3.8953,-4.151941,-3.7645268,-4.3460674,-3.8962855,-4.341266,-4.3204885,-3.2803776,-4.3419986,-3.3126585,-3.838151,-3.6492426,-3.8411517,-4.4152102,-4.3403373,-4.248056,-4.3622003,-3.8865156,-4.135341,-4.2924733,-4.2948837,-4.350797,-4.281771,-4.1050305,-4.248306,-4.201573,-4.156324,-4.0309396,-4.128766,-4.0163875,-4.178499,-4.320703,-4.261234,-3.3061748,-3.0497434,-4.003904,-3.6613662,-4.337482,-4.387185,-4.2720556,-4.367021,-4.4538913,-4.4173336,-3.8297973,-4.520491,-4.6737466,-4.2221885,-4.3951764,-4.3554473,-4.412938,-4.369024,-4.422978,-4.35195,-4.4676385,-4.2552752,-4.273003,-4.491698,-4.133351,-4.27093,-4.5264535,-4.2576747,-4.6612124,-4.495961,-4.0932,-4.1733475,-4.68588,-4.6304283,-4.6600857,-4.717406,-4.677644,-4.6565404,-4.6549892,-4.549192,-4.294861,-4.436781,-4.5423684,-4.360534,-4.2764673,-4.3460956,-4.320671,-4.335132,-4.3643312,-4.3543315,-4.5096936,-4.686924,-4.7351656,-4.603498,-4.454661,-4.3647757,-4.3788486,-2.7958138,-4.4307323,-4.229309,-4.360513,-4.3910823,-4.678454,-4.7214293,-4.4637504,-4.3366838,-4.455043,-4.352096,-4.4514327,-4.485673,-3.7774873,-4.3321753,-4.676885,-3.938293,-4.1060467,-3.900363,-4.3403835,-4.4593225,-4.54175,-4.738811,-4.8473086,-4.867553,-4.8087354,-4.9179096,-4.567948,-3.3444438,-3.6099606,-3.8446622,-3.9105334,-3.8587646,-4.297407,-4.3093634,-4.215637,-3.9376235,-3.5411658,-3.7624717,-3.2277822,-3.966354,-3.5237076,-3.728839,-3.9167352,-3.4781857,-3.5343819,-3.6436825,-3.4828546,-3.6754484,-3.9679465,-3.8697214,-4.020019,-4.279016,-4.1038723,-4.0687857,-3.8534975,-3.8366847,-3.9642339,-3.8618145,-3.868935,-3.786759,-3.853663,-4.011054,-3.8579555,-3.9715724,-4.103323,-4.0917253,-4.0744853,-4.1116996,-3.8107667,-3.9660296,-3.789681,-3.4999511,-3.0605066,-2.5377417,-2.071425,-2.2500296,-2.3640704,-2.2103024,-2.0228486,-1.8182688,-1.828836,-1.944612,-1.8845077,-1.5934114,-1.5452979,-1.6162245,-1.6542094,-1.8752868,-2.162256,-2.4845557,-2.757382,-2.832382,-3.005863,-3.0825076,-3.1822567,-3.237389,-3.2555974,-3.3135018,-3.3330772,-3.246643,-3.1104639,-3.343618,-3.305578,-3.1851282,-3.2977452,-3.3635652,-3.4201355,-3.2523053,-3.365556,-3.3658214,-3.4926739,-3.458632,-3.3917828,-3.4170017,-3.2903538,-3.3166313,-3.2373295,-3.3260186,-3.3412871,-3.4056573,-3.3814301,-3.4603128,-3.42242,-3.2977674,-3.377688,-3.2144957,-3.4605098,-3.4857652,-3.3661823,-3.318338,-3.3474844,-3.3094625,-3.3091507,-3.263848,-3.2937856,-3.1064453,-3.247624,-3.2759056,-3.236415,-3.245067,-3.2888198,-3.2857301,-3.2404966,-3.1743546,-3.2279394,-3.0801399,-3.0302274,-3.211969,-3.2720292,-3.2088614,-3.2433,-3.1394937,-3.1582885,-3.2110431,-3.42177,-3.4191258,-3.1793587,-2.8064246,-3.0905237,-3.1863246,-3.17092,-3.1565928,-3.0940928,-2.9857116,-2.9087882,-3.0886958,-3.0800247,-3.1468275,-3.1747808,-3.189917,-3.3443708,-3.3321338,-3.2119904,-3.169619,-3.2485967,-3.2501755,-3.279394,-3.2087278,-3.284397,-3.2174358,-3.2206192,-3.3932238,-3.2947288,-2.6343317,-2.4974008,-2.9365745,-3.074325,-2.9252346,-2.840073,-2.8662238,-2.4939458,-2.437367,-2.7557054,-2.7047234,-2.3551133,-2.469255,-2.601893,-2.4460928,-2.3360565,-2.3704886,-2.1894155,-2.285354,-2.2858043,-2.1688583,-2.2191844,-2.0711117,-1.8149102
+0.45976576,0.21230263,0.17840971,0.07367131,-0.25299007,-0.6096974,-0.6015251,-1.1508284,-2.1015744,-2.5198772,-2.741446,-2.8926363,-2.735578,-3.094406,-2.9592323,-2.988913,-3.0687842,-3.0365672,-3.1167848,-3.2128227,-3.409707,-3.4274945,-3.055378,-3.262213,-2.7955914,-2.7939796,-2.9134903,-2.7652712,-2.4126263,-2.2946918,-2.689617,-2.729072,-2.582172,-3.00772,-3.3505795,-3.2237923,-3.5103297,-3.4997225,-3.490903,-3.3294697,-3.4041364,-3.344645,-3.6634266,-3.3144927,-3.0575612,-3.575486,-3.797134,-3.905374,-3.131661,-3.6587758,-3.5575778,-3.4753163,-3.4381602,-3.5768504,-3.6448174,-3.7003312,-3.727961,-3.8297238,-4.010249,-4.0191817,-4.1318474,-4.134157,-3.9571967,-3.9794393,-4.0128036,-3.9811006,-3.9708982,-3.66433,-3.9182649,-4.1869454,-4.316501,-4.062963,-4.1380897,-4.3927364,-4.1782513,-3.3876133,-3.3115659,-4.439386,-4.3826766,-4.524551,-4.3945804,-4.4090433,-4.441204,-4.384572,-4.407082,-4.451815,-4.418982,-4.2698226,-4.119619,-3.9839964,-3.7823305,-3.9629426,-4.0009046,-3.946929,-4.113613,-4.059527,-4.102759,-4.129186,-4.111983,-4.104563,-3.5497522,-3.5655177,-4.4345613,-4.177883,-4.3832784,-4.3746343,-4.368425,-4.383793,-4.297632,-4.3412457,-4.2254367,-4.1232343,-4.1071095,-4.034681,-3.9220433,-3.888492,-3.8453345,-3.8084378,-3.7861962,-3.8419862,-3.881247,-3.9957032,-3.958261,-3.956736,-3.9847183,-3.9346476,-3.8389335,-3.8732114,-4.0447135,-4.06053,-4.1260467,-4.1070194,-3.9822698,-3.9649367,-3.9444509,-4.025536,-3.985683,-3.9780068,-3.9873977,-3.9570508,-3.9573593,-3.982871,-4.026102,-4.0521235,-4.0317154,-3.9465585,-3.9246907,-3.9378948,-4.0148787,-4.0570073,-4.0161633,-4.044127,-4.057939,-4.0551624,-4.055224,-4.060924,-3.7879071,-3.033321,-4.0516295,-4.1621842,-4.144426,-4.20055,-4.1972275,-4.181863,-4.017119,-3.959499,-3.3395228,-3.9918756,-4.1559105,-4.0878124,-3.889711,-4.140708,-4.054774,-3.9560957,-2.870748,-3.3985422,-3.6730337,-3.8002295,-4.01716,-4.0377555,-4.0165124,-3.947937,-3.9042354,-3.5168595,-3.8130126,-3.2324047,-3.5652096,-3.3983116,-3.3266318,-3.3360147,-3.5714867,-3.810091,-3.916603,-3.8975725,-3.5778687,-3.6216373,-3.5513754,-3.8141246,-3.8153458,-3.6608198,-3.3896632,-3.1735954,-2.9569683,-3.1762204,-3.2974122,-3.3974228,-3.5305028,-3.6935701,-3.8353968,-3.8598475,-3.8454022,-3.5627427,-3.8324337,-3.1353068,-3.225405,-3.0855916,-3.0575643,-3.156825,-3.1795557,-3.215182,-3.1700666,-3.2248816,-3.4459233,-3.6317282,-3.6747227,-3.6403215,-3.5947914,-3.6281443,-3.5025992,-3.5145497,-3.1459599,-2.6969833,-2.606654,-2.6149893,-2.500431,-2.3703265,-2.277991,-2.2567377,-2.2531395,-2.2352052,-2.1382184,-2.1271431,-2.148383,-2.1639967,-2.1570103,-2.201551,-2.1917744,-2.1992314,-2.0276246,-1.9595702,-1.9420722,-1.9251258,-1.9835334,-2.041579,-1.9578922,-1.9645905,-1.9600885,-1.927026,-1.9573314,-2.0458174,-1.9353037,-2.0442672,-2.086895,-2.2831154,-2.2332754,-2.158011,-2.1786056,-2.292262,-2.3209152,-2.1408398,-2.14613,-2.2263713,-2.1645403,-2.2421937,-2.239944,-2.1862636,-2.2660832,-2.2171724,-2.2046282,-2.2110052,-2.2110844,-2.2049847,-2.237875,-2.3389912,-2.2875676,-2.3135347,-2.239729,-2.1320288,-2.1641488,-2.1928277,-2.239527,-2.2119575,-2.2484899,-2.3943002,-2.2671685,-2.200253,-2.1537802,-2.2726402,-2.2467084,-2.0882187,-2.1538177,-2.0888119,-2.1306655,-2.1250553,-2.087701,-2.2163656,-2.2617402,-2.2397168,-2.1442223,-2.3475354,-2.2164154,-2.2298145,-2.4679728,-2.5950344,-2.3653545,-2.3425798,-2.273652,-2.0973623,-2.1318736,-2.198916,-2.2163033,-2.3264132,-2.416598,-2.2988708,-2.3559942,-2.3696594,-2.4540498,-2.3497593,-2.353152,-2.418735,-2.3009958,-2.2030535,-2.3207412,-2.1052687,-2.2577374,-2.339774,-2.309026,-2.374741,-2.3048902,-2.3108733,-2.2284765,-2.2143416,-2.1449862,-2.015772,-1.9222541,-2.0326765,-2.028142,-1.7314572,-1.4645126,-1.7471199,-1.7890623,-1.4687996,-1.4858382,-1.174926,-1.1797111,-1.5263686,-1.6246197,-1.5729966,-1.8624959,-1.6851435,-1.8019729,-1.806823,-1.7997923,-1.7454147,-1.868402
+-0.56158334,-1.4342096,-1.9771454,-2.4741616,-2.8163967,-3.0323405,-3.0657725,-3.000882,-3.3000116,-3.4542649,-3.4876053,-3.6566594,-3.4468749,-3.2872624,-3.738584,-3.7156549,-3.5977798,-3.6132507,-3.7053018,-3.751186,-3.6247394,-3.7378774,-3.0112615,-3.7184758,-3.8745208,-3.776033,-3.7043648,-3.7065573,-3.4486692,-3.7019486,-3.6410527,-3.620599,-3.633983,-3.7388177,-3.778564,-3.5511136,-3.24748,-3.8103013,-3.8539653,-3.6938396,-4.0440683,-4.082856,-4.050103,-3.8367696,-3.573988,-4.118239,-3.9904275,-4.133042,-3.2291553,-3.5604486,-3.6648703,-4.0796742,-4.1139174,-4.0525937,-3.691691,-4.146499,-4.076498,-4.1581974,-4.2245946,-4.2217307,-4.0722766,-4.1543717,-4.1730866,-4.0902915,-3.9388127,-3.888473,-3.7076526,-3.7299576,-3.8699956,-3.7851825,-3.8064237,-3.7804222,-3.7486424,-3.6916273,-3.6610181,-3.4263482,-3.8776526,-4.0731044,-4.144209,-4.014562,-3.9270854,-3.8820043,-3.8814664,-3.9024882,-3.7370296,-3.7700353,-3.84094,-3.877162,-3.833877,-3.8045115,-3.5435948,-3.837233,-4.207579,-4.104938,-3.92583,-3.8591208,-3.8208761,-3.8665142,-3.9333162,-3.8291993,-3.4543896,-4.0673585,-4.25312,-4.198213,-4.119018,-4.0867343,-3.9431949,-3.9792695,-4.0048475,-3.9171195,-3.8845325,-3.8966823,-3.765411,-3.7589016,-3.8453908,-3.8718152,-3.8880324,-3.8641267,-3.8476367,-3.867042,-3.8829885,-3.8238487,-3.861452,-3.875955,-3.7851915,-3.9016619,-4.0118737,-3.9315467,-3.5682666,-4.026115,-3.953659,-3.9962277,-4.0200095,-4.0114183,-3.9973655,-4.0010967,-3.9791274,-4.0010657,-4.066671,-3.9782653,-3.9753509,-4.0232673,-3.9804316,-3.8458781,-3.8888965,-3.9867387,-4.0179267,-4.1135106,-4.0199714,-4.000288,-4.05047,-4.0497804,-4.0456676,-3.9715862,-3.8738885,-3.9826837,-2.6480129,-3.8094344,-4.1211734,-4.0946965,-4.09632,-4.093066,-4.086909,-3.9871135,-3.9054842,-3.994999,-3.44276,-4.209245,-4.298866,-4.2317805,-4.1160045,-4.1514874,-4.172816,-4.2645955,-2.5329797,-2.8167658,-3.7794433,-3.8701558,-3.9811735,-4.0313535,-4.0757003,-4.182917,-4.090654,-3.6201286,-3.8203444,-3.1163208,-3.7114186,-3.7553334,-3.904852,-3.9674706,-3.9895697,-4.020592,-4.0105557,-3.9875731,-3.9949522,-4.1602273,-4.0700293,-3.37101,-3.109142,-3.4884653,-3.6721597,-3.7857642,-3.9485164,-3.86789,-3.884521,-3.8854637,-4.004481,-3.204636,-3.8353424,-3.9796743,-3.5711472,-3.7035155,-3.8541212,-3.307911,-3.5763018,-3.688022,-3.7114034,-3.674886,-3.6796265,-3.806912,-3.8536,-3.7454457,-3.8092303,-3.8458266,-3.807352,-3.92494,-3.9200826,-3.9614778,-3.9274273,-3.9639034,-3.697813,-3.5223746,-3.4497256,-3.5536673,-3.6634498,-3.6616888,-3.42847,-3.2860312,-3.1821933,-3.0843296,-2.8652866,-2.583275,-2.517427,-2.5590658,-2.419334,-2.3584123,-2.4283233,-2.3307488,-2.303247,-2.1104097,-2.0419393,-2.0631201,-1.7500393,-1.0639255,-1.2271187,-1.3167295,-1.4156103,-1.4212339,-0.9229695,-0.82433707,-0.941775,-1.0865314,-1.2385914,-1.4439158,-1.7859263,-1.9204493,-1.9235449,-1.762598,-1.8695416,-1.9464571,-2.0285456,-1.9810543,-2.1173744,-2.0700936,-2.0612411,-2.1140757,-2.096572,-2.1671567,-2.165947,-2.2133265,-2.1434402,-2.1917956,-2.0155377,-1.7837224,-2.1312444,-2.4093518,-2.5196857,-2.535287,-2.518001,-2.4866662,-2.415988,-2.3960943,-2.359367,-2.332398,-2.3349128,-2.4354193,-2.4061768,-2.555237,-2.6105666,-2.581324,-2.3894904,-2.3676333,-2.3500223,-2.319439,-2.2612765,-2.249061,-2.1198254,-2.2259874,-2.1617937,-2.182994,-2.053173,-2.4329822,-2.6439397,-2.5888636,-2.769282,-2.7881968,-2.2250934,-2.3813124,-2.4829822,-2.4698493,-2.4388595,-2.459723,-2.6617947,-2.729163,-2.7621531,-2.7610607,-2.7013016,-2.2036572,-2.7207212,-2.8505902,-2.501396,-2.5053637,-2.6400955,-2.5678864,-2.508698,-2.5851257,-2.635561,-2.5405822,-2.5784233,-2.464367,-2.6370325,-2.5575523,-2.1537333,-1.7277749,-1.463717,-1.2635934,-0.71034306,-0.4225883,-0.76413625,-1.3507667,-1.8251305,-2.0853624,-2.3849332,-2.4329278,-2.2915974,-2.619411,-2.743902,-2.8289747,-2.7150748,-2.8036852,-2.7392259,-2.8252177,-2.8602076,-2.8266568,-3.1166372
+-0.010807753,-0.5196771,-0.8512643,-0.92666584,-1.2775795,-1.4551036,-1.5734584,-1.577116,-1.769851,-1.7019835,-1.6090066,-0.96417373,-1.1824114,-1.5488393,-1.5711362,-1.7783451,-2.0060406,-2.147679,-2.2849908,-2.3375628,-2.328065,-2.4802077,-0.70439,-1.7303243,-1.6105018,-1.6462936,-1.6990986,-1.834518,-1.8683538,-1.8218834,-1.9854016,-2.0694437,-2.195871,-2.2503912,-2.2786622,-1.6680434,-1.2230132,-1.8406439,-2.1419299,-2.301033,-2.235486,-2.3771968,-2.4209461,-2.3638086,-2.0484595,-2.0846233,-2.1580443,-2.1873012,-1.9432414,-0.9684749,-1.5768294,-1.8915122,-2.0871491,-1.8003454,-1.6864305,-2.0220253,-2.3421836,-2.4138038,-1.8219564,-2.0118124,-2.3698444,-2.4719486,-2.7208261,-2.7709303,-2.647181,-2.7715213,-2.7375865,-1.7279837,-2.6279113,-2.761503,-2.8445153,-1.8341539,-1.7894726,-2.2023911,-2.6246662,-2.7715716,-2.7880638,-2.6653523,-2.918301,-2.8954744,-2.8943543,-3.118249,-3.1655679,-3.2018228,-3.3710084,-3.241397,-3.3236327,-3.3894167,-3.477058,-3.4297843,-3.3222742,-3.3307173,-3.3210528,-3.4478996,-3.4746408,-3.5024722,-3.494537,-3.4543211,-3.546382,-3.6431866,-3.575644,-3.445519,-3.5835357,-3.62096,-3.6279902,-3.663528,-3.7026982,-3.632321,-3.7565432,-3.7139478,-3.7369294,-3.8302264,-3.79979,-3.778543,-3.7898436,-3.7963066,-3.8286672,-3.8633437,-3.8643947,-3.8394103,-3.8068843,-3.6108904,-3.7607894,-3.8483663,-3.8222017,-3.8323202,-3.8532872,-3.6250129,-3.6832108,-3.8033028,-3.8298607,-3.73705,-3.6808486,-3.7644544,-3.8205585,-3.8618827,-3.89531,-3.8810763,-3.8323045,-3.8385358,-3.7624831,-3.7115664,-3.8282452,-3.8527174,-3.81103,-3.7654858,-3.7713623,-3.758244,-3.7658706,-3.796401,-3.8268094,-3.8416972,-3.8429255,-3.7877398,-3.6397076,-3.6579394,-3.5095797,-3.453321,-3.6418862,-3.700317,-3.6465337,-3.6292086,-3.6834648,-3.756043,-3.6662486,-2.5519924,-1.1121342,-2.163323,-2.4302533,-2.6910481,-2.9177358,-3.0283997,-3.100263,-3.0590434,-0.75243837,-1.4799721,-1.9154797,-2.1967757,-2.7137465,-2.7630262,-2.6693773,-2.6258726,-2.641799,-2.2941298,-2.3264225,-2.4796696,-2.5360253,-2.7179,-2.6513624,-2.664516,-2.7988126,-2.8012493,-2.787801,-2.878194,-2.7410142,-2.817738,-2.9244382,-1.6122539,-1.8281684,-1.3763266,-1.6164317,-1.640044,-1.7965047,-1.9150403,-2.1207037,-2.2066154,-2.3115125,-1.7362413,-2.1472888,-2.2286084,-1.817354,-1.6259966,-1.9343333,-1.4965575,-1.5850506,-1.708601,-1.7597604,-1.8226464,-1.8737257,-1.8617849,-1.9873023,-2.0721679,-2.108714,-2.1068623,-2.0697703,-2.1253,-2.1798253,-2.28022,-2.2263744,-2.3912725,-1.9543455,-1.7516758,-1.8231194,-2.1327572,-1.0940006,-1.3729315,-1.0375781,-0.9851162,-1.0872838,-1.0126143,-0.8208365,-0.67013377,-0.8030841,-0.83407897,-0.8604378,-0.8882577,-0.9853533,-0.9675924,-0.8081998,-1.2658739,-1.1985378,-1.4193804,-1.0675642,-0.93915635,-0.90807027,-1.1546302,-1.1966119,-1.0653787,-0.98366016,-0.8717434,-1.1905804,-1.2926896,-1.3322597,-1.1008344,-1.0167379,-1.3070891,-1.2686603,-1.2250023,-1.1222546,-1.3571491,-1.3932946,-1.2530298,-1.4326837,-1.3543632,-1.4633389,-1.3960526,-1.2934601,-1.3715613,-1.2208617,-1.3628323,-1.4943824,-1.4253516,-1.2301071,-1.2198102,-1.287091,-1.0810814,-1.3116348,-1.392812,-1.4133458,-1.4588926,-1.4942148,-1.5150251,-1.5863492,-1.3586264,-1.5819895,-1.4300728,-1.5901217,-1.356873,-1.4589174,-1.5168142,-1.6156459,-1.635458,-1.6376929,-1.6059787,-1.6260521,-1.6228471,-1.5403497,-1.4274035,-1.3010902,-1.3192677,-1.4004207,-1.1727514,-1.0213528,-1.1074696,-0.956289,-0.89753956,-0.7509275,-1.1931307,-1.3145628,-1.3343859,-1.3132818,-1.2735331,-1.2098889,-0.9287804,-0.82386917,-0.9291131,-0.8578811,-0.71026963,-0.81274253,-0.83482283,-1.0287282,-1.1160798,-1.1315429,-1.2808082,-1.1806366,-1.296483,-1.2988942,-1.2057981,-0.90684193,-0.9176473,-0.9480564,-0.69491464,-0.48561734,-0.23816508,0.25673047,0.7123583,0.83152235,0.93038136,0.8741517,0.6564638,0.3149107,0.11678642,0.19307113,0.031796873,-0.24944842,-0.10887641,-0.2958309,-0.9302972,-0.62487,-0.8296853,-0.78647834,-1.1033275,-1.2956233,-0.8979321,-1.1285889
+-0.50619036,-0.99381155,-1.1941285,-1.3022816,-1.2801542,-1.408108,-1.4469292,-1.5409205,-1.6666877,-1.7558091,-1.7558115,-1.7527661,-2.1316051,-2.4051976,-2.6640706,-2.6372871,-2.6719677,-2.7694964,-2.9112911,-2.938149,-2.9235678,-2.9098704,-2.9679642,-2.8288903,-2.7035294,-2.9783,-3.1271307,-3.0770168,-3.2765112,-3.338663,-3.1526015,-3.3765032,-3.3156776,-3.3244367,-3.3381646,-3.398468,-3.5253754,-3.6007786,-3.514439,-3.3325648,-3.3796966,-3.4194055,-3.4266055,-3.4043584,-3.5036411,-3.4855103,-3.5539842,-3.5041027,-3.5205324,-2.8663294,-3.356113,-3.3483326,-3.3725834,-3.5214734,-3.585813,-3.420044,-3.594713,-3.5996103,-3.5272465,-3.4844112,-3.3028288,-3.355536,-3.3723564,-3.3847938,-3.4519837,-3.431956,-3.4575138,-3.455379,-3.468703,-3.4259648,-3.381877,-3.4614515,-3.289112,-3.5938406,-3.5122766,-3.4234776,-3.382976,-3.439591,-3.375207,-3.329545,-3.3764348,-3.2713294,-3.4057806,-3.3811631,-3.328235,-3.4530604,-3.4652576,-3.4954538,-3.446364,-3.6501875,-3.6817946,-2.259294,-2.8421664,-3.459303,-3.4824743,-3.4152522,-3.4683318,-3.5567455,-3.5656946,-3.5760984,-3.5357933,-3.591285,-3.626735,-3.6469781,-3.6960664,-3.7181325,-3.6768308,-3.7566595,-3.7293458,-3.7330441,-3.706061,-3.6945,-3.6885762,-3.7441554,-3.817535,-3.864303,-3.849875,-3.9028425,-4.0014997,-4.098042,-4.1214976,-4.075473,-4.034375,-4.0164247,-3.9928112,-4.010301,-4.0073466,-4.057696,-3.9965801,-3.8845973,-3.8542628,-3.884912,-3.8898616,-3.853137,-3.829111,-3.8426952,-3.8195238,-3.836475,-3.9049592,-3.8769813,-3.8683457,-3.8923965,-3.8671207,-3.8357882,-3.7986255,-3.803999,-3.9201999,-3.8890748,-3.8650002,-3.8396173,-3.8509502,-3.8165698,-3.7851567,-3.8688226,-3.6570172,-3.8481202,-3.8002224,-3.892292,-3.9550986,-3.900145,-3.8537579,-3.883387,-3.8478284,-3.7922134,-3.776012,-3.9519925,-3.1362576,-3.6918495,-3.8708491,-3.9442267,-3.845595,-3.7840676,-3.7731953,-3.9686522,-2.9645658,-2.639342,-3.1982508,-3.4545045,-3.6039033,-3.6831403,-3.688407,-3.8000288,-3.740087,-3.72893,-3.710209,-3.845244,-3.721805,-3.7459006,-3.7552185,-3.7704315,-3.7507968,-3.7683716,-3.8234673,-3.8805528,-3.8419442,-3.9145331,-3.9084244,-3.9642453,-4.0427947,-3.2501667,-3.7574286,-3.7011533,-3.7881436,-3.8355308,-3.8310237,-3.8343253,-3.9453692,-3.8661003,-3.842214,-3.8554707,-3.944644,-3.9088206,-3.8604193,-3.4485717,-3.6880531,-3.6453614,-3.6765034,-3.7559109,-3.7457795,-3.7538333,-3.7352867,-3.7434964,-3.7517514,-3.7306194,-3.7627435,-3.7512374,-3.7323627,-3.7607322,-3.7327833,-3.7598248,-2.6013918,-3.1647243,-2.810392,-3.1869204,-2.6304443,-2.3793457,-2.7207613,-2.243782,-2.4193747,-2.2724206,-2.0438662,-2.1788483,-2.101302,-2.1347933,-1.894212,-1.8875086,-1.9636593,-1.9246981,-1.8941684,-2.0687711,-1.9404588,-2.0913832,-1.890269,-2.1338801,-2.0366917,-2.3000484,-2.239374,-2.137492,-2.0501103,-2.053014,-2.1005597,-2.243846,-2.305068,-2.2790885,-2.301598,-2.282115,-2.3523486,-2.277924,-2.1423914,-2.4108677,-2.4413667,-2.3668385,-2.5646017,-2.7065506,-2.7692714,-2.8535874,-2.8026543,-2.7613685,-2.5029933,-2.6710243,-2.8609345,-2.7830873,-2.6231732,-2.6882005,-2.6090958,-2.5897532,-2.7536073,-2.4822464,-2.5680585,-2.6362844,-2.6750197,-2.7645502,-2.861652,-2.8032026,-2.7325559,-2.839736,-2.6805296,-2.7093549,-2.6196427,-2.5934696,-2.533337,-2.595127,-2.6605897,-2.6384783,-2.6806545,-2.668938,-2.626293,-2.6311135,-2.6035233,-2.2874718,-2.283792,-1.9679091,-1.9158878,-1.476172,-1.309524,-1.641187,-2.186464,-1.908596,-1.6400523,-1.3213053,-1.3812871,-1.534652,-1.6254051,-1.5349956,-1.9290888,-1.3554685,-1.5539243,-2.2323182,-1.9445946,-1.8073487,-1.6310585,-1.5708735,-1.7410097,-1.6777949,-1.5747628,-1.703347,-1.8066196,-1.8827724,-1.5716903,-1.8771152,-1.7525246,-1.6356213,-1.4989891,-1.3876996,-2.0786047,-2.4336948,-2.5602481,-2.651218,-2.6793485,-2.6903408,-2.6530433,-2.7107613,-2.7392027,-2.7557998,-2.771084,-2.9116168,-2.5147505,-2.5629578,-2.8077512,-2.6966758,-3.033897,-3.0637844,-3.0707984,-3.0720122,-3.0676682
+-0.8352851,-1.5527363,-1.9357235,-2.081348,-2.0334914,-2.0441084,-2.074669,-2.2339818,-2.572369,-2.8324413,-2.820156,-2.9914122,-3.0446422,-3.056889,-2.7674298,-2.9655466,-3.0065575,-3.029447,-3.1060507,-3.0918267,-3.0471673,-3.0645928,-3.3078027,-3.3616786,-3.2003899,-2.9877434,-3.429319,-3.1675634,-3.312706,-3.522539,-3.4837365,-3.5463915,-3.4706876,-3.3929684,-3.38506,-3.474951,-3.0453448,-3.4555137,-3.3767204,-3.5113797,-3.4985776,-3.4190094,-3.355879,-3.3734941,-3.584105,-2.8651998,-3.608531,-3.676394,-3.7120566,-3.642311,-3.6658762,-3.6233528,-3.5571384,-3.637505,-3.6392376,-3.4885926,-3.5155058,-3.5273037,-3.4863777,-3.4033031,-3.3459811,-3.313242,-3.295728,-3.2337492,-3.273776,-3.2742834,-3.2566352,-3.238593,-3.2370915,-3.2701283,-3.2918162,-3.58037,-3.5630982,-3.6521163,-3.568346,-3.4523807,-3.4473853,-3.49681,-3.4714162,-3.3637314,-3.3168142,-3.274958,-3.3197205,-3.303637,-3.3464527,-3.4108515,-3.4287858,-3.4269423,-3.379216,-3.2905464,-2.9162507,-3.694046,-3.709721,-2.0783243,-3.3961298,-3.3745563,-3.3032165,-3.3278418,-3.3900933,-3.4294858,-3.4239738,-3.5539124,-3.5786746,-3.566755,-3.5890136,-3.5628617,-3.5873146,-3.6049964,-3.6293027,-3.655076,-3.6350074,-3.596275,-3.5704641,-3.550982,-3.5828667,-3.505135,-3.5393584,-3.595193,-3.6892238,-3.760131,-3.7718272,-3.7593083,-3.7712903,-3.7590795,-3.0101948,-3.1388535,-3.2954898,-3.2494178,-3.6473327,-3.6276562,-3.5566812,-3.633549,-3.7338586,-3.592164,-3.5914114,-3.6369486,-3.630722,-3.7630563,-3.7588634,-3.7287135,-3.7534423,-3.7806869,-3.7630382,-3.8431697,-3.042364,-3.6303806,-3.5916038,-3.684595,-3.716352,-3.656315,-3.600513,-3.5655394,-3.5593796,-3.730136,-3.7319217,-3.6874328,-3.6838713,-3.7147365,-3.7319622,-3.6923819,-3.6551108,-3.6611063,-3.661624,-3.5807548,-3.669293,-3.7635942,-3.61177,-3.7844367,-3.7796016,-3.74011,-3.664201,-3.5484555,-3.533796,-3.8010097,-3.1915576,-2.75236,-3.6281471,-3.7611127,-3.8161044,-3.7750483,-3.739205,-3.814301,-3.8308063,-3.8146129,-3.8188138,-3.7834764,-3.8212357,-3.8725567,-3.8781333,-3.8440676,-3.799807,-3.7978716,-3.8967228,-3.845767,-3.881494,-3.898549,-3.8046112,-3.7790694,-3.863243,-3.989903,-4.0482507,-4.009609,-4.0654426,-4.058922,-4.0232873,-3.9655824,-3.1955304,-3.9105558,-3.9700885,-4.065896,-4.0632043,-3.9864469,-4.1036997,-4.092519,-4.068789,-3.6940484,-3.8731666,-3.8883872,-3.9084797,-3.9140882,-3.8953385,-3.8901649,-3.8927655,-3.8857493,-3.897306,-3.8793044,-3.8669562,-3.8683782,-3.8420196,-3.8389502,-3.176334,-3.257157,-3.2285771,-3.5862036,-3.4722116,-2.7363353,-3.2284071,-2.9532666,-2.8382547,-2.8253062,-2.7946372,-2.6166768,-2.5775802,-2.56261,-2.481017,-2.5212178,-2.492404,-2.443424,-2.5249171,-2.522721,-2.3432226,-2.233987,-2.5634854,-2.638724,-2.6850443,-2.8496327,-2.778717,-2.966339,-3.0862007,-2.7215695,-2.0428479,-2.014755,-1.9982133,-2.0223107,-2.0462022,-1.7913289,-1.7624018,-1.5269856,-1.2504847,-1.6823435,-1.6797688,-1.6613576,-1.7162659,-1.7162309,-1.7095261,-1.7284608,-1.6668603,-1.6403842,-1.5603456,-1.4380333,-1.8943915,-1.8933921,-1.7818947,-1.7041092,-1.751184,-1.6494253,-1.7558877,-1.9030888,-1.8329685,-1.7736349,-1.6710112,-1.6125102,-1.5735009,-1.5759506,-1.7836614,-1.899457,-2.0973663,-1.905993,-2.157588,-2.1089425,-2.0935798,-2.1887364,-2.309342,-2.256833,-2.2525795,-2.184689,-2.1093369,-1.7658839,-1.917918,-1.6514196,-1.6330683,-1.2973022,-1.105443,-0.8965685,-1.02828,-1.5037904,-2.2234066,-2.3531384,-2.113914,-1.827194,-1.7838619,-1.8592043,-2.0454555,-2.2049458,-2.452941,-2.447708,-2.5748374,-2.7199745,-2.3965056,-2.0688777,-1.9565094,-1.9592676,-2.0394092,-1.9980736,-1.9981346,-1.9829056,-2.0605073,-2.244514,-2.4844427,-2.1441908,-2.0581286,-2.165792,-2.466429,-2.7758455,-2.9783673,-3.1569376,-3.2539387,-3.3120158,-3.3518414,-3.391971,-3.333181,-3.2910995,-3.3197114,-3.33039,-3.3514757,-3.390966,-2.6755233,-3.187128,-3.1970491,-3.3517222,-2.9957795,-3.365974,-3.3572814,-3.587687,-2.9526772
+-0.14922571,-0.408885,-1.1521821,-1.9098105,-2.378407,-2.6402354,-2.769949,-2.6568418,-2.7550976,-3.0070832,-3.2938395,-3.3974028,-3.547677,-3.713663,-3.5234332,-3.4897132,-3.4677691,-3.5331342,-3.6512134,-3.737537,-3.850885,-3.992351,-3.903317,-4.06082,-3.1105828,-3.0620627,-3.4006908,-2.9548957,-3.0030928,-2.857701,-3.235373,-3.3984847,-3.5548966,-3.5963066,-3.7963958,-3.9640784,-3.7534957,-3.8107495,-3.7343836,-3.9311967,-4.0075064,-3.9943395,-4.0679226,-4.2091737,-4.246445,-4.1193156,-4.1233954,-4.1670136,-4.254035,-4.1987805,-4.28619,-4.4575477,-4.486013,-4.517362,-4.548794,-4.294359,-4.3757453,-4.3981853,-4.373578,-4.3577313,-4.391882,-4.379663,-4.3949537,-4.4153504,-4.4335,-4.4328656,-4.458079,-4.4399424,-4.395197,-4.378515,-4.365578,-4.121674,-4.516909,-4.2947726,-4.485213,-4.438823,-4.3782134,-4.370641,-4.3392825,-4.263353,-4.2391076,-4.1879516,-4.209574,-4.266688,-4.296352,-4.292044,-4.2935944,-4.287655,-4.208215,-4.392165,-4.1526313,-3.4215338,-4.14665,-4.0825,-4.386149,-4.4857697,-4.4482465,-4.4324837,-4.379782,-4.3208976,-4.2721214,-4.272291,-4.3156686,-4.336066,-4.3407993,-4.359099,-4.3455415,-4.3414564,-4.3347588,-4.3572288,-4.3503413,-4.3780694,-4.4033737,-4.410505,-4.415252,-4.421263,-4.435818,-4.4290156,-4.3715944,-4.374087,-4.3596315,-2.8646355,-3.991673,-2.7842758,-3.6756845,-3.443541,-4.2883782,-3.4860487,-4.246323,-4.490417,-4.4493537,-2.6385376,-3.6607475,-4.3158517,-4.417998,-4.45843,-4.466642,-4.457044,-4.3960967,-4.2755322,-4.202333,-4.1071754,-4.142887,-3.8642735,-3.623602,-4.1684165,-4.3600774,-4.3198647,-2.8377929,-4.1934586,-4.338156,-4.3216443,-4.331656,-3.9994645,-4.2118983,-4.266949,-4.229997,-4.28149,-4.2213597,-4.190456,-4.1605964,-4.123033,-4.0865045,-4.117024,-4.0709662,-3.8979244,-3.8832116,-4.1580777,-4.148913,-4.1351547,-4.1289887,-4.152986,-4.0732384,-2.434702,-2.6224422,-3.120253,-3.678306,-3.8234706,-3.9074616,-4.006622,-3.8202624,-3.6246653,-4.034232,-4.2082067,-4.2036185,-4.1802278,-4.2943206,-4.3415837,-4.2968297,-4.286315,-4.227866,-4.1976852,-4.1879897,-4.1199,-4.04225,-4.0251546,-4.0290575,-3.9628844,-3.7847028,-3.7896547,-3.8764162,-3.9168196,-4.0165067,-3.996852,-3.9677033,-3.9490833,-3.4680603,-2.7284627,-3.8717713,-4.012805,-4.014203,-3.9555278,-3.8810668,-3.839476,-3.819439,-3.8528118,-3.8440547,-3.855019,-3.8200593,-3.8008084,-3.7913547,-3.7979183,-3.8202047,-3.8012953,-3.7927437,-3.7997575,-3.807332,-3.8363967,-3.889814,-3.7871985,-3.3030167,-3.3691807,-3.464922,-3.5307195,-1.9155886,-2.3763695,-2.3072126,-2.1893559,-2.1284213,-2.0092697,-1.650403,-1.696784,-1.6873953,-1.6075869,-1.5822372,-1.5203221,-1.4916573,-1.5759001,-1.643327,-1.6489766,-1.6410346,-1.6039853,-1.5654783,-1.5828044,-1.4256783,-1.5244479,-1.604306,-1.4633129,-1.2993054,-0.6131728,-1.2351642,-1.4381137,-1.425041,-1.5398397,-1.6650033,-1.3303156,-1.3854012,-1.0244591,-1.5782368,-1.5672705,-1.6019423,-1.7591245,-1.7937441,-1.822849,-1.8681407,-1.9468949,-1.8742418,-1.9332988,-1.8978219,-2.0266142,-2.0904891,-1.8641522,-2.0099325,-1.8768182,-2.1545768,-2.1792948,-2.3131251,-2.3173072,-2.268731,-2.1849554,-2.155128,-1.9562507,-1.9257731,-1.9592707,-1.6517694,-1.7351243,-1.9784226,-1.5175714,-2.204639,-2.193718,-2.1294622,-2.0994852,-2.0901263,-2.0405393,-2.0012512,-2.065515,-2.0815258,-2.0376418,-2.0132551,-1.9881792,-2.035435,-2.014466,-2.0313094,-1.9396801,-1.7203989,-1.6459904,-1.3213136,-1.5464113,-1.4511182,-1.5137813,-1.5699985,-1.6776056,-1.9234805,-2.0595706,-2.2637858,-2.2437057,-2.1202214,-2.1248314,-2.600304,-2.4146514,-2.1382513,-2.075085,-2.0472362,-2.2808037,-2.1255145,-1.9087863,-1.9023943,-1.9813616,-2.0331438,-2.393815,-2.2547698,-2.1194015,-1.9395092,-1.7315025,-1.376445,-1.091775,-1.074877,-1.318126,-1.8744268,-2.4679756,-2.7380524,-2.9505725,-3.132615,-3.1439776,-3.1008785,-3.237782,-3.1141205,-3.097658,-2.7763278,-2.8325753,-2.8074288,-2.816348,-2.7308502,-2.5100617,-2.3407826
+-0.67203516,-1.6749725,-2.0295086,-2.2245305,-2.3377924,-2.389811,-2.3844604,-1.9018376,-3.0350873,-3.4262242,-3.5585902,-3.7729478,-3.902392,-4.0112286,-3.8521447,-3.679331,-3.614408,-3.5857515,-3.6076722,-3.678622,-3.713962,-3.7070513,-3.8211308,-3.9062853,-3.9123287,-3.988358,-4.046843,-3.2768874,-3.7082715,-3.1398215,-3.6953812,-3.7846828,-3.7444024,-3.808392,-3.7765412,-3.4993324,-3.2177052,-3.634622,-3.7768416,-4.003966,-4.0191293,-3.9366717,-3.835803,-3.9428744,-3.9763255,-4.038613,-3.940475,-3.870955,-4.0529933,-4.079683,-4.0686326,-4.156003,-4.2388277,-4.299985,-4.381216,-4.337815,-4.3542657,-4.404582,-4.37676,-4.313278,-4.277991,-4.250042,-4.214297,-4.230108,-4.2106576,-4.219085,-4.2358823,-4.321472,-4.356075,-4.385432,-4.470735,-4.323398,-4.622931,-4.586176,-4.562344,-4.49616,-4.5009055,-4.538009,-4.4986,-4.4055943,-4.340389,-4.2180285,-4.3465767,-4.534542,-4.54646,-4.567021,-4.482925,-4.4125605,-4.349175,-4.4323516,-4.1737695,-4.0667157,-3.7209868,-4.2881627,-4.386524,-4.397821,-4.3049498,-4.378822,-4.4143414,-4.3879046,-4.3131638,-4.3759665,-4.3450646,-4.376282,-4.450463,-4.397285,-4.354782,-4.453249,-3.3028474,-4.1002693,-4.0208054,-4.1026406,-4.2564244,-4.2684836,-4.2750916,-4.309192,-4.3468366,-4.089438,-3.8513217,-4.1541986,-3.7711368,-3.9251313,-2.4141831,-3.5735297,-3.1692233,-3.746049,-4.3579087,-4.4618716,-4.7329254,-4.6627994,-4.5519743,-2.4752564,-3.7978969,-4.3837786,-4.3547206,-4.378159,-4.439807,-4.4335465,-4.4060416,-4.0453506,-4.2238636,-3.946228,-3.7981744,-4.0192647,-3.7553835,-4.2855864,-4.414125,-4.2389436,-3.8799996,-4.2499514,-4.3221316,-4.310389,-4.298589,-3.695725,-3.922525,-3.7694225,-4.130269,-4.1341424,-4.1521673,-4.271032,-4.242939,-4.2574434,-4.2466474,-4.055177,-4.13816,-4.1520925,-4.1241703,-4.1199727,-4.1703453,-4.1531386,-4.148522,-4.1851687,-2.803957,-3.2369986,-2.883307,-3.7230706,-4.059135,-4.033162,-4.143545,-4.281892,-4.024687,-3.597062,-3.0627432,-4.200993,-4.522732,-4.4477367,-4.4562783,-4.631143,-4.578711,-4.332319,-4.3795595,-4.469978,-4.471214,-4.452005,-4.3559766,-4.316671,-4.2788444,-4.2056823,-4.143824,-4.042873,-3.9736257,-4.0035834,-3.9976993,-4.030225,-4.1643796,-4.1244264,-4.158255,-2.2528496,-3.895719,-4.4262805,-4.5562468,-4.574189,-4.535786,-4.4175944,-4.4020133,-4.3638673,-4.3129287,-4.335568,-4.199038,-4.2101636,-4.2275233,-4.1937757,-4.2156963,-4.202742,-4.2163644,-4.252066,-4.1921935,-4.153472,-4.154632,-4.098049,-4.114613,-4.3311305,-4.3134212,-4.220623,-2.842132,-4.0196614,-4.2575765,-4.3330717,-4.2894645,-4.2802978,-4.0237627,-3.944178,-4.0216937,-3.7461352,-3.608683,-3.6232333,-3.5357554,-3.51084,-3.4393458,-3.4652667,-3.4215295,-3.4841957,-3.397522,-3.5146608,-3.723452,-3.913322,-4.048267,-4.1090417,-4.1661053,-3.1705577,-3.6456952,-3.5865197,-3.2148874,-2.9952729,-2.6962292,-2.04967,-2.6313548,-2.6107736,-2.7860765,-2.8803964,-2.633379,-2.4775858,-2.4532003,-2.340499,-1.8036294,-1.8062129,-1.7589941,-1.8568914,-1.8119962,-1.7341268,-2.2404823,-2.6504416,-2.1782036,-2.232943,-2.7721305,-2.872652,-3.2332892,-3.5209508,-3.9023657,-4.1656547,-3.9932628,-3.7330904,-3.4418082,-2.5027575,-2.5229173,-2.4394011,-2.6014538,-2.0456414,-2.220974,-2.3687413,-2.254712,-2.158118,-2.1059375,-2.0142303,-1.9627609,-1.9096112,-1.8631964,-1.8396094,-1.6881225,-1.655328,-1.7575469,-1.575784,-1.5733948,-2.1186087,-2.673524,-3.0218384,-3.3730135,-4.1300206,-4.4607253,-4.231382,-4.118282,-3.9840899,-3.866571,-4.0560203,-4.1609807,-4.2331862,-4.271315,-4.353826,-4.132192,-4.0579762,-3.8206077,-3.6546347,-3.2253225,-2.887566,-2.9258373,-2.771863,-2.7386408,-2.7608705,-2.9900627,-3.4800155,-3.7918215,-3.818067,-3.9406009,-4.0728407,-4.0775065,-4.031972,-3.961359,-3.970511,-3.9889612,-3.98954,-3.9687543,-3.9702287,-3.8936524,-3.8692412,-3.7998214,-3.6876104,-2.8406544,-3.8652205,-4.039851,-4.086169,-4.052428,-3.75456,-3.93291,-3.8905802,-3.6914685
+-0.96366495,-1.547369,-1.769784,-1.9574654,-2.0853128,-2.1400502,-2.447281,-1.4158902,-3.1576064,-3.0230832,-3.3637643,-3.8187933,-4.1047864,-4.2116942,-4.066186,-3.7889266,-3.7136664,-3.6603284,-3.7093973,-3.6946092,-3.764439,-3.7498732,-3.8006606,-3.852201,-3.8821979,-3.9064832,-4.075484,-4.104721,-3.7942872,-3.5682578,-2.9508014,-3.8921833,-3.8213315,-3.9877448,-3.859569,-3.9967465,-2.511051,-3.893475,-3.9381776,-4.1208835,-4.1520085,-4.015167,-3.856174,-3.938025,-3.9294958,-3.9442039,-2.8606591,-3.590143,-3.968493,-3.9141364,-3.9224553,-3.9773798,-4.0751424,-4.074846,-4.133656,-4.11378,-4.163017,-4.249272,-4.2616143,-4.2759137,-4.2396083,-4.214783,-4.159327,-4.107898,-4.149408,-4.241859,-4.25786,-4.3243113,-4.3352275,-4.362041,-4.521216,-4.526217,-4.601949,-4.4124246,-4.430231,-4.3893294,-4.3687263,-4.3795285,-4.3136125,-4.3003883,-4.307861,-4.3607407,-4.4258327,-4.4624143,-4.465956,-4.4962406,-4.4698954,-4.3106036,-3.4708576,-4.29441,-3.8620062,-4.094436,-3.5449946,-4.1140895,-4.1430798,-4.173423,-4.199789,-4.289635,-4.2973275,-4.294197,-4.265643,-4.252848,-4.2553926,-4.332171,-4.3907228,-4.373648,-4.360994,-4.423487,-4.3947845,-4.163234,-2.394159,-4.1547017,-3.9822497,-4.0493264,-4.07424,-4.0836773,-3.8913455,-3.930447,-4.037869,-3.782887,-3.6214497,-4.035712,-3.3794436,-2.675251,-3.8534317,-4.207655,-4.5516887,-3.3339634,-4.501264,-4.4259906,-4.2783484,-3.2483983,-4.119779,-4.526938,-4.5278955,-4.418924,-4.407665,-4.3441987,-4.453281,-4.0516567,-4.264582,-4.2503986,-4.002231,-2.886583,-3.8532224,-4.3371797,-4.5019817,-4.511252,-2.6621423,-4.044526,-4.420379,-4.5556836,-4.6829634,-4.727864,-3.736884,-4.312351,-4.307978,-4.3976583,-4.4548397,-4.4818974,-4.49836,-4.4755216,-4.409391,-4.3197923,-4.22374,-4.3012166,-4.2486515,-4.2533107,-4.3261504,-4.3878436,-4.4604893,-4.543141,-1.9152079,-3.7630143,-3.0888944,-4.117332,-4.19542,-4.29008,-4.483814,-4.541457,-4.6134543,-4.651571,-4.3464866,-4.4455495,-4.557749,-4.3978753,-4.362456,-4.4770947,-4.4597607,-4.4211855,-4.28822,-4.472143,-4.5085583,-4.4498014,-4.4129004,-4.411503,-4.4372506,-4.4147305,-4.3578315,-4.3121066,-4.2445636,-4.26052,-4.3659673,-4.441654,-4.4475207,-4.420486,-4.3869877,-2.6016517,-4.02303,-4.4573855,-4.5138,-4.557574,-4.4779277,-4.353398,-4.35774,-4.3343267,-4.3689346,-4.407453,-4.2915406,-4.322333,-4.3420954,-4.384784,-4.3785596,-4.360089,-4.373713,-4.4194617,-4.427597,-4.368029,-4.460407,-4.4537077,-4.310229,-4.4128036,-4.503766,-4.462974,-2.0901346,-3.954719,-4.190123,-4.14298,-4.2692494,-4.4127955,-4.1769004,-3.8343196,-4.068649,-4.146421,-4.2653866,-4.298342,-4.1137576,-4.071572,-4.245646,-4.3105593,-4.265076,-4.227341,-4.3691773,-4.3491015,-4.379841,-4.368087,-4.3804626,-4.350884,-4.3221135,-2.680631,-3.807568,-3.8470922,-3.7023268,-3.534422,-3.7903328,-2.5746305,-3.594047,-3.5329828,-3.6642456,-3.5703096,-3.208368,-3.1351004,-3.1702166,-3.449859,-3.4662056,-3.2241445,-3.6888843,-3.9252834,-4.140393,-4.1932273,-4.2244062,-4.10873,-4.2600894,-4.0046916,-4.331856,-4.3895802,-4.4625025,-4.5679398,-4.051545,-4.211887,-4.449349,-4.3098187,-4.286838,-3.8468337,-3.5782766,-2.9348574,-3.2107258,-2.9888854,-3.170703,-3.1329746,-2.7520053,-2.4195142,-2.2524648,-2.1067538,-2.09028,-2.1503158,-2.3024096,-2.3509135,-2.5947976,-2.9562795,-3.2701473,-3.3843684,-3.6875887,-3.9097443,-3.9655604,-4.071387,-4.006546,-3.4991217,-4.200106,-4.3098598,-4.180547,-4.269483,-4.2038536,-3.17219,-3.2728977,-3.888926,-4.241484,-4.4780493,-4.462546,-4.415932,-4.317327,-4.160125,-3.0704083,-2.86606,-3.0676923,-3.108357,-3.0866604,-3.488827,-3.804707,-4.173534,-4.232264,-4.1709332,-4.32733,-4.396546,-4.3371162,-4.3027873,-4.2455316,-4.2788787,-4.3472238,-4.4005113,-4.383208,-4.396924,-4.3113875,-4.272434,-4.1791043,-4.0823917,-2.542804,-4.0549865,-4.40947,-4.5159082,-4.5484405,-3.6482792,-4.123194,-4.258435,-4.3043876
+-1.2256286,-1.7452714,-1.9673655,-2.2590554,-2.4206798,-2.5151944,-2.7014048,-2.5205166,-2.9560595,-2.614367,-2.6806855,-3.044304,-3.250361,-3.4503844,-3.5507362,-3.528846,-3.5746086,-3.5781589,-3.604268,-3.6096315,-3.6296973,-3.6703424,-3.7375727,-3.7442498,-3.792173,-3.8568244,-3.8977656,-3.899942,-3.937595,-3.346774,-3.3461397,-3.652624,-3.787723,-3.8466763,-3.8968234,-3.859201,-3.3456416,-3.7992067,-3.9065938,-3.9859505,-3.9855614,-3.9730573,-3.9475017,-3.9830108,-4.0211196,-4.0455265,-4.0486503,-3.279902,-3.8119044,-3.9478002,-4.0483294,-4.099584,-4.117609,-4.113307,-4.1206164,-4.1258435,-4.1253314,-4.115729,-4.1019588,-4.1064506,-4.0945706,-4.090941,-4.0621614,-4.010388,-3.925489,-3.9201665,-3.9733415,-4.049075,-4.1040826,-4.1129823,-4.125941,-4.0920258,-4.1202426,-4.1616664,-4.1516395,-4.1238437,-4.1417227,-4.11469,-4.0860786,-3.9820104,-3.9971342,-4.120235,-4.1489763,-4.1354556,-4.143238,-4.1501303,-4.180206,-4.170667,-4.167811,-4.1438913,-4.0545936,-4.082628,-3.5881195,-4.2360992,-4.259537,-4.272735,-4.2748065,-4.2488036,-4.2412124,-4.2497144,-4.2408853,-4.204924,-4.2259755,-4.236563,-4.2406626,-4.241071,-4.2243185,-4.2299705,-4.199943,-4.217412,-4.21794,-4.1659265,-4.2097573,-4.2111115,-4.188101,-4.1886563,-4.2094483,-4.206303,-4.202572,-4.193689,-3.2262435,-4.0984163,-3.9190497,-4.166927,-4.099568,-4.1277957,-3.8378825,-4.148977,-4.3421197,-4.379906,-4.2712984,-3.6150994,-4.0662704,-4.1390963,-4.2366433,-4.299119,-4.306424,-4.33555,-4.336658,-3.2623386,-3.0090137,-3.1579866,-3.4711313,-3.6909997,-3.703816,-3.8980098,-4.0143156,-4.082498,-4.0979424,-4.1895976,-4.243467,-4.287286,-4.3345947,-4.290718,-4.273732,-4.3226323,-4.27943,-4.276563,-4.2617583,-1.5357106,-3.255294,-3.4026363,-3.6815667,-3.796338,-3.83247,-3.8130865,-3.838323,-3.918796,-3.9377303,-3.9972916,-4.0461397,-4.0859056,-4.0549307,-4.0645766,-3.6360536,-3.997211,-3.9933734,-4.006519,-4.077334,-4.0008907,-4.081365,-4.0542607,-4.0715804,-4.084267,-3.8352246,-3.991035,-3.967156,-4.0355988,-4.0219893,-3.9815602,-3.9988399,-4.023655,-3.9968371,-4.0109267,-4.005894,-3.9758935,-3.9444723,-3.9582896,-3.9907823,-4.000078,-3.9995713,-4.0105376,-3.9186416,-3.9150252,-3.9532762,-3.975883,-3.97721,-3.9956245,-4.027644,-4.0053964,-4.0085244,-4.0088344,-4.023131,-4.0436845,-4.0340447,-3.9443402,-3.9362922,-3.837996,-3.9839416,-3.9393287,-3.9144998,-3.8991957,-3.8297372,-3.852922,-3.8650107,-3.8753753,-3.879098,-3.8720102,-3.8484583,-3.842126,-3.8819094,-3.8094258,-3.8056731,-2.8207693,-2.4577625,-3.2342734,-3.2353694,-3.280838,-3.334289,-3.4511337,-3.5244918,-2.8302894,-3.253017,-3.2163212,-3.3376257,-3.4012794,-3.5096688,-3.5000172,-3.505537,-3.5684059,-3.5527449,-3.529838,-3.5090246,-3.5302505,-3.5346503,-3.5382385,-3.5470128,-3.5204575,-3.5045147,-3.543693,-3.5709565,-3.5173764,-3.4830303,-3.4791574,-3.5076911,-1.9409628,-3.3496146,-2.9231179,-3.4578924,-3.4358165,-3.4929066,-3.5204344,-3.5207405,-3.5475101,-2.8765862,-3.256657,-3.5910363,-3.6520195,-3.611376,-3.5647569,-3.5474448,-3.4343076,-3.3729262,-3.5137398,-3.5532062,-3.5366168,-3.5685482,-3.5708895,-3.560943,-3.603522,-3.5881374,-3.61388,-3.645687,-3.5338612,-2.9587336,-2.5934927,-3.2865348,-3.4240139,-3.3742146,-3.4372191,-3.374618,-3.3958216,-3.4665728,-3.4884183,-3.4439955,-3.4888458,-3.5221834,-3.5222166,-3.570959,-3.6055539,-3.586575,-3.6249752,-3.6318436,-3.6547422,-3.6374478,-3.641376,-3.6855927,-2.8267913,-3.3104804,-3.403721,-3.3863735,-3.4929261,-3.6110113,-2.901586,-2.475853,-3.1807919,-3.2778802,-3.309379,-3.3753443,-3.388585,-3.4094465,-3.4390178,-3.0841913,-2.6047835,-3.2236738,-3.2666805,-3.3425574,-3.506266,-3.5286014,-3.5630302,-3.591763,-3.664259,-3.7606392,-3.7870584,-3.82373,-3.88028,-3.9074402,-3.9126415,-3.924551,-3.9611702,-3.946467,-3.9620838,-3.9530568,-3.9658885,-4.023597,-4.050288,-3.5149941,-3.9612484,-3.9899683,-4.0554776,-4.076219,-4.0606766,-4.0346622,-4.0537033,-4.060018
+-0.86706215,-1.485512,-1.8190207,-2.128617,-2.2626638,-2.3993237,-2.5404472,-2.6435456,-2.8518276,-1.8956633,-2.5167773,-2.8805697,-3.152876,-3.3892457,-3.5163236,-3.5094295,-3.5886972,-3.6053283,-3.6588836,-3.7337947,-3.7655044,-3.8256612,-3.902965,-3.9493928,-3.9561124,-3.982677,-4.0608673,-4.044993,-4.056851,-4.078342,-4.0643487,-4.0830383,-4.0741057,-4.056275,-4.0135236,-4.034741,-4.044508,-4.059542,-4.069513,-4.0829787,-4.0667467,-4.051437,-4.0282555,-3.9729319,-4.0317698,-4.0369687,-4.042051,-4.0222907,-4.052605,-4.061482,-4.0628185,-4.0728765,-4.0788655,-4.084829,-4.084871,-4.0728045,-4.09091,-4.0888395,-4.0549197,-4.0297227,-4.0295177,-4.045049,-4.0248203,-3.9597726,-3.8476481,-3.812841,-3.898765,-3.9886928,-3.9658647,-3.977697,-3.97369,-4.00467,-4.0489955,-4.060243,-4.08603,-4.082215,-4.061071,-4.0527716,-4.006333,-3.7769132,-3.88547,-3.92699,-3.9788103,-3.9661174,-3.968864,-3.9791284,-3.908156,-3.9681115,-3.9646478,-3.7830148,-2.871204,-3.849124,-4.101444,-4.251968,-4.291573,-4.3009467,-4.2472177,-4.231009,-4.22148,-4.2086244,-4.225671,-4.208735,-4.178304,-4.185193,-4.1845036,-4.148703,-4.1337085,-4.1476083,-4.1351495,-4.166619,-4.175511,-4.1641755,-4.0368576,-4.157061,-4.1933727,-4.203262,-4.21578,-4.180005,-4.1787076,-4.205381,-1.8878605,-3.455174,-2.6603634,-3.4796581,-3.673077,-3.8414345,-4.010446,-4.088691,-4.2005363,-4.2165456,-4.085768,-4.017404,-4.066734,-4.178604,-4.2479196,-4.254994,-4.249576,-4.2582693,-4.2446933,-4.216998,-4.1849356,-4.121369,-3.186549,-3.5201702,-3.8701615,-4.028891,-4.1022234,-4.06753,-4.0914493,-4.0929055,-4.189303,-4.165505,-4.1116652,-4.064316,-4.104584,-4.154348,-4.1266274,-4.095596,-4.0718503,-3.760921,-3.8567138,-4.1049905,-4.1795645,-4.1384454,-4.0949683,-4.0744524,-4.0669036,-4.169067,-4.1160865,-4.0970864,-4.1620345,-4.1032195,-4.061977,-4.010986,-4.0269055,-4.127341,-4.2030616,-4.1822867,-3.986689,-4.151363,-4.158511,-4.131019,-4.162408,-4.127411,-4.1034484,-4.119227,-4.1864276,-4.068407,-4.07324,-4.162274,-4.1753407,-4.107738,-4.104522,-4.1090207,-4.111852,-4.1346364,-4.136211,-4.1229815,-4.108668,-4.1295094,-4.117319,-4.145934,-4.1596856,-4.1616797,-4.13326,-4.1285205,-4.1249413,-4.094084,-4.1839623,-4.1948333,-4.1532445,-4.1634,-4.1349454,-4.127311,-4.1475663,-4.1076503,-4.1139445,-4.147735,-4.145311,-4.1385884,-4.117538,-4.119987,-4.107278,-4.0727515,-4.117142,-4.1223583,-4.0999503,-4.0952373,-4.088919,-4.0755363,-4.105225,-4.0062613,-4.018231,-4.0177608,-3.8494062,-3.9231548,-3.916644,-3.9497175,-3.9402251,-4.00149,-4.0382504,-3.962294,-3.95228,-3.829719,-3.8495584,-3.898798,-3.9156713,-3.8680573,-3.8566642,-3.8762393,-3.8504653,-3.8449779,-3.8486362,-3.8724108,-3.8857698,-3.8899493,-3.8895721,-3.877606,-3.85494,-3.9062247,-3.8629556,-3.702417,-3.7363043,-3.836194,-3.834289,-2.6173785,-3.148868,-2.1784797,-2.9644806,-2.8662727,-2.9896011,-3.0889306,-3.2158718,-3.4366024,-3.3807342,-2.21627,-2.8055625,-2.9016972,-3.0017114,-3.0251484,-3.0497646,-3.0347931,-3.1914763,-3.2865727,-3.3291235,-3.317872,-3.352307,-3.3677676,-3.437343,-3.4626956,-3.4920788,-3.582295,-3.578016,-3.4657333,-2.4638624,-2.140473,-2.7714095,-3.016134,-2.8765945,-3.0289316,-2.9768276,-3.0565238,-3.1708603,-3.2425284,-3.3118815,-3.355125,-3.3660233,-3.3513672,-3.392696,-3.4510546,-3.4685714,-3.5202644,-3.5598743,-3.5516763,-3.567786,-3.5795217,-3.6011508,-3.5424712,-3.6501656,-3.671578,-3.7004995,-3.736467,-3.8323035,-2.2754695,-1.5153377,-2.4396107,-2.728876,-2.7273965,-2.798493,-2.821567,-2.873848,-2.9056282,-2.9870267,-3.1329765,-3.232043,-3.3048189,-3.4011703,-3.4579098,-3.5261104,-3.6155312,-3.6664326,-3.7112012,-3.7631574,-3.7565732,-3.804051,-3.797503,-3.8060746,-3.8222566,-3.8066487,-3.8377538,-3.8637147,-3.8626642,-3.8785882,-3.8982673,-3.9302468,-3.9469743,-3.6412892,-3.961689,-3.9854093,-4.0128226,-4.0452313,-4.0361214,-4.0307193,-4.080834,-4.0406237
+-0.56718874,-1.2160349,-1.5522921,-1.7953553,-2.087334,-2.548065,-2.74119,-2.7054002,-2.7836463,-2.8268938,-3.0323644,-3.0352237,-3.1484566,-3.2318485,-3.2777355,-3.3278549,-3.4405265,-3.5138857,-3.5742373,-3.6231298,-3.6568575,-3.7001023,-3.620229,-3.6093538,-3.608477,-3.6089666,-3.623219,-3.6120412,-3.6088421,-3.639936,-3.6045694,-3.6585145,-3.680566,-3.7179246,-3.697733,-3.6254015,-3.6028275,-3.5908036,-3.6068263,-3.6610565,-3.6999688,-3.7640567,-3.7808108,-3.7488866,-3.7240038,-3.686854,-3.6639986,-3.652192,-3.692967,-3.7472177,-3.7640104,-3.7441783,-3.7126765,-3.7519865,-3.689388,-3.684122,-3.7049842,-3.7389717,-3.7064939,-3.6954646,-3.6949558,-3.7312112,-3.7997704,-3.827149,-3.849111,-3.8835893,-3.8835158,-3.8225007,-3.779079,-3.758823,-3.7450714,-3.7778888,-3.7811193,-3.7442865,-3.7514114,-3.7606492,-3.7895684,-3.799521,-3.8215423,-3.9096818,-4.1021657,-3.818871,-3.8091316,-3.8851242,-3.8434415,-3.831923,-3.8149123,-3.8255873,-3.7923818,-3.7945085,-3.774754,-3.733396,-3.7678761,-3.7830234,-3.8073359,-3.8326564,-3.791654,-3.7990928,-3.797863,-3.79881,-3.8145223,-3.7985568,-3.837894,-3.8486848,-3.8228264,-3.8362145,-3.8399878,-3.8447232,-3.8560438,-3.8277116,-3.8026175,-3.8086162,-3.7835803,-3.8238988,-3.6653638,-3.6966844,-3.6863658,-3.710197,-3.6103399,-3.648518,-1.8494289,-3.3395977,-3.3326607,-3.4620278,-3.4839997,-3.5292418,-3.6162333,-3.6929421,-3.7991285,-3.8062148,-3.8129487,-3.9790072,-3.8100257,-3.8531203,-3.9146523,-3.965733,-3.977367,-3.9785943,-4.0167255,-4.089728,-4.1925054,-4.059736,-4.050716,-4.0945053,-4.1530514,-4.131014,-4.1050467,-4.113825,-4.1934943,-4.1912293,-4.117317,-4.166391,-4.14204,-3.9935174,-4.0594683,-4.168952,-4.194863,-4.1744976,-3.0405207,-2.0739264,-3.4752417,-3.6910548,-3.671261,-3.6412544,-3.5737252,-3.5736783,-3.5612128,-3.681748,-3.7753148,-3.8229704,-3.8551536,-3.8706279,-3.767713,-3.7407446,-3.7959824,-3.9124403,-3.9041066,-3.9333382,-3.8852043,-3.9634166,-4.135129,-4.0162196,-4.021313,-4.1325173,-4.2672133,-4.1022544,-4.1699157,-4.1736617,-4.182819,-4.1180825,-4.179295,-4.237432,-4.261317,-4.3145175,-4.330687,-4.302803,-4.3450646,-4.3159175,-4.258384,-4.205781,-4.2288966,-4.2226515,-4.2352023,-4.3650784,-4.3301644,-4.2712255,-4.2724037,-4.113889,-4.2158847,-4.2839475,-4.2829375,-4.2215285,-4.1580343,-4.1553564,-4.2302804,-4.2627993,-4.2439938,-4.285691,-4.272035,-4.3443837,-4.343601,-4.3282437,-4.312277,-4.31582,-4.3101726,-4.3233523,-4.3285985,-4.336399,-4.357001,-4.3950105,-4.296022,-4.2393184,-4.285419,-4.2666993,-4.051471,-4.219207,-4.208248,-4.219376,-4.2411504,-4.2445107,-4.1928983,-4.2071834,-4.190128,-4.213205,-4.3195834,-4.257938,-3.7180243,-4.1961846,-4.257808,-4.23414,-4.1803365,-4.1771197,-4.187745,-4.2517056,-4.1912427,-4.180592,-4.1828823,-4.2136703,-4.233525,-4.1661506,-4.051484,-4.2294493,-4.0771384,-4.061518,-2.7600718,-3.272341,-4.045768,-3.8960142,-3.9472551,-4.1711936,-4.0747776,-4.0325,-3.998405,-4.0510736,-3.977015,-3.804552,-4.062965,-4.0270658,-4.035076,-3.9627948,-4.0005674,-4.0728955,-4.1547923,-4.1514163,-4.0852365,-4.072657,-4.079908,-4.0501037,-2.195869,-3.7523966,-4.095295,-4.129496,-4.186958,-4.146792,-4.0501842,-3.872395,-3.9331913,-3.9041238,-3.7119317,-3.9502845,-3.9811206,-3.9851494,-4.0433936,-4.0840297,-4.109454,-4.1013675,-4.069196,-4.075562,-4.126062,-4.109034,-4.070006,-4.0206113,-3.9795585,-3.9768252,-4.038449,-4.093167,-4.0137773,-3.9480972,-3.8794436,-3.9604888,-3.896503,-4.008801,-4.073192,-1.8128195,-3.3507023,-3.8215609,-4.046119,-4.079474,-3.9990683,-3.965407,-3.9074712,-3.8630538,-3.787012,-3.6578677,-3.719051,-3.7791014,-3.8087912,-3.7782402,-3.7989154,-3.7329698,-3.8092275,-3.925036,-4.019468,-3.9841046,-4.0478373,-4.1397805,-4.1644444,-4.2068257,-4.289806,-4.3574324,-4.3658385,-4.4345565,-4.485248,-4.4139934,-4.3168883,-4.282453,-4.1608243,-4.275554,-4.303345,-4.269695,-4.231458,-4.199384,-4.287366,-4.354427,-4.294439
+-0.8280825,-1.5204558,-1.9620886,-2.2408853,-2.4665987,-2.6812587,-2.8783972,-2.8400362,-2.9441156,-2.843604,-3.0497665,-3.125298,-3.225796,-3.2747664,-3.2588797,-3.3145084,-3.4803166,-3.5025628,-3.5371842,-3.54538,-3.5399625,-3.5105839,-3.5241141,-3.5238423,-3.5082943,-3.5588424,-3.5694013,-3.5499182,-3.5751557,-3.5822818,-3.5487802,-3.570177,-3.5895033,-3.5958152,-3.5889683,-3.588923,-3.597074,-3.595722,-3.5904694,-3.6116397,-3.6393967,-3.6545548,-3.6240516,-3.6458168,-3.6544967,-3.6179614,-3.5913823,-3.583862,-3.603616,-3.610642,-3.6719131,-3.7231736,-3.719337,-3.7423615,-3.6995559,-3.6921158,-3.6716096,-3.7067666,-3.6453974,-3.6595893,-3.655004,-3.6810098,-3.7084322,-3.747118,-3.7678657,-3.8325887,-3.8104992,-3.7555933,-3.7053704,-3.668922,-3.6579247,-3.6581748,-3.677788,-3.6994987,-3.716538,-3.698546,-3.7312107,-3.739102,-3.7735329,-3.8232527,-3.8149886,-3.7402105,-3.8024507,-3.8180566,-3.8338938,-3.7672763,-3.7450137,-3.8028684,-3.797216,-3.7500272,-3.7143993,-3.7582746,-3.7552562,-3.7928262,-3.8178492,-3.835153,-3.8427901,-3.819615,-3.8199868,-3.8247209,-3.8212686,-3.7960978,-3.800044,-3.8243365,-3.8322206,-3.7915015,-3.7898602,-3.8067412,-3.8612618,-3.8845754,-3.855618,-3.8398628,-3.8227544,-3.7838612,-3.7524896,-3.7607193,-3.790134,-3.7884102,-3.762971,-3.7403264,-3.7951941,-3.6875138,-3.7527032,-3.7535424,-3.7419295,-3.751164,-3.7756238,-3.8257203,-3.8315845,-3.7951603,-3.5570593,-3.521847,-3.7762284,-3.821014,-3.8923507,-3.9047208,-3.8982925,-3.8739238,-3.881353,-3.8667536,-3.8791003,-3.9079509,-3.8854313,-3.876616,-3.8631072,-3.8815045,-3.9045382,-3.884965,-3.8912263,-3.937858,-3.9263468,-3.8986402,-3.857119,-3.8220973,-3.845684,-3.8656793,-3.924232,-3.969627,-0.85629505,-1.7789242,-3.371544,-3.7837887,-3.7870708,-3.6675842,-3.602307,-3.6079385,-3.5690067,-3.6220896,-3.6075397,-3.6196089,-3.581088,-3.6359677,-3.4984894,-3.5626879,-3.6155553,-3.676997,-3.641498,-3.637934,-2.4322526,-3.3722658,-3.6552896,-3.5670588,-3.6110687,-3.6966982,-3.8107767,-3.7207503,-3.815176,-3.8032117,-3.8468094,-3.7900805,-3.7808127,-3.8020988,-3.840394,-3.881236,-3.9311786,-3.9345613,-3.9492307,-3.9265528,-3.9273734,-3.9232678,-3.9290156,-3.9451752,-3.9940724,-4.0046167,-3.935697,-3.9025865,-3.925552,-4.0126357,-4.0674014,-4.0084033,-3.9604278,-3.9657054,-3.960382,-4.0140862,-4.0616713,-4.0961056,-4.1010985,-4.148517,-4.2399473,-4.183233,-4.150879,-4.171965,-4.1583457,-4.071691,-4.073418,-4.184856,-4.257043,-4.2840447,-4.257063,-4.2126055,-4.0789795,-4.0856614,-4.235947,-4.1873097,-4.0504165,-4.167264,-4.1296744,-4.117885,-4.082022,-4.0147643,-4.1344748,-4.1609664,-4.0914097,-4.0942802,-4.1027656,-4.0816193,-3.237393,-3.8795476,-3.8749433,-3.8709245,-3.966002,-4.0368156,-4.0806937,-4.104318,-4.064407,-4.058518,-4.078415,-4.0970488,-4.045569,-4.048869,-4.015746,-4.0949817,-4.129292,-4.048818,-3.5256114,-1.9584966,-3.7317057,-3.8392859,-3.6702733,-3.760417,-3.7859569,-3.8435397,-3.6052036,-3.7914553,-3.7442918,-3.7263532,-3.7628603,-3.7969584,-3.8736224,-3.893682,-3.9134727,-3.9457316,-4.1003203,-4.096282,-4.0515666,-4.053124,-4.0341716,-3.9544058,-2.3502283,-3.4159777,-3.6058826,-3.6463134,-3.6883056,-3.7596445,-3.7034135,-3.625421,-3.765967,-3.8002534,-3.7871299,-3.8386035,-3.935554,-4.0128045,-4.10004,-4.132806,-4.0906396,-4.0618935,-4.044912,-4.1219926,-4.152944,-4.097566,-4.0351095,-4.067784,-4.1216645,-4.2214875,-4.282723,-4.140967,-4.1106663,-4.1075454,-4.098166,-4.122676,-4.103948,-4.152708,-4.0552,-1.7347333,-3.4075794,-3.5869367,-3.6811545,-3.7496743,-3.7500353,-3.7853475,-3.948678,-3.9637456,-3.908523,-3.8947606,-3.971158,-4.127127,-4.1335335,-4.084599,-4.0893397,-4.05162,-4.1990666,-4.2071414,-4.213012,-4.2862477,-4.25615,-4.2321763,-4.273619,-4.3168387,-4.3390393,-4.341423,-4.3773866,-4.378285,-4.3604627,-4.3250556,-4.3051953,-4.2997994,-4.2687097,-4.3739433,-4.3932204,-4.271024,-4.2268405,-4.2288747,-4.3360295,-4.368618,-4.254044
+-0.5088498,-1.481255,-2.3128135,-2.6548448,-2.4775476,-3.3276815,-3.4886212,-3.5121958,-3.5726829,-3.7674518,-3.8672423,-3.7231412,-3.6929317,-3.7120438,-3.1035962,-3.9392142,-3.9455962,-4.0041485,-4.112694,-4.093019,-4.179671,-4.1674623,-3.07368,-3.4323788,-3.4245613,-3.5769088,-3.6756032,-3.6516163,-3.6964097,-3.770887,-3.8494859,-3.858819,-3.9430442,-4.1166186,-4.0515656,-4.1282945,-4.3455853,-4.3303933,-2.6343668,-3.4683723,-3.789689,-3.5492535,-3.7539568,-3.9391584,-3.9057631,-3.9385252,-4.0426884,-3.9041586,-3.4621162,-3.3794951,-3.1169815,-3.137855,-3.0767617,-3.1790519,-3.2821152,-3.502704,-3.5964646,-3.7486496,-3.8481216,-3.5590482,-3.8673687,-4.0770297,-4.074546,-4.311928,-4.3620343,-4.2623096,-4.2621007,-4.2914376,-4.16124,-3.3622985,-4.2210083,-3.0576077,-4.0307016,-4.5077753,-4.302217,-4.708382,-4.258896,-4.707961,-4.407765,-4.088193,-4.5334907,-3.6120586,-4.241866,-4.45828,-3.8200607,-3.5570295,-3.845127,-4.047485,-4.3099823,-3.9470448,-4.1116233,-3.0734363,-3.9473085,-4.341626,-4.440086,-4.5770473,-3.7589812,-4.0740256,-4.3343167,-4.124803,-4.2550497,-3.1234498,-3.3121448,-3.3780723,-3.4670792,-3.7416124,-3.219864,-3.7060132,-3.7207932,-3.3440492,-3.7235494,-4.0108175,-3.7599773,-3.2879033,-3.7430997,-4.0357947,-3.5247402,-3.35887,-3.5583248,-3.8989964,-3.9882588,-3.962019,-4.0927052,-4.337679,-3.190373,-3.9022737,-4.2391887,-4.027635,-3.8230882,-3.1449397,-3.4758506,-3.4266622,-3.7289166,-3.5675683,-3.9241395,-3.7798352,-3.6921983,-4.138469,-3.9496799,-3.528288,-3.965662,-4.22117,-4.3188634,-4.356425,-3.1529129,-3.8820643,-3.7091308,-3.820828,-4.110004,-4.1431293,-4.227661,-3.581656,-4.0404487,-3.7981997,-4.0772166,-4.3398585,-4.37437,-4.287812,-4.3700147,-4.085604,-4.0336494,-3.8619556,-4.28538,-3.3016353,-3.928866,-4.06432,-4.035781,-4.046412,-4.092998,-4.130608,-4.248058,-4.215111,-4.2723365,-4.2681165,-2.8642247,-3.6464906,-3.8834262,-4.0892634,-4.1989207,-4.174378,-4.109322,-4.0877786,-4.073828,-4.1105504,-4.069117,-4.1226993,-3.9647145,-4.0754857,-4.280321,-3.6729615,-3.864141,-4.10063,-3.2180674,-3.32322,-2.8964207,-2.8259783,-2.509428,-2.8948631,-3.353148,-3.5149724,-3.4876866,-3.6438618,-3.7804322,-3.8023887,-3.8923206,-3.9029841,-3.9453974,-4.0086327,-4.085812,-4.0548306,-3.3295674,-3.8263392,-3.996747,-3.350332,-3.620215,-3.748777,-3.8868594,-3.9499412,-3.9767199,-4.0197606,-4.0612745,-4.129507,-4.1099567,-4.0987344,-4.1261334,-4.19844,-4.2388077,-4.222946,-3.9371367,-4.0565057,-4.149264,-3.9399152,-3.8069358,-3.7743106,-3.6289942,-3.5807698,-3.489214,-3.3974862,-3.3994842,-3.3491318,-3.3078856,-3.1966267,-3.110746,-3.0235703,-2.8898091,-2.8987682,-2.6896553,-2.5944908,-2.4333422,-2.5186336,-2.548389,-2.528747,-2.469139,-2.357588,-2.406089,-2.4215398,-2.5194077,-2.5301652,-2.5479507,-2.421413,-2.4476688,-2.4754174,-2.4857442,-2.3923273,-2.4280539,-2.4748502,-2.496519,-2.1314673,-1.9620631,-2.178024,-2.21921,-2.3470917,-2.3427267,-2.254959,-2.3887818,-2.125208,-2.2501953,-2.3092568,-2.429807,-2.5008743,-2.3063562,-2.3931751,-2.4630036,-2.2749457,-2.4188066,-2.6159248,-2.4918165,-2.5601587,-2.5182703,-2.4482684,-2.349623,-2.1488605,-1.9215016,-1.7429986,-1.8284547,-1.8848329,-1.8796511,-1.8632317,-1.9607935,-2.005417,-2.0598662,-2.017448,-1.868072,-1.8053396,-1.8738904,-1.9700539,-2.0294037,-1.920233,-2.1104093,-1.905869,-1.7876022,-1.8253732,-2.06881,-2.1360722,-1.9956877,-1.5915046,-1.8155255,-1.9121385,-1.8027248,-1.6258233,-1.38029,-1.0293217,-0.9642815,-1.0624936,-0.9277238,-0.9446979,-0.66190296,-0.8604558,-1.1549406,-1.185365,-1.3427312,-1.3789515,-1.4996045,-1.4994268,-1.5480187,-1.3241656,-1.1841719,-0.95671064,-1.0940132,-1.2225358,-1.3357291,-1.3679762,-1.4762669,-1.3988717,-1.4637308,-1.4687445,-1.3588324,-1.1796343,-0.8921234,-0.69269377,-0.5211894,-0.5159225,-0.2328844,-0.05516258,-0.14359877,0.068418354,0.5363599,0.9428996,1.057508,0.49294078,-0.5808825,-1.1450281,-1.7563064,-2.298825,-2.6127472
+-0.45419556,-1.1405151,-1.5239129,-1.9611213,-2.0390482,-2.5504365,-2.737328,-2.8714685,-2.8392382,-2.907971,-3.1301024,-3.0992546,-2.706247,-2.551323,-2.5018334,-3.1750789,-3.2755446,-3.2265034,-3.2296252,-3.2128174,-3.17799,-3.2507482,-3.1132245,-2.4655828,-2.9559271,-3.104337,-2.9731078,-2.98061,-3.1709347,-3.1227176,-3.3686113,-3.282987,-3.181944,-3.2287931,-3.2448723,-2.9696822,-3.310793,-3.344294,-2.0936365,-2.6303082,-3.0990393,-3.3973851,-2.8627791,-3.4132185,-3.248333,-3.1238742,-3.3418038,-3.1848726,-2.8118837,-3.082617,-2.490044,-3.2009974,-3.0804806,-3.116508,-3.224783,-3.144184,-3.1045985,-3.11951,-3.1351552,-2.901731,-2.9995182,-3.0648017,-2.9844174,-3.065053,-3.0749571,-3.1129162,-3.1529293,-3.0764632,-3.2299528,-2.7882175,-3.3459566,-2.4519362,-3.3051798,-3.620605,-3.3165576,-3.5937536,-3.4097998,-3.6810653,-3.0818548,-3.5096612,-3.6120954,-2.9444897,-3.6119153,-3.5822036,-3.1996915,-3.4048676,-3.2591305,-3.4606018,-3.3090367,-3.4849606,-3.5206645,-3.5818486,-3.6199577,-3.6954465,-3.7303195,-3.7379103,-2.5000334,-3.730812,-3.710693,-3.6877298,-3.7253108,-2.846362,-3.81955,-3.7234845,-3.8362284,-3.8460717,-3.6877413,-3.721912,-3.7306046,-3.751802,-3.7502685,-3.790134,-3.8530545,-3.8840823,-3.9083304,-3.9608822,-3.120324,-3.7431436,-2.3647351,-3.2288783,-3.607091,-3.5564477,-3.474676,-3.5015492,-3.6085868,-3.6062326,-3.5638423,-3.627853,-3.6068916,-3.609319,-2.7172785,-2.6044545,-3.3153625,-3.4182503,-3.4354718,-3.5023,-3.244714,-3.4531236,-3.5167027,-3.207131,-3.0365486,-3.5215542,-3.517106,-3.4879417,-3.537931,-3.6893554,-3.702478,-3.7370648,-3.7672648,-3.8036652,-3.7803168,-3.7733455,-3.7647552,-3.8435473,-3.9172902,-3.879643,-3.0024056,-2.468814,-3.4400342,-3.5488632,-3.5902634,-3.6176004,-3.714932,-3.6767364,-3.1986883,-3.7102556,-3.749917,-3.6390755,-3.6919928,-3.6673894,-3.696906,-3.6856923,-3.7371883,-3.1530566,-2.6199503,-3.3587384,-3.5478795,-3.5553787,-3.6539948,-3.5553198,-3.5522387,-3.5480733,-3.6073418,-3.6353233,-3.5202234,-2.6325698,-3.1113908,-3.3523169,-3.5552378,-3.509867,-3.6420016,-3.610244,-2.9377832,-2.97341,-2.945517,-3.076178,-3.3564873,-3.4416106,-3.4858873,-3.3811169,-3.4137275,-3.4837005,-3.472879,-3.4716625,-3.2491689,-3.4683228,-3.4788623,-3.4939954,-3.4698133,-3.5511625,-3.529455,-3.5370107,-3.5614188,-2.557868,-3.5164795,-3.660124,-3.662982,-3.677299,-3.699391,-3.6977978,-3.7383714,-3.7901,-3.737894,-3.7314377,-3.73973,-3.7429013,-3.7487335,-3.7301621,-3.740521,-3.506342,-3.5475993,-3.4483945,-3.46432,-3.726894,-3.748921,-3.5512738,-3.5210621,-3.5753531,-3.5570824,-3.5981655,-3.566064,-3.513572,-3.442639,-3.3728402,-3.447055,-2.9969897,-3.193673,-3.0077605,-2.9548502,-2.679997,-2.543056,-2.4810338,-2.5211027,-2.280666,-2.4400249,-2.3810165,-2.4090824,-2.4315548,-2.2019153,-2.3692918,-2.3056028,-2.44035,-2.547404,-2.5575097,-2.505322,-2.4357438,-2.4571068,-2.290831,-2.156544,-2.2707329,-2.3609166,-2.435408,-2.3919063,-2.3314164,-2.3203368,-1.8686662,-2.0210872,-2.094027,-2.1192014,-2.1238718,-2.161203,-2.0611525,-2.0835872,-1.6070492,-1.6434987,-1.5541253,-1.7750263,-1.978148,-2.051989,-2.0827067,-2.0728421,-1.9497147,-1.795351,-1.6983962,-1.7031198,-1.7649589,-1.7944899,-1.7269711,-1.6280341,-1.826165,-1.8507981,-1.8515744,-1.8207526,-1.7717967,-1.8261921,-1.8343163,-1.9336276,-1.9290428,-2.0136817,-1.8882062,-2.0893574,-2.2252247,-2.130756,-2.085123,-2.104952,-1.6452196,-1.970916,-2.0303657,-1.9616423,-1.87187,-1.7600315,-1.5509999,-1.3994398,-1.4097714,-1.3601935,-1.6777732,-1.890667,-1.7869854,-1.7305393,-1.9027925,-1.9961255,-2.0995831,-2.102075,-2.0415616,-2.114001,-2.2940655,-2.2481787,-1.8742483,-1.7885981,-2.032348,-1.9211788,-2.1780927,-2.2747443,-2.3884292,-2.1953695,-2.1662025,-2.1001182,-1.885783,-1.2299714,-0.59865046,-0.80935067,-0.8355927,-0.010309815,0.38418937,0.23870158,0.31884545,0.6593732,0.71022975,0.6884732,0.47939736,0.26185858,0.16849214,-0.10879332,-0.30764818,-0.5795618
+-0.27578747,-1.7041776,-2.4691305,-2.8118963,-2.4724908,-3.386646,-3.5243804,-3.8599896,-3.993483,-4.039241,-4.0778623,-4.0730004,-3.3883955,-3.7407851,-3.4128437,-3.8110666,-3.942246,-4.124647,-4.1995893,-4.299849,-4.434151,-4.4986115,-4.3419547,-4.1026883,-4.3377075,-4.2405286,-4.201764,-4.1256256,-3.8916955,-4.2071366,-4.302729,-4.4254084,-4.536924,-4.5989366,-4.560083,-4.480617,-4.4238653,-4.3874784,-3.5788946,-3.6007953,-4.0320716,-4.2181163,-4.271784,-4.4471292,-4.0934033,-3.5549192,-4.1491036,-4.307139,-3.664865,-4.1765075,-3.2398663,-3.395472,-3.4563997,-3.5404105,-3.8191676,-4.0262327,-3.610499,-4.0375137,-4.40682,-4.440419,-4.493268,-4.555262,-4.550166,-4.428048,-4.381697,-4.501958,-4.5140424,-4.294506,-4.0935216,-4.0485015,-4.3061576,-4.3782034,-4.1942067,-4.4109855,-3.8201919,-4.68907,-3.4409666,-4.112819,-4.555868,-4.538896,-4.6580696,-4.5125327,-4.488463,-4.5527186,-4.2415996,-4.32966,-4.3892603,-4.3972564,-4.37715,-4.308707,-4.107772,-4.195619,-4.1929326,-4.138963,-4.0801616,-4.129153,-3.7397056,-4.1857142,-4.213466,-3.85961,-2.466198,-3.3858502,-3.91852,-4.0676274,-4.339185,-4.5214295,-4.2305546,-4.466927,-4.401527,-4.4674125,-4.380215,-4.346028,-4.331018,-4.106133,-4.0622163,-4.1263566,-3.9109054,-3.8521948,-3.798266,-4.228665,-4.213744,-4.1471543,-4.176233,-4.2607503,-3.8781419,-4.1193852,-4.3260922,-3.8342834,-3.3271985,-2.9039326,-4.4388485,-4.606138,-4.6603084,-4.6052594,-4.5815597,-4.6429377,-4.643501,-4.591741,-4.5647163,-4.4582534,-2.7260523,-4.2755065,-4.715827,-4.716024,-4.601007,-4.613376,-4.552851,-4.5409026,-4.4524426,-4.35951,-4.387944,-4.436833,-4.4686,-4.4250402,-4.3788753,-4.2834396,-3.1004236,-3.2753615,-4.417751,-4.096173,-4.3563485,-4.455363,-4.5519376,-4.5845585,-4.33443,-4.4985704,-4.6515427,-4.4963446,-4.634484,-4.525476,-4.1015763,-4.460029,-4.551168,-4.250775,-2.9712467,-4.030807,-4.305802,-4.4205003,-4.4814887,-4.5377116,-4.606133,-4.6218295,-4.597696,-3.013752,-4.0242805,-3.5163026,-4.330916,-3.8919873,-4.103272,-4.1047106,-3.95858,-4.043485,-4.163935,-3.934207,-4.020485,-4.1488748,-3.9381614,-4.2819915,-3.6905537,-3.7795396,-4.1734934,-3.9267168,-4.0784826,-4.280892,-4.3644514,-4.3039556,-4.418241,-4.445132,-4.2346997,-4.435024,-4.4093432,-4.527599,-4.5055976,-2.9100156,-3.820745,-3.9860044,-4.1631956,-4.2358365,-4.260732,-4.2719874,-4.265904,-4.32559,-4.383946,-4.4537673,-4.4068713,-4.4189067,-4.38528,-4.404472,-4.149738,-4.0165524,-4.1608653,-3.9622755,-3.9513984,-3.9801393,-4.0139027,-3.9221787,-3.564629,-3.3805466,-3.577196,-3.5907767,-3.6066163,-3.5866003,-3.2797725,-3.3331099,-3.495072,-3.383042,-3.4138663,-3.3884544,-3.3951988,-3.4283369,-3.5243638,-3.6300614,-3.534188,-3.3191571,-3.516804,-3.5839841,-3.60231,-3.678939,-3.2493985,-3.694542,-3.6254926,-3.5625703,-3.5530257,-3.4883463,-3.5362463,-3.6043253,-3.5727317,-3.4409027,-3.567412,-3.600489,-3.445932,-3.5237634,-3.601313,-3.2807288,-3.5356143,-3.471134,-3.6411448,-3.6291037,-3.5393782,-3.6367745,-3.5729,-3.5529273,-3.3597069,-2.3552256,-2.9202156,-3.169683,-3.2884068,-3.3574085,-3.3802936,-3.4206467,-3.4546134,-3.4180055,-3.2496552,-3.1048946,-2.974411,-3.2695794,-3.219498,-3.2096705,-3.4093182,-3.38799,-3.383312,-3.4376068,-3.3060186,-3.116199,-3.1959953,-3.0860162,-3.3258576,-3.4021647,-3.356947,-2.735149,-2.6559427,-2.5834312,-2.9154189,-2.833684,-2.3759823,-2.020012,-2.607089,-2.9192023,-2.9789133,-2.9600668,-2.948173,-2.591513,-2.3331053,-2.5540628,-2.0272884,-2.395483,-2.3849287,-2.3865097,-2.8861732,-2.8098092,-3.0678067,-2.924912,-2.8668218,-2.8848982,-3.1275048,-2.8210852,-2.6421578,-2.445766,-2.3419187,-2.6711917,-2.7152653,-2.289374,-2.2413042,-1.9434056,-2.3024187,-2.1365266,-2.2592468,-1.8987801,-1.5748985,-1.493859,-2.187749,-1.723772,-1.5081539,-1.888499,-2.1361945,-2.0021849,-2.0684254,-2.3092093,-1.9528363,-2.3878503,-2.1387525,-2.3257947,-2.3877728,-2.0744495,-2.044262
+-0.12785232,-0.708523,-1.398561,-2.009709,-2.3278668,-2.4308367,-2.588416,-2.6948051,-2.6129398,-2.4989367,-3.0458112,-3.2545545,-3.1884522,-2.9578013,-3.0730083,-3.4523425,-3.4895687,-3.4327297,-3.2067633,-3.7089663,-3.8119402,-3.9392257,-3.4694386,-3.047254,-3.1414528,-2.9582865,-2.92093,-2.8760269,-3.0865414,-3.5527663,-3.6170382,-3.6205068,-3.6984267,-3.7487311,-3.819971,-3.6252346,-3.7522278,-3.1236784,-3.244725,-3.096957,-3.898436,-4.019496,-4.0502563,-4.017904,-3.3576922,-3.760693,-4.0418124,-3.9311132,-4.171205,-4.023742,-3.7853513,-3.842257,-4.246449,-4.1808343,-4.004318,-4.125988,-3.7296329,-4.0973067,-4.0772185,-4.1120305,-4.2201343,-4.2211576,-4.228934,-4.197083,-4.1435976,-4.1261272,-4.0594296,-4.1479597,-4.1167464,-4.124985,-4.098082,-3.6098933,-4.06019,-4.178752,-4.299854,-4.402332,-4.4056206,-4.3614717,-4.3440404,-4.2924237,-4.227352,-4.229776,-4.0877943,-4.1082435,-4.1332603,-4.0423894,-4.049166,-4.0473404,-4.0794683,-3.992896,-3.6961164,-3.8830323,-4.1132092,-4.088507,-4.0551233,-4.057218,-4.054169,-3.9760938,-4.035975,-4.040584,-4.0577826,-4.021827,-4.0640917,-4.0621843,-4.0346923,-4.055617,-4.1020617,-4.026112,-4.074934,-4.0052643,-4.0106263,-4.029371,-4.0220885,-4.0072412,-4.0447774,-4.0784883,-4.103034,-4.1391616,-4.1649485,-4.1541524,-4.060937,-4.0320888,-4.037551,-4.062782,-4.0679445,-4.0409546,-4.014232,-3.9651685,-3.6777282,-4.0990176,-4.293264,-4.1581454,-3.9524817,-4.3228145,-4.2841263,-4.2920933,-4.271894,-4.215239,-4.1662726,-4.1427693,-4.1106606,-4.1166883,-4.1418376,-4.1576533,-4.092427,-4.066691,-4.086619,-4.079841,-4.049065,-4.082193,-4.1607556,-4.181352,-4.1658072,-4.111049,-4.025772,-3.9624987,-4.0070386,-3.930696,-3.9803867,-4.0157495,-4.0469146,-4.0404124,-4.1535234,-4.204286,-4.135171,-3.8835454,-2.8324833,-4.202282,-4.231398,-4.2152195,-4.259023,-4.297232,-4.303638,-4.188558,-3.8350558,-3.4617877,-3.2896945,-3.910482,-4.380621,-4.539238,-4.593132,-4.667173,-4.6739163,-4.676924,-4.6183324,-3.9627352,-4.2872944,-4.3788457,-4.358126,-4.4683456,-4.510506,-4.5371923,-4.5667896,-4.6768556,-4.5732064,-4.4937434,-4.5205464,-4.5153055,-4.515079,-3.9767737,-4.346722,-4.2242637,-4.2700715,-4.325704,-4.339174,-4.3737736,-3.9047484,-4.339938,-4.5063133,-4.5249677,-4.571602,-4.096429,-4.433635,-3.7789946,-4.395011,-4.491713,-4.5324845,-4.5467715,-4.5343337,-4.4993668,-4.5213146,-4.510905,-4.4893966,-4.4870453,-4.4662895,-4.4066186,-4.386553,-4.36872,-4.3781924,-4.391809,-3.4164524,-3.4129844,-3.5444553,-3.8234887,-3.3947937,-2.956801,-2.8301084,-2.050599,-2.1445684,-2.1799753,-1.755225,-1.6584239,-1.5454948,-1.677005,-1.7907753,-1.6373689,-1.6572866,-1.7069571,-1.910764,-1.6338892,-1.7955186,-1.6827669,-1.7924442,-1.657093,-1.7423935,-1.7244315,-1.7072835,-1.9252546,-1.9800746,-1.5964155,-1.8497126,-1.6115589,-1.6763053,-1.8593626,-1.999706,-2.015644,-1.9816921,-2.1461325,-1.9160638,-1.9841135,-1.8852811,-2.1142995,-1.9749336,-1.9997897,-2.0322843,-2.0600333,-2.3031306,-2.2196712,-2.319962,-2.1647415,-2.1798103,-2.0944757,-2.2495346,-2.1220329,-2.1122823,-2.021912,-2.120863,-2.2489066,-2.188575,-2.1328287,-2.0560808,-2.0490503,-2.1173248,-2.3744192,-2.4031854,-2.316319,-2.3005366,-2.1470957,-2.2853954,-2.3582697,-2.387282,-2.2081985,-2.1831079,-2.2097783,-2.1588974,-2.1639333,-2.2422347,-2.4034114,-2.3783255,-2.362812,-2.2854757,-2.337215,-2.0779092,-2.0965457,-2.1844964,-2.117103,-1.4940636,-1.8149586,-1.914536,-2.0104194,-2.1031644,-2.1555598,-2.3633506,-2.4599137,-2.257962,-2.3588195,-2.3510242,-2.0300527,-2.2534416,-2.4569125,-2.4832833,-2.4260044,-2.2845216,-2.490192,-2.5443563,-2.415992,-2.3912373,-2.412577,-2.48073,-2.5338967,-2.5657473,-2.552774,-2.4640224,-2.4061542,-2.3227193,-2.2153254,-2.2584827,-2.1707525,-1.9171274,-1.6950517,-1.5016499,-1.2940464,-0.87359434,-0.5669793,-0.3816852,-0.33442992,-0.8376202,-1.226017,-0.97551054,-0.98667437,-0.7954846,-1.1258798,-1.2205186,-1.2552805,-1.3900888
+0.34524953,0.033848166,-0.44545823,-1.3171225,-2.0022576,-2.2063122,-2.3751245,-2.3183749,-2.314671,-2.5478349,-2.643161,-2.6962237,-2.894654,-2.9529371,-2.7057254,-2.5969324,-2.6922426,-2.6182585,-2.6680293,-2.956788,-3.0828598,-3.3344083,-2.9844205,-3.046824,-3.2173133,-2.712805,-2.789153,-2.414411,-2.4434965,-2.6276274,-2.541134,-2.70793,-2.9021833,-3.0801036,-3.1802595,-3.3445678,-3.409124,-3.1942692,-3.0418575,-3.1324434,-3.3758738,-3.4979088,-3.625565,-3.7507148,-3.682651,-2.8274884,-3.2341366,-3.5088925,-3.5121565,-3.6058693,-3.551471,-3.9298773,-3.9817138,-4.09343,-4.0923495,-3.9290624,-3.7727566,-3.9682465,-3.8261695,-3.770268,-3.8104835,-3.819816,-3.9154763,-3.891222,-3.8580308,-3.9505568,-3.956078,-4.04431,-3.7947855,-3.8155236,-3.857986,-3.635658,-3.8483968,-3.6406791,-3.8821058,-3.8582797,-3.8618703,-3.863256,-3.8089767,-3.7700906,-3.6820617,-3.6863804,-3.5491054,-3.6446495,-3.6620598,-3.6085887,-3.6372452,-3.623907,-3.6429086,-3.5845869,-3.3847747,-2.8435307,-3.5985448,-3.305816,-3.6463537,-3.9156938,-4.098699,-4.052859,-4.0046167,-3.9418902,-3.892487,-3.79557,-3.8614402,-3.8338861,-3.8091326,-3.815493,-3.8304372,-3.7957668,-3.6131837,-2.435573,-3.5269368,-3.9194102,-4.0749526,-4.1195445,-4.0986953,-4.019035,-3.925568,-3.875173,-3.8288293,-3.7444768,-3.679771,-3.5256991,-3.5123184,-3.6526055,-3.7268128,-3.80837,-3.7627983,-3.7965212,-3.7962556,-3.7764487,-3.7618294,-3.71062,-3.6580443,-3.6353025,-3.6357067,-3.6495676,-3.5897508,-3.5709815,-3.5447164,-3.5211456,-3.5514483,-3.5748692,-3.567082,-3.5387065,-3.5479283,-3.5210748,-3.5204587,-3.5029783,-3.5283103,-3.4964943,-3.4953918,-3.4702725,-3.4751034,-3.4351168,-3.411441,-3.4712863,-3.5483031,-3.6761832,-3.6387796,-3.6294193,-3.576294,-3.51932,-3.5532668,-3.512302,-3.4733868,-3.41369,-3.3860059,-3.459555,-3.4539995,-3.4529443,-3.4540272,-3.4431884,-3.3937097,-3.3817549,-2.1937733,-3.0897834,-3.4792151,-3.592524,-3.6674762,-3.7653065,-3.811235,-3.8098073,-3.7333064,-3.8150997,-3.8012533,-3.7378683,-3.6804042,-3.7266273,-3.6832473,-3.7547832,-3.805604,-3.7920108,-3.7698293,-3.6958132,-3.615213,-3.5863926,-3.5408654,-3.5162451,-3.42269,-3.4933162,-3.4140334,-3.4332185,-3.533924,-3.5768673,-3.5287266,-3.4848852,-3.3366354,-3.2361798,-3.5993342,-3.6704738,-3.670428,-3.6776793,-3.5863008,-3.6237514,-3.6201277,-3.449284,-3.5669134,-3.61279,-3.6160328,-3.6014833,-3.6104891,-3.6216686,-3.6683376,-3.6852694,-3.6454887,-3.64866,-3.6552186,-3.6466336,-3.6421137,-3.622233,-3.1812577,-3.0236511,-3.199219,-3.3130841,-2.8903348,-2.3945847,-2.5187309,-2.1866946,-2.4119778,-2.4241304,-2.1063848,-1.8441863,-1.648464,-1.6566827,-1.7332458,-1.6936066,-1.5911603,-1.6718202,-1.743082,-1.646111,-1.6389549,-1.771224,-1.7267032,-1.7457647,-1.4720969,-1.5599897,-1.6957457,-1.6995203,-1.6652174,-1.23,-0.69750816,-0.81257826,-0.9697768,-1.054672,-1.1612904,-1.0034921,-0.9344098,-0.9148752,-0.7565469,-0.8992757,-1.0364337,-1.129489,-1.182159,-1.2069983,-1.2169075,-1.2112095,-1.1509619,-1.2390428,-1.2809124,-1.2987733,-1.4977553,-1.3893161,-1.233535,-1.3011103,-1.5112693,-1.5250847,-1.6885877,-1.6598017,-1.7099645,-1.6911709,-1.6692736,-1.5552559,-1.4478168,-1.5069673,-1.5486877,-1.6179936,-1.5773587,-1.49172,-1.7576602,-1.712462,-1.6501458,-1.6133487,-1.5642571,-1.4517307,-1.3889639,-1.3761351,-1.3861971,-1.3606496,-1.3814404,-1.3336866,-1.3676867,-1.3111067,-1.4532201,-1.6764286,-1.5596623,-1.4651661,-1.9003317,-1.9478865,-1.8214293,-1.6912165,-1.6395972,-1.6339483,-1.6305473,-1.6928236,-1.818634,-1.8714943,-1.6926818,-1.6815736,-1.9253683,-1.9335136,-1.7648005,-1.6609702,-1.6053822,-1.7611413,-1.7411544,-1.6003337,-1.5896487,-1.6151197,-1.5670705,-1.7863715,-1.8135114,-1.8155923,-1.8126416,-1.7208271,-1.5953531,-1.6552544,-1.6191452,-1.3808894,-1.1740949,-1.0544455,-0.8673337,-0.611207,-0.6788917,-1.1490364,-1.567081,-1.9680762,-2.0084572,-1.8945634,-1.5690434,-1.3331568,-1.1929824,-1.0935378,-1.1075377,-0.92616004,-0.8289328
+-1.2441614,-1.8711734,-2.137056,-2.1980696,-2.1417685,-2.2102237,-2.2287776,-2.1118355,-2.5557866,-3.1318965,-3.2730882,-3.3597944,-3.2934303,-3.196939,-2.811883,-3.4818017,-3.516608,-3.5435433,-3.5374873,-3.4756188,-3.4171562,-3.3427446,-3.3425474,-3.4252398,-3.346024,-3.4502368,-3.9856982,-2.7465181,-3.8744407,-3.3135643,-3.7560334,-3.8116603,-3.6735725,-3.6232908,-3.6340554,-3.656384,-3.6146042,-3.7441335,-3.6956067,-3.7701292,-3.9343567,-3.787084,-3.7988892,-3.7690377,-3.7696848,-2.999528,-3.6634371,-3.5631802,-3.9999337,-3.804686,-3.7688284,-3.7303286,-3.8537183,-3.8477173,-3.8819308,-3.997497,-3.927743,-3.992024,-3.97327,-3.9146013,-3.8877435,-3.8891559,-3.8757358,-3.8846688,-3.9016118,-3.891489,-3.8596783,-3.8164868,-3.862784,-3.8252873,-3.8061385,-3.5829165,-3.7955375,-3.7703881,-3.7727962,-3.7425084,-3.733613,-3.7754483,-3.7953048,-3.8096175,-3.8363109,-3.852345,-3.977222,-3.8407297,-3.846086,-3.895876,-3.9291553,-3.9961352,-4.073029,-4.0818176,-3.8861456,-3.4841142,-3.978414,-3.9250174,-4.0137177,-3.9169445,-3.8998308,-3.923863,-3.9499917,-3.93392,-3.8817372,-3.9582343,-3.9269214,-3.9304037,-3.9668255,-3.957799,-3.8885894,-3.9668293,-3.7188315,-3.991138,-3.9917512,-3.683355,-3.970632,-3.9593287,-3.902863,-3.8939843,-3.9130397,-3.8784227,-3.9142394,-3.9483075,-3.543449,-3.2853527,-3.9494262,-3.7560792,-3.830679,-4.0976834,-3.8213944,-3.8474898,-4.052828,-3.9943147,-3.9434323,-3.914554,-4.0076942,-4.0100007,-4.042168,-4.075928,-4.115233,-4.071876,-4.067942,-4.0274997,-3.9950895,-3.965613,-3.9591827,-3.905634,-3.696116,-3.8316827,-4.0059667,-3.895513,-2.6749156,-3.9207854,-3.914637,-3.9710298,-4.0021167,-4.067989,-3.8168569,-3.014038,-4.0484376,-4.0908237,-4.178271,-4.230799,-4.2128744,-4.2087197,-4.1898894,-4.1925507,-4.2144356,-4.254238,-4.279098,-4.2504554,-4.203948,-4.214051,-4.1984487,-4.1837296,-3.0790668,-3.8375778,-3.2160673,-3.8062935,-4.141372,-3.9644432,-3.9598937,-3.9477906,-3.9624748,-3.7496257,-3.684977,-4.1466494,-4.157371,-4.0934353,-4.141191,-4.161481,-4.1541505,-4.0327806,-4.0623927,-4.111176,-4.1712327,-4.2346168,-4.152297,-4.1250625,-4.1031795,-4.0626206,-4.09892,-4.1163907,-4.149271,-4.0790515,-4.0354905,-4.071698,-4.0673766,-4.113163,-3.6857367,-2.6186392,-4.035646,-4.052916,-4.1087537,-4.125343,-4.107244,-4.1257915,-4.1482644,-3.9846988,-3.9293618,-3.9828734,-4.065341,-4.160849,-4.1318593,-4.0213733,-4.040479,-4.062112,-4.0711694,-4.1005063,-4.112619,-4.050167,-4.0365405,-3.9486308,-4.0641108,-3.898028,-3.9465685,-4.1088576,-2.3826008,-4.121427,-4.0458155,-4.0385327,-3.7588153,-3.6997871,-3.8575063,-3.844184,-3.741766,-3.6549716,-3.6372738,-3.5012298,-3.5066822,-3.5673552,-3.6405988,-3.6515403,-3.6057086,-3.4926028,-3.6822808,-3.828998,-3.9948053,-4.074248,-4.08941,-4.0670185,-4.077191,-3.8581905,-3.0460186,-3.5846374,-3.4021058,-3.4171636,-3.475489,-3.240756,-3.0685658,-3.2453127,-3.3406858,-3.3653555,-3.266036,-3.3112578,-3.214178,-3.2297547,-2.7238984,-3.1207817,-3.0843241,-3.1355693,-3.1567535,-3.175063,-3.0912933,-3.03225,-3.1345315,-3.1947906,-3.1428008,-3.4265623,-3.5109587,-3.152559,-3.3545349,-3.6420102,-3.7066898,-3.515955,-3.5073051,-3.5682921,-3.2995343,-3.063754,-3.2235827,-2.7347622,-2.930933,-2.8492155,-2.7082467,-2.596736,-2.5202544,-2.4544675,-2.4413118,-2.4520912,-2.4679017,-2.5080793,-2.523727,-2.6735501,-2.8623078,-3.0183668,-3.318643,-3.6758304,-3.823956,-3.8977227,-3.859755,-3.4302802,-3.6801052,-3.8051581,-3.7536068,-3.84692,-3.909924,-3.2767367,-3.8499656,-4.05729,-4.0736237,-4.078076,-4.0995235,-3.888772,-3.9262137,-3.9164143,-3.7992334,-3.9805303,-3.8582892,-3.7661529,-3.7630935,-3.8851423,-3.8194613,-3.8161492,-4.0545206,-4.030711,-3.987131,-3.9205518,-3.9110885,-3.920277,-3.8133993,-3.8563466,-3.7611852,-3.7300296,-3.7613516,-3.6917505,-3.7222066,-3.7149844,-3.8351197,-3.705288,-2.7426367,-4.074658,-3.9698844,-4.0299754,-4.0566382,-4.0118785,-3.893909,-3.9545665,-2.9206076
+-1.3791208,-2.0360172,-2.221226,-2.2888267,-2.2902136,-2.390675,-2.4782434,-1.9073145,-3.0486026,-3.3492908,-3.5069656,-3.742228,-3.8309054,-3.899675,-3.7422585,-3.122874,-3.7210193,-3.677883,-3.752108,-3.7840848,-3.854425,-3.8157372,-3.8956137,-3.920021,-4.0052114,-4.1341605,-4.2355094,-3.2410603,-3.9072356,-3.140426,-3.255784,-3.678963,-3.8071337,-4.119875,-4.188771,-4.142673,-3.9797893,-3.9359708,-4.007913,-4.300471,-4.1216183,-4.110708,-4.123037,-4.204933,-3.9817972,-4.1720624,-3.9855046,-3.9589438,-4.2669687,-4.1645555,-4.110998,-4.113752,-4.1675553,-4.2033715,-4.2407913,-4.0617223,-4.3285866,-4.318011,-4.2981486,-4.2709002,-4.3817124,-4.4260006,-4.413548,-4.4281554,-4.4786267,-4.515901,-4.4683127,-4.4565105,-4.537713,-4.529653,-4.562872,-3.8747988,-4.579677,-4.5940714,-4.586692,-4.5126443,-4.4813113,-4.531984,-4.5234275,-4.515988,-4.555294,-4.5365415,-4.473559,-4.6598067,-4.6094737,-4.6004596,-4.5749454,-4.5703726,-4.400004,-3.7924843,-3.969356,-3.8201165,-3.7273784,-4.299022,-4.3610263,-4.3804927,-4.3529277,-4.3945985,-4.439961,-4.448401,-4.3755765,-4.377607,-4.3605456,-4.391656,-4.439674,-4.457332,-4.4394984,-4.296964,-3.0697494,-3.9666915,-4.0650043,-4.1060634,-4.319383,-4.106505,-4.0250807,-4.2238917,-4.2286334,-4.209934,-4.0918474,-3.9391675,-3.8187938,-3.496098,-3.651274,-2.780074,-3.5985758,-3.4247818,-3.631029,-4.2117605,-4.0743184,-4.36286,-4.4058876,-3.2304978,-3.2264352,-3.7923136,-4.110183,-4.354064,-4.3064885,-4.348029,-4.1402717,-4.014911,-4.031203,-4.1491,-4.2735295,-3.6498172,-4.1568017,-3.8960466,-4.3808436,-3.5158234,-3.853342,-4.0593853,-4.3217206,-4.5449986,-4.5329957,-4.503955,-3.9423623,-4.2726474,-4.2415643,-4.205618,-4.269714,-4.3767333,-4.3311315,-4.397279,-4.4353447,-4.440823,-4.401712,-4.3639445,-4.3372464,-4.333092,-4.370956,-4.416005,-4.464697,-4.505386,-2.027327,-3.686043,-3.5268981,-3.7148037,-4.171387,-4.3129816,-4.4718537,-4.582467,-3.8944283,-3.8159003,-3.6834693,-4.2795944,-4.472626,-4.49808,-4.385121,-4.553719,-4.50421,-4.429357,-4.545687,-4.5010962,-4.5542216,-4.5291767,-4.447637,-4.4552307,-4.420058,-4.3226633,-4.2545366,-4.216372,-4.2535825,-4.225665,-4.2139964,-4.300821,-4.31034,-4.3055267,-4.055,-2.7851758,-4.1648226,-4.371521,-4.431101,-4.4412456,-4.3639417,-4.342894,-4.2955766,-4.326445,-4.3687487,-3.257906,-4.0651264,-4.361171,-4.5306363,-4.5416465,-4.554438,-4.5832343,-4.607243,-4.5875287,-4.6180644,-4.586742,-4.511535,-4.4085994,-4.445441,-4.3932405,-4.440888,-4.5417323,-3.289054,-4.3596625,-4.475961,-4.474544,-4.371145,-4.43066,-4.4108596,-3.7297463,-3.9050736,-3.794456,-3.8330512,-4.069886,-3.9931183,-3.9814138,-3.9306483,-4.124456,-4.1525187,-4.177948,-4.2129197,-4.2611012,-4.365561,-4.4144115,-4.466183,-4.380566,-4.3918967,-3.1717224,-4.126708,-3.956902,-3.6706305,-3.4877934,-3.6932216,-2.80636,-3.3430948,-3.1076465,-3.4077451,-3.288098,-3.048844,-2.9718194,-2.9832778,-2.956373,-2.7965412,-3.2844872,-3.2418747,-3.4011068,-3.5707316,-3.7769556,-3.2940822,-3.3332057,-3.2918386,-3.29849,-3.5511832,-3.7091508,-3.9409122,-3.9049058,-3.9333787,-4.093357,-4.248895,-4.0846887,-4.052226,-3.661212,-3.7912145,-3.2068722,-3.3748503,-3.1321757,-3.0012155,-3.0469317,-2.7170355,-2.601086,-2.4728727,-2.405986,-2.4019604,-2.3503277,-2.3297164,-2.328431,-2.3578672,-2.570527,-2.8526843,-3.2523563,-3.2182705,-3.5779977,-3.9240022,-4.1060815,-4.246243,-3.7360697,-4.0011735,-4.0828567,-4.0347743,-4.1371813,-4.032445,-4.06169,-3.9478254,-4.1534495,-4.211513,-4.1890078,-4.1987696,-4.0604057,-4.0027113,-4.1717725,-3.5614865,-3.3784678,-3.5217073,-3.5821311,-3.7592978,-3.870201,-4.005739,-3.9826622,-4.1547155,-4.1934032,-4.233817,-4.2484517,-4.2102137,-4.1387043,-4.099667,-4.133744,-4.188126,-4.198441,-4.1819153,-4.1398215,-4.0575027,-4.0644555,-4.058432,-3.9730463,-2.573395,-3.9255586,-4.2479672,-4.234811,-4.338122,-4.07696,-4.091473,-4.115641,-3.4291317
+-0.5064729,-0.9715237,-1.4085519,-1.7308564,-2.0151603,-2.053331,-2.1331666,-1.953748,-3.3624387,-3.474986,-3.660151,-3.793096,-3.9066577,-3.944139,-3.9415717,-3.8557706,-3.7460608,-3.671629,-3.7967582,-3.9079194,-3.9514985,-3.983727,-3.990488,-4.148845,-4.044825,-4.086833,-4.149112,-4.0844383,-3.9844756,-3.7666502,-2.8085992,-3.6253219,-3.6709087,-3.9484272,-4.0251393,-4.0727916,-3.986032,-3.723681,-3.96738,-4.1136007,-4.209866,-4.2285414,-4.1736846,-4.1909523,-4.203009,-4.218724,-3.1391063,-3.0329385,-3.8606658,-4.1194544,-4.1576877,-4.24081,-4.2958856,-4.2677083,-4.2908587,-4.277115,-4.2930827,-4.3005424,-4.2591825,-4.2777214,-4.290903,-4.279352,-4.253572,-4.262692,-4.303324,-4.3739667,-4.3478107,-4.3500614,-4.3854046,-4.3929067,-4.3746505,-2.6648145,-4.1198993,-4.284829,-4.393859,-4.393206,-4.3885837,-4.3948207,-4.3654275,-4.402713,-4.496738,-4.544154,-4.5207543,-4.501496,-4.5128603,-4.4846735,-4.5300508,-4.486211,-4.2713876,-3.4839692,-3.7770648,-4.160322,-2.2492704,-3.932767,-4.122636,-4.207809,-4.2261043,-4.267094,-4.2437987,-4.2409167,-4.2414556,-4.2667394,-4.305692,-4.3651576,-4.412862,-4.4690614,-4.4734306,-4.4780345,-4.491391,-2.601562,-3.4407854,-3.8303614,-3.2621574,-3.9185405,-4.1389756,-3.534252,-3.7481456,-4.1412354,-4.0485153,-4.2042065,-4.026314,-2.8093226,-3.362836,-3.4709067,-3.950871,-3.9203768,-3.3963675,-4.2391295,-4.438722,-4.4406443,-4.410738,-4.3864245,-3.5158114,-4.21911,-4.0664873,-4.2073617,-4.338671,-4.31859,-4.2208037,-3.6608949,-4.2872314,-4.1994796,-4.3989744,-4.3073716,-2.968367,-3.7880301,-4.2596164,-4.421484,-2.8792605,-4.144684,-4.390459,-4.4637675,-4.4688153,-4.374953,-4.4113393,-4.3707843,-4.2811885,-4.292486,-4.338177,-4.393212,-4.3927903,-4.3508887,-4.347369,-4.3545895,-4.3276134,-4.242594,-4.3461843,-4.4882536,-4.4293766,-4.40957,-4.4366727,-4.533606,-4.3849807,-4.050133,-4.378135,-4.412206,-4.451794,-4.357578,-4.4678545,-4.256063,-4.122729,-3.8202167,-4.3952203,-4.4692836,-4.246116,-4.2022634,-4.4454684,-4.5355773,-4.5404854,-4.3441734,-4.2140946,-4.468536,-4.5408278,-4.492775,-4.473143,-4.423779,-4.424651,-4.430522,-4.394485,-4.347421,-4.405547,-4.2981486,-4.2267833,-4.366054,-4.425569,-4.3896027,-4.3677483,-3.3542747,-4.246939,-4.486929,-4.476113,-4.501188,-4.461268,-4.378912,-4.3362412,-4.2385445,-3.005185,-2.7237768,-3.8936563,-4.04464,-4.074402,-4.020503,-3.9300265,-3.8611674,-3.910513,-4.0079093,-4.049807,-3.8813033,-3.9926906,-4.012851,-4.036725,-3.719873,-4.0151935,-4.09745,-2.101925,-3.28472,-3.340385,-3.2059708,-3.223836,-3.3388953,-3.0972157,-2.5963511,-2.459978,-2.2255168,-2.134457,-2.1424956,-1.9997971,-2.0640962,-2.2510295,-2.323597,-2.3900652,-2.3573444,-2.3488386,-2.1841295,-2.1540716,-2.0231256,-1.9568272,-2.0026371,-2.1496181,-1.7262015,-2.1057858,-2.3328404,-2.0356102,-2.014577,-2.0901008,-1.7093334,-2.6343663,-2.0813448,-1.6702278,-1.5926719,-1.6050417,-1.8086872,-1.7583172,-1.8100009,-1.6482103,-1.5432956,-1.8742299,-2.156499,-2.3850236,-2.6083655,-2.7190142,-2.798959,-2.6192007,-2.528897,-2.5483034,-2.402267,-2.417843,-2.3448935,-1.9225767,-1.9930573,-2.2865088,-1.9943216,-2.0380182,-2.040619,-1.9444871,-1.3733523,-1.8273497,-2.2740233,-2.2727528,-2.422388,-2.544712,-2.710821,-2.7729163,-2.8191218,-2.8488178,-2.8982582,-2.940464,-2.9503348,-2.9580822,-2.9169862,-2.8939939,-2.76118,-2.5819302,-2.422851,-2.0144992,-1.6653593,-1.8654737,-2.182287,-2.6203358,-2.8310845,-2.6794999,-2.6752768,-2.6866379,-2.6938744,-2.6634865,-2.907638,-3.1217575,-3.3478312,-3.565421,-3.3242188,-2.9753828,-2.6571019,-2.5218968,-1.6028903,-2.157143,-2.1534784,-2.2208638,-2.274188,-2.0607197,-2.2011747,-2.230483,-2.1788788,-2.4349933,-3.0203195,-3.5258994,-3.6956887,-3.6890807,-3.6874413,-3.7883506,-3.9319057,-3.9313989,-3.9346776,-3.951489,-3.924924,-3.9326897,-3.8768902,-2.7304976,-3.5537987,-3.9287906,-4.1698537,-4.148475,-4.2316875,-3.9483318,-4.0947366,-3.9047484
+-1.3028536,-1.7330651,-2.0213742,-2.2758462,-2.400977,-2.5143085,-2.6268508,-2.2929108,-2.8967936,-2.3324778,-2.8689013,-3.2180648,-3.2632155,-3.352504,-3.427255,-3.3759568,-3.3613534,-3.406394,-3.4328294,-3.473052,-3.5169005,-3.556013,-3.589703,-3.61026,-3.6704557,-3.693029,-3.7196746,-3.7529306,-3.6931548,-3.7282453,-3.4793732,-3.680146,-3.7278323,-3.748516,-3.812904,-3.8162732,-3.390336,-3.776216,-3.86067,-3.9126863,-3.8845239,-3.853736,-3.865314,-3.862762,-3.9390674,-3.9676538,-3.9556756,-3.857985,-3.8996515,-3.9634423,-3.9989605,-4.011162,-4.0138288,-4.018938,-4.0240064,-4.024911,-3.9985604,-3.974742,-3.9857526,-3.9895854,-3.9842362,-3.9559603,-3.934888,-3.8921065,-3.8599038,-3.8887753,-3.921476,-3.9808927,-3.9868493,-3.9823298,-3.9578052,-3.9454055,-4.006363,-4.0190434,-4.0390773,-4.048348,-4.04938,-4.037681,-3.9887176,-3.913527,-3.9643493,-4.0290713,-4.046311,-4.046695,-4.033147,-4.048776,-3.9967666,-3.9778748,-3.9860816,-4.012522,-3.539948,-3.622894,-4.0264945,-4.171743,-4.23717,-4.2444882,-4.2404747,-4.192328,-4.1968265,-4.1829724,-4.185944,-4.1879163,-4.2030587,-4.2091274,-4.187283,-4.184298,-4.17524,-4.1651874,-4.114013,-4.0895057,-4.1805344,-4.166367,-4.1570554,-4.159626,-4.1687026,-4.162695,-4.154772,-4.1554446,-4.1613894,-4.1698976,-3.117111,-4.024147,-4.118286,-3.9340405,-3.5516064,-3.7756696,-4.058457,-4.166203,-4.2434535,-4.2564716,-3.0996988,-3.731063,-2.6951709,-3.8016129,-3.9796023,-4.0110426,-3.994361,-4.0221615,-4.074715,-4.101955,-4.132302,-4.1294017,-4.1299834,-4.121245,-4.0074725,-4.1670475,-4.149547,-4.083838,-4.0649514,-4.078995,-4.0543447,-4.0506744,-4.0637465,-2.8134303,-3.87106,-4.0254474,-4.046263,-4.073286,-4.0640855,-4.002092,-3.9737086,-4.1580477,-4.101215,-4.06498,-4.052147,-3.9731693,-4.05703,-4.075707,-4.049299,-4.06005,-4.0685067,-4.0719786,-4.0691867,-4.084476,-4.0611258,-4.0123544,-4.0528865,-4.0257006,-4.0499563,-4.013803,-4.098324,-4.10216,-4.126965,-4.1094294,-3.1235495,-3.127057,-3.6237462,-3.7231865,-3.819685,-3.8075209,-3.8378062,-3.8553338,-3.8647103,-3.8745613,-3.8414435,-3.8142438,-3.8321767,-3.851448,-3.8567662,-3.86766,-3.8675256,-3.8829827,-3.8491917,-3.8906412,-3.9160285,-3.92597,-3.9475675,-3.937478,-3.9915733,-3.9724946,-3.9976072,-3.9778342,-3.9921498,-3.9655433,-3.9657397,-3.9526553,-3.0977883,-2.3191833,-3.696031,-3.6820884,-3.7434664,-3.7388844,-3.7366185,-3.74094,-3.7454858,-3.7455544,-3.7252893,-3.663641,-3.6793954,-3.693233,-3.6469169,-3.5197277,-3.6676707,-3.6466203,-3.0062065,-3.5931065,-3.6362734,-3.5966673,-3.6185448,-3.7141995,-3.7099042,-2.727273,-3.5188518,-3.3565183,-3.4131246,-3.4407558,-3.529665,-3.5473495,-3.595065,-3.694633,-3.7050548,-3.6893024,-3.7075224,-3.706915,-3.7065778,-3.6948938,-3.6927924,-3.6998272,-3.6759408,-2.8101678,-3.2109578,-3.3940058,-3.286781,-3.3923092,-3.4800858,-2.5401826,-3.7112417,-3.1812587,-3.36834,-3.6654005,-3.584237,-3.4929075,-3.4732666,-3.5835109,-3.2950852,-2.9757533,-3.4688263,-3.6225636,-3.608786,-3.5726783,-3.5828266,-3.542676,-3.5733764,-3.6403131,-3.666667,-3.6853163,-3.6778178,-3.6785202,-3.5125434,-3.2383506,-3.3790574,-3.5383387,-3.5321476,-3.4037974,-2.891127,-2.739593,-3.5832262,-3.4452343,-3.3051221,-3.500737,-3.466229,-3.3015785,-3.2417436,-3.2523804,-3.2667766,-3.3579645,-3.4533257,-3.493208,-3.5241427,-3.5264106,-3.5131726,-3.5615792,-3.5439894,-3.6168137,-3.6349251,-3.6528811,-3.631353,-3.57543,-3.6370602,-3.624564,-3.6520538,-3.5922744,-3.6495895,-2.7105007,-2.3980708,-3.5485573,-3.619026,-3.4760418,-3.4898405,-3.4630823,-3.4460473,-3.425313,-3.5525107,-2.8707905,-3.4722548,-3.298851,-3.337329,-3.4899073,-3.527052,-3.5328488,-3.385332,-3.2022219,-3.479643,-3.5112247,-3.5237901,-3.5534277,-3.5515738,-3.5608537,-3.587419,-3.6022534,-3.6166549,-3.652679,-3.6522348,-3.6655397,-3.722793,-3.709268,-2.9709806,-3.7065487,-3.728437,-3.7574677,-3.7829385,-3.7549114,-3.7301993,-3.7835608,-3.7785177
+-0.79958075,-1.2542458,-1.4434786,-1.7428815,-1.897069,-2.0180752,-2.032588,-0.7667057,-1.9794166,-2.2529001,-2.359346,-2.433343,-2.6255345,-2.6982374,-2.7939937,-2.9324236,-3.006,-3.078875,-3.153104,-3.2429714,-3.299974,-3.3718557,-3.3673437,-3.376149,-3.4100242,-3.4211469,-3.4475965,-3.4653351,-3.416735,-3.4827504,-3.4553351,-3.4946156,-3.5382655,-3.5514057,-3.581194,-3.5604239,-3.5408943,-3.562632,-3.5773854,-3.6169722,-3.6172712,-3.65276,-3.6482882,-3.6381967,-3.6831856,-3.704008,-3.6941013,-3.6597328,-3.6634684,-3.7464786,-3.7693572,-3.7496285,-3.7250438,-3.728352,-3.744174,-3.6962266,-3.7352614,-3.7506223,-3.774603,-3.7638545,-3.7475395,-3.7814212,-3.7492948,-3.7092075,-3.7104073,-3.7332897,-3.7494187,-3.8143573,-3.8144789,-3.8284068,-3.7608275,-3.7701526,-3.8845277,-3.894568,-3.905857,-3.881971,-3.8613229,-3.868402,-3.855414,-3.8272352,-3.848837,-3.8615336,-3.8893638,-3.9415774,-3.8814387,-3.8826199,-3.8034897,-3.2750406,-3.2611995,-2.5792742,-2.4840028,-2.7041326,-3.0216334,-3.2177916,-3.365587,-3.4990015,-3.5936491,-3.605255,-3.7017465,-3.7608376,-3.845129,-3.9315748,-3.9941869,-4.0558524,-4.0372505,-4.0649514,-4.083966,-3.46593,-2.278943,-2.8587081,-2.8735008,-3.1578426,-2.7985225,-3.1704469,-3.1951256,-3.1242738,-3.3005962,-2.589302,-2.11174,-2.8023553,-1.8333888,-2.3265922,-1.5684981,-2.349519,-2.0019555,-2.1172545,-2.6290987,-2.6205354,-2.5376482,-2.592403,-2.151673,-2.4855738,-2.6458511,-2.6247892,-2.6747441,-2.685925,-2.6937726,-2.7599201,-2.8260608,-2.8984127,-1.3252633,-2.3245072,-2.3690653,-2.7088575,-2.7926478,-2.8016376,-2.8198786,-2.4150121,-2.627984,-2.8680248,-2.8862152,-2.9042487,-2.8826933,-2.794544,-2.8943768,-3.0084953,-3.1521928,-3.2663317,-3.0993078,-1.0065036,-2.5947704,-2.6749494,-2.7619169,-2.7394524,-2.725439,-2.7290008,-2.760992,-2.855566,-2.9163318,-2.9328434,-3.0439756,-2.997067,-2.8023987,-2.526118,-2.82695,-2.9290202,-3.104725,-3.1692824,-2.3124294,-2.149013,-2.5608706,-2.5911837,-2.0516684,-2.7173007,-2.621501,-2.8790112,-2.876616,-2.8502083,-2.8530977,-2.8846388,-2.879114,-2.9159956,-2.926052,-2.9591095,-3.030717,-3.118987,-3.16858,-3.217565,-3.204049,-3.2042484,-3.1723585,-3.1917078,-3.2632356,-3.2117047,-3.260466,-2.7898636,-2.9604225,-2.980226,-3.084014,-3.1291437,-3.140039,-3.1767292,-3.1610827,-3.1464372,-3.133801,-3.1229825,-2.8919983,-3.0370696,-3.0651746,-3.0734522,-3.0447845,-3.057506,-2.9834533,-2.9562798,-2.9312744,-2.9635942,-2.9624572,-3.0349917,-3.059783,-3.105074,-3.0980544,-2.9706993,-2.9858975,-3.1628544,-2.624334,-2.8349082,-2.7835522,-2.856343,-2.902736,-2.8732538,-2.9480236,-2.5454497,-1.8235567,-2.351597,-2.478518,-2.5859218,-2.7556348,-2.7888637,-2.7577522,-2.8154233,-2.7967477,-2.801167,-2.7871838,-2.7971506,-2.8208733,-2.8203897,-2.8184931,-2.8030577,-2.8134496,-2.8280406,-1.2067766,-2.3111553,-2.2658017,-2.4168813,-2.514031,-1.8780279,-2.362202,-2.387188,-2.4314651,-2.3485434,-2.3520699,-2.4143653,-2.4624908,-2.487694,-2.440688,-1.938642,-2.2097888,-2.3537889,-2.4730957,-2.577115,-2.6388865,-2.54761,-2.5792341,-2.65267,-2.7303681,-2.745937,-2.6799386,-2.661707,-2.4875274,-1.9544477,-2.3477478,-2.4480371,-2.5147996,-2.4200644,-2.2501287,-2.06387,-2.1781225,-2.3641896,-2.3732352,-2.3752244,-2.4656124,-2.3834171,-2.4227395,-2.5380669,-2.690843,-2.909356,-3.0467927,-3.0543752,-3.1149578,-3.1973183,-3.223322,-3.2432423,-3.2033935,-3.1548333,-3.1083584,-3.0714116,-3.0986423,-3.0612583,-2.9369273,-2.9870086,-3.0128973,-3.0095654,-3.0654414,-2.7127106,-1.946312,-2.2557445,-2.6013794,-2.6181698,-2.8360817,-2.891333,-2.874903,-2.902271,-2.9200659,-3.0060048,-3.0496488,-3.0252776,-3.0305636,-3.1793633,-3.1661992,-3.1465862,-3.1585708,-3.1984599,-3.2376895,-3.2676291,-3.3191211,-3.287579,-3.302719,-3.324425,-3.3257632,-3.3399086,-3.3311439,-3.345018,-3.3801103,-3.3885396,-3.3735955,-3.3555417,-3.2310388,-3.3304615,-3.3753734,-3.3712928,-3.3725364,-3.2310297,-3.3819215,-3.392508,-3.3660166
+-0.81269425,-1.413537,-1.6945672,-1.9602513,-2.1814294,-2.424674,-2.5814457,-1.986074,-3.00331,-3.1968467,-3.2407408,-3.2597594,-3.3117504,-3.4014072,-3.444424,-3.4576497,-3.5125601,-3.5620563,-3.6084638,-3.6764927,-3.7497973,-3.844129,-3.922196,-4.001665,-4.017253,-4.0040736,-4.0781636,-4.139705,-4.063383,-4.1623263,-4.133631,-4.178533,-4.1303263,-4.085463,-4.095713,-4.131634,-4.1855693,-4.2277074,-4.227876,-4.223491,-4.203557,-4.2075334,-4.1616836,-4.0566916,-4.173592,-4.231816,-4.263911,-4.264998,-4.281604,-4.2523904,-4.2725673,-4.2652173,-4.3080754,-4.3434668,-4.330214,-4.3280864,-4.3607025,-4.3047175,-4.30897,-4.325472,-4.359928,-4.339029,-4.2277827,-4.1727014,-4.0723963,-4.0608335,-4.134669,-4.4149637,-4.493022,-4.4890056,-3.5381796,-4.5919824,-4.5246253,-4.5780396,-4.6189594,-4.595924,-4.6224465,-4.6041765,-4.5392823,-4.3849206,-4.4313426,-4.592665,-4.587847,-4.541683,-4.498691,-4.3586183,-4.5273,-4.45577,-4.0147586,-3.8114552,-2.3070118,-3.3483942,-3.9805393,-3.8512282,-3.8688397,-3.9631581,-4.0609546,-4.1760473,-4.2108974,-4.2094464,-4.2952094,-4.362286,-4.419907,-4.471071,-4.4451704,-4.4081874,-4.5069222,-4.4863486,-4.1372976,-4.14955,-4.223724,-4.414429,-2.5149121,-2.0747948,-3.2496562,-3.7094364,-3.7435346,-3.8445573,-2.5992713,-3.367397,-3.8155951,-2.4549832,-4.069507,-2.878499,-3.2682686,-3.5816383,-4.2679915,-4.4581146,-4.2867417,-4.3155684,-2.2945743,-3.7727342,-4.1852965,-4.2466316,-3.7990417,-4.2442183,-4.313974,-4.2375655,-4.1923203,-4.1548696,-3.4147701,-2.7634182,-3.5104098,-4.109115,-4.276749,-4.237057,-4.20472,-4.0252514,-4.071994,-4.0014253,-3.965176,-4.0253615,-3.8250422,-3.3741333,-4.031856,-4.0389714,-4.0015807,-4.0498347,-4.206338,-1.7026954,-3.2387893,-3.8485093,-4.0137277,-4.1573296,-4.155435,-4.156899,-4.1289268,-3.9483285,-3.8995194,-3.8966765,-3.9315886,-4.045199,-3.965365,-3.9576497,-3.9716249,-4.004189,-3.9480848,-3.9525456,-4.035649,-1.8692019,-3.5530713,-4.1216607,-4.3614945,-4.348006,-4.4045386,-4.1676526,-4.078339,-4.106525,-4.1410418,-4.1417623,-4.165521,-4.145162,-4.2001266,-4.234908,-4.279787,-4.3226647,-4.36616,-4.4095964,-4.382971,-4.3475933,-4.3355217,-4.3483453,-4.405539,-4.4959555,-4.4578705,-4.384823,-4.359109,-4.2083864,-4.284851,-4.3430614,-4.397589,-4.303,-4.300712,-4.208054,-4.1806655,-4.149257,-4.210756,-4.234234,-4.205707,-4.230923,-4.3072743,-4.3672805,-4.46561,-4.428206,-4.465836,-4.4643216,-4.4666686,-4.49674,-4.5269904,-4.5759025,-4.4707036,-4.329281,-4.4684052,-4.6131124,-4.26853,-4.1339593,-4.1805053,-4.2992845,-4.349808,-4.3955975,-4.2156677,-4.1400304,-4.108464,-4.109191,-4.2780128,-4.3269057,-3.935676,-4.11509,-4.201061,-4.2852387,-4.2492566,-4.176371,-4.1912704,-4.2464914,-4.2741237,-4.2814517,-4.2617383,-4.258777,-4.3064485,-4.2525716,-4.0634103,-4.024701,-4.321918,-4.3185825,-4.124082,-1.8742268,-3.9530597,-4.10031,-3.5856223,-4.2398744,-4.40565,-4.5503736,-4.558453,-4.5927615,-4.3912106,-3.2663085,-4.136808,-4.3499713,-4.4652395,-4.550588,-4.5681562,-4.4644713,-4.5796037,-4.633215,-4.5456986,-4.4693403,-4.472732,-4.5422473,-4.286635,-2.9823155,-4.0996737,-4.2799945,-4.417866,-4.443897,-4.486777,-3.120367,-3.999374,-4.379357,-4.4768863,-4.393487,-4.215961,-4.213259,-4.164852,-4.174195,-4.2705207,-4.3748436,-4.4311657,-4.432458,-4.4206767,-4.476333,-4.4582324,-4.4461045,-4.37498,-4.277,-4.2137237,-4.2609663,-4.300876,-4.210841,-3.695931,-3.9826055,-3.2655563,-4.0926166,-4.206018,-2.8068867,-3.9762783,-3.8685832,-4.2402787,-4.239809,-4.357554,-4.248157,-4.2734504,-4.3686213,-4.379396,-4.226906,-4.1035023,-4.102922,-4.220511,-4.171391,-4.212515,-4.073625,-4.0504346,-4.1362863,-4.2328553,-4.2046847,-4.2337785,-4.198256,-4.188087,-4.2070737,-4.2219615,-4.2274647,-4.2348247,-4.2475963,-4.2513914,-4.2548146,-4.2826467,-4.383235,-4.1730795,-4.1477585,-4.171191,-4.1548033,-4.1937723,-4.0819764,-4.075653,-4.15056,-4.0945897
+-0.7368441,-1.2935874,-1.5945802,-1.8197095,-1.9851112,-2.1392736,-2.224722,-2.2549033,-2.4194775,-2.5226498,-2.5613015,-2.617241,-2.6655617,-2.7563298,-2.8271346,-2.8360224,-2.8722873,-2.9151218,-2.9469905,-2.9796057,-3.0284715,-3.0765915,-3.1338873,-3.1651204,-3.2046862,-3.2247458,-3.2622573,-3.2925968,-3.2816799,-3.3344636,-3.2981431,-3.345275,-3.3632865,-3.385717,-3.402963,-3.3535566,-3.3647752,-3.3924346,-3.3936787,-3.4244194,-3.4215965,-3.4254198,-3.4032345,-3.3965425,-3.464276,-3.5243053,-3.5252485,-3.5021133,-3.5207179,-3.5485954,-3.558817,-3.5666974,-3.5528755,-3.569862,-3.5675097,-3.5324528,-3.5430892,-3.5938978,-3.5519009,-3.570845,-3.5710897,-3.5809155,-3.5825582,-3.5769405,-3.5953088,-3.5964196,-3.6493351,-3.6176267,-3.651112,-3.6713402,-3.671776,-3.7150092,-3.7359347,-3.7224793,-3.7477674,-3.7676244,-3.730812,-3.7011771,-3.7101607,-3.7466416,-3.6899319,-3.6874747,-3.7528706,-3.784985,-3.6984076,-3.7458696,-3.7497911,-3.7464108,-3.410777,-1.513216,-2.1391373,-2.6525636,-2.9603436,-3.1347866,-3.352251,-3.4719617,-2.5539248,-3.1122227,-3.2367578,-3.3758888,-3.6092315,-3.7161021,-3.7171226,-3.7556,-2.2549443,-3.0550895,-3.242716,-2.7490149,-3.136868,-3.1871195,-3.3558102,-3.507574,-3.049859,-1.1072452,-2.0592546,-1.3018587,-2.6007745,-2.6797986,-1.3629973,-2.2472944,-1.4930592,-1.9903789,-2.7925706,-2.987739,-2.6087904,-2.7113032,-2.7444997,-2.7601757,-2.8259082,-2.5211,-1.6397362,-2.5337946,-2.6724257,-2.6777644,-2.7156377,-2.3237658,-2.6964898,-2.755566,-2.7695415,-2.5449128,-2.6898203,-2.156483,-2.546731,-2.75424,-2.7493134,-2.7575524,-2.7987654,-2.791204,-2.8288352,-2.964966,-2.9827077,-2.9644132,-2.1388364,-2.588546,-2.7915301,-2.879511,-2.9541492,-3.0119572,-1.4147718,-0.98091024,-2.4055843,-2.8381746,-2.94663,-2.8718147,-2.8057904,-2.7980974,-2.847,-2.9315846,-2.9006205,-2.9192102,-2.9130263,-2.804981,-2.893464,-2.9222083,-2.9983487,-2.9807882,-3.0020902,-3.1606138,-2.5873075,-2.2582512,-2.7278883,-2.9369035,-2.959383,-3.0060534,-3.0274572,-3.1206107,-3.251076,-3.1972163,-3.1731899,-3.2030392,-3.170833,-3.1878743,-3.2689474,-3.2685814,-3.2933342,-3.3717394,-3.3596935,-3.327782,-3.2841563,-3.3156757,-3.2945356,-3.281126,-3.3480237,-3.4376936,-3.4071548,-3.336257,-3.3542373,-3.4062402,-3.4460738,-3.4678578,-3.4067125,-3.348332,-3.4021726,-3.370895,-3.3579078,-3.3647854,-3.3245862,-3.2983782,-3.4070487,-3.3591383,-3.348287,-3.3412504,-3.3916843,-3.3256016,-3.2222497,-3.307683,-3.2908924,-3.2944214,-3.2929,-3.2968836,-3.2338223,-3.2030063,-3.2394009,-3.3895254,-3.2560334,-3.1877894,-3.223145,-3.2031686,-3.1967719,-3.210385,-3.2195923,-3.1272535,-3.1186647,-3.154986,-3.0755277,-3.042089,-3.1275907,-3.1531143,-3.0737808,-2.996187,-3.014907,-3.06179,-3.0784454,-3.0667872,-3.0603135,-3.0624795,-3.0605338,-3.0657911,-3.0303383,-2.9987693,-2.9799166,-3.0110843,-3.1002636,-3.1242661,-2.3959646,-1.168195,-2.4431767,-2.6980095,-2.7776527,-2.8040862,-2.8590913,-2.9367511,-2.8835588,-2.8477855,-2.852768,-2.1654816,-2.5400593,-2.8061414,-2.9627905,-3.0098195,-3.0141845,-3.009531,-3.0168252,-3.0082128,-3.0121198,-3.0347452,-3.0176518,-3.0290275,-1.8734741,-2.2817216,-2.5405061,-2.860338,-2.9652288,-2.9460433,-2.2513251,-2.5297847,-2.711327,-2.9360044,-3.1040483,-3.1367288,-3.1789312,-3.225002,-3.2104273,-3.2095912,-3.2260916,-3.189645,-3.215396,-3.2313542,-3.1970255,-3.209803,-3.2350907,-3.2652612,-3.289596,-3.3197465,-3.3035219,-3.225467,-3.1976295,-3.1961002,-2.9881663,-3.1647005,-3.1291933,-3.1956296,-2.9749901,-1.3101985,-2.5448132,-2.7461097,-3.0628893,-3.1546173,-3.198549,-3.2080605,-3.2431533,-3.1640968,-3.122147,-3.1377964,-3.249145,-3.2757702,-3.2235737,-3.1317754,-3.0842245,-3.151287,-3.185288,-3.1901417,-3.1550493,-3.2150273,-3.2293568,-3.2559998,-3.2888856,-3.3075852,-3.3277445,-3.3708622,-3.3798795,-3.397626,-3.4337683,-3.3378456,-3.3993387,-3.4081566,-3.3090634,-3.412982,-3.4470124,-3.4584007,-3.4311705,-3.404187,-3.4526033,-3.484477,-3.440994
+-0.70025605,-1.1507831,-1.5618019,-1.8284817,-2.1084585,-2.458549,-2.393505,-2.4470634,-2.7866182,-2.9406376,-3.078365,-3.1581752,-3.2376838,-3.3358278,-3.38165,-3.4092393,-3.4641871,-3.5456002,-3.6003323,-3.6955824,-3.7568593,-3.7935853,-3.8169737,-3.8117108,-3.8106713,-3.8441882,-3.8508267,-3.8498163,-3.87614,-3.8924804,-3.871697,-3.9047809,-3.933622,-3.9578404,-3.970327,-3.9836688,-3.9498591,-3.9358287,-3.9538345,-3.9520836,-3.9645324,-3.982823,-3.9509745,-4.0112085,-3.987656,-3.993896,-3.9726238,-3.9765944,-3.995585,-4.00497,-4.088907,-3.3362586,-4.064228,-4.163568,-4.2932067,-4.1503453,-4.1636586,-4.238986,-4.211119,-4.0961404,-4.147102,-4.1509204,-4.1612535,-4.1929703,-4.2111564,-4.251764,-4.265588,-4.2099924,-4.185018,-4.1734457,-4.1618257,-4.1526504,-4.1790266,-4.15562,-4.1687727,-4.184459,-4.194736,-4.1910105,-4.1895957,-4.265532,-4.473829,-4.2389827,-4.4937673,-4.245635,-4.238175,-4.23223,-4.2328115,-4.2415433,-4.231637,-4.221084,-4.2081447,-4.234645,-4.2425647,-4.2502522,-4.2449102,-4.3110533,-4.2382526,-4.2375736,-4.2298427,-4.236728,-4.2340245,-4.236593,-4.225272,-4.224221,-4.2467628,-4.234527,-4.2476163,-4.255694,-4.279915,-4.2708607,-4.2673216,-4.268028,-4.261536,-4.242822,-4.222194,-4.20109,-4.1895504,-4.188921,-4.1911845,-4.166918,-4.283885,-4.098171,-4.086611,-4.129496,-4.1157546,-4.1128917,-4.129868,-4.1604495,-4.164923,-4.2194524,-1.1166778,-3.2567537,-3.5479312,-3.4914236,-3.4368966,-3.3877773,-3.3754618,-3.1876729,-3.4037597,-3.4255977,-3.4765882,-3.5756156,-3.6142163,-3.6283014,-3.6471748,-3.7256866,-3.7861047,-3.8233352,-3.8934178,-3.9758167,-3.9783788,-3.9926963,-3.9838867,-3.9690156,-4.0041027,-4.0344796,-4.0447435,-4.0662594,-0.5852025,-2.7066517,-3.3977063,-3.444138,-3.4715066,-3.4450684,-3.4257154,-3.4677424,-3.3937173,-3.4366407,-3.4554963,-3.5089562,-3.5109637,-3.550354,-3.5796535,-3.5629933,-3.6239207,-3.6855843,-3.7082257,-3.5263333,-2.6782947,-3.5770936,-3.6810133,-3.7774463,-3.383678,-2.804532,-3.090142,-3.5557098,-3.6919906,-3.6967206,-3.703711,-3.7146926,-3.7506857,-3.7756772,-3.8255572,-3.9048634,-3.9740224,-4.00497,-4.065516,-4.0713396,-4.0679193,-4.075291,-4.1148057,-4.139131,-4.1918797,-4.287971,-4.2589693,-4.218209,-4.2419715,-4.2609954,-4.31498,-4.2943244,-4.285592,-4.2823987,-4.2366586,-4.1957116,-4.1379437,-4.1851206,-4.178065,-4.238857,-4.2903056,-4.212194,-4.242925,-4.279679,-4.2851334,-4.2495384,-4.22579,-4.2321267,-4.305371,-4.329633,-4.3482594,-4.3668017,-4.2438016,-4.147809,-4.281284,-4.2759132,-4.153551,-4.1017537,-4.0952315,-4.1301785,-4.1181912,-4.1427426,-4.117311,-4.0795927,-4.017674,-4.0802946,-4.114516,-3.9489927,-4.1344037,-4.041671,-4.087748,-4.049811,-4.0080895,-4.004896,-4.0580177,-4.1523423,-4.0937285,-4.0723815,-4.083771,-4.1431613,-4.119374,-4.0632052,-3.9829774,-3.9714317,-4.0068526,-4.0105352,-4.0617332,-3.8947425,-3.9094496,-3.9348807,-3.9664345,-3.9797788,-4.1333013,-4.1013007,-3.6139822,-3.615077,-3.8923144,-3.9478717,-3.9682765,-4.0624576,-4.1735005,-4.191504,-4.1325545,-4.2041807,-4.3807616,-4.368232,-4.2648597,-4.2073164,-4.1258636,-4.129073,-4.0590053,-4.0405974,-4.068417,-4.041713,-4.0234666,-4.0734725,-4.0329895,-4.0367103,-4.033294,-4.096434,-4.067003,-3.9950795,-4.0218353,-4.0241237,-4.02854,-4.093124,-4.1207414,-4.0563164,-4.0487137,-4.100758,-4.131165,-4.0966744,-4.0505824,-4.0278544,-4.059447,-4.1293817,-4.1465135,-4.1040297,-4.108664,-4.032289,-3.958651,-4.0032563,-4.004687,-3.99149,-3.9726915,-2.3250465,-3.3038223,-3.5811734,-3.770094,-3.8917232,-3.9097333,-3.8853898,-4.0459123,-4.116685,-4.0696745,-4.0767183,-4.083657,-4.1740074,-4.21464,-4.2535653,-4.2372785,-4.1477532,-4.158638,-4.303247,-4.3492866,-4.3053365,-4.2476406,-4.2484,-4.2713647,-4.324471,-4.3179,-4.3465166,-4.3637576,-4.3770375,-4.360357,-4.3359504,-4.2705607,-4.3154807,-4.1743608,-4.1117606,-4.143931,-4.1766167,-4.1725364,-4.133185,-4.132954,-4.179551,-4.1240816
+-0.014773577,-0.640496,-1.4687238,-2.121924,-1.9276836,-2.4137716,-2.639338,-2.8850176,-2.730197,-2.9999142,-3.2428727,-3.0509038,-2.8792977,-3.2836263,-2.8912158,-3.4059682,-3.5751972,-3.7427726,-3.8062863,-3.64475,-3.8746915,-3.857984,-3.555237,-3.3576295,-2.5614605,-2.951007,-3.198101,-3.3951683,-3.2543218,-3.4121997,-3.4763021,-3.458538,-3.616008,-3.8100638,-3.771111,-3.647937,-4.059835,-4.0362277,-2.3621216,-2.8265257,-2.9671597,-3.0520353,-3.1728473,-3.4577258,-3.5189362,-3.6798773,-3.717484,-3.6188054,-3.598063,-3.3607688,-3.066574,-3.0592732,-3.2391968,-3.2425354,-3.357838,-3.439932,-3.3041623,-3.27665,-3.5815043,-3.221426,-3.3522968,-3.4595668,-3.5449479,-3.6099644,-3.8249946,-3.7614613,-3.989942,-4.042933,-3.9646888,-3.1672683,-4.1102242,-3.1399603,-3.9273634,-4.3444796,-4.153675,-4.1376987,-3.6231065,-4.168253,-4.252711,-3.4831367,-4.1920342,-2.9122062,-3.4435787,-4.023471,-3.6771379,-3.3684435,-3.4642587,-3.672708,-3.995871,-3.5237722,-4.046563,-3.97648,-4.1009784,-4.256091,-4.216053,-4.228168,-3.7940803,-3.9892917,-4.179322,-4.1200366,-4.1785502,-2.8119304,-3.1634066,-3.262749,-3.1863103,-3.508972,-2.9455414,-3.4266636,-3.551425,-3.5796757,-3.8383036,-4.0998898,-3.82091,-3.360888,-3.8563724,-4.1364913,-3.5472105,-3.5881538,-3.959669,-4.0728183,-4.141043,-4.003541,-4.0379105,-4.2972436,-2.729022,-3.4936824,-4.007397,-4.0252366,-3.728221,-3.3013284,-3.683005,-3.0311203,-3.5186296,-3.4983702,-3.6615086,-3.6114683,-3.615325,-3.8650146,-3.7199955,-3.6784635,-3.5299659,-3.7673078,-3.972177,-4.034661,-2.911285,-3.1461005,-3.3530214,-3.2821443,-3.4343054,-3.491971,-3.609797,-3.5533733,-3.6473386,-3.4668045,-3.486124,-3.6706185,-3.7968907,-3.633613,-3.800014,-3.5828552,-3.109499,-3.2754068,-3.4012513,-2.9937434,-3.2887046,-3.2746823,-3.3796117,-3.4320488,-3.476551,-3.335102,-3.226106,-3.390346,-3.4576774,-3.500215,-2.5216336,-3.0051727,-3.1495447,-3.3742375,-3.450667,-3.4736876,-3.5022807,-3.5021093,-3.459354,-3.468782,-3.5247989,-3.5832756,-2.7051015,-3.0618086,-2.9532065,-2.776891,-2.6286664,-2.7224548,-2.4229183,-2.2605476,-1.8222537,-1.5626528,-1.4427094,-1.5983999,-2.1588597,-2.6929207,-2.978996,-3.040094,-3.0394075,-3.0900278,-3.2703514,-3.2456088,-3.3481445,-3.398007,-3.3952312,-3.369502,-3.0609746,-3.228583,-3.2906847,-3.0754817,-3.1695147,-3.0862503,-3.2335036,-3.317133,-3.3220253,-3.3254778,-3.3392022,-3.3869765,-3.3816946,-3.460318,-3.3679318,-3.3822198,-3.455634,-3.3739996,-3.389618,-3.315611,-3.2040977,-3.0441568,-2.9210725,-2.900248,-2.886888,-2.7821138,-2.6864238,-2.547656,-2.5781996,-2.5519266,-2.608914,-2.4193487,-2.267606,-2.22401,-2.114541,-2.0477378,-1.8879132,-1.8454156,-1.6679552,-1.6751816,-1.7101254,-1.7864594,-1.870204,-1.8626361,-1.8408661,-1.7585254,-1.7074335,-1.7693751,-1.9278626,-1.8148041,-1.8444817,-1.771126,-1.5567646,-1.5251253,-1.3790469,-1.5647371,-1.7061155,-1.6883485,-1.6026089,-1.5790398,-1.5312428,-1.583957,-1.6558964,-1.5259497,-1.5990138,-1.6106074,-1.7161338,-1.7193809,-1.6781218,-1.7584391,-1.7317481,-1.7391186,-1.8389673,-1.8742828,-1.9126191,-2.0119786,-1.956377,-1.9112792,-1.8440342,-1.7205498,-1.6227038,-1.4162095,-1.165595,-1.1309667,-1.2002554,-1.3006821,-1.2746053,-1.2794979,-1.3200834,-1.3405914,-1.3823736,-1.3003383,-1.2001863,-1.2287085,-1.3531847,-1.3690121,-1.391763,-1.3933852,-1.4607432,-1.5412447,-1.5279343,-1.5619414,-1.6481042,-1.5987525,-1.4771223,-1.1219335,-1.3449292,-1.3789344,-1.2221758,-1.0703044,-1.0502367,-0.7807328,-0.69552916,-0.76485175,-0.9334828,-0.96428317,-0.98190945,-0.88977545,-1.0910006,-1.168263,-1.1996107,-1.2275114,-1.024431,-0.9387358,-1.031671,-0.9184287,-0.9166718,-0.8613873,-1.0665042,-1.2376876,-1.1668053,-1.051264,-1.0823929,-1.144259,-1.1750498,-1.253314,-1.0097687,-1.0088677,-0.9253141,-0.7835179,-0.62202376,-0.7739467,-0.16182598,0.020091116,-0.042085707,-0.1663301,0.3043538,0.7214574,0.5811962,0.25982916,-0.51080084,-1.2138662,-1.8413506,-2.3163588,-2.6270633
+-0.38631386,-1.1442614,-1.5464118,-1.9589791,-1.8739135,-2.0585747,-2.2617812,-2.6096635,-2.6321678,-2.626166,-3.0032444,-2.8709548,-2.2957733,-2.7467308,-2.5229754,-2.8924315,-3.0427995,-3.1075072,-3.3315816,-3.2859693,-3.1841009,-3.1792626,-3.008468,-2.8733084,-2.5291822,-2.6075802,-2.4778798,-2.4027128,-2.4134989,-2.44633,-2.708366,-2.7216902,-2.8918138,-3.0430536,-3.1570444,-2.6388946,-3.0861635,-3.2685797,-2.1881046,-2.8840256,-2.9378872,-2.668127,-2.9849205,-3.0363207,-2.861044,-2.8525252,-3.093026,-2.9873686,-2.8359227,-2.7848294,-2.7345648,-2.84662,-2.8274589,-2.6191268,-2.748394,-2.565386,-2.606952,-2.752409,-2.8755326,-2.7438064,-2.5368671,-2.9349136,-2.8230157,-3.1124854,-3.2229655,-3.1777134,-3.1541872,-3.2402167,-3.0587595,-3.1637638,-3.1414127,-2.532898,-3.2881536,-3.5676918,-2.8693905,-3.2433517,-2.9284458,-3.3306246,-3.1972113,-3.1022484,-3.4837632,-3.276936,-3.4507203,-3.4354877,-2.6092293,-3.0065277,-3.1746814,-3.2402864,-3.1788058,-2.9881988,-3.1134598,-3.2513933,-3.2314937,-2.9070494,-3.4528604,-3.531845,-3.0851488,-3.4316,-3.5353487,-3.1790252,-3.23465,-2.4588087,-2.931126,-3.0241413,-3.0678012,-2.876629,-2.8566465,-2.816332,-2.6587958,-2.9408488,-2.6599085,-3.0637877,-3.1296182,-3.1077852,-3.1617098,-3.1656802,-3.0978289,-2.6891341,-3.177231,-3.0192032,-3.3006287,-3.2771616,-3.247925,-3.2329612,-3.2332516,-3.1653166,-3.1711888,-3.1927702,-3.1005068,-3.1393156,-3.110962,-1.6168492,-2.8002615,-2.6323566,-2.7484162,-2.9776115,-2.9417925,-2.9996185,-3.0837846,-2.3373523,-2.6029873,-2.870458,-2.9503388,-2.959559,-2.9555745,-2.8890622,-2.8669686,-2.9683595,-3.0731254,-3.057931,-3.0564263,-3.114221,-3.1197066,-3.1313555,-3.0137734,-3.118934,-2.3467383,-2.029921,-2.6676965,-2.7467828,-2.6996655,-2.6525955,-2.765478,-2.7061648,-2.593569,-2.853953,-2.8872013,-2.8819127,-2.928235,-2.8375442,-2.8877745,-2.981153,-2.976347,-2.3813252,-2.1276662,-2.531579,-2.6549888,-2.7063568,-2.8498151,-2.8045695,-2.7245102,-2.7754073,-2.8071973,-2.8682108,-2.5532684,-2.241662,-2.488613,-2.6559072,-2.5205615,-2.5739188,-2.5438771,-2.5722408,-2.4286833,-2.0309525,-1.524615,-1.2774453,-1.3409343,-1.6906426,-2.1884403,-2.3206894,-2.3252172,-2.4950583,-2.5379794,-2.5154696,-2.5735745,-2.6331258,-2.600636,-2.649087,-2.6019216,-2.664105,-2.4267192,-2.6174233,-2.7139983,-2.0574517,-2.3464773,-2.5736177,-2.6478698,-2.8386555,-2.8806071,-2.9590192,-3.099249,-3.1828077,-3.2292101,-3.2696662,-3.3032155,-3.340661,-3.3066838,-3.295315,-3.3282776,-3.2210424,-3.2295027,-3.108642,-3.1322887,-3.3105001,-3.3521788,-3.2776039,-3.2633624,-3.2972953,-3.3220658,-3.3397005,-3.3557749,-3.3142948,-3.0106394,-2.960281,-2.744493,-2.6941335,-2.7052453,-2.6273851,-2.2988458,-2.2293665,-2.2322202,-2.1668005,-2.1787934,-1.9407897,-2.0386102,-1.9451468,-2.0063097,-2.0589755,-2.0427895,-1.9973612,-1.9924586,-2.1546035,-2.1420712,-2.0771654,-2.0658631,-2.114886,-2.1428137,-2.0486119,-2.0671601,-2.023621,-2.0371401,-2.0823627,-2.1083133,-1.9558668,-2.0840607,-2.0048416,-1.990273,-2.0665462,-2.0146127,-2.0627835,-2.0939007,-2.0374079,-1.9190173,-1.6254854,-1.6516697,-1.7072906,-1.7748928,-1.8577542,-1.8618801,-1.829956,-1.8164687,-1.6505659,-1.5776689,-1.5229607,-1.4908383,-1.6399043,-1.6208458,-1.5230408,-1.4493206,-1.5496778,-1.5687592,-1.5881205,-1.5092018,-1.4923866,-1.5484118,-1.5196314,-1.5781431,-1.529566,-1.6394713,-1.3552,-1.3173275,-1.2548761,-1.3627312,-1.3834355,-1.2691307,-0.85787076,-1.2896795,-1.3714917,-1.3101444,-1.2195323,-1.0452709,-0.74166614,-0.5606082,-0.63558215,-0.504308,-0.6687349,-0.765516,-1.0457296,-1.1336348,-1.2748413,-1.4115851,-1.5318244,-1.5433276,-1.4726827,-1.595897,-1.4886851,-1.3885493,-1.3704374,-1.3012726,-1.686094,-1.8193188,-1.8107648,-1.7710159,-1.582541,-1.5366323,-1.6806653,-1.5432074,-1.4052641,-1.1609972,-0.9847898,-1.1701286,-0.9934663,-0.22476166,0.23681754,0.06073293,0.024225473,-0.16892987,-0.9642281,-1.4564788,-1.9615192,-2.0527225,-2.2765026,-2.458111,-2.4546032,-2.5119014
+0.058029473,-0.51290077,-1.2440596,-2.1045752,-2.257232,-2.4999037,-2.6433637,-2.8650646,-2.9554894,-3.072094,-3.2561913,-3.1106255,-3.217692,-3.2490683,-3.2154226,-3.4506683,-3.3131824,-3.2533455,-3.1875339,-3.1467762,-3.2419806,-3.3854783,-3.321575,-3.3091583,-3.5102887,-3.350587,-3.1864116,-2.8703485,-2.8125703,-2.7059784,-2.6432858,-2.7158074,-2.958284,-3.1690235,-3.372634,-3.2267315,-3.4992962,-3.522437,-2.7723503,-3.19609,-3.1184506,-3.1583061,-3.4132662,-3.3932636,-3.23442,-3.2522588,-3.4111247,-3.1713614,-3.457865,-3.502383,-3.1445367,-3.3520384,-3.387313,-3.2945807,-3.312111,-3.2520747,-3.4073591,-3.3026822,-3.3172693,-3.4652781,-3.3654094,-3.3332767,-3.4546573,-3.4125774,-3.455164,-3.4645429,-3.569326,-3.5750313,-3.2545245,-3.7178617,-4.0217276,-3.8990316,-3.480939,-4.0225616,-4.11446,-4.066873,-3.7847204,-3.9369464,-3.987269,-3.8147063,-3.9212856,-3.9605584,-3.8261256,-3.9872127,-3.4022198,-3.6642861,-4.0134406,-3.9689527,-3.9888396,-3.5351274,-4.0455613,-3.9606328,-4.100537,-3.8679547,-3.9087396,-4.059769,-4.0175014,-3.8327231,-4.013297,-3.7048812,-2.8764462,-3.594625,-4.0219793,-4.013984,-3.8991194,-3.9302197,-3.1637306,-3.9554968,-3.9935026,-4.1729374,-4.205156,-4.174811,-4.282124,-3.9988704,-3.9559731,-3.9682574,-3.321739,-3.9672751,-3.753253,-4.266517,-4.268003,-4.1934037,-4.0961204,-4.063885,-3.974043,-3.795446,-3.8323007,-3.7631726,-3.5045063,-3.5911345,-4.1282716,-4.100405,-3.982386,-3.9334931,-3.7552643,-4.085301,-4.043444,-4.2128153,-4.201443,-3.8436446,-2.9782429,-4.1311727,-4.4649725,-4.493586,-4.3139405,-4.2695656,-4.1908517,-4.1856914,-4.151023,-4.15288,-4.1086736,-4.1464105,-4.229374,-4.2165146,-3.9418192,-4.226194,-2.8288848,-3.5378587,-4.1287127,-4.150439,-4.0815387,-4.061963,-4.0926514,-4.1463437,-3.32733,-3.8926826,-4.071279,-3.8857331,-3.9419904,-4.028699,-3.9039426,-3.885353,-4.0164723,-3.767879,-3.2874308,-3.8763156,-3.6883616,-3.7618713,-3.8494759,-3.9917636,-4.1064515,-4.1204114,-4.111715,-4.217224,-4.0952997,-3.4547203,-3.4372938,-3.46935,-3.473831,-3.63705,-3.6001408,-3.6749973,-3.6199698,-3.2059064,-3.2900302,-3.1100736,-2.9462342,-3.1860127,-3.3572884,-3.4678621,-3.5230713,-3.4781811,-3.4711125,-3.3919725,-3.4683084,-3.5919282,-3.6393805,-3.6695435,-3.7009764,-3.677919,-3.709155,-3.5316448,-3.6414924,-3.032549,-3.060553,-3.4120724,-3.5992281,-3.8021913,-3.8861413,-3.9294057,-3.955707,-3.9477763,-4.0319543,-4.008576,-4.0253496,-4.0548778,-4.083341,-4.048,-3.8638263,-3.5761952,-3.5883574,-3.5913715,-3.3614016,-3.3468935,-3.3172984,-3.3181949,-3.213877,-2.8774421,-2.8472383,-2.781248,-2.8157957,-2.537547,-2.3336856,-2.4574018,-2.2242165,-2.151484,-2.1302266,-2.0604205,-2.1826472,-2.2652588,-2.357998,-2.310302,-2.3787704,-2.256149,-2.4285138,-2.3203387,-2.4366555,-2.4359684,-1.6438737,-1.931359,-1.9000602,-2.0380733,-1.9260771,-1.760169,-1.9528608,-2.0427403,-2.1333482,-1.9464126,-2.1712847,-2.0678036,-2.0215888,-2.1488104,-2.266903,-1.8797965,-2.3160691,-2.3457208,-2.5076656,-2.5089045,-2.6283903,-2.7089021,-2.6580114,-2.5548368,-2.4883566,-2.1814938,-2.3821645,-2.5030088,-2.5315995,-2.5013566,-2.4971752,-2.42483,-2.4450812,-2.202673,-1.9713929,-2.0285087,-2.0693188,-2.3130255,-2.2755833,-2.2687268,-2.3609488,-2.401252,-2.3243697,-2.3161507,-2.17057,-1.8997347,-1.9838047,-2.3448572,-2.482469,-2.5270035,-2.49961,-2.230274,-2.3908293,-2.3759885,-2.7194707,-2.6350102,-2.4235148,-2.3275905,-2.615444,-2.6367292,-2.441244,-2.3900154,-2.1885252,-1.9064727,-2.272164,-2.2651904,-2.1833994,-2.495284,-2.0033114,-2.668743,-2.8342786,-2.6546679,-2.7496,-2.5986438,-2.679951,-2.6380773,-2.6276224,-2.7001793,-2.5406108,-2.5343733,-2.5835881,-2.8723445,-2.7438178,-2.8179295,-2.9321256,-3.0286903,-2.783111,-2.6017592,-2.9890416,-2.7514513,-2.238158,-2.3399665,-2.4098225,-2.0768673,-1.5032804,-1.7153168,-1.7911038,-1.8678927,-1.5652168,-1.4907897,-1.4086447,-1.5238872,-1.7037892,-1.9535661,-1.9515612,-2.346602,-2.6736865
+0.44420075,0.16951835,-0.48196143,-1.1923425,-1.1370487,-1.4005015,-1.7007506,-1.7743988,-2.2559998,-2.937732,-2.9814465,-3.182889,-3.3426237,-2.9807606,-2.9198246,-3.115353,-3.0639691,-2.8198063,-3.144637,-3.2279966,-3.2537036,-3.3344402,-3.4122958,-3.1870978,-3.1403384,-2.5812192,-2.7106085,-2.416465,-2.368588,-2.4078202,-2.5878847,-2.5672734,-2.703777,-3.011507,-3.137357,-3.1675391,-2.6540973,-3.0637627,-3.367603,-3.1436055,-3.1272144,-3.2479398,-3.4358718,-3.3472137,-3.218046,-3.4207418,-3.2071385,-3.390364,-3.538231,-3.1838174,-3.3012366,-3.4476218,-3.4968586,-3.7294106,-3.5917902,-3.582562,-3.6966662,-3.6744094,-3.7290335,-3.610691,-3.5629346,-3.5542016,-3.658582,-3.6571326,-3.6655047,-3.6824567,-3.5742972,-3.645887,-3.7599149,-3.7829237,-3.7885265,-3.7976809,-3.1965687,-3.0926867,-3.631868,-3.60713,-3.625991,-3.61911,-3.6090975,-3.6623168,-3.655779,-3.6883037,-3.684874,-3.698748,-3.7379508,-3.6955414,-3.7403536,-3.8142877,-3.8130136,-3.8802333,-3.6909902,-3.313497,-3.6953092,-3.7821379,-3.8227153,-3.8215795,-3.8311067,-3.8412938,-3.8638945,-3.9218316,-3.9439363,-3.8851805,-3.9318604,-3.9495578,-3.953403,-3.94775,-3.985354,-3.9706626,-3.9694867,-4.0078673,-4.0466313,-4.027806,-3.965755,-4.031145,-4.0142508,-4.0227203,-4.0437584,-4.0752106,-4.0726123,-4.0775857,-4.034346,-3.4942627,-3.9805279,-3.9730897,-3.9359326,-4.001426,-3.9186587,-3.980846,-3.6985073,-3.0083532,-3.6968436,-3.810574,-3.872952,-3.9024458,-3.8859086,-3.9010034,-3.8892999,-3.9563904,-3.9108157,-3.960168,-4.0201645,-3.9900064,-3.984321,-4.011993,-4.029796,-4.0692253,-4.0840316,-4.1249275,-4.187866,-4.0908165,-4.0439906,-4.005406,-3.9969597,-3.939896,-4.0227675,-4.0082874,-3.3822486,-3.4451826,-3.7694516,-3.8608737,-3.8940964,-3.919724,-3.9421158,-3.9598937,-3.9526587,-3.8960614,-2.002675,-3.2039618,-3.5176842,-3.6487315,-3.7079334,-3.7433639,-3.635994,-3.5970302,-2.9377327,-2.6076708,-3.0360959,-3.4694376,-3.6692648,-3.72051,-3.7335396,-3.849822,-3.7956462,-3.8004537,-3.5406382,-2.8138125,-3.3197432,-3.6850548,-3.6143913,-3.7949328,-3.8649573,-3.8865128,-3.966745,-4.0887923,-3.9670653,-4.008881,-4.0838313,-3.9282856,-3.0997405,-3.1539557,-3.2108946,-3.5259933,-3.5699959,-3.6537635,-3.7876062,-3.8340535,-3.920219,-3.6971016,-3.8852172,-3.9396453,-4.03128,-3.4618666,-3.8384728,-3.64377,-3.7377543,-3.8191476,-3.835844,-3.881164,-3.9736595,-3.9713311,-4.0321283,-4.0268044,-4.0603175,-4.065559,-3.9317122,-4.04516,-3.9895673,-3.9947457,-4.02054,-3.836598,-2.9608126,-2.9944425,-2.7006025,-2.8531103,-2.6026762,-2.6241436,-2.5855546,-1.7931285,-2.0882618,-2.1626065,-1.8060944,-2.0616374,-1.9157071,-1.9277749,-2.026256,-1.9796946,-1.8760076,-1.9841418,-1.7282155,-1.8560224,-1.9137712,-1.8880358,-1.1089995,-0.9546774,-0.9613299,-1.265928,-1.391834,-1.3667877,-0.9763693,-1.031043,-1.301203,-1.4004667,-1.4812133,-1.3878758,-1.2506127,-1.4809022,-1.4517176,-1.4509184,-1.4473164,-1.5284026,-1.5860727,-1.403717,-1.554682,-1.5335011,-1.5791991,-1.6088655,-1.5288289,-1.561017,-1.2099872,-1.1817114,-1.5156937,-1.5215888,-1.2870796,-1.184108,-1.3202736,-1.5544832,-1.8698614,-1.8293419,-1.7739642,-1.7453916,-1.6974072,-1.6667011,-1.636683,-1.7351847,-1.6395571,-1.6805575,-1.6667459,-1.4896703,-1.3521032,-1.4695604,-1.7701178,-1.7000341,-1.6772025,-1.6580589,-1.6105547,-1.5959153,-1.4185762,-1.6073713,-1.51071,-1.4946187,-1.5817289,-1.5627239,-1.5261631,-1.7135806,-2.1217766,-2.3375494,-2.3747609,-2.422544,-2.225595,-2.1818151,-2.0883803,-2.024138,-1.9997509,-2.2077596,-2.5578623,-2.5152087,-2.3867104,-2.449154,-2.5434375,-2.4038172,-2.239502,-2.11094,-2.1876173,-2.1196294,-1.9797564,-1.9688053,-1.9839361,-2.0382605,-2.0715895,-2.027247,-2.0264397,-1.9644866,-2.0041132,-1.8302348,-1.7657318,-1.6261997,-1.5504267,-1.1251497,-0.69781893,-0.3469848,-0.122418076,-0.18689269,0.070078075,-0.3660615,-0.7560684,-1.4867265,-2.499753,-2.7294762,-2.6767511,-2.1680002,-2.1207016,-2.1358078,-1.9091637,-1.6187353,-1.818655
+-0.83737427,-1.6771884,-2.0965538,-2.2466347,-2.521964,-2.6985269,-2.6391904,-2.6427116,-2.8092694,-2.8678331,-2.8474426,-2.927816,-2.9928412,-3.077182,-3.0813055,-3.2438076,-3.2883906,-3.371858,-3.4043243,-3.3075697,-3.3397012,-3.3501868,-3.3821092,-3.5903945,-3.5504084,-3.3459187,-3.4888,-3.3551283,-3.5720704,-3.6206505,-3.648384,-3.6563606,-3.5640233,-3.527884,-3.5010524,-3.4166284,-3.689632,-3.247289,-3.276193,-3.7937303,-3.856123,-3.7877727,-3.7485995,-3.711,-2.937605,-3.2128558,-3.16718,-3.7285233,-3.8457928,-3.8336883,-3.8310857,-3.8223963,-3.9702525,-3.9331203,-3.9970012,-3.8761816,-3.9359913,-3.995891,-3.9639606,-3.9394708,-3.9332833,-3.91967,-3.999229,-4.0047517,-3.9644046,-3.9954267,-3.9637675,-4.0239077,-4.022698,-4.074944,-4.0893683,-4.131535,-4.128673,-4.174442,-4.1840625,-4.1916986,-4.1454206,-4.1243467,-4.0986695,-4.110123,-4.08635,-4.1188717,-4.141706,-1.236459,-3.5060966,-3.9061828,-3.9473634,-3.9681468,-4.0710425,-4.123465,-3.9048672,-3.345165,-4.209524,-4.243276,-4.2449064,-4.2272186,-4.1971087,-4.1372,-4.186279,-4.2339587,-4.257253,-4.223309,-4.2503037,-4.2452464,-4.241446,-4.2743497,-4.3201036,-4.3368945,-4.4035625,-4.3230643,-4.349194,-4.3312883,-4.2966123,-4.249979,-4.229343,-4.2396626,-4.250605,-4.245833,-4.225156,-4.2591443,-4.295921,-3.4422781,-4.0700355,-4.216315,-4.137093,-4.1749673,-4.2837105,-4.221277,-4.0930924,-3.874021,-4.3325653,-4.3556,-4.2478194,-4.251783,-4.179936,-4.144233,-4.199162,-4.174611,-4.261555,-3.9845395,-4.1608768,-4.2259717,-4.1805387,-4.20192,-4.188049,-4.19844,-4.179499,-2.8643608,-3.851757,-4.2588544,-4.2836065,-4.2822394,-4.249643,-4.3635073,-4.3378644,-4.3093534,-3.1198654,-4.2349925,-4.346094,-4.400922,-4.3673224,-4.3353076,-4.244614,-4.2995324,-4.3654513,-4.2489657,-2.52629,-3.90068,-4.1166,-4.169089,-4.201135,-4.222606,-4.266055,-4.3152356,-1.88273,-3.551194,-3.913127,-3.777648,-3.8033261,-3.8155046,-3.9011288,-3.9148436,-3.3212876,-3.8143258,-4.063513,-4.0849614,-4.043425,-4.0492177,-4.0052266,-3.9823117,-3.9963517,-4.0276756,-4.073789,-4.1231017,-4.090242,-4.1299567,-4.197327,-4.2759185,-4.359487,-4.362553,-4.302382,-4.2801113,-4.2701926,-4.275176,-4.2604103,-4.253034,-4.2851987,-3.5923645,-4.0548368,-4.1864033,-4.2834315,-4.254659,-4.3346395,-4.296168,-4.303596,-4.1871514,-4.2080994,-4.2732434,-4.2826266,-4.2487297,-4.244101,-4.2497053,-4.2543817,-4.253872,-4.2617774,-4.276921,-4.266151,-4.272409,-4.272343,-4.281667,-4.3313727,-4.0365815,-4.1437325,-4.304664,-4.262152,-4.1037135,-4.091913,-3.7530675,-3.8468537,-3.7756505,-3.6973782,-3.6213803,-3.563654,-3.4617133,-3.4908776,-3.4867842,-3.3649445,-3.3529725,-3.5472984,-3.2481582,-3.233295,-3.0242617,-3.3013995,-3.3370073,-2.9534388,-3.1018734,-3.060151,-3.2181525,-3.1481757,-2.860728,-2.9285798,-2.4870753,-2.507113,-2.6458592,-2.7581751,-2.5579033,-2.4515963,-2.4343257,-2.6173139,-2.2549984,-2.3273354,-2.5013113,-2.5924354,-2.6033452,-2.5409214,-2.5121639,-2.6101155,-2.5544524,-2.620798,-2.517728,-2.1314814,-2.1591766,-2.4012976,-2.465333,-2.4648535,-2.4899387,-2.4215593,-2.5269842,-2.450875,-2.4072871,-2.4413238,-2.4335928,-2.4492507,-2.5364428,-2.556571,-2.5173097,-2.4498951,-1.9261384,-1.8426049,-1.8863416,-1.8830981,-1.9059758,-1.9646368,-2.0577307,-2.0716474,-2.111063,-2.1179526,-2.1675615,-2.167572,-2.181315,-2.1640506,-2.2417,-2.2772942,-2.1741257,-2.1596298,-2.1916363,-2.0585136,-1.9493256,-2.02266,-2.0622044,-2.1499643,-2.1695251,-2.2262564,-2.1502967,-2.0128448,-2.0822024,-2.3634825,-2.55452,-2.2231889,-2.032559,-1.8869967,-1.9078755,-2.1352782,-2.0693734,-1.9670215,-2.0240192,-2.1315303,-2.1970663,-2.2881045,-2.2704484,-2.114759,-2.3871367,-2.5493255,-2.7552702,-2.998184,-3.1831632,-3.2909203,-3.3437128,-3.299035,-3.2968173,-3.2988048,-3.2704577,-3.2894764,-3.2908218,-3.3475513,-3.4669163,-2.7118583,-3.3296208,-3.4722595,-3.2027662,-3.337355,-3.415063,-3.495603,-3.5507667,-2.9983258
+-1.5977483,-2.065098,-2.1878114,-2.3138282,-2.3770561,-2.4990878,-2.54776,-2.646821,-2.8067348,-2.9210873,-2.9442322,-2.9641795,-3.0422158,-3.1361785,-3.0048323,-2.789641,-3.216858,-3.3022304,-3.461214,-3.2922194,-3.327009,-3.366303,-3.4918165,-3.446661,-3.5976331,-3.0286515,-3.7471395,-2.3009462,-3.7740731,-4.0187163,-3.9714322,-3.9843273,-3.788031,-3.8532314,-3.8920112,-4.0403037,-3.7209096,-3.6963253,-3.20146,-4.1422334,-4.01747,-3.9663844,-3.9587293,-3.9558177,-4.074055,-3.513881,-2.7675562,-3.9749398,-4.2811623,-4.301579,-4.191218,-4.0195136,-3.8943896,-3.9937763,-3.914565,-3.9724607,-4.026584,-4.0257745,-4.124615,-4.039696,-4.0125976,-4.063329,-4.107217,-4.1485233,-4.2007804,-4.283832,-4.335233,-4.341576,-4.286902,-4.35706,-4.2875447,-4.304304,-4.277449,-4.333186,-4.1881127,-4.219585,-4.136911,-4.2172084,-4.2043653,-4.230883,-4.249164,-4.2629213,-4.3455014,-4.4199014,-4.3421836,-4.251865,-4.2057753,-4.286471,-4.3922944,-3.3913617,-4.5408072,-3.4677086,-3.64066,-4.6974397,-4.7113233,-4.631191,-4.528854,-4.449781,-4.4562626,-4.4399056,-4.3804307,-4.2325644,-4.3104124,-4.403559,-4.420696,-4.5015383,-4.4779363,-4.493305,-4.6046853,-3.2403088,-4.607416,-4.7039094,-4.6822863,-4.5394015,-4.5328846,-4.5442815,-4.6150136,-4.560565,-4.5667124,-4.6407294,-4.7102523,-4.155866,-4.5729666,-4.5927014,-4.5568137,-3.772925,-4.4469457,-3.5848174,-4.651173,-4.245609,-4.771179,-4.743338,-4.6544547,-4.549289,-4.5575566,-4.5709677,-4.6910124,-4.657715,-4.7222815,-4.6631823,-3.8230472,-4.5579724,-4.5264077,-4.6252484,-3.5283837,-3.6690383,-4.564893,-4.6682916,-4.596091,-4.466761,-4.570227,-4.5319858,-4.510139,-4.5803094,-4.4470487,-2.929443,-4.266853,-4.5132585,-4.6305737,-4.6203046,-4.5322747,-4.5148664,-4.414348,-4.5726542,-4.492095,-3.9666514,-4.5283527,-4.4570975,-4.380858,-4.401113,-4.4320683,-4.461227,-4.533774,-4.1706357,-2.7776794,-3.8481197,-4.3850045,-4.2105203,-4.332249,-4.3911943,-4.435126,-4.0429244,-3.4189134,-4.3408837,-4.6166224,-4.124292,-4.3790407,-4.501476,-4.4578433,-4.3147016,-4.3561864,-4.42081,-4.407007,-4.3847203,-4.342109,-4.2872868,-4.282002,-4.2427893,-4.2061076,-4.2630877,-4.1554565,-4.17661,-4.1931686,-4.23875,-4.238214,-4.253452,-4.2860317,-2.5972288,-4.2874956,-4.5243616,-4.6819673,-4.6418266,-4.6024966,-4.5016055,-4.3862567,-4.3254313,-4.275331,-4.385882,-4.257398,-4.4008236,-4.3938823,-4.3355412,-4.318131,-4.300434,-4.286303,-4.2610383,-4.25227,-4.2633743,-4.2316985,-4.214827,-3.7131562,-4.157861,-4.170906,-4.2886033,-2.930596,-4.176683,-4.214824,-4.3191957,-4.206146,-4.2236524,-4.3664026,-4.248162,-4.2013125,-4.116756,-4.141601,-4.13143,-4.091415,-4.072615,-4.1681666,-4.0832705,-4.065059,-3.9466624,-4.1002054,-4.11223,-4.1742883,-4.0964103,-4.1028233,-4.135769,-4.0955462,-4.2100463,-3.699213,-3.7346792,-3.6552067,-3.7642732,-3.8877826,-3.952847,-3.117118,-3.8803616,-3.4614887,-3.711577,-3.6565394,-3.7241473,-3.7816892,-3.7877479,-3.7773223,-3.8067527,-3.872108,-3.8732486,-3.8773093,-3.3878226,-3.5673308,-3.42564,-3.502055,-3.2657378,-3.7408347,-3.6751437,-3.4214323,-3.515379,-3.884273,-3.890716,-3.7863069,-3.6996922,-3.7451806,-3.7213883,-3.3876643,-3.863297,-3.7858758,-3.639638,-3.8176584,-3.66643,-3.54311,-3.5031245,-3.505037,-3.5944734,-3.6597915,-3.7017255,-3.7149162,-3.6970325,-3.691318,-3.7759576,-3.8331275,-3.9125032,-3.9415345,-3.8979888,-3.9014168,-3.958147,-3.7723217,-3.8205113,-3.885302,-3.8205695,-3.8809838,-3.9830832,-4.0270276,-3.9008965,-3.5653815,-3.948598,-4.0311456,-4.063769,-4.1159606,-3.9789195,-3.9423914,-3.9408088,-3.965715,-3.8653216,-3.9038134,-3.8563747,-3.917809,-3.98906,-3.9615397,-3.989872,-3.9326363,-3.9545474,-3.956987,-3.8907795,-3.8073034,-3.7889009,-3.8100348,-3.8107295,-3.7780952,-3.7992992,-3.770413,-3.760087,-3.8138351,-3.8310237,-3.8343167,-3.8451438,-3.6832736,-3.7928834,-3.858025,-3.7724175,-3.9783568,-3.4549484,-3.781053,-3.9180713,-3.7836995
+-1.0357635,-1.6983328,-2.0918112,-2.2536168,-2.3363397,-2.3685215,-2.4202185,-2.424436,-1.9227939,-2.9006267,-3.0577028,-3.1808944,-3.2780704,-3.3188014,-3.3053143,-2.8962598,-3.1317432,-3.1475096,-3.2030325,-3.2273657,-3.2519002,-3.278712,-3.2245636,-3.2338219,-3.4879842,-3.23561,-3.3236775,-3.0167959,-3.4677463,-3.3656726,-2.7992387,-3.4543366,-3.3515337,-3.4612882,-3.5585825,-3.7630095,-3.4947124,-3.6754444,-3.3399181,-3.7533965,-3.7763457,-3.6844573,-3.7892127,-3.8541236,-3.8805614,-3.6945038,-3.5331964,-3.2496996,-3.7601485,-3.7896118,-3.7778382,-3.70087,-3.83886,-3.8822188,-3.9145007,-4.08231,-4.0038714,-4.0950484,-4.152697,-4.123638,-4.121786,-4.155668,-4.163719,-4.2001433,-4.2294927,-4.231036,-4.2356997,-4.1342463,-4.1912684,-4.1829925,-4.122933,-4.089013,-4.0996413,-3.9918227,-4.140476,-4.041658,-4.028811,-4.090493,-4.1123176,-4.1150975,-4.1913877,-4.2021585,-4.208143,-4.1988416,-4.227674,-4.260634,-4.2842846,-4.266139,-4.298676,-4.325796,-4.2620893,-4.1715755,-3.7723641,-4.213708,-4.195192,-4.155284,-4.1473274,-4.1804433,-4.214038,-4.217885,-4.1506,-4.239152,-4.233686,-4.2421627,-4.2802978,-4.285648,-4.2021976,-4.3258586,-4.081096,-4.040523,-4.1824546,-4.232773,-4.2278333,-4.204059,-4.267589,-4.2347517,-4.2181644,-4.2422295,-4.2676644,-4.278155,-4.243291,-3.9504151,-4.2978745,-4.16005,-4.1780233,-3.963838,-2.4371762,-2.616844,-3.62312,-3.7981572,-3.8627534,-3.7973628,-3.8148074,-3.8843594,-3.9693928,-4.032471,-4.0953007,-4.1763496,-4.162826,-4.123776,-4.113022,-4.1460195,-4.1395874,-4.0698915,-3.7245889,-3.7707362,-3.8408146,-3.7973833,-3.501903,-2.702097,-3.6447215,-3.6890557,-3.8176055,-3.8323126,-3.8001904,-3.556114,-3.7333226,-3.770845,-3.9027562,-3.9943414,-4.0654025,-4.113984,-4.098186,-4.1497903,-4.0787272,-4.0903354,-4.097486,-4.1113253,-4.1184,-4.164861,-4.1996217,-4.2045817,-4.2148557,-3.684873,-3.8280177,-3.5222318,-3.8516402,-3.825492,-3.9698238,-4.0322347,-4.0520067,-2.8346612,-3.2737699,-3.5571318,-3.907907,-3.927219,-3.8183622,-3.9732957,-4.076072,-3.976378,-4.0821567,-4.1520195,-4.0929985,-4.1175976,-4.04494,-4.087683,-4.027883,-3.9867759,-3.999003,-3.994163,-3.9618235,-3.9991364,-3.9452047,-4.0226808,-4.044445,-4.067131,-4.036467,-3.237043,-3.777893,-3.7999983,-3.9315877,-3.9516397,-3.902656,-3.9026961,-3.8440065,-3.898611,-3.835134,-3.783361,-3.6270895,-3.667223,-3.8072896,-3.800887,-3.845779,-3.877684,-3.863439,-3.881836,-3.894095,-3.8900838,-3.8711686,-3.834931,-3.8463664,-3.694728,-3.6883519,-3.9472857,-2.767487,-3.4696164,-3.731278,-3.7088618,-3.5794828,-3.559075,-3.758706,-3.554119,-3.4222033,-3.3264031,-3.3455334,-3.3924947,-3.357876,-3.3024268,-3.3269389,-3.3318014,-3.3885384,-3.242075,-3.364668,-3.4710402,-3.6022472,-3.652677,-3.659761,-3.64213,-3.7261982,-3.789884,-3.596912,-3.3198833,-3.1179402,-3.072251,-3.182101,-2.8363757,-2.6608377,-3.01593,-3.036829,-2.9933226,-2.899008,-2.9297624,-2.9637923,-2.9364269,-2.5625641,-2.8654184,-2.8866615,-2.8963013,-2.9290893,-2.9333644,-2.650854,-2.7059307,-2.686386,-2.5804074,-2.724347,-2.832449,-2.889718,-2.9516754,-2.9528766,-2.9494472,-3.0719936,-2.9904737,-2.9565144,-3.0161777,-2.7708826,-2.4771852,-2.5492876,-2.429892,-2.3469293,-2.4026332,-2.3168206,-2.1993105,-2.175374,-2.1082165,-2.005892,-1.9779277,-1.9126024,-1.9976401,-1.81148,-1.5318065,-1.6868854,-1.5453305,-1.5727394,-1.7153311,-1.9844675,-2.3774662,-2.76685,-2.69484,-2.9097447,-2.9943893,-2.897967,-2.9231756,-2.96251,-2.5699015,-3.0198102,-3.0588994,-3.0644407,-3.2126353,-3.2539625,-3.1275592,-3.034551,-3.0011904,-3.0106542,-2.8980563,-2.9589772,-2.9459028,-2.932137,-2.91495,-2.989575,-3.179718,-3.2488317,-3.2138188,-3.3013456,-3.2968142,-3.3054988,-3.3347106,-3.33933,-3.406824,-3.4653869,-3.495407,-3.508472,-3.4244013,-3.518218,-3.4992514,-3.4600346,-3.4460003,-3.3678832,-3.3831358,-3.502646,-3.4503236,-3.5541337,-3.2032754,-3.1696322,-3.449774,-3.3316522
+-0.50861764,-1.4841726,-2.1384892,-2.4704733,-2.65367,-2.8163996,-2.8069172,-2.658759,-2.726966,-2.819339,-3.1858191,-3.0179813,-3.2427344,-3.3154578,-3.1304355,-2.7952454,-3.0305111,-2.9940422,-3.1763592,-3.295386,-3.3934774,-3.4439967,-3.523742,-3.6716113,-3.6990404,-3.8440533,-3.899547,-3.9478383,-3.9148726,-3.6403942,-2.8351429,-3.5629134,-3.5025368,-3.6571977,-3.6802318,-3.7056832,-3.8686929,-3.9495387,-3.985632,-4.011903,-4.029295,-4.047968,-4.0351,-4.132274,-4.1098623,-4.158238,-3.8756185,-3.611153,-3.8943396,-3.9960055,-3.9828773,-4.0574656,-4.187616,-4.1734405,-4.256658,-4.3375545,-4.3512664,-4.352207,-4.335593,-4.3655405,-4.325658,-4.286285,-4.2769675,-4.2723613,-4.33618,-4.4266386,-4.460403,-4.4157276,-4.5224967,-4.5560336,-4.596701,-4.636581,-4.620106,-4.626617,-4.659363,-4.5497484,-4.520695,-4.5832524,-4.5547523,-4.4755807,-4.4333224,-4.500337,-4.5365567,-4.443368,-4.6987224,-4.7186446,-4.596025,-4.554186,-4.6183934,-4.6318145,-4.720764,-4.5605807,-3.1717117,-4.2359366,-4.3332887,-4.489766,-4.481424,-4.4957075,-4.533112,-4.5502667,-4.467114,-4.4250236,-4.420584,-4.449428,-4.437093,-4.420754,-4.512238,-4.630849,-4.652079,-4.5546746,-2.6132512,-3.5077844,-3.2113075,-3.6738384,-3.9275389,-4.0561657,-4.088059,-4.146733,-4.124456,-4.09001,-4.2649865,-4.3660865,-2.8699799,-3.1575234,-3.0552413,-2.6037529,-3.0122626,-3.125351,-3.3747466,-3.6081977,-3.759152,-3.8022332,-3.8251214,-3.8876562,-3.9608479,-4.016214,-4.1340885,-3.5039067,-3.7680764,-3.920116,-3.9703708,-4.107611,-4.1667995,-3.9282675,-3.7310176,-3.35984,-3.744506,-3.9018006,-3.9751391,-3.6722126,-3.7812953,-3.9079003,-3.9949703,-4.021769,-3.8805966,-3.8134265,-3.9720473,-3.9505157,-4.0698,-4.1730266,-4.172188,-4.1922555,-4.177033,-4.2896657,-4.311894,-4.2881513,-4.222075,-4.272138,-4.288956,-4.2751884,-4.2597194,-4.243101,-4.2889647,-4.179231,-4.183107,-3.912314,-4.0933456,-4.134543,-4.2392077,-4.293228,-4.283238,-4.0016503,-3.7109776,-3.9633465,-3.9275198,-3.5508049,-3.4845407,-3.8716812,-3.962562,-3.9207234,-4.118266,-3.9374557,-3.9531288,-4.0401626,-4.070448,-4.1379647,-4.1428866,-4.1007504,-4.069671,-4.0751762,-4.135807,-4.087566,-4.0486293,-4.173131,-4.2482047,-4.266258,-4.276435,-3.8493814,-3.966045,-4.0104985,-4.0297656,-4.0753636,-4.0493503,-3.9933677,-3.9577432,-4.042282,-3.9289317,-2.8394003,-3.2613616,-3.2660646,-3.467379,-3.50005,-3.578741,-3.635749,-3.7093816,-3.7881083,-3.8231153,-3.7812972,-3.8718948,-3.7675233,-3.7283301,-3.3848522,-3.6063418,-3.9326415,-3.0458698,-3.5525599,-3.4419494,-3.3651047,-3.2318506,-3.3610811,-3.4276545,-2.8851857,-3.0719843,-2.783527,-2.680191,-2.737472,-2.6817923,-2.5856853,-2.5473146,-2.6349647,-2.709715,-2.621996,-2.6067586,-2.7669656,-3.0151744,-3.1865501,-3.3244915,-3.3276064,-3.3848524,-3.0626862,-3.500999,-2.8127668,-2.5632718,-2.5281682,-2.7163272,-2.2120976,-2.0790024,-2.2035775,-2.4083042,-2.3770506,-2.2526898,-2.2970247,-2.3792992,-2.3356845,-2.103278,-1.9544704,-1.9451461,-2.0715969,-2.1516173,-2.2299523,-2.3836432,-2.363295,-2.1813715,-2.2967408,-2.6484585,-2.781171,-2.97539,-3.0336623,-3.2337337,-2.876668,-2.8594174,-2.7926457,-2.535422,-2.4316988,-2.2373486,-1.8735688,-1.8627319,-1.6855116,-1.655889,-1.7011592,-1.6497507,-1.6436548,-1.6489258,-1.6110003,-1.5897567,-1.6273985,-1.6625128,-1.7276793,-1.6621413,-1.6727233,-1.6968756,-1.6492901,-1.6169508,-1.809464,-2.3054657,-2.6041827,-2.7372923,-2.8945627,-3.0254273,-2.8970642,-2.6764612,-2.497541,-2.4496493,-2.5296814,-2.5770135,-2.6222563,-2.628255,-2.8233063,-3.0410948,-2.9559793,-2.8682747,-2.7607641,-2.6291704,-2.0164456,-1.8575873,-1.8659704,-1.7899048,-1.6908183,-1.625289,-2.1990812,-2.7793922,-2.8913603,-3.1627007,-3.3247483,-3.3907483,-3.4445136,-3.5065212,-3.5492878,-3.5611749,-3.5841284,-3.5973394,-3.5484767,-3.5115998,-3.519515,-3.5111465,-3.4497178,-2.5273237,-3.371669,-3.482652,-3.494632,-3.6630347,-3.224926,-3.455855,-3.566028,-2.7807226
+-0.75621325,-1.6094542,-1.8892093,-2.1247315,-2.2762022,-2.4011767,-2.5256472,-2.2129872,-2.9576187,-3.267662,-3.3047547,-3.5433145,-3.5269656,-3.6874447,-3.6647842,-3.2410116,-3.28112,-3.2321525,-3.3730397,-3.5141299,-3.6357765,-3.6585233,-3.687407,-3.7711182,-3.797793,-3.91017,-3.9516258,-3.964645,-3.9928803,-3.4754455,-2.8037107,-3.5773408,-3.480146,-3.545945,-3.5103817,-3.5518837,-3.655118,-3.507988,-3.6684587,-3.8982038,-3.9445906,-3.9228263,-3.9490047,-3.9899955,-3.9977336,-3.9737968,-3.822382,-2.5766044,-3.7322092,-3.772818,-3.7986627,-3.8331304,-3.886312,-3.9155278,-3.9787774,-4.0441823,-4.0775695,-4.141847,-4.1255565,-4.166074,-4.1814065,-4.210403,-4.179871,-4.178254,-4.197665,-4.195084,-4.1881113,-4.22692,-4.2773566,-4.209679,-4.3027334,-3.4744308,-4.2982135,-4.3254066,-4.379296,-4.3328137,-4.333131,-4.36723,-4.3677635,-4.2996235,-4.196078,-4.0374336,-4.154452,-4.267974,-4.1638656,-3.8776703,-4.125546,-4.089886,-4.069391,-3.7661257,-3.2339797,-2.7911,-3.0289123,-3.3380709,-3.5266259,-3.6537647,-3.6106555,-3.6387668,-3.6898277,-3.767932,-3.7380214,-3.7514744,-3.861875,-3.9439073,-4.0050874,-4.0310283,-4.0451427,-3.3569376,-3.0185702,-3.4996347,-3.6142406,-2.1191201,-3.4333375,-3.3749628,-3.6263857,-3.711985,-3.6319957,-3.661376,-3.7657428,-3.7593493,-3.7347388,-3.5278106,-3.4839218,-2.5508595,-3.2524679,-3.492993,-2.8186164,-3.551609,-3.765348,-3.9070477,-3.524342,-3.5888543,-3.3901944,-3.774238,-3.9021373,-3.8576608,-3.8615327,-3.9090343,-3.9329677,-3.9791121,-3.8438191,-4.0382953,-3.9806962,-3.4353151,-2.8023753,-3.5718129,-3.4178922,-3.4924562,-3.0841227,-3.7213225,-3.757194,-3.9587235,-3.9915757,-4.0383935,-3.9774003,-3.9300175,-3.7328606,-3.6132562,-3.7299418,-3.9724126,-3.8751855,-4.024092,-4.021254,-3.9650817,-3.5005908,-3.7059526,-3.631471,-3.8666272,-3.8785691,-3.88449,-3.969283,-4.0175138,-4.095816,-3.9555726,-4.0832086,-3.7675328,-3.9596553,-3.998547,-4.034188,-3.8692207,-3.2290564,-1.9264402,-3.6398604,-3.8074088,-4.016783,-3.466814,-3.7538939,-3.9906254,-4.15749,-4.0402417,-4.2412925,-3.728311,-4.134423,-4.102507,-4.141872,-4.074848,-4.0711293,-3.9508457,-3.9207067,-3.8715363,-4.013231,-4.1560264,-4.1114726,-4.1667266,-4.1675305,-4.2285147,-4.2378545,-3.096322,-4.0015903,-3.9948502,-4.04586,-4.1176944,-4.0684857,-3.9915109,-4.0143304,-4.0886207,-3.175197,-3.1903753,-3.9676566,-4.057717,-4.212371,-4.1752877,-4.113104,-4.1507688,-4.194094,-4.2261643,-4.2817016,-4.246699,-4.2602987,-4.1341667,-3.9030023,-4.103221,-4.162874,-4.3482776,-3.2951794,-3.7734704,-3.8831582,-3.9613566,-3.9418073,-3.9823298,-3.7639222,-3.6203532,-3.5263147,-3.2975464,-3.229634,-3.4403455,-3.2816901,-3.1649647,-3.1101813,-3.2347713,-3.3046353,-3.3921854,-3.4129217,-3.5040545,-3.6039777,-3.74651,-3.8194804,-3.849934,-3.8769064,-3.2694392,-3.372326,-3.2465453,-2.9734285,-2.898886,-3.267889,-2.527306,-2.7630978,-2.8981485,-2.9107966,-2.7767944,-2.6700568,-2.7365334,-2.7761054,-2.764187,-2.7545066,-2.545467,-2.3904793,-2.521522,-2.545667,-2.5713792,-2.7836752,-2.7055614,-2.5558186,-2.7533977,-2.9383786,-2.982034,-3.2180338,-3.2940145,-3.4302132,-3.225237,-3.2198257,-3.269527,-2.9868884,-2.8366494,-2.6439967,-2.3832932,-2.33945,-2.1718297,-2.0006328,-1.7682295,-1.7542524,-1.7430682,-1.7381363,-1.7199419,-1.6758056,-1.6382802,-1.6009948,-1.6414306,-1.681787,-1.6793077,-1.6796105,-1.7057359,-1.9038029,-2.3702476,-2.8919582,-3.1373544,-3.2117372,-3.428024,-3.4078953,-3.3240297,-3.088767,-2.941023,-2.9427507,-3.0533004,-2.8426113,-2.7974346,-2.8430939,-3.040204,-3.045926,-2.9377081,-2.966684,-3.0182548,-3.0871193,-2.6266723,-2.7299676,-2.539657,-2.6430416,-2.8491216,-3.1020844,-3.3177178,-3.4790676,-3.5893805,-3.7407174,-3.7934518,-3.797655,-3.7697806,-3.6761627,-3.7023854,-3.72087,-3.6846914,-3.7518144,-3.7388682,-3.7294598,-3.780353,-3.7513914,-3.7701602,-3.2280116,-3.5066247,-3.7533798,-3.7887654,-3.912621,-3.6470385,-3.530325,-3.750486,-3.3685517
+-0.6719665,-0.90916353,-1.0127523,-1.1400597,-1.2281289,-1.3145263,-1.4292979,-1.1949167,-1.7470682,-1.8616431,-1.8155077,-1.9479163,-2.4532347,-2.648039,-2.6556196,-2.533887,-2.496379,-2.5466712,-2.566076,-2.5919783,-2.6447117,-2.6776695,-2.6637154,-2.6730833,-2.680877,-2.6682668,-2.6884127,-2.7223785,-2.7261162,-2.6632595,-2.5023248,-2.6035051,-2.719935,-2.7470646,-2.7302709,-2.7596245,-2.6751666,-2.6757836,-2.6381216,-2.660912,-2.6762538,-2.7202291,-2.7624102,-2.694885,-2.6215951,-2.7567768,-2.6070065,-2.119496,-2.7610621,-2.8150718,-2.8950832,-2.8739288,-2.8641338,-2.8925602,-2.908854,-2.8679166,-2.8328981,-2.8704085,-2.9229512,-2.889353,-2.8729644,-2.8491473,-2.8726687,-2.8928514,-2.9173455,-2.9626632,-3.0364861,-3.0838692,-3.0266576,-2.9709492,-2.9750676,-2.735825,-3.1228456,-3.075138,-3.1045232,-3.1558974,-3.149932,-3.1508887,-3.1368487,-3.1641345,-3.182035,-2.729722,-3.2752182,-3.2919722,-3.1993132,-3.2639873,-3.271369,-3.2398994,-3.226509,-2.9651842,-1.6961603,-1.2389731,-2.5653796,-3.0822735,-3.1328244,-2.8964906,-2.776486,-2.6864386,-2.6349049,-2.6685205,-2.6897843,-2.7470052,-2.8038144,-2.8708534,-2.9131787,-2.9568837,-2.967788,-3.0338898,-2.919108,-3.0998712,-2.205084,-2.966155,-2.9581423,-3.0493212,-3.0686674,-3.0811043,-3.069181,-2.3347402,-2.5820367,-2.954093,-2.4216113,-1.8550832,-3.01588,-2.9182346,-2.796749,-2.3994834,-2.99773,-3.1764984,-3.2209055,-2.9642053,-2.936308,-2.870008,-2.6731677,-2.8561995,-2.9339285,-2.4059186,-2.6367893,-2.336806,-2.668188,-2.5912256,-2.5812566,-2.6517181,-2.6286478,-2.668713,-2.7007265,-2.5533118,-2.553912,-2.5793672,-2.3113804,-2.6270978,-2.5831017,-2.5942056,-2.5031848,-2.3329754,-2.6602674,-2.596167,-2.7170901,-2.7167373,-2.733657,-0.38006634,-2.417243,-2.9349658,-2.954186,-2.8976135,-2.9903545,-2.749116,-2.1370397,-2.7798057,-2.7914524,-2.6922915,-2.5999823,-2.5905495,-2.505611,-2.5618153,-2.6101499,-2.5447402,-2.6056972,-2.5732505,-2.5531406,-2.43572,-2.4634652,-2.3300447,-1.617235,-2.6581469,-2.8475122,-2.323565,-2.746534,-2.8529372,-2.9040074,-2.7556083,-2.71347,-2.3262782,-2.6574225,-2.742971,-2.6865568,-2.6465244,-2.614953,-2.630113,-2.620487,-2.612471,-2.6151257,-2.589939,-2.543067,-2.4844832,-2.5320578,-2.5739005,-2.541578,-2.5399284,-2.4993057,-2.4353855,-2.458229,-2.460438,-2.4500015,-2.4702494,-2.4746113,-2.3914623,-2.0121565,-0.71377665,-2.548062,-2.782586,-2.867439,-2.8375545,-2.8535209,-2.8346257,-2.824027,-2.7903242,-2.7786279,-2.7579238,-2.7887652,-2.774929,-2.8040614,-2.7651374,-2.752057,-2.770286,-1.613317,-2.6256967,-2.734295,-2.6980066,-2.7733865,-2.8407154,-2.8371584,-2.5170064,-2.5781386,-2.5443258,-2.589271,-2.7020788,-2.8027987,-2.7973075,-2.8222523,-2.9285395,-2.9864092,-2.9682083,-2.9245234,-2.9125872,-2.9862146,-3.011941,-3.035747,-3.0059047,-2.9560385,-2.862362,-2.2269144,-2.55248,-2.3174825,-2.2850726,-2.528668,-1.9205015,-2.4807756,-2.2907557,-2.3103147,-2.1923475,-1.9835067,-2.058727,-2.2452397,-2.4581718,-2.1147041,-2.4421756,-2.3977761,-2.2492535,-2.252717,-2.4754934,-2.598579,-2.4744916,-2.414279,-2.571343,-2.7241964,-2.7542577,-2.7347763,-2.712852,-2.8001661,-2.22267,-2.5697494,-2.4844096,-2.419556,-2.557081,-2.5317678,-1.9932244,-1.9787517,-1.979821,-2.0495858,-1.7298675,-1.6537445,-1.5606151,-1.5198765,-1.4492161,-1.4607928,-1.5698273,-1.7532461,-1.8146541,-1.9327099,-2.140124,-2.210826,-2.320888,-2.4919953,-2.5952916,-2.5400944,-2.5746386,-2.7129123,-2.676281,-1.9554265,-2.3913422,-2.6252675,-2.611252,-2.624168,-2.6373248,-2.2837596,-2.3760073,-2.6963894,-2.7738523,-2.9604657,-2.923772,-2.8024,-2.6985378,-2.774112,-2.4230375,-2.7122416,-2.6610532,-2.686555,-2.757904,-2.9395292,-2.9469988,-2.9882932,-2.890571,-2.9804592,-2.986496,-2.9856424,-2.9848742,-2.9504113,-2.9410684,-2.8984125,-2.7850366,-2.7151866,-2.6560097,-2.644787,-2.6394725,-2.560648,-2.5591779,-2.3030856,-2.48705,-2.786535,-2.7221298,-2.6910255,-2.7196264,-2.6148458,-2.6416962,-2.8046875
+-1.1258264,-1.8442905,-2.0147088,-2.2256658,-2.3643925,-2.4890566,-2.730597,-2.56316,-3.08646,-3.1100082,-3.070756,-3.291463,-3.6194496,-3.7493901,-3.7552438,-3.6981783,-3.8839345,-3.8077688,-3.8523984,-3.880155,-3.918798,-3.9736314,-3.9736962,-3.9670014,-4.005532,-4.0074005,-4.111219,-4.165578,-4.0794096,-4.1821556,-4.2211347,-4.2372184,-4.2092624,-4.2096896,-4.189477,-4.1469007,-4.18156,-4.257838,-4.1984353,-4.2382565,-4.224943,-4.2472763,-4.220905,-3.7362509,-3.733549,-4.28105,-4.379544,-4.389815,-4.3163915,-4.349891,-4.3070164,-4.3216195,-4.3407607,-4.337235,-4.3439856,-4.3190594,-4.326059,-4.3723893,-4.35202,-4.319424,-4.358653,-4.4243484,-4.3205905,-4.254603,-4.301232,-4.393086,-4.3796067,-4.401237,-4.4710526,-4.4790435,-3.519785,-3.66684,-3.426755,-4.1481953,-4.264455,-4.2580442,-4.2468843,-4.254438,-4.248999,-4.3052535,-4.4123526,-4.4534006,-4.42777,-4.4754043,-3.0763037,-3.7299118,-3.5302835,-3.6700926,-3.9256387,-3.321344,-3.2369924,-2.3395715,-3.5725002,-3.8467479,-3.891388,-3.786528,-3.7504458,-3.7607288,-3.631472,-3.5000622,-3.4593782,-3.480651,-3.501339,-3.56528,-3.6090803,-3.689293,-3.7285953,-1.5705738,-2.2121527,-3.3689458,-2.3403606,-3.5407996,-3.3357606,-3.6543489,-3.8102832,-3.6201246,-3.7761874,-3.2888277,-3.5101824,-3.9270172,-3.8078904,-3.024075,-2.554189,-2.9997075,-3.933374,-3.6917775,-4.10267,-3.5333014,-3.5529242,-4.125302,-3.4728308,-3.8369737,-4.1368537,-4.1876683,-4.186132,-4.356964,-4.4485965,-4.4502034,-4.3359084,-4.2332816,-4.07911,-3.9329534,-3.6524272,-3.9081235,-3.931953,-3.8434439,-3.7026653,-3.0126472,-3.9442554,-3.9644747,-3.938209,-3.8500004,-3.7833848,-3.0805435,-2.9413292,-3.8477,-4.158357,-4.250642,-4.2791653,-2.4826484,-3.6637168,-3.8866901,-4.192228,-3.7312355,-3.8881736,-3.868919,-4.4639554,-4.633407,-4.6277666,-4.6026063,-4.4569163,-4.3931327,-4.35527,-3.9064603,-4.115824,-4.244443,-4.1449394,-4.0758276,-3.3053076,-3.6944242,-3.6286147,-3.6800647,-3.7392306,-4.4295516,-4.3934445,-3.9490843,-4.391538,-4.600721,-4.641125,-4.4820323,-4.280783,-4.084166,-4.309591,-4.313993,-4.247785,-4.167909,-4.189534,-4.200029,-4.201678,-4.1968913,-4.193644,-4.2073684,-4.163588,-4.100642,-4.2123036,-4.200569,-4.17193,-4.09845,-4.061501,-4.031943,-4.0531554,-4.0569253,-4.052615,-4.036876,-3.9968553,-3.780603,-3.4153616,-3.8580117,-3.985211,-4.055345,-4.054336,-3.9608693,-3.9310112,-3.9396095,-3.9628754,-3.9802232,-3.9983182,-4.052113,-4.0358663,-4.076089,-4.0570917,-4.0458713,-4.044266,-4.126217,-4.168502,-3.974424,-4.0336976,-4.1095295,-4.0398927,-4.092049,-4.078331,-3.6242318,-3.4769728,-3.9500108,-4.0977798,-4.261509,-4.009833,-4.0205307,-4.164209,-4.2672505,-4.2606783,-4.1918454,-4.13563,-4.19874,-4.255655,-4.21613,-4.189445,-4.186855,-4.1562533,-4.0924063,-3.6094816,-4.0856047,-3.990878,-4.130547,-4.2212605,-3.052666,-4.026138,-4.130427,-3.911569,-3.9159408,-3.9950595,-4.2152267,-4.3932676,-4.4239306,-3.8717065,-4.144565,-4.336122,-4.423624,-4.5110536,-4.518957,-4.5340457,-4.4104433,-4.4909024,-4.614789,-4.585802,-4.579906,-4.63662,-4.5875473,-4.604378,-3.4948685,-4.305427,-4.2638125,-4.341985,-4.5102625,-4.4869356,-3.4071722,-3.8661966,-4.1662683,-4.3233757,-4.113263,-4.074201,-3.9578109,-3.8946018,-3.9568248,-4.0910177,-4.301227,-4.4482665,-4.5358577,-4.6063294,-4.662246,-4.6803045,-4.620681,-4.475653,-4.450392,-4.4090705,-4.4125123,-4.3643317,-4.2885356,-3.5473077,-4.17085,-4.114637,-4.2544465,-4.2796845,-4.274077,-3.7268724,-4.075426,-4.292638,-4.465826,-4.3570023,-4.34717,-4.309316,-4.4806695,-4.2567945,-4.252042,-3.9429545,-3.997274,-4.032811,-4.0676494,-3.9765344,-3.760015,-3.883885,-3.960731,-3.9617686,-4.034003,-4.0775666,-3.9979,-4.056048,-4.1025033,-4.048434,-4.1018353,-4.1545954,-4.166926,-4.2161956,-4.264633,-4.224737,-4.2996907,-4.0377593,-4.1120286,-4.187518,-4.126353,-4.2079363,-3.830195,-4.2062593,-4.2398505,-4.2125955
+-1.0727859,-1.6353939,-1.8288281,-2.0012732,-2.1558971,-2.3872285,-2.6827548,-2.8943896,-3.022381,-3.120972,-2.8409612,-3.1758556,-3.2776766,-3.2891707,-3.2528372,-3.2822213,-3.3937852,-3.4611323,-3.5242546,-3.5904922,-3.6756873,-3.7829757,-3.7813878,-3.7785745,-3.7827268,-3.718923,-3.894166,-3.8958735,-3.87571,-3.9415898,-3.9689355,-4.059034,-3.9788814,-4.012906,-4.0004373,-4.0256443,-4.009429,-3.9831486,-4.026876,-4.0501337,-4.0386477,-4.053327,-4.0303087,-3.9445348,-3.9451861,-3.8713837,-3.9478736,-4.030463,-4.0142717,-4.0051675,-3.999104,-3.9452453,-3.9833179,-4.039149,-4.0197425,-3.9546185,-4.001837,-4.083626,-4.0788255,-4.0345345,-4.02944,-4.1287746,-3.9525828,-3.8538108,-3.9472327,-4.114717,-4.048202,-4.2004285,-4.3068137,-4.227943,-2.3692937,-4.154868,-4.023859,-4.0643725,-4.08737,-4.115468,-4.161532,-4.195026,-4.2181463,-4.3068233,-4.3429875,-4.411986,-4.434772,-4.48202,-3.6701658,-2.9293952,-3.9455624,-3.962607,-3.8425908,-2.7052886,-3.284545,-3.2065291,-4.3169856,-4.4022346,-4.3840575,-4.208863,-4.170746,-4.2367673,-4.1032825,-3.9124112,-3.8678594,-3.8146558,-3.8176718,-3.606236,-3.5708635,-3.8078656,-3.8183556,-2.8732462,-3.2973845,-3.3004773,-4.1470456,-4.103975,-3.487391,-3.8326287,-3.1885011,-3.4283228,-4.1568074,-3.29181,-3.9356718,-4.5610824,-4.300513,-2.6066897,-4.164695,-3.7718472,-4.3828015,-4.615178,-4.7342396,-4.6422334,-4.7115216,-4.422914,-3.5794868,-4.4111724,-4.3900466,-4.4551787,-4.4427843,-4.208613,-4.732964,-4.921323,-4.9295387,-4.8849616,-4.5134254,-4.344216,-4.517985,-4.587623,-4.5948095,-4.4624605,-4.3850737,-4.127901,-4.356215,-4.34185,-4.331866,-4.3299537,-4.1961255,-4.2185936,-4.2819,-4.3148856,-4.275746,-4.268449,-3.5345192,-2.345348,-3.896462,-4.384233,-4.5155325,-4.616529,-4.2851634,-4.396917,-4.566832,-4.65181,-4.5771027,-4.55615,-4.5099177,-4.5587173,-4.4541965,-4.4797235,-4.4308887,-4.3722854,-4.320106,-3.994494,-3.8033233,-4.144078,-4.3791018,-4.38183,-3.9281116,-4.238577,-4.5262027,-4.3541865,-4.2533226,-4.313414,-4.344031,-4.3981853,-4.419143,-4.3945985,-4.3728914,-4.337692,-4.297728,-4.2934613,-4.296882,-4.2668853,-4.2567506,-4.235972,-4.2163644,-4.2183914,-4.289109,-4.2917037,-4.2981772,-4.128589,-4.1150336,-4.1139913,-4.171326,-4.252762,-4.226356,-4.1921873,-4.1974235,-4.144033,-4.132894,-4.1529136,-4.233538,-4.26327,-4.2673326,-4.271952,-4.281479,-4.2878594,-4.2713304,-4.322428,-4.387444,-4.36921,-4.3571134,-4.3864675,-4.39286,-4.3955503,-4.3210196,-4.2557373,-4.328135,-4.357225,-4.305716,-4.120213,-4.2771544,-4.389773,-4.3960385,-4.382101,-4.222632,-4.0776405,-4.2567005,-4.307652,-4.4188533,-4.413978,-3.835195,-4.13629,-4.2753854,-4.3473496,-4.3474846,-4.3668203,-4.4187207,-4.468263,-4.444896,-4.423039,-4.3853106,-4.3688464,-4.354069,-4.345154,-4.106622,-4.183418,-4.414951,-4.420428,-4.312818,-2.3056002,-4.20603,-4.3746333,-3.9030552,-4.4024396,-4.6867995,-4.7955184,-4.8535614,-4.9139166,-4.5329537,-3.4035575,-4.268372,-4.5544314,-4.701331,-4.7649913,-4.7556205,-4.6800227,-4.8320184,-4.8285728,-4.724509,-4.637746,-4.664227,-4.6635885,-4.4429893,-3.0550103,-4.1688733,-4.5397143,-4.645095,-4.638635,-4.4552145,-2.7782197,-3.616906,-4.352473,-4.557186,-4.703439,-4.574834,-4.4695873,-4.281915,-4.2559123,-4.352782,-4.4633937,-4.5223603,-4.564519,-4.6118913,-4.667128,-4.697559,-4.6135316,-4.5899053,-4.502064,-4.5345664,-4.5219502,-4.48227,-4.4924245,-4.129308,-4.2826943,-4.3932996,-4.4601254,-4.3788533,-2.9340038,-3.5697792,-4.2002673,-4.435426,-4.5712466,-4.583117,-4.549172,-4.607921,-4.5346045,-4.4504256,-4.25116,-4.2729774,-4.3817906,-4.4373035,-4.3424754,-4.2954297,-4.1676884,-4.313795,-4.3611794,-4.35572,-4.3925824,-4.4075527,-4.332119,-4.378966,-4.341327,-4.2850585,-4.3480496,-4.372515,-4.3669753,-4.4185543,-4.355094,-4.3730855,-4.3808513,-4.148499,-4.2380223,-4.3465276,-4.2458224,-4.296251,-4.1449037,-4.1539216,-4.212642,-4.00151
+-0.984296,-1.668917,-1.9296732,-2.2092268,-2.5199862,-2.8316543,-3.03056,-3.257042,-3.4355524,-3.5224216,-3.590009,-3.6856742,-3.7745185,-3.7384534,-3.7554412,-3.8167844,-3.803584,-3.8441138,-3.8578448,-3.890921,-3.9195714,-3.9782495,-4.0243306,-4.0803266,-4.107784,-4.105867,-4.1645956,-4.171431,-4.2097,-4.2346797,-4.2307563,-4.2751393,-4.1609864,-4.094381,-4.095512,-4.214089,-4.226668,-4.2696137,-4.300751,-4.2204766,-4.2249603,-4.231595,-4.1726375,-4.11715,-4.1530395,-4.1723046,-4.1799717,-4.2294984,-4.259505,-4.2386537,-4.2240596,-4.1917024,-4.1878247,-4.2011538,-4.1727104,-4.21125,-4.290789,-4.238743,-4.165099,-4.1511397,-4.214232,-4.2355413,-4.162748,-4.0820394,-4.016973,-4.050944,-4.0560627,-4.391606,-4.4154263,-4.3619113,-4.237435,-4.4832444,-4.3582225,-4.490724,-4.414556,-4.3702884,-4.388239,-4.3883443,-4.3070574,-4.252479,-4.218124,-4.2808547,-3.8093934,-4.2552605,-3.9096236,-3.9109678,-4.460418,-4.106317,-3.4041758,-2.2028446,-2.9899669,-3.6942916,-4.1135316,-4.056109,-3.9333758,-3.8846803,-3.2130618,-3.9001794,-3.902298,-3.6433449,-3.7273116,-3.8101325,-3.921184,-3.0987487,-2.2992535,-3.43567,-3.7167587,-3.7376199,-4.1334605,-3.6294913,-4.054354,-3.9417658,-3.7345123,-3.0030231,-3.2254229,-3.401219,-3.409573,-4.2656007,-3.432054,-3.4487705,-3.3412766,-3.7825136,-4.2648616,-4.408678,-4.455011,-3.7417102,-4.3681827,-4.491038,-4.485983,-4.5396113,-2.891922,-3.7566738,-4.0533166,-3.898139,-3.7015033,-3.665214,-4.358379,-4.580566,-4.597563,-4.600197,-4.081347,-3.334237,-4.0898595,-4.0779595,-4.3758955,-4.424392,-4.51034,-4.3114324,-4.5675044,-4.546842,-4.432297,-4.3938403,-4.036861,-4.27737,-4.3473477,-4.3101254,-4.271645,-4.217768,-2.2623801,-3.0210595,-3.9178357,-4.3538947,-4.4577336,-4.2678757,-3.906725,-4.5115542,-4.6003942,-4.5253105,-4.502291,-4.474808,-4.426185,-4.193665,-4.3793187,-4.435864,-4.4179273,-4.370889,-4.396132,-4.2747416,-3.982151,-4.104977,-4.355185,-4.2386365,-3.7597957,-4.173742,-4.052285,-4.1678705,-4.2730665,-4.34734,-4.392276,-4.34899,-4.337198,-4.3345423,-4.3151546,-4.3137136,-4.3243256,-4.339958,-4.3707194,-4.3713956,-4.3816323,-4.364518,-4.3672757,-4.3602953,-4.3858514,-4.4801383,-4.4067297,-4.3662715,-4.351489,-4.2587724,-4.265819,-4.390397,-4.397351,-4.365608,-4.3275986,-4.295895,-4.3168917,-4.3528957,-4.3736205,-4.3589225,-4.448819,-4.4506717,-4.494539,-4.5626144,-4.586263,-4.577434,-4.551721,-4.563396,-4.5704045,-4.5654454,-4.586171,-4.596515,-4.5238104,-4.4470296,-4.527801,-4.5791316,-4.5158515,-4.352902,-4.40549,-4.5404725,-4.565546,-4.529115,-4.3847485,-4.2557716,-4.3307295,-4.2776523,-4.344152,-4.3676205,-3.8576798,-4.1799445,-4.3936963,-4.4748597,-4.4707046,-4.4301376,-4.4753566,-4.5744987,-4.5427537,-4.568914,-4.568046,-4.550122,-4.539411,-4.5243897,-4.4644556,-4.2701745,-4.5143456,-4.489374,-4.368717,-1.9268248,-4.104586,-4.4342365,-4.5815544,-4.5470214,-4.7996984,-4.877845,-4.945165,-4.934158,-4.665506,-3.9056292,-4.3645263,-4.5606127,-4.6776834,-4.742043,-4.724753,-4.6157284,-4.702606,-4.7313204,-4.653616,-4.593847,-4.563105,-4.6700177,-4.4021106,-2.7653222,-4.215159,-4.5483813,-4.597008,-4.580709,-3.5469072,-3.3882213,-4.089427,-4.468083,-4.568602,-4.54161,-4.3584886,-4.409611,-4.3478513,-4.380594,-4.464797,-4.5014434,-4.49006,-4.453407,-4.4787903,-4.5472627,-4.5097394,-4.4763293,-4.465548,-4.457532,-4.4914155,-4.479324,-4.473313,-4.4511046,-4.2748413,-4.2585883,-4.4509463,-4.3070846,-4.2640166,-2.0801291,-3.6070888,-4.201166,-4.383496,-4.470051,-4.510292,-4.4499445,-4.3927503,-4.354324,-4.318017,-4.239137,-4.2659764,-4.3333144,-4.338763,-4.255547,-4.3022237,-4.229609,-4.2953267,-4.353226,-4.3357263,-4.3283443,-4.3283734,-4.334126,-4.357473,-4.3858914,-4.3912387,-4.4519525,-4.4659495,-4.4970574,-4.485302,-4.48963,-4.4802046,-4.501388,-4.3742766,-4.4530606,-4.4500365,-4.3733487,-4.3966374,-4.362426,-4.3972716,-4.3897977,-4.292644
+-0.35634696,-1.4270132,-2.100814,-2.5763097,-2.9486914,-3.3389096,-3.3299732,-3.5310218,-3.6624103,-3.8078742,-3.7630014,-3.820847,-3.8722105,-3.972412,-3.9856057,-4.0500507,-4.060847,-4.104346,-4.2145543,-4.284414,-4.3608937,-4.422569,-4.52414,-4.502438,-4.534962,-4.531371,-4.46225,-4.4698644,-4.441384,-4.4926405,-4.4343247,-4.4597373,-4.4883857,-4.4905186,-4.510346,-4.4760666,-4.489394,-4.4743195,-4.4693036,-4.5022836,-4.4678655,-4.4831014,-4.4682055,-4.471853,-4.4881744,-4.5018296,-4.5253434,-4.502795,-4.53017,-4.5754867,-4.585114,-4.6140914,-4.6580634,-4.63207,-4.535951,-4.5363493,-4.581497,-4.5813932,-4.557306,-4.577992,-4.6309342,-4.6422734,-4.651116,-4.613671,-4.569282,-4.5622697,-4.6481347,-4.6390915,-4.6546474,-4.629389,-4.5666785,-4.6451917,-4.6473994,-4.6377797,-4.648048,-4.657504,-4.631745,-4.607495,-4.6134906,-4.5890718,-4.500343,-4.552296,-4.5031724,-4.5808296,-4.5206304,-4.462017,-4.507411,-4.0675845,-3.4038167,-1.6517744,-3.5661767,-3.7141852,-4.122195,-3.6572194,-3.9595647,-4.0050106,-2.2398047,-3.7423205,-4.0072184,-3.9584284,-3.959731,-3.9160142,-4.0237527,-3.1996596,-3.8046412,-2.6935303,-3.1810815,-3.7786193,-4.0158796,-3.8936276,-3.9963694,-3.9654384,-3.8755698,-3.5667562,-2.931848,-3.2502193,-3.8632598,-3.599507,-2.7362463,-3.5744033,-3.37085,-4.1868157,-4.3677697,-4.425349,-4.4120703,-4.140048,-4.245236,-4.1069813,-4.1392903,-3.1847916,-2.81565,-3.8729987,-3.9991865,-3.838951,-2.9733005,-3.523356,-4.001653,-4.357763,-3.4830458,-4.4570937,-3.5507305,-3.3042502,-4.144666,-3.962278,-3.5790112,-4.2039313,-4.446522,-4.546705,-4.496178,-4.364386,-4.2863493,-4.2787604,-3.5064478,-4.110984,-4.1638904,-4.123735,-4.0891905,-4.1679816,-2.4354458,-3.3666458,-4.1592307,-4.2013993,-4.339582,-3.0684314,-3.890121,-4.2948394,-4.337439,-4.2630925,-4.203998,-4.1698904,-4.222862,-3.9466815,-3.760869,-4.12181,-4.078019,-3.8414044,-4.2450824,-4.173077,-3.9443579,-3.7828197,-4.0524077,-4.0009713,-4.079554,-4.009092,-4.2000003,-4.0802407,-4.008081,-3.9855394,-4.020269,-4.061747,-4.045367,-4.1190367,-4.1876855,-4.216333,-4.2139907,-4.3143992,-4.3514094,-4.305627,-4.2767434,-4.293262,-4.249776,-4.23451,-4.293458,-4.397921,-4.413483,-4.3073115,-4.3288383,-4.40216,-4.386085,-4.414532,-4.3898416,-4.3359427,-4.371255,-4.3491893,-4.271065,-4.2225127,-4.167125,-4.1606283,-4.4078364,-4.278979,-4.294231,-4.4231954,-4.4688983,-4.3729053,-4.2706447,-4.3967443,-4.4290147,-4.43788,-4.4104877,-4.429356,-4.3475833,-4.2518177,-4.3695464,-4.4809394,-4.4664454,-4.2144117,-4.20904,-4.3040056,-4.328901,-4.3649306,-4.2494917,-4.1557035,-4.1767573,-4.240165,-4.1871667,-4.242781,-3.9431863,-4.0832834,-4.1366525,-4.145864,-4.1468644,-4.1412053,-4.174525,-4.245317,-4.255145,-4.3099184,-4.3232327,-4.357776,-4.2804494,-4.2420115,-4.207639,-4.1745014,-4.279576,-4.3569226,-3.9482608,-2.5674682,-3.8550262,-3.9968219,-4.1884456,-4.166258,-4.315132,-4.3899655,-4.437561,-4.297126,-4.340695,-4.283502,-4.13854,-4.157804,-4.2559586,-4.305198,-4.242293,-4.2286325,-4.5728087,-4.554059,-4.4948454,-3.8790889,-4.1078506,-4.3186884,-4.278483,-2.582056,-3.6873837,-4.064262,-4.1596847,-4.1681952,-3.968966,-4.0932612,-3.6300533,-3.918077,-4.1081314,-4.0093856,-4.082151,-4.072628,-4.1315427,-4.208,-4.3494225,-4.303939,-4.2397995,-4.2723374,-4.359499,-4.4509788,-4.376988,-4.3680234,-4.4121375,-4.4929404,-4.452661,-4.341807,-4.3469234,-4.3328,-4.217427,-4.1746736,-4.323441,-4.187149,-4.1731286,-1.3955681,-2.9659982,-3.9066954,-4.1903324,-4.2957788,-4.287567,-4.1270914,-4.1508293,-4.2758894,-4.2876287,-4.344732,-4.2126274,-4.3036876,-4.3476043,-4.233879,-4.2330737,-4.2235627,-4.1809025,-4.307095,-4.312036,-4.427505,-4.403569,-4.3989177,-4.4195356,-4.491233,-4.551121,-4.6277385,-4.667496,-4.698895,-4.6743226,-4.6283135,-4.6751714,-4.6672635,-4.5949035,-4.450191,-4.48125,-4.497799,-4.5368466,-4.57099,-4.520818,-4.5319786,-4.484772
+0.10120791,-0.455024,-1.6158998,-2.2215233,-2.1120212,-2.8387017,-2.9563112,-3.0367148,-2.877525,-3.1093273,-3.1967177,-2.995577,-2.7057111,-3.178679,-2.632125,-3.3788962,-3.4350572,-3.4464898,-3.3957362,-3.2472987,-3.4088793,-3.4269214,-3.3857422,-2.9757192,-2.7355976,-3.1781209,-3.4285314,-3.3673408,-3.2327137,-3.3667903,-3.367962,-3.3466873,-3.3450599,-3.4731848,-3.534657,-3.4173038,-3.784285,-3.7965999,-2.3939846,-2.5562313,-2.7076821,-3.2206728,-3.0788758,-3.22194,-3.2568486,-3.28746,-3.3308563,-3.3702807,-3.4598842,-3.3387961,-3.2092738,-2.9534078,-3.2360244,-3.1568155,-3.3514469,-3.3777976,-3.3256912,-3.0902612,-3.4349625,-3.2014146,-3.2312388,-3.294654,-3.45097,-3.4778345,-3.7952442,-3.7882295,-3.8858433,-3.9838839,-3.9198947,-3.5099177,-4.1095595,-3.0080628,-3.804964,-4.2598853,-4.0949917,-4.077059,-3.369804,-4.122663,-4.05734,-3.3920102,-4.1153855,-3.0147543,-3.5110717,-3.95399,-3.4315634,-3.1911647,-3.4881306,-3.583468,-3.9997249,-3.4724064,-4.009282,-3.9502025,-4.067265,-4.0839067,-4.1838026,-4.087734,-4.02499,-4.028108,-4.341353,-3.988029,-4.1138134,-2.7411299,-3.0205076,-3.3461823,-3.0198028,-3.3573067,-2.989527,-3.2162943,-3.4659612,-3.4842272,-3.440824,-4.0135546,-3.9057574,-3.3295665,-3.9546342,-4.129666,-3.1659899,-3.7573042,-4.079227,-4.175436,-4.107551,-3.7912116,-4.1546755,-4.2298975,-2.8510613,-3.5942569,-3.9921737,-4.0338483,-3.8159099,-3.3614235,-3.8565822,-3.2098804,-3.5429125,-3.6919715,-3.8788328,-3.6399918,-3.5761116,-3.9103732,-3.6783473,-3.7823024,-3.688051,-4.0964713,-4.155213,-4.0436006,-3.767033,-3.301382,-3.8580384,-3.5069401,-3.8380709,-3.8924165,-3.966498,-3.937499,-3.9605937,-3.9474702,-3.8745089,-4.0350127,-4.105593,-3.367995,-3.948227,-3.8783083,-3.555469,-3.435278,-3.7795916,-3.456944,-3.847745,-3.871519,-3.76442,-3.7480335,-3.7788768,-3.7932382,-3.8482528,-3.8658295,-3.921268,-3.9034696,-2.8166838,-3.0012364,-3.3742309,-3.507812,-3.8287058,-3.827857,-3.807466,-3.7793603,-3.7060905,-3.7588067,-3.7542796,-3.1055336,-2.853394,-2.8928275,-2.7646513,-2.5184388,-2.1331828,-2.1687703,-1.9125166,-1.9181981,-1.7392647,-1.490457,-1.2014225,-1.2590787,-1.7608888,-2.354269,-2.9647,-3.2500684,-3.3172123,-3.4180706,-3.5817292,-3.498251,-3.6353292,-3.7409072,-3.738648,-3.8056326,-3.414208,-3.8037581,-3.7948093,-3.3486066,-3.5162444,-3.4436052,-3.6038914,-3.6625133,-3.6448855,-3.6743028,-3.7491093,-3.824226,-3.8151011,-3.8316731,-3.7847362,-3.8648658,-3.9680796,-3.974948,-3.9536195,-3.8938746,-3.8094358,-3.770917,-3.604168,-3.5017757,-3.4808354,-3.3536806,-3.2835622,-3.1744695,-3.1711159,-3.1478362,-3.1482425,-2.9331737,-2.7907848,-2.816259,-2.7846181,-2.719367,-2.7112758,-2.6293223,-2.2859378,-2.2834723,-2.281102,-2.304415,-2.2937078,-2.2735362,-2.2286456,-2.1646583,-2.1800182,-2.2105863,-2.2945323,-2.2180548,-2.2074738,-2.2421708,-2.2211287,-2.2603025,-2.0931756,-2.2562306,-2.2911475,-2.2346458,-2.1631851,-2.1469915,-2.1832507,-2.221199,-2.2368143,-2.1856475,-2.2288597,-2.137785,-2.2276983,-2.2025785,-2.1792688,-2.178328,-2.152717,-2.1537285,-2.165941,-2.1272838,-2.0955794,-2.2121768,-2.2573905,-2.2977,-2.2703629,-2.2278962,-2.1629999,-2.1297653,-1.967354,-1.9405191,-1.9105844,-2.0204535,-1.9946442,-2.0721483,-2.072099,-2.0692115,-2.1042142,-2.0350356,-1.845298,-1.7846134,-1.7165222,-1.9189401,-1.9804614,-2.0401797,-2.0916247,-1.9956958,-1.8970437,-1.7274122,-1.9457924,-2.0722656,-2.0603373,-1.6686563,-1.8002644,-1.8530521,-1.7152143,-1.6056538,-1.4515133,-1.1396337,-1.1080937,-1.3180549,-1.2453132,-1.2486739,-1.0691357,-1.074954,-1.1318185,-1.1710057,-1.2285607,-1.2188332,-1.3814673,-1.2912939,-1.3101668,-1.2035198,-1.1034169,-0.9830347,-0.97057956,-1.11797,-1.245178,-1.249136,-1.1873443,-1.2074978,-1.1909075,-1.1636872,-1.0354316,-0.88318604,-0.6595121,-0.56885153,-0.7666895,-0.5546319,-0.56601375,-0.7301859,-0.8005139,-0.6855632,-0.49347216,-0.056999266,0.27012178,0.7362566,0.3842196,-0.50883335,-1.385874,-2.0371053,-2.2983952
+-0.29685777,-1.0816858,-1.4612627,-1.8776305,-1.8024938,-2.1973338,-2.24131,-2.6232862,-2.6630821,-2.697143,-3.0936613,-2.9562159,-2.8760712,-2.9772236,-1.9820218,-2.6626034,-2.8377602,-2.7908792,-2.9283414,-2.9694848,-2.8422198,-2.997137,-2.907139,-2.9025502,-2.2512736,-2.5518193,-2.5449758,-2.5527554,-2.497145,-2.6636417,-2.7156048,-2.7012155,-2.8272567,-3.0222402,-3.0981438,-2.8642268,-3.0880857,-3.3702092,-2.2287188,-2.3490493,-2.513968,-2.6508665,-2.7650547,-2.9898348,-2.9712615,-2.890009,-3.046273,-3.0978851,-3.1251826,-2.383146,-2.794343,-2.8480906,-2.6319036,-2.8706088,-2.7640085,-2.7835686,-2.810876,-2.8349652,-2.9116535,-2.7170193,-2.7681623,-2.884673,-2.9473202,-3.0396457,-3.1786246,-3.0752363,-3.1726446,-3.329538,-3.3244894,-2.9521868,-3.288506,-2.132007,-2.998725,-3.1837869,-3.1345704,-3.1468945,-2.820816,-3.0302835,-3.1006422,-3.0989623,-3.3454509,-3.3190742,-3.3152966,-3.3761816,-3.1307192,-2.3624053,-3.0324588,-3.1049533,-3.2737918,-3.209837,-3.3694162,-3.3085203,-3.2264266,-3.067946,-3.3864808,-3.46351,-3.1589835,-3.3299284,-3.588035,-3.357377,-2.6074615,-2.2430425,-2.8620958,-3.0533984,-3.031548,-2.877327,-2.9117086,-2.790197,-2.5789986,-2.8977518,-2.9291267,-3.0930803,-3.3653564,-3.1695664,-3.420237,-3.4884973,-3.4737692,-2.273148,-3.3426561,-3.478231,-3.6399446,-3.6418781,-3.4799013,-3.5560699,-3.5449913,-3.486762,-3.5144892,-3.5292342,-3.4572406,-3.5295408,-3.510351,-2.285326,-3.187952,-2.5288415,-3.049079,-3.3136256,-3.3387556,-3.4071164,-3.4903684,-2.4855728,-2.679237,-3.0176754,-3.1494856,-3.2256398,-3.240951,-3.3731606,-3.4118757,-2.8900485,-3.4232998,-3.3865118,-3.4783564,-3.5564182,-3.5572762,-3.536619,-3.5477216,-3.53267,-3.420774,-1.8919492,-3.1076825,-3.0461864,-3.0074792,-3.0059338,-3.1292171,-3.1021395,-2.9168239,-3.1982641,-3.2827773,-2.9524307,-3.1415398,-3.1878328,-3.3101492,-3.3127987,-3.3947625,-2.0786462,-2.430253,-2.6851566,-2.9795694,-3.1630425,-3.3526025,-3.3604252,-3.3124423,-3.427798,-3.4255955,-3.4598637,-3.2488418,-2.4401634,-2.170003,-2.8259606,-2.5517983,-2.8248527,-2.9633846,-2.9452374,-2.8415265,-2.531056,-2.55731,-2.4281497,-2.5300083,-2.646851,-2.7524538,-2.742822,-2.8052359,-2.8808553,-2.9215698,-2.8348837,-2.987268,-2.98489,-2.981063,-2.9852147,-2.9093065,-2.9990954,-2.8984907,-3.0319533,-3.0846117,-2.0263247,-2.76787,-2.860879,-2.890967,-2.926908,-2.909443,-2.8499155,-2.8935165,-2.988086,-2.9115338,-2.9158492,-2.9899876,-2.9313283,-2.8789392,-2.9521573,-2.949266,-3.0094872,-2.9569654,-2.983603,-2.9611995,-2.9067063,-2.9998655,-2.8915925,-2.8963642,-2.8480606,-2.9263842,-2.9325113,-2.8657572,-2.7255638,-2.5366826,-2.4882941,-2.483677,-2.4593458,-2.382482,-2.35738,-2.0688791,-1.9326785,-1.9505599,-1.8659959,-1.7811675,-1.5429842,-1.6580243,-1.5383375,-1.6308401,-1.6848183,-1.6617482,-1.6641686,-1.6467345,-1.7891793,-1.8671758,-1.9732921,-2.0417755,-2.089139,-2.1196995,-2.0131822,-2.0531182,-1.9159489,-1.9718552,-2.063501,-2.088654,-1.9439011,-2.0529826,-1.890718,-1.9678228,-1.8882971,-1.8581374,-1.8380234,-1.8457108,-1.760685,-1.7761011,-1.5396297,-1.6850436,-1.6474826,-1.6823397,-1.7629254,-1.8436713,-1.9198618,-1.9491601,-1.9257519,-1.8021362,-1.788641,-1.6761332,-1.8302884,-1.8154817,-1.7624094,-1.7129438,-1.7116013,-1.6968212,-1.726908,-1.6228557,-1.5997021,-1.6608694,-1.6697702,-1.7114439,-1.6309912,-1.5622404,-1.5628498,-1.4233074,-1.3718626,-1.3342407,-1.4023888,-1.4866464,-1.1494918,-1.4984396,-1.6578734,-1.5490892,-1.52174,-1.4276845,-1.1624007,-0.9317016,-1.0933635,-1.0977464,-1.171776,-1.0953739,-1.1343012,-1.1646316,-1.2038727,-1.364785,-1.545912,-1.5037453,-1.5907683,-1.7679427,-1.7230253,-1.7745008,-1.7373157,-1.7270141,-1.6350517,-1.810462,-2.116456,-2.1428595,-2.059999,-2.0136166,-2.1864362,-2.124772,-2.1494412,-2.0695782,-1.8424442,-1.872267,-1.8339672,-1.3090615,-0.82015306,-0.9657257,-0.9472056,-1.05374,-1.5937912,-1.8978586,-2.362688,-2.2870736,-2.5218582,-2.7886496,-2.7341225,-2.55691
+-0.77425,-1.8516033,-2.4039376,-2.8666697,-2.8056645,-2.967771,-3.0403743,-3.1776547,-3.279522,-3.1616223,-3.4123676,-3.4443955,-3.5772858,-3.0449393,-3.5769558,-3.8397899,-3.81424,-3.5478158,-3.689262,-3.7100291,-3.66117,-3.785262,-3.707601,-3.4643538,-3.7111259,-3.8244853,-3.531898,-3.2633848,-3.5762825,-3.6247191,-3.5076523,-3.5723925,-3.695621,-3.8162522,-3.8853097,-3.86344,-3.774632,-3.9057465,-2.7783175,-3.5727386,-3.6428196,-3.7868729,-3.9027958,-4.0169544,-3.9244099,-3.8416066,-3.9197059,-3.952292,-3.9500203,-3.353792,-3.4933853,-3.9947762,-4.263353,-4.3523045,-4.2680745,-4.1698403,-3.6327446,-4.053522,-4.0815043,-3.5693834,-3.966578,-4.120615,-4.208628,-4.1717772,-4.1480865,-4.1486998,-3.9927077,-4.068528,-2.4549532,-3.9441614,-3.4872448,-4.051274,-4.122926,-4.0747213,-4.2323766,-3.430398,-4.1393347,-4.180328,-4.0991693,-4.1476884,-4.1441193,-4.1588616,-4.099184,-4.043635,-3.847855,-3.9706287,-4.120467,-4.1066813,-4.0491962,-4.0423884,-3.924438,-3.7697654,-3.558668,-2.961677,-4.07636,-4.1652904,-4.2414513,-3.6928005,-4.285806,-4.2704935,-2.4946656,-3.7325406,-4.0028915,-4.2207484,-4.281245,-4.1860456,-3.370124,-4.060148,-3.4196923,-4.1796107,-4.2875614,-4.417195,-4.471629,-4.3797054,-4.4547687,-4.456007,-4.449966,-4.1703763,-4.363934,-4.5178046,-4.57512,-4.4310775,-4.379491,-4.4427133,-4.355927,-4.358523,-4.4471707,-4.4588027,-1.8152006,-3.453397,-4.0984197,-4.2581534,-4.4073253,-4.5070424,-4.5226145,-4.6577473,-4.5736785,-4.638826,-4.667072,-3.910626,-3.2743886,-4.2341294,-4.5316377,-4.5064483,-4.4858813,-4.5524325,-4.6821437,-4.568838,-4.7007785,-4.6949487,-4.7782245,-4.790318,-4.7338595,-4.607739,-4.58557,-4.616039,-3.0465105,-3.0482836,-3.9665809,-4.3356338,-4.498976,-4.4741473,-4.5751195,-4.52636,-3.5012975,-4.256758,-4.3564467,-4.3771477,-4.49835,-4.47661,-4.4690742,-4.468634,-4.5102954,-4.3120008,-3.6203132,-4.108553,-4.137957,-4.1803913,-4.2252927,-4.2858205,-4.304037,-4.348531,-4.337526,-4.3997254,-4.4609294,-3.126874,-3.104073,-3.6616714,-3.7998261,-4.062652,-4.1315236,-4.162299,-4.1946282,-3.4274173,-3.6672041,-3.6199195,-3.9916415,-4.2066517,-4.3566413,-4.2906613,-4.3313475,-4.3356824,-4.3196383,-4.414923,-4.4093814,-4.287884,-4.2939544,-4.3363833,-4.2847266,-4.2418275,-4.219544,-4.1304083,-4.191046,-4.3316026,-4.2629156,-4.323269,-4.309494,-4.263609,-4.2089515,-4.173224,-4.214434,-4.240969,-4.157517,-4.16779,-4.2029967,-4.172911,-4.186744,-4.2594037,-4.322033,-4.2881284,-4.303868,-4.459048,-4.496614,-4.510035,-4.5385175,-4.459512,-4.4885983,-4.4601054,-4.460592,-4.462564,-4.476442,-4.4728227,-4.4660954,-4.3245406,-4.239414,-4.2520194,-4.220034,-4.1867657,-4.219967,-4.0570054,-3.800548,-3.684795,-3.621135,-3.5425549,-3.6492896,-3.587933,-3.554513,-3.559051,-3.3272285,-3.2271266,-3.3101501,-3.4434686,-3.3623977,-3.251133,-3.2827888,-3.361933,-3.3662186,-3.3187256,-3.300843,-3.2832925,-3.254242,-3.2625685,-3.339017,-2.9992824,-3.1706016,-3.1420822,-3.1334143,-3.2007408,-3.2148573,-3.269452,-3.2854426,-3.2292109,-3.2708244,-3.0746255,-3.0743442,-3.0898464,-3.2218108,-3.207717,-3.1602147,-3.0975854,-3.0438259,-2.9199574,-2.6681008,-2.6774378,-2.4606128,-2.6685586,-2.745951,-2.818427,-2.7745605,-2.8449235,-2.7536464,-2.7115374,-2.6176558,-2.459456,-2.4695642,-2.6152315,-2.6583302,-2.8115325,-2.808415,-2.7768908,-2.704245,-2.699062,-2.520815,-2.564286,-2.4873502,-2.0273256,-2.2240777,-2.4682093,-2.376833,-2.3232365,-2.2542992,-2.1062822,-2.0673003,-2.0183752,-1.943336,-1.9512463,-1.9781504,-2.2206926,-2.470112,-2.486622,-2.4426813,-2.4569888,-2.39842,-2.4042125,-2.4078097,-2.3255892,-2.2803206,-2.2264643,-2.3266988,-2.409638,-2.6949697,-2.6674154,-2.092611,-1.9965444,-2.079371,-1.9756713,-2.0186472,-1.7855647,-1.6699278,-1.628942,-2.055593,-2.3727467,-2.8089814,-3.1536298,-3.3611817,-3.29732,-3.3556314,-3.5621557,-3.4556732,-3.6793752,-3.6444173,-3.5303094,-3.8467312,-3.933165,-3.9535332
+0.1191213,-0.34739965,-1.2179286,-2.3929462,-2.7483363,-3.035483,-3.0197456,-3.23239,-3.3304982,-3.2684774,-3.5007346,-3.4569998,-3.4594321,-3.2372277,-3.5987358,-3.5084004,-3.6204474,-3.1254256,-2.7541864,-3.1724434,-3.2643673,-3.378422,-3.2803843,-3.0377595,-3.289957,-3.2221913,-3.081777,-3.0216928,-2.9945068,-2.977403,-3.2484922,-3.3275266,-3.398511,-3.51823,-3.5951087,-3.5885098,-3.3919365,-3.6973748,-2.980484,-3.134607,-3.3391745,-3.615233,-3.4090426,-3.8003802,-3.4352183,-2.8786187,-3.2019465,-3.5430193,-3.626243,-3.0214233,-3.4214964,-3.626723,-4.0227513,-3.9210777,-3.5123823,-3.5306168,-3.6861567,-3.4180112,-3.845171,-3.692577,-3.8828044,-3.891615,-3.9791627,-3.9116912,-3.8709874,-3.8687382,-3.8302608,-3.7830958,-3.7630882,-3.4792724,-3.7477622,-3.677486,-3.5122786,-3.1995647,-3.8475132,-3.8237638,-3.8056297,-3.7708483,-3.4904752,-3.8734555,-3.8321605,-3.777985,-3.8066769,-3.783677,-3.7755494,-3.7507858,-3.8792872,-3.8845048,-3.80231,-3.8504472,-3.6390626,-3.692556,-3.2594576,-3.883553,-3.7027364,-4.2120175,-4.2609363,-4.1492743,-4.1912684,-4.1236663,-3.5253139,-3.6504304,-4.2083583,-4.351248,-4.2952466,-4.288548,-4.241147,-4.2574306,-4.2382274,-4.180652,-4.1555,-4.216687,-4.1814723,-4.226042,-4.3589787,-4.3922906,-4.340322,-4.3344727,-3.7676282,-4.2959456,-4.337642,-4.3824115,-4.3974824,-4.4236507,-4.3457584,-4.3226542,-4.4205317,-4.4459863,-3.6257176,-4.1587033,-4.3148546,-4.3401976,-4.4010663,-4.4364,-4.4492297,-4.4529343,-4.443827,-4.487272,-4.4094033,-4.2193065,-2.450132,-3.7535558,-4.1368995,-4.293371,-4.3278804,-4.3594327,-4.3528533,-3.7907176,-4.1548824,-4.4852166,-4.6232796,-4.611201,-4.541151,-4.5018487,-4.4386163,-4.4799786,-3.4433534,-3.6670842,-4.176703,-4.4527564,-4.478878,-4.34038,-4.3388066,-4.2986655,-2.906055,-3.6269798,-3.9702358,-3.9433508,-4.139474,-4.155585,-4.277462,-4.280063,-4.3662906,-4.398602,-4.3932166,-2.980345,-2.9954162,-3.6798048,-3.9279962,-4.1816473,-4.351685,-4.4175754,-4.1520805,-4.279338,-4.3342576,-3.0423698,-3.4309154,-3.8151326,-3.9668317,-3.9627738,-4.0389543,-4.0263314,-4.03889,-3.831718,-3.6976662,-3.7791138,-3.8322363,-3.887031,-3.8579507,-3.8088078,-3.894875,-4.022802,-3.9601169,-4.055873,-4.053864,-4.085772,-4.134153,-4.0847216,-4.0023003,-3.9654078,-4.0214295,-2.8318822,-3.4395733,-3.7032561,-3.894442,-4.0439672,-4.1030087,-4.1379414,-4.1455746,-4.1679482,-4.206891,-4.1906104,-4.1614733,-4.150624,-4.1208878,-4.077563,-4.096261,-4.112966,-4.1048474,-4.1271048,-3.845868,-3.72338,-3.5928044,-3.6002874,-3.7096415,-3.4633992,-3.4659853,-3.3797607,-3.3394876,-3.2951746,-3.3055854,-3.2799287,-3.2046266,-3.029247,-2.9230907,-2.9329767,-2.92168,-2.8893306,-2.9098294,-2.7784338,-2.6896033,-2.5921588,-2.6881657,-2.6678765,-2.7290516,-2.7650433,-2.7941742,-2.7790027,-2.6279874,-2.575486,-2.3713112,-2.4051683,-2.4501133,-2.39818,-2.370037,-2.4450488,-2.4658566,-2.4082665,-2.6986105,-2.5018947,-2.3815641,-2.380341,-2.4881606,-2.308749,-2.3464835,-2.3567443,-2.650841,-2.4154608,-2.4574733,-2.3934138,-2.3711553,-2.374103,-2.3711727,-1.9624686,-2.0952728,-2.0720189,-1.9637976,-1.9137414,-1.9394596,-1.9391551,-1.9688873,-1.9473491,-1.7718649,-1.8036182,-1.7690806,-1.8985317,-1.8178885,-1.8772669,-2.093544,-2.0158052,-1.9658525,-1.9181356,-1.983165,-1.7625637,-1.6967921,-1.9324412,-2.193535,-2.1190045,-1.8479667,-1.764168,-1.5823412,-1.5984325,-1.8717184,-2.0012171,-1.622541,-1.2513778,-1.3849442,-1.7236142,-1.5994766,-1.6098468,-1.5253315,-1.3835039,-1.4426355,-1.4784231,-1.3551304,-1.3809114,-1.1402643,-1.2460923,-1.4442174,-1.4392209,-1.4032824,-1.3617339,-1.3715608,-1.3876636,-1.3987257,-1.3668561,-1.2802222,-1.156946,-1.1019871,-1.4886088,-1.3817618,-1.270617,-1.3263736,-1.1381917,-0.8172038,-0.73709077,-0.76819676,-0.81156963,-1.1776211,-1.7519577,-2.3688884,-2.591831,-2.6823525,-2.8308735,-2.7630792,-2.7815118,-2.8078132,-2.9836173,-2.8134038,-3.0002244,-3.0951056,-3.0556076,-3.224456,-3.0469122,-3.0081959
+0.69983035,0.5800949,0.119790584,-0.93362015,-1.9109881,-2.5502248,-2.6843367,-2.8787978,-3.0306308,-3.2012365,-3.218833,-3.2412162,-3.4087908,-3.5454006,-3.4663334,-3.3087807,-3.3053985,-2.985733,-2.5402436,-3.1271763,-3.3351026,-3.6380196,-3.8702435,-3.0833385,-3.3877954,-2.9891057,-2.9470248,-2.8061888,-2.6784596,-2.3243473,-2.4380503,-2.4215727,-2.6948152,-3.1311302,-3.4600577,-3.5559754,-2.566897,-3.1224556,-3.3945038,-3.495787,-3.5567148,-3.6999416,-3.786121,-3.8272772,-3.823421,-3.2674968,-3.6497042,-3.5242481,-3.6900814,-3.945622,-3.943088,-4.0145774,-4.179133,-4.2525964,-4.070103,-4.1852283,-4.1191993,-3.903319,-4.175139,-4.1791186,-3.9850116,-3.8755217,-3.9271817,-3.9256368,-3.8576198,-3.791617,-3.724866,-3.7497983,-3.6992164,-3.7280097,-3.9256186,-3.7812362,-3.88065,-3.3682861,-3.820036,-4.156207,-3.990827,-4.040251,-3.946896,-3.8735108,-3.9597592,-3.9206557,-3.9723344,-3.759872,-4.019083,-3.930676,-4.062588,-4.152716,-4.200481,-4.1414866,-3.8825054,-3.9394526,-4.2763314,-4.208811,-4.1600356,-4.0839834,-4.093196,-4.1757526,-4.1734347,-4.1157784,-4.053521,-4.136518,-4.306319,-4.3095393,-4.410343,-4.4340935,-4.330235,-4.425957,-4.395769,-4.387468,-4.303998,-4.2847705,-4.2264013,-4.280784,-4.3983617,-4.38102,-4.324684,-4.4194326,-4.1909204,-4.5737624,-4.4278245,-4.389978,-4.369578,-4.3269615,-4.2780247,-4.396606,-4.407212,-4.425984,-4.2049603,-4.3610272,-4.26554,-4.2265077,-3.7842155,-4.030189,-4.299399,-4.220729,-4.1589622,-4.2426925,-4.118603,-3.7347722,-3.4025047,-4.1607013,-4.1711607,-4.1105576,-4.0803475,-4.217983,-3.517335,-4.013781,-4.3074613,-4.235534,-4.2594166,-4.162787,-4.1403565,-3.9989257,-3.989777,-3.9846845,-3.845468,-3.7792315,-4.1377034,-4.113115,-4.0947614,-4.117295,-4.121139,-4.02467,-4.142386,-3.2191205,-3.8441958,-4.113033,-4.203569,-4.153697,-4.0931487,-4.122893,-4.065518,-4.014982,-3.9714932,-2.3903785,-2.7165093,-3.2980936,-3.79909,-4.064959,-4.139642,-4.2271495,-4.2169776,-4.2900147,-4.152355,-2.6451945,-3.2197206,-3.6873395,-3.9556437,-4.1051173,-4.2167125,-4.2728066,-4.2125115,-4.192865,-4.1486435,-4.283487,-4.2573614,-4.2561135,-4.253021,-2.99665,-3.7509804,-4.1658654,-4.1818695,-4.2734227,-4.339503,-4.380381,-4.438151,-4.425644,-4.388885,-4.4030385,-4.4421678,-4.2068543,-4.392178,-4.324702,-4.417851,-4.5312533,-4.522556,-4.5445547,-4.5579257,-4.540835,-4.555366,-4.5650477,-4.576821,-4.596541,-4.5718255,-4.581274,-4.5895243,-4.580077,-4.5648437,-4.5922456,-3.291617,-3.637322,-3.2992067,-3.2365742,-3.2152028,-2.630961,-2.7634315,-2.6678889,-2.6056743,-2.5890756,-2.598073,-2.600314,-2.5841312,-2.5696542,-2.5719855,-2.6401649,-2.6483593,-2.6413338,-2.656529,-2.7136154,-2.7169218,-2.723041,-2.7409248,-2.7674265,-2.8041883,-2.8886442,-2.931982,-2.9422817,-2.9136271,-2.781532,-2.7904046,-2.8825362,-2.934988,-2.9335048,-2.8789883,-2.9782956,-2.985293,-2.8658452,-2.4817815,-2.5994935,-2.6971636,-2.763535,-2.832632,-2.7938163,-2.7998557,-2.839332,-2.7700999,-2.804306,-2.7736435,-2.8180554,-2.8406107,-2.840675,-2.8229685,-2.6164253,-2.7178226,-2.758489,-2.845159,-2.8596196,-2.8646362,-2.8751254,-2.887585,-2.8801336,-2.8060863,-2.836306,-2.744351,-2.847303,-2.7937746,-2.8169928,-2.2015631,-2.3564408,-2.5404596,-2.61144,-2.6406257,-2.5358539,-2.3850675,-2.4342995,-2.6200027,-2.59495,-2.5944037,-2.502389,-2.3382058,-2.3017983,-2.1868753,-2.129072,-1.9535449,-1.5305257,-1.2957168,-1.6677339,-1.6598358,-1.6579659,-1.5702252,-1.3789988,-1.2863576,-1.3285675,-1.173074,-1.131722,-1.0174806,-0.9376431,-1.0581882,-1.0327058,-1.2795,-1.3644843,-1.3331511,-1.3381271,-1.3072574,-1.1916726,-1.010042,-0.8444142,-0.6841921,-0.8877775,-0.97387546,-0.78319734,-0.44455272,-0.2632709,0.16613305,0.020603895,-0.024787366,0.37994096,0.6207104,0.70821023,0.713592,0.27231574,-0.39331442,-1.2449031,-1.8863809,-2.4394846,-2.5296638,-2.8066988,-2.8905544,-3.0993733,-3.0877657,-3.070673,-3.1110792,-3.2695827,-1.9750249
+0.63796985,0.6475376,0.47550285,-0.48775512,-0.8492481,-1.1352434,-1.4152832,-1.605607,-1.7213678,-1.8220804,-2.3567,-2.7368472,-2.9853656,-3.0930305,-2.7643185,-2.586715,-2.526441,-2.3300443,-2.4379804,-2.83135,-2.8888605,-2.872911,-2.8937025,-2.4162729,-2.5582354,-2.16158,-2.2631822,-2.1983385,-2.12037,-2.0684853,-2.408835,-2.4446216,-2.5777164,-2.7878938,-2.9836664,-2.7968013,-2.7503433,-2.9884367,-3.215536,-3.0108066,-2.9597206,-3.0978475,-3.3039482,-3.3122058,-3.2361746,-3.1328254,-3.1074915,-3.1520991,-3.233986,-3.328364,-3.3599603,-2.8144495,-3.3422894,-3.489128,-3.4678323,-3.4866023,-3.407181,-3.501392,-3.5585833,-3.5326781,-3.4989307,-3.5117106,-3.5796103,-3.6033928,-3.596592,-3.6246195,-3.5326517,-3.582654,-3.6552463,-3.678659,-3.692781,-3.7012134,-3.4081054,-3.4103565,-3.5905032,-3.6978383,-3.7444034,-3.767734,-3.7770839,-3.815177,-3.8194995,-3.8692088,-3.8456125,-3.9166923,-3.9499369,-3.8330789,-3.858625,-3.8763785,-3.8843203,-3.881599,-3.7086697,-3.296585,-3.651435,-3.7279325,-3.8945699,-3.8964314,-3.8814635,-3.8619723,-3.8742561,-3.87749,-3.8760648,-3.8524032,-3.9021087,-3.889605,-3.8783383,-3.868919,-3.887198,-3.895493,-3.812285,-3.2586493,-3.7336326,-3.7906537,-3.8134131,-3.830346,-3.8478575,-3.8871574,-3.912434,-3.9328585,-3.9430308,-3.9477348,-3.898059,-3.7322469,-3.6690094,-3.8409038,-3.8681092,-3.8645964,-3.8287168,-3.8542829,-3.8265624,-3.6385677,-3.7260566,-3.7815084,-3.8057795,-3.8616252,-3.8540654,-3.8648953,-3.8489232,-3.885808,-3.8122172,-3.2402053,-3.432612,-3.6072297,-3.7396498,-3.770966,-3.792746,-3.8453054,-3.8885012,-3.9107666,-3.9544911,-3.8763351,-3.828959,-3.8202243,-3.8152103,-3.74853,-3.7924304,-3.784658,-3.18803,-3.4804082,-3.6532373,-3.7331862,-3.7537217,-3.7875772,-3.8476725,-3.8415895,-3.8585052,-3.7287517,-2.938622,-3.1070952,-3.3626988,-3.487486,-3.4997764,-3.5390887,-3.44837,-3.4475257,-2.1075764,-2.808179,-3.3447888,-3.5445876,-3.6964626,-3.7157478,-3.6875339,-3.8145719,-3.708572,-3.6738143,-3.6463985,-2.8229823,-3.2085872,-3.633696,-3.6483355,-3.6770873,-3.777039,-3.8134112,-3.8740716,-3.9644632,-3.8557258,-3.901095,-3.9314885,-3.9936094,-4.01125,-3.2553387,-3.6001127,-3.620935,-3.6024747,-3.6640017,-3.7716985,-3.8516426,-3.9455504,-3.9279318,-3.874,-3.898725,-3.9381747,-3.9049144,-3.8820333,-3.7873373,-3.7836237,-3.7998595,-3.776276,-3.8532329,-3.9323125,-3.9274693,-3.9430733,-3.9583316,-3.978806,-4.0024056,-3.9110346,-3.9656749,-3.9320807,-3.9171805,-3.9187741,-3.9397917,-3.314881,-3.3288565,-3.1602376,-3.2348204,-3.3293753,-3.1939764,-3.0184524,-2.4958534,-2.660865,-2.65209,-2.5905483,-2.7049716,-2.5765474,-2.3884454,-2.4600687,-2.4626906,-2.4326293,-2.4740527,-2.4496927,-2.2162075,-2.2481694,-2.1353362,-2.283119,-2.4397466,-2.074781,-2.1939573,-2.2371016,-2.192609,-2.3538709,-2.115343,-1.8074746,-1.9626286,-2.0456605,-2.2301278,-2.2905633,-2.1617112,-2.16518,-2.2123234,-2.2519612,-2.2808733,-2.321536,-2.3815007,-2.4104214,-2.4255226,-2.4886103,-2.5174456,-2.4535813,-2.5066428,-2.4238172,-2.344843,-2.4810247,-2.5400424,-2.4582133,-2.2405567,-2.2313876,-1.9054153,-1.977006,-2.0400918,-2.0256834,-2.115671,-2.193266,-2.2249222,-2.2273855,-2.2519743,-2.1843526,-2.1937628,-2.205738,-2.0221937,-1.8803744,-1.9513884,-2.1230834,-2.1802447,-2.214149,-2.1567442,-2.0969408,-2.0607915,-1.9528654,-2.0365932,-1.9649165,-1.9076586,-1.854275,-1.853549,-1.7342224,-1.6328897,-1.5631258,-1.4495735,-1.2208242,-1.2921078,-1.2489152,-1.2897198,-1.3031206,-1.2761703,-1.268753,-1.2565982,-1.2433548,-1.1954181,-1.2623692,-1.2186038,-0.88674754,-1.077312,-1.2615428,-1.3092082,-1.3321185,-1.362304,-1.3409669,-1.3252876,-1.254734,-1.1976748,-1.1316578,-1.2318113,-1.3448024,-1.2106674,-1.1760988,-1.0652013,-0.8784351,-0.89782757,-0.94038266,-0.7224409,-0.47291428,-0.34666657,-0.25861043,-0.25035888,-0.41337013,-0.6975898,-1.1585128,-1.651547,-1.9293337,-2.3783462,-2.5668669,-2.2966042,-2.305483,-1.8433459,-1.8084626,-1.7802353,-1.9031658
+-0.339437,-0.9641908,-1.8117065,-2.3577986,-2.4271855,-2.8647368,-3.0196233,-3.1411505,-3.148154,-3.214445,-3.3928194,-3.5494251,-3.6001172,-3.5221028,-2.8585484,-3.3838124,-3.0675507,-2.9565551,-2.9761949,-3.0678167,-3.3261502,-3.4357905,-3.3971758,-3.6598134,-3.9459028,-2.9222426,-3.4663758,-3.0849776,-3.1945987,-3.0078943,-3.2163038,-3.2584438,-3.3369908,-3.437367,-3.5336602,-3.3445296,-3.1483347,-3.4855232,-3.685707,-3.715859,-3.701499,-3.8005033,-3.8302913,-3.983766,-3.489254,-3.5579998,-3.5004532,-3.7189708,-3.7630782,-3.8327112,-3.83498,-3.7947583,-4.1468573,-4.201625,-4.2217193,-4.012073,-3.9024835,-4.187566,-4.1881223,-4.2399516,-4.111586,-4.097238,-4.1172895,-4.115132,-4.022878,-4.0355277,-3.9961476,-3.8837929,-3.9990678,-3.915525,-3.819717,-3.7890782,-3.7736602,-3.7783427,-3.749476,-3.6800323,-3.5980926,-3.6777718,-3.631815,-3.622336,-3.7263684,-3.6475556,-3.7123528,-3.6853874,-3.7155595,-3.8965049,-3.9261508,-3.9651718,-3.9644303,-3.3150873,-3.6049452,-3.1459022,-3.3365102,-3.808426,-4.067453,-4.1369214,-4.0280356,-4.1990857,-4.1692843,-4.0815864,-3.9017282,-4.077295,-4.0963655,-4.2375546,-4.2975307,-4.297178,-4.116725,-4.160642,-3.8464437,-3.8411365,-3.95824,-3.5934622,-3.954391,-4.094637,-4.139916,-4.1789293,-4.2052455,-4.1512995,-4.211557,-4.250296,-4.282086,-4.2923856,-4.2223606,-4.313434,-4.258515,-4.294555,-4.138263,-3.9764428,-3.8009143,-3.6117368,-3.9951115,-4.0618453,-4.120332,-4.16901,-4.2437944,-4.2731223,-4.3857994,-4.316019,-4.3539042,-4.057827,-3.8577285,-4.242315,-4.347563,-4.306709,-4.305028,-4.2785764,-4.332321,-4.374091,-4.0695386,-4.3652415,-4.42742,-4.400815,-4.399594,-4.3864484,-4.1717496,-3.8752036,-3.2184324,-3.941608,-4.2174993,-4.206647,-4.2319207,-4.3495874,-4.351446,-4.2834544,-4.300333,-4.1639647,-3.50662,-3.942635,-4.1518593,-4.3596554,-4.298358,-4.321817,-4.31595,-4.120526,-2.330761,-3.1903772,-3.6583345,-3.991293,-4.187382,-4.3637576,-4.45567,-4.0325,-4.15127,-4.3179073,-4.3204627,-3.121882,-3.6917036,-4.04186,-4.183699,-4.194555,-4.3317847,-4.406439,-4.340159,-4.168967,-4.324451,-4.4246135,-4.2770724,-4.228072,-4.086725,-3.9628482,-4.0839024,-4.2388616,-4.2878633,-4.385713,-4.3205333,-4.321876,-4.304888,-3.2952962,-3.923452,-4.0696425,-4.0248857,-3.9803038,-3.9107442,-3.8576035,-4.039021,-3.6465173,-3.954154,-4.182894,-4.2102094,-4.1643987,-4.171615,-4.232521,-4.307062,-4.3370976,-4.32288,-4.2482724,-4.2628713,-4.278424,-4.186745,-4.0341325,-4.0955753,-3.9193792,-3.7433438,-3.9074163,-3.4436362,-3.0080276,-3.342911,-3.1455448,-3.0640981,-3.0551066,-2.9875488,-2.8636622,-2.8852441,-2.8067913,-2.79594,-2.859402,-2.749402,-2.6661878,-2.6857738,-2.645684,-2.5793834,-2.5494,-2.5149782,-2.50428,-2.4868684,-2.481384,-2.5732236,-2.6146507,-2.465732,-2.251376,-2.5109677,-2.4630694,-2.4995975,-2.5804415,-2.6104312,-2.7112687,-2.4953055,-2.4662175,-2.4337745,-2.5174015,-2.5344543,-2.4583244,-2.518099,-2.4914036,-2.5262203,-2.5350533,-2.3416927,-2.4422588,-2.1467428,-2.1972704,-2.1713681,-2.2195969,-2.2250476,-1.7251608,-1.8272107,-1.6784277,-1.7796834,-1.8082108,-1.7930708,-2.0152307,-2.056181,-1.9527717,-1.9170403,-2.045699,-1.7658353,-1.9157586,-1.9005992,-1.6145799,-1.9819565,-2.054789,-2.1759186,-2.0110283,-1.9670494,-1.939184,-1.9301739,-1.8653188,-1.8693936,-1.932378,-1.9672449,-1.7683482,-1.7816699,-1.7043867,-1.6759756,-1.6426759,-1.5774567,-1.3522241,-1.3411565,-1.7681804,-1.8199539,-1.7228165,-1.6236913,-1.6033251,-1.677928,-1.6638682,-1.7795482,-1.8201745,-1.3325193,-1.5703213,-1.7699056,-1.6224859,-1.5451658,-1.5409935,-1.498622,-1.7151608,-1.6573315,-1.670289,-1.6632998,-1.6533387,-1.505621,-1.5588744,-1.7758749,-1.7552357,-2.001736,-2.188072,-2.3979123,-2.5833397,-2.7658634,-2.8992,-3.1531863,-3.2603326,-3.3958511,-3.4419954,-3.3990352,-3.4479828,-3.4259157,-3.3639462,-3.3511753,-3.4663095,-3.4913912,-3.3988395,-3.4523675,-2.8701782,-3.2534592,-3.0390282,-3.0199952
+-0.16259077,-0.949855,-1.8619237,-2.7260277,-3.1197114,-3.4790325,-3.525229,-3.6516643,-3.7446437,-3.8943343,-3.9811745,-4.0361695,-4.1160903,-4.1626053,-3.3936243,-3.5469062,-3.8770714,-3.7757678,-3.7078938,-3.7672787,-3.9395947,-4.057543,-4.1462626,-4.242844,-4.3123155,-3.7284799,-4.1024566,-3.381009,-3.922802,-3.9399953,-3.8850942,-3.6767435,-3.9447808,-4.081451,-4.17524,-4.1599274,-3.8495193,-4.1782656,-3.611515,-3.8910909,-4.1222134,-4.3775325,-4.359771,-4.412846,-4.341237,-4.2329793,-4.3130364,-4.213322,-4.359196,-4.5030675,-4.5027256,-4.547292,-4.548719,-4.5467944,-4.5766683,-4.4421897,-4.16908,-4.22271,-4.356935,-4.3211284,-4.268847,-4.2257895,-4.2147875,-4.2224135,-4.1835837,-4.2069907,-4.184839,-4.295179,-4.336307,-4.1940084,-4.266793,-4.2815895,-4.249959,-4.1241255,-3.9759393,-4.3097258,-4.273103,-4.317121,-4.255771,-4.276077,-4.2817025,-4.241559,-4.2763476,-4.2251186,-4.2275276,-4.216536,-4.223437,-4.2470727,-3.9588857,-4.3267026,-3.8836532,-3.4178426,-3.7158585,-3.9327745,-4.2747293,-4.4198985,-4.4728894,-4.5084786,-4.5348954,-4.50746,-4.383948,-4.356568,-4.395203,-4.434741,-4.4378114,-4.461126,-4.4245567,-4.4153657,-4.40628,-3.2368944,-4.254867,-4.398974,-4.295832,-4.061135,-4.568356,-4.636955,-4.6401305,-4.5824018,-4.551336,-4.562041,-4.605168,-4.5664005,-4.4691014,-4.5984597,-4.52148,-4.12334,-2.911023,-4.216779,-4.3611913,-4.402338,-4.466191,-4.469211,-4.603703,-4.6290145,-4.633677,-4.5989137,-4.63762,-4.6845098,-4.6824226,-4.609016,-4.4999347,-4.730115,-4.820999,-4.794852,-4.5255475,-4.6779766,-4.827372,-4.8847194,-4.741771,-4.74025,-4.8439555,-4.808861,-4.81666,-4.777911,-3.407657,-4.4213185,-4.5102735,-4.6529593,-4.811005,-4.833343,-4.750881,-4.718928,-4.6133246,-4.7141814,-4.599814,-4.473603,-4.562767,-4.6595826,-4.6768737,-4.731793,-4.699435,-4.691438,-4.635164,-4.496919,-3.8874831,-2.9370713,-4.178272,-4.268311,-4.4384556,-4.5488086,-4.5596747,-4.417398,-4.173014,-4.4515843,-4.7020364,-4.1451926,-4.3465695,-4.6583505,-4.746938,-4.6823635,-4.7841096,-4.9402413,-4.880144,-4.842464,-4.825192,-4.756187,-4.778848,-4.656833,-4.554182,-4.47367,-4.5958214,-4.5228167,-4.601634,-4.6719337,-4.620341,-4.610995,-4.58595,-3.8390355,-4.393372,-4.525953,-4.542391,-4.590298,-4.5067706,-4.572164,-4.588867,-4.5173144,-4.503423,-4.5872035,-4.373913,-4.4035945,-4.4229555,-4.490154,-4.4784474,-4.464446,-4.4888225,-4.5042844,-4.5072875,-4.5157824,-4.4903092,-4.4309955,-4.4612145,-4.289641,-4.28018,-4.4283805,-4.202072,-3.4276896,-3.8565106,-3.6390252,-3.5491076,-3.4766102,-3.3106375,-3.2338483,-3.0402312,-3.048829,-3.1185362,-2.9418743,-2.8657875,-2.8248827,-2.758468,-2.8141222,-2.7827926,-2.9084923,-2.6076431,-2.6935396,-2.6052423,-2.6086054,-2.7036936,-2.6536245,-2.4813898,-1.5468578,-1.5539935,-1.8247259,-1.888978,-1.9769647,-2.104034,-2.1617138,-2.1843524,-2.2056842,-2.473661,-2.554617,-2.5003386,-2.569631,-2.576147,-2.5324316,-2.580642,-2.6323867,-2.539043,-2.6981697,-2.824278,-2.8940237,-3.1632156,-2.8447437,-3.1180034,-3.1403751,-3.1428928,-2.962075,-3.4796166,-3.5382395,-3.4558609,-3.129734,-3.0645924,-3.1464486,-2.8835602,-2.977964,-3.214298,-3.3837845,-3.3706608,-3.3697405,-3.506494,-3.2244897,-2.9222507,-2.9532049,-2.7946126,-2.7951598,-2.763479,-2.7332067,-2.7716227,-2.871607,-2.865911,-2.849459,-2.9659338,-2.9267347,-3.2686026,-3.241659,-3.0862014,-2.8194556,-3.0081363,-2.5877695,-2.2863958,-2.1758108,-2.04893,-1.9515224,-2.0575817,-2.3829536,-2.604147,-2.729112,-2.4128351,-2.1583538,-2.298717,-2.4258282,-2.3341315,-2.3039756,-2.4548707,-2.7980685,-2.729446,-2.5623624,-2.4516985,-2.422009,-2.4099445,-2.685925,-2.580851,-2.4354434,-2.3621116,-2.3138194,-2.330657,-2.2783654,-2.2463074,-2.2173429,-2.4490643,-2.7988667,-3.109082,-3.3606567,-3.4085083,-3.5012882,-3.56733,-3.6180775,-3.683368,-3.6947484,-3.7319627,-3.5794613,-3.531059,-3.3475065,-3.6037176,-3.488284,-3.5113845
+0.52143466,0.3489058,-0.46678382,-1.4735436,-2.4203625,-2.8201108,-3.1147587,-3.2875104,-3.4080992,-4.0114794,-4.053556,-4.113841,-4.151811,-4.231076,-4.2201557,-3.6021733,-3.9964342,-4.0103164,-3.9719372,-3.9520755,-4.0791883,-4.2449946,-4.1555204,-4.3520975,-4.446942,-4.1617646,-4.29952,-4.268045,-4.2558584,-4.2664,-3.8636823,-4.27825,-4.279734,-4.344279,-4.361397,-4.2622,-4.1714306,-4.417235,-3.4836938,-4.175144,-4.2638803,-4.462832,-4.549679,-4.583018,-4.4244394,-4.2969046,-4.526424,-4.3777614,-4.5444064,-4.699031,-4.6829,-4.711758,-4.8076997,-4.7798867,-4.7931805,-4.743155,-4.59586,-4.550781,-4.536911,-4.526252,-4.367132,-4.26011,-4.2658563,-4.1934814,-4.1449237,-4.152227,-4.153102,-4.1661444,-4.18359,-4.133924,-4.132645,-4.0351634,-4.0607133,-3.8100557,-3.8688579,-4.0934086,-4.0654025,-4.1178737,-4.125465,-4.1392245,-4.1637,-4.120397,-4.202186,-4.1437535,-4.1308045,-4.11324,-4.1754107,-4.107415,-4.024828,-4.0232725,-3.2589822,-3.1698418,-3.257542,-3.8004332,-4.136602,-4.3968425,-4.4823327,-4.5021567,-4.5292664,-4.541925,-4.431008,-4.3635793,-4.3483453,-4.3091984,-4.341916,-4.3217807,-4.3032336,-4.3589396,-4.3481803,-4.048969,-3.9218354,-3.9254918,-4.2684975,-4.5462604,-4.7152586,-4.7221417,-4.625584,-4.6818323,-4.635961,-4.6844454,-4.6111503,-4.026626,-4.22246,-4.397337,-4.416961,-3.6561654,-3.4613261,-3.9970012,-4.52715,-4.6900687,-4.821182,-4.84343,-4.90242,-4.8066525,-4.8070517,-4.8164515,-4.827781,-4.811489,-4.540423,-4.6700163,-4.7372417,-4.6356826,-4.810971,-4.6168895,-3.161,-4.37421,-4.96824,-4.9793134,-4.8593297,-4.6903014,-4.80106,-5.0066457,-5.0047913,-4.953466,-3.8986769,-4.6816125,-4.87798,-4.8258033,-4.8735166,-4.948393,-4.8343997,-4.7777495,-4.707438,-4.7534223,-4.5340447,-4.4328575,-4.2185245,-4.410105,-4.630273,-4.688992,-4.6672783,-4.669074,-4.693537,-3.9528832,-3.9925456,-3.2536151,-4.1271358,-4.2224174,-4.5365853,-4.609795,-4.6984043,-4.1886067,-4.2985134,-4.5226364,-4.709664,-4.4900126,-4.32756,-4.536349,-4.482344,-4.52228,-4.556706,-4.510649,-4.3179364,-4.5124927,-4.5551667,-4.5588555,-4.633697,-4.5758147,-4.4567747,-4.4264774,-4.4943233,-4.4453816,-4.5603304,-4.586197,-4.5983634,-4.5695415,-4.5631413,-4.1979146,-4.370733,-4.5163975,-4.600753,-4.5321,-4.589333,-4.5410743,-4.5546527,-4.5138173,-4.536636,-4.013354,-3.578329,-4.449627,-4.397361,-4.474117,-4.4353538,-4.4497,-4.5277505,-4.580089,-4.506222,-4.431873,-4.485763,-4.5032597,-3.899963,-3.8694797,-4.004896,-4.1563096,-2.589444,-2.8297625,-2.6709094,-2.4672663,-2.4216204,-2.2208693,-1.9305379,-2.134048,-1.9765866,-2.0191178,-1.992147,-1.9156284,-1.6973548,-1.8744802,-1.8287835,-1.8906832,-1.9959464,-1.9972205,-1.7597709,-1.7657037,-1.7776613,-1.7775276,-1.8013146,-1.7071941,-1.7609768,-2.107007,-1.7079103,-1.6746457,-1.6838026,-1.7863088,-1.8498373,-2.1434093,-2.5092914,-2.2924438,-2.6041646,-2.6695352,-2.5179417,-2.5096827,-2.517866,-2.4515462,-2.7647927,-2.797712,-2.9504406,-3.0916936,-3.0334444,-3.2582347,-3.3872914,-2.9293976,-3.1032517,-3.0607767,-3.0031514,-2.578967,-2.7884586,-2.6384385,-2.7682438,-2.679618,-2.7191248,-2.75265,-2.507907,-2.5074317,-2.946567,-2.4672012,-2.9756055,-3.0925446,-3.3390145,-3.2764623,-3.0783064,-2.9464545,-2.8838534,-2.9466858,-2.883994,-2.8875926,-2.8433073,-2.7911925,-2.8163004,-2.8222308,-2.9466658,-2.787352,-3.051394,-2.5953236,-2.581746,-2.374178,-1.9501386,-1.5604377,-1.4725153,-1.4702573,-1.3989377,-1.3021595,-1.3130589,-1.2815719,-1.2442439,-1.7008286,-1.6310132,-1.5518124,-1.7914248,-2.1935,-2.1528563,-2.1452017,-2.017292,-1.6584058,-1.838388,-1.7859726,-1.6709476,-1.7189448,-1.7574501,-2.2429166,-2.296616,-2.1677322,-2.0376797,-1.9961271,-1.7508471,-1.6234558,-1.5317824,-1.4832134,-1.6843104,-2.2308674,-2.7928796,-3.2616158,-3.5758572,-3.837626,-3.9445233,-3.9453874,-3.8115149,-3.9308672,-4.27172,-3.9195123,-4.277127,-3.8211293,-4.0318494,-3.836865,-3.4875128
+-1.1254086,-1.9884682,-2.308631,-2.534227,-2.6298645,-2.6960893,-2.786017,-2.5515685,-2.5972543,-3.0015292,-3.0569406,-3.0026915,-3.0385203,-3.0598764,-2.8705292,-1.9861288,-2.5142918,-2.9232574,-3.1009407,-3.1774669,-3.2468023,-3.3025112,-3.2817352,-3.2919674,-3.2764611,-3.0220113,-3.1322718,-3.1652222,-2.7745502,-2.2344277,-1.7871957,-2.8452902,-3.0692406,-3.2193446,-3.337164,-3.3361988,-3.225205,-3.2866046,-3.2571976,-3.2538505,-3.271709,-3.2776866,-3.2324548,-3.044975,-3.081644,-3.0767794,-2.4715915,-2.213627,-3.0954585,-3.252768,-3.3475597,-3.3563254,-3.3705177,-3.3485126,-3.3463004,-3.2979689,-3.319334,-3.3163257,-3.2555048,-3.19876,-3.2024093,-3.2121077,-3.2270136,-3.186236,-3.2164955,-3.255995,-3.2693756,-3.25408,-3.265332,-3.328006,-3.3868318,-3.425735,-3.440339,-3.4821987,-3.4914448,-3.437162,-3.4101017,-3.419817,-3.3387396,-3.2585278,-3.360259,-3.4824746,-3.4934351,-3.5199103,-3.5184321,-3.5491803,-3.5433311,-3.5744727,-3.5810971,-3.5758564,-3.0661006,-1.8892603,-2.8979187,-3.1772797,-3.3928375,-3.4817343,-3.5481486,-3.5623841,-3.553906,-3.52412,-3.4869182,-3.398377,-3.3661036,-3.3507004,-3.315671,-3.3318813,-3.4225407,-3.505262,-3.4461622,-2.478409,-2.5471282,-2.3341308,-3.17939,-3.4137907,-3.3465905,-3.4654956,-3.546795,-3.485624,-3.4399176,-3.3129373,-3.4191947,-3.463203,-2.0499263,-3.1509523,-1.9305778,-1.8938184,-2.7686505,-2.106511,-2.9470909,-3.4305174,-3.6010275,-3.650771,-3.6162868,-3.5761173,-3.5274346,-3.4977837,-3.4691713,-3.3264313,-3.3295863,-3.1487398,-3.2974138,-3.3711696,-3.3129797,-2.6427467,-3.0956697,-2.650992,-3.2548163,-3.4348383,-3.3518705,-3.2865472,-3.3045986,-3.374401,-3.364715,-3.2871726,-2.184481,-2.892932,-3.1625853,-3.2510247,-3.312565,-3.2723198,-3.2460065,-3.1415896,-3.1013575,-3.143876,-2.7767344,-3.0197482,-3.0897593,-3.1535792,-3.0466661,-3.0020776,-2.892184,-2.7844574,-2.5968254,-1.7775612,-2.4451418,-2.2521353,-2.9351885,-3.0540223,-3.0693665,-3.0095265,-2.9881976,-1.5836487,-2.8060284,-3.0118861,-3.1838026,-3.2311366,-3.0712337,-3.2290187,-3.2467031,-3.049593,-2.8842492,-2.209415,-2.9156592,-3.1123917,-3.150027,-3.1138668,-3.0754046,-3.0072799,-2.9852128,-3.0165067,-2.992249,-2.8524384,-2.781505,-2.7478542,-2.7310042,-2.7355866,-2.6779644,-1.9552925,-2.5983129,-2.6565914,-2.7308135,-2.8568463,-2.7657254,-2.75131,-2.7628508,-2.7447758,-2.497733,-1.6997423,-2.1663928,-2.4820776,-2.6409304,-2.6722593,-2.639508,-2.5796218,-2.5684805,-2.6046705,-2.5640054,-2.550932,-2.5604134,-2.4972744,-2.6432974,-2.3672514,-2.1174035,-2.3534606,-1.1382048,-2.4236917,-2.4371111,-2.209395,-1.9040952,-1.7261057,-1.9825134,-1.8334198,-0.88559014,-0.5402493,-0.31440765,-0.32769376,-0.26770175,-0.2831102,-0.29603696,-0.43185532,-0.49364555,-0.5178841,-0.35958594,-0.41263956,-0.5719668,-0.8197591,-1.0306091,-1.1518869,-1.5958388,-1.2171619,-1.778944,-1.5082521,-0.64440805,-0.49317282,-0.5577255,0.04721731,-0.46270734,-0.7019995,-1.1147513,-0.6276023,-0.4741466,-0.5109639,-0.685418,-0.667599,-0.4879549,-0.56147027,-0.7039308,-0.7146861,-0.7036752,-0.46670717,-0.25369543,-0.27659202,-0.2865401,-0.39285153,-1.3113105,-1.8346887,-2.1041648,-2.2514262,-2.3828576,-2.0713568,-2.3802419,-2.2606401,-1.806222,-1.1191962,-0.73715526,-0.13861996,-0.34591162,-0.4223644,-0.18159446,-0.3188359,-0.3066175,-0.33327693,-0.41736138,-0.4954682,-0.5354325,-0.55702513,-0.5765858,-0.58534783,-0.53290653,-0.44939035,-0.480264,-0.6368028,-0.9175615,-1.4688723,-1.8858786,-2.411325,-2.6889555,-2.8042638,-2.0498555,-2.6443346,-2.4863439,-2.1395304,-2.0941274,-2.4483755,-2.4487262,-2.3619986,-2.7602327,-2.9359493,-2.8373399,-2.464377,-2.1883364,-2.0085685,-2.067249,-0.91011626,-1.4277008,-1.2933502,-1.0736306,-1.0124278,-1.5494297,-2.1688213,-2.4914236,-2.577597,-2.732467,-2.8585534,-2.90387,-2.9315643,-2.9051468,-2.9278333,-2.9537272,-3.0020092,-3.0243306,-3.0531616,-3.0427456,-3.0481014,-3.0220845,-2.9848027,-2.5453737,-2.724338,-2.943568,-2.236168,-3.0748281,-3.0982327,-2.8524766,-2.9738579,-2.1721442
+0.065156445,-0.5944506,-1.3874574,-1.883142,-2.1755743,-2.213928,-2.1741796,-1.6839488,-2.4385436,-2.8697357,-2.7840257,-2.884079,-3.121918,-3.4263108,-3.371086,-2.3334045,-2.5831964,-3.0189607,-3.3190556,-3.370315,-3.2841053,-3.1632514,-3.1200535,-3.1262984,-3.113469,-3.0474627,-3.077622,-3.0857382,-2.813229,-2.106779,-1.9949403,-2.788247,-3.0950148,-3.479443,-3.504098,-3.4481256,-3.3446927,-3.1536279,-3.0629225,-3.1070852,-3.1277266,-3.179059,-3.2054114,-3.178032,-3.1573153,-3.1933541,-2.120105,-2.3991282,-3.279985,-3.6461275,-3.4709358,-3.3373942,-3.3015895,-3.282621,-3.303928,-3.3119683,-3.3146706,-3.3330126,-3.3336043,-3.359495,-3.3506143,-3.3121643,-3.3331838,-3.3987007,-3.4015381,-3.3515272,-3.4101205,-3.41652,-3.4129248,-3.3666043,-3.3550558,-3.3133945,-3.3440373,-3.3820858,-3.378792,-3.408002,-3.4186304,-3.440032,-3.4910316,-3.526408,-3.5013137,-3.4148927,-3.4750495,-3.480694,-3.2568603,-3.304023,-2.0584314,-3.0271692,-3.2755172,-3.3721147,-2.606082,-2.1490557,-2.9624653,-3.323402,-3.43714,-3.3534865,-3.2877674,-3.2758656,-3.2937999,-3.331699,-3.3337374,-3.3553023,-3.4040241,-3.4519403,-3.4955726,-3.5473454,-3.5221412,-3.5073996,-3.229501,-2.8224626,-1.9125915,-2.3771496,-2.9945464,-3.2762713,-2.8517804,-2.7412705,-3.1400833,-3.2882152,-3.2771025,-3.278957,-3.2323303,-3.2873952,-3.0662105,-3.0380595,-2.6278067,-2.3821006,-2.4797616,-2.7769427,-2.697609,-2.6720624,-3.1406894,-3.1750631,-2.8711982,-3.2831182,-3.2882218,-3.2337384,-3.2066905,-3.0569162,-2.776682,-2.929803,-3.1538374,-3.299852,-3.315611,-3.0599113,-3.061573,-3.0909276,-3.2999701,-3.2696922,-3.0948534,-3.1883745,-3.1334906,-2.7230535,-3.1422296,-3.142139,-2.9572017,-3.2328496,-3.2914524,-3.1340253,-3.1719885,-3.1907687,-2.5290701,-3.1917436,-3.200501,-3.2441473,-3.035184,-3.206462,-3.198768,-3.2203178,-3.206634,-3.1496508,-3.2697136,-3.3919437,-3.5034811,-3.4712355,-3.419147,-3.3644648,-3.3635006,-3.4104366,-3.3731594,-3.3420563,-3.3516688,-2.5430868,-2.6923635,-2.9233904,-3.177787,-2.982958,-3.1616416,-3.140227,-3.1364682,-3.0773802,-2.7333055,-2.2057614,-2.4775624,-3.063704,-3.3449285,-3.2532296,-3.2097054,-3.224315,-3.2249641,-3.2317052,-3.2791753,-3.2941399,-3.2359848,-3.2677283,-3.3058023,-3.3322434,-3.3042371,-3.187381,-3.1958914,-3.162953,-3.1641479,-3.1708937,-3.1897342,-3.152522,-3.1467264,-3.1657748,-3.2243502,-1.8320701,-2.6703718,-3.0224538,-3.3451002,-3.2687836,-3.1955986,-3.1782012,-3.2879121,-3.3353477,-3.337564,-3.272442,-3.2788444,-3.2913084,-3.2561948,-3.0786853,-3.1512012,-3.2927299,-1.799109,-2.512343,-2.712129,-2.706839,-2.6663256,-2.7528274,-2.8587313,-2.5424037,-2.487058,-2.261797,-2.176364,-2.193955,-2.0891519,-1.9988024,-2.0465837,-2.0923448,-2.057488,-1.994348,-2.0250146,-2.0602903,-2.0823486,-2.166973,-2.222399,-2.4269388,-2.7034426,-2.5687463,-2.3810685,-2.2859414,-2.0190659,-2.0454912,-2.2509503,-1.911068,-1.9986336,-2.4556541,-2.1434581,-2.0222478,-1.9968796,-1.9918008,-1.9496255,-1.9158733,-1.8534956,-1.7798018,-1.8655257,-1.8051753,-1.7423122,-1.7985423,-1.6838274,-1.7988849,-1.6182244,-1.575675,-1.6266913,-1.7028229,-1.8318028,-1.8807783,-2.1637845,-1.877192,-1.9278765,-1.8805649,-1.7965591,-1.6805816,-1.4549105,-1.5184793,-1.5681007,-1.6797755,-1.8454223,-2.331339,-2.55898,-2.6849217,-2.7158937,-2.717215,-2.5525174,-2.5658305,-2.4382012,-2.0814989,-1.8116152,-1.6800392,-1.6209624,-1.4142361,-1.4024713,-1.2598026,-0.85133296,-0.7045402,-0.98627967,-1.5046546,-2.0615547,-2.3955767,-2.4536493,-2.1008008,-1.9585214,-1.9759841,-1.8172333,-2.0312176,-2.3069715,-2.6877842,-2.7142713,-2.3547618,-2.2238624,-2.29563,-2.1950839,-2.1891208,-2.4127445,-2.2914662,-2.2218032,-2.3097625,-2.5906382,-2.718506,-2.6438723,-2.7542896,-2.818737,-2.8888617,-2.925032,-2.936004,-2.958866,-2.9939046,-3.0385454,-3.0341394,-3.0204315,-2.9753976,-2.9650767,-2.9739132,-2.934988,-2.9116888,-2.6786027,-2.3095202,-2.7092574,-2.560545,-2.6532934,-2.4900808,-2.2557068,-2.7218375,-2.480349
+-0.35210574,-0.8284773,-1.309515,-1.7558746,-2.093479,-2.198444,-2.3035698,-2.591786,-2.7564843,-3.1580253,-2.769095,-2.8268065,-3.5961862,-3.8948245,-3.9096074,-3.9388328,-3.888846,-3.9629087,-4.014524,-4.02613,-4.0531073,-4.111411,-4.0784645,-4.0667777,-4.0173564,-4.0213523,-4.118,-4.09236,-4.0730357,-4.089333,-4.0948205,-4.090141,-4.1370387,-4.186976,-4.2034163,-4.127771,-4.0326104,-4.109798,-4.026321,-4.047482,-4.0464363,-4.078689,-4.0821137,-4.0578117,-4.1408505,-3.985951,-3.6795104,-2.2978563,-3.8884902,-4.0948825,-4.133076,-4.111363,-4.1272225,-4.1173587,-4.1390414,-4.1119637,-4.171065,-4.217487,-4.1785054,-4.1953735,-4.2218046,-4.271618,-4.3226733,-4.2346044,-4.243896,-4.35305,-4.371366,-4.3198104,-4.3318377,-4.367206,-4.2095084,-4.3875346,-4.3626685,-4.303641,-4.262429,-4.2493725,-4.206476,-4.1734033,-4.181111,-4.2275624,-4.327394,-4.390184,-4.3819146,-4.320947,-4.3181953,-3.8572702,-4.114215,-3.0754027,-4.3608108,-3.914516,-4.409571,-2.347879,-3.9758964,-4.333686,-4.3879356,-4.3246865,-4.2941165,-4.348319,-4.141699,-4.211159,-4.3299017,-4.3215823,-4.3176017,-4.326795,-4.3633027,-4.3957324,-4.445889,-4.403585,-4.2076964,-4.093102,-3.9745622,-3.826695,-2.935777,-4.2164583,-4.4447646,-4.511617,-4.1404624,-4.383141,-4.606644,-2.5503404,-3.8316884,-4.4982934,-4.50353,-3.8407683,-4.4399886,-4.396339,-3.6719315,-4.5646706,-4.0309553,-4.5376935,-3.3172371,-3.739417,-3.9535995,-4.5761957,-4.7291822,-4.605992,-4.7681003,-3.375717,-4.5582795,-4.7098765,-4.669061,-4.411767,-4.4746118,-3.962028,-4.5280986,-4.6200967,-4.60741,-4.548295,-4.4607215,-4.1219893,-4.4459376,-4.411622,-4.50599,-3.7298641,-4.490024,-4.6403503,-4.588137,-4.485607,-4.502892,-2.0924647,-2.838305,-3.8683095,-4.328948,-4.6470914,-4.510671,-4.4938164,-4.5092664,-4.4371552,-4.352234,-4.312868,-4.1691356,-4.1401906,-4.1490283,-4.371482,-4.3345275,-4.234297,-4.197806,-4.099754,-4.1082864,-4.0282984,-4.187404,-2.4997134,-2.6017432,-3.8036027,-4.2688417,-4.490236,-4.388778,-4.3532248,-4.359761,-4.2205386,-4.261212,-3.348102,-4.305775,-4.463678,-4.4418263,-4.3453674,-4.2812266,-4.296737,-4.291928,-4.2747073,-4.2845273,-4.2425604,-4.1426764,-4.28655,-4.2888455,-4.2629957,-4.271707,-4.28495,-4.1938562,-4.283075,-4.322276,-4.2554235,-4.2500844,-4.255005,-4.2079988,-4.0203886,-3.847899,-2.2983322,-3.8708224,-4.1429687,-4.164392,-4.0307813,-3.8920927,-3.9394822,-3.9033232,-3.8959026,-3.9364104,-3.8451371,-3.9094214,-4.012109,-3.915403,-3.905456,-3.9850354,-4.0297613,-3.4841127,-3.331666,-3.7735338,-3.657496,-3.6411114,-3.5922644,-3.464334,-2.9477968,-3.0070543,-2.6271963,-2.5759041,-2.5195136,-2.06434,-2.03889,-2.1685936,-2.1791763,-2.1936917,-2.2263625,-2.2484593,-2.246747,-2.1965384,-2.2676036,-2.2518268,-2.2120123,-2.2194753,-2.1709728,-1.9786506,-2.1481872,-2.001017,-1.9547472,-2.133829,-1.4522548,-2.161257,-2.3057435,-2.2504692,-2.2360678,-2.1764665,-2.1811113,-2.068903,-2.1835043,-1.9324718,-2.045095,-2.203034,-2.3034558,-2.3674119,-2.2468362,-2.3290281,-2.425555,-2.3353515,-2.1565108,-1.9966857,-1.9035251,-1.8753858,-1.9373646,-2.110746,-1.9327204,-2.3517666,-2.31166,-2.29066,-2.4217434,-2.578181,-1.5206051,-2.019701,-2.3999271,-2.5113022,-2.5283759,-2.5448616,-2.5957618,-2.597866,-2.6157994,-2.626482,-2.6929398,-2.7280514,-2.7104905,-2.6638107,-2.5939598,-2.5403624,-2.4092045,-2.4541144,-2.3126004,-2.1261559,-1.7756119,-1.7073622,-1.8654795,-2.1606631,-2.8438606,-2.5498977,-2.294467,-2.2948017,-2.2384024,-2.0296822,-2.3652844,-2.4499905,-2.7981014,-3.202289,-3.1482978,-2.8986328,-2.5446167,-2.6898584,-2.6016374,-2.8286202,-2.7342076,-2.6562195,-3.0131338,-3.3305292,-3.6147249,-3.7325978,-3.754641,-3.823513,-3.9108577,-3.9592595,-4.04557,-3.9631562,-4.024423,-4.09818,-4.1632257,-4.2004986,-4.2564836,-4.2555656,-4.214965,-4.244412,-4.2447057,-4.1031814,-3.9283552,-4.257518,-4.207961,-4.276441,-3.9854875,-3.9140306,-4.217444,-4.034257
+-0.86498183,-1.1322477,-1.2922702,-1.5273125,-1.6856422,-1.8064511,-1.9815438,-1.8227637,-1.8846409,-2.0147386,-1.8128762,-1.8734546,-2.173275,-2.4217794,-2.5810003,-2.623536,-2.6241617,-2.703369,-2.7665615,-2.8281536,-2.8819957,-2.8758836,-2.8582697,-2.833003,-2.8956947,-2.9145627,-2.9414902,-3.0344741,-2.9650116,-2.9807982,-3.0459309,-3.0254638,-3.0715213,-3.0617952,-3.0971828,-3.1274805,-3.1091168,-3.1294074,-3.0665019,-3.1007738,-3.1072586,-3.1386127,-3.1196995,-3.0665226,-3.0040383,-3.168876,-3.0904987,-2.9737382,-3.0300536,-3.1156514,-3.1888552,-3.1788177,-3.1835413,-3.2050116,-3.201698,-3.1647604,-3.1752877,-3.20918,-3.1920736,-3.1370554,-3.177412,-3.2511275,-3.2213802,-3.2403882,-3.2366815,-3.1426702,-3.0189888,-3.2520428,-3.240449,-3.2393703,-2.4619517,-2.741702,-2.7485585,-3.1464572,-3.330514,-3.4663124,-3.4913912,-3.496929,-3.5146472,-3.5560849,-3.4713206,-3.3502665,-3.4479105,-3.4474115,-3.3140645,-3.4406474,-3.4633198,-3.3528392,-3.3292623,-2.6897037,-2.5290565,-2.1673057,-2.339529,-2.5785499,-2.7402594,-2.8491945,-2.9205694,-2.8807645,-2.439196,-2.7594495,-2.8743515,-2.9657865,-3.0248368,-3.085441,-3.110489,-3.1921544,-3.1921084,-3.2325416,-2.025414,-2.5459714,-2.6943455,-2.7602391,-2.7399538,-2.8829308,-2.9119945,-1.944582,-2.5392883,-2.3754547,-2.5089731,-2.5590892,-2.6297112,-2.6887226,-2.6894774,-2.377049,-2.528965,-2.5856352,-2.6365495,-2.6360765,-2.3130372,-2.5679574,-2.6712852,-2.5659342,-2.1989086,-2.617246,-2.621905,-1.7908626,-2.2315104,-2.2264218,-2.2735105,-2.3968735,-2.4719305,-2.4626355,-1.7192736,-2.256732,-2.224402,-2.3472705,-2.3681173,-2.4138188,-2.3431864,-2.4243984,-2.31014,-2.35183,-2.3723273,-2.3799157,-1.7084715,-2.2541733,-2.2230716,-2.239065,-2.471434,-1.5818186,-2.2896352,-2.5705786,-2.3192205,-2.2438364,-2.2677646,-2.290352,-2.3623805,-2.347117,-2.4504051,-2.529284,-2.6677067,-2.770722,-2.7701216,-2.6734324,-2.7243688,-2.7435308,-2.7350402,-2.8628063,-2.1031613,-2.137082,-2.4153724,-2.470503,-1.975178,-2.3121657,-2.4500787,-2.4865236,-2.617478,-2.6615894,-2.6898785,-2.680397,-2.5454369,-2.0393593,-2.0521708,-2.2399893,-2.3926544,-2.474369,-2.6111307,-2.665336,-2.699254,-2.7373917,-2.7650466,-2.7703247,-2.7494102,-2.6825402,-2.7185287,-2.7654333,-2.7521944,-2.7214713,-2.7277615,-2.6638956,-2.6449819,-2.6980188,-2.724523,-2.6996324,-2.6737676,-2.656218,-2.5708609,-2.4843938,-2.5486822,-2.582256,-2.5823245,-2.519473,-2.4493732,-2.419453,-2.432691,-2.4187727,-2.4289548,-2.4848268,-2.4992337,-2.499035,-2.494522,-2.4821806,-2.410579,-2.4080706,-2.403013,-2.463335,-2.4539971,-2.4173377,-2.3866093,-2.3446393,-2.3945308,-2.379746,-2.3757093,-2.4949317,-2.5980306,-2.5519848,-0.85838026,-2.0780067,-2.2809658,-2.3818347,-2.4509854,-2.3890653,-2.3697968,-2.4115407,-2.4516053,-2.4694104,-2.5003972,-2.4937563,-2.4368,-2.3544617,-2.2174227,-2.5624056,-2.2799726,-2.414938,-2.3663626,-1.3992145,-2.453167,-2.427565,-2.460266,-2.573992,-2.4079676,-2.4589276,-2.3808537,-2.1755292,-2.313599,-2.4512663,-2.4929745,-2.4765296,-2.4320908,-2.5844073,-2.5860267,-2.4522758,-2.4704988,-2.4695272,-2.5788183,-2.6521413,-2.6380486,-2.5182786,-2.2987285,-1.7054164,-2.2876728,-2.4043453,-2.5156054,-2.454308,-2.376758,-1.8159661,-2.264976,-2.355842,-2.4170387,-2.4527502,-2.4945378,-2.3915186,-2.4200249,-2.558643,-2.6590657,-2.7944884,-2.8666317,-2.9007287,-2.8727605,-2.8756766,-2.914223,-2.980709,-3.002049,-2.9534445,-2.8199372,-2.7937899,-2.8019023,-2.1383052,-1.8855069,-2.356656,-2.481518,-2.5724425,-2.6297364,-2.5253897,-2.4730787,-2.4526424,-2.8054547,-2.6850333,-2.6561673,-2.7942786,-2.8534234,-2.7326555,-2.773048,-2.717009,-2.8552175,-2.7835655,-2.7087464,-2.7545917,-2.7856026,-2.776499,-2.899169,-2.8377924,-2.9436874,-2.9570403,-2.9711456,-2.948911,-2.9718246,-2.979975,-2.990877,-2.986143,-2.9828656,-3.0189734,-3.0139399,-3.0155792,-2.9884903,-3.0358114,-2.6307642,-2.823636,-2.9477077,-2.9459615,-2.9592595,-2.6488423,-2.780126,-2.9189334,-3.0535562
+-0.8622579,-1.531997,-1.8415303,-2.1557474,-2.3664072,-2.5000343,-2.7235746,-2.8507385,-2.9464374,-3.0928235,-3.0869493,-3.2775645,-3.3318925,-3.4606524,-3.450673,-3.4407349,-3.6056094,-3.7646265,-3.786734,-3.804585,-3.8339581,-3.9301453,-3.9333692,-3.840528,-3.7992673,-3.7588162,-3.9326792,-3.9662738,-3.9719892,-4.0447345,-4.101401,-4.209399,-4.2470393,-4.2103763,-4.1419835,-4.2094226,-4.054994,-4.0485635,-4.0390887,-4.117685,-4.1492624,-4.1914544,-4.196612,-4.140879,-4.074213,-3.9241624,-3.9148402,-4.3089495,-4.2645826,-4.4250703,-4.4030857,-4.329511,-4.3197513,-4.365546,-4.2933264,-4.2110734,-4.3138213,-4.410957,-4.3561378,-4.323903,-4.25453,-4.3816056,-4.4290137,-4.28175,-4.2780266,-4.3980136,-4.4676175,-4.417269,-2.6881275,-3.827907,-3.3102784,-3.7745633,-4.0920863,-4.1285233,-4.2097955,-4.1877904,-4.1698594,-4.188185,-4.186897,-4.3139734,-4.4187474,-4.5129423,-4.4900737,-4.3866944,-3.9876256,-3.8171935,-3.532599,-3.8057418,-4.024561,-3.7734804,-3.2293503,-2.8004742,-3.4968498,-4.082201,-4.055391,-3.9719882,-3.8357382,-4.0426064,-3.349595,-3.8763542,-3.903709,-3.7712188,-3.758615,-3.735814,-3.706304,-3.8013945,-3.5530314,-2.8053398,-2.9238605,-3.5548327,-4.0965476,-4.2076106,-3.8250623,-4.122351,-4.1458607,-3.9298368,-3.0721767,-3.2860017,-4.243831,-4.46739,-4.490926,-3.1245995,-4.0343184,-3.607812,-4.1387253,-4.670558,-4.7404704,-4.736568,-4.2643657,-3.7673793,-3.5341446,-4.360151,-4.235708,-4.6189804,-3.8800025,-4.136809,-4.6583333,-4.713817,-4.7204394,-4.794499,-3.984799,-3.9778132,-4.588218,-4.6898785,-3.6235256,-3.8732576,-4.576778,-4.7550197,-4.7997174,-4.6213193,-4.494544,-4.4941163,-4.1593537,-4.1862025,-4.5385146,-4.14881,-4.505383,-4.4562573,-3.5166547,-3.3512793,-4.0957003,-4.3737683,-4.5037065,-4.388635,-3.9678693,-4.331384,-4.6702237,-4.63765,-4.4427395,-4.3728995,-4.292359,-4.2214694,-4.1711082,-4.1749773,-4.0829473,-4.0198636,-4.0012784,-3.8243976,-2.619134,-3.8006496,-4.08407,-4.3000364,-3.635563,-4.264979,-4.4088492,-4.3941007,-4.1167808,-4.1857924,-4.2457123,-4.2423563,-4.172743,-4.224521,-4.3059564,-4.2459245,-4.184916,-4.161573,-4.19409,-4.189468,-4.1728015,-4.1680226,-4.153254,-4.1969457,-4.254851,-4.2366033,-4.3231273,-4.3002405,-4.268495,-4.2508807,-4.1964645,-4.310559,-4.341577,-4.2944117,-4.275636,-4.239326,-4.2149396,-4.1342735,-4.2638946,-4.335143,-4.2902093,-4.243386,-4.2151647,-4.2637973,-4.114265,-4.1211104,-4.162008,-4.1108356,-4.1003966,-4.1606827,-4.234971,-4.313761,-4.253816,-4.061807,-4.1963553,-4.302774,-4.4292674,-4.059365,-4.120489,-4.292606,-4.2847667,-4.2522793,-4.3080387,-4.011746,-4.210407,-4.1708436,-4.440287,-4.545052,-2.5895376,-3.8500834,-3.986434,-4.043225,-4.220298,-4.51666,-4.3488154,-4.548253,-4.4447036,-4.4801893,-4.485292,-4.448403,-4.394876,-4.3602114,-4.3824244,-4.218302,-4.3273606,-4.3675685,-4.2696195,-2.668457,-3.953001,-4.176272,-3.7925878,-4.187529,-4.2112403,-4.3317018,-4.1224713,-4.484118,-4.3008103,-3.8610544,-4.171187,-4.3251395,-4.489424,-4.519316,-4.5297747,-4.47844,-4.525203,-4.5449705,-4.4236865,-4.43574,-4.493049,-4.5458775,-3.9566646,-4.105802,-4.461992,-4.5522203,-4.5725183,-4.4682355,-4.346009,-2.9381585,-3.8588872,-4.1843143,-4.223479,-4.50269,-4.394616,-4.0969195,-3.7606206,-3.694004,-3.808869,-4.0537696,-4.310683,-4.4128575,-4.462766,-4.5141983,-4.542542,-4.493235,-4.4811344,-4.4902916,-4.4223347,-4.437492,-4.3695116,-4.4188848,-3.961238,-4.453404,-4.2087636,-4.341692,-4.3296275,-4.419842,-3.3306813,-4.2219157,-4.363212,-4.4288616,-4.3775396,-4.5066795,-4.6324472,-4.609266,-4.542414,-4.6013627,-4.4608216,-4.3116784,-4.4204273,-4.4391294,-4.463822,-4.288691,-4.3391843,-4.4327207,-4.44947,-4.391194,-4.4667897,-4.4203253,-4.4095817,-4.4276795,-4.370567,-4.3523564,-4.392636,-4.4392457,-4.4408545,-4.4422274,-4.4237266,-4.4231544,-4.2790008,-4.2709517,-4.4473743,-4.408055,-4.4501443,-4.4737916,-4.3794866,-4.4713225,-4.3905444
+-1.2295728,-1.8137681,-2.1102304,-2.2080457,-2.3587873,-2.5403106,-2.7228856,-2.795001,-3.0389886,-3.1502326,-3.2070158,-3.289444,-3.3752594,-3.3993382,-3.4069812,-3.405003,-3.4834535,-3.581927,-3.57764,-3.59544,-3.6434557,-3.8150997,-3.8465285,-3.8251991,-3.8155775,-3.7557368,-3.8198571,-3.8396344,-3.8394494,-3.8800063,-3.881206,-3.972777,-3.9166322,-3.9931731,-4.0553794,-4.1039233,-4.080417,-4.04338,-4.045142,-4.1230726,-4.1338544,-4.131794,-4.168615,-4.1503863,-4.1444383,-4.0282884,-4.0615563,-4.127177,-4.145641,-4.1466475,-4.161244,-4.1592584,-4.1474404,-4.232287,-4.2574215,-4.1667814,-4.134845,-4.230553,-4.2761173,-4.178127,-3.9640021,-3.806273,-4.225927,-4.2599154,-4.3473325,-4.3438754,-4.3385253,-4.4938245,-4.0792685,-2.4937627,-4.0167184,-4.0113535,-4.025927,-4.11705,-4.1270366,-4.1273284,-4.171291,-4.2131577,-4.2261605,-4.3482366,-4.464809,-4.420295,-3.8590584,-3.885521,-3.2623672,-3.8485255,-2.6925883,-3.0521002,-3.6316998,-3.1332986,-3.9299154,-4.4706106,-3.8002148,-4.2525034,-4.4009833,-3.372526,-4.3236127,-4.4891357,-3.992968,-4.2304015,-3.9755192,-4.368276,-4.1156526,-3.8581223,-3.8159242,-4.365639,-4.454191,-3.9857855,-4.231557,-4.416817,-4.5261064,-4.4386287,-4.7404146,-3.9777546,-4.329529,-4.3426003,-4.0353847,-4.147538,-4.590235,-4.440964,-4.5725408,-4.6851134,-4.3470635,-4.623319,-4.624367,-4.811192,-4.8411555,-4.7514095,-4.622833,-4.0174775,-4.087739,-4.4943995,-4.352058,-4.451526,-4.4456167,-4.284078,-4.6940317,-4.8096275,-4.908872,-4.195727,-4.524068,-4.5640054,-4.641057,-4.617143,-4.551829,-4.744302,-4.343533,-4.7155013,-4.759585,-4.762798,-4.737351,-4.0653934,-4.785397,-4.9030523,-4.8330774,-4.824437,-4.7708077,-4.5860343,-3.0281563,-4.321221,-4.516508,-4.602535,-4.7232213,-4.0158515,-4.3991494,-4.645739,-4.6477466,-4.7233977,-4.71063,-4.6741347,-4.548006,-4.32227,-4.4500346,-4.701241,-4.6933,-4.7563596,-4.8199735,-4.6245675,-3.6115248,-4.281473,-4.7242594,-4.72177,-4.3114486,-4.6933284,-4.719902,-4.706597,-4.51202,-4.6656876,-4.7453675,-4.4684486,-4.7145853,-4.7573295,-4.63718,-4.5603395,-4.5551248,-4.544914,-4.5208735,-4.5084715,-4.4912515,-4.4636416,-4.4476857,-4.4237103,-4.469641,-4.572194,-4.4655585,-4.0031667,-4.439691,-4.484713,-4.4930005,-4.60461,-4.601794,-4.4878154,-4.4535427,-4.4570823,-4.513533,-4.5880547,-4.6460137,-4.621101,-4.5388074,-4.480064,-4.491284,-4.5526013,-4.555853,-4.671686,-4.632351,-4.6004496,-4.660397,-4.5778346,-4.5630093,-4.5493035,-4.4767528,-4.5054555,-4.5699573,-4.615362,-4.592446,-4.606973,-4.626431,-4.6835456,-4.7220006,-4.705317,-4.559772,-4.5339046,-4.7853837,-4.944296,-5.017022,-4.632087,-3.6217432,-4.7765965,-4.9180245,-4.9527855,-4.984837,-5.0533004,-4.904107,-4.862559,-4.856135,-4.7864685,-4.755318,-4.5999274,-4.6155925,-4.635547,-4.555592,-4.6963487,-4.8924727,-4.678723,-4.7004886,-3.7775187,-4.0194697,-4.8657756,-4.8676267,-4.98861,-4.891846,-4.8362155,-4.590115,-4.87808,-4.8527217,-4.42891,-4.9387383,-4.8693337,-4.740924,-4.861403,-4.7739882,-4.702144,-4.565473,-4.5913587,-4.5822644,-4.601437,-4.669357,-4.679416,-4.474931,-3.3890398,-4.6567197,-4.8603234,-4.8906717,-4.855949,-4.8279614,-3.0303578,-4.046783,-4.4334407,-4.7348857,-4.9035316,-4.8516803,-4.7755847,-4.523338,-4.334003,-4.5473833,-4.679273,-4.8521333,-4.7250457,-4.649924,-4.7119527,-4.722742,-4.636248,-4.6085553,-4.5364485,-4.5193515,-4.4811945,-4.4764895,-4.5175242,-4.569778,-4.69696,-4.6589994,-4.569012,-4.456449,-4.2115006,-2.9484072,-4.4209657,-4.4096427,-4.338175,-4.4959693,-4.5635457,-4.4093494,-4.4160542,-4.478663,-4.430288,-4.489197,-4.3859854,-4.47069,-4.471705,-4.5786824,-4.4345517,-4.3754034,-4.3933997,-4.4143906,-4.3597665,-4.3402,-4.32564,-4.2863708,-4.2653112,-4.2358184,-4.252484,-4.2718735,-4.2988267,-4.3352113,-4.3446193,-4.3375106,-4.279954,-4.3085313,-4.281736,-4.2956405,-4.3075957,-4.381065,-4.3223224,-4.314612,-4.3607464,-4.2674966
+-0.64824325,-1.6361666,-1.9646702,-2.076067,-2.2315195,-2.3805432,-2.5078974,-2.5890374,-2.9104385,-3.1269257,-3.1627336,-3.2584414,-3.286162,-3.3123474,-3.372635,-3.4489913,-3.5490432,-3.641271,-3.6497884,-3.6346817,-3.6776416,-3.7806625,-3.8619123,-3.8987994,-3.9197354,-3.9180522,-3.9568162,-3.98779,-4.01294,-4.048237,-4.0638165,-4.1111703,-4.0508103,-4.0578256,-4.139121,-4.084272,-4.0552473,-4.1162357,-4.137512,-4.1666646,-4.152392,-4.172128,-4.1394253,-4.077786,-4.148442,-4.1337094,-4.179067,-4.181952,-4.1960626,-4.22798,-4.247354,-4.2695045,-4.2569904,-4.264554,-4.260935,-4.215815,-4.2410054,-4.2977943,-4.2368526,-4.198695,-4.2566075,-4.3034925,-4.270068,-4.2242084,-4.1660733,-4.2767997,-4.316239,-4.227008,-4.1017003,-3.7211194,-3.6780179,-3.048602,-4.0427737,-3.9971766,-4.073946,-4.107071,-4.117876,-4.124996,-4.1535378,-4.2034764,-4.2320733,-3.7821765,-2.9957416,-2.8635201,-2.7311168,-2.8243232,-3.6864665,-3.0174348,-3.7463975,-3.7920399,-4.2004466,-4.3169513,-3.9716887,-4.5459986,-4.5618215,-4.2060285,-4.4473786,-4.516208,-4.72597,-4.3922043,-4.006029,-4.1228976,-4.3048115,-4.486779,-4.3649244,-4.353225,-4.6106505,-4.419142,-4.4175096,-4.4083123,-4.2540154,-4.549192,-4.353021,-4.679426,-4.002254,-4.3904824,-4.213302,-4.320776,-4.211939,-4.4293156,-4.395734,-4.4275327,-4.593576,-4.7421517,-4.871548,-4.4432597,-4.673189,-4.3060236,-4.6269193,-4.491039,-3.9180145,-4.6248517,-4.101704,-4.263332,-4.3764634,-4.447419,-4.6649165,-4.740867,-4.201679,-4.389352,-4.3006644,-4.5109277,-4.5477767,-4.2451267,-4.14374,-4.6544065,-4.255438,-4.660086,-4.0908055,-4.1769195,-4.6459594,-4.254192,-4.7556796,-4.667109,-4.5095057,-4.051767,-4.554801,-4.2277513,-3.2017765,-4.337382,-4.518418,-4.629887,-4.547448,-3.691967,-4.325071,-4.6243796,-4.562885,-4.713721,-4.733124,-4.651385,-3.6748059,-4.145313,-3.9869676,-4.33676,-4.3559575,-4.404655,-4.73266,-4.676475,-4.404309,-4.6370444,-4.7598124,-4.232785,-4.5513215,-4.587304,-4.620129,-4.5933175,-4.4504266,-4.437092,-4.452409,-4.462674,-4.335934,-4.349284,-4.529514,-4.485217,-4.437062,-4.4236965,-4.4073787,-4.392014,-4.318872,-4.292287,-4.265247,-4.2057796,-4.144836,-4.3020644,-4.2264524,-3.940476,-4.092091,-4.19219,-4.116632,-4.2460237,-4.282733,-4.1542287,-4.1266108,-4.130194,-4.1986265,-4.2812533,-4.2850356,-4.268449,-4.219049,-4.125564,-4.1366773,-4.2065744,-4.219846,-4.0167913,-3.636622,-4.2546115,-4.4918647,-4.4439116,-4.4100513,-4.4334807,-4.34129,-4.241891,-4.332344,-4.393253,-4.2987723,-4.131535,-4.2019467,-4.3235717,-4.343148,-4.325768,-4.1799774,-4.2396197,-4.339248,-4.4407916,-4.4910035,-3.485462,-3.6177316,-4.3490524,-4.488386,-4.5620427,-4.617461,-4.6746106,-4.5920405,-4.600249,-4.5431805,-4.496228,-4.444488,-4.3131065,-4.3114667,-4.2559314,-4.159781,-4.2038693,-4.349418,-4.3117137,-4.2646585,-3.9791398,-3.488451,-4.3094316,-4.503121,-4.530036,-4.566251,-4.4925656,-4.1770535,-4.1302114,-4.059159,-4.272858,-4.4888453,-4.427344,-4.3638763,-4.428353,-4.351024,-4.229215,-4.2405357,-4.227042,-4.1833234,-4.1508107,-4.156058,-4.196938,-3.3095646,-3.0092793,-3.983955,-4.381748,-4.6184764,-4.684153,-4.709561,-3.158619,-4.004539,-4.392064,-4.660955,-4.719915,-4.914224,-4.905581,-4.656429,-4.4385076,-4.5793943,-4.705648,-4.6588607,-4.645942,-4.6088667,-4.5725226,-4.501193,-4.442864,-4.348861,-4.1781425,-4.1934323,-4.1735554,-4.1471906,-4.092839,-4.0441976,-4.067739,-4.239921,-4.1084676,-3.9841409,-3.6222253,-2.9532604,-3.9638276,-4.0852823,-4.150212,-4.401181,-4.4068384,-4.239779,-4.250852,-4.2705216,-4.2436676,-4.250996,-4.2029862,-4.1954665,-3.451863,-4.185937,-4.376518,-4.3949237,-4.382893,-4.295022,-4.0318255,-3.946124,-4.21561,-4.1935263,-4.133389,-4.036102,-4.0147653,-3.9615564,-3.9866366,-4.0201097,-4.068916,-4.0402565,-4.036232,-3.9967523,-3.8902364,-3.974998,-4.0535316,-4.1364827,-4.1362624,-4.0975833,-4.120044,-4.1560025
+-0.18880746,-1.2190394,-2.1208744,-2.7402565,-3.235327,-3.6881366,-3.9014144,-3.785213,-4.0355606,-4.151858,-4.1326866,-4.1809907,-4.2625046,-4.2785573,-4.238667,-4.2960258,-4.398088,-4.425774,-4.4372673,-4.4625363,-4.503717,-4.570972,-4.658798,-4.6029854,-4.6442094,-4.6634016,-4.627937,-4.587492,-4.651794,-4.698981,-4.6528068,-4.6970983,-4.6507897,-4.6125145,-4.661182,-4.6284347,-4.736582,-4.7302628,-4.685012,-4.6716437,-4.632428,-4.6645136,-4.6329722,-4.612059,-4.5895257,-4.6448884,-4.6894736,-4.6967626,-4.7272377,-4.746384,-4.737232,-4.7448483,-4.7546086,-4.693311,-4.6485724,-4.625978,-4.7699485,-4.7778616,-4.6810346,-4.6649776,-4.642464,-4.7535796,-4.737993,-4.6959834,-4.644153,-4.65579,-4.6760483,-4.6251497,-4.5140486,-4.347334,-3.7857394,-3.6912084,-4.5499034,-4.6816893,-4.804625,-4.8873057,-4.866799,-4.824796,-4.8555074,-4.916329,-4.8699765,-4.7874885,-4.23064,-4.2516418,-1.8996024,-3.3577397,-3.8944817,-3.0052943,-3.1949654,-3.1235793,-3.9728022,-4.2384963,-3.8061862,-4.2009645,-3.4898124,-3.3066378,-4.00964,-4.311482,-4.3712387,-4.275969,-4.118512,-3.9835691,-4.110033,-3.7121558,-4.187452,-3.9186544,-3.1909637,-3.9297757,-3.5832253,-4.036375,-4.352286,-3.249911,-3.479188,-3.6665084,-4.0819707,-4.103149,-4.058953,-4.364062,-3.8610625,-3.4991462,-4.100577,-4.418618,-4.6315017,-4.332942,-4.561711,-4.460864,-4.5176306,-3.8598976,-4.5101266,-4.2306705,-3.70853,-4.094027,-3.8108554,-4.0667195,-2.987716,-3.9026084,-4.4533753,-4.380198,-3.7708688,-4.128425,-3.464481,-4.0884776,-4.5617447,-4.5959687,-3.634435,-4.390058,-4.176406,-4.485705,-4.5911484,-4.67299,-4.79116,-4.5576134,-4.678074,-4.6885467,-4.6333327,-4.5849977,-4.5726237,-3.8603606,-3.289554,-4.0577254,-4.3641124,-4.527181,-4.358826,-3.6610968,-4.28642,-4.5172276,-4.5416303,-4.5450206,-4.527431,-4.521718,-3.923019,-4.076931,-3.955491,-4.3588176,-3.4521203,-4.118814,-4.1777463,-4.291099,-4.5842237,-4.438426,-4.389112,-4.1472273,-3.4266553,-4.194212,-4.399475,-4.309076,-4.409304,-4.457356,-4.4543977,-4.4375167,-4.4280453,-4.396551,-4.33721,-4.279694,-4.187271,-4.1043625,-4.0571074,-4.0336156,-4.0434766,-4.0381694,-4.0287967,-4.0054555,-4.051389,-4.051115,-4.0936685,-1.8872402,-3.833561,-4.330397,-4.3721743,-4.366891,-4.3499413,-4.3570952,-4.303372,-4.256244,-4.2120395,-4.153022,-4.1238523,-4.1462407,-4.229761,-4.0656853,-3.9911838,-4.072167,-4.0947556,-3.988965,-3.7198281,-3.9599924,-4.0625825,-4.093026,-4.071685,-4.0773344,-3.7422414,-3.8759098,-4.0483975,-4.170861,-4.20239,-4.0637565,-4.000219,-4.103338,-4.098056,-4.162819,-4.058925,-3.9969487,-3.9356265,-3.9493852,-3.9528766,-3.6124914,-3.280239,-3.594421,-3.920094,-4.0550833,-4.1162767,-4.1015058,-4.1145453,-4.1329083,-4.1211867,-4.1359267,-4.1544757,-4.1923795,-4.148418,-4.0860333,-4.046259,-3.997867,-4.143571,-4.2729197,-4.2185035,-4.122021,-3.9461393,-3.950541,-3.9876084,-4.031599,-4.3571973,-4.394993,-4.2755904,-3.687624,-3.789075,-4.1388793,-4.0987725,-4.1817904,-4.3846107,-4.3446193,-4.2728744,-4.292089,-4.474958,-4.4764304,-4.4641485,-4.4267616,-4.330405,-4.3677125,-4.2993155,-2.6440678,-3.6340132,-4.028289,-4.162855,-4.2015977,-4.1514983,-4.052156,-4.078935,-4.2241626,-4.261155,-4.2050405,-4.2392135,-4.2459283,-4.198582,-4.2282805,-4.267069,-4.2396803,-4.226996,-4.2619634,-4.3140144,-4.3458657,-4.335167,-4.3342986,-4.3802695,-4.450457,-4.4249835,-4.4381146,-4.4924026,-4.451851,-4.335363,-4.3125873,-4.414885,-4.005401,-4.213691,-2.9709017,-2.0989313,-3.3866305,-3.9738345,-4.0656824,-4.159292,-4.1460743,-4.236043,-4.3716416,-4.329407,-4.3848124,-4.428308,-4.5121913,-4.549211,-2.789192,-3.7388196,-4.024915,-4.179929,-4.3337016,-4.415383,-4.501205,-4.5005794,-4.5418115,-4.56352,-4.6029215,-4.6303444,-4.687938,-4.7340236,-4.729559,-4.7411027,-4.743958,-4.7655177,-4.7738266,-4.762137,-4.6817803,-4.694924,-4.6967263,-4.739954,-4.7491093,-4.7661557,-4.765394,-4.699285
+-0.34430975,-0.8496389,-1.351929,-1.8400302,-2.1495757,-2.5619097,-2.567708,-2.5161102,-2.7302847,-2.6803362,-2.8429074,-2.8641605,-2.87894,-2.8786829,-2.9733367,-3.0011783,-3.0393987,-3.0873485,-3.161016,-3.1627831,-3.2388506,-3.19203,-3.2649243,-3.2191453,-3.2156293,-3.2581992,-3.2644143,-3.2706783,-3.2749283,-3.2780724,-3.278931,-3.2972083,-3.2881513,-3.2300756,-3.1935854,-3.1190608,-3.2760518,-3.3667479,-3.3667371,-3.3731766,-3.3569438,-3.3148484,-3.333064,-3.34204,-3.2998295,-3.2874484,-3.317342,-3.3098488,-3.319374,-3.3031394,-3.2646346,-3.2832894,-3.3338866,-3.2425795,-3.2693894,-3.3473907,-3.3231173,-3.3187418,-3.2425866,-3.33857,-3.3367772,-3.310505,-3.3055499,-3.3556762,-3.2484431,-3.2251534,-3.2363029,-3.2815568,-3.3075905,-3.3185856,-3.3484173,-3.328643,-3.3393648,-3.3066618,-3.2675629,-3.2696102,-3.2984412,-3.3360553,-3.2729628,-3.2804322,-3.202052,-3.1775758,-3.0569737,-3.3726947,-3.371601,-3.36586,-3.3722377,-3.0372584,-3.4265032,-2.9989562,-3.5145833,-3.4447088,-3.5350976,-2.9239573,-3.421914,-3.5421853,-3.4040117,-3.6133795,-3.615835,-3.616448,-3.6086445,-3.5488691,-3.5387137,-2.0405765,-3.417993,-3.466185,-2.7082474,-3.3815346,-3.399558,-3.4356189,-3.4411578,-3.2206564,-3.3297071,-1.9341655,-3.145131,-2.111587,-3.2387948,-3.4985113,-2.2102442,-3.112991,-3.0510168,-3.5917802,-3.8216872,-3.7158446,-3.7551498,-3.6278381,-3.5896277,-3.463114,-3.548525,-2.0431323,-3.4140022,-3.5463853,-3.7630162,-3.7609277,-3.3806696,-3.5907269,-2.6339197,-2.954982,-3.1551142,-3.030078,-2.8402762,-3.507201,-3.757227,-3.0623627,-3.6425154,-3.929154,-3.9435935,-3.882865,-3.8901954,-3.8710642,-3.6955094,-2.7651732,-3.6737275,-3.7139735,-3.8022218,-3.688312,-3.5009267,-3.4205978,-1.6736984,-3.358303,-3.8185515,-4.146294,-3.8427267,-3.6982074,-3.665049,-3.5105295,-3.4740453,-3.5255022,-3.3948083,-3.366294,-2.6605694,-3.4167466,-3.3909602,-3.3454468,-1.8694272,-3.2544634,-3.4535985,-3.3149776,-3.5711024,-3.5898724,-3.5127707,-3.3922148,-2.0888953,-3.3765624,-3.8155956,-3.9513397,-3.750175,-3.6961737,-3.6700387,-3.6358976,-3.562312,-3.4799466,-3.3513186,-3.282238,-3.244173,-3.230876,-3.2170548,-3.249479,-3.308934,-3.310677,-3.300693,-3.3040557,-3.437385,-3.305473,-3.3332224,-3.2853403,-3.4719868,-3.418485,-3.4194741,-3.3810837,-3.377722,-3.4341383,-3.43681,-3.4269266,-3.4626942,-3.4362397,-3.4382782,-3.4721208,-3.4333158,-3.4140131,-3.4876807,-3.4939594,-3.412948,-3.436088,-3.4872792,-3.5002742,-3.4654415,-3.453779,-3.4529042,-3.450159,-3.4381628,-3.506124,-3.4770398,-3.4314008,-3.454721,-3.502534,-3.5136788,-3.469419,-3.4773335,-3.4995613,-3.503182,-3.530349,-3.4541717,-3.5022,-3.4918237,-3.5062923,-3.3198538,-3.4796069,-3.5305486,-3.461555,-3.4427102,-3.4997997,-3.5104249,-3.4789736,-3.454053,-3.4486675,-3.4399686,-3.4271822,-3.3860455,-3.3877685,-3.4226255,-3.4537091,-3.4364023,-3.4681854,-3.4146357,-3.4077158,-3.407374,-3.3993711,-3.4366798,-3.4378054,-3.4383626,-3.4436314,-3.4697049,-3.30135,-3.0786614,-3.559074,-3.487954,-3.5203776,-3.471315,-3.4300866,-3.4016137,-3.4350538,-3.3568747,-3.3287058,-3.310327,-3.2804036,-3.2412736,-3.2358413,-3.2233973,-2.9334464,-3.2922382,-3.2262094,-3.2124348,-3.228379,-3.1780472,-3.1583087,-3.1971138,-3.2100554,-3.158864,-3.1510482,-3.1820612,-3.178364,-3.1627226,-3.0995898,-3.1274977,-3.098195,-3.1187413,-3.1049137,-3.0891078,-3.1123657,-3.1610265,-3.1670387,-3.134093,-3.0971704,-3.0215878,-3.0494716,-3.1278515,-3.090212,-3.0998602,-3.0839071,-3.013729,-2.885189,-3.066172,-2.9812655,-1.2759635,-2.7178397,-3.3983772,-3.4528918,-3.3721163,-3.2332435,-3.1173573,-2.9189649,-2.8605967,-2.8996105,-2.9406104,-2.9246633,-2.9354205,-2.4976916,-3.133932,-3.2399077,-3.1984887,-3.166554,-3.3584962,-3.4589381,-3.4556007,-3.540185,-3.5919402,-3.6115322,-3.5737681,-3.538051,-3.5499763,-3.5578713,-3.6175733,-3.5895567,-3.6251462,-3.541868,-3.534863,-3.5055468,-3.4302034,-3.4193172,-3.4834268,-3.47116,-3.481007,-3.5347412,-3.5906196
+0.05793217,-0.27164823,-1.5028074,-2.3101294,-2.2696717,-3.0110848,-3.2216396,-3.2264318,-3.1784534,-3.493507,-3.2403033,-3.226603,-3.0612888,-3.170847,-2.4872885,-3.3313909,-3.3971899,-3.3913426,-3.4268613,-3.327866,-3.3632483,-3.4135103,-3.320447,-3.2589846,-3.2157083,-3.0755863,-3.327766,-3.5495305,-3.5149562,-3.6528006,-3.6800528,-3.5920794,-3.4696693,-3.3935752,-3.3040447,-3.2112117,-3.4008367,-3.3745353,-3.2319143,-2.13036,-2.897588,-3.047132,-3.3157625,-3.4137666,-3.5154448,-3.5155845,-3.5448012,-3.5769634,-3.5376568,-3.4787135,-3.2850204,-2.820932,-3.1549034,-3.4064922,-3.7926755,-2.9999537,-3.585869,-3.4259055,-3.9525409,-3.290718,-2.9607975,-3.2507253,-3.5252934,-3.5228782,-3.8502507,-3.8600159,-3.8357854,-3.9257007,-3.8247366,-3.4191108,-3.6566644,-2.9602723,-2.972982,-4.009324,-3.8880734,-3.6565661,-2.7110848,-3.8098693,-3.6597934,-3.000319,-3.7797031,-3.469132,-2.7786937,-3.5239086,-3.188477,-2.8268235,-3.1419835,-3.2431037,-3.667271,-3.2652931,-3.507319,-3.5115047,-3.6517963,-3.5560007,-3.870397,-3.3025227,-3.6795588,-3.4539952,-3.9572349,-3.46175,-3.5344162,-2.529284,-2.7974784,-3.0327349,-2.926844,-3.3414695,-3.2674806,-3.4137127,-3.6267972,-3.6498733,-3.5274858,-3.8157763,-3.7780185,-3.274858,-3.6564517,-3.7386837,-2.9755578,-3.3272889,-3.6569412,-3.7563796,-3.6432142,-3.3988142,-3.6809688,-3.7995791,-2.4915879,-3.0848274,-3.5558033,-3.7288938,-3.6894698,-3.17618,-3.5652509,-2.9792027,-3.3363752,-3.6816196,-3.7731366,-3.2881417,-3.2390957,-3.5042539,-3.1456313,-3.2583897,-3.3041062,-3.655548,-3.742107,-3.6143212,-3.418842,-3.039009,-3.4979954,-3.0726917,-3.5041823,-3.6479478,-3.6497324,-3.685327,-3.694879,-3.6146526,-3.5402346,-3.5985498,-3.5851378,-2.5967655,-3.3599787,-3.4983764,-3.2924123,-3.1114502,-3.5834813,-3.5480187,-3.8528528,-4.0027366,-3.910746,-3.8391466,-3.8220534,-3.7746181,-3.700676,-3.697209,-3.7299685,-3.6678183,-2.8434784,-2.9424043,-3.5897574,-3.6773686,-3.972817,-3.9493122,-3.8820624,-3.8852935,-3.8561978,-3.8180046,-3.7507162,-2.5976229,-3.0937412,-3.1704483,-3.0758393,-2.7943864,-2.6604052,-2.7418633,-2.88216,-3.0956328,-2.9248443,-2.6811936,-2.8155923,-2.9301186,-3.3332257,-3.4354813,-3.7437596,-3.6967282,-3.6559067,-3.7796016,-3.6195943,-3.57202,-3.6965861,-3.7894597,-3.7465239,-3.8713965,-3.7299676,-3.9212074,-3.9011502,-3.3920217,-3.71662,-3.7299323,-3.8694134,-3.887158,-3.8841043,-3.8958697,-3.9162006,-3.9569058,-3.9352732,-3.9094825,-3.8429017,-3.8583674,-3.9694533,-3.9961324,-3.9123511,-3.8691425,-3.8007407,-3.740333,-3.5681617,-3.3406916,-3.2226832,-3.1463068,-3.0454814,-2.8978033,-2.9154067,-2.8668513,-2.8064265,-2.7413764,-2.65744,-2.8037271,-2.6996613,-2.702507,-2.6879609,-2.645954,-2.4053555,-2.565936,-2.5837321,-2.599288,-2.522442,-2.5031486,-2.5470662,-2.5934272,-2.5872345,-2.5479598,-2.569292,-2.6128058,-2.5920134,-2.5957158,-2.4822397,-2.5056734,-2.3796687,-2.4085655,-2.4740438,-2.4486945,-2.539828,-2.5431705,-2.4995427,-2.5118444,-2.5234005,-2.5079236,-2.5842562,-2.4583948,-2.5760555,-2.569191,-2.6317208,-2.6085577,-2.5606253,-2.5829613,-2.643167,-2.6260796,-2.63034,-2.6393461,-2.6346989,-2.6318047,-2.591862,-2.5726814,-2.5105004,-2.4357781,-2.2226162,-2.2125926,-2.2173994,-2.2343695,-2.2504199,-2.3142827,-2.2563443,-2.2647893,-2.330497,-2.2720451,-2.1864839,-2.1063051,-2.1082463,-2.243637,-2.2641385,-2.316093,-2.3116672,-2.290754,-2.2700396,-2.2253528,-2.300516,-2.3519342,-2.3319435,-1.9656377,-2.0813234,-2.1228385,-2.06248,-2.0039053,-1.8606722,-1.6583109,-1.6143022,-1.6174753,-1.503454,-1.5729678,-1.3865254,-1.3858502,-1.3931022,-1.4684222,-1.5281909,-1.4852293,-1.5052116,-1.4266272,-1.405684,-1.3860753,-1.359312,-1.3138187,-1.1887803,-1.4084818,-1.4890597,-1.4691656,-1.364187,-1.4751441,-1.4708002,-1.4352813,-1.321924,-1.1915021,-1.1132259,-1.0745587,-0.88389546,-0.71892494,-0.5030847,-0.27316183,-0.58638567,-0.6460831,-0.17302561,0.28129965,0.64753175,0.7504347,0.55890524,-0.011090219,-0.7774343,-1.578685,-2.180645
+-0.09310797,-0.65683967,-1.1504016,-1.738035,-1.3110585,-1.9957106,-2.5102725,-2.8173308,-2.9347184,-2.996172,-3.090818,-2.9823093,-2.9270775,-2.94302,-1.5805407,-2.4789062,-2.7980418,-3.100915,-3.168785,-3.243754,-3.1783335,-3.22923,-3.2246614,-2.2487597,-2.2210493,-2.2138164,-2.355326,-2.611641,-2.702805,-2.9889898,-3.2620616,-3.3688192,-3.3638778,-3.2759655,-3.2612612,-3.3642712,-3.2538767,-3.3280985,-3.2470868,-1.6598089,-2.333915,-2.6391935,-2.9204903,-3.4275742,-3.584878,-3.4356384,-3.3569415,-3.2790222,-3.2226481,-2.9934044,-2.884579,-2.6202514,-2.704185,-3.0191092,-3.070313,-2.73999,-3.0221722,-2.958572,-3.1916072,-3.0188305,-2.5680833,-3.128204,-3.191809,-3.200356,-3.4000485,-3.4274771,-3.392878,-3.4525576,-3.5258665,-3.0798297,-3.083099,-2.7809896,-2.7642705,-3.0876563,-3.3701162,-2.7322712,-3.0086033,-3.137618,-3.426243,-3.227583,-3.4583015,-3.4543717,-3.288633,-3.4344063,-3.2706423,-2.2537532,-3.129518,-3.3609548,-3.3517647,-3.4299803,-3.512114,-3.3773866,-3.4288545,-2.3942251,-3.1568809,-3.4512486,-3.391088,-3.321252,-3.4971337,-3.3732371,-2.129971,-2.389086,-2.8215802,-3.2252855,-3.3372297,-3.5690494,-3.0670493,-3.60318,-3.7384667,-3.0764508,-3.443768,-3.6921885,-3.672223,-3.7192898,-3.727872,-3.7254405,-3.8433967,-2.2732253,-2.7101464,-3.006516,-3.2262678,-3.298512,-3.372768,-3.5247912,-3.597193,-3.6781573,-3.7036233,-3.7127242,-3.7731233,-3.7635975,-3.7789803,-3.247854,-3.5012655,-3.1878006,-3.5265162,-3.70476,-3.7726712,-3.849527,-3.8121076,-3.6254826,-2.684483,-3.2853444,-3.4613392,-3.5248952,-3.5846567,-3.6888866,-3.7451105,-3.7411294,-3.8099823,-3.8083644,-3.8839889,-3.838107,-3.788578,-3.7048674,-3.7513428,-3.839974,-3.8723063,-2.187659,-2.9620407,-2.6582382,-2.8270082,-2.64825,-3.0943227,-3.1555548,-3.267946,-3.448177,-3.5702872,-3.5100315,-3.527538,-3.422531,-3.5226393,-3.5763671,-3.5839505,-2.270446,-1.9841018,-2.3062658,-2.7483385,-3.1767175,-3.2502956,-3.3150089,-3.265221,-3.3578155,-3.3366332,-3.257545,-2.840586,-1.8249373,-1.9817541,-2.620656,-2.6495166,-3.0081797,-3.18969,-3.2625825,-3.1778464,-2.9936163,-2.9909644,-2.9013233,-2.7840877,-2.890291,-3.021436,-3.0371628,-3.0871732,-3.2154577,-3.2250297,-3.1571553,-3.2106838,-3.2751522,-3.2578444,-3.2666492,-3.165429,-3.2504802,-3.1963787,-3.3440547,-3.3070855,-2.1539435,-2.805265,-2.9129634,-3.0147848,-3.0922794,-3.0945134,-3.105711,-3.0302453,-3.154873,-3.1099894,-3.0246518,-3.0621023,-3.077688,-2.9855742,-3.0004325,-2.9390292,-3.0752516,-2.9796832,-3.0714874,-2.990775,-2.9802442,-2.9670744,-2.849084,-2.8731132,-2.8254,-2.797011,-2.7712946,-2.766324,-2.725201,-2.7590518,-2.699366,-2.60771,-2.5413327,-2.4464164,-2.4193282,-2.3825834,-2.2774177,-2.1612294,-2.1388063,-2.0758605,-1.9646788,-2.0695496,-2.1859336,-2.122359,-2.1183503,-2.2323415,-2.3887444,-2.305097,-2.2790601,-2.4800227,-2.466462,-2.3862278,-2.4711146,-2.4905407,-2.4351537,-2.5852888,-2.6203046,-2.522174,-2.6053193,-2.6674047,-2.5829701,-2.674654,-2.6160562,-2.677848,-2.6658778,-2.6913486,-2.675077,-2.65945,-2.538735,-2.6429348,-2.5666776,-2.621114,-2.5530093,-2.5987236,-2.583464,-2.702168,-2.7017496,-2.7695482,-2.6127918,-2.2768884,-2.2420418,-2.186891,-2.4206939,-2.4955873,-2.4847198,-2.4954023,-2.5134077,-2.480305,-2.4968414,-2.4072735,-2.2976794,-2.2417355,-2.3813405,-2.4467146,-2.3111837,-2.1209016,-2.2020836,-2.0555837,-2.0473266,-2.012534,-2.0197723,-2.0274596,-1.5006356,-1.8752685,-2.0341372,-2.035563,-1.9411371,-1.7249508,-1.4255972,-1.247786,-1.2542131,-1.1949904,-1.1097095,-1.0996134,-1.0073974,-1.1581147,-1.1954288,-1.2582421,-1.3452411,-1.3313842,-1.2179275,-1.3550706,-1.2871115,-1.1137497,-1.0566366,-0.88170546,-1.1810703,-1.3043959,-1.4291284,-1.4041729,-1.3970125,-1.329292,-1.4537394,-1.2681813,-1.1915505,-1.0792274,-0.8726916,-0.8754007,-0.53045595,-0.4927258,-0.68451005,-1.0357893,-1.0800142,-1.268115,-1.7211089,-1.9301054,-2.286182,-2.248468,-2.3409133,-2.5027466,-2.5875168,-2.82306
+-0.4970423,-1.3910463,-1.7756996,-2.1676714,-1.9072688,-2.3706546,-2.5827742,-2.831598,-2.9277685,-2.9658048,-3.1414812,-3.0824194,-3.126274,-2.7443295,-2.5034015,-2.975015,-3.01443,-2.851036,-2.7841117,-2.920815,-2.9511821,-3.0204897,-2.9928985,-2.2724183,-3.0068629,-3.0319982,-3.0053759,-2.9733849,-3.0551834,-3.0035908,-3.1656694,-3.191421,-3.1782115,-3.146473,-3.1756897,-3.1479053,-3.2655556,-3.3398027,-3.3345294,-2.339148,-2.9307137,-3.0978892,-3.0556285,-3.3002765,-3.1684737,-3.0802655,-3.1957588,-3.1561875,-3.1130252,-2.7939134,-2.9819605,-2.9708734,-3.3440027,-3.4398074,-2.7625408,-3.263466,-3.2547977,-3.2637625,-3.410128,-2.916614,-3.1440458,-3.4283464,-3.2922041,-3.25708,-3.3900535,-3.3972516,-3.37219,-3.4027534,-3.3969417,-3.3570693,-2.890419,-3.2760549,-3.0319996,-3.026036,-3.2836902,-3.291634,-3.3419008,-3.3130498,-3.3235319,-3.3509,-3.5899591,-3.5576348,-3.4987917,-3.5347302,-3.5414,-3.4282029,-3.6949658,-3.7208114,-3.5650702,-3.589765,-3.5498328,-3.5900946,-3.6229417,-3.1192517,-3.450756,-3.5312507,-3.6572556,-3.4778323,-3.7223248,-3.6809545,-3.1825087,-3.0862565,-3.5859423,-3.649295,-3.7561135,-3.765005,-2.5522995,-3.3548007,-3.5028725,-3.6162848,-3.6856165,-3.8935041,-3.875318,-3.6702595,-4.0510345,-3.9597726,-3.6450589,-3.3765287,-3.710866,-3.740943,-3.81292,-3.7948203,-3.8484683,-3.9483576,-3.8229375,-3.8847198,-3.9209604,-3.7716699,-2.8553147,-3.0210416,-3.4535854,-3.5480075,-3.696032,-3.7811384,-3.8023324,-3.8275871,-3.7548327,-3.7062268,-3.7207704,-2.3197474,-2.25909,-2.8841336,-3.190237,-3.253945,-3.3911886,-3.6463723,-3.7514753,-3.6932797,-3.612559,-3.541702,-3.6718946,-3.6414204,-3.5139894,-3.431928,-3.4393244,-3.5174303,-2.075422,-3.0148027,-2.981134,-3.1917095,-3.244042,-3.3199964,-3.44738,-3.37951,-2.9989352,-3.358667,-3.3814611,-3.3090496,-3.4285183,-3.3761706,-3.519611,-3.605793,-3.5712538,-3.6219234,-3.4871204,-2.6292672,-2.4178433,-3.1041527,-3.1144521,-3.1559978,-3.1561973,-3.278252,-3.279983,-3.2778983,-3.3193164,-2.7664595,-2.3980417,-2.6832824,-3.0626302,-3.1191363,-3.0291848,-3.0652416,-2.9626184,-2.8879437,-2.8931503,-2.8791661,-2.8908315,-2.9479136,-3.0760942,-3.0619452,-3.0526261,-3.2039542,-3.1003203,-3.1215281,-3.1258147,-3.0649567,-3.0681357,-3.1821592,-3.1337233,-3.1499424,-3.096756,-3.2500129,-3.0829759,-3.1390712,-3.0762153,-3.1084762,-3.073351,-3.0477383,-3.0122485,-2.9670994,-3.0686896,-3.1435018,-3.0908082,-3.1334605,-3.0849762,-3.1570528,-3.083015,-3.167585,-3.234789,-3.287074,-3.3083463,-3.4091873,-3.254847,-3.1887126,-3.288292,-3.2477374,-3.2059653,-3.2155929,-3.1653945,-3.1327808,-3.1228163,-3.1671994,-3.3507361,-3.2106385,-3.0573184,-3.1067333,-3.078547,-3.001603,-3.0303464,-2.930481,-2.735132,-2.6354976,-2.605963,-2.54877,-2.618918,-2.5495949,-2.5767503,-2.5524144,-2.328746,-2.400585,-2.372237,-2.4438646,-2.597005,-2.7092385,-2.695877,-2.6878939,-2.6955397,-2.6164796,-2.771034,-2.4082048,-2.5806184,-2.725167,-2.780918,-2.5581293,-2.681831,-2.618279,-2.6612978,-2.7071023,-2.7262063,-2.7563243,-2.8284388,-2.7231684,-2.821658,-2.6900682,-2.6954412,-2.7386577,-2.7638774,-2.790656,-2.8660395,-2.9103622,-2.9174218,-2.8892653,-2.5187151,-2.5698638,-2.3153715,-2.4521618,-2.5968719,-2.6685443,-2.5962856,-2.7076006,-2.5386736,-2.6128821,-2.470494,-2.2933872,-2.2169566,-2.3793426,-2.5708852,-2.6339276,-2.5581636,-2.6609766,-2.5200794,-2.5528998,-2.515523,-2.411878,-2.4034655,-1.6857297,-1.9177399,-2.1710196,-2.1634774,-2.1248121,-2.0015097,-1.7912207,-1.7259474,-1.7944591,-1.8125734,-1.5311217,-1.5685194,-1.4445453,-1.6001217,-1.6145983,-1.7173862,-1.7902045,-1.7389331,-1.6837521,-1.8063164,-1.6866887,-1.5056605,-1.3040226,-1.1772537,-1.4000309,-1.6594067,-1.9359345,-1.8818882,-1.4878159,-1.4791152,-1.5685167,-1.5712578,-1.4959731,-1.3887966,-1.1554704,-1.1815069,-1.2277493,-1.7050104,-2.3101177,-2.5585525,-2.659171,-2.643631,-2.8042138,-2.7165947,-2.879426,-2.8609838,-2.806192,-3.0286012,-3.0852697,-3.1139467
+0.35577148,-0.47540247,-1.037483,-1.5410876,-1.6159396,-1.7726445,-1.9390354,-1.896389,-2.0638397,-2.167611,-2.2868538,-2.3619287,-2.5495172,-2.6644485,-2.5914588,-2.592951,-2.5709434,-2.1404266,-2.355105,-2.5755875,-2.9469118,-3.0905766,-3.0057917,-2.4175918,-3.1950092,-3.3079238,-3.1661515,-3.1528358,-2.8815234,-3.0456624,-2.6914196,-2.7532644,-2.7656553,-2.8431616,-2.9046097,-2.9022324,-2.9552107,-3.0156586,-2.9862359,-2.7238982,-2.808576,-2.9309757,-2.8117573,-2.985374,-3.0667043,-2.8851786,-2.8633096,-2.9723444,-3.0453787,-3.048129,-2.856839,-2.9453313,-3.176504,-3.3863068,-2.6496344,-3.1023703,-3.151329,-3.2496495,-3.2188687,-3.1021457,-3.1065907,-3.3585143,-3.4164042,-3.265151,-3.2906954,-3.3178146,-3.3196433,-3.3567028,-3.352946,-3.3085036,-3.2957892,-3.2202334,-3.112862,-2.3286784,-3.2854652,-3.2769709,-3.274858,-3.176966,-3.0507028,-3.2127538,-3.2518969,-3.3541775,-3.2857547,-3.2771642,-3.3037827,-3.1884568,-3.2774732,-3.3194456,-3.2787519,-3.223104,-3.0707307,-3.1622558,-3.0210807,-3.3526163,-3.3176684,-3.5341337,-3.6499736,-3.3244147,-3.6448746,-3.6216774,-3.7348495,-3.016789,-3.5734787,-3.6259596,-3.7761035,-3.7379742,-3.6840134,-3.6788208,-3.7011886,-3.7311864,-3.7953343,-3.8586378,-3.9626813,-3.886032,-3.9538298,-3.9738774,-3.9656405,-3.9346194,-3.0888662,-3.6342268,-3.7729068,-3.8209763,-3.8915796,-3.9387307,-3.9429631,-3.8966885,-3.9772496,-3.9495301,-3.6822257,-1.7440643,-3.4121637,-3.5537658,-3.67676,-3.6864164,-3.748261,-3.9295087,-3.9796457,-4.0494924,-4.0618453,-2.3417468,-2.6589618,-3.2076747,-3.3923702,-3.7041192,-3.704863,-3.7725902,-3.868484,-3.9359074,-4.0284104,-4.09483,-4.1802,-4.1164756,-4.0430803,-4.0495324,-4.1022325,-4.12925,-4.0022364,-2.6172316,-3.557139,-3.7273111,-3.834145,-3.5572972,-3.740572,-3.8951597,-2.5652199,-3.3494978,-3.5394983,-3.4964375,-3.5501573,-3.601212,-3.8112235,-3.926108,-3.947554,-3.995081,-3.8530173,-2.7420783,-2.480219,-3.2826302,-3.2087255,-3.5104427,-3.5650349,-3.6244984,-3.65107,-3.6785035,-3.773538,-3.4609694,-2.9932568,-3.2956738,-3.6947927,-3.750616,-3.718666,-3.6962361,-3.6353087,-3.7228627,-3.426737,-3.5621932,-3.697825,-3.8430176,-3.722797,-3.5818567,-3.613287,-3.818337,-3.7556238,-3.826437,-3.8484073,-3.9039354,-4.005743,-3.9364629,-3.9080973,-3.9208875,-4.0446105,-2.524962,-3.3825345,-3.6368976,-3.649511,-3.7667842,-3.7993107,-3.8413692,-3.8731742,-3.925879,-3.9141073,-3.9886136,-4.0194535,-4.001311,-3.957851,-3.9665675,-3.9971428,-3.9980092,-4.08295,-4.034879,-2.1845434,-2.5413153,-2.639762,-2.8042932,-3.1127715,-3.2999167,-3.1850004,-3.1389318,-3.142376,-3.1623466,-3.229292,-3.2869396,-3.1584244,-3.0321739,-2.8379428,-2.773758,-2.6511807,-2.5879326,-2.1762743,-2.1244187,-2.0711684,-1.9812989,-2.1052933,-2.0022426,-1.9686012,-2.0204492,-2.0462284,-2.0703008,-2.0120819,-1.5521219,-1.6115658,-1.8319855,-1.8889441,-1.7157724,-1.6484776,-1.7814822,-1.85848,-1.7803435,-1.8106897,-1.5994849,-1.783701,-1.7944965,-1.9583335,-1.6148968,-1.6893888,-1.8446417,-2.0583203,-1.9820757,-2.045751,-2.047571,-2.0750093,-1.964457,-1.9834144,-1.6676137,-1.7868614,-1.5585244,-1.8914998,-1.8553603,-1.7584772,-1.7182128,-1.7373734,-1.6130846,-1.4245386,-1.3473756,-1.6080506,-1.6700234,-1.7654555,-1.8891063,-1.9508333,-2.07276,-2.0789948,-2.0088587,-1.743887,-1.3867939,-1.3442285,-1.6937206,-1.7330346,-2.245915,-2.206687,-1.9333706,-1.9486952,-1.9607131,-2.4356978,-2.4578142,-2.333929,-1.8086267,-1.7128444,-2.06522,-1.855,-1.9116931,-1.5801709,-1.4635844,-1.2308681,-1.2603204,-1.3185167,-1.7278321,-1.83353,-1.961529,-1.9379146,-1.8000374,-1.7034903,-1.6157868,-1.5953727,-1.5731819,-1.434756,-1.2930043,-1.2980766,-1.341089,-1.5148914,-1.3893743,-1.629967,-1.7776396,-1.5502379,-1.5081165,-1.496427,-1.5950754,-1.7045662,-1.7841525,-2.0936303,-2.2569487,-2.4776747,-2.5940247,-2.5464938,-2.8280568,-2.6336572,-2.734241,-2.822628,-2.6015875,-3.2549832,-3.080964,-3.023925,-2.9765902,-2.8000345,-3.2560775,-2.8804858
+0.61655164,0.30308843,0.11683534,-0.39884204,-1.0836987,-1.7478361,-1.9817157,-2.2940512,-2.467265,-2.583846,-2.6326025,-2.6664648,-2.8091688,-2.9242415,-2.9050674,-2.81201,-2.5686817,-2.5916872,-2.3871226,-2.6331239,-2.802517,-2.9319136,-3.037928,-2.32056,-3.0107203,-2.3962111,-2.4241092,-2.026203,-1.8228192,-1.5731056,-1.5015316,-1.640899,-1.7655096,-2.411204,-2.8041265,-2.8888872,-2.6700375,-3.1063638,-3.0381353,-2.8571877,-2.7872162,-2.8699112,-3.093457,-3.1111586,-2.9507985,-2.3594835,-2.6005368,-2.6947966,-2.799951,-3.1339684,-3.1512814,-3.1664565,-3.387362,-3.344259,-3.3234692,-3.4114203,-3.4458108,-3.4151852,-3.567834,-3.592579,-3.623889,-3.646996,-3.7140913,-3.6803117,-3.654762,-3.6272326,-3.587931,-3.6088662,-3.5578191,-3.5588987,-3.5363252,-3.4526405,-3.4316077,-3.1185384,-3.4860616,-3.6241467,-3.5384834,-3.5073853,-3.4951148,-3.4782848,-3.356695,-3.450649,-3.4188263,-3.3523757,-3.2255363,-3.5374818,-3.603213,-3.6068213,-3.5896444,-3.6522205,-3.1966522,-2.8848734,-3.8730583,-3.858902,-3.8117895,-3.8087473,-3.7504668,-3.665873,-3.713087,-3.6894822,-3.6079173,-3.5944464,-3.670741,-3.6112938,-3.816535,-3.7372007,-3.797597,-3.7825022,-3.7176943,-3.6629553,-3.6646476,-3.6890113,-3.6794229,-3.6532018,-3.7026224,-3.754068,-3.760395,-3.803595,-3.777185,-3.766047,-3.8077474,-3.7494278,-3.7541022,-3.790463,-3.7589483,-3.8073125,-3.832518,-3.8288417,-3.8008308,-3.789659,-3.8397527,-3.7364945,-3.2522726,-3.6361222,-3.8444953,-3.9322,-3.873775,-3.8634133,-3.825759,-3.3569474,-3.2250416,-3.69983,-3.8627076,-3.8401399,-3.8718529,-3.8981338,-2.5422304,-3.7710042,-3.9766474,-3.9947834,-4.02934,-3.9737759,-3.8782272,-3.8499646,-3.797194,-3.7884922,-3.4582698,-3.2340524,-3.8777766,-4.0025225,-3.8598394,-3.9879313,-3.9564466,-3.899279,-3.9945364,-3.1875787,-3.966693,-3.9717674,-3.9850397,-3.9228945,-3.9360862,-3.974773,-3.9381537,-3.980762,-3.0912223,-3.1852996,-3.0677114,-3.623244,-3.946826,-4.1328363,-4.152102,-4.1733975,-4.0553823,-4.1082597,-4.052606,-3.558238,-3.0551863,-3.7140918,-3.8129344,-3.748023,-3.9038997,-3.9810753,-3.9304247,-4.085415,-3.793775,-3.8616395,-3.878613,-3.9844346,-3.9574356,-3.0148883,-3.8255982,-3.9394279,-3.8631682,-3.9354253,-3.977426,-4.1099257,-4.1084394,-4.021315,-4.0119424,-4.001901,-3.9952292,-4.0193954,-3.970862,-3.7819223,-3.947907,-4.1696315,-4.20389,-4.219902,-4.2865925,-4.2782273,-4.349425,-4.352011,-4.2995477,-4.3664875,-4.363915,-4.261559,-4.309344,-4.255395,-4.2283473,-4.3098617,-3.1017013,-3.099304,-2.8218231,-2.8702164,-2.783167,-2.4010339,-2.3645773,-2.2868862,-2.359562,-2.4407284,-2.3976214,-2.2801495,-2.2230458,-2.1593895,-2.140269,-2.0986693,-2.1794877,-2.2246752,-1.9247065,-1.9778266,-2.03848,-2.0146184,-2.0098076,-2.1314545,-2.1427674,-2.1522124,-2.1670265,-2.1587338,-2.095477,-1.9696455,-1.8559961,-1.955704,-2.0614233,-2.1427794,-2.2328122,-2.2352698,-2.2741642,-2.2659688,-2.1783895,-2.0620406,-2.1881108,-2.2576797,-2.3355658,-2.250657,-2.3263211,-2.3426812,-2.3748763,-2.335424,-2.2959123,-2.2707722,-2.3355842,-2.3547044,-2.3134181,-1.8670268,-2.159201,-2.286662,-2.3334672,-2.334521,-2.3146558,-2.3418837,-2.3701372,-2.3409295,-2.2200873,-2.2315316,-2.150485,-2.3320007,-2.2579465,-2.271119,-2.179307,-2.137949,-2.2572436,-2.2129416,-2.1955047,-2.0148172,-1.9625027,-2.0401602,-2.252516,-2.1258762,-2.1047368,-1.8072426,-1.8733199,-1.7801678,-1.8142662,-1.9145925,-1.637939,-1.400964,-1.3382556,-1.6677549,-1.6077173,-1.6457305,-1.517674,-1.4191658,-1.3989329,-1.5097184,-1.3277619,-1.3441882,-1.1033955,-1.1825123,-1.5471222,-1.5217178,-1.5081728,-1.5623546,-1.612284,-1.5789647,-1.5942338,-1.5745635,-1.4102829,-1.2470136,-1.1740606,-1.3301647,-1.4732215,-1.2692242,-1.0687993,-1.062459,-0.66574943,-0.8089804,-0.95773417,-0.6261211,-0.41064805,-0.3800335,-0.51013166,-0.3766045,-0.20737761,-0.5034778,-0.8075101,-0.9437161,-1.3490486,-1.6036088,-1.3987253,-1.3979685,-1.390728,-1.4537082,-1.3790414,-1.3358703,-1.2279983
+0.57959044,0.65289843,0.713559,0.45355046,-0.10653478,-1.0137134,-1.5390182,-1.8171177,-1.9294534,-2.156842,-2.7118568,-2.6661868,-2.803005,-2.8745415,-2.5336957,-3.018198,-2.307108,-2.6501646,-2.7176318,-3.0094767,-3.068006,-2.9504952,-3.046515,-2.3236995,-3.007474,-2.4503,-2.474197,-2.3663619,-2.091217,-1.9926205,-2.321154,-2.2066016,-2.1650777,-2.4464965,-2.8288631,-3.119227,-3.0621407,-3.0584102,-3.197854,-2.9692411,-3.1672525,-3.401454,-3.6778445,-3.7002378,-3.4577253,-3.4070883,-3.6308372,-3.8461785,-3.8902402,-3.8965812,-3.8009133,-3.6889904,-3.554744,-3.7740636,-3.7170482,-3.7552323,-3.7641273,-3.7477932,-3.7948213,-3.8340979,-3.825913,-3.804585,-3.796741,-3.7744393,-3.8083172,-3.8365788,-3.7752666,-3.7910285,-3.8240047,-3.8928208,-3.8543525,-3.7765183,-3.805286,-3.5781295,-3.7260118,-3.7853189,-3.7072349,-3.7977805,-3.7418156,-3.7543054,-3.8612628,-3.8330874,-3.8706717,-3.6710904,-3.737444,-3.93145,-3.9300256,-3.9645061,-3.9563918,-3.921011,-3.7432942,-3.668766,-3.6426632,-3.671456,-3.8170972,-3.898367,-3.967392,-3.885346,-3.8665953,-3.8087268,-3.7694635,-3.8103833,-3.8653064,-3.9055853,-3.9633079,-3.9955683,-3.9764552,-4.0538263,-3.847628,-4.0207257,-3.9328046,-3.928153,-4.0842223,-4.018049,-4.0559707,-4.0714183,-4.107267,-4.1506085,-4.1799674,-4.1825795,-4.1729116,-4.122151,-4.087394,-4.1546545,-4.137891,-4.1838565,-4.134502,-4.103548,-4.094532,-4.035833,-4.05221,-4.0036783,-3.9538622,-4.194806,-4.2037206,-4.1682262,-4.1359353,-4.1856,-3.9880834,-3.8745751,-3.9199367,-4.180449,-4.0816865,-4.038207,-4.0751653,-4.1677613,-4.2574573,-4.1548448,-4.215975,-4.1287656,-4.153547,-4.079333,-4.088059,-3.9106512,-3.7277083,-3.6801748,-2.6542444,-3.6991348,-3.9214225,-3.9105496,-3.8293524,-3.9182277,-3.9459014,-3.8173308,-4.012382,-3.9828286,-3.8947406,-3.3677807,-4.045323,-3.9544291,-3.7965832,-3.867732,-3.768653,-3.81526,-3.6469274,-3.4619048,-3.4624357,-3.8886104,-4.0838723,-4.103362,-3.9975123,-4.0453615,-3.9552855,-4.055639,-3.9387212,-3.7112317,-3.5901785,-3.883916,-3.9847703,-3.9438386,-4.1287193,-4.1438117,-4.1341443,-4.092727,-4.2259336,-4.1962304,-4.043657,-4.1835237,-4.0940638,-3.107264,-3.9224987,-3.580288,-3.7093515,-3.7173905,-3.792457,-4.0063286,-4.0614414,-3.9964533,-4.065551,-4.091618,-4.0758452,-3.9500928,-4.105538,-3.7601113,-3.832448,-4.0638833,-4.0458717,-4.0500183,-4.163493,-4.1105056,-4.163774,-4.1945124,-4.1733947,-4.2883596,-4.2453723,-4.1793003,-4.163449,-4.093844,-4.074314,-4.070804,-3.9177804,-3.6741161,-3.5386589,-3.6217027,-3.6351697,-2.7174687,-2.9996166,-2.4891787,-2.5084279,-2.5659978,-2.336249,-2.3171587,-2.3355625,-2.2923481,-2.354328,-2.3484707,-2.3409367,-2.3411393,-2.367455,-2.382652,-2.4356194,-2.389199,-2.3343015,-2.3542485,-2.293562,-2.4026854,-2.4729817,-2.3776183,-2.5712585,-2.0117455,-2.222508,-2.3835747,-2.5089207,-2.6221285,-2.7150052,-2.7429128,-2.7719193,-2.7801483,-2.492544,-2.7198358,-2.8223917,-2.8080723,-2.9137754,-2.9010887,-2.952033,-2.967957,-2.8129284,-2.8853803,-2.6541517,-2.780325,-2.8398323,-2.879723,-2.7953687,-2.3879547,-2.2628884,-2.0305076,-2.4805188,-2.273344,-2.3186727,-2.4816976,-2.4894743,-2.5139766,-2.5276122,-2.5626645,-2.474144,-2.5613317,-2.4688678,-2.2675118,-2.2423177,-2.3175342,-2.4032888,-2.4071107,-2.4278736,-2.420724,-2.4015512,-2.373876,-2.2742705,-2.3847632,-2.2902327,-2.2544148,-2.2675304,-2.2274578,-2.0601034,-1.9525154,-2.0063388,-1.8526845,-1.3471472,-1.7817957,-1.6119137,-1.6452045,-1.6790285,-1.717704,-1.7710323,-1.7428155,-1.6201255,-1.6847763,-1.6535273,-1.2487125,-1.4549685,-1.5886602,-1.6029289,-1.6347756,-1.659682,-1.6839099,-1.7772326,-1.7609279,-1.7409577,-1.6373348,-1.5378292,-1.5190141,-1.6924667,-1.6134608,-1.65803,-1.5303907,-1.292351,-1.4045105,-1.3772683,-1.1719053,-1.075274,-0.93102545,-0.8251223,-0.7122689,-0.30927426,-0.27162224,-0.37010032,-0.3134852,-0.22867203,-0.434525,-0.50183266,-0.57598823,-0.7376761,-0.67377746,-0.8650308,-0.63510686,-0.68538433
+0.43121776,0.28144324,-0.3211521,-1.2194002,-2.064659,-2.3733053,-2.532513,-2.4130893,-2.4946604,-2.7870855,-2.910107,-3.0041296,-3.0240521,-3.239924,-3.0642962,-2.768114,-2.969965,-2.433462,-2.7105792,-3.2864134,-3.432888,-3.3777595,-3.3171847,-3.6638927,-3.8037252,-3.769445,-3.7767558,-3.6938338,-2.8593984,-3.226214,-2.5857606,-3.0601046,-3.5225735,-3.5990589,-3.563376,-3.4517534,-3.6869116,-3.6792777,-3.61316,-3.8467774,-3.810968,-3.8230577,-3.7877083,-3.664015,-3.5054352,-3.5104132,-3.5054374,-3.378235,-3.477719,-3.5014834,-3.4439416,-3.5444643,-3.5956798,-3.6016715,-3.6491413,-3.6193266,-3.6687648,-3.687656,-3.6101599,-3.6696806,-3.709621,-3.6166506,-3.6732259,-3.7510467,-3.687038,-3.688827,-3.6723738,-3.6691093,-3.6898427,-3.7098613,-3.70746,-3.694363,-3.7094378,-3.7202773,-3.701023,-3.708622,-3.7328463,-3.8057284,-3.809999,-3.8010912,-3.7031045,-3.7100086,-3.71663,-3.7489862,-3.695273,-3.7224464,-3.4722352,-3.668487,-3.6105802,-3.5498574,-3.623425,-3.5020556,-3.459115,-3.5523396,-3.4342523,-3.6600318,-3.7615623,-3.7575421,-3.7883615,-3.802703,-3.7732673,-3.7163482,-3.7750344,-3.8011117,-3.8546786,-3.8706756,-3.8649192,-3.8461747,-3.8898816,-3.8304791,-3.8030505,-3.8441567,-3.8839011,-3.8885636,-3.9066505,-3.814529,-3.5973706,-3.4318526,-3.5494525,-3.5172563,-3.6204972,-3.4309912,-3.5845027,-3.748797,-3.7804418,-3.6741822,-3.5405972,-3.6653795,-3.8089428,-3.7909017,-3.855822,-3.9200406,-2.86192,-3.6442113,-3.7097468,-3.8055797,-3.866282,-3.866004,-3.8264127,-3.796227,-3.6255953,-3.6397872,-3.021421,-3.086296,-3.1971335,-3.5897257,-3.7169905,-3.8029165,-3.7978234,-3.7556024,-3.8250394,-3.935627,-3.9134355,-3.8837533,-3.891624,-3.4661543,-3.7614217,-3.8015037,-3.912868,-3.9371114,-3.8619933,-3.8856812,-3.8975978,-3.8525338,-3.7326803,-3.6986604,-3.7789822,-3.758088,-3.7687368,-3.7255106,-3.6213217,-3.79745,-3.9268394,-3.5679467,-2.5434878,-3.169118,-3.392711,-3.6830645,-3.8144841,-3.8276343,-3.849361,-3.847704,-3.7350965,-3.73698,-3.7826838,-3.7112708,-3.7547984,-3.8295789,-3.7795062,-3.8603144,-3.8673558,-3.5665512,-3.6502323,-3.7638664,-3.775504,-3.8293386,-3.7755728,-3.7812877,-3.7833285,-3.7994814,-3.8011413,-3.7712746,-3.8309464,-3.846661,-3.8357472,-3.828702,-3.8113475,-3.5726929,-3.7022085,-3.7736073,-3.771739,-3.755629,-3.7732506,-3.7409,-3.7645211,-3.7877827,-3.7739515,-3.0848742,-3.4338467,-3.6759233,-3.6632123,-3.7409396,-3.7453246,-3.7972026,-3.8414369,-3.8255339,-3.8082132,-3.8653235,-3.8916316,-3.8575492,-3.5489345,-3.4859796,-3.664216,-3.771523,-2.8113918,-2.879292,-3.0010803,-3.107945,-3.0865726,-2.9919355,-2.707478,-2.835979,-2.8601665,-2.9219022,-2.9469123,-2.919662,-2.8105116,-2.8337567,-2.7447424,-2.8007858,-2.7225533,-2.7731483,-2.683504,-2.5360422,-2.3945851,-2.4719615,-2.390019,-2.229113,-2.2180817,-2.2825468,-2.0356827,-2.6912286,-2.7797663,-2.5266623,-2.3473735,-1.7715967,-2.0904489,-2.730316,-3.2751307,-3.5342016,-3.4594755,-3.4112341,-3.3414373,-3.3381164,-3.542644,-3.6265388,-3.7012944,-3.670252,-3.5385733,-3.3586278,-3.4474478,-3.6795027,-3.5355887,-3.099419,-3.1922367,-3.2057014,-3.2794333,-2.951631,-2.5630245,-2.1664343,-2.5952227,-3.0100365,-3.2474227,-3.3606534,-3.4916606,-3.3651576,-3.526748,-3.5066776,-3.4389691,-3.5293186,-3.4185848,-3.3694098,-3.2803698,-3.1950893,-3.127482,-3.1489289,-3.1399386,-3.184101,-3.157084,-3.176993,-3.1387982,-3.2006402,-3.1507268,-2.937427,-2.952119,-2.6551564,-2.068629,-1.638206,-1.6067119,-2.1244102,-2.1892748,-2.0880077,-1.9450953,-1.8563743,-2.104217,-2.4118557,-1.9489946,-1.5687466,-1.4901817,-1.9707394,-2.13556,-2.083649,-1.9111671,-1.7893696,-2.2116113,-2.1908798,-2.0793886,-1.9143548,-1.8763149,-1.6858957,-2.040791,-2.0516317,-1.9629626,-1.9616649,-2.0931363,-2.406814,-2.5507767,-2.682889,-2.7895727,-2.8187325,-2.8448598,-2.8434515,-2.8498325,-2.8577394,-2.8618727,-2.8267546,-2.643017,-2.471466,-3.335054,-3.318172,-3.4176197,-3.3438675,-3.1301801,-3.5298455,-3.2092278
+-1.0398548,-1.796869,-2.0236654,-2.1021318,-2.2746522,-2.310814,-2.449821,-2.4324033,-2.2484741,-2.9460278,-2.9402664,-2.6115575,-3.111383,-3.3197472,-3.357219,-3.3162389,-3.137589,-3.0899782,-3.1472619,-3.3592753,-3.4537158,-3.521397,-3.5483887,-3.5738907,-3.665821,-3.6896775,-3.6887753,-3.7983642,-3.6384451,-3.2416093,-3.116417,-2.8649795,-3.1305637,-3.3063674,-3.4089322,-3.5281737,-3.6273048,-3.6907659,-3.626171,-3.7204509,-3.7927933,-3.8736472,-3.8919039,-3.9256701,-3.8253894,-3.8175235,-3.6350799,-2.5651724,-3.348275,-3.448979,-3.5816274,-3.646964,-3.6922078,-3.7458959,-3.7855725,-3.7966661,-3.797461,-3.9067245,-3.9392533,-3.9527512,-3.9890418,-3.670573,-3.3256035,-3.7944012,-3.8865657,-3.8687253,-3.2889974,-3.7697682,-3.8895273,-3.9152713,-3.9756212,-3.9943976,-3.8913188,-3.9900079,-3.9641085,-3.971332,-3.9373817,-3.9373145,-3.9740744,-4.0197015,-3.9928489,-3.9880276,-4.012843,-3.5767894,-3.2582786,-3.7771168,-3.8840232,-3.1546636,-3.6380877,-3.815072,-3.3029633,-3.3076692,-3.176486,-3.5276787,-3.6019378,-3.8094935,-3.8870273,-3.9163146,-3.9325151,-3.9912224,-4.0201807,-3.9934392,-4.020946,-4.0456686,-4.057978,-4.1268687,-4.137227,-4.123687,-4.1410255,-4.1088943,-3.472733,-3.793282,-3.36797,-3.8295875,-3.9538326,-3.841998,-3.9189024,-3.3329654,-3.6775198,-3.3109972,-3.121128,-3.27451,-3.512964,-3.644671,-3.764779,-2.833723,-3.2402217,-3.0849311,-3.3649325,-3.4346697,-3.4346173,-3.1709878,-3.232593,-3.421461,-3.6070626,-3.669195,-3.5731053,-3.6921623,-3.7796588,-3.7836366,-3.0940576,-3.5351586,-3.1450865,-3.133594,-3.2779527,-3.276913,-3.5280511,-3.6306598,-3.35565,-3.552061,-3.6375144,-3.6991215,-3.7370157,-3.7835908,-3.8064904,-3.7825046,-3.8646855,-3.8993773,-3.5688472,-3.2031298,-2.912603,-3.3981512,-3.5571685,-3.6533844,-2.9327497,-3.3612585,-3.5407348,-2.0330749,-3.109959,-3.282471,-3.3785543,-3.4881806,-3.5050511,-3.580749,-3.424791,-3.5371857,-3.7270412,-3.768269,-3.7797446,-3.8078384,-3.8466077,-3.8122659,-3.333847,-2.7023194,-3.2918253,-3.3754418,-3.5431964,-3.6473055,-3.699274,-3.7128625,-3.745987,-1.7980034,-3.136636,-3.2549183,-3.3682523,-3.3375945,-3.3929865,-3.4148507,-3.4545035,-3.491478,-3.5610285,-3.6404293,-3.6666648,-3.6845353,-3.6840959,-3.676451,-3.6715598,-3.6786385,-3.776276,-3.7296119,-3.6937127,-3.7146797,-3.7274427,-3.7102895,-3.6944427,-3.744103,-2.808734,-2.234953,-3.1459503,-2.9686353,-3.2770479,-3.3781009,-3.4543815,-3.4971633,-3.5131288,-3.5425985,-3.570033,-3.5655503,-3.580192,-3.5424323,-3.474471,-3.717586,-3.7186546,-3.7351174,-3.0808923,-2.6477938,-3.4288826,-3.524659,-3.4397635,-3.5088327,-3.3988714,-3.4529796,-3.392886,-3.4021397,-3.4432979,-3.5575657,-3.5507224,-3.5033834,-3.5962462,-3.686976,-3.6939974,-3.5658703,-3.6026995,-3.690971,-3.7444472,-3.7649875,-3.7599864,-3.7668643,-3.7297778,-3.6223502,-2.854157,-3.3508768,-3.088169,-3.1350322,-3.3116336,-2.7951574,-3.1086054,-3.525886,-3.5146582,-3.48253,-3.4414325,-3.5548096,-3.5228555,-3.5582867,-3.2149036,-3.4784536,-3.481822,-3.569885,-3.5784411,-3.6135578,-3.376123,-3.301786,-3.3488135,-3.526543,-3.6031213,-3.5800357,-3.659943,-3.6232977,-3.5924149,-2.3872495,-3.3294494,-3.328107,-3.6043756,-3.6527638,-3.6327543,-3.3323712,-3.5290303,-3.5299816,-3.4488478,-3.445331,-3.3208978,-3.160915,-3.1535466,-3.2670262,-3.3890798,-3.4256556,-3.5010972,-3.5929554,-3.617852,-3.6749597,-3.6954865,-3.6852994,-3.7088714,-3.7048898,-3.7202163,-3.7095518,-3.6967998,-3.6485128,-2.3067582,-3.1036391,-3.4119062,-3.5508804,-3.5857847,-3.509947,-3.3990796,-3.5653958,-3.626442,-3.638639,-3.5449522,-3.6592243,-3.7884908,-3.7852106,-3.7931352,-3.6325803,-3.7829552,-3.8258119,-3.8218637,-3.74435,-3.697577,-3.553656,-3.7294679,-3.741344,-3.739768,-3.7719998,-3.795473,-3.8246531,-3.8252945,-3.8249931,-3.8596487,-3.8596683,-3.910098,-3.8855891,-3.9035177,-3.941625,-3.9518962,-3.9203877,-3.901668,-3.8779473,-4.041035,-3.950746,-4.0341535,-3.7591043,-3.060051,-3.6382837,-3.6899576
+-1.3194547,-2.0463617,-2.2986784,-2.6029592,-2.7701797,-2.955071,-3.225638,-3.1558604,-2.6052668,-3.6186147,-3.66976,-2.1947021,-3.7147355,-3.9704366,-4.104158,-4.108462,-4.1140485,-4.0304227,-3.9817452,-4.066353,-4.182279,-4.1540194,-3.649345,-4.1054263,-4.0753818,-4.046985,-4.121703,-4.1343966,-4.16067,-4.219904,-4.2701097,-4.311625,-4.401466,-4.4488764,-4.4634547,-4.294927,-4.206922,-4.300901,-4.289849,-4.392229,-4.4504085,-4.5520034,-4.4955463,-4.638405,-4.3538213,-4.3871174,-2.8591607,-3.1195297,-3.647826,-3.91565,-3.9386344,-3.9613037,-4.012222,-4.033809,-4.0724444,-4.0581193,-4.1427674,-4.2608867,-4.4070687,-4.244181,-4.3140235,-4.212827,-4.3759713,-4.4859624,-4.556286,-4.4476247,-3.6358142,-4.214103,-4.38316,-4.5789614,-4.625171,-4.635278,-4.5919976,-4.676845,-4.5795116,-4.5906596,-4.598218,-4.648764,-4.736782,-4.8048644,-4.7185006,-4.66452,-4.702333,-4.7876086,-4.584866,-4.678192,-4.74513,-4.632905,-4.4162254,-4.6154675,-4.645488,-3.839027,-4.3781924,-4.569846,-4.600922,-4.7055497,-4.8437085,-4.7895117,-4.7762017,-4.7850895,-4.891488,-4.8364787,-4.8570642,-4.872068,-4.8764806,-4.9072843,-4.914258,-4.021786,-4.6986995,-3.8822784,-2.7375774,-3.893138,-4.0476613,-4.0987473,-4.163215,-4.1563034,-3.7006993,-4.113412,-3.731594,-4.1120763,-4.130219,-2.5804853,-3.8606172,-3.6018028,-4.0567203,-4.075271,-3.6286259,-2.9788885,-3.6064484,-3.9693708,-4.063377,-4.006647,-3.3735418,-3.8167133,-3.3306477,-3.8171544,-4.0456543,-3.9978447,-3.9662037,-4.007061,-4.0409446,-4.073521,-4.0615287,-2.407977,-4.0073433,-4.028563,-4.0606885,-4.0182257,-3.9782848,-3.975369,-3.9233346,-3.9428606,-3.938098,-3.8334832,-3.9850187,-3.9537497,-3.9824967,-3.9706569,-3.9084578,-2.3046985,-3.1350536,-3.9414916,-4.1208687,-4.315341,-4.0331864,-3.8500485,-4.2406363,-4.20098,-4.120527,-4.117219,-4.219745,-4.3484464,-4.3117537,-4.270617,-4.2371564,-4.2132277,-4.319281,-4.374048,-4.4558425,-3.5305967,-4.4728923,-4.3134475,-2.7198293,-4.189922,-4.258107,-4.279373,-4.192886,-4.1257358,-4.169271,-4.231126,-4.190025,-3.393039,-4.169315,-4.3103833,-4.3090696,-4.1402526,-4.214256,-4.262037,-4.3255305,-4.3045306,-4.373196,-4.476352,-4.4746723,-4.3842635,-4.4855046,-4.5685315,-4.557926,-4.581798,-4.614923,-4.5965924,-4.532956,-4.6152477,-4.653555,-4.587684,-4.5792613,-4.6429935,-4.1367183,-2.128454,-3.3670208,-4.1120257,-4.5809045,-4.7302995,-4.75246,-4.7935786,-4.901912,-4.8991923,-4.880855,-4.859454,-4.854439,-4.7312417,-4.56759,-4.7388196,-4.6039214,-4.6123233,-4.486939,-4.551192,-4.662458,-4.6975965,-4.693953,-4.5432653,-4.297037,-4.319368,-4.422262,-4.60879,-4.614182,-4.5483084,-4.340283,-4.638985,-4.629725,-4.6399016,-4.582821,-4.635756,-4.532055,-4.6383743,-4.65223,-4.6666913,-4.6407866,-4.6311393,-4.488748,-4.3129983,-4.311503,-4.605003,-4.5698743,-4.617227,-4.6927743,-2.5891514,-4.0304313,-4.467284,-4.429092,-4.5784426,-4.659243,-4.7656064,-4.7467027,-4.609622,-4.345243,-4.4199843,-4.623431,-4.653871,-4.6131105,-4.723433,-4.699221,-4.662612,-4.538931,-4.6949296,-4.6674848,-4.588801,-4.6329713,-4.599652,-4.574911,-2.6841319,-3.9668674,-4.2490463,-4.4771485,-4.6343045,-4.64257,-4.013284,-4.4117217,-4.5311255,-4.5289803,-4.4819856,-4.4898543,-4.354756,-4.274087,-4.3760715,-4.4778614,-4.5652394,-4.6470623,-4.6805305,-4.678586,-4.6462617,-4.7333574,-4.658961,-4.641019,-4.7098107,-4.6983953,-4.591578,-4.4808536,-4.506224,-3.0073047,-4.0785956,-4.309236,-4.4193053,-4.5801706,-4.453237,-4.283381,-4.5290966,-4.604105,-4.645139,-4.383311,-4.3181987,-4.469517,-4.6263685,-4.299876,-4.1448703,-4.260288,-4.4090247,-4.4347563,-4.255654,-4.2210135,-4.074596,-4.282831,-4.3935533,-4.495547,-4.5368943,-4.516586,-4.488025,-4.551019,-4.564381,-4.6315722,-4.595719,-4.654678,-4.633608,-4.659861,-4.7445674,-4.7118406,-4.576035,-4.39016,-4.396116,-4.6086183,-4.4765477,-4.527638,-4.041922,-3.827117,-4.3381314,-4.2876067
+-1.4556274,-2.2263193,-2.3178818,-2.3230565,-2.3674507,-2.4405122,-2.521544,-2.569644,-2.887187,-3.158959,-3.29688,-3.110166,-3.4343648,-3.4498296,-3.4182773,-3.4657435,-3.6039152,-3.629847,-3.5969238,-3.5826907,-3.5924776,-3.555077,-3.6922545,-3.7148185,-3.7219086,-3.7194486,-3.7541327,-3.7493987,-3.7437596,-3.8433237,-3.860746,-3.9569993,-3.9626446,-3.8975987,-3.784576,-3.7320385,-3.7843113,-3.828298,-3.8386106,-3.9217248,-3.9285097,-3.880406,-3.918089,-3.9157786,-3.9353356,-3.9086852,-3.765554,-3.6972308,-3.525622,-4.105431,-4.058021,-4.083259,-4.081718,-4.093001,-4.1359696,-4.1609797,-4.161279,-4.1546073,-4.078442,-4.1395926,-4.118803,-4.1821475,-4.2168345,-4.2784123,-4.183063,-4.168836,-4.160607,-4.187559,-4.1778116,-4.194403,-4.1802993,-4.258288,-4.275583,-4.258169,-4.2248178,-4.1621194,-4.120586,-4.0697274,-4.0137,-4.010157,-4.083441,-4.190988,-4.2162995,-4.1617064,-4.008313,-4.116795,-4.0480027,-4.0754986,-4.1166077,-4.310574,-4.316851,-4.2750373,-3.9105296,-4.438856,-4.377769,-4.2661033,-4.2396417,-4.3808746,-4.3461795,-4.4128404,-4.3488226,-4.320069,-4.330108,-4.3085604,-4.275491,-4.2489643,-4.278505,-4.3282866,-4.3082137,-4.233291,-4.3371468,-4.302182,-4.303037,-4.3048625,-4.3074713,-3.983007,-4.2611957,-3.219371,-4.091829,-4.155381,-4.197925,-4.215959,-3.9208927,-4.094955,-3.615102,-3.9115329,-4.0422626,-3.9775324,-4.0794797,-4.1047215,-3.5949805,-3.6030307,-3.7028565,-3.5528345,-2.9363394,-3.169886,-3.6753669,-3.7369452,-3.7816997,-3.8099809,-3.841466,-3.5198197,-2.8147244,-3.3959484,-3.6316435,-3.5913234,-3.7138395,-3.757225,-3.6979003,-3.5007877,-3.7165217,-3.7672586,-3.6695065,-3.7072878,-3.6958666,-3.4898005,-3.6962037,-3.764902,-3.483819,-2.4201174,-3.5541565,-3.7359881,-3.7208066,-3.7958603,-3.7490883,-3.7683625,-3.8187456,-3.787044,-3.8487802,-3.8309598,-3.8077283,-3.835445,-3.8879151,-3.9593787,-4.0313773,-4.051526,-4.1039014,-4.1259656,-3.7921014,-3.0328517,-3.647606,-3.6780553,-2.1448991,-3.4923239,-3.6877115,-3.797894,-3.8371644,-3.8869433,-3.9358926,-3.91465,-3.9586372,-3.946075,-3.9244866,-3.8794122,-3.867918,-3.8698564,-3.8252182,-3.8411765,-3.8736262,-3.8938394,-3.9030404,-3.9243937,-3.946611,-3.9948916,-3.9952059,-3.956314,-3.9155688,-3.9259071,-3.964954,-3.9566708,-3.930409,-3.9439712,-3.9403434,-3.9252324,-3.9063091,-3.947617,-3.9416175,-3.7802877,-2.6359658,-3.5033736,-3.6810656,-3.6788523,-3.7282934,-3.7263002,-3.7755475,-3.787012,-3.7883258,-3.7607322,-3.6907234,-3.6680202,-3.6226501,-3.7425413,-3.7230873,-3.7843838,-3.717733,-3.7386074,-3.7909498,-3.7237,-3.675859,-3.7105374,-3.615398,-3.474275,-3.4885197,-3.5498846,-3.5889676,-3.6288002,-3.1615627,-3.4628494,-3.4412727,-3.4630535,-3.532713,-3.5687656,-3.5053701,-3.6168685,-3.5610912,-3.5438547,-3.564812,-3.6005912,-3.570228,-3.4103198,-3.3386562,-3.4896574,-3.3933482,-3.4750557,-3.3908758,-2.2212348,-3.5571685,-3.7568827,-3.6646423,-3.7998486,-3.749411,-3.8293986,-3.6041644,-3.3762684,-3.1959882,-3.2886348,-3.567348,-3.7431993,-3.7830977,-3.8307614,-3.8380828,-3.671212,-3.7818274,-3.87741,-3.8023381,-3.8018603,-3.828095,-3.7515059,-3.6354842,-2.1914794,-3.5434847,-3.7887793,-3.8098922,-3.8004699,-3.833157,-2.917039,-3.588127,-3.840156,-3.80905,-3.8192697,-3.6380143,-3.5340557,-3.5102692,-3.6881979,-3.7974076,-3.877819,-3.9362755,-3.9700637,-3.9525104,-3.9426484,-3.8746614,-3.8897333,-3.8965793,-3.98626,-3.947637,-3.883356,-3.7858567,-3.691753,-2.7896523,-3.5331216,-3.643589,-3.6818078,-3.6560316,-3.7543068,-3.740675,-3.769641,-3.7989507,-3.7707481,-3.6495013,-3.616967,-3.708273,-3.6311312,-3.760003,-3.6941085,-3.8449135,-3.7735162,-3.6684082,-3.7436686,-3.7421346,-3.684863,-3.7593021,-3.6885018,-3.653572,-3.6658444,-3.6587453,-3.7625256,-3.742763,-3.755434,-3.6979637,-3.6647801,-3.7346206,-3.7431283,-3.7291622,-3.7386293,-3.742806,-3.76128,-3.708201,-3.7702441,-3.9256873,-3.8488612,-3.9118514,-3.9405975,-3.9902644,-3.9920516,-3.8781853
+-1.0368226,-1.5646055,-1.7990112,-1.9476728,-2.1111412,-2.2420812,-2.4245086,-2.627274,-2.6843839,-2.6804,-2.7178037,-2.8543656,-2.8258264,-2.866591,-2.894217,-2.9358926,-3.0257707,-3.0900369,-3.1123073,-3.1488044,-3.1904407,-3.4282842,-3.3499823,-3.1535344,-3.148563,-3.1055481,-3.1728146,-3.1967225,-3.2176802,-3.2809238,-3.2937422,-3.394812,-3.448829,-3.5033765,-3.5495129,-3.6337125,-3.4232914,-3.333746,-3.2640738,-3.3428836,-3.3535473,-3.4144368,-3.6063159,-3.6046789,-3.6554177,-3.4051147,-3.4213722,-3.5822082,-3.5181456,-3.4338784,-3.41894,-3.4190786,-3.4083,-3.5006626,-3.490567,-3.39334,-3.382598,-3.4490745,-3.6634598,-3.7059584,-3.032693,-3.8357954,-3.7748446,-3.788929,-3.8457108,-3.889361,-3.9166322,-3.9377098,-3.9223757,-3.9057722,-3.7156806,-2.861012,-3.8573947,-3.9754767,-3.8416295,-3.8796234,-3.9264483,-3.9838686,-4.0933785,-4.2727513,-4.3625283,-4.3481016,-4.3166113,-4.249246,-4.279169,-3.735136,-4.087834,-4.162445,-3.831252,-4.109264,-4.1782975,-3.4348242,-3.0992098,-3.7705169,-3.650118,-3.6464057,-3.8305798,-3.3253062,-3.395208,-3.9117188,-4.045694,-3.7939167,-3.9409547,-3.9110446,-3.834845,-3.9776487,-4.023816,-4.1300893,-3.4058836,-4.0668106,-4.148927,-4.089679,-4.0639186,-4.067904,-4.049112,-3.9562807,-4.079986,-4.243344,-4.217956,-4.1407166,-4.1677794,-4.126056,-4.092281,-4.1872087,-3.110076,-3.516506,-3.9029322,-4.195272,-4.1380773,-4.2091565,-3.4004135,-3.8468776,-3.5842695,-3.924921,-2.8373566,-3.9601321,-4.180605,-4.141932,-4.0975547,-4.1895537,-4.1240172,-4.0828485,-4.063947,-3.8282914,-4.0289016,-2.7027488,-4.049119,-4.2097344,-4.1873674,-4.1869636,-4.073027,-4.2272105,-3.610589,-3.9021282,-4.2691708,-3.9841151,-4.1139393,-4.182278,-3.5332851,-2.8649576,-4.0680747,-4.3117537,-4.2927775,-4.3432918,-4.2842393,-4.1916146,-4.159402,-4.157667,-4.0326095,-3.9246697,-3.8875012,-3.8640761,-3.8963647,-3.9220467,-3.9658718,-3.8829598,-3.8226457,-3.276009,-2.922545,-4.0179133,-4.3057146,-4.2044983,-3.0016708,-3.9071155,-4.1838946,-4.2621894,-4.155915,-4.056083,-4.050507,-4.059457,-3.4492884,-4.012975,-4.2231793,-4.2073417,-4.1409764,-4.0869613,-3.983953,-3.9785895,-3.9427514,-3.9016113,-3.851336,-3.8346605,-3.8501325,-3.9374294,-3.99091,-3.9553223,-3.9429955,-3.9515767,-3.9393592,-3.9657693,-4.0215178,-3.9948993,-3.9770122,-3.9931126,-3.9915786,-3.9953384,-4.012717,-3.9745288,-4.096056,-4.00559,-3.9909925,-3.983982,-3.9911175,-4.0769124,-4.084329,-4.091475,-4.0807366,-4.0320716,-4.0074687,-3.992805,-3.988328,-3.9980807,-4.0532994,-4.109568,-4.150455,-3.9995198,-4.050738,-4.1005793,-4.104753,-4.148355,-4.082624,-3.940928,-4.0517616,-4.1193585,-4.1575103,-4.249669,-2.5381658,-3.774078,-3.8839617,-3.9789853,-4.0313463,-4.0673647,-4.0429378,-4.0985,-4.0467086,-3.979021,-3.9490275,-3.973405,-3.9680686,-3.9255867,-3.8657985,-4.0619426,-4.030488,-4.066606,-4.020121,-3.3562775,-3.4094114,-3.9747434,-3.9099612,-4.0259833,-4.0944443,-4.0429673,-4.0630956,-4.0119576,-4.0649734,-3.5106862,-3.780805,-4.012121,-4.0848737,-4.06919,-4.0155272,-4.0934424,-4.0866265,-3.9862218,-3.9191813,-3.9500432,-3.9776263,-3.9757257,-4.0348296,-3.1004782,-3.803988,-4.0612025,-3.9448347,-3.968028,-3.9790702,-2.877653,-3.7782512,-4.002527,-3.9219127,-3.8228898,-3.9732695,-4.04794,-4.0361047,-4.104886,-4.158206,-4.1424513,-4.066291,-4.106537,-4.0632496,-4.0018487,-3.9527516,-3.9633155,-3.9576354,-3.9668655,-4.025948,-3.9978318,-3.971066,-4.0711427,-4.0853887,-3.8795986,-4.0719695,-4.0639415,-3.9697018,-4.03245,-4.1115446,-4.0127273,-3.9832816,-3.9546533,-3.8996034,-3.9519825,-4.045645,-4.0503564,-4.074137,-4.0529933,-4.0643177,-4.1136546,-4.130585,-4.1263633,-4.109085,-4.034796,-4.022276,-4.034358,-4.0431013,-4.045445,-4.058667,-4.07543,-4.0402374,-4.0415745,-3.9807372,-3.9964232,-4.015237,-4.0439157,-4.087251,-4.098429,-4.032369,-3.9927883,-3.9517617,-3.8799534,-3.9926867,-3.9250607,-3.970821,-3.9572139,-3.8892937,-3.9071045,-3.8628078
+-1.2691419,-1.7655892,-1.9655857,-2.078387,-2.2494147,-2.3668754,-2.5845766,-2.585826,-2.8138223,-2.9100547,-2.969864,-3.080976,-3.0326796,-3.136512,-3.1700406,-3.2129245,-3.2573762,-3.329164,-3.3606825,-3.3714933,-3.3894398,-3.2589726,-3.185481,-3.7343335,-3.8673186,-3.882843,-3.896603,-3.918696,-3.9361176,-3.9818168,-4.0222087,-4.021756,-4.024285,-3.9477277,-3.9521894,-3.9880795,-3.9101663,-3.9313092,-3.9736066,-4.037305,-4.0486016,-4.030819,-3.9025817,-3.8885474,-3.7283454,-4.10301,-4.1551814,-4.194768,-4.1624756,-4.1691127,-4.1599975,-4.151012,-4.13656,-4.147617,-4.09526,-4.0440073,-4.118532,-4.138624,-4.118495,-3.8109484,-3.2845416,-3.5989213,-3.8254328,-3.89121,-3.931179,-3.9184966,-3.979425,-3.9987187,-3.8039336,-3.1260664,-3.690229,-3.708757,-3.4397488,-3.7635713,-3.8379407,-3.9291377,-3.7930045,-3.9521985,-3.9873347,-4.0518174,-4.0529833,-4.023546,-3.914855,-3.4209516,-3.6655598,-3.5857096,-3.4225974,-3.2612267,-3.4353778,-3.557088,-3.3914537,-3.70722,-2.3945625,-3.3346758,-3.2487566,-3.358641,-3.2649367,-3.4119473,-3.4238033,-3.4842644,-3.5652852,-3.550851,-3.3568277,-3.3056378,-3.4365358,-3.4545403,-3.4988909,-3.605029,-3.3605204,-2.9598718,-3.485999,-3.681626,-3.6665177,-3.5901608,-3.2749374,-3.198265,-3.5014052,-3.4255707,-3.55474,-2.9431887,-3.3765473,-3.6534812,-3.5918438,-3.8689551,-3.0694897,-3.6869771,-3.3638597,-3.8367147,-4.040482,-3.922494,-3.7895103,-3.302429,-3.6062274,-3.6359553,-3.0905762,-3.520095,-3.9424787,-4.002996,-4.216599,-4.198556,-3.7693353,-4.205732,-4.1569123,-3.2513793,-3.455863,-3.6665974,-3.5271888,-3.994543,-4.0021577,-3.9625955,-3.327535,-3.6833916,-3.7799911,-3.9200797,-3.8805919,-4.0634847,-4.063082,-4.1443124,-3.4560432,-3.139936,-3.8599439,-3.99368,-4.0189714,-4.0843434,-3.9919434,-3.9919343,-4.1292615,-4.1388144,-4.067133,-3.9934592,-3.900876,-3.8551745,-3.867231,-3.7737226,-3.760301,-3.5849857,-3.767929,-3.2766216,-3.0838704,-3.8854666,-3.8276582,-3.6834617,-3.2717834,-3.668523,-3.8910685,-4.138124,-4.255965,-4.311233,-4.330951,-4.116981,-2.9355745,-3.6390097,-4.034493,-4.2384553,-4.3858647,-4.448402,-4.394504,-4.3951755,-4.302323,-4.241087,-4.1434345,-4.0616565,-3.9164128,-3.9496002,-3.9295697,-3.8052897,-3.8127437,-3.7850428,-3.6715817,-3.653164,-3.6698787,-3.6211557,-3.607407,-3.60155,-3.5888338,-3.5799096,-3.5213933,-3.4474812,-3.6055086,-3.5110397,-3.545065,-3.5417287,-3.4776115,-3.5548105,-3.617893,-3.53659,-3.735375,-3.7451653,-3.7781978,-3.7734442,-3.7105365,-3.710651,-3.7204256,-3.7893987,-3.8132854,-3.7120953,-3.727634,-3.8238988,-3.7492237,-3.8052316,-3.793376,-3.7413025,-3.9061446,-3.9931397,-4.0484624,-3.992659,-2.9196024,-3.7438874,-3.8864946,-4.045591,-4.2276764,-4.3334336,-4.350716,-4.333449,-4.3621583,-4.4270463,-4.406611,-4.373812,-4.367639,-4.3271255,-4.2318983,-4.3670626,-4.344149,-4.247976,-4.3201227,-3.9710536,-4.167438,-4.2678576,-4.238629,-4.387316,-4.3385987,-4.2729993,-4.124383,-3.8545728,-4.1477413,-3.893577,-4.168028,-4.310776,-4.3253675,-4.3744373,-4.352312,-4.350725,-4.3162603,-4.2808247,-4.18922,-4.125717,-4.1266103,-4.087563,-4.011213,-3.629809,-4.087218,-4.1844873,-4.1716228,-4.2287016,-4.2582974,-3.2844005,-4.0608954,-4.213673,-4.190245,-4.3677306,-4.3406305,-4.245359,-3.918622,-3.9301133,-4.000174,-4.0715914,-4.1176615,-4.13586,-4.1423507,-4.126315,-4.063804,-3.976799,-3.9192047,-3.925034,-3.9845548,-3.9673066,-3.9310856,-3.980414,-3.9544687,-3.8090348,-3.9180894,-3.994009,-3.9515324,-3.955958,-4.058373,-4.001629,-3.880917,-3.873602,-3.7233129,-3.695312,-3.8008022,-3.8170862,-3.8210387,-3.8354692,-3.9234862,-3.9211469,-4.0336103,-3.8276935,-4.125277,-4.0118976,-3.9371533,-4.0166745,-4.1108403,-4.0595217,-4.064241,-4.071292,-4.017403,-4.0338917,-4.020577,-4.0870996,-4.110578,-4.1618953,-4.1973395,-4.2274776,-4.171782,-4.152427,-4.0307508,-3.9950657,-4.0773964,-4.0526376,-4.134786,-4.0901484,-4.0615296,-4.088651,-4.0234375
+-0.6962032,-1.6317604,-2.1858702,-2.501261,-2.7024734,-2.7548375,-2.9131622,-2.9683173,-3.1061919,-3.2844346,-3.2625859,-3.3880997,-3.4967945,-3.6180515,-3.5764108,-3.5960588,-3.7274928,-3.8110504,-3.8486333,-3.8647451,-3.8747964,-2.9903712,-3.750011,-3.967865,-4.1087627,-4.10572,-4.1985507,-4.2003217,-4.219168,-4.2797465,-4.322077,-4.358811,-4.373158,-4.338165,-4.345264,-4.360001,-4.283191,-4.226374,-4.2149878,-4.296555,-4.3281384,-4.347097,-4.2158523,-4.1474442,-4.1363196,-4.066198,-4.2842116,-4.4207387,-4.3836684,-4.4216256,-4.4379954,-4.4392533,-4.437715,-4.4269547,-4.332662,-4.132934,-4.3788533,-4.4010034,-4.210412,-4.219911,-4.249806,-3.98253,-4.0882163,-4.2982154,-4.2275357,-4.2055025,-4.2663627,-4.2356863,-4.0512233,-3.6152782,-2.9271069,-3.9640117,-4.008157,-4.09882,-4.006946,-4.063437,-3.8154273,-3.974629,-3.840579,-3.9165597,-3.9614182,-3.1975822,-3.558474,-2.9117851,-2.9467292,-3.8856006,-4.182367,-3.6368904,-3.4250479,-4.1875787,-3.764481,-3.744205,-4.1303563,-4.1595035,-4.7271113,-4.7823634,-4.6446357,-4.7295623,-3.9654074,-3.9815178,-4.406601,-4.5928783,-4.284319,-4.332526,-4.8438797,-4.7312064,-4.393763,-4.822226,-4.7400613,-4.539717,-4.483887,-4.7435308,-4.7827115,-4.8388534,-4.7255588,-3.4042897,-3.7977433,-4.3735957,-4.3537507,-4.30398,-4.1971774,-4.396373,-4.5542383,-4.8210454,-4.2544227,-4.3443456,-4.900807,-4.7802215,-4.3547044,-4.4654684,-4.1384606,-4.348644,-4.2375274,-4.237663,-4.5255895,-3.6930456,-4.2546268,-4.4408746,-4.3552103,-4.5389276,-3.9396443,-4.2929444,-4.0633383,-3.9762073,-4.124103,-4.3228064,-4.4027042,-4.1780734,-4.3210106,-4.5463533,-4.005486,-4.317125,-4.5983224,-4.3935795,-4.614877,-4.644421,-4.7120767,-4.8232684,-3.8003793,-4.332775,-4.6419926,-4.7037625,-4.5402913,-4.4488225,-4.613071,-4.719509,-4.3672156,-4.84903,-4.770597,-4.720852,-4.5749288,-3.7648463,-4.3259234,-3.8110309,-4.3425403,-4.256246,-4.7053504,-4.4408584,-4.4876833,-4.436931,-4.7395744,-4.590985,-4.4502244,-4.47948,-4.702923,-4.7297416,-4.630244,-4.6015024,-4.5922837,-4.488123,-4.3060346,-3.2562418,-4.2232347,-4.5155587,-4.607927,-4.7009654,-4.667573,-4.661633,-4.2258782,-4.620926,-4.6118774,-4.55865,-4.5446515,-4.481297,-4.5641265,-4.40494,-4.47687,-4.408503,-4.4201884,-4.4747624,-4.515805,-4.4678416,-4.404316,-4.4024634,-4.3379526,-4.3320975,-4.3462787,-4.340261,-4.3809342,-4.231329,-4.0974994,-4.1181264,-3.9977107,-3.979424,-4.0368934,-4.183146,-4.4741216,-4.5069547,-4.4366145,-4.4474964,-4.478707,-4.3350987,-4.3644576,-4.4148207,-4.4372916,-4.395307,-4.377806,-4.485533,-4.453142,-4.457686,-4.341426,-4.2250032,-4.29264,-4.473309,-4.5311875,-3.430063,-4.1076164,-4.3153095,-4.485659,-4.361268,-4.3877163,-4.540439,-4.5323358,-4.530814,-4.4751863,-4.5042896,-4.4888463,-4.407884,-4.379931,-4.338349,-4.3146844,-4.450752,-4.507779,-4.5009875,-4.5305266,-4.503115,-3.8765264,-4.422828,-4.4146304,-4.5694838,-4.5998545,-4.6157775,-4.12503,-3.8599925,-4.450091,-4.523434,-4.5724144,-4.5321684,-4.623774,-4.678916,-4.6236033,-4.551842,-4.492773,-4.494937,-4.41744,-4.3841386,-4.3807454,-4.4023194,-4.3454633,-3.1854792,-4.1936,-4.3264885,-4.387665,-4.3465004,-4.3265986,-3.8587346,-4.355398,-4.666589,-4.5850835,-4.6785054,-4.77523,-4.6353946,-4.2839665,-4.072916,-4.0738196,-4.1588697,-4.3588595,-4.3928595,-4.4013395,-4.40478,-4.361923,-4.293923,-4.243629,-4.2253685,-4.2613297,-4.2322536,-4.2772026,-4.28975,-4.2288127,-4.198389,-4.17353,-4.1817307,-3.8997183,-4.309804,-3.4585838,-4.240768,-4.3103833,-4.2855663,-4.4437733,-4.4648695,-4.4222817,-4.4139056,-4.458023,-4.4391303,-4.4288297,-4.3334565,-4.346561,-3.125909,-4.396107,-4.633611,-4.6208687,-4.6991057,-4.671846,-4.435464,-4.5289445,-4.5848975,-4.443101,-4.3619285,-4.2623267,-4.20401,-4.19007,-4.210885,-4.283447,-4.2730412,-4.2266,-4.221256,-4.197247,-4.1816216,-4.2938237,-4.3454204,-4.4388666,-4.401093,-4.394965,-4.461797,-4.436961
+-1.4303336,-2.3530462,-2.6257439,-2.6457858,-2.6976256,-2.6945043,-2.8549647,-2.955105,-3.02419,-3.1537735,-3.2274966,-3.372225,-3.5065322,-3.5444436,-3.4409113,-3.4369419,-3.5186648,-3.5832348,-3.638191,-3.6706204,-3.7275138,-3.5675402,-3.8323407,-3.7769666,-3.7677207,-3.7050529,-3.74117,-3.7340426,-3.7401543,-3.7909799,-3.7979016,-3.872284,-3.8361597,-3.9764848,-4.0762153,-4.098432,-4.0591016,-3.9943748,-3.9625201,-4.0617843,-4.1089196,-4.1232696,-4.0514183,-4.0586677,-3.8987412,-2.5694716,-3.9636931,-4.177146,-4.3068395,-4.369843,-4.3522277,-4.334599,-4.267448,-4.3133473,-4.0704823,-4.1895204,-4.179889,-4.27663,-4.385214,-4.28626,-3.6797857,-4.008785,-4.217344,-4.3093987,-4.2548203,-4.2874913,-4.28667,-4.2458234,-3.3927095,-2.0650682,-3.6929107,-4.1340346,-4.331672,-4.390858,-4.359643,-4.3355274,-4.241316,-4.272822,-4.2766333,-4.3267345,-4.338029,-4.000524,-3.7376819,-3.7900715,-3.3884535,-3.8562155,-4.242542,-3.9147973,-4.1752315,-4.5193,-4.2493515,-4.426517,-4.556084,-4.661019,-4.369629,-4.702431,-4.779346,-4.5689,-3.9972448,-4.5307083,-4.6892104,-4.6764536,-4.77623,-4.7411804,-4.7571,-4.4010634,-4.691927,-4.8194437,-4.477302,-4.4192324,-4.68431,-4.439638,-4.805404,-4.7219987,-4.249371,-4.4514365,-3.8925672,-4.550672,-4.588758,-4.524465,-4.7779546,-4.4686537,-4.092175,-4.586563,-4.0633616,-4.585456,-4.8239307,-4.694719,-4.912291,-4.7499895,-4.2496543,-4.7064457,-4.441731,-4.558928,-3.9357061,-3.7637596,-4.1573515,-4.5055475,-4.4283376,-4.4049106,-3.9158158,-4.07484,-4.3434563,-4.6680713,-4.648868,-4.2629895,-3.8516202,-4.0845895,-4.471248,-4.2730074,-4.507648,-4.6306906,-4.782823,-4.80209,-4.8350215,-4.8571467,-4.715012,-4.552322,-3.7302618,-4.4810576,-4.6926646,-4.740776,-4.531115,-4.4400535,-4.7294655,-4.7981987,-4.759111,-4.776834,-4.8149533,-4.8151193,-3.9927487,-3.835384,-4.276074,-4.634359,-4.799836,-4.770701,-4.3196297,-4.622878,-4.758244,-4.844251,-4.783647,-4.3314905,-4.3346467,-4.6241074,-4.69718,-4.7573023,-4.7623663,-4.8147483,-4.783779,-4.8632445,-4.266082,-4.194959,-4.8151,-4.824453,-4.8163314,-4.8279448,-4.8107104,-4.6677995,-4.5901904,-4.6099334,-4.3851542,-4.4093604,-4.7426066,-4.7402062,-4.0072837,-4.6202245,-4.845136,-4.9231462,-4.814174,-4.861219,-4.9443345,-4.909616,-4.862567,-4.833749,-4.8444953,-4.921861,-4.910279,-4.9565473,-4.878493,-4.719469,-4.7135034,-4.690875,-4.6259904,-4.796918,-4.7177505,-4.8113146,-4.8432565,-4.8217406,-4.774038,-4.773644,-4.7667527,-4.704666,-4.7154536,-4.818582,-4.78394,-4.757115,-4.829846,-4.913119,-4.907966,-4.877731,-4.717755,-4.5514207,-4.510676,-4.758641,-4.786576,-4.6647334,-2.9671578,-2.830699,-3.4253693,-3.5333633,-3.6918614,-4.1014028,-4.329672,-4.4344554,-4.6115284,-4.6627812,-4.710562,-4.649775,-4.7147636,-4.7898297,-4.6916327,-4.9777813,-5.021689,-5.0549426,-5.0192876,-5.0327716,-3.959721,-4.764401,-4.491831,-4.844361,-5.024159,-5.0731597,-4.8260226,-4.793525,-4.152699,-4.333421,-4.42064,-4.490866,-4.704537,-4.8731713,-4.8299723,-4.672425,-4.633589,-4.7076874,-4.702081,-4.7018256,-4.76717,-4.8065286,-4.828485,-3.1840615,-4.3060074,-4.4764476,-4.4712977,-4.3731904,-4.3480315,-3.6913877,-4.2773685,-4.662168,-4.4959235,-4.3437347,-4.749783,-4.7255654,-4.5722623,-4.368875,-4.443642,-4.620271,-4.703421,-4.6923404,-4.714591,-4.7734847,-4.7194514,-4.6289544,-4.5154743,-4.495129,-2.9165456,-4.2203326,-4.5169616,-4.7105136,-4.673684,-4.840917,-4.875996,-4.2385697,-4.511765,-4.335758,-2.9091816,-3.6165571,-3.9415336,-4.0802703,-4.312253,-4.5715156,-4.4641623,-4.38172,-4.5529666,-4.5669503,-4.7118783,-4.676789,-4.7071595,-3.326137,-4.4684596,-4.723686,-4.788466,-4.891429,-4.8585706,-4.832523,-4.7096133,-4.5892777,-4.5973086,-4.6040974,-4.493625,-4.4492917,-4.438883,-4.4696174,-4.5061803,-4.3421154,-4.26801,-4.242666,-4.1634736,-4.1070657,-4.150999,-4.1911206,-4.246964,-4.2074313,-4.2396417,-4.2832465,-4.212337
+-1.327465,-1.6449142,-1.8794274,-2.1408787,-2.3972626,-2.6634164,-2.7688289,-2.737142,-2.808156,-2.8176718,-3.0701113,-3.1409988,-3.2536876,-3.312365,-3.3872948,-3.4254143,-3.4284885,-3.4517503,-3.4860883,-3.5195584,-3.5332184,-3.4687002,-3.557232,-3.6063724,-3.6172357,-3.6437287,-3.629447,-3.6559334,-3.6543684,-3.645554,-3.6975636,-3.6656332,-3.64505,-3.6617374,-3.7392344,-3.708991,-3.7944465,-3.0077746,-3.4816413,-3.5564847,-3.6512272,-3.676815,-3.549841,-3.503599,-3.4274626,-3.4308043,-3.4372818,-3.667294,-3.7223873,-3.739306,-3.7947845,-3.7827573,-3.7654424,-3.7652025,-3.6526737,-3.6031601,-3.6223176,-3.7068176,-3.7306414,-3.6617823,-2.7938232,-3.3663926,-3.5333323,-3.701693,-3.7707725,-3.8327498,-3.8286777,-3.6982427,-3.630238,-3.5971503,-3.5471613,-3.5647333,-3.628264,-3.6480865,-3.6499898,-3.4420319,-3.2354321,-3.2525988,-3.0428898,-3.708189,-3.7494211,-3.4125745,-1.8481162,-1.6603098,-3.1215622,-3.6686335,-3.2007751,-3.564653,-3.4725494,-4.005815,-4.0519543,-4.226666,-4.286698,-4.0898004,-4.3404007,-4.2642894,-4.1521134,-4.3208323,-4.2532973,-4.164663,-4.0545487,-3.7820659,-4.3206706,-4.1686177,-4.2937875,-4.293979,-4.253078,-4.2930207,-4.409126,-4.066624,-4.371124,-4.203319,-4.381485,-3.7043757,-3.6939826,-4.174895,-4.4139953,-4.2337008,-3.996616,-4.2665296,-4.4067163,-4.4502306,-4.2553325,-4.3343587,-4.252873,-4.1974454,-4.1386437,-3.992669,-4.116154,-2.8840728,-4.0524125,-3.959897,-4.164703,-4.2206593,-4.191751,-4.0512424,-4.202489,-4.027637,-4.2746663,-3.9247274,-3.951468,-4.3005624,-4.242823,-4.072225,-3.8435774,-4.1206236,-4.3827944,-4.380964,-4.352789,-4.32628,-4.4317307,-4.023408,-4.3349323,-4.261806,-4.237061,-4.275226,-4.1290293,-4.2844887,-3.9419627,-4.31014,-4.0579734,-4.2422605,-3.6922908,-4.288845,-4.329229,-4.361112,-4.1504807,-4.210732,-4.306678,-4.3253064,-3.4501393,-4.2572627,-4.2672973,-4.12199,-4.1398554,-4.257609,-4.3483677,-4.13931,-4.177771,-4.218371,-4.340359,-3.9628892,-4.1030984,-4.173841,-4.1223392,-4.0305305,-4.3451605,-4.2229753,-4.174367,-4.1095586,-4.1207166,-4.096523,-4.1748548,-4.191815,-4.104728,-4.0580378,-4.069694,-4.010546,-4.048575,-4.066871,-3.8757544,-4.022495,-4.1850166,-4.1770716,-4.180996,-4.077415,-4.4197183,-4.414249,-4.3447227,-4.3201003,-4.338864,-4.3066506,-4.250233,-4.2364535,-4.24246,-4.272084,-4.204952,-4.1674457,-4.156276,-4.1880875,-4.233559,-4.2337494,-4.1242776,-3.5839303,-4.5088687,-4.5894365,-4.5755363,-4.5224805,-4.498121,-4.4362135,-4.3028674,-4.340594,-4.33006,-4.3626723,-4.343509,-4.3282046,-4.360468,-4.315231,-4.3371453,-4.313636,-4.301378,-4.3216834,-4.342755,-4.4014077,-4.428228,-4.0806937,-3.374401,-3.760507,-3.7858229,-3.826923,-3.761032,-4.0104384,-4.150391,-4.157514,-4.2803917,-4.260541,-4.229552,-4.1988964,-4.1703506,-4.2727747,-4.2857156,-4.3093953,-4.258291,-4.2136636,-4.1814094,-4.182412,-3.3351922,-4.3395557,-4.395661,-4.397065,-4.220034,-4.2482743,-4.1164975,-4.158914,-3.3274565,-4.244075,-4.323034,-4.02411,-4.0508103,-4.220713,-4.2241864,-4.0736074,-4.1005607,-4.141294,-4.1339507,-4.119655,-4.1532044,-4.155641,-4.1673574,-3.708403,-4.3127704,-4.317263,-4.3639007,-4.3485665,-4.333813,-4.2158914,-4.215421,-4.100288,-4.053879,-4.131041,-4.2238226,-4.116812,-4.094311,-4.022774,-3.9823565,-3.8328114,-3.942227,-4.113211,-4.051825,-4.027315,-3.9828553,-3.920898,-3.8743534,-3.908774,-3.962502,-3.980157,-4.06871,-4.131456,-4.1387844,-4.1864514,-4.250374,-3.957006,-4.1987453,-4.047745,-2.011633,-3.3681104,-3.2708259,-3.5638313,-3.8586001,-3.996758,-3.8539786,-3.887353,-3.9467092,-3.9581065,-3.9551053,-3.9253716,-3.9872565,-3.4135897,-4.0480065,-4.0724883,-4.0346265,-4.011746,-3.9112048,-3.929788,-3.8316617,-3.8953733,-3.806138,-3.9482317,-3.9268904,-3.9492035,-3.945251,-3.9579425,-3.9636164,-3.9745355,-3.9793682,-3.9883876,-3.98988,-3.995308,-4.075639,-4.1035476,-4.0949416,-4.1037736,-4.0737214,-4.0287943,-4.100676
+0.13337052,-0.09220967,-1.2618499,-2.089764,-2.4522114,-3.115365,-3.3758051,-3.4033585,-3.3891587,-3.5710936,-3.3868117,-3.5054631,-3.468829,-3.4494667,-2.851195,-3.5236707,-3.5776863,-3.6029763,-3.6591089,-3.5668128,-3.5947876,-3.6588173,-3.528038,-3.6027992,-3.8877492,-3.4228153,-3.6680098,-3.8880658,-3.9027286,-3.8878875,-3.8428502,-3.7350945,-3.665475,-3.5971618,-3.5810788,-3.595117,-3.7702737,-3.824596,-3.6228564,-2.712282,-3.0138266,-3.0088599,-3.3336015,-3.5559192,-3.7018108,-3.658189,-3.7774844,-3.8612885,-3.83074,-3.927936,-3.87119,-3.7344942,-3.8545938,-3.8365054,-3.9319806,-2.8975735,-3.550722,-3.499079,-3.7858968,-3.5452428,-3.1344643,-3.2733133,-3.6638556,-3.6686044,-3.823977,-3.7722178,-3.7053213,-3.7940955,-3.702372,-3.597178,-3.8875651,-3.3444839,-3.4278471,-4.054897,-4.0266585,-3.9829655,-2.980195,-3.7908492,-3.7921119,-3.315474,-3.6853883,-3.952983,-3.0486608,-3.6128216,-3.458356,-3.289456,-3.5324018,-3.4783316,-3.6785114,-3.426386,-3.777017,-3.6848888,-3.847865,-3.5786538,-3.923905,-3.4206376,-3.8838186,-3.6163914,-4.0908346,-3.4880981,-3.966086,-3.42995,-3.174898,-3.4430513,-3.7017093,-3.8128858,-3.8011026,-3.6680872,-3.7460184,-3.7498593,-3.7035613,-3.8429785,-3.7960882,-3.5995085,-3.7550263,-3.75946,-3.561285,-3.7655272,-3.9232817,-3.8460011,-3.854331,-3.6656518,-3.9554172,-4.011729,-3.3938193,-3.651641,-3.964665,-4.0657983,-4.0215106,-3.1497288,-3.8607936,-3.5577536,-3.8474822,-4.0505557,-3.9039826,-3.650567,-3.747147,-3.9701877,-3.8060389,-3.659902,-3.9464784,-3.9946847,-4.0158296,-3.962295,-3.902059,-3.5300581,-4.0209594,-3.7894387,-4.073172,-4.1597004,-4.1458325,-4.1969743,-4.2050643,-4.0888734,-4.0318866,-4.056955,-4.1940913,-3.2278357,-3.8608918,-3.616396,-3.8688416,-3.4988582,-4.000482,-4.1656594,-4.327492,-4.267647,-4.2645173,-4.3232007,-4.340724,-4.3376765,-4.194139,-4.28,-4.488351,-4.3760104,-4.2630315,-3.334494,-3.7876854,-3.8039708,-4.024745,-4.289305,-4.287742,-4.43899,-4.4563074,-4.4487886,-4.425726,-3.103351,-3.6162322,-3.3688254,-3.1657915,-2.907477,-2.5797548,-2.6377583,-2.6327372,-3.0805874,-2.9295173,-2.8965254,-3.1221228,-3.365728,-3.7695165,-3.8939261,-4.1324024,-4.0599437,-4.191247,-4.2941103,-3.9167018,-4.128762,-4.207298,-4.439536,-4.366191,-4.489119,-4.543251,-4.484645,-4.4826083,-4.1996202,-4.3047004,-4.268192,-4.4095087,-4.4500513,-4.525254,-4.5700617,-4.541508,-4.687912,-4.6716113,-4.538359,-4.5239816,-4.676562,-4.6872125,-4.7506504,-4.6576505,-4.6732244,-4.3618684,-4.3652024,-4.2726045,-4.10847,-4.023845,-3.9250484,-3.858643,-3.770331,-3.7718945,-3.7390995,-3.6705296,-3.5400321,-3.1321003,-3.2121701,-3.094327,-3.145536,-3.1022184,-3.090674,-2.8176332,-2.9111686,-2.9499383,-2.9528174,-2.9513333,-2.970175,-2.9304585,-2.9711313,-2.9863386,-2.9466894,-3.0077357,-2.986278,-2.982027,-2.9923675,-2.906147,-2.9104357,-2.843297,-2.895524,-2.9457347,-2.8967774,-2.8403032,-2.8271718,-2.804554,-2.838192,-2.8669324,-2.8691325,-2.899506,-2.8164067,-2.8461251,-2.8220224,-2.8589468,-2.841195,-2.8026466,-2.8336658,-2.8499045,-2.804642,-2.7875752,-2.8605714,-2.8745687,-2.893476,-2.8632078,-2.8410764,-2.7968009,-2.7368493,-2.6046877,-2.5918036,-2.6530218,-2.5658057,-2.5680344,-2.5699568,-2.465046,-2.4479153,-2.542633,-2.4976587,-2.4247036,-2.3367198,-2.298098,-2.4229007,-2.482421,-2.5494099,-2.5381238,-2.4645185,-2.409614,-2.3681376,-2.3586938,-2.4848852,-2.5527844,-2.2271569,-2.2819347,-2.351141,-2.2939334,-2.2206912,-1.9977031,-1.7152493,-1.572227,-1.6765168,-1.594984,-1.5085161,-1.2923331,-1.381623,-1.4280295,-1.561867,-1.6390791,-1.6294935,-1.6399059,-1.6932371,-1.6135259,-1.6035638,-1.606883,-1.3710687,-1.2475381,-1.3765068,-1.5080106,-1.7096906,-1.7163861,-1.8806477,-1.9118109,-1.8925717,-1.8187828,-1.7071223,-1.4110646,-1.084748,-0.8942079,-0.7618719,-0.284365,-0.23588526,-0.85315937,-0.8876782,-0.032171965,0.069324285,0.5302726,1.0208409,1.1982629,1.0845814,0.38721138,-0.57186496,-0.91099507
+-0.4731145,-1.4279814,-1.7463634,-2.1710386,-2.3312292,-2.494283,-2.6538658,-2.8291101,-2.8954449,-2.8173056,-3.1108146,-3.0246594,-3.0040793,-3.0691714,-2.1472402,-3.2452807,-3.4209003,-3.2472124,-3.384087,-3.5634768,-3.5191298,-3.6259296,-3.5280304,-2.7007904,-3.1299415,-3.3483396,-3.348793,-3.4554195,-3.4694197,-3.57634,-3.6918178,-3.8243937,-3.8432808,-3.9879556,-4.0985622,-3.9911876,-4.053932,-4.1804547,-4.105569,-2.573701,-3.3761322,-3.6743836,-3.748599,-3.8557267,-4.039376,-3.9921918,-4.1487703,-4.359982,-4.293654,-4.1545653,-4.0800443,-3.9282517,-3.993629,-4.220531,-3.7523413,-4.1874585,-4.2464304,-4.054251,-4.466074,-2.9600358,-3.5971866,-4.0427957,-4.209533,-4.2734113,-4.341016,-4.2546234,-4.192699,-4.1999726,-4.1976113,-4.1650777,-4.0688424,-3.8297315,-2.9466248,-4.1195245,-4.2599955,-4.072889,-3.447325,-4.079411,-4.3305254,-3.5392401,-4.1743135,-4.35296,-3.9134803,-4.442887,-4.4536347,-2.342381,-3.2193468,-4.0516977,-3.9880862,-3.9097195,-4.007959,-3.9649482,-4.0769515,-3.4338562,-4.2290983,-4.1996875,-4.2080183,-4.4533,-4.5072613,-4.2575336,-3.8277864,-4.1090317,-4.1867433,-4.3281474,-3.4737625,-4.1743474,-3.4830348,-3.6315665,-4.171115,-4.1722608,-4.2294326,-4.3241134,-4.37802,-4.240697,-4.199405,-4.200258,-4.1808043,-2.6943688,-4.1271424,-4.394106,-4.455063,-4.4166665,-4.238256,-4.3924556,-4.3383822,-4.155206,-4.2209954,-4.208922,-4.255422,-3.4237885,-4.2526565,-4.384702,-4.318749,-4.331635,-4.19567,-4.333583,-3.8810048,-4.174885,-4.350718,-4.2788925,-3.601002,-4.2629113,-4.4189353,-4.4149957,-4.332037,-4.3363757,-4.3089833,-4.326504,-4.3413854,-4.362386,-4.3348975,-4.3668494,-4.4257355,-4.522898,-4.5175614,-4.3924136,-4.4179015,-2.828829,-4.0417523,-3.7553668,-4.10848,-4.144192,-4.2846465,-4.2298293,-4.153047,-4.3170376,-4.371197,-4.210431,-4.204118,-4.3094897,-4.156986,-4.238669,-4.286184,-2.7826972,-3.4016533,-3.0757318,-3.43792,-3.8151584,-3.931522,-4.1780944,-4.1171784,-4.2001333,-4.240565,-4.2879252,-3.9238377,-3.3764338,-3.6613355,-3.6139991,-3.6016455,-3.6280332,-3.7650256,-3.9753098,-3.9394841,-3.9885464,-4.007489,-4.0997953,-4.1124444,-4.138964,-4.188727,-4.2009044,-4.2193933,-4.3139477,-4.3454366,-4.269312,-4.310716,-4.326214,-4.273214,-4.281593,-4.3409004,-4.3022485,-4.207021,-4.234203,-4.3333,-3.452475,-4.0719295,-4.243322,-4.3455873,-4.406965,-4.419846,-4.425304,-4.387423,-4.489416,-4.469274,-4.4270353,-4.4325004,-4.4671445,-4.415038,-4.4328113,-4.327461,-4.3431563,-4.2173777,-4.2564926,-4.2968087,-4.386224,-4.452595,-4.4441404,-4.2217946,-4.185926,-4.224736,-4.286614,-4.1809754,-4.126805,-4.0458875,-4.0824866,-4.039062,-3.9651766,-3.9829125,-3.8726068,-3.3422441,-3.0286543,-2.9301753,-2.8814309,-2.7692242,-2.5049715,-2.452014,-2.4425082,-2.6039062,-2.6525254,-2.6195924,-2.6765723,-2.5688457,-2.6216178,-2.926487,-3.0380418,-3.0362396,-2.946806,-2.9406219,-2.884322,-2.7758756,-2.6473672,-2.803073,-2.9821863,-3.006935,-2.9468362,-2.9584103,-2.9076655,-2.8325722,-2.7571816,-2.7998037,-2.8036332,-2.815108,-2.7272491,-2.7462587,-2.714035,-2.7029843,-2.633694,-2.7210507,-2.6668398,-2.8512244,-2.914133,-2.9549956,-2.9851608,-2.9955842,-2.9698234,-2.9806185,-2.8856256,-2.9116015,-2.9162846,-2.8819752,-2.9103208,-2.8908472,-2.9562383,-2.9313822,-2.903236,-2.9637518,-2.839405,-2.8539867,-2.819127,-2.753301,-2.763022,-2.798922,-2.812314,-2.6005108,-2.6105785,-2.6880097,-2.7591028,-2.7616622,-2.8423946,-2.8581157,-2.7994347,-2.7871463,-2.7790294,-2.7360091,-2.690741,-2.5642986,-2.5730782,-2.44802,-2.348002,-2.2630162,-2.2363997,-2.0626886,-2.0367446,-2.0973282,-1.9710002,-2.0042439,-1.996001,-1.9781375,-1.9756255,-1.9005327,-1.8901112,-1.8380592,-1.9175601,-1.9217992,-1.8745689,-1.8717532,-1.9602087,-1.847219,-1.7714128,-1.7114005,-1.519758,-1.2188947,-1.1371975,-0.985223,-1.0889485,-1.5657697,-1.5035965,-1.1232414,-1.6517792,-2.4205136,-2.9852805,-3.093355,-3.1843312,-3.3796935,-3.333493,-3.216704
+-0.3380468,-1.4290442,-2.0131004,-2.4259367,-2.0688093,-2.6825457,-2.8907907,-3.1129746,-3.1946964,-3.1420598,-3.5252063,-3.363635,-3.4314167,-3.435204,-2.9841309,-3.1275551,-3.604541,-2.9022593,-3.1592774,-3.269724,-3.484655,-3.5875485,-3.5098934,-2.4183083,-3.259997,-3.577435,-3.3918786,-3.3162336,-3.384161,-3.2877917,-3.2999005,-3.3467445,-3.5086713,-3.6522775,-3.8089604,-3.8698416,-3.8127275,-3.8774743,-3.7844324,-2.550414,-3.0949671,-3.3417425,-3.2896175,-3.3418598,-3.562972,-3.5393267,-3.7112098,-3.925024,-4.020668,-4.0176454,-3.7113733,-3.4950469,-4.015326,-4.1844225,-2.9633472,-3.8838248,-4.0798364,-4.159432,-4.12951,-3.2080731,-3.0793962,-3.5645928,-3.957909,-3.8765712,-4.027679,-4.092939,-4.0718684,-4.113438,-4.16204,-4.176272,-3.264666,-3.8241382,-3.5344012,-3.4327395,-3.329883,-3.9152184,-4.0246854,-3.7324224,-3.6187654,-3.7554574,-4.100108,-4.265028,-4.1576705,-4.194938,-4.2962337,-3.958385,-4.1624775,-4.2652397,-4.2939863,-4.321098,-4.2489567,-4.2124896,-3.5719523,-3.7389083,-4.1423764,-4.298684,-4.038907,-4.173702,-4.428798,-4.463062,-4.1395946,-2.8139434,-3.8766026,-4.1740823,-4.1873755,-4.3649535,-2.6742105,-4.011569,-4.3312526,-4.628016,-4.6314178,-4.767466,-4.878208,-4.567818,-4.5850573,-4.769189,-4.1383605,-3.844211,-3.9371781,-4.402257,-4.6317267,-4.7322335,-4.100666,-4.5477395,-4.711185,-4.5697465,-4.7671523,-4.827876,-4.7010427,-3.8434834,-4.5226398,-4.5514646,-4.5504184,-4.6120915,-4.684975,-4.8792014,-4.6549044,-4.7595487,-4.8393183,-4.8052278,-2.3750618,-3.8598175,-4.383503,-4.5738816,-4.493133,-4.608337,-4.643314,-4.5962114,-4.6920276,-4.717325,-4.868603,-4.8679748,-4.8165526,-4.7525563,-4.8139257,-4.79725,-1.9510379,-3.6464694,-3.9749722,-4.1177907,-4.279885,-4.2650285,-4.313946,-4.47234,-4.453737,-4.297419,-4.3090706,-4.3140497,-4.1404834,-4.44992,-4.4461923,-4.5160503,-4.723267,-4.4766083,-4.0299687,-3.4432564,-2.9464345,-3.3587408,-3.6872704,-3.8865647,-4.2313876,-4.42276,-4.6120667,-4.710897,-4.697043,-4.1157737,-3.455459,-3.561575,-3.7065487,-3.9160671,-4.0543094,-4.1232834,-4.235067,-3.9007459,-3.8942919,-4.1253476,-4.2192955,-4.162972,-4.2594476,-4.0912356,-3.8752227,-3.1831412,-3.840807,-4.0936995,-4.2686677,-4.3051896,-4.3778315,-4.396761,-4.4127197,-4.466108,-4.4900036,-4.217807,-4.3023524,-4.367129,-4.262415,-4.3755364,-4.4041753,-4.510284,-4.525969,-4.553887,-4.519792,-4.644323,-4.590842,-4.5708146,-4.693638,-4.6657887,-4.5781584,-4.580054,-4.6306453,-4.5652084,-4.486608,-4.396377,-4.43959,-4.4492903,-4.627321,-4.547321,-4.4533863,-4.442785,-4.4373417,-4.4806895,-4.4878297,-4.451596,-3.5798388,-4.0647674,-3.9298878,-3.8380198,-3.8130517,-3.7429981,-3.6575837,-3.4805434,-3.3594992,-3.2506099,-3.1780844,-3.1547256,-3.1718614,-3.1388817,-3.1455526,-3.1714683,-3.1558402,-3.103864,-3.0073514,-3.0495582,-3.2133706,-3.2980227,-3.3273354,-3.350462,-3.3442545,-3.2477937,-3.3002944,-3.2377675,-2.9981854,-3.154996,-3.2855318,-3.1049662,-3.2568464,-3.20478,-3.1796114,-3.090625,-3.063724,-3.0939102,-3.1033208,-3.0197923,-3.051405,-3.0238862,-3.0693464,-2.9236922,-2.87178,-2.8822074,-2.9340038,-2.9755287,-3.0186338,-3.0024123,-2.7319903,-2.8547082,-2.9390173,-2.9189963,-3.0654838,-3.019898,-3.060213,-3.0896327,-3.0066578,-2.9696732,-2.8668447,-2.7793417,-2.7955596,-2.8829398,-3.0349312,-3.0024264,-2.8298972,-2.946249,-2.8626919,-2.8451664,-2.8546484,-2.8118293,-2.7931182,-2.2800813,-2.5257607,-2.7301192,-2.7448359,-2.7274966,-2.611019,-2.4780278,-2.406715,-2.4590533,-2.315762,-2.1557171,-2.1186867,-2.0846624,-2.0771492,-1.9919388,-2.0066795,-2.1378007,-2.0701368,-2.0323005,-2.1571803,-2.0967283,-1.8456793,-1.780592,-1.852735,-2.1242032,-2.2904263,-2.4013822,-2.4444966,-2.2090144,-1.992753,-2.0925512,-2.005542,-1.782789,-1.6435518,-1.467587,-1.634165,-2.0155785,-2.6617007,-2.9196615,-2.9215384,-2.904787,-2.9272885,-3.209045,-3.3339577,-3.4069357,-3.4569483,-3.4654722,-3.642024,-3.5372381,-3.0782952
+0.030705452,-0.8951091,-1.6249733,-2.1642725,-2.243299,-2.4975414,-2.3838494,-2.5297909,-2.6911528,-2.6411595,-2.7826164,-2.8882742,-2.9973557,-3.035705,-3.099319,-3.0012698,-2.7352695,-2.638282,-2.88335,-3.0443144,-3.3816233,-3.4061604,-3.4225144,-2.675362,-2.9130807,-3.403406,-3.2118428,-3.2198863,-3.2246976,-3.3379905,-3.1099396,-3.1758091,-3.1549764,-3.2300622,-3.3298097,-3.3281364,-3.288646,-3.3984947,-3.4087648,-2.5423522,-3.1159132,-3.4314892,-3.1940322,-3.518746,-3.5716677,-3.3658895,-3.5263953,-3.578091,-3.580793,-3.6219912,-3.4477036,-3.5140438,-3.6249557,-3.8272843,-3.1222339,-3.7036624,-3.9436316,-3.8943224,-3.6214437,-3.6610634,-3.6863146,-3.8319278,-3.8956456,-3.6765864,-3.701202,-3.74781,-3.6762586,-3.6776702,-3.5944386,-3.5524585,-3.2257547,-3.4895244,-2.4799204,-3.0111027,-3.5540886,-3.6625133,-3.6503654,-3.5619555,-2.8696299,-3.5640454,-3.693417,-3.7582426,-3.7125306,-3.6273336,-3.6756983,-3.590188,-3.6702971,-3.702567,-3.568512,-3.602021,-3.5597205,-3.45541,-3.2730732,-3.5819054,-3.586143,-3.793737,-3.8468256,-3.5873246,-3.9058108,-3.8924346,-3.8682346,-3.748837,-3.777474,-3.9964466,-3.9966998,-3.9922156,-3.0269856,-3.56418,-3.8742347,-4.1165414,-4.176143,-4.17079,-4.180412,-4.0128217,-4.1606584,-4.1956534,-4.140594,-4.06379,-2.931226,-3.7791286,-3.8954053,-3.899024,-4.093245,-3.8419604,-4.2888403,-4.2530746,-4.3039927,-4.3056326,-4.1459565,-2.3369663,-3.5805538,-4.0527167,-4.14516,-4.2070146,-4.2771277,-4.311421,-4.342671,-4.230211,-4.3312826,-3.7203932,-2.5689578,-3.5287766,-3.8704386,-4.0971327,-4.181743,-4.2396297,-4.252866,-4.3034253,-4.4105372,-4.3907275,-4.5221405,-4.447599,-4.3121467,-4.277353,-3.795877,-4.135465,-3.9583063,-3.5571089,-4.0731483,-4.211283,-4.301003,-3.917749,-4.091889,-4.292113,-4.303367,-3.6441865,-3.9359336,-4.1144433,-4.088413,-4.1664968,-4.301965,-4.400444,-4.4522867,-4.4521213,-4.409868,-3.7395349,-2.4048858,-3.5050302,-3.6705792,-3.9648728,-4.0886765,-4.1794376,-4.267369,-4.2874923,-4.320398,-3.6429718,-3.6235383,-3.8426776,-4.0271287,-4.106117,-4.152514,-4.157247,-4.124427,-4.2611823,-3.9346294,-4.132884,-4.104741,-4.2854652,-4.1810145,-4.238772,-4.0725975,-4.2636924,-4.2101765,-4.239817,-4.343935,-4.396438,-4.435304,-4.410703,-4.303483,-4.217432,-4.3367887,-4.052447,-3.9418073,-4.0661335,-4.0980687,-4.2232656,-4.1756587,-4.247359,-4.2844853,-4.2825084,-4.3577685,-4.3229027,-4.2657285,-4.3512464,-4.3343825,-4.2465677,-4.30395,-4.2863193,-4.379615,-4.3706284,-3.2958956,-3.7225451,-3.5154088,-3.6136703,-3.784007,-3.8530521,-3.7996259,-3.8008695,-3.7067456,-3.7332072,-3.8336787,-3.8430505,-3.6105616,-3.495083,-3.3464065,-3.3702073,-3.266302,-3.2379773,-3.0709615,-2.946171,-2.7874784,-2.6563354,-2.7035546,-2.7503345,-2.7077909,-2.8452554,-2.7893586,-2.7535112,-2.8258505,-2.717282,-2.5793576,-2.6278067,-2.7602549,-2.8417866,-2.8346758,-2.8076644,-2.843336,-2.8886576,-3.0026464,-2.7084205,-2.6734867,-2.746783,-2.8343163,-2.691228,-2.7910266,-2.773601,-2.9176013,-2.8208346,-2.8547592,-2.853454,-2.9189715,-2.8714252,-2.9263892,-2.739841,-2.8036938,-2.9096484,-2.755667,-2.730626,-2.7060804,-2.7062984,-2.7150505,-2.6464486,-2.4612057,-2.5220742,-2.5557346,-2.505692,-2.5641673,-2.6370447,-2.7316473,-2.6720912,-2.640317,-2.590835,-2.4317732,-2.2649622,-2.2314043,-2.4097872,-2.6057239,-2.625569,-2.48745,-2.2845507,-2.3539224,-2.061664,-2.483285,-2.4129908,-2.130979,-1.8418756,-1.7472026,-1.9634964,-1.8521023,-1.8994937,-1.7715995,-1.7453344,-1.6836154,-1.7361646,-1.5861316,-1.5930479,-1.423676,-1.3176639,-1.6435931,-1.7351122,-1.6589181,-1.6433139,-1.6008892,-1.5981476,-1.6524532,-1.5480123,-1.344914,-1.3045619,-1.5030131,-1.805115,-2.0238304,-2.070523,-2.184427,-1.9531584,-1.7833354,-1.7925925,-1.8972456,-1.8005612,-1.8345187,-2.0664818,-2.437924,-2.5568643,-2.584659,-2.7256215,-2.5927033,-2.7113767,-2.7574215,-2.8824587,-3.279833,-3.2650247,-3.2777767,-3.34243,-3.371635,-3.3628738,-3.3247237
+0.26369873,0.15058613,-0.7795926,-1.5617502,-1.795104,-1.8476133,-1.7807298,-2.0499835,-2.1945553,-2.052302,-2.2178297,-2.3673787,-2.4853232,-2.580084,-2.5130148,-2.1164892,-1.9266863,-2.2335286,-2.3996406,-2.6793623,-2.8241038,-2.8873749,-2.8758783,-2.223384,-2.806091,-2.4685447,-2.3878756,-2.6273346,-2.7584229,-2.7127569,-2.659896,-2.8029141,-2.90003,-3.0034695,-3.1655004,-3.0993466,-2.4928846,-2.960796,-3.0507936,-2.9985619,-3.0655866,-3.2907376,-3.1744368,-3.2219672,-3.2284179,-2.5888891,-2.904294,-3.2219186,-3.340354,-3.3212328,-3.2885985,-3.12818,-3.2181275,-3.4032745,-3.2013395,-3.2800732,-3.2455022,-3.186557,-3.2033548,-3.0637133,-2.8118587,-3.338495,-3.2833185,-3.0962887,-3.09778,-3.0917826,-3.0733593,-3.0483403,-3.0364027,-3.0828128,-2.9749105,-3.04474,-3.067145,-2.2221737,-2.6683774,-3.240479,-3.3281965,-3.223366,-3.1358242,-3.129659,-3.0689733,-3.1048713,-3.1622024,-3.069014,-3.1363826,-3.218015,-3.2193866,-3.2170315,-3.2092104,-3.2317035,-2.2980866,-2.6458998,-3.1711078,-3.2797418,-3.3176484,-3.2760637,-3.3350616,-3.3246326,-3.3717022,-3.387762,-3.4505405,-3.4790716,-3.49173,-3.5202467,-3.5265398,-3.488192,-3.5211983,-3.5317872,-3.5273576,-3.5532737,-3.579102,-3.58667,-3.6016955,-3.315624,-3.4151268,-3.473677,-3.491715,-3.4838407,-3.3399165,-3.2002785,-3.201377,-3.384494,-3.3831873,-3.3764093,-3.427374,-3.4217503,-3.4395118,-3.4331946,-3.4272292,-3.309277,-3.3007088,-3.3570228,-3.0298247,-3.039265,-3.29118,-3.2957277,-3.250669,-2.7970233,-3.1630368,-3.2173243,-2.2891197,-3.1754022,-3.287203,-3.3831706,-3.4043872,-3.4514651,-2.7074351,-3.3112898,-3.453566,-3.3986464,-3.3965676,-3.3451486,-3.3360972,-3.3077133,-3.3381217,-3.3913183,-3.1648135,-2.9440665,-3.276065,-3.3267546,-3.2612946,-3.1323926,-3.2824912,-3.2669861,-3.3171678,-2.79767,-2.9482312,-3.076736,-3.240384,-3.3401098,-3.351116,-3.3723147,-3.3311782,-3.3586054,-3.3108468,-2.9359536,-2.0987813,-2.8296514,-3.1459558,-3.2354012,-3.2730758,-3.33343,-3.379562,-3.3227258,-3.290225,-3.2643528,-3.1914573,-3.2433834,-3.0697675,-3.1577468,-3.262672,-3.281863,-3.2775526,-3.356567,-3.2044487,-3.3039792,-3.3367643,-3.3670182,-3.4069452,-3.2754073,-3.281243,-3.3692312,-3.2964318,-3.3773675,-3.369327,-3.4649458,-3.4775918,-3.4829364,-3.4576936,-3.4549048,-3.4242504,-3.4842434,-3.4434009,-3.4100666,-3.3461878,-3.4503765,-3.4074266,-3.4045067,-3.4432106,-3.450582,-3.5164976,-3.498362,-3.4930882,-3.5439367,-3.4992452,-3.4512105,-3.4882555,-3.4961634,-3.511061,-3.4519997,-3.265339,-2.9190874,-2.6754653,-2.88044,-3.1153762,-2.3205895,-2.840302,-2.6984115,-2.6288714,-2.56745,-2.5751638,-2.54942,-2.406177,-2.2867274,-2.1397767,-2.1839476,-2.1457155,-2.2349715,-1.9700186,-1.8222787,-1.7514391,-1.6577675,-1.6969163,-1.7819257,-1.9809074,-1.9578109,-1.8094046,-1.7579236,-1.8489661,-1.7408578,-1.5452976,-1.6977296,-1.9047766,-2.1492698,-2.1658015,-1.9659235,-2.0463471,-2.1178389,-1.9180717,-1.7701554,-1.9563446,-2.1164193,-1.9734516,-2.109915,-1.7960854,-1.9140251,-1.7688861,-1.7687624,-1.8174,-1.8498235,-1.93258,-2.033043,-2.0925946,-2.1636508,-2.114865,-2.105196,-2.1203866,-2.1351695,-2.11835,-2.1431985,-2.1862202,-2.1927125,-2.193573,-2.2058208,-2.1409264,-2.131605,-2.1307402,-2.0989442,-2.1137848,-2.1221907,-2.2255752,-2.2136297,-2.1635273,-2.1092064,-2.1069345,-2.037038,-2.1316526,-2.2449098,-2.163721,-2.0939257,-2.1145852,-2.113974,-2.0313728,-2.007052,-1.9902749,-2.0635486,-2.0083492,-1.8506014,-1.8795657,-1.8649075,-1.898392,-1.9342422,-1.8811159,-1.8686333,-1.8555658,-1.9935901,-2.1257677,-2.2364373,-1.791863,-1.78686,-1.7792366,-1.7673826,-1.6907413,-1.8889785,-1.9202116,-1.9683399,-1.994452,-1.9791431,-2.0174503,-1.7597382,-1.8242455,-1.9229419,-1.9810956,-1.8575315,-1.770462,-2.0815277,-2.1798527,-2.3517585,-2.495222,-2.5928392,-2.7099397,-2.8296788,-2.880087,-2.9196258,-2.6457243,-2.838957,-2.955183,-2.9442654,-3.067919,-2.6483297,-2.9113538,-2.8596177,-2.874589,-3.1041331,-2.525823
+0.6028452,0.49613428,0.5843946,0.7028011,0.54099107,0.08167434,-0.3677686,-0.97129637,-1.6103625,-2.2093434,-2.7906651,-2.8465376,-2.9039915,-3.0029006,-3.0332327,-2.9319313,-2.4383783,-2.542334,-2.4727464,-2.442252,-2.5552576,-2.6489751,-2.8839064,-2.595636,-3.1605322,-2.5352514,-2.4304307,-1.8782578,-1.5911479,-1.3002334,-1.2737083,-1.3682916,-1.2496738,-1.2657349,-1.6273477,-2.4753184,-2.6949527,-2.6367009,-3.1613169,-3.387813,-3.1765332,-3.15652,-3.3132997,-3.539307,-3.3906941,-3.0034065,-3.1298168,-3.3130598,-3.2554283,-3.4657273,-3.5512218,-3.4288754,-3.4863696,-3.6792736,-3.585342,-3.6613731,-3.6116457,-3.5858989,-3.6475906,-3.6618524,-2.9213715,-3.5707786,-3.6857777,-3.6423903,-3.6862745,-3.710915,-3.5551467,-3.8228564,-3.7504578,-3.7783294,-3.9248252,-3.700523,-2.8272614,-3.2812755,-3.7849483,-4.1348944,-4.1607027,-4.1499863,-3.990006,-3.8283944,-3.771593,-3.6357474,-3.608372,-3.5827656,-3.3490186,-3.5119748,-3.803945,-3.7473178,-3.6505325,-3.5489693,-3.5102105,-3.600774,-3.7222304,-3.7838793,-3.6777272,-3.5921068,-3.7564583,-3.6754608,-3.6110246,-3.625941,-3.4247782,-3.3879569,-3.4406533,-3.5205693,-3.6372895,-3.6639118,-3.648069,-3.6588705,-3.4255667,-3.564649,-3.533996,-3.6058254,-3.608777,-3.534532,-3.5830452,-3.6088035,-3.5948904,-3.690516,-3.6349967,-3.5510101,-3.6463864,-3.5913687,-3.6162958,-3.576623,-3.600631,-3.681132,-3.542336,-3.2971601,-3.3226876,-3.3951936,-3.6371017,-3.5931442,-3.6410027,-3.6961937,-3.5899208,-3.744186,-3.4792976,-3.5003958,-3.783267,-3.5852408,-3.590364,-3.8747625,-3.8716846,-3.6494434,-3.6193163,-3.6458323,-3.7374277,-3.6986518,-3.7112527,-3.617406,-3.6371496,-3.6328228,-3.5556803,-3.4912245,-3.46087,-3.48962,-3.1362696,-3.5338001,-3.6163447,-3.6398175,-3.4299731,-3.6180856,-3.584929,-3.507791,-3.4922755,-3.5929759,-3.7131357,-3.5401511,-3.7204947,-3.639156,-3.4710402,-3.5582738,-3.5227807,-3.620572,-3.6313124,-3.2461352,-2.7980464,-3.708027,-3.912208,-3.9389014,-3.8755207,-3.8459554,-3.856853,-3.874598,-3.8374805,-3.7331243,-3.4886365,-3.7212586,-3.6320105,-3.8066826,-3.8814325,-3.8649845,-3.8672967,-3.8240123,-3.9444418,-3.8860655,-3.7450223,-3.8827815,-3.8060474,-3.645164,-3.7608776,-3.40242,-3.7546601,-3.815267,-3.8399425,-3.9671497,-3.9722466,-3.8963861,-3.9876666,-4.0088625,-3.978005,-3.9310832,-4.0382047,-3.8914828,-3.787125,-3.4465077,-4.0001526,-4.0247173,-4.094645,-4.099856,-4.175366,-4.170809,-4.1745076,-4.247322,-4.123834,-4.175144,-4.2231927,-4.1553016,-4.146097,-4.181085,-3.4661803,-3.284761,-3.2867413,-3.6266658,-3.7614026,-2.6237888,-2.8113651,-2.6466634,-2.6276698,-2.7419043,-2.700966,-2.489791,-2.3455653,-2.3863027,-2.360728,-2.3167992,-2.3364663,-2.3953962,-2.4780915,-2.2622445,-2.2177417,-2.2213726,-2.319416,-2.3477407,-2.2839675,-2.3007307,-2.3380687,-2.303934,-1.8107357,-1.8803153,-1.7842164,-2.0750704,-2.2029,-2.4153643,-2.3815732,-2.213089,-2.3366172,-2.269059,-2.0016654,-2.171791,-2.2582092,-2.3348293,-2.316655,-2.4555337,-2.3626463,-2.3386645,-2.1024282,-2.0647986,-1.8478603,-1.6913717,-1.9181042,-1.9773378,-2.0733483,-1.7822394,-1.7205625,-1.4906583,-1.6726973,-1.7012827,-1.600699,-1.7514431,-1.7772961,-1.8515155,-2.0163317,-2.0674765,-1.937808,-1.9171228,-1.9151993,-1.5588481,-1.4578297,-1.5886097,-1.7308223,-1.8231814,-1.884964,-1.9263911,-1.9696956,-1.9800248,-1.9041679,-1.7289956,-1.7754197,-1.8669412,-1.9239874,-1.9068613,-1.808301,-1.6842952,-1.7256529,-1.5507627,-1.3151298,-1.5184155,-1.4946427,-1.5560348,-1.5687656,-1.5343642,-1.5801036,-1.4109163,-1.2322979,-1.2858868,-1.1506281,-1.1902676,-1.3398421,-1.448096,-1.543282,-1.6066833,-1.5309947,-1.518014,-1.6516325,-1.5653121,-1.3827505,-1.1903932,-1.0530612,-1.2746756,-1.5585306,-1.2467027,-0.98376685,-0.7244938,-0.6465776,-0.6099417,-0.7988238,-0.42807275,0.12076166,0.27862284,0.3455907,0.64958245,0.9660212,0.79872423,0.20008993,-0.5114718,-1.0082965,-1.4747298,-2.0618646,-2.035313,-2.4381886,-2.2406876,-2.4045963,-2.0719204,-1.872694
+0.7090217,0.22464985,-0.3921954,-0.85660595,-1.4508905,-2.000224,-2.4378114,-2.8283095,-2.9397926,-3.1799662,-3.2715664,-3.5292943,-3.7223983,-3.9234061,-3.9856777,-3.22279,-2.7382798,-2.2788095,-2.2286067,-2.3845057,-2.3845859,-2.5119781,-2.4979217,-2.656989,-2.8287168,-2.7415357,-2.6872025,-2.348391,-1.8506701,-2.2499137,-2.2104692,-2.287264,-2.3059483,-2.5347595,-2.9382703,-3.5083973,-3.9716487,-4.0612226,-4.079646,-4.1647005,-4.3956175,-4.5628457,-4.6789126,-4.749624,-4.4516444,-4.183708,-3.4167888,-3.6227202,-3.900463,-4.1659217,-4.383797,-4.5796647,-4.7749567,-4.8797174,-4.8828516,-4.6829996,-4.302132,-4.4959106,-4.599023,-4.766875,-4.7608795,-4.5315747,-4.485542,-4.631906,-4.6463943,-4.5631742,-4.3335376,-4.2797856,-4.579369,-4.5847845,-4.5638986,-4.7771435,-4.459796,-4.16956,-4.541331,-4.8622017,-4.889503,-4.7391124,-4.6708245,-4.653578,-4.547676,-3.058633,-4.035173,-4.574269,-4.8056664,-4.7269597,-4.5773406,-4.7028036,-4.8536644,-4.6530156,-4.6498265,-3.9284163,-4.350248,-4.4471846,-4.609346,-4.6347313,-4.7067018,-4.622935,-4.425157,-4.51662,-4.4355884,-4.3124824,-4.3254437,-4.256303,-4.1699853,-4.148826,-4.2264857,-4.1868777,-4.1371136,-4.038347,-4.0844374,-4.1217027,-4.1829247,-4.3292828,-4.500956,-4.4719777,-4.451911,-4.3968406,-4.3896523,-4.273212,-4.2611465,-4.2757955,-4.2437663,-4.3379436,-4.186479,-4.051434,-3.930262,-4.3932137,-4.492165,-4.1430783,-4.6585536,-4.660315,-4.663463,-4.57076,-4.5208383,-4.523803,-4.634409,-4.518457,-4.1882634,-4.417179,-4.544686,-4.472215,-4.6999345,-4.524671,-4.442349,-3.5949636,-4.6122923,-4.732717,-4.7383866,-4.696792,-3.3473177,-4.1391883,-4.5193596,-4.6542163,-4.4338164,-4.5719986,-4.608483,-4.6366596,-4.643413,-4.535935,-4.448954,-4.353068,-4.321807,-4.2287726,-4.2190866,-4.0438895,-4.197329,-4.144303,-4.241382,-4.219171,-4.129326,-4.14743,-4.1870065,-4.099017,-4.1029587,-4.0274477,-4.0377374,-4.1885324,-4.288854,-4.295627,-4.276324,-4.3037934,-4.164791,-3.8078241,-4.292414,-3.994738,-4.19107,-4.351687,-4.2387347,-4.3597217,-4.416804,-4.3898687,-4.3283577,-4.2358594,-4.31596,-4.322299,-4.289093,-4.2270093,-4.1952944,-4.162211,-4.3873963,-4.4613557,-4.460218,-4.5226808,-4.517238,-4.514114,-4.525495,-4.510861,-4.526702,-4.5013366,-4.458205,-4.4584885,-4.499478,-4.426901,-4.5254073,-4.610393,-4.651451,-4.676318,-4.636912,-4.638922,-4.471257,-4.554952,-4.6370726,-4.592502,-4.5440826,-4.605678,-4.5575767,-4.553522,-4.598907,-4.5655675,-4.3970456,-4.0539794,-4.3506875,-4.5172067,-4.4985423,-3.9158792,-4.0251727,-3.9336395,-3.8988886,-3.930046,-3.8297896,-3.7600102,-3.6175618,-3.5425549,-3.5386457,-3.5350363,-3.4297507,-3.5844502,-3.828074,-3.5598533,-3.4015164,-3.256012,-3.529175,-3.7280812,-3.6514287,-3.6681464,-3.6407537,-3.6513758,-3.8602872,-3.8488965,-3.2375543,-3.3190277,-3.486898,-3.7328796,-3.7765932,-3.5588493,-3.627141,-3.627533,-3.5022333,-3.626699,-3.6713955,-3.8497224,-3.6976528,-3.8087993,-3.755364,-3.719232,-3.7540975,-3.7323132,-3.7553582,-3.3907542,-3.3207827,-3.6192691,-3.6912475,-3.6786723,-3.7198887,-3.828299,-3.763144,-3.6725078,-3.53753,-3.461453,-3.291854,-3.2878652,-3.470428,-3.528878,-3.4871955,-3.5139627,-3.513022,-3.5669527,-3.513648,-3.6154125,-3.5721352,-3.5218258,-3.5459142,-3.5042133,-3.5715177,-3.6648822,-3.6761773,-3.7027416,-3.6604276,-3.7726803,-3.6795988,-3.7448783,-3.8025908,-3.7644906,-3.6910968,-3.7333145,-3.6189532,-3.1051068,-3.0988548,-3.0483863,-3.1365771,-3.352659,-3.4422684,-3.3467937,-3.3297186,-3.2966483,-3.3678665,-3.3450947,-3.3102534,-3.3731852,-3.287817,-3.40268,-3.488234,-3.5010962,-3.5224457,-3.4501324,-3.5006275,-3.5398612,-3.5146203,-3.524276,-3.4067845,-3.313332,-3.3547459,-3.3824892,-3.262249,-3.2653422,-3.1342144,-3.192391,-3.3306434,-3.3727922,-3.349771,-3.4228237,-3.474783,-3.6032147,-3.6576996,-3.6511722,-3.5401998,-3.1018095,-3.6136672,-3.6202104,-3.547156,-3.4271011,-3.5742273,-3.6500735,-3.487052
+0.62058663,0.2444643,-0.3086627,-0.58142334,-1.234767,-1.760941,-2.6173034,-3.2163835,-3.4789767,-3.5873985,-3.7672167,-3.8915687,-3.892017,-4.002155,-4.070696,-2.8012924,-3.0823588,-2.4117022,-2.579684,-2.531013,-2.5414405,-2.9087281,-3.525571,-3.8793168,-4.205899,-3.9844775,-4.0904794,-3.7220283,-3.0927765,-3.1359632,-3.134449,-3.299531,-3.531208,-3.7720146,-3.9625096,-4.027676,-4.2157855,-4.257543,-4.2971807,-4.326677,-4.01197,-4.186343,-4.1930995,-4.287074,-4.090397,-4.267831,-3.8360305,-4.2881866,-4.202002,-4.2209888,-4.408194,-4.4003434,-4.446957,-4.481032,-4.390777,-4.325943,-3.209957,-3.9434428,-4.2805347,-4.3785076,-4.3585,-4.096213,-4.0971065,-4.1930094,-4.1521773,-4.232986,-4.092691,-4.3637443,-4.3011765,-4.3696733,-4.338401,-4.3518267,-4.317001,-4.3674645,-4.217194,-4.2612634,-4.1922445,-4.2651544,-4.2348876,-4.2755723,-4.2663617,-4.218225,-3.8716602,-4.1144705,-4.2700973,-4.208461,-4.46191,-4.39874,-4.3877006,-4.3803406,-3.6874027,-3.7251887,-4.1455407,-3.9249187,-4.13394,-4.390799,-4.52749,-4.495089,-4.515948,-4.491049,-4.4654346,-4.3776393,-4.4476433,-4.436314,-4.4579797,-4.496774,-4.536802,-4.539558,-4.448338,-4.4463854,-4.6198125,-4.718107,-4.7388916,-4.7058034,-4.697618,-4.745919,-4.794061,-4.7253947,-4.738258,-4.577993,-4.446164,-4.6793075,-4.2852435,-4.6951914,-4.629013,-3.7374444,-3.7984276,-4.4634037,-4.462421,-4.4883327,-4.3433022,-4.677115,-4.709229,-4.585736,-4.66456,-4.717646,-4.690015,-4.654779,-4.7487607,-4.8146534,-4.4298577,-4.6011405,-4.6598897,-4.8396926,-4.749291,-3.8014235,-4.683045,-4.792272,-4.822251,-4.804138,-4.543333,-4.511399,-4.6475863,-4.7312846,-4.509602,-4.5923686,-4.68029,-4.570479,-4.636399,-4.6225123,-4.580318,-4.5273623,-4.5110984,-4.5345807,-4.585987,-4.544982,-4.109328,-4.570949,-4.560522,-4.562363,-4.5539575,-4.630858,-4.6953435,-4.5941234,-4.3750815,-4.356526,-4.2996373,-4.536921,-4.6396413,-4.6598115,-4.646706,-4.683974,-4.605874,-4.5997176,-4.7085605,-4.520536,-4.421266,-4.719725,-4.7746773,-4.532356,-4.677247,-4.8021846,-4.635345,-4.6172595,-4.701404,-4.689954,-4.6587157,-4.5716014,-4.451341,-4.2584667,-4.544769,-4.5965095,-4.6414123,-4.653893,-4.627605,-4.672233,-4.6639333,-4.69403,-4.669246,-4.6453805,-4.6782165,-4.648816,-4.687197,-4.5340924,-4.654282,-4.738051,-4.739283,-4.728394,-4.1833925,-4.435784,-4.4196343,-4.568287,-4.5641794,-4.5354123,-4.4741163,-4.497433,-4.4227777,-4.3654513,-4.434898,-4.3996887,-4.1456394,-3.9202447,-3.8961592,-4.042825,-3.4860845,-3.4378777,-3.7367678,-3.6091983,-3.5376348,-3.41144,-1.9541488,-2.1278272,-2.045885,-2.1901243,-2.201849,-2.1022096,-2.125373,-2.1270373,-2.1932704,-2.1855266,-2.2288067,-2.1593332,-2.2059703,-2.1533258,-2.1875849,-2.2563238,-2.2258704,-2.2308722,-2.1802826,-2.1437519,-1.1165371,-1.4396231,-1.8803048,-2.1719244,-2.3218756,-1.9641232,-2.3948598,-2.508316,-2.4838405,-2.6933951,-2.7599032,-2.6698093,-2.6907191,-2.6244478,-2.6503232,-2.5876765,-2.5764837,-2.5862339,-2.5854964,-2.5056973,-2.0441463,-2.3506525,-2.4434605,-2.4032845,-2.586409,-2.5359647,-2.6290483,-2.6116834,-2.5080671,-2.55463,-2.6862226,-2.7072594,-2.575704,-2.6416183,-2.7014077,-2.6426992,-2.5895066,-2.4324164,-2.2016642,-2.5823097,-2.5453424,-2.647831,-2.5964808,-2.5292425,-2.4871914,-2.4775083,-2.45782,-2.55541,-2.5122478,-2.5112922,-2.534769,-2.5355988,-2.5879896,-2.7227948,-2.7217286,-2.660921,-2.7122436,-3.165239,-3.4818716,-3.4393773,-3.0044985,-2.804346,-2.745202,-2.9745903,-2.9679773,-3.0288339,-2.907077,-2.826298,-3.1870956,-3.0287018,-2.9999475,-2.8892882,-2.7208238,-2.9001393,-3.1429057,-2.8734314,-2.774222,-2.7342606,-2.7088,-2.7209463,-2.9751825,-2.7836633,-2.707511,-2.7385242,-2.8242476,-2.8042564,-2.8686538,-2.734658,-2.558067,-2.6307411,-2.5835004,-2.364566,-2.180462,-1.7903996,-1.6155148,-1.7924402,-2.2861454,-2.546625,-2.7282157,-2.7702906,-2.6783261,-2.71575,-2.7554693,-2.7394865,-2.6858673
+0.13058712,-0.47117501,-1.1571407,-1.2213032,-1.1336734,-1.065429,-1.2754045,-1.3054368,-1.5077052,-1.6917229,-1.9189909,-2.5153928,-2.8965619,-3.093594,-3.2706938,-2.3800225,-2.5741014,-2.1916845,-2.1444979,-2.236876,-2.1322083,-2.2930608,-2.5728865,-3.0865772,-3.4715927,-3.555874,-3.5710573,-3.6664858,-2.5006852,-2.9203296,-2.477243,-2.6438344,-2.7822137,-3.187971,-3.646161,-4.0714793,-4.028379,-4.08253,-4.0095778,-4.1435385,-4.2711415,-4.3811603,-4.373503,-4.4536557,-3.4337497,-3.115223,-3.9217553,-4.0572276,-4.080172,-4.2183666,-4.424213,-4.512269,-4.5801535,-4.6106153,-4.5942163,-4.6056542,-4.5800567,-4.4985394,-4.584008,-4.5663466,-4.208491,-4.33258,-4.4573016,-4.4730706,-4.269821,-4.4055133,-4.3919044,-4.523249,-4.5267143,-4.359328,-4.4772043,-4.3926573,-4.47558,-4.272132,-4.514309,-4.570555,-4.4774814,-4.4876056,-4.380364,-4.384529,-4.394279,-4.3877363,-4.3640847,-4.40743,-4.284141,-4.589853,-4.025579,-4.650917,-4.5931635,-4.8671002,-4.787543,-3.861524,-4.171004,-4.788682,-4.98926,-5.0094204,-4.955679,-4.8641887,-4.779289,-4.7262797,-4.690805,-4.601605,-4.61106,-4.598575,-4.5141535,-4.648351,-4.6252623,-4.6223226,-4.6329455,-4.5916715,-4.5963006,-4.6434684,-4.6302996,-4.6118336,-4.535351,-4.5582175,-4.5283284,-4.5627155,-4.584649,-4.4119573,-4.536413,-4.615064,-4.535686,-4.2337246,-4.321233,-4.2101297,-3.535236,-3.9932842,-4.2989907,-4.694603,-5.1760993,-5.1827726,-4.894955,-4.6199374,-3.9879966,-4.8083873,-4.9987245,-4.034617,-4.6069856,-4.883972,-4.5107617,-4.31918,-4.37346,-4.329753,-4.858374,-4.7752647,-4.9389844,-3.869413,-4.809123,-4.8975997,-4.5977683,-4.6839304,-4.352655,-4.824164,-4.9019585,-4.8820314,-4.890894,-4.744934,-3.3477871,-4.5965953,-4.917729,-4.943888,-4.900289,-4.882825,-4.836519,-4.7869544,-4.714086,-4.610983,-4.3270936,-4.231893,-4.6993937,-4.7114944,-4.7081504,-4.771567,-4.021773,-4.3257833,-4.5478873,-4.580769,-4.5293484,-4.5325923,-4.5496974,-4.619499,-4.55713,-4.5212464,-4.563011,-4.1815643,-4.3375306,-4.424298,-4.358897,-4.343476,-3.9703927,-4.3055763,-4.4422393,-4.4927974,-4.5606747,-4.503554,-4.466741,-4.4474707,-4.3712044,-4.380934,-4.4390645,-4.3447647,-4.159466,-4.0866904,-4.1690555,-4.2711344,-4.2574425,-4.2906957,-4.250308,-4.1836886,-4.2427673,-4.2850432,-4.2710133,-4.1707473,-4.154651,-4.1668005,-4.0748878,-4.031532,-2.710316,-2.7516568,-3.8277183,-3.8758054,-3.7204928,-3.6934776,-3.6622167,-3.5665164,-3.523799,-3.5474572,-3.5264251,-3.7377648,-3.5890741,-3.1589766,-3.2114835,-3.465399,-3.1621165,-1.9747894,-2.3556466,-2.3529568,-2.3789186,-2.3562937,-2.1376772,-2.5082517,-2.6943243,-2.9019678,-3.0855143,-3.1299076,-3.2887173,-3.3537936,-3.3506796,-3.3748932,-3.430759,-3.5120416,-3.4858813,-3.4136906,-3.4351697,-3.4245305,-3.4027047,-3.2885115,-3.1081016,-3.4010677,-3.3891976,-3.7087069,-3.7006693,-3.6070414,-3.4493208,-3.4914312,-3.6199121,-3.440794,-3.632154,-3.8406281,-3.5123892,-3.4594636,-3.4506702,-3.4623604,-3.440611,-3.4581656,-3.4580498,-3.450729,-3.435237,-3.5344727,-2.909965,-3.696981,-3.4888268,-3.1665168,-3.1207037,-3.16395,-3.217446,-3.186108,-3.0463996,-3.0837312,-3.3602905,-3.5046628,-3.4698668,-3.4441001,-3.7031426,-3.548574,-3.5387042,-3.341641,-3.5841794,-3.833912,-3.7707405,-3.8232388,-3.7707314,-3.6157885,-3.5068154,-3.4014792,-3.3539224,-3.3825579,-3.3354585,-3.375104,-3.352056,-3.3631177,-3.277504,-3.158573,-3.1429377,-3.0833442,-2.7949998,-2.7687979,-3.2577379,-3.380842,-3.4058328,-3.341085,-3.2595656,-3.0891025,-3.0229836,-3.244076,-2.9689593,-2.8097677,-3.0740054,-3.2368753,-3.5661693,-3.4981332,-3.4136224,-3.4897304,-3.4887357,-3.4580772,-3.4555755,-3.378548,-3.27463,-3.1258276,-3.2013993,-3.1029818,-2.9693217,-2.8175693,-2.6599617,-2.8628616,-2.7769463,-2.6423414,-2.4971402,-2.3609586,-2.2053277,-1.8925285,-1.5367193,-1.6867316,-1.9515874,-2.2483091,-2.449009,-2.4339592,-2.7164116,-2.7473168,-2.806213,-2.8190067,-2.8338926,-2.9335847,-2.8824656
+-0.43552238,-1.0360165,-1.3637204,-1.4889376,-1.5729687,-1.6896775,-1.7406793,-1.3957071,-2.504981,-3.0937471,-2.8939881,-3.24828,-3.3229837,-3.158819,-3.035081,-3.007888,-3.12317,-2.9357421,-3.016169,-3.2176714,-3.0706398,-3.0249443,-3.0359674,-3.0119703,-3.0110497,-3.0612578,-3.0898523,-3.0921679,-2.7286897,-2.8813276,-2.5485094,-2.872745,-3.2723532,-3.0848012,-2.9689994,-2.9600708,-3.0667505,-3.171165,-3.1671567,-3.208047,-3.2795358,-3.3366835,-3.3182607,-3.3732152,-2.808896,-3.1348543,-2.8699455,-2.3221726,-3.2580914,-3.5379033,-3.357127,-3.2549849,-3.1784954,-3.1755886,-3.2454023,-3.2912555,-3.341124,-3.3704224,-3.4140956,-3.4401364,-3.094864,-3.2274485,-3.3270016,-3.322466,-3.2658763,-3.3173904,-2.155287,-2.2520068,-3.3173816,-3.2584214,-3.1585948,-3.4618425,-3.3914347,-3.253717,-3.2223845,-3.2303886,-3.3081868,-3.3909848,-3.4792728,-3.4862874,-3.4811254,-3.4564717,-3.4259455,-3.3907807,-2.3345852,-2.892671,-3.2843742,-3.1516204,-3.4416037,-3.4398892,-3.2795231,-3.2435627,-3.1764927,-3.2290244,-3.1883492,-3.1940265,-3.2649875,-3.3264809,-3.3742633,-3.4249105,-3.4393148,-3.4518886,-3.4959247,-3.5370388,-3.5995584,-3.6039171,-3.6031468,-3.5907762,-3.597901,-3.5613437,-3.5354514,-3.527844,-3.529055,-3.4742103,-2.7164397,-3.069334,-3.264949,-3.1297297,-2.7504396,-2.9150374,-2.7727323,-2.5921836,-3.1908786,-2.7924209,-3.2324352,-3.3589163,-3.3551316,-2.4549358,-2.7520137,-3.2313309,-3.324695,-3.4501529,-3.4454389,-3.418609,-3.2638063,-2.5321202,-3.353652,-3.5358717,-3.5864973,-3.3926644,-3.2171526,-3.248602,-3.3111145,-3.3150377,-3.4653563,-3.4409666,-3.3776474,-3.5040245,-3.4459274,-3.2984922,-3.5291538,-3.3959122,-2.9149961,-3.5027587,-3.6293986,-3.4662948,-3.490067,-3.5212972,-2.2349267,-3.1939526,-3.2664452,-3.361739,-3.4212527,-3.4633822,-3.2917252,-3.4639454,-3.4603984,-2.6878583,-3.406289,-3.5617018,-3.3362923,-3.1788032,-3.205143,-3.473895,-2.6634912,-3.1850772,-3.2942562,-3.1639597,-3.2245176,-3.2413096,-3.3104956,-3.2547574,-3.3358257,-3.3409457,-3.301104,-3.2525473,-3.302139,-3.3385053,-3.3902345,-3.4334822,-3.5313168,-2.3536463,-3.1858497,-3.361703,-3.3327475,-3.2524395,-3.2504408,-3.1743546,-3.1971858,-3.2195008,-3.2787156,-3.337049,-3.3619046,-3.4029155,-3.418075,-3.4217749,-3.424327,-3.4557595,-3.5436912,-3.4960625,-3.5045176,-3.5207295,-3.5452898,-3.5202289,-3.512156,-3.620544,-2.7395196,-2.747912,-2.5718718,-3.0813508,-3.2607436,-3.2652817,-3.1130316,-3.3012202,-3.4224582,-3.474265,-3.4183898,-3.2840097,-3.2387123,-3.2919981,-3.34914,-3.2660136,-3.2043161,-3.3003538,-3.401967,-2.504552,-3.0752072,-3.1072893,-2.9559183,-3.1363788,-3.2124977,-3.1740527,-3.0522902,-2.9170027,-2.9650626,-3.104487,-3.1489863,-3.1207998,-3.1257205,-3.1651838,-3.1468408,-2.8279085,-2.9833589,-3.1140125,-3.2210534,-3.289883,-3.316091,-3.3512244,-3.3558211,-3.3209524,-3.0438304,-2.8886485,-2.844936,-2.9956722,-3.0903835,-2.4013724,-2.7479043,-3.320048,-3.279223,-3.1536512,-3.197258,-3.2599003,-3.2212524,-3.1878262,-3.2493215,-3.2637405,-3.2372468,-3.1993988,-3.225834,-3.3053265,-2.5566757,-2.6303487,-2.8866653,-3.070527,-3.1686707,-3.2143621,-3.2748964,-3.3014967,-3.4333143,-2.5917425,-3.0325642,-3.0861835,-3.176963,-3.0509639,-2.9677637,-2.949613,-2.9089675,-2.9723625,-2.8555841,-2.9853718,-2.8335195,-2.6831646,-2.727667,-2.7766259,-2.8438516,-2.8943872,-3.0138273,-3.0910916,-3.1526628,-3.2105076,-3.2320793,-3.22777,-3.2368374,-3.334426,-3.36271,-3.367406,-3.380857,-3.4472287,-2.6597533,-3.0854907,-3.3271186,-3.2339468,-3.20855,-3.2628865,-3.3026965,-3.2782087,-3.2968502,-3.3117657,-3.308227,-3.2554154,-3.1972075,-3.2307115,-3.1804976,-3.2618568,-3.2590394,-3.2899046,-3.2861073,-3.2580354,-3.299818,-3.3560872,-3.3654072,-3.3657646,-3.4104245,-3.4767227,-3.534493,-3.5665991,-3.5596187,-3.5472274,-3.6158879,-3.6607127,-3.7235093,-3.7307925,-3.7322779,-3.7711253,-3.7793117,-3.7610154,-3.780003,-3.6204786,-3.7415967,-3.733066,-3.7173033,-2.565463,-3.1005673,-3.373085,-3.1599202
+-1.051312,-1.7066958,-2.1438203,-2.7158973,-3.2230535,-3.3601346,-3.4088387,-3.4443502,-3.0675426,-3.719051,-3.8561893,-3.6563034,-3.9846706,-4.145446,-4.0886354,-4.0545936,-3.746076,-4.059645,-4.175295,-4.208634,-4.193909,-4.211513,-4.160168,-4.1291604,-4.1057634,-4.033838,-4.0892177,-4.090794,-4.057866,-4.109732,-3.8238506,-3.9189649,-4.075089,-4.1393256,-4.208616,-4.098839,-4.065911,-4.1428742,-4.163051,-4.195977,-4.1875324,-4.2555923,-4.3534827,-4.2539434,-4.0616603,-4.305368,-4.3690305,-3.5353022,-4.0743623,-4.232058,-4.2928357,-4.3005843,-4.2495036,-4.2088184,-4.2109156,-4.2280135,-4.273086,-4.366034,-4.32807,-4.424261,-4.4042764,-4.510709,-4.436717,-4.3556647,-4.563668,-4.582375,-4.5369964,-4.516982,-4.4373274,-4.451527,-4.440434,-3.686092,-4.21851,-4.3459587,-4.3863406,-4.4135947,-4.393207,-4.3443494,-4.3858933,-4.555714,-4.641561,-4.6565013,-4.5655866,-4.3255963,-3.4413486,-4.484118,-4.48605,-4.433277,-4.631125,-4.720245,-4.728467,-4.7251115,-4.6238265,-4.5368857,-4.4717183,-4.4252295,-4.4321275,-4.4655137,-4.492472,-4.640284,-4.5902104,-4.5008245,-4.476435,-4.4980974,-4.553779,-4.708435,-4.709829,-4.69481,-4.7295704,-4.7782826,-4.7254066,-4.7151866,-4.699146,-4.6720448,-4.6432962,-4.716704,-4.367457,-4.368856,-4.6611876,-4.7170215,-4.675405,-4.341388,-4.285665,-4.1701283,-4.569905,-4.6501575,-4.6375675,-4.7092605,-4.769936,-4.81375,-4.65584,-4.5691786,-4.4598775,-4.5823364,-3.7989917,-4.571899,-4.670931,-4.7748404,-4.804212,-4.830792,-3.8977194,-4.619927,-4.4773474,-4.7294145,-4.7518497,-4.7422724,-4.7771344,-4.721692,-4.518485,-4.506707,-3.7960324,-4.3684726,-4.543627,-4.4019027,-4.557429,-4.6998916,-4.753182,-4.716064,-3.7499394,-3.7859187,-4.2959976,-4.619059,-4.736257,-4.7855144,-4.784067,-4.6837564,-4.832269,-4.644299,-4.0489798,-4.615045,-4.6615233,-4.5156875,-4.6155553,-4.641151,-4.6321054,-4.532599,-4.4572206,-4.4107137,-4.4333587,-4.3149967,-4.588321,-4.677437,-4.475839,-4.5718093,-4.5927405,-4.5485015,-4.474357,-4.540505,-4.5641294,-4.570743,-4.550248,-3.8470864,-3.9879599,-4.4706817,-4.566194,-4.6421733,-4.581967,-4.538982,-4.523586,-4.4632015,-4.523666,-4.522138,-4.4347873,-4.539634,-4.560345,-4.5646095,-4.6117253,-4.6384306,-4.5014424,-4.5550537,-4.5551753,-4.5656314,-4.562364,-4.5409245,-4.4969144,-4.5307455,-4.490419,-4.022531,-3.0725727,-4.1521792,-4.3386116,-4.273003,-4.120153,-4.34094,-4.408178,-4.34463,-4.402836,-4.323088,-4.3402915,-4.346094,-4.2715964,-4.0626187,-4.186926,-4.324785,-4.332976,-3.9527974,-4.1245947,-4.2025476,-4.1976347,-4.2811007,-4.167002,-3.5310187,-3.6753879,-3.437549,-3.6010718,-3.710012,-3.5925941,-3.553937,-3.579946,-3.670936,-3.6696014,-3.5574214,-3.536213,-3.6389117,-3.7144794,-3.8015084,-3.8658175,-3.9053044,-3.917542,-3.875543,-2.6148462,-3.0627563,-3.2870798,-3.4130716,-3.494851,-2.155336,-3.0368304,-3.253768,-3.2160823,-3.3667638,-3.3768332,-3.2879567,-3.3473203,-3.4691672,-3.0720592,-3.2063928,-3.1566675,-3.2808104,-3.335206,-3.382217,-2.9869676,-2.7938037,-2.8913598,-2.9730735,-3.1259387,-3.2537034,-3.4358878,-3.601951,-3.7617073,-2.4424763,-3.2997603,-3.3056412,-3.2374368,-3.0521233,-2.9175189,-2.7266111,-2.5239277,-2.5118322,-2.421779,-2.452266,-2.4008875,-2.291856,-2.1919584,-2.1449218,-2.179025,-2.2153757,-2.316028,-2.4365385,-2.5449438,-2.6321855,-2.7360475,-2.8660994,-2.9924827,-3.0657744,-3.2689245,-3.4383829,-3.5941253,-3.255847,-2.9467247,-3.045271,-2.9821534,-2.961973,-2.998622,-3.1171944,-3.290291,-3.1509728,-3.3835492,-3.6240706,-3.6571238,-3.7039943,-3.6428723,-3.4758184,-3.548868,-3.4621453,-3.6538386,-3.5683138,-3.6197445,-3.756723,-3.919806,-3.8210506,-3.925511,-3.9533067,-3.9372196,-3.9405322,-3.994923,-4.1264358,-4.0674024,-4.057847,-4.007562,-4.091407,-4.0934777,-4.195491,-4.259668,-4.2559266,-4.318636,-4.3758073,-4.2796707,-4.160785,-4.420854,-4.396343,-4.4608808,-4.4486833,-4.2331305,-4.4264374,-4.46829
+-1.3932729,-2.026147,-2.1985917,-2.177102,-2.3543184,-2.4849105,-2.743431,-2.7111685,-2.4001184,-3.4455578,-3.5128486,-3.52307,-3.5860543,-3.493893,-3.3883955,-3.3716729,-3.49048,-3.5227413,-3.548056,-3.5170333,-3.5338128,-3.5323882,-3.5596046,-3.422067,-3.4081063,-3.4018593,-3.4229338,-3.5001512,-3.4625797,-3.4978225,-3.6295366,-3.4191852,-3.5907552,-3.5584574,-3.6098695,-3.645266,-3.4371166,-3.448842,-3.3803978,-3.4808583,-3.5103455,-3.5903597,-3.5155175,-3.6078005,-3.4990983,-3.4467375,-3.5189376,-3.3727245,-3.195569,-3.605586,-3.5779107,-3.4907093,-3.4980235,-3.5493135,-3.529385,-3.5158515,-3.5317385,-3.5950048,-3.636033,-3.4053822,-3.4776866,-2.9042854,-3.6802323,-3.792625,-3.749641,-3.7107248,-3.7379422,-3.6702206,-3.621694,-3.5178502,-3.664696,-3.5771868,-3.7583556,-3.7329173,-3.7170944,-3.7952828,-3.8258061,-3.8530793,-3.9409347,-4.0063176,-3.9297242,-3.9061246,-3.9044404,-3.8760657,-3.880063,-3.885857,-2.6538837,-2.6725402,-2.1844528,-3.6508493,-3.7699142,-3.8102336,-3.7936082,-3.6318815,-3.5358818,-3.5843143,-3.6904979,-3.7386732,-2.8852315,-3.5552273,-3.8013744,-3.7769303,-3.7627816,-3.8097558,-3.9028058,-3.9882503,-3.922422,-3.9589486,-3.9082656,-3.852284,-3.8501678,-3.8542724,-3.857963,-3.8878646,-3.9129891,-3.887123,-3.3377995,-3.37822,-3.8505063,-3.9073143,-3.935986,-3.2341862,-3.844235,-4.001007,-3.829978,-3.9756107,-4.122011,-4.119285,-4.0607843,-3.722642,-3.966268,-3.9877734,-4.0146065,-3.8315578,-3.2258348,-3.2226267,-3.7564397,-3.7509322,-3.767527,-3.8914313,-3.3402429,-3.778069,-2.2871103,-3.9832454,-3.860055,-2.8826745,-4.0481505,-4.1599383,-4.041919,-3.8117485,-3.3120883,-3.062811,-3.5755715,-3.527022,-3.9290872,-4.3389354,-4.4534616,-4.523602,-4.522961,-3.0472775,-4.109746,-4.364348,-4.17186,-4.346417,-4.3209615,-4.1867614,-4.168341,-2.9946795,-3.9579844,-4.1103306,-4.167665,-3.977192,-4.008033,-4.0886755,-4.061959,-4.104215,-4.120564,-4.1177597,-3.5417323,-4.081263,-4.2526364,-4.1838994,-2.9357605,-4.1380773,-4.1269603,-4.007605,-4.224721,-4.170429,-4.150206,-3.99116,-4.0839424,-3.2887113,-4.250869,-4.297693,-4.2662873,-4.15409,-4.17676,-4.0523105,-4.0014925,-4.0028663,-3.9844346,-3.9433455,-3.8551192,-3.973167,-4.041794,-4.0008206,-3.880437,-3.8699665,-3.9209027,-3.8728242,-3.889442,-3.9173322,-3.898088,-3.892847,-3.9598308,-3.9505963,-3.9474187,-2.848002,-3.2752237,-3.4187138,-4.14329,-4.125048,-4.082733,-4.188237,-3.2012389,-4.2216196,-4.307775,-4.32928,-4.2691493,-4.2215033,-4.24054,-4.206873,-4.1547837,-4.3058295,-4.359854,-4.388982,-4.3300834,-4.3056474,-4.0736456,-4.2760425,-4.3375096,-4.3391504,-4.4138484,-4.4069633,-4.4230256,-4.418124,-3.073832,-3.9555154,-4.219028,-4.303177,-4.3209643,-4.0348988,-4.134284,-4.305184,-4.2861733,-4.2599816,-4.303004,-4.327936,-4.2708626,-4.261821,-4.313495,-4.2189174,-4.0960813,-4.3294573,-4.3889565,-3.6998029,-4.0265803,-4.285594,-4.2726016,-4.3702507,-4.337321,-4.339242,-4.1544104,-3.9416146,-4.125132,-4.1816335,-4.1704073,-4.2849584,-4.2849936,-4.32943,-4.37856,-4.0943203,-4.305926,-4.328994,-4.2827106,-4.2477937,-4.2389135,-4.0398407,-4.079742,-2.8665116,-4.1841936,-4.18906,-4.2736783,-4.344713,-4.3553348,-3.662527,-4.2486115,-4.315302,-4.2649875,-4.2674127,-4.314076,-4.1046004,-4.2296553,-4.2700925,-4.2839603,-4.3328195,-4.317899,-4.256639,-4.219996,-4.2247896,-4.1501613,-4.084935,-4.0701575,-4.194591,-4.0826006,-3.9856153,-3.9483342,-3.9270225,-3.2444987,-4.0340333,-4.155585,-4.202128,-4.26384,-4.217477,-4.218331,-4.2759733,-4.2198844,-4.107696,-3.936963,-3.9269986,-4.016636,-4.090367,-3.992146,-4.008618,-4.046251,-3.974887,-3.9310737,-4.030167,-4.037022,-3.9765162,-3.9574456,-3.9305897,-3.9395251,-3.8960395,-3.9403138,-3.947616,-3.9716249,-4.004169,-3.9356923,-3.9752545,-4.0014405,-4.0616055,-4.113246,-4.2001853,-4.198645,-4.2147565,-4.161411,-4.0848255,-4.2964425,-4.214065,-4.264338,-4.324351,-4.257143,-4.33719,-4.2576604
+-1.2613542,-1.891072,-2.1609478,-2.2663162,-2.350276,-2.4499383,-2.4747953,-2.55251,-2.5192018,-2.6867743,-2.6652036,-2.6580272,-2.7730334,-2.7956743,-2.8357196,-2.8874767,-2.9994402,-3.0694933,-3.12436,-3.1427794,-3.1425135,-3.1255224,-3.0570984,-3.2647913,-3.215166,-3.2588658,-3.2826748,-3.316978,-3.36217,-3.434432,-3.4810205,-3.4789147,-3.556177,-3.5580893,-3.487277,-3.303921,-3.5393057,-3.6035879,-3.5832932,-3.674935,-3.709951,-3.706263,-3.5340455,-3.702888,-2.3872213,-3.7355218,-3.600122,-3.3830652,-3.289471,-3.722487,-3.736957,-3.794355,-3.8298225,-3.851987,-3.9085455,-3.9034967,-3.8296432,-3.8205037,-3.850544,-3.2560549,-2.8084397,-2.914867,-3.3961813,-3.6480517,-3.7828498,-3.8026786,-3.8225617,-3.8276134,-3.8448453,-3.843556,-3.8332248,-3.7869973,-2.8724296,-3.7987142,-3.8008308,-3.705553,-3.9388905,-3.9569068,-4.0145993,-4.0607066,-4.082133,-4.059528,-4.087527,-3.8711667,-3.1603467,-3.4589038,-3.7571616,-3.247223,-1.5810969,-3.469275,-3.7550287,-2.7598505,-3.1640253,-3.7286382,-3.9526744,-4.031348,-4.038549,-3.8832068,-3.3688293,-3.1440854,-3.7862058,-3.8009448,-3.8300705,-3.9253983,-3.9724731,-4.040303,-4.0028434,-4.118452,-4.089419,-4.069284,-4.0296206,-4.001664,-3.9885173,-3.9928603,-3.9817152,-3.4753478,-3.856441,-3.2476025,-3.855472,-3.8045764,-3.794685,-3.8373199,-2.2280593,-3.127006,-3.6183662,-3.1180112,-3.7464767,-3.811513,-3.8714685,-3.7954102,-3.8923812,-3.0948744,-3.277544,-3.319853,-3.1062014,-3.2527652,-3.7823076,-3.8471336,-3.9286547,-3.5499775,-2.506309,-3.4052563,-2.8257499,-2.7874408,-2.8678102,-3.647376,-3.197888,-3.971908,-3.7712226,-2.6926603,-3.7738538,-3.1785102,-3.2473311,-3.4928951,-3.4954429,-3.947126,-4.1118174,-4.166247,-4.0228543,-2.7013772,-3.5946312,-3.9411283,-4.049459,-4.1039653,-4.1005626,-4.0729136,-4.0897937,-4.082681,-3.7438393,-3.5428433,-3.2914834,-3.8561788,-3.969664,-4.0010104,-3.98307,-4.063265,-4.093153,-3.0999913,-3.1240444,-3.527695,-3.8249602,-3.8424711,-3.1777692,-2.9818811,-3.633329,-3.9113283,-3.8966336,-3.8762832,-3.9064116,-3.8686266,-2.07689,-3.0485787,-3.5336957,-3.828217,-3.9489675,-4.0165677,-4.044151,-4.0322104,-4.05111,-4.0010624,-3.9658303,-3.9552884,-3.9158077,-3.7697005,-3.7082758,-3.6647007,-3.6759124,-3.6601367,-3.6837819,-3.6093597,-3.513794,-3.5474901,-3.586724,-3.5019479,-3.5377402,-3.5757816,-3.430087,-3.363481,-3.1988804,-2.982453,-3.2748044,-3.323926,-3.3116689,-3.2920198,-3.0473454,-3.119835,-3.1694787,-3.2013621,-3.210269,-3.1846545,-3.2662592,-3.3018847,-3.319901,-3.315469,-3.3287122,-3.2911737,-3.301308,-3.279003,-3.0403078,-3.008167,-3.085741,-3.0144882,-3.1391923,-3.1786237,-3.273277,-3.2657983,-2.0668314,-3.1628718,-3.3131852,-3.4338992,-3.4983525,-3.4569876,-3.3949876,-3.4245994,-3.4311786,-3.4307127,-3.4517515,-3.4032762,-3.3731656,-3.3744235,-3.464169,-3.5500064,-3.447725,-3.5749047,-3.556066,-3.3287234,-3.1049836,-3.2732005,-3.2788157,-3.3879118,-3.3993897,-3.4149208,-2.6893423,-3.0204434,-3.194821,-3.2879746,-2.9726522,-3.3091922,-3.3598537,-3.4058044,-3.3676338,-3.4265833,-3.4507687,-3.4920452,-3.4605956,-3.389586,-3.3746488,-3.3619127,-3.3281388,-2.4493914,-3.1793742,-3.392681,-3.4846053,-3.4556355,-3.4053206,-2.7516296,-3.2174454,-3.2727427,-3.2699385,-3.213323,-3.2484515,-3.3537412,-3.3796048,-3.5160072,-3.6009834,-3.637084,-3.6146338,-3.6267586,-3.5946407,-3.6052036,-3.5864573,-3.5409255,-3.5044088,-3.5235755,-3.498971,-3.437882,-3.4639206,-3.4041967,-3.4085312,-3.2037656,-3.3365161,-3.2919192,-3.3169014,-3.3412147,-3.367112,-3.2738562,-3.3264666,-3.3526664,-3.312005,-3.2676353,-3.4140773,-3.4109812,-3.5056794,-3.4869897,-3.5270624,-3.5795553,-3.5126712,-3.636433,-3.6040885,-3.5805142,-3.5397174,-3.5197058,-3.6044536,-3.581643,-3.5971198,-3.6410291,-3.6594331,-3.6540556,-3.6148906,-3.591146,-3.637113,-3.645526,-3.6418629,-3.7024226,-3.745078,-3.700935,-3.5946624,-3.5586166,-3.7370262,-3.7271771,-3.7696886,-3.7942605,-3.7585273,-3.8402114,-3.696177
+-1.2383599,-1.736723,-1.9941664,-2.1713092,-2.2999845,-2.5110703,-2.6216297,-2.669806,-2.8925633,-3.0105407,-3.000908,-3.16252,-3.1460118,-3.261485,-3.2771428,-3.2477126,-3.3866234,-3.4297543,-3.5499535,-3.538691,-3.5576744,-2.885986,-3.1994805,-3.687387,-3.6921077,-3.703401,-3.7751007,-3.8516035,-3.8216252,-3.87949,-3.9103856,-3.8780494,-3.8499446,-3.9296365,-3.8961158,-3.8726888,-3.708651,-3.8245673,-3.8023639,-3.9355931,-3.9395218,-3.9398131,-3.7553368,-3.0728936,-3.2022872,-3.8636017,-3.9103913,-4.062613,-3.9002728,-4.041148,-4.030259,-4.042056,-4.0667787,-4.143407,-4.153316,-4.1043534,-4.1165957,-4.165299,-4.107389,-4.2361884,-3.4140954,-2.7248983,-3.7659698,-3.8377566,-3.8866363,-3.8269506,-3.8455973,-3.864738,-3.8991013,-3.890432,-3.941403,-3.2810774,-3.6772795,-3.9038577,-3.875444,-4.0243115,-2.999771,-3.8620715,-3.9286861,-3.9738317,-3.967749,-3.9708114,-4.0161448,-4.065372,-4.076625,-3.947371,-4.100513,-3.4739394,-3.9698076,-3.4925783,-3.9456854,-2.718399,-3.2842736,-3.7796283,-3.8570771,-3.8333926,-3.7714138,-3.7548118,-3.678398,-3.891584,-3.8115606,-3.8174763,-3.706925,-3.8679848,-3.8810468,-3.8931088,-3.7787032,-3.9296846,-3.9363313,-3.9785266,-3.9596725,-3.9949207,-4.0636153,-4.12116,-4.1566434,-3.747251,-4.1364284,-3.8448157,-4.095676,-1.8757398,-3.314384,-3.7202468,-3.3058689,-3.5618482,-3.7387118,-3.7940469,-3.998878,-3.9383044,-3.953971,-3.9279447,-3.8375773,-2.2570853,-3.1224542,-3.5634642,-4.1125627,-2.7677813,-3.7550654,-4.1163664,-4.2366853,-4.132259,-3.2703953,-3.5002582,-3.8350983,-3.595801,-4.1830516,-3.5355167,-3.587566,-3.9312344,-3.7934146,-3.548751,-3.6725721,-3.5723193,-3.4988809,-4.04878,-3.9956775,-4.168319,-4.126888,-4.1520686,-3.1206882,-3.229447,-3.816712,-4.0368667,-4.119685,-4.0462694,-4.0896134,-3.5486155,-3.9675756,-3.9985814,-3.925198,-3.8903356,-3.8667607,-3.842845,-3.836862,-3.838625,-3.8261285,-3.858729,-3.7038035,-2.8680468,-2.4750552,-3.6379018,-3.9245577,-4.1532636,-3.885316,-3.558209,-4.163591,-4.3226495,-4.324857,-4.2555084,-4.1884904,-4.150131,-3.9230194,-2.3013601,-3.686966,-4.1717544,-4.4207926,-4.5180745,-4.5091033,-4.5242853,-4.4813766,-4.405156,-4.333766,-4.3047004,-4.2642694,-4.1180058,-4.118995,-4.1219373,-4.1276193,-4.081647,-4.1133885,-4.041616,-3.9904623,-4.0117116,-4.021404,-3.9900374,-4.0198894,-4.0448456,-3.9638944,-3.6050637,-3.4737954,-3.840508,-4.111834,-4.1310453,-3.9500113,-3.9855466,-3.3049312,-2.9678006,-3.8799243,-4.2205043,-4.3833055,-4.3908057,-4.400155,-4.4517117,-4.28635,-4.2856255,-4.3418846,-4.3212814,-4.299496,-4.252706,-4.2847695,-4.1671906,-4.2043653,-4.169307,-4.219279,-4.258775,-4.2317653,-4.0505433,-3.039368,-3.3904939,-3.945158,-4.2194524,-4.3868575,-4.360783,-4.285344,-4.374743,-4.427195,-4.469048,-4.5129733,-4.4898825,-4.4448586,-4.4533334,-4.4458413,-4.411345,-4.3239026,-4.3381095,-4.4558673,-4.3021846,-4.3160954,-4.263296,-4.2864604,-4.3311996,-4.3510275,-4.3957434,-4.4449344,-4.0909553,-4.193249,-4.197515,-4.1296797,-4.179518,-4.197334,-4.267651,-4.257291,-4.1637197,-4.159847,-4.2233543,-4.178375,-4.1523557,-4.1468196,-4.09833,-4.0488725,-3.7042274,-4.0206966,-3.8874602,-4.044767,-4.0562835,-4.0688043,-4.126162,-3.9893236,-4.02316,-3.9962955,-4.015513,-4.032911,-4.0325575,-3.9830394,-4.05688,-4.0681214,-4.106647,-4.0694585,-4.0469203,-3.9873967,-3.952468,-3.959643,-3.934875,-3.9046712,-3.924664,-3.8822546,-3.8789601,-3.9162564,-3.9225411,-3.7076545,-3.6947913,-3.7582097,-3.7617064,-3.7061715,-3.7027864,-3.7148767,-3.5812926,-3.69978,-3.7131348,-3.6522615,-3.650298,-3.7438807,-3.7500958,-3.7588277,-3.70258,-3.8023462,-3.8024173,-3.7467399,-3.5305736,-3.744122,-3.7484975,-3.7699347,-3.749136,-3.7200007,-3.8076367,-3.7288146,-3.7404113,-3.7583637,-3.7378144,-3.7651258,-3.810556,-3.8444753,-3.8445811,-3.7758174,-3.8218045,-3.8655148,-3.837009,-3.7302775,-3.674343,-3.8211474,-3.8329515,-3.882339,-3.8139472,-3.8153596,-3.8538547,-3.7669334
+-1.1798098,-1.7510476,-2.1008728,-2.3183925,-2.5161943,-2.7800493,-3.0293674,-3.2225976,-3.3544936,-3.3957937,-3.4507136,-3.5498083,-3.5761337,-3.6642592,-3.625425,-3.6481843,-3.7090907,-3.7680917,-3.8187966,-3.8174777,-3.877655,-3.051725,-2.9977493,-3.7658439,-3.906753,-3.9086413,-4.0000057,-4.0417104,-4.1003833,-4.1430893,-4.161451,-4.2194185,-4.1720605,-4.271585,-4.3091288,-4.2740016,-4.2583966,-4.1963162,-4.2266536,-4.309694,-4.307079,-4.2857547,-4.0894856,-2.7656474,-3.726223,-4.0080194,-4.0548368,-4.055163,-4.0149455,-4.0876746,-4.1032987,-4.184369,-4.2118154,-4.3080792,-4.3273206,-4.3532605,-4.3928447,-4.4371605,-4.484299,-4.391532,-2.9424446,-3.737328,-3.8688664,-4.195178,-4.0742974,-4.015302,-4.068686,-4.054724,-4.1768208,-4.157658,-4.0434413,-3.79314,-4.0040116,-4.105929,-3.6910853,-3.9876456,-3.4239328,-3.9184122,-4.011095,-4.132831,-4.1737313,-4.179111,-4.2264304,-3.7615147,-3.7297063,-4.0284667,-3.4228764,-2.6285892,-3.6045394,-3.81848,-4.1596932,-4.054052,-2.463695,-3.68184,-4.0987115,-4.1048255,-4.048678,-3.568049,-3.719606,-3.8065581,-3.466985,-4.0070767,-3.9872823,-3.9580865,-4.0615478,-3.9794507,-3.8987312,-4.1025257,-4.0574737,-4.071999,-4.003163,-4.006176,-4.030803,-4.0608907,-4.0976453,-4.069666,-4.118931,-3.8775797,-3.3903332,-3.1167774,-3.5936546,-3.486465,-3.3564885,-3.4056673,-3.9954157,-3.7367144,-4.191121,-4.1653523,-4.103205,-3.7549796,-3.728539,-2.93852,-3.138376,-3.9223537,-2.246731,-3.5592215,-3.8443065,-4.3578305,-4.2953877,-3.4422538,-3.6889105,-4.251735,-3.8174415,-4.2755103,-4.6566367,-3.7296147,-4.214244,-4.5344353,-4.6221786,-4.6734033,-3.629577,-4.212169,-4.025344,-3.735766,-4.6070504,-4.829025,-4.797623,-4.8425975,-4.764229,-3.8068,-4.713833,-4.850225,-4.842469,-4.765901,-4.773918,-4.531036,-4.6425133,-4.5483556,-4.4240227,-4.3902097,-4.380112,-3.9699645,-4.4289546,-4.474367,-4.4417825,-4.367518,-3.5516553,-3.1876698,-3.9503188,-3.8338847,-4.568164,-4.7805295,-4.371373,-4.115047,-4.7816176,-4.864079,-4.5070033,-4.776017,-4.803681,-4.7423673,-4.6476073,-3.174662,-4.0538387,-4.719258,-4.927849,-4.9523425,-4.930391,-4.884873,-4.838125,-4.806601,-4.761639,-4.7423224,-4.726255,-4.6253448,-4.616752,-4.570947,-4.619162,-4.568218,-4.5885844,-4.5691943,-4.5228863,-4.5458326,-4.5795245,-4.566875,-4.5413013,-4.5688853,-4.5473204,-4.165385,-4.5459356,-4.6058736,-4.7068334,-4.7207074,-4.613707,-4.6290135,-3.1833076,-4.0037117,-4.5550447,-4.8097796,-4.888506,-4.846717,-4.765685,-4.857179,-4.7749734,-4.7071114,-4.7516756,-4.710515,-4.7114825,-4.6663623,-4.641976,-4.648537,-4.6595855,-4.5893335,-4.576304,-4.6860824,-4.6682296,-4.688186,-3.2108912,-3.3297858,-4.0947113,-4.5919952,-4.8237042,-4.965962,-4.9826303,-5.011791,-5.0556235,-5.0158973,-5.047445,-4.9913344,-4.965749,-4.896552,-4.7734494,-4.830733,-4.7783365,-4.775204,-4.7911243,-4.770305,-4.668164,-4.6863575,-4.6399016,-4.7267876,-4.707148,-4.6885877,-4.7706537,-4.5992255,-4.393398,-4.6128597,-4.668359,-4.679416,-4.6840987,-4.6914954,-4.6852336,-4.698794,-4.6830063,-4.7127953,-4.616505,-4.6107397,-4.6031694,-4.607156,-4.6016335,-4.5332146,-4.6380286,-4.6748824,-4.643993,-4.63607,-4.5132008,-4.516225,-4.5312395,-4.594696,-4.469625,-4.5556474,-4.599277,-4.6459455,-4.540218,-4.6788764,-4.6950827,-4.692822,-4.681482,-4.6651077,-4.593367,-4.6083455,-4.6523814,-4.5416427,-4.5832114,-4.6562147,-4.603764,-4.5413013,-4.587153,-4.5844913,-4.578367,-4.560634,-4.664615,-4.649443,-4.4363084,-4.4526353,-4.5396285,-4.09512,-4.5683293,-4.4650617,-4.3988957,-4.411184,-4.4789596,-4.4175086,-4.399356,-4.4163594,-4.533803,-4.57676,-4.5255,-3.7985168,-4.580288,-4.6019816,-4.661483,-4.608519,-4.3947043,-4.6564326,-4.5254054,-4.5577946,-4.4949403,-4.512254,-4.4369116,-4.4499106,-4.4994745,-4.465054,-4.3935666,-4.415117,-4.4081564,-4.3671517,-4.3114214,-4.3339906,-4.360535,-4.356934,-4.410461,-4.3223586,-4.3405776,-4.4083667,-4.303662
+-1.4884853,-1.7914476,-2.0330443,-2.1245139,-2.1660964,-2.3462567,-2.5977945,-2.5974956,-2.875787,-2.9993582,-3.0951624,-3.2101607,-3.15653,-3.208127,-3.2959714,-3.2246318,-3.315464,-3.34791,-3.4389503,-3.4799376,-3.511395,-3.3574927,-2.328979,-3.6464221,-3.7731566,-3.752993,-3.7719002,-3.744151,-3.7862997,-3.8643718,-3.8778272,-3.929214,-4.006803,-4.011057,-4.041057,-3.9993725,-3.9181972,-3.758358,-3.8786306,-3.9143438,-3.935893,-3.8985925,-2.9947774,-3.626887,-3.1781611,-3.9325843,-4.1079454,-4.106997,-3.9751945,-3.9233098,-3.9597688,-3.995957,-3.9864054,-4.0789704,-4.0484853,-4.088592,-4.0705523,-4.1377997,-4.202446,-3.9817233,-3.410213,-3.8413439,-3.8839688,-4.103087,-4.080955,-4.03559,-4.062086,-4.0533214,-4.0559793,-4.053509,-3.7874608,-4.013436,-3.8926554,-4.0284505,-2.6914568,-2.8394804,-3.9081063,-4.0607123,-4.2059546,-4.132285,-4.0884895,-4.1185455,-3.9425507,-4.077857,-3.7727056,-4.0503793,-3.9997354,-2.3813474,-2.4545803,-3.4963727,-3.4451575,-3.9724393,-3.681233,-4.166071,-4.1351333,-4.413566,-4.5056252,-4.5070963,-4.4289613,-3.9206696,-4.198403,-4.490298,-4.5671253,-4.5736303,-4.5178294,-4.439425,-4.2770877,-4.3662143,-4.359622,-4.2566857,-4.195194,-4.1708126,-4.104486,-4.0747066,-3.9842896,-3.5489001,-3.7515054,-3.5227182,-3.9099545,-4.045995,-3.6835623,-4.366164,-4.107056,-4.2593713,-4.3815274,-3.8438897,-4.4375215,-4.4815235,-4.419666,-4.051402,-3.7785373,-3.5206523,-3.2091403,-4.0028768,-3.0182433,-2.6607628,-3.9042249,-4.1200385,-4.07093,-3.7254243,-3.515073,-4.18028,-3.6817012,-4.032973,-4.1863136,-3.5034685,-4.093085,-4.4501133,-4.539428,-4.177484,-2.9298456,-3.1193573,-3.4771676,-3.9337754,-4.099894,-4.300037,-4.362368,-4.4342046,-3.9533792,-4.291306,-4.2104964,-4.25077,-3.9523792,-3.7642016,-4.1863093,-4.3462567,-4.3097625,-4.339869,-4.5664463,-4.643084,-4.583587,-4.2542067,-4.585677,-4.681622,-4.6720314,-4.4791694,-3.103824,-3.5168445,-3.607015,-4.060611,-4.1783404,-4.181417,-3.3877718,-4.101348,-4.284427,-4.4576774,-3.937694,-4.3734207,-4.614755,-4.614466,-4.5130525,-4.1695704,-4.388331,-4.6778183,-4.764913,-4.739782,-4.6674705,-4.59891,-4.6007466,-4.5670776,-4.501553,-4.3649015,-3.214438,-4.000254,-4.4109216,-3.9904017,-4.5120277,-4.6621137,-4.650147,-4.567843,-4.535501,-4.523255,-4.4465055,-4.4009843,-4.3656564,-4.2867436,-4.2359853,-4.032801,-2.7841275,-4.1344843,-4.4300084,-4.531628,-4.4335113,-4.414683,-4.2634826,-4.047035,-4.1200147,-4.448334,-4.5693116,-4.6056714,-4.690926,-4.4883,-4.3053126,-4.2814274,-4.4147153,-4.3961816,-4.255608,-4.189139,-4.1584806,-4.074042,-4.1666436,-4.074246,-4.021134,-4.0824785,-4.073058,-4.075057,-2.859434,-3.0801737,-3.9522986,-4.1644073,-4.3138914,-4.4431233,-4.290783,-4.336116,-4.448628,-4.490492,-4.5145426,-4.4391055,-4.406037,-4.3722677,-4.215885,-4.2495933,-4.0967093,-4.15335,-4.235553,-4.1224403,-4.091756,-4.123772,-4.1341367,-4.1142077,-4.1998,-4.1386466,-4.138635,-4.0331187,-4.031866,-3.9587617,-3.9642406,-4.0580425,-4.0684295,-4.075022,-4.0071807,-3.9761987,-4.021475,-4.0132775,-4.034441,-3.995916,-3.9742422,-3.9867449,-3.9836364,-3.876904,-3.9595647,-4.0522885,-3.9498339,-4.004124,-4.0284123,-3.7333317,-3.8822737,-4.0175824,-3.8783002,-3.840879,-3.8951235,-4.0460725,-3.8765464,-4.0828404,-4.0810456,-4.007132,-3.9458108,-3.9594903,-3.9478688,-3.976542,-3.9627175,-3.9037027,-3.9017181,-3.9472022,-3.9259682,-3.987846,-3.947101,-3.949798,-3.9622407,-3.9245815,-3.9215884,-3.7429738,-3.8142161,-3.9872184,-3.661915,-3.9504385,-4.0692286,-4.03431,-3.9369817,-3.9426885,-3.9627948,-3.92162,-3.9143944,-3.898531,-3.994152,-3.998509,-4.037437,-3.0064173,-4.073565,-4.2907205,-4.217906,-4.2478504,-3.976822,-4.101711,-4.1527333,-4.2465215,-4.3114834,-4.2899804,-4.192881,-4.098001,-4.0768733,-4.0109863,-4.0254893,-4.0554643,-3.9447598,-3.941739,-3.9006505,-3.8592544,-3.9226189,-3.9370065,-3.994162,-3.9358873,-4.005936,-4.0609403,-3.9056463
+-1.2713873,-2.1007142,-2.1564212,-2.2881348,-2.3688984,-2.4513083,-2.6431656,-2.8058143,-2.816895,-2.9217765,-3.0183597,-3.1227164,-3.3430886,-3.4564724,-3.3877392,-3.4138558,-3.529154,-3.5805838,-3.655212,-3.7231474,-3.818952,-3.710526,-3.4253092,-3.8979497,-3.9816418,-3.9411354,-4.0247607,-3.997044,-3.9993515,-4.0582614,-4.0731072,-4.0745664,-4.2065735,-4.2519855,-4.257072,-4.2216907,-4.1030483,-3.8646016,-3.9895372,-4.2260246,-4.226074,-4.250135,-4.0894666,-4.119655,-3.9946055,-3.9418702,-4.3401856,-4.3980527,-4.3862376,-4.427812,-4.4009376,-4.38863,-4.391148,-4.3870153,-4.3390965,-4.261993,-4.2253823,-4.31521,-4.399203,-4.309451,-4.2000184,-3.926076,-3.845261,-4.3595195,-4.26633,-4.1519756,-4.200983,-4.240118,-4.2661715,-4.239988,-4.0854383,-4.2788835,-4.309398,-4.228905,-4.0559044,-3.2714124,-4.016315,-4.0035405,-3.8450136,-4.070961,-4.1141086,-3.2727356,-3.9460964,-4.035667,-4.0978923,-4.0972896,-4.0886784,-2.6843033,-3.3200927,-3.260254,-4.264494,-4.300107,-4.4453673,-3.5951807,-3.8343563,-4.422989,-4.640637,-4.0085554,-4.405231,-4.0497003,-4.548637,-4.603782,-4.580116,-4.345323,-4.544751,-4.5923095,-4.4674635,-4.4190793,-4.497842,-4.401554,-4.3126187,-4.3366942,-4.268027,-4.1428943,-3.8916755,-4.249888,-4.0989413,-3.5115612,-3.6324723,-4.05082,-4.4231305,-4.0470433,-4.578929,-4.3816504,-4.5667186,-4.4656243,-4.0262485,-4.5186133,-4.5228477,-4.5735755,-4.1119304,-4.164285,-4.1979027,-4.3123746,-4.3927646,-3.8878574,-3.8288922,-4.1279573,-4.229258,-3.807456,-4.4953833,-4.6342587,-4.3139377,-4.66045,-4.5292873,-4.7438426,-4.5248213,-4.742991,-4.6802726,-4.354714,-4.0278974,-4.1561904,-4.1612973,-4.5554852,-4.597028,-4.316624,-4.603899,-4.300287,-4.1840253,-4.6975923,-4.671865,-4.637768,-4.558927,-4.6447635,-4.6073675,-4.674563,-4.26143,-4.7287955,-4.800443,-4.7964063,-4.5308867,-4.577826,-4.614018,-4.77,-4.8297725,-4.787315,-3.9391818,-4.282871,-4.437143,-4.4682555,-4.5734477,-4.59664,-3.7785897,-4.4469247,-4.6577935,-4.715967,-4.6069894,-4.8051124,-4.890795,-4.7819743,-4.5614886,-4.537327,-4.5495954,-4.5973096,-4.6608214,-4.6859746,-4.6660314,-4.574438,-4.621323,-4.6360655,-4.5570617,-3.4676077,-3.6278317,-4.2983274,-4.4985604,-4.620096,-4.6935763,-4.6875324,-4.560512,-4.4440627,-4.488664,-4.5373726,-4.531989,-4.5381727,-4.52974,-4.4598966,-4.5206738,-4.333852,-4.361193,-4.283675,-4.2553644,-4.2342277,-4.0948944,-3.6276126,-4.197528,-4.311909,-4.287742,-4.4552526,-4.406767,-4.490616,-4.5489326,-4.4606647,-4.269734,-4.3355803,-4.4027996,-4.4074397,-4.2996125,-4.358482,-4.399218,-4.3574967,-4.3416305,-4.180699,-3.977427,-4.1982875,-4.1901097,-4.066562,-3.1307423,-3.8052282,-4.1961436,-4.3372912,-4.35366,-4.4457088,-4.3103604,-4.4404836,-4.392986,-4.4114394,-4.406546,-4.435973,-4.4581385,-4.385073,-4.1701446,-4.359278,-4.4102397,-4.419884,-4.3913727,-4.328036,-4.346273,-4.3017354,-4.154666,-4.3406262,-4.4848437,-4.4169526,-4.4067845,-4.334766,-4.3079915,-4.0051703,-4.204803,-4.3889675,-4.396089,-4.371697,-4.33639,-4.3718133,-4.3728466,-4.450936,-4.4287834,-4.381494,-4.3588214,-4.449425,-4.4097567,-4.137864,-4.2722754,-4.2779016,-4.239824,-4.402984,-4.526766,-4.2323227,-4.412593,-4.5203238,-4.401366,-4.181835,-4.380891,-4.455174,-4.4801435,-4.46109,-4.714684,-4.4484916,-4.380125,-4.5516834,-4.6026645,-4.571208,-4.506641,-4.472202,-4.4264503,-4.488104,-4.537962,-4.505717,-4.519293,-4.473783,-4.369122,-4.3744392,-4.5401955,-4.057381,-4.4718795,-4.493876,-3.3502665,-4.516746,-4.3873963,-4.4874787,-4.479361,-4.4804387,-4.496061,-4.4018493,-4.445309,-4.403295,-4.534115,-4.5995345,-4.633781,-4.175678,-4.376389,-4.6504846,-4.6373086,-4.6032543,-4.3023148,-4.5596128,-4.228576,-4.429621,-4.4915566,-4.4912925,-4.455214,-4.4382463,-4.4112744,-4.3942833,-4.4185357,-4.388083,-4.3248844,-4.3820853,-4.2884846,-4.2546487,-4.391881,-4.290878,-4.3724265,-4.2947598,-4.3439984,-4.435093,-4.370746
+0.23867631,-0.056839526,-1.0363226,-1.8299441,-1.8888154,-2.3925588,-2.5327463,-2.673738,-2.6620264,-2.7732966,-2.8292947,-2.7200925,-2.5767062,-2.7559505,-2.0628092,-2.8278267,-2.9049535,-2.9882011,-3.169743,-3.1782045,-3.2679017,-3.2054071,-3.0944867,-3.1092944,-3.3391585,-2.8419392,-3.005451,-3.270162,-3.266479,-3.258041,-3.254457,-3.3586109,-3.3215399,-3.2846012,-3.2077365,-3.2906837,-3.3449576,-3.3593166,-3.0684457,-2.1217184,-2.8279834,-2.9411778,-3.2396824,-3.3577719,-3.4588232,-3.3337421,-3.3757977,-3.4089756,-3.4418736,-3.4578938,-3.3401046,-3.2111487,-3.1845596,-3.389103,-3.1001518,-2.3285787,-2.998241,-3.2995067,-3.3834639,-3.0560312,-2.55315,-3.0283182,-3.4681547,-3.2982354,-3.3365917,-3.3291817,-3.2795162,-3.356929,-3.1793709,-3.0852792,-3.1789408,-3.3203197,-2.4994655,-3.4719737,-3.5600145,-3.2465978,-2.6922302,-3.4558568,-3.580699,-3.1992192,-3.5303445,-3.5409007,-2.8563557,-3.5341945,-3.597877,-3.0390124,-3.3274736,-3.2201388,-3.5042162,-3.394629,-3.3218794,-3.3213034,-3.2924223,-3.2790773,-3.3465753,-3.0765262,-3.3525434,-3.0063906,-3.5284903,-2.4218588,-2.9753158,-2.9791338,-2.8913121,-2.9893303,-3.262487,-3.3285687,-3.2771277,-3.2570148,-3.2161167,-3.1140008,-3.193624,-3.222671,-3.318047,-3.303481,-3.2899542,-3.3252544,-3.295432,-3.346889,-3.4217327,-3.3948917,-3.4113498,-3.281988,-3.2862136,-3.2586951,-3.1605954,-3.0994954,-3.300167,-3.406064,-3.382213,-3.205684,-3.1830542,-2.3537343,-3.0430121,-3.3564947,-3.3908052,-3.2101412,-3.2157662,-3.2792244,-3.3314373,-2.70478,-3.1231837,-3.2980573,-3.2924318,-3.3324037,-3.283499,-3.424082,-3.3946042,-3.1508825,-3.3480737,-3.4257908,-3.423903,-3.5468287,-3.6544147,-3.4782443,-3.313517,-3.1687655,-3.3120084,-2.0187197,-2.986158,-2.6807783,-3.1030853,-2.8981595,-3.1621213,-3.4003422,-3.4091284,-3.3938665,-3.3328214,-3.4348207,-3.3936143,-3.417241,-3.152657,-3.2439384,-3.4380236,-3.490518,-3.421902,-2.3509123,-3.177602,-3.045116,-3.0706074,-3.3704357,-3.3641548,-3.357471,-3.319989,-3.3698106,-3.3592043,-2.4962144,-3.0240428,-3.2292469,-3.0146594,-2.9503112,-2.9188695,-3.1121116,-3.109971,-3.1858556,-2.9731963,-2.934874,-3.1970377,-3.2215562,-3.3006277,-3.2950494,-3.3142562,-3.5240843,-3.568142,-3.4940624,-2.8405986,-3.3200324,-3.2306743,-3.4688668,-3.4824538,-3.4302692,-3.4904034,-3.5686896,-3.5832872,-3.15757,-3.3096414,-3.2159288,-3.3690677,-3.3854158,-3.4558258,-3.5084982,-3.511404,-3.6766648,-3.6127973,-3.5181751,-3.5993347,-3.6731098,-3.6739328,-3.724328,-3.6447625,-3.5492404,-3.3521404,-3.4306037,-3.3675241,-3.2134874,-3.1479106,-3.0430222,-2.9715214,-2.9355354,-2.8972383,-2.8678079,-2.8214078,-2.657598,-2.3186717,-2.200027,-2.2174528,-2.2961004,-2.2831273,-2.2880433,-2.0470269,-2.1249292,-2.1832986,-2.1851027,-2.256705,-2.3395495,-2.303008,-2.3211632,-2.3129961,-2.2598267,-2.3361917,-2.3569775,-2.3559203,-2.4190402,-2.2526698,-2.1665008,-2.2467108,-2.2744555,-2.3066378,-2.338239,-2.3137498,-2.0838327,-2.199445,-2.150097,-2.1005743,-2.1920893,-2.2498195,-2.1960206,-2.2653837,-2.2001297,-2.280332,-2.2469316,-2.234827,-2.2951698,-2.342079,-2.3100219,-2.2819493,-2.3334599,-2.339572,-2.4431505,-2.389863,-2.3790736,-2.2725196,-2.2308779,-1.9889112,-1.9513192,-2.0022104,-1.9863939,-1.8944874,-1.8718903,-1.8251953,-1.8325813,-1.8756874,-1.8081541,-1.7280622,-1.6491244,-1.4691374,-1.4184587,-1.6405513,-1.7593112,-1.8438492,-1.829256,-1.8010104,-1.7591205,-1.8247025,-1.8766079,-2.0026839,-1.7662647,-1.7371762,-1.735642,-1.6786458,-1.6318576,-1.5689015,-1.2908783,-1.0295477,-1.1306078,-1.0825958,-1.0785608,-0.9635357,-0.9766144,-1.0372632,-1.253494,-1.306114,-1.3376579,-1.333837,-1.3972197,-1.3076975,-1.2524252,-1.4261744,-1.2936494,-1.0709913,-1.0169752,-1.0491285,-0.9432296,-1.0281835,-1.2091472,-1.3898513,-1.3889279,-1.3825204,-1.3015246,-1.1004963,-0.78199536,-0.60834867,-0.7005258,-0.2822135,-0.2562645,-0.7010905,-0.70331043,-0.5839143,-0.49405068,-0.37176442,-0.07619724,-0.12582093,-0.31151825,-0.37406737,-0.06957504,0.33881384
+-0.8091937,-1.7542229,-2.2177775,-2.6338725,-2.777439,-3.0889978,-3.201758,-3.3336565,-3.4114535,-3.441514,-3.7157216,-3.5862956,-3.5119286,-3.5456452,-2.7928176,-3.5563965,-3.6339598,-3.5276482,-3.5226045,-3.5073726,-3.4921362,-3.6247108,-3.5339358,-2.3607948,-2.7197251,-3.1071725,-3.2523756,-3.2648454,-3.3763356,-3.504984,-3.6619062,-3.7138448,-3.7707205,-3.9130874,-4.064666,-3.9924898,-4.038957,-4.1655836,-4.068002,-3.28167,-3.7379837,-3.9429197,-3.999319,-4.1460586,-4.2530403,-4.158627,-4.302875,-4.4267716,-4.41169,-4.3494515,-4.3014655,-4.211147,-4.287742,-4.4177413,-2.6666627,-3.9412942,-4.219566,-3.9779015,-4.2291136,-4.014589,-3.2650533,-3.6557045,-4.1285295,-3.965086,-4.0396185,-4.1299453,-4.152074,-4.2750244,-4.3688183,-4.319901,-3.918954,-3.3978405,-3.502633,-4.1235423,-3.8416958,-3.7436237,-4.185782,-4.162289,-4.139791,-3.6779792,-4.1361136,-4.423118,-4.002541,-4.3958297,-4.5225825,-3.1379852,-3.8898182,-4.1744547,-4.4091163,-4.394817,-4.3308663,-4.0424523,-3.784576,-4.4205375,-4.4154534,-3.3341763,-3.739213,-4.1533666,-4.5174193,-4.4354844,-4.320272,-4.200563,-3.9605403,-4.048947,-3.7820725,-4.0199203,-4.1953087,-3.6007142,-4.2371554,-4.2684712,-4.4279165,-4.3611913,-4.392689,-3.205676,-4.132334,-4.422515,-4.388455,-4.209401,-4.2882967,-4.41091,-4.4296656,-4.2198744,-3.691547,-4.4438963,-4.441722,-4.318938,-4.4299283,-4.423948,-4.3903127,-4.389979,-4.025851,-4.1079345,-4.14016,-4.051984,-4.008599,-4.3945374,-4.3916087,-4.3437705,-4.4162555,-4.339167,-3.355956,-4.143912,-4.3451266,-4.399793,-4.32617,-4.493912,-4.4194336,-4.539533,-4.505409,-4.5072265,-4.441155,-4.45342,-4.453083,-4.4335113,-4.43809,-4.0894604,-3.5304837,-3.3303368,-3.9949355,-3.3015618,-4.104303,-4.370235,-4.370857,-4.4155593,-4.3999486,-4.4133296,-4.4671597,-3.2460868,-4.084571,-4.494704,-4.408333,-4.490735,-4.4755783,-3.1072114,-3.9241128,-2.9877062,-3.6163778,-3.5888348,-4.002015,-4.318217,-4.3689876,-4.4180965,-4.401855,-4.4753904,-4.436356,-4.096727,-4.084053,-4.17246,-4.3220153,-4.426251,-4.386022,-4.5370593,-4.5205207,-4.346485,-4.27403,-4.347896,-4.537654,-4.4653225,-4.4563127,-4.382883,-4.353703,-4.474916,-4.4998746,-4.488818,-4.49538,-4.4596906,-4.424134,-4.5403576,-4.5712056,-4.5420284,-4.4911094,-4.411019,-4.4744773,-3.6594305,-4.2386823,-4.383684,-4.5050845,-4.5619726,-4.545221,-4.5230703,-4.547607,-4.5674872,-4.5543246,-4.5559244,-4.4721313,-4.574042,-4.6004357,-4.5388484,-4.5587115,-4.52491,-4.321374,-4.302874,-4.414025,-4.4523673,-4.415758,-4.4662075,-4.167965,-4.092347,-4.0395083,-4.091143,-3.9869766,-3.8144345,-3.455157,-3.2773519,-3.2703876,-3.1335468,-3.157574,-3.0470395,-2.7709293,-2.6897802,-2.6570282,-2.6376915,-2.5820808,-2.4978852,-2.420075,-2.4550548,-2.5788512,-2.6559157,-2.586473,-2.6769164,-2.5590072,-2.529151,-2.7234793,-2.8491645,-2.8627038,-2.8544662,-2.840639,-2.7692175,-2.7094758,-2.561626,-2.5746317,-2.7241328,-2.8112047,-2.727303,-2.744019,-2.7167096,-2.6082087,-2.5783653,-2.551044,-2.548139,-2.5529208,-2.4824715,-2.4871476,-2.4104455,-2.5389767,-2.3789349,-2.4341505,-2.3504596,-2.4913855,-2.526071,-2.5693116,-2.5670729,-2.5719814,-2.5799966,-2.6212144,-2.5931537,-2.6241899,-2.6220808,-2.6180737,-2.611261,-2.5447087,-2.5848713,-2.5860734,-2.5238945,-2.5515528,-2.5910435,-2.5456486,-2.484253,-2.4020753,-2.455926,-2.5000544,-2.4329176,-2.235279,-2.285214,-2.281402,-2.2141113,-2.2510147,-2.3587155,-2.368616,-2.365397,-2.2794187,-2.1858716,-2.1211095,-2.0930889,-2.0151148,-1.8894756,-1.777487,-1.7819765,-1.6641891,-1.7305784,-1.6733859,-1.6475596,-1.6832225,-1.6836698,-1.7464008,-1.7039545,-1.7497463,-1.6599956,-1.5521019,-1.7560062,-1.8239589,-1.9334898,-1.8307734,-1.813838,-1.8167582,-1.7704692,-1.747195,-1.7329314,-1.5355453,-1.4664626,-1.0086892,-1.0962777,-0.5961033,-0.37907606,-0.8561494,-0.8762004,-0.17283896,-0.15456307,-0.044285744,0.036188364,-0.8494763,-1.5047274,-2.036486,-2.3680344,-2.7929816
+-0.5629674,-1.43995,-1.7988834,-2.278707,-2.5121498,-2.4715593,-2.765997,-2.7675552,-2.815567,-2.7093773,-2.9304361,-2.798074,-2.8298047,-2.7242398,-2.9887,-3.0025597,-3.0918884,-2.7301009,-2.8115132,-2.920712,-3.1064,-3.3679361,-3.2339265,-2.5238135,-2.9548178,-3.147042,-2.757796,-2.8021207,-2.8700948,-2.9906542,-3.0774708,-3.1272259,-3.2422853,-3.3922405,-3.5323284,-3.5362158,-3.4460485,-3.550156,-3.4633746,-2.8143053,-2.947288,-3.1489756,-3.1696157,-3.0593824,-3.298848,-3.2157793,-3.3432717,-3.4545693,-3.4372883,-3.3509378,-3.2649996,-3.309382,-3.4216251,-3.5301857,-3.4118733,-3.4354575,-3.472939,-3.4704413,-3.4425583,-2.418353,-2.9258308,-3.2596846,-3.459803,-3.5250597,-3.4258714,-3.4607158,-3.3815315,-3.5120277,-3.5345116,-3.6170685,-2.9984775,-3.6689887,-3.4891458,-3.6351442,-3.4778967,-3.666624,-3.7288985,-3.2230844,-3.5511684,-3.6518397,-3.715362,-3.7646232,-3.7134142,-3.6889923,-3.714786,-3.661997,-3.72124,-3.728558,-3.680087,-3.4941566,-3.6071024,-3.7299967,-3.7438025,-2.8307,-3.748114,-3.8703227,-2.4697995,-3.59185,-3.9708323,-4.0944185,-2.1582186,-3.5660572,-3.996346,-4.091622,-3.9418268,-3.6890845,-3.8998027,-3.9968214,-4.107356,-4.257545,-4.3269095,-4.405108,-4.5551467,-3.1338987,-4.041199,-4.359287,-3.9936538,-4.2751155,-3.6281364,-4.233728,-4.413807,-4.468861,-3.3440607,-4.2449155,-4.419666,-4.2839665,-4.375088,-4.3788667,-4.3454046,-4.309186,-4.41677,-4.1958904,-4.1970725,-4.2913294,-4.292464,-4.4955463,-3.8990374,-4.344285,-4.499858,-4.494203,-2.8512836,-3.8074307,-4.265428,-4.409186,-4.4611535,-4.370915,-4.3735905,-4.382703,-4.2293925,-4.442201,-4.545881,-4.509923,-4.451364,-4.4028955,-4.458538,-4.5304646,-2.0590038,-3.8066287,-3.9580798,-3.724627,-3.9837084,-4.1802497,-4.29183,-4.24507,-4.217097,-4.091688,-4.1041417,-4.0030603,-3.8971095,-4.1236086,-4.281133,-4.3045564,-4.202279,-4.2286468,-4.24472,-2.938752,-3.6586401,-3.2556322,-3.4925838,-3.9460626,-4.156754,-4.210958,-4.2823367,-4.3168564,-4.2521234,-3.2680206,-3.7495208,-3.7068954,-3.7709608,-3.8158422,-4.0148463,-4.1322355,-4.0561376,-3.886991,-3.7363248,-3.8578057,-4.053733,-4.0999293,-4.115737,-3.981812,-3.8539748,-3.875494,-3.9469972,-4.143169,-4.209582,-4.1011834,-4.050777,-4.073097,-4.0186973,-4.058209,-4.052885,-3.9136186,-3.90795,-3.9878345,-4.067761,-4.098644,-4.0873327,-4.081824,-4.0274167,-4.010389,-4.032491,-4.0258527,-4.008992,-4.0135055,-3.956193,-4.04203,-4.040529,-4.048118,-4.0730853,-4.0775576,-3.93756,-3.7799678,-3.7182016,-3.7608209,-4.011134,-4.073272,-3.7460861,-3.68442,-3.7001023,-3.7977548,-3.7623792,-3.6957011,-3.3836162,-3.3595183,-3.1775641,-3.0877178,-3.077082,-3.0144186,-2.884798,-2.488736,-2.3800845,-2.3351376,-2.315095,-2.4384758,-2.4862828,-2.524705,-2.4835746,-2.5051885,-2.5702233,-2.6598034,-2.524817,-2.6294484,-2.949415,-2.975977,-2.8759851,-2.895,-2.8957438,-2.8191435,-2.888865,-2.750027,-2.8777246,-2.9357069,-2.9266596,-2.870908,-2.891276,-2.882196,-2.8831382,-2.6185732,-2.608545,-2.7327256,-2.7743602,-2.7298522,-2.7946186,-2.8258967,-2.7979183,-2.5526671,-2.6334822,-2.7811832,-2.984646,-3.0219889,-2.9835355,-2.967628,-2.9522693,-2.9415574,-2.8234086,-2.7332754,-2.7851129,-2.7543845,-2.8313646,-2.764387,-2.7567132,-2.7111204,-2.6028724,-2.5479338,-2.6107574,-2.4847682,-2.5402265,-2.5490792,-2.4503517,-2.6566343,-2.6596224,-2.6748207,-2.6337156,-2.6054902,-2.7254386,-2.552979,-2.4792109,-2.5665617,-2.5715938,-2.5158482,-2.5733213,-2.6181016,-2.5441875,-2.548299,-2.6041973,-2.4955654,-2.572687,-2.5308118,-2.2885227,-2.2327132,-2.2535677,-2.235409,-2.2414107,-2.2222214,-2.2491179,-2.222001,-2.3004613,-2.4100413,-2.5200434,-2.3163564,-2.3638678,-2.3372343,-2.394275,-2.2729118,-2.214155,-2.2393026,-2.1175482,-2.2256052,-2.2271857,-2.111899,-2.1516123,-2.3867419,-2.3667326,-2.527892,-2.584295,-2.5726652,-2.7816494,-2.9159806,-3.1219923,-3.1384573,-3.3413792,-3.3091652,-3.439314,-3.4062662,-3.255105
+0.42630714,-0.016308159,-0.70059747,-1.6534495,-2.1525083,-2.343443,-2.7182531,-2.9133062,-3.0731707,-2.95181,-3.1882417,-3.178551,-3.162657,-3.056406,-3.0484288,-3.063743,-2.675828,-3.0536096,-3.3517513,-3.6127963,-3.7609005,-3.9230971,-3.8365016,-3.534224,-3.668389,-3.4380665,-3.5213776,-3.5760226,-3.7056165,-3.9153538,-4.0425553,-3.9973655,-3.9077802,-3.8711495,-3.7412953,-3.6324463,-3.5583625,-3.3611917,-3.4337988,-3.1656733,-3.330226,-3.5718932,-3.3736935,-3.77325,-3.7997894,-3.7510376,-3.7366872,-3.6316988,-3.4652572,-3.2767837,-3.0186617,-3.2937663,-3.318436,-3.5449164,-3.0587802,-3.3111656,-3.4941056,-3.484283,-3.5380769,-3.596535,-3.4504561,-3.772059,-3.8612494,-3.858181,-3.8402123,-3.750733,-3.6755533,-3.5327163,-3.5332754,-3.408543,-3.2753506,-3.343573,-3.4776802,-2.172638,-3.372714,-3.6735673,-3.878241,-3.8706484,-2.933443,-3.610941,-3.8935394,-3.7916498,-3.800871,-3.9587493,-3.8516054,-3.8938818,-3.9395494,-3.8821445,-3.7397065,-3.6982665,-3.66251,-3.5469205,-3.6097395,-3.4950025,-3.4432826,-3.5103867,-1.6592627,-3.116474,-3.6473453,-3.9611425,-3.778654,-4.0453353,-4.002914,-4.166386,-4.087984,-3.9295268,-3.5543537,-2.27076,-3.2177875,-3.4989498,-3.6570284,-3.9412742,-3.487149,-3.2457745,-3.6945233,-3.958147,-3.7098556,-3.9780555,-3.159093,-3.7728086,-4.0268254,-3.746739,-3.9506307,-4.1126857,-3.5980191,-3.9963613,-4.2012987,-4.1635094,-4.162747,-2.8601217,-3.8054795,-3.880252,-3.8949552,-4.1009283,-3.881579,-4.099129,-3.9770937,-3.6275334,-3.817205,-3.1699867,-2.8623433,-3.6608977,-3.9282718,-3.9733787,-4.123633,-4.2672076,-4.263018,-3.7041535,-3.830594,-3.9255462,-4.13314,-4.034924,-3.9347014,-3.8699365,-3.786148,-3.9406981,-3.4085712,-2.943141,-3.7276206,-3.9045215,-3.9632626,-3.8910193,-4.014898,-3.9349508,-4.1094947,-3.2691092,-3.9772086,-3.8285265,-3.511693,-3.7913542,-3.8532186,-4.141093,-4.154428,-4.072133,-4.0933976,-3.9585462,-2.7590842,-3.653601,-3.8065066,-3.8928118,-3.968369,-4.043858,-4.094293,-4.093763,-4.0549054,-3.4754863,-3.573217,-3.8235116,-3.954503,-4.0358253,-4.095771,-4.1167903,-3.9340134,-4.1237535,-3.9996161,-4.0846868,-3.7394319,-4.0348783,-3.7824292,-3.586292,-3.8462548,-3.7066183,-3.9189916,-3.839592,-3.9077086,-3.943644,-3.9196515,-3.987865,-3.8832808,-3.7140374,-3.6919987,-2.2643278,-3.5114,-3.4534285,-3.4772449,-3.7011733,-3.6124845,-3.5846484,-3.594716,-3.6652782,-3.6937485,-3.7952924,-3.69944,-3.7673268,-3.8112636,-3.707582,-3.6647997,-3.761704,-3.7485175,-3.7641954,-3.1095064,-3.2749672,-3.3271804,-3.4064667,-3.5113373,-3.5420046,-3.5479355,-3.6363363,-3.559627,-3.473158,-3.4275668,-3.4025977,-2.4896636,-2.656467,-2.7204616,-2.705092,-2.7114573,-2.6886387,-2.0590844,-2.044599,-1.9968,-1.9621949,-1.9243801,-1.8866324,-2.0262613,-2.1048055,-2.1352794,-2.1583874,-2.141875,-2.0274415,-2.2238019,-2.2370741,-2.24587,-2.1186256,-2.0442796,-2.1374102,-2.1269727,-1.9974074,-2.19666,-2.214685,-2.192815,-2.1107023,-2.2071805,-1.9771836,-2.11907,-2.0834217,-2.0823438,-2.2628958,-2.3544521,-2.418661,-2.4769154,-2.3105297,-2.424979,-2.2425919,-2.3071058,-2.266683,-2.342184,-2.2294147,-2.2960505,-2.2978268,-2.2896256,-2.188965,-1.8163605,-1.869606,-1.9322088,-1.8048568,-2.0202277,-2.0043144,-2.176457,-2.187989,-2.2067425,-2.082648,-1.8185127,-1.6058908,-1.5866859,-1.8471751,-2.0885365,-2.280519,-2.1265006,-1.9723532,-2.078866,-1.7541046,-2.2657342,-2.1960926,-2.0851498,-1.5838325,-1.5337558,-1.9447541,-1.8945096,-1.8298645,-1.6988697,-1.4781907,-1.4383595,-1.5257113,-1.3601372,-1.3208032,-1.4332776,-1.6048563,-1.7887065,-1.7801795,-1.7303045,-1.6637907,-1.6180618,-1.4038377,-1.434622,-1.3039875,-1.2989185,-1.2987199,-1.3090975,-1.4146988,-1.6935897,-1.7874434,-1.6505852,-1.473104,-1.4318683,-1.3258672,-1.3724387,-1.3206847,-1.2292287,-1.2419734,-1.451565,-1.8497276,-1.9616666,-2.3893223,-2.1888576,-2.4932432,-2.6583045,-3.1117334,-3.3766634,-3.4252028,-3.6959882,-3.5500274,-3.7581325,-3.7439141,-3.671121
+0.41251314,0.33760303,0.010378122,-0.69519526,-1.228718,-1.6075397,-1.8244593,-2.1940315,-2.3549318,-2.2758312,-2.526227,-2.5805764,-2.5227218,-2.5281935,-2.345971,-1.965718,-1.7841523,-2.2643647,-2.6127386,-2.8139887,-2.9316244,-3.0898259,-2.8940315,-2.8518906,-2.9265847,-1.5379357,-2.7443042,-3.0252564,-3.3029685,-3.3580787,-3.473829,-3.5109847,-3.3600087,-3.2806387,-3.222836,-3.082486,-2.5902693,-3.3176985,-3.314022,-3.3883958,-3.3286705,-3.578322,-3.2715602,-3.462802,-3.3617415,-2.7277455,-3.4981043,-3.7075887,-3.5629497,-3.475607,-3.445846,-3.3746133,-3.209977,-3.2120924,-3.2934647,-3.3926957,-3.450568,-3.4207878,-3.3397093,-3.1933312,-3.092085,-3.140633,-3.0427551,-2.918292,-2.9628696,-2.9927835,-2.9650607,-3.0032248,-2.820929,-2.869585,-2.807324,-3.122038,-3.2102065,-1.7658448,-2.973967,-3.255799,-3.4473763,-3.378372,-3.572903,-3.446499,-3.4492083,-3.4348495,-3.341395,-3.4534595,-3.3618731,-3.2566345,-3.2541323,-3.2248456,-2.6371384,-3.0721755,-3.1686344,-1.6571219,-3.2352638,-3.7266088,-3.5645227,-3.607918,-3.2711449,-3.4533234,-3.738299,-3.7097116,-3.5687344,-3.5696497,-3.5534143,-3.5512383,-3.592359,-3.597774,-3.552449,-3.447243,-3.1360056,-3.1872668,-3.2483003,-3.3549001,-2.8568559,-3.234005,-3.5703578,-3.741931,-3.3766003,-2.5464616,-2.4653,-3.3950396,-3.6792927,-3.4136038,-3.517222,-3.757298,-3.2990737,-3.3841631,-3.6950617,-3.6486843,-3.789908,-2.9519763,-3.4024034,-3.2704022,-3.4898624,-3.5084646,-3.468073,-3.4677641,-3.0062332,-3.166038,-3.4748983,-3.101932,-2.997779,-3.6165395,-3.6323452,-3.3817017,-3.2434227,-3.4655976,-3.3083293,-3.6299458,-3.477624,-3.3748899,-3.3775892,-3.6394114,-3.6753445,-3.5989943,-3.515194,-3.4926467,-2.6804388,-3.2747824,-3.3226585,-3.4686253,-3.4398632,-2.9321303,-3.4502547,-3.1586578,-3.2824366,-3.2026265,-3.5724394,-2.8959599,-3.2966967,-3.2848334,-3.1326578,-3.337509,-3.2643623,-3.3609471,-3.5509684,-3.5619345,-2.0870557,-3.199745,-3.293922,-3.3615553,-3.29811,-3.4773054,-3.4935315,-3.4702635,-3.428159,-2.6505804,-2.8335984,-3.1525095,-3.3546028,-3.4427629,-3.3892922,-3.4394722,-3.1044233,-3.3595607,-3.4434605,-3.4642682,-3.189488,-3.2055206,-3.2829044,-3.2867768,-3.3215675,-3.2972813,-3.4289951,-3.3346303,-3.263337,-3.329712,-3.3935628,-3.4469028,-3.376099,-3.3014905,-3.1841233,-3.4068174,-3.464745,-3.2574096,-3.2234821,-3.4589918,-3.312329,-3.1742089,-3.241664,-3.29254,-3.2847369,-3.3316119,-3.3054051,-3.299581,-3.3158736,-3.3294249,-3.3106847,-3.3382535,-3.26975,-3.1378741,-3.142982,-3.1496315,-3.108263,-3.0799327,-3.2291126,-2.936545,-3.1227067,-3.1388988,-3.0457687,-2.9995499,-3.088777,-2.9351294,-3.1588097,-3.059922,-3.0081153,-3.0322328,-2.9698126,-2.9380407,-3.0008428,-2.7236729,-2.5675292,-2.39608,-2.4126697,-2.4787304,-2.5670733,-2.6653657,-2.4657898,-2.435673,-2.3943315,-2.004859,-1.8646808,-1.9117732,-2.0040019,-2.195696,-2.0998464,-1.9768958,-2.039896,-2.0333765,-1.7123857,-1.7728415,-1.8599243,-1.9442122,-1.8466692,-1.8900104,-1.8285024,-1.7645235,-1.6530101,-1.6362252,-1.5482523,-1.57637,-1.5870275,-1.6195982,-1.5874553,-1.5132775,-1.6952615,-1.5846076,-1.4498339,-1.4251845,-1.5718126,-1.567374,-1.6149116,-1.6485624,-1.7538753,-1.7235234,-1.7262046,-1.5201681,-1.5221272,-1.5379984,-1.1568534,-1.3268335,-1.3807938,-1.380094,-1.4300582,-1.4015982,-1.3755708,-1.3490119,-1.0761075,-0.9971641,-0.8680058,-1.2232974,-1.2519081,-1.2773857,-1.0842049,-0.8511253,-1.036088,-1.1866109,-1.0709949,-1.0313928,-1.1892066,-1.1955316,-1.2097926,-1.1988173,-1.1724255,-1.1515398,-1.023602,-0.95043844,-0.93828183,-1.048718,-1.0241044,-1.2339876,-1.253232,-1.1861022,-1.3172898,-1.23634,-1.2060664,-1.3029258,-1.2182286,-1.1642568,-1.0750124,-1.0969219,-1.1548002,-1.2581072,-1.1971262,-1.2868013,-1.2329867,-1.106904,-1.2557924,-1.3967183,-1.2846959,-1.2475307,-1.5408275,-1.9245503,-1.8619647,-2.1494074,-2.196364,-2.4932184,-2.5674238,-2.611749,-2.7626512,-2.4619243,-2.8619423,-2.1695952,-2.9756799,-3.1683316,-3.1347842
+0.23631406,-0.05266592,-1.034945,-2.077037,-2.5731134,-2.9589248,-2.9867938,-3.2240133,-3.2696037,-3.1467721,-3.4326453,-3.4989502,-3.5433176,-3.6622024,-3.1405077,-3.11816,-2.7586155,-2.7076163,-2.8724728,-3.045848,-3.174883,-3.5763397,-3.7822132,-3.7428684,-3.7984014,-2.5472991,-2.9652443,-3.2806134,-3.4558744,-2.7649612,-3.2634256,-3.3761322,-3.4263682,-3.7860618,-4.0293207,-4.0875864,-3.4134989,-3.3160203,-3.731073,-3.835847,-3.9105506,-4.021977,-3.9811406,-4.1782546,-4.2013817,-3.3310087,-3.6772757,-3.909246,-4.000158,-4.07692,-4.2205806,-4.211063,-3.6150248,-4.2022166,-4.238788,-3.999148,-3.8761773,-4.162333,-4.319436,-4.2979245,-4.2168975,-3.818831,-4.2537694,-4.355597,-4.374973,-4.34767,-4.29205,-4.2787104,-4.206549,-4.1623282,-4.160545,-4.1305585,-4.0668225,-2.9514441,-4.0306897,-4.45334,-4.5208497,-4.389979,-4.390396,-4.29518,-4.209122,-4.197409,-4.1653543,-3.56864,-4.159142,-4.4110293,-4.4708357,-4.4222016,-4.31795,-4.122833,-4.216907,-4.3056984,-4.279762,-4.4811335,-4.479201,-3.0334373,-4.1994157,-4.50134,-4.6341414,-4.5773263,-4.4662633,-4.351149,-4.291225,-4.222629,-4.2472343,-4.2962713,-4.25883,-4.2862782,-4.160202,-4.287386,-4.342813,-4.3402085,-4.4292264,-4.3620257,-4.503135,-4.481888,-4.4053683,-4.123326,-3.7098508,-4.028253,-3.421228,-4.3128734,-4.3645988,-4.121979,-4.3150687,-4.4212446,-4.369926,-4.423485,-4.5116577,-3.4973698,-4.4813714,-4.5330286,-4.349467,-3.804236,-4.4338317,-4.555635,-4.480309,-4.361436,-4.3373046,-4.2450624,-2.4058604,-3.6674805,-4.228873,-4.484652,-4.5060225,-4.453399,-4.4238176,-4.3404355,-4.356617,-4.3651185,-4.286747,-4.269829,-4.2171006,-4.1614394,-4.1242785,-4.087909,-4.1507893,-4.1356425,-3.966782,-3.9717116,-4.1879535,-4.1019793,-4.094443,-4.0630527,-4.053904,-3.8509603,-4.101245,-2.6815133,-3.9349265,-4.243618,-4.235807,-4.2312546,-4.186814,-4.150151,-4.084487,-4.051468,-3.0869966,-3.9827209,-4.1576796,-4.2144713,-4.1326194,-4.223094,-4.19657,-4.1311345,-4.147982,-3.9841604,-3.8090396,-3.946095,-3.913278,-4.062143,-4.0703607,-4.1492066,-4.016007,-3.9885578,-4.0173545,-4.1110187,-4.0320024,-4.049088,-4.0281043,-4.0461197,-3.9847922,-3.0955164,-3.738648,-3.7990394,-3.8905554,-3.9312553,-4.04509,-4.008269,-3.9815965,-3.9695406,-3.9417453,-4.013164,-4.00997,-3.9615555,-3.993887,-3.9121132,-4.0030904,-4.04184,-4.0748954,-4.106303,-3.990522,-3.999094,-4.0658712,-4.01643,-3.9850874,-4.0796943,-4.114244,-4.0318365,-3.9618416,-3.9757361,-3.6836424,-3.4326074,-3.4809206,-3.8718405,-4.109683,-3.4560204,-3.5830164,-3.5940917,-3.5665503,-3.8375282,-3.924912,-3.9449277,-3.8508968,-3.633278,-3.4314077,-3.4428675,-3.4240396,-3.5019894,-3.6750078,-3.1071925,-3.0390813,-2.7367144,-2.7874773,-2.9286923,-2.993752,-3.0021567,-2.9262466,-2.8985171,-2.679591,-2.728949,-2.4040005,-2.500924,-2.648368,-2.8062239,-2.7993174,-2.679039,-2.7444763,-2.9633627,-2.425593,-2.4670181,-2.4877481,-2.55223,-2.5463839,-2.6254144,-2.5778732,-2.560148,-2.4756546,-2.4638796,-2.1932774,-2.0942173,-2.2429354,-2.3417685,-2.3550172,-2.3556986,-2.3184223,-2.2061524,-2.1740456,-2.1958013,-2.2086205,-2.1667256,-2.1368988,-2.2525654,-2.3956256,-2.4785137,-2.4529786,-2.2897885,-2.324621,-2.3983061,-1.7535295,-1.7133133,-1.7017655,-1.7924376,-1.8178647,-1.7819006,-1.8025727,-1.8016138,-1.6498568,-1.6661685,-1.6424458,-1.7932138,-1.8588462,-1.8370738,-1.7564814,-1.5752287,-1.6168187,-1.7445474,-1.7887101,-1.8453102,-2.0516105,-2.1057677,-2.1522796,-2.3229687,-2.4080532,-2.5750403,-2.811431,-2.8620808,-3.0120256,-3.1325274,-2.143112,-1.7990189,-1.7360392,-1.688647,-1.6968775,-1.5769064,-1.6151993,-1.6631968,-1.6885304,-1.7516007,-1.8250103,-1.8566012,-1.8791485,-1.856451,-1.9224086,-2.1092458,-2.2228267,-2.6896393,-2.8492231,-3.050978,-3.2830377,-3.2864172,-3.4997377,-3.6047256,-3.5003371,-3.5809662,-3.6464434,-3.7404408,-3.7536826,-3.4383626,-3.794438,-3.6774008,-3.774881,-2.1968355,-3.3583333,-3.6222067,-2.8230023
+0.33027238,-0.49091,-1.5851026,-2.0534313,-2.1560545,-2.2458503,-2.4093297,-2.5379572,-2.5881586,-2.5378647,-2.403718,-2.4926345,-2.6069412,-2.539009,-2.6563377,-1.9257762,-2.4574962,-2.7314348,-2.9640474,-2.9549303,-2.9999123,-3.226419,-3.231226,-3.138739,-3.270721,-2.9721408,-3.0311756,-3.168851,-2.5404725,-2.7003124,-2.8328035,-2.9170034,-2.9857259,-3.173026,-3.299961,-3.37848,-2.3003292,-3.1857162,-3.48258,-3.7039418,-3.7081919,-3.783895,-3.8742814,-3.6493602,-3.6134596,-3.0732749,-3.0834126,-3.3424463,-3.4654765,-3.5802984,-3.5623295,-3.4937916,-3.4442964,-3.526342,-3.7293048,-3.256846,-3.0876708,-3.3057384,-3.6026068,-3.830803,-3.8406773,-3.2191,-3.618999,-3.9386992,-3.8395333,-3.8205237,-3.7402153,-3.635054,-3.6374536,-3.6086683,-3.6308641,-3.4725232,-3.4890606,-2.4168472,-2.6145394,-3.3621094,-3.7217212,-3.721487,-3.761991,-3.6178908,-3.5541842,-3.4754004,-3.4965239,-3.4809647,-3.404453,-3.5527418,-3.5146542,-3.308287,-3.529511,-3.3482485,-2.624682,-3.4795122,-2.9254193,-3.6090171,-3.7538242,-3.7631721,-3.7237315,-3.6843605,-3.6404738,-3.6048079,-3.5658107,-3.6467323,-3.6739993,-3.7248793,-3.7642112,-3.7730503,-3.720797,-3.741107,-3.061151,-2.4135275,-3.57072,-3.6235194,-3.7520833,-3.690685,-3.3263981,-2.1607878,-3.184647,-3.5372415,-3.5741184,-3.403113,-3.5027435,-3.6983886,-3.6047447,-3.6624413,-3.3745527,-3.564886,-3.948032,-3.5404825,-3.452354,-3.401091,-3.402767,-3.39259,-3.4670653,-3.454806,-3.6815114,-3.6889534,-3.7657123,-3.602178,-3.7672343,-3.7852912,-3.6907787,-3.525457,-3.6973414,-3.6954193,-3.7515063,-3.875873,-3.7510777,-3.7867398,-3.846098,-3.8661447,-2.7442176,-3.3448138,-3.693574,-3.699595,-3.8179455,-3.6131444,-2.4989786,-3.4478977,-3.8491902,-3.9790463,-3.9736629,-3.9917302,-3.9013386,-3.8863173,-4.0291667,-3.796085,-3.8365827,-3.7984977,-3.8365588,-3.9280667,-3.9133153,-4.002049,-3.9999003,-4.109842,-4.08785,-3.9379044,-3.9094968,-3.9413018,-4.0187583,-4.0847297,-4.0964026,-4.056659,-4.182709,-3.9991727,-4.041742,-3.8721967,-3.7448678,-3.8935862,-2.6518562,-3.393668,-3.5380292,-3.6971545,-3.7825518,-3.744947,-3.1177585,-3.7184887,-3.715303,-3.778431,-3.7989497,-3.8450828,-3.8194613,-3.8079987,-3.7429996,-3.7850718,-3.8253546,-3.8982687,-3.8821135,-4.031524,-3.8821206,-3.8415012,-3.8171601,-3.9442716,-3.9126825,-3.7975307,-3.841783,-3.9112134,-3.8955646,-3.8829064,-3.9091115,-3.93252,-3.931211,-3.8741388,-3.8715777,-3.9584017,-3.9346032,-3.9188895,-3.9559975,-3.9049764,-3.8395247,-3.7525182,-3.7546139,-2.7789555,-2.9916878,-3.3684664,-3.5241086,-2.5824919,-3.177118,-3.2388523,-3.2364612,-3.3865228,-3.2789736,-3.4620676,-3.3959465,-3.2699456,-3.143963,-3.2519355,-3.1596494,-3.1536424,-3.344479,-2.9544513,-2.461515,-2.1839337,-2.1963353,-2.4203305,-2.5201993,-2.4426694,-2.4035592,-2.3924503,-2.2757926,-2.6248584,-1.9960418,-1.8415127,-1.9684114,-2.3983111,-2.6121655,-2.179616,-2.1442907,-2.2893581,-1.5704589,-2.0611517,-1.9657681,-2.0518813,-1.8909526,-1.9281795,-1.8899152,-1.7561383,-1.7691622,-1.543989,-1.4680746,-1.4309473,-1.4599743,-1.5391068,-1.6459806,-1.7868085,-1.7444851,-1.5884724,-1.5560756,-1.4586642,-1.4628966,-1.5748534,-1.1976881,-1.2915022,-1.4371228,-1.5126989,-1.4824381,-1.3842926,-1.3230805,-1.2977679,-1.2844474,-1.2735434,-1.2651362,-1.3600647,-1.3730292,-1.4062517,-1.39224,-1.3873978,-1.2289345,-1.0372007,-1.0081213,-1.0851429,-1.293863,-1.450798,-1.6909909,-1.8867803,-2.037276,-2.15112,-2.3029444,-2.3350732,-2.4086852,-2.4487631,-2.5259745,-2.6013684,-2.77047,-2.8405366,-2.823919,-2.8511176,-2.886063,-2.969617,-2.5504773,-2.1830482,-1.884918,-1.8437898,-2.013443,-2.2890003,-2.2317376,-2.3991332,-2.5369492,-2.7520475,-2.8554888,-2.9128864,-2.9688406,-3.1128988,-3.1856313,-3.1994505,-3.1100092,-3.1304712,-3.096857,-3.1439893,-3.1504035,-3.0729995,-3.244438,-3.217864,-3.144432,-3.2204385,-3.2617111,-3.1960714,-3.198561,-1.9094343,-3.1975603,-3.3213444,-3.4796166,-3.222824,-2.9340763,-3.311081,-3.2055862
+-0.30421978,-0.8242509,-1.3550687,-1.5753536,-1.9287741,-2.0206587,-2.045035,-2.1204069,-2.156202,-2.1885839,-1.8776245,-2.5008225,-2.5968375,-2.685332,-2.6712441,-1.9399278,-2.20222,-2.3651333,-2.3674235,-2.4773016,-2.7662563,-2.8953996,-3.1217494,-3.1747985,-3.2888272,-3.3002791,-3.1900284,-2.97686,-1.9438164,-2.3952434,-2.3873718,-2.6380954,-2.7091506,-2.7938771,-2.922564,-3.0181742,-2.9970813,-3.0205688,-3.0120912,-3.068158,-2.517632,-3.2020943,-3.179843,-3.310701,-3.25219,-2.7262278,-2.759994,-3.0581188,-3.2666276,-3.2467353,-3.1892157,-3.2528539,-3.2362971,-3.1201038,-3.1890335,-1.798239,-2.5799477,-2.9129627,-3.0521383,-2.9819584,-2.9998713,-2.882781,-3.230831,-3.1858468,-3.122298,-3.0764241,-2.8770428,-2.7060034,-3.0133123,-2.9852946,-3.0512028,-3.0061703,-2.984531,-2.4420514,-2.8901844,-3.216896,-3.4190283,-3.3975952,-3.391274,-3.362969,-3.2896225,-3.076252,-3.2053208,-2.9853883,-3.094101,-2.6652708,-2.8515253,-3.1870089,-3.0802612,-2.9334304,-2.9919388,-2.7948394,-2.6688595,-2.8972075,-3.1552577,-3.3073335,-3.2764804,-3.372411,-2.9935172,-2.9892495,-3.4023175,-3.5073602,-3.4221382,-3.4518905,-3.4070458,-3.44913,-3.4459805,-3.502748,-2.8409002,-3.092288,-3.2711453,-3.126698,-3.313617,-3.33923,-2.9756768,-3.0614085,-2.8789485,-2.7895079,-3.0176115,-2.3535147,-2.9931343,-3.2059927,-3.1684222,-3.1196027,-3.1393366,-3.175006,-3.2843041,-2.7847095,-2.5226257,-2.4470506,-2.912592,-2.9716465,-3.1985312,-3.0174704,-3.050117,-2.9484758,-3.215255,-3.307248,-2.6173043,-3.1668591,-3.1971242,-2.9975276,-3.3180547,-3.2871628,-3.2685437,-3.404049,-3.247573,-3.2872305,-3.3408952,-3.4041011,-2.5866327,-2.647942,-3.0015762,-3.0846782,-3.1664789,-3.1754146,-3.1711502,-3.15559,-3.2080846,-3.2546551,-3.293339,-3.309586,-3.345387,-3.3947136,-3.4880016,-3.3075972,-3.3319798,-3.346173,-3.3765638,-3.4437277,-3.4170778,-3.5237415,-3.5727096,-3.665937,-3.6746514,-3.6687844,-3.63061,-3.663301,-3.7462616,-3.7211452,-3.7170076,-3.6977534,-3.7145772,-3.6713078,-3.5876641,-3.5693867,-3.48564,-3.6155198,-3.6991005,-3.7080975,-3.6956244,-3.681965,-3.65052,-3.6098332,-3.72501,-3.743527,-3.6410787,-3.5759115,-3.5828526,-3.5806012,-3.725079,-3.8079886,-3.7970982,-3.8090625,-3.7136168,-3.7244534,-3.7306972,-3.7053976,-3.7751265,-3.7176604,-3.6294014,-3.6358619,-3.699902,-3.6327639,-3.6809766,-3.8022866,-3.8314466,-3.776873,-3.7405405,-3.745912,-3.7786899,-3.8098054,-3.7705636,-3.791154,-3.8714724,-3.798956,-3.8316226,-3.8070502,-3.729446,-3.5751128,-3.640656,-2.966227,-2.9481254,-3.3324766,-3.2683134,-2.5483942,-2.7935386,-2.8203616,-2.8271132,-2.9560592,-2.992774,-2.9544728,-2.8820572,-2.7621841,-2.647977,-2.6141675,-2.6224098,-2.739658,-2.8707728,-2.5331674,-2.0384731,-1.9275422,-2.2745302,-2.525745,-2.6287935,-2.4903848,-2.472396,-2.4484484,-2.415105,-2.6050336,-1.936266,-1.9093869,-2.35411,-2.5226278,-2.5605018,-2.1399956,-2.37846,-2.3446803,-1.5762401,-2.4409745,-2.4055429,-2.478523,-2.3873918,-2.4992452,-2.4554415,-2.3753667,-2.4509058,-2.109025,-1.9900334,-1.6984565,-1.7171395,-1.97386,-2.1632493,-2.1885483,-2.1382122,-2.1099372,-2.0982533,-1.8819847,-2.0369864,-1.6103995,-1.5992472,-1.7138085,-1.8757613,-1.9469616,-1.8137689,-1.7817926,-1.7949557,-1.8165908,-1.8489118,-1.5431759,-1.6307456,-1.6857557,-1.8660841,-1.9795067,-2.046906,-2.0463772,-2.036614,-1.5351858,-1.5848584,-1.966897,-2.1144998,-2.1572266,-2.259642,-2.3480015,-2.4558568,-2.5181613,-2.659844,-2.7308218,-2.735634,-2.7181058,-2.780292,-2.9312477,-3.0104084,-3.0934875,-3.2105126,-3.150798,-3.21283,-3.2527823,-2.4510713,-2.3237553,-2.2725813,-2.4043229,-2.4482944,-2.5636249,-2.3453119,-2.5831265,-2.7103734,-2.8189626,-2.9207926,-3.0480943,-3.0058584,-3.225432,-3.3244638,-3.4440713,-3.5234737,-3.5300472,-3.5076375,-3.5434823,-3.567278,-3.495072,-3.599583,-3.6208608,-3.5385692,-3.6061068,-3.7268572,-3.703731,-3.6095486,-1.586726,-2.689552,-3.0319371,-3.2816687,-3.4655566,-3.024555,-3.056373,-3.3240929
+-0.7432485,-1.7119465,-2.2208686,-2.5226433,-2.76433,-3.0170286,-3.1865087,-3.2928607,-3.3977516,-3.3523512,-2.6396499,-3.6151192,-3.661884,-3.7392125,-3.6796463,-2.9500546,-3.1902952,-3.5395417,-3.238777,-3.3996515,-3.527117,-3.651628,-3.6769361,-3.7627597,-3.8955135,-3.9480996,-4.0623536,-3.9267006,-2.6011004,-3.3105483,-3.2787051,-3.3826888,-3.346242,-3.426245,-3.5450754,-3.6351688,-3.7480054,-3.8815818,-3.9930315,-4.067653,-3.6506007,-4.151383,-4.2327495,-4.2295327,-4.1750746,-4.1016154,-3.7997394,-4.026963,-4.1108184,-4.022654,-3.870214,-3.7171197,-3.9453797,-3.948112,-3.836166,-3.875853,-2.501998,-4.027097,-4.0161414,-4.0883064,-4.1055465,-3.1072588,-3.7240129,-3.8422437,-3.8348331,-3.8463879,-3.8722515,-3.1472378,-4.016188,-3.9615278,-4.015873,-3.8953538,-3.2147405,-3.2686176,-3.9686089,-4.0114207,-3.9586406,-4.204479,-4.248654,-4.0656543,-3.936699,-3.848722,-3.8845544,-3.812849,-3.802464,-3.823573,-3.788187,-3.8006558,-3.763494,-3.4355893,-3.8443856,-3.8291478,-2.1937475,-3.819724,-3.8355718,-4.2021117,-4.2394605,-4.2055955,-4.246039,-4.200766,-4.168525,-4.10916,-4.2421207,-4.246722,-4.250358,-2.0341,-3.8258762,-4.151251,-4.3104234,-4.229276,-4.115669,-4.256698,-4.3362336,-4.326969,-4.329606,-4.2306857,-4.1731095,-4.1451154,-4.165746,-4.0936112,-3.9736562,-3.9719186,-4.203875,-4.093349,-4.1028476,-4.232842,-3.0748527,-3.0240445,-4.138964,-4.2901254,-4.05831,-4.3357654,-4.36182,-4.207621,-3.0035243,-4.117406,-4.2743354,-4.365646,-4.044753,-4.259055,-4.249949,-3.1263754,-4.226697,-4.2376657,-4.319887,-4.0399346,-3.8319263,-4.214704,-4.3266873,-4.3711805,-4.2812,-4.234698,-3.2943227,-4.0785766,-4.209002,-4.158465,-4.227719,-4.137219,-4.1147656,-4.17164,-4.201614,-4.2410083,-4.1854396,-4.2718844,-4.298967,-3.877523,-3.6218143,-4.0909257,-4.193807,-4.2701426,-4.2144666,-4.2684674,-4.2422075,-4.209795,-3.9282937,-3.7482553,-4.0201545,-4.137639,-4.2489934,-4.31115,-4.277313,-4.260964,-4.2770686,-4.23939,-4.279983,-4.1265264,-4.010088,-4.237722,-4.289104,-4.279199,-4.3239403,-4.3717933,-4.323151,-4.268647,-4.336963,-4.363052,-4.323972,-4.2587667,-4.1642365,-4.113027,-4.2654285,-4.290093,-4.3132167,-4.351771,-4.324378,-4.3865695,-4.346356,-4.336248,-4.382632,-4.297234,-4.2813706,-4.3134503,-4.3580794,-4.2443013,-4.325046,-4.363679,-4.393005,-4.36404,-4.205137,-4.0613046,-4.2053475,-4.2934394,-4.265939,-4.344947,-4.343243,-4.3265395,-4.3741117,-4.374157,-4.297201,-4.0927405,-4.0331597,-4.1251206,-4.3120527,-4.4361787,-4.2230496,-3.241342,-3.9905534,-4.090692,-4.191195,-4.2438235,-4.137885,-4.124602,-4.2263584,-4.1489625,-4.213898,-4.2439113,-4.1756253,-4.171604,-4.174602,-4.193809,-3.9998116,-3.7450404,-3.7736125,-3.8405538,-3.983642,-3.954392,-4.063555,-4.064484,-3.9973512,-3.805757,-3.816688,-3.5203664,-3.4396646,-3.6310744,-3.7384906,-3.5862393,-3.5548444,-3.5946195,-3.3485944,-3.6138575,-3.6673832,-3.6516445,-3.7163496,-3.706746,-3.836185,-3.780459,-3.760487,-3.8167014,-3.6985116,-3.543042,-3.303344,-3.2485585,-3.0261655,-3.2434664,-3.243513,-3.2560577,-3.3841746,-3.486164,-3.4548311,-3.1861103,-2.8967652,-3.018754,-3.0158215,-3.027844,-3.0202389,-3.0186486,-2.9099374,-2.8988335,-2.9412017,-2.8800287,-2.8850846,-2.8929417,-2.888536,-2.8655117,-2.9459887,-2.938282,-3.0492492,-2.9527838,-2.9367063,-2.9237819,-2.999113,-3.0311246,-3.1654074,-3.1485767,-3.2444956,-3.0929823,-3.135284,-3.2771997,-3.0955548,-3.201767,-3.267229,-3.2246602,-3.3261893,-3.4095824,-3.2875109,-3.4815092,-3.4846797,-3.347319,-3.6693726,-3.86263,-3.772925,-3.8146138,-3.828176,-3.8861284,-4.001415,-4.0804286,-4.062885,-3.9474263,-3.8692346,-3.7747235,-4.216238,-4.113879,-4.0656166,-4.163838,-4.217203,-4.2766433,-4.2737036,-4.134581,-4.1147203,-3.9809966,-4.1068506,-4.0502343,-3.9683003,-4.0392766,-4.1360636,-4.182188,-3.775231,-2.233125,-3.6285133,-3.8532767,-4.149486,-4.1729245,-3.2696238,-3.8129582,-4.0014787
+-0.82637984,-1.5949874,-2.2603848,-2.4749348,-2.7939067,-2.880786,-3.0262694,-3.1675348,-3.3433452,-3.2742538,-3.2810695,-3.5650458,-3.638832,-3.6071172,-3.5121264,-2.7987719,-3.478757,-3.4474854,-3.2119179,-3.9475904,-3.8402476,-3.8668923,-3.8532643,-3.9482937,-3.9254527,-3.9164686,-3.9903998,-3.9233098,-2.5660896,-3.8626947,-3.0314918,-3.9983807,-4.0312266,-3.817884,-3.8044224,-3.8022676,-3.9,-3.8736434,-3.9697633,-4.017161,-3.9845672,-3.8885894,-4.0301647,-3.9364862,-3.9854617,-2.675489,-3.8941283,-3.892908,-4.293655,-4.0991507,-3.9805155,-3.806108,-3.9360385,-3.8867846,-3.8711934,-3.8843904,-3.95966,-4.0347543,-4.047108,-4.096589,-3.0210195,-2.8627844,-3.9347758,-3.8835397,-3.737105,-3.8020158,-3.2811027,-3.5577822,-3.2599912,-3.6192203,-3.8881607,-3.9691706,-3.85599,-2.7206316,-3.962984,-4.0011888,-4.0563226,-4.2006664,-4.39332,-4.2750134,-4.2477674,-4.2914195,-4.2907977,-3.9326692,-2.3815668,-2.7765102,-3.1612017,-3.8753905,-4.010719,-4.1108556,-3.9098697,-4.1099763,-3.5777693,-4.12981,-3.7434726,-4.20721,-4.2207284,-4.3125577,-4.4009275,-4.0872903,-4.374163,-4.30656,-4.475402,-4.5163164,-4.649174,-4.495822,-4.6066995,-4.496298,-4.487879,-4.5072637,-4.4892373,-4.444675,-4.4044933,-4.3752227,-4.005655,-2.726632,-3.006435,-3.9670663,-3.1592612,-2.6666336,-3.6434917,-3.7326021,-3.945681,-3.646295,-3.7196045,-3.8341231,-3.5267322,-2.722329,-2.9826672,-3.1120143,-3.6914775,-3.9129567,-3.8910747,-3.2105584,-3.4350817,-3.2296867,-4.114944,-4.1594663,-4.1380353,-4.2876744,-2.9856093,-3.67273,-3.9431067,-3.6449819,-4.214688,-3.9775672,-3.8113313,-3.6390536,-4.126374,-3.8814845,-3.5475302,-3.9884758,-3.9265008,-2.7485905,-3.3099098,-3.779736,-3.9976068,-3.7445302,-2.9360282,-3.776949,-3.9522076,-3.9997468,-3.6391428,-4.1601195,-4.1863194,-4.174867,-3.3302653,-3.8408895,-4.1136837,-4.025222,-4.249458,-4.2168555,-4.2222714,-4.1947904,-4.0988984,-3.5413156,-3.9289222,-4.116076,-4.167003,-4.2581043,-4.264112,-4.231461,-4.2284966,-3.6963406,-4.198702,-4.186259,-4.2233715,-4.255882,-4.331304,-4.306605,-4.3691387,-4.246902,-4.2528567,-4.335322,-4.413757,-4.4237337,-4.3414574,-4.214962,-4.1514783,-4.0782733,-4.4098005,-4.4494166,-4.4266467,-4.445123,-4.425821,-4.4274106,-4.4839473,-4.3728623,-4.5056567,-4.455193,-4.3937135,-4.3908515,-4.5159507,-4.366921,-4.350263,-4.509255,-4.534371,-4.5695577,-3.842729,-3.3368387,-4.0573716,-4.021728,-4.016884,-4.2102485,-4.198075,-4.2615485,-4.279284,-4.1790733,-4.1246595,-4.0525503,-3.9924188,-4.1402683,-4.235357,-4.367148,-4.3133907,-4.11667,-4.340401,-4.328519,-4.2535663,-4.3353133,-4.419457,-4.3431168,-4.2046304,-4.1740804,-4.1504536,-4.0719056,-4.09416,-4.094937,-4.116962,-4.0339637,-3.9670286,-3.5674438,-3.6590514,-3.9023614,-3.982524,-4.0389957,-4.118861,-4.141181,-4.094855,-4.021645,-3.8473225,-3.5092974,-3.4501777,-3.604265,-3.805819,-3.618646,-3.7802348,-3.9787369,-3.74191,-3.9115176,-3.9146004,-3.9839911,-3.9497037,-3.9645247,-4.0055194,-4.080713,-4.1219974,-4.0489855,-4.0426755,-3.8484173,-3.2362297,-3.047645,-3.1985228,-3.2686625,-3.4060063,-3.4909046,-3.726286,-3.8033018,-3.8492246,-2.6212142,-3.0918865,-3.2670224,-3.4304242,-3.4936876,-3.5764856,-3.57786,-3.5790315,-3.7174358,-3.8122935,-3.6340766,-3.348815,-3.3050833,-3.3092005,-3.417791,-3.5500484,-3.666131,-3.7102933,-3.6878653,-3.5996604,-3.787355,-3.8354287,-3.8982406,-4.115807,-4.137827,-4.1063333,-4.071979,-4.090703,-4.140755,-2.9380767,-3.7710328,-4.0567603,-4.084875,-4.0141416,-3.9580803,-4.1613436,-4.1613073,-4.0531883,-3.9965267,-4.1757026,-4.1812434,-4.1109548,-4.175054,-4.320995,-4.1864824,-4.2941,-4.205869,-4.212456,-4.221226,-4.1594024,-4.148743,-4.2823157,-4.206742,-4.1400747,-4.209072,-4.2473264,-4.380117,-4.277636,-4.2281594,-4.209041,-4.0933843,-4.153002,-4.279501,-4.160718,-4.1259995,-4.199365,-4.348558,-4.184797,-3.6844578,-4.465285,-4.3585496,-4.417068,-3.3174582,-3.4398022,-4.3509026,-4.064427
+-0.73499113,-1.8397231,-2.5256393,-2.786155,-2.936296,-2.9956727,-3.059495,-3.3022952,-3.066296,-3.7406955,-3.7168994,-3.8288636,-3.861505,-3.9117703,-3.7322097,-3.6807058,-3.7436814,-3.694222,-2.8936772,-4.0079656,-3.9284372,-4.0196676,-3.9196467,-3.9535947,-3.9005914,-3.8531075,-3.823399,-3.9284134,-3.1291428,-4.071776,-3.5059645,-3.8232293,-3.850164,-3.7992606,-3.845891,-3.7398548,-3.6800802,-3.7088685,-3.757317,-3.8982081,-3.940003,-3.9345517,-4.021219,-3.9430857,-3.632145,-3.931847,-3.8551192,-3.4644933,-3.527262,-4.026133,-3.927487,-3.8887877,-3.9254518,-3.8575826,-3.8362408,-3.834951,-3.9106278,-4.019056,-3.8742785,-4.1611047,-4.11918,-2.0213332,-3.6381044,-3.9530802,-3.8827271,-3.9531875,-3.752254,-3.3044338,-3.9798684,-4.0406117,-4.009196,-3.9480424,-3.8454876,-3.632662,-3.6238515,-3.9252582,-3.9572926,-3.7541823,-3.9218984,-4.0177283,-4.020372,-3.994637,-4.0038466,-3.9859881,-3.989653,-3.6248941,-2.3177304,-3.9241896,-3.9602122,-3.9352837,-3.8861356,-3.805984,-3.770021,-3.668145,-3.7992826,-3.7029347,-3.7194939,-3.717929,-3.8224058,-3.9259577,-3.9803681,-3.907157,-3.80655,-3.8460407,-3.9418712,-4.035154,-4.1042285,-4.134456,-4.146008,-4.1701922,-4.201773,-4.190699,-4.180031,-4.1907206,-4.187144,-4.0462213,-2.8632734,-4.1793404,-4.034572,-4.247192,-4.1275325,-3.992168,-4.281482,-4.2382264,-4.2411246,-4.2125354,-4.1956115,-4.14741,-3.6321,-4.024821,-3.2768283,-4.2470317,-4.091681,-3.7301784,-4.00446,-4.2261252,-4.0990114,-4.0900674,-4.0355525,-4.0940065,-3.8956752,-3.5931761,-4.0506225,-3.9847102,-3.9557276,-3.9795818,-4.082689,-4.184541,-3.8480067,-3.997984,-3.9059558,-3.1187868,-3.8636928,-4.0199065,-3.7085567,-4.1074796,-3.9944844,-3.917841,-2.885685,-3.2939854,-3.8477774,-4.0768247,-3.780356,-4.050387,-4.1521683,-4.183354,-3.6109605,-2.7381039,-3.776968,-4.0030665,-4.1553817,-4.078611,-4.2440534,-4.215926,-4.1010017,-3.939186,-3.8971214,-3.8249702,-3.8263297,-3.947173,-3.9724627,-3.9035172,-4.0409408,-3.952394,-4.012272,-3.969421,-3.813414,-3.875883,-4.0025787,-3.9447446,-4.1374044,-3.8721757,-3.8721395,-4.1822095,-4.211104,-4.0865035,-4.1264367,-3.9835792,-3.9063983,-3.864122,-4.0563674,-4.173979,-4.1067657,-4.1828594,-4.2429323,-4.2669005,-4.2415395,-4.296925,-4.306154,-4.320248,-4.25451,-4.293283,-4.31519,-4.2889924,-4.2512994,-4.0020814,-4.1075525,-4.213506,-3.4379086,-2.9744492,-4.026806,-4.0153127,-3.949007,-4.2017775,-4.158942,-4.129622,-4.1918707,-4.156334,-4.2337565,-4.1960816,-4.08472,-4.0889745,-4.1322722,-4.2628865,-4.387545,-4.2107043,-4.2361083,-4.252625,-4.1761594,-4.2971134,-4.230796,-4.084475,-4.172787,-4.1904283,-4.1342034,-4.253036,-3.951951,-4.1365833,-4.112797,-4.175571,-4.138266,-3.886845,-3.7781177,-4.0011725,-4.111634,-4.1404767,-4.15628,-4.1963673,-4.0506587,-4.104344,-4.2027164,-3.5751715,-3.6228092,-3.8898401,-4.0886045,-4.034749,-3.9636416,-4.153831,-4.0239797,-3.9800677,-4.126258,-4.151489,-4.1460958,-4.044372,-4.257651,-4.2274995,-4.2244906,-4.216883,-4.2619147,-4.1669374,-3.5542173,-3.1505616,-3.277014,-3.6525183,-3.8185515,-3.8124833,-3.9217257,-3.9636922,-4.091085,-2.948177,-3.8119779,-4.074503,-3.9141498,-3.7840238,-3.891337,-4.1107793,-3.9829936,-4.033969,-3.9761424,-3.9279428,-3.8047833,-3.7340565,-3.7153168,-3.858076,-3.9494324,-4.002384,-4.000667,-4.0027814,-3.9774723,-3.993226,-4.0115943,-4.023139,-4.090821,-4.168268,-4.0739045,-4.1331873,-4.091953,-4.0671477,-2.9285784,-3.7639852,-3.777895,-3.9297066,-4.0404487,-4.155621,-4.230251,-4.0367384,-4.010284,-4.091017,-3.941986,-3.903194,-4.0653195,-4.1314354,-4.140195,-3.9425087,-3.9758067,-4.0856376,-4.126898,-4.1350408,-4.066351,-3.976215,-3.935895,-3.9946895,-4.008883,-4.047973,-4.1605535,-4.1699796,-4.0593467,-4.17195,-4.1022935,-4.1289887,-3.9543319,-4.0511184,-4.0080833,-3.8719296,-3.8370547,-3.978126,-3.9459367,-3.642023,-4.062644,-4.046909,-4.048415,-3.6583862,-2.7309926,-3.7321358,-3.878522
+-0.46359473,-2.0768147,-3.0041585,-3.3603408,-3.5125694,-3.551498,-3.6024435,-3.3002687,-3.1034737,-3.6348746,-3.8021755,-3.0325913,-3.6043298,-3.7783318,-3.788262,-3.8104367,-3.923428,-3.8873324,-3.8301554,-3.822554,-3.7941875,-3.7303343,-3.6988692,-3.700068,-3.6523213,-3.6678193,-3.7321444,-3.7123332,-3.7865,-3.8672776,-3.4869642,-3.6594326,-3.8364654,-3.8285341,-3.826292,-3.7734604,-3.8437886,-3.8625197,-3.904942,-3.9496884,-3.9396353,-3.9328265,-3.9251237,-3.8741736,-2.896245,-3.9498215,-3.578446,-2.8258252,-2.9320474,-3.68299,-3.8813639,-3.9694667,-3.9496293,-3.98558,-4.0199785,-4.080733,-4.1749153,-4.235885,-4.091769,-4.279441,-3.5687737,-3.4888933,-3.8114223,-3.8942003,-3.9589071,-3.9755988,-3.6533902,-3.907084,-3.968896,-4.0140758,-3.3639917,-3.745008,-3.6602428,-3.9725194,-4.0865817,-3.461595,-3.9590325,-4.01699,-4.1524234,-4.238274,-4.351518,-4.366262,-4.3768463,-4.32595,-3.7234845,-4.2015243,-3.789783,-4.0471654,-4.1567264,-4.248587,-4.270451,-4.2832947,-4.18831,-4.163643,-4.2525244,-4.2414412,-4.305816,-4.34233,-3.9326444,-4.1015277,-4.377662,-4.438432,-4.4602737,-4.4682994,-4.4485173,-4.438132,-4.528986,-4.554411,-4.51389,-4.536631,-4.569046,-4.5590916,-4.5315294,-4.5422807,-4.4861927,-4.399718,-2.9201436,-4.0831227,-4.1766477,-4.394054,-4.4220443,-4.458257,-4.4400244,-3.447586,-1.7773702,-3.7821956,-3.7907438,-4.039905,-4.1095657,-4.125851,-3.5942974,-1.9488633,-2.83912,-3.3185434,-3.0378702,-3.814116,-3.9846816,-4.0485964,-4.024698,-3.9953332,-4.019506,-3.953146,-1.619004,-3.522717,-3.7187514,-2.6521938,-3.5440617,-3.867711,-3.937509,-2.3324049,-3.1701574,-2.2697082,-2.8474174,-3.04841,-3.3503797,-3.5995014,-3.7287364,-3.7817883,-3.4481816,-2.6622155,-3.60772,-3.808949,-3.7286124,-3.8538337,-3.6636,-3.813334,-3.6797485,-2.331231,-3.0032,-3.37286,-3.6709445,-3.7578816,-3.8455577,-3.8311105,-3.7866602,-3.7693248,-3.785356,-3.6342578,-3.5382912,-3.6859477,-3.6414688,-3.5538278,-3.5000868,-3.5046797,-3.4685502,-3.5164104,-3.5126925,-3.486143,-3.5212796,-3.3501449,-3.4564698,-2.739159,-2.7572012,-3.5260594,-3.6741037,-3.1897569,-3.5617206,-3.7372642,-3.7393565,-3.7368445,-3.6819623,-3.7336946,-3.6537547,-3.7454858,-3.7157674,-3.6967726,-3.632822,-3.5976624,-3.6432533,-3.5903707,-3.5761428,-3.6003504,-3.5988827,-3.5850532,-3.6021616,-3.2982469,-2.882855,-3.3509119,-2.5191455,-3.4120834,-3.6479256,-3.6885688,-3.816527,-3.8673358,-3.8361416,-3.800662,-3.7686667,-3.7402773,-3.746265,-3.6405983,-3.687373,-3.5545073,-3.4491158,-3.6023188,-3.6131167,-3.6443458,-3.5995944,-3.5531127,-3.3938394,-3.5127933,-3.4901624,-3.484498,-3.488728,-3.4220963,-3.3846242,-3.4022734,-2.499856,-3.4088054,-3.524401,-3.581152,-3.6510663,-3.3411965,-3.0576267,-3.5440445,-3.8624282,-3.8942094,-3.9122796,-3.8696036,-3.6844227,-3.8023458,-3.8377476,-3.053333,-3.1132228,-3.5075705,-3.7093873,-3.3593342,-3.5363145,-3.6057382,-3.638236,-3.6012173,-3.6398928,-3.6913686,-3.5401287,-3.5178535,-3.6037412,-3.585094,-2.806065,-3.5957644,-3.7985997,-3.8058152,-2.7333746,-2.530293,-2.816472,-3.570496,-3.8291693,-3.8333192,-3.809535,-3.7988472,-3.7598567,-3.0610926,-3.7210622,-3.8318458,-3.603248,-3.84858,-3.992455,-4.12438,-3.9985847,-4.166182,-4.2377005,-4.0200524,-3.8053946,-3.6311564,-3.7461448,-3.8730621,-3.9654574,-4.0113397,-4.001703,-3.8659678,-3.7284322,-3.7644067,-3.9182954,-3.874887,-3.923811,-3.897594,-3.7685456,-3.731709,-3.589357,-3.3943686,-2.5109785,-3.2135398,-3.5099792,-3.6501622,-3.811626,-3.8886762,-3.8097324,-3.8180842,-3.7999415,-3.7846065,-3.665459,-3.644245,-3.6610866,-3.63282,-3.695784,-3.643143,-3.70675,-3.7126794,-3.6553323,-3.6868014,-3.6696963,-3.6574085,-3.6767578,-3.6942906,-3.7132816,-3.6578627,-3.7319708,-3.6429596,-3.7306743,-3.7543216,-3.68976,-3.7148662,-3.6976776,-3.666876,-3.73668,-3.7284322,-3.7541585,-3.7887306,-3.8227973,-3.7790904,-3.9218898,-3.9234095,-3.9606729,-3.9592037,-3.16781,-3.9460645,-3.8378024
+-0.71835726,-2.199954,-2.7709637,-3.0726097,-3.2652745,-3.4237888,-3.6313636,-3.7097807,-3.2565942,-3.9065146,-3.7575192,-3.6664639,-3.7617354,-3.9069753,-3.9114451,-3.897242,-4.0215025,-3.9551897,-3.7548099,-3.9798188,-4.0187182,-3.8725905,-3.9030452,-3.9219332,-3.9128714,-3.9287395,-3.9206395,-3.9730134,-3.9664912,-4.001942,-4.1025176,-3.8967304,-4.0073485,-4.0550075,-4.0465918,-4.060455,-4.041415,-4.05087,-3.9420848,-4.023375,-4.061049,-4.1051345,-3.9500108,-3.9959788,-3.7101665,-3.9747977,-4.163393,-3.367167,-3.7931752,-4.260201,-4.213939,-4.2247033,-4.3317,-4.3522887,-4.389823,-4.376962,-4.3655963,-4.369941,-4.374265,-4.4132094,-3.8756022,-3.8187733,-3.6967301,-4.107543,-4.0510597,-4.0475397,-4.111407,-4.1192927,-4.1572833,-4.163544,-3.3702278,-3.6349614,-3.8573365,-4.092111,-4.151164,-4.0936637,-4.179032,-4.240104,-4.392323,-4.3759313,-4.3143163,-4.325065,-4.3569217,-4.320596,-4.2870874,-4.2913547,-4.2184386,-3.147778,-3.1336966,-3.974996,-3.9958863,-3.9852238,-3.9940457,-4.0546217,-4.1701655,-4.295382,-4.289883,-4.2414265,-3.736236,-4.175341,-4.1822696,-4.2738404,-4.3810725,-4.4509587,-4.4583254,-4.426267,-2.7326994,-3.973762,-4.0230036,-4.072149,-4.1035104,-4.1520247,-4.1799736,-4.208265,-4.2300973,-4.1803365,-3.6341572,-3.7902346,-4.091166,-4.101205,-4.1419,-4.1617417,-2.7968926,-4.047361,-4.068566,-4.2064204,-4.132997,-4.101079,-4.130715,-4.1809945,-3.7723408,-3.550488,-3.0975597,-3.9093938,-3.1079216,-3.8843327,-3.904982,-3.8710604,-3.8203616,-3.9059358,-3.950004,-3.4300144,-1.8584185,-3.654173,-3.2596064,-2.6305819,-3.3978572,-3.894998,-4.3128057,-4.303289,-4.170806,-2.518783,-3.1513124,-3.5642822,-4.0668726,-4.3969245,-4.497254,-4.569328,-4.590539,-3.01552,-4.2046123,-4.5108285,-4.4126267,-4.641211,-4.604959,-4.4214716,-4.28546,-3.420245,-3.8332715,-4.37927,-3.7186499,-4.357774,-4.315829,-4.255607,-4.152178,-4.089459,-4.0670733,-2.891808,-3.3620698,-3.9346004,-4.2297935,-4.2098713,-4.332983,-4.323706,-4.411245,-4.221355,-4.127023,-4.0335126,-3.9952502,-4.0586653,-2.9252675,-3.9466672,-4.3195,-4.452948,-4.4099007,-4.327391,-4.4749126,-4.375026,-4.1488233,-4.077828,-4.0666747,-4.0843143,-4.1160192,-4.0926185,-4.186788,-4.2073693,-4.1950026,-4.2151523,-4.243827,-4.2405763,-4.208966,-4.188972,-4.1894474,-4.1595273,-4.197403,-4.1483393,-2.172833,-4.0877695,-3.271511,-3.4241645,-4.378755,-4.597227,-4.6466384,-4.566571,-4.5683966,-4.656338,-4.776913,-4.820987,-4.754913,-4.632271,-4.54298,-4.465975,-4.431764,-4.533381,-4.562937,-4.50789,-4.4562497,-4.501121,-4.4483852,-4.189185,-4.6655917,-4.5933223,-4.6916637,-4.647447,-4.650725,-4.5989027,-2.8758326,-4.140417,-4.3862343,-4.5382032,-4.6004653,-4.339109,-4.199083,-4.4370904,-4.4995522,-4.5330453,-4.572475,-4.580632,-4.5056634,-4.5651817,-4.494085,-4.3447123,-4.330683,-4.5587816,-4.611662,-4.3726783,-4.333878,-4.6095047,-4.5758934,-4.5664067,-4.5806537,-4.5826735,-4.434165,-4.436542,-4.5962014,-4.6066833,-3.4300125,-4.4189386,-4.4382825,-4.6046624,-4.341516,-4.2410693,-4.3844843,-4.595766,-4.5001106,-4.429604,-4.4248633,-4.4229865,-4.3802233,-2.9450836,-4.237127,-4.530111,-4.5055165,-4.597255,-4.6121845,-4.5487537,-4.5336823,-4.6521816,-4.621225,-4.6032925,-4.615407,-4.5516863,-4.491682,-4.644543,-4.565525,-4.5020437,-4.451827,-4.384221,-4.4078174,-4.4412756,-4.504803,-4.3939013,-4.362101,-4.473195,-4.411822,-4.413305,-4.4107547,-4.548611,-3.856134,-4.511332,-4.51016,-4.626888,-4.534205,-4.5410666,-4.5192957,-4.3982973,-4.4648576,-4.4736447,-4.3958025,-4.331624,-4.4444537,-4.500709,-4.501537,-4.582576,-4.527494,-4.464597,-4.510165,-4.5357594,-4.502127,-4.5183825,-4.493215,-4.4469748,-4.5156555,-4.5587087,-4.418196,-3.2672782,-4.5712886,-4.485911,-4.5088716,-4.4734936,-4.4454055,-4.4730673,-4.41471,-4.4534388,-4.441032,-4.437835,-4.363087,-4.1579337,-4.378071,-4.3503785,-4.3487544,-4.379931,-4.3904157,-4.3213043,-4.3428793
+-0.9915108,-1.7410946,-2.2800655,-2.506662,-2.5739577,-2.6994615,-2.7872834,-2.889318,-2.9594336,-2.9905777,-2.8649435,-2.5988455,-3.0631957,-3.257286,-3.20783,-3.1223564,-3.3394098,-3.3495698,-3.4722676,-3.5175824,-3.4359994,-3.4412172,-3.5702443,-3.4385457,-3.2837114,-3.259268,-3.2481906,-3.4352741,-3.4291675,-3.5446193,-3.7877774,-3.5533442,-3.733491,-3.7831817,-3.7807956,-3.8282447,-3.6924362,-3.6606002,-3.4740725,-3.6496854,-3.76292,-3.8938289,-3.2103581,-2.2710187,-3.3140116,-3.7732334,-3.614142,-3.9311285,-3.0971296,-4.0470157,-4.1604667,-3.985301,-3.7931976,-3.8021545,-3.864842,-3.8383079,-3.8016572,-4.0036817,-4.210794,-2.9366612,-2.55661,-3.0893521,-3.429,-3.8552465,-3.9480424,-4.0336456,-4.1136265,-4.06302,-4.0438476,-3.9632573,-4.0039706,-3.699801,-3.6080713,-3.8939795,-3.8882337,-2.9969788,-3.8410683,-3.9064784,-3.9119592,-4.0700874,-4.0867805,-4.104792,-4.110563,-4.0457335,-4.037272,-3.8301544,-3.4859245,-2.8491848,-2.877119,-3.9684863,-4.271786,-4.314664,-4.161614,-3.944583,-3.9969115,-4.0395064,-3.9724874,-3.792234,-3.3839357,-3.653916,-4.09938,-4.0780396,-3.672057,-3.9682755,-3.9992785,-4.1851473,-4.2283216,-4.1577,-3.8119946,-4.1555862,-4.219443,-4.2030835,-4.1518106,-4.1471367,-4.1217337,-4.079264,-4.1033998,-3.9709587,-4.0360484,-3.7690053,-3.618496,-2.7391133,-3.930431,-3.7671351,-4.1847844,-4.2516494,-4.243094,-4.198177,-3.5180273,-3.994851,-2.7688704,-3.3132534,-3.7398868,-3.5142455,-3.4176912,-4.3090677,-4.343362,-4.3763103,-4.478315,-2.9099474,-3.5283957,-4.072951,-3.9548402,-3.8396983,-3.5237012,-3.0645263,-3.5184257,-3.9893222,-4.202698,-3.6656747,-4.263232,-3.9024,-4.190883,-3.6026125,-3.9679136,-4.09415,-4.3012815,-4.2802644,-4.2134967,-4.009807,-4.3009048,-4.4205637,-3.793692,-4.176234,-4.37479,-3.7326407,-3.6076365,-4.310304,-4.3500557,-3.9414978,-4.070644,-4.3038716,-4.4284997,-4.4294353,-4.361981,-4.343328,-4.1750913,-2.7211077,-3.64383,-4.153003,-4.1194263,-4.109363,-3.776373,-3.8778005,-4.249397,-4.333957,-3.924706,-4.251455,-4.3833585,-4.089186,-2.9489791,-3.7941508,-4.1583877,-4.347182,-4.36627,-4.2927284,-4.256461,-4.2181964,-4.152575,-4.0536933,-4.003838,-4.0081725,-3.8337731,-3.794848,-3.7863917,-3.7647328,-3.7616186,-3.6089969,-3.5240536,-3.744841,-3.8144007,-3.7829323,-3.783414,-3.7102947,-3.637896,-3.6020045,-3.4194865,-3.2770462,-3.4561846,-3.5536888,-3.6276507,-3.4661522,-3.366227,-3.4780884,-2.925315,-3.4936256,-3.7618241,-3.857224,-3.9234905,-3.8651338,-3.7537227,-3.6916003,-3.7660413,-3.6490967,-3.628597,-3.543537,-3.5714607,-3.6166544,-3.3118887,-3.4632535,-3.5931358,-3.4737554,-3.771924,-3.735434,-3.7168927,-3.6684203,-2.7866664,-3.649477,-3.793654,-3.84594,-3.9031982,-3.7231135,-3.7605896,-3.7445498,-3.733933,-3.8352237,-3.8607368,-3.8427224,-3.8354802,-3.7273202,-3.6693192,-3.732903,-3.6893606,-3.7281451,-3.768684,-3.66687,-3.609401,-3.6016285,-3.5270112,-3.5820625,-3.6949143,-3.6427205,-3.4830034,-2.7275176,-3.545641,-3.6003227,-3.2831419,-3.8167572,-3.8796034,-3.8456426,-3.780292,-3.7178674,-3.6701593,-3.7175603,-3.6657188,-3.645446,-3.6630373,-3.6375248,-3.4823322,-2.597624,-3.589789,-3.7953453,-3.9213233,-3.8317943,-3.9115944,-3.198044,-3.7447162,-3.8443637,-3.768546,-3.922257,-3.8659291,-3.719751,-3.5737727,-3.630834,-3.7005086,-3.683648,-3.6273427,-3.6976771,-3.685841,-3.6173103,-3.682171,-3.600789,-3.4474907,-3.5711808,-3.5819383,-3.5193439,-3.4740903,-3.435357,-3.1696086,-3.3183246,-3.456913,-3.5339983,-3.293432,-3.288321,-3.3422651,-3.1503453,-3.27111,-3.3168812,-3.165167,-3.0302916,-3.2700453,-3.2671201,-3.2962508,-3.284464,-3.3581889,-3.4975069,-3.5294847,-3.5446815,-3.5753949,-3.4330897,-3.4799664,-3.578946,-3.6789002,-3.6233864,-3.6851783,-3.6104994,-3.6373267,-3.64163,-3.5971181,-3.5329263,-3.5355923,-3.649273,-3.6956382,-3.7571087,-3.776894,-3.7553792,-3.7329469,-3.1299908,-3.7046356,-3.8654885,-3.8437529,-3.836895,-3.6928735,-3.7799678,-3.7359247
+-1.1610851,-1.72261,-1.9822776,-2.1593184,-2.2606816,-2.4345481,-2.5084403,-2.5669048,-2.7002869,-2.8683867,-2.955816,-2.9990249,-3.0540838,-3.0852652,-3.1346216,-3.1682694,-3.2230258,-2.9463274,-3.1410117,-3.216009,-3.2435744,-3.1203732,-3.2578437,-3.38894,-3.401767,-3.2728467,-3.4663785,-3.4349735,-3.5083327,-3.547902,-3.5507524,-3.4617724,-3.576713,-3.5917215,-3.5277853,-3.3615913,-3.6680818,-3.6922097,-3.769751,-3.8669076,-3.8623013,-3.844051,-3.5769098,-3.525276,-2.8026175,-3.6317015,-3.2732825,-3.5583503,-3.34109,-3.5792437,-3.6109505,-3.718781,-3.8076377,-3.8151097,-3.8856215,-3.773665,-3.9466434,-3.045556,-3.5990577,-3.1227496,-2.6109264,-2.782362,-2.9181437,-3.1071918,-3.1085663,-3.318843,-3.3882966,-3.4941392,-3.5348253,-3.5304306,-3.5457153,-3.473413,-3.498434,-3.559052,-3.5390596,-3.2904797,-3.1982858,-3.604524,-3.65557,-3.6394846,-3.0600793,-3.490265,-3.5321064,-3.5885372,-3.5895562,-3.5761654,-3.2366705,-2.8202991,-3.150129,-2.6731625,-3.4037762,-3.4832487,-2.7676349,-3.4705677,-3.5867605,-3.6273808,-3.693573,-3.7652497,-3.6914978,-3.3386946,-3.790279,-3.8529377,-3.9131846,-3.9098792,-3.9224114,-3.8592649,-3.918055,-3.9115157,-3.8976574,-3.860001,-3.8240843,-3.8124442,-3.8252482,-3.8227887,-3.8139968,-3.6605844,-3.7494793,-3.5905533,-3.7288094,-3.5968251,-3.7468476,-3.7967992,-3.7967343,-3.8255095,-3.7904735,-3.7875915,-3.7654443,-3.7565055,-3.7504892,-3.7218823,-3.5183592,-3.635776,-3.6025543,-1.3647473,-2.066578,-2.192051,-3.2372246,-2.830117,-3.5278745,-3.2259927,-2.038059,-2.7378612,-3.1604905,-3.4058385,-3.2349768,-3.3761296,-3.0601635,-1.8082657,-2.9864168,-2.9415727,-2.3467417,-2.4678156,-3.056003,-3.233539,-3.293818,-2.8029568,-3.072928,-3.09539,-3.0787506,-3.147144,-3.212572,-3.2750928,-3.2049506,-3.1548607,-2.97155,-3.0028062,-3.1546335,-3.0317216,-3.138866,-3.1227264,-3.1066775,-3.0870888,-3.1025271,-3.0561574,-3.0590842,-3.1055436,-2.7709172,-0.92788714,-2.405316,-2.8783672,-2.9098654,-2.9003992,-2.8572888,-2.9821603,-2.954121,-3.0434003,-3.0348957,-3.095941,-3.0639954,-2.8609145,-2.7627022,-2.68604,-2.7975516,-2.8730004,-2.8856187,-2.8069625,-2.8086271,-2.8445091,-2.8593078,-2.9147708,-2.9511275,-2.9209576,-2.788896,-2.8083725,-2.878395,-2.926953,-2.8998039,-2.901567,-2.8951688,-2.8625565,-2.8803446,-2.920393,-2.9096375,-2.8912354,-2.9300473,-2.8802216,-2.811019,-2.403224,-2.6076255,-2.713325,-2.8725019,-2.773656,-2.6152523,-2.7170558,-2.607349,-2.5852954,-2.7250948,-2.758785,-2.7849147,-2.7378545,-2.735299,-2.72017,-2.4829922,-2.5625744,-2.5914903,-2.6578,-2.6440067,-2.621602,-2.5357065,-2.5120544,-2.5538054,-2.695664,-2.717318,-2.6630857,-2.6671376,-2.5677693,-1.9152923,-2.3331604,-2.037152,-2.5241156,-2.694923,-2.5933857,-2.445246,-2.541339,-2.5752852,-2.6546865,-2.705604,-2.6561542,-2.5404682,-2.5557156,-2.669989,-2.4586768,-2.1662648,-2.2039397,-2.3296628,-2.237144,-2.2598224,-2.2595072,-2.3140237,-2.2595634,-2.3038414,-2.3605938,-2.175217,-2.2640233,-2.4156685,-2.4399881,-2.560903,-2.5573618,-2.5035038,-2.587432,-2.5657396,-2.2780986,-2.2871902,-2.4326048,-2.4668775,-2.4710937,-2.439203,-2.386629,-2.3388445,-2.347478,-2.44692,-2.425853,-2.4006596,-2.6557598,-2.7708333,-2.6601245,-2.7290006,-2.858021,-2.8097396,-2.700389,-2.6713402,-2.5240664,-2.6136093,-2.5354247,-2.5155983,-2.5421982,-2.6268563,-2.6200566,-2.630506,-2.653863,-2.6714845,-2.6886632,-2.7283716,-2.7977843,-2.7493577,-2.7559257,-2.7557387,-2.6026623,-2.568642,-2.4639697,-2.682851,-2.5201106,-2.8257542,-2.9074545,-2.7642865,-2.7798958,-3.017219,-3.0903838,-3.0534408,-3.0179608,-2.9295459,-2.94901,-3.024571,-3.0537152,-3.0486834,-2.9421659,-2.9030714,-2.7597587,-2.9076836,-3.0698214,-2.9801393,-2.985314,-3.0389175,-3.0258665,-3.0421157,-3.020871,-3.0534704,-3.0603476,-3.1296353,-3.0647078,-3.117335,-3.059699,-3.0886965,-3.1334553,-3.2021627,-3.1865752,-3.2347603,-3.2268453,-3.3194566,-3.3593988,-3.431714,-3.0360298,-3.4387314,-3.4584389,-3.42482
+-1.2772489,-1.8391678,-2.1833546,-2.3457644,-2.4627686,-2.5868077,-2.6178598,-2.6873696,-2.8845358,-3.012548,-2.9196005,-3.116793,-3.1579454,-3.2896261,-3.3104157,-3.2275872,-3.3953815,-3.526027,-3.5001516,-2.30546,-3.7503915,-2.988182,-3.7322116,-4.1465125,-4.1119876,-4.055199,-4.0936146,-4.178617,-4.137261,-4.21648,-4.3213105,-4.3164783,-4.229879,-4.2602043,-4.29564,-4.1490602,-4.1230397,-4.0408974,-3.985661,-4.131883,-4.120645,-4.0666995,-2.8818436,-3.7178545,-3.6193542,-4.137263,-3.9914107,-4.132488,-4.009702,-4.0586653,-3.9896517,-3.9895616,-3.943563,-3.9580803,-3.942346,-4.0950513,-4.0149183,-4.075662,-4.214488,-3.7439952,-3.2094703,-3.8531365,-3.821199,-4.145608,-4.106462,-4.1024137,-4.153025,-4.160984,-4.1657276,-4.1150117,-3.944964,-3.6852174,-4.001845,-4.001456,-3.9912229,-3.649918,-3.531248,-3.756556,-4.0573173,-4.115489,-3.831698,-4.085484,-4.0507455,-4.0635114,-4.027348,-4.11641,-2.8123794,-3.5659354,-3.8042002,-3.9633913,-4.2868876,-4.18475,-3.8392005,-4.119667,-4.216268,-4.027977,-3.9366646,-4.099175,-4.1893706,-3.9170508,-3.9724813,-4.1605062,-4.0965333,-3.9623723,-4.121159,-3.9873004,-4.1565404,-4.1641006,-4.144896,-4.1574383,-4.0768137,-4.0487747,-4.063848,-4.0519996,-4.05209,-4.0106177,-4.0511947,-3.9941077,-3.768475,-3.8770018,-4.0640445,-3.1608272,-3.628551,-4.0514197,-4.1438284,-4.179793,-4.1287518,-4.0829434,-4.0403256,-3.8942356,-3.3957298,-3.4955454,-3.5372355,-3.4928648,-2.9221842,-3.1438773,-3.9387121,-4.1610417,-4.1421523,-3.1923246,-3.4633172,-3.9077053,-3.7791448,-3.987311,-4.03665,-3.84726,-3.0117674,-3.7881656,-3.9728942,-3.4035559,-3.6877294,-3.899046,-3.897789,-3.5748024,-4.0331655,-3.7446537,-4.131099,-4.3682656,-3.745565,-4.247478,-4.419884,-4.082082,-3.0501404,-3.9622273,-4.1531215,-3.9879494,-4.3905754,-4.53585,-4.5976615,-4.6016603,-4.63041,-4.2809925,-4.4657197,-4.454699,-4.416173,-4.369191,-4.420027,-2.5703974,-3.4520693,-4.0054607,-4.3067155,-4.3155513,-3.827651,-3.8749008,-4.197966,-4.4399314,-4.188289,-4.51971,-4.673864,-4.6465573,-4.4990764,-4.1664324,-4.436046,-4.5526557,-4.5437293,-4.504441,-4.47817,-4.4276958,-4.3842683,-4.379626,-4.375195,-4.3528023,-4.3248906,-4.273591,-4.3113246,-4.3059335,-4.329509,-4.3271956,-4.3207374,-4.31105,-4.29532,-4.3338723,-4.341931,-4.338908,-4.3282075,-4.2925315,-4.253608,-2.510955,-4.0113444,-4.354509,-4.5982366,-4.735883,-4.793968,-4.5511217,-4.3268237,-4.247023,-4.5707707,-4.774691,-4.8354945,-4.8382373,-4.8045115,-4.7683825,-4.618012,-4.5976195,-4.597038,-4.567006,-4.5103364,-4.460695,-4.4099574,-4.328235,-4.3520074,-4.273769,-4.306162,-4.493201,-4.4730744,-4.297203,-3.712441,-3.4929676,-4.210391,-4.473348,-4.618454,-4.6451826,-4.6748357,-4.6586995,-4.6649785,-4.709381,-4.756082,-4.7216535,-4.6454105,-4.6430106,-4.565462,-4.5682225,-4.4947596,-4.551336,-4.560778,-4.451061,-4.425068,-4.224508,-4.385656,-4.4745297,-4.491197,-4.5193768,-4.464635,-4.2723355,-4.201862,-4.363747,-4.386643,-4.463835,-4.482942,-4.5096087,-4.4747453,-4.473842,-4.4946523,-4.52035,-4.4557786,-4.4137588,-4.4070883,-4.3623357,-4.2223,-4.1375494,-4.353721,-4.279007,-4.342241,-4.250355,-4.295946,-3.9477487,-4.102155,-4.2611017,-4.1094413,-4.1852865,-4.2696414,-4.313267,-4.225447,-4.4034123,-4.3718185,-4.3299704,-4.2595267,-4.274755,-4.18538,-4.171798,-4.1830115,-4.1696362,-4.02301,-4.084226,-4.128355,-4.1616955,-4.137446,-4.076981,-4.033318,-3.9326253,-4.097051,-2.7462103,-4.080794,-4.303087,-3.7651954,-4.290042,-4.393737,-4.469751,-4.38323,-4.217713,-4.349837,-4.339863,-4.1912427,-4.207919,-4.353109,-4.339366,-4.2975173,-2.9544542,-4.258648,-4.4350057,-4.412037,-4.3750405,-4.265946,-4.384176,-4.3501124,-4.2815833,-4.2521257,-4.2441087,-4.230037,-4.2503247,-4.2227297,-4.1735125,-4.1743293,-4.1794157,-4.1230073,-4.0306134,-4.034103,-3.8735194,-4.0190554,-3.9448318,-4.06591,-3.963478,-3.8338785,-3.9970183,-3.8847413
+-1.4431376,-1.7802141,-2.0906656,-2.241881,-2.3491988,-2.4560528,-2.61768,-2.754077,-2.8106787,-3.0484273,-3.0078955,-3.0995457,-3.1293197,-3.1797495,-3.2487757,-3.197063,-3.2794454,-3.3653965,-3.4134648,-3.290052,-3.0989819,-3.8306818,-2.5791483,-3.7634115,-4.0766892,-4.0020194,-3.99195,-4.045687,-4.058753,-4.1199965,-4.158356,-4.160316,-4.1455894,-4.1912236,-4.2383437,-4.2133436,-4.230782,-3.8777623,-4.228172,-4.2225575,-4.202937,-4.1671796,-3.8716674,-3.350604,-4.364504,-4.3482327,-4.2805543,-4.2543473,-4.238795,-4.270349,-4.266443,-4.34394,-4.264912,-4.283402,-4.320206,-4.393926,-4.3226113,-4.361102,-4.3842382,-3.8248444,-4.0993648,-3.7409778,-3.7781296,-4.3881755,-4.3564286,-4.346766,-4.360045,-4.390447,-4.389839,-4.359786,-4.33859,-4.1473985,-4.375199,-4.329128,-4.297001,-4.282677,-3.9288182,-3.7434678,-4.3479934,-4.3650327,-4.3309736,-4.3112903,-4.3353076,-4.3023095,-4.2934637,-4.259826,-4.116157,-2.6383047,-3.2924502,-4.1484475,-4.424381,-3.8806758,-3.7247767,-3.445671,-4.356877,-4.022817,-4.536161,-4.574552,-4.538383,-4.441363,-3.6517966,-4.4697375,-4.540378,-4.5132575,-4.4567018,-4.4065795,-4.36345,-4.355573,-4.3968024,-4.3515525,-4.3521547,-4.32042,-4.298893,-4.274464,-4.277249,-4.2666097,-4.2492695,-4.255805,-3.7681599,-2.3900967,-3.9288225,-4.259755,-4.5090013,-4.5323286,-4.419865,-4.343989,-4.280481,-4.2383647,-4.2646365,-3.6935859,-4.434328,-3.3994517,-3.3241858,-3.6020381,-2.952251,-3.125085,-3.2010472,-3.8949885,-3.6191697,-4.2442484,-3.4800477,-3.6684031,-3.3626418,-4.1745224,-4.3789473,-4.3685064,-2.9564948,-3.9034905,-4.492394,-3.390936,-3.493147,-3.3614137,-4.0550184,-4.2487187,-4.4949403,-4.6322975,-4.7256484,-4.8005257,-3.8606877,-4.619718,-4.79489,-4.4999547,-4.3080497,-3.5586817,-4.6437306,-4.471453,-4.782935,-4.8663206,-4.8977284,-4.876648,-4.8331227,-4.7771096,-4.704435,-4.6210427,-4.5606966,-4.559358,-3.8911443,-4.61299,-2.7903476,-3.3302157,-4.172153,-4.2848506,-4.273832,-3.3975136,-4.206578,-4.600268,-4.522962,-4.7605824,-4.7393975,-4.7335787,-4.6941776,-4.6574464,-4.6251698,-4.6060085,-4.579501,-4.550115,-4.50116,-4.5924635,-4.5688643,-4.5577073,-4.533563,-4.456108,-4.386475,-4.357587,-4.430351,-4.415424,-4.4036427,-4.335119,-4.350738,-4.3082123,-4.305373,-4.343634,-4.305287,-4.289355,-4.306068,-4.2787805,-4.356544,-2.4942172,-4.00162,-4.1455293,-4.601703,-4.703304,-4.6562467,-3.8781323,-4.401598,-3.9997015,-4.5783525,-4.765306,-4.7879596,-4.796285,-4.7907743,-4.7324767,-4.537996,-4.5028124,-4.525921,-4.545663,-4.449001,-4.3980184,-4.3708744,-4.363409,-4.4128776,-4.443538,-4.374331,-4.382992,-4.390121,-4.4103084,-3.7976193,-3.140845,-4.341356,-4.601607,-4.7256494,-4.671021,-4.556136,-4.571109,-4.5523667,-4.5403547,-4.5321126,-4.476379,-4.452725,-4.454279,-4.4285655,-4.386681,-4.336325,-4.3814526,-4.3997054,-4.361037,-4.367569,-4.378026,-4.346124,-4.322774,-4.31099,-4.2941775,-4.3037257,-4.193806,-4.3062134,-4.3051205,-4.2705855,-4.257992,-4.2637887,-4.2754264,-4.2348905,-4.185141,-4.3129544,-4.3279138,-4.3051057,-4.261582,-4.216029,-4.220818,-4.197573,-4.2199917,-4.1768756,-4.2076554,-4.260924,-4.2683454,-4.272944,-4.162299,-4.2192435,-4.2371516,-4.202843,-4.239757,-4.1429467,-4.229941,-4.228282,-4.4075894,-4.3059154,-4.2417026,-4.2702637,-4.248053,-4.2114134,-4.2300296,-4.254664,-4.2403736,-4.1196613,-4.1359844,-4.168257,-4.178192,-4.1679473,-4.1434503,-4.212437,-4.206759,-4.2201815,-2.694149,-4.288589,-4.49249,-3.8670874,-4.336386,-4.52082,-4.4611297,-4.356345,-4.297997,-4.338325,-4.373675,-4.287744,-4.261938,-4.261431,-4.2582245,-4.2636514,-2.7930179,-4.511522,-4.633942,-4.5567327,-4.496177,-2.9958673,-4.257625,-4.272043,-4.404337,-4.8352084,-4.7692842,-4.7057424,-4.5643635,-4.477588,-4.3811536,-4.3618107,-4.344731,-4.31128,-4.246443,-4.2272315,-4.1723585,-4.2573967,-4.217657,-4.203608,-4.1779094,-4.150638,-4.2308517,-4.1799283
+-1.4660354,-1.620872,-1.8272243,-1.975182,-2.0451493,-2.1858187,-2.3888912,-2.574018,-2.6359272,-2.762116,-2.8125677,-2.876158,-2.9691465,-2.9727008,-3.1432924,-3.0207012,-3.0722196,-3.1810913,-3.3375196,-3.360406,-3.3508472,-3.2584386,-2.9529476,-3.4739125,-3.6432865,-3.544195,-3.5667589,-3.5894804,-3.5898137,-3.6331022,-3.6756968,-3.766273,-3.743703,-3.7357621,-3.771646,-3.778389,-3.7577133,-3.5977962,-3.40071,-3.7760863,-3.7443438,-3.723145,-2.305721,-3.2429183,-3.8514342,-3.8654828,-3.950653,-3.8919148,-3.8570695,-3.8541608,-3.905995,-3.8918743,-3.9184985,-3.9809194,-3.9693303,-3.9897618,-3.9496179,-3.9767842,-3.9743009,-3.9998527,-4.0061045,-3.1081257,-3.6047583,-3.9280748,-3.936542,-3.8952947,-3.9451232,-3.9482484,-3.9357924,-3.9123478,-3.9222612,-3.7547822,-3.961266,-3.925756,-3.6400666,-3.9334702,-3.9135766,-3.7814322,-3.9307523,-3.908042,-3.8899612,-3.8534002,-3.8956933,-3.9003015,-3.8856106,-3.902083,-3.4163213,-3.1968527,-3.196354,-3.8337712,-3.9745674,-4.0381355,-3.8227496,-2.8002648,-3.8336768,-3.983603,-3.9667802,-3.9787374,-3.9856257,-3.9949937,-2.1235878,-3.7186465,-3.9876733,-4.114946,-4.0394464,-4.079261,-4.1038613,-4.119563,-4.097611,-4.07583,-4.0471177,-4.0471473,-4.027596,-4.0150084,-4.0323772,-4.019729,-3.9976082,-2.8202188,-3.7398195,-2.2381506,-2.4982972,-3.8320127,-4.2625213,-4.427318,-4.3303304,-4.3339696,-4.271417,-4.0024495,-4.382691,-4.456115,-4.3278236,-3.4233782,-3.9256816,-3.2475119,-4.0324264,-2.9211402,-3.6764832,-3.9019847,-4.1531167,-3.8532872,-4.214945,-3.9290338,-3.9413266,-4.2811875,-4.346605,-4.3505406,-3.2743816,-4.087938,-3.9592605,-3.755557,-4.2514606,-3.1638393,-3.9164605,-4.1823697,-4.1952047,-4.040648,-4.2331004,-4.47545,-4.0809064,-4.4267435,-4.478972,-4.48735,-4.4771404,-4.400434,-4.4884505,-4.4129534,-4.3771234,-4.3372197,-4.3399096,-4.161178,-4.3569784,-4.3296328,-4.2633557,-4.2055573,-4.1670804,-4.2193904,-3.317422,-3.8546023,-3.005925,-3.4632876,-4.008082,-4.119347,-3.4814014,-3.59441,-4.00786,-4.299517,-4.397432,-4.3691516,-4.365523,-4.206932,-4.0664716,-4.0856204,-4.1550636,-4.1871896,-4.1949,-4.2142596,-4.202308,-4.209403,-4.1629987,-4.1603847,-4.1847134,-4.1283746,-4.0266485,-3.8832612,-3.9579797,-3.679714,-4.0400796,-4.0837264,-4.087129,-3.9553738,-3.9447875,-3.9898472,-3.97644,-3.9898715,-4.012613,-4.018074,-3.9938817,-3.8557181,-3.9111981,-3.6854334,-3.8473654,-3.1227264,-3.6689677,-3.7149816,-3.868176,-3.8963804,-3.8928542,-4.008734,-4.0421762,-4.065429,-4.1661577,-4.1451583,-3.8155336,-3.8960013,-3.9768686,-3.9984374,-3.941193,-3.9099703,-3.8834796,-3.815631,-3.9149818,-3.8306518,-3.735145,-3.823175,-3.8932257,-3.9464288,-3.7342882,-3.5446115,-3.723073,-3.966847,-3.9988303,-4.0137777,-3.8186975,-3.8355522,-3.9341521,-3.9404159,-3.9868102,-3.9453883,-3.9570065,-4.000214,-3.8936667,-3.916803,-3.8449855,-3.9311028,-3.9186482,-3.8678412,-3.9229097,-3.9656749,-3.901833,-3.928637,-3.9366174,-3.8896322,-3.8471584,-3.8258204,-3.969715,-3.8490405,-3.8462048,-3.9223542,-3.9741535,-3.974628,-3.956355,-3.8860097,-3.9327202,-4.0193334,-3.9756188,-3.9553714,-3.932434,-3.9380302,-3.9838219,-3.868116,-3.9156232,-3.9300485,-3.9139009,-3.9081874,-3.9085393,-3.5883849,-3.744399,-3.9357963,-3.86616,-3.7691545,-3.9122663,-3.9827328,-3.9383893,-3.9899464,-4.0456634,-3.9105382,-3.9495025,-3.9371428,-3.9395728,-3.9522805,-3.971304,-3.8860278,-3.8674846,-3.9119525,-3.894014,-3.953487,-3.9345398,-3.9248214,-4.00263,-3.8881512,-3.9138684,-3.8607907,-3.7148647,-3.956708,-3.766923,-3.9163737,-3.988583,-3.9692836,-3.8712063,-3.8392725,-3.8973393,-3.9220223,-3.858035,-3.8643775,-3.93543,-3.9193559,-3.955624,-2.6465888,-4.040874,-4.1721787,-4.095611,-4.134585,-3.335733,-4.05748,-4.15533,-4.0670533,-4.2623773,-4.282518,-4.216208,-4.1438823,-4.129196,-4.0907073,-4.1090903,-4.143712,-4.1125646,-4.0453,-4.063702,-3.9136586,-3.9516969,-3.9876542,-3.9529018,-3.9320102,-3.9139152,-4.0013185,-3.9603457
+-0.7642786,-0.9714939,-1.5616477,-1.8247283,-1.8311336,-2.4084907,-2.7193422,-2.514825,-2.1717575,-2.194035,-2.024506,-2.0557714,-2.3386025,-2.9729924,-2.2234254,-3.3497386,-3.5412667,-3.534082,-3.7225485,-3.8487816,-3.8445253,-3.9693928,-3.9955697,-4.091677,-3.887094,-3.7307177,-3.8597713,-4.0426416,-4.042359,-3.9883623,-4.0325527,-4.2409997,-4.056247,-4.1747384,-4.1296673,-4.020263,-4.1936917,-4.3493557,-4.0347548,-3.3060532,-3.8450327,-4.2484107,-4.543381,-4.6086216,-4.6231656,-4.535733,-4.55409,-4.3673816,-4.4127555,-4.413011,-4.3159995,-3.9682827,-4.4504724,-4.5010276,-3.2031102,-2.8381536,-3.113649,-4.0565825,-4.3748713,-4.538401,-2.807899,-3.690706,-4.359327,-3.756947,-4.3333325,-4.3076987,-4.263818,-4.4401007,-4.4601836,-4.313905,-4.5209894,-4.557754,-2.8587253,-4.1407666,-4.031548,-4.5685744,-4.089433,-4.6895576,-4.6992598,-3.2666426,-4.165093,-4.447083,-3.0291052,-4.203777,-4.430947,-3.6274996,-4.084295,-4.3982754,-4.4626412,-4.4927993,-4.4847713,-4.5174675,-4.1178627,-3.767013,-4.6250625,-4.5032516,-4.702818,-3.8769941,-4.739038,-3.5737627,-4.628099,-4.140769,-4.135347,-4.121797,-4.520434,-4.638445,-4.642815,-4.6937547,-4.710718,-4.696444,-4.726869,-4.683624,-4.6611905,-2.6593032,-4.4350047,-4.7886806,-4.7458386,-4.7813373,-4.7889647,-4.781241,-4.757396,-4.5026727,-4.6213346,-4.944885,-4.8530803,-4.798207,-4.8563857,-4.8652973,-4.7688727,-4.5362797,-4.859199,-4.083892,-4.773476,-4.88057,-4.946673,-4.8423476,-4.303383,-4.8709426,-4.9030337,-4.2748923,-4.835315,-5.011583,-5.0015993,-4.9514823,-4.912535,-4.213768,-4.666292,-5.006088,-5.0153756,-4.944836,-4.808459,-4.870631,-4.8647428,-4.712427,-4.6204233,-4.3311524,-4.725402,-3.3227692,-4.4036393,-3.854447,-4.653765,-4.561779,-4.982362,-4.9627733,-4.740475,-4.9312997,-4.9677234,-4.8610435,-4.6552935,-4.773125,-4.6769514,-4.684054,-4.7438607,-4.717468,-4.8501306,-3.1812167,-4.0871305,-4.3646855,-4.75063,-4.917647,-4.8451004,-4.8254013,-4.719335,-4.7355514,-4.6528296,-3.2596965,-3.0010943,-4.1393685,-4.0185513,-4.197916,-4.4535384,-4.6275697,-4.4026537,-4.5518284,-4.5231977,-4.240168,-4.4154696,-4.597329,-4.247644,-4.6436543,-4.555941,-4.5409846,-4.7634635,-4.5699606,-4.283234,-4.3697605,-4.5602975,-4.6099434,-4.7643375,-4.813131,-4.746224,-4.777386,-4.7097297,-3.8351398,-4.537999,-4.743835,-4.811401,-4.8624234,-4.8390365,-4.805425,-4.7265477,-4.832069,-4.856011,-4.6562414,-4.520071,-4.711345,-4.68235,-4.810364,-4.7357965,-4.8146753,-4.309029,-4.067556,-3.9550424,-3.8859005,-3.7507472,-3.6926694,-3.589865,-3.5713181,-3.5339658,-3.505744,-3.5311866,-3.1582465,-2.8977475,-2.8786793,-2.9134212,-2.9463341,-3.006647,-2.9639993,-2.8316486,-2.8056188,-2.801427,-2.7461774,-2.6860132,-2.735621,-2.7052703,-2.7105107,-2.7372098,-2.7317097,-2.7388353,-2.7467322,-2.744736,-2.7651496,-2.810699,-2.9359312,-2.8899689,-2.877937,-2.9167018,-2.9487019,-2.848998,-2.5800722,-2.5924485,-2.7424107,-2.8288794,-2.7644951,-2.739459,-2.7700148,-2.8009224,-2.7867856,-2.7278643,-2.7489192,-2.7330942,-2.727375,-2.7158508,-2.7004545,-2.7226477,-2.695622,-2.6903894,-2.711866,-2.68187,-2.6802301,-2.772881,-2.7516866,-2.8388186,-2.7606354,-2.8310528,-2.8842797,-2.9599476,-2.925221,-2.9706848,-2.9239535,-2.789151,-2.8243074,-2.8482342,-2.8572495,-2.6569462,-2.6295738,-2.4792304,-2.4775863,-2.4822478,-2.582457,-2.556912,-2.5345113,-2.4993389,-2.465443,-2.4875426,-2.6486883,-2.5731137,-2.5941865,-2.6270902,-2.607224,-2.5513716,-2.4741287,-2.3137102,-2.2275698,-2.2246258,-2.3554492,-2.2215686,-2.2204196,-2.340839,-2.4520817,-2.4944098,-2.4534016,-2.458072,-2.4203668,-2.4589672,-2.3681464,-2.3659663,-2.3515325,-2.243608,-1.8893218,-2.3987927,-2.31029,-2.374834,-2.420509,-2.4311633,-2.3527234,-2.3424559,-2.3277326,-2.2576196,-2.297781,-2.1980836,-2.1387367,-1.9622805,-1.6805515,-2.128005,-2.2589142,-2.0252743,-1.9260943,-1.7584376,-1.2004094,-1.0061808,-1.2455356,-0.88919777,-0.36702985,0.019796938
+-0.2273575,-0.9302396,-1.9545732,-2.4732006,-2.7607112,-3.0370455,-3.350707,-3.2626362,-3.2759333,-3.5750751,-3.5001929,-3.4138405,-3.515606,-3.6093888,-3.0037017,-3.5226328,-3.7819366,-3.778975,-3.7184181,-3.7507877,-3.7934117,-3.7577748,-3.7124119,-2.818047,-3.1177914,-3.3921213,-3.2966602,-3.4034543,-3.587406,-3.691495,-3.7922149,-3.817225,-3.8882465,-3.8408747,-3.944726,-4.019896,-3.9800878,-3.938643,-3.9819798,-2.901081,-4.0364532,-4.0159583,-4.0172253,-4.1011357,-3.9428735,-3.9653206,-3.96206,-3.9959626,-4.0065055,-4.0452995,-4.017244,-4.0045896,-3.966497,-4.016012,-3.3479927,-3.8193626,-3.9193788,-3.6700613,-3.9573684,-3.0870836,-3.0354834,-3.3160138,-4.013972,-3.9876313,-3.83563,-3.8741865,-3.7442465,-3.7944508,-3.89751,-3.9173694,-2.5369258,-2.8741965,-3.307758,-3.8232727,-3.8318624,-3.7644596,-4.0972705,-4.0832973,-3.8198118,-3.0178514,-3.9779882,-4.14022,-2.9040854,-3.9882517,-4.178699,-3.063245,-3.78484,-3.951293,-4.0751395,-4.142362,-3.817782,-4.023956,-3.8826942,-4.0862536,-4.231382,-2.842274,-4.0729966,-3.8664756,-4.245599,-4.119311,-4.0069766,-3.5139236,-3.8140988,-3.733286,-4.0644507,-3.8880057,-3.0474002,-3.5055163,-4.1260943,-3.9864116,-4.199762,-4.219148,-4.196905,-2.5318556,-3.7973452,-4.1777596,-4.1144824,-2.6214418,-3.689032,-4.0463347,-4.236408,-3.9918666,-3.3847928,-4.2859454,-4.314598,-4.340871,-4.2306066,-4.1732464,-4.1920896,-4.1878586,-3.9902234,-3.8268743,-3.8197832,-4.185761,-3.658429,-4.3310666,-4.043824,-4.3091636,-4.212044,-3.7648568,-3.7803717,-4.2733216,-4.1722684,-4.190562,-4.3524604,-4.1888847,-4.135181,-4.2142243,-4.0295963,-4.231708,-4.316343,-4.166274,-4.149315,-4.1075425,-4.1178775,-3.9743762,-3.1437614,-3.7962866,-4.156083,-3.8439164,-4.207559,-4.259658,-4.483113,-4.5419717,-4.2639413,-4.3141713,-4.258845,-3.4381218,-3.2456622,-4.2277093,-4.568952,-4.4921885,-4.623367,-3.8324285,-4.2429276,-2.810503,-3.7101436,-3.7905617,-4.2383075,-4.5138855,-4.5532975,-4.6237826,-4.5308766,-4.6763873,-4.795847,-3.1061978,-3.153345,-3.8658075,-4.140428,-4.206727,-3.5125432,-3.9332433,-4.1875873,-4.0730186,-3.9873085,-3.9255185,-4.1563873,-4.596787,-4.3810205,-4.568444,-4.7548676,-4.593798,-4.601077,-4.663341,-4.6735187,-4.6876893,-4.5870023,-4.591656,-4.7118793,-4.7413096,-4.8254814,-4.758157,-4.5828643,-4.011312,-4.533537,-4.7375073,-4.8556595,-4.8941617,-4.842733,-4.7977443,-4.904577,-4.846275,-4.845335,-4.878018,-4.6301,-4.7756815,-4.9273467,-4.8948083,-4.94404,-4.8887525,-4.5681434,-4.4150877,-4.1958375,-4.171264,-4.066852,-4.1590023,-3.922472,-3.796267,-3.816504,-3.9251037,-3.9038177,-3.311227,-2.5827641,-2.346622,-2.6219113,-2.6623778,-2.5166702,-2.5971565,-2.573234,-2.4658692,-2.7321453,-2.6874127,-2.7474332,-2.7106204,-2.6323931,-2.7248254,-2.6971242,-2.7833257,-2.78443,-2.795238,-2.819351,-2.8105946,-2.5933366,-2.632477,-2.5911374,-2.7211595,-2.8376713,-2.8635924,-2.89026,-2.7928128,-2.7187,-2.6515167,-2.7399755,-2.7122617,-2.8228898,-2.809004,-2.7046957,-2.8327143,-2.805694,-2.8223054,-2.8234782,-2.8644981,-2.8153548,-2.7992043,-2.83106,-2.9007368,-2.938082,-2.874549,-2.9322276,-2.8645244,-2.880842,-2.7552547,-2.416985,-2.457312,-2.5810523,-2.6549778,-2.6775594,-2.7334845,-2.701506,-2.667571,-2.7014117,-2.6315722,-2.55131,-2.346036,-2.286789,-2.4870327,-2.7391665,-2.7706552,-2.7285757,-2.624425,-2.7126215,-2.5806658,-2.6851354,-2.760822,-2.702752,-1.9078984,-2.1641524,-2.3512664,-2.3274326,-2.362447,-2.1568906,-1.8944917,-1.7374153,-1.8573186,-1.8762488,-1.6948502,-1.5253425,-1.5430405,-1.8647504,-2.0446012,-1.9745054,-1.9760358,-2.055263,-2.1049507,-1.8993242,-1.9771738,-1.9418557,-1.6823475,-1.5920546,-1.5303245,-1.8649802,-2.1040256,-1.98912,-2.145525,-2.0594366,-2.0491848,-2.0639782,-1.8202684,-1.7041736,-1.4362819,-1.464952,-1.5707662,-1.0133317,-1.1318028,-1.6198947,-1.603467,-1.1435492,-1.2778816,-0.8353438,-0.28530854,-0.030799657,0.16351935,-0.2062943,-1.6670375,-2.2128558
+-0.822813,-1.730993,-2.3179846,-2.5397253,-2.5878007,-2.9110005,-3.007671,-3.0869098,-2.9460423,-3.122133,-3.4677,-3.02649,-3.0477054,-3.1795979,-2.20328,-3.179988,-3.5401878,-3.135745,-2.9704597,-2.9686496,-3.083862,-3.294292,-3.3277116,-3.0372107,-3.4771097,-3.739553,-3.0585055,-3.3213172,-3.4476912,-3.4979868,-3.3771574,-3.3543863,-3.3905134,-3.3297873,-3.3419888,-3.4508638,-3.446176,-3.5172822,-3.353427,-3.369326,-3.7417502,-3.7210622,-3.5256975,-3.7726464,-3.7867517,-3.642088,-3.767037,-3.7285008,-3.7206593,-3.678124,-3.5678792,-3.5008106,-3.474009,-3.6230674,-3.5062957,-3.5317574,-3.6383977,-3.3881886,-3.566872,-2.6720424,-3.4652534,-3.4651356,-3.5052269,-3.4171002,-3.5786684,-3.6179206,-3.535424,-3.6608424,-3.746839,-3.716805,-3.337866,-3.5321112,-2.6128707,-3.5944436,-3.5818043,-3.6577463,-3.8383408,-3.1240368,-3.7067022,-3.8181458,-3.8328567,-3.8422713,-2.4702098,-3.5966592,-3.626216,-3.3675153,-3.8025708,-3.634495,-3.8042407,-3.309679,-3.789269,-3.749527,-3.8892274,-3.905662,-3.8146706,-3.989151,-3.784237,-2.2784808,-3.5103197,-3.6873837,-3.7308078,-2.9370053,-3.578999,-3.7547016,-3.8181796,-3.3456678,-3.5158834,-3.7518792,-3.8793387,-3.9335604,-3.8308253,-3.9181046,-3.8464723,-3.489956,-3.7345405,-3.817606,-2.2076056,-3.4412427,-3.6451726,-3.8876395,-4.0188527,-4.0414276,-3.784515,-3.860948,-3.9750504,-3.8102508,-4.0170445,-3.9567904,-3.9463167,-3.8494143,-3.8216033,-2.7304225,-3.5886698,-3.675535,-3.7858129,-3.9563727,-3.9849877,-4.0123696,-3.913756,-3.9455967,-2.508624,-3.6228657,-3.7060304,-3.8893046,-3.9766088,-3.9548159,-4.0137725,-3.7698445,-3.8046966,-3.955811,-4.145309,-4.041159,-3.9443269,-3.783043,-3.7107782,-3.7746005,-2.2463214,-3.63888,-3.7562246,-2.8331058,-3.5760405,-3.9747157,-3.9940639,-4.06071,-4.2434897,-4.078753,-3.8888025,-3.382508,-3.6270726,-3.8542848,-4.0270724,-4.039761,-4.075978,-4.016665,-4.082541,-3.6784177,-2.9815035,-3.4182172,-3.7114854,-4.0139923,-3.9737196,-3.9011855,-3.9715362,-4.0129075,-4.0286913,-2.914046,-3.7781582,-3.9730506,-4.0808945,-4.0107465,-4.043616,-3.9197497,-3.875791,-4.0938487,-4.028951,-4.0109224,-3.9727778,-4.1430554,-4.1357565,-4.048384,-4.1680923,-4.2669926,-4.1986885,-4.209256,-4.1919513,-4.215053,-4.1365566,-4.22679,-4.3111405,-4.2351236,-4.342156,-4.0308347,-4.175062,-4.307942,-4.3361983,-4.3505597,-4.3209043,-4.2869077,-4.2408075,-4.2199454,-4.306272,-4.363927,-4.308518,-4.349577,-4.3206964,-4.3610425,-4.452682,-4.5429883,-4.6041527,-4.4918737,-4.3897777,-4.3213434,-4.3622284,-4.151876,-4.172465,-4.359879,-4.0916343,-4.0031033,-3.991931,-4.103119,-3.9863296,-3.7025151,-3.7584825,-3.3446946,-3.3825128,-3.2091422,-3.1499178,-3.115742,-3.0196347,-2.8261018,-2.8494143,-2.8613968,-2.8709562,-2.881527,-2.9233704,-2.9305673,-2.9438481,-2.9636698,-2.9983947,-2.9652836,-2.9649286,-3.016646,-3.141897,-3.162517,-3.0889468,-3.116733,-3.1634717,-3.064472,-3.0621505,-3.0297043,-3.0791216,-3.0765586,-3.1185093,-3.0108216,-3.1045566,-3.048242,-2.993294,-3.0043197,-3.0262303,-3.0493631,-3.0784562,-3.0448685,-3.096875,-3.0712895,-3.0722265,-3.0324063,-3.0544817,-3.1091874,-3.1673603,-3.171371,-3.1456442,-3.1042514,-2.8371277,-2.8687332,-2.868193,-2.8841598,-2.944323,-2.933649,-2.9508963,-2.9272823,-2.9674616,-2.8692825,-2.7269325,-2.64476,-2.707315,-2.7328348,-2.826984,-2.8469403,-2.8819003,-2.9308162,-2.9086967,-2.8234587,-2.869328,-2.8743534,-2.9082847,-2.410652,-2.5058131,-2.6606426,-2.6386328,-2.5884962,-2.5066538,-2.4282155,-2.3701973,-2.3969789,-2.303183,-2.101876,-2.1968222,-2.2660174,-2.2262168,-2.2216344,-2.2871704,-2.3169763,-2.2218714,-2.2781837,-2.3122685,-2.2347372,-2.2015638,-2.0508204,-1.9253967,-1.8122265,-2.0494165,-2.2944713,-2.2829983,-2.2321997,-2.3056223,-2.2843134,-2.1912441,-2.2274456,-1.9668872,-1.6798711,-1.4364498,-1.4485018,-1.3741207,-1.839078,-2.4777114,-2.3788614,-2.3491006,-2.6142378,-2.7631269,-3.0428667,-3.092638,-3.1160548,-3.096896,-3.0261989,-3.1596677
+-0.21688181,-0.9926316,-1.35923,-1.6827843,-1.9679158,-1.9973042,-2.1462564,-2.402648,-2.5706544,-2.3516269,-2.784953,-2.9133403,-2.883762,-2.9264011,-2.3810673,-2.639854,-2.8058257,-2.571353,-3.2640495,-3.229459,-3.2748742,-3.4905918,-3.4462225,-3.2290943,-3.3052602,-2.859404,-2.7974954,-3.0813508,-3.2239404,-3.4288926,-3.4492793,-3.3908594,-3.566374,-3.5716228,-3.6212606,-3.529974,-3.424769,-3.6397629,-2.7165225,-3.643633,-3.4973483,-3.7391882,-3.3485026,-3.6305227,-3.8223786,-3.7585106,-3.8140674,-3.9416199,-3.8838143,-3.5051813,-3.725184,-3.740378,-3.7458863,-3.977953,-3.5271428,-4.0016127,-3.7624393,-3.9929051,-3.8551445,-3.928102,-3.7864146,-4.0065017,-3.63689,-3.6332974,-4.0231385,-4.0200396,-3.989777,-4.0185943,-3.8974805,-3.8613725,-3.6346138,-3.9779658,-3.8914862,-3.90136,-2.4578075,-4.1609793,-3.997313,-3.7709193,-3.4030333,-4.0908465,-3.9699183,-3.9754572,-3.7892756,-3.8124056,-3.7944126,-3.4956284,-4.064282,-3.949675,-3.8926806,-3.5565233,-3.972281,-4.070287,-4.04527,-4.0000777,-3.9112134,-3.5130897,-2.3416624,-3.67602,-4.0166316,-4.03221,-4.0378404,-3.8568192,-3.8260064,-3.7149572,-3.702599,-3.747964,-3.70899,-3.2135282,-4.133681,-3.6378438,-4.0990806,-4.0800896,-4.085222,-4.0471807,-3.9498515,-3.9431891,-3.9535365,-3.8524427,-3.3950992,-3.8880072,-4.1852837,-4.1584473,-3.4622085,-4.120611,-3.017272,-3.7806659,-4.0605135,-4.059894,-3.947186,-3.941555,-3.5438461,-4.0456147,-3.9521556,-3.9761553,-3.985806,-4.0709724,-3.7622547,-3.8045964,-4.1267323,-3.9748015,-2.7241082,-3.7850318,-3.99431,-4.0518785,-3.984593,-3.7946935,-3.6895638,-3.566454,-3.4527009,-4.0908623,-4.069938,-3.9272647,-3.8494458,-3.788062,-3.7868562,-3.817265,-3.661905,-3.4011173,-3.1324985,-3.8506498,-4.0202928,-3.8323178,-3.8561625,-3.941041,-3.7363296,-3.4005747,-3.8191986,-3.5872242,-3.6122544,-3.9028506,-3.876944,-3.8872614,-3.814928,-3.6852033,-3.6301758,-3.5217013,-2.5386846,-3.3833156,-3.6605952,-3.717073,-3.7726068,-3.80823,-3.9170055,-3.9541407,-3.9047208,-3.754747,-3.5199256,-3.8014274,-3.889608,-3.9602342,-3.9527988,-3.9463744,-3.937374,-3.7163434,-3.648125,-3.7974133,-3.900258,-3.8510737,-3.8458924,-3.8169646,-3.4101877,-3.7583842,-3.8196588,-3.8852963,-3.8803692,-3.8467817,-3.7322135,-3.8283696,-3.784865,-3.7952027,-3.8396254,-3.2440367,-3.5875077,-3.789783,-3.7815318,-3.7977276,-3.8264213,-3.8392925,-3.836248,-3.7661114,-3.753881,-3.7319674,-3.7825227,-3.7994618,-3.6585932,-3.6846137,-3.8344965,-3.8163104,-3.8315687,-3.74617,-3.2317772,-2.8633482,-2.8234382,-2.54917,-2.5933986,-2.7509708,-2.7612536,-2.7893198,-3.007109,-3.1992524,-3.1338482,-3.075869,-2.7971587,-2.4188275,-2.78296,-2.6353588,-2.5152104,-2.5378168,-2.245645,-2.0063078,-1.892106,-1.9008982,-1.961127,-1.9782019,-1.8938394,-1.9039805,-1.9226344,-1.8520603,-1.9226339,-1.5899675,-1.4543219,-1.4884813,-1.4839008,-1.6952271,-1.6795044,-1.5273156,-1.4989288,-1.3961737,-1.0548797,-0.80899996,-1.0313532,-1.2217987,-1.1798322,-1.2299638,-1.1467886,-1.1112082,-0.9299689,-0.9246084,-0.9326858,-0.95047873,-0.95927054,-0.9776072,-0.9851088,-1.0127289,-0.9605513,-0.9645172,-0.97409004,-1.012548,-1.0504162,-1.1133492,-1.1453626,-1.1737201,-1.4105065,-1.3912196,-1.2828209,-1.2634368,-1.2660842,-1.2465804,-1.0913513,-1.162509,-1.2470362,-1.2712214,-1.3701489,-1.3500423,-1.4278862,-1.3589778,-1.3287375,-1.452054,-1.4971585,-1.5445211,-1.5347407,-1.5404365,-1.5461864,-1.5920682,-1.6756244,-1.5233588,-1.4338708,-1.5139472,-1.5906582,-1.5041275,-1.5314174,-1.5074213,-1.3846388,-1.3229499,-1.2355902,-0.9967684,-0.9617607,-0.8995227,-0.9026901,-0.96740705,-1.1875062,-1.2436213,-1.2636209,-0.9894547,-1.1239285,-1.1678221,-1.2037649,-1.1333303,-1.0668409,-1.0176961,-1.2579339,-1.5042522,-1.4751399,-1.1732559,-1.1675665,-1.0961053,-1.031151,-1.1524785,-1.2183411,-1.2507083,-1.1944001,-1.7002549,-2.104638,-2.372819,-2.1299858,-2.4026542,-2.5448203,-2.6864557,-2.9499872,-2.7475934,-3.1041431,-3.1907465,-3.2950988,-3.365387,-3.3563719
+0.010203034,-0.75722426,-1.5006247,-2.0268197,-2.2871985,-2.2463427,-2.4183464,-2.6095166,-2.7370858,-2.5439014,-2.8466072,-2.876142,-2.953401,-2.8709836,-2.2198062,-2.9031386,-2.9675226,-3.1771142,-3.2477818,-3.2485342,-3.262404,-3.4798284,-3.502463,-3.5336637,-3.5358217,-3.1483521,-3.4000406,-3.3991942,-3.2724752,-3.1645155,-3.0856886,-3.145366,-3.1450102,-3.2236624,-3.3179412,-3.3182545,-2.8972418,-3.1158946,-3.1006453,-3.3806531,-3.4188514,-3.4502597,-3.2384934,-3.430637,-3.3034902,-2.6679356,-3.305875,-3.4825158,-3.3958402,-3.192654,-3.056507,-3.1514285,-3.271102,-3.5205805,-2.6398478,-3.7312312,-3.610983,-3.6648095,-3.5809417,-3.745737,-3.539041,-3.6996484,-3.6846614,-3.5968547,-3.4376347,-3.4948452,-3.38668,-3.317109,-3.1689913,-3.2449057,-3.2458951,-3.0546548,-3.0892196,-2.2346,-3.1001573,-3.7284904,-3.8499317,-3.76407,-3.7158504,-3.7167497,-3.5495195,-3.5043755,-3.47996,-3.3276396,-3.2806869,-3.3399565,-3.3482952,-3.1729317,-2.8785892,-3.0496242,-3.3294234,-2.5415356,-3.4781313,-3.8576932,-3.3666005,-3.9429808,-3.2326112,-3.8207402,-3.5976858,-3.974855,-3.8735113,-3.945623,-3.971562,-3.984057,-3.8621736,-2.289207,-3.6798856,-3.6477118,-3.8601332,-3.8825746,-3.9789686,-4.0402064,-4.0922427,-3.8836217,-3.872551,-3.7822099,-3.6852608,-3.1914988,-3.5315557,-3.707922,-3.740313,-2.7921765,-3.8834963,-3.9080687,-3.906353,-3.3789728,-3.9619536,-3.9325948,-3.7918572,-3.4707937,-2.6535687,-3.7489705,-3.3911514,-3.4925582,-3.845508,-4.0320363,-4.0932317,-4.1164,-4.1015797,-4.082532,-2.7638483,-3.4474268,-3.9134984,-4.0258374,-4.105046,-4.101793,-3.9233756,-2.7119727,-3.5127096,-4.107267,-4.2641554,-4.1248097,-4.067814,-3.9866319,-3.9858088,-3.913652,-3.6147537,-2.701397,-3.6779099,-3.8534489,-4.0421824,-4.01644,-3.9978976,-4.1249866,-4.0637794,-3.9863849,-3.8159661,-3.6028614,-3.791657,-4.0035396,-4.028876,-4.141319,-4.0141377,-3.9211025,-3.8943076,-3.7938209,-3.3675191,-3.6419897,-3.9022946,-3.9684281,-4.013458,-3.9229875,-3.913571,-3.935495,-3.8478189,-3.5899854,-3.612175,-3.794786,-3.7152247,-3.7614827,-3.825189,-3.7643619,-3.7542577,-3.7381883,-3.5890696,-3.652615,-3.5856705,-3.7506437,-3.6523795,-3.686781,-3.5393438,-3.0147605,-3.4997363,-3.7267785,-3.810791,-3.793548,-3.7417307,-3.8305073,-3.7621517,-3.7713122,-3.8479676,-3.7195091,-3.6059382,-3.643867,-3.719459,-3.8319402,-3.7018352,-3.7418504,-3.7304063,-3.6569858,-3.699728,-3.760509,-3.6952243,-3.7899532,-3.7195926,-3.6274433,-3.7755017,-3.7716966,-3.7939525,-3.7267451,-3.581637,-3.2399216,-3.120278,-3.1872194,-3.282751,-3.339734,-3.2929373,-3.273144,-3.2281086,-3.3107085,-3.332909,-3.3382745,-2.7451434,-2.6503744,-2.7554069,-2.6938505,-2.6006832,-2.591578,-2.4932973,-2.4048412,-2.352448,-2.3979542,-2.4972205,-2.4935267,-2.5617566,-2.618895,-2.568564,-2.6076639,-2.2636418,-1.0103648,-1.0240381,-1.2304623,-1.393959,-1.494117,-1.450881,-1.4247146,-1.494905,-1.4695914,-1.4649322,-1.2150767,-1.3535964,-1.484585,-1.4651008,-1.5057833,-1.4960582,-1.4868546,-1.479351,-1.437613,-1.4235475,-1.4282975,-1.4320621,-1.4820783,-1.4520874,-1.4191208,-1.3941023,-1.4910579,-1.3970487,-1.359411,-1.4569438,-1.4800508,-1.5378156,-1.5373077,-1.5542841,-1.5915484,-1.6233177,-1.4596641,-1.5310042,-1.531096,-1.1228154,-1.2689426,-1.3233447,-1.3733182,-1.3624904,-1.3622651,-1.4042616,-1.4776826,-1.5870414,-1.5262384,-1.5416627,-1.4651687,-1.548877,-1.3902302,-1.6285968,-1.569987,-1.4587047,-1.1564713,-1.1342742,-1.520989,-1.5550745,-1.5933113,-1.59217,-1.5485764,-1.4754357,-1.3119509,-1.1269903,-1.0412879,-0.94968456,-1.1335924,-1.3250165,-1.6229477,-1.5919204,-1.5264266,-1.6073334,-1.5675416,-1.5078554,-1.52998,-1.4689906,-1.4117177,-1.5256345,-1.7603929,-1.9294753,-2.1292722,-2.103237,-2.002203,-1.8765118,-1.8163383,-1.8501439,-1.7553623,-1.8279667,-2.056847,-2.3960013,-2.6241617,-2.462737,-2.4540951,-2.3806438,-2.5796528,-2.653026,-2.760192,-2.9614453,-2.722475,-2.9595737,-2.5292492,-3.220543,-3.3330107,-3.3289208
+0.9757435,0.5447277,-0.3595317,-1.1005282,-1.671263,-1.8820643,-2.0141206,-2.2573571,-2.5012126,-2.7828004,-2.88185,-3.0354226,-3.1394935,-3.1987567,-3.4906092,-2.321397,-2.785664,-3.0691223,-3.2836888,-3.410389,-3.3399203,-3.5941148,-3.6463544,-3.7413816,-3.6427479,-3.1054986,-3.3165934,-3.4868953,-3.101199,-2.1925912,-2.8502212,-2.9110336,-3.0161052,-3.2313423,-3.4949412,-3.6356673,-3.7524095,-2.5616484,-3.5865488,-3.7220922,-3.573773,-3.5038042,-3.620616,-3.4339354,-3.518684,-3.6869302,-3.546762,-3.5964901,-3.6311023,-3.6448684,-3.7056499,-3.7587485,-3.7989802,-3.8382196,-3.2019463,-3.8847566,-3.084809,-3.7619367,-3.9416385,-3.8493953,-3.624925,-3.6472397,-3.878582,-3.7855062,-3.607133,-3.7546892,-3.7782373,-3.7784,-3.8282933,-3.8827572,-3.8977695,-3.8332863,-3.8760104,-3.1208768,-2.7254944,-3.7363052,-3.8168902,-3.7684755,-3.8110442,-3.8011503,-3.81919,-3.8010259,-3.8931632,-3.8216472,-3.6348376,-3.812344,-3.937333,-3.2792768,-2.7846863,-3.0156112,-3.1050787,-3.8254251,-3.745215,-3.8073373,-3.840694,-3.9150252,-3.9389296,-3.8686028,-4.0067625,-3.9191484,-3.870974,-3.964518,-3.9641824,-4.002957,-3.9462023,-3.5874968,-3.8697495,-3.9833474,-3.9418235,-2.3849015,-3.6875377,-3.8651948,-3.2855296,-2.6960235,-3.797566,-3.9056249,-3.8315554,-4.035895,-2.5601392,-3.798561,-3.9517455,-3.9063497,-3.9135609,-3.985701,-3.9456825,-3.9932323,-4.1149635,-3.9803686,-3.9651093,-3.878296,-3.8549156,-3.9395604,-3.962834,-2.914421,-3.9585567,-4.091601,-4.0327744,-4.1817513,-3.9903607,-4.134112,-2.6763659,-3.855124,-3.9919944,-3.919783,-3.942474,-3.8189225,-4.036543,-2.4563112,-3.7578568,-4.00435,-4.149694,-3.9950604,-4.079725,-3.9619837,-3.873797,-3.9128394,-3.9647784,-3.7287226,-3.2297862,-3.8763733,-3.9780383,-3.998488,-4.0221963,-3.9190817,-3.7895355,-4.0128155,-3.9400163,-2.7635684,-3.6041589,-3.9751468,-3.9819818,-3.9070253,-4.047663,-4.0401187,-4.151587,-3.9535956,-3.9301467,-3.7317457,-3.916184,-3.9935088,-3.8175588,-3.9685378,-3.91958,-4.05755,-4.079963,-3.7615514,-3.8477426,-3.8672357,-1.8219085,-3.7062454,-3.7412715,-3.9659414,-3.9421344,-3.7319036,-3.7901154,-3.9225492,-3.8636518,-3.7358184,-4.0279756,-3.6549807,-3.4699206,-3.7655125,-3.5790558,-3.4911647,-3.5920064,-3.4836743,-3.7294235,-3.9120846,-3.7985587,-3.7868733,-3.6402063,-3.7241168,-3.9859748,-3.934876,-3.559234,-3.6430807,-3.5489185,-3.5199294,-3.6124516,-3.7080836,-3.8637605,-3.533429,-3.5165482,-3.3950276,-3.4146397,-3.1132536,-3.2701898,-3.270094,-3.2053034,-3.226756,-3.1388283,-1.3858457,-1.4270701,-1.1906116,-1.3597047,-1.7661326,-1.6558864,-1.5769684,-1.4231541,-1.5215533,-1.2378943,-1.7372618,-2.038135,-2.0715845,-1.5740528,-1.4236884,-1.1676283,-1.231725,-1.4161444,-0.83698744,-0.44882804,-0.2077614,-0.22668594,-0.2957641,-0.40043586,-0.30588573,-0.23026139,-0.27856195,-0.10252905,-0.1497578,-0.12446362,-0.18919367,-0.43187708,-0.54678285,-0.49136358,-0.23438483,-0.2929626,-0.27623993,0.07660991,0.078205734,-0.11503631,-0.17142123,-0.24063897,-0.27312762,-0.1715498,-0.13542324,-0.07035443,-0.11665207,-0.12776741,-0.2718283,-0.3803249,-0.40843993,-0.427422,-0.41560602,-0.34361064,-0.32188904,-0.40499532,-0.39034992,-0.34978533,-0.31311888,-0.24294043,-0.3418662,-0.18043193,-0.18305582,-0.21189624,-0.15764302,-0.037085652,-0.047722876,-0.12269801,-0.29683024,-0.41780955,-0.32594115,-0.32030892,0.0008892119,0.106567904,0.17656192,-0.30938345,-0.3217339,-0.19458205,0.03931755,0.2925946,0.639485,0.72701263,0.24556535,0.40203625,0.8977357,0.47334737,0.5236,0.46421993,0.46308258,0.34931284,-0.04596442,-0.44586968,-1.1985018,-1.801362,-1.9840169,-2.0753381,-2.0626435,-1.4002016,-1.619421,-0.8775516,-0.53493863,-0.2219854,0.024990797,0.047017545,0.10112661,0.18376817,0.17875883,0.008171767,-0.5773985,-1.0273104,-1.2268968,-1.4303312,-1.2351222,-1.5165734,-1.8903613,-1.631886,-1.7609787,-2.0730052,-1.9401493,-2.03676,-2.323417,-2.4363942,-2.5915396,-2.7852595,-2.9696908,-3.4286144,-3.268954,-3.2174525,-3.2330563,-3.2631786,-2.0381804,-3.362404,-3.5025823,-3.264669
+0.116767585,-0.66714454,-1.2489793,-1.5236969,-1.6102321,-1.8917711,-1.9668083,-2.1570044,-2.196671,-1.8888745,-2.0285697,-2.2552629,-2.1715837,-2.0751252,-2.1286287,-1.661859,-1.9386823,-1.9043233,-2.1510773,-2.097001,-2.1442223,-2.179399,-2.1228065,-2.2164807,-2.3026857,-2.311338,-2.4140341,-2.570144,-2.0296023,-1.8028982,-1.9193099,-2.323226,-2.0437872,-2.0661337,-2.145553,-2.1257272,-1.9086218,-1.7460368,-1.8551188,-2.0074623,-1.822629,-1.9974315,-1.9995599,-2.47997,-2.4994528,-2.0486765,-1.9008977,-1.9632349,-2.1918604,-2.2374706,-2.2857623,-2.2937012,-2.1461859,-1.7474487,-1.9057162,-1.8045695,-1.8630085,-1.6772244,-1.800786,-1.8050475,-1.7275062,-1.9165974,-1.4712934,-1.5337718,-1.6495173,-1.8582602,-1.9082792,-2.1185305,-2.1161506,-1.823915,-1.9748693,-2.178669,-1.7112932,-2.0353642,-1.3479693,-1.7766352,-2.0440252,-2.1580338,-2.2325544,-2.3026597,-2.3329601,-2.325953,-2.2163415,-2.208963,-1.1175292,-1.8147712,-2.0147252,-1.4415784,-1.8288512,-1.1796291,-1.7233379,-1.6499243,-1.4616096,-1.7785144,-1.7811489,-1.8719125,-2.0888548,-2.1511004,-2.2635956,-2.1110735,-2.2779295,-2.2883413,-2.2791994,-2.0464706,-2.0279055,-2.1599607,-2.3961341,-2.3296843,-2.3499863,-1.3160367,-1.8295441,-1.5574954,-1.909512,-1.7945065,-2.0244536,-1.198431,-2.2209625,-2.228083,-1.971818,-2.0973086,-2.3091664,-2.306127,-1.7957919,-2.1626065,-2.0511327,-2.0551941,-2.337523,-2.3627434,-2.3545785,-2.4655585,-2.4164834,-2.2519872,-1.3982749,-1.726553,-1.9111214,-2.1636915,-2.2874653,-2.2826276,-2.327402,-2.395895,-2.3616962,-2.5253296,-2.6257904,-2.513712,-2.505516,-2.3192816,-2.6252337,-2.5978608,-2.5809722,-2.4257097,-2.3210192,-2.2702904,-1.9948177,-2.3553715,-2.3708706,-2.1109853,-2.0936751,-2.2541516,-2.466062,-2.4897795,-2.4664018,-2.4529457,-2.574622,-2.425408,-2.3988137,-2.546319,-2.568458,-2.5377245,-2.3342113,-1.5001252,-2.0258543,-1.9046357,-2.198048,-2.0722528,-2.3342838,-2.3489575,-2.49652,-2.3164086,-2.4736776,-2.4988866,-2.395304,-2.5733118,-2.4744396,-2.6087651,-2.6087465,-2.5610936,-2.2651236,-2.4607534,-0.96667033,-2.0589538,-2.0927634,-2.3876305,-2.4156795,-2.132933,-2.0582576,-2.4548244,-2.3684316,-2.2669182,-2.3746982,-2.305589,-2.3286858,-2.3721716,-2.5562508,-2.451107,-2.344011,-2.368533,-2.550086,-2.6122966,-2.563534,-2.5164824,-2.3518596,-2.4431171,-2.6472702,-2.5395951,-2.403616,-2.6093097,-2.6159325,-2.5441136,-2.540659,-2.567186,-2.6882946,-2.586904,-2.5636163,-2.5181224,-2.6280074,-2.5180354,-2.619091,-2.5950341,-2.4179163,-2.2827947,-2.396819,-2.0036297,-1.8399358,-2.2794547,-2.3302503,-2.509048,-2.4414556,-2.4011168,-2.3595185,-2.3878007,-2.4312744,-2.457694,-2.468227,-2.481481,-2.2548277,-2.3218718,-2.2963605,-2.2603278,-2.3502917,-2.1349745,-1.9562912,-1.6581321,-1.8293772,-2.0547452,-2.213317,-2.0378642,-2.0709713,-2.2425504,-2.13501,-2.2891192,-1.913857,-1.8355827,-2.0698004,-2.2113533,-2.168648,-2.1264074,-2.1527457,-2.1669545,-2.03307,-1.9817352,-1.9831016,-2.0816865,-2.0100887,-2.0771956,-2.0687895,-1.9616868,-1.974452,-1.9979177,-1.7912626,-1.7675319,-1.6078396,-1.775806,-1.8678184,-1.8573642,-1.8348184,-1.8277774,-1.7663021,-1.7558045,-1.8609614,-1.7224236,-1.4305677,-1.2214997,-1.3086963,-1.31636,-1.3267393,-1.2719045,-1.250843,-1.2384245,-1.3417978,-1.2592683,-1.2556987,-1.3899698,-1.4059896,-1.2913809,-1.3181176,-1.3591573,-1.2974234,-1.1574183,-1.1331568,-1.3366854,-1.3757992,-1.3410494,-1.4395621,-1.6167798,-1.7658088,-1.5907385,-1.6527703,-1.8962202,-2.0191593,-1.9874454,-2.0424418,-1.9827693,-1.9256127,-2.0992117,-2.035901,-2.0735002,-2.1732883,-2.0990288,-1.9561083,-1.9172292,-1.8661134,-1.8606791,-1.9311509,-1.9069052,-1.9357371,-2.0187297,-2.1126082,-2.0110357,-2.008466,-2.170357,-2.4470615,-2.396284,-2.24605,-2.4003272,-2.3766234,-2.4453964,-2.416394,-2.3962674,-2.4265528,-2.072979,-2.3562293,-2.4548898,-2.2850327,-2.284962,-2.4558861,-2.510159,-2.4679463,-1.1470666,-1.5441914,-1.8946886,-2.0649095,-1.9435117,-2.0286863,-1.9536331,-2.4038372
+-0.1857557,-1.1649373,-1.771986,-2.0386724,-2.228073,-2.3186073,-2.516841,-2.6613998,-2.7575312,-2.790483,-2.248294,-3.140977,-3.3138998,-3.2526796,-2.4407406,-2.598668,-3.5997148,-3.7401972,-3.9038897,-3.595716,-3.3317597,-3.4975753,-3.2704744,-3.3466945,-3.4836903,-3.6001685,-3.234364,-3.6373644,-2.5398607,-3.191103,-3.1552777,-3.126668,-3.1243153,-3.1631994,-3.3160515,-3.2842493,-3.0334964,-3.3463945,-3.6248279,-3.740704,-3.3991952,-3.5598617,-3.9510837,-3.814879,-3.6080348,-3.2569718,-3.1155057,-3.4038057,-3.1416287,-3.1520967,-3.0904589,-2.9563272,-3.1377678,-3.2325187,-3.3047976,-3.402607,-2.460463,-3.4970293,-3.6992135,-3.6645525,-3.3169932,-3.644617,-3.900539,-3.7285905,-3.522059,-3.5874493,-3.6184883,-3.6135004,-3.6655862,-3.6369514,-3.7114635,-3.62568,-3.567267,-2.2249932,-3.565576,-3.7801237,-3.8287625,-4.009624,-3.931003,-3.7905698,-3.7223363,-3.6420693,-3.6633816,-3.6308663,-3.6070895,-3.6286922,-3.4680176,-2.6927881,-3.4996238,-3.3314838,-3.5309181,-3.427699,-3.7309341,-3.9924436,-3.9528184,-4.1197267,-4.1383204,-4.1645627,-3.9153771,-4.0773625,-3.9640746,-3.9889722,-3.938373,-4.0285163,-2.9723916,-3.526287,-3.861239,-3.9159765,-3.7316556,-3.692968,-3.842845,-3.9695077,-3.8070798,-3.9796681,-4.0920897,-2.6951106,-3.7344627,-3.1424627,-3.7917132,-3.4959705,-3.8665462,-3.9982777,-4.1784654,-4.1410146,-4.1168303,-4.1159644,-4.253424,-3.7450566,-2.5684085,-3.6177883,-3.8292499,-3.7964416,-3.9618583,-3.7684112,-3.9719281,-3.9456372,-3.865995,-2.8098822,-3.884931,-3.9896665,-4.0017395,-3.659719,-4.084028,-3.9077582,-4.008865,-4.202603,-3.9659166,-3.9568043,-3.9012685,-4.0097365,-3.876083,-3.565058,-3.3368554,-3.8417864,-3.7237964,-3.0183086,-3.2363925,-3.5227284,-3.7683387,-3.8197846,-3.8757339,-3.9355989,-3.8236403,-3.812502,-4.0290246,-3.7909513,-3.8077612,-3.8462791,-3.915647,-3.9514937,-3.9746337,-4.093085,-4.0268826,-4.0392537,-3.9663544,-2.9833694,-2.6839643,-3.646655,-3.9747295,-4.155051,-4.235207,-4.05987,-4.001736,-4.0054183,-4.010678,-3.828465,-3.7825713,-3.9312901,-4.0246596,-3.9210706,-3.920117,-4.006347,-4.001057,-3.929267,-3.789516,-3.8352957,-3.934711,-4.085482,-4.040956,-3.976521,-4.076486,-4.0857244,-4.096949,-4.080384,-4.049111,-4.229978,-4.0411158,-4.148618,-4.2322483,-3.9994402,-3.9955478,-4.1761,-4.1021056,-4.01533,-4.1758513,-4.2102532,-4.1786017,-4.03686,-3.9632344,-3.8260493,-3.8483605,-3.9928374,-3.8567934,-4.0389733,-4.170071,-3.9186106,-4.1237063,-4.187187,-4.140221,-3.8883338,-3.945726,-3.455905,-3.6053495,-4.010601,-3.9867759,-3.956132,-3.8593225,-4.0064125,-4.043538,-4.030689,-3.9429736,-4.0404572,-4.1183643,-4.0408053,-4.0608764,-4.0946255,-4.0223556,-3.970026,-4.032018,-3.9367108,-3.7376065,-3.3611026,-3.3121872,-3.406173,-3.6782584,-3.4939165,-3.500132,-3.444967,-3.245903,-3.471005,-3.1375995,-2.7955093,-2.8888917,-3.0964315,-3.2514567,-2.927515,-2.9167278,-2.919746,-2.174744,-3.0372252,-3.089686,-3.3743863,-3.2637455,-3.2310965,-3.3043952,-2.9014907,-3.063836,-3.0089617,-2.7353058,-2.6762037,-2.5526714,-2.6049976,-2.7270567,-2.8005853,-2.8857756,-2.8220034,-2.9278407,-2.7296305,-2.8186026,-2.0838387,-1.5798664,-1.7890732,-1.9051161,-2.0621958,-2.0225737,-1.9748607,-2.00536,-1.9290044,-2.0143852,-2.0311613,-2.0360463,-2.1810284,-2.3094811,-2.390037,-2.4068847,-2.350153,-2.115159,-2.0298822,-1.964284,-2.0393028,-2.3578558,-2.4692147,-2.6848187,-2.8993506,-2.9025068,-2.9093153,-3.1028328,-2.4891243,-2.8021965,-2.939566,-3.090802,-3.1676059,-3.351553,-3.4971154,-3.3814547,-3.5467138,-3.5743203,-3.6233792,-3.7684278,-3.5301948,-3.2952292,-3.4611373,-3.4959612,-3.7551236,-3.6658776,-3.7488246,-3.7088022,-3.6466556,-3.61349,-3.5459132,-3.6273632,-3.8863764,-3.9478908,-3.9377198,-3.8866897,-3.8670115,-3.844452,-3.932036,-3.8567028,-3.7692227,-3.9072304,-3.7491822,-3.6770704,-3.8350978,-3.76891,-3.6106105,-3.478241,-2.0040355,-3.0942378,-3.456913,-3.65687,-2.941659,-3.4056053,-3.4262347,-3.56314
+-0.7497999,-1.4003441,-1.9346931,-2.1914358,-2.410823,-2.5984616,-2.7674975,-2.8430834,-2.892615,-2.9822137,-1.8686838,-2.9978914,-3.1789684,-3.3046494,-3.240827,-2.4012458,-2.8193731,-3.1748576,-3.0637326,-3.1952581,-3.0357919,-3.3369145,-3.3798199,-3.3987803,-3.5606537,-3.623135,-3.6767085,-3.6910567,-2.2409568,-3.1425393,-3.1783834,-3.056371,-3.2446399,-3.2640994,-3.3280883,-3.315182,-3.3123298,-3.5256407,-3.650291,-3.6784465,-3.5694315,-3.2746778,-3.7714028,-3.6802063,-3.510417,-3.4595447,-3.455069,-3.6358771,-3.4867382,-3.5832684,-3.4158347,-3.362961,-3.4799175,-3.5336733,-3.5891876,-3.597571,-3.7177262,-3.7356243,-2.2095609,-3.214225,-2.5107536,-3.2345781,-3.5383477,-3.6020525,-3.6005256,-3.6373363,-3.6524436,-3.0320935,-3.555726,-3.6996684,-3.7274823,-3.6353867,-3.613706,-3.336204,-3.2127786,-3.8445773,-3.7677612,-3.9479742,-3.984661,-3.8197975,-3.8037138,-3.8158126,-3.9001374,-3.308548,-3.6106758,-3.772431,-3.638389,-3.7319913,-2.1165814,-3.0873713,-2.9901628,-2.6607728,-2.7833972,-3.241593,-3.3374844,-3.5162106,-3.692957,-3.912068,-4.0092444,-3.9716048,-3.9331212,-3.9005795,-4.0596337,-4.0366545,-4.0102515,-3.986319,-3.7968926,-3.7283096,-3.8630104,-3.896747,-3.9256396,-3.9359422,-3.494465,-3.7598681,-3.9364657,-3.9814982,-3.950243,-3.4858024,-3.6091146,-3.647914,-3.7426538,-3.8279638,-3.898869,-3.9846287,-3.9787679,-2.4469695,-2.5696254,-2.5839756,-2.7592993,-3.200471,-3.173362,-3.3387232,-3.6360598,-3.6170597,-3.5814877,-3.6967044,-3.6551657,-3.7507691,-3.7268934,-3.706461,-3.9081807,-3.3153105,-3.7060795,-3.640789,-3.723796,-3.9107637,-2.3903675,-3.236948,-3.2852938,-2.9644325,-3.3550618,-3.5320282,-3.533193,-3.570397,-3.4894738,-3.483435,-3.4414876,-3.4602938,-3.2185602,-3.3782842,-3.572545,-3.6223357,-3.6467457,-3.7162738,-3.7176194,-3.7780318,-3.737094,-3.6402602,-3.722291,-3.7966275,-3.701529,-3.8175883,-3.7418437,-3.8136172,-3.7237759,-3.6214046,-3.74013,-3.8707147,-3.9896717,-4.0353847,-4.008681,-3.9500403,-3.96876,-3.871502,-3.667808,-3.6978621,-3.78443,-4.005511,-4.069442,-4.096338,-4.0806203,-4.06891,-3.9797907,-3.9445186,-3.9953465,-4.01119,-3.9986253,-3.960587,-3.909099,-3.8711982,-4.158696,-4.239228,-4.253372,-4.217155,-4.0937877,-4.1227984,-4.101236,-4.100893,-4.1236753,-4.0036416,-3.939877,-3.987947,-4.0983405,-3.9846377,-4.078054,-4.149894,-4.20041,-4.1518626,-4.067476,-3.616517,-3.7138314,-3.8864045,-3.917008,-3.963037,-4.094012,-4.0725536,-4.1161065,-4.1299863,-4.0559416,-3.8943973,-3.959888,-4.086268,-4.1076856,-4.3394694,-4.214495,-4.101828,-4.041779,-4.0885186,-4.1364264,-4.078695,-4.069612,-4.083085,-4.153642,-4.105556,-4.09399,-4.026145,-4.077203,-4.003451,-4.0581183,-3.9658346,-3.5885558,-3.313464,-3.2462332,-3.53386,-3.75483,-3.719369,-3.7109218,-3.6177597,-3.272088,-3.4890904,-3.4085984,-2.779202,-2.967182,-3.1859074,-3.4295862,-3.3393233,-3.4082477,-3.457336,-3.3488986,-3.473628,-3.6094356,-3.6454947,-3.6709433,-3.6783376,-3.7573295,-3.6707916,-3.7483335,-3.70992,-3.2666912,-3.0510442,-2.8035204,-2.8027186,-2.96753,-3.0976076,-3.194544,-3.3124466,-3.4509568,-3.253003,-3.3557453,-2.727481,-2.7233407,-2.8440902,-3.0765352,-3.2142384,-3.3082209,-3.3792477,-3.3321943,-3.4242225,-3.4478383,-3.316253,-3.1887767,-3.1334944,-3.237431,-3.4168692,-3.4611344,-3.5172067,-3.593552,-3.264511,-3.0941834,-3.310447,-3.5340805,-3.599618,-3.6451602,-3.6669555,-3.742178,-3.6834302,-3.731422,-3.9225125,-3.7268314,-3.6885352,-3.6998725,-3.7465224,-3.7710104,-3.8232923,-3.6708596,-3.7108493,-3.8079028,-3.7291322,-3.8791838,-3.8257852,-3.829266,-3.9669023,-4.0277944,-3.9772487,-4.0247526,-4.039869,-4.0316825,-3.9246507,-3.8292022,-3.7730227,-4.0832562,-4.08361,-4.0067067,-4.070381,-4.1452675,-4.1931787,-4.150315,-4.113928,-4.089413,-3.9318113,-4.0570855,-3.9612846,-3.910595,-3.9478378,-4.0934796,-4.0594764,-3.9081712,-4.006908,-3.9730277,-4.1651883,-4.1203084,-1.9497833,-3.4443872,-3.42907,-3.4286947
+-1.1752489,-1.9694378,-2.4585438,-2.6060889,-2.8395538,-2.981805,-3.0594883,-3.1542265,-3.2219021,-3.3018532,-3.2054572,-3.3959222,-3.4681911,-3.4128807,-2.0287476,-2.405501,-3.3294578,-3.640812,-3.2273598,-3.309843,-3.55299,-3.7725778,-3.9070354,-4.130873,-4.026771,-4.0343575,-4.0935435,-3.3860736,-3.052054,-3.587687,-3.3565023,-3.6243343,-3.726931,-3.6900413,-3.751546,-3.6967373,-3.6429653,-3.7355728,-3.839158,-3.817327,-3.7983575,-2.7383356,-3.9998627,-3.9611683,-4.067611,-3.2693415,-3.5808434,-3.762556,-3.7877374,-4.07153,-3.698092,-3.1464906,-3.8655286,-4.0482316,-4.128929,-4.052342,-4.1214767,-4.045674,-3.804381,-3.8180494,-3.7888522,-3.0470595,-3.9979577,-4.063157,-3.925424,-3.89149,-3.8370223,-2.5243764,-3.80507,-4.0428624,-4.0412292,-3.535512,-3.984189,-3.6407366,-3.1983678,-3.9516063,-3.977857,-3.9020367,-4.04809,-4.0618587,-4.034591,-4.0043273,-4.011048,-3.1361551,-3.2457967,-3.8544536,-3.7213612,-3.9427228,-3.9386525,-3.951716,-2.757567,-3.7906418,-3.8243928,-3.6246583,-2.9306364,-3.9452834,-3.8791647,-3.9807944,-4.078089,-4.144392,-4.071896,-3.9962277,-4.116196,-4.2009835,-4.2319846,-4.257919,-4.2423916,-4.179045,-1.6569607,-3.6941495,-3.944603,-4.011533,-3.9897628,-3.9692755,-3.965168,-3.0487847,-3.8007212,-3.8263793,-3.8794322,-3.7317958,-2.3613415,-3.180555,-3.914978,-3.9462595,-2.4831774,-3.5445933,-2.782722,-3.4720957,-3.5943902,-3.9136925,-2.6897626,-3.804268,-3.7850986,-3.921618,-3.9985738,-3.890298,-4.060268,-4.039195,-3.9674988,-3.9628596,-3.8476934,-2.555095,-3.8083315,-4.046786,-3.9563851,-3.4784546,-3.2729583,-4.0261602,-3.6960955,-3.2189512,-3.9186196,-3.807423,-3.8711824,-4.105427,-4.1214604,-3.9913979,-3.813796,-3.4533863,-3.4301865,-2.3991747,-3.4900641,-4.014399,-3.9148006,-4.1597157,-4.086181,-4.0197887,-3.9529681,-3.6453,-3.9838758,-3.7044392,-3.584052,-3.9072556,-3.9818425,-3.888515,-3.705431,-3.7888055,-3.2497034,-3.881423,-3.9406629,-4.016846,-3.9620175,-3.893351,-3.883554,-3.8902755,-3.8566275,-3.7344823,-3.847941,-3.8423963,-3.905045,-3.914269,-3.9253888,-3.904014,-3.17268,-3.855866,-3.9791064,-4.021501,-4.0483475,-3.9303107,-3.752544,-3.6946273,-3.9579616,-4.0407624,-4.1110034,-4.1173253,-4.1418023,-4.1030316,-4.0942283,-4.05724,-4.111063,-4.05763,-4.0525327,-4.0252447,-4.051431,-4.0017266,-3.989644,-3.9913497,-4.0679164,-4.0823274,-4.083402,-2.1911368,-3.8108387,-3.9594822,-4.001659,-4.235389,-4.2463765,-4.2102532,-4.3069606,-4.1467805,-4.0755405,-4.04889,-4.0432453,-4.08221,-3.743072,-4.1351476,-4.1052585,-4.1665998,-4.2823224,-4.28128,-4.0883083,-4.185472,-4.2258587,-4.3599815,-4.0686183,-3.8415174,-3.677651,-3.6306133,-3.8213387,-3.9493752,-3.9076738,-3.6999707,-3.1855402,-2.9939682,-2.967526,-3.3836946,-3.8794384,-3.8608422,-3.8550286,-3.5446374,-3.1055508,-3.6770144,-3.9437532,-2.8106437,-2.7354543,-2.909297,-3.2869225,-3.2888966,-3.2462387,-3.9481654,-3.8498445,-3.980249,-3.6767802,-3.8742924,-3.7514672,-3.6389933,-3.7374673,-3.688768,-4.01272,-3.8167815,-3.1813326,-2.8610492,-2.5316432,-2.5533848,-2.6525536,-3.0717454,-3.6909137,-3.9329515,-4.1153646,-3.743578,-3.75133,-2.9461234,-3.1044736,-3.3590648,-3.561496,-3.8425326,-3.9947958,-4.0664735,-3.7811484,-3.970478,-4.0991616,-3.8518524,-3.0669236,-2.9225307,-2.9365735,-3.2023778,-3.5972815,-3.8329225,-3.8717875,-3.3276522,-2.673319,-2.889412,-3.4865887,-3.9057746,-4.106381,-4.0778704,-3.993031,-3.9661994,-3.8612518,-3.8058467,-3.5344346,-3.7324,-3.8705077,-3.8957033,-3.957533,-3.8477483,-3.7904463,-3.8752565,-3.7488904,-3.7817078,-3.8047295,-3.7725925,-3.641423,-3.7130256,-3.787517,-3.6998367,-3.9068542,-3.8588839,-3.8194776,-3.7644105,-3.7739053,-3.6869884,-3.838323,-3.7999601,-3.7626305,-3.8041453,-3.9739003,-4.051663,-3.9990058,-3.9610767,-3.954165,-3.9751072,-3.8172421,-3.9577365,-3.9322171,-3.7684999,-3.8384223,-3.9904108,-3.645152,-3.1561072,-4.1963005,-4.1186523,-4.1133223,-2.4619021,-3.6298485,-4.026279,-4.089804
+-1.0310051,-1.597269,-1.892035,-2.0795743,-2.1956096,-2.4484928,-2.6252868,-2.761375,-2.831432,-2.7424073,-2.4683123,-2.7976837,-2.0795946,-2.9922416,-3.1157897,-3.118228,-3.2374604,-3.3912148,-2.062675,-2.9658878,-2.8782406,-3.1578407,-3.4280386,-3.460833,-3.5243468,-3.6630032,-3.7417302,-3.9005494,-2.4967475,-3.1824927,-2.9912214,-3.305594,-3.4248657,-3.558513,-3.7252622,-3.73284,-3.7492185,-3.7721434,-3.8566318,-3.9344869,-3.9905643,-4.0303426,-4.1427884,-3.9292521,-3.7154212,-3.8666039,-3.5651846,-2.7495909,-2.3067355,-3.01121,-3.186184,-2.2579572,-3.1079946,-3.485829,-3.638415,-3.7875876,-3.8561196,-4.001311,-3.2891855,-2.1201062,-2.9731462,-2.0247293,-3.0511553,-3.2769568,-3.2625232,-3.2433429,-3.0457458,-2.92208,-3.3751369,-3.2979457,-3.34302,-3.4202034,-3.336967,-3.4330702,-3.170422,-3.3815975,-3.569899,-3.5517745,-3.8470778,-4.0240893,-4.003263,-3.9735274,-3.9671302,-3.9879146,-4.00679,-4.032283,-3.0688186,-3.363027,-3.6377158,-3.8867455,-3.2619247,-3.0255427,-3.9654412,-4.0455813,-3.71244,-3.6485043,-4.040357,-4.1112866,-4.18635,-4.2913823,-4.21333,-4.051411,-4.063751,-4.1232615,-4.206675,-4.316407,-3.4064374,-4.0914903,-4.266004,-4.3487573,-4.3241653,-4.251326,-4.2126374,-4.2104697,-4.2652974,-2.5153382,-3.549839,-3.0350192,-3.6945662,-3.8489366,-1.8709037,-3.3457747,-3.4616876,-3.6756835,-1.5681763,-3.0590138,-3.3994176,-3.599769,-3.6881042,-2.3682733,-1.9287574,-3.182005,-3.4165092,-3.421139,-3.534078,-3.740065,-3.7691445,-3.8041363,-3.8148284,-3.9184031,-3.9326296,-3.4296014,-3.7005153,-3.8719807,-3.8460908,-3.9157586,-3.96419,-3.8464546,-2.0687675,-2.2780983,-2.4271507,-2.081692,-2.4346426,-3.0199888,-3.0940297,-3.1502216,-3.1338513,-3.1788654,-2.8192077,-1.7017517,-2.9851103,-3.290047,-3.2845464,-3.288806,-3.1740828,-3.1837387,-2.4719281,-2.522803,-2.9145026,-3.0245638,-2.9972098,-3.0148525,-3.1201792,-3.104868,-3.0204027,-2.9364376,-2.937315,-3.0282617,-3.1169944,-3.1246316,-3.1088195,-3.1727228,-3.1273494,-3.1931067,-3.1542392,-3.128915,-3.0959387,-3.193306,-3.3858178,-3.3600206,-3.5473883,-2.8654304,-3.1127477,-3.278764,-3.3572338,-3.0909805,-3.0998979,-3.2452753,-3.346118,-3.4330328,-3.5886364,-3.6762815,-3.574955,-3.6813283,-3.6096718,-3.6064348,-3.7011247,-3.6629174,-3.641705,-3.7069397,-3.6156769,-3.6216779,-3.7532983,-3.684869,-3.6709769,-2.809403,-3.1885543,-3.3741555,-1.5961115,-2.4035888,-2.7043805,-2.7851546,-2.7601638,-2.805729,-2.8309119,-2.7775612,-2.7939577,-2.9330707,-3.003471,-3.0335667,-3.1006904,-3.0276823,-3.1111126,-3.2068977,-3.177953,-2.9269085,-2.9209552,-3.0430875,-3.108227,-3.1564052,-3.0815792,-3.0042605,-3.1176367,-3.2243412,-3.1522212,-3.199429,-2.7911243,-2.7849972,-2.793157,-2.998988,-2.792595,-2.6919289,-2.5440993,-2.5603027,-2.5838723,-2.6863244,-2.7600012,-2.709831,-2.6265972,-2.739788,-2.5760078,-2.0347,-2.1884122,-2.3648238,-2.5363605,-2.5495002,-2.3776135,-2.486831,-2.5174758,-2.6324122,-2.7942066,-2.7454202,-2.8771152,-2.8370051,-2.673739,-2.7287693,-2.7044516,-2.739674,-2.7164164,-2.6239276,-1.8998735,-1.868947,-1.9822352,-2.0538695,-2.1866515,-2.5467417,-2.7038436,-2.706108,-2.086696,-2.0351276,-2.3497343,-2.4169636,-2.613748,-2.627377,-2.7771733,-2.7520514,-2.774241,-2.8792734,-2.920857,-2.904647,-2.8448477,-2.8854089,-2.8080423,-2.9062495,-2.932888,-2.916611,-3.024167,-2.9977927,-2.923973,-2.8762968,-2.918933,-2.9539723,-2.8521042,-2.8168712,-2.824911,-2.798954,-2.8772266,-3.053986,-1.8543558,-2.772061,-2.701608,-2.6881323,-2.707393,-2.7777724,-2.794215,-2.7823286,-2.9885235,-2.9943826,-3.0578523,-3.0605524,-3.1402013,-3.0794516,-3.1448483,-3.122989,-3.157959,-3.3425488,-3.3377433,-3.2864063,-3.2029514,-3.0871117,-3.2051368,-3.290968,-3.3131516,-3.3144357,-3.4294493,-3.3390172,-3.4253225,-3.446792,-3.3832407,-3.3574858,-3.3206336,-3.4915476,-3.3686619,-3.3435225,-3.4806478,-3.5749342,-3.368334,-3.2020483,-3.4969954,-3.6055028,-3.6152742,-2.1299686,-2.1077638,-2.922277,-2.9810634
+-0.44181114,-2.5218205,-3.4080274,-3.5563903,-3.551493,-3.6118128,-3.6173239,-3.3459356,-3.0589023,-3.6998491,-3.8913884,-2.9908862,-3.8525147,-3.9914293,-3.8853965,-3.9447923,-4.026587,-3.9874444,-3.6407433,-3.9976802,-3.1548853,-3.8952699,-3.880117,-3.9290338,-3.7902465,-3.749014,-3.880701,-3.7204704,-3.911561,-3.9434085,-3.7915425,-3.977387,-4.0452914,-3.9813313,-3.863377,-3.679099,-3.6409824,-3.7942624,-3.879417,-3.8773293,-3.8125863,-3.872302,-3.8952336,-2.5912783,-2.7493536,-3.868207,-3.8704433,-2.863747,-3.2706337,-3.789719,-3.9860096,-3.9286885,-4.0413966,-4.025025,-3.9030728,-3.925346,-3.9544659,-3.9512181,-3.8306131,-3.8675237,-3.240521,-2.539311,-3.6111908,-3.9733396,-4.0290713,-4.0124307,-4.011201,-3.934856,-3.8453474,-3.7201643,-2.4263644,-3.383627,-2.3300176,-3.6329894,-3.9356208,-3.3418036,-3.141886,-3.906283,-4.0188465,-3.986146,-3.9772415,-3.985446,-3.9317331,-3.8764768,-3.8345861,-3.7889752,-3.7430882,-3.769299,-3.1603518,-3.723435,-3.8267188,-3.797678,-3.8071723,-3.9631639,-3.9664817,-3.8978696,-3.879362,-3.9143047,-3.923861,-3.8882852,-3.8424578,-3.3769338,-3.8095117,-3.8536787,-3.627062,-3.7525935,-3.7592378,-3.789495,-3.8216405,-3.867845,-3.8804903,-3.8926501,-3.8979797,-3.9008665,-3.8784838,-3.8806753,-3.9095654,-3.9129634,-3.9464345,-3.9337883,-3.9269266,-3.8673,-3.8136635,-3.815391,-3.8252964,-3.837492,-3.8300943,-3.8308463,-3.847746,-3.8231502,-3.4459403,-3.7275496,-3.6122222,-2.721292,-3.4549627,-3.794106,-4.036632,-4.0295777,-4.029918,-3.9739585,-3.9154363,-3.0399005,-3.6979342,-3.8585372,-3.658983,-2.092801,-3.6454377,-3.8912625,-3.9762325,-3.566907,-2.3486075,-2.9575465,-3.0644913,-3.570913,-3.1576443,-3.8984122,-3.9532943,-3.9449172,-3.9004993,-3.8241239,-4.040011,-3.9886398,-2.8289082,-3.8593078,-3.94352,-3.8809204,-3.9088616,-3.5932999,-3.0828395,-3.5013094,-3.8929324,-3.961738,-3.9048858,-3.8895898,-3.9194012,-3.8292747,-3.8376784,-3.7494206,-3.84382,-3.9931798,-3.926825,-3.8421016,-3.819571,-3.7520137,-2.741197,-3.492409,-3.7978272,-3.8518114,-3.8607926,-3.8295064,-3.6702912,-3.4260483,-3.5766182,-3.8993735,-3.9627156,-3.4134095,-3.9165387,-3.98003,-3.948197,-3.9254832,-3.9522276,-4.0295014,-3.9365091,-4.0157957,-3.9640937,-3.9228168,-3.916388,-3.8222866,-3.9385824,-3.8985581,-3.8311563,-3.833908,-3.8601632,-3.7783823,-3.764326,-3.7609859,-1.9009953,-3.6795495,-3.7720246,-3.6786785,-3.5080311,-3.9098792,-4.0714874,-4.106096,-4.1967206,-4.1576276,-4.215991,-4.1661487,-4.146583,-4.119573,-4.094249,-4.073746,-3.9328437,-4.1883416,-4.2509646,-4.2090135,-4.2261147,-4.241511,-4.0929537,-4.17658,-3.9542775,-4.0902905,-4.0815463,-3.9922476,-3.9345284,-3.9842143,-2.9480717,-3.9092317,-4.073586,-3.961142,-3.9354024,-3.5666437,-3.366146,-3.603795,-4.0875134,-4.2477474,-4.3480554,-4.3644547,-4.1171403,-4.2568355,-4.235499,-3.3815722,-3.1494246,-3.5940776,-4.0771937,-4.0552754,-4.2822757,-4.3390727,-4.1729937,-4.3275237,-4.274767,-4.2663913,-4.0246053,-4.0159698,-4.2298894,-4.2362866,-3.307096,-4.1992993,-4.219202,-4.079448,-3.022686,-2.7703876,-2.8450701,-3.6115324,-4.14084,-4.2060103,-4.250165,-4.3177543,-4.008535,-2.9697266,-3.4643142,-3.709587,-3.721681,-3.9363837,-4.073038,-4.148361,-4.170631,-4.255476,-4.2683225,-4.2830405,-4.0800505,-3.811881,-3.9575534,-4.057176,-4.1874356,-4.227288,-4.190928,-4.071097,-3.7769728,-4.0526013,-4.2289553,-4.106646,-4.065558,-4.0968714,-4.02018,-3.97119,-3.8085046,-3.6305025,-2.6990523,-3.544972,-3.8323827,-3.9839768,-4.19999,-4.257928,-4.231585,-4.299688,-4.1050057,-4.1081247,-3.9563804,-3.9901776,-3.8911176,-4.0225015,-3.8624978,-3.6792967,-3.88766,-3.834466,-3.8180776,-3.8000355,-3.73986,-3.6402433,-3.6694458,-3.7635188,-3.787434,-3.6442733,-3.7289433,-3.7405634,-3.7762504,-3.765112,-3.6664064,-3.7192583,-3.537763,-3.6390073,-3.6608748,-3.6258729,-3.5850916,-3.6270308,-3.387296,-3.5812285,-3.817083,-3.7696261,-3.749599,-3.7117724,-3.6482356,-4.102652,-3.798162
+-0.7036926,-2.7259088,-3.3444214,-3.634881,-3.7775707,-3.644396,-3.7298427,-3.42885,-2.5168672,-3.8296533,-3.9592547,-3.323662,-3.7316566,-3.9147272,-3.99924,-4.051069,-3.8761039,-3.7965407,-3.9168434,-2.8791604,-3.7830472,-3.820456,-3.9507518,-4.047362,-3.9551477,-3.9792132,-3.934198,-4.160012,-4.1700478,-4.0823684,-4.0198426,-3.484658,-4.081038,-4.10243,-4.1968045,-4.2649703,-4.306734,-4.3248143,-4.094111,-4.1867795,-4.280578,-4.266161,-4.2264533,-4.2458525,-4.0847216,-4.3082657,-4.1944776,-2.3972106,-3.866705,-4.2682223,-4.3462043,-3.8493528,-4.296519,-4.331491,-4.170771,-4.360314,-4.1093554,-4.288115,-4.3958187,-4.431358,-2.6243005,-2.671829,-3.154737,-3.7083917,-3.901505,-3.9074602,-3.9975257,-3.977684,-3.990437,-4.0654655,-3.6663673,-3.851079,-2.014776,-3.6977005,-4.029364,-4.08195,-2.778014,-3.9373107,-4.0672135,-4.023478,-4.0001836,-4.042269,-4.1033626,-4.118255,-4.1250587,-4.199783,-3.323608,-2.659574,-3.852397,-4.0404267,-4.077438,-4.087832,-4.159363,-4.1731315,-4.2237153,-4.3281446,-4.3216333,-3.9385533,-3.598781,-4.0868444,-4.2386312,-4.3590555,-4.3976455,-4.459826,-4.4729824,-2.9901235,-4.068633,-4.2545056,-4.2586102,-4.2653575,-4.3136325,-4.3629575,-4.381207,-4.3943415,-4.4004993,-4.3450475,-3.0334032,-3.193685,-4.039944,-4.153382,-4.2355494,-4.2984223,-4.3338404,-4.3100266,-4.2085505,-4.2503858,-4.289327,-4.318417,-4.368114,-4.3806643,-3.320498,-3.5320992,-4.176517,-2.3738546,-3.740337,-4.120031,-4.1470346,-4.1918383,-4.217279,-4.2524304,-4.2661185,-4.188971,-4.058062,-4.0114017,-4.0836864,-2.1645403,-2.5301113,-2.7594533,-3.9739017,-4.1206546,-2.4006944,-3.760168,-3.6183999,-2.8263695,-3.817504,-4.328482,-4.301678,-4.250768,-4.2331476,-4.1866693,-2.138168,-3.895412,-3.0526204,-3.774284,-4.092402,-4.196599,-4.1364775,-4.078448,-3.9997506,-3.0637522,-2.3175192,-3.8636594,-4.0979085,-4.1049733,-4.056021,-4.054775,-4.07525,-3.8547568,-3.102213,-3.1375628,-3.9441667,-3.9302516,-3.9858532,-4.0487823,-3.9966726,-4.0088377,-4.078898,-4.0756946,-4.167198,-3.9848714,-2.377061,-3.751309,-3.956914,-4.1063404,-4.1095366,-3.9678497,-4.000522,-3.9898763,-4.002753,-3.9971118,-3.9986253,-3.986865,-3.8943543,-3.9696126,-4.1090827,-4.1818423,-4.1116166,-4.029594,-4.0261836,-3.9971166,-4.0812287,-4.1243854,-4.128004,-4.1459804,-4.184954,-3.8438535,-1.9378853,-3.6040134,-2.7845638,-2.6716883,-3.9901137,-3.8258476,-3.79774,-3.994042,-3.9912753,-3.943058,-4.015357,-4.0096507,-4.0259895,-4.0852675,-4.1682954,-4.039436,-3.949945,-4.1359515,-4.2443724,-4.17574,-4.062038,-4.102993,-3.8767133,-2.8491778,-3.8896565,-4.03694,-4.1219177,-4.158526,-4.1864715,-4.165393,-2.694072,-3.7011666,-3.9304113,-3.9898982,-3.8838134,-3.5767426,-3.4015896,-3.707786,-3.935389,-3.9409518,-3.9578133,-3.935082,-3.915564,-4.0669456,-4.030461,-3.6997423,-3.5378695,-3.9217005,-4.1127725,-3.8953214,-4.085709,-4.1308885,-4.077111,-4.158542,-4.129952,-4.1418147,-3.8810143,-3.8758564,-4.0975432,-3.840578,-3.3000045,-3.9664388,-3.933557,-4.0886436,-3.2892628,-3.3927832,-3.553473,-3.9772992,-4.164246,-4.141501,-4.1642737,-3.9479442,-3.7028031,-2.4888804,-3.85569,-3.7415056,-3.7666368,-4.0529647,-4.2072916,-4.2672787,-4.1860375,-4.2301373,-4.20996,-4.2092853,-4.1138325,-3.9654994,-4.0265145,-4.082332,-4.1266727,-4.159405,-4.1885967,-4.1267943,-4.107466,-4.1967416,-4.318484,-4.2478642,-4.089891,-4.1431994,-4.1080728,-4.200723,-4.1721654,-3.9556637,-2.6989822,-3.3764606,-3.7138462,-3.8731437,-4.082874,-4.116635,-4.066906,-4.0052776,-3.9945955,-4.067099,-3.9959178,-3.9859195,-4.0203876,-4.1905065,-4.104949,-4.104113,-4.106687,-4.0745873,-4.132993,-4.226701,-4.217729,-4.231398,-4.0842767,-4.1407266,-4.2086587,-4.13149,-4.1595473,-2.4581523,-3.9626021,-4.065587,-4.1266274,-4.217234,-4.118654,-4.063207,-4.132176,-4.147399,-4.145752,-4.1013656,-4.0375834,-3.7558517,-4.01767,-4.1265798,-4.099915,-4.0156574,-3.5259004,-4.087557,-4.099959
+-0.4521696,-1.2473674,-1.7562664,-1.9058325,-2.1197205,-2.130785,-2.312428,-2.473615,-2.5780625,-2.729543,-2.6427164,-2.7156587,-2.7614145,-2.913293,-2.982353,-2.9250712,-2.6399686,-2.7669928,-2.8661299,-3.2807055,-3.403525,-3.3957763,-3.3024213,-3.410887,-3.273274,-3.1903508,-3.1927447,-3.192324,-3.2548552,-3.3041756,-3.39561,-3.474626,-3.5397687,-3.5569546,-3.4846423,-3.4410825,-3.4652147,-3.6325657,-3.4032001,-3.6133943,-3.6585863,-3.7096362,-3.7344418,-3.814035,-3.7474008,-2.327845,-3.4231815,-3.1733046,-2.2037463,-3.443346,-3.8821921,-3.9764266,-3.7047462,-3.9138002,-3.5471854,-3.649256,-3.5866332,-3.6241398,-3.7519288,-3.7105765,-2.7588978,-3.145631,-2.2424383,-3.2650511,-3.6778557,-3.7571716,-3.907361,-3.957211,-4.0304418,-4.052915,-3.961841,-1.7127173,-3.5332127,-3.9954944,-4.0586953,-4.0778074,-2.2646437,-3.7046475,-3.9813375,-4.04678,-4.0611825,-4.0444837,-4.0870566,-4.051687,-3.999556,-3.9849734,-2.9604018,-2.1258767,-3.6149297,-3.8458495,-3.9759173,-4.0224767,-3.0428498,-3.2892995,-3.7409482,-3.9698095,-4.032024,-2.9870448,-3.5257583,-3.9118962,-4.027986,-3.8155417,-3.9092941,-4.0836554,-4.0988126,-4.1317124,-4.132692,-4.1664243,-4.168616,-4.1590633,-4.1563854,-4.155881,-4.129373,-4.1205993,-4.1135554,-4.079803,-2.9959447,-2.5503454,-3.740419,-3.8942618,-3.9851289,-4.052773,-4.0582466,-3.6644247,-3.9195495,-4.027497,-4.0630093,-4.075727,-4.0872,-4.064178,-4.0702333,-2.6233358,-3.558942,-3.8394094,-1.4601581,-3.5795135,-3.7439814,-3.8441253,-3.913566,-2.7540526,-3.4082391,-3.7136436,-4.016591,-4.0130343,-2.9330938,-3.7411447,-3.0945327,-2.404191,-3.1534107,-3.610643,-2.8055477,-3.3957472,-3.184908,-3.6603527,-4.0649943,-4.119683,-4.107516,-4.0682397,-4.065781,-4.0057197,-4.05123,-4.0588803,-2.302751,-3.5826573,-2.7393517,-3.3822303,-3.8693285,-4.0160356,-4.0261245,-4.0224133,-4.0271087,-4.012688,-4.0342793,-3.9728618,-3.9277081,-3.9262815,-3.6861186,-1.8970668,-2.6609354,-3.2627819,-3.6792555,-3.8144588,-4.0265145,-4.2282515,-4.1057696,-4.0018144,-3.3481646,-3.9691682,-4.089229,-4.024468,-3.1033459,-3.7902093,-3.9840932,-4.0790763,-4.1052957,-4.039144,-3.9314685,-3.8169694,-3.8358798,-3.8375058,-3.8639436,-3.818297,-3.7530184,-3.7683563,-3.8623786,-3.897759,-3.721932,-3.585363,-3.490094,-3.5696201,-3.5763578,-3.6134086,-3.6257737,-3.5758686,-3.6369987,-3.5370812,-3.3276112,-3.383305,-3.3593674,-1.707958,-3.3089473,-3.581945,-3.5862584,-3.713985,-3.8109355,-3.8382268,-3.8862686,-3.9041324,-3.9424624,-3.9586349,-3.9218287,-3.7902017,-3.88454,-3.8996482,-3.837501,-3.845098,-3.6881866,-3.7703567,-3.4872212,-3.5314035,-3.7041926,-3.6062772,-3.7215853,-3.7098994,-3.66683,-3.620679,-3.1802037,-3.2698622,-3.1977663,-3.5676477,-3.7083344,-3.8736362,-3.953063,-3.7524567,-3.6150956,-3.692225,-3.8015828,-3.7298512,-3.658181,-3.5931857,-3.6282105,-3.677721,-3.819757,-3.7263842,-3.7469945,-3.6273077,-3.5956988,-3.441835,-3.3294525,-3.330552,-3.4518147,-3.520773,-3.5768538,-3.080749,-3.3891926,-3.1321054,-3.0079775,-3.4805489,-3.705213,-3.6957197,-3.755197,-3.7149,-3.6551814,-3.6012092,-3.5246754,-3.4643838,-3.4058228,-3.3467436,-3.374146,-1.9628882,-3.3437088,-3.4360418,-3.7086234,-3.647713,-3.6666613,-3.684274,-3.570227,-3.5554352,-3.6416836,-3.6479614,-3.6495266,-3.8006997,-3.6362054,-3.6087527,-3.5007684,-3.4506526,-3.4483674,-3.4521916,-3.474653,-3.4404783,-3.4242773,-3.4153876,-3.3488421,-3.3881786,-3.3929985,-3.3512318,-3.3353722,-3.2500625,-3.3200927,-2.149756,-3.2518606,-3.511743,-3.4940684,-3.5620348,-3.4169095,-3.353411,-3.491004,-3.581933,-3.5246053,-3.4591622,-3.4459262,-3.4319367,-3.4732933,-3.4287505,-3.4578652,-3.3889134,-3.3954816,-3.39853,-3.2758968,-3.3334203,-3.3388603,-3.4021096,-3.4637792,-3.3774042,-3.4229393,-3.350843,-3.4238286,-3.4401135,-3.4598908,-3.4063375,-3.4192677,-3.4126866,-3.435934,-3.4638705,-3.497146,-3.5131338,-3.455284,-3.1662056,-3.4695137,-3.4391685,-3.4627132,-3.5371194,-2.4438524,-3.2927108,-3.1865869
+-1.0611846,-1.4939954,-1.8676462,-2.0037167,-2.125879,-2.2991896,-2.451951,-2.5340095,-2.7106771,-2.9211173,-2.8779593,-2.9083054,-2.9506822,-3.1045918,-3.176625,-3.221228,-3.177906,-3.143273,-3.193568,-3.4037027,-3.4490767,-3.3705363,-3.3989706,-3.5189576,-3.4590096,-3.321214,-3.3177955,-3.4583077,-3.5095572,-3.581398,-3.747778,-3.6431065,-3.778977,-3.8001056,-3.740706,-3.7346363,-3.76867,-3.743878,-3.7280354,-3.865888,-3.889577,-3.924653,-3.8380618,-3.630035,-2.9036288,-3.5419493,-3.45914,-3.41849,-2.958486,-4.11188,-4.285844,-4.340125,-4.275864,-4.098863,-4.0044208,-3.2202737,-3.5481734,-3.7742553,-4.1193953,-3.2005377,-2.7766876,-3.6689634,-3.3037033,-3.958826,-4.1394467,-4.171068,-4.1748147,-4.240007,-4.272448,-4.3417916,-4.224937,-2.2672942,-3.9034805,-4.2248516,-4.2859473,-4.1810746,-4.1824775,-4.412071,-4.4494505,-3.5763402,-4.130972,-4.3769774,-4.471288,-4.4932017,-4.519302,-3.9283123,-2.4455488,-2.7186923,-4.0739446,-4.1022897,-4.499842,-4.384525,-4.2503924,-4.2619042,-4.4357085,-4.5317216,-4.5644307,-4.577716,-4.552175,-4.0183864,-4.425271,-4.541138,-4.59398,-4.6281486,-4.4056354,-4.4932947,-4.5562596,-4.630598,-4.6371527,-4.636865,-4.6304884,-4.616919,-4.5955296,-4.5834026,-4.576467,-4.574203,-4.2658844,-2.6001043,-4.0221,-4.2978525,-4.447252,-4.502169,-4.5522275,-4.5562453,-4.5936694,-4.57877,-4.5875373,-4.5853443,-4.5834565,-4.2530007,-2.349691,-2.9282126,-3.0185359,-4.002175,-2.463037,-4.076573,-4.330073,-4.360148,-3.9189086,-3.1336346,-3.3359337,-4.2477984,-4.4492965,-3.159429,-4.367202,-4.1157393,-3.705257,-3.4474125,-3.498055,-4.2168536,-3.8154101,-4.414597,-4.6380725,-4.6186852,-4.2665353,-3.4368868,-4.238195,-4.5593777,-4.5440397,-4.561416,-4.577927,-4.3505015,-3.2978072,-4.359534,-4.081341,-3.5022192,-4.4882164,-4.5647388,-4.6189656,-4.5176115,-4.6559873,-4.6251364,-4.6068454,-4.521954,-4.5093617,-4.5358405,-4.10675,-2.5494404,-3.398166,-4.147907,-4.389538,-4.2980275,-4.386875,-4.372976,-4.391386,-4.4302573,-3.8538413,-4.442421,-4.504253,-4.338857,-4.276139,-4.401845,-4.3754773,-4.3920145,-4.3780317,-4.3609567,-4.3291335,-4.317635,-4.3238435,-4.3303256,-4.327807,-4.3179717,-4.3030562,-4.2292523,-4.3062186,-4.399316,-4.3162837,-4.1290903,-3.7086315,-4.0851455,-4.210221,-4.2911983,-4.281944,-4.2559495,-4.2711167,-4.2423615,-4.130342,-3.4553874,-3.9366431,-4.0005174,-4.0267863,-3.9983582,-3.8293753,-4.114265,-3.9513202,-4.377237,-4.4492555,-4.4604335,-4.416124,-4.4075246,-4.36999,-4.3108206,-4.244731,-4.326635,-4.3009095,-4.3294024,-4.2275243,-4.250996,-4.2034287,-4.192391,-4.179294,-4.0848384,-4.063639,-4.162659,-4.2392287,-4.2525973,-4.1081495,-2.6253052,-3.401446,-4.012815,-4.291534,-4.3403883,-4.2818904,-4.431935,-4.4052963,-4.374393,-4.3898535,-4.3195043,-4.2644877,-4.243687,-4.2923007,-4.2101884,-4.3403783,-4.3806586,-4.3965607,-4.2678566,-4.2188406,-3.8090115,-3.9623322,-4.1007385,-4.319255,-4.335037,-4.320023,-3.9195032,-4.0528693,-4.19311,-4.097695,-4.1817985,-4.278573,-4.276592,-4.155044,-4.25709,-4.360006,-4.342195,-4.2752566,-4.1821623,-4.099879,-4.0610476,-4.0110564,-3.1906586,-3.7389874,-4.090258,-4.2599754,-4.1432967,-4.143127,-4.1269107,-3.4100094,-3.9471717,-4.0321445,-4.0620065,-4.1839566,-4.2729473,-4.200416,-4.292168,-4.191221,-4.066608,-3.9957376,-4.0990667,-4.165601,-4.1482415,-4.1489387,-4.1465945,-3.9203353,-3.987287,-4.089585,-4.1622367,-4.175046,-4.057328,-4.0199227,-2.097622,-3.5752838,-3.8853016,-3.9591675,-4.0430784,-3.6459174,-3.7513127,-4.031946,-4.1460066,-4.019128,-3.8930068,-3.9366665,-4.070185,-4.0953193,-4.053122,-4.104609,-4.121531,-4.189681,-4.060526,-4.0702243,-4.2253456,-4.222175,-4.2321744,-4.2576747,-4.2079434,-4.197344,-4.1862187,-4.2156177,-4.2039313,-4.242825,-4.2213645,-4.180866,-4.165608,-4.181332,-4.187536,-4.1896243,-4.1457453,-4.100189,-3.8041997,-3.8731928,-3.8695664,-3.926149,-4.0974965,-3.6888418,-3.9240165,-3.77695
+-1.1099961,-1.4290495,-1.8489351,-2.0124424,-2.1095665,-2.2186966,-2.35604,-2.4154866,-2.3272665,-2.733808,-2.5703716,-2.677308,-2.749318,-2.9607491,-3.053864,-3.1133733,-3.1120477,-3.0669913,-3.123825,-2.585732,-3.481367,-3.424381,-2.8605201,-3.836041,-4.0879025,-3.9870105,-3.936243,-4.0548134,-3.9397798,-3.9861946,-4.027495,-3.9455066,-3.9844856,-3.997737,-4.015973,-3.9104261,-3.9815202,-3.6858337,-3.6078608,-3.8264318,-3.9168863,-3.891533,-3.7560792,-3.2258725,-2.510938,-3.4861434,-4.1185584,-4.2930646,-4.393644,-4.5524135,-4.463797,-4.457721,-4.014917,-3.1721916,-4.226331,-4.3075647,-4.0097957,-4.2870555,-4.3074975,-3.524222,-3.6875215,-3.993998,-3.7172875,-4.31019,-4.370161,-4.4028153,-4.452486,-4.4459653,-4.423596,-4.4119697,-4.23316,-3.9038062,-4.153467,-4.410311,-4.385366,-4.2841935,-4.2454762,-4.292356,-4.516982,-4.4579577,-3.980142,-4.335688,-4.402285,-4.4033093,-4.3869934,-4.2889295,-3.043415,-3.2309823,-3.9605322,-3.9234357,-4.4558477,-4.350503,-4.596926,-4.565643,-4.466368,-4.550674,-4.492149,-4.4581323,-4.411759,-3.9922175,-4.250481,-4.3793893,-4.391254,-4.365018,-4.304984,-4.239348,-4.3614388,-4.308474,-4.233743,-4.265166,-4.1620097,-4.1429887,-4.125797,-4.1123843,-4.0933294,-3.9054675,-3.7315469,-3.6551545,-3.837253,-3.1228676,-3.8185039,-4.3113604,-4.4078393,-4.4055305,-4.3760915,-4.3616614,-4.3271794,-4.2868614,-4.2615666,-4.0945916,-3.8557158,-3.4120123,-3.296709,-3.7752833,-3.4667747,-3.267747,-4.1588407,-4.2945247,-4.503481,-3.3126347,-3.3816736,-4.0845056,-4.080011,-3.2545052,-3.9727435,-3.9116778,-3.7140975,-3.9251804,-3.7262053,-3.8263688,-3.90976,-4.260436,-4.403811,-4.4135385,-4.087709,-3.526009,-4.1137204,-4.2805996,-4.106722,-4.514403,-4.667994,-4.622036,-4.201671,-3.2181678,-4.1729608,-3.9482255,-4.3869853,-4.5234346,-4.727056,-4.7740984,-4.8206525,-4.833914,-4.807535,-4.7580614,-4.737712,-4.746849,-4.245321,-2.8189216,-3.3275254,-4.1755433,-4.415226,-4.296458,-4.369115,-3.584151,-4.2680745,-4.572721,-4.404472,-4.717126,-4.6988144,-3.9853654,-4.3833814,-4.60862,-4.796491,-4.857137,-4.854011,-4.8135514,-4.7559266,-4.7196927,-4.738736,-4.7527804,-4.7409496,-4.64469,-4.4127345,-4.355785,-4.5803504,-4.528038,-4.558463,-4.391545,-4.365487,-4.502669,-4.5226827,-4.5253468,-4.4933496,-4.4748464,-4.461818,-4.283535,-4.124331,-2.7432714,-4.0075,-4.2467604,-4.441623,-4.3421435,-4.459976,-3.9686103,-4.3392925,-4.321942,-4.580937,-4.6985397,-4.787124,-4.8330092,-4.810802,-4.8282814,-4.668141,-4.6693397,-4.6494374,-4.6513834,-4.557791,-4.434423,-4.3045907,-4.3241944,-4.2635074,-4.212257,-4.2620225,-4.4574404,-4.450621,-4.3119845,-3.0416873,-3.3756666,-4.2000184,-4.362784,-4.5075545,-4.366043,-4.408399,-4.5394626,-4.490495,-4.624514,-4.728679,-4.7327123,-4.655295,-4.646742,-4.581377,-4.5893083,-4.566111,-4.55459,-4.618923,-4.5307784,-4.434326,-4.2631392,-4.411587,-4.5174823,-4.543054,-4.578961,-4.58067,-4.268738,-4.3909783,-4.464152,-4.355086,-4.4792285,-4.527118,-4.4873824,-4.4539485,-4.4276624,-4.5890393,-4.538293,-4.464186,-4.407421,-4.392876,-4.315536,-4.088822,-4.0387793,-4.2669024,-4.315869,-4.3439646,-4.195292,-4.2349305,-3.8850312,-3.7550359,-4.076059,-3.961197,-4.063428,-4.208523,-4.2494626,-4.084852,-4.3991923,-4.386126,-4.232078,-4.169736,-4.2407203,-4.1261373,-4.074631,-4.212236,-4.187111,-4.019312,-4.0473514,-4.1216035,-4.1740127,-4.1498675,-4.1607757,-3.4956112,-3.7799697,-4.090888,-3.2550473,-3.939238,-4.1052737,-4.081614,-3.7106423,-4.2902865,-4.385944,-4.282132,-4.2141337,-4.377568,-4.3497825,-4.180617,-4.195051,-4.3313146,-4.2860875,-4.2549157,-2.868384,-4.10984,-4.4211736,-4.5310655,-4.443649,-4.508844,-4.523377,-4.44949,-4.359069,-4.330179,-4.342754,-4.2933946,-4.327703,-4.3177657,-4.295403,-4.2586055,-4.2717876,-4.265452,-4.1933846,-4.111844,-3.9836364,-4.008823,-3.9554582,-4.055463,-4.0588136,-3.675559,-3.8337488,-3.6531172
+-1.0780368,-1.4605203,-1.8265429,-2.0146635,-2.1266847,-2.1499119,-2.253923,-2.2981768,-1.9593613,-2.6047735,-2.6548667,-2.7084105,-2.688574,-2.7860308,-2.8416467,-2.9577324,-3.0112271,-2.9463634,-2.9119806,-2.7195604,-3.013492,-3.247632,-2.6633253,-2.748271,-3.849227,-3.7939658,-3.8156905,-3.9146466,-3.8421125,-3.875492,-3.9475627,-3.826344,-3.7563114,-3.778585,-3.831757,-3.8305745,-3.8465948,-3.806219,-3.0795536,-3.7984166,-3.7885575,-3.757215,-3.753983,-2.5019212,-2.5880437,-3.5579553,-4.0817885,-4.1671376,-4.243615,-4.2644753,-4.2701383,-4.277928,-4.1607966,-4.1533446,-4.136725,-4.074494,-3.8505397,-3.9123964,-3.9061599,-3.7239256,-3.7226357,-3.447473,-3.6669018,-4.031945,-4.0042834,-3.9924192,-4.0224795,-4.01272,-3.970345,-3.911631,-3.7596583,-3.9105892,-3.8113637,-3.788961,-3.7395983,-3.7191396,-3.6477487,-3.4839895,-3.7538476,-3.7643108,-3.7035985,-3.6429937,-3.6747658,-3.6861467,-3.6552758,-3.628108,-3.5451047,-2.7208002,-3.2490735,-3.7378125,-3.791594,-3.79908,-3.612815,-3.794888,-3.8428082,-3.8244534,-3.8182368,-3.8031487,-3.7974758,-2.6767771,-3.5300324,-3.917552,-4.0877748,-4.1055474,-4.059255,-4.027495,-4.0047045,-3.9707508,-3.9475384,-3.9315038,-3.842936,-3.8395972,-3.825727,-3.7909436,-3.7749577,-3.7451515,-3.7027698,-3.205869,-3.7694826,-2.9868844,-3.7137408,-3.9285426,-4.0530906,-4.0308585,-4.021175,-4.00658,-3.9828773,-3.9466915,-3.9406543,-3.8272243,-3.9501433,-3.8061662,-3.1547656,-2.1861928,-3.724609,-3.725224,-3.1461072,-3.9781818,-4.217318,-4.2760086,-3.762442,-4.039309,-3.3141532,-3.9946675,-4.11826,-4.0934625,-4.160253,-3.5288544,-4.334187,-4.0418515,-3.510746,-4.0010614,-4.0897884,-4.564798,-3.8233004,-4.3711677,-4.5074983,-4.5924306,-3.9836583,-4.532305,-4.614773,-4.6274467,-4.192224,-3.9330363,-4.542338,-3.8055558,-4.41788,-4.525991,-4.6037793,-4.593323,-4.5767817,-4.5333247,-4.472921,-4.4365606,-4.4249425,-4.427284,-3.2408063,-3.135693,-2.9103682,-3.842557,-4.2004447,-3.9715066,-4.216462,-3.4249413,-3.980328,-4.25672,-4.5337567,-4.6613493,-4.6498103,-4.536656,-4.3808093,-4.599419,-4.6434097,-4.6702933,-4.640571,-4.618688,-4.612516,-4.587795,-4.5792165,-4.5931935,-4.5973134,-4.5339036,-4.221107,-3.6283026,-4.4129047,-4.389129,-4.51255,-4.4736733,-4.4771085,-4.4322577,-4.4272466,-4.467091,-4.4497075,-4.447931,-4.4631696,-4.4405675,-4.3868623,-3.0209885,-4.1040134,-4.0749226,-4.4311595,-4.11916,-4.222058,-4.1086607,-3.601485,-4.2242312,-4.5048804,-4.6730933,-4.711676,-4.7692294,-4.753139,-4.766261,-4.4813623,-4.545119,-4.573464,-4.578214,-4.475891,-4.428472,-4.3904586,-4.3678164,-4.426137,-4.374203,-4.239042,-4.374719,-4.4632387,-4.4427733,-3.0884266,-3.1592999,-3.7840042,-4.228476,-4.474673,-4.3797116,-4.4556537,-4.6220164,-4.6335235,-4.7467313,-4.7856603,-4.7901073,-4.714301,-4.7035613,-4.5934224,-4.569711,-4.4913874,-4.529143,-4.584644,-4.513858,-4.4711833,-4.4859138,-4.430378,-4.4693666,-4.432557,-4.420156,-4.397841,-4.2698617,-4.468329,-4.297253,-4.2495737,-4.3443084,-4.380442,-4.378849,-4.341695,-4.3057423,-4.43846,-4.429904,-4.3470736,-4.2833543,-4.265474,-4.2855554,-4.203025,-4.2388244,-4.284549,-4.186544,-4.222793,-4.1779304,-4.1264873,-3.7884917,-3.7729135,-3.9826717,-3.9030547,-3.9922862,-4.063914,-4.1511025,-4.1097417,-4.297414,-4.2703314,-4.1780505,-4.0865045,-4.167747,-4.090306,-4.055564,-4.0969796,-4.128636,-3.9257164,-3.995151,-4.1177216,-4.1614385,-4.1506686,-4.167084,-4.0136223,-4.110294,-4.140636,-3.7531133,-3.5981224,-4.0941515,-4.1468625,-4.1146407,-4.1574664,-4.099996,-4.007332,-4.0505266,-4.2440195,-4.2665772,-4.113627,-4.150348,-4.211636,-4.2061505,-4.1699753,-2.8668773,-4.0037127,-4.1932673,-4.332253,-4.2018266,-4.0744247,-4.301509,-4.222754,-4.1056814,-4.1906295,-4.1591525,-4.204728,-4.178363,-4.1905637,-4.127925,-4.0832334,-4.095343,-4.1021495,-4.078279,-4.0486026,-4.047518,-4.0202317,-3.9961896,-4.0064354,-4.0380383,-3.7734742,-3.9840064,-3.8178468
+-1.0086362,-1.4343054,-1.726932,-1.9329872,-2.10293,-2.208373,-2.3512733,-2.4959934,-2.582164,-2.7541692,-2.7491145,-2.8809133,-2.9168682,-2.989565,-3.0390062,-3.026979,-3.0682576,-3.1481369,-3.2229366,-3.323289,-3.3136296,-2.5182571,-3.3634474,-3.614423,-3.734487,-3.6583986,-3.6484685,-3.7178998,-3.746045,-3.7729497,-3.8042483,-3.8416963,-3.837668,-3.8440752,-3.8170362,-3.8445106,-3.9130502,-3.9231906,-3.789394,-3.8913512,-3.8589168,-3.8520093,-3.8854613,-2.1713223,-3.0495098,-3.3163762,-4.055285,-4.240816,-4.1886,-4.0937505,-4.070518,-4.029981,-4.02459,-3.9700236,-4.043019,-4.088136,-3.9849916,-3.9768958,-4.031387,-4.09736,-4.032743,-3.9930062,-2.9799175,-3.8818736,-3.9714446,-4.0168614,-3.9844966,-3.985712,-3.9959712,-4.006869,-4.027891,-3.7364287,-4.0430436,-4.104259,-4.105309,-4.1186886,-4.1160703,-4.0596366,-4.1191664,-4.103584,-4.0708623,-4.026177,-4.116072,-4.1079226,-4.0597835,-4.0885835,-4.0901484,-4.1202855,-4.135672,-4.1131673,-4.1479106,-3.43816,-2.1681767,-3.3260612,-4.199895,-4.479235,-4.485695,-4.430821,-4.348521,-4.295458,-2.4406686,-3.7764668,-4.343661,-4.500566,-4.467854,-4.3650546,-4.2609496,-4.212427,-4.189523,-4.160872,-4.1185427,-4.096927,-4.0780034,-4.050429,-4.14518,-4.117574,-4.0875864,-4.0051436,-2.5834346,-2.6481438,-2.8836055,-3.4303126,-4.2602925,-4.5762086,-4.5947204,-4.5693746,-4.518617,-4.456507,-4.4120784,-4.257279,-4.41221,-4.1975126,-2.7663972,-2.9558353,-3.9294043,-3.4905622,-2.9163423,-3.2571619,-3.2467985,-3.9461622,-3.1137428,-3.6409092,-3.0335102,-3.677595,-3.8726172,-4.446812,-4.1269174,-2.8025322,-3.2695136,-3.473428,-4.1356993,-3.6980753,-4.1448884,-4.4932437,-4.7749357,-4.7810216,-4.7381682,-4.6858687,-3.0713506,-4.170335,-4.576754,-4.622602,-4.5920315,-4.550466,-4.5169473,-4.505299,-4.378981,-4.456439,-4.446881,-4.4021254,-4.3772454,-4.3399205,-4.2933097,-4.2522435,-4.2310166,-4.2600465,-2.5675218,-3.867288,-2.766593,-3.069796,-3.9815364,-4.128696,-4.0067143,-3.2981071,-4.1468754,-4.5821567,-4.7424755,-4.7624183,-4.4654574,-4.5489163,-4.574896,-4.5239544,-4.4640627,-4.422301,-4.363981,-4.32391,-4.3093657,-4.2888274,-4.256968,-4.23303,-4.2381845,-4.212396,-3.7938356,-4.118565,-4.238568,-4.314128,-4.2374606,-4.1844535,-4.1402392,-4.0968595,-4.0663104,-4.0517125,-4.040048,-4.031558,-4.042249,-4.031511,-4.027534,-4.006128,-4.001514,-3.9363065,-4.0460954,-3.8296447,-3.9657621,-3.29159,-3.9538689,-4.117765,-3.882772,-4.2094254,-4.323132,-4.324076,-4.270515,-4.1856174,-4.1105185,-4.0440564,-4.0468745,-4.0752625,-4.038344,-4.007154,-4.004659,-3.9878087,-3.9780931,-3.9733706,-3.9506016,-3.9030275,-3.9070992,-3.96455,-3.874331,-2.7031531,-3.9498973,-4.2949133,-4.325169,-4.328778,-4.2654767,-4.213454,-4.217791,-4.286711,-4.263514,-4.223574,-4.203927,-4.178476,-4.1535993,-4.106625,-4.058066,-4.0609913,-4.0492334,-4.048221,-4.0472207,-4.0593257,-4.05179,-4.043802,-4.0231056,-4.017101,-4.0264926,-3.9831586,-4.0661297,-3.9849386,-3.9221654,-3.9205503,-3.9338932,-3.9332685,-3.9415731,-3.9205546,-3.9534054,-3.971363,-3.9663858,-3.9600558,-3.940031,-3.9707284,-3.9818358,-3.9725022,-3.9515452,-3.9508739,-3.894853,-3.852426,-3.893622,-3.858451,-3.8078465,-3.8556228,-3.8979764,-3.9092703,-3.8422775,-3.8918552,-3.9421258,-3.948772,-3.9405093,-3.8719015,-3.8406777,-3.856153,-3.8848252,-3.9201722,-3.9105716,-3.8766313,-3.8221507,-3.8198705,-3.8307157,-3.8671746,-3.8717556,-3.8559604,-3.894195,-3.8585052,-3.8372731,-3.8741565,-3.865744,-4.0337753,-3.9844737,-3.8087182,-3.8444185,-3.8324819,-3.8298001,-3.8005748,-3.819603,-3.8674083,-3.8514204,-3.8401017,-3.8219814,-3.8601918,-3.857099,-3.4417179,-3.9281697,-4.0262218,-3.9922843,-4.0279593,-2.9333532,-3.9223466,-4.164124,-4.1154675,-4.2332606,-4.2322707,-4.1383224,-4.073541,-4.0465703,-4.0230746,-4.0069785,-3.981092,-3.9566922,-3.9516644,-3.9789948,-3.9169712,-3.8911452,-3.9165673,-3.907063,-3.931602,-3.8772025,-3.8864517,-3.9374094
+-0.41893506,-0.6969109,-0.7618354,-0.80861896,-1.2253449,-1.4445848,-1.0187237,-1.0613928,-1.1285479,-0.7897646,-1.0751276,-0.94664747,0.10535115,0.6273257,-1.1295235,-1.8669214,-2.0665817,-2.5691042,-2.9380198,-3.09944,-3.1882312,-3.2255044,-3.2971053,-3.39534,-3.2512748,-3.2401078,-3.3674128,-3.3945704,-3.4026003,-3.4356675,-3.4507518,-3.4837947,-3.357789,-3.2958684,-3.087708,-3.025758,-3.1024039,-3.220594,-3.1137652,-2.598963,-2.6752791,-3.0061336,-3.344267,-3.3040795,-3.3177204,-3.5349536,-3.475338,-3.0850534,-3.2250862,-3.233959,-3.1541965,-2.8272777,-3.3006945,-3.5012128,-2.6351714,-2.1560955,-2.4880471,-3.3562522,-3.5191016,-3.7490354,-2.3847566,-3.1753337,-3.4999497,-3.208528,-3.492867,-3.6006792,-3.5763772,-3.696064,-3.7601027,-3.672408,-3.5325012,-3.7932162,-2.2708778,-3.236124,-3.4058123,-3.5930223,-3.8003564,-3.8491888,-3.9178424,-2.4141378,-3.282153,-3.6396022,-2.2829752,-3.2198238,-3.6561239,-2.8360684,-3.2282462,-3.4908407,-3.6415527,-3.5726314,-3.7030506,-3.790854,-3.793262,-2.4577725,-3.339279,-3.3482275,-3.7196536,-2.7268248,-3.5076623,-3.329023,-3.6452878,-3.134368,-3.4696803,-3.3621488,-3.560956,-3.5796611,-3.6661525,-3.5185196,-3.715364,-3.6387043,-3.343771,-3.547186,-3.6444619,-1.9401193,-3.0328703,-3.4433236,-3.594046,-3.677347,-3.742025,-3.6657324,-3.634303,-3.280765,-2.7544022,-3.3555002,-3.3962429,-3.3365612,-3.696065,-3.7539182,-3.600679,-3.162492,-3.4752312,-3.556259,-3.562059,-3.4940817,-3.681322,-3.4789395,-2.9910283,-3.403267,-3.5078955,-3.021972,-3.248574,-3.6594217,-3.6307313,-3.563156,-3.0044098,-3.2652602,-3.354071,-3.4418633,-3.6091166,-3.3797727,-3.453226,-3.6475167,-3.7309666,-3.5733106,-3.4082778,-3.3103986,-3.5548623,-3.204036,-3.2202237,-2.6335232,-2.9324584,-3.233821,-3.514982,-3.6104484,-3.4815485,-3.682631,-3.698804,-3.742743,-3.4512208,-3.5427387,-3.2109575,-3.337629,-3.551285,-3.555498,-3.6650932,-2.4251869,-2.6837678,-2.528778,-2.8469799,-3.3651114,-3.5356805,-3.5013218,-3.3416042,-3.4578743,-3.1964235,-2.4434636,-2.220868,-3.2127554,-3.3114321,-3.3072982,-3.255042,-3.4404693,-3.4644642,-3.4034016,-3.1552024,-3.318646,-3.2813091,-3.3964212,-2.907874,-3.2924728,-3.2132783,-3.2746372,-3.4951448,-3.5030608,-3.3480716,-2.7048423,-3.1304865,-3.464967,-3.4307542,-3.3734896,-3.4482024,-3.426025,-3.5036235,-2.5714488,-3.1753726,-3.2400284,-3.4083579,-3.3557272,-3.4090023,-3.4231145,-3.3649163,-3.4594913,-3.429588,-3.377504,-3.429309,-3.444184,-3.5367017,-3.6059275,-3.5918117,-3.5737062,-3.397298,-3.3865192,-3.2088914,-3.0852056,-3.0397723,-3.0991664,-3.0683765,-3.1051192,-3.0231571,-3.0041826,-2.9785023,-2.7186446,-2.6889634,-2.6041944,-2.62015,-2.6915426,-2.6555524,-2.665237,-2.6788416,-2.5903718,-2.646284,-2.575067,-2.582682,-2.6185198,-2.6762068,-2.7469075,-2.7755644,-2.7314365,-2.688836,-2.718101,-2.7125483,-2.7335267,-2.7451577,-2.7175822,-2.7634566,-2.7788234,-2.8216782,-2.881237,-2.8549192,-2.6414878,-2.7792811,-2.8728964,-2.902263,-2.8929663,-2.9147432,-2.8897362,-2.9152706,-2.9095304,-2.9029627,-2.874736,-2.8217204,-2.746243,-2.754133,-2.6742089,-2.7223554,-2.6733272,-2.6518168,-2.6144738,-2.5790339,-2.5580542,-2.5748994,-2.5812685,-2.5817847,-2.5772333,-2.651219,-2.6274786,-2.6549659,-2.588792,-2.680054,-2.6920748,-2.668653,-2.63662,-2.6277165,-2.6275978,-2.5396547,-2.4616644,-2.4277601,-2.3811877,-2.3508558,-2.3680587,-2.3615954,-2.3198247,-2.3222995,-2.3082113,-2.3038368,-2.319035,-2.3274126,-2.3104982,-2.3255496,-2.277561,-2.29924,-2.2830403,-2.1565933,-2.1365504,-2.175314,-2.257797,-2.2175717,-2.1374564,-2.202672,-2.3770256,-2.4023,-2.428981,-2.3804407,-2.3711395,-2.340232,-2.262419,-2.2457557,-2.185546,-2.085308,-2.2364368,-2.1420064,-2.0713882,-2.0806046,-2.1068988,-2.161078,-2.2077522,-2.0961473,-2.0750809,-2.0350902,-2.0917938,-2.0035439,-2.0379555,-1.8316474,-1.8098619,-1.9598205,-2.2064185,-1.986275,-1.8982325,-1.9438801,-1.4962528,-1.4467912,-1.4976707,-1.5416808,-1.0622506,-0.49693978
+-0.09798622,-0.14692834,-0.0943414,-0.37771243,-0.7782847,-1.7610378,-2.361043,-2.6028423,-2.5030632,-2.6059287,-2.7191017,-2.671959,-2.9909835,-3.2021174,-2.3243763,-2.4043546,-2.8522878,-3.0392046,-3.3305695,-3.3770795,-3.4423625,-3.546978,-3.5120268,-2.1016054,-2.6401832,-3.0235257,-3.26067,-3.3455148,-3.4369237,-3.4722,-3.5374653,-3.5970967,-3.5869164,-3.5898073,-3.5221949,-3.3481293,-3.521526,-3.7091794,-3.5985796,-3.0433512,-3.3039284,-3.5209064,-3.7138658,-3.6447222,-3.7892709,-3.77696,-3.737259,-3.6468565,-3.6804037,-3.6192303,-3.5350192,-3.3308165,-3.280584,-3.863944,-2.9183908,-3.4109755,-3.3230069,-3.8311205,-3.8165183,-3.4137628,-3.0706606,-3.3681028,-3.796886,-3.4901457,-3.7363887,-3.7374969,-3.5452888,-3.700273,-3.67762,-3.5859053,-2.2519069,-3.1986566,-3.2253287,-3.8002248,-3.6910307,-3.795525,-3.7270803,-3.4461303,-3.7827125,-3.011376,-3.910231,-3.755416,-2.6331334,-3.7466478,-3.840989,-3.329352,-3.9034371,-3.729445,-3.7778745,-3.6042328,-3.6420887,-3.4840827,-2.9471154,-3.5826426,-3.7244644,-3.118472,-3.6606889,-3.711268,-3.895883,-3.764676,-3.5516443,-2.4819365,-3.376549,-3.3816018,-3.6233718,-3.607433,-2.139041,-3.3200603,-3.6045709,-3.5393856,-3.4009216,-3.4569993,-3.3617244,-2.178534,-3.248917,-3.505982,-3.4278738,-3.3509634,-3.6098354,-3.5484297,-3.352601,-3.6000986,-3.4960742,-3.5757904,-3.6690326,-3.4744718,-3.6160748,-3.6687803,-3.6958213,-3.7039294,-3.5122395,-3.3102357,-2.9501421,-3.3093266,-3.425916,-3.512712,-3.6656475,-3.6495938,-3.7773185,-1.7619979,-3.0433254,-3.436162,-3.6085443,-3.7199926,-3.6146173,-3.573092,-3.664256,-3.7669053,-3.837956,-3.9176378,-3.854464,-4.0203485,-3.7100291,-3.8023038,-3.841848,-3.8809004,-2.7773461,-3.5144167,-3.6558979,-2.6883473,-3.5167718,-3.7139115,-3.8649154,-3.9233098,-3.725772,-3.827711,-4.0144534,-2.931252,-2.800074,-3.6231647,-3.705422,-3.886673,-3.9554029,-3.470611,-3.9322338,-3.0291898,-3.5312026,-3.464773,-3.5998383,-3.8625731,-3.975799,-3.9739761,-3.9321833,-4.024307,-3.9788766,-2.7869637,-3.3983707,-3.5320694,-3.8973165,-4.1065116,-4.2162166,-4.263353,-4.1891603,-3.8431964,-3.985168,-3.935927,-4.1889205,-4.09234,-4.1211715,-4.106142,-3.9780188,-4.0338883,-4.2968526,-4.2998395,-4.195313,-4.0795283,-4.1443267,-4.325971,-4.189388,-4.1707034,-4.0815787,-4.143955,-4.295415,-3.96214,-4.0616136,-4.060881,-4.202872,-4.197984,-4.1904006,-4.1514106,-3.9804845,-4.1094937,-4.1555457,-3.9917588,-3.9535937,-4.1713066,-4.104487,-4.151336,-4.113896,-4.2178807,-4.06248,-3.887185,-3.8270912,-4.0070977,-3.8104777,-3.9375958,-3.6467924,-3.6173043,-3.6285536,-3.7380648,-3.7314925,-2.8104596,-2.2300358,-1.9444685,-2.1360617,-2.2359924,-2.280623,-2.296025,-2.351138,-2.260363,-2.3935068,-2.3297143,-2.2135048,-2.239748,-2.22638,-2.2216969,-2.249773,-2.246828,-2.240378,-2.2705162,-2.2329998,-2.272209,-2.2391763,-2.2158005,-2.2484539,-2.2050362,-2.2367077,-2.2741556,-2.2875085,-2.153288,-2.1474016,-2.142056,-2.1627815,-2.1676908,-2.1671114,-2.177692,-2.1474607,-2.1719356,-2.1879022,-2.2055051,-2.1899738,-2.187298,-2.2258186,-2.2070346,-2.2094371,-2.2110834,-2.251006,-2.2802715,-2.2640853,-2.2608838,-2.2517195,-2.2249722,-2.1228206,-2.1374898,-2.205072,-2.1475868,-2.1618767,-2.1247563,-2.1580663,-2.1566486,-2.0899668,-2.0688953,-2.0500736,-2.0140963,-1.9698534,-1.8316696,-1.9721036,-2.0229032,-2.0342312,-2.0479238,-1.9958348,-2.019795,-1.986495,-1.9867797,-2.0053282,-1.8427844,-1.8821435,-1.874013,-1.8925045,-1.8703132,-1.8694603,-1.7810502,-1.5615084,-1.6392846,-1.6000249,-1.5604548,-1.4683902,-1.4291449,-1.5129142,-1.5987535,-1.6040134,-1.6389494,-1.646507,-1.6173034,-1.6389813,-1.5516491,-1.6659236,-1.5759933,-1.4681396,-1.5395501,-1.7081268,-1.6056964,-1.6180046,-1.771101,-1.8156033,-1.8328056,-1.7389159,-1.7177188,-1.64731,-1.6144979,-1.4038599,-1.4534414,-1.04212,-1.0054772,-1.3492641,-1.5151155,-1.1995089,-1.1962667,-0.88541716,-0.40587002,0.20041263,0.59539735,1.0050731,1.225382,0.9434313
+-0.10761821,-1.1553037,-2.0619996,-2.61479,-2.7802901,-2.9654412,-3.1539483,-3.2139544,-3.1244762,-3.0559092,-3.4768796,-3.187108,-3.0726428,-3.0770807,-2.854078,-3.0182583,-3.6184497,-3.8259406,-3.6282754,-3.80086,-3.8197274,-3.9165244,-3.849782,-3.7721581,-3.3608844,-3.8458548,-3.6064358,-3.9286733,-3.9492478,-3.8363109,-3.8164191,-3.943675,-3.841332,-3.9410338,-3.966662,-3.9538064,-3.9363623,-4.0090446,-3.9346476,-3.7427006,-3.9795828,-3.8425574,-3.3018851,-3.7587662,-3.8402963,-3.803926,-3.8975916,-3.947825,-3.9212732,-3.9474425,-3.939032,-3.8870482,-3.667996,-3.8967543,-3.9077315,-4.0099483,-4.2035146,-3.7093205,-3.865924,-4.2239227,-3.8523746,-3.9335833,-4.1913657,-4.0939746,-3.9474168,-4.0662475,-4.0827193,-4.0739207,-4.1356916,-4.209178,-4.0109215,-4.0929737,-4.1787343,-4.140227,-3.0412102,-4.000119,-4.341955,-3.1584466,-3.8445663,-4.320596,-4.220203,-4.334254,-3.8486495,-4.257398,-4.4279866,-4.292844,-4.029173,-4.1858,-4.1514745,-3.9073563,-4.1231513,-4.1293883,-4.226661,-4.236655,-3.8349538,-4.125295,-4.0458975,-2.8244712,-4.048796,-3.8371572,-4.2275825,-3.2735283,-3.8598113,-4.1611476,-4.1245565,-4.1698933,-4.2110467,-4.2190185,-4.3584547,-4.4093738,-4.407532,-4.106206,-4.264796,-2.7733412,-3.8059502,-4.3840623,-3.7991986,-4.085522,-4.5083184,-4.5184693,-3.944613,-4.3751245,-4.5025067,-4.4147577,-4.4709105,-3.8448052,-4.262278,-4.46256,-4.459353,-4.374533,-4.3714333,-2.3618596,-3.9062681,-4.337436,-4.3469396,-4.4280305,-4.516415,-4.453107,-4.525743,-4.5136495,-3.5548434,-4.1893635,-4.341002,-4.4722824,-4.491525,-4.3315873,-4.3292203,-4.385642,-4.3167014,-4.3594174,-4.394192,-4.3714767,-4.3164735,-4.2168612,-4.0038323,-4.030885,-3.8937068,-3.9254045,-4.2013545,-2.3834457,-4.0605583,-4.4293714,-4.4115186,-4.482412,-4.519477,-4.367188,-4.2722545,-4.074494,-4.0478625,-4.293105,-4.3902164,-4.351091,-4.2279277,-4.288777,-4.5548625,-4.0198207,-4.246776,-4.2440996,-4.2772336,-4.3766026,-4.341515,-4.307069,-4.341974,-4.3578925,-4.303512,-3.9270153,-3.6970115,-4.03114,-4.1717844,-4.283504,-4.328161,-4.3119483,-4.2605796,-4.264624,-4.2422395,-4.2299333,-4.3261805,-4.2043033,-4.192527,-4.1182604,-4.1239095,-4.1982274,-4.248553,-4.2776885,-4.269683,-4.2542157,-4.1861014,-4.3643904,-4.3813624,-4.2865853,-4.301436,-4.295268,-4.2744946,-4.3474813,-4.205381,-4.2248616,-4.169273,-4.1930566,-4.1887426,-4.134298,-4.1500163,-4.1905866,-4.167254,-4.2471647,-4.238873,-4.3324366,-4.3827376,-4.372663,-4.3493,-4.2871375,-4.3103147,-4.454093,-4.534719,-4.4396048,-4.2963266,-4.413056,-4.3123555,-4.016229,-4.0092645,-4.077956,-4.0593343,-2.2766337,-2.467739,-2.2984214,-2.1722054,-2.263227,-2.0938582,-2.0310087,-1.955894,-1.7862344,-1.9591784,-2.078281,-2.3237307,-2.4518847,-2.489359,-2.5754557,-2.7354891,-2.833756,-2.8027778,-2.7185364,-2.8097532,-2.8217406,-2.6399298,-2.4716926,-2.473845,-2.616263,-2.7263932,-2.713798,-2.7144113,-2.5528605,-2.6900294,-2.5646362,-2.6986442,-2.5682845,-2.7718616,-2.7699208,-2.5732937,-2.7729383,-2.82862,-2.7827177,-2.7915075,-2.882074,-2.8055713,-2.7735162,-2.794129,-2.8812156,-2.9647903,-2.87107,-2.9070978,-2.8260207,-2.833203,-2.78736,-2.4281087,-2.5296211,-2.591102,-2.5574236,-2.6734776,-2.70962,-2.698567,-2.5159793,-2.5451355,-2.5677097,-2.3272705,-2.0914311,-1.8943925,-2.0101252,-2.304552,-2.5467267,-2.631823,-2.626632,-2.5320582,-2.513683,-2.5831034,-2.655838,-2.6106968,-1.9888766,-1.8142278,-2.1290193,-2.1306813,-2.1225631,-2.0479732,-1.7418351,-1.4287524,-1.5440094,-1.4322698,-1.0644336,-0.83438426,-0.8623012,-1.3060272,-1.5443072,-1.574672,-1.6185002,-1.6091754,-1.7384455,-1.6287787,-1.6456985,-1.6153622,-1.4714527,-1.2875674,-1.1590848,-1.2794433,-1.5858996,-1.6207199,-1.7375674,-1.7225568,-1.7060614,-1.6427538,-1.4237692,-1.2764161,-1.0623376,-0.8812248,-1.0340929,-0.76460475,-0.6162688,-0.9375928,-0.9311885,-0.86120707,-0.999978,-1.1069849,-1.3758922,-2.3420448,-2.9783611,-3.247321,-3.3158855,-3.415402
+0.25749418,-0.21778041,-1.1166954,-1.698843,-2.2341363,-2.6234884,-2.7879326,-2.7146637,-2.6119287,-2.7227905,-2.6518574,-2.6656897,-2.7955174,-2.7315705,-2.5761542,-1.5215139,-2.059315,-1.9499395,-2.5322104,-3.0742173,-3.2806864,-3.52315,-3.7103658,-3.5797396,-3.5430634,-3.46732,-2.8040404,-3.2091827,-3.3250246,-3.431232,-3.4336865,-3.6939373,-3.7133708,-3.763595,-3.7928004,-3.6942248,-3.566092,-3.5929208,-2.6409187,-3.4558945,-3.494007,-3.6959534,-3.6428638,-3.8325248,-3.7896113,-3.7269468,-3.634549,-3.5996752,-3.5188606,-3.2969413,-3.1892178,-3.2476184,-3.1536393,-3.3726873,-2.1027572,-3.1293044,-3.388368,-3.59478,-3.4152548,-3.3276532,-3.4175081,-3.793303,-3.8286347,-3.1566944,-3.7193608,-3.8975034,-3.9945912,-3.8556542,-3.921783,-3.9632792,-2.7019506,-3.5679781,-3.7110949,-3.8267121,-2.70266,-3.4899096,-3.900045,-4.0371866,-2.3453202,-3.4928863,-3.8608937,-4.083692,-3.6949544,-3.826192,-4.023647,-4.0264244,-4.160308,-4.1931934,-4.0132804,-3.6754205,-3.1301055,-3.6133258,-3.7270856,-3.8670583,-3.959991,-3.6842186,-3.1985757,-2.7831678,-3.4234219,-3.806078,-3.9358163,-3.8399348,-4.1645937,-4.485453,-4.479027,-3.8151917,-3.4522767,-3.470211,-3.8377504,-3.9656148,-3.9712167,-4.0376105,-3.99796,-3.9476466,-4.170558,-4.0926423,-4.102945,-3.8192964,-2.6925755,-3.1012046,-3.593202,-3.21655,-3.5404642,-3.909141,-3.071226,-3.5090277,-3.9163103,-4.001473,-4.047666,-4.127162,-3.5099607,-3.661812,-3.4741917,-3.2349164,-3.8178425,-3.9768019,-2.705264,-3.1811786,-3.6412177,-3.8143625,-3.422912,-3.9602504,-4.0027194,-4.046959,-4.112476,-4.409339,-4.6161304,-3.2479005,-3.7155232,-3.8612204,-4.006141,-4.01739,-4.0336742,-4.0558047,-3.9250197,-3.9496894,-3.9622312,-3.5042114,-3.3926637,-3.5478826,-3.8004847,-3.8823247,-4.013098,-4.1316094,-4.292297,-4.3355393,-4.2593274,-4.05797,-4.0964093,-4.2002363,-4.298602,-4.39758,-4.1287374,-4.146473,-4.3572025,-3.6993198,-3.9125347,-4.3424807,-4.4443517,-4.5118566,-4.3642445,-4.1524467,-4.045445,-4.046985,-3.9984488,-3.7102857,-1.6394899,-3.2157345,-3.46871,-3.6931233,-3.764027,-3.8691359,-3.8545804,-3.965979,-4.1067433,-3.942718,-4.1479816,-4.195017,-4.0845137,-4.1342244,-3.9464192,-3.908988,-3.608074,-3.9066772,-3.9763255,-4.0642886,-3.8974519,-3.9415555,-4.08824,-4.0702147,-4.150564,-3.607648,-3.8768644,-4.0916104,-3.9532046,-4.127459,-4.064132,-4.041214,-4.062293,-3.985919,-4.1445785,-4.160705,-4.114029,-4.3048983,-4.0721545,-3.949586,-4.3263345,-4.220961,-4.2337584,-4.1656723,-3.9938684,-3.6281786,-3.649441,-3.4091883,-3.3349135,-3.7774105,-3.659986,-3.4545379,-3.5430243,-3.5602083,-3.2602372,-3.0551696,-3.3708718,-2.4975271,-3.0231638,-2.876782,-2.791376,-2.85048,-2.6526284,-2.5987005,-2.4145079,-2.3487997,-2.1668558,-2.1437192,-2.1854327,-2.1156466,-2.1546884,-2.202623,-2.1198394,-1.9083369,-1.9767647,-1.7685974,-2.039726,-2.1435366,-2.0718923,-1.9992216,-1.9123936,-1.8151617,-1.75934,-1.8377137,-1.8290386,-1.9448774,-2.0389616,-1.9993823,-1.9380302,-1.7957106,-1.8530765,-2.0391073,-1.9151318,-2.0794096,-1.9856343,-1.8418274,-1.871352,-1.9137499,-1.9949617,-1.9691002,-2.0116243,-1.8787954,-2.019477,-2.091193,-2.1917338,-2.2241964,-2.0495367,-2.0464826,-2.0459387,-2.0322309,-2.1034937,-2.0115795,-1.9315219,-1.991312,-2.0587802,-1.9596095,-1.866576,-1.8117809,-1.8429441,-1.8550677,-1.9798546,-2.0308301,-1.9138217,-1.9037471,-1.8960571,-1.9063134,-2.00319,-1.9612794,-1.8964832,-1.7378001,-1.7457371,-1.7917051,-1.8119402,-1.770216,-1.7559144,-1.719146,-1.6740198,-1.6137347,-1.5038805,-1.4704645,-1.2186797,-1.2319069,-1.3139298,-1.4087315,-1.4961305,-1.55162,-1.4744585,-1.3997536,-1.393364,-1.3925104,-1.3741436,-1.3313997,-1.2833328,-1.4324749,-1.7710338,-1.9456477,-1.7208288,-1.560919,-1.6746299,-1.462893,-1.5203474,-1.5266094,-1.4661672,-1.4550683,-1.3328271,-1.3389235,-1.4514475,-1.7990611,-1.9740274,-2.2758207,-2.4647427,-2.682256,-2.9226854,-3.0034053,-3.2396502,-3.286593,-3.3421433,-3.2888527,-3.2930942
+-0.2240799,-0.9713698,-1.4755127,-1.9618216,-2.243672,-2.166666,-2.3273802,-2.467174,-2.6294575,-2.488665,-2.7098749,-2.696444,-2.77351,-2.6874437,-2.584483,-2.2306366,-2.8446822,-3.0681448,-3.1736317,-3.260298,-3.1049242,-3.405055,-3.249558,-3.3545938,-3.2498226,-2.8498216,-2.947905,-2.9994166,-3.1934671,-2.8043327,-3.070669,-3.2194777,-3.398519,-3.3937905,-3.6426377,-3.6104622,-3.2847176,-3.382937,-3.217916,-3.5289514,-3.4306269,-3.3940663,-3.3546765,-3.3372865,-3.4857907,-3.134094,-3.394568,-3.5549045,-3.286409,-3.0327199,-2.9117665,-2.0874147,-2.941442,-3.582324,-3.2634382,-3.7403407,-3.409114,-3.4022422,-3.5493674,-3.2045958,-3.5859628,-3.4577725,-3.544344,-3.4523325,-3.363556,-3.56357,-3.5524442,-3.625229,-3.6149142,-3.6533723,-3.718202,-3.6069531,-3.556746,-3.3675199,-2.1509187,-3.5074215,-3.6966643,-3.5590687,-3.614828,-3.5733008,-3.4425159,-3.4739542,-3.3449821,-3.46214,-3.4181833,-3.4837527,-3.566444,-3.3944545,-3.3874826,-3.0517929,-2.8027704,-3.4484448,-3.4986167,-3.7861362,-3.1007805,-3.803,-3.7370725,-3.5886307,-3.849401,-3.8175712,-3.6438384,-3.6354327,-3.7320008,-3.861166,-3.8190856,-2.3254972,-3.6425037,-3.1397464,-3.7698407,-3.6449962,-3.766736,-3.89214,-3.9825473,-3.9012165,-3.991609,-3.8279862,-3.5717845,-2.3050523,-3.586451,-3.6009974,-3.713153,-3.0796523,-3.7663126,-3.8696485,-3.8646255,-3.9178882,-3.9958396,-3.6843061,-3.732428,-3.7275052,-2.986454,-3.593782,-2.4895647,-3.132036,-3.6439667,-3.975153,-3.974331,-4.0952544,-4.2792044,-4.3143086,-3.1636653,-3.564662,-3.973495,-4.059647,-4.231159,-4.223077,-4.2218604,-3.1137013,-3.7921252,-4.1489735,-4.3424487,-4.3212814,-4.192464,-4.110857,-3.9499655,-3.8222857,-3.562913,-2.906108,-3.395317,-3.7690668,-3.9725375,-3.882741,-3.9350119,-4.1838274,-4.1237326,-3.9998155,-3.796328,-3.693767,-3.7586498,-4.0622134,-4.1754184,-4.276804,-4.2118754,-4.121657,-3.9358716,-3.8721538,-3.73488,-3.774456,-4.010983,-4.1778994,-4.1997128,-4.064613,-3.9565797,-3.9712386,-3.8953376,-3.6115131,-2.348137,-3.667736,-2.8029094,-3.6971736,-4.0601287,-4.0380015,-4.0343184,-3.9870324,-3.8108172,-4.02093,-4.047746,-4.1746693,-4.1329064,-4.2599587,-4.073358,-3.916678,-3.3457701,-4.003397,-4.202554,-4.110308,-4.079573,-4.0047774,-3.9640322,-4.1010437,-4.2086005,-4.001649,-3.9371,-3.9987998,-4.121364,-4.130662,-4.124635,-4.157088,-4.110807,-3.880793,-3.9587703,-4.080076,-4.055834,-4.1166596,-4.075194,-3.9940152,-4.151934,-4.1621885,-4.1662908,-4.1235766,-3.560976,-2.6974087,-3.1573503,-3.0821443,-3.1664352,-3.2900877,-3.3030472,-3.282465,-3.3254259,-3.454248,-3.4484217,-3.3457675,-3.1633234,-2.4250455,-2.6187077,-2.5086188,-2.4371362,-2.4020784,-2.3651001,-2.04323,-1.9038959,-1.8793309,-2.0520544,-1.8452258,-1.8479216,-1.9441969,-1.9407399,-1.9831145,-1.9351182,-1.8986535,-1.7543855,-1.8927743,-2.061411,-1.9598632,-1.845617,-1.9451227,-1.9276733,-1.989656,-1.124296,-0.9671604,-1.2616291,-1.3396719,-1.4429209,-1.4452372,-1.4266334,-1.5326223,-1.5345054,-1.4447813,-1.4862969,-1.4968126,-1.5810366,-1.6412964,-1.6328802,-1.6129339,-1.495847,-1.6396046,-1.5832272,-1.491746,-1.6282024,-1.5939167,-1.5781047,-1.6077888,-1.4812806,-1.4847693,-1.5236442,-1.3236909,-1.3771827,-1.4026067,-0.8504831,-1.0917301,-1.13381,-1.2916207,-1.21612,-1.2145531,-1.2911389,-1.5727024,-1.7208977,-1.6999316,-1.5812082,-1.419493,-1.5744548,-1.3966353,-1.7277868,-1.617909,-1.425221,-1.0986271,-1.194747,-1.3905077,-1.551034,-1.5103903,-1.4640834,-1.1851985,-1.0203874,-0.9315987,-0.78603953,-0.9459743,-1.3945158,-1.7236817,-1.7917426,-1.8589742,-1.3820469,-1.3005033,-1.2609236,-1.1778812,-1.1531677,-1.14892,-1.1256523,-1.0961351,-1.5647917,-1.9376202,-2.3602233,-2.5200844,-2.3505611,-1.9146047,-1.6227877,-1.5484359,-1.3586173,-1.1892545,-1.2183354,-1.6525438,-1.9741931,-2.4533849,-2.4493542,-2.4817138,-2.313833,-2.2645495,-2.4531813,-2.4354258,-2.862278,-2.8184898,-2.8781543,-2.3453736,-2.9689162,-3.1877832,-3.1210544
+0.8007102,0.1333343,-0.85976785,-1.8704305,-2.3634503,-2.3139548,-2.4505982,-2.542091,-2.822313,-2.8381922,-2.872429,-2.9724638,-3.129397,-3.130617,-3.2264209,-1.9704247,-2.7512805,-3.0789132,-3.3039305,-3.3460662,-3.2970319,-3.5604384,-3.6168745,-3.6909437,-3.6637046,-3.3723357,-2.9386668,-3.1941247,-3.4370499,-2.6480463,-3.0118058,-3.1501484,-3.21658,-3.3973427,-3.6349378,-3.7034583,-3.7224069,-2.8312268,-3.6306796,-3.4539757,-3.4912887,-3.5617638,-3.7034607,-3.5190415,-3.7088141,-3.7081084,-3.6000638,-3.7681036,-3.8476067,-3.9149513,-3.9010143,-3.8234649,-3.5172994,-3.8423858,-3.0262735,-3.712749,-3.0439873,-3.292122,-3.630426,-3.664085,-3.6933374,-3.5948265,-3.7537055,-3.7603626,-3.6581328,-3.7614799,-3.7962484,-3.8712506,-3.840464,-3.8160005,-3.7663846,-3.805286,-2.7733269,-3.5075269,-2.8062246,-3.5290077,-3.7566514,-3.8499618,-3.0894234,-3.6736808,-3.802589,-3.8188024,-3.772612,-3.8309875,-3.7436657,-3.7894316,-3.8270526,-2.4470577,-3.6259856,-3.1106892,-3.2098002,-3.6457217,-3.639407,-3.6523871,-3.809257,-3.9239688,-3.9706855,-2.7427769,-3.6142492,-3.7774148,-3.764213,-3.7835646,-3.8063054,-3.8262296,-3.8443117,-2.8268392,-3.687933,-3.8423524,-3.8396735,-2.4896514,-3.6188402,-3.8091693,-3.8765821,-3.0274963,-3.8259945,-3.8767233,-3.7709966,-3.0706406,-3.213327,-3.6472402,-3.890873,-3.8561683,-3.861537,-3.890142,-3.8586402,-3.8575773,-3.8641572,-3.955974,-3.7832303,-3.7399077,-3.7896771,-3.8119373,-3.8695269,-2.5441957,-3.6734276,-3.9140763,-3.8565893,-3.9220443,-3.798346,-3.7793884,-3.6155305,-3.5838716,-3.8790193,-3.8022628,-3.829771,-3.7779832,-3.9245691,-3.675725,-3.7979527,-3.9245353,-3.9195395,-3.899632,-3.930647,-3.889501,-3.7873435,-3.7375512,-3.7774549,-2.7627444,-3.6667328,-3.8310084,-3.9346666,-3.960165,-3.8902678,-3.851913,-3.8580022,-3.9155178,-3.9504495,-3.6608038,-3.7179003,-3.8860645,-3.9823613,-3.8902059,-3.9272208,-3.9268813,-3.9767084,-3.920381,-3.8616385,-3.695557,-3.816234,-3.92277,-3.8414116,-4.0357275,-3.936668,-3.8703218,-3.9606476,-3.8459706,-1.6123505,-3.1872241,-3.1017187,-3.3931787,-3.6470482,-3.825325,-3.8055515,-3.8120794,-3.560516,-3.656822,-3.7994552,-3.853994,-3.965394,-3.7852435,-3.7055602,-3.6135404,-3.6097996,-3.7027173,-3.87261,-3.8407092,-3.888616,-3.9406319,-3.917636,-3.8896365,-3.8453383,-3.86311,-3.9934077,-3.8815322,-3.618721,-3.8338819,-3.7835383,-3.7818513,-3.7938004,-3.7503629,-3.949582,-3.6360354,-3.6604302,-3.644436,-3.632835,-3.24829,-3.496983,-3.60335,-3.5719547,-3.64828,-3.5021358,-1.6504748,-1.9731889,-1.2248073,-0.9875013,-1.109076,-1.1736312,-1.094336,-0.8894941,-0.7458579,-0.70118207,-1.0535219,-1.2207816,-1.416336,-0.91643995,-0.74186116,-0.50612354,-0.39199835,-0.661503,-0.023760855,0.09016588,0.22166668,0.15155363,0.118804246,0.034166098,-0.011727035,0.08867058,0.057161003,-0.056315184,-0.10266253,-0.18676049,-0.36045158,-0.43964022,-0.15961033,-0.07019514,-0.15536058,-0.080108136,-0.21266133,0.06227146,-0.08255407,-0.1934672,0.009489596,-0.0634574,-0.033818334,0.046702802,-0.053602904,-0.18443513,-0.45092422,-0.4056093,-0.6392944,-0.73639816,-0.63366073,-0.6650369,-0.51862293,-0.29294163,-0.5036584,-0.7302126,-0.7025921,-0.6544568,-0.5653112,-0.68215084,-0.51037484,-0.3571062,-0.25446838,-0.24942368,-0.12104088,-0.041949213,-0.1215581,-0.44367266,-0.6223329,-0.7811548,-0.6736221,-0.44126803,-0.20663202,-0.048846364,-0.0074644387,-0.33028138,-0.52954763,-0.5917004,-0.4051538,-0.14910173,0.23966868,0.27328563,-0.30751723,-0.2686348,0.38763118,0.034936875,0.5805323,0.43767214,0.44404793,0.47731507,0.44956946,0.11540586,-0.47456694,-1.0978405,-1.4964988,-1.5930834,-1.6291442,-1.2519844,-0.5647395,-0.17024946,-0.009481192,0.18501118,0.29025635,0.32112876,0.26792124,0.18650958,0.18472178,0.06885813,-0.28347534,-0.49902278,-0.88177294,-1.1312287,-0.7939696,-0.769198,-1.0209951,-1.0268116,-0.9409619,-1.1420412,-1.4607747,-1.6402924,-1.9689913,-2.2798734,-2.4846275,-2.816455,-3.035728,-3.309748,-2.5560913,-3.082073,-3.2710733,-3.432826,-3.110897,-3.2760422,-3.2895734,-3.4708145
+-0.3337317,-1.0764911,-1.5544715,-1.868969,-2.1800144,-2.2364106,-2.7875273,-2.8251195,-2.8264225,-3.0332923,-2.9481115,-2.8735685,-2.975501,-2.8409991,-2.4220557,-1.1099699,-2.1302655,-2.7578287,-3.2572875,-3.3570895,-3.1266773,-3.4472122,-3.3902683,-3.3302827,-3.3280807,-3.1458337,-2.5721812,-3.0000813,-3.1837473,-2.7771835,-2.761251,-3.0947971,-3.2345324,-3.304972,-3.4722502,-3.4011526,-3.4125988,-3.4023151,-3.088575,-3.6065373,-2.835206,-3.538797,-3.675082,-3.6239848,-3.6465154,-2.877577,-3.1797218,-3.3232837,-3.1783617,-3.161882,-3.1501057,-3.1823914,-2.9739199,-3.2682824,-3.3192182,-3.345673,-2.9465709,-3.28533,-3.6534147,-3.523797,-3.2023866,-3.5512795,-3.6168666,-3.63864,-3.551733,-3.6170077,-3.7281327,-3.529398,-3.5715704,-3.5035625,-3.4813843,-3.405584,-3.2150612,-2.9319634,-3.445965,-3.7450423,-3.6724873,-2.5410626,-2.6980698,-3.4216807,-3.8339972,-4.0487423,-3.9572082,-3.8523755,-3.704029,-3.7544355,-3.6708298,-3.6279502,-3.076006,-3.245026,-3.8732233,-3.7824678,-3.2372098,-3.7650175,-3.915275,-3.9379487,-3.8047214,-2.8235111,-3.7921405,-3.9930844,-3.915524,-3.83569,-3.7845197,-3.0846584,-3.8061337,-3.847085,-3.8515797,-3.8132906,-3.7087789,-3.1019123,-3.6038675,-3.7404742,-3.7864957,-3.2576966,-3.8800073,-3.7754922,-3.8004127,-3.749577,-2.4378207,-3.5330732,-3.9823442,-4.1153464,-4.107072,-3.969213,-3.9267368,-3.9001107,-4.177162,-3.820341,-3.3513887,-3.8227348,-3.8230848,-3.7274308,-3.739469,-3.2926996,-3.5246634,-3.7133937,-3.9897966,-3.9816995,-4.017839,-3.8919473,-3.1295216,-3.7280974,-4.01858,-3.945867,-3.3575778,-3.8387885,-3.8348646,-3.2018561,-2.7631269,-3.7438684,-3.1350951,-3.4801145,-3.4199386,-3.9284716,-4.0479226,-3.7416563,-2.4682856,-3.3482869,-3.340952,-3.6932054,-3.8713775,-3.9479308,-3.9877224,-4.0576696,-4.0942845,-4.131021,-3.8641472,-3.8493447,-2.9648705,-3.324461,-3.2785163,-4.0293355,-4.159765,-4.2832174,-4.2815113,-4.0593476,-3.8391004,-4.0047584,-4.1236587,-4.268085,-4.312184,-4.074343,-4.010132,-3.9965334,-3.8485656,-3.6408195,-3.495738,-3.8212724,-3.9779205,-3.8450437,-3.9399047,-3.9501505,-3.9003882,-3.9487557,-3.2794452,-3.8349833,-3.9374185,-4.0659804,-4.139825,-4.236292,-4.1604238,-4.1757474,-4.0026646,-4.036754,-4.054959,-4.105061,-3.983708,-4.0576196,-4.1074605,-3.9916844,-4.0004897,-4.0890956,-4.032556,-4.0612793,-4.0885444,-4.101781,-4.1203904,-4.0617514,-4.0656877,-4.0126705,-3.9704719,-4.0463376,-4.08287,-4.1326137,-4.123224,-4.121683,-4.2398915,-4.21938,-4.120088,-4.056994,-4.0783896,-3.005739,-3.638314,-3.7533412,-3.9835358,-2.9294648,-3.4897814,-3.6401758,-3.7670264,-3.8543324,-3.8310232,-3.7497072,-3.8804426,-3.9042816,-3.8461285,-3.9070768,-3.825436,-3.8334594,-3.9030242,-3.7689981,-3.1908937,-3.0891426,-2.8958883,-2.8935194,-3.0028431,-3.0997376,-3.0574055,-3.10528,-3.017569,-3.0040166,-2.9183903,-2.8868175,-2.9879858,-3.1126575,-3.268,-3.1740944,-2.836057,-3.096322,-2.0475702,-2.373396,-2.3944035,-2.4343085,-2.499419,-2.4081328,-2.4029665,-2.2996712,-2.2686079,-2.4608355,-2.3491037,-2.290659,-2.3346415,-2.4004574,-2.3462207,-2.3625505,-2.1989996,-2.2848616,-2.316656,-2.241016,-2.311773,-1.7173297,-1.5331159,-1.5595741,-1.6575482,-1.5821395,-1.5214672,-1.3743813,-1.3700247,-1.4201779,-1.6088505,-1.492744,-1.6504474,-1.7758641,-1.7151916,-1.5856164,-1.6842897,-1.7686431,-1.907567,-1.9914508,-1.6747942,-1.5900738,-1.5296135,-1.3765082,-1.6088381,-1.7383659,-1.6037388,-1.7164814,-2.2904088,-2.3223486,-2.6236835,-2.6359866,-2.7286587,-2.7096958,-2.7272787,-2.8467739,-3.0144253,-3.0183544,-2.961153,-2.946545,-3.10042,-3.2277095,-3.3652663,-3.2860277,-3.3187678,-3.247156,-3.270098,-3.2962852,-3.2539878,-3.0406594,-3.0757105,-2.9393287,-3.1184042,-3.194438,-3.1433873,-3.3539276,-3.1039996,-3.207175,-3.167082,-3.1446702,-3.1064613,-3.0013852,-3.0845566,-3.1493466,-3.3283575,-3.230169,-3.2099736,-3.2782104,-3.3360126,-1.9281235,-3.1259034,-3.3928432,-3.5185256,-2.4943316,-2.9683845,-3.128104,-3.4100482
+-0.38495696,-1.4332759,-2.194209,-2.614561,-2.8244143,-2.5783243,-2.8306153,-2.9461389,-3.106276,-3.292135,-3.1403217,-3.1979666,-3.4477525,-3.3888962,-2.956402,-2.0759575,-3.7073102,-4.00427,-4.138476,-4.1133723,-3.801299,-3.940517,-3.676348,-3.6225975,-3.6668148,-3.774366,-3.498689,-3.8276176,-2.8126783,-3.6754692,-3.851822,-3.654277,-3.6652393,-3.6331656,-3.837008,-3.749391,-3.6908474,-3.5724223,-3.8989148,-4.0194263,-3.5246668,-3.9047332,-4.0531535,-3.8505774,-3.8848548,-3.590034,-3.3594007,-3.8332243,-3.5794492,-3.6664753,-3.6621335,-2.9471493,-3.567992,-3.7907043,-3.9043088,-3.7487173,-3.1461384,-3.691665,-3.930266,-3.629949,-3.7904663,-3.941813,-4.0360274,-3.9802856,-3.8015304,-3.8248363,-3.9158778,-3.8348126,-3.840653,-3.7158442,-3.631782,-3.7316465,-3.7549381,-2.3487628,-3.8475976,-3.9779553,-3.9435577,-3.939342,-3.7931294,-4.0067677,-4.0320296,-3.8865256,-3.894867,-3.8358588,-3.8216066,-3.7599025,-3.792553,-3.7988324,-3.8125062,-2.9769993,-4.0553393,-3.0132744,-3.5776105,-3.8811216,-4.0328727,-3.948606,-3.4706917,-3.9528966,-3.1445804,-3.921483,-3.881884,-3.866696,-3.7982044,-4.070519,-3.970889,-4.1538424,-4.0951004,-4.039205,-4.01229,-3.9667897,-3.9284854,-3.9372907,-3.946796,-3.950385,-3.9647155,-2.5126076,-3.8193865,-3.97499,-3.1635027,-3.8460765,-4.067483,-4.080243,-4.070471,-4.06158,-3.9605203,-4.103317,-3.926917,-3.9268966,-2.734891,-3.754488,-4.171678,-4.068815,-4.1090064,-3.9630032,-4.002893,-4.0923114,-4.028205,-4.1132336,-3.990518,-3.9514112,-3.6111364,-3.7255793,-4.031902,-3.8481994,-3.8529649,-4.0108285,-3.0695305,-3.8862228,-3.5687904,-3.848463,-3.7169328,-3.745417,-3.6995468,-3.7422023,-3.8672147,-2.6315894,-3.4136941,-3.0145397,-3.7771926,-3.7298512,-4.1461983,-4.1666,-3.8919263,-4.111304,-4.0901675,-3.6136074,-3.9321094,-3.965815,-3.912126,-4.0392213,-3.8461676,-4.1208386,-4.1808352,-4.2223716,-4.1338677,-3.952701,-3.6404715,-3.7034836,-3.9175277,-4.0553555,-4.062745,-4.0584426,-4.0663996,-4.1016903,-4.087038,-3.950254,-3.8873444,-3.8098187,-3.9970288,-3.8961902,-3.9923978,-4.0270076,-3.9614186,-3.9195333,-3.9219642,-3.958222,-4.0158525,-3.995946,-3.953652,-3.8243332,-3.84273,-3.872212,-3.9427595,-3.9690514,-3.9536371,-3.959639,-4.0042744,-4.0456977,-4.0615788,-4.0089955,-3.9581323,-4.0250316,-4.012133,-3.9887977,-3.9530706,-4.041433,-3.9908051,-3.9510207,-3.9964032,-3.9477582,-3.9873967,-3.9488845,-3.8817983,-3.870512,-3.9636025,-3.8315215,-3.9707246,-4.0023475,-3.8604012,-3.7516751,-3.881906,-3.6424477,-3.554867,-3.8471866,-3.9227147,-3.9891033,-3.8147802,-3.8384867,-3.8725734,-3.692699,-3.7020593,-3.6578298,-3.7975059,-3.8103032,-3.728078,-3.8559241,-3.793836,-3.664156,-3.5952113,-3.7325988,-3.6530428,-3.2991579,-3.0581307,-3.0269501,-3.2752724,-3.2009354,-3.2982864,-3.1980112,-3.0359035,-3.0049734,-2.9827933,-2.6677313,-2.702548,-2.8652666,-2.976016,-3.04775,-2.8269563,-2.898994,-2.1388602,-2.7714176,-2.7250535,-2.934957,-2.9914877,-2.8417645,-3.0315726,-2.8207576,-2.8909903,-3.058091,-2.7135959,-2.691064,-2.5486126,-2.5679567,-2.5523243,-2.4355412,-2.5262942,-2.6346772,-2.8753738,-2.7778158,-2.6441627,-2.06105,-1.5581789,-1.5993776,-1.6714168,-1.7680569,-2.0171282,-2.3312669,-2.7080534,-2.7630582,-2.892696,-2.9661908,-2.7268534,-2.6209514,-2.7433536,-2.7381873,-2.7573113,-2.9240646,-3.0576034,-3.1000135,-2.7394047,-2.5094974,-2.7524493,-2.967203,-2.9399736,-3.2186282,-3.1077735,-2.9417763,-3.0554326,-3.2609992,-3.106308,-3.3175578,-3.3380308,-3.213174,-3.2800865,-3.351127,-3.3954911,-3.5293908,-3.376655,-3.2771068,-3.4629478,-3.8212104,-3.5481586,-3.5154824,-3.4739547,-3.49855,-3.4461482,-3.5369692,-3.5141118,-3.3643832,-3.3058882,-3.0690808,-3.131185,-3.614892,-3.5906267,-3.7449327,-3.8203092,-3.6719987,-3.7320895,-3.6828783,-3.6943436,-3.4551594,-3.4755247,-3.718649,-3.7724442,-3.372371,-3.6325195,-3.725142,-3.6978774,-3.1127226,-3.7118278,-3.7990403,-3.899128,-3.0018604,-3.7166133,-3.5799913,-4.0168643
+-1.0525727,-1.7287891,-2.1685646,-2.274521,-2.5499735,-2.6950521,-2.868321,-2.976298,-3.1057968,-3.2280293,-1.7291303,-3.4844837,-3.7496066,-3.936686,-3.8229036,-2.1483107,-3.2581997,-3.6305249,-3.3737407,-3.7638264,-3.7906137,-3.9403682,-3.907723,-4.000858,-3.8511906,-3.802991,-3.704516,-3.606605,-2.4696016,-3.511106,-3.9534626,-3.6955771,-3.7354293,-3.727303,-3.6552935,-3.6273284,-3.5420656,-3.6036975,-3.2226102,-3.7210445,-3.524354,-3.2925868,-3.6554484,-3.4888806,-3.4809651,-3.075167,-3.1790051,-3.6093974,-3.6397724,-3.7891006,-3.6324177,-3.4368205,-3.4295516,-3.4042385,-3.3626165,-3.369237,-3.3587546,-3.3166962,-3.3472188,-3.3366556,-2.170147,-3.54168,-3.8289814,-3.8061342,-3.5892658,-3.589754,-3.4500966,-2.9988592,-3.446654,-3.3979726,-2.1604068,-3.392582,-3.5870833,-2.7150886,-3.1259933,-3.5101478,-3.636251,-3.3486497,-3.0299013,-3.7853246,-3.7662854,-3.7189517,-3.7437453,-3.4368486,-2.2676294,-3.2818215,-2.6215124,-3.5722346,-3.6514978,-2.7195015,-3.2828574,-3.3052683,-2.8235638,-3.5259182,-3.8237848,-3.755383,-3.6007974,-3.6838732,-3.603243,-3.7655034,-3.667912,-3.6313806,-3.719952,-3.7451224,-3.5850677,-2.4842713,-3.0565894,-3.5611157,-3.723596,-3.7885528,-3.7398295,-3.7181997,-3.381143,-3.7096543,-3.21698,-2.4573371,-3.669104,-3.701733,-3.5048444,-2.937397,-3.7078214,-3.8364234,-3.9129968,-3.9221106,-3.9545984,-3.4253955,-2.8160038,-3.2056313,-3.3526073,-3.7258034,-2.5230708,-3.1071002,-3.328687,-3.4237955,-3.6689065,-3.8202004,-3.9164157,-3.9121728,-3.91051,-3.850194,-3.7940989,-3.718008,-3.777657,-3.7996264,-3.771515,-3.6859517,-2.246954,-3.6783452,-3.7521586,-3.0094051,-2.8893688,-3.6168606,-3.756145,-3.6077108,-3.7478614,-3.7212176,-3.6551402,-3.5779452,-3.588858,-2.2636096,-3.4106188,-3.716817,-3.719376,-3.9057574,-3.828401,-3.650469,-3.8157496,-3.8315048,-3.8334193,-3.8673167,-3.8759274,-3.9046507,-3.9177127,-3.9403176,-4.0055447,-3.9396677,-3.8960104,-4.151512,-4.2624545,-4.2912354,-4.3086247,-4.2676015,-4.3021216,-4.174067,-3.4800124,-3.2385979,-3.6726923,-3.9015608,-4.0890536,-4.052344,-4.0769553,-3.5993164,-3.4148302,-3.788097,-3.9800076,-3.964168,-3.9476767,-3.961153,-3.9566736,-4.010164,-4.213322,-4.2531934,-4.2349925,-4.282064,-4.3189945,-4.3001137,-4.2144437,-4.1885695,-4.203016,-4.220119,-4.240487,-4.2162604,-4.258929,-4.260117,-4.262265,-4.2978873,-4.299288,-4.3473315,-4.3227777,-4.1203895,-3.8762307,-3.9966254,-4.082091,-4.161779,-4.207385,-4.11424,-4.1964164,-4.266065,-4.2617745,-4.1944437,-4.235465,-4.226748,-4.13177,-4.267047,-4.413475,-4.3262377,-4.2802215,-4.2308235,-4.2269673,-4.2491693,-4.3062453,-4.212679,-4.1978908,-4.2095046,-4.1817183,-4.144609,-4.1678576,-4.073426,-4.1044946,-4.086966,-3.9649734,-3.8434005,-3.6599946,-3.6084938,-3.7789168,-3.864647,-3.822041,-3.7092118,-3.4808974,-3.582974,-3.4916048,-3.1878738,-3.050231,-3.1425145,-3.2832804,-3.4287453,-3.4721696,-3.0786667,-2.9923248,-3.3097296,-3.3385391,-3.4551635,-3.5031364,-3.565858,-3.5963707,-3.6202326,-3.6733778,-3.7196183,-3.430294,-3.2508245,-3.0225034,-3.004004,-3.0163603,-3.0893204,-3.1991487,-3.2525218,-3.432473,-3.4687684,-3.3073835,-1.7363272,-1.3311732,-1.756597,-2.2512913,-2.7035975,-3.1829019,-3.403186,-3.303955,-3.6488192,-3.7406292,-3.773542,-3.6355298,-3.399982,-3.3884144,-3.466498,-3.5752134,-3.7180982,-3.7685857,-3.6482477,-3.3657556,-3.359664,-3.4777174,-3.6643505,-3.7105403,-3.7444634,-3.8300948,-3.8316002,-3.7307162,-3.6972404,-3.7899203,-3.714026,-3.8322186,-3.8433447,-3.8355575,-3.8245263,-3.7832928,-3.7805977,-3.766562,-3.764247,-3.7924285,-3.7866063,-3.9856868,-3.8782415,-3.8857403,-3.768372,-3.7462697,-3.8437743,-3.7793107,-3.5934863,-3.676068,-3.6862416,-3.7560806,-3.7566657,-3.8002753,-3.7746916,-3.8133502,-3.8610911,-3.8287492,-3.7461157,-3.8226047,-3.8308754,-3.7587533,-3.7638464,-3.830359,-3.7044497,-3.8282113,-3.8593335,-3.8576884,-2.233324,-3.7803073,-3.8059764,-3.9233336,-2.4989467,-3.2414215,-3.6633847,-3.9332452
+-1.1267276,-1.8135011,-2.3127794,-2.3381588,-2.5777218,-2.5322232,-2.6860986,-2.850903,-2.909608,-2.9528465,-2.8632345,-3.1855645,-3.3683257,-3.3768053,-3.221338,-2.9027076,-2.2279563,-3.400732,-2.8461766,-3.3584948,-3.5196276,-3.5993395,-3.7302928,-3.853035,-3.8362517,-3.928431,-3.83454,-3.9030185,-2.3265057,-3.246944,-3.5104709,-3.5539155,-3.730876,-3.6944652,-3.8587422,-3.9283862,-3.942038,-3.950758,-3.9566226,-3.996839,-3.9673676,-2.534895,-3.9624257,-2.885151,-3.46386,-3.3322334,-3.2242198,-3.47993,-3.611415,-3.6003032,-3.6521516,-3.4994977,-3.376076,-3.5845666,-3.7000294,-3.7440372,-3.751669,-3.7090106,-2.1989121,-3.5997295,-3.6794024,-3.1539736,-3.606726,-3.771585,-3.6422136,-3.5703547,-3.7405076,-3.596473,-3.8262973,-3.919033,-2.4496598,-3.8215623,-4.0368896,-3.687752,-2.7225966,-3.7685895,-4.0375376,-4.0525427,-4.045979,-4.0632854,-4.0366025,-3.9789681,-3.9608126,-4.0362525,-4.0313525,-4.0937138,-4.1225696,-4.0836043,-3.927649,-3.0789263,-3.0768745,-3.173721,-3.9813151,-4.024589,-4.0278325,-3.8793092,-4.031798,-4.1335077,-4.0542746,-4.0813403,-4.233735,-4.178545,-4.195256,-4.296394,-4.3438077,-4.328855,-2.0377629,-4.0708776,-4.286243,-4.3084598,-4.2485337,-4.206059,-4.2044163,-4.2426906,-4.320275,-3.5289304,-4.156146,-4.2320857,-2.922826,-4.104091,-4.3023133,-4.3102975,-4.27955,-4.095263,-4.161097,-4.0542016,-3.2140536,-4.0219016,-3.400495,-3.3073616,-3.4564729,-4.0883765,-3.9221158,-3.1916876,-3.9192147,-3.9843802,-4.040963,-4.06165,-4.0776873,-4.0939927,-4.039929,-2.6339147,-3.8877978,-4.0791426,-4.0755115,-3.9267478,-3.8282514,-4.0283046,-2.8156054,-3.048369,-2.507133,-2.984786,-3.7685518,-3.9159398,-3.9010472,-3.890348,-3.8602881,-3.8672757,-3.877563,-2.3074362,-3.3918095,-3.8352551,-3.41786,-3.838758,-3.8832927,-3.898467,-3.5558205,-3.6059065,-3.8428893,-3.834372,-2.7300065,-3.587554,-3.8681674,-3.9416003,-3.9614973,-3.981523,-3.9872708,-3.658482,-3.7572675,-3.949428,-4.0009546,-3.9724793,-4.0070186,-4.0268903,-4.0204062,-3.9894748,-3.9314728,-3.864089,-4.062607,-3.8469071,-4.0496325,-3.987752,-3.1979308,-3.7598596,-3.8714557,-3.8714585,-3.9337459,-3.9486003,-3.9344592,-3.9961438,-3.9625974,-4.0345263,-3.9765325,-4.1056833,-4.1203856,-4.1062417,-4.0783086,-4.145928,-4.0765724,-4.171067,-4.1909633,-4.187575,-4.172194,-4.2140765,-4.1972423,-4.247747,-4.1665206,-4.2152705,-4.268329,-3.8023963,-3.7457404,-3.772787,-3.9516234,-4.095016,-3.9971757,-3.9725246,-4.1317735,-4.037022,-4.0437093,-4.129303,-4.118476,-3.988853,-4.1028805,-4.268681,-4.172603,-4.1197896,-4.0100527,-4.130859,-4.109477,-4.1873097,-4.1177707,-4.118542,-4.1262536,-4.1620383,-4.1842904,-4.103824,-3.5084028,-3.947144,-3.9248915,-3.9416614,-3.8412423,-3.7694845,-3.6524467,-3.724317,-4.016461,-4.0007105,-3.9407034,-3.8008857,-3.552398,-3.8991709,-3.8863077,-3.0327606,-3.0531468,-3.3651288,-3.609489,-3.563776,-3.622731,-3.7113538,-3.496965,-3.7339606,-3.7496963,-3.7939134,-3.7706685,-3.830071,-3.8124504,-3.814025,-3.8989315,-3.8197484,-3.5070496,-3.3131106,-2.8796706,-2.7101207,-3.028171,-3.26855,-3.4350019,-3.525835,-3.539433,-3.4673336,-2.5693603,-1.6132078,-2.1528902,-2.3292792,-2.5369015,-2.7426186,-3.0162039,-3.0527098,-3.0069315,-3.063702,-3.2862458,-3.1499517,-3.016685,-2.9578142,-2.9571877,-3.1043506,-3.2144768,-3.3679273,-3.3422277,-3.228526,-3.0273018,-3.0871048,-3.3227172,-3.5405045,-3.6086469,-3.6414273,-3.7219706,-3.7679796,-3.7440748,-3.589904,-3.0882354,-3.385299,-3.6209373,-3.8382697,-3.9025745,-3.9310508,-3.9001136,-3.9317536,-3.8558035,-3.9710894,-4.0185575,-3.9046311,-3.9781551,-4.121747,-4.1174245,-4.02241,-3.9967947,-4.131683,-4.183332,-4.038448,-3.9055724,-3.8289857,-3.9416146,-4.030351,-4.037307,-3.8525424,-3.9498024,-4.1401134,-4.062448,-4.1315947,-4.1039443,-4.052014,-3.8818374,-3.9544058,-3.9620147,-3.8430386,-3.8438697,-3.9455562,-3.955255,-2.7323852,-3.743297,-4.05712,-4.080726,-2.0203614,-3.1282856,-3.4085097,-3.7099404
+-1.2535017,-2.0233974,-2.444555,-2.6603723,-2.709771,-2.8956676,-3.013031,-3.102641,-3.1956263,-3.3667243,-1.6845613,-3.4874253,-3.2932184,-4.0171857,-3.9664426,-2.830472,-3.7939987,-4.073565,-3.2596922,-3.952599,-3.5454307,-4.1943088,-4.434302,-4.540832,-4.6669536,-4.7769074,-4.691115,-3.9697757,-3.9067554,-4.4245377,-4.300836,-4.326628,-4.4938974,-4.473031,-4.5070887,-4.4822974,-4.361476,-4.4082255,-4.2267966,-4.252724,-4.3072724,-3.8964362,-4.273743,-3.6793544,-2.729383,-3.8718843,-2.9161985,-3.4649687,-3.2405496,-3.8093743,-4.1182847,-3.7239122,-2.9546971,-3.34361,-4.2715816,-4.6028047,-4.7714763,-4.7421575,-2.986275,-3.6719503,-4.286685,-3.5104022,-3.9113379,-4.0708237,-4.027444,-4.008601,-4.2549233,-4.4217286,-4.5026307,-4.4439435,-4.3560605,-4.1033406,-4.2258387,-4.1803184,-3.8597026,-2.4592404,-2.8080049,-4.0816665,-4.30856,-3.2723112,-4.1117105,-4.435258,-4.496297,-4.569662,-4.5132637,-4.4071646,-4.3134246,-4.298305,-4.240525,-3.221526,-3.8111153,-4.4022655,-4.3386593,-4.3004436,-3.9517584,-3.8223577,-4.3102703,-2.920544,-4.117394,-4.3170223,-4.3499103,-4.308787,-4.362991,-4.3233595,-2.7870836,-3.727015,-2.762796,-4.1791506,-4.4941335,-4.5757427,-4.558705,-4.5216546,-4.4719663,-4.4183617,-4.3340945,-3.2770162,-3.978479,-4.325185,-4.3920875,-4.4150815,-3.0604367,-4.2899055,-4.408085,-4.3825984,-4.388412,-4.3490586,-4.334281,-4.317945,-4.2675953,-3.7064857,-2.9024208,-4.0694413,-4.301203,-3.8274207,-4.1605067,-4.4258294,-4.433491,-4.5289254,-4.540041,-4.5424666,-4.4757533,-2.0243273,-3.958376,-4.468035,-4.4463115,-3.4204476,-3.4238908,-4.361418,-4.424989,-4.258905,-3.4328012,-3.3308768,-3.7349238,-4.018433,-3.7750602,-4.2193184,-4.1820955,-4.1491117,-4.1711392,-3.273469,-4.0936294,-4.39549,-4.2826533,-4.4417233,-4.3729606,-3.2206786,-4.168808,-3.774095,-3.6743498,-3.9503245,-4.2972174,-4.4044747,-4.467772,-4.4756117,-4.4015913,-4.3505607,-4.238354,-4.1978436,-4.2729135,-4.5476236,-4.6171584,-4.5106225,-4.527273,-4.565312,-4.5463037,-4.460386,-4.406118,-4.429316,-4.517133,-4.41205,-4.41493,-4.4095464,-4.405461,-4.4990573,-4.450529,-2.7401056,-4.216107,-4.372977,-4.516998,-4.6317134,-4.726805,-4.706145,-4.4819684,-4.6066256,-4.640761,-4.6433954,-4.578506,-4.5044427,-4.442579,-4.485497,-4.48379,-4.5056434,-4.523333,-4.5174947,-4.526858,-4.345941,-3.43961,-4.3669734,-4.4910736,-4.014579,-3.41984,-4.0587115,-4.3631587,-4.5122514,-4.4648595,-4.384437,-4.5009203,-4.469766,-4.5125794,-4.5914993,-4.5744505,-4.421536,-4.4868464,-4.5636506,-4.612956,-4.5132422,-4.4040437,-4.5458465,-4.375125,-4.541065,-4.396896,-4.369032,-4.3922114,-4.442679,-4.503242,-3.933126,-2.9691043,-4.0450296,-4.131666,-4.214105,-4.0859423,-4.044952,-3.6830573,-3.598187,-3.8553963,-4.0414634,-4.0773525,-3.9989266,-3.8393197,-3.882502,-4.124447,-3.5947673,-3.257721,-3.2063432,-3.4128327,-3.6969123,-3.7881598,-3.9130244,-3.7607965,-3.8981586,-4.085546,-4.091249,-4.0084343,-4.0931106,-4.1601567,-4.1112113,-3.6284943,-4.069836,-4.1851096,-4.0436754,-3.4463193,-3.0660894,-2.9064322,-2.7802815,-2.9828532,-3.514229,-3.805118,-4.0168204,-3.1436958,-2.6720252,-3.1669917,-3.5008383,-3.6895595,-3.8148527,-3.8820977,-4.05469,-4.0649037,-4.1887097,-4.1632023,-4.1440396,-4.1550736,-4.1369233,-4.0906544,-4.0570054,-4.1015906,-4.146029,-4.0624576,-4.0361876,-4.0541654,-3.9973035,-4.057921,-4.0213885,-4.028508,-4.088159,-4.096478,-4.1351843,-4.037606,-4.05512,-2.5497375,-3.149292,-3.5315046,-4.0062194,-4.311585,-4.33163,-4.3095136,-4.3566194,-4.221293,-4.3740935,-4.3612056,-4.2301764,-4.2830606,-4.365069,-4.380829,-4.2361493,-4.2735953,-4.3445134,-4.3653626,-4.292754,-4.207812,-4.1286473,-4.1473956,-4.2251167,-4.3263807,-4.124321,-4.1491323,-4.1496987,-4.1316247,-4.195656,-4.1515756,-4.22144,-4.107264,-4.0265193,-4.113322,-4.088772,-4.130546,-4.0789847,-4.0849786,-3.6869211,-4.041182,-4.410872,-4.3896813,-2.29079,-2.6299999,-3.8178163,-4.1872907
+-0.5030909,-1.7840981,-2.4662442,-2.821228,-3.0276322,-3.1582594,-3.246198,-3.3104546,-1.9258521,-3.136469,-3.3405485,-3.1480308,-3.3387659,-3.4669142,-3.5315595,-1.9786248,-2.940203,-3.3740878,-3.5032268,-2.899485,-3.0615408,-3.4976912,-3.7811985,-3.9627166,-4.133348,-4.222021,-4.137484,-4.081652,-4.0508013,-3.9274755,-3.940292,-3.755324,-3.7624536,-3.812554,-3.8631139,-3.8780656,-3.8863258,-3.8860645,-3.822451,-3.7852526,-3.5585659,-3.3229923,-3.7318358,-1.7859106,-2.782301,-3.3556185,-3.2725997,-2.6780882,-3.2072334,-3.4612997,-3.8531919,-3.6568882,-3.378118,-3.828364,-4.0617948,-4.1752505,-4.208704,-4.199402,-2.3067589,-3.0682502,-3.566896,-3.3988485,-3.7455177,-3.772256,-3.8905582,-3.8721662,-3.971622,-4.0080914,-4.0528464,-4.0543647,-4.006026,-3.9338326,-2.3228755,-3.7884893,-4.003219,-4.0481086,-3.8104935,-4.0193725,-4.089032,-2.2283864,-3.8082042,-4.0451617,-4.1593776,-4.1405797,-4.0779924,-4.0219235,-3.6283004,-3.5789762,-3.843946,-4.001163,-3.9877543,-3.9689245,-3.8681111,-3.7437062,-3.9284005,-4.0419207,-4.10414,-4.1038575,-4.1492915,-2.4515529,-3.834931,-4.003717,-4.037761,-4.085065,-4.1090083,-4.060726,-3.169318,-3.9707847,-4.0623975,-4.0928288,-4.099876,-4.0918717,-4.078028,-4.1013036,-4.142431,-4.119718,-3.7299733,-3.4411068,-3.6212044,-3.9551187,-4.0779667,-3.5919018,-4.0099807,-4.0593114,-4.0794687,-4.1033664,-4.1355615,-4.1433916,-4.1187973,-4.0859733,-1.8421655,-3.1558645,-3.630387,-3.6340292,-3.9095936,-4.1034627,-4.0573506,-4.0866075,-4.1595397,-3.8264265,-3.3948874,-1.9220314,-3.1979008,-3.3714836,-3.6924329,-2.8945541,-2.9493523,-3.7071157,-3.7678733,-3.336322,-3.6645646,-3.6440902,-3.4732723,-3.5400338,-3.2182324,-3.6913242,-3.8704615,-3.983273,-4.003842,-3.968924,-1.7988086,-3.427639,-3.270429,-3.7585516,-3.9952435,-3.7639565,-2.822146,-3.699758,-2.195496,-2.7095597,-3.4470425,-3.7711363,-3.9332385,-4.0366817,-4.0122433,-3.964859,-3.273343,-2.612337,-3.4415731,-3.5974271,-3.867372,-3.9162555,-3.9688954,-3.9900603,-4.031421,-4.0142465,-3.9720387,-4.055533,-4.059755,-4.109297,-4.016135,-4.059324,-4.062526,-4.084536,-4.1125865,-3.1307626,-3.687708,-3.7875447,-3.936108,-3.994246,-4.064769,-4.038758,-4.044038,-4.0509095,-4.0678444,-4.072303,-4.0397897,-4.0188293,-3.9899702,-4.0702677,-4.015623,-4.039929,-4.088418,-4.1086555,-4.123511,-1.6473539,-2.487955,-3.3354208,-3.6578748,-2.5595102,-3.3394399,-3.554625,-3.7251248,-3.7420354,-3.7958436,-3.8428922,-3.9523892,-4.000279,-4.0449233,-4.042584,-3.961533,-3.9848137,-3.942634,-4.036679,-4.0589237,-4.0108867,-3.992147,-4.0096536,-3.8786068,-3.9168525,-3.7523155,-3.868401,-3.9075913,-3.9585595,-3.9704432,-3.5765426,-2.5077553,-3.2938066,-3.6303482,-3.8053832,-3.840568,-3.8141646,-3.4965436,-3.5029404,-3.5415483,-3.804977,-3.843099,-3.9323401,-3.848394,-3.7756305,-3.9102693,-3.8564405,-3.4425235,-3.5544658,-3.72115,-3.9225955,-3.902266,-3.7850022,-3.6897707,-3.878079,-3.8896008,-3.906642,-3.7976022,-3.860857,-3.8702111,-3.8263364,-3.5685132,-3.9030752,-3.9782462,-3.9973946,-3.801701,-3.2990723,-3.260466,-3.4325585,-3.6079254,-3.7878938,-3.836104,-3.8781743,-3.9347835,-2.1051452,-2.872881,-3.0646095,-3.502614,-3.6982322,-3.8632507,-3.9197164,-3.9607005,-3.9356923,-3.9473448,-3.9839091,-3.956306,-3.9166913,-3.954578,-3.9826813,-3.9926038,-4.0207467,-4.0013156,-3.9239154,-3.9360218,-3.999455,-3.9316545,-3.9111137,-3.8769221,-3.8678217,-3.7833152,-3.8168168,-3.784305,-3.8290515,-1.8124235,-3.0229912,-3.2239766,-3.6051812,-3.9009385,-4.027186,-3.9777064,-4.0154233,-4.037019,-4.0125203,-3.9855165,-3.9578629,-3.8385348,-3.968227,-3.9684687,-3.9483829,-3.9543285,-3.916264,-4.0287232,-4.0227847,-3.9631786,-3.9729686,-4.006066,-4.003033,-4.0068493,-3.9660325,-3.8348746,-3.814312,-3.6992946,-3.8360286,-3.7802482,-3.833982,-3.8686671,-3.8192973,-3.8655348,-3.9146762,-3.6325846,-3.7779016,-3.969315,-3.8678675,-3.9910798,-4.072454,-4.0755095,-1.2445161,-2.689405,-3.181173,-3.6620193
+-0.97222084,-1.5414681,-2.09043,-2.4484143,-2.6010277,-2.8398123,-2.980865,-2.8133535,-1.5998578,-3.3072662,-3.7121792,-2.448636,-3.4703264,-3.785304,-3.923472,-3.7095866,-2.8382547,-3.7304654,-4.0851817,-3.4525857,-3.7749915,-4.0922675,-4.2090907,-4.230863,-4.3146915,-4.2788396,-4.5144277,-4.3706994,-4.2329106,-4.238726,-4.084354,-2.2813387,-3.6653314,-4.017012,-4.250963,-4.4084396,-4.311376,-2.3711057,-3.6431057,-4.395002,-4.551931,-4.188387,-4.4209647,-3.4018767,-4.103389,-4.269338,-3.8535285,-3.2074618,-3.8720326,-4.0370526,-4.1601777,-4.092777,-2.6904671,-3.7736745,-4.104419,-3.1176634,-3.2977865,-4.067303,-3.1449347,-3.763085,-3.8600707,-3.4694893,-3.8638854,-3.8916254,-3.9607368,-3.9309506,-3.9739785,-4.0226827,-4.109758,-4.1709437,-4.1265597,-3.9241548,-2.2695012,-3.9054308,-4.2732825,-4.168239,-3.373242,-4.015536,-3.932189,-2.4602923,-3.8513646,-4.1752734,-4.2212863,-4.2181907,-4.1864724,-4.0614696,-1.9472051,-3.4787364,-3.7791128,-3.885498,-4.028325,-4.0725636,-4.0942807,-4.0025344,-3.9748025,-3.8925304,-3.6208246,-3.8419914,-3.8387957,-3.462,-3.8477054,-3.898179,-3.7946968,-3.861339,-3.863329,-3.3659382,-3.9022145,-4.024387,-4.030309,-4.004346,-3.9826794,-3.9768085,-3.98173,-3.9960508,-3.9854436,-3.9352026,-3.9081454,-3.8741388,-3.918971,-3.686823,-3.9946055,-4.0080366,-4.1675715,-4.151302,-4.1346693,-4.1466146,-4.144488,-4.1374793,-4.1100855,-4.1170564,-4.1407156,-1.4928644,-2.453576,-3.0950818,-3.203775,-2.5805469,-3.3592334,-3.650322,-3.3500178,-3.6151755,-3.8137522,-2.3109152,-3.616428,-3.29548,-2.978504,-3.4261842,-3.6664505,-2.8343315,-3.6792545,-3.6054711,-3.8972092,-3.9302106,-3.6374383,-3.3573976,-2.7870073,-3.5731518,-3.769165,-3.7482953,-3.6962762,-3.6951785,-3.76925,-3.818585,-1.6872518,-3.1742332,-3.6040387,-3.8445568,-3.1322637,-3.1199756,-3.6941276,-2.8019226,-3.5158536,-3.076338,-3.752172,-4.0024443,-3.9699693,-3.951531,-2.54617,-2.176384,-3.6238577,-3.8912568,-3.9856954,-3.8486824,-3.8978982,-4.000861,-4.006192,-3.9069386,-3.6797626,-3.8137121,-3.7630854,-3.3566318,-3.2758627,-3.6302724,-3.8230062,-3.849533,-3.7886167,-3.63937,-3.1621346,-3.3690405,-3.499927,-3.5215333,-3.5649757,-3.5888762,-3.6148124,-3.6207592,-3.7522507,-3.761249,-3.6919773,-3.5880866,-3.6156507,-3.655136,-3.6361442,-3.6481845,-3.6909928,-3.7171335,-3.6667395,-3.566844,-1.8423386,-3.7898731,-4.003659,-2.4565282,-3.8599868,-4.071118,-4.1861224,-3.1079226,-3.7554274,-3.9152212,-3.985447,-3.9027638,-3.9547582,-3.9565883,-3.7773156,-3.7207828,-3.683617,-3.8644767,-3.8725734,-3.7410169,-3.7284808,-3.7629628,-3.1076226,-2.8495693,-3.5328689,-3.803749,-3.8394508,-3.870737,-3.8550062,-3.742981,-2.9623134,-3.484438,-3.666039,-3.6385303,-3.755353,-3.6951203,-3.3872142,-3.3399575,-3.437348,-3.6834335,-3.6568093,-3.7172222,-3.7076354,-3.5907397,-3.6975417,-3.6403327,-3.5312982,-3.428069,-3.5052075,-3.5788295,-3.6069431,-3.3757648,-3.110999,-3.3802543,-3.2947888,-3.2916298,-3.2043574,-3.3971767,-3.2976499,-3.246472,-3.0161235,-3.3399863,-3.507568,-3.5699375,-3.6757536,-3.260514,-3.0762613,-2.9878006,-3.0737062,-3.2208905,-3.2111597,-3.0478811,-2.9180977,-2.0479865,-3.3307095,-2.9690819,-3.4718242,-3.595024,-3.7746396,-3.8326173,-3.8615937,-3.8025703,-3.8191433,-3.8266807,-3.753325,-3.5393848,-3.6409566,-3.78097,-3.7975678,-3.8101478,-3.8127327,-3.6464677,-3.734817,-3.6959462,-3.5572762,-3.4965682,-3.57774,-3.6124527,-3.5021806,-3.4590344,-3.4306855,-3.3370652,-3.2312756,-2.5640392,-3.4558828,-3.817986,-3.9536285,-4.127993,-4.080501,-3.9198384,-4.052509,-4.019091,-3.9392114,-3.9561973,-3.787137,-3.8513093,-3.8809843,-3.8608756,-3.8784385,-3.8196974,-3.8323731,-3.7275043,-3.6282434,-3.544632,-3.634313,-3.6731703,-3.6689029,-3.5532188,-3.5781527,-3.5791914,-3.5602736,-3.5985458,-3.6085308,-3.5688894,-3.590783,-3.5806794,-3.6310146,-3.6429563,-3.607053,-3.3405423,-3.411199,-3.6163921,-3.825252,-3.8649921,-3.9015536,-3.2923923,-2.3793077,-3.8005896,-4.307696
+-0.9043018,-1.3811622,-1.8915148,-2.2121572,-2.3917992,-2.5122356,-2.619565,-2.7423863,-2.6952968,-2.6701465,-2.8163218,-1.2681203,-3.0068526,-3.4122596,-3.6358685,-3.717771,-2.3932214,-3.3883832,-3.8255982,-3.9320183,-3.825057,-3.8462353,-3.888247,-3.582861,-3.8053308,-3.9243426,-3.7685843,-3.9515548,-3.7536387,-3.95504,-3.893478,-4.1609464,-3.8117137,-3.783873,-3.7853284,-3.764933,-3.7482681,-3.6250408,-3.320972,-3.5730736,-3.6243896,-3.3437295,-2.6845224,-3.3795285,-3.7405405,-3.5757406,-3.3971152,-2.722915,-3.0234375,-3.5452979,-4.0883403,-4.157206,-4.050638,-3.9642344,-3.9090219,-3.5456543,-3.609018,-3.7719665,-3.5131097,-2.409055,-3.5275037,-3.8220305,-3.4928212,-3.7857041,-3.8838654,-3.787458,-3.7861905,-3.803431,-3.8816414,-3.856997,-3.8924909,-3.2146187,-3.4396954,-3.8693109,-3.9471989,-3.9429283,-3.9030614,-3.874144,-3.8093157,-2.3998237,-3.5119312,-3.7848554,-3.8602967,-3.8753586,-3.8700747,-3.845141,-3.5060682,-1.2970407,-3.2632356,-3.913507,-3.9138746,-3.911707,-3.9031367,-3.728652,-3.8113556,-3.8229513,-3.7762332,-3.7011995,-3.6631055,-3.6287904,-3.6140368,-3.5711162,-3.5223424,-3.511714,-3.502101,-3.542894,-3.5722973,-3.5933807,-3.6406183,-3.6737444,-3.6940403,-3.6962304,-3.7045388,-3.7332358,-3.7732406,-3.8205075,-3.844345,-3.6270804,-3.0884776,-3.672737,-3.836453,-3.898593,-3.9195886,-3.8800712,-3.8867965,-3.888679,-3.910058,-3.923839,-3.9159675,-3.9275827,-3.951579,-3.9585514,-3.9032836,-2.9411845,-1.1760409,-3.4746027,-3.7678523,-3.7605138,-2.8466997,-3.6153054,-3.8536534,-2.8054063,-4.043694,-3.9295945,-4.0723014,-4.0975723,-4.123055,-4.0625606,-3.9699783,-3.491939,-3.8338566,-4.125981,-3.0479646,-3.2514777,-3.9112215,-4.068275,-4.0077834,-3.933082,-3.8586216,-3.842691,-3.830068,-3.308878,-3.2872381,-3.7500558,-3.819385,-3.343905,-3.0688717,-3.6240253,-3.842729,-3.9515777,-3.8331609,-3.6733613,-3.8319445,-3.853125,-3.8610282,-3.8143225,-3.768322,-1.6320984,-3.6650915,-4.143237,-4.09809,-3.9792495,-3.9303246,-3.9588366,-3.9515538,-3.8554692,-3.7029395,-3.705989,-3.6870856,-3.4593227,-3.656402,-3.6484404,-3.6408033,-3.6068916,-3.5429797,-3.52957,-3.5233011,-3.4037492,-3.4090014,-3.4004147,-3.4335265,-3.4912994,-3.5391004,-3.5210922,-3.642507,-3.7027102,-3.5897892,-3.5663118,-3.5614612,-3.6008608,-3.5970535,-3.5591736,-3.5596077,-3.5868022,-3.5615182,-3.5594466,-2.7524862,-3.724225,-3.8452501,-2.5493388,-3.6609375,-3.8098516,-3.8659678,-3.0218434,-3.668604,-3.9174905,-3.994594,-3.950098,-3.8656301,-3.820909,-3.7353063,-3.6657898,-3.6129375,-3.8652778,-3.9139013,-3.6751049,-3.6465678,-3.6826463,-3.2261446,-3.7316341,-3.7655563,-3.7691913,-3.9065804,-3.8446364,-3.8116026,-3.556798,-3.2206779,-3.6019785,-3.0981655,-3.6157093,-3.905551,-3.9956684,-3.7726655,-3.8075604,-3.8389883,-3.9352179,-3.8452487,-3.8343768,-3.7968507,-3.6970725,-3.4174576,-3.631444,-3.7204823,-3.721376,-3.9189677,-3.86244,-3.7928848,-3.4669669,-3.3417768,-3.4324946,-3.4838307,-3.4508626,-3.486146,-3.4846435,-3.6962132,-3.3265724,-3.23048,-3.6869125,-3.8403425,-3.8817458,-3.7059226,-3.6164358,-3.4438312,-3.479055,-3.675366,-3.6289256,-3.445795,-3.3423831,-3.1865747,-2.262624,-3.4952812,-3.4114208,-3.8958344,-3.916284,-3.9576068,-4.01601,-4.2520194,-4.0574126,-3.994382,-3.996478,-3.8652124,-3.6734896,-3.8893332,-3.9531612,-3.9397073,-3.8185077,-3.8021493,-3.6671755,-3.6506324,-3.7738519,-3.599986,-3.491574,-3.59641,-3.7735033,-3.5741482,-3.5578125,-3.428897,-3.3542972,-3.0280552,-2.6374292,-3.5056334,-3.8155408,-3.75535,-3.8402205,-3.8256059,-3.7429028,-3.8421793,-3.9426284,-3.8731227,-3.9714017,-3.815557,-3.885468,-3.7981148,-3.7882066,-3.9035068,-3.818284,-3.935472,-3.933926,-3.8004823,-3.619677,-3.526164,-3.573563,-3.5010815,-3.4720857,-3.493104,-3.4673004,-3.5268934,-3.5391188,-3.5780766,-3.4942193,-3.4472318,-3.4182868,-3.41676,-3.418055,-3.4365191,-3.4322166,-3.3842123,-3.3307228,-3.5456321,-3.5694675,-3.6323712,-3.5886347,-1.5906918,-3.2506547,-3.6335938
+-0.8605301,-1.7887061,-2.3978367,-2.7507706,-3.0167284,-3.1202297,-3.217255,-3.2310014,-3.4362288,-3.6528635,-2.9623435,-3.5376332,-2.6229608,-4.05442,-4.296366,-4.3201065,-3.292222,-2.3500137,-3.931754,-4.181593,-4.248609,-4.19666,-4.1926527,-3.475253,-4.233143,-4.3072658,-4.1564817,-4.3142257,-4.2274976,-4.0135746,-2.8654134,-3.4035795,-4.1659913,-4.3014426,-4.138702,-4.244434,-4.1247993,-4.1481004,-4.2546277,-4.2190404,-4.2179065,-4.189692,-4.168157,-4.125785,-4.043441,-3.7454581,-4.064783,-3.9143467,-3.0851521,-4.2749934,-4.3072386,-4.2787833,-4.253462,-4.2106204,-4.088927,-4.114554,-4.1374974,-4.0765424,-4.0815816,-4.1028934,-3.985435,-4.170589,-1.3517666,-3.5425456,-4.104009,-4.1216264,-4.175778,-4.190396,-4.261088,-4.2561836,-4.1620855,-4.1739225,-4.1646523,-4.1502614,-4.1496444,-4.1415157,-4.1437864,-4.136989,-4.1512685,-4.0642543,-4.034422,-4.2002053,-4.243874,-4.2368827,-4.2285075,-4.201754,-2.5756345,-3.941033,-4.1515074,-4.1684012,-4.193076,-4.344088,-4.3303895,-4.3032036,-4.274555,-4.2891803,-4.3087277,-4.3177114,-4.3069143,-4.2763553,-4.2882757,-4.3409753,-4.359254,-4.37201,-4.3659186,-4.3600492,-4.394341,-4.4017515,-4.3885937,-4.380513,-4.385848,-4.408487,-4.403993,-4.3886847,-4.371562,-4.3587337,-3.5283432,-3.971264,-4.181017,-4.3072896,-4.341808,-4.376537,-4.3908677,-4.3757424,-4.337561,-4.34281,-4.339834,-4.3406973,-4.3348184,-4.3183517,-4.3186393,-4.3028007,-4.281919,-4.25562,-0.5465378,-1.9770088,-3.6112857,-4.146096,-3.178419,-3.2948828,-3.2974815,-2.0830963,-3.652887,-3.6971407,-4.0992923,-4.275233,-4.279636,-4.247217,-4.1883655,-4.0910745,-2.9908376,-3.1185653,-3.6940236,-4.084816,-4.162562,-4.1698346,-4.186667,-4.2429338,-4.2346473,-4.1916227,-4.198538,-4.1892705,-4.0588455,-3.9964156,-4.2268395,-1.37662,-3.859776,-4.098756,-4.25136,-4.278499,-4.2592635,-4.237724,-4.1994443,-4.1677885,-4.1509614,-4.1069584,-4.0810676,-1.0752726,-3.0619278,-3.8453832,-4.0471587,-4.166201,-4.2011924,-4.0994477,-4.332445,-4.3225837,-4.2892413,-4.2482686,-4.2018228,-3.8160553,-4.055151,-4.116901,-4.2637773,-4.2284265,-4.165893,-4.103643,-4.052301,-4.0926676,-4.084787,-4.0712,-4.037844,-4.0400467,-3.8380432,-4.115867,-4.1652465,-4.0429587,-4.057668,-4.0051503,-4.073815,-4.0734477,-4.100286,-4.121898,-4.1080894,-4.0345545,-4.0166364,-3.954105,-3.6972175,-1.7777753,-3.7838407,-3.9569526,-4.126901,-4.133883,-3.6880713,-3.1656265,-4.0842547,-4.185531,-4.2336235,-4.2857804,-4.215261,-4.160525,-4.216028,-4.207249,-4.0858784,-4.1825395,-4.2015047,-4.2013955,-4.1520543,-4.1309237,-4.11906,-4.1298923,-4.1642613,-4.2431874,-3.99861,-4.0014057,-4.1213155,-4.0454473,-2.44352,-3.7468972,-2.8730628,-3.9298482,-4.190098,-4.0470386,-3.804585,-4.0286365,-4.2215695,-4.183245,-4.182441,-4.168885,-4.157927,-4.256088,-4.215487,-3.947085,-3.6365294,-3.9068131,-4.0435343,-4.1022997,-4.082991,-4.13667,-4.1557107,-4.192201,-4.128677,-4.2159624,-4.050946,-3.8281565,-4.0145626,-4.2398267,-4.2175994,-4.0808187,-4.0587106,-4.1756325,-3.9284506,-3.6724799,-3.7638965,-4.113503,-4.2570076,-4.187528,-4.1777854,-4.0419445,-4.0993347,-4.0381303,-3.9032645,-3.6606266,-3.8991885,-4.246712,-4.0722904,-4.048639,-4.035556,-4.0833864,-4.085613,-3.981336,-4.060801,-4.0029316,-4.0246043,-4.1474557,-4.159325,-4.1904664,-4.1960545,-4.093639,-4.049084,-4.064483,-4.3474207,-4.2941895,-4.2120047,-4.06286,-4.123884,-4.2959886,-4.2481933,-4.1432266,-2.9656997,-3.2271624,-3.756814,-3.9749131,-4.1053214,-4.1146703,-3.9453673,-3.7679868,-4.070537,-4.0774446,-4.16603,-4.085363,-4.2110076,-4.315719,-4.283116,-4.20847,-4.0729046,-4.1634665,-4.027542,-3.509153,-4.037354,-4.3069773,-4.251432,-4.205646,-4.2747016,-4.254914,-4.2353234,-4.1495414,-4.2228856,-4.2496333,-4.232234,-4.210317,-4.1862106,-4.167587,-4.1607356,-4.165815,-4.1650167,-4.1556783,-4.160106,-4.189055,-4.0767984,-4.155922,-4.090031,-4.138616,-2.8051767,-4.028582,-4.2689524
+-0.90389246,-1.448214,-1.9056435,-2.1862757,-2.3744812,-2.510767,-2.6219244,-2.6095486,-2.3360722,-2.9041255,-3.0496154,-3.191255,-2.1856284,-3.7485242,-3.8932872,-3.9742508,-3.9522138,-3.3042336,-3.716782,-4.0615005,-4.144361,-4.102655,-4.0349603,-2.2246926,-3.8186946,-4.2773833,-4.3933234,-4.3712535,-4.410852,-4.4426417,-4.3135514,-4.374392,-4.088082,-4.0613246,-4.219424,-4.1682677,-4.1412897,-4.1109433,-4.0454717,-4.080178,-3.5377266,-3.891943,-3.9759593,-3.5980673,-2.377387,-3.2070189,-3.853231,-2.798159,-3.7884488,-4.159701,-4.2795925,-4.2887254,-4.306065,-2.2484496,-3.7523704,-4.2043533,-4.227301,-4.2477565,-4.2492266,-4.1541824,-4.1030583,-4.329722,-2.620297,-3.7979064,-4.1388,-4.2088146,-4.256997,-4.3217006,-4.3444476,-4.3513494,-4.329557,-4.3067203,-4.301163,-4.2855115,-4.279077,-4.2438927,-4.22769,-4.1966467,-4.191006,-4.177052,-4.1248193,-4.1044726,-4.1557226,-4.152941,-4.1428685,-4.1480584,-4.1223474,-4.07543,-3.6223865,-2.7937164,-3.067271,-3.950643,-4.0445027,-4.0649486,-4.0561066,-4.0820146,-4.1181073,-4.133433,-4.144479,-4.1255984,-4.1155887,-4.17338,-4.1864157,-4.18391,-4.1714816,-4.165089,-4.171164,-4.179445,-4.175671,-4.1499796,-4.1206875,-4.0997577,-4.0761533,-4.0844097,-4.0725503,-3.5437646,-2.7121303,-2.2650943,-3.409091,-3.7819586,-3.1108437,-4.158859,-4.2061687,-4.232727,-4.2084804,-4.195434,-4.185864,-4.177402,-4.1809716,-4.189022,-4.1873765,-4.197499,-4.180239,-4.131683,-3.8735242,-1.468513,-3.231355,-3.7565227,-4.013361,-4.083957,-4.1318974,-4.1547933,-3.3223746,-2.928247,-3.8933268,-4.2153463,-4.227013,-4.263744,-4.2651687,-4.126139,-3.9242644,-3.6867082,-4.1952205,-4.1996665,-3.0701585,-4.0019736,-4.1171994,-4.19784,-4.2045455,-4.241433,-4.238069,-4.2308583,-2.2460475,-3.1088266,-3.8904471,-3.382613,-4.1094003,-4.076896,-4.1273227,-4.156985,-4.200753,-4.227697,-4.2432165,-4.2289643,-4.2425475,-4.2431855,-4.2375083,-2.011541,-2.2479756,-3.6431165,-3.7885365,-3.8077874,-3.7876005,-3.8537965,-3.8296528,-3.8818212,-3.9327865,-3.9639497,-3.9642663,-2.485025,-3.6802144,-3.9044538,-3.8989434,-3.9198575,-3.9391942,-3.9668512,-4.0383134,-3.9291244,-3.8729596,-3.8535905,-3.8735662,-3.8940969,-3.7994823,-3.9534144,-3.9575963,-4.046435,-3.9609132,-3.9480171,-3.895403,-3.915917,-3.8727508,-3.8358817,-3.8600473,-3.9680066,-3.8697143,-3.8388877,-1.9515405,-2.6787882,-3.58488,-3.8689022,-3.799286,-3.760501,-3.9491205,-3.763537,-3.856505,-3.8791633,-3.8984923,-3.808125,-3.7985616,-3.9097257,-3.8778791,-3.788775,-3.8975453,-3.8875175,-3.9113994,-3.8812847,-3.867344,-4.0258255,-3.8250484,-3.7940784,-3.8345494,-3.8549194,-4.058233,-4.1128507,-4.058544,-4.120483,-2.3988402,-2.9807782,-3.23326,-3.525815,-3.6859317,-3.8700123,-3.6402981,-3.6442502,-3.735433,-3.692268,-3.7242389,-3.7021098,-3.7025485,-3.6668835,-3.6517286,-3.676262,-3.6459873,-3.6389303,-3.7151427,-3.6347847,-3.6903558,-3.5465534,-3.4577715,-3.4411125,-3.5081735,-3.4570775,-3.5788417,-3.7897577,-3.7980275,-3.746573,-3.7792401,-3.8898482,-3.886444,-3.8557487,-3.967711,-3.8646731,-3.8797154,-4.0110993,-3.9986458,-3.8296099,-3.7325158,-3.7531419,-3.711495,-3.639966,-3.6331468,-3.8846421,-3.7790742,-3.753799,-3.8653493,-3.8772383,-4.018374,-3.9623122,-3.9282556,-4.039417,-3.9784498,-3.9528527,-3.9996333,-4.0642557,-4.0981245,-4.045646,-4.0898013,-4.0786157,-4.137906,-4.017387,-3.9213414,-3.9490347,-4.000625,-4.129005,-4.043202,-3.980885,-4.001097,-3.999629,-2.0387962,-3.9769254,-3.9844027,-4.030315,-4.169423,-4.2658944,-4.3046007,-2.7405574,-4.065697,-4.253803,-4.348414,-4.4454694,-4.315414,-4.2866693,-4.326589,-4.416516,-4.4704804,-4.3475766,-4.475903,-2.3866181,-3.9230647,-4.044666,-4.06868,-4.101456,-4.1234317,-4.128081,-4.155391,-4.092898,-4.082992,-4.111891,-4.1347423,-4.126598,-4.0926204,-4.0739675,-4.065804,-4.050712,-4.061139,-4.0390334,-4.0115223,-3.9500613,-4.1056666,-4.053869,-4.134649,-4.0493236,-3.9997888,-4.1837916,-4.0912385
+-1.0774007,-1.4452991,-1.8162582,-1.9807999,-2.0363617,-2.1831536,-2.2732081,-2.3297796,-2.0378447,-2.7334185,-2.8321488,-2.8759184,-2.527254,-3.0639038,-3.166328,-3.2737966,-3.2806158,-3.214014,-3.2140157,-3.2668042,-3.4394774,-3.3851416,-3.0795457,-2.050447,-3.7821136,-3.9190693,-3.7698693,-3.8950648,-3.8792558,-3.7803736,-3.797247,-3.8291664,-3.7637591,-3.6524854,-3.727664,-3.7290416,-3.8079963,-3.5472507,-3.2945461,-3.8460364,-3.8880901,-3.892407,-3.8836017,-3.8976622,-1.7813044,-3.0437498,-3.2353487,-3.4209156,-4.1387444,-4.3002386,-4.3875604,-4.4704165,-4.454255,-3.2755542,-3.6039174,-3.3707492,-4.261272,-4.3168902,-4.326767,-4.283495,-2.6638613,-4.033029,-2.6240492,-3.9186568,-4.1665254,-3.8587823,-4.0703216,-4.092691,-4.193863,-4.186085,-4.1593804,-4.074469,-4.1600394,-4.1423154,-4.097227,-4.0844517,-4.066716,-4.051519,-4.044295,-4.0312076,-2.9808078,-3.1004567,-3.9500437,-3.9987907,-4.019344,-3.9867034,-3.9706244,-3.9523296,-2.7602243,-3.7936826,-3.8003917,-4.0860715,-4.1079497,-4.086482,-4.1022916,-4.095968,-4.103188,-4.1079845,-4.1025796,-3.2915394,-2.6289315,-3.9422083,-4.079305,-4.118942,-4.1238027,-4.109794,-4.147453,-4.1344504,-4.148115,-4.1323557,-4.1058335,-4.103168,-4.0902667,-4.102361,-4.1047072,-4.0905566,-3.73976,-3.106368,-3.998259,-3.6554227,-2.79875,-3.8171601,-4.212717,-4.2498884,-4.2243495,-4.197742,-4.195437,-4.2013717,-4.211804,-4.246,-4.2504363,-4.278791,-4.227633,-4.1001296,-4.1118846,-2.655741,-2.076729,-3.365813,-4.1857753,-4.30537,-3.9567742,-4.057448,-2.3025355,-3.6753907,-4.244697,-4.365046,-4.420436,-4.4512687,-4.4540186,-3.6939116,-3.4520595,-4.0190167,-3.3200235,-4.117597,-4.2258134,-4.4054723,-4.5227695,-4.457358,-4.422402,-4.3689895,-4.3209596,-4.282419,-4.082067,-4.047824,-4.3452067,-4.1398,-4.3590417,-4.4249735,-4.370374,-4.326219,-4.2884116,-4.2682643,-4.2253737,-4.199369,-4.1974483,-4.179466,-4.0613647,-2.0299609,-2.483494,-3.4134922,-4.090041,-4.182901,-4.1435227,-3.7825446,-4.1794677,-4.2459226,-4.463115,-4.540068,-4.5132823,-2.9217408,-3.7956223,-4.1467037,-4.199378,-4.3687644,-4.4429545,-4.5039907,-4.538964,-4.459864,-4.429284,-4.3929625,-4.4011765,-4.362285,-3.6513205,-3.1072757,-4.128466,-4.449363,-4.3704076,-4.3932123,-4.4220243,-4.4090323,-4.359139,-4.2919445,-4.305863,-4.322781,-4.307613,-4.296784,-4.2147803,-2.5335388,-3.859715,-3.6816974,-4.2120657,-2.9863644,-4.1086717,-4.088,-4.4131207,-3.9533215,-4.2873836,-4.2588096,-4.363841,-4.469921,-4.4731774,-4.5670533,-4.468189,-4.39229,-4.4488354,-4.526708,-4.41839,-4.3990526,-4.35869,-4.3584094,-4.3152356,-4.4810185,-4.441273,-4.406016,-4.281608,-4.3268514,-3.776328,-2.9457579,-3.769332,-4.234632,-4.230343,-3.785554,-4.1699467,-4.1284595,-4.0527997,-4.2375574,-4.3926697,-4.412991,-4.4054737,-4.433866,-4.5542207,-4.5267305,-4.2464757,-4.162232,-4.2501245,-4.2513223,-4.231569,-4.318223,-4.3010764,-4.386684,-4.4486556,-4.4191136,-4.4940414,-4.3420024,-4.5251536,-4.336184,-4.418245,-4.4272985,-4.3222346,-4.3364277,-4.132527,-4.046516,-4.2102904,-4.175863,-4.198115,-4.072419,-4.0327153,-4.0295215,-3.941667,-3.9141245,-4.0721273,-4.069341,-4.0401483,-4.0290666,-4.0471787,-3.881433,-3.6441226,-3.9453893,-3.8895836,-4.0438113,-3.9927845,-3.9828343,-3.1180587,-3.8485007,-3.9303455,-4.0289617,-4.0775585,-4.000233,-3.9573026,-3.8714743,-3.9282498,-3.9599128,-3.9530807,-3.913692,-3.9204636,-3.863892,-3.9410348,-3.8858132,-3.7813573,-3.8540468,-3.860909,-3.9002843,-3.8912148,-3.806869,-3.8904219,-3.8515835,-3.697352,-3.679912,-3.6196234,-3.6796293,-3.8650193,-3.9273987,-3.995603,-3.9447002,-3.9654145,-3.9708,-4.009709,-2.4535284,-3.5970914,-3.8704839,-4.2076097,-4.10903,-4.167044,-4.156669,-4.219065,-4.049781,-4.1468215,-4.0736427,-4.061105,-4.0011134,-3.9734516,-3.9118714,-3.8754334,-3.901033,-3.9159904,-3.8777037,-3.7806668,-3.854135,-3.8748665,-3.870523,-3.8552585,-3.8718848,-3.7267537,-3.7871795,-3.6817641
+-1.2491803,-1.3684366,-1.8527219,-2.2328377,-2.3359594,-2.3575993,-2.4041882,-2.0735655,-2.907269,-3.2395253,-3.3390634,-3.272979,-3.2492013,-3.210644,-3.3026736,-3.4162807,-3.4294515,-3.3966153,-3.3356276,-3.0253298,-3.7932906,-3.3511238,-2.9998093,-4.1027274,-4.5830455,-4.4371214,-4.34699,-4.2604594,-4.1100807,-4.1071143,-4.111315,-3.978022,-3.8755212,-3.8690715,-3.8944526,-3.8620806,-3.872909,-3.4848566,-3.05365,-4.2317595,-4.312779,-4.408044,-4.249919,-2.8493311,-3.6356895,-3.9500346,-4.814318,-4.5682087,-4.585323,-4.4146485,-4.303587,-4.301197,-4.023582,-4.411349,-3.7311888,-3.6817946,-4.341566,-4.7319484,-4.531036,-4.1341915,-2.981026,-3.238784,-3.4584272,-4.6157165,-4.6257157,-4.1232047,-4.706972,-4.7726517,-4.670093,-4.4895005,-4.443007,-3.9757676,-3.8845477,-4.040721,-4.6182504,-4.7758183,-4.682758,-4.544351,-4.4137645,-4.3330894,-4.063174,-4.11667,-4.408135,-4.355711,-4.1163354,-3.9353714,-3.4852955,-3.6748967,-3.4818661,-3.8418016,-4.567165,-4.6141715,-4.173485,-4.6514316,-4.791149,-4.693915,-4.580005,-4.3839874,-4.4263372,-4.340858,-3.922893,-3.9336085,-4.6445246,-4.628275,-4.6333084,-4.5771275,-4.4335895,-4.0024686,-3.7340484,-4.2052464,-4.489751,-4.4495454,-4.340538,-4.3166966,-4.238059,-4.256969,-4.177876,-4.152151,-3.0172057,-3.0312216,-3.2040176,-3.38351,-4.0386252,-4.6686883,-4.273957,-4.2071157,-4.5505843,-4.588875,-4.1002975,-4.4936805,-4.7992797,-4.520232,-4.2042494,-4.8004847,-4.3646426,-4.0399985,-2.9944544,-3.4060872,-3.216624,-3.6630888,-4.132096,-3.3223238,-3.3001556,-3.8846698,-4.504401,-4.614696,-4.633147,-4.636853,-4.5699067,-4.0957026,-4.380384,-4.2383275,-4.1341844,-4.485555,-4.5199227,-4.5329175,-4.452872,-4.589149,-4.6008945,-4.57593,-4.358628,-4.4731784,-4.5684876,-4.3916783,-4.365402,-3.9482493,-3.9364762,-4.2711163,-3.4090085,-4.343102,-4.5654397,-4.5663466,-4.477199,-4.40499,-4.318053,-4.3121037,-3.4226716,-2.9604635,-3.2341113,-3.720789,-4.058191,-4.1640058,-4.1218505,-4.237716,-3.8999805,-4.2909846,-4.5773835,-4.5878468,-4.431907,-4.3438053,-4.0918546,-4.229528,-4.304635,-4.3323298,-4.342314,-4.2967143,-4.1988277,-4.1835504,-4.2040186,-4.21285,-4.2213807,-4.0998483,-3.9639964,-3.6476955,-4.0214667,-4.161242,-4.1017156,-4.0092025,-3.9909773,-3.9157615,-3.8669076,-3.8934426,-3.8887253,-3.8702884,-3.9033418,-3.885127,-3.2861328,-2.935317,-3.9435744,-4.214355,-4.296597,-4.1746216,-4.1945558,-2.8032725,-4.0507627,-3.8813853,-3.1857917,-3.9533982,-4.255571,-4.4249864,-4.5012355,-4.540713,-4.219415,-4.321218,-4.3413777,-4.343761,-4.2617087,-4.1335993,-4.1105247,-4.047631,-4.067365,-4.1618104,-4.1361866,-4.120485,-4.040793,-4.020274,-3.8068223,-2.6861262,-3.9180436,-4.3776975,-4.4270444,-4.048648,-4.130506,-4.2190356,-4.104934,-4.3555923,-4.415953,-4.335608,-4.228206,-4.170134,-4.2100525,-4.129599,-3.8882241,-3.9890866,-3.9832015,-3.9833317,-3.928545,-3.9893227,-4.0003514,-3.9946175,-3.9059014,-3.8685389,-3.8746958,-3.715509,-3.8123746,-3.8192363,-3.7899556,-3.8175907,-3.8353558,-3.8299918,-3.7902389,-3.6789804,-3.7918577,-3.857956,-3.822722,-3.815267,-3.8215084,-3.7923174,-3.7175474,-3.7242389,-3.7602715,-3.746471,-3.7082753,-3.7173915,-3.7103424,-3.5346923,-3.4927034,-3.7736793,-3.7054787,-3.7565808,-3.8092241,-3.8130794,-3.189014,-3.871817,-3.8805332,-3.867577,-3.9689517,-3.9222236,-3.8203483,-3.7653403,-3.8421102,-3.8896508,-3.8518853,-3.8741126,-3.8655248,-3.8785481,-3.9145985,-3.8852315,-3.8211904,-3.8513083,-3.8188205,-3.8888698,-3.9253044,-3.8452978,-3.8065748,-3.7910824,-3.8749185,-3.8834124,-3.8560348,-3.828671,-3.9882808,-3.9739127,-3.9464746,-3.9647126,-3.9626927,-3.905167,-3.9191442,-2.3350048,-3.9404979,-4.411999,-4.4777045,-3.9268475,-3.9744143,-3.4282753,-4.2178926,-3.2214344,-4.465225,-4.663422,-4.67961,-4.681564,-4.61606,-4.4315243,-4.290893,-4.2957273,-4.3197465,-4.2609725,-4.181436,-4.2021604,-4.1447797,-4.1048875,-4.08962,-4.0544963,-3.934667,-4.057216,-3.9158254
+-0.6952216,-1.1225889,-1.2598517,-1.7222419,-1.8870502,-1.9418368,-1.7285192,-1.8015399,-1.8912678,-1.7595637,-1.8297212,-1.7696178,-1.0302072,-0.32813865,-1.0285177,-1.9192901,-2.2740119,-2.3837788,-2.7835689,-3.280249,-3.5572784,-3.4898376,-3.702757,-3.7604938,-3.724172,-3.7550988,-3.7746248,-3.8186722,-3.8675117,-3.894033,-3.92983,-4.0634327,-4.0561357,-4.123648,-4.171233,-3.9905334,-4.094033,-4.225817,-4.0851774,-3.4431696,-3.914178,-3.707109,-3.8381133,-4.0015607,-4.0256076,-4.2504125,-4.2304196,-4.1707745,-4.052407,-4.105335,-4.084799,-3.3573117,-4.196798,-4.3948455,-3.276469,-2.691083,-3.063181,-3.7440476,-3.919867,-4.0465813,-2.7935176,-3.420023,-3.7398314,-2.9873228,-3.6829402,-3.6766376,-3.8245645,-3.8794293,-4.0405984,-4.002719,-3.3227515,-3.9861999,-2.5867593,-3.4344916,-3.8936162,-3.8719478,-4.038986,-3.9732642,-4.217527,-2.8214104,-3.7228684,-3.9235253,-2.838085,-3.583045,-4.0183816,-3.18211,-3.7437472,-3.863885,-3.9136577,-3.985558,-3.9471178,-4.1315684,-4.205815,-3.2310324,-3.7569184,-3.5764554,-3.9427729,-3.2025337,-3.9481359,-3.8464017,-4.022205,-3.594694,-3.514633,-3.4325702,-3.9387698,-3.9117656,-3.920514,-3.8564873,-3.9485831,-3.8861456,-3.2004292,-3.835719,-4.0125217,-2.7607737,-3.6138294,-3.8317099,-3.8654022,-3.8948545,-4.0769715,-4.2299924,-4.2740645,-4.0166445,-3.4442818,-4.1126685,-3.8249106,-3.7024608,-4.0844893,-4.174708,-4.308419,-4.0282335,-4.2705717,-4.436877,-4.355327,-4.1538577,-4.1669455,-4.27866,-3.1725433,-4.1637597,-4.3864503,-3.3937922,-4.0194206,-4.315182,-4.4354405,-4.4557533,-3.9573407,-4.1513133,-3.5944493,-4.337922,-4.502954,-4.299428,-3.9136963,-4.400965,-4.445947,-4.424113,-4.170766,-4.1821446,-3.850387,-3.9103131,-4.1132884,-4.2294908,-3.500541,-3.8825788,-4.3351007,-4.389134,-4.14109,-4.2989306,-4.469019,-4.495148,-4.193065,-4.354191,-4.1153865,-4.075231,-4.329876,-4.313583,-4.405997,-3.6103122,-3.6932507,-2.8661852,-3.4221897,-3.9055061,-4.1387715,-4.2167883,-4.1387596,-4.2175994,-4.1696277,-3.088408,-3.0917168,-3.8790689,-3.890304,-3.9264379,-3.9503808,-4.229792,-4.2451043,-4.2284536,-3.9785657,-4.118034,-4.1220245,-4.1911397,-3.5361166,-4.084036,-3.932076,-3.9684653,-4.160838,-3.9154258,-4.145863,-3.1588202,-3.6739776,-4.05704,-4.094436,-4.0754895,-4.187267,-4.1666675,-4.238891,-3.118723,-3.5101662,-3.7806973,-3.9486532,-3.9902635,-4.062424,-4.112822,-4.0097795,-4.0248904,-4.036871,-3.9300475,-3.766477,-3.923944,-3.9747381,-4.0416822,-3.994985,-4.045494,-3.887857,-3.671301,-3.577238,-3.4115732,-3.2612083,-3.3069086,-3.3203838,-3.3270874,-3.2847824,-3.1361697,-3.1292355,-2.7535322,-2.835051,-2.7557263,-2.6916156,-2.7170546,-2.761951,-2.8205805,-2.7778606,-2.5081697,-2.5495262,-2.6400464,-2.6690707,-2.6179047,-2.6965003,-2.7456362,-2.7751572,-2.7015975,-2.6650152,-2.7455983,-2.7343946,-2.7261584,-2.784771,-2.656497,-2.694206,-2.6602373,-2.6608,-2.7571216,-2.7878673,-2.4124398,-2.6207867,-2.6592395,-2.6190243,-2.641727,-2.6925988,-2.6405761,-2.678796,-2.6534667,-2.696792,-2.686173,-2.6385345,-2.5357685,-2.5797458,-2.5856383,-2.6175802,-2.5922117,-2.5138273,-2.449877,-2.4374135,-2.4241161,-2.4288201,-2.3993297,-2.3469625,-2.23103,-2.33154,-2.4000351,-2.422777,-2.3396683,-2.433145,-2.4785998,-2.4639125,-2.4114962,-2.4103546,-2.4647365,-2.3279426,-2.435369,-2.437846,-2.3420515,-2.336038,-2.4409072,-2.4592757,-2.4869108,-2.500254,-2.459766,-2.4147,-2.4442298,-2.4837809,-2.318346,-2.2790132,-2.14624,-2.2742968,-2.2488532,-1.9885666,-1.8906448,-2.144304,-2.2224317,-2.1464005,-2.0403838,-2.2149825,-2.3419614,-2.3908906,-2.4467227,-2.396553,-2.4112673,-2.448863,-2.4341478,-2.3850026,-2.3557901,-2.1814113,-2.23658,-2.2127695,-2.1964102,-2.1061468,-2.061599,-2.1078029,-2.2292557,-2.1122973,-2.0921774,-2.0748115,-2.1228962,-2.1013055,-2.0804725,-1.8192482,-1.56358,-1.8774719,-2.2632515,-2.0593905,-1.784008,-1.8138189,-1.2849715,-0.9429576,-1.275249,-1.2691519,-0.79953796,-0.45305723
+-0.19694614,-0.24407667,-0.5172119,-0.5721677,-0.7587685,-0.821855,-0.9795994,-0.76438135,-1.1872723,-1.1236546,-0.9917298,-1.3020539,-1.1072004,-0.97568685,-1.5564885,-2.038845,-2.084928,-2.3136823,-3.024586,-3.3032496,-3.3717194,-3.408134,-3.4041133,-2.7840507,-3.193246,-3.3265705,-3.3698242,-3.403263,-3.4177253,-3.4240346,-3.4545133,-3.498192,-3.5174382,-3.568362,-3.6078734,-3.445499,-3.5024614,-3.6466358,-3.545959,-3.3477178,-3.3355827,-3.4129632,-3.4889596,-3.536583,-3.5552087,-3.649309,-3.730544,-3.7730947,-3.7127147,-3.6664689,-3.6619534,-3.5052905,-2.6961498,-3.9931526,-2.8299375,-3.9365826,-3.9927964,-3.9395185,-3.8344002,-3.3176546,-2.8589845,-2.9067562,-3.6407237,-2.8173218,-3.6143475,-3.8700619,-3.6829028,-3.746533,-3.74087,-3.6596134,-2.1769714,-3.2774005,-2.7146297,-3.558589,-3.3457813,-3.8603716,-3.836616,-3.0136683,-3.7612157,-3.619851,-3.8915234,-3.7224927,-2.5369537,-3.784021,-3.8839889,-3.7704682,-3.9886022,-3.7968736,-3.7901359,-3.7194214,-3.6385045,-3.8408642,-3.644431,-3.83776,-3.5649028,-3.788126,-3.884603,-2.855904,-3.7685337,-3.6928253,-3.8249226,-2.9626667,-3.3373275,-3.593566,-3.73986,-3.7464824,-2.5130847,-3.6142666,-3.792491,-3.754057,-3.5649781,-2.532753,-3.5805109,-2.4579895,-3.5844293,-3.663642,-3.6294599,-3.654002,-3.8043246,-3.747747,-3.5329738,-3.3633618,-3.6430702,-3.8329449,-3.846037,-3.6406624,-3.7988977,-3.7895865,-3.7404385,-3.7555676,-3.6671042,-3.196788,-2.192761,-3.3224554,-3.5546162,-3.7424726,-3.7723675,-3.7168374,-3.834867,-2.0136805,-3.2970629,-3.5790133,-3.7875533,-3.853701,-3.6752787,-3.6982226,-3.6248221,-3.8241806,-3.779573,-3.8317761,-3.7022223,-3.8616385,-3.913056,-3.8779645,-3.9059596,-3.9206462,-1.7679257,-3.5656626,-3.6877103,-2.8452792,-3.6675332,-3.7351604,-3.8012261,-3.8736043,-3.6366737,-3.662249,-3.8639617,-3.7363,-3.4293942,-3.9472427,-3.8358746,-3.8115764,-3.8713708,-3.7726855,-3.876163,-2.9086375,-3.1938796,-3.5630062,-3.7074032,-3.7374606,-3.8474092,-3.878673,-3.8336082,-3.894113,-3.8175502,-3.8221188,-3.3097472,-3.731895,-3.773128,-3.8058782,-3.924944,-4.06394,-3.9713058,-3.7219462,-3.7517548,-3.6910906,-4.034643,-3.8830342,-3.9031315,-3.8954887,-3.7762394,-3.7293,-3.9227858,-4.008011,-3.9896984,-3.8721738,-3.8244472,-4.0485387,-3.8609748,-4.00857,-3.9519825,-3.873135,-3.996756,-3.8512268,-3.920854,-3.9733977,-3.9907484,-3.9553647,-3.9610896,-3.9401593,-3.7691498,-3.7387738,-3.9071317,-3.7537494,-3.5739174,-3.8653407,-3.8402123,-3.803967,-3.8207479,-3.9134889,-3.6837225,-3.5119596,-3.4799566,-3.7762933,-3.4645383,-3.639114,-3.4640071,-3.5815306,-3.3621523,-3.4485154,-3.512549,-3.075638,-2.9000967,-2.9447598,-2.9693773,-2.8587208,-2.917441,-2.8318133,-2.8330302,-2.7411404,-2.697012,-2.5357053,-2.3714213,-2.199339,-2.1640468,-2.1334105,-2.16396,-2.1254396,-2.1262805,-2.1372533,-2.1086607,-2.136425,-2.194706,-2.2530196,-2.2248077,-2.1199389,-2.1604414,-2.1777973,-2.1807237,-2.1581187,-2.087602,-2.0825737,-2.0705647,-2.0726895,-2.0634348,-2.0347915,-2.0848985,-2.0618114,-2.0740063,-2.074065,-2.0864863,-2.0822787,-2.1239913,-2.139348,-2.1362934,-2.1342216,-2.1655655,-2.179105,-2.1948419,-2.1951852,-2.1907985,-2.1952648,-2.1575441,-2.1558332,-2.1747293,-2.175065,-2.1571198,-2.126975,-2.1307602,-2.0997097,-2.0540543,-2.0178847,-1.9906483,-2.0021305,-2.0105143,-1.9168904,-1.9376369,-1.9811292,-2.0129008,-2.016073,-1.987649,-2.0066643,-2.0543976,-2.0259848,-2.04852,-2.028519,-1.9700656,-1.9141395,-1.940978,-1.8797569,-1.8975489,-1.862721,-1.740319,-1.737597,-1.7263949,-1.8535182,-1.6493225,-1.7026029,-1.6634085,-1.6658285,-1.6733966,-1.6655338,-1.7053306,-1.7314808,-1.7661695,-1.7298338,-1.7556596,-1.7315736,-1.6546822,-1.7193687,-1.841928,-1.7456563,-1.7188334,-1.768218,-1.8197994,-1.908371,-1.8721311,-1.8389292,-1.7973495,-1.8705182,-1.8387895,-1.6703641,-1.4553757,-1.3136551,-1.408473,-1.6196115,-1.4979382,-1.3759699,-1.2035725,-0.90300864,-0.42294288,-0.15159059,0.05811906,0.21713117,-0.16875517
+-1.2521257,-2.0931616,-2.7473197,-2.8500113,-3.039646,-2.9968376,-3.0183916,-3.084225,-3.0038412,-3.1348977,-3.133834,-3.143481,-3.4447966,-3.5095325,-3.3718266,-2.2349505,-3.415402,-3.6946583,-3.6825137,-4.1700654,-4.1787086,-4.173199,-4.1730456,-3.2972527,-2.854907,-3.5287633,-3.9221463,-3.870358,-4.08176,-4.052222,-4.073879,-3.8629584,-4.3260446,-4.3747177,-4.390616,-4.269649,-4.1970396,-4.2094107,-3.7458577,-4.0556273,-4.233478,-4.30146,-4.100661,-4.229687,-4.522863,-4.4961424,-4.4055114,-4.381245,-4.2126513,-4.079003,-3.9925427,-3.8416018,-2.2225823,-3.9606438,-4.2009864,-3.8093143,-4.3693175,-4.4546795,-4.447112,-4.1926556,-3.2067287,-3.9624376,-4.4335847,-3.501637,-4.264014,-4.504336,-4.3701525,-4.348546,-4.3448853,-4.3150125,-3.1795523,-4.2691135,-3.9570231,-4.4416695,-2.4931774,-3.7891688,-4.302991,-4.2931585,-4.2940955,-4.4383507,-4.4643517,-4.359526,-2.5169277,-3.9658017,-4.3237834,-4.361951,-4.488909,-4.2986717,-4.289358,-4.254773,-4.170382,-4.136579,-4.3146124,-4.1708856,-4.1917167,-4.328599,-4.1644263,-2.0220704,-3.7662482,-3.9417944,-3.7354693,-2.4139256,-3.5186868,-4.100211,-4.2546115,-4.3647294,-4.427424,-4.35482,-4.3991885,-4.230695,-4.157772,-4.0521746,-3.7181067,-2.4867468,-3.901813,-4.254908,-2.8582783,-3.3983936,-4.0932198,-4.3284526,-4.459081,-4.4559608,-4.2963824,-4.318585,-4.3702683,-4.090463,-4.4283175,-4.432137,-4.4142046,-4.4010835,-4.404921,-1.7484512,-3.7551808,-4.2520995,-4.4593635,-4.5752096,-4.5861773,-4.469728,-4.460241,-4.358143,-4.1230016,-3.793477,-4.5884843,-4.613487,-4.489555,-4.3752513,-4.3188496,-4.4397855,-4.4202266,-4.4452653,-4.4320226,-4.468117,-2.4817107,-4.19088,-4.4415603,-4.5206084,-3.6626217,-2.5903943,-3.8848886,-2.9803424,-4.1500654,-4.6226354,-4.742,-4.9164433,-4.532415,-4.501687,-4.787035,-4.667033,-4.449798,-4.57336,-4.668878,-4.5430484,-3.327143,-4.1609416,-4.1601996,-3.1299987,-4.3415346,-4.37622,-4.4502625,-4.575292,-4.6802673,-4.705763,-4.6202126,-4.561122,-4.549476,-4.493042,-4.2620597,-4.13753,-4.318416,-4.2440743,-4.312737,-4.571016,-4.540361,-4.3799324,-4.238985,-4.3485885,-4.567366,-4.6000657,-4.6111703,-3.7218118,-4.144612,-4.3378844,-4.4145513,-4.495096,-4.5362906,-4.435206,-4.3777366,-3.8163548,-4.2564125,-4.4160457,-4.413673,-4.275026,-4.30254,-4.408048,-4.386892,-4.439917,-4.4487677,-4.4772944,-4.47552,-4.4542003,-4.397635,-4.306046,-4.385516,-4.3825707,-4.207762,-4.296094,-4.4136224,-4.389335,-4.4243894,-4.407531,-4.2729993,-3.9279203,-3.843194,-4.066536,-3.9366474,-4.335525,-3.9771967,-3.7826495,-3.947432,-4.04495,-4.0028744,-3.116033,-3.3802319,-3.6098711,-3.6846912,-3.593586,-3.5740838,-3.4772034,-2.1110415,-2.4360256,-2.66284,-2.7750745,-2.81703,-2.8722165,-2.9617844,-2.975204,-2.9912286,-3.0243475,-2.9501324,-3.0091658,-2.9772162,-2.9482265,-3.118675,-3.10642,-2.981408,-3.0125732,-3.051489,-3.0819762,-3.0414705,-2.9739513,-3.0039315,-3.0314212,-3.0101395,-2.988225,-3.016056,-3.012432,-2.9509459,-2.9539866,-2.8978713,-2.93825,-2.9103253,-2.847692,-2.860045,-2.8555882,-2.8982148,-2.852183,-2.8495378,-2.8152242,-2.8784204,-2.8852654,-2.901657,-2.8920722,-2.849897,-2.792778,-2.8411126,-2.84237,-2.8838563,-2.9010189,-2.9673476,-2.9356735,-2.9246771,-2.9313898,-2.9082642,-2.8050241,-2.7074552,-2.6701226,-2.8629456,-2.8957474,-2.8597064,-2.9757028,-2.92474,-2.8912034,-2.885466,-2.8559604,-2.8511097,-2.8177211,-2.5513358,-2.6960237,-2.7466917,-2.7367787,-2.7030542,-2.6111445,-2.414193,-2.3025703,-2.0090604,-1.9627514,-1.7791133,-1.9026909,-2.1676364,-2.2882268,-2.400322,-2.4537644,-2.4269507,-2.4796076,-2.5564392,-2.547755,-2.6325226,-2.4636116,-2.0899787,-1.6657002,-2.0834703,-2.3659465,-2.4632382,-2.5597692,-2.6397018,-2.6454618,-2.6481647,-2.735537,-2.6866672,-2.401003,-1.9795833,-1.8717916,-1.5608034,-1.1393635,-1.5075688,-1.9678135,-1.7600543,-1.0878623,-0.92050093,-0.9958307,-0.82828254,-1.0657465,-1.574733,-2.1954496,-2.6872826
+0.0017246008,-1.2103782,-1.9647918,-2.5033388,-2.73205,-2.9301405,-3.1627355,-3.3316908,-3.3476453,-3.2208428,-3.5696902,-3.5344882,-3.4167256,-3.423061,-2.985069,-3.0359597,-3.2583978,-2.989687,-3.5804846,-3.836246,-3.7162604,-3.9102402,-4.05346,-4.0082355,-3.9904532,-4.008474,-2.785993,-3.514696,-3.670514,-3.682295,-3.605886,-3.847752,-3.901157,-4.012309,-4.2419868,-4.325897,-4.164617,-4.2804227,-2.647552,-3.8853478,-4.0417724,-3.8592038,-3.980157,-3.9029937,-4.149264,-4.2843146,-4.2452984,-4.3833613,-4.280279,-4.2488036,-4.245179,-4.2603674,-2.9897876,-4.180029,-3.3101792,-4.061972,-4.252169,-4.2693343,-4.2725644,-4.361743,-3.5530326,-3.81171,-4.23216,-3.4131613,-3.8582263,-3.9682856,-4.0440574,-4.1755004,-4.291228,-4.4335637,-4.4770937,-4.473561,-3.8346896,-4.3165317,-2.620185,-3.7939034,-4.2749786,-4.213988,-3.6577144,-4.2886558,-4.2219024,-4.441826,-4.012962,-4.3977265,-4.5468802,-4.5409966,-4.362114,-4.362263,-4.2765718,-4.3207197,-3.9489946,-4.236037,-4.3658323,-4.247845,-4.2802005,-3.6642106,-3.8958855,-3.022448,-4.139075,-4.5768332,-4.170845,-4.4330935,-4.5390263,-4.519668,-4.425785,-4.066524,-3.885919,-3.845842,-4.547983,-4.6556144,-4.644878,-4.485498,-4.334467,-3.9931502,-4.3395305,-4.4248786,-4.161409,-4.3220315,-4.3494935,-4.4329524,-4.5861773,-4.3952203,-4.1198697,-4.5114856,-2.4796839,-3.8191214,-4.5152593,-4.7001967,-4.8307614,-4.878465,-3.169622,-4.6099534,-2.4940133,-3.760548,-4.279571,-4.6109195,-3.5427604,-4.087521,-4.631615,-4.4579782,-4.1721206,-4.34316,-4.507172,-4.6932054,-4.8003144,-4.6845603,-4.653605,-4.137287,-4.548639,-4.856768,-4.939161,-4.8107953,-3.951777,-4.666097,-4.7615843,-4.8169866,-4.7107368,-2.9480004,-4.000974,-4.3611064,-4.6347513,-4.5195365,-4.6101103,-4.749044,-4.6668563,-4.662068,-4.7100654,-4.7338805,-3.3716404,-4.358212,-4.6362834,-4.570553,-4.67226,-4.5628457,-4.530756,-3.674511,-4.4086127,-4.515019,-4.599813,-4.714005,-4.640142,-4.6750774,-4.6910186,-4.786158,-4.7463155,-4.672598,-2.837535,-4.2055116,-4.6020083,-4.6891894,-4.5993905,-4.695007,-4.8081517,-4.669165,-4.6787105,-4.655255,-4.8140364,-4.7594686,-4.7359505,-4.5772586,-4.090614,-4.5233836,-4.4581,-4.593087,-4.6822095,-4.697619,-4.5617695,-4.3762574,-4.413509,-4.646258,-4.753015,-3.8574085,-4.4443355,-4.635098,-4.5580115,-4.6045213,-4.587667,-4.5924706,-4.6573257,-4.6541867,-4.6680846,-4.622073,-4.6433454,-4.656158,-4.537413,-4.590143,-4.726749,-4.663358,-4.615334,-4.612464,-4.266845,-3.8571692,-4.239128,-4.1323977,-3.9806175,-4.163077,-4.0519223,-3.7073913,-3.8050504,-3.820613,-3.4426882,-2.7404141,-2.6711237,-2.70474,-2.7189534,-2.5294242,-2.3210998,-2.2195532,-2.1038496,-2.0873713,-2.1299286,-2.0996232,-2.160276,-2.0548575,-2.012123,-2.094682,-2.2252345,-2.4021733,-2.2998185,-2.1081114,-2.0868647,-2.23781,-2.3729677,-2.3821125,-2.3081002,-2.4054534,-2.3343296,-2.3138647,-1.2257416,-1.4267924,-1.9659984,-1.9212017,-2.123787,-2.0414364,-2.1128864,-2.110262,-1.814085,-2.061077,-2.2767484,-2.22949,-2.2983184,-2.4007702,-2.3170304,-2.239985,-2.1280732,-2.1440327,-2.2453802,-2.1651688,-2.3250804,-2.3659158,-2.4339938,-2.4559417,-2.2316022,-2.116809,-1.9700441,-1.8669577,-1.9730096,-1.9029484,-1.7956705,-1.7311921,-1.71454,-1.8104129,-1.6630633,-1.4611645,-1.425883,-1.4693289,-1.6853657,-1.8873305,-1.9361618,-1.8279135,-1.9202802,-1.8216865,-1.9196613,-1.9252994,-1.8780041,-1.5195246,-1.1130083,-1.186768,-1.3859534,-1.3361547,-1.3297975,-1.202738,-1.0216897,-0.87825876,-0.7192084,-0.6796304,-0.4508286,-0.25625533,-0.8063515,-1.2080841,-1.0552673,-0.885994,-0.79219013,-0.783369,-0.6772751,-0.78335255,-0.8301019,-0.6855043,-0.45436543,-0.4638695,-1.2355552,-1.9537678,-2.1958094,-1.7933593,-1.7528667,-1.4008639,-1.4151409,-1.3229039,-1.2071109,-1.0245659,-0.7710313,-0.88321036,-0.9046456,-1.4931455,-2.0665817,-2.4218497,-2.6993668,-2.923791,-3.3349266,-3.3370066,-3.3462043,-3.3848982,-3.3938906,-3.5064535,-3.3688352
+0.0954006,-0.37467176,-1.2726045,-2.3115296,-2.854804,-3.125657,-3.2848344,-3.4484987,-3.340833,-3.3329995,-3.4384952,-3.252551,-3.2678106,-3.1106446,-2.9272194,-2.8180723,-2.4259653,-3.1838107,-3.611064,-3.8808079,-3.9500785,-4.0939445,-4.0555396,-3.9850411,-3.9028897,-3.8067474,-2.9639547,-3.584851,-3.8788714,-3.6518755,-3.7336345,-3.6602378,-3.7348332,-3.9942336,-4.259314,-4.178127,-4.0651813,-3.8707852,-3.5855627,-3.6870863,-3.9237719,-4.094433,-4.287843,-4.1935596,-4.146129,-3.9860106,-3.8782563,-3.8141465,-3.5553486,-3.462998,-3.395908,-3.2699397,-2.1447263,-3.7657332,-3.6923137,-4.121913,-3.9491768,-4.259831,-4.3088737,-4.2982273,-4.0529156,-4.103156,-4.216196,-3.8598437,-3.8997169,-3.9764447,-3.9573588,-3.8142695,-3.749875,-3.7472801,-3.654241,-3.6002617,-3.0183764,-3.588788,-3.1542475,-3.9087644,-4.3516088,-4.270873,-4.0905423,-3.924316,-3.990643,-3.7931137,-3.7638574,-3.7533956,-3.635874,-3.681663,-3.5894887,-3.4415526,-3.4878063,-3.595623,-3.020153,-3.6408353,-3.1709793,-3.6837606,-3.9246535,-3.863068,-3.8033767,-3.4877422,-3.866109,-4.046764,-3.9535785,-3.8732367,-3.7945347,-3.9699306,-3.932156,-3.2241657,-3.5301833,-3.5090308,-3.765246,-3.6919303,-3.5338213,-3.5567353,-3.520978,-3.410975,-3.9709473,-3.8198009,-3.7116928,-2.597324,-3.2061338,-3.463971,-3.4568155,-3.9175305,-3.9877992,-4.261398,-4.3921046,-4.256541,-4.2293763,-4.2114377,-4.072536,-4.0153294,-3.9544287,-3.7596064,-2.755091,-3.412275,-3.950376,-4.299107,-3.8127208,-4.145721,-4.3559813,-4.242496,-3.081584,-3.9413223,-4.2524886,-4.3159976,-4.2541485,-4.4407496,-4.4110236,-4.2335024,-4.091656,-3.9792552,-3.9129639,-3.8820453,-3.9339166,-3.847693,-3.6250482,-3.4838855,-3.457047,-2.3359,-3.170344,-4.099954,-4.3725257,-4.308851,-4.2486544,-4.4023714,-4.2737007,-4.4271646,-4.2708297,-3.3211305,-3.8728137,-4.184439,-4.2897296,-4.3474226,-4.2998376,-4.1816344,-4.345367,-4.256068,-4.0555463,-4.2073336,-4.2991433,-4.301559,-4.2182727,-4.0445027,-3.864046,-3.8579898,-3.8556423,-3.500094,-2.534306,-3.76375,-3.5230517,-3.9591446,-4.097874,-4.171779,-4.093692,-4.046084,-4.20668,-4.1366086,-4.0737104,-4.062554,-4.01889,-4.122461,-4.213823,-3.9273958,-3.9755716,-4.047767,-4.0116887,-4.0952244,-4.0350976,-4.0196757,-4.0922027,-4.000788,-3.9526596,-4.1262856,-4.0852866,-4.026475,-3.9308152,-4.009782,-4.0182176,-3.9007783,-3.853356,-3.8098774,-4.024162,-4.1288037,-4.013522,-4.1683807,-4.162915,-3.993576,-4.11569,-4.104508,-4.0809913,-4.1598067,-4.1556168,-3.3527188,-3.9246378,-3.7134461,-3.480095,-3.7166862,-3.7448688,-3.8093066,-3.7377076,-3.6997743,-3.3467474,-3.119972,-3.222792,-3.56283,-3.6776967,-3.606896,-3.2902632,-3.1110165,-3.0663054,-2.9220152,-2.7065892,-2.6014915,-2.4867697,-2.3516946,-2.348887,-2.2739391,-2.232286,-2.2600114,-2.242425,-2.1798086,-2.3506513,-2.2008262,-2.2828856,-2.13909,-2.0931559,-2.0970495,-1.9257462,-1.9899893,-1.5291708,-1.6289921,-1.6585364,-1.6720505,-1.8041377,-1.7128286,-1.6778717,-1.6287317,-1.7273273,-1.9039259,-1.9166453,-2.0194967,-1.842083,-1.8286564,-1.685425,-1.7252767,-1.7676799,-1.9598846,-1.8621058,-1.6825991,-1.6631176,-1.5801582,-1.6807883,-1.7517376,-1.5091677,-1.4033976,-1.4502716,-1.5724945,-1.7727332,-1.7238586,-1.4691622,-1.7586288,-1.7710688,-1.8074603,-1.7823534,-1.7491765,-1.7969503,-1.8666072,-2.083097,-2.1559708,-1.9219487,-1.802922,-1.9310498,-1.783421,-2.0528736,-1.9562829,-1.6895094,-1.5288417,-1.5831258,-1.5852396,-1.7664394,-1.8857298,-1.7481985,-1.3752253,-0.919727,-0.608153,-0.7044119,-1.3395641,-2.1494145,-2.6505358,-2.8169656,-3.1704907,-2.9616857,-2.5364883,-2.22577,-2.1331391,-2.057262,-1.9341831,-1.7988858,-1.7082844,-1.8145556,-2.3408093,-2.7451768,-3.0410132,-3.1151419,-2.91475,-2.6699142,-2.436491,-2.422671,-2.1408324,-2.009782,-2.0399652,-2.3581157,-2.8152041,-3.0150604,-3.2052352,-3.127788,-2.5769124,-2.9358377,-3.4382296,-3.4771867,-3.5125926,-3.5490932,-3.4716363,-3.5689526,-3.6992598,-3.6661303
+-0.0108496845,-0.49821502,-1.0779574,-1.6894708,-2.1025558,-1.9494042,-2.1279771,-2.2598763,-2.3323991,-2.4193196,-2.4649267,-2.465171,-2.7158666,-2.823395,-2.6888452,-2.1617024,-2.2235875,-2.4128027,-2.762091,-2.9327626,-2.9852908,-3.2223358,-3.219095,-3.3569632,-3.4320486,-3.4530425,-1.8033106,-2.5723898,-3.0412378,-2.0087347,-2.393127,-2.613747,-2.826841,-3.0135546,-3.324263,-3.3538172,-3.332078,-2.77067,-2.980461,-3.118792,-3.0602386,-3.0107915,-3.0999227,-2.9994335,-3.1992018,-2.855304,-3.1511283,-3.3262205,-3.3332107,-3.439763,-3.4354563,-3.3517115,-2.9994268,-3.5367937,-3.2513337,-3.5099816,-3.1403408,-2.9342833,-3.042804,-3.20243,-3.2048879,-3.2205167,-3.3693993,-3.4594355,-3.334558,-3.4590893,-3.4756098,-3.4629717,-3.4002657,-2.6860242,-3.319471,-3.473055,-3.4749553,-3.453587,-2.754321,-3.4385777,-3.6131754,-3.5648546,-3.0478573,-3.5403953,-3.7191525,-3.6439598,-3.6454377,-3.6902351,-3.4861093,-3.5157952,-3.5821998,-3.5118544,-3.4277542,-2.8519673,-3.4149253,-3.637683,-2.5606399,-3.3394504,-3.4164255,-3.5695243,-3.5952282,-2.7511485,-3.4405243,-3.5650778,-3.4986658,-3.4863749,-3.5955095,-3.6262684,-3.6510048,-2.3353634,-3.3959315,-3.5157285,-3.5633988,-2.8298545,-3.461296,-3.6299472,-3.71565,-3.3051271,-3.776506,-3.840958,-3.6866992,-2.5425408,-3.6173804,-3.3209453,-3.0401165,-3.070265,-3.435904,-3.719664,-3.6182466,-3.671206,-3.825583,-3.9670491,-3.4548597,-3.7870512,-3.7680645,-3.6839352,-3.6650624,-3.330101,-3.8203468,-3.9339232,-3.8246212,-3.8253818,-3.8182464,-3.6632576,-3.8116474,-3.6430779,-3.9622865,-3.631657,-3.5609713,-3.6717098,-3.7903342,-3.8571644,-3.7050996,-3.589797,-3.6066997,-3.637429,-3.6476073,-3.7573152,-3.6132708,-3.438658,-3.3741705,-2.8018165,-2.9963584,-2.9192004,-3.4806418,-3.7650013,-3.8656378,-3.7739034,-3.8221073,-3.7699332,-3.8242164,-3.7249622,-3.7374854,-3.8676338,-3.8695135,-3.9166603,-3.7660623,-3.694119,-3.7312279,-3.684877,-3.593042,-3.6975646,-3.8079338,-3.9205546,-3.9273844,-3.8777843,-3.7288098,-3.7250814,-3.7010317,-3.4283557,-3.157301,-3.4914556,-3.2510233,-3.5550113,-3.822195,-3.834147,-3.6451783,-3.7545257,-3.6302655,-3.5010319,-3.5926657,-3.6439657,-3.665713,-3.7249398,-3.610897,-3.6400845,-3.6567822,-3.6971974,-3.6971226,-3.6663167,-3.6150122,-3.6235518,-3.686378,-3.7066107,-3.6295383,-3.7099328,-3.7271657,-3.6035724,-3.4644954,-3.5800169,-3.5179749,-3.4466474,-3.456891,-3.423394,-2.3647363,-3.440185,-3.614874,-3.6681323,-3.6372185,-3.1981711,-3.3632576,-3.4795938,-3.6027474,-3.683906,-3.6152215,-2.9024506,-2.442883,-1.5932381,-1.2584333,-0.9568729,-1.5992885,-1.4571898,-1.1768937,-0.99065524,-0.5873537,-1.094259,-1.6533375,-1.8444545,-1.6029222,-1.2084513,-0.8089923,-0.5271131,-0.46615905,-0.43930072,-0.5996711,-0.56970316,-0.49697185,-0.3391841,-0.43979353,-0.47021198,-0.50809264,-0.61645,-0.6078297,-0.5243146,-0.91765493,-0.78218895,-0.88305086,-0.668868,-0.60361975,-0.75815886,-0.4243397,-0.6887046,-0.26289743,-0.57911503,-0.6647605,-0.57013935,-0.7242493,-0.6636671,-0.6123119,-0.62600714,-0.5732067,-0.95242506,-1.0254772,-1.1645935,-1.1447699,-1.1192801,-0.96231264,-0.89455074,-0.82513994,-0.96236056,-1.145731,-0.9336006,-0.9117059,-0.8581918,-0.88909453,-1.125113,-0.8307392,-0.735897,-0.69199395,-0.47661585,-0.480864,-0.7232222,-0.82728904,-0.9118337,-1.0340443,-0.99581736,-0.8551354,-0.86963385,-0.7052606,-0.8074195,-1.170773,-1.191371,-1.0860615,-0.816464,-0.9030513,-0.6386662,-0.8789982,-1.2841418,-0.91427547,-0.58153194,-0.63528466,-0.4002577,-0.520393,-0.38997287,-0.2905826,-0.027802467,0.07283649,-0.10739371,-0.63509125,-1.3866105,-1.9949539,-2.163437,-2.2644205,-1.3744307,-0.4411704,-0.056604892,0.06489523,0.028542876,0.06402066,-0.0068023205,-0.060007095,-0.04950106,-0.24464619,-0.62050754,-0.84909517,-1.7228942,-1.9658484,-1.5626769,-1.1904178,-0.99107784,-0.86191875,-0.39404666,-0.09199366,-0.3530181,-0.853026,-1.6195264,-2.3355262,-2.4368486,-2.2975833,-2.0848336,-2.6197503,-1.8577657,-2.664796,-2.8242822,-3.0811863,-3.2432501,-3.1096613,-3.1039445,-3.2133193
+-0.87238544,-1.5911336,-1.8958414,-2.1781554,-2.425902,-2.5725045,-2.6874166,-2.807803,-2.814347,-2.8469548,-2.8567438,-2.890993,-2.9077272,-2.909667,-2.7583473,-1.7736554,-2.119063,-2.4581456,-3.2420156,-3.4611454,-3.3713565,-3.4126759,-3.4932768,-3.6145046,-3.5281968,-3.4789042,-2.234213,-3.0129771,-3.5643783,-3.2396734,-3.4975433,-3.4278343,-3.4523869,-3.2672584,-3.380763,-3.446486,-3.4241226,-3.3639612,-2.545291,-3.414811,-2.8977456,-3.3381648,-3.4399085,-3.4946404,-3.5975986,-3.1944292,-3.5607846,-3.5895402,-3.54384,-3.5240836,-3.433903,-3.309137,-2.7393246,-3.3513076,-2.7453294,-3.0657196,-3.2240682,-3.056976,-3.2202356,-3.5881052,-3.239588,-3.4896805,-3.6238868,-3.4943252,-3.2799678,-3.3668432,-3.5353715,-3.5413327,-3.7277837,-3.7215633,-3.6908436,-3.6858006,-3.659038,-1.9749675,-3.7154336,-3.789043,-3.8107667,-3.8029442,-2.1711953,-3.5805216,-3.6288488,-3.7991996,-3.7351203,-3.7717862,-3.8037453,-3.7422028,-3.690317,-3.3942213,-3.5207243,-2.6858807,-2.7368417,-3.6070185,-3.806929,-3.8107638,-3.8160057,-3.3686633,-3.5622382,-2.8638074,-3.639824,-3.910833,-3.8788714,-3.9037614,-3.8392625,-3.5668197,-3.4221902,-2.4867535,-3.702434,-3.2141109,-3.804428,-3.9096751,-4.004486,-4.007314,-3.8793125,-3.5956755,-4.1322503,-4.1152835,-4.1069093,-3.1837668,-2.6287189,-3.6183443,-3.9142232,-3.250101,-4.002431,-4.213105,-4.257317,-4.213424,-3.561688,-4.145253,-3.8292685,-4.1386576,-4.2046843,-4.177626,-3.9407601,-2.8759978,-3.8394275,-3.8968062,-4.2147164,-4.24251,-4.2421956,-4.119103,-3.2350955,-3.8371053,-4.1049876,-4.1306973,-2.6039536,-3.8663735,-4.150623,-4.198588,-2.922967,-3.8940597,-3.4792962,-3.7121115,-2.9873772,-3.721321,-4.0452085,-4.204965,-2.5620532,-3.4726787,-3.804184,-3.6882463,-3.830645,-3.6218662,-3.8117628,-4.082089,-3.7888227,-3.7934303,-3.9607863,-3.7917857,-2.5761857,-3.5183506,-3.5363526,-3.8301635,-4.0644727,-4.1461625,-4.135478,-4.138209,-3.9152117,-4.0494304,-4.0637293,-4.1748576,-4.1084,-4.0905066,-4.0619273,-4.173183,-4.0945287,-3.9416838,-4.000141,-4.066934,-4.0624967,-4.054599,-4.060182,-4.0739846,-4.034987,-4.0512066,-3.5904212,-3.8994765,-3.9783778,-3.9520764,-4.039267,-4.0661197,-4.1252246,-4.1001296,-3.8031163,-3.9700675,-4.1081977,-4.1058154,-4.089034,-4.071029,-4.118486,-4.156302,-4.08102,-4.176316,-4.05753,-4.055778,-4.1246305,-4.1004014,-4.1500545,-4.1719756,-4.1206326,-4.0933547,-2.3112454,-3.4624896,-3.6797628,-3.8832278,-3.8063989,-3.7638998,-3.9405394,-3.9842844,-3.9890447,-3.952272,-3.886066,-3.1891065,-3.455987,-3.5461628,-3.7321968,-3.5788527,-3.665927,-3.6265678,-3.710195,-3.7057133,-3.4550762,-3.62467,-3.750476,-3.9026437,-3.6128235,-3.5682201,-3.655734,-3.634184,-3.6784952,-3.4260428,-3.3737833,-3.0264819,-3.0537958,-3.0861611,-3.1485565,-3.1143525,-3.0041769,-3.1086423,-3.050539,-3.01513,-2.6278906,-2.4516358,-2.5146694,-2.8697915,-3.132903,-3.0696452,-2.932518,-2.877758,-2.1842325,-2.558371,-2.3491054,-2.5645957,-2.5046291,-2.4609723,-2.4005485,-2.4459248,-2.2591338,-2.2322068,-2.2057781,-1.9956863,-1.8416469,-1.9263492,-2.0871239,-2.3764558,-2.2638664,-2.2176738,-1.9990864,-2.1490254,-2.2733083,-2.4320579,-1.3814168,-1.1787682,-1.2232192,-1.148397,-1.0211434,-0.89726204,-0.8003736,-1.1460564,-1.2352617,-1.077415,-1.1141067,-1.3375587,-1.4713998,-1.3859825,-1.4352515,-1.6563947,-1.8556561,-1.7875748,-1.6905863,-1.8662603,-1.9141407,-1.8901942,-2.0863042,-1.8322906,-1.9005504,-2.3539717,-2.405914,-2.580367,-2.9779043,-2.8823204,-2.8622594,-2.9330516,-2.9275007,-2.8928185,-3.0307784,-3.107235,-3.1762407,-3.304465,-2.9939756,-3.0026927,-3.056286,-3.1881242,-3.1415315,-3.1798291,-3.332808,-3.348019,-3.340698,-3.3189845,-3.26875,-3.2529047,-3.5043395,-3.7106733,-3.5980415,-3.545096,-3.555285,-3.430385,-3.5135307,-3.5212018,-3.492354,-3.4598932,-3.4145536,-3.6002011,-3.60324,-3.425793,-3.3943372,-3.5956304,-3.4513712,-2.7851272,-3.4869246,-3.5661833,-3.538662,-3.4947615,-2.7779698,-3.1555996,-3.251081
+-0.88804454,-1.7831624,-2.3699408,-2.60631,-2.7702327,-2.8308969,-3.0188155,-3.0609305,-3.0944498,-3.311995,-3.1757054,-3.2185469,-3.3630528,-3.3690748,-3.0278516,-1.7134249,-1.9205458,-2.4531412,-3.3946214,-3.9562469,-4.0687947,-4.031324,-3.819079,-3.7689161,-3.8218827,-3.7952514,-3.4126678,-3.8397279,-2.8502638,-3.5595336,-3.516613,-3.6367836,-3.7916436,-3.6645637,-3.8271112,-3.8230467,-3.754488,-3.7456636,-3.4193425,-4.1358547,-3.9061594,-3.931625,-4.0253053,-3.8076396,-3.9227548,-3.2258537,-3.2926576,-3.6970143,-3.7532701,-3.6918697,-3.532452,-3.3119771,-3.1375155,-2.9680219,-3.1124558,-3.6506567,-3.889254,-3.7108188,-4.0445113,-4.027805,-3.7077146,-3.8473663,-3.986002,-3.9708605,-3.806954,-3.8963404,-4.094353,-3.870411,-4.056094,-3.9614482,-3.880087,-3.843018,-3.770617,-3.4346209,-3.905867,-4.052448,-3.869987,-3.6878598,-2.661643,-3.9297872,-4.1130385,-4.1446195,-4.161101,-4.0308566,-4.012364,-3.618598,-2.9527683,-4.029269,-4.0575542,-4.0005507,-3.5260334,-4.1356378,-3.4536848,-3.7011976,-4.162395,-4.071486,-3.2439966,-3.9055371,-3.9682393,-4.098726,-4.041395,-3.9725833,-3.120741,-3.3918078,-3.8519373,-4.058083,-3.9580922,-3.8940854,-4.1374574,-4.1782794,-4.1019793,-4.0973415,-4.0848393,-3.9446254,-4.231037,-2.7612495,-4.17445,-3.3974657,-3.8330102,-3.9243698,-4.214704,-4.11173,-4.2090535,-4.325372,-4.3932166,-4.4075756,-2.5936995,-3.8540697,-3.345211,-3.9063644,-4.1082797,-4.0455523,-3.817853,-3.7517147,-4.0534954,-4.3030615,-4.367066,-4.3730445,-4.4007382,-4.291515,-3.866094,-3.9515557,-4.370987,-4.289297,-4.1964545,-3.9772696,-2.8349297,-4.0784082,-3.6256535,-4.1674747,-3.9591012,-3.9586587,-3.7438598,-4.0833387,-4.2133203,-4.1370244,-2.9464512,-3.6133542,-3.7322326,-3.0454617,-3.8529458,-3.963519,-3.8725386,-4.0871625,-4.000974,-4.0915046,-4.0319133,-4.0052085,-3.362191,-4.1218553,-4.192432,-4.3859606,-4.4039373,-4.3696713,-4.343332,-4.2398953,-3.7661753,-3.9745383,-4.354301,-4.5564475,-4.5636353,-4.4086633,-4.453818,-4.551459,-4.2219357,-4.034679,-4.1416965,-4.3800836,-4.360128,-4.3172016,-4.5259733,-4.4826813,-4.2104516,-4.298696,-4.3069544,-4.428186,-4.377569,-4.2167273,-4.2439218,-4.325203,-4.3618307,-4.3185697,-4.255422,-4.359652,-4.367513,-4.30559,-4.2512336,-4.266336,-3.7140884,-4.333597,-4.3727603,-4.4368753,-4.3803463,-4.3826413,-4.429346,-4.2206206,-4.274486,-4.4741597,-4.4861813,-4.3014264,-2.8590355,-3.9842372,-4.2819037,-4.466829,-4.378215,-4.421414,-4.4179673,-4.484509,-4.484854,-4.471806,-4.442634,-4.3514705,-4.382188,-4.4654794,-4.5492477,-4.5065665,-4.398504,-4.410235,-4.429583,-4.382652,-4.156627,-4.251023,-4.3922606,-4.4829936,-4.4731407,-4.541414,-4.2358174,-3.9932094,-3.986714,-4.294952,-4.296029,-3.9884138,-3.7247195,-3.5169826,-3.421187,-3.4660463,-3.4436069,-3.413765,-3.2773361,-3.1651087,-3.0778046,-3.0017445,-3.024404,-3.0719087,-2.9906456,-3.076713,-2.7901027,-2.9408617,-1.9956679,-2.7508872,-2.884855,-2.9638634,-3.1027682,-2.942933,-3.0247319,-2.994635,-2.8850346,-2.9741635,-2.8591857,-2.8081515,-2.716138,-2.797482,-2.7346497,-2.579741,-2.4365396,-2.5904975,-2.8640344,-2.7959347,-2.4703255,-1.4646163,-0.99534184,-1.0695093,-1.2378399,-1.2275541,-1.297847,-1.8254418,-2.442143,-2.7784853,-2.8306923,-2.896459,-2.8439379,-2.6900513,-2.688006,-2.711301,-2.8468447,-3.0741496,-3.225595,-3.3184183,-2.9413052,-2.653224,-2.785129,-3.051272,-3.218141,-3.4868402,-3.215948,-2.9573045,-3.2413864,-3.283586,-3.2692647,-3.3746176,-3.5290103,-3.4026985,-3.4859421,-3.481389,-3.4180183,-3.4482496,-3.4225485,-3.4310503,-3.349209,-3.7815466,-3.834434,-3.7283244,-3.6326509,-3.5343707,-3.6386085,-3.7488275,-3.7050757,-3.3961337,-3.221058,-3.0228665,-3.2923028,-3.70231,-3.682677,-3.6633267,-3.610796,-3.6091783,-3.6374116,-3.561769,-3.4881322,-3.3657231,-3.3123012,-3.3348584,-3.4843385,-3.2685003,-3.1869888,-3.2074265,-3.1591237,-3.2275066,-3.3182125,-3.484562,-3.4217744,-2.5081072,-3.0465229,-3.2463462,-3.6546507
+-1.0040822,-1.784941,-2.1947305,-2.3257723,-2.3608248,-2.5234356,-2.7142148,-2.7967148,-2.8170488,-2.8886948,-1.263119,-2.8260388,-3.0273514,-3.1702144,-2.9332192,-1.8537889,-2.183425,-2.9269342,-3.0239322,-3.1503813,-3.224547,-3.231889,-3.1930118,-3.2189937,-3.4076984,-3.398905,-3.4713867,-3.4718063,-1.9912374,-3.2087145,-3.4119244,-3.3847222,-3.3860185,-3.413716,-3.4488194,-3.4451995,-3.2681675,-3.228817,-3.3159387,-3.427695,-3.3660734,-3.4110017,-3.4476316,-3.4081225,-3.4116855,-2.8584037,-2.9719512,-3.060464,-3.1140049,-3.309104,-3.26879,-3.1898484,-3.155457,-3.1631885,-3.201117,-2.3831034,-2.9109879,-3.2544992,-3.360281,-3.448411,-2.5071325,-3.1004891,-3.4545596,-3.528667,-3.5170515,-3.5712416,-3.5471082,-3.434706,-3.518601,-3.294174,-3.3690515,-3.4771311,-3.4311385,-1.956079,-2.745576,-3.2656624,-3.4532683,-3.571154,-2.1036658,-3.0366626,-3.5065618,-3.5207124,-3.6143124,-3.3249052,-2.2816927,-2.9678192,-2.9527154,-3.3489807,-3.3424802,-3.3014338,-3.525176,-2.2248068,-2.6246245,-3.1944752,-3.2068758,-3.393784,-3.4664552,-3.5832512,-2.5546381,-3.4228625,-3.5391252,-3.3910284,-3.6037695,-3.6560621,-1.9222283,-3.2416215,-2.506948,-3.0184975,-3.4389353,-3.5428896,-3.5440474,-3.5334394,-3.5470524,-3.5291188,-3.5788796,-1.9889307,-3.2787368,-3.3883922,-3.3186502,-2.414012,-2.9436753,-3.3164434,-3.4519563,-2.7989085,-3.4419472,-3.5606885,-3.2418237,-2.9233508,-3.285226,-3.263729,-3.3296013,-2.8940248,-2.9391108,-2.6319249,-3.183253,-3.3226926,-3.472704,-3.5836606,-3.634356,-3.6614876,-3.6584325,-3.612997,-3.5761003,-3.543212,-3.4850538,-3.4972103,-1.8941085,-2.878509,-3.2128563,-2.8461041,-2.7611952,-3.1544735,-3.2402306,-3.1039839,-3.225509,-3.2173429,-3.1325479,-3.1335201,-3.1700096,-3.1319406,-3.1591043,-2.841847,-2.6179955,-3.1348922,-3.1562624,-3.222824,-3.111609,-3.243527,-3.3467343,-3.296732,-3.378157,-3.4471903,-3.3702478,-3.2845197,-3.2549973,-3.1744046,-2.124177,-2.8897154,-3.211109,-3.4310222,-3.5329144,-3.4087858,-3.4132018,-3.2931752,-3.0648358,-2.9702997,-3.1491368,-3.421263,-3.458434,-3.333755,-3.447566,-3.2658525,-2.7230701,-3.2539773,-3.154459,-3.327841,-3.3301122,-3.1746483,-3.2180147,-3.2548444,-3.4832299,-3.4308429,-3.4125319,-3.4390392,-3.4457502,-3.37457,-3.2790577,-3.1805553,-2.5146384,-3.118612,-3.2115781,-3.2429063,-3.2868052,-3.203009,-3.3324108,-3.3939772,-3.3342683,-3.2795773,-3.347055,-2.5170617,-2.948037,-3.1814377,-3.2212596,-3.29265,-3.364207,-3.127992,-3.269568,-3.4443698,-3.405793,-3.247343,-3.1823282,-3.518157,-3.1491623,-3.1345947,-3.3904033,-3.3461242,-3.4975753,-3.2708364,-3.2627168,-3.0567865,-3.0301557,-3.199504,-3.321659,-3.3623142,-3.230166,-3.1485977,-2.824947,-2.627967,-2.57155,-2.9045055,-2.658355,-2.680588,-2.1819978,-1.9561064,-2.2004375,-2.129381,-2.0739007,-1.9732409,-1.7844706,-1.7408361,-1.7486048,-1.5896945,-1.5147121,-1.6591365,-1.7451372,-1.8448677,-1.5407109,-1.4690046,-1.2657623,-1.7583117,-1.7613406,-1.9167266,-2.0718179,-1.8033404,-1.9805071,-1.9027586,-1.9381847,-2.2143404,-1.7128823,-1.6028526,-1.5646992,-1.5027561,-1.4532826,-1.5610514,-1.6082556,-1.5583661,-1.9686658,-1.9001164,-1.5005064,-1.0252092,-0.84128517,-0.936789,-1.2103643,-1.4264288,-1.7793298,-2.1686842,-2.8040762,-2.8255954,-2.9834201,-3.1261463,-2.9393444,-2.7108948,-2.7547398,-2.928887,-3.131689,-3.3648586,-3.3236923,-3.1432533,-2.7404075,-2.4864464,-2.7064738,-3.0028608,-3.3351889,-3.4712386,-3.0671954,-3.0862837,-3.4349608,-3.3438144,-3.3030443,-3.4746253,-3.5761435,-3.4119782,-3.395979,-3.35184,-3.174395,-3.1647038,-3.180304,-3.2292,-3.1965113,-3.4854555,-3.4385233,-3.3150458,-3.2424774,-3.0496793,-3.398353,-3.4089913,-3.2989612,-2.8993306,-2.7179177,-2.6451144,-3.0379238,-3.0393705,-3.2220216,-3.0677319,-3.1682594,-3.2003388,-3.3321319,-3.169428,-3.2484853,-2.9378076,-2.973514,-2.9507587,-2.9741771,-2.9878812,-2.9164028,-3.0028377,-2.8890097,-2.825255,-2.8968353,-3.0373774,-2.8230782,-1.8739781,-2.521832,-2.5859425,-2.8788674
+-1.0661008,-1.9315407,-2.341989,-2.4373326,-2.3658812,-2.5173125,-2.725584,-2.8593435,-2.8623242,-2.8616004,-2.803433,-3.096757,-3.179699,-3.2233047,-3.1441388,-2.9059598,-1.6368456,-2.6700075,-2.7237623,-2.7834153,-2.9370334,-2.957532,-2.9896579,-2.9455583,-3.0443702,-2.592969,-3.0014353,-3.1799061,-2.3998985,-2.799177,-2.9999933,-3.049629,-3.097666,-3.124231,-3.1666534,-3.1223803,-3.013373,-2.9511585,-2.9922495,-3.0887685,-3.3212788,-3.2645164,-3.327195,-3.1279027,-3.227425,-2.3134656,-2.5869703,-2.557285,-2.6651847,-2.795855,-2.8546462,-2.8396044,-2.6814804,-2.850274,-2.9234934,-2.76448,-2.0257242,-2.516598,-2.8319247,-2.8975866,-2.9668953,-2.2727542,-2.0928495,-2.4442146,-2.6939244,-2.75206,-2.8710992,-2.8568077,-2.9041343,-2.9200606,-2.8765764,-2.914577,-2.9268618,-1.5349417,-2.509131,-2.5315075,-2.7935584,-2.9018853,-2.2999442,-2.770835,-2.969089,-2.9854527,-3.004591,-2.965385,-1.9138117,-2.7171292,-2.846586,-2.6980815,-2.7699382,-2.7729683,-2.6341898,-2.2121406,-2.5454028,-2.2498987,-2.6151319,-2.8195705,-2.789406,-2.855198,-2.5538828,-2.7617216,-2.9342914,-2.8855114,-2.9026966,-2.9730158,-2.4853673,-2.449196,-1.9189065,-2.3953557,-2.8917632,-3.0026798,-2.9884331,-2.9426484,-2.8751433,-2.868709,-2.895675,-2.8456361,-2.9041967,-3.0255818,-3.1003735,-1.5874436,-2.6029687,-2.764155,-2.9028964,-2.8970375,-2.9822218,-2.9343333,-2.686996,-3.05237,-2.3602076,-2.2111726,-2.6336668,-2.8733022,-2.9347076,-2.0702004,-2.7527046,-2.908743,-2.897282,-3.0035877,-3.085926,-3.1952124,-2.9586606,-1.8964362,-2.635888,-2.8670666,-2.8583045,-2.0345917,-2.6554656,-2.9442651,-2.9289804,-1.7349882,-2.4818282,-2.4933703,-2.305479,-2.6452112,-2.757389,-2.8592906,-2.8490696,-2.8785753,-2.9081798,-2.7135763,-2.9238474,-3.0004048,-1.905797,-2.551416,-2.819202,-2.8831165,-3.0060697,-2.9386406,-2.9522743,-2.9608378,-2.4384184,-2.8382716,-2.884118,-2.8816893,-2.8977032,-2.9469995,-1.5292816,-2.6788332,-2.782487,-2.8891046,-2.9979496,-3.0485134,-3.0587237,-3.0374644,-3.0261033,-2.9494414,-2.8889956,-2.963942,-2.8487852,-2.1655583,-2.881952,-2.8238373,-2.8321009,-2.9001389,-3.0701156,-2.8887455,-3.0106788,-2.9194903,-2.8496027,-2.7637382,-2.8980122,-3.0006633,-3.0516582,-3.0894957,-3.0854237,-3.0589943,-3.068487,-2.9810605,-3.0593855,-3.0689275,-3.015564,-2.928841,-3.0488832,-3.0200233,-2.9588747,-3.022923,-3.1513374,-3.1237216,-3.0152745,-2.564102,-2.6377387,-2.8491032,-2.888297,-2.898849,-3.006907,-2.9863653,-2.9691286,-3.036722,-3.0134685,-2.9149106,-2.8226519,-3.0975776,-2.998278,-2.9457355,-3.2123601,-3.0447125,-3.2867892,-3.2232616,-3.2033598,-3.08608,-2.917651,-3.0497408,-3.1874714,-3.1837711,-3.149306,-3.1796074,-2.0641594,-2.6672664,-2.3838234,-2.6862779,-2.5036292,-2.4139304,-1.8328829,-1.4336765,-1.8190818,-1.8927488,-1.8681347,-1.572186,-1.2728701,-1.3201284,-2.1583326,-1.4294038,-1.1223423,-1.3211639,-1.6265461,-1.9205303,-1.7595582,-2.1705902,-1.7847018,-2.1365712,-2.271861,-2.3703573,-2.5862985,-2.2698789,-2.5182438,-2.5489101,-2.6321564,-2.9477866,-2.2873964,-1.9266853,-1.4431498,-1.14867,-1.2501748,-1.3282313,-1.6338029,-1.8283436,-2.5441647,-2.6777716,-1.4613793,-1.2061856,-1.3514626,-1.3562994,-1.5087314,-1.6863403,-2.0457096,-2.2334356,-2.5523643,-2.462518,-2.4903536,-2.598499,-2.4133143,-2.222855,-2.299283,-2.4444919,-2.6135094,-2.884263,-2.8995228,-2.6992662,-2.2277377,-2.0644846,-2.5855656,-2.826631,-2.9230905,-3.1093783,-2.8343515,-2.808579,-2.9436436,-3.024726,-2.245633,-2.6159253,-2.3610697,-2.5441484,-2.6787674,-2.8616457,-2.8755512,-2.9152074,-2.9950125,-3.0691695,-3.0448408,-3.1881647,-3.009397,-3.0521445,-3.212336,-2.9460597,-3.1892025,-3.2768908,-3.2393117,-3.0042982,-2.9000385,-2.8644845,-3.0783696,-3.1067266,-3.2982779,-3.1290293,-3.1643245,-3.2672944,-3.3331616,-3.2942488,-3.3814712,-3.1806414,-3.2221217,-3.1882925,-3.035626,-2.9800093,-3.047542,-3.124753,-3.0135286,-2.848138,-3.040443,-3.3055553,-3.3801174,-1.4432123,-2.3325806,-2.0666528,-2.8456666
+-0.984183,-1.7108328,-2.085751,-2.18422,-2.258145,-2.285362,-2.421852,-2.586835,-2.7770154,-2.412683,-1.6234598,-3.0688608,-3.1726646,-3.538104,-3.6878927,-3.6577065,-1.7190549,-3.3730545,-3.6454608,-3.6128464,-3.525622,-3.593859,-3.8470182,-3.9455714,-3.8778415,-3.5545838,-3.5301566,-3.8006701,-3.423149,-3.8440914,-3.9024792,-3.9954066,-3.8581033,-3.7168088,-3.7493286,-3.7477374,-3.6744168,-3.5033464,-3.4393997,-3.5058692,-3.5360217,-3.237557,-2.957247,-3.5407197,-2.5242376,-3.343267,-2.8939192,-3.4475627,-3.632259,-3.8020272,-3.968904,-3.8526025,-1.7280498,-3.4435205,-3.7516885,-3.9638982,-3.7041712,-3.7881675,-3.712603,-3.1168966,-3.5661669,-3.3260002,-3.1686754,-3.5919468,-3.8509002,-3.7921314,-3.931899,-3.942781,-4.024779,-3.9839015,-3.9349399,-3.8533201,-3.775498,-2.1812224,-3.149877,-3.8681865,-4.0850434,-4.057509,-4.0019593,-1.6908112,-3.5656886,-4.0455832,-4.001648,-3.9719305,-3.9187393,-3.891995,-3.4457016,-3.492043,-3.8369632,-2.8191087,-3.6127977,-3.9650779,-3.9972672,-3.4028292,-3.877687,-3.5453,-3.9305701,-2.6838942,-3.590611,-2.7138994,-3.7884593,-4.095299,-4.096896,-4.030519,-3.9763675,-3.5548227,-2.312073,-3.602681,-4.096164,-4.1091924,-4.0676684,-4.0116367,-3.9266524,-3.8628635,-3.831883,-3.7564692,-3.695006,-3.7294683,-3.7196326,-3.5419269,-2.722507,-3.611989,-3.7811837,-3.7424827,-3.7356882,-3.707605,-3.6893623,-3.668009,-3.638629,-1.2842941,-2.8786037,-3.0572076,-3.4995222,-3.5121818,-3.6469908,-3.7018003,-3.7537122,-3.7831821,-3.8210645,-3.8491712,-3.552101,-1.5875227,-3.2831435,-3.856522,-3.8987718,-3.5848615,-3.0982435,-3.9541388,-4.197181,-4.125496,-4.053963,-2.540082,-3.3185086,-3.423388,-3.8786845,-4.0493803,-3.9918346,-3.9445047,-3.8841777,-3.8815074,-3.4646423,-3.8255725,-2.0760431,-3.5243244,-3.9536362,-3.53695,-3.6011539,-3.9136786,-3.477805,-3.6310794,-3.2576947,-3.8233194,-4.0258594,-4.026004,-3.927484,-3.8859286,-2.2927942,-3.3236978,-3.6326737,-3.6589506,-3.7645621,-3.8568072,-3.895224,-3.9567938,-3.950088,-3.8889718,-3.7989798,-3.6381717,-3.2959867,-2.5199497,-3.613174,-3.8457913,-3.9410014,-3.9266667,-3.8262224,-3.3653722,-3.8396807,-3.832017,-3.7288237,-3.6365542,-3.585167,-3.6228828,-3.600759,-3.6473577,-3.6638775,-3.6269732,-3.5378458,-3.5406535,-3.538555,-3.4645944,-3.522094,-3.507184,-3.4536753,-3.493449,-3.4644632,-3.176932,-2.3571506,-3.582951,-3.5704875,-3.4010832,-3.503891,-3.7672048,-4.0369267,-3.8926091,-3.8623042,-3.8711057,-3.8714948,-3.769938,-3.7256231,-3.6951723,-3.6242023,-3.6485271,-3.683011,-3.7924328,-3.8291717,-3.7439437,-3.738328,-3.6720088,-3.6136618,-3.6670167,-3.6596856,-3.5311236,-3.563272,-3.697867,-3.7208867,-3.6625757,-2.479827,-3.5684514,-3.6221685,-3.7393618,-3.7346034,-3.792151,-3.6385727,-3.5705404,-3.7260284,-3.817553,-3.848271,-3.8193145,-3.7191978,-3.7475705,-3.8504176,-3.6636353,-3.1443496,-3.0000522,-3.0981112,-3.4249144,-3.5698638,-3.5499356,-3.1010764,-3.4863276,-3.631217,-3.706386,-3.690287,-3.785244,-3.7927232,-3.829238,-3.5746915,-3.7016168,-3.9337974,-3.9236712,-3.3725495,-2.7806892,-2.7349582,-2.6418304,-2.7651339,-3.1264338,-3.2077723,-3.803844,-3.506589,-2.625226,-2.9147584,-3.202766,-3.4464126,-3.6557107,-3.7164683,-3.8312945,-3.8501458,-3.9050908,-3.9323783,-3.891406,-3.9737601,-3.975564,-3.999208,-4.018409,-3.9979157,-3.9230871,-3.8082662,-3.9733963,-4.054096,-4.003478,-3.8901954,-3.671251,-3.6608267,-3.6463416,-3.6357927,-3.7368827,-3.5280788,-3.4263499,-2.076234,-3.200379,-3.430627,-3.6587858,-3.8445382,-3.9625797,-3.8806806,-3.6673644,-3.830089,-3.927526,-3.8615966,-3.797913,-3.8774066,-3.9245534,-3.9317956,-3.8399177,-3.8182158,-3.874075,-3.9333339,-3.8732448,-3.6865191,-3.564062,-3.5476804,-3.7211747,-3.6343095,-3.4887295,-3.7023578,-3.8031297,-3.582304,-3.7085886,-3.7691693,-3.73978,-3.5052378,-3.4345498,-3.4513862,-3.417681,-3.372975,-3.369451,-3.4838188,-3.3277712,-3.367673,-3.517023,-3.4823704,-3.1304677,-1.5051429,-3.1167023,-3.7560925
+-0.5391044,-1.3267808,-2.0261664,-2.2968698,-2.4158893,-2.5191016,-2.5827403,-2.726429,-2.7302861,-2.9214892,-1.7387924,-2.7945404,-2.7704306,-3.0559337,-3.3226244,-3.472651,-2.363931,-3.0569215,-3.2063074,-3.2653198,-3.0957117,-3.2089696,-3.4688406,-3.6338973,-3.628004,-3.3343985,-2.8437843,-3.344765,-3.5490508,-3.3118987,-3.2868733,-3.3203251,-3.2530022,-3.2252078,-3.3328424,-3.4691925,-3.479743,-3.1979527,-2.916018,-3.4197574,-3.3982875,-2.4484856,-3.1929808,-2.8611417,-3.3676572,-3.1717834,-2.8479984,-2.8813753,-3.0009284,-3.273796,-3.5573473,-3.7270174,-3.5554209,-3.5754497,-3.448794,-3.1339214,-3.0092835,-3.3228908,-2.6205728,-2.1341624,-2.995884,-3.428963,-3.4492834,-3.0403,-3.2134523,-3.2178383,-3.4997382,-3.5936522,-3.651123,-3.6581883,-3.6681805,-3.4383268,-3.313717,-3.5133152,-3.5604863,-3.5261745,-3.4961064,-3.4600186,-3.447302,-3.167492,-3.3259077,-3.4451964,-3.5471373,-3.552785,-3.5560462,-3.5633445,-2.7792456,-3.257644,-1.9500473,-2.8358345,-3.258746,-3.5481944,-3.6180372,-2.1409516,-2.9382057,-2.8080933,-3.4456062,-3.7909331,-3.8004565,-2.513067,-3.4404042,-3.784617,-3.702023,-3.709426,-3.6656961,-2.080565,-2.4183807,-3.1832526,-3.6775618,-3.846352,-3.8713622,-3.8031468,-3.717072,-3.676285,-3.6672919,-3.653345,-3.6330338,-3.628913,-3.2995212,-3.4222717,-3.472891,-3.4870071,-3.4967062,-3.45933,-3.4603047,-3.4511766,-3.4610956,-3.4614203,-3.4561012,-2.9300015,-0.85818356,-2.7090082,-3.1501122,-3.324706,-3.3285153,-3.4851313,-3.542327,-3.6213548,-3.4569635,-1.4360623,-2.4338338,-3.0688043,-3.4824858,-3.5664139,-3.5064662,-3.72786,-3.835104,-3.7231312,-2.7184763,-3.4067364,-3.6924381,-3.5992126,-3.6283607,-2.67023,-3.2983942,-3.6792321,-3.6984882,-3.6561532,-3.5699878,-3.5434027,-3.5100262,-3.4073725,-1.7098272,-2.9862967,-3.4527068,-3.5763192,-1.9570646,-3.1124814,-3.4399495,-3.530644,-3.571374,-3.590489,-3.689165,-3.7317338,-3.6552863,-3.6071088,-2.9980454,-1.5329463,-3.2433934,-3.3871162,-3.4157336,-3.4164112,-3.4695323,-3.5155683,-3.5174239,-3.5177093,-3.4575841,-3.1336899,-3.117113,-2.7880201,-3.041675,-3.2754276,-3.4541378,-3.5118053,-3.410284,-3.236609,-3.2488105,-3.3417466,-3.3008523,-3.228777,-3.1944134,-3.261914,-2.4536226,-3.1016755,-3.36001,-3.4331481,-3.4209661,-3.3783205,-3.3451152,-3.324411,-3.3402934,-3.3280888,-3.3409896,-3.37379,-3.3453941,-3.34507,-1.6556072,-3.1820178,-3.3227544,-2.9339604,-3.2017367,-3.4265492,-3.625994,-3.5554457,-3.4322906,-3.3652523,-3.342523,-3.2510433,-3.300642,-3.3714027,-3.3571088,-3.3071804,-3.3436904,-3.4665494,-3.4994595,-3.3990626,-3.4011745,-3.3573978,-3.3111124,-3.3032403,-3.262688,-3.2142875,-3.2965693,-3.370053,-3.385057,-3.0965817,-2.5072346,-3.0940466,-3.112362,-3.181014,-3.288732,-3.354706,-3.0724354,-3.1897566,-3.3421273,-3.3949144,-3.396008,-3.4660966,-3.4759898,-3.5455608,-3.4343307,-3.3708742,-3.0005279,-3.0509467,-3.1878831,-3.4668083,-3.420416,-3.233602,-3.1098504,-3.2038412,-3.1818268,-3.205767,-3.2304378,-3.2889671,-3.3299875,-3.2045443,-3.0772052,-3.077193,-3.3528771,-3.5802393,-3.514801,-2.9985657,-2.9629116,-2.949597,-2.9293377,-3.0235844,-2.9099755,-3.2037847,-3.1734724,-2.9245787,-2.5681095,-2.5726657,-2.829936,-3.0737777,-3.3037176,-3.3915572,-3.3895082,-3.3839586,-3.4002929,-3.3467822,-3.4515278,-3.5194097,-3.5213943,-3.5105267,-3.499925,-3.429397,-3.3272288,-3.441693,-3.5391016,-3.5412316,-3.3349009,-3.1644912,-3.1659665,-3.153171,-3.1877322,-3.2918837,-3.1275363,-3.0193877,-2.8607466,-2.783101,-3.1004252,-3.2646236,-3.4453473,-3.4529324,-3.3579803,-2.7559457,-3.0489638,-3.3293312,-3.4693987,-3.431478,-3.4351554,-3.5380034,-3.508834,-3.5364928,-3.5057135,-3.480273,-3.6223881,-3.6424866,-3.4062858,-3.2848597,-3.266748,-3.4132583,-3.3591387,-3.229851,-3.2826643,-3.4571307,-3.4288778,-3.44799,-3.54767,-3.5030353,-3.3591814,-3.289452,-3.326437,-3.4273224,-3.4058883,-3.3621764,-3.4542637,-3.50417,-3.4556592,-3.5746496,-3.6073556,-3.487039,-1.5047164,-2.9109569,-3.3573847
+-0.68741363,-1.197402,-1.6770859,-1.9319582,-2.1228104,-2.2841516,-2.4130301,-2.655917,-1.0889173,-2.6669362,-2.8961966,-2.892397,-2.8620648,-3.3164964,-3.5407941,-3.3982387,-1.6517205,-3.0982878,-3.4373233,-3.011837,-3.152459,-3.4558642,-3.6087341,-3.678957,-3.6793933,-3.6770546,-2.9829803,-3.7213798,-3.7826004,-3.6016757,-3.6394706,-2.906057,-3.4741573,-3.5729227,-3.6637273,-3.681201,-3.6269236,-3.2287989,-2.1298764,-3.3232439,-3.604369,-2.6162536,-3.5787554,-3.6487904,-3.8747277,-3.8096652,-3.6823497,-3.0595627,-3.4660406,-3.662121,-3.7704515,-3.8187156,-3.6820755,-3.5545998,-3.4620113,-2.964336,-1.6348798,-3.252635,-3.653477,-2.2008114,-3.075752,-3.5068955,-3.4626012,-3.4236302,-3.6462717,-3.5469513,-3.598867,-3.6647568,-3.662763,-3.6222782,-3.6221426,-3.31038,-3.085692,-3.653653,-3.704309,-3.6216784,-3.5567827,-3.5320592,-3.5228338,-3.5833158,-3.508819,-3.531777,-3.5361185,-3.511638,-3.498573,-3.4985795,-2.3146858,-3.419512,-1.6149294,-3.3390906,-3.7037783,-3.7859535,-3.8855166,-3.844646,-3.8200827,-3.3415473,-3.6489089,-3.6883132,-3.6825776,-3.7033439,-3.6001742,-3.6758976,-3.6183267,-3.5933776,-3.5791557,-3.6010938,-3.6016154,-3.6258945,-3.66712,-3.6845462,-3.6808496,-3.65958,-3.6547897,-3.684332,-3.7211328,-3.7375722,-3.7596955,-3.770719,-2.7505412,-3.2610445,-3.624022,-3.7122808,-3.7190714,-3.6786075,-3.678479,-3.6736803,-3.696947,-3.7039943,-3.697672,-3.7235522,-3.7516942,-3.754209,-3.7566276,-1.896574,-1.3342783,-2.9447927,-2.790852,-3.1463304,-3.0940318,-3.127439,-3.30304,-3.3058944,-3.9351697,-3.2230265,-3.476561,-3.7985525,-3.8941154,-3.8875403,-3.3992412,-3.4012065,-3.904574,-3.7871208,-3.670053,-2.4628615,-3.3741875,-3.7520041,-3.8242984,-3.8052578,-3.7267404,-3.6887767,-3.7289567,-3.6873655,-1.807342,-3.2121682,-3.6217723,-3.846686,-3.1520565,-3.2143617,-2.9635787,-3.2840738,-3.686617,-3.8582044,-3.8783908,-3.843656,-3.7926059,-3.7481527,-3.714447,-1.5414412,-3.4877198,-3.8177981,-3.716333,-3.6607063,-3.700583,-3.6671472,-3.6191263,-3.5729337,-3.5227072,-3.4692914,-3.4713373,-2.2152314,-3.467012,-3.5776694,-3.6607995,-3.6841738,-3.5830884,-3.6058426,-3.05286,-3.454174,-3.4956198,-3.387935,-3.349693,-3.4341056,-3.4461818,-3.469117,-3.5339503,-3.5507197,-3.5560656,-3.5168738,-3.501499,-3.4817686,-3.4370592,-3.4114795,-3.4337106,-3.4801903,-3.40129,-3.3923426,-1.0694189,-3.0843883,-3.378981,-2.5742323,-3.1749854,-3.4107113,-3.595166,-3.5884104,-3.533867,-3.4575374,-3.4889565,-3.371675,-3.4162564,-3.4490113,-3.3042595,-3.2521734,-3.4270062,-3.5621805,-3.5232308,-3.378851,-3.413084,-3.3606315,-2.8245695,-3.0734615,-3.4542603,-3.436418,-3.5648856,-3.5798662,-3.587233,-3.1208205,-2.862738,-3.50588,-3.3576946,-3.334472,-3.5060534,-3.6083276,-3.5344949,-3.491238,-3.4755948,-3.5686574,-3.5097952,-3.568479,-3.6239843,-3.4124057,-3.3561592,-3.7310705,-3.5794935,-3.638118,-3.6469138,-3.742875,-3.6290083,-3.2907367,-3.0306187,-3.2674685,-3.4607751,-3.2571864,-3.3953457,-3.305146,-3.4915442,-3.1869528,-2.3198266,-3.2951465,-3.6086364,-3.5021045,-3.6527364,-3.3285096,-3.0539856,-3.029115,-3.2289288,-3.393856,-3.2827694,-3.0984063,-2.657998,-3.0659637,-2.9078786,-3.0729153,-3.4819808,-3.4350882,-3.5681787,-3.6227498,-3.8340116,-3.7180338,-3.7059078,-3.769281,-3.709515,-3.703073,-3.7575831,-3.8029819,-3.8241777,-3.7886338,-3.6964326,-3.6905813,-3.8318057,-3.919407,-3.6007433,-3.4318135,-3.5448766,-3.5906918,-3.5096998,-3.5375385,-3.342824,-3.306908,-3.4734135,-2.4971957,-3.300416,-3.5083308,-3.6795204,-3.737473,-3.2833385,-2.6314845,-3.2040427,-3.596127,-3.6911638,-3.7170033,-3.7271137,-3.703682,-3.589947,-3.5604475,-3.6030188,-3.6401515,-3.732922,-3.6463823,-3.4240742,-3.348568,-3.2812936,-3.4862845,-3.4018488,-3.2971215,-3.316702,-3.6006882,-3.3820982,-3.4348664,-3.5066257,-3.4230092,-3.346241,-3.3166153,-3.326538,-3.3238602,-3.3347387,-3.3418345,-3.3489556,-2.988426,-3.3676572,-3.4606373,-3.5120206,-3.5383525,-1.6614864,-3.0184135,-3.4458938
+-0.6544187,-1.6412013,-2.1824534,-2.6114125,-2.8658934,-3.0106478,-3.1279006,-3.0502853,-3.2894537,-3.3604562,-3.4754581,-2.2030547,-2.413138,-3.5513692,-3.850625,-3.942923,-2.311421,-3.2959592,-3.7131734,-3.547527,-2.885069,-3.7455773,-4.125049,-4.223306,-4.385896,-4.4222574,-3.074899,-4.1975794,-4.3766685,-4.312362,-4.1520514,-3.7139058,-4.055608,-4.2295556,-4.3533344,-4.4334073,-4.4682603,-4.392757,-4.406135,-4.4321966,-1.4746406,-3.6738956,-3.7697525,-4.020055,-4.056195,-4.2205625,-4.2540193,-1.8367677,-2.7095926,-3.7541833,-4.2618613,-4.275423,-4.184798,-4.0903363,-3.9389129,-4.0269313,-4.1370134,-4.097463,-1.9002943,-2.6535692,-2.640511,-3.9092278,-3.9278884,-3.413137,-3.9342656,-4.1511154,-4.1542735,-4.1958594,-4.2437525,-4.4084716,-4.392482,-4.3575587,-3.5921576,-4.3093133,-4.4473224,-4.434852,-4.4132953,-4.4113927,-4.4028783,-4.3473215,-4.3203893,-4.3499494,-4.3751545,-4.3748507,-4.3543077,-4.3374834,-4.30251,-4.2811475,-2.9084826,-4.1182,-4.3593936,-4.4825554,-4.5439105,-4.5376534,-4.5201573,-4.519426,-4.5225124,-4.531858,-4.551802,-4.570033,-4.564959,-4.6422367,-4.631859,-4.619221,-4.6253304,-4.658427,-4.719845,-4.699618,-4.6944776,-4.6960645,-4.685512,-4.6928906,-4.692923,-4.684193,-4.6877904,-4.6862197,-3.9934077,-3.770949,-4.6013665,-3.9293323,-4.597861,-4.793088,-4.8583922,-4.8477435,-4.799997,-4.7978277,-4.7874084,-4.778746,-4.745256,-4.727942,-4.73071,-4.7148223,-4.682899,-3.6026452,-1.1946476,-3.4873009,-3.6952786,-3.0030212,-2.6460166,-2.8929875,-3.8291159,-2.3164814,-3.6837327,-3.9996252,-4.1975594,-4.3201714,-4.4600787,-4.509189,-4.4936585,-4.253315,-4.399716,-4.3204436,-4.4286513,-2.68989,-2.9916997,-3.7058368,-3.7041821,-4.041817,-4.187214,-4.2657533,-4.3331695,-4.368151,-4.246842,-4.3456693,-4.399959,-4.348166,-4.394281,-4.388767,-4.3902698,-4.4188533,-4.397068,-4.4204946,-4.4449224,-4.4964404,-4.513989,-4.501494,-4.512204,-1.3179848,-3.2188015,-4.0900245,-4.2390733,-4.2495513,-4.280474,-4.3324933,-4.359157,-4.3292503,-4.2048287,-4.1244183,-4.0616045,-3.521196,-3.8880062,-4.0391026,-4.205399,-4.2799225,-4.222233,-2.71199,-3.770842,-3.963757,-3.9483266,-3.923452,-3.915135,-3.9186797,-3.783794,-3.98531,-4.179893,-4.3006315,-4.2165694,-4.24161,-4.202975,-4.125812,-4.101134,-4.132668,-4.1773376,-4.2561617,-4.137449,-3.9757752,-3.4398642,-3.666298,-3.8795075,-1.8538489,-3.5569243,-2.6804366,-3.086896,-3.5554352,-3.7830353,-3.8267188,-3.94165,-3.9177356,-4.054243,-4.1732144,-4.0971932,-3.9819188,-3.9549708,-4.0638175,-4.2029643,-4.102906,-4.075104,-4.106114,-3.9303088,-2.9832811,-3.7658486,-3.9444284,-4.1302714,-4.1067653,-4.10599,-3.0916555,-2.202313,-3.2557003,-2.9785552,-3.4017146,-3.5815861,-3.6179872,-3.31466,-3.3202336,-3.5546985,-3.7505808,-3.7936788,-3.868836,-3.9017892,-3.8464622,-3.8883023,-3.8170276,-3.4718208,-3.5436082,-3.9686933,-3.987235,-4.0500727,-3.849873,-3.6031034,-3.6590085,-3.7055244,-3.6890926,-3.8269525,-3.9310837,-3.955245,-3.9604383,-2.3452613,-3.7639937,-3.8929129,-4.012837,-3.5270905,-3.1434493,-2.8728595,-3.0968394,-3.6824799,-3.9285192,-3.8551083,-3.675165,-3.6436255,-3.4895496,-2.5580544,-3.338213,-3.373208,-3.5607972,-3.9109526,-4.006444,-4.1835666,-4.1196322,-4.253816,-4.196751,-4.100792,-3.8417578,-3.9858031,-4.0960894,-4.197584,-4.237684,-4.265141,-4.0957856,-4.0361996,-4.2130103,-4.1516347,-4.0403895,-4.1317677,-4.232612,-4.1540565,-4.215666,-4.1400075,-4.0869517,-2.976594,-2.4080648,-3.5070992,-3.811489,-4.023043,-4.2680798,-4.3494773,-2.6973913,-3.6920705,-4.1596007,-4.314588,-4.359821,-4.1779675,-4.27183,-4.343477,-4.3372116,-4.304095,-4.1427193,-4.175559,-3.7069612,-3.8056912,-4.1024594,-4.120527,-4.2028785,-4.151177,-4.110003,-4.0024166,-3.8273716,-3.914815,-4.157355,-4.2208467,-4.2059617,-4.1532063,-4.13988,-4.1386867,-4.132817,-4.142613,-4.133738,-4.061353,-3.5907044,-4.0792513,-4.2656136,-4.3188944,-4.2394056,-1.6340685,-3.903038,-4.3064065
+-0.31038302,-0.8809795,-1.312599,-1.7529149,-2.055065,-2.2453914,-2.40727,-2.7838635,-2.795364,-2.773497,-2.2631497,-2.8947148,-1.1647899,-2.9936059,-3.2755232,-3.2054944,-2.9135876,-2.8001382,-3.2986012,-3.3562865,-3.2574325,-3.2666888,-3.2557049,-3.070662,-3.2963693,-3.4364786,-2.3801613,-3.2616847,-3.5165162,-3.1792715,-3.559443,-3.8427258,-3.6523323,-3.6816509,-3.9714198,-3.9551587,-4.0523505,-3.8533435,-3.9619594,-4.1407814,-3.7190633,-4.2278376,-4.3643727,-1.2321737,-2.1472235,-3.1445215,-3.2161028,-2.6580942,-2.2587762,-3.3184698,-3.5251963,-3.591013,-3.5423899,-3.4570405,-3.2408624,-3.402834,-3.3782787,-3.4471512,-1.2743204,-3.2316532,-2.5759072,-3.719153,-2.6631424,-3.4976516,-3.8858223,-3.8694715,-3.8000798,-3.6846914,-3.6332245,-3.5592566,-3.5335047,-3.5459502,-3.5926576,-3.5970674,-3.5688996,-3.6390471,-3.643984,-3.630619,-3.6359854,-3.6903567,-3.705627,-3.6985068,-3.8079195,-3.8987222,-4.0109677,-2.4128883,-3.0496826,-3.7760987,-4.0420322,-4.1675878,-4.365175,-4.437712,-4.467322,-4.443236,-4.4967723,-4.55584,-4.5536246,-4.569421,-4.568443,-4.585255,-4.6483912,-4.669033,-4.655871,-4.6132116,-4.612422,-4.6783624,-4.734496,-4.647078,-4.6747346,-4.699838,-4.6709423,-4.6667323,-4.6756773,-4.6724925,-4.706288,-4.6969886,-1.8130472,-1.7044873,-3.122317,-3.2830923,-3.7085528,-3.9173799,-4.0395236,-4.073327,-4.1492696,-4.189906,-4.255273,-4.31737,-4.367142,-4.445727,-4.533,-4.5755653,-4.6073117,-4.711866,-3.0637925,-1.7287035,-2.1269686,-2.4202583,-2.5684881,-3.032478,-3.4879467,-1.7829502,-2.9470253,-3.2963095,-3.7412667,-3.8262286,-3.7745004,-3.7147698,-3.7345672,-3.7662048,-3.6160579,-2.456005,-3.2395384,-3.3487127,-3.1457253,-3.4893024,-3.3792243,-3.2055426,-3.553515,-3.6087995,-3.649322,-3.6377172,-3.5260847,-3.7027154,-3.7502408,-1.6995809,-2.8372083,-3.3938084,-3.4476206,-3.506717,-3.501753,-3.5845323,-3.6464906,-3.6905494,-3.7190409,-3.823903,-3.8473053,-1.5004385,-2.918676,-3.3823495,-3.411702,-3.3881583,-3.3111563,-3.2891884,-3.2563848,-3.2141576,-3.2144547,-3.2517543,-3.2561083,-3.278641,-3.4177952,-3.3661509,-3.3312316,-3.341434,-3.2779727,-2.880179,-3.4183297,-3.5394645,-3.436293,-3.4235446,-3.4008646,-3.460663,-3.480186,-3.5288515,-3.5375051,-3.6027403,-3.585687,-3.6312413,-3.6764636,-3.685826,-3.6001673,-3.6158361,-3.7056046,-3.781838,-3.678364,-3.6964622,-1.6999135,-2.7038608,-3.2978413,-3.2489285,-3.2575984,-2.4581525,-2.7782521,-3.2352228,-3.1678176,-3.2634535,-3.2524781,-3.2363577,-3.207631,-3.183955,-3.1026447,-2.9975708,-2.9970238,-3.0060837,-3.1024027,-2.9507077,-2.9598103,-3.1039762,-3.01685,-3.0421634,-3.1003232,-3.1428437,-3.349646,-3.3574734,-3.158093,-1.9732642,-1.5873773,-2.6870213,-2.5826914,-3.3411164,-3.5933187,-3.4948921,-3.2779088,-3.213027,-3.5034945,-3.464355,-3.4913616,-3.4420924,-3.3211224,-3.3855655,-3.32686,-3.4434278,-3.0890732,-3.0778835,-3.1861525,-3.1550953,-3.0316663,-2.9448593,-3.0022998,-2.7589464,-2.8911562,-3.165195,-3.2156522,-3.3952413,-3.1991606,-3.1991897,-3.1996331,-3.3331,-3.163313,-3.1125107,-3.0574708,-2.8355346,-2.611475,-2.8691714,-2.9694748,-2.890978,-2.8313622,-2.7502356,-2.9652276,-2.7519336,-1.773088,-2.9589863,-3.386402,-3.4782557,-3.4135587,-3.3997374,-3.8615346,-3.424708,-3.3331614,-3.2827196,-3.1651092,-3.0038486,-2.939115,-3.1941242,-3.286913,-3.1753118,-3.130064,-3.0854917,-3.0241609,-3.0302916,-3.028266,-2.9895365,-3.0849352,-3.5930345,-3.2299898,-3.1782866,-3.0768352,-3.1524398,-3.3604956,-1.5665233,-3.2745838,-3.231437,-3.2859592,-3.2938113,-3.2169297,-2.3298783,-3.432638,-3.4860249,-3.416171,-3.4327338,-3.2567158,-3.2865353,-3.2409065,-3.150859,-3.2002563,-3.085777,-3.0636482,-1.8980539,-3.0146341,-3.192883,-3.1573029,-3.1699138,-3.1672702,-3.0729146,-2.9531476,-3.0925145,-3.157383,-3.1781144,-3.089237,-3.037839,-2.9863281,-2.979786,-2.9517498,-2.9455628,-2.9296882,-2.9392977,-2.9799047,-2.9412107,-3.3309493,-3.211462,-3.2280793,-3.3711689,-1.1300056,-3.14459,-3.2984028
+-0.95774,-1.3289442,-1.7255497,-1.9867382,-2.154379,-2.270809,-2.3484335,-2.3025827,-2.1594305,-2.7112288,-2.7745583,-2.7347164,-1.7233582,-2.9966538,-3.0542765,-3.0976014,-2.804722,-1.333518,-3.232478,-3.3014483,-3.297412,-3.209813,-3.207375,-1.1480904,-3.4117656,-3.3795388,-3.2928643,-3.2823143,-3.3264863,-3.3611326,-3.3771167,-3.2882538,-3.346435,-3.540722,-3.6594722,-3.7203193,-3.7432113,-3.6000412,-2.4461808,-3.636538,-3.6243463,-3.683327,-3.6717005,-0.43260926,-2.785877,-3.218526,-3.3108163,-2.273162,-2.180189,-3.4458365,-3.5492256,-3.5406828,-3.513291,-3.426362,-3.3103342,-3.2514296,-3.3106284,-3.3321335,-3.4103491,-3.3016734,-3.0661821,-1.9604137,-2.1422107,-3.1874933,-3.312227,-3.3122206,-3.4193892,-3.4205422,-3.2870936,-3.56444,-3.548018,-3.5608006,-3.607933,-3.6647854,-3.721496,-3.7923927,-3.8410811,-3.876535,-3.9163876,-3.8232484,-3.4481835,-3.8492398,-4.043753,-4.0301437,-3.970677,-3.9302564,-3.52426,-3.5837202,-3.98743,-3.8416076,-3.8619394,-3.9477592,-4.025783,-4.0383844,-4.061888,-4.100645,-4.129028,-4.155042,-4.162108,-4.1661963,-4.165831,-4.2111716,-4.21559,-4.214593,-4.216899,-4.218081,-4.232685,-4.2262263,-4.2161083,-4.08151,-3.9493155,-4.20027,-4.1462426,-4.1392474,-4.131156,-4.1036873,-1.6739814,-2.9458578,-3.1599994,-2.5353513,-2.134167,-3.1782868,-3.3536658,-3.4252033,-3.4254634,-3.470653,-3.5127325,-3.5945466,-3.6623235,-3.7335095,-3.8041067,-3.8348908,-3.9346118,-3.9865546,-3.8000612,-1.114774,-0.935337,-2.3687048,-2.7446566,-3.1300924,-3.4431558,-3.407217,-0.9049024,-2.700085,-3.5131772,-3.6406965,-3.5850532,-3.5283287,-3.459053,-3.2839575,-3.221602,-2.991158,-2.4572315,-3.0302937,-2.3741298,-3.0525093,-3.142782,-3.2067924,-3.310882,-3.383788,-3.4201133,-3.4684973,-3.2637897,-3.4348097,-3.472096,-3.3907747,-1.3381073,-3.0453174,-3.0972848,-3.1252272,-3.1784067,-3.2052941,-3.246456,-3.2713463,-3.2756066,-3.297471,-3.3023815,-2.4266987,-0.84328526,-2.1450262,-2.872077,-3.0330718,-3.1665983,-3.3040624,-3.3692431,-3.4866326,-3.4462261,-3.409312,-3.4082382,-3.3281133,-3.3270187,-3.3320446,-3.3718085,-3.396222,-3.4346263,-3.44375,-3.4131324,-3.4283113,-3.4580672,-3.480461,-3.487423,-3.4956126,-3.2661123,-3.4361918,-3.5743167,-3.5677552,-3.5463865,-3.5742688,-3.5504115,-3.5281787,-3.582426,-3.6183631,-3.604791,-3.602025,-3.6205118,-3.6070838,-3.5845935,-1.5965493,-2.9921799,-3.0770798,-3.1183982,-1.8473299,-2.288393,-2.8833084,-3.0513334,-3.2310486,-3.3448668,-3.365086,-3.385128,-3.4492579,-3.5641737,-3.6124759,-3.4204059,-3.5395448,-3.652515,-3.76152,-3.6968255,-3.685482,-3.7571445,-3.8359728,-3.7170215,-3.6773028,-3.634306,-3.7058206,-3.7782245,-3.8343139,-1.1139059,-1.7884512,-2.3229544,-3.1500776,-3.5130863,-3.4605534,-3.0418823,-3.178489,-3.5693545,-3.6199832,-3.6605186,-3.7049994,-3.7667127,-3.7557898,-3.793785,-3.6777697,-3.4762192,-3.5130844,-3.5442195,-3.6977906,-3.8115573,-3.9069018,-3.8772259,-3.908914,-3.924686,-3.8550687,-3.8686752,-3.7219076,-3.8173795,-3.8409839,-3.853045,-3.7624922,-3.8477283,-3.9214978,-3.9292555,-3.7423801,-3.7621613,-4.034475,-4.0393376,-4.046599,-4.056358,-4.1018224,-4.0056305,-3.971562,-3.962181,-3.9590049,-3.6543522,-3.6905622,-3.8753781,-3.7412772,-3.6792867,-3.7783093,-3.8620334,-3.923492,-3.9554539,-4.014421,-3.9892087,-3.946878,-3.895455,-3.9404168,-3.977715,-4.0006156,-4.0262218,-3.950315,-3.9365878,-4.011022,-3.9437356,-3.7935762,-3.8996377,-3.9379935,-3.9684448,-3.9460053,-3.8720336,-3.5764327,-3.7881956,-3.8424387,-3.7914348,-3.8044353,-3.8304763,-1.0073686,-3.1197686,-3.1617742,-3.2558477,-3.3723977,-3.4177895,-3.4722128,-3.596241,-3.5828886,-3.5607467,-3.5850646,-3.6891794,-0.96369046,-3.2322993,-3.3982706,-3.536757,-3.466379,-2.7052817,-3.3285294,-3.5874841,-3.6505158,-3.7467818,-3.84059,-3.894679,-3.8787313,-3.8487134,-3.8237596,-3.7708125,-3.7471046,-3.7521062,-3.761107,-3.7593884,-3.721724,-3.7018104,-3.776073,-3.8122745,-3.8306317,-3.8476014,-3.8437705,-3.8923278
+-1.1300867,-1.3966751,-1.8512082,-2.1236455,-2.2793684,-2.3372827,-2.3791506,-2.3931112,-2.3421474,-2.663421,-2.6647625,-2.5560014,-2.528603,-2.744757,-2.8335712,-2.8605819,-2.8006651,-2.6156158,-3.1852922,-3.3857462,-1.4597175,-2.7568436,-2.2054513,-2.4630413,-3.335735,-3.4465034,-3.3937569,-3.3724625,-3.3616652,-3.322214,-3.444839,-2.3636465,-3.0654178,-3.2901032,-3.369945,-3.437006,-3.4357877,-3.3892221,-3.2062125,-3.5710094,-3.6129384,-3.6231444,-3.6527479,-2.5369225,-3.2060819,-2.7354646,-3.4799547,-1.8596094,-3.0954485,-3.0362442,-3.2221065,-3.2380848,-3.178201,-3.2587266,-3.1821213,-2.5883174,-2.729451,-3.4421022,-3.3916261,-3.32316,-3.3709624,-1.4866433,-2.1164222,-3.2281098,-2.99222,-2.685885,-3.413868,-3.5202696,-3.5459385,-3.49323,-3.4180322,-3.459968,-3.3618135,-3.5634584,-3.650385,-3.7480054,-3.813106,-3.8658233,-3.9180217,-3.8852816,-3.0946922,-3.8476758,-3.9625602,-4.0512605,-3.9954877,-4.0288363,-3.9200482,-3.9662914,-4.0183425,-3.674653,-3.8554845,-4.0683093,-4.129123,-4.132558,-4.1508765,-4.1698256,-4.1806965,-4.194452,-4.2077394,-4.214781,-4.1609445,-4.23685,-4.242516,-4.2508097,-4.2596865,-4.2792516,-4.3031087,-4.314188,-4.323977,-3.8678927,-3.6829276,-4.197458,-4.353413,-4.3438935,-4.3239923,-4.282403,-4.124938,-3.6014948,-3.7193785,-4.1112847,-3.434693,-4.2159276,-4.261982,-4.2743173,-4.2629986,-4.2733974,-4.2601657,-4.2799935,-4.273084,-4.2726307,-4.190517,-3.974815,-4.3774214,-4.3233504,-4.147941,-0.94981164,-2.5747428,-1.9850049,-2.9772863,-3.07066,-3.3159459,-3.339342,-1.5651126,-3.1844628,-3.655468,-3.6553953,-3.5090575,-3.5290508,-3.4753757,-3.2913854,-3.4132152,-2.815799,-3.319202,-2.380321,-3.020719,-2.8010392,-2.9941514,-3.2588701,-3.4686172,-3.551045,-3.6165845,-3.6964421,-3.6005664,-2.6969454,-3.5615776,-3.6194339,-3.2132168,-3.3824334,-3.4402199,-3.4667454,-3.5196908,-3.585627,-3.6690416,-3.729826,-3.6820202,-3.7820563,-3.7947059,-3.7664237,-0.85779315,-1.9288857,-2.7256863,-2.703601,-2.8584704,-2.8524995,-2.897972,-3.0656338,-3.1753669,-3.209822,-3.2178288,-2.7854676,-3.0452614,-3.2501702,-3.386508,-3.4330328,-3.4172335,-3.4151106,-3.4199278,-3.429225,-3.4431877,-3.480216,-3.5110657,-3.5450683,-3.179601,-3.269794,-3.6867144,-3.7375116,-3.704547,-3.6917648,-3.7113547,-3.7170486,-3.7537308,-3.7762122,-3.7833629,-3.8014965,-3.8196921,-3.822514,-3.549343,-1.8077855,-2.4036803,-2.5887113,-2.8383904,-2.67944,-2.6453516,-2.8861518,-3.0705066,-3.1030867,-2.8166008,-3.1655893,-3.1638918,-3.240097,-3.290469,-3.3600502,-3.4521747,-3.493309,-3.6281586,-3.6796532,-3.6806004,-3.734672,-3.753837,-3.8053212,-3.7583308,-3.7106118,-3.730278,-3.8157907,-3.9763913,-4.0539246,-3.6956158,-2.5009286,-3.0913563,-3.3895965,-3.38282,-3.0630298,-3.335107,-3.3347726,-3.343248,-3.3387666,-3.431777,-3.4396596,-3.46496,-3.5228157,-3.520874,-3.558886,-3.6671348,-3.7797585,-3.798512,-3.9351392,-3.8749757,-3.9108367,-3.885192,-3.9130592,-3.9446006,-3.9070659,-3.9573565,-3.9888754,-3.9422956,-3.944086,-3.9328213,-3.95222,-4.0537286,-4.113443,-4.2283173,-3.9575572,-4.0110126,-4.134724,-4.2298894,-4.205239,-4.20319,-4.203443,-4.146689,-4.10493,-4.115721,-4.1194377,-4.092871,-4.052113,-4.0875225,-4.0530944,-4.102305,-4.1829762,-4.1938753,-4.151383,-4.1955686,-4.3782973,-3.0389123,-3.8713036,-3.9435549,-4.019201,-4.0089693,-4.0348043,-4.1435246,-4.014183,-4.0764127,-4.1007447,-4.014844,-4.0005665,-4.0678596,-4.096771,-4.0835032,-4.0473065,-4.046146,-4.0563326,-3.9329362,-4.134893,-4.118437,-4.161981,-4.165545,-3.5162168,-4.0066524,-4.193688,-4.209002,-4.19758,-4.253015,-4.159234,-4.199668,-4.1406054,-4.1071134,-4.3106236,-4.343377,-1.3017545,-3.1140854,-3.1887245,-3.1939654,-2.514018,-3.1722069,-3.1695185,-3.2281663,-3.0888906,-3.3816,-3.3476763,-3.5054436,-3.57791,-3.5842507,-3.5914748,-3.5909932,-3.6010685,-3.620564,-3.6376452,-3.6679764,-3.6697435,-3.7110934,-3.7986426,-3.8102827,-3.8378587,-3.8515692,-4.008863,-4.0548325
+-0.5013825,-1.1893473,-1.5469022,-1.6934726,-1.9067078,-2.0707197,-2.207652,-2.305233,-2.4277382,-2.5744195,-2.7314768,-2.746912,-2.7762053,-2.9649425,-3.0600367,-2.988925,-3.0770977,-1.0965567,-1.8538327,-3.2802796,-3.551137,-3.6639118,-2.5117998,-2.911121,-3.6035633,-3.8853602,-3.9208536,-3.8766007,-3.951199,-3.9675694,-3.958446,-2.183031,-3.4473073,-3.5702617,-3.6367307,-3.7112226,-3.7968955,-3.7172394,-3.7999234,-3.7263021,-4.038831,-4.06002,-3.4178982,-2.2374077,-2.7586112,-3.4444475,-3.7286758,-2.8106241,-3.8376827,-3.8007684,-4.1060524,-4.140592,-4.136267,-4.1769576,-4.054424,-3.9409947,-3.5177884,-4.1078806,-3.3096771,-4.01675,-4.0781827,-2.9594874,-3.432035,-3.5586457,-3.2337308,-3.3863168,-3.7020335,-3.9152236,-4.0503097,-4.0351877,-4.035203,-3.949082,-4.1352973,-4.1354322,-4.1677375,-4.1496663,-4.1083913,-4.085589,-4.065249,-3.487419,-1.706512,-3.6634,-3.8612475,-4.0543094,-4.1071754,-4.091807,-3.9456596,-3.8394766,-3.8525577,-4.018875,-3.875647,-4.131176,-4.127368,-4.077166,-4.044638,-4.0393405,-4.0850396,-4.0649543,-4.0910172,-4.052086,-4.0565314,-4.07746,-4.101481,-4.101355,-4.0769467,-4.093944,-4.0845914,-4.084205,-4.0791078,-3.8037639,-3.313584,-3.1426382,-3.7818303,-4.0265584,-4.096241,-4.0994124,-3.996602,-1.4349792,-3.0951214,-3.764649,-3.832408,-4.0816894,-4.0861473,-4.0476885,-3.9666162,-3.920786,-3.9484754,-3.680337,-3.967125,-4.066013,-4.056577,-3.4192877,-3.8897018,-4.0673184,-3.0326333,-1.6165571,-3.1860056,-2.6834245,-3.5228877,-3.8533835,-4.009296,-4.0514174,-2.8336313,-3.0974352,-3.873969,-4.172852,-4.192939,-4.1560082,-4.0693164,-3.9993954,-2.4502444,-3.1914084,-3.0667725,-3.7428403,-3.7378087,-3.522408,-3.4681394,-3.8105273,-3.9719472,-4.1047716,-4.1003366,-4.095301,-4.132928,-3.6896906,-4.0059724,-3.6593802,-3.1925693,-3.8411198,-3.7368178,-4.0449195,-4.20227,-4.0336795,-4.2033143,-4.1394887,-4.060653,-3.8092532,-4.0332093,-1.7317257,-2.0710678,-3.6314523,-3.8298168,-3.752479,-3.7819495,-3.6895356,-3.7358909,-3.7510877,-3.8597178,-3.9322228,-3.930183,-3.732119,-2.4842668,-3.8885212,-3.9458747,-3.8728075,-3.8534255,-3.9388065,-3.920321,-3.8495598,-3.809513,-3.7696981,-3.7336116,-3.7565846,-3.4950953,-2.2567592,-3.6408749,-3.7810812,-3.8371887,-3.7535686,-3.8238358,-3.8306289,-3.8658233,-3.7629142,-3.7508044,-3.7812247,-3.6852446,-3.6395226,-2.9063947,-2.2336478,-3.6466901,-3.7517972,-3.6646557,-2.9551194,-3.7410192,-3.7432513,-3.7256808,-3.356289,-3.6548088,-3.7420583,-3.64638,-3.5004084,-3.5321207,-3.5599117,-3.679881,-3.4812744,-3.4890234,-3.6097536,-3.6478977,-3.7500234,-3.6543632,-3.7538624,-3.5572753,-3.6722295,-3.7244081,-3.8870664,-3.7710094,-3.960647,-3.7538533,-3.0036504,-3.533764,-3.5288434,-3.507097,-3.6130786,-3.7803197,-3.627285,-3.5671093,-3.571712,-3.5756857,-3.6115556,-3.530676,-3.5749543,-3.5267496,-3.7454686,-3.9658256,-4.019579,-3.7744365,-3.9182549,-3.605039,-3.7555327,-3.76643,-3.7490382,-3.7514443,-3.7046323,-3.5115237,-2.8445835,-3.6274347,-3.7764258,-3.7302318,-3.7422867,-3.5554726,-3.6738973,-3.6793458,-3.6234126,-3.492949,-3.5911088,-3.6108038,-3.558763,-3.5595093,-3.612987,-3.5291255,-3.4964564,-3.4916303,-3.5899992,-3.6930099,-3.4594955,-3.6084273,-3.6866317,-3.9618087,-3.879321,-3.6961927,-3.7250977,-3.7781234,-3.7929883,-1.5300255,-3.284953,-3.468845,-3.5836778,-3.6529737,-3.7828298,-2.7558165,-3.4095354,-3.54134,-3.6187565,-3.6097605,-3.6441817,-3.7670636,-3.630412,-3.679537,-3.6545777,-3.66874,-3.6139727,-3.8358722,-3.7490873,-3.5938103,-3.8036175,-3.759027,-3.7454267,-3.7935834,-4.085006,-4.0644264,-4.1630483,-3.9783092,-3.9572434,-3.9953036,-4.006781,-3.979713,-4.317407,-4.258204,-1.7045617,-2.7004762,-3.3202038,-3.4741387,-2.388527,-3.2325943,-2.825018,-3.0709453,-2.9374783,-3.6112337,-3.6123257,-3.6636486,-3.6902153,-3.6628456,-3.7031512,-3.658617,-3.6377652,-3.5696454,-3.5945148,-3.5943189,-3.4681072,-3.5340946,-3.5032473,-3.4949322,-3.4988825,-3.47059,-3.608996,-3.5664449
+-0.04692453,-0.5408654,-0.93699235,-1.1923931,-1.4661999,-1.2907004,-0.78478163,-1.0028923,-1.2754068,-1.1305833,-0.97492164,-0.8486567,0.00663507,1.026995,0.20781875,-1.7311163,-1.7827845,-1.7115114,-1.856389,-2.352766,-2.6587477,-2.794088,-3.0045938,-3.054728,-3.019446,-3.081941,-3.171406,-3.126556,-3.1496904,-3.1638913,-3.128148,-3.2006576,-3.0277312,-3.0533006,-2.9699655,-2.7954772,-2.9146442,-2.9771833,-2.9373217,-2.5259027,-2.8720384,-2.5184655,-2.5328755,-2.835372,-2.686997,-3.0883782,-3.1112866,-3.0604591,-2.830836,-3.0141563,-3.0445824,-2.7139878,-2.3763738,-3.3000307,-3.2852492,-2.469066,-2.9657736,-3.202251,-3.366022,-3.4924607,-2.2478578,-2.6456246,-3.0059838,-2.5330925,-3.1597126,-3.1447005,-3.0878797,-3.1017609,-3.0920672,-3.1496603,-2.5018892,-2.9231536,-1.9533587,-2.6643238,-2.8179927,-2.8999114,-2.946317,-2.69012,-2.8626282,-2.1219864,-2.7327065,-2.813541,-2.2570782,-2.783009,-2.8110006,-2.2676923,-2.591541,-2.8963995,-2.8381734,-2.763671,-2.879796,-2.8716984,-2.8152604,-2.6079292,-2.6898804,-2.609478,-3.0526943,-2.4059153,-3.0024114,-2.9584384,-2.9656258,-2.854842,-2.5946925,-2.780036,-3.038019,-2.9877255,-2.8915477,-2.9404516,-2.9465437,-2.5219624,-2.83538,-2.818886,-2.9886267,-2.6352887,-3.0018606,-2.960023,-2.8940606,-2.8262305,-2.8025913,-2.6698425,-2.5999587,-2.4971788,-2.0296674,-2.557934,-2.509387,-2.133443,-2.6011407,-2.7447004,-2.6127682,-2.4077535,-2.468868,-2.6800508,-2.5528235,-2.3865166,-2.4497323,-2.3539395,-1.8945413,-2.2061462,-2.3504887,-2.0810657,-2.3018003,-2.6452289,-2.4562933,-2.3627539,-2.3033805,-2.2116766,-2.0909717,-2.317082,-2.3642154,-2.3151355,-1.9265838,-2.3653646,-2.54538,-2.555016,-2.3164172,-2.3904548,-1.7334812,-2.2432766,-2.3388472,-2.5194492,-2.2071538,-2.425685,-2.468333,-2.3998158,-2.201037,-2.4547994,-2.4770203,-2.5341723,-1.958005,-2.3477125,-2.230114,-2.2450538,-2.314111,-2.390149,-2.4449997,-2.30894,-2.0049071,-2.0954518,-2.5246096,-2.6120129,-2.6701474,-2.5304754,-2.4035544,-2.2455332,-2.293027,-2.2948732,-1.9729462,-2.086298,-2.0831616,-2.3345287,-2.3081422,-2.2632923,-2.3385663,-2.3841898,-2.2588654,-2.2951336,-2.2722235,-2.326208,-2.0302143,-2.1542566,-2.0372033,-2.257578,-2.3816442,-2.1964374,-2.19064,-1.9938402,-2.2345972,-2.4188185,-2.3795805,-2.3654416,-2.4502678,-2.4341018,-2.3995314,-1.988419,-2.3542914,-2.5782523,-2.6860213,-2.4661052,-2.4378436,-2.3865712,-2.2938733,-2.3534346,-2.2613273,-2.2606857,-2.2445111,-2.212151,-2.3355732,-2.380416,-2.2944324,-2.0731933,-2.1035626,-2.2207966,-2.2357106,-1.9587431,-2.0162692,-1.8174374,-1.9184232,-1.9566278,-1.9513197,-1.8313138,-1.845695,-1.5030999,-1.5174463,-1.4347651,-1.4744542,-1.5451524,-1.5000911,-1.5005822,-1.5808125,-1.4360936,-1.3658488,-1.3615148,-1.3783345,-1.4642608,-1.5199146,-1.6018975,-1.638716,-1.640281,-1.6468072,-1.681478,-1.6958022,-1.7197323,-1.7325082,-1.6225929,-1.6816952,-1.7365606,-1.74715,-1.7419729,-1.8100848,-1.456754,-1.6103759,-1.6856229,-1.7503204,-1.8086348,-1.8843453,-1.8816829,-1.906637,-1.9945316,-2.069994,-2.088884,-2.092051,-2.0606718,-2.1219597,-2.1384897,-2.1807718,-2.161853,-2.1443763,-2.1073003,-2.1017294,-2.0854096,-2.0771513,-2.0678954,-2.0443885,-2.0147176,-2.0371697,-1.9409509,-1.9014018,-1.8058906,-1.8436904,-1.8532863,-1.8294351,-1.8707633,-1.8829236,-1.9316764,-1.8995934,-1.9633386,-1.9319224,-1.9323151,-1.9513133,-2.013996,-1.971487,-1.9828639,-1.9778845,-1.963645,-1.9212008,-1.9171181,-1.8988256,-1.8146758,-1.8044515,-1.6720836,-1.729413,-1.7344172,-1.5279622,-1.3153663,-1.5533569,-1.4589899,-1.3773155,-1.2926083,-1.3239503,-1.4625416,-1.523303,-1.5817263,-1.584311,-1.529156,-1.5762007,-1.556078,-1.5987265,-1.5762117,-1.4217637,-1.4845397,-1.5405912,-1.5316389,-1.3941791,-1.4537454,-1.5407593,-1.6535983,-1.5625839,-1.6018145,-1.6120079,-1.7086458,-1.6685,-1.5194595,-1.3187888,-1.1557379,-1.3329802,-1.7047324,-1.5620902,-1.1778841,-1.1305966,-0.44530904,0.19045195,-0.23120576,-0.099264145,0.35648754,0.6977519
+0.12227261,-0.05236292,-0.14021093,-0.3850649,-0.5204416,-0.26843393,-0.110277206,-0.38600314,-0.64835745,-0.5714345,-0.4912507,-0.37662202,0.06679553,0.9058123,0.022571892,-1.0884492,-1.6750038,-1.7886014,-1.8720026,-2.2860305,-2.6267667,-2.8743289,-2.895508,-2.7207186,-2.4608536,-2.871498,-2.9922397,-3.005387,-3.0595665,-3.1308942,-3.1967227,-3.3160198,-3.3088412,-3.3895054,-3.4941828,-3.2848868,-3.3927495,-3.5764647,-3.4774528,-2.919641,-3.439743,-3.1229513,-3.15582,-3.2689545,-3.2323442,-3.4781747,-3.6000564,-3.6930013,-3.7091079,-3.659223,-3.686359,-3.3128743,-2.1557424,-3.5968661,-2.3231978,-3.407523,-3.7440758,-3.4137666,-3.271858,-3.2968607,-3.179144,-3.2055373,-3.635725,-3.6239734,-3.624996,-3.5162442,-3.063227,-3.5049863,-3.638153,-3.4837132,-2.6327534,-3.414464,-3.2227015,-3.5055134,-2.8323684,-2.6945927,-3.4678764,-2.6446297,-3.5128248,-3.4118981,-3.5574088,-3.362107,-2.9915264,-3.480946,-3.430057,-3.3030365,-3.2914283,-3.26866,-3.2675338,-3.1991773,-2.906951,-3.4814975,-2.6983354,-3.387244,-3.2296906,-3.2625456,-3.4279072,-2.6305506,-3.5145302,-3.3169498,-3.110103,-3.0185094,-3.0785358,-3.4350104,-3.240797,-3.5176566,-3.3159292,-3.387714,-3.5111969,-3.3224986,-3.1695902,-2.8612707,-3.2699306,-2.4728465,-3.4397025,-3.3590477,-3.221336,-3.1476696,-3.3350408,-3.2243457,-2.72927,-3.3064072,-3.1401234,-3.21686,-3.1541607,-2.4331617,-3.3345785,-3.3277168,-3.2675705,-3.1263068,-3.1564069,-2.6277695,-2.4752016,-3.3017073,-3.196549,-3.1832695,-3.126766,-3.0872254,-3.151031,-2.2731795,-2.9718592,-3.2201462,-3.2446012,-3.1610727,-3.128321,-3.1586864,-3.0283537,-3.2376142,-3.2634487,-3.2683685,-3.1060362,-3.1863625,-3.3258452,-3.4056902,-3.3201957,-3.297382,-1.8358126,-2.949267,-3.2192118,-2.9792771,-3.1721106,-3.3560872,-3.3663945,-3.3944545,-3.169421,-3.1863196,-3.4704602,-3.4614687,-3.1779592,-3.4116516,-3.2958944,-3.298583,-3.4370832,-3.0368223,-3.3766184,-3.0613575,-2.2351134,-2.8494182,-3.299037,-3.2392194,-3.4441893,-3.4330611,-3.4755812,-3.3663726,-3.3963728,-3.4055336,-2.863928,-3.4732714,-3.22715,-3.4694586,-3.5961957,-3.763955,-3.7148805,-3.4855542,-3.481299,-3.5377622,-3.7424731,-3.501193,-3.547645,-3.5538821,-3.4679933,-3.4628491,-3.6641383,-3.786511,-3.7193904,-3.6750424,-3.6193833,-3.8037968,-3.2481136,-3.7399192,-3.743781,-3.6057987,-3.8420172,-3.872089,-3.7342353,-3.8004022,-3.7458692,-3.7132125,-3.7070904,-3.6003354,-3.456372,-3.4920232,-3.6064925,-3.4003944,-3.2919354,-3.5247293,-3.5730143,-3.5382516,-3.5659373,-3.6127353,-3.459641,-3.38878,-3.3151274,-3.4903169,-3.3013966,-2.999471,-3.2822683,-3.3618345,-3.2575161,-3.2255936,-3.3163855,-2.3320699,-2.1159706,-2.206396,-2.204869,-2.1082077,-2.1565056,-2.121965,-2.0988977,-1.8036654,-1.9505792,-1.8582206,-1.8286641,-1.6790609,-1.8261824,-1.7858868,-1.7626219,-1.7308669,-1.7221913,-1.8445411,-1.851454,-1.8439629,-1.825264,-1.7053556,-1.7138338,-1.6529424,-1.6300845,-1.7688742,-1.8311994,-1.7772698,-1.7415841,-1.7071729,-1.6747389,-1.7401161,-1.7315993,-1.7426107,-1.8647194,-1.8753984,-1.8277056,-1.86993,-1.8526337,-1.8170907,-1.9112563,-1.9880772,-2.0438762,-1.9571939,-1.9425006,-1.982338,-1.9973841,-1.9859021,-1.9890432,-1.9817262,-1.890372,-1.8430152,-1.7904708,-1.8120077,-1.8034322,-1.738097,-1.7885005,-1.7599947,-1.7414606,-1.6672039,-1.6288397,-1.6776643,-1.713738,-1.5927131,-1.6629694,-1.6118643,-1.6361449,-1.7396317,-1.7515817,-1.8117421,-1.8565955,-1.7532482,-1.7790446,-1.7414734,-1.730535,-1.58743,-1.6059539,-1.4935246,-1.5739315,-1.5006847,-1.3343413,-1.2496264,-1.2061963,-1.1955044,-0.9730261,-1.0044913,-1.190666,-1.2695849,-1.2973638,-1.3253016,-1.4094894,-1.3734121,-1.4534338,-1.418535,-1.4232662,-1.3570278,-1.2028477,-1.1486292,-1.3759425,-1.210217,-1.2672822,-1.3619978,-1.4778123,-1.4974809,-1.4076443,-1.3800359,-1.2899911,-1.3115702,-1.2153397,-0.9876544,-0.8020571,-0.51373947,-0.70519704,-1.151567,-1.1005554,-0.62956494,-0.3430252,-0.11566505,0.58635193,0.85648376,1.165635,0.5244646,0.13323367
+-0.39918536,-0.8968231,-1.6307561,-1.8499646,-2.0930758,-2.1844962,-2.3531072,-2.4631164,-2.2030244,-2.3720717,-2.4272077,-2.422151,-2.6573935,-2.900061,-2.862466,-2.5561185,-3.0355787,-3.242817,-2.5113058,-3.288214,-3.2019148,-3.4536762,-3.5211697,-2.4162507,-2.5170856,-3.1269548,-3.3467464,-3.2720413,-3.5069346,-3.483616,-3.4665577,-3.556153,-3.6502807,-3.6860876,-3.798862,-3.6645644,-3.7065687,-3.847518,-3.2543244,-3.6475568,-3.1674764,-3.3251858,-3.4891942,-3.4625387,-3.6547556,-3.7772708,-3.7834978,-3.9337745,-3.9374223,-3.8681583,-3.902975,-3.5207508,-2.3533895,-3.771182,-2.709918,-3.2845345,-3.7962418,-3.8117328,-3.9337935,-3.855085,-2.9055953,-3.4503477,-3.9575477,-3.1502757,-3.6479998,-3.7809615,-3.5745354,-3.6763349,-3.684385,-3.6132054,-3.4884796,-3.5770197,-3.090282,-3.635977,-2.0728889,-2.9987128,-3.5694115,-3.4889045,-2.701487,-3.3967514,-3.4516277,-3.4105783,-2.962486,-3.61259,-3.5539184,-3.3439405,-3.5690756,-3.371687,-3.4369595,-3.411463,-2.7651129,-3.695755,-3.625007,-3.6103272,-3.5244546,-3.4467306,-3.5345948,-3.104043,-3.7002087,-3.4851289,-2.4029331,-2.2781243,-3.4261227,-3.6011393,-3.3562143,-3.3973231,-3.351451,-3.3135958,-3.3245697,-3.2312093,-3.0440984,-2.9417117,-2.993771,-2.9172401,-3.12811,-3.1374393,-2.0403895,-2.921855,-3.317035,-3.3407524,-3.3161154,-3.3268192,-3.227816,-2.0565891,-3.1700077,-2.471874,-3.2506897,-3.3423407,-3.41921,-3.4908314,-3.5319624,-1.6262805,-2.5694597,-3.0882597,-3.1051633,-3.2333121,-3.2707624,-3.199625,-3.179335,-2.1567397,-3.0829277,-3.1065156,-3.273691,-3.2906263,-3.1474488,-3.2732866,-3.1924496,-3.4191008,-3.55174,-3.6159573,-3.4368415,-3.5325766,-3.6398711,-3.680902,-3.6220796,-3.6060238,-3.5249305,-2.2436523,-3.177263,-2.3583722,-3.1693826,-3.4539397,-3.5759735,-3.61346,-3.458321,-3.4330974,-3.7433906,-3.7588959,-3.4995131,-3.646651,-3.5816753,-3.5899878,-3.3362005,-3.4948208,-3.6275744,-2.3554301,-3.39805,-3.3288646,-3.3419483,-3.5880194,-3.7622933,-3.8541675,-3.8781352,-3.794248,-3.85891,-3.8343801,-2.4913263,-3.3358297,-3.715518,-3.7426448,-3.908082,-4.1102047,-4.0648093,-3.7369018,-3.721593,-3.878264,-4.0040026,-3.714528,-3.891828,-3.5132883,-3.683882,-3.828278,-3.866681,-4.060294,-4.005161,-3.8877997,-3.894525,-2.6818862,-3.2184067,-3.6870794,-3.8118434,-3.6913576,-3.9501376,-4.071926,-3.8838096,-3.9018626,-3.8457532,-3.8389897,-3.8246746,-3.7666483,-3.6590552,-3.6848202,-3.7884517,-3.7267022,-3.6020627,-3.6628282,-3.8847966,-3.827372,-3.7857823,-3.840848,-3.7352943,-3.4661117,-3.4856572,-3.5362754,-3.2228649,-2.888801,-3.1837974,-3.2591677,-3.1167521,-3.1514878,-3.1964173,-2.0828447,-2.1072354,-2.118569,-2.1748693,-2.1789458,-2.2604055,-2.2489448,-2.2978938,-2.271852,-2.3032994,-2.2094035,-2.1596668,-2.190229,-2.1614532,-2.1156516,-2.0284853,-2.0357103,-1.9880962,-2.079043,-2.041085,-1.987186,-2.0083501,-2.017343,-2.0291858,-1.9695888,-1.9677715,-2.0798032,-1.7260058,-1.740051,-1.8561893,-1.9001493,-1.8222628,-1.9214349,-1.927969,-1.9672124,-1.2751403,-1.6473787,-1.7972987,-1.9892964,-1.9981234,-1.9935567,-2.083467,-2.1749754,-2.1555948,-2.1190834,-2.1194272,-2.1750224,-2.182776,-2.186823,-2.1863651,-2.2108016,-2.2242358,-2.1822677,-2.200873,-2.2654567,-2.206624,-2.2142408,-2.2707005,-2.2320287,-2.2056315,-2.0949953,-2.0287976,-2.0742915,-2.0099857,-1.7097111,-1.8848844,-1.8420115,-1.8885448,-2.001896,-2.0357525,-2.0546489,-2.0830402,-2.0374837,-2.0369432,-2.0301404,-1.9530473,-1.8523383,-1.8660963,-1.7369788,-1.8373249,-1.7848468,-1.6339831,-1.5300386,-1.4198542,-1.2904949,-1.0787325,-0.87383276,-1.0234349,-1.2726219,-1.3430774,-1.3221631,-1.394259,-1.402379,-1.549201,-1.6253204,-1.6975012,-1.5832064,-1.2696147,-0.6354515,-0.82601553,-1.0896652,-1.1983318,-1.3590679,-1.5263655,-1.6251006,-1.5304668,-1.5494838,-1.4862282,-1.3612425,-0.9362845,-0.6864206,-0.49477124,0.11561486,0.006994039,-0.9862663,-0.98581296,0.04153511,0.34896064,0.5344441,0.52779186,-0.15292376,-0.84917563,-1.3766091,-1.8095474
+-0.5498778,-1.2815757,-1.8011606,-2.1908448,-2.1387959,-2.1664448,-2.4161963,-2.6593862,-2.5345514,-2.5724258,-2.8654964,-2.7234564,-2.7561073,-2.624877,-2.163228,-2.3847275,-2.4036608,-2.3212237,-2.9896426,-3.0521388,-3.178388,-3.2037477,-3.1827104,-3.1705768,-2.8591695,-3.2030568,-2.3309853,-2.7558131,-3.0529046,-3.184895,-3.2475185,-3.1654909,-3.2951927,-3.3258579,-3.357152,-3.26544,-3.2282214,-3.27875,-2.3967576,-2.6781747,-3.109122,-3.2124176,-3.0951538,-3.273282,-3.5954986,-3.539547,-3.477321,-3.4677458,-3.3249555,-3.1950083,-3.3459163,-2.792108,-2.295576,-3.2197633,-2.42305,-3.1631734,-2.5029898,-2.921067,-3.2936325,-3.4462366,-3.266428,-3.4617677,-3.5879557,-2.277119,-3.1777596,-3.3551517,-3.3855915,-3.5414684,-3.51259,-3.38596,-3.2264242,-3.2374482,-3.2102036,-3.2672968,-2.1938412,-3.2269464,-3.2899177,-3.3473334,-3.29318,-3.2308497,-3.3628078,-3.4295835,-3.3926847,-3.4577138,-3.2481418,-3.3488078,-3.3815022,-3.4002087,-3.4299898,-3.4404118,-3.403656,-3.3597646,-3.4832869,-3.475944,-3.4060779,-3.3076935,-3.2976053,-1.8473289,-3.277194,-3.5865936,-2.4046903,-3.0666752,-3.5176826,-3.5074701,-3.429594,-3.4592412,-3.3245602,-2.5692534,-3.4258761,-3.3596141,-3.4208703,-3.5232317,-2.7310324,-2.7427797,-3.1637414,-3.3838634,-1.9461412,-3.0113711,-3.1856728,-3.5426488,-3.5420969,-3.5060563,-3.4335132,-3.4814234,-3.5380645,-2.156163,-3.160038,-3.4076543,-3.5317602,-3.5378265,-3.5848305,-3.554354,-1.5238745,-2.417048,-3.1864705,-3.3195205,-3.0149224,-3.1878767,-3.4184897,-3.2259953,-3.2929044,-3.2217717,-3.4564948,-3.5130997,-3.2593114,-3.3009448,-3.4033637,-3.353962,-3.4807596,-3.3652027,-3.365929,-3.4623332,-1.6985826,-3.1151123,-3.3048496,-3.2810752,-3.2573779,-2.401756,-2.891675,-3.2954187,-3.2921453,-2.9162345,-3.3220186,-3.3914337,-3.386489,-3.5305274,-3.5287318,-3.3745928,-2.869785,-3.2821016,-3.3036873,-3.3428245,-3.5034213,-3.3705053,-3.6953092,-3.3146305,-3.1712828,-3.2310612,-3.2613764,-3.409719,-3.4684906,-3.5615382,-3.4721718,-3.5039673,-3.5111685,-3.4241557,-1.8977046,-2.9935656,-3.2575521,-3.2703047,-3.3744607,-3.4531436,-3.4495342,-3.4060426,-3.5047524,-3.3477407,-3.4125886,-3.3835607,-3.3583634,-3.2692277,-3.1791615,-3.1277204,-3.1904068,-3.2425766,-3.3236034,-3.279856,-3.2177992,-2.5467684,-3.069323,-3.0772471,-3.19633,-2.7780204,-3.015769,-3.1888397,-3.2149625,-3.236589,-3.219315,-3.181365,-3.1332078,-2.9877596,-3.013173,-2.9665954,-3.0234222,-3.157382,-3.0397744,-2.9937522,-3.2033331,-3.248763,-3.2387865,-3.1585016,-3.0712788,-2.4762886,-2.8019571,-2.7309203,-2.6521726,-2.5978944,-2.523055,-2.3649132,-2.368727,-2.3058476,-2.129098,-1.8423119,-1.8764653,-1.9726539,-2.0028524,-1.9698088,-1.9122083,-1.8211713,-1.7656302,-1.8703575,-1.9155431,-1.8642383,-1.8412633,-1.7702935,-1.4340725,-1.5513766,-1.5961747,-1.6206179,-1.6655462,-1.5562527,-1.5623643,-1.6698117,-1.7298355,-1.6517808,-1.5507493,-1.5680108,-1.5264533,-1.4680717,-0.9408092,-1.0339234,-1.1405783,-1.1785371,-1.1794646,-1.248534,-1.2299488,-1.293616,-1.2777715,-1.2120538,-1.2849433,-1.3986518,-1.3653986,-1.4078779,-1.547189,-1.5645823,-1.4554284,-1.5485876,-1.5421896,-1.6296754,-1.5994306,-1.6481824,-1.6138508,-1.6231358,-1.5886567,-1.5028152,-1.3742824,-1.228353,-1.2312007,-1.2490773,-1.2930048,-1.2509084,-1.1510396,-1.1120601,-1.1324224,-1.0693436,-1.0302134,-0.96356577,-1.0288458,-1.0445716,-1.0886908,-1.1224079,-1.0854452,-1.0996308,-1.1217582,-1.107919,-1.1523876,-1.0201232,-0.8049807,-0.5932663,-0.66296345,-0.6142829,-0.5097713,-0.43211353,-0.2038793,-0.26940542,-0.1898281,-0.13924485,0.32735226,0.48397663,0.7000333,0.29092574,-0.18150276,-0.15509471,-0.04128921,0.03567183,-0.21671689,-0.4407149,-0.43202305,-0.24423867,0.2097811,0.9220496,0.86990076,0.5051552,0.25365338,-0.1073519,-0.43201077,-0.54731923,-0.5251811,-0.48006505,-0.37564367,-0.11064798,0.30143997,0.52779603,0.699617,1.0404446,0.7396012,0.17453933,0.04551524,-0.16848025,-0.8376295,-1.7972395,-2.0882864,-2.3367703,-2.302263,-2.6269324,-2.7267756
+-0.18599436,-1.1311779,-1.7042017,-2.091023,-2.0834937,-2.5108054,-2.6249647,-2.7320452,-2.7921357,-2.5740647,-2.930734,-2.8507686,-2.6157513,-2.5337524,-2.3281188,-2.4510612,-2.2921054,-2.503337,-3.092816,-3.0553746,-3.1793652,-3.1982942,-3.234157,-3.2456555,-3.130392,-3.065122,-2.348845,-3.2892237,-3.3191133,-2.6182227,-3.122317,-3.2339263,-3.252512,-3.0831425,-3.2138374,-3.1302671,-2.6626346,-3.3500857,-2.955195,-3.046781,-3.129555,-3.2100878,-3.27712,-3.4391012,-3.3418226,-3.1003036,-2.9669886,-2.9804409,-2.9514165,-2.8303685,-2.7900429,-2.885775,-1.8339233,-3.110204,-2.9276614,-3.1781516,-3.3506122,-3.0024097,-3.5615025,-2.7345047,-3.4999723,-3.5740354,-3.5930338,-3.3443077,-3.3649273,-3.3900266,-3.1303809,-3.0137572,-3.054434,-2.9538894,-2.88631,-3.0124757,-3.0374887,-2.6979694,-2.4918044,-3.2856007,-3.4734716,-3.3438454,-2.4252188,-3.300469,-3.3817701,-3.590481,-3.348414,-3.3055987,-3.4043462,-3.2885766,-3.310327,-3.2434828,-3.3242035,-3.4738622,-3.4483836,-3.419311,-3.2188916,-3.5681612,-3.5082047,-3.361586,-3.4576006,-2.3040621,-3.5502844,-3.8671536,-3.5182521,-3.5624146,-3.6329422,-3.7032652,-3.6569722,-3.494124,-3.6639655,-2.169514,-3.792028,-3.7681632,-3.863072,-3.9936843,-4.08223,-3.3994648,-3.6569736,-3.9707808,-4.0833344,-2.7931156,-3.9194279,-3.3574584,-4.1031885,-4.1069293,-3.8887415,-4.1612344,-4.2068577,-4.155326,-4.1531754,-4.205542,-4.138967,-4.118072,-4.0490193,-3.7423844,-2.2399826,-3.0124257,-3.6821747,-3.8951244,-3.8109698,-4.0719256,-4.1518807,-4.2351093,-2.8598146,-3.644393,-3.8079891,-4.0263186,-4.0276856,-4.040302,-4.121568,-4.183419,-4.0548954,-4.036693,-3.9606347,-4.027778,-4.011621,-4.0337954,-3.8885832,-3.7600856,-3.6607118,-2.1197326,-3.406342,-3.4526322,-3.6891513,-3.4171767,-3.7601657,-3.9650393,-3.909944,-4.094647,-4.21012,-2.0331147,-3.3714917,-3.7596836,-3.9232297,-3.9388604,-4.0644183,-3.9482236,-3.971488,-3.990931,-3.5983536,-3.8132272,-3.988268,-4.1033473,-4.0247207,-4.0526013,-3.9292645,-3.919815,-3.9242406,-3.8199182,-2.375735,-3.521549,-3.3258283,-3.7742128,-3.7318282,-3.8827596,-3.8371177,-3.7445407,-3.8088622,-3.7097502,-3.6293378,-3.6859827,-3.7126412,-3.7195945,-3.8332472,-2.806325,-3.5849695,-3.7102757,-3.7972636,-3.8532186,-3.8177857,-3.9150038,-3.9330888,-3.8789573,-3.9079223,-3.8611245,-3.8190942,-3.762197,-3.906001,-4.168899,-4.1246605,-4.0887294,-4.0288634,-3.921144,-3.8884568,-3.959208,-3.9796395,-4.1600423,-3.9972358,-3.9312558,-4.1394343,-4.2220497,-4.2669196,-4.067853,-3.9654965,-2.7915826,-3.5256352,-3.2325926,-2.9508963,-3.234528,-2.5683463,-2.8210588,-2.7410693,-2.6994338,-2.3723812,-2.252075,-2.6465216,-2.9463413,-3.1910522,-3.1347737,-2.9580703,-2.7313716,-2.7903047,-2.7264543,-2.4740403,-2.2550278,-2.343761,-2.2197185,-2.0522242,-2.070057,-2.0429254,-2.056634,-2.1324,-1.9778581,-1.921457,-2.0989776,-2.0931268,-2.0060391,-1.9063501,-1.906632,-1.7842841,-1.8076828,-1.2980323,-1.3751316,-1.3763139,-1.2181125,-1.2539957,-1.189976,-1.047785,-1.1049466,-0.94660825,-1.2254012,-1.3750613,-1.4159062,-1.3654919,-1.3655546,-1.4062545,-1.411279,-1.2791903,-1.4411716,-1.4384573,-1.3772976,-1.3279934,-1.2806559,-1.2325008,-1.328047,-1.1263225,-0.95907336,-0.87270623,-0.8103016,-1.0723913,-1.1256232,-1.0850995,-1.3725781,-1.349942,-1.319108,-1.3162873,-1.2349203,-1.2257996,-1.2301373,-1.3420897,-1.530863,-1.4173918,-1.2248363,-1.3969045,-1.2669704,-1.4872015,-1.6392095,-1.4658167,-1.2277431,-1.2304106,-1.2967012,-1.1757708,-1.2628341,-1.1895435,-1.0198457,-0.7690552,-0.60934335,-0.28967553,-0.0075693727,-0.5229555,-1.2751696,-2.1262164,-2.1828744,-1.6230772,-1.2628293,-1.088923,-0.8658506,-0.7877597,-0.69198585,-0.722758,-0.5840505,-0.20158511,-0.8328876,-2.0784116,-2.3940601,-2.3270712,-2.0935225,-1.8890648,-1.7940631,-1.727577,-1.7721355,-1.5703392,-1.447849,-1.2577152,-1.7110903,-2.0655463,-2.3762412,-2.49116,-2.5741134,-2.329046,-2.3405802,-2.6143584,-2.6719074,-2.777988,-2.7828279,-2.7395225,-2.925592,-2.9497156
+0.46816844,-0.058092922,-1.0692201,-1.8090565,-1.9758563,-2.2213259,-2.3013043,-2.3239436,-2.2661057,-2.3781352,-2.4687104,-2.3419576,-2.2970757,-2.325213,-2.2260737,-2.2486186,-1.9196239,-2.4086142,-2.936606,-2.6838632,-2.8816228,-3.0604343,-3.058495,-2.9359305,-3.061636,-2.9944758,-2.2392461,-2.919725,-3.114779,-2.4048474,-2.6415644,-2.7908413,-3.0120468,-2.955608,-2.960156,-2.9031727,-2.865559,-2.599625,-2.2237616,-2.8930383,-2.5308259,-2.7585561,-2.988927,-3.0438495,-3.0032787,-2.5183024,-3.1806579,-3.2173977,-3.0615292,-3.033586,-2.9836826,-2.8257856,-2.3615258,-3.1226993,-3.0254822,-3.1276164,-3.1645193,-2.89156,-3.1895108,-3.182906,-3.1451783,-3.1776347,-3.2154684,-3.1695156,-2.9917603,-2.8633437,-2.7566652,-2.7524943,-2.7384,-2.6913605,-2.7527366,-2.777372,-2.702671,-2.5689645,-2.5704806,-2.923286,-3.1379573,-3.2810156,-1.8743289,-3.2209628,-3.31422,-3.1030579,-3.075382,-2.9138002,-2.8889818,-2.8561468,-2.673276,-2.660585,-2.6422486,-2.6100976,-2.7788012,-2.6234941,-1.4050801,-2.9999614,-3.1426759,-3.139644,-3.1465955,-3.0571842,-3.346252,-3.4048655,-3.2798302,-2.9884443,-2.7869568,-2.880005,-2.5569863,-2.061307,-3.1871922,-3.4433765,-3.4646935,-3.118246,-2.9944282,-2.941377,-2.83705,-2.6749673,-2.7499094,-2.8391113,-2.8241482,-2.780616,-2.8542,-2.8843606,-2.5905619,-2.7451415,-3.228303,-2.30106,-3.2283852,-3.2885647,-3.0716343,-3.0495088,-3.0301247,-3.129816,-3.226706,-3.0488245,-2.0557775,-2.8881316,-2.9294243,-2.9812171,-2.9697957,-2.7961497,-2.9058957,-2.8161235,-2.8713896,-2.9175029,-2.899615,-2.6831055,-2.0687957,-2.7070518,-2.6772718,-2.9412084,-3.0396898,-2.9680562,-2.9073486,-2.142773,-3.138564,-3.1714594,-3.157104,-2.987854,-3.0056276,-2.9998517,-2.3978362,-3.3782241,-3.4718757,-2.9141703,-3.0747666,-3.2476127,-3.1592195,-3.1322901,-3.322516,-3.2324283,-2.4333594,-2.9965496,-3.1752014,-3.199308,-3.1935892,-3.0748577,-3.1391087,-3.2379708,-2.5933375,-2.857695,-2.857362,-2.9055147,-2.9366794,-3.0154607,-3.011242,-2.996476,-2.9801135,-2.828085,-1.9957116,-3.0302424,-2.7507138,-3.0317767,-3.0316446,-2.9919379,-2.7649164,-2.8732142,-2.893746,-2.8073912,-2.7860808,-2.7890508,-2.8602502,-2.8952634,-2.7578673,-2.950974,-3.0366435,-2.8640404,-2.8612516,-2.859234,-2.834192,-2.9396214,-3.0283425,-2.8826807,-2.672497,-2.8779984,-2.9490836,-2.7984576,-2.8462524,-2.9936543,-2.9374132,-2.902841,-2.8275843,-2.8182437,-2.0029895,-3.0897596,-2.905916,-2.9489427,-2.853684,-2.6732092,-2.7568388,-2.8799653,-2.9215631,-2.835704,-2.9945827,-2.2231305,-2.5615203,-2.229003,-1.8977828,-1.8183403,-2.1554782,-1.9345837,-1.7445512,-1.6055124,-1.3443666,-2.0012183,-2.3009868,-2.49056,-2.464221,-2.1961694,-1.9463208,-1.7404938,-1.606405,-1.5912676,-1.7149038,-1.6257784,-1.4893909,-1.2757921,-1.225894,-1.1719275,-1.1922562,-1.1969409,-1.2569654,-1.1929986,-1.2828398,-1.3222094,-1.2568092,-1.2432966,-1.2574706,-1.322583,-1.2199025,-1.2762525,-1.2549474,-1.4714289,-1.4527128,-1.426635,-1.5632951,-1.4480972,-1.460568,-1.3796499,-1.2838755,-1.8021975,-1.5803144,-1.6123731,-1.5047414,-1.4974976,-1.399874,-1.4649832,-1.568661,-1.560718,-1.5419002,-1.486855,-1.5485857,-1.5380802,-1.5497911,-1.6663225,-1.6606917,-1.6767681,-1.6531136,-1.5780513,-1.3129253,-1.3835387,-1.4254942,-2.1220088,-1.9531124,-1.9749975,-1.9789767,-1.9756567,-1.8240829,-1.8370774,-1.8456087,-1.9232559,-1.8047128,-1.6258194,-1.8669796,-1.7747145,-1.9098248,-2.0326924,-2.0429382,-2.0820177,-1.644665,-1.1017368,-1.0832274,-0.9682748,-0.89028305,-0.5242923,-0.2553503,-0.021187842,-0.9088183,-1.4528809,-1.8472219,-2.065423,-1.707149,-1.7639065,-1.6150424,-1.3841534,-1.2296739,-1.1204627,-1.1908195,-1.2331345,-1.0698421,-1.06779,-1.2750778,-1.8537674,-2.1818287,-2.4454956,-2.5484042,-2.5170853,-2.3715305,-2.2348142,-2.1553023,-2.0620728,-1.85287,-1.7109392,-1.9227152,-2.2648506,-2.343158,-2.5583782,-2.5793438,-2.3999336,-2.3674169,-2.0992613,-2.8871353,-3.148775,-3.2066264,-2.9354339,-2.3944988,-2.6523297,-2.984007
+-1.063698,-1.5512843,-1.7283623,-1.9607792,-2.07547,-2.45474,-2.5919404,-2.6663659,-2.6847615,-2.6284528,-2.681161,-2.7298293,-2.58245,-2.6010346,-2.4400392,-2.3674548,-1.8977146,-2.753728,-3.162812,-2.9173162,-3.2906418,-3.2116055,-3.2641554,-3.0953207,-3.100618,-2.979247,-3.0198784,-3.3041692,-3.483093,-2.8461199,-3.5559306,-3.412856,-3.2791224,-2.9444108,-3.0134625,-3.0310335,-2.983812,-2.7701688,-2.431879,-3.4176345,-3.0626001,-3.369023,-3.278001,-3.1771333,-3.1230583,-2.8227007,-3.3763218,-3.2712772,-3.1798153,-3.019112,-2.86281,-2.8160992,-2.4346592,-2.569941,-2.888958,-2.975748,-3.1354442,-3.3602834,-3.6418514,-3.4998643,-3.2252438,-3.6672819,-3.5179415,-3.2251909,-3.2038941,-3.1234312,-3.1085708,-2.9788504,-3.0292516,-2.9043736,-2.8257208,-2.8033838,-2.7904446,-2.8198035,-2.78831,-2.7315683,-2.781886,-2.797923,-2.7967908,-2.8882573,-2.9678497,-2.9834485,-3.012432,-3.0185847,-3.1169932,-2.8365328,-3.2693615,-3.677338,-2.4376957,-3.735876,-3.930615,-3.8505588,-2.7481477,-3.5669806,-3.8228574,-3.593616,-3.5610728,-2.8945622,-3.64922,-3.8572145,-3.6969304,-3.4815035,-3.097374,-3.3490355,-3.6512098,-2.7864094,-3.866239,-3.4860573,-3.9116921,-3.9511771,-3.8565383,-3.8047814,-3.6373742,-3.8628373,-4.0120454,-3.9842315,-4.015642,-3.8819995,-3.777948,-3.539268,-2.419674,-3.873239,-4.0798993,-3.6427283,-4.1109567,-3.4419048,-3.0847673,-4.0422835,-3.1760807,-3.8465848,-3.8682017,-3.991229,-3.744084,-3.3301928,-3.9147663,-4.148973,-4.260119,-4.256229,-4.228394,-3.9997087,-2.2166421,-3.5685172,-3.9093204,-4.1202765,-4.1095414,-3.224328,-3.6513643,-4.0416865,-3.4880493,-3.980598,-2.8936188,-3.198346,-3.3613014,-3.6990113,-4.0005546,-2.957056,-3.1665957,-3.5121033,-3.5850508,-3.2828157,-3.571281,-3.363749,-3.655501,-3.9341326,-3.8493228,-3.444222,-3.8687978,-3.7139106,-2.8712578,-3.6937747,-3.9413295,-3.8445253,-3.9895072,-3.9691825,-3.9249902,-3.9181952,-3.1532102,-3.5887895,-3.857965,-4.08808,-3.926013,-3.8179984,-3.9102683,-3.969102,-3.9453425,-3.89572,-2.1802979,-3.5678174,-3.5569348,-3.6395094,-3.7312803,-3.804038,-3.974358,-3.8217077,-3.6472354,-3.6920967,-3.6519768,-3.4635823,-3.492642,-3.5968137,-3.8472934,-3.9342651,-3.8150673,-3.8061213,-3.8172297,-3.8896785,-3.8216376,-3.9018407,-3.8978863,-3.959816,-3.7954392,-3.8635383,-3.823081,-3.8363333,-3.9372697,-3.9526916,-4.0601172,-4.090441,-4.033032,-4.0800023,-2.9178462,-3.6182785,-3.750505,-3.8914886,-3.76586,-3.7775931,-3.8762522,-3.9837027,-3.9533968,-3.8709598,-3.9528604,-3.3154552,-3.61404,-3.6582003,-3.7948537,-3.655716,-3.7199454,-3.7239804,-3.8022285,-3.7556014,-3.2154944,-3.5020406,-3.6337943,-3.8714347,-3.6359742,-3.484526,-3.0060978,-3.330882,-3.2739985,-3.229582,-3.1601334,-2.6745965,-2.5762906,-2.5445886,-2.6448634,-2.4624379,-2.3639123,-2.4140782,-2.4366963,-2.4508219,-2.1409287,-2.0859816,-2.1058216,-2.209606,-2.3799317,-2.3574371,-2.3578331,-2.203443,-1.7254217,-1.9040031,-1.8120711,-1.8010817,-1.854557,-1.6875224,-1.6351922,-1.7468429,-1.5687704,-1.495364,-1.7369504,-1.603888,-1.5660019,-1.5933077,-1.622827,-1.6054897,-1.4682243,-1.4337275,-1.3652081,-1.4950559,-1.5737655,-1.6509275,-1.086432,-0.9287823,-0.8137384,-0.69102746,-0.6131681,-0.46926862,-0.27353412,-0.39109224,-0.26273292,-0.15878925,-0.17091823,-0.34094524,-0.34249222,-0.22252172,-0.14826405,-0.4004982,-0.6558422,-0.79801446,-0.7612969,-0.8686004,-0.8609031,-0.8042601,-0.837688,-1.0246031,-0.989502,-1.1649053,-1.5059338,-1.9587362,-2.4173026,-2.3823159,-2.33426,-2.3696375,-2.4954448,-2.4613233,-2.5351088,-2.5786304,-2.6692157,-2.730452,-2.6235993,-2.355329,-2.5319731,-2.29992,-2.2303908,-2.2566762,-2.5697987,-2.665512,-2.5847003,-2.4702375,-2.462253,-2.4937408,-2.744697,-2.9244974,-2.8109603,-2.9481714,-2.9803894,-2.8569062,-2.984797,-2.7226386,-2.726239,-2.5583253,-2.694135,-2.8307528,-2.8067515,-2.7098618,-2.8360784,-3.116273,-2.8648672,-2.693077,-2.6798363,-3.1904545,-2.777635,-3.0251234,-2.3049295,-3.1332989,-3.2161016
+-0.6940896,-1.2245591,-1.7192078,-2.0276499,-2.209899,-2.4166555,-2.5737867,-2.6980612,-2.7550492,-2.796677,-2.7244892,-2.9155598,-2.9047115,-2.952374,-2.8854244,-2.8026342,-1.6714392,-3.0721655,-3.30696,-2.920359,-3.355744,-3.5754437,-3.5854933,-2.977406,-3.6642952,-3.6418238,-3.5484774,-3.7821355,-2.4994755,-3.275739,-3.4071486,-3.3769817,-3.3418207,-3.4987488,-3.548224,-3.5831327,-3.560391,-3.445313,-2.9157054,-3.6807356,-2.8887863,-3.5577722,-3.7460723,-3.6360774,-3.5333643,-2.8581107,-3.277743,-3.3577628,-3.2222457,-3.3747854,-3.1966753,-3.2600532,-2.9564326,-2.9828956,-3.0335546,-3.1976538,-2.7927234,-3.5182362,-3.6612222,-3.6661923,-3.2120214,-3.603622,-3.717772,-3.7518888,-3.8119826,-3.7890468,-3.7983394,-3.6047049,-3.8527503,-3.8306885,-3.8201928,-3.802278,-3.8205452,-3.758778,-3.770184,-2.9428644,-2.71073,-3.864243,-3.0243995,-3.9246001,-4.014857,-4.025039,-3.9949841,-3.9147906,-3.9446368,-3.8722997,-2.2686708,-3.7580943,-3.296094,-4.016562,-4.0988784,-3.610393,-2.7386146,-3.3160357,-3.7093878,-3.8106112,-3.3404658,-4.044184,-3.6522114,-3.84452,-3.8527565,-3.6354227,-2.0658991,-3.2020237,-3.7091165,-3.8731608,-3.87216,-3.7742696,-3.8534236,-4.0269647,-3.9727325,-3.9583292,-3.9334526,-3.9039416,-3.6711917,-2.8079145,-3.8300877,-4.131163,-4.2155747,-3.0451741,-4.066116,-3.0850873,-4.0818253,-2.8567815,-4.181393,-4.206559,-3.257626,-3.8508487,-2.8914132,-3.7698512,-3.918758,-4.0578885,-3.8319278,-3.110649,-4.0836535,-4.2588735,-4.3197174,-4.307289,-4.2764964,-4.2375703,-2.0707488,-3.736834,-4.078503,-4.1129255,-4.0579047,-3.8908439,-2.825562,-3.5068,-3.0736425,-3.740891,-3.2221804,-2.7115908,-2.381969,-3.585805,-3.7946172,-3.7336698,-3.4000657,-3.6427684,-3.6340494,-3.5834556,-3.4896712,-3.5427666,-3.7634254,-3.841927,-3.7197452,-3.2149143,-3.852344,-3.874947,-2.9805787,-3.8019967,-3.9159942,-3.805615,-3.864685,-3.6749578,-3.6716444,-3.7082243,-2.6928382,-3.612585,-3.975223,-4.0731664,-4.114656,-3.953775,-3.9373794,-3.879383,-3.868854,-3.8065748,-2.168684,-3.4447289,-3.6452117,-3.838667,-3.9592223,-3.954742,-2.6674128,-3.6916943,-3.7289119,-3.8125424,-3.8670754,-3.529183,-3.5383272,-3.5289237,-3.79075,-3.7593422,-3.7230792,-3.76972,-3.748026,-3.712504,-3.6425195,-3.6719155,-2.9481955,-3.5395513,-3.5745745,-3.5845222,-3.659068,-3.6251912,-3.6982365,-3.5117724,-3.58501,-3.7417474,-3.8010316,-3.804676,-2.4460297,-3.3785894,-3.537632,-3.659769,-3.7087073,-3.646032,-3.665848,-3.7532468,-3.7659693,-3.7146368,-3.501566,-3.6332898,-3.4748802,-3.4408565,-3.5850465,-3.437655,-3.5648203,-3.5319026,-3.5712383,-3.4559271,-3.349771,-3.559166,-3.568242,-3.700932,-3.5167224,-3.4570723,-2.8693213,-2.521474,-2.7359228,-2.7657456,-2.6897683,-2.3380435,-2.0821393,-1.8781831,-1.794982,-1.7611694,-1.6859376,-1.6485279,-1.6247842,-1.433111,-1.4822791,-1.4665062,-1.4180503,-1.4470491,-1.4846506,-1.5821555,-1.418334,-1.4208691,-1.1039841,-1.4312155,-1.5207598,-1.4785445,-1.6480005,-1.5315576,-1.495934,-1.5592663,-1.4409533,-1.7200232,-1.5573332,-1.4506111,-1.3808074,-1.3914111,-1.3926878,-1.374232,-1.4126353,-1.3977029,-1.5574567,-1.5858068,-1.5691848,-1.0811267,-0.8412282,-1.06076,-1.2224944,-1.1992803,-1.3833232,-1.5276854,-2.0599046,-1.9908214,-1.8532672,-2.1145396,-2.084959,-1.8284202,-1.8547678,-1.9669287,-2.0324702,-2.2391403,-2.4094217,-2.3148441,-2.1105258,-1.7558424,-1.8270371,-1.9215181,-2.2507987,-2.4382367,-1.9780712,-1.8837502,-2.229496,-2.5715017,-2.5920107,-2.795621,-2.8338928,-2.7984357,-2.8604407,-2.9217691,-2.9060483,-2.8448143,-2.9162335,-3.0140665,-2.8268347,-3.1089897,-3.0255566,-2.92015,-2.842507,-2.8623972,-3.1394331,-3.26328,-3.2108636,-2.990602,-2.7785726,-2.754973,-3.2515469,-3.359421,-3.3518944,-3.4744558,-3.41332,-3.3883438,-3.424794,-3.3132641,-3.1838267,-3.0448446,-3.0569792,-3.1614194,-3.2229667,-3.1920965,-3.0933833,-3.3033183,-3.1490169,-3.1201317,-2.7595189,-2.6967697,-2.894198,-3.0377727,-2.2889748,-2.913095,-3.1491747
+-1.2819245,-1.99964,-2.350023,-2.5975184,-2.4703274,-2.8523011,-2.7889013,-2.9022036,-2.9495454,-2.9458554,-1.6788661,-3.2675269,-3.6635802,-3.9043236,-3.7793455,-3.7740731,-2.105443,-3.3450363,-3.519702,-3.8070617,-3.899302,-3.9204454,-4.028481,-4.000022,-4.2786956,-4.129186,-3.0670488,-3.801723,-3.025238,-3.6964087,-3.7522855,-3.8837495,-3.9711566,-4.130209,-4.1743116,-4.127666,-4.1422944,-3.4390233,-3.0027156,-4.0128465,-4.3234935,-4.2674155,-4.1184754,-4.06529,-4.1120863,-2.5711267,-2.9685616,-3.4728298,-3.6791744,-3.850082,-3.8455553,-3.9349465,-3.0654242,-3.6986322,-3.0341287,-3.4717457,-3.301032,-3.750472,-4.126617,-4.216331,-3.3688507,-3.9567575,-4.168368,-4.2372084,-4.258989,-4.1162834,-4.0792813,-4.101657,-4.1027718,-3.9899635,-3.979588,-4.0561366,-4.046878,-4.104918,-4.07577,-4.059337,-4.025763,-4.039415,-1.413156,-3.8014479,-4.115333,-4.216371,-4.0899734,-3.988555,-2.7650898,-4.0326996,-3.1392767,-3.935861,-4.2815175,-4.2841086,-4.245686,-3.6007633,-2.7972918,-2.6228795,-3.6517506,-4.0791297,-4.2137866,-4.202843,-3.291815,-4.015458,-4.218985,-4.015738,-4.184758,-4.1479645,-1.9696577,-3.7755685,-4.1832194,-4.135967,-4.2245107,-4.274011,-4.1625385,-4.044804,-3.9446626,-3.8627439,-4.0185,-2.5316942,-4.040219,-4.2685537,-4.3317723,-2.2300649,-3.364198,-3.9601026,-4.1774707,-4.224836,-4.158015,-4.211877,-3.1055217,-2.5580883,-3.586357,-2.9373455,-3.727015,-3.9586406,-4.1337876,-2.928481,-3.682313,-4.038952,-4.165994,-4.1892934,-4.2042165,-4.2623434,-4.2201047,-3.2791831,-4.1647077,-4.1883845,-4.185453,-4.0589933,-3.247603,-4.3496065,-4.3797293,-2.6205428,-3.539016,-3.5306797,-3.8333573,-3.6185696,-3.9518857,-4.081589,-4.0324073,-4.104482,-4.1048884,-4.109861,-2.6535048,-2.1187878,-2.4708295,-3.4654186,-3.9604788,-4.253717,-4.269545,-4.2884603,-3.6271038,-3.995936,-4.279405,-4.32836,-4.2443047,-4.1461883,-4.104298,-4.0934086,-2.2134018,-2.519806,-3.6955853,-3.9852562,-4.266772,-4.313878,-4.359332,-4.3592553,-4.059299,-4.1621194,-2.836998,-3.7861266,-3.692803,-3.8597689,-4.0649085,-4.08487,-3.4213047,-3.9047265,-3.7533326,-3.9453282,-4.1281323,-3.9527287,-3.9888396,-3.7666965,-4.0790157,-4.1000485,-4.0833015,-4.033748,-4.001186,-4.085009,-4.0274253,-3.8871884,-3.6544392,-3.9527678,-3.8961844,-3.8121276,-4.055096,-3.8725357,-3.8421922,-4.0006146,-3.9706817,-3.9296455,-3.9043455,-3.9131536,-2.4234533,-3.7680187,-3.898347,-3.9214926,-4.0396295,-3.8523512,-3.8262167,-4.0628734,-4.0674944,-3.9841456,-3.7717528,-4.0733495,-3.770944,-3.6295614,-3.8771644,-3.721788,-3.9011412,-3.9649014,-4.0118003,-3.8240533,-3.596373,-3.960322,-3.9449992,-3.9630885,-3.908403,-3.7920742,-3.7188826,-3.0911374,-3.3528023,-3.7137113,-3.3884847,-3.2204106,-2.6837611,-2.5321047,-2.722118,-2.82472,-2.7181249,-2.6321406,-2.466106,-2.348511,-2.629882,-2.5954127,-2.4243858,-2.4195871,-2.4555063,-2.586831,-2.4914765,-2.884006,-2.2331991,-3.0511775,-3.3645654,-3.412964,-3.3942862,-3.1344368,-3.3001583,-3.2157178,-3.3950896,-3.502509,-3.0969462,-2.6394951,-2.4209747,-2.412903,-2.2617846,-2.2539015,-2.5486145,-2.9419703,-3.3356671,-3.0043135,-2.3472085,-1.2459095,-1.2463448,-1.8319016,-2.0991356,-2.3524532,-2.840522,-3.1389337,-3.0834243,-3.040942,-3.0642335,-3.1817842,-3.1944702,-2.8487477,-2.7331233,-2.795141,-3.1047492,-3.3950057,-3.2314684,-3.0654483,-2.700181,-2.4382663,-2.8553813,-3.3101046,-3.7087922,-3.6969657,-3.2651815,-3.2317939,-3.9467616,-3.7971654,-3.7186613,-3.6144123,-3.7409644,-3.7902522,-3.8814187,-4.105246,-4.064962,-2.3591502,-3.5742323,-3.9763865,-4.16831,-4.0858107,-3.6438584,-3.4347687,-3.690678,-3.839594,-3.9591365,-3.930622,-3.9273849,-3.6146846,-3.6021404,-3.641314,-3.7749295,-3.7996678,-4.1300774,-3.8564453,-3.7999306,-3.7948222,-3.9548707,-3.7795744,-3.7573247,-3.660842,-4.1287208,-3.9847941,-3.9123063,-4.0431952,-3.865888,-3.8313804,-3.7741256,-3.527882,-3.6400552,-3.7718658,-2.8982835,-3.5462828,-2.6207287,-3.2112384,-3.8428183
+-1.1674411,-2.2394457,-2.637621,-2.9301894,-2.816255,-3.0519087,-3.0403025,-3.099052,-3.0192437,-2.9126577,-1.7352457,-3.8100057,-3.7806368,-4.2078094,-4.378225,-4.2109265,-2.1914024,-3.738091,-4.201307,-4.05716,-4.1348248,-4.238217,-4.4666057,-4.3698125,-4.531709,-4.507567,-3.3645113,-4.292954,-4.0116773,-4.2927127,-4.42988,-4.3940783,-4.483134,-4.59254,-4.7190385,-4.649964,-4.5917907,-4.3481326,-3.8756819,-4.2921953,-4.579341,-4.387701,-4.149737,-3.3123646,-4.2383385,-3.2333426,-3.2681024,-3.736896,-3.8242917,-4.0385184,-4.129594,-4.2507224,-4.143959,-4.3017187,-4.259863,-4.2261367,-4.1154466,-4.2060223,-4.222176,-3.9323297,-2.6254153,-3.0689428,-3.4982345,-4.024717,-4.003673,-3.8752198,-4.218486,-4.339897,-4.3918905,-4.3896117,-4.2525687,-4.27955,-4.183491,-4.042627,-3.99757,-4.284981,-4.119575,-4.010642,-2.0046797,-4.12684,-4.457697,-4.3610406,-4.1436486,-4.1280484,-4.091683,-3.9564142,-2.1703072,-2.7875528,-4.0018554,-3.97225,-4.516872,-2.9739938,-4.172478,-3.2762012,-4.102617,-4.5464134,-4.4236083,-4.3135552,-2.9961758,-4.0570517,-4.5366926,-4.294598,-4.17934,-4.1059813,-3.6708012,-2.3264985,-3.8635426,-4.261685,-4.526991,-4.5761876,-4.418453,-4.2178783,-3.9950519,-3.8236918,-3.9062939,-3.9549713,-3.7273488,-3.9505992,-3.307789,-2.6805048,-3.3996115,-4.1515465,-4.3612876,-4.307501,-4.380341,-3.1967463,-4.170713,-4.513632,-4.547322,-2.2894354,-3.967052,-4.4006534,-4.3805556,-4.401219,-4.3902135,-4.477779,-4.532732,-4.325117,-4.348144,-4.3716965,-4.206063,-3.2612062,-4.445261,-4.418065,-4.479342,-4.153666,-4.1391053,-4.504335,-4.498533,-4.438252,-3.2701564,-4.1794558,-3.0701098,-2.515004,-3.9172406,-4.291184,-4.4483843,-4.5621033,-4.557698,-4.5161524,-4.454718,-4.3436923,-2.438974,-3.9571357,-4.4209633,-4.472778,-3.4814377,-4.229936,-4.452028,-3.913444,-4.084944,-4.47619,-4.4910083,-4.504987,-4.5436063,-4.547434,-3.5744934,-2.589435,-3.954411,-4.320508,-4.620104,-4.7380834,-4.8462667,-4.7982545,-4.8581805,-4.768179,-4.3395405,-3.9861913,-3.15681,-4.0275664,-4.472413,-4.3613367,-4.32682,-4.5464773,-4.7884116,-4.4439774,-4.7306933,-4.420694,-4.3042774,-4.000314,-4.397995,-4.4698825,-4.4386897,-4.4755483,-4.384833,-4.3486314,-4.3695636,-4.1975274,-4.2826867,-4.270175,-4.1448236,-3.9615378,-4.212668,-4.17333,-3.9297576,-4.0671015,-4.131025,-4.282807,-4.2840753,-3.24997,-3.5411458,-3.944261,-4.340602,-4.4605546,-4.616528,-4.5410833,-4.5451293,-4.664854,-4.6356306,-4.4918103,-4.155806,-4.5493393,-4.4171996,-4.2265334,-4.4346046,-4.2920275,-4.5230985,-4.4749236,-4.5828013,-4.4395328,-4.0676045,-4.38994,-4.4339957,-4.510395,-4.473026,-4.4401307,-3.306024,-4.0118546,-4.109202,-4.321534,-3.902143,-3.801498,-3.4150267,-3.2808433,-3.5545092,-3.8209424,-3.7998605,-3.6461143,-3.2530317,-3.0625734,-3.8567262,-3.5152857,-2.9800916,-2.892354,-3.064558,-3.2504659,-3.1501517,-3.852181,-3.8179574,-4.2021976,-4.2591066,-4.4471974,-4.364968,-4.1407013,-4.306908,-4.2817435,-4.488058,-4.5009913,-3.963735,-3.6433299,-3.0701306,-2.8727984,-2.6965065,-2.7957397,-2.9978542,-3.5948563,-4.2807813,-3.8402786,-3.0189815,-2.3817527,-2.3983028,-3.0814748,-3.5222733,-3.7924695,-3.9986844,-3.9981089,-3.9408526,-4.0415845,-3.9774418,-4.178735,-4.1941504,-3.9690223,-4.00155,-4.119881,-4.340776,-4.516705,-4.339227,-4.1127133,-3.8716683,-3.7661333,-4.1403494,-4.4154916,-4.562741,-4.6220155,-4.1669188,-3.9793563,-4.3717866,-4.3358397,-3.601305,-2.9204779,-3.653275,-3.9166317,-4.115547,-4.535584,-4.6132812,-2.3814218,-3.8540673,-4.390461,-4.630257,-4.673249,-4.5250783,-4.300282,-4.575082,-4.602792,-4.658562,-4.7200904,-4.673016,-4.419166,-4.137334,-4.1268573,-4.4346156,-4.2774386,-4.6171412,-4.5114717,-3.1042354,-4.1625147,-4.409858,-4.4249935,-4.39471,-4.235755,-4.745048,-4.7609835,-4.713982,-4.5777965,-4.714698,-4.395593,-4.3106523,-3.8230872,-3.76859,-4.501479,-4.795441,-4.2518563,-1.9975419,-3.0799403,-4.0862927
+-0.33401316,-1.106782,-1.8619046,-2.2617075,-2.5605016,-2.747198,-2.9312112,-3.029789,-3.2202592,-3.2100866,-1.6183579,-3.334591,-3.368544,-3.7485685,-3.9195223,-3.9256644,-1.9130688,-3.0380554,-3.1893349,-3.373396,-3.6160548,-3.7286959,-4.0701756,-4.2578163,-4.2648296,-4.1893897,-3.325998,-3.9855304,-3.427649,-3.8764224,-3.9612718,-4.0315194,-4.048866,-4.0474124,-4.0189953,-4.0644693,-4.1570797,-4.040777,-3.2641816,-4.041336,-4.20093,-3.5999951,-4.1162314,-3.3938396,-3.9584756,-4.133812,-2.983449,-3.6514246,-3.7506347,-4.007257,-4.1136084,-4.164172,-2.8968627,-3.5739956,-3.9073915,-4.0956125,-3.1330812,-3.8403172,-4.1322045,-4.219467,-4.010671,-3.6487703,-2.981144,-3.7360706,-3.835075,-4.0273886,-4.0129943,-4.154549,-4.2362056,-4.292855,-4.2955947,-3.6478894,-1.249702,-2.745894,-3.075204,-3.4398103,-3.6776962,-4.037335,-4.1533575,-3.8331609,-4.2135506,-4.215262,-4.146216,-4.117123,-4.058661,-3.9738808,-3.7439094,-2.7937026,-4.1007833,-4.1993303,-4.158772,-3.9474282,-4.141152,-3.6211095,-3.861083,-4.2176137,-4.0803323,-3.9582477,-3.9272256,-2.1351326,-3.994165,-4.116536,-3.9775362,-3.9024405,-3.8828497,-3.4588232,-2.4908679,-3.8043756,-4.081304,-4.1534505,-4.1304097,-4.053545,-3.9679322,-3.899221,-3.89669,-3.781592,-3.6133628,-3.9355493,-4.027888,-3.534803,-3.949552,-3.5065582,-4.0384097,-3.9376588,-3.930172,-3.9081502,-3.8991852,-3.9419045,-3.9565053,-3.9373527,-3.5081992,-4.00524,-4.0344505,-3.9723382,-3.9554782,-4.1386523,-4.1355653,-4.174008,-4.24613,-4.261569,-3.7727213,-1.5404477,-3.4108915,-3.8020968,-3.934391,-4.0551896,-4.13149,-4.1575627,-3.4904516,-3.375853,-4.18276,-4.1817117,-3.380981,-2.8619304,-3.912847,-4.093766,-4.0819554,-4.1372895,-4.132366,-4.132918,-4.128514,-3.9662013,-1.6779583,-3.4618402,-3.9797912,-4.1924586,-2.4061193,-3.6618476,-3.3610198,-3.877212,-2.8220692,-3.8031402,-4.1488166,-4.199803,-4.167501,-4.19692,-3.8268342,-1.6757567,-3.409959,-3.9836125,-4.2095056,-4.3182325,-4.381596,-4.271721,-4.353126,-4.349932,-4.2686896,-4.1193576,-4.1357245,-2.7152917,-3.91214,-4.0764585,-4.250339,-4.329742,-4.281128,-3.8337264,-4.056074,-4.1708617,-4.112794,-4.0726047,-4.070647,-4.147294,-2.6613748,-3.8400302,-4.247801,-4.344364,-4.3372383,-4.279018,-4.2827997,-4.1611967,-4.2275386,-4.206322,-4.18611,-4.234879,-4.1719956,-4.134969,-2.5224905,-3.8994274,-4.1046214,-3.3227935,-3.2941093,-3.659574,-4.0109153,-4.044102,-4.069361,-4.139486,-4.240594,-4.2691817,-4.23832,-4.2774987,-4.231817,-4.26197,-4.185723,-4.2403307,-4.3931103,-4.4158893,-4.299186,-4.3198037,-4.2657084,-4.3117905,-4.1694093,-4.3173723,-4.2867575,-4.3020067,-4.2853,-4.3207774,-2.9109175,-3.8592563,-4.031963,-4.141936,-4.103578,-4.0843787,-3.7080789,-3.683747,-4.035939,-4.176788,-4.2567735,-4.135466,-3.8952823,-4.019177,-4.2489247,-3.7813344,-2.8006735,-2.5485282,-2.78644,-3.327413,-3.5893884,-3.8720546,-3.6163805,-4.030249,-4.0432267,-4.312659,-4.060897,-4.0733743,-4.202619,-4.3506827,-3.9379854,-4.3713937,-4.093757,-3.7672386,-2.0264764,-1.7080455,-1.3438587,-1.1178992,-0.91825014,-1.896163,-3.1349912,-3.7599149,-3.74784,-3.0591764,-2.2510211,-3.2157478,-3.5123422,-3.7920156,-3.9601378,-4.020062,-4.1319437,-4.291281,-4.3749557,-4.3232284,-4.3032293,-4.15669,-4.2056737,-4.2816424,-4.4382234,-4.510095,-4.396093,-4.3035583,-4.247893,-4.2334294,-4.3831058,-4.3631806,-4.289129,-4.32222,-4.2041707,-4.3695397,-4.3323975,-4.111243,-3.4315493,-2.2361035,-3.3517046,-3.8930073,-4.2492023,-4.483824,-4.3996305,-2.4983163,-3.7668962,-4.277015,-4.449578,-4.4356847,-4.3751025,-4.2647653,-4.480143,-4.481051,-4.28178,-4.219198,-4.276998,-4.393417,-4.218491,-4.2108946,-4.1504827,-4.2155175,-4.2525826,-4.0564213,-4.024078,-4.138792,-4.0478864,-4.067249,-4.0792403,-4.1128697,-3.9579892,-3.8378892,-3.8902326,-3.887751,-3.888072,-3.859219,-3.9586444,-3.8714213,-3.8267717,-3.9470625,-3.9004436,-3.9150758,-1.0369925,-3.1008182,-4.0198092
+-0.27830595,-1.1299558,-1.8212299,-2.2342782,-2.5445156,-2.7202172,-2.8853593,-2.965468,-2.9915264,-3.25574,-2.3657188,-3.9491081,-3.6233125,-4.1835566,-4.3056016,-4.158196,-1.3195226,-3.2852292,-3.8236022,-3.6976256,-3.8002696,-4.1445827,-4.5412936,-4.6565633,-4.6438475,-4.5552177,-3.5825686,-4.4954624,-4.4261565,-4.633048,-4.627909,-4.3720136,-4.490741,-4.5721636,-4.5992618,-4.611286,-4.587319,-4.3014665,-2.5139606,-4.214626,-4.7946696,-4.5211134,-4.791946,-4.678592,-4.6264844,-4.6605577,-3.3529868,-4.0856376,-4.008421,-4.43028,-4.660376,-4.685109,-3.581899,-4.2991614,-4.429398,-4.286328,-3.4067514,-4.414194,-3.719943,-3.5170584,-3.9525018,-4.558311,-3.7165074,-3.8651748,-4.1078067,-4.55559,-4.7068386,-4.759417,-4.826575,-4.846906,-4.8176446,-4.3218303,-3.6230192,-4.415108,-4.6782136,-4.6628227,-4.490496,-4.5593114,-4.590025,-4.572634,-4.592329,-4.605101,-4.571136,-4.5363116,-4.513636,-4.4208074,-4.3993306,-4.3462887,-4.3383145,-4.345422,-4.359612,-4.328587,-4.322658,-4.174877,-2.2241893,-3.3000665,-4.5065618,-4.526445,-4.516412,-3.7671485,-4.5054555,-4.566435,-4.422951,-4.2914906,-4.2584033,-3.6626768,-4.3500433,-4.3669295,-4.306002,-4.239389,-4.2046504,-4.156256,-4.114735,-4.103995,-4.0855784,-4.0461607,-4.070987,-2.4886923,-3.9017816,-4.0487065,-4.2310967,-4.1362567,-4.0775533,-4.0302587,-4.0202756,-4.0244174,-4.0307508,-4.0229735,-4.0406985,-4.0308604,-4.041878,-4.0905795,-3.970283,-3.2326336,-1.3008792,-3.6459503,-3.8311214,-3.9769058,-3.6729193,-2.7017624,-1.7100015,-3.3093371,-3.953382,-4.2464604,-4.5599213,-4.646296,-4.6869965,-4.663542,-4.6653028,-4.6558466,-4.4380436,-4.6017137,-4.564448,-3.495034,-3.4236102,-4.4813766,-4.527182,-4.4881897,-4.4427876,-4.389255,-4.392207,-4.3608966,-2.1087363,-4.360233,-4.6939125,-4.53799,-3.8680606,-4.5046797,-4.3711767,-4.700888,-4.650435,-4.671041,-4.615298,-4.642799,-4.583612,-4.5133667,-4.475138,-1.7015543,-3.6206713,-4.2377014,-4.528603,-4.612616,-4.6636624,-4.655298,-4.7079,-4.6761513,-4.39126,-4.369226,-4.3372188,-1.9029279,-4.0115333,-4.5776,-4.7841115,-4.777616,-4.660622,-4.4662147,-4.5204253,-4.401805,-4.2354426,-4.1564174,-4.1377025,-4.292479,-3.7590075,-4.480576,-4.6501565,-4.5934925,-4.5204306,-4.409589,-4.4075904,-3.7391295,-4.358235,-4.359002,-4.379713,-4.4271874,-4.313119,-4.2093744,-2.271438,-4.1815457,-4.3276334,-4.296145,-3.267443,-4.0927796,-4.432637,-4.621071,-4.641172,-4.6654983,-4.7740626,-4.775807,-4.723025,-4.693129,-4.5599003,-4.5299125,-4.483857,-4.6031365,-4.7279553,-4.6067,-4.432407,-4.632157,-4.5987554,-4.647363,-4.636807,-2.9127793,-4.287752,-4.645685,-4.5739245,-4.7157507,-3.6765478,-4.5196633,-4.69996,-4.738654,-4.7422957,-4.630308,-4.4319267,-4.354279,-4.622663,-4.6615415,-4.719587,-4.6494527,-4.72951,-4.7636876,-4.6134295,-4.312084,-3.867165,-3.7481813,-4.046864,-4.3033757,-4.5292516,-4.4124136,-4.2852025,-4.264994,-4.376702,-4.4850116,-4.3138347,-4.4333425,-4.604439,-4.457751,-3.988985,-4.583725,-4.4581747,-4.3435054,-4.075746,-3.5895684,-3.2072332,-3.2778823,-3.7992477,-4.108763,-4.1178837,-3.9491458,-3.9978795,-3.8750443,-3.1017277,-3.8994188,-3.990543,-4.222366,-4.5483737,-4.671505,-4.6166635,-4.759574,-4.77239,-4.710556,-4.562848,-4.552957,-4.627215,-4.641708,-4.6651025,-4.6547666,-4.6401563,-4.4558578,-4.436592,-4.490681,-4.472365,-4.3652816,-4.367578,-4.4366965,-4.3081527,-4.489458,-4.274291,-4.165095,-4.1739745,-2.4658685,-4.0206766,-4.54019,-4.752729,-4.7513194,-4.566892,-2.5633438,-4.127398,-4.7722497,-4.842008,-4.811276,-4.5815787,-4.6677957,-4.737182,-4.639059,-4.565666,-4.4654493,-4.5356236,-4.5840654,-4.52186,-4.367106,-4.2674117,-4.4328737,-4.450037,-4.277494,-4.1360946,-4.2556825,-4.300711,-4.1670613,-4.1956525,-4.221581,-4.054103,-4.0337057,-4.1105247,-4.1194944,-4.119388,-4.095544,-4.1117845,-3.8220081,-4.049961,-3.9970708,-4.093939,-4.1560197,-1.9679055,-4.1419396,-4.578188
+-0.22639775,-1.2160804,-1.6771505,-1.8927855,-2.054564,-2.138423,-2.247386,-2.122942,-1.7883203,-2.4506688,-2.5468175,-2.448659,-2.4322736,-2.9957674,-3.095025,-2.9634554,-1.5335114,-3.3060257,-3.8274293,-3.148349,-3.6767292,-4.0972133,-4.1953235,-4.177838,-4.150316,-3.9163418,-3.3403418,-3.9270873,-3.2646804,-4.124685,-4.065471,-4.031655,-4.069981,-4.0716968,-4.007375,-3.8716388,-3.7145514,-3.42286,-3.3289397,-3.3929424,-2.802151,-3.6454685,-4.025892,-3.843862,-3.900323,-3.9617314,-3.9838905,-3.8917603,-3.6072545,-4.1223235,-4.1560235,-4.0245786,-3.8668413,-3.7599363,-3.439014,-3.1171882,-2.5006473,-4.3152294,-4.274859,-4.18019,-3.2082596,-4.322024,-2.861142,-4.1586757,-4.4766393,-4.506227,-4.3776317,-4.2540984,-4.09878,-3.9746203,-3.8653235,-3.653465,-3.605858,-3.016221,-3.8129935,-3.78624,-3.6918807,-3.6779346,-3.6579437,-3.4806795,-3.5470214,-3.5251772,-3.5595918,-3.5246875,-3.5001836,-3.4622116,-3.4027734,-3.396745,-1.3306262,-3.5432537,-4.000889,-3.925136,-3.9449773,-3.9723763,-2.8971076,-3.1873732,-3.9744477,-3.942112,-3.9136891,-3.8911853,-3.4748435,-4.0083776,-3.9215226,-3.8837285,-3.8331213,-3.8403554,-3.9328547,-3.9527922,-3.9654193,-3.9950829,-3.999877,-4.0343757,-4.1202583,-4.1815076,-4.207079,-4.189379,-4.2185807,-4.2483945,-2.205946,-3.2648587,-3.8366122,-3.9510636,-4.009659,-4.0579314,-4.1336565,-4.195172,-4.262673,-4.3027034,-4.382428,-4.38888,-4.5181613,-4.52451,-4.5126624,-1.9764013,-2.004508,-3.5311584,-2.7724342,-2.5841243,-2.0993552,-3.3888326,-3.5873077,-2.76574,-3.829877,-3.6222646,-4.052201,-4.15544,-4.0403304,-3.8074422,-3.40625,-4.0056233,-3.9378543,-3.8118782,-3.9678445,-3.9858985,-3.9667287,-3.9496522,-3.856895,-3.6996675,-3.2596703,-3.7127032,-3.7646718,-3.7123342,-2.4993722,-3.6182852,-3.710958,-3.5995955,-2.7793837,-3.6200073,-3.6942306,-3.526502,-3.6076727,-3.6911583,-3.8153315,-3.7362227,-3.700066,-3.654175,-3.6311045,-1.4625232,-3.3361294,-3.817717,-3.9522343,-3.9097633,-3.8972545,-3.752921,-3.7706838,-3.6753628,-3.5354087,-3.4968653,-3.4474964,-2.3534923,-3.966473,-3.8573747,-3.716609,-3.7692266,-3.7067618,-3.6741376,-2.7156105,-3.7673635,-3.7732654,-3.7257953,-3.6891284,-3.66867,-3.6158617,-3.7278266,-3.702602,-3.6095877,-3.5275435,-3.4484594,-3.4150283,-3.3707235,-3.297521,-3.3054132,-3.2302363,-3.2558272,-3.145533,-2.9645133,-1.675689,-3.6930647,-3.012646,-3.591332,-4.0592856,-3.670888,-4.034142,-4.061881,-4.1258655,-4.0008225,-3.8487525,-3.9897137,-3.882071,-3.7835064,-3.764997,-3.704022,-3.5703955,-3.5172563,-3.5372553,-3.4141665,-3.5398688,-3.5219715,-3.1734605,-3.5677474,-3.5232487,-3.5022016,-3.7916284,-3.6176772,-3.5088696,-3.274416,-3.0395913,-3.8425813,-3.616856,-3.9204803,-3.81251,-3.7159376,-3.2099652,-3.1900218,-3.5270317,-3.6202412,-3.5874276,-3.6285374,-3.534451,-3.6403358,-3.46588,-3.3247263,-2.9437947,-2.6573102,-3.2353387,-3.328651,-3.2474754,-3.2483675,-3.3562613,-3.3151836,-3.4978805,-3.4279487,-3.349142,-3.3452182,-3.3093278,-2.8668585,-3.0334027,-3.8236299,-3.7047162,-3.569305,-3.2096038,-2.9344864,-2.4359787,-2.5163496,-3.2536545,-3.5304823,-3.4639275,-3.316915,-3.4200025,-3.394629,-2.8739948,-3.8242111,-3.7721562,-3.9894242,-4.101193,-3.9305673,-4.130619,-3.9557557,-3.7285352,-3.7036934,-3.5150235,-3.2259336,-3.417163,-3.4467473,-3.450038,-3.3975382,-3.3522644,-3.2573404,-3.1066895,-3.1316578,-3.2617538,-3.177443,-3.327386,-3.4203105,-3.1050568,-3.1644385,-3.1644115,-3.141385,-3.4423788,-1.9939737,-3.721519,-3.80872,-3.864674,-3.9135766,-3.6986547,-3.083154,-4.008412,-3.9627504,-3.803658,-3.8731432,-3.6155515,-3.6374252,-3.5710838,-3.4130268,-3.4744315,-3.2506714,-3.1748352,-2.8004308,-2.7496881,-3.3797114,-3.4152327,-3.311112,-3.341209,-3.2440453,-3.2171133,-2.9533918,-3.2939548,-3.3973045,-3.3336205,-3.290935,-3.253765,-3.177474,-3.2067761,-3.2266455,-3.1914725,-3.101807,-3.1830835,-2.327001,-3.244141,-3.1477222,-3.1215537,-3.325269,-1.9060302,-3.6878395,-3.5715058
+0.17959905,-1.0526383,-1.8210258,-2.385597,-2.5961928,-2.6048079,-2.6367412,-2.6965418,-2.6381168,-2.7507927,-2.8421361,-2.7679653,-1.5830631,-3.2388687,-3.5877442,-3.6639786,-2.3913896,-2.8627033,-3.6920917,-3.680723,-3.6396024,-3.9211726,-3.9308276,-3.918491,-3.9654021,-3.844706,-2.7524328,-3.6864448,-3.8552165,-3.7730446,-3.7941918,-3.7875237,-3.7352757,-3.6891875,-3.6686912,-3.584537,-3.4932032,-3.0813828,-3.4362817,-3.4264994,-2.43602,-2.891871,-3.495992,-2.156155,-3.526524,-3.6519575,-3.7663407,-3.4342253,-2.8727674,-3.6202874,-3.8824234,-3.931097,-3.8925395,-3.8304887,-3.551497,-3.5308433,-2.75461,-3.7358017,-3.6524632,-3.2557192,-3.2087111,-3.8817625,-2.895348,-3.5864592,-3.5911446,-3.944839,-4.0203133,-3.9704037,-3.8541532,-3.83609,-3.7189665,-3.6148446,-3.5106852,-3.513783,-3.4591193,-3.433507,-3.4121616,-3.4011526,-3.423583,-3.3216822,-3.5219755,-3.5798876,-3.633368,-3.651126,-3.673782,-3.578217,-3.7225924,-3.8342385,-2.9099455,-3.441648,-3.9327178,-4.0756445,-4.1294127,-4.111475,-4.0707326,-4.0628877,-4.0836396,-4.0956855,-4.1302695,-4.165347,-2.8838615,-4.1558156,-4.3004575,-4.3367925,-4.320021,-4.3431067,-4.3868012,-4.4082656,-4.419762,-4.4435134,-4.45801,-4.458419,-4.4914126,-4.511437,-4.5419,-4.5233645,-3.3296711,-3.6089993,-4.3791738,-4.53844,-4.6346297,-4.6614156,-4.637111,-4.609181,-4.6428905,-4.667035,-4.6438985,-4.6484566,-4.6617217,-4.648579,-4.6569123,-4.645695,-4.6385694,-4.5853753,-1.2193577,-2.3100178,-1.7965128,-1.8368735,-2.0806987,-2.495009,-3.1689749,-2.8281634,-2.999286,-3.4700332,-3.9403372,-4.086,-4.0707974,-3.9006677,-2.9553015,-3.6623788,-3.5631745,-3.5368042,-3.7220826,-3.78971,-2.9457755,-3.49435,-3.7531304,-3.65127,-3.8116417,-3.8061385,-3.7709117,-3.6663723,-3.0153584,-3.5829165,-3.7397728,-3.459284,-2.9984694,-3.522347,-3.6607456,-3.6310873,-3.5885968,-3.667221,-3.714275,-3.71094,-3.7283444,-3.8196483,-3.5069752,-1.4530394,-2.6414065,-3.4924588,-3.6542575,-3.7360797,-3.743487,-3.7103934,-3.7290587,-3.6761847,-3.5683727,-3.469855,-3.4060013,-3.1813369,-3.3070984,-3.4986687,-3.5182872,-3.4956017,-3.3860464,-3.39329,-3.0582404,-3.410061,-3.4030638,-3.3781004,-3.3135405,-3.3415098,-3.2428126,-3.457433,-3.5200043,-3.590129,-3.5377798,-3.544877,-3.5242012,-3.5038037,-3.5210557,-3.5701475,-3.5464911,-3.5894523,-3.530634,-3.374564,-1.2840633,-3.295407,-3.4152737,-2.6042,-3.290062,-2.852172,-3.5230656,-3.7710133,-3.7464614,-3.8142414,-3.7602787,-3.803905,-3.7275724,-3.7185063,-3.6519127,-3.3449793,-3.533771,-3.5082707,-3.5712726,-3.381549,-2.9692059,-3.6084056,-3.4896505,-3.607634,-3.6163068,-3.600857,-3.5997114,-3.5557642,-3.4871325,-2.7781315,-2.7912264,-3.5303013,-3.3720636,-3.6850557,-3.7523208,-3.8246236,-3.4128876,-3.37733,-3.6050587,-3.5536828,-3.530394,-3.5294883,-3.5275488,-3.5434299,-3.3430734,-3.554316,-3.3941178,-3.3311806,-3.5584044,-3.4605584,-3.3950565,-3.1604939,-3.2710137,-3.2324119,-3.0364642,-3.3151283,-3.3862326,-3.5548534,-3.5363874,-3.3253555,-2.4010196,-3.507761,-3.618132,-3.6013203,-3.4175854,-3.4373233,-3.3048234,-3.276252,-3.6734996,-3.5831804,-3.4108198,-2.776373,-3.3517768,-3.5354817,-3.0246592,-3.4613154,-3.354636,-3.6771438,-3.7833953,-3.762433,-3.914239,-3.8137684,-3.740234,-3.5774238,-3.485497,-3.3989778,-3.5214982,-3.5642953,-3.5912235,-3.5377674,-3.4165258,-3.3096359,-3.2922246,-3.517249,-3.4066439,-3.2932343,-3.3172174,-3.5753856,-3.339458,-3.3406172,-3.292902,-3.230998,-3.5551972,-1.8137591,-3.2741838,-3.5306823,-3.7476153,-3.8003516,-3.6396308,-2.5031073,-3.4987483,-3.7544284,-3.8266244,-3.7745929,-3.6552825,-3.6477637,-3.5773923,-3.4489367,-3.3859107,-3.32061,-3.3162827,-2.255189,-3.2912478,-3.5635762,-3.5453525,-3.4585953,-3.4778712,-3.4116,-2.7939973,-3.3684993,-3.5675912,-3.571158,-3.5557556,-3.5332043,-3.4847732,-3.4687023,-3.400649,-3.3487885,-3.2756307,-3.2100668,-3.1839907,-2.7064319,-3.238006,-3.2813573,-3.117008,-3.2931352,-1.7253523,-3.29604,-3.533204
+-0.8890874,-1.648262,-2.0022023,-2.2785764,-2.4011931,-2.5962307,-2.6755905,-2.6825473,-2.7673755,-2.997917,-3.0729601,-3.3244457,-1.652348,-3.4030404,-3.6974921,-3.902532,-3.2691016,-2.8172536,-3.632378,-3.8178582,-2.9344172,-3.644845,-3.898666,-4.021474,-4.0467367,-4.003773,-2.6849093,-3.8910909,-3.980392,-2.6910388,-3.8016167,-3.7389379,-3.8682408,-3.9257565,-3.7549748,-3.7968102,-3.82237,-3.837484,-3.8182263,-3.8607492,-1.6713934,-3.5142329,-3.6783366,-3.1837711,-2.6018052,-2.9871979,-3.683688,-2.1919985,-2.4154367,-3.366429,-3.5618796,-3.714167,-3.795784,-3.8312411,-3.7889142,-3.8085918,-3.7400928,-3.6577601,-2.2539802,-2.9772315,-2.0783572,-3.4430654,-2.6005363,-3.1036997,-3.44979,-3.4455895,-3.6449928,-3.7504706,-3.690146,-3.7959304,-3.7952666,-3.7951035,-3.7827854,-3.7889037,-3.7798538,-3.7683191,-3.7628741,-3.7679548,-3.7704463,-3.82507,-2.6344082,-3.3868768,-3.8867707,-3.9038486,-3.8945327,-3.5075102,-3.972683,-3.9083018,-3.760735,-2.5794091,-3.8491902,-3.8524642,-3.8730597,-3.8653154,-3.8161082,-3.8427587,-3.881411,-3.8773856,-3.8922067,-3.8913713,-3.8913803,-3.8841329,-3.9100218,-3.9561858,-3.9416733,-3.9250078,-3.9223542,-3.9633331,-3.9731517,-3.9638982,-4.000627,-3.994638,-4.0092936,-4.012917,-4.0179973,-4.0346465,-1.0170085,-1.9967904,-2.9289634,-3.6980443,-3.974032,-3.9436498,-3.847919,-3.8068886,-3.7858,-3.805416,-3.838057,-3.8482122,-3.8571992,-3.876562,-3.8967457,-3.9231372,-3.9312634,-3.8992991,-1.2921822,-2.6277356,-1.6054204,-2.194797,-2.362925,-3.0026884,-3.432085,-3.372787,-1.7134805,-2.6402447,-3.542521,-3.7568512,-3.8605733,-3.8365035,-3.7909274,-3.610005,-2.495557,-3.1986003,-3.241337,-3.4952443,-3.4198527,-3.5531201,-3.351081,-3.6786666,-3.6457865,-3.8590693,-3.9491735,-3.9286103,-3.8534102,-3.6930208,-3.7871523,-3.8044987,-3.8204408,-3.879097,-3.8528342,-3.8427062,-3.870791,-3.8503318,-3.849578,-3.8830934,-3.9360461,-3.955256,-3.404764,-2.6016817,-1.8132784,-2.9751005,-3.3209457,-3.5861661,-3.688567,-3.5784616,-3.6566792,-3.6701455,-3.689133,-3.6927438,-3.7130246,-3.6750994,-3.5959396,-3.6117337,-3.6160617,-3.657905,-3.7137198,-3.7462301,-3.6097252,-3.8143954,-3.8633838,-3.8722653,-3.8574958,-3.8640037,-3.8300834,-3.7721958,-3.816855,-3.8280272,-3.8225322,-3.8203273,-3.8106613,-3.817206,-3.8416028,-3.8327808,-3.816028,-3.811967,-3.8128772,-3.7445922,-2.9148667,-3.229059,-3.7223554,-2.8713226,-2.9991808,-2.4528573,-3.0044794,-3.4045377,-3.5754633,-3.7537909,-3.8874059,-4.034167,-4.018986,-3.8817568,-4.045627,-4.023562,-3.8951607,-4.059482,-4.1202726,-4.075861,-4.028626,-4.00887,-4.0803447,-4.06278,-4.0220056,-3.99577,-3.9492974,-3.9548564,-4.01862,-2.8288248,-1.603836,-2.4112482,-2.2791324,-3.3762805,-3.640974,-3.344505,-3.1414206,-3.3951783,-3.7795124,-3.808683,-3.7843475,-3.8174906,-3.8157744,-3.8758092,-3.9131637,-3.796268,-3.5723927,-3.769816,-3.8432803,-4.067928,-3.93648,-3.9942741,-3.9692378,-3.9544969,-3.8919573,-3.893055,-3.8791265,-3.7761445,-3.9179149,-4.0677447,-3.880127,-3.8677244,-3.9271007,-4.139504,-3.9138675,-3.6424868,-3.4850206,-3.947949,-4.071811,-4.050749,-3.9898405,-3.9614453,-3.9693851,-3.9754815,-2.4996037,-3.40986,-2.547721,-3.2235594,-3.6870575,-3.7332554,-3.794187,-3.9262028,-4.0861726,-4.0503516,-3.9821792,-4.0529084,-4.0120645,-4.1558833,-4.0500207,-4.179669,-4.245538,-4.2102532,-4.2476993,-4.2201276,-4.2840066,-4.2191525,-4.163963,-4.0141826,-4.0871367,-4.2430873,-4.200905,-4.1774096,-4.158291,-1.8577352,-3.4452665,-3.7196074,-3.98737,-4.093951,-4.0963593,-2.0780964,-3.4789002,-3.593614,-3.8512053,-4.0160794,-3.9453897,-4.0579042,-4.05905,-4.0232277,-3.968059,-3.8792624,-3.9347982,-1.8328366,-3.2119691,-3.7566628,-3.9709916,-3.9535174,-3.1774855,-2.4288902,-3.1931581,-3.3441284,-3.6789393,-3.8433151,-3.97121,-4.100649,-4.144309,-4.1324816,-4.0720277,-4.091491,-4.120586,-4.0850277,-4.069638,-4.0368705,-3.9172897,-3.9282298,-3.9304338,-3.9363084,-1.8331485,-3.4661098,-3.7945318
+-0.49550724,-1.4410667,-2.021871,-2.3203485,-2.5108566,-2.6446462,-2.7767286,-2.750236,-2.6734066,-3.0220344,-2.9697917,-2.8468075,-2.6951895,-3.5274777,-3.5184402,-3.368821,-3.2463508,-1.2708924,-3.57793,-3.67831,-3.7850251,-3.8627086,-3.8915033,-3.6654677,-3.799129,-3.818272,-3.7677188,-3.7571216,-3.8431077,-3.8705878,-3.9348598,-4.065936,-4.0766883,-4.203991,-4.2831416,-4.305817,-4.37797,-4.166908,-2.745109,-4.2209573,-4.0596337,-4.11838,-4.155559,-2.6527739,-1.9012074,-2.6645808,-3.6707993,-3.4271398,-2.6026921,-3.66891,-3.7499852,-3.9483986,-4.030826,-4.0336704,-3.9580827,-3.9036021,-3.9058442,-3.9794345,-4.001485,-3.1978626,-2.05645,-2.7513847,-2.9320157,-2.8890781,-3.251376,-3.4273152,-3.8826146,-3.9699283,-3.927518,-4.121015,-4.065843,-4.040877,-3.9438496,-3.9845443,-3.9996037,-4.0206265,-4.069307,-4.083486,-4.118193,-2.7327437,-4.0551686,-4.196154,-4.123688,-4.1185355,-4.0216355,-3.3783464,-4.1215262,-4.0715947,-4.0850463,-3.3665333,-4.1479764,-4.0918374,-4.172543,-4.145038,-4.0709124,-4.1277623,-4.1665797,-4.1938157,-4.2016416,-4.2228565,-4.2206025,-4.1650877,-4.207738,-4.2204175,-4.231461,-4.2202086,-4.256025,-4.296117,-4.2944617,-4.2481084,-4.2832384,-4.3098187,-4.3009343,-4.3042254,-4.2992115,-4.3004622,-3.0520897,-1.2736473,-3.6663888,-3.9315562,-3.6930504,-3.951322,-3.9887152,-3.9595728,-3.9581943,-4.0143027,-3.978158,-4.096863,-4.1040587,-4.1313925,-4.174335,-4.191157,-4.193791,-4.1652036,-3.929831,-0.8234039,-1.5536242,-1.6905265,-2.817321,-3.539277,-3.9529214,-3.9360557,-1.8504775,-2.962012,-3.637944,-4.080976,-4.152306,-4.109858,-3.964271,-3.8883195,-3.4496622,-3.4369617,-3.3716116,-2.8456683,-3.1117754,-3.3299608,-2.9785287,-3.853794,-3.6912255,-4.0255523,-4.100635,-4.073022,-3.8496423,-3.731319,-4.133163,-4.1300645,-4.141208,-4.1947007,-4.236309,-4.2727704,-4.3171782,-4.347606,-4.3731213,-4.386093,-4.404206,-4.460466,-4.406978,-4.0720983,-1.2720585,-3.142117,-3.5068326,-3.6967783,-3.8526073,-3.9192872,-3.9869313,-3.9586167,-3.945448,-3.9137788,-3.8520374,-2.0656378,-3.329288,-3.8244877,-4.003627,-4.12338,-4.08378,-3.925035,-3.915936,-3.8912077,-3.8884149,-3.8390565,-3.8079987,-3.791398,-3.7978616,-3.962644,-4.165316,-4.21996,-4.1577044,-4.147442,-4.1622577,-4.1921535,-4.1959987,-4.241036,-4.2488933,-4.2364774,-4.2308044,-4.139749,-3.83493,-4.040176,-3.6447072,-3.7901416,-3.1583884,-2.388453,-3.4191275,-3.7517667,-3.8077774,-3.9191813,-3.9974313,-4.047884,-4.117704,-4.1527677,-4.0838027,-3.7883334,-3.8289237,-4.159479,-4.30553,-4.1556067,-4.154489,-4.253596,-4.220663,-4.179462,-4.2560644,-4.236408,-4.3133316,-4.3502507,-4.427467,-4.114728,-3.7490368,-1.8052859,-2.6544328,-3.2908044,-3.9205055,-3.6826806,-3.385318,-3.659966,-3.9086223,-3.967319,-3.9479203,-3.9436135,-3.7951536,-3.9267907,-3.838007,-3.8961358,-3.7038155,-3.7872634,-3.9537935,-4.0452113,-4.0929675,-3.9487824,-3.85186,-3.7783055,-3.8390713,-4.0511966,-3.9882102,-4.0119605,-4.307428,-4.050179,-4.34871,-4.363734,-4.3246503,-4.4377947,-4.227115,-4.1627545,-4.222958,-4.3629136,-4.2634177,-4.145023,-4.05234,-4.010131,-4.0003986,-4.1107,-4.0217614,-3.4243727,-3.037497,-3.7885594,-3.8045325,-4.172912,-4.0801234,-4.259808,-4.3138084,-4.257686,-4.1944427,-4.248689,-4.331409,-4.3683047,-4.31983,-4.445686,-4.4464364,-4.3780303,-4.4450803,-3.5618706,-4.313871,-4.205422,-4.2393246,-4.268776,-4.252151,-4.3688216,-4.280966,-4.23513,-4.2131233,-2.7877746,-3.8701186,-4.0536084,-4.1751666,-4.259841,-4.086161,-1.8693659,-4.050403,-4.000246,-4.185543,-4.221231,-4.0947423,-4.2600827,-4.1870675,-4.1023984,-4.0917583,-4.0264077,-4.230119,-1.6269088,-2.5951715,-3.2579262,-3.7281203,-3.7672782,-3.0687282,-2.6219416,-3.3437164,-3.5429244,-3.8726578,-4.1460195,-4.059236,-4.157922,-4.168737,-4.19449,-4.251798,-4.205588,-4.121734,-4.084947,-3.9617062,-3.8241177,-3.9219298,-3.9053636,-3.892467,-3.7802649,-3.6981845,-4.0104365,-4.0230775
+-0.45281184,-1.1112502,-1.6832032,-2.184164,-2.4606538,-2.656982,-2.7934122,-2.8968873,-2.9042299,-2.97262,-2.9591217,-2.998721,-3.0751176,-3.113194,-3.2078102,-3.1727579,-3.1604502,-3.150751,-3.034573,-3.4689012,-3.3760157,-3.5589275,-3.6461325,-3.5248892,-3.131586,-3.9603472,-3.990868,-3.962707,-3.9061046,-3.8603983,-3.8198504,-3.8793988,-3.8887382,-3.7746549,-3.8007894,-3.747311,-3.693272,-3.5685394,-3.4648175,-3.5146637,-3.5329943,-3.5161507,-3.5446663,-0.32030684,-2.3799798,-3.5865865,-3.9793525,-3.8624263,-4.084577,-4.0698385,-3.9138384,-4.0491967,-4.085812,-4.0972943,-4.07037,-3.9652114,-3.9123807,-3.8560557,-3.7928958,-3.2988603,-3.8734188,-0.9421329,-2.2984347,-3.0748103,-3.7886863,-3.2526464,-4.090236,-4.1867423,-3.7970753,-3.9427896,-3.9405484,-4.0956993,-4.1183343,-4.004979,-3.9209695,-3.8492994,-3.7915769,-3.7462673,-3.7256274,-2.8439965,-3.789123,-3.83524,-3.9781337,-3.9853535,-3.953752,-3.604303,-3.9796567,-3.9924226,-3.937131,-3.9154806,-3.9266071,-3.8686657,-3.8339515,-3.7535257,-3.6504028,-3.5772429,-3.5249565,-3.4972537,-3.4637537,-3.4556456,-3.491704,-3.4683166,-3.4775023,-3.508789,-3.5334191,-3.5764477,-3.3139486,-3.6470358,-3.6643374,-3.6178439,-3.672885,-3.6910362,-2.9847937,-3.691662,-3.8068795,-3.7849078,-3.7712731,-3.751153,-3.7478914,-3.7524743,-3.7579737,-3.7683663,-3.7843528,-3.785966,-3.7831955,-3.791431,-3.7797089,-3.803104,-3.8150878,-3.8275046,-3.8260193,-3.8067918,-3.818018,-3.851592,-3.8614635,-3.348012,-3.260476,-2.6977544,-3.6541977,-3.9827023,-3.9794793,-3.8747787,-3.1737833,-3.7487059,-4.147046,-4.0590577,-4.0021663,-3.947832,-3.9496837,-3.9658632,-3.9711857,-3.3504221,-3.797195,-4.1097484,-4.1927915,-3.5449717,-3.4936283,-4.1442285,-4.0831513,-4.109433,-4.108792,-4.0562797,-3.9624434,-4.004057,-4.046255,-3.9831624,-3.9735122,-3.9306674,-3.490131,-3.8565445,-4.1888685,-4.1056523,-4.0214577,-4.011597,-3.9486547,-3.9967756,-3.9657311,-3.8863435,-3.7524738,-3.9859266,-4.096555,-4.1561313,-3.9380202,-3.9788737,-3.99433,-3.95083,-3.9231772,-3.8910537,-3.8483949,-3.7088532,-3.9036732,-4.0059314,-3.885911,-3.886703,-3.887536,-3.849348,-3.8200855,-3.8033562,-3.782445,-3.7350788,-3.6724753,-3.6368585,-3.4267254,-3.4316492,-3.7959723,-3.9326787,-3.8629289,-3.8355923,-3.8270593,-3.8488083,-3.8113475,-3.7856479,-3.777367,-3.764699,-3.713943,-3.6516519,-3.6357522,-3.562254,-3.5294094,-3.7525582,-3.5536919,-2.9485273,-3.5898361,-4.007217,-4.123551,-4.1663013,-4.018361,-4.132001,-3.9960647,-4.0443716,-4.0654597,-4.0649786,-2.6329832,-3.7134638,-3.890585,-4.02819,-4.065863,-4.209985,-4.0692124,-4.03637,-4.1917152,-4.0645413,-3.9872842,-4.0037503,-4.0519786,-3.9517412,-4.2050056,-3.814909,-3.7382522,-3.8549876,-4.048466,-3.7840447,-3.8519225,-4.024715,-4.0555234,-4.073192,-4.1242275,-4.094529,-4.19072,-4.064878,-4.0851917,-4.085025,-3.9974103,-4.135151,-4.260521,-4.2600007,-4.2406077,-3.8902917,-4.05025,-4.11742,-4.182284,-4.1636634,-4.159082,-4.0237966,-4.149423,-4.093361,-4.033967,-3.9924798,-4.018149,-4.01867,-4.064435,-3.6296515,-3.9394379,-4.106918,-3.9962296,-3.9182467,-3.8410473,-3.8337855,-3.736845,-3.8565273,-3.8742356,-3.833377,-3.858571,-3.58805,-3.879284,-3.938601,-4.051552,-3.993216,-4.055763,-3.9287834,-3.875441,-3.9742942,-3.9543242,-3.880567,-3.7975793,-3.9412656,-3.882452,-3.8415956,-3.8459806,-2.635998,-3.9379196,-4.1126323,-4.1178246,-4.09524,-4.0594716,-4.074283,-4.0005574,-3.9313464,-3.911203,-3.9001255,-3.9032044,-3.9482856,-3.8116226,-3.8501682,-3.84383,-2.8218293,-3.7954783,-4.037592,-4.162359,-4.0706725,-3.9959173,-4.0792403,-3.987029,-3.9155016,-3.8897662,-3.990047,-3.972087,-2.0530949,-3.2457743,-3.7844763,-4.02438,-4.00615,-2.99869,-3.549902,-3.5559185,-3.9632158,-3.7996616,-4.0575204,-4.0811787,-4.0896535,-4.0890307,-4.069748,-4.0143986,-3.9905877,-3.9418483,-3.9175944,-3.8811145,-3.8082786,-3.7495766,-3.7598605,-3.6878533,-3.6412542,-3.6036325,-3.5988078,-3.6362455
+-0.28981072,-1.1008463,-1.2703118,-1.4869485,-1.6731977,-1.7390409,-1.8039858,-1.8389957,-1.8954992,-1.8525364,-1.8396802,-1.8519893,-1.8177707,-1.9326477,-2.063321,-2.0887623,-2.0822582,-1.7837875,-1.2696753,-2.6078131,-2.778564,-2.7960963,-2.8373408,-2.230033,-3.0390115,-3.1863294,-3.1994216,-3.2380295,-3.0647058,-3.0495234,-3.112018,-2.8805008,-3.038907,-2.9374707,-2.7570086,-2.7885156,-2.7567477,-2.5622697,-2.4941015,-2.3163748,-2.487536,-2.5163534,-2.4786525,-2.4456854,-1.2146058,-2.684359,-2.9593234,-2.631679,-3.217347,-3.167848,-2.7789426,-3.3448057,-3.39336,-3.3758206,-3.2197351,-2.395235,-3.2469878,-3.3435507,-3.304947,-3.171164,-3.2844353,-1.9124713,-2.968828,-2.9478154,-2.9516335,-3.0958152,-3.1452904,-3.2811618,-3.48638,-3.453954,-3.541906,-3.4305122,-3.2918544,-3.1939573,-3.0557766,-2.9536695,-2.9552605,-2.9969916,-3.0268555,-2.7041442,-1.6225216,-3.0339134,-3.2151985,-3.1467474,-3.1151233,-2.5470662,-2.9281263,-2.9182453,-3.0433383,-3.0627594,-3.0285137,-2.9650674,-2.8221025,-2.685174,-2.6555462,-2.66073,-2.6824102,-2.6997285,-2.7366648,-2.7526927,-2.7566204,-2.8187418,-2.8208375,-2.84943,-2.8775334,-2.9336035,-2.8915591,-2.8229644,-2.807595,-2.6110454,-2.3989692,-2.224752,-2.3946257,-2.7132695,-2.7664242,-2.7612438,-2.7457988,-2.5683608,-2.7089138,-2.426435,-2.5799203,-2.6549125,-2.7302783,-2.704064,-2.7525787,-2.7102618,-2.687982,-2.4966493,-2.3944478,-2.7516737,-2.6820493,-2.6763525,-2.6817744,-2.7446907,-2.7248175,-2.152214,-2.2952433,-0.90155095,-2.238328,-2.7021818,-2.7839632,-2.7212732,-2.2729294,-2.6327987,-2.8331237,-2.8736868,-2.7301729,-2.7450778,-2.4113781,-2.4769235,-2.429927,-2.3078485,-1.542088,-2.3949366,-2.7255478,-2.5288453,-2.2628953,-2.673892,-2.8696418,-3.0672264,-3.0885687,-3.1008058,-3.004593,-2.793566,-2.8563938,-2.823759,-2.5831501,-2.4346042,-2.5552626,-2.6547418,-2.6443539,-2.5904865,-2.4566674,-2.3964105,-2.1418636,-2.4162633,-2.429633,-2.4155297,-0.93114275,-2.1878579,-2.3737693,-2.261054,-2.4107108,-2.7822337,-2.8712783,-2.9887757,-3.1116433,-3.04523,-3.0336957,-2.4330916,-2.989767,-2.9162147,-2.9964347,-3.0325642,-3.0594373,-3.0308194,-3.0196102,-2.9645288,-2.8778193,-2.7980063,-2.740769,-2.6720276,-2.3757708,-2.1709404,-2.7605925,-2.9355743,-2.8521094,-2.8650675,-2.9648135,-2.9671175,-2.9440575,-3.0041218,-2.9865413,-2.9494152,-2.833081,-2.7039871,-2.1521368,-2.39607,-2.6752515,-2.942556,-2.5179996,-2.0268626,-2.9195228,-2.9479449,-2.8482482,-3.0979803,-2.911891,-3.1256566,-3.0317047,-3.0287232,-3.1535926,-3.2103314,-2.5409462,-3.0081203,-3.0724986,-3.0963478,-3.1218624,-3.2752795,-3.266572,-3.4153595,-3.4181402,-3.2500484,-3.1071625,-3.2796347,-3.494486,-2.985865,-3.215119,-3.2381384,-2.507871,-2.7420492,-2.93337,-2.5437167,-2.9485989,-3.0508614,-2.9396749,-2.7931435,-2.807723,-2.786487,-2.9399185,-2.9680877,-2.942381,-2.8973467,-3.1858811,-3.3744779,-3.076976,-2.9678762,-2.8927898,-2.7814925,-2.7419605,-2.746839,-2.8077297,-2.9611077,-2.7941244,-2.7019687,-2.9942408,-2.9908037,-2.9609225,-3.151004,-3.1613288,-3.224405,-3.108304,-2.9911432,-3.1610527,-3.0250473,-2.758602,-2.6099892,-2.574558,-2.5734448,-2.459254,-2.683106,-2.7000332,-2.7075233,-2.749,-2.4158006,-2.8904965,-2.9528446,-3.1295495,-3.4079185,-3.07663,-2.9633288,-3.2931082,-3.3259661,-1.9504781,-2.7780833,-2.9948125,-2.96858,-2.955257,-2.9007668,-2.9151685,-2.1198113,-2.8762317,-2.852105,-2.8566265,-2.901563,-3.0058856,-3.0169115,-2.9235268,-2.816917,-2.8126755,-2.7899668,-2.9670277,-3.1828916,-2.985481,-2.9661353,-2.7532048,-2.2642956,-2.6838012,-3.14437,-3.0699086,-2.9964345,-3.1086469,-3.0372858,-2.8464503,-2.691716,-2.5183206,-1.8420587,-2.8785362,-2.150337,-2.363132,-2.8430815,-2.8673701,-2.5217385,-2.8672357,-2.7950687,-2.8418314,-3.152515,-3.0334249,-3.1848197,-3.274471,-3.2390103,-3.1582904,-3.1411552,-3.0937583,-2.9834633,-2.861495,-2.806439,-2.7421813,-2.6636088,-2.6178422,-2.6568017,-2.6060011,-2.5816755,-2.5430193,-2.4079957,-2.7582746
+-0.13493064,-0.3950588,-0.748408,-0.85346335,-0.81925243,-0.76463884,-0.45319784,-0.55407095,-0.76611215,-0.9654488,-0.92959327,-0.69110966,-0.23355931,0.20619398,0.15853664,-0.88665193,-1.385915,-1.41433,-1.7996688,-2.4226408,-2.8240428,-2.661042,-2.7382088,-2.7035716,-2.633606,-2.673079,-2.7543535,-2.7769701,-2.7975411,-2.8073301,-2.7635524,-2.8479495,-2.8126333,-2.7856026,-2.9039094,-2.8199098,-2.8448555,-2.8478231,-2.8541265,-2.5792508,-2.6927133,-2.6177955,-2.8493705,-3.1961746,-2.9609153,-3.1480513,-3.0738978,-3.0509324,-2.9121037,-2.8898351,-2.9164393,-2.6943278,-1.9326963,-3.2238011,-3.1906395,-2.604134,-3.1928034,-3.1104403,-3.3895507,-3.3785448,-2.7838993,-3.3570604,-3.1644273,-3.370906,-3.2452803,-3.1821961,-3.354777,-3.2689369,-3.1988435,-3.085009,-2.9814522,-3.1250024,-2.1804013,-3.0084033,-3.280857,-3.2947035,-3.3052227,-2.9418316,-3.2293882,-2.6660028,-2.9979877,-3.2615268,-3.5354288,-3.333665,-3.2934804,-2.83391,-3.5278141,-3.436284,-3.3846483,-3.3514814,-3.5336323,-3.3411515,-3.2887955,-3.1813798,-2.995087,-3.2819488,-3.5011156,-3.388185,-3.5458622,-3.4567258,-3.5023954,-3.4526784,-3.5001593,-3.6367297,-3.607679,-3.4629498,-3.4941492,-3.511239,-3.465701,-3.4336045,-3.3520527,-3.6172569,-3.536652,-3.3017464,-3.5066032,-3.4953048,-3.4708421,-3.4478173,-3.3778248,-3.3006196,-3.1665924,-3.0873563,-2.6252391,-3.3008692,-3.3532543,-2.915675,-3.2370765,-3.502037,-3.6155791,-3.441533,-3.2819366,-3.7003808,-3.373962,-3.4859233,-3.5064335,-3.5513184,-3.2972283,-3.0739398,-3.555131,-3.0584679,-3.4104362,-3.5435095,-3.6037126,-3.4544077,-3.4289186,-3.1406174,-3.2336729,-3.60388,-3.471531,-3.5104947,-3.4681907,-3.5345056,-3.5084586,-3.4335527,-3.0366092,-2.95721,-2.1848288,-3.306518,-3.4666662,-3.7387214,-3.3953505,-3.7144904,-3.726811,-3.67788,-3.1449308,-3.5430126,-3.525329,-3.5535793,-3.019961,-3.5644288,-3.6019669,-3.480927,-3.528608,-3.5780454,-3.5357616,-3.4829583,-2.6792507,-3.0256405,-3.3821979,-3.4500408,-3.6601815,-3.695633,-3.593765,-3.423195,-3.5638685,-3.4622498,-3.196137,-3.385131,-3.2658844,-3.5064132,-3.5191455,-3.3861217,-3.5087395,-3.4325137,-3.2385635,-3.2711337,-3.2498217,-3.297305,-2.921362,-3.1002681,-3.3367724,-3.2041008,-3.2924564,-3.198555,-3.2263978,-2.9095395,-3.0993419,-3.1179063,-2.9362688,-3.0281467,-3.2262325,-3.1253805,-3.0691113,-2.854837,-3.1376958,-3.2570684,-3.3601403,-3.2101364,-3.2306798,-3.278172,-3.3714156,-3.4095283,-3.321639,-3.3395905,-3.1472116,-3.0918221,-3.1608963,-3.2097414,-3.1405704,-3.2483559,-3.110466,-3.0318246,-3.0222101,-2.923686,-2.930956,-2.506668,-2.644565,-2.6045232,-2.4695113,-2.2368126,-2.1056151,-1.9235816,-1.9597523,-1.9673891,-1.7595298,-1.8442898,-1.7784545,-1.6738615,-1.5654852,-1.2831724,-1.1375234,-1.3290553,-1.4020221,-1.3997803,-1.4944167,-1.6065481,-1.5131917,-1.5924985,-1.4012225,-1.6021023,-1.526612,-1.4194272,-1.6561522,-1.6756325,-1.6497843,-1.6646459,-1.6624935,-1.723573,-1.7975893,-1.3491175,-1.6755762,-1.6706457,-1.8220062,-1.7620325,-1.7624907,-1.8724399,-1.8616185,-2.0376399,-1.9489672,-1.9173899,-1.8572886,-1.8939147,-1.7036786,-1.8836255,-1.9519925,-1.8762491,-1.6946082,-1.6246476,-1.6896775,-1.7121377,-1.8070776,-1.7754323,-1.7907891,-1.7005336,-1.6938784,-1.5800719,-1.5793452,-1.5908344,-1.6814172,-1.7725091,-1.8346295,-1.8561797,-1.8441749,-1.8858626,-1.8305476,-1.9752455,-1.8176329,-1.7457333,-1.6838498,-1.8976569,-1.9058511,-1.9478228,-2.0327616,-1.7993097,-1.7023339,-1.8860903,-1.8642569,-1.8540103,-1.7980938,-1.7578578,-1.7727032,-1.7070024,-1.5512183,-1.5396147,-1.5076308,-1.5216222,-1.614706,-1.4760482,-1.6265752,-1.8529081,-1.9822574,-2.0299911,-1.937974,-1.8829453,-1.9199905,-1.8815923,-1.8255138,-1.602165,-1.5232587,-1.512667,-1.9174602,-1.9944277,-1.7825704,-1.7915869,-1.8198314,-1.8381848,-1.8099699,-1.7697608,-1.7414935,-1.607578,-1.472122,-1.5540216,-1.2536547,-1.233072,-1.4769406,-1.6811268,-1.4488592,-1.1307402,-0.9659528,-0.84684044,-0.5776558,-0.5919133,-0.017349303,0.29618928,0.2032473
+0.00918141,-0.22025931,-0.50389725,-0.57798785,-0.8755123,-0.9972456,-1.1628845,-0.977801,-1.0653076,-1.2216616,-1.2370152,-1.3030758,-1.5816505,-1.746407,-2.2750385,-2.4608228,-2.590428,-2.6793308,-2.9573233,-3.142576,-2.9349804,-2.9140913,-2.8604574,-2.5372217,-2.1447377,-2.8493116,-2.9914875,-2.9906895,-3.0646152,-3.0634034,-3.076297,-3.2368422,-3.258214,-3.2578654,-3.4035962,-3.1286135,-3.288919,-3.4996877,-3.50186,-2.6926723,-3.000273,-2.7915103,-2.8296518,-3.0672178,-3.130245,-3.3532848,-3.455992,-3.5633013,-3.5611184,-3.5834432,-3.6461773,-3.5113683,-2.2674308,-3.42537,-2.2835908,-3.668793,-3.5401251,-3.2734766,-3.5364692,-3.609426,-2.823578,-2.820634,-3.6697435,-2.8574634,-3.3367834,-3.485611,-3.2250667,-3.4989166,-3.4637113,-3.3144226,-2.9083982,-3.3253546,-2.9185455,-3.6431074,-3.3020267,-2.71076,-3.5508428,-2.7634306,-3.2390163,-3.252896,-3.514915,-3.3856864,-2.608044,-3.706901,-3.5063896,-3.2212903,-3.17738,-3.3245096,-3.428803,-3.3392284,-3.3761067,-3.5439537,-3.2532487,-3.509975,-3.5972073,-2.9433126,-3.6936975,-2.7237282,-3.0650387,-3.6652164,-3.063086,-3.0135846,-2.9957345,-2.992871,-3.2529163,-3.3455925,-3.2458096,-3.0512724,-3.4644573,-3.2773967,-2.3635502,-2.8487508,-3.235767,-2.7263603,-3.3084517,-3.256043,-3.1594772,-2.9323707,-3.3070714,-3.2577415,-2.9199042,-3.3708797,-3.1392474,-2.6426435,-3.4034605,-2.3443363,-3.2926254,-3.3340774,-3.262856,-3.1485324,-3.0765872,-2.8337932,-2.7010555,-3.2648723,-3.1035428,-3.2112904,-3.1775866,-3.136066,-3.2332826,-2.7883525,-3.2769797,-3.299655,-3.3950126,-3.3765655,-3.2201161,-3.3039038,-3.2499647,-3.5751038,-2.2055917,-3.5527043,-3.4489565,-3.4282823,-3.5001454,-3.5267065,-3.4051485,-3.4097333,-2.0874324,-2.61568,-3.3713183,-3.3771164,-3.1769238,-3.5516517,-3.3836975,-3.4368806,-3.343871,-3.3713841,-3.4567914,-3.4356341,-3.2337146,-3.380854,-3.2959561,-3.3773704,-3.535881,-3.434442,-3.5255227,-3.5018878,-3.1048436,-3.4206026,-3.3191586,-3.2600245,-3.327654,-3.427165,-3.496026,-3.4696846,-3.5628462,-3.4276052,-3.2083297,-2.8374949,-3.3097086,-3.4278877,-3.4858012,-3.6520276,-3.641505,-3.4113913,-3.4489717,-3.6025653,-3.6600122,-3.5317886,-3.4658375,-3.4760556,-3.4856231,-3.4865098,-3.6545095,-3.7150187,-3.7137475,-3.717945,-3.6268353,-3.7602568,-3.0355375,-3.6911342,-3.681553,-3.5079303,-3.666575,-3.6696146,-3.5930014,-3.5932722,-3.567671,-3.5119758,-3.473571,-3.3658986,-3.287893,-3.4017606,-3.4761147,-3.4579144,-3.3358135,-3.4284072,-3.6395414,-3.6435711,-3.6628976,-3.6182404,-3.5836852,-3.5555186,-3.5039275,-3.332837,-3.227991,-2.7944307,-3.239392,-3.3623066,-3.250612,-2.8865023,-2.8374386,-2.314272,-2.72276,-2.8918326,-2.837986,-2.3940635,-2.527512,-2.5267768,-2.4618332,-1.9087186,-1.7949729,-1.8648853,-2.0374625,-2.020679,-2.1416373,-2.1391625,-2.1410093,-2.1503084,-2.1525173,-2.2097483,-2.2101476,-2.0583844,-1.9579701,-1.9118721,-1.9131823,-1.8844533,-1.9149904,-2.052587,-1.9863946,-1.8443451,-1.9525924,-1.8444104,-1.9030466,-1.952363,-1.9100304,-1.9344797,-1.9219403,-1.8702409,-1.9756505,-1.9657397,-1.9040534,-1.8931582,-1.8814821,-1.9593735,-1.9588308,-1.9742837,-1.9365635,-1.9275875,-1.9432163,-1.9380338,-1.9369957,-1.9354525,-1.8886414,-1.8833859,-1.9043474,-1.8892303,-1.9244094,-1.9200311,-1.9888988,-1.9867322,-2.0113263,-1.9686382,-1.9358006,-1.9540334,-1.8521862,-1.8795621,-1.912673,-1.8133903,-1.8234608,-1.8987167,-1.8541455,-1.8607011,-1.8138304,-1.7791829,-1.7906888,-1.8073006,-1.8039341,-1.7327256,-1.7687039,-1.7292347,-1.8069658,-1.7473075,-1.6832137,-1.6204722,-1.601646,-1.5918055,-1.4557006,-1.5822375,-1.5587671,-1.6897352,-1.6633534,-1.7022629,-1.6710942,-1.6272991,-1.7822204,-1.6527605,-1.5918081,-1.5251412,-1.4451914,-1.3037181,-1.4971845,-1.6094236,-1.5325477,-1.5478303,-1.6110802,-1.5861125,-1.4765315,-1.4396183,-1.3938148,-1.4667711,-1.5479627,-1.2435503,-1.0226891,-0.85942155,-0.99081844,-1.4184132,-1.4765329,-0.96384996,-0.632132,-0.41297966,0.40454578,0.9468282,0.5888219,-0.11862409,-0.76015025
+-0.54403013,-1.0169859,-1.3686225,-1.4007392,-1.5462062,-1.7738469,-1.9966311,-2.0551286,-1.664139,-1.9902692,-2.1487665,-2.0824113,-2.3396592,-2.3326974,-2.2261157,-2.3551288,-2.2739823,-2.417614,-2.0167325,-2.8325543,-2.625342,-2.8283696,-2.6728206,-2.4289618,-2.120081,-2.6000075,-2.539061,-2.574441,-2.7281256,-2.7820768,-2.736435,-2.842208,-2.9234207,-2.8881302,-3.0469189,-2.8747356,-2.9353046,-3.1036968,-2.461461,-2.8711116,-2.3689861,-2.5567074,-2.5926123,-2.8726058,-2.9101841,-3.1146026,-3.085279,-3.20825,-3.1902084,-3.124776,-3.2675114,-3.0040858,-3.0221856,-3.1737325,-1.646215,-3.1466546,-3.03642,-3.0386448,-3.2829137,-3.049642,-2.9258423,-2.9126792,-3.4752579,-2.8705168,-3.0701828,-3.3656764,-2.9002526,-3.2959423,-3.1451132,-3.050807,-3.036622,-3.0969906,-2.6903105,-3.136406,-2.4570308,-3.109633,-3.2978241,-3.1345663,-2.7903748,-3.24472,-3.2008405,-3.1046753,-2.5874767,-3.3440669,-3.0982623,-3.0181048,-3.1101754,-3.0443387,-3.219055,-3.1546545,-2.964954,-3.3727806,-3.2965531,-3.3525295,-3.3568838,-3.2489343,-3.3376837,-3.201381,-3.2850547,-3.4460497,-1.34706,-1.726692,-2.903966,-2.9823623,-2.8500266,-3.028935,-2.96784,-2.9516125,-3.1709025,-2.9921436,-2.9329677,-2.7586439,-3.1028323,-3.0083485,-2.7318182,-2.9703007,-2.7113824,-2.906365,-3.1907344,-2.9271533,-3.0078263,-2.9576495,-2.9051557,-2.9121022,-2.896999,-2.3294783,-3.0428562,-2.9736536,-2.9534805,-2.9763114,-2.905702,-1.4000058,-2.4834683,-2.8519735,-2.881854,-2.972881,-2.919651,-2.974875,-2.8482976,-2.6047125,-3.0603495,-3.0308337,-2.9756684,-2.901047,-2.8488307,-2.8258257,-2.8428109,-2.9470036,-2.2595594,-3.0508888,-3.1069174,-3.0148873,-3.0758755,-3.1183398,-3.0419905,-3.0684345,-3.1214783,-2.2057295,-2.8350635,-2.6796365,-2.8896232,-2.9626396,-3.0337627,-2.975769,-3.0328674,-2.9925637,-3.0505128,-2.5704122,-2.2300227,-3.0921836,-3.052594,-3.0678756,-3.2091591,-3.3069386,-3.3225732,-2.9908807,-3.0854907,-3.0559576,-2.9641414,-3.031899,-3.0916708,-3.1931248,-3.205833,-3.1956632,-3.2184181,-3.204504,-2.6154099,-2.4214182,-2.9750276,-3.013865,-3.1736698,-3.3335958,-3.3492637,-3.237564,-3.066337,-3.2824721,-3.3422906,-3.2681777,-3.28526,-3.3111844,-3.3264713,-3.3086977,-3.2741346,-3.4773533,-3.4922497,-3.4455948,-3.3884695,-2.9813075,-2.7479692,-3.3199935,-3.448163,-3.3221588,-3.413471,-3.5053616,-3.4229379,-3.405177,-3.3972516,-3.3809438,-3.3575332,-3.3277617,-3.2829351,-3.2914696,-3.3442826,-3.403873,-3.1963341,-3.1563342,-3.4490883,-3.4689014,-3.4782662,-3.387172,-3.3063717,-2.850061,-3.1210399,-2.9425597,-2.630362,-2.5790262,-2.8012996,-2.7955325,-2.538824,-2.4639971,-2.3897266,-2.063901,-2.563211,-2.3614013,-2.3731441,-2.2758193,-2.1991696,-2.093349,-1.9192176,-2.0002744,-2.0257268,-2.0112426,-2.0909219,-2.0888743,-2.0800157,-2.125956,-2.0644174,-2.0696404,-1.8811147,-1.9357791,-1.9082572,-1.7589417,-1.7667525,-1.83775,-1.8834298,-1.8276172,-1.854579,-1.8966928,-1.8076587,-1.824811,-1.9061191,-1.8885391,-1.8984241,-1.8674493,-1.834122,-1.8101077,-1.7833617,-1.8449888,-1.7926452,-1.8165252,-1.7799861,-1.7185397,-1.7154427,-1.846374,-1.8356643,-1.8057218,-1.7753665,-1.7813835,-1.773355,-1.7710667,-1.7723665,-1.7824428,-1.809643,-1.7915573,-1.8338289,-1.8788552,-1.772085,-1.7939343,-1.817019,-1.7963502,-1.7745252,-1.6989803,-1.6474655,-1.6370187,-1.6634617,-1.7048283,-1.6795771,-1.4862134,-1.4763336,-1.5527189,-1.601732,-1.5837145,-1.5711973,-1.4874406,-1.4747341,-1.5710003,-1.5793629,-1.5612943,-1.5571952,-1.5573518,-1.5599017,-1.5529659,-1.4886041,-1.4955974,-1.428128,-1.3224316,-0.9049545,-0.7060568,-0.77523524,-1.0918734,-1.2185838,-1.2645581,-1.3847167,-1.4012136,-1.5337086,-1.5600924,-1.5598896,-1.5357735,-1.3575585,-0.75529426,-0.59857816,-1.0007439,-1.271075,-1.3144915,-1.5501995,-1.5572076,-1.4438932,-1.3744333,-1.3523643,-1.4423814,-1.2437766,-0.926367,-0.73651403,-0.14800847,-0.15386462,-0.7540857,-0.95419043,-0.29515547,0.11883494,-0.18320704,-0.78663296,-1.3405762,-2.0662808,-2.3446496,-2.400173
+-0.26504976,-0.60074705,-1.4652195,-1.8003845,-2.0256238,-2.1847367,-2.3249137,-2.3809674,-2.0929124,-2.3086925,-2.4366238,-2.4760358,-2.6175804,-2.7125192,-2.7012014,-2.757639,-2.8304894,-2.2225144,-2.74901,-3.1322472,-3.1279569,-3.1443202,-3.1894507,-3.0709224,-2.5261216,-3.1719742,-2.6559176,-2.5385184,-2.6983552,-2.87099,-2.9045434,-2.9788415,-2.98902,-2.9416757,-3.0546193,-3.0679512,-3.008206,-3.1043139,-2.6850553,-3.0162768,-2.8643734,-3.0300126,-2.9427464,-3.0993915,-3.152659,-3.0906353,-3.0423892,-3.1423736,-3.0697489,-3.021926,-3.1154063,-2.9266524,-2.6433544,-3.273131,-2.6936262,-3.222333,-2.909507,-2.8703682,-3.1712317,-3.1568274,-2.6090908,-3.2085748,-3.19732,-2.3761606,-3.3734727,-3.3829277,-3.2577145,-3.0982523,-3.0338311,-3.0650935,-3.0204506,-3.1092649,-3.0016537,-2.962329,-2.5170236,-3.218333,-3.2175448,-2.760227,-3.2031555,-3.1273613,-3.239329,-3.2024794,-3.0173454,-3.199821,-2.999072,-2.8369946,-3.2911782,-3.173528,-3.0855107,-3.0715919,-3.089399,-3.035083,-3.1154141,-3.0806003,-3.0208783,-2.0209482,-3.1363273,-2.5783105,-3.1203704,-3.2836444,-2.27089,-2.5066776,-3.3956356,-3.5075517,-3.3720164,-3.2034822,-3.1328866,-2.7390404,-3.442532,-3.266991,-3.1469455,-3.199678,-3.1986012,-2.2260265,-3.3690658,-3.4637098,-3.446529,-3.266745,-3.430988,-3.3708577,-3.2522588,-3.1545215,-3.1067576,-3.1631584,-3.2229476,-2.3234386,-3.3010564,-3.328649,-3.3046122,-3.191935,-3.1373587,-3.046719,-1.994528,-2.5835447,-3.0825276,-3.2890007,-3.4075916,-2.7290242,-3.3502934,-2.8066335,-2.7332196,-3.149159,-3.341818,-3.3447452,-3.353728,-3.4346838,-3.412544,-3.3818417,-3.3359742,-2.9575055,-3.4574025,-3.564264,-3.586024,-3.5286288,-3.3926299,-3.2508166,-3.1645694,-2.2986596,-2.4905503,-3.26934,-3.5940444,-2.6124218,-3.326314,-3.509722,-3.606398,-3.5483978,-3.6344981,-3.0046108,-3.4404073,-3.5124884,-3.5610995,-3.590166,-3.6913042,-3.5698977,-3.3570917,-2.822861,-3.1530042,-3.4410605,-3.4482918,-3.5358849,-3.568072,-3.5800724,-3.5261598,-3.4740963,-3.43635,-3.4088767,-2.612475,-2.8383493,-3.24938,-3.1968133,-3.1644359,-3.4836302,-3.5893698,-3.5936077,-3.477687,-3.4044554,-3.415589,-3.4209843,-3.5110435,-3.4734967,-3.4728305,-3.4310787,-3.332531,-3.4583335,-3.4688926,-3.4047813,-3.3291423,-3.3700714,-3.1241145,-3.622365,-3.6941824,-3.2706351,-3.4153457,-3.6053002,-3.5886168,-3.5854304,-3.5531597,-3.5333383,-3.5475636,-3.4632127,-3.4773643,-3.4107137,-3.4268646,-3.4757628,-3.256022,-3.1714973,-3.5177336,-3.4569325,-3.5041468,-3.4653292,-3.4437397,-2.7465181,-2.6510491,-2.4416003,-2.2058883,-2.189706,-2.0360646,-2.038816,-1.9675841,-1.9213963,-1.8845992,-1.6473634,-1.4871244,-1.3440382,-1.3601029,-1.3285573,-1.3300982,-1.2356741,-1.2046909,-1.5120435,-1.5267003,-1.512845,-1.4035456,-1.4887664,-1.4805992,-1.3836083,-1.2581496,-1.3008356,-1.2774432,-1.5269079,-1.568202,-1.3166597,-1.3340592,-1.4921584,-1.4273014,-1.391542,-1.4384658,-1.3215091,-1.437779,-1.5992265,-1.438808,-1.4452066,-1.4326594,-1.4162297,-1.3962972,-1.4048965,-1.579176,-1.520463,-1.3334546,-1.4984052,-1.4521651,-1.4109004,-1.4219027,-1.608459,-1.7148125,-1.6982083,-1.51086,-1.5524135,-1.519933,-1.5251334,-1.5803738,-1.5698872,-1.5197864,-1.4754739,-1.3642681,-1.3611004,-1.1379893,-1.2199202,-1.2799389,-1.3924215,-1.4090376,-1.3039963,-1.2621567,-1.282836,-1.2875297,-1.1816931,-1.1859434,-1.1506658,-1.1853254,-1.2444408,-1.3353128,-1.2689922,-1.3739016,-1.2896535,-1.2398827,-1.2913289,-1.0490913,-0.898814,-0.8631305,-0.7181397,-0.74375194,-0.68318117,-0.31516778,-0.13140994,0.2812906,0.24263021,0.11532104,-0.4257592,-0.41701585,-0.678978,-0.952617,-0.8074872,-0.71659774,-0.703252,-0.73283786,-0.8356231,-0.926416,-0.8762627,-0.2657364,-0.29595256,-0.7675615,-1.15573,-1.6760964,-1.4125373,-1.6052077,-1.3917015,-1.3222687,-1.3504326,-1.3207135,-1.1815708,-0.7417299,-0.32137513,-0.025712669,-0.0058540106,0.18489775,-0.53083295,-0.7003719,-0.005753666,0.25418928,-0.007270366,-0.6924407,-1.2719519,-1.9940832,-2.480185,-2.5855703
+0.54447186,0.40816936,-0.22727853,-1.268142,-1.5104625,-2.2591782,-2.6887836,-2.922481,-2.7190108,-2.599732,-2.8568795,-2.807898,-2.6223364,-2.5888634,-2.4461017,-2.534334,-2.5238457,-2.0149307,-3.1105967,-3.0182989,-3.1475666,-3.1665688,-3.2322538,-3.0634181,-3.1681364,-3.304573,-2.6853971,-3.3910513,-3.2640843,-3.132908,-3.3080966,-3.0181968,-3.086763,-3.0837333,-3.0348682,-3.0354545,-2.7702782,-2.8501732,-2.7631772,-3.250996,-3.1674786,-3.2001033,-3.1934886,-3.1443558,-3.0772662,-3.075448,-3.070537,-2.9298668,-2.7677264,-2.715955,-2.731015,-2.6881466,-2.1026964,-3.2370903,-3.2097597,-3.164672,-3.3059702,-3.1220212,-3.4928715,-3.4157214,-3.2459676,-3.2619348,-3.1953804,-3.038415,-3.1845288,-3.1079178,-2.9926252,-2.912722,-2.7247329,-2.824185,-2.7614424,-2.6998627,-2.6290443,-2.6228828,-2.5075605,-3.095799,-3.0586932,-3.1488342,-2.7222385,-3.361812,-3.1894982,-2.9441884,-3.1345325,-3.0903468,-2.95393,-3.0258613,-2.7326531,-2.795197,-2.7305937,-2.494215,-3.017033,-2.9661736,-2.8484535,-2.902118,-2.875403,-2.801474,-2.8154655,-2.437835,-3.0490746,-3.214559,-3.2766676,-3.1021576,-2.8690202,-2.8616114,-2.6964679,-2.8002148,-2.7286048,-2.7952127,-2.8973446,-2.5492952,-3.3789754,-3.3962004,-3.3765028,-3.2329187,-3.0508556,-2.7333846,-2.6931052,-2.7222886,-2.7009299,-2.570166,-2.6496692,-2.532957,-2.2761567,-3.1535556,-3.1055844,-3.0098662,-2.8310049,-2.8385081,-2.84023,-2.869141,-2.9342072,-2.7703478,-1.8379488,-3.1171656,-3.039066,-3.0861025,-2.8876724,-3.1465816,-3.1082892,-3.0544753,-3.032259,-2.801028,-2.9318352,-2.7818906,-2.712187,-2.7441225,-2.6789513,-2.81982,-2.6690083,-2.838757,-2.8530335,-2.9095705,-2.8691092,-2.9364986,-2.9550438,-2.9467263,-2.3681695,-2.3800092,-3.250618,-3.2087488,-3.2162142,-2.809956,-3.0772052,-3.298895,-3.137916,-3.190245,-3.2361898,-1.76734,-3.116776,-3.0477424,-3.1513824,-2.948201,-2.976242,-2.9626245,-2.9851003,-3.0172915,-2.7222118,-2.9894357,-2.9596677,-3.0141737,-3.0847468,-3.1193447,-2.9580302,-2.8753715,-2.8765316,-2.7798305,-2.2592463,-2.8153338,-2.9543147,-3.03295,-3.0599916,-2.9607236,-2.9786034,-2.871166,-2.911676,-2.887311,-2.990639,-2.8453555,-2.7342906,-2.7676926,-2.8179965,-2.8285742,-2.889937,-2.8969731,-2.9421084,-2.9010706,-2.808839,-2.8972437,-2.884859,-2.8476162,-2.7693548,-2.7636592,-2.7765234,-2.8168943,-2.8475642,-3.0344257,-3.0077372,-3.0581956,-2.9838347,-2.974911,-3.1024992,-3.1466699,-3.0875235,-3.2612543,-3.2192504,-3.124149,-3.304276,-3.387062,-3.3566587,-3.212173,-3.3006065,-2.7810068,-2.8711152,-2.593285,-2.1739905,-1.829428,-1.5528622,-1.4034464,-1.3157425,-1.1943157,-1.0966392,-1.6120479,-2.03793,-2.5945787,-2.7402449,-2.7552726,-2.573239,-2.3095942,-2.1604173,-2.3363333,-2.401975,-2.432232,-2.186664,-2.0506618,-1.9278569,-1.9080057,-1.8762817,-1.8741648,-1.9358499,-1.8414483,-1.6995423,-1.8098793,-1.7547293,-1.6400831,-1.6048467,-1.5862646,-1.57826,-1.5246005,-1.4391828,-1.7235188,-1.8170817,-1.8327813,-1.97509,-1.845362,-2.0162928,-1.8685198,-2.0903277,-2.189289,-2.1033194,-2.0885503,-2.067181,-2.0627966,-2.026838,-2.1095796,-2.1427047,-2.1300263,-2.1838522,-2.042576,-2.0636647,-2.062523,-2.2556057,-2.4266744,-2.3118558,-2.2814398,-2.4642277,-2.615488,-2.3824115,-2.4289289,-2.7773423,-2.686107,-2.6527154,-2.6197062,-2.5647488,-2.583681,-2.6047835,-2.631485,-2.6160173,-2.5658245,-2.5116706,-2.3987336,-2.6158383,-2.5168204,-2.7222319,-2.6955361,-2.5494046,-2.5387259,-2.891654,-2.7793636,-2.5856228,-2.6025715,-2.562066,-2.449578,-2.1955438,-1.6982908,-1.119725,-0.72482616,-0.98757964,-1.214334,-1.5342631,-1.7984624,-1.8023775,-1.6984794,-1.5668015,-1.4312637,-1.3671927,-1.343061,-1.2112381,-1.1064482,-0.7337021,-1.145129,-1.6475778,-2.3572464,-2.7594519,-2.7606523,-2.4924831,-2.1870196,-2.036499,-1.8697824,-1.6218545,-1.5766025,-1.2529294,-1.2667418,-1.5808342,-2.2540474,-2.672881,-2.5282807,-2.273816,-2.3838685,-2.8300395,-3.117341,-3.1368024,-3.0252213,-2.96895,-3.0670612,-3.198955
+-0.20490026,-0.6238553,-1.3988674,-1.9813125,-1.9185297,-2.1328294,-2.2632258,-2.4106712,-2.3652868,-2.233243,-2.4455993,-2.3621528,-2.1084545,-2.1057904,-2.1011124,-2.1679137,-2.1394541,-1.8740437,-3.1109753,-2.6490593,-3.473494,-3.3629127,-3.070423,-3.0271087,-3.2852514,-3.2666461,-2.706754,-3.752256,-3.5597517,-3.2301688,-3.724135,-3.321184,-3.1957297,-3.1032424,-3.0580292,-3.0381026,-2.9932787,-2.9262972,-2.5277195,-3.4746995,-3.2483728,-3.3703456,-3.239819,-3.2763724,-3.026514,-3.01379,-3.2335305,-3.056833,-2.9523292,-2.7697172,-2.6621053,-2.5837278,-2.4770927,-3.3328958,-3.526609,-3.3977423,-3.2233744,-3.2992759,-3.4628243,-3.3645098,-3.1976752,-3.0440464,-2.886801,-2.7906587,-2.9297397,-2.915008,-2.802935,-2.7108622,-2.6498508,-2.6478832,-2.5851402,-2.5845451,-2.5751796,-2.653639,-2.4932399,-3.0577738,-3.2258384,-3.1863792,-2.433545,-3.3394778,-3.412202,-3.2525342,-3.2072887,-3.037747,-2.8730786,-2.7952452,-2.6394784,-2.610874,-2.5818257,-2.591243,-3.0220437,-2.9370127,-2.737369,-3.3957562,-3.382622,-3.230164,-3.3405032,-3.5339007,-3.560409,-3.4713068,-3.259932,-2.896688,-2.9499078,-3.4233546,-3.2256746,-3.2438912,-3.1173313,-3.3654559,-3.582396,-3.5847642,-3.2741616,-3.15302,-3.1104708,-3.0206485,-2.9342685,-2.802453,-2.7617598,-2.7651227,-2.7371187,-2.6672988,-2.6095152,-2.6799898,-2.7325258,-3.2607052,-3.316646,-3.331619,-3.0365155,-2.9819365,-2.9863222,-2.9453812,-2.9223168,-2.8555093,-2.3923752,-3.0312715,-3.3569694,-3.398567,-3.3701446,-3.055808,-3.4628515,-3.456259,-3.313055,-3.2016408,-3.2893806,-3.255889,-3.0473068,-2.5249321,-3.1917315,-3.2160566,-3.2681558,-3.2550998,-3.114201,-2.9858356,-3.3359675,-3.382837,-3.36373,-3.1148071,-2.8178759,-2.823614,-2.8020504,-2.8498483,-2.9103787,-2.7303238,-2.9699197,-3.115528,-2.9715796,-2.724934,-3.1121879,-3.0161185,-2.5385814,-3.3599658,-3.2496548,-3.2607894,-3.2816534,-3.1350985,-3.149558,-3.3374221,-3.0872145,-3.299883,-3.2512407,-3.2293901,-3.263979,-3.2579706,-3.200812,-3.1069145,-3.1303554,-2.9243689,-2.320995,-3.0643795,-3.150281,-3.2992845,-3.1067147,-3.1143968,-2.9237177,-2.8486218,-2.925922,-2.8721185,-2.8314605,-2.526085,-2.6121683,-2.5762796,-2.621317,-2.7872703,-2.7639904,-2.7115698,-2.6404018,-2.636932,-2.5613458,-2.6547546,-2.7216482,-2.6339383,-2.421329,-2.5884943,-2.5886989,-2.5457675,-2.649415,-2.7504258,-2.8163393,-2.7685363,-2.6822963,-2.6561556,-2.7645047,-2.8395293,-2.6966624,-2.7760825,-2.7648752,-2.7103868,-2.82135,-2.9572792,-2.8869267,-2.7732482,-2.8078547,-2.2938213,-2.765739,-2.8100781,-2.6822042,-2.271394,-2.761583,-2.4846044,-2.509984,-2.5405233,-2.5368009,-2.821114,-2.83597,-2.998672,-2.9468977,-2.936604,-2.7078319,-2.7755623,-2.5449278,-2.4999044,-2.6477113,-2.6161144,-2.3785424,-2.2141604,-2.203671,-2.1221218,-2.1549835,-2.1360111,-2.190305,-2.097582,-2.1094112,-2.147573,-2.0611074,-1.989701,-1.916296,-1.8755593,-1.8963101,-1.7138076,-1.4571764,-1.6305351,-1.6190696,-1.598392,-1.7329102,-1.6708872,-1.7459311,-1.6493471,-1.6115222,-1.9182,-1.9598122,-1.9556303,-1.8714199,-1.8495922,-1.7583456,-1.8140059,-1.8951406,-1.8875322,-1.9971561,-1.9399991,-1.9500222,-1.9394779,-1.8114364,-2.0564451,-1.8951898,-1.9186478,-1.8236897,-1.7112269,-1.5823345,-1.6899705,-1.903393,-2.1741076,-2.1556768,-2.0632803,-2.134499,-2.090966,-1.9802151,-1.9057908,-1.9675231,-2.1200047,-1.9704535,-1.5969558,-1.8519797,-1.6631949,-1.8151922,-1.9462397,-1.9109209,-1.8567152,-1.6870327,-1.3499589,-1.2614193,-1.2611258,-1.2732649,-0.99210805,-0.6473055,-0.6310768,-0.88625664,-1.4989116,-2.0060065,-2.4376845,-2.4426804,-2.2945461,-2.3907294,-2.3361876,-2.1573586,-1.9937367,-2.0198212,-2.0404978,-1.9315741,-1.9262455,-2.1763735,-2.4997716,-2.6453257,-2.6781,-2.7760115,-2.7798386,-2.6465695,-2.5108232,-2.3526554,-2.2653546,-2.2298846,-2.3150463,-2.3737931,-2.5820527,-2.5475852,-2.5449352,-2.375587,-2.3993487,-2.3874896,-2.345341,-2.7947993,-3.0590174,-3.1950073,-3.0726538,-2.660819,-3.201723,-3.3772817
+-0.5129797,-1.1225953,-1.799561,-2.1234798,-2.1040864,-2.2828279,-2.5606065,-2.7476282,-2.7816339,-2.5331154,-2.7767642,-2.8184137,-2.6285844,-2.5843186,-2.497033,-2.4632063,-2.40631,-2.2973344,-3.501536,-3.2093446,-3.6397429,-3.5752494,-3.426805,-3.121095,-3.2573123,-3.4169748,-3.2625394,-3.6979523,-3.864974,-3.4948943,-3.824121,-3.4478834,-3.5632777,-3.4259937,-3.3311887,-3.232909,-3.161453,-2.9488335,-2.2597651,-3.4967372,-3.4155962,-3.588116,-3.696588,-3.5771272,-3.3688912,-3.1023388,-3.6915333,-3.5764072,-3.427635,-3.1436763,-3.223385,-3.0787134,-2.7661726,-3.3363361,-3.152751,-3.482877,-3.360452,-3.7671223,-3.805983,-3.9065204,-3.7679348,-3.6347032,-3.5112252,-3.3500013,-3.1854749,-3.4274025,-3.1557875,-3.08294,-2.9263315,-2.7626414,-2.7229295,-2.7580304,-2.7861507,-2.8414311,-2.8241906,-2.7985985,-2.8767595,-2.9916315,-2.4914348,-3.530519,-3.6100898,-3.5280778,-3.349482,-3.1859655,-3.1829007,-3.0183058,-3.1103811,-3.2016892,-3.1483884,-3.1818018,-3.1727438,-3.0543575,-2.604592,-3.379796,-3.6060412,-3.627882,-3.5380988,-3.1851892,-3.6013062,-3.8139153,-3.5805097,-3.2762408,-3.302422,-3.4007173,-3.3364153,-3.245257,-3.3552434,-3.1050406,-3.300449,-3.3162298,-3.209618,-3.1142588,-3.030343,-2.898703,-3.0723972,-3.1559741,-3.121065,-3.0734475,-3.1194448,-2.9606586,-2.258772,-3.273379,-3.2335997,-2.884201,-3.4759223,-3.5181108,-3.2718863,-3.4072096,-3.0105467,-3.484786,-3.4931593,-3.500165,-3.49329,-2.884548,-3.345813,-3.545768,-3.5547786,-3.5729814,-3.5239906,-3.0759873,-2.3625178,-3.2165332,-3.4942179,-3.6130936,-3.5465653,-3.1392598,-3.472653,-3.5481954,-3.5594316,-3.4300635,-2.9002986,-3.4884176,-3.708735,-3.5395865,-3.5162425,-3.4701798,-3.2704914,-3.3349085,-3.2622595,-3.1873329,-3.431842,-3.4295046,-3.422441,-3.3812745,-3.3208747,-2.8410125,-3.7201672,-3.5173655,-3.4555368,-3.4605534,-3.5148911,-3.4390805,-3.4538243,-3.2230716,-3.2065415,-3.2437522,-2.6163802,-3.527843,-3.6476321,-3.5773172,-3.5632272,-3.580276,-3.501924,-3.4573064,-3.4454517,-3.311473,-2.662425,-3.284881,-3.2588577,-3.5804594,-3.369454,-3.2628121,-2.818133,-3.1962008,-3.3581827,-3.1775517,-3.1293693,-2.8965838,-2.9447083,-2.9390569,-3.115231,-3.2206244,-3.176053,-3.153185,-3.072604,-3.0641456,-3.0394502,-3.090495,-3.0659785,-3.071362,-2.8368745,-2.8877609,-2.9761171,-2.9219258,-3.0045068,-3.0606897,-3.14424,-3.1516776,-3.063982,-3.03373,-3.051043,-3.1033592,-2.9973269,-3.0119572,-3.0158238,-2.9930115,-3.0675223,-3.1794324,-3.0869129,-2.983284,-2.9091034,-3.0964499,-3.0850456,-3.133588,-3.0349314,-2.1330051,-2.6753755,-2.5657992,-2.6000357,-2.6079516,-2.6763725,-2.5038016,-2.6798892,-3.0190523,-2.9224362,-2.8106213,-2.601531,-2.6634536,-2.4823759,-2.4511847,-2.6815991,-2.4511113,-2.294015,-2.1151078,-2.0025864,-2.0474365,-2.0068054,-2.0367608,-2.0395615,-1.8736777,-1.9509795,-2.1563878,-2.0378935,-1.9220409,-1.8454514,-1.7392187,-1.6941221,-1.5682218,-1.3386486,-1.1674306,-1.358778,-1.4101145,-1.4635491,-1.5494485,-1.4185154,-1.4947853,-1.2093232,-1.3710387,-1.8224254,-1.7535915,-1.7794871,-1.6880226,-1.6054249,-1.4762766,-1.3558602,-1.2359829,-1.5938299,-1.4868963,-1.4896605,-1.3163273,-1.2356479,-1.5002465,-1.526355,-1.410567,-1.5124769,-1.428987,-0.9569308,-0.78233165,-0.53632814,-0.8581862,-0.93396264,-1.0923991,-1.1388292,-1.033159,-0.86499923,-0.83960956,-0.82718533,-1.072649,-1.2144878,-1.0588765,-0.83359474,-0.722902,-0.38686216,-0.95315367,-1.1335912,-0.8035856,-0.59649324,-1.3114557,-1.8791943,-1.893398,-1.92876,-2.1964037,-2.3403466,-2.4251604,-2.522881,-2.4975853,-2.6401615,-2.6677556,-2.6413364,-2.8028214,-2.7221823,-2.5901685,-2.4743512,-2.3764842,-2.892486,-2.8658986,-2.7398071,-2.577743,-2.481895,-2.4024706,-2.7263012,-2.840683,-2.6916084,-2.9352667,-2.9054074,-2.7111201,-2.8442333,-2.473106,-2.4221249,-2.4358332,-2.3968015,-2.5816588,-2.498198,-2.500679,-2.5688362,-2.793316,-2.575314,-2.4140034,-2.3078723,-3.0384884,-3.1128962,-2.9458838,-2.0850272,-3.1019373,-3.2147179
+-0.08108875,-0.3508193,-1.1749036,-1.742876,-2.202349,-2.4249694,-2.7418475,-2.7800224,-2.7788475,-2.7481055,-2.852281,-2.889287,-2.8794532,-2.8410058,-2.7860482,-2.6911716,-1.984621,-2.8933547,-3.221832,-2.9591138,-3.3322587,-3.7313356,-3.9276147,-3.9720998,-3.4815235,-3.628419,-3.7466946,-3.8910718,-3.694828,-3.9216104,-3.890264,-3.8695998,-3.9809208,-4.003709,-3.9723105,-3.8944192,-3.7674975,-3.293281,-3.576645,-3.9955506,-3.8982682,-3.902719,-3.7337956,-3.8563056,-3.5308726,-3.0132184,-3.9200964,-3.9228683,-3.8400807,-3.587492,-3.7518163,-3.794094,-3.3633592,-3.8518586,-3.8782916,-3.6062698,-2.9077756,-4.185861,-4.011334,-4.038713,-4.052495,-4.1009,-3.9635653,-3.8742232,-3.7591038,-3.9210906,-3.76617,-3.669558,-3.5790145,-3.519034,-3.4302673,-3.4039454,-3.3728437,-3.2860527,-3.332842,-3.2827015,-3.110266,-3.5461068,-3.4271169,-3.415401,-3.3557882,-3.3745663,-3.2896972,-3.2883992,-3.0422816,-3.2013917,-2.6972995,-3.5796013,-2.4494638,-3.6307683,-3.8167892,-3.530494,-2.8618174,-3.0190184,-3.9435167,-4.194653,-4.212247,-4.1609898,-3.8152633,-3.9977422,-3.895277,-3.5929646,-2.9019642,-3.564933,-3.8912406,-3.8091645,-3.7887244,-3.694324,-3.6875966,-3.653915,-3.6185508,-3.589829,-3.4634519,-3.2140718,-3.0594237,-2.1978636,-3.6577044,-3.889544,-3.8169188,-3.5934029,-3.8566012,-3.4560618,-3.858232,-4.000323,-3.9477673,-3.8214335,-2.6668053,-3.433753,-3.550304,-3.8707266,-3.9162278,-3.9059515,-3.9271646,-3.1999428,-3.8824077,-3.8844638,-3.7728019,-3.7197113,-3.6637125,-3.6174693,-2.5764184,-3.620346,-3.7416492,-3.7552752,-3.708962,-3.3357868,-3.3987064,-3.7018695,-3.6028981,-3.7272549,-3.62639,-3.5151286,-3.4036417,-3.8172345,-3.7321544,-3.6687796,-3.552125,-3.3790126,-3.2241063,-3.035592,-2.606321,-3.5628502,-3.5433517,-3.7542195,-3.7825656,-2.8490424,-3.77209,-3.8900375,-3.4509726,-3.9045444,-3.9536996,-3.784462,-3.7399926,-3.5667303,-3.5675907,-3.5614998,-2.4682467,-3.4718833,-3.925963,-3.867825,-3.7845922,-3.7962804,-3.8087516,-3.720296,-3.6371243,-3.532001,-3.1218233,-2.8882565,-3.594383,-3.7613664,-3.8327746,-3.8097806,-3.1660955,-3.8150163,-3.6509924,-3.6509852,-3.5939877,-3.407924,-3.2789533,-3.1861408,-3.2885613,-3.2348309,-3.2492206,-3.391466,-3.3358288,-3.192656,-3.1111548,-3.1533332,-2.4215145,-3.3509684,-3.380966,-3.223619,-3.1676278,-3.325035,-3.193375,-3.0566714,-3.1312184,-3.2679086,-3.2963219,-3.301616,-3.045115,-3.3700094,-3.2555919,-3.3270192,-3.2148898,-3.1334822,-3.287049,-3.2333212,-3.2138224,-3.1786184,-2.9848468,-3.2521877,-3.1957402,-3.2029743,-3.2753143,-2.8206096,-3.401792,-3.186579,-3.2032154,-3.150718,-3.054801,-3.0700738,-3.109485,-3.3442783,-3.1823335,-3.1056628,-2.9274185,-2.3744643,-2.740385,-2.633237,-2.6830485,-2.556932,-2.3339136,-2.1570997,-1.96028,-1.9471083,-1.9122849,-1.8866959,-1.8529341,-1.6220722,-1.6151319,-1.4946439,-1.614788,-1.6242111,-1.5580354,-1.5634542,-1.2968278,-1.2260575,-0.7937588,-1.0211828,-1.3225989,-1.3685532,-1.6211483,-1.6969955,-1.5005052,-1.4931064,-1.0496404,-1.6707213,-1.8094964,-1.6821742,-1.6930344,-1.5824323,-1.4716082,-1.3997924,-1.2060976,-1.0121405,-1.3004763,-1.4851437,-1.4690607,-0.916964,-0.37219864,-0.68169695,-0.77055866,-0.5543613,-0.6381733,-1.1736765,-1.7596111,-2.1062984,-2.4250646,-2.688422,-2.9039135,-2.8491933,-2.7434907,-2.7507968,-2.7895803,-2.732995,-2.8589075,-2.8930206,-2.7468214,-2.4302764,-2.2250385,-2.332667,-2.624282,-2.8264737,-2.5019217,-2.4579122,-2.523117,-2.7969022,-2.834295,-2.9438767,-3.0558212,-3.0856988,-3.065626,-2.9978986,-2.974416,-2.3596497,-3.403586,-3.5514712,-3.216098,-3.3404913,-3.5221214,-3.1665454,-3.2038503,-3.2079926,-3.3346872,-3.4176822,-3.262449,-3.0540347,-2.8610888,-2.71588,-2.7382812,-2.92983,-2.8718553,-2.9552395,-2.825937,-2.8572397,-2.9879267,-2.9309983,-2.7274384,-2.709651,-2.7131906,-2.760994,-2.8323698,-2.7246568,-2.7100685,-2.9049978,-2.7662377,-2.3940067,-2.275089,-3.2025986,-3.1035144,-3.2951293,-2.197193,-3.341938,-3.5010862
+-0.47071207,-0.93267494,-1.5167434,-1.8675964,-2.1553428,-2.245394,-2.494347,-2.5952325,-2.5665822,-2.6221528,-1.6888981,-3.0432596,-3.2450595,-3.3100648,-3.3664,-3.2779908,-2.5063736,-3.429832,-3.6412673,-3.7615676,-3.901155,-3.7792006,-3.7450051,-3.7311835,-3.6586661,-3.498172,-3.011414,-3.9346395,-3.4212592,-4.035446,-4.0714498,-3.967329,-3.9994483,-3.9715242,-3.87706,-3.7457995,-3.581437,-3.0996013,-3.687081,-3.4354267,-3.844449,-3.8177524,-3.7130795,-3.610311,-3.4190283,-3.210855,-3.0147543,-3.902638,-3.8743668,-3.890236,-3.848537,-3.9203172,-3.192996,-4.321674,-2.8425846,-4.3698573,-4.1568346,-4.2891173,-4.1936145,-4.31884,-4.142654,-4.3902707,-4.1362004,-4.1241174,-4.2019258,-4.053978,-3.852841,-3.7238684,-3.6414661,-3.5142994,-3.3914294,-3.2639198,-3.1356325,-3.270626,-3.261209,-3.1629217,-3.0927715,-3.5709887,-3.026784,-3.685614,-3.6847687,-3.5670736,-3.538041,-2.8747,-3.6491852,-3.7303033,-3.5728364,-3.398438,-3.7146916,-3.6609054,-3.3890357,-3.412897,-3.5043395,-2.3056393,-3.9133868,-3.8933482,-3.655806,-3.9437394,-3.857061,-3.904183,-3.8376694,-3.713574,-3.3226218,-3.6790652,-3.2798972,-3.957768,-3.8360972,-3.6994886,-3.620007,-3.5092134,-3.4769645,-3.431152,-3.424614,-3.4597683,-3.4502811,-2.0898957,-3.5935888,-3.7152534,-3.521192,-3.6230335,-3.7108312,-3.630333,-3.635704,-3.595171,-3.588976,-3.717855,-2.7795625,-3.3041236,-3.5441086,-3.1197658,-3.3960755,-3.5273113,-3.6517591,-2.95336,-3.7503715,-3.6538801,-3.4861035,-3.4564338,-3.4321022,-3.4064608,-3.3079634,-2.6693997,-3.4733133,-3.6173315,-3.504028,-3.498212,-2.5510309,-3.819656,-3.875905,-3.6332328,-3.68853,-3.7381783,-3.2147696,-3.792667,-3.7100062,-3.5451632,-3.5328145,-3.514823,-3.401393,-3.3354745,-2.5512824,-2.081302,-3.4604125,-3.7188277,-3.7912621,-3.7002325,-3.7145543,-3.6218698,-2.594948,-3.9397192,-3.9243498,-3.7839494,-3.6847785,-3.6180172,-3.5777779,-3.523437,-3.2069697,-1.7455695,-3.686942,-3.800787,-3.8584132,-3.8373427,-3.777618,-3.6284208,-3.5189545,-3.4182124,-3.244258,-2.751217,-2.6031587,-3.7310781,-3.9436893,-3.7084265,-3.6689281,-3.6960683,-3.4298136,-4.0515776,-3.8385806,-3.6360588,-3.6499853,-3.6375055,-3.6139874,-3.485169,-3.4723015,-3.468084,-3.369783,-3.2333121,-3.0594044,-2.9869277,-2.5654397,-3.3648899,-3.287998,-3.2029886,-3.168958,-3.1757927,-3.1116407,-2.992174,-3.0509675,-3.00453,-3.0425398,-3.05173,-2.8480272,-3.1046832,-3.0614886,-3.0536344,-2.9622264,-2.8896906,-3.0026522,-2.9338346,-2.90911,-2.917684,-2.9260674,-2.9476287,-2.8488624,-2.9358835,-2.9257946,-2.858546,-3.0502136,-2.9281251,-2.8903766,-2.9090233,-2.8435984,-2.9599202,-2.9754577,-3.0644534,-2.990668,-2.886187,-2.9530873,-2.578533,-3.197238,-3.0805244,-2.9615793,-2.93051,-2.5457764,-2.3611648,-2.3737926,-2.371425,-2.2938979,-2.1644092,-1.8349471,-1.7932818,-1.8188896,-1.7796435,-1.5654011,-1.4430559,-1.351866,-1.4207776,-1.4369087,-1.6193573,-1.7288618,-2.6446056,-2.5062146,-2.5840912,-2.6730108,-2.6447544,-2.4540572,-2.4083738,-2.6678896,-3.047432,-2.672059,-2.3576407,-2.1603649,-1.8368196,-1.5926108,-1.5221868,-1.5062318,-1.7641373,-2.0667715,-2.0203123,-1.9375429,-1.2860012,-1.5268986,-2.1063356,-2.4833107,-2.9422402,-3.3757594,-3.5032508,-3.6486535,-3.5571818,-3.5457788,-3.6227055,-3.4290628,-3.2335553,-3.0884757,-3.2022438,-3.477466,-3.3375692,-3.1598845,-2.9608123,-2.667839,-2.584043,-2.7072082,-3.137014,-3.2902691,-3.2448387,-2.887793,-3.001371,-3.2279468,-3.1631901,-3.1745338,-3.2068205,-3.3018923,-3.3201215,-3.2377567,-3.1374068,-3.049041,-2.0270882,-3.6435277,-3.732222,-3.6147854,-3.7257886,-3.575675,-3.1697667,-3.4404082,-3.482061,-3.511651,-3.5945358,-3.4306736,-3.4382625,-3.2426567,-3.1108468,-3.1525912,-3.2871115,-3.0418675,-3.003899,-3.1483796,-3.055141,-3.1961756,-3.1894584,-3.07863,-3.0345287,-2.98464,-2.9482248,-3.0679584,-3.0033958,-2.9701176,-3.261422,-3.1870441,-2.4229794,-2.6144743,-3.2677526,-3.0079525,-3.2826433,-1.9249482,-3.2934804,-3.788495
+0.3090875,-0.29042637,-1.4454446,-2.0154946,-2.5076733,-2.5917554,-2.7219107,-2.7794318,-2.9026408,-2.982299,-1.7101035,-3.6046154,-3.7675738,-4.1974306,-4.4311194,-4.4475317,-2.6600826,-2.7551484,-3.427736,-3.7593713,-3.9789262,-4.218948,-4.491342,-4.629593,-4.6700025,-4.3004065,-3.6716533,-4.2389026,-4.309392,-4.4521804,-4.483648,-4.469341,-4.451671,-4.397289,-4.3644085,-4.3320203,-4.344152,-4.3133903,-4.1519356,-4.2451763,-4.315146,-4.027787,-4.228067,-4.1386347,-4.2415204,-2.8971462,-3.7129903,-4.121656,-4.1168838,-4.1989408,-4.357264,-4.5015388,-3.6592276,-3.3475106,-3.0831516,-3.9600668,-4.4635625,-4.5473833,-4.593616,-4.5058537,-3.7978086,-4.2276073,-4.24248,-4.3662677,-4.5380273,-4.4796014,-4.513963,-4.528217,-4.561811,-4.5803514,-4.5463767,-4.484831,-4.232625,-4.3649635,-4.4043255,-4.3208904,-4.2514358,-4.2694793,-4.010729,-4.203295,-4.303051,-4.2798867,-4.2293534,-4.1978145,-4.2075424,-4.208776,-4.0979095,-2.1704664,-4.2705626,-4.4330544,-4.3520446,-3.3304203,-4.3583274,-2.6301665,-3.8131719,-4.2764616,-4.4308205,-4.460889,-2.9860935,-4.2807527,-4.6204743,-4.6357408,-4.551444,-4.4566436,-2.1307058,-3.937427,-4.4043045,-4.647652,-4.725659,-4.6884193,-4.6462398,-4.5797887,-4.5015635,-4.385444,-4.2415013,-4.1198697,-2.3964167,-2.4841228,-3.9534287,-4.2179666,-3.757997,-4.3730016,-4.5290017,-4.551559,-4.5214243,-4.3459964,-3.9142203,-2.8408837,-4.304892,-4.4070983,-4.304715,-4.4205623,-4.378203,-3.7523375,-4.3008785,-4.4178815,-4.3465266,-4.2909923,-4.260029,-4.2221675,-4.1801248,-3.7983785,-4.1845136,-4.2198625,-3.8966842,-4.0809884,-4.071249,-1.2804139,-3.2461233,-4.092518,-4.2108192,-4.365615,-2.8083477,-3.880875,-4.2670283,-4.336839,-4.472479,-4.519003,-4.485073,-4.477094,-4.4648213,-3.4264584,-3.009347,-4.10051,-4.4162703,-4.52871,-4.595544,-4.4978743,-3.9882078,-4.488484,-3.988627,-4.491548,-4.627195,-4.5910316,-4.5636144,-4.5848575,-4.5897155,-2.2616832,-4.1267033,-4.3187,-4.4932303,-4.6088004,-4.6428223,-4.6491237,-4.6766906,-4.698938,-4.668078,-3.186568,-3.772633,-3.119797,-4.1065917,-4.436131,-4.6135945,-4.7801585,-4.4801173,-4.6650887,-4.670961,-4.6200166,-4.537949,-4.4449906,-4.44202,-4.5609503,-4.609036,-4.645231,-4.6813827,-4.7215457,-4.6772995,-4.618774,-3.2670927,-4.3919315,-4.5932145,-4.593414,-4.603455,-4.665627,-4.6365294,-4.6070323,-4.1670628,-4.4661636,-4.6646867,-4.7354264,-4.372883,-3.357243,-4.425572,-4.724898,-4.74428,-4.7413864,-4.836615,-4.8208094,-4.7411647,-4.703563,-4.6523557,-4.669002,-4.617122,-4.6453724,-4.7616544,-4.7297735,-4.384854,-4.666816,-4.742013,-4.733401,-4.613766,-4.71994,-4.6438527,-4.719174,-4.6395063,-4.706836,-4.5063815,-4.3741784,-4.672875,-4.7495036,-4.5471606,-4.2621837,-3.602521,-3.7451272,-4.2041736,-4.478738,-4.6095285,-4.403004,-3.877235,-4.285788,-4.634114,-3.6102648,-2.7205539,-2.6624415,-2.740388,-3.133996,-3.20611,-3.9568005,-3.8702188,-4.3213234,-4.3731,-4.65614,-4.5131755,-4.316978,-4.402964,-4.667336,-4.719993,-4.820774,-4.253258,-3.7459078,-3.2067928,-2.4559693,-2.3710403,-2.4412427,-2.7792296,-3.6831179,-4.169019,-4.057629,-3.43353,-2.9121299,-2.3201098,-3.37217,-4.0690513,-4.559049,-4.7285748,-4.685392,-3.9542284,-4.4133487,-4.598028,-4.711528,-4.5708222,-4.359292,-4.3390355,-4.5302424,-4.793801,-4.870536,-4.6940255,-4.6452985,-4.2995768,-4.0235314,-4.4244103,-4.639495,-4.6365676,-4.653951,-4.3580956,-4.529219,-4.643904,-4.458936,-4.4945383,-2.4083147,-3.781097,-4.4201493,-4.748382,-4.9138136,-4.854251,-3.1846204,-4.3487873,-4.7499285,-4.843122,-4.8211102,-4.6660433,-4.5099626,-4.7468486,-4.7179904,-4.6358685,-4.559938,-4.506671,-4.6306434,-4.5352798,-4.4887385,-3.4774415,-4.1899095,-4.491882,-4.4327884,-3.2328799,-4.1459,-4.232541,-4.325257,-4.2129645,-4.3072524,-4.445195,-4.336528,-4.4744086,-4.4044366,-4.317559,-4.4808064,-4.528015,-4.416745,-4.045285,-4.243301,-4.1618886,-4.3086715,-1.3945687,-3.2531571,-4.298636
+-0.8172563,-1.6798186,-2.2331042,-2.4984703,-2.6699858,-2.6501827,-2.6672459,-2.7109182,-2.0957196,-2.7694345,-2.6906781,-3.4507377,-3.526227,-3.6269584,-3.9680076,-3.9510036,-2.1607947,-3.1747866,-3.4904394,-3.3421762,-3.5891683,-3.9194622,-4.0938187,-4.2072253,-4.2594585,-4.174901,-3.215094,-4.068442,-2.9954655,-3.8210626,-3.967886,-4.113388,-4.027588,-4.1009355,-4.2021327,-4.226483,-4.2511325,-3.9997458,-2.5663004,-3.9864993,-4.310868,-3.857041,-4.076035,-4.3036985,-4.264873,-4.1201596,-3.399827,-3.8904767,-4.0788503,-4.1628547,-4.279796,-4.2169895,-3.286969,-3.8636813,-3.5265608,-3.9937072,-4.2481427,-3.987133,-4.117697,-3.5371542,-3.490483,-4.131284,-2.767941,-3.7113652,-4.008934,-4.135847,-4.1499343,-4.2684035,-4.3047748,-4.3906884,-4.2890267,-4.1748796,-2.436719,-3.966515,-4.0797157,-4.261421,-4.26479,-4.3784537,-4.320128,-4.0574436,-4.275783,-4.279781,-4.1291137,-4.0060153,-3.914321,-3.7998261,-3.7122545,-3.4173067,-3.791346,-3.7422433,-3.7248135,-3.6611552,-3.6492937,-2.601254,-3.1900988,-3.8671818,-3.7525854,-3.6786976,-3.6957803,-2.264813,-3.769823,-4.020943,-3.862637,-3.7842402,-3.578118,-2.790068,-3.7612329,-4.0125217,-4.0282083,-4.015408,-3.9739633,-3.8708377,-3.768835,-3.6886215,-3.6394582,-3.6522276,-3.2774112,-2.9173975,-3.7064066,-3.7366157,-3.7004685,-3.4619317,-3.7588692,-3.7478237,-3.7379494,-3.7315936,-3.7589498,-3.5485673,-3.8104434,-1.5330954,-3.413228,-3.8671618,-3.961595,-3.7729793,-3.823834,-3.9949784,-4.010398,-3.9401493,-3.9809446,-3.9318004,-3.6379452,-2.6802788,-3.7436233,-3.8599095,-3.9912982,-3.9185433,-3.9222045,-3.7522597,-3.971376,-3.839758,-3.8212228,-3.3245769,-3.7345028,-3.2657466,-3.6928854,-3.9588742,-4.041821,-4.0826955,-4.018595,-3.965001,-3.9186773,-3.931929,-2.2231154,-3.450656,-3.8868937,-4.065372,-3.6460369,-2.582789,-3.2960918,-3.4652405,-2.5122616,-3.7503328,-4.137238,-4.1621957,-4.1450343,-4.238753,-4.159015,-1.7795753,-3.6031752,-3.9887905,-4.1066585,-4.3246927,-4.268179,-4.2055135,-4.2021356,-4.2421145,-4.21866,-4.122646,-4.0839357,-2.3250442,-3.8197575,-4.093221,-4.0935903,-4.2397237,-4.2533145,-4.3072944,-3.8815265,-3.994245,-4.0381494,-3.988173,-4.0050063,-4.0504193,-2.2993731,-3.7581148,-4.1317344,-4.2246547,-4.306468,-4.2786183,-3.178627,-3.7978258,-4.1102066,-4.164047,-4.196257,-4.190742,-4.167728,-4.106206,-3.0739589,-3.927312,-4.046167,-4.187941,-3.758123,-3.5272446,-4.065455,-4.086282,-4.090139,-4.1622295,-4.180472,-4.2378564,-4.18247,-4.1877766,-4.1648617,-4.135156,-3.8999143,-3.9437175,-4.1111627,-4.164644,-3.388804,-4.064877,-4.1937966,-4.2049794,-4.073752,-2.731086,-3.7576556,-4.0974197,-3.9482894,-4.124117,-2.9938836,-3.5780854,-3.8685331,-4.066352,-4.0557427,-3.8385973,-3.4824646,-3.4429092,-3.848763,-4.2329288,-4.201357,-4.129189,-3.9085279,-3.9404273,-4.2568583,-3.5288305,-2.99269,-2.8308291,-2.9063103,-3.404086,-3.4133143,-3.52078,-3.8906994,-3.6792226,-3.894865,-4.1426206,-3.9689188,-3.791369,-3.8280635,-3.9873881,-2.983929,-3.921937,-3.7756119,-3.6216006,-2.190958,-2.011323,-1.6663322,-1.3409541,-1.4250247,-2.8495421,-3.5899854,-3.4629223,-3.1523547,-2.9434054,-2.1151795,-3.3704648,-3.6638498,-3.978105,-4.1871953,-4.254751,-4.2598834,-4.286469,-4.2538514,-4.344456,-4.189269,-4.108337,-4.156585,-4.2630916,-4.2841935,-4.2829595,-4.262319,-4.116736,-3.84936,-3.629036,-3.8990884,-4.0155053,-3.9122272,-3.8298974,-3.6956267,-3.7182689,-3.8276696,-3.6452637,-3.4974098,-1.8829083,-3.217987,-3.642878,-3.9929075,-4.343845,-4.336222,-3.2018497,-4.011346,-4.2709613,-4.3220873,-4.3738275,-4.087998,-3.8726487,-4.14747,-4.0912986,-3.8347259,-3.8096032,-3.9013724,-3.8882194,-3.7009478,-3.605282,-3.3706987,-3.647648,-3.7655082,-3.6247602,-3.7602434,-3.522201,-3.355083,-3.6157007,-3.6649098,-3.6312695,-3.5608778,-3.4639554,-3.5011024,-3.426106,-3.4348059,-3.4286394,-3.514457,-3.4296901,-3.3706384,-3.421229,-1.7433052,-3.6104739,-2.6156702,-3.5361087,-3.820808
+-0.32615602,-0.8616094,-1.0347798,-1.1575408,-1.2051871,-1.2686353,-1.341891,-1.3141809,-1.1632435,-1.3209352,-1.2029023,-2.9554994,-2.6973028,-3.035695,-2.8828635,-2.5084443,-1.9344873,-2.4864376,-2.953312,-2.6405761,-3.13093,-3.1855574,-2.754748,-2.501707,-2.4482918,-2.3546193,-2.1069129,-2.6095264,-2.5315309,-3.212396,-2.8202817,-2.7053714,-2.9026465,-2.5856,-2.5132153,-2.5858588,-2.5926242,-2.4999304,-2.5032306,-2.7536378,-2.6982925,-2.713067,-2.6725106,-2.5534325,-2.5475297,-2.5516467,-2.5485444,-2.654035,-2.8191323,-3.058642,-2.7933972,-2.676846,-2.6026645,-2.9298239,-2.9663782,-2.7825499,-2.609136,-2.9856446,-2.8049564,-2.623999,-2.3018093,-2.6649792,-2.6174922,-2.5204365,-2.9894009,-2.7733517,-2.6014087,-2.4561243,-2.3351479,-2.3327427,-2.3093076,-2.288001,-2.0513005,-2.710263,-2.9276729,-2.7392535,-2.5373118,-2.4678898,-2.4186187,-2.3452396,-2.2456563,-2.1962333,-2.137374,-2.1144433,-2.1542077,-2.173143,-2.2455606,-2.263723,-2.4220116,-2.550015,-2.5788355,-2.6182318,-2.6442275,-2.6495132,-2.336546,-2.4977775,-2.7385898,-2.7643428,-2.7533145,-2.2536283,-2.7317915,-2.7556274,-2.7995718,-2.7533078,-2.76025,-2.2649646,-2.7616477,-2.7380738,-2.7409954,-2.750111,-2.7472095,-2.7361903,-2.7198215,-2.7551858,-2.8156261,-2.389927,-1.880305,-2.2885857,-2.5179687,-2.532089,-2.670684,-2.73668,-2.7712712,-2.863709,-2.9589477,-3.0281944,-3.076764,-3.116992,-3.1725407,-3.1903734,-3.212052,-3.2292376,-3.2369425,-2.8919897,-2.8009644,-3.059383,-2.8486967,-2.9464412,-2.8884912,-2.7887406,-1.067059,-1.8871377,-2.6338387,-2.8075013,-2.7450633,-2.6552048,-2.6899605,-2.814383,-2.8044114,-2.7622576,-2.907664,-2.9460511,-2.909596,-2.9133024,-3.1554465,-2.9234853,-2.8352766,-2.8194556,-2.8372836,-2.8780951,-2.9006493,-2.9359972,-2.6469681,-2.8477263,-2.8132944,-2.807076,-2.8913026,-2.784399,-2.79838,-2.8222208,-2.8150563,-2.7418675,-2.7686317,-2.850913,-2.884519,-2.9238882,-2.9832668,-1.2020543,-1.5032814,-2.6093907,-2.4820857,-2.510644,-2.5378623,-2.4852188,-2.5340934,-2.541312,-2.545645,-2.5605395,-2.6081085,-2.1552782,-2.792324,-2.6932106,-2.5228505,-2.6383448,-2.69669,-2.7494805,-2.7859776,-2.6430244,-2.6403668,-2.6600704,-2.7193594,-2.8525248,-2.496748,-3.026249,-2.6505094,-2.626079,-2.729692,-2.8298535,-2.8071017,-2.8675268,-2.807,-2.7360065,-2.7467084,-2.7232301,-2.70047,-2.7701206,-1.8072693,-2.6825519,-2.5788789,-2.832603,-1.9476132,-2.440825,-2.9192708,-2.9751878,-2.7676187,-2.7603378,-2.5268598,-2.643413,-2.7175436,-2.5742378,-2.5421956,-2.8594022,-2.7091227,-2.6044874,-2.5375063,-2.6379628,-3.0359921,-2.8960485,-2.8782823,-2.7862835,-2.6214342,-2.9056501,-2.8741574,-2.929288,-2.7761765,-2.6439815,-2.7633595,-3.2482843,-3.4127245,-3.4089053,-3.1759894,-2.7836704,-2.5946403,-2.3804984,-2.5162692,-2.8741617,-2.884729,-2.8152406,-2.5826578,-2.5061297,-2.765326,-2.539297,-2.4498153,-2.2050152,-2.2785048,-2.3804731,-2.6069884,-2.9631126,-2.6938288,-2.7058969,-2.5187037,-2.6907656,-2.6391518,-2.5416007,-2.516365,-2.6961737,-3.0384796,-3.1337495,-2.802079,-2.6888855,-2.5618982,-2.5638983,-2.3121033,-2.2782798,-2.5919397,-2.7188058,-2.817874,-3.0821433,-3.223197,-3.3878906,-2.170042,-3.195735,-3.0416887,-3.383452,-3.1179996,-3.0088203,-3.2704551,-3.3068745,-2.9829426,-3.1285129,-3.060787,-2.9194307,-2.8339994,-2.7398977,-2.6415725,-2.5344396,-2.5994732,-2.5602407,-2.4877849,-2.3201094,-2.5467563,-2.7104325,-2.6865215,-2.7201722,-2.6856902,-2.6087732,-2.6507494,-2.767155,-2.6682494,-1.1542909,-2.9406326,-3.0617967,-2.8062973,-2.9046643,-2.776569,-2.695815,-3.4299183,-3.0502353,-2.87002,-3.031991,-2.9976509,-2.7722535,-2.6901867,-3.0662255,-3.1237602,-3.0246108,-2.8821003,-2.7006016,-3.0023355,-2.98423,-3.2102823,-2.9538488,-2.8893275,-3.0084007,-2.9631538,-2.7965312,-2.82711,-2.9262145,-2.857179,-2.8367405,-2.8606334,-2.9313939,-2.888947,-2.8465157,-2.8840506,-2.9682155,-2.9207683,-2.6985912,-3.011331,-3.0008645,-3.066041,-3.1096916,-3.0598166,-3.2189908,-3.0973558
+-0.5805947,-2.3812628,-2.874641,-2.938748,-2.7592287,-2.7706203,-2.7743042,-2.61165,-2.421123,-2.7276518,-2.590703,-2.455841,-2.6206572,-3.1192021,-3.3969476,-3.0710402,-1.2863433,-1.4945438,-3.3010554,-2.6839564,-3.3523805,-3.9393182,-4.143872,-4.0161133,-3.970779,-3.7574973,-2.7167454,-3.9815326,-3.5584202,-3.525005,-4.048718,-3.8050952,-4.2406545,-4.210712,-4.0446873,-3.9170485,-3.7502003,-3.094493,-3.5326731,-3.4652677,-1.9116671,-3.5718596,-3.8615007,-3.7458482,-3.7180152,-3.3553493,-3.8658843,-3.6312747,-2.2963452,-3.948822,-4.130026,-3.979568,-3.897985,-3.7608132,-3.5571713,-2.3073902,-2.6681666,-3.971477,-4.003858,-3.69343,-3.9430099,-3.3148081,-2.3160372,-3.7916794,-3.987801,-4.104393,-4.100618,-4.007191,-3.8938594,-3.6796403,-3.4404588,-3.2936563,-3.155487,-1.059874,-3.496847,-3.9219546,-3.878715,-3.766717,-3.570733,-3.3953595,-3.3300798,-3.345358,-3.3564148,-3.3642397,-3.3707862,-3.2819586,-3.305565,-3.3218644,-2.8797936,-3.342095,-3.398982,-3.3987412,-3.337648,-3.3462682,-0.61048,-3.2721062,-3.6697688,-3.5257883,-3.4782276,-3.401678,-3.1286163,-3.388804,-3.248701,-3.1480238,-3.169876,-3.1103294,-3.1467316,-3.2131777,-3.2347882,-3.231287,-3.2828805,-3.3354983,-3.3420737,-3.3567824,-3.3844228,-2.4209495,-3.2904248,-3.283139,-2.8507333,-2.7085202,-3.4613638,-3.5162017,-3.4745574,-3.45686,-3.4537265,-3.482186,-3.5298147,-3.5775433,-3.620852,-3.6478395,-3.7286468,-3.7809162,-3.8326793,-3.6836154,-2.0686264,-2.1050854,-1.0636022,-1.595052,-1.536366,-2.4163423,-2.5609517,-3.1888363,-3.4371743,-3.4309602,-3.740243,-3.826982,-3.7792659,-2.9866807,-3.5600867,-3.4614437,-2.573756,-2.8505163,-3.2869382,-3.3138876,-3.2069275,-3.296452,-3.3165202,-3.2910342,-3.2892754,-3.2790565,-3.264542,-3.2474113,-3.2499099,-3.3199348,-3.2769094,-3.266452,-3.249834,-3.2434099,-3.2814898,-3.3300402,-3.3350635,-3.3246794,-3.2320495,-3.314674,-3.379743,-3.3648214,-3.3523936,-0.92829734,-2.8952403,-3.0139627,-3.116912,-3.22724,-3.346396,-3.2985744,-3.2532408,-3.2379932,-3.2064965,-3.2004986,-3.1814878,-3.3104506,-3.28763,-3.3069735,-3.3728213,-3.4104548,-3.4257922,-3.4235592,-1.364634,-2.9856968,-3.045713,-3.0953827,-3.1549082,-3.1951492,-2.2543347,-3.1731339,-3.2534647,-3.2881117,-3.287603,-3.326947,-3.24929,-3.2724137,-3.2583487,-3.213326,-3.259741,-3.2435288,-3.1995506,-3.2566125,-1.1042972,-2.9228382,-1.9462681,-2.8399367,-3.084749,-3.1707437,-3.261838,-3.5302675,-3.4729414,-3.4185073,-3.396698,-3.481896,-3.4911745,-3.4358535,-3.3976507,-3.4670672,-3.3624606,-3.5334992,-3.5730283,-3.4337902,-2.5690346,-3.3785515,-3.3797073,-3.4631891,-3.245231,-2.7712607,-3.2161312,-3.2165122,-3.329432,-3.4315643,-1.343807,-3.0606666,-3.0760524,-3.5584433,-3.634875,-3.268443,-3.1968608,-3.2251854,-3.2809777,-3.5055873,-3.5087645,-3.4212813,-3.4394255,-3.2418127,-3.2851415,-3.2328649,-3.2004156,-3.3517537,-3.4233847,-3.5039983,-3.3622072,-3.0192237,-3.1882854,-3.2839584,-3.3210974,-3.3548157,-3.3182497,-3.2951033,-3.3001533,-3.5438013,-2.5120807,-3.301145,-3.2498374,-3.445157,-3.148019,-3.182085,-3.1568987,-3.0530453,-3.120494,-3.2740173,-3.278493,-3.3910415,-3.4247873,-3.4627233,-1.9816225,-3.1408315,-1.8142064,-3.4795718,-3.8660264,-3.9020057,-3.8558831,-3.9294977,-3.8715396,-3.9064107,-3.7965755,-3.7782502,-3.7753434,-3.707069,-3.5892541,-3.489712,-3.5076973,-3.4327097,-3.3961747,-3.3921995,-3.4609072,-3.3451443,-3.3063934,-3.248302,-3.3633204,-3.470577,-3.3204591,-3.4001071,-3.3242266,-0.6439379,-3.116158,-3.6037865,-3.5530689,-3.5814168,-3.4250455,-1.9328384,-3.7779737,-3.9022822,-3.8583045,-3.8915749,-3.8360543,-3.8213806,-3.78433,-3.4616559,-3.5115175,-3.528839,-3.501779,-3.0228515,-2.5488043,-3.415922,-3.5273569,-3.3287988,-3.4866674,-3.495503,-3.451683,-1.817822,-3.3860302,-3.7451982,-3.7353983,-3.531763,-3.33392,-3.3895903,-3.2999477,-3.2738914,-3.2991118,-3.2996342,-3.230324,-1.5711737,-3.2414527,-3.3314114,-2.4979963,-3.3159997,-1.954757,-3.474419,-3.561751
+-0.6840119,-1.4309905,-1.9950562,-2.278489,-2.361816,-2.4572706,-2.4477086,-2.4093044,-2.4495783,-2.4510531,-2.381519,-2.6564636,-1.934905,-3.4152966,-3.6370008,-3.6527212,-3.2221556,-2.2552037,-3.4454324,-3.2096825,-3.409439,-3.6529741,-3.8958154,-3.8582516,-3.9561067,-4.025436,-2.8389888,-3.812284,-3.7746181,-3.0468526,-3.772759,-3.2745426,-3.6551538,-3.6959882,-3.6449003,-3.698709,-3.6721804,-3.4678943,-3.43581,-3.5201924,-2.8051875,-3.7337875,-3.6088996,-2.0685887,-3.5678048,-3.17902,-3.7969427,-3.1303968,-2.255507,-3.6221151,-2.787905,-3.7371917,-4.059375,-4.00499,-3.968802,-1.8506863,-2.0990238,-3.9256868,-4.262878,-4.159368,-4.0109406,-3.4342399,-3.6049335,-3.6758962,-3.46116,-3.8341107,-3.757267,-3.7584815,-3.6770523,-3.6347694,-3.7290392,-3.680105,-3.229105,-3.7617369,-3.7833867,-3.7372212,-3.6597934,-3.5847106,-3.5314114,-3.313365,-3.1433291,-3.376329,-3.4874928,-3.4263787,-3.327374,-3.0422242,-3.1966724,-3.1341376,-1.155349,-3.4301796,-3.6505873,-3.623933,-3.5734043,-3.5423334,-3.4099307,-3.3550875,-3.2591796,-3.193429,-3.128619,-3.0222173,-2.9069529,-2.8051395,-2.8041885,-2.814724,-2.8079627,-2.7911654,-2.8010492,-2.856714,-2.8999326,-2.9334989,-2.9655755,-2.9895585,-3.012792,-3.0451481,-3.0786655,-2.7618275,-2.8338308,-2.0216115,-2.9341135,-3.3014488,-3.4084995,-3.3238294,-3.270917,-3.2506928,-3.203088,-3.1915765,-3.2091,-3.2152863,-3.199852,-3.2180178,-3.253673,-3.3130143,-3.34082,-3.2876592,-1.3637669,-0.7748614,-1.6317494,-2.2653904,-1.8672936,-2.829039,-3.3407817,-3.250032,-1.896615,-2.8577404,-3.7419524,-4.1579604,-4.0654473,-3.7924466,-3.7280078,-2.6342168,-3.2679749,-3.447672,-2.8365293,-3.570723,-3.4473357,-3.4980578,-3.317991,-2.3614755,-3.496541,-3.5635188,-3.618145,-3.6459394,-3.6248157,-3.4845805,-3.538118,-3.577314,-3.5636525,-3.5542169,-3.5645838,-3.4928317,-3.4614496,-3.363153,-3.3351045,-3.369064,-3.432551,-3.388267,-2.9865313,-1.8865144,-2.9942389,-3.2223155,-3.1948647,-3.3634145,-3.402978,-3.4809713,-3.4859335,-3.5267706,-3.5177,-3.5113838,-3.4315667,-3.4959764,-3.4470866,-3.3407323,-3.358962,-3.393593,-3.3915956,-1.8869758,-2.152745,-3.4117246,-3.6833851,-3.750421,-3.8328362,-3.8551397,-3.893497,-3.7678342,-3.6957688,-3.7074466,-3.7107835,-3.615851,-3.572053,-3.518869,-3.474729,-3.4071214,-3.413141,-3.3704858,-3.2168543,-3.3064082,-2.9673834,-2.873527,-2.5598035,-2.35489,-2.6369793,-3.1051917,-3.2279892,-3.4677424,-3.4183338,-3.5538845,-3.5292344,-3.6976314,-3.7498307,-3.691918,-3.746128,-3.5749297,-3.5011601,-3.4771457,-3.6767004,-3.5971613,-2.307289,-3.72548,-3.2447648,-3.6225896,-3.526764,-3.536862,-3.4502788,-3.618928,-3.6552002,-3.6952143,-2.1708937,-3.0390656,-2.6640253,-3.289669,-3.5626528,-3.3484664,-3.3459032,-3.220506,-3.6713538,-4.091193,-4.087684,-3.8929448,-3.853026,-3.754681,-3.999547,-4.077989,-3.6284318,-3.312446,-3.2019877,-3.7232203,-3.2428777,-3.5912576,-3.736915,-3.6736422,-3.6558747,-3.708943,-3.7294936,-3.492941,-3.498067,-3.8593907,-2.478117,-3.774454,-3.844637,-3.9989114,-3.6154263,-3.5104566,-3.1018353,-3.1329396,-3.6804566,-3.9708552,-3.9748788,-3.903592,-3.7315154,-3.478404,-2.7108111,-3.3225954,-2.8971064,-3.530292,-3.929336,-4.1347146,-3.863011,-4.151935,-4.147965,-4.1309633,-4.053799,-3.8029127,-3.5369709,-3.7636085,-3.7334695,-3.7633133,-3.8395057,-3.7878022,-3.7088938,-3.5112562,-3.2609982,-3.7204733,-3.6394978,-3.5246751,-3.590108,-3.6286678,-3.5512085,-3.5407665,-3.1279743,-2.4685116,-3.3672197,-3.6044893,-3.761611,-3.9170585,-3.9474092,-2.1494849,-3.7481613,-4.1578307,-4.185144,-4.3023534,-4.255971,-4.171108,-3.9940548,-4.066619,-3.9821324,-3.8938942,-3.8148074,-2.9334183,-3.3072329,-3.740995,-3.8928766,-3.1442297,-3.9302635,-3.819601,-3.2919145,-3.6223333,-3.8346062,-3.883861,-3.8161016,-3.6592503,-3.823875,-3.7932992,-3.6676702,-3.585465,-3.5814006,-3.5330808,-3.4072065,-2.3539357,-3.4696908,-3.6592932,-2.9573808,-3.706069,-2.3651674,-3.6441278,-3.7407365
+-0.9590017,-1.2382631,-1.6341383,-1.8571463,-2.0068865,-2.1487665,-2.256435,-2.3571002,-2.4031386,-2.5093012,-2.53228,-2.0145712,-2.0701017,-3.5352368,-3.5691159,-3.5888972,-3.5444484,-2.2542877,-3.2887943,-3.4846933,-3.2855709,-3.9851136,-4.2367635,-3.3203864,-4.282747,-4.292123,-4.0766845,-4.289981,-3.752657,-4.087078,-4.2127385,-3.6611242,-4.1326795,-3.9626842,-3.7917647,-3.6889112,-3.5793538,-3.513472,-3.0719776,-3.6038985,-3.3111417,-3.6558623,-3.5596905,-3.3889294,-1.7030535,-2.479535,-3.641175,-2.6090817,-2.436933,-3.6041946,-3.4859433,-3.820271,-4.155983,-4.162259,-4.047251,-4.0352902,-2.8692288,-3.666925,-4.0796556,-3.8717275,-4.180723,-3.163681,-3.701097,-3.6485877,-3.561403,-3.984878,-4.111853,-3.5672975,-3.9879212,-3.489757,-4.20509,-4.2618785,-3.0557094,-4.3156104,-4.267779,-4.1013637,-3.9565244,-3.8409176,-3.694005,-2.1184669,-4.0094347,-3.8472643,-3.7081938,-3.84302,-3.65344,-3.0477748,-3.68081,-3.3992758,-2.2147112,-3.2881756,-3.2706006,-3.6185434,-3.5633326,-3.5682135,-3.4955158,-3.4973743,-3.46948,-3.4475372,-3.390615,-3.3745854,-3.3653126,-3.3976903,-3.4551187,-3.4764462,-3.4950604,-3.5357697,-3.5896215,-3.6426995,-2.76394,-2.9457211,-2.0895367,-3.2184935,-3.2497377,-3.300856,-3.361841,-2.388331,-1.5045159,-3.3839993,-3.4852712,-3.5493443,-3.490807,-3.442656,-3.4170952,-3.358359,-3.320248,-3.3332825,-3.0815635,-3.391614,-3.4292321,-3.4708855,-3.5076313,-3.5211964,-3.558501,-3.5915644,-1.1141853,-1.1310616,-1.6234274,-2.7816086,-2.7835574,-3.1604648,-3.62012,-4.039316,-2.9780626,-3.7047896,-4.114364,-4.247381,-4.2516193,-4.0427675,-4.123948,-3.4947066,-3.7651925,-3.4651582,-3.159161,-3.948752,-3.7245078,-2.7757826,-3.123177,-3.6600683,-4.0078573,-4.14833,-4.213263,-4.141465,-4.0515447,-3.956492,-3.8745823,-3.8350453,-2.763137,-4.016088,-3.8923955,-3.8598337,-3.8674998,-3.7924771,-3.743463,-3.7247157,-3.4396348,-3.1718068,-3.837059,-3.6278129,-3.958036,-3.8352194,-3.6784866,-3.6605616,-3.602033,-3.5349674,-3.5296516,-3.5796232,-3.6060348,-3.638611,-2.4503057,-3.7511125,-3.6224813,-3.584394,-3.574259,-3.61762,-3.6302645,-3.2886348,-3.6477854,-3.7652392,-3.7661233,-3.766172,-3.748424,-3.751543,-3.8154516,-3.7265725,-3.6409628,-3.6293721,-3.6737373,-3.637226,-3.6369383,-3.6400156,-3.6352472,-3.6043684,-3.6058006,-3.609363,-2.5120375,-3.3760717,-3.8034549,-2.3932846,-3.7465014,-2.578741,-3.1619258,-3.37343,-3.9905095,-3.9398484,-3.8295412,-3.8732047,-3.814609,-3.880484,-3.8820071,-3.7532,-3.8555303,-2.6945646,-4.1428075,-4.078539,-4.195528,-4.0080123,-3.8402529,-4.323567,-4.1715446,-4.0828996,-3.862166,-3.8212743,-3.9625087,-3.8833241,-3.8269382,-3.7784925,-2.4977088,-2.4043305,-3.3375711,-3.8309178,-4.2440786,-4.3185396,-3.8758597,-4.099225,-4.131269,-4.251371,-4.21781,-4.221343,-4.19498,-3.9846659,-4.0238976,-4.249983,-3.9825912,-3.892498,-3.7583127,-3.800879,-3.6735396,-3.6994462,-3.887267,-3.7735958,-3.85296,-3.8306441,-3.8483067,-3.6849208,-3.1556401,-4.0682006,-3.8841767,-3.9313035,-4.0075574,-4.024856,-3.9640307,-3.7333088,-3.493894,-3.6468031,-3.815878,-3.8828993,-3.8905492,-3.7924552,-3.8269086,-3.7133522,-3.2244833,-3.7037206,-2.549552,-3.4503672,-3.05997,-3.496519,-3.8352733,-4.2762814,-4.3431087,-4.3851857,-4.410011,-4.361674,-4.146504,-4.2665586,-4.0760913,-4.024342,-3.9654303,-3.9058332,-3.883408,-3.7269874,-3.6002398,-3.77358,-3.7721648,-3.6570718,-3.6513073,-3.6265128,-3.5210884,-3.503221,-3.515221,-2.062964,-3.6904244,-4.0804024,-3.84545,-4.234475,-4.162576,-2.7635736,-3.9926476,-4.2332253,-4.2629037,-4.273854,-4.3326817,-4.187731,-3.985795,-3.8665786,-3.805471,-3.7672615,-3.6204786,-3.34,-2.3620458,-3.7539349,-3.051612,-3.9264789,-4.119297,-4.173014,-3.307785,-4.0404887,-4.1640224,-4.434319,-4.4033494,-4.2956223,-4.234223,-4.2601943,-4.159751,-4.064757,-3.9807305,-3.8623853,-3.7165213,-3.2541313,-3.4304926,-3.863967,-3.7700539,-3.6732225,-2.2302947,-4.017787,-3.947857
+-1.246074,-1.4423363,-2.0062056,-1.9518285,-1.9386184,-2.2342227,-2.2456374,-2.2165055,-1.7053485,-1.7806802,-1.9243095,-1.9206414,-1.954809,-2.2973933,-2.6786926,-2.8511066,-2.9389415,-3.0170293,-2.6843622,-3.2404687,-3.4658103,-3.262822,-3.070569,-2.21588,-2.3793645,-2.9011884,-3.2345085,-3.295529,-3.3803718,-3.4232569,-3.360523,-3.4641337,-3.5635462,-3.4665523,-3.5477176,-3.6851118,-3.6213524,-3.5993297,-3.2480688,-3.2162452,-3.1749668,-3.731964,-3.8115506,-3.5546908,-3.672676,-3.6926713,-3.6135712,-3.5780706,-3.5606833,-3.5530515,-3.588255,-3.565778,-3.4412217,-3.3707592,-3.4180417,-3.898633,-3.8527493,-3.9565053,-3.8819318,-4.092441,-2.6744885,-4.0523543,-4.014578,-3.671049,-3.981852,-4.274331,-4.0955048,-4.2129707,-4.143943,-4.059077,-4.024629,-4.1377425,-3.8093128,-3.886743,-3.6143875,-3.802462,-4.213617,-2.616078,-4.050791,-4.321132,-4.3441005,-4.3769717,-4.22765,-4.134122,-4.2127547,-4.018082,-4.271962,-4.2881427,-4.131452,-4.165995,-4.0452604,-4.170199,-4.2138324,-4.128579,-4.0811734,-3.9310875,-3.895371,-4.128945,-3.8040671,-4.3854914,-2.6248403,-2.6513567,-3.2445073,-4.0576854,-3.7513947,-4.1350503,-4.315947,-2.9783306,-4.0406103,-4.2385774,-4.1659465,-2.8499746,-4.2339053,-3.3182735,-3.3269167,-4.1820574,-4.1161556,-3.0575047,-4.2422853,-4.3252625,-4.376907,-4.343142,-4.2760625,-4.290771,-4.326608,-3.2091734,-4.398265,-4.522336,-4.4947906,-4.384256,-4.343155,-2.3103447,-3.1774344,-4.0448995,-4.3962445,-4.4105654,-4.271357,-4.2329884,-4.4406347,-3.8501754,-4.436263,-4.1613,-4.4674535,-4.515982,-4.3460994,-4.445365,-4.473105,-4.4197774,-4.2705636,-4.2008166,-2.2950764,-4.160106,-4.541711,-4.539266,-4.473803,-4.398106,-4.2853765,-2.892575,-3.9157891,-4.23751,-3.0353463,-4.2687044,-4.475197,-4.5882764,-4.602158,-4.6704984,-4.496943,-4.1492333,-4.195284,-4.442758,-4.5043507,-4.5654655,-4.5880775,-4.451734,-4.452382,-4.227717,-4.2610583,-3.8956943,-4.2105875,-4.567805,-4.5871854,-4.5285773,-4.466471,-4.438438,-4.4398165,-4.341434,-3.877214,-2.8552895,-4.407161,-3.9391174,-4.3415465,-4.429503,-4.515355,-4.4374776,-4.401253,-4.3760433,-4.3977385,-4.523881,-4.443589,-4.4779096,-4.394159,-3.951404,-4.3258896,-4.331288,-4.4107924,-4.400735,-4.3339095,-4.1976666,-3.0996213,-4.2432303,-4.406051,-4.436851,-4.337077,-4.271462,-4.33927,-4.420313,-4.408281,-4.4306235,-4.4498253,-4.4391932,-4.5462937,-4.5093665,-4.4591336,-4.483745,-4.2504764,-3.9407773,-4.200094,-4.3356175,-4.2117095,-4.2132177,-4.242044,-2.3977828,-3.4023724,-2.9412892,-2.290854,-2.06348,-2.472863,-2.5272624,-2.3518922,-2.1017694,-1.941989,-1.2563837,-1.8552451,-1.8988855,-2.413461,-1.9493775,-1.7472737,-1.7300582,-1.6617138,-1.756252,-1.9737873,-1.9829507,-2.1714637,-2.2585452,-2.2457838,-2.2887726,-2.3062968,-2.286141,-2.328986,-2.2836022,-2.3615673,-2.3453867,-2.3091981,-2.030414,-2.01176,-1.9796996,-1.9764824,-1.957711,-1.9088027,-1.45141,-1.9787765,-2.0462704,-1.944042,-2.0470839,-2.0772295,-2.0836654,-2.0400667,-2.1330967,-2.2742178,-2.2901268,-2.302993,-2.2819114,-2.4004536,-2.282919,-2.151528,-2.3030872,-2.3746915,-2.357966,-2.3191752,-2.2769804,-2.1805105,-2.1537962,-2.2072408,-2.2133617,-2.099864,-1.8168793,-1.742311,-1.7061691,-1.7777035,-1.7647386,-1.8127875,-2.0376267,-2.092588,-2.1576185,-2.2272267,-2.0384054,-2.1410935,-2.351579,-2.3816605,-2.2952726,-2.2605283,-2.2250748,-2.2745087,-2.3407097,-2.3944898,-2.1689267,-2.013153,-1.9337282,-1.9628267,-1.8607829,-2.0364792,-2.0362086,-1.8894587,-1.5455728,-1.1544356,-1.0287876,-0.9216618,-0.68770605,-0.42822832,-0.7389018,-1.4761055,-1.7236922,-1.6881645,-1.574575,-1.5574164,-1.810389,-1.988204,-1.8391724,-1.3294978,-0.9400019,-0.6843752,-0.7786724,-1.2756157,-1.6846426,-1.9772387,-2.1364322,-2.0363083,-2.0037184,-1.949616,-1.7329681,-1.2219663,-0.88288206,-0.74397653,-0.71444625,-0.49231023,-0.4048571,-0.96071523,-0.67624587,-1.1647809,-1.6180806,-2.4938815,-2.981502,-3.1390061,-3.156969,-3.1819344
+0.046467602,0.017118067,-0.83023447,-1.1873004,-1.463223,-1.7685919,-1.9138396,-2.134038,-1.7714264,-1.9014354,-2.217639,-2.1300573,-2.3337092,-2.3687043,-2.2856698,-2.2297063,-2.2497365,-2.0947623,-2.3324385,-2.5882535,-2.1465747,-2.917054,-2.7853725,-2.5938675,-2.0163147,-2.7907248,-2.3047435,-2.3923335,-2.632281,-2.5656142,-2.622293,-2.6899924,-2.7435863,-2.7486227,-2.7742007,-2.8273292,-2.7914395,-2.7834797,-1.9729557,-2.2495465,-2.1418002,-2.6550336,-2.7446055,-2.8725443,-2.9541993,-2.9191568,-2.810369,-2.8178892,-2.7176466,-2.658698,-2.7726026,-2.813267,-2.1090245,-2.3253853,-2.2981544,-2.8547864,-2.8193736,-2.3825178,-3.0147235,-3.1134923,-2.326449,-3.2224698,-3.2481866,-2.6680322,-2.6376333,-3.1613655,-3.0974977,-3.086003,-2.7011065,-2.493471,-2.8809924,-2.947702,-2.828808,-2.1391861,-2.1070352,-3.0098848,-3.2029717,-2.2931683,-3.0574532,-3.2921124,-3.0602975,-3.4607737,-3.106018,-3.31067,-3.1280327,-2.786034,-3.3032973,-3.23826,-3.0775914,-2.9829874,-2.5405765,-3.052795,-2.9445744,-2.8984137,-2.8548365,-1.7918956,-2.611835,-2.7284224,-3.1443295,-3.246656,-2.7105296,-3.132218,-3.6456826,-3.6063163,-3.3560312,-3.315188,-3.1082134,-2.3396623,-3.4829545,-3.3745031,-3.3204753,-3.3325348,-3.2753263,-2.444238,-3.5866835,-3.4315877,-3.390038,-3.3044004,-3.2957673,-3.1849804,-3.1194754,-3.0469224,-2.9482105,-3.0609446,-3.08875,-2.1778455,-3.2531114,-3.4138215,-3.3430529,-3.266807,-3.2258587,-2.7288592,-1.9250102,-2.9269443,-3.1707554,-3.467506,-3.4626489,-3.2745852,-3.592897,-3.1774318,-3.2264972,-3.2987998,-3.5098162,-3.4930785,-3.2641923,-2.9627812,-3.4072022,-3.4556353,-2.6904595,-2.9652576,-3.2494254,-2.9751303,-3.313366,-3.3726034,-3.3240724,-3.206017,-3.0283818,-2.3997815,-2.8766904,-3.1164052,-3.3555799,-3.091108,-3.4622734,-3.5560946,-3.4706707,-3.5822227,-3.4786816,-2.3756847,-3.4714382,-3.4755137,-3.6243148,-3.6459215,-3.6817386,-3.737094,-3.5412202,-3.1580505,-2.9743314,-3.0384827,-3.260075,-3.508885,-3.5744078,-3.6513824,-3.568613,-3.52182,-3.5326943,-3.4110482,-3.1136215,-2.4692278,-3.2242136,-3.0279653,-2.9038076,-3.1684368,-3.3287513,-3.277358,-3.3067105,-3.2494879,-3.263772,-3.2508464,-3.2634676,-3.326363,-3.5395517,-3.6066988,-3.4432518,-3.5108414,-3.6275072,-3.5651574,-3.4312034,-3.201616,-2.773768,-3.5294302,-3.5918753,-3.506557,-3.5939047,-3.6562319,-3.6132455,-3.7200732,-3.7559257,-3.703301,-3.6792176,-3.6243105,-3.6782663,-3.7447195,-3.5967796,-3.790134,-3.503137,-3.3214598,-3.6617506,-3.7077203,-3.6944022,-3.5190647,-3.6797185,-2.9409368,-3.2003298,-2.8629198,-2.44285,-2.108714,-2.037845,-1.922998,-1.7652395,-1.5559156,-1.4449887,-1.2206404,-1.6325178,-1.6491299,-1.7381644,-1.6424456,-1.6735904,-1.5887866,-1.4791071,-1.8204801,-2.0276618,-2.1189735,-2.0141275,-1.9770718,-1.8141935,-1.9350882,-1.9255486,-1.9943671,-1.9844031,-1.9489748,-1.9924104,-1.955286,-1.9011166,-1.884831,-1.9023564,-1.8446612,-1.8882205,-1.8377271,-1.567559,-1.7372291,-1.7598448,-1.7806158,-1.8146787,-1.7960284,-1.8422544,-1.8150449,-1.8650148,-1.8575377,-1.8173809,-1.9014361,-1.9353645,-1.9054973,-1.9370418,-2.0652158,-2.0293422,-2.0742414,-2.0013075,-2.0614965,-2.0268574,-2.0476537,-2.0453932,-2.094256,-1.992594,-1.996881,-2.0368214,-2.0825663,-2.0246081,-1.8901136,-1.922396,-2.1577802,-2.0113676,-1.8564625,-1.8676097,-1.8457875,-1.9190469,-1.9368863,-1.8368046,-1.8242822,-1.8493881,-1.8601644,-1.9882672,-1.8569539,-2.0705788,-1.8608971,-1.8611865,-1.8451114,-1.8038116,-1.8474,-1.7495556,-1.7750046,-1.7841692,-1.8086066,-1.6935091,-1.2943609,-0.70110685,0.018380255,-0.74560255,-1.5375519,-2.0386028,-1.9872994,-1.7753692,-1.6280415,-1.5631583,-1.4510841,-1.544261,-1.4570868,-1.479487,-1.4120986,-1.0764613,-0.992719,-2.2059803,-2.6190453,-2.3233492,-1.918989,-2.0228372,-1.7771583,-1.7024131,-1.5773082,-1.5481279,-1.549423,-1.347394,-1.1104014,-0.837424,-0.78645414,-0.7476937,-1.0800986,-1.0300169,-0.81738204,-1.6182482,-1.9245751,-2.4009624,-2.407157,-2.0821311,-2.3249893,-2.4468834
+0.15206964,0.17219877,-0.7184511,-1.5789206,-1.8941898,-2.6565666,-2.7577543,-2.6808681,-2.5427246,-2.9386244,-3.0854096,-3.0805826,-3.373923,-3.3619347,-3.2334876,-3.1613197,-3.0753427,-2.390942,-3.285944,-3.0892212,-3.6355247,-3.8746824,-3.908732,-3.3447871,-3.3188553,-3.8756495,-2.8538368,-3.165151,-3.3438504,-2.7692986,-3.1064472,-3.6177092,-3.937233,-3.599997,-3.7105145,-3.794849,-2.9453475,-3.7612338,-2.512154,-3.4510713,-3.1440778,-3.7691565,-3.546978,-3.4508479,-3.759593,-3.8387175,-3.597859,-3.6781812,-3.5241685,-3.4226432,-3.6744907,-3.6911507,-2.8249836,-3.0338259,-3.5400653,-3.2023442,-3.6589546,-3.0447483,-3.5004215,-3.4858956,-3.2252133,-4.1054826,-4.0135517,-3.3648162,-3.737701,-3.7841024,-3.6038897,-3.643198,-3.6785538,-3.6746483,-3.5251312,-2.5736518,-4.245356,-3.793137,-2.440388,-3.6427784,-3.880875,-3.9752336,-3.3910646,-4.3519616,-3.8268313,-3.984695,-2.940937,-4.0855174,-4.0738487,-4.0584083,-3.92738,-3.8754072,-3.8446794,-3.3850179,-3.845827,-3.960608,-3.8566785,-3.825911,-3.7236753,-3.632662,-3.5105724,-2.4281378,-4.035807,-4.06722,-2.9364777,-4.329443,-3.6473413,-3.9411068,-4.100758,-3.974144,-4.026418,-3.055921,-4.3060737,-3.3672223,-4.150461,-4.202377,-3.9814553,-3.5802708,-4.0609536,-3.9926171,-4.0337386,-3.9677696,-3.7555547,-3.7318606,-3.8540087,-3.7664466,-3.4486246,-3.8618088,-3.8900962,-3.8259482,-3.7537055,-3.8434796,-3.7685652,-3.6773791,-3.6434436,-3.5986645,-2.2340662,-3.2500987,-3.85108,-3.9933982,-4.0290008,-3.9924302,-3.9596157,-3.96978,-3.890308,-3.378561,-3.9293914,-3.9262872,-2.4224916,-3.6497996,-3.9056783,-4.095718,-3.6872127,-4.1685863,-4.1019626,-3.9095778,-3.962109,-4.0320525,-3.8740997,-3.8820624,-3.7323074,-2.0928063,-3.347845,-3.1675715,-3.9320512,-3.0742078,-3.8358874,-4.205145,-4.1927686,-3.8589168,-3.7796674,-2.2503893,-3.2123413,-3.8420777,-4.1124024,-4.069901,-4.0297933,-4.1286907,-3.9635596,-3.0770304,-3.8106008,-3.5559258,-3.9213376,-3.2818937,-3.7424045,-3.8162584,-3.8349886,-3.846747,-3.975366,-4.022206,-3.2736542,-2.5643604,-3.5443702,-3.4822052,-3.8808937,-3.8701344,-4.062043,-4.0903797,-3.6854768,-3.9085255,-4.0560994,-3.9951282,-3.754909,-3.8046117,-3.8487115,-3.9071198,-3.9051552,-4.0534263,-4.167706,-4.049732,-3.891477,-3.8908134,-2.7534904,-3.9955926,-4.3172555,-4.099935,-4.1330605,-4.3289485,-4.1609197,-3.9977102,-4.1114926,-4.189272,-4.2201457,-4.194538,-4.165796,-4.1379743,-4.148499,-4.334128,-4.053084,-4.0526443,-4.3096633,-4.343397,-4.266412,-4.1708627,-4.1460233,-3.1632745,-3.8841538,-3.5659692,-3.28613,-2.110183,-1.81987,-1.8934362,-1.8401031,-1.7071815,-1.3398254,-1.2198038,-1.9785955,-2.418427,-3.0673704,-2.9265325,-2.6158564,-2.3385162,-2.2851915,-2.0219462,-1.8060007,-1.6833477,-1.5264359,-1.4161539,-1.3460617,-1.4240308,-1.482296,-1.5453198,-1.6835668,-1.8353102,-2.2254333,-2.0876184,-2.0420578,-2.2072277,-2.612648,-2.7474713,-2.8087728,-3.0605001,-2.3741288,-3.006103,-3.2637196,-3.2433069,-3.2238154,-3.2129335,-3.2802067,-3.2675772,-3.2591572,-3.3229427,-3.1111627,-3.1360388,-3.1520185,-3.1514554,-3.1271212,-3.202198,-3.284792,-3.2745972,-3.1853924,-3.2341628,-3.1700034,-3.221336,-3.280764,-3.4383097,-3.353033,-3.3755903,-3.2451441,-3.155163,-3.0728252,-3.114861,-3.1624851,-3.114217,-3.1195838,-3.2410898,-3.247088,-3.2594628,-3.2488422,-3.120664,-3.0778313,-3.0282583,-3.0652952,-3.0348015,-3.3375149,-3.3119688,-3.2732298,-3.2479463,-3.1034908,-3.187523,-3.0248601,-2.8908525,-2.991588,-2.8922648,-2.9903898,-2.8785427,-2.3214746,-1.7180598,-1.3140154,-1.0167718,-1.3645289,-2.262844,-2.5583477,-2.0117488,-1.6740942,-1.1841426,-1.0829022,-0.98692125,-1.0215664,-1.3358862,-1.6894641,-2.1929746,-2.1098018,-1.3591449,-0.3784948,-0.46254456,-1.1020627,-1.2642052,-1.2980621,-0.6895173,-0.7602646,-0.9713908,-1.1425226,-1.3901267,-1.6129282,-1.7217362,-1.59132,-0.8585641,-0.15421212,-0.6066406,-0.6291174,-1.3988359,-2.33007,-2.9405859,-3.4463007,-3.4044209,-2.7545283,-3.134268,-3.2089894
+0.26131442,-0.016523212,-0.6887699,-1.2792215,-1.1041257,-1.4422348,-1.572618,-1.7312396,-1.4554679,-1.5284848,-1.7579563,-1.68719,-1.623141,-1.7312422,-1.7612491,-1.8018854,-1.7809105,-1.5605283,-2.5578713,-2.266903,-2.7554398,-2.678262,-2.5481591,-2.516818,-2.641443,-2.667223,-2.472941,-2.9597242,-2.7552676,-2.634389,-2.9330316,-2.5479228,-2.4356894,-2.3990254,-2.2663813,-2.2638674,-2.335462,-2.1836412,-2.1980276,-2.7129843,-2.926241,-2.736963,-2.858724,-2.6089542,-2.3414419,-2.3034546,-2.369009,-2.2005446,-2.0977864,-2.108755,-2.052269,-2.0294447,-2.020988,-2.80767,-2.9222555,-2.9057186,-3.1999934,-3.2612243,-2.8595328,-2.7878356,-2.7208114,-2.8340127,-2.6028862,-2.5083492,-2.5578003,-2.4055767,-2.2613707,-2.1362972,-2.0760431,-2.1965485,-2.1940682,-2.2296898,-2.2221537,-2.1936512,-2.7724438,-2.9007425,-2.822384,-2.7472057,-2.5784118,-2.363044,-2.3844423,-2.3146057,-2.4967551,-2.3773675,-2.2891307,-2.3435595,-2.2064073,-2.1642158,-2.1386697,-2.140072,-2.5943189,-2.7033849,-2.340803,-2.8538108,-2.7608728,-2.6714349,-2.846681,-3.0523243,-3.0899146,-2.7956634,-2.726148,-2.488583,-2.588615,-3.2577543,-2.795719,-2.6624804,-2.4493523,-2.8067033,-3.2456944,-3.0642898,-3.4054186,-3.2562099,-3.0938766,-3.117638,-2.8833966,-2.6676471,-2.5698953,-2.5763068,-2.7637758,-2.6187222,-2.436777,-2.3958025,-2.3361573,-3.2008395,-3.117535,-2.8850012,-2.8448195,-2.641737,-2.5297196,-2.4426756,-2.3938565,-2.3333154,-2.4616961,-2.6714108,-2.927988,-2.8577244,-2.7587814,-2.7352247,-2.6400054,-2.509877,-2.4903033,-2.8350964,-2.750309,-2.6491761,-2.546404,-2.5582955,-2.554186,-2.4103339,-2.5607486,-2.6294532,-2.5204377,-2.6224968,-2.561764,-2.4649806,-2.3527377,-2.1738238,-2.0658479,-2.324282,-2.1839013,-2.1184297,-2.6120234,-2.2229612,-2.9754634,-2.7964082,-2.5837188,-2.5730953,-2.782054,-2.7454705,-2.19792,-2.9745393,-2.710515,-2.6315775,-2.5621629,-2.449842,-2.4802647,-2.4344535,-2.1581476,-2.7790313,-2.672666,-2.6188617,-2.60261,-2.5784435,-2.5560815,-2.4553947,-2.469781,-2.331243,-1.9375741,-2.5320978,-2.7173936,-2.9049325,-2.6091676,-2.6602478,-2.4527016,-2.4209158,-2.3190804,-2.1862113,-2.2419724,-2.0849738,-2.025895,-1.9850116,-2.0083547,-2.1442394,-2.10988,-2.1277943,-2.1497648,-2.123496,-1.9726324,-2.0826364,-2.1165223,-2.0378757,-1.9356639,-1.9770112,-1.9550624,-2.0357041,-2.0470915,-2.022594,-2.1154811,-2.090517,-2.0584211,-2.0567048,-2.1191344,-2.165816,-2.0208101,-2.1210678,-2.12075,-2.0512123,-2.1790142,-2.3361595,-2.3398662,-2.2304237,-2.1974828,-2.3062644,-2.1843262,-2.2701464,-2.2273736,-1.74876,-2.0512626,-1.9026103,-1.8413525,-1.8764634,-1.9814458,-2.478221,-2.342748,-2.3961263,-2.3150094,-2.2868543,-2.0667481,-2.1365356,-2.069785,-1.770103,-1.9011004,-1.9623308,-1.9200163,-1.9298637,-1.8189619,-1.7963977,-1.8025541,-1.8217559,-1.899745,-1.9325159,-1.8446093,-1.8609753,-1.8068111,-1.7745695,-1.7637022,-1.6551158,-1.6329618,-1.5995307,-1.4780023,-1.5986075,-1.6814656,-1.6985488,-1.8339653,-1.7514949,-1.8709025,-1.8002863,-1.9564548,-2.0989459,-1.9562669,-1.982295,-1.97895,-1.9412494,-1.8745618,-1.909905,-2.040483,-2.153757,-2.2575152,-2.1112938,-2.0961547,-2.0916548,-1.7398462,-2.2446492,-2.133689,-2.2578278,-2.140488,-2.0454388,-1.58111,-1.5747154,-2.0024874,-2.1757586,-2.0561042,-1.9643426,-1.983973,-2.0413084,-2.0115685,-1.9514554,-1.9676147,-1.9958439,-1.9222007,-1.6696517,-1.9460769,-1.8186927,-1.8182244,-2.1437116,-2.0244784,-1.9950817,-1.8145709,-1.1907847,-1.0440087,-1.0509481,-1.1370571,-0.98434585,-0.41290557,-0.1355359,-0.5244294,-1.0212562,-1.5702832,-1.8465853,-1.8770537,-1.6620436,-1.6446815,-1.4339406,-1.2913783,-1.0329955,-0.89667207,-1.1090043,-1.0894327,-1.1656723,-1.6176267,-2.03685,-2.2358925,-2.2817593,-2.1244268,-1.8129587,-1.7509284,-1.6591327,-1.6039882,-1.4977658,-1.3807852,-1.400723,-1.375165,-1.6758995,-1.9048727,-2.0237772,-1.6985233,-1.8483212,-1.8631935,-2.0151114,-2.3664632,-2.451014,-2.5632696,-2.4364948,-2.1972702,-2.58566,-2.5872536
+-0.39040124,-0.699135,-1.0609298,-1.4535346,-1.3581097,-1.6484511,-1.9507484,-1.927778,-1.8407431,-1.8799744,-2.0510004,-2.009246,-1.9419851,-1.9979334,-1.9608116,-1.9321179,-1.9066987,-1.654208,-2.526678,-2.356502,-2.5936666,-2.673746,-2.6053708,-2.4769917,-2.492999,-2.8687453,-2.4485989,-2.9549828,-3.1623209,-3.0019245,-3.1620808,-2.802895,-2.5821915,-2.4235682,-2.293834,-2.22092,-2.2305522,-2.156964,-2.2573502,-2.7185822,-3.0978684,-2.9112568,-2.7667527,-2.9362857,-2.5454185,-2.5135355,-2.9362338,-2.5996017,-2.3446054,-2.3969412,-2.2587514,-2.164446,-2.2795815,-2.4911273,-2.6145058,-2.7414336,-2.840333,-3.2132082,-2.9614296,-2.9785824,-2.9297733,-2.6702929,-2.3573103,-2.2491465,-2.4543657,-2.4158955,-2.2145183,-2.1687691,-2.0675507,-2.1317348,-2.101613,-2.1146786,-2.1099439,-2.1193013,-2.1180491,-2.124309,-2.1162205,-2.2229886,-2.2094593,-2.193129,-2.3160768,-2.0361843,-2.6693978,-2.7998824,-2.634925,-2.6466887,-2.601499,-2.9544902,-2.8298597,-2.7108843,-2.6434906,-2.5116577,-2.2728665,-3.021071,-3.1305816,-3.1294122,-3.0159094,-2.9630408,-3.1506057,-2.945752,-2.8840616,-2.6138914,-2.6375363,-3.322519,-3.0608015,-2.933312,-2.7873192,-2.6532397,-2.644555,-3.081682,-3.029972,-2.883791,-2.8398752,-2.8064132,-2.8072846,-2.7210479,-2.565339,-2.471198,-2.465664,-2.405427,-2.3224058,-2.3277416,-2.2604713,-2.49508,-2.5674129,-2.449691,-2.1024175,-2.5082698,-2.4710417,-2.6493073,-2.6315143,-2.6099825,-2.4757977,-1.6437023,-2.5496204,-2.650908,-2.5764384,-2.5488138,-2.451089,-2.3797066,-2.4036112,-2.302664,-2.4162917,-2.3677118,-2.334786,-2.0490682,-2.5881047,-2.6968458,-2.8970242,-2.8717675,-2.8624563,-2.8043907,-2.9381979,-2.7966428,-2.676958,-2.5889673,-2.458344,-2.376514,-2.3511767,-2.3770752,-2.604166,-2.655674,-2.4907355,-2.4707022,-2.433871,-2.2461407,-2.7652543,-2.8828328,-2.910613,-2.7207866,-2.7129493,-2.7157152,-2.6879377,-2.5627348,-2.525704,-2.5453267,-2.2262726,-2.4750085,-2.8297162,-2.7269053,-2.737016,-2.7324305,-2.697857,-2.6748295,-2.6654062,-2.511672,-2.1149392,-2.486104,-2.723958,-2.8458037,-2.6698399,-2.6988878,-2.4456599,-2.6780148,-2.6268284,-2.554679,-2.6103752,-2.4193206,-2.3376918,-2.250368,-2.2804325,-2.401969,-2.4873683,-2.3384557,-2.336024,-2.3688045,-2.2951148,-2.3286028,-2.1684754,-2.387011,-2.3211524,-2.2438917,-2.2683024,-2.2651255,-2.286477,-2.2955666,-2.3007941,-2.287478,-2.2709436,-2.277501,-2.3359642,-2.4512687,-2.2504568,-2.2449217,-2.4082165,-2.2505531,-2.270376,-2.550324,-2.4568124,-2.3663657,-2.1555052,-2.362527,-2.32108,-2.5286658,-2.4635315,-2.082312,-2.3574455,-2.2466464,-2.312493,-2.287085,-2.4685545,-2.4140205,-2.2956824,-2.5736542,-2.4772458,-2.3669956,-2.278655,-2.3426347,-2.4166977,-2.1266217,-2.3444219,-2.2408657,-2.0885339,-2.101742,-1.9649403,-1.8570194,-1.9173951,-1.8904114,-1.9620316,-1.9038842,-1.8738809,-1.9712579,-1.9481583,-1.9009643,-1.8251028,-1.676434,-1.654757,-1.4249504,-1.4595356,-1.2444084,-1.2507806,-1.3358669,-1.4071112,-1.4380641,-1.4167709,-1.4181831,-1.3237474,-1.224045,-1.6225305,-1.5519462,-1.5854902,-1.5817165,-1.6329134,-1.5992148,-1.5100489,-1.4098837,-1.7582989,-1.6685758,-1.7612684,-1.5767252,-1.4688525,-1.6308482,-1.4936585,-1.5465074,-1.4406888,-0.9702758,-0.21413118,0.0037605762,0.0007880628,-0.34784055,-0.49114078,-0.655237,-0.80673593,-0.8486976,-0.75468534,-0.83823687,-0.8946273,-1.177876,-1.2250452,-0.9854645,-0.96184236,-0.80534405,-0.81604975,-1.0001447,-1.0664754,-1.0552669,-1.110843,-1.4695733,-1.5821698,-1.6998694,-1.7357945,-1.8890262,-2.0872016,-2.195116,-2.265812,-2.0890841,-2.231093,-2.2543573,-2.1746569,-2.256012,-2.2810268,-2.1201673,-2.1259604,-2.2659428,-2.376832,-2.3148766,-2.1471143,-2.1351275,-2.0808072,-1.995177,-1.7670307,-2.2716398,-2.0807345,-2.0777445,-2.0807767,-2.0175936,-1.9956813,-1.9891384,-1.8432212,-1.9181192,-1.9308596,-1.9615393,-1.8973973,-1.8947506,-1.9439754,-2.0431519,-1.9910941,-1.5856657,-2.1874702,-2.471535,-2.7171965,-2.5515127,-2.2808518,-2.8673918,-2.6942744
+-1.3473744,-1.9161148,-2.4763803,-2.6406376,-2.7351902,-2.7069335,-3.0225382,-3.0835972,-3.178088,-3.090631,-3.0204003,-3.2655525,-3.352992,-3.3587322,-3.3118062,-3.0705066,-2.9249907,-2.2912607,-3.7068095,-3.6197748,-4.0574493,-4.089194,-4.028589,-3.8433442,-3.015483,-3.6117332,-2.986086,-3.9604182,-3.9997973,-3.929934,-4.0766544,-3.9008365,-3.8541298,-3.8435183,-3.801649,-3.8219209,-3.774212,-2.5306284,-3.7996802,-3.8645406,-3.4636707,-3.9351096,-3.67309,-3.922422,-3.7468476,-3.0540667,-3.7518706,-3.914382,-3.9298873,-3.613937,-3.9251504,-3.8244429,-3.1877599,-3.786972,-3.5888972,-3.2971716,-2.8279974,-3.5984528,-3.8885207,-3.9366555,-3.9293923,-3.8760867,-3.8702722,-3.8540459,-3.1584098,-4.1652026,-4.0076957,-3.9189277,-3.864883,-3.8004947,-3.723917,-3.7013307,-3.587272,-2.5995305,-3.8678155,-3.653623,-2.8077018,-4.0844607,-3.8652472,-3.8563118,-3.7531304,-3.6711063,-3.5585303,-3.5972202,-3.59578,-3.5246491,-2.1330543,-3.9365277,-3.6834035,-2.996863,-3.4562912,-4.005692,-2.834323,-3.0664434,-3.7421885,-4.044024,-4.024116,-3.273048,-3.9051456,-4.020564,-3.587357,-3.990398,-3.261404,-3.2682357,-4.003009,-4.0117335,-4.0400515,-3.9450426,-3.888475,-3.8313608,-3.7776408,-3.7095141,-3.6327462,-3.571402,-3.4702148,-2.1656666,-3.8722324,-3.905973,-3.8109431,-2.628212,-3.558469,-3.4228992,-3.7889333,-3.8154025,-3.7462392,-3.6613004,-3.5525675,-3.1952877,-2.4754267,-3.1786892,-3.8057313,-3.7844067,-3.6302483,-2.4114082,-3.8531075,-4.0011573,-4.003476,-4.0489554,-3.96349,-3.8656192,-3.7107768,-2.4125965,-4.063043,-4.321614,-4.152719,-3.5427008,-2.832564,-3.8899207,-3.5646744,-3.5324962,-3.8514023,-3.1310513,-3.276516,-4.025423,-4.086428,-4.0396867,-4.028545,-4.0007234,-3.8925729,-3.8543959,-2.565617,-3.3149765,-3.140986,-4.136733,-4.1885653,-4.1009936,-3.5519705,-4.0931478,-3.034684,-4.1104875,-4.136825,-4.059878,-3.9134364,-3.8634353,-3.9187102,-3.9808927,-3.7180114,-2.710675,-4.1432557,-4.3022637,-4.2535515,-4.1621146,-4.1606903,-4.121529,-4.072533,-4.072725,-3.702505,-2.8508024,-3.3877473,-3.6922488,-4.246915,-4.279735,-3.7460713,-4.0846972,-3.4326496,-4.1207995,-4.0174255,-3.8550668,-3.7546182,-3.6977372,-3.8065476,-3.8416152,-3.82277,-4.013801,-4.127394,-4.091929,-3.9358668,-4.016152,-3.033849,-3.7644753,-3.8689027,-3.73552,-3.8143659,-3.9255576,-3.769095,-3.6935472,-2.5852077,-3.7757983,-4.0264516,-4.065985,-4.046084,-3.841785,-3.91441,-4.0703416,-3.9896865,-3.9394145,-4.110579,-4.1409492,-4.0146537,-4.0241456,-3.8508058,-3.9408169,-3.8175168,-4.0143476,-4.0829215,-3.9632955,-4.0723805,-4.048732,-4.1006846,-4.088391,-3.771626,-3.9777875,-4.0856576,-4.1080146,-4.0251727,-4.0200486,-4.140194,-2.8801124,-4.0506988,-3.994307,-3.773365,-3.4471822,-2.8016014,-2.9127376,-2.9671934,-3.0091019,-2.7354689,-2.3376095,-2.1642234,-2.3287113,-2.0616665,-1.883491,-1.7868857,-1.7694662,-1.8413453,-1.9521194,-1.939244,-2.1795902,-2.0258098,-2.5814211,-3.5049841,-3.376643,-3.433208,-3.3522193,-3.309087,-3.0434,-3.09477,-3.5926723,-3.0708504,-2.0914526,-1.978643,-1.8200543,-1.7759914,-1.7866902,-1.9076266,-2.0210352,-2.258965,-2.1880944,-2.1229935,-1.896528,-1.5652003,-2.2660954,-3.0481558,-3.4436076,-3.9873147,-4.2054596,-4.0128827,-4.1039567,-4.0910063,-4.066395,-3.9297338,-3.8470035,-3.725265,-3.8015018,-4.0018773,-3.9503222,-3.7657685,-3.5249934,-3.2159042,-2.8764055,-3.2234225,-3.5961242,-3.8671598,-3.586884,-3.186624,-3.5096574,-3.8679972,-3.6580606,-3.6163125,-3.7044277,-3.790729,-3.9497647,-4.0028167,-3.8996825,-3.8722615,-3.4720511,-3.7829118,-3.8757138,-3.6929278,-3.633224,-3.7179027,-3.646663,-3.7657452,-3.683362,-3.6263142,-3.7143202,-3.8086257,-3.7500467,-3.4673371,-3.1406555,-2.4000604,-3.818481,-3.651822,-3.5639195,-3.0452251,-3.3550446,-3.3893661,-3.0589583,-3.166666,-3.36147,-3.582728,-3.463331,-3.5972457,-3.6042733,-3.3110285,-3.4067445,-3.5607817,-2.8803775,-3.0489523,-3.7289248,-2.9019225,-3.9068718,-2.848609,-3.6211643,-4.0770307
+-0.14617339,-0.7329181,-1.5107658,-2.0960133,-2.4727256,-2.602505,-2.698432,-2.8017933,-2.795002,-2.740981,-2.3533862,-3.462726,-3.6286108,-3.6354465,-3.6350298,-3.611155,-3.2565837,-3.1656811,-3.549703,-3.5805936,-3.6588488,-3.7567978,-3.7578497,-3.8041353,-3.7751684,-3.674285,-2.796527,-3.6635199,-3.8361692,-3.7511516,-3.7085705,-3.9121213,-3.8942275,-3.7837281,-3.7438798,-3.616531,-3.5510478,-3.5142715,-3.440075,-3.4084969,-3.6287816,-3.6478877,-3.4970264,-3.5557108,-3.5814004,-3.05649,-2.8514688,-3.672624,-3.7231493,-3.6787329,-3.8078876,-3.7982936,-3.744141,-3.5980713,-3.811257,-3.8974476,-3.6178498,-3.8271184,-3.8579507,-3.61023,-3.776832,-3.6957188,-3.7306995,-3.6199968,-3.593711,-3.6771572,-3.6617727,-3.661827,-3.6007457,-3.5751123,-3.508482,-3.4245985,-3.1317472,-3.6630335,-3.6273642,-3.5518105,-3.498139,-3.544891,-3.5899625,-3.4996028,-3.4286761,-3.417108,-3.3891907,-3.2347832,-2.6611562,-3.5841908,-3.6996274,-3.2898169,-3.7389774,-3.7717972,-3.1741123,-3.6767051,-3.5136242,-2.5340083,-3.5371122,-3.6672642,-3.2975314,-3.4644346,-3.4228768,-3.6698232,-3.7915978,-3.7700505,-3.2787037,-3.52341,-3.0115318,-3.7621675,-3.9240427,-3.8680596,-3.8371034,-3.7926602,-3.7454228,-3.7120419,-3.685377,-3.6765406,-3.605762,-2.227978,-3.566225,-3.8468022,-3.632517,-3.7886052,-3.780284,-3.7163444,-3.6550097,-3.649369,-3.6359873,-3.6126168,-3.433174,-2.2792997,-3.184655,-3.3869457,-3.6745236,-3.6115866,-3.7757688,-3.489471,-3.824768,-3.8079991,-3.8098025,-3.6550531,-3.6488416,-3.6725626,-3.7153926,-2.444258,-3.3490314,-3.7178802,-3.7785935,-3.673461,-3.618612,-3.2849236,-3.4567933,-3.7038035,-3.8786426,-3.857655,-2.6778932,-3.6867745,-3.7260957,-3.73065,-3.7940974,-3.774417,-3.690973,-3.5964017,-2.45084,-2.451988,-3.034007,-3.4390187,-3.7436428,-3.7880177,-3.5092263,-3.6361167,-2.3079097,-3.5239758,-3.8486114,-3.791737,-3.7744274,-3.7923188,-3.767551,-3.7959056,-3.696559,-3.1173906,-3.5426636,-3.5119052,-3.6197367,-3.7279801,-3.70291,-3.6552353,-3.6830516,-3.7246652,-3.7960033,-2.8155947,-1.4833026,-2.9847438,-3.3144662,-3.430871,-3.4533548,-3.6587286,-2.9624875,-3.5625224,-3.355015,-3.5680528,-3.7066383,-3.6362407,-3.6020112,-3.679354,-3.847641,-3.741281,-3.5935698,-3.5601974,-3.517198,-3.5175912,-3.118464,-3.4864254,-3.5860887,-3.5545917,-3.4773984,-3.5412023,-3.5395074,-3.4806533,-3.1611419,-3.5374656,-3.6802,-3.7051663,-2.795682,-3.2258973,-3.5894983,-3.6199026,-3.6275852,-3.5632932,-3.6048799,-3.5921638,-3.6406832,-3.6583571,-3.6605215,-3.7176018,-3.5526571,-3.581278,-3.6947494,-3.6180143,-3.5892663,-3.6024754,-3.5388675,-3.5063014,-3.5340652,-3.462514,-3.4966264,-3.4594698,-3.3779464,-3.5221667,-3.5761766,-2.885203,-3.3759768,-3.39287,-3.4335008,-3.4164543,-2.8712926,-2.6310568,-2.4510856,-2.6951237,-2.8221538,-2.7270377,-2.3785043,-2.227381,-2.6238713,-2.2385507,-1.9510827,-1.8802228,-1.8515472,-1.9550381,-1.561166,-1.7408943,-1.8999989,-2.3259587,-2.9023783,-3.0519116,-3.1449425,-3.1694622,-3.0689306,-3.2091708,-3.2263188,-3.6351388,-3.5087013,-2.9276342,-2.5585282,-2.1747901,-2.0076756,-1.9641752,-1.8660762,-2.316135,-2.9373083,-2.5751383,-2.5193124,-1.6595304,-1.7501097,-2.3316092,-2.9249449,-3.2532263,-3.6819746,-3.6798084,-3.0040522,-3.5190177,-3.7159853,-3.7738042,-3.686743,-3.6720688,-3.4685616,-3.4938262,-3.8020134,-3.7516885,-3.7091637,-3.6286373,-3.3902555,-3.0477052,-3.0066173,-3.2847953,-3.448676,-3.5954704,-3.2814817,-3.1742144,-3.4401202,-3.5582378,-3.4152994,-3.34725,-3.5090032,-3.4027014,-3.3830466,-3.3082054,-3.2832165,-2.7233753,-3.405345,-3.493167,-3.4816542,-3.494268,-3.4057746,-3.220798,-3.4339552,-3.3765945,-3.1763148,-3.2530484,-3.2952497,-3.2338552,-3.118307,-2.9462526,-2.2476816,-3.0749755,-3.349424,-3.5467887,-3.4099002,-3.3559828,-3.3282645,-3.5064597,-3.3514848,-3.379437,-3.3692021,-3.2973776,-3.3208864,-3.2514062,-3.2695603,-3.500113,-3.4059722,-3.0580754,-2.9803107,-3.1890264,-2.788354,-3.3698754,-2.6647897,-3.3026981,-3.6143334
+-0.40154636,-1.2941225,-2.3679028,-2.9237409,-3.055009,-3.2181249,-3.2341442,-3.2951865,-3.1958013,-3.054222,-3.1633997,-3.5521612,-3.6531029,-3.6683028,-3.7046342,-3.5198224,-3.1279626,-3.9407544,-4.079283,-4.3421955,-4.3509126,-4.370847,-4.221812,-4.186482,-4.1920457,-4.162831,-3.669054,-4.241318,-4.100041,-4.0736585,-4.203863,-4.5289464,-4.4043074,-4.3446965,-4.3255696,-4.2530456,-4.3351116,-4.215123,-3.8752675,-4.3466973,-4.197512,-4.474995,-4.168282,-4.490901,-4.3798056,-4.147959,-4.401986,-4.3037353,-4.169818,-4.1218386,-4.205441,-4.2439303,-4.0177264,-4.172789,-2.721681,-4.1752625,-4.343534,-4.748893,-4.5364375,-4.209,-4.460709,-4.330163,-4.2461753,-3.7892437,-4.3316884,-4.54118,-4.6071773,-4.6309924,-4.5736537,-4.580673,-4.547302,-4.47679,-3.3133245,-4.228219,-4.6176915,-4.7786407,-4.703407,-4.6652007,-4.6392527,-4.5200677,-4.4774785,-4.410743,-4.2598968,-4.2532697,-4.1572614,-4.043117,-3.956891,-3.7380662,-4.043504,-3.9285016,-3.8575783,-3.6760378,-3.615624,-3.0323503,-4.1426196,-4.262692,-4.3424525,-4.34353,-4.2727733,-4.276404,-4.42302,-4.2961426,-4.085709,-3.9490767,-2.8063016,-4.297643,-4.4867597,-4.4422174,-4.4744067,-4.261178,-4.321276,-4.2516856,-4.119324,-3.931818,-3.8060508,-3.6708932,-3.261461,-3.7548046,-3.7563887,-3.8117852,-3.2238746,-4.1239014,-4.3037887,-4.2733984,-4.1293597,-4.055305,-3.7721047,-2.8954082,-3.9980197,-4.2746687,-4.0471063,-4.1153235,-4.2440224,-3.9494724,-4.20317,-4.1892247,-3.9799056,-4.036611,-4.0391035,-3.6565595,-3.7982392,-3.4598823,-3.9253802,-3.959745,-3.785108,-3.6467924,-3.6183617,-3.162296,-3.6761315,-3.732603,-3.8035727,-3.6139786,-3.3838425,-3.058866,-3.9977856,-4.0795636,-4.118226,-4.0262966,-3.8719416,-3.7295785,-3.6163938,-3.071621,-3.2590754,-3.8464136,-4.078469,-4.1600976,-3.944796,-3.143361,-3.7916555,-4.083551,-4.1035304,-4.169425,-4.231258,-4.150804,-4.1229267,-4.108669,-3.9661474,-3.3955345,-3.629908,-3.8305435,-3.9721541,-4.026762,-4.0372744,-4.018589,-3.9776592,-3.9687853,-3.8350697,-2.2390268,-3.723106,-3.2680833,-4.0680614,-4.3649745,-4.414143,-4.440215,-3.929327,-4.328857,-4.0944066,-4.2667546,-4.353214,-4.3407245,-4.3403044,-4.0565305,-3.7731042,-4.1808953,-4.328995,-4.374298,-4.41766,-4.4024134,-3.9622502,-4.251844,-4.313965,-4.2426753,-4.25172,-4.2487183,-4.188947,-4.1469464,-4.2725053,-4.2121325,-4.1924415,-4.130759,-4.168265,-3.2996495,-4.164934,-4.3063045,-4.4145975,-4.334913,-4.406707,-4.3917804,-4.3753123,-4.3237596,-4.1936646,-4.213207,-4.1532354,-4.1747766,-4.283845,-4.0662575,-3.906488,-4.226086,-4.485262,-4.397773,-4.3056645,-4.2527714,-4.3625364,-4.544251,-4.423176,-4.5023847,-4.312477,-4.0088105,-4.3721676,-4.631243,-4.5423923,-4.3540835,-4.0117693,-3.877254,-4.0416036,-4.489197,-4.5269246,-4.595432,-3.929233,-3.9973273,-4.611742,-4.044837,-3.5481133,-3.253672,-3.281749,-3.573185,-3.0192957,-4.216405,-4.421077,-3.7048497,-4.2066245,-4.67837,-4.7033753,-4.425998,-4.3274655,-4.76638,-4.633244,-4.9112024,-4.592465,-4.4318,-4.031673,-3.5169845,-3.1722522,-2.967936,-2.9177747,-4.033056,-4.6419177,-4.76287,-3.0225096,-3.4362006,-3.4679775,-4.373935,-4.638869,-4.7183576,-4.798145,-4.6993537,-4.32437,-4.726784,-4.6025643,-4.8689084,-4.7583694,-4.5281134,-4.4657025,-4.550372,-4.731044,-4.611607,-4.464614,-4.5911193,-4.419767,-4.250796,-4.3444705,-4.442635,-4.4884543,-4.4620056,-4.3558435,-4.407838,-4.523507,-4.3796306,-4.387283,-2.7826514,-3.7947755,-4.1032367,-4.4782534,-4.5730124,-4.5115676,-3.8739285,-4.6195807,-4.6593766,-4.563899,-4.704139,-4.5708213,-4.4001374,-4.360126,-4.4049916,-4.380273,-4.3354,-4.2347355,-4.3129506,-4.216616,-4.1813936,-3.3194323,-4.039084,-4.251264,-3.796472,-3.5571716,-3.888824,-4.0080314,-4.3732624,-4.214418,-3.9093132,-4.202993,-4.0377903,-4.1250696,-4.1320257,-3.8148656,-3.9376106,-4.0074058,-3.1302848,-4.1544023,-4.116402,-4.026161,-4.2674775,-4.0574975,-4.658831,-4.3159156
+-1.3186634,-1.921679,-2.3877997,-2.6387763,-2.7535958,-2.8789992,-2.9088132,-2.9495823,-2.8913097,-2.7485971,-1.840456,-3.7090921,-4.3959646,-4.3735414,-4.268084,-4.2447114,-2.867083,-3.5932412,-4.448313,-4.2506976,-4.628004,-4.4808764,-4.408851,-4.5009756,-4.5098715,-4.472079,-2.8074968,-4.4250317,-2.7159257,-3.632875,-4.3929515,-4.6903296,-4.674681,-4.623713,-4.491075,-4.4606113,-4.469565,-4.558502,-2.6597571,-4.1860805,-4.6957803,-4.4478335,-4.704759,-4.620876,-4.4974737,-4.2289033,-4.2316227,-4.63033,-4.6772885,-4.5591207,-4.5147085,-4.4999604,-3.8200417,-4.4983554,-3.1584609,-4.622936,-4.7001634,-4.7316823,-4.5901217,-4.0831227,-3.6831877,-4.8187814,-4.2800183,-4.703936,-4.840318,-4.7906346,-4.6616693,-4.620368,-4.5954084,-4.6444926,-4.588038,-4.5415998,-3.6193419,-4.5801644,-4.824416,-4.69772,-4.5671535,-4.515734,-4.440703,-4.433568,-4.489637,-4.4429626,-4.3731704,-4.314276,-4.3080325,-4.3032327,-4.300311,-4.2557096,-4.2303815,-4.1891837,-4.1384616,-4.255422,-4.136617,-4.1839013,-2.50116,-4.5347347,-4.6195154,-4.5317025,-4.5215316,-4.27701,-4.433414,-4.461746,-4.2690525,-4.171621,-2.277547,-4.332607,-4.594908,-4.662662,-4.5716333,-4.516021,-4.5053716,-4.435016,-4.355258,-4.2582006,-4.263876,-4.0570025,-4.204492,-4.267813,-4.4783077,-4.167189,-3.0509694,-4.44818,-4.588652,-4.4656587,-4.425483,-4.41162,-4.381216,-4.3451247,-2.3566358,-4.1961894,-3.1992545,-4.5051594,-4.72142,-4.667479,-2.8984585,-4.585856,-4.6243224,-4.7262435,-4.730142,-4.0057893,-4.3349032,-3.5248423,-4.7918453,-4.793781,-4.8247957,-4.6687922,-4.603495,-2.9762406,-4.327536,-4.724629,-4.691463,-4.568707,-4.702828,-3.093234,-4.5901484,-4.6855645,-4.681276,-4.7202387,-4.659555,-4.6004987,-4.5175214,-4.446318,-4.303419,-4.1510115,-4.376062,-4.3964753,-4.3363547,-4.2291856,-3.794157,-3.145949,-3.0439916,-4.6346745,-4.58913,-4.49264,-4.490394,-4.5537443,-4.5507274,-4.4991894,-3.7057767,-4.3610063,-4.4565444,-4.247498,-4.2771173,-4.359197,-4.2837615,-4.2952995,-4.3051047,-4.3073354,-4.2521772,-3.3053322,-4.004683,-4.2787137,-4.3808556,-4.225596,-4.142719,-4.0189767,-3.9705362,-4.288855,-4.344253,-4.2311177,-4.2526345,-4.259208,-2.4918408,-4.1339583,-4.409241,-4.33248,-4.3506093,-4.419455,-3.1985998,-4.2762017,-4.5727644,-4.437726,-4.3822618,-4.3644786,-4.3632913,-4.404632,-4.1154304,-4.328031,-4.3436575,-4.3471994,-4.3292184,-4.1314816,-4.270374,-4.234465,-4.270895,-4.197078,-4.2550135,-4.3121486,-4.15517,-4.1498427,-4.2024245,-3.530696,-4.011068,-4.2262444,-4.426757,-4.3958573,-3.047773,-4.515727,-4.710939,-4.6613326,-4.802485,-2.7899222,-4.51815,-4.6486363,-4.4767,-4.613729,-3.9633737,-4.711795,-4.8782926,-4.5518994,-4.863396,-4.651667,-4.5227494,-4.1042895,-4.0262794,-4.391072,-4.5531535,-4.595714,-4.4779325,-4.3420463,-4.385576,-4.541513,-4.228265,-3.9948273,-3.713004,-4.00528,-4.0972915,-4.183431,-4.3971043,-4.4165235,-4.36233,-4.593392,-4.413923,-4.4228272,-4.2923675,-4.387604,-4.093364,-4.4447856,-4.61802,-4.53903,-4.4693494,-4.0271297,-3.7185903,-3.2662842,-3.2309575,-4.083876,-4.3144693,-4.097203,-3.7023067,-4.248507,-3.1060338,-4.4894443,-4.49816,-4.8356853,-4.7242084,-4.594552,-4.4692397,-4.589454,-4.5891232,-4.467841,-4.592088,-4.527345,-4.385421,-4.323613,-4.2759333,-4.2436166,-4.2345567,-4.296772,-4.262633,-4.324494,-4.2603445,-4.1952624,-4.087031,-4.0698667,-4.232919,-4.386186,-4.1796174,-3.9642882,-4.251323,-1.8823545,-3.6008463,-4.3817854,-4.484895,-4.6735425,-4.6051545,-3.5685256,-4.646374,-4.6975856,-4.5518966,-4.489275,-4.593309,-4.389253,-4.250412,-4.467103,-4.1900706,-4.3117795,-4.295161,-4.274461,-4.0299153,-4.1355395,-3.0888932,-4.1457376,-4.2997355,-4.2887373,-4.3650465,-4.144088,-3.9608731,-4.4278154,-4.3232565,-4.308111,-4.2283573,-4.1120305,-4.159118,-4.1015162,-4.028219,-4.108601,-4.1774154,-2.095257,-4.119351,-4.568069,-3.904261,-4.5160627,-3.9628158,-4.4928894,-4.347747
+-0.3386346,-1.3042367,-1.9444516,-2.47013,-2.7330198,-3.1149263,-3.1672516,-3.1532466,-2.9791331,-2.8830616,-2.3959515,-3.4652886,-3.3734474,-3.6138647,-4.044252,-3.9945893,-3.086216,-3.1439676,-3.9563146,-3.308624,-4.099213,-4.5714345,-4.6089444,-4.574055,-4.6660647,-4.562692,-3.1845553,-4.2427073,-3.0624278,-3.2954152,-4.2338004,-4.065096,-4.530714,-4.773824,-4.7595196,-4.675237,-4.653154,-4.34512,-3.5469706,-3.5738883,-4.497461,-4.70208,-4.7557898,-4.434069,-4.289717,-4.1362157,-4.0995407,-4.1263146,-3.0558746,-4.109034,-4.538267,-4.3873296,-3.567653,-4.304322,-4.55421,-3.7280927,-3.6677554,-4.377362,-4.2668514,-3.7361302,-3.3311968,-3.4297576,-3.6873329,-3.9681544,-4.1665187,-4.7972164,-4.977933,-5.0058727,-4.855254,-4.787479,-4.571079,-4.427997,-4.256728,-2.2651372,-4.1606855,-4.8747,-4.806559,-4.7797627,-4.305517,-4.4700103,-4.3384786,-4.326875,-4.435819,-4.459567,-4.2991605,-4.1061354,-3.9768667,-3.4217467,-3.8333411,-3.805265,-3.7260995,-3.5939481,-3.404344,-3.3250146,-3.1821604,-3.1201134,-3.0800152,-3.0512795,-2.9749796,-2.9228532,-2.5798259,-2.9857893,-2.9777741,-2.9287672,-2.8959796,-1.844507,-2.967165,-3.1141317,-3.114295,-3.0975366,-3.0669904,-3.0835114,-3.0999966,-3.1026385,-1.7327366,-3.1425214,-3.5096593,-3.2389266,-3.5738404,-3.5008981,-3.2856975,-3.3961039,-3.406939,-3.413628,-3.4049025,-3.427063,-3.483086,-3.5669565,-3.0636978,-2.7633653,-3.3410764,-3.4641066,-3.4495223,-3.0174496,-2.889288,-3.1073234,-2.0119026,-2.9100642,-3.1500325,-2.8653374,-3.4460843,-2.88239,-3.7510061,-2.8498998,-3.9497118,-4.360984,-4.3617773,-4.146552,-4.128441,-3.328572,-4.053622,-4.2059937,-4.2413564,-3.4892042,-4.0588946,-4.0996857,-4.067283,-3.9675918,-3.8966012,-3.856094,-3.7893324,-3.7101712,-3.713757,-3.6720521,-3.630127,-3.5835621,-3.5970645,-3.6564386,-3.6538322,-3.4874406,-1.8352816,-3.4344816,-3.7884526,-3.767901,-3.7884946,-3.7195878,-3.678725,-3.7143302,-3.8495545,-3.6741831,-3.7136807,-3.6392112,-3.577797,-3.663437,-3.6482084,-3.6418762,-3.617124,-3.5273244,-3.476698,-3.4353032,-3.5773766,-3.602011,-3.6893938,-3.6738396,-3.6221097,-3.675891,-3.2247257,-3.416055,-3.4768267,-3.440734,-3.4654586,-3.472211,-2.5073857,-3.2854166,-3.5010955,-3.6482658,-3.620894,-3.5508652,-3.4916427,-3.417203,-3.4956064,-3.5355926,-3.5432248,-3.5533688,-3.4594069,-3.3818705,-3.2739391,-3.486094,-3.5124424,-3.5560248,-3.573177,-3.404881,-3.6118798,-3.5260978,-3.67213,-3.6861625,-3.5700955,-3.6997018,-3.623241,-3.6809635,-3.6093547,-1.7570927,-3.3933964,-3.6601176,-3.9331293,-3.9693518,-2.4524996,-3.7769442,-4.2008862,-4.3375707,-4.336663,-2.5598414,-3.891183,-4.325653,-4.1952662,-4.22316,-3.1469998,-3.9058204,-4.0216756,-3.9110436,-4.0289063,-3.8769913,-3.702939,-3.658854,-3.8098798,-3.92985,-3.9271216,-3.9742827,-3.954393,-3.871295,-3.9539247,-3.8218875,-3.74436,-3.803718,-3.874021,-3.9334006,-3.8076615,-1.9357557,-3.4374535,-3.324773,-4.029404,-4.312705,-4.308043,-4.0806384,-4.195283,-4.2548623,-3.4708848,-4.272822,-4.20963,-4.1195536,-3.7565398,-3.64251,-3.5881565,-3.2710485,-3.6525464,-4.0685835,-4.1023192,-4.055499,-3.6031146,-4.098005,-2.721306,-3.5791116,-3.0463185,-3.9064298,-4.461806,-4.5964766,-4.5013723,-4.5063667,-4.4595103,-4.490478,-4.372293,-4.3398194,-4.349958,-4.3740087,-4.3977914,-4.4167714,-4.313668,-4.1105924,-4.0019474,-3.905953,-3.7939224,-3.8790703,-3.9251542,-3.9068875,-3.974358,-4.1084723,-3.9591966,-3.7807865,-3.7905107,-2.176762,-3.5748425,-4.099469,-4.2221646,-4.2616806,-4.178801,-2.833918,-4.091809,-4.442397,-4.464371,-4.5933156,-4.4912567,-4.2608867,-3.3254,-4.1750197,-4.535143,-4.4851594,-4.45713,-4.2191825,-3.6008475,-4.0866904,-3.8529425,-4.1763377,-4.3455253,-4.320434,-4.188318,-3.873426,-3.5579987,-4.22201,-4.2758455,-4.1459637,-4.0670695,-3.8679023,-3.8657818,-3.9128175,-3.8566928,-3.7152228,-3.7130919,-2.3364413,-3.44177,-4.000587,-3.9014359,-4.039379,-3.1770167,-3.990631,-4.2128806
+-1.1730714,-2.1019633,-2.5589108,-2.67664,-2.7037392,-2.7200012,-2.6449375,-2.6622887,-2.7499673,-2.6173072,-2.4807386,-2.4676867,-3.3885875,-3.5898728,-3.6782408,-3.6530516,-3.640023,-1.8313875,-3.4785914,-3.2062783,-3.4708848,-4.070759,-4.266154,-4.2810154,-4.3653502,-4.3093457,-2.6724238,-3.9738717,-4.269672,-2.5744357,-3.8526587,-3.573583,-4.117125,-4.36827,-4.357366,-4.2508492,-4.220654,-4.1542096,-4.044052,-4.0224843,-3.8222141,-3.8806944,-3.7357817,-3.6632686,-3.3577738,-3.216912,-3.781457,-2.9972625,-2.9348361,-3.8614345,-4.0793195,-4.1007657,-4.0902925,-3.999886,-3.945909,-2.0032856,-2.5695262,-3.7922664,-4.024937,-4.2050385,-4.324143,-3.4703186,-2.947978,-3.4534245,-3.9525485,-4.3714623,-4.345506,-4.413159,-4.343123,-4.2377434,-4.0611115,-3.6834807,-3.4208527,-2.5870395,-4.022927,-4.609867,-4.5116343,-4.4058175,-4.276445,-4.1322637,-4.027486,-3.9625,-3.8798585,-3.9086132,-3.7503161,-3.7275248,-3.6372561,-3.5836873,-2.956448,-3.6426837,-3.615715,-3.5351157,-3.4471316,-3.4804819,-3.2576299,-3.490207,-3.4950075,-3.4984255,-3.472754,-3.4481294,-2.3395367,-3.5096803,-3.5918868,-3.5531425,-3.5094543,-3.4629207,-3.4275873,-3.431287,-3.4573092,-3.4698482,-3.4907312,-3.5464618,-3.5624018,-3.5540037,-3.114853,-2.6001406,-2.6254067,-3.6642275,-3.1916542,-3.7211323,-3.767465,-3.695909,-3.6174016,-3.5839765,-3.5333104,-3.5217304,-3.5220528,-3.5589066,-3.5674534,-2.7039738,-3.589056,-3.6260827,-3.6238902,-3.6099186,-2.278863,-2.573157,-2.3490098,-2.5685253,-2.5903006,-2.6368,-3.432838,-3.6706128,-3.095401,-3.1662707,-3.9974432,-4.390847,-4.347239,-4.124343,-3.5902452,-3.4321277,-3.2217686,-3.2944767,-3.9569898,-4.292936,-4.3976483,-4.3678727,-4.4118333,-2.9255245,-3.4675093,-4.047418,-4.2329917,-4.2355185,-4.182998,-4.210586,-4.1803107,-4.1271863,-4.140543,-4.1494374,-4.0772457,-3.95966,-3.8618846,-3.6537592,-4.1004148,-4.0355344,-4.000147,-3.7733006,-3.939837,-2.596651,-2.7960904,-3.7209945,-3.9028468,-4.0135345,-3.9664612,-4.013955,-4.0056024,-3.9762607,-3.9005136,-3.8499036,-3.8410916,-3.9093657,-3.9132748,-3.897675,-3.967791,-3.9548683,-3.902668,-3.9169226,-2.3698723,-3.5894651,-3.8095403,-3.8341594,-3.8891606,-3.8808517,-3.3787196,-3.8779416,-3.9500794,-4.0032077,-4.04865,-3.9689026,-3.9484534,-3.9272113,-3.9016447,-3.8767614,-3.8729153,-3.883246,-3.8102622,-3.7673454,-3.876482,-3.7010026,-2.863413,-3.8919702,-3.2967544,-3.9093347,-3.846765,-3.9708147,-4.043976,-4.0908813,-4.1034393,-4.051643,-4.0373764,-4.0479436,-3.9498563,-3.5215504,-3.8399224,-3.8701267,-4.022534,-4.0959115,-1.9060807,-3.7436218,-4.0327125,-4.1488028,-4.199549,-3.3687952,-4.160599,-4.09864,-4.111073,-4.171653,-2.3764544,-3.6469476,-3.9110346,-4.007567,-4.1819983,-3.9588485,-3.8325171,-3.841308,-3.952042,-4.2038736,-4.1622453,-4.1675444,-4.1165185,-4.0437636,-4.2067943,-3.7984748,-3.8148217,-3.9405951,-3.9621272,-4.150231,-3.71872,-3.9180121,-4.069493,-3.0418308,-3.6955829,-4.038422,-4.171204,-4.043669,-4.1309543,-3.9590936,-3.3295622,-4.1202903,-4.134533,-4.217635,-3.9154572,-3.8852334,-3.8956451,-3.7063236,-4.0065455,-4.2515836,-4.25315,-3.9897819,-3.5738664,-3.836999,-2.6957712,-3.3580546,-3.1564987,-3.9293242,-4.285839,-4.3086066,-4.2668524,-4.275325,-4.353342,-4.362675,-4.1218286,-4.108957,-4.1667857,-4.197792,-4.292246,-4.365568,-4.282701,-4.142182,-4.076901,-4.0584965,-3.3290381,-4.0719466,-4.136074,-4.1287594,-3.9671087,-4.0420685,-4.0353475,-3.9309535,-3.9953332,-1.6146951,-3.7268696,-4.0722203,-4.319774,-4.284384,-4.263409,-2.3203554,-3.99268,-4.2832303,-4.2918878,-4.4429917,-4.2648177,-4.1121926,-4.166825,-4.2473903,-4.2047687,-4.0190206,-3.999879,-3.1980085,-3.3485966,-3.7339425,-3.6203275,-3.9353004,-4.087827,-3.3982282,-3.3657925,-3.5113368,-3.897122,-4.068355,-4.1045785,-4.18141,-4.2359824,-4.1856694,-4.0875115,-4.021775,-3.9667897,-3.8872676,-3.8758903,-2.089872,-3.3138142,-3.858612,-4.2045846,-4.1457996,-2.7702398,-4.0804048,-4.2965817
+-0.4628948,-1.4785695,-2.0983522,-2.2578657,-2.1963682,-2.2602415,-2.2992756,-2.1578565,-2.1070554,-2.2116897,-1.725851,-2.3983135,-1.7915177,-2.8653774,-3.2078452,-3.331965,-2.9992507,-1.7952588,-3.15803,-3.2314444,-3.2933447,-3.3154356,-3.6674237,-3.6948686,-3.7409596,-3.7593536,-2.6787379,-3.2470036,-3.5705829,-2.0476587,-3.020242,-3.0602233,-3.1686869,-3.6234841,-3.752996,-3.7965007,-3.727654,-3.617457,-3.4680235,-3.388137,-3.2828002,-3.2073212,-3.0283704,-2.5462236,-2.6452744,-3.1012003,-3.3544464,-3.4907765,-2.876859,-3.2420554,-3.5179863,-3.4916413,-3.6088521,-3.6481829,-3.5962057,-2.6498857,-1.8987312,-3.0824282,-3.4797456,-3.620747,-3.6645665,-2.8912606,-3.0594006,-3.2208948,-3.287303,-3.2854495,-3.3739858,-3.49587,-3.6461353,-3.6932178,-3.5976355,-3.549891,-3.1232786,-3.6252747,-3.6622355,-3.698287,-3.6411908,-3.5335536,-3.429441,-3.372501,-2.8663616,-3.5218232,-3.4471364,-3.4127448,-3.312068,-3.1990738,-3.1780758,-3.0441294,-2.3036213,-3.2673197,-3.3441935,-3.339262,-3.2832198,-3.254774,-3.1574287,-3.160306,-3.1258082,-3.093524,-2.911126,-2.6631908,-3.1258612,-3.0155354,-2.9871736,-2.995885,-2.9298933,-2.8589387,-2.8398018,-2.7724538,-2.5226688,-2.4122214,-2.987599,-2.8997564,-2.8892121,-2.8913012,-2.8853977,-1.8136775,-2.407528,-2.3366733,-2.919849,-3.2722018,-3.6009996,-3.6603093,-3.6150224,-3.5791066,-3.4541698,-3.3321884,-3.2229185,-3.073715,-2.9777298,-2.9226503,-2.875705,-2.8576744,-2.8777242,-2.6172845,-2.0749712,-2.5709453,-2.8417983,-2.8653855,-3.0675826,-2.9503093,-3.1653523,-3.3143,-3.0963755,-3.3006568,-3.3396287,-3.6176293,-3.7068439,-3.3025484,-3.5254292,-3.6333988,-3.4566777,-3.4099414,-3.6474442,-3.6992927,-3.486681,-3.6253338,-2.9248152,-3.1839194,-3.614068,-3.7171922,-3.7555304,-2.801245,-3.4736922,-3.5579174,-3.656163,-3.6257472,-3.549677,-3.4924426,-3.4259143,-3.4564362,-3.4614644,-3.3917327,-3.3275578,-3.265245,-3.2425132,-2.5737925,-2.663218,-3.0141754,-3.208087,-3.335963,-3.4754639,-3.6451945,-3.7603884,-3.702808,-3.5909078,-3.4798949,-3.4707334,-3.4130394,-3.374828,-3.324669,-3.2425418,-3.2194521,-3.197683,-2.5995703,-3.373075,-3.4551692,-3.2484112,-3.3996072,-3.3959756,-3.4109905,-3.4015381,-3.3028226,-3.002086,-3.396144,-3.316972,-3.3621469,-3.2513456,-3.242314,-3.2169363,-3.1619287,-3.1412575,-3.1586273,-3.146059,-3.1275678,-2.6561294,-3.2618613,-3.236012,-3.138248,-3.02665,-3.1122975,-1.7974215,-2.967851,-3.2470691,-3.4377627,-3.5476174,-3.5759056,-3.5060775,-3.6029387,-3.591189,-3.5295424,-3.6132653,-3.443715,-3.2656398,-3.213024,-3.570951,-3.563902,-2.4881263,-3.2666194,-3.505496,-3.5376291,-3.718348,-3.1170137,-3.5056047,-3.5672245,-3.4465332,-3.701324,-2.092719,-3.089334,-3.084859,-3.22087,-3.5455804,-3.4689522,-3.1652982,-3.3358319,-3.741047,-3.6789277,-3.7443151,-3.6283424,-3.6314852,-3.805492,-3.8039136,-3.4429417,-2.9393415,-3.000104,-3.459689,-3.628994,-3.5448015,-3.6279628,-3.4954567,-3.0879092,-3.5295987,-3.6361427,-3.6399748,-3.3346877,-3.3981538,-3.6792898,-2.939597,-3.2867315,-3.3766823,-3.6126993,-3.15138,-2.9110374,-3.0464296,-3.2674398,-3.7663145,-3.9320354,-3.9155898,-3.3333488,-3.6312923,-3.5090857,-3.3008175,-3.2934248,-2.70222,-3.2611794,-3.474362,-3.1084342,-3.2573195,-3.4832997,-3.796894,-3.7488785,-3.461392,-3.3348906,-3.4868193,-3.616583,-3.7696476,-3.8874612,-3.911038,-3.7851076,-3.5705984,-3.4657838,-3.4525917,-3.8126516,-3.784521,-3.7250986,-3.6233923,-3.7580752,-3.715663,-3.6465712,-3.4784868,-2.4686637,-2.9749746,-3.4867303,-3.4963098,-3.715901,-3.8591657,-2.7567315,-3.2836866,-3.5374565,-3.8427267,-3.8212051,-3.6420455,-3.835249,-3.81539,-3.798285,-3.6576855,-3.3914533,-3.4171355,-3.110095,-3.336092,-3.1665013,-3.2567792,-3.336813,-3.4084861,-3.571941,-3.3970842,-3.532995,-3.6341963,-3.8218074,-3.9231153,-3.9388938,-4.017259,-3.906117,-3.8271108,-3.8134828,-3.7923236,-3.690184,-3.606316,-3.424765,-2.2956452,-3.2657602,-3.6588686,-3.7227483,-3.101088,-3.498247,-3.8185582
+0.91257304,1.3427405,1.2934029,1.339515,0.8981374,0.6613611,0.22362792,0.3765647,-0.25552547,-0.3689121,0.18774748,-0.20843291,0.044418454,0.8022253,1.0894179,0.8984211,0.87320006,0.27224872,-0.21745569,-0.18139872,-0.2268489,-0.3173992,-0.21185929,-0.5353244,-0.622683,-0.7685006,-1.0777283,-1.2245378,-1.1953988,-1.1483705,-1.1317415,-1.1835558,-1.053153,-1.074069,-1.1194069,-1.3267963,-1.1546919,-1.2387218,-1.3944573,-1.3000302,-1.2660885,-1.3037305,-1.0877349,-0.9909653,-0.9033446,-1.0668375,-1.0510037,-1.2778752,-1.3929329,-1.540237,-1.5524936,-1.5789666,-1.1264818,-1.5730104,-2.0659366,-2.1226397,-1.9748604,-1.8328254,-1.68361,-1.938417,-1.6732893,-2.17286,-2.4007168,-2.3224576,-2.305413,-2.606756,-2.5936205,-2.457478,-2.3253021,-2.6066682,-2.5777419,-2.558114,-1.8672056,-1.986115,-2.836796,-2.4476342,-2.9155836,-2.6352458,-2.9590793,-2.4590516,-3.0222912,-2.8673859,-2.828767,-2.8231177,-2.8976429,-2.1952322,-2.5354931,-2.7640932,-2.8131332,-2.667107,-2.6479275,-2.645575,-2.7849765,-2.7969408,-2.7569995,-2.6319127,-2.6851473,-2.4564395,-1.9886141,-2.905457,-3.0272028,-2.5878246,-2.6375518,-2.2590654,-2.765699,-2.8740919,-2.8507445,-2.4971552,-2.8752618,-2.9945588,-3.0519538,-2.4065301,-2.983979,-3.0991445,-3.0561485,-3.013553,-2.9877038,-2.771038,-2.9192767,-2.8388379,-2.9031055,-2.9044013,-3.0055168,-2.144995,-2.9112768,-2.416576,-2.8609743,-2.977273,-2.9834232,-3.0184693,-2.6733305,-2.4151716,-2.8504422,-2.387036,-2.3471775,-2.8801415,-2.867108,-2.9037714,-2.9667273,-2.8964996,-3.0086894,-2.2624693,-2.7847667,-2.8607252,-2.9744086,-2.9241018,-2.7675614,-2.819812,-2.0561745,-2.8392959,-2.1314569,-2.7955666,-2.9010425,-2.991187,-2.964267,-2.953407,-2.8127415,-2.327549,-2.805726,-2.9258566,-2.3110747,-2.702817,-2.8589854,-2.74681,-2.8505335,-2.793136,-2.6751423,-2.6572778,-2.1551347,-2.573168,-2.7083502,-2.635644,-2.664031,-2.4825945,-2.6640136,-2.6880975,-2.7774744,-2.2113202,-2.2059035,-2.2671356,-2.706622,-2.6399632,-2.741496,-2.7412596,-2.6810527,-2.7148046,-2.8019156,-2.2869911,-2.5098767,-2.3677044,-2.4226394,-2.4297361,-2.4516249,-2.03331,-2.2357202,-2.3091576,-2.4259446,-2.517507,-2.425035,-2.2705007,-2.5042994,-2.4887805,-2.523137,-2.4204175,-2.451225,-2.1997147,-2.2464519,-2.2869558,-2.0913525,-2.2931714,-2.3712316,-2.38582,-2.2811155,-2.1943662,-2.3069348,-2.3265183,-2.296788,-2.3567019,-2.3726864,-2.3694901,-2.3214056,-2.2857494,-2.3276124,-2.320238,-2.1774564,-2.0752196,-2.1969302,-2.1950495,-2.1766243,-2.1482232,-2.222638,-1.4731135,-1.8468194,-1.6488066,-1.3618176,-1.1555564,-1.1201296,-1.1594298,-1.0361402,-1.099314,-1.153939,-0.9769308,-1.1234384,-1.081254,-1.0829144,-1.1073215,-1.2426457,-1.2556098,-1.3299215,-1.3627145,-1.5087705,-1.6055939,-2.1326258,-2.5588489,-2.737145,-2.7999456,-2.8730547,-2.904839,-2.9582598,-2.965174,-3.0032086,-3.0250664,-2.9975197,-2.8359485,-2.8707638,-3.0656087,-3.0813727,-3.0268407,-2.9534779,-2.7902246,-2.9660568,-3.0145597,-2.8823726,-3.057649,-3.1826508,-3.1832561,-3.1288867,-3.0799341,-3.2918494,-3.3264694,-3.3176358,-3.3091307,-3.2845504,-3.1968246,-3.1206684,-3.3326254,-3.3317285,-3.3081856,-3.2927372,-3.2834568,-3.2671971,-3.2323914,-3.156012,-3.0432038,-2.7935624,-2.6929824,-2.4382348,-2.1195247,-2.4391575,-2.2419343,-2.1070263,-2.4577017,-2.5649748,-2.7385428,-2.9138193,-2.6508536,-2.9968266,-3.1346385,-3.1915727,-3.1232672,-3.153996,-3.0851002,-3.1123862,-3.2899761,-3.2929142,-3.0794318,-3.1723418,-3.0472577,-3.0698724,-2.6679144,-2.876285,-2.9307375,-2.7718577,-2.445642,-2.2912993,-2.2408667,-2.239429,-2.0178008,-2.158494,-2.404669,-2.5544007,-2.5153482,-2.7751627,-2.5974553,-2.646181,-2.6909497,-2.9577343,-2.9428096,-2.759727,-2.3332987,-2.1261768,-2.2095242,-2.6096802,-2.8620024,-2.9959621,-3.0652375,-3.0727954,-3.0935497,-3.063352,-2.9573016,-2.582121,-2.5164604,-2.2684016,-1.7658787,-2.0295296,-2.5000958,-2.367657,-2.0827122,-2.0102677,-1.9070065,-1.3246245,-1.147407,-1.2109234,-1.0510702,-0.9055585
+-0.6571923,-1.2848039,-2.1298053,-2.224374,-2.1086488,-2.5764503,-2.6893256,-2.5976434,-2.4365025,-2.5219638,-2.8405693,-2.7369056,-2.919738,-3.02239,-3.0366337,-3.016822,-3.1300228,-2.9837794,-2.6877208,-3.2720637,-3.0712073,-3.6738973,-3.7646284,-3.3377962,-3.5390491,-3.739441,-3.460724,-3.4775176,-3.5361755,-3.4913888,-3.5768676,-3.6294165,-3.6264691,-3.6242576,-3.615202,-3.7100148,-3.6723146,-3.757906,-2.7821572,-3.169345,-3.4580574,-3.769298,-3.6458488,-3.6898239,-3.6753712,-3.6788158,-3.5654325,-3.6488125,-3.6650686,-3.5393877,-3.6870553,-3.704741,-3.460318,-3.0590951,-2.9726024,-3.6297226,-3.2578933,-3.6013904,-3.728345,-3.8766103,-3.6238532,-3.8120255,-3.8110576,-3.1621988,-3.6623862,-3.8879251,-3.8014698,-3.8151188,-3.826243,-2.3683057,-3.582467,-3.5941012,-3.5688686,-3.2556183,-3.413207,-3.7537618,-3.7238436,-3.746513,-3.659709,-3.883964,-3.370473,-3.9603076,-3.580593,-3.4163795,-3.9032664,-3.6668916,-3.7814898,-3.7124162,-3.6667995,-3.7920203,-3.5336113,-3.734819,-3.8462143,-3.816772,-3.732419,-2.7846365,-2.750452,-3.5732465,-3.7700438,-3.7907982,-3.0983672,-3.5865006,-3.786954,-3.8669972,-3.7027946,-3.2846355,-3.9910593,-3.246429,-3.9181685,-3.8388324,-3.6736054,-3.5232682,-3.6949925,-2.718346,-3.5637832,-3.8661199,-3.8815856,-3.3159618,-3.7553349,-3.75919,-3.7139783,-3.653011,-3.5250592,-3.5932734,-3.5694087,-2.6679368,-3.6298742,-3.8035483,-3.7475772,-3.802446,-3.5883548,-3.5886288,-2.2952373,-3.501756,-3.6808982,-3.8469625,-3.8092694,-3.2129283,-3.763245,-3.8466182,-3.4696083,-3.9016128,-3.9235044,-4.0349965,-3.8278785,-3.160874,-3.8865218,-4.0064225,-3.629443,-3.8234887,-3.783259,-2.9602003,-3.6434612,-3.777223,-3.84448,-3.842608,-3.6904402,-2.8528984,-3.1239326,-3.5532103,-3.7711926,-3.461163,-3.8528256,-3.979971,-3.8559113,-3.734264,-3.7773805,-2.8845644,-3.4988256,-3.8873844,-3.8896646,-3.8256488,-3.7403436,-3.562012,-2.867956,-3.4439392,-3.5437233,-3.7595158,-4.0099883,-4.0624366,-3.8649707,-3.690163,-3.616644,-3.5850198,-3.6363065,-3.622431,-3.4051447,-2.955203,-3.7121553,-3.3406541,-3.5206015,-3.7534914,-3.7752004,-3.757454,-3.7809768,-3.6929164,-3.620921,-3.5867662,-3.5029407,-2.873852,-3.5413575,-3.8390136,-3.7531848,-3.6604824,-3.7317948,-3.6673355,-3.5466084,-3.2287912,-2.9685743,-3.6903825,-3.8026161,-3.8349285,-3.9343438,-3.7833533,-3.842916,-3.7568216,-3.8326077,-3.7539058,-3.7428617,-3.6661189,-3.6837065,-3.6745744,-3.6676865,-3.8041453,-3.5016298,-3.3220973,-3.5570931,-3.6987767,-3.7863579,-3.739493,-3.7175636,-2.9075084,-3.3180323,-3.08556,-2.7679245,-2.4067616,-2.0420163,-1.9858637,-1.6920042,-1.5699153,-1.5076635,-1.5356987,-3.2010493,-3.4897757,-3.600552,-3.3446174,-2.9073794,-2.4824421,-2.431288,-2.2441819,-2.4698977,-2.5856872,-2.5793576,-2.3581653,-1.9816027,-2.2093084,-2.2527816,-2.2277296,-2.304185,-2.1902757,-2.1912732,-2.2729719,-2.0839086,-1.7959781,-1.8746221,-1.9548521,-1.8917036,-1.8777623,-1.6516664,-1.3352733,-1.7809687,-1.6646385,-1.7759337,-1.8390887,-1.8201146,-1.8684082,-1.9347732,-1.9869545,-2.26276,-2.2116585,-2.1752038,-2.1317818,-2.1965263,-2.0688314,-1.9080138,-2.2980604,-2.1988826,-2.3216243,-2.1821818,-2.1717732,-2.1182396,-2.038543,-2.0117323,-1.9009814,-1.909209,-1.8541772,-1.744895,-1.6899028,-1.7063189,-1.9495811,-1.9610014,-1.9468176,-2.057865,-2.1152163,-1.9943619,-1.869411,-2.040539,-2.2287898,-2.1725166,-1.9523816,-2.1359723,-2.1252863,-2.1602163,-2.3456984,-2.200329,-1.7929392,-1.7915497,-1.7737887,-1.683805,-1.7085319,-1.892873,-1.7738519,-1.624768,-1.4042027,-0.84102064,-0.9440318,-2.9478946,-3.9015102,-3.7247925,-3.4320846,-3.2252483,-3.026043,-2.7645721,-2.6599574,-2.6771588,-2.7808633,-2.5294406,-2.3944635,-2.1251154,-2.3876305,-3.3844686,-3.6432612,-3.186037,-2.8377912,-2.6519816,-2.3810353,-2.3001983,-2.264921,-2.1633046,-2.1335423,-1.9923339,-1.9239302,-1.8825068,-2.4882486,-3.089829,-2.9313693,-2.679367,-3.237113,-3.5198379,-3.571226,-3.7171893,-3.4738898,-3.3272529,-3.336076,-3.493793
+0.17900714,0.24525298,-0.26101816,-1.050041,-1.3183036,-2.0580125,-2.1797376,-2.290451,-2.0337121,-2.2176971,-2.5046253,-2.4583201,-2.519388,-2.54219,-2.5278392,-2.550177,-2.5647278,-2.6427417,-2.7728977,-2.7633448,-3.538722,-3.4917705,-3.4097147,-3.382521,-3.2496605,-3.4620504,-2.6390238,-3.244373,-3.2661586,-2.4801917,-2.842409,-3.0978088,-3.2979705,-3.213189,-3.2532678,-3.351115,-3.1653547,-3.300912,-2.2525697,-3.2905605,-3.0105715,-3.2010589,-3.1205425,-3.09654,-3.3250198,-3.3387308,-3.205069,-3.3961935,-3.4079707,-3.294996,-3.3436947,-3.3734345,-2.5635836,-3.4798484,-3.2667584,-3.0639043,-2.952968,-2.832879,-3.1185708,-3.2764168,-2.7293522,-3.4971273,-3.4600358,-3.2174246,-2.9145827,-3.5075305,-3.3220606,-3.3852944,-3.1633568,-2.9356732,-3.2785563,-3.0241156,-3.3915138,-2.8610795,-2.7371387,-3.1388016,-3.3249445,-3.3713632,-3.3445997,-3.3271575,-3.194481,-3.4527464,-2.4978642,-3.3073869,-3.5019855,-3.3190198,-3.0147102,-3.5156302,-3.4036264,-3.480097,-3.0018926,-3.5921323,-3.4944627,-3.513461,-3.493861,-3.3991566,-3.1011262,-2.8313007,-3.3230083,-3.551803,-2.6745393,-3.4793189,-3.19171,-3.5254803,-3.5218062,-3.4794624,-3.46761,-2.52905,-3.438128,-3.0314445,-3.5280669,-3.536829,-3.4263363,-3.0514538,-3.6269546,-3.4827936,-3.4822824,-3.451768,-3.1548805,-3.3502822,-3.0248795,-3.3684282,-3.3748121,-3.5275977,-3.5281062,-2.9169736,-3.4652145,-3.5018127,-3.6229844,-3.619029,-3.5922067,-3.5287552,-2.8600194,-2.8142388,-3.3188396,-3.4780707,-3.605583,-3.6503115,-2.84403,-3.4947162,-3.0465243,-3.062708,-3.358217,-3.5590785,-2.6021805,-2.8104072,-3.2510781,-3.51398,-3.394635,-3.5655077,-3.6611068,-3.8077626,-3.6951509,-3.6436343,-3.6882424,-3.671445,-3.5931516,-2.9042356,-3.7026415,-2.400648,-3.3281832,-2.6712933,-3.2668357,-3.550806,-3.6230242,-2.9561892,-3.4390051,-2.8958302,-2.568218,-3.3096843,-3.5744786,-3.7414231,-3.7986245,-3.1058207,-2.5072005,-2.9646175,-3.1127672,-2.827583,-3.342296,-3.5134554,-3.5460548,-3.5830188,-3.553879,-3.7539697,-3.6880813,-3.6743846,-3.540709,-2.7826285,-3.4832935,-3.07575,-3.4337049,-3.6760516,-3.8631182,-3.78056,-3.3708305,-3.6228886,-3.889254,-3.8282018,-3.7431936,-3.8225822,-3.8730593,-4.100838,-3.8591304,-3.879712,-4.070305,-4.030826,-3.8172503,-3.9600291,-2.5553842,-3.563496,-3.9035301,-3.8184862,-3.9435058,-4.1470404,-3.9577413,-4.046002,-4.0937495,-4.105906,-4.163665,-4.188751,-4.186952,-4.1851835,-4.0370684,-4.1997294,-3.9117775,-3.71419,-3.9809995,-4.1798835,-4.1807914,-4.1061435,-4.1701775,-4.1042256,-3.5440984,-3.5133276,-3.2608523,-2.5932326,-2.2958593,-2.2961826,-2.2897015,-2.0312402,-1.7788293,-2.0010996,-3.2945235,-3.432621,-3.3073702,-3.132996,-2.8324034,-2.4257522,-2.2727394,-1.8558488,-1.5961099,-1.5884948,-1.5502982,-1.4122386,-1.4501977,-1.5685649,-1.52984,-1.5628533,-1.6355851,-1.7775364,-1.9411426,-1.7981606,-1.7690592,-1.7877774,-1.9534855,-1.9616647,-1.8918805,-2.4314291,-2.0972762,-2.3441012,-2.393027,-2.2803905,-2.2159214,-2.1898158,-2.241239,-2.1735857,-2.3808806,-2.5903635,-2.2439978,-2.2888918,-2.308333,-2.2955189,-2.2814639,-2.2801611,-2.4242425,-2.5520253,-2.4736469,-2.456052,-2.3724334,-2.3561096,-2.2293391,-2.6652875,-2.4297438,-2.5116415,-2.6467416,-2.5602126,-2.6228487,-2.5195382,-2.6729555,-1.5138912,-2.2175221,-2.1676629,-2.2054315,-2.259921,-2.2841096,-2.3328834,-2.3664923,-2.2146719,-2.2202895,-2.1429849,-2.3597171,-2.3307068,-2.5276077,-2.367385,-2.2723744,-2.2225275,-2.5250711,-2.420638,-2.4357133,-2.4404483,-2.463894,-2.5018,-2.4997463,-1.9791923,-1.6672249,-0.5618811,-1.8440623,-2.5187569,-2.6808887,-2.1038268,-1.6658068,-1.1845405,-1.015451,-0.9759185,-0.9600857,-1.1009688,-1.2610242,-1.3781111,-1.3821456,-0.73204285,-0.6659258,-1.2754571,-1.7969975,-1.6451151,-1.6358502,-1.3750372,-1.1806736,-1.1369934,-1.113378,-1.174819,-1.1200237,-0.96717936,-0.91048795,-0.42021573,-0.23822945,-0.6640362,-0.94979054,-1.351943,-2.0543356,-2.6223843,-2.86479,-2.794097,-2.180186,-2.6720114,-2.758284
+-0.5813769,-1.7133229,-2.7769687,-3.2246263,-2.8254147,-3.4758544,-3.8016138,-3.2984385,-3.4347124,-3.662095,-3.8842769,-3.8790479,-3.9023423,-3.9589758,-3.8822093,-3.7765307,-3.7054143,-3.4822736,-3.6113055,-3.5295768,-4.235583,-4.5931835,-4.568404,-4.3458524,-4.1520615,-4.3898015,-3.7287946,-3.9456215,-4.625608,-3.3344715,-3.8557124,-4.2215877,-4.461454,-4.3739777,-4.309,-4.3021617,-4.150215,-4.125387,-3.4491246,-4.4917407,-4.057229,-4.424339,-4.0494423,-4.0676203,-4.3075743,-4.304501,-4.030294,-4.3088264,-4.3509173,-4.160569,-4.18169,-4.188953,-3.969657,-3.852714,-3.4647827,-3.7961416,-3.7368789,-3.9343438,-4.632682,-4.555558,-3.4542994,-4.7147956,-4.603617,-4.448212,-4.216288,-4.202275,-4.106869,-4.140706,-4.1434827,-4.051293,-3.8874292,-2.8275685,-4.530137,-4.3176675,-4.0799165,-3.6734,-4.599248,-4.4938693,-4.3932347,-4.3458886,-4.008834,-4.1657634,-3.720162,-4.17601,-4.260491,-4.013437,-2.9377944,-4.4939075,-4.4203544,-4.0823855,-3.5522618,-4.770611,-4.3298893,-4.5040784,-4.374969,-4.2465053,-3.5754318,-3.6808558,-4.6502504,-4.485088,-3.9661784,-4.3194184,-3.523097,-4.143027,-4.5118794,-4.47372,-4.420731,-3.340463,-3.6965528,-3.0284555,-4.307863,-4.3457346,-4.1924734,-4.257074,-4.287626,-4.2535124,-4.319344,-4.298411,-4.190311,-4.1398225,-4.1907997,-4.12074,-3.7866397,-3.2357252,-4.4027143,-4.201827,-3.914908,-4.314651,-4.220783,-4.3480325,-4.283871,-3.4343874,-3.404591,-2.9073853,-4.22977,-4.378759,-4.3917546,-4.410293,-4.030461,-4.402064,-4.4011483,-3.5387242,-4.470109,-4.552523,-4.4783545,-4.049465,-3.8229356,-4.1483684,-4.1666694,-4.337466,-3.4302025,-4.2465177,-4.390906,-4.4023466,-4.524863,-4.5314703,-4.4362226,-4.4101906,-4.3218193,-3.2684228,-3.7837787,-3.8131585,-4.1673384,-4.515329,-4.4555345,-3.7072225,-4.182409,-4.3604736,-2.8017342,-4.269562,-4.4873166,-4.472589,-4.324864,-4.3256917,-4.290681,-3.7647095,-4.314479,-3.5577865,-4.400582,-4.5094695,-4.312842,-4.354859,-4.320682,-4.180445,-4.281151,-4.3674884,-4.3412037,-4.2177334,-4.330711,-4.0247355,-4.5523734,-4.683163,-4.480103,-3.801907,-4.276123,-4.6870074,-4.7194633,-4.399838,-4.221621,-4.1606803,-4.28137,-4.3521957,-4.365706,-4.4594088,-4.572165,-4.5858703,-4.4190955,-4.4016695,-3.9252315,-4.472363,-4.473963,-4.3845696,-4.3366356,-4.5062675,-4.4237123,-3.1608932,-4.2353306,-4.535766,-4.597304,-4.618093,-4.5985017,-4.547355,-4.5017104,-4.566588,-4.4879303,-4.2385836,-4.368467,-4.6250567,-4.4803805,-4.4112954,-4.3041224,-4.314613,-3.9969015,-3.7853208,-3.5970201,-3.2500963,-3.4398491,-3.979579,-4.186101,-4.089571,-3.5039258,-4.132029,-4.354837,-4.262807,-4.2334714,-4.184798,-4.0486794,-3.5663457,-4.00654,-3.9103656,-3.3453317,-2.852535,-2.378487,-2.2773323,-2.3768501,-2.1668305,-1.9534769,-1.8524127,-1.8245583,-2.0120666,-2.0150168,-1.8650827,-1.7426589,-1.8630953,-2.091542,-2.0452812,-2.148458,-2.084292,-1.9767647,-1.9915164,-2.1597486,-2.2532752,-2.2530305,-2.3488655,-2.415951,-2.5196185,-2.5196161,-2.4462423,-2.5473313,-2.5766935,-2.5982637,-2.6519585,-2.723831,-2.8514147,-2.526907,-3.0814538,-3.0949655,-3.1190028,-3.1514385,-3.156616,-2.4069388,-2.9727247,-3.0251136,-3.0146394,-2.7153444,-2.3503075,-1.9810677,-1.6594834,-1.5112226,-1.1233816,-0.86763257,-1.0598767,-1.2011206,-1.2818718,-1.4735959,-1.3823388,-1.3772271,-1.6030271,-1.6461473,-1.7386179,-1.9452653,-1.9715123,-1.8575304,-2.053043,-2.1923683,-2.3493962,-2.2372084,-1.6529739,-1.5439849,-1.4105272,-1.2155762,-0.9962227,-0.8992441,-1.8417583,-3.2180114,-3.3541408,-4.033363,-4.178036,-3.9524446,-3.4756308,-3.3391266,-3.109573,-2.9665036,-3.5938973,-3.6623259,-3.4510775,-2.8655741,-3.006104,-3.5659485,-3.6496465,-3.3360093,-4.0690084,-3.8068595,-3.140049,-2.667117,-2.6862726,-2.3304334,-2.3804708,-2.0632906,-1.9263935,-2.5123725,-2.8832812,-3.4838338,-4.0023994,-3.5459929,-3.3628006,-3.4558737,-3.4639583,-3.300778,-3.8687377,-4.4064984,-4.2191863,-3.0067804,-3.428102,-3.8686485
+-1.2373495,-2.054504,-2.3371434,-2.3319504,-2.2433405,-2.2293992,-2.9379368,-2.9778543,-2.9357102,-2.496787,-2.9665112,-2.8841805,-2.780056,-2.6360846,-2.4709594,-2.2027025,-2.2345803,-1.8649113,-3.1105475,-2.9581695,-3.427914,-3.395819,-3.2730553,-2.9670715,-3.070818,-3.1659813,-3.3971257,-3.5106087,-3.6120062,-3.333794,-3.6532388,-3.6152892,-3.4855475,-3.3924522,-3.3444169,-3.174592,-3.1659455,-3.2234979,-3.2445507,-3.3187466,-3.374496,-3.6761186,-3.5818675,-3.6566424,-3.4825842,-3.0489876,-3.6989036,-3.5699682,-3.4904325,-3.3847551,-3.3453345,-3.2259178,-3.1548066,-3.1693554,-3.0819821,-3.0995739,-3.022079,-3.1295795,-3.917553,-3.9500933,-3.7826142,-3.8504205,-3.812302,-3.765997,-3.284448,-4.2253804,-4.0255294,-3.8919811,-3.8455987,-3.7799115,-3.685727,-3.6505718,-3.69448,-3.6282358,-3.4700592,-3.5900412,-3.641808,-3.5295832,-3.5478158,-3.5699148,-2.6087003,-2.8835797,-3.9025464,-4.0003266,-4.0097966,-3.8448496,-3.7550378,-4.1182942,-4.0055017,-3.8928065,-3.475554,-4.3322673,-3.7978864,-3.685294,-4.120718,-4.083957,-3.9234056,-3.7611394,-4.2713675,-4.1713023,-4.065781,-3.7893853,-3.0726774,-4.14337,-4.123057,-4.1786084,-4.1363215,-3.7938428,-3.6115708,-3.450842,-4.253191,-4.0012574,-3.8528728,-3.7642903,-3.597856,-4.221872,-4.1397896,-4.0509925,-4.0257955,-3.924934,-3.9596148,-3.8776832,-2.1821644,-3.8367734,-3.953691,-3.8306193,-2.4814625,-3.6281965,-3.626875,-3.729169,-3.8738327,-3.6307611,-3.6580558,-3.2739878,-4.1091337,-4.02585,-3.9586077,-3.9372244,-3.8684545,-3.7834067,-3.708259,-3.2336683,-4.2909913,-4.0976405,-3.910376,-3.5229983,-3.7947555,-4.21021,-3.7347593,-3.9722137,-3.7409558,-3.9280539,-4.02286,-4.0786204,-4.033731,-3.9224267,-3.8735504,-3.8112044,-3.6435997,-3.5685823,-3.149393,-3.9104023,-3.498411,-4.223264,-4.066295,-3.7269292,-3.3352346,-4.0114927,-3.9900079,-3.9962602,-3.9919262,-3.8679843,-3.4220035,-3.9292207,-3.7685647,-3.833911,-3.7777333,-3.6632776,-4.035002,-3.9867473,-3.9692197,-3.9205914,-3.8511953,-3.7362008,-3.6965342,-3.6996288,-3.620282,-3.5979843,-2.7918634,-3.4346704,-4.1429787,-4.095179,-3.9203453,-3.8585887,-3.8901114,-3.9022474,-3.7698379,-3.5134287,-3.3918977,-3.3322535,-3.3488116,-3.4515207,-3.3728976,-3.4585385,-3.5082073,-3.5279737,-3.432969,-3.3875756,-3.0157385,-3.721684,-3.5840683,-3.4118538,-3.5049887,-3.524178,-3.3274221,-2.857221,-3.5687237,-3.4908013,-3.6053581,-3.594952,-3.574911,-3.438911,-3.4985037,-3.5562882,-3.4339623,-3.416283,-3.462129,-3.4922657,-3.4251082,-3.4757276,-3.357997,-3.411676,-3.3552303,-3.172433,-3.1298985,-2.5892544,-3.0610867,-3.2966077,-3.2538657,-3.2503982,-2.9084148,-3.137621,-3.7270055,-3.5713155,-3.57207,-3.560955,-3.4783015,-2.6567721,-3.496725,-3.2805798,-2.8982944,-2.4994712,-2.0715976,-1.9661059,-1.8556969,-1.7261438,-1.5490525,-1.4304523,-1.4508343,-1.5698636,-1.3019202,-1.4598713,-1.4156132,-1.5590448,-1.642066,-1.4975195,-1.5848944,-1.4121408,-1.1966133,-1.2581339,-2.2394447,-2.1556816,-2.1712341,-2.1692348,-2.0371113,-1.7791371,-1.3988523,-2.0360239,-1.7773302,-1.3529255,-1.3419497,-1.3491545,-1.4199834,-1.4371085,-1.302985,-1.1773179,-1.0284467,-1.2437992,-1.1979244,-1.2550514,-0.66920274,-0.51033396,-0.4072423,-0.55295783,-0.5896473,-1.4111018,-2.6630354,-3.094471,-3.2061667,-3.197981,-3.1155114,-3.0264912,-2.8311307,-2.7888227,-2.881265,-3.1533875,-3.3373137,-2.94063,-2.6886826,-2.5250344,-2.4619718,-2.6320362,-3.0563421,-2.7394192,-2.3895278,-2.576274,-2.8770752,-3.1345742,-3.2327082,-3.2413726,-3.1463041,-3.352307,-3.4671469,-3.4380636,-3.352614,-2.5985892,-3.3914838,-3.4765463,-3.3513784,-3.4058733,-3.2670658,-3.0838737,-3.1591406,-3.197089,-3.363731,-3.3379626,-3.0804439,-3.273144,-3.2213814,-3.1810238,-2.4611254,-3.9995618,-3.6837401,-3.389499,-3.0713105,-3.0379272,-3.0161355,-2.8923874,-2.7802742,-2.9552586,-3.0452695,-3.166932,-3.1710057,-3.110896,-3.0406418,-3.1369576,-2.9015129,-1.6683874,-2.6337118,-3.180759,-3.5730505,-3.5246844,-3.0024824,-3.07264,-3.3582594
+-0.983566,-1.8985147,-2.4567156,-2.6788366,-2.7597384,-2.6885097,-2.8850636,-2.9952025,-3.1215134,-2.6594667,-3.0604079,-3.3361206,-3.1220865,-3.010436,-2.9244175,-2.6146545,-2.6029384,-2.4306853,-3.2747226,-3.2996392,-3.4580317,-3.4954016,-3.341767,-3.1166985,-3.0751648,-2.7712154,-3.312406,-3.8594065,-4.090202,-3.7983646,-3.8080502,-3.917028,-3.7678695,-3.614332,-3.5603669,-3.3487434,-3.2653766,-2.9234345,-3.3858848,-3.906767,-3.772204,-3.726492,-3.561164,-3.730702,-3.4570012,-3.1256218,-3.7347841,-3.7864041,-3.81501,-3.6753001,-3.7401175,-3.5038943,-3.4016798,-3.334875,-3.5726616,-3.2023566,-3.1812723,-3.9039035,-3.9607863,-3.810822,-3.7672577,-3.7892904,-3.672414,-3.4018812,-3.2760065,-3.7212205,-3.4886184,-3.467948,-3.2752018,-3.3453841,-3.2093353,-3.196213,-3.1410623,-3.123713,-3.3024116,-3.3250895,-3.3461394,-3.2761743,-3.3126142,-3.3231237,-3.2208803,-2.752974,-3.246644,-3.3029568,-3.4257917,-3.4156883,-2.2244544,-3.5419645,-3.7376018,-3.8098292,-3.598734,-3.643755,-2.409697,-2.1286044,-3.26164,-3.5730886,-3.6796753,-3.6822672,-3.7803626,-3.6316848,-3.5715275,-3.4630666,-2.9345903,-3.0483093,-3.688538,-3.814137,-3.646328,-3.5675492,-3.4355826,-3.3267293,-3.2981892,-3.276982,-3.241349,-3.2877288,-3.2680888,-2.4997966,-3.585476,-3.62029,-3.566989,-3.56152,-3.6017165,-2.711034,-1.8265295,-3.3401392,-3.4609337,-3.4740472,-3.3900642,-3.484198,-3.3747091,-3.6046743,-3.4559498,-3.4072685,-3.3661168,-2.9609623,-3.3615344,-3.4964862,-3.6226995,-3.6054401,-3.6191509,-3.6180842,-3.4420214,-2.4819374,-3.4808729,-3.6429799,-3.6442542,-3.4311008,-2.726172,-3.52647,-3.5215294,-3.6164074,-3.665905,-3.427193,-2.7243204,-3.4168735,-3.543734,-3.6261458,-3.6894667,-3.6975307,-3.552392,-3.4762802,-2.2958362,-2.9400568,-2.4612105,-3.3590777,-3.6057668,-3.554285,-3.4294615,-3.4250898,-3.1935525,-3.560103,-3.5846791,-3.4824278,-3.3984044,-3.4363222,-3.4672675,-3.5244932,-3.5692706,-3.5570288,-3.608595,-3.7205663,-3.7846131,-3.912056,-3.8814945,-3.9988103,-3.9801335,-3.9966202,-3.8856764,-3.715726,-2.230843,-2.8641872,-3.3656232,-3.6244156,-3.7057557,-3.6537933,-3.4875429,-3.6298122,-3.6497896,-3.4893448,-3.395,-3.3254843,-3.4067862,-3.8634858,-3.9224906,-3.7505355,-3.7416682,-3.7471023,-3.8527508,-3.936345,-3.6468074,-3.7606874,-3.812667,-3.713398,-3.889463,-3.953967,-3.8857827,-3.6913023,-2.5995176,-3.749239,-3.918366,-3.9994302,-4.178509,-2.958089,-3.5682993,-3.6500695,-3.7385817,-3.6985536,-3.7028403,-3.721334,-3.780201,-3.817412,-3.836698,-3.938487,-3.8059535,-3.7753234,-3.9310522,-4.015713,-4.104874,-3.9400625,-3.894896,-3.7751427,-3.8510675,-3.6006331,-3.880906,-4.0674024,-3.5781205,-3.6276417,-3.8681407,-2.6911838,-3.1904008,-3.1348128,-3.1405418,-2.7958486,-2.4074445,-2.0193367,-1.6666532,-1.7964442,-1.8539677,-1.8391638,-1.8186517,-1.5607257,-1.6152713,-1.9176488,-1.7873459,-1.6035402,-1.480231,-1.4725094,-1.2329028,-1.1951025,-1.0673697,-1.5497353,-2.9414997,-2.8384275,-2.711371,-2.716938,-2.5181274,-2.6532898,-2.4720492,-3.120214,-3.1651816,-2.6616518,-2.3006814,-2.116561,-2.0689788,-1.7445052,-1.2538214,-1.7655466,-2.6938457,-2.9056244,-2.4854376,-2.0476403,-1.8863344,-2.3186414,-2.654967,-2.8302205,-3.2562237,-3.3510077,-3.3798528,-3.4103088,-3.42938,-3.3243933,-3.5062604,-3.3371253,-3.1408083,-3.100799,-3.2121847,-3.1871195,-3.2681189,-3.4408832,-3.2186193,-2.6266155,-2.4107165,-2.5994432,-2.9442172,-3.4251544,-3.1759396,-2.6233597,-2.862527,-3.1654634,-3.1641169,-3.0539203,-3.2170157,-3.0439692,-3.0100217,-3.0931814,-3.1113224,-3.0026903,-3.1330862,-3.2595212,-3.2671068,-3.279409,-3.349413,-3.3999872,-3.4009738,-3.2295768,-2.416636,-3.1150484,-3.2850127,-3.0589676,-3.1276348,-3.1410024,-2.4314744,-3.2416477,-3.2617574,-3.553463,-3.203124,-3.2465353,-3.3668933,-3.5207663,-3.2856472,-3.0752053,-3.215773,-3.230569,-3.1696146,-3.252407,-3.225007,-3.3333173,-3.3320286,-1.9331279,-3.0404649,-3.0306084,-3.1253743,-3.4076562,-2.6150036,-3.0795946,-3.6399193
+-0.92773527,-1.8610256,-2.4854548,-2.8078747,-2.9404616,-3.097342,-3.455058,-3.668396,-3.5550585,-3.3870125,-2.8609738,-3.8003073,-4.1164036,-4.020432,-4.1683497,-3.939508,-4.0170994,-3.912088,-4.1311107,-4.25652,-4.212051,-4.37336,-4.3026195,-4.148374,-4.1484227,-4.138883,-3.2482767,-4.3338785,-4.146528,-3.6151223,-4.112504,-4.466497,-4.5252166,-4.4480557,-4.499534,-4.4805274,-4.473377,-4.3715096,-4.1229067,-4.322418,-4.340942,-4.426768,-4.403608,-4.4987206,-4.187803,-3.0422087,-3.1036997,-3.8447633,-4.2149987,-4.3003554,-4.481839,-4.5782304,-4.2845893,-3.837326,-4.2267327,-4.5972095,-4.498619,-4.7385736,-4.7223563,-4.372645,-4.5114503,-4.277132,-4.725528,-4.498256,-4.6967044,-4.6305676,-4.558865,-4.599313,-4.5412936,-4.470943,-4.4626126,-4.465883,-4.0467515,-4.4908195,-4.466097,-4.3152194,-4.4649925,-4.407269,-4.383944,-4.32076,-4.328729,-4.2931027,-4.136936,-4.250009,-2.6550221,-4.5865145,-4.505739,-4.6834774,-4.635324,-4.6481752,-4.3269057,-4.003788,-4.2937264,-3.5113816,-4.130727,-4.630981,-4.364515,-4.734776,-4.651375,-4.694238,-5.0015454,-4.866886,-3.9631171,-4.690653,-4.685602,-4.8574467,-4.874117,-4.7074456,-4.6458354,-4.651899,-4.542235,-4.588627,-4.552247,-4.5384064,-4.4825006,-4.0117183,-4.1939545,-4.0678105,-4.7606325,-4.653625,-4.762569,-4.1176047,-4.74461,-4.6675744,-4.5383096,-4.5551248,-4.480335,-4.0321727,-4.281778,-3.2477992,-4.569777,-4.643973,-4.578192,-3.2879195,-4.541616,-4.646889,-4.623155,-4.8183885,-4.750817,-4.6956816,-4.4573565,-4.561401,-4.546899,-4.4495974,-4.0481925,-4.446155,-4.489466,-4.4391656,-4.4460993,-4.4411387,-4.306624,-4.4826694,-3.2057722,-4.5040464,-4.4828258,-4.573569,-4.4391966,-4.4033856,-4.2990403,-4.2428412,-3.8565202,-3.5110154,-3.969709,-4.393228,-4.619917,-4.6734695,-4.6610126,-4.274979,-3.0221148,-4.350327,-4.450088,-4.628498,-4.56825,-4.5289516,-4.557964,-4.586468,-4.5455375,-4.1921077,-4.299316,-4.4902534,-4.6278577,-4.6286993,-4.6037354,-4.6095834,-4.607716,-4.4579706,-4.248773,-3.5318947,-4.359157,-4.241712,-4.339883,-4.4059534,-4.374025,-4.3117585,-3.04524,-4.3461685,-4.107143,-4.356076,-4.4514923,-4.370871,-4.358554,-3.2269726,-4.245959,-4.270435,-4.411988,-4.335143,-4.2882743,-4.325751,-4.2521,-4.299465,-4.30143,-4.2177653,-4.374865,-4.3411202,-4.1984906,-4.225302,-3.357863,-4.191339,-4.3312297,-4.260346,-4.330908,-4.0756946,-4.3690286,-4.3422904,-4.4164195,-4.3008113,-4.396207,-4.3542714,-4.2941556,-4.2612815,-4.188782,-4.238114,-4.2888255,-4.273788,-4.416838,-4.416948,-4.3715315,-4.39843,-4.353682,-4.319205,-4.460942,-4.269778,-4.328794,-4.386442,-4.289355,-4.35762,-4.4940157,-3.900558,-4.3550115,-4.31634,-4.3829317,-4.080899,-3.698533,-3.7961068,-3.7886844,-4.0712337,-4.106116,-4.010739,-3.771957,-3.6894498,-4.0056252,-3.1106105,-2.9988923,-2.9997077,-3.1510777,-3.2746081,-2.895773,-3.6050336,-4.0206313,-3.690328,-4.121927,-4.2613664,-4.106399,-4.020925,-4.024229,-4.3405795,-4.3401875,-4.450184,-4.159989,-3.5562572,-3.4192321,-3.0870638,-3.06851,-3.0124807,-2.789919,-3.825992,-4.243387,-2.587511,-3.1778176,-2.556325,-2.9659238,-3.7432828,-4.2132597,-4.205625,-4.3133063,-4.302703,-3.6602604,-4.115639,-4.3025117,-4.1816745,-4.4326153,-4.2100554,-4.0444,-4.1249657,-4.307737,-3.9856763,-3.9317317,-3.890615,-3.760077,-3.624387,-3.7435403,-4.017198,-3.8924174,-4.138613,-3.860436,-3.9000678,-4.0435033,-4.006112,-4.0299273,-3.702036,-4.0375886,-4.0829816,-4.077026,-4.1017118,-4.0414553,-4.0282063,-3.948998,-4.026952,-4.030058,-3.9851031,-4.061856,-3.548647,-4.042898,-3.9522648,-3.7130446,-4.141708,-4.0131507,-4.011506,-3.9803252,-3.9894156,-3.0616314,-4.112699,-4.061499,-3.8305516,-3.7762957,-3.8924308,-3.8633647,-4.125045,-3.8871303,-3.8783555,-4.0618234,-3.780376,-3.8001833,-3.8765168,-3.5366836,-3.8810792,-3.8286066,-2.9777422,-3.1111732,-3.8895416,-3.35538,-3.9513812,-4.123279,-4.368055,-4.396009
+-2.2886505,-2.8212607,-3.1822245,-3.3143907,-3.3915658,-3.24079,-3.2003846,-3.5280578,-3.498301,-3.112879,-2.7054834,-3.3729572,-3.7250557,-3.4960332,-3.5039954,-3.6516356,-3.6571188,-3.3454118,-3.5489821,-3.7853084,-3.8420405,-4.0124907,-3.9951415,-4.028458,-4.0442996,-4.062621,-2.5763927,-3.8923502,-2.7072382,-3.1752396,-4.118379,-4.412564,-4.299356,-4.4192276,-4.4613004,-4.440606,-4.484446,-4.5847373,-2.1795988,-3.7674475,-4.492743,-3.4531572,-4.3385935,-4.549044,-4.4144197,-3.953329,-4.1268387,-4.474282,-4.4250636,-3.7674575,-4.3339067,-4.4611545,-4.3523335,-3.0957778,-2.7656908,-3.6706357,-4.3246303,-4.5238347,-4.6382604,-4.1069717,-4.558064,-4.583575,-4.5916796,-4.23863,-3.7439585,-4.583075,-4.625669,-4.6621575,-4.6236587,-4.6772285,-4.678515,-4.704585,-4.1355996,-4.584621,-4.68459,-4.590818,-4.642598,-4.6086526,-4.4973683,-4.617127,-4.6418624,-4.601008,-4.5804896,-4.5476103,-4.2628436,-4.4877863,-4.6238394,-3.9897604,-4.4288893,-4.4382434,-4.5589433,-3.9312034,-4.5813146,-3.0593593,-3.0996969,-4.523845,-4.62107,-4.743962,-4.6859546,-2.5390444,-4.433687,-4.8202906,-4.7320676,-4.7294793,-4.4021287,-3.2414994,-4.5711617,-4.773995,-4.762087,-4.745891,-4.706514,-4.7128835,-4.727892,-4.5973945,-4.281113,-3.681648,-4.1455846,-4.4347277,-4.80096,-4.0036445,-4.3536716,-4.3421483,-4.8340573,-4.9062696,-4.873055,-4.8570437,-4.8183465,-2.4812365,-3.1470656,-3.707189,-4.1850343,-4.853213,-4.805903,-4.1346235,-3.4842708,-3.8832202,-4.43864,-4.608442,-4.7391386,-3.3228958,-3.9887838,-4.1753583,-4.789456,-4.713543,-4.701896,-4.7238774,-4.749465,-4.640051,-4.2819386,-4.6070914,-4.0525928,-4.6865764,-4.772247,-4.659759,-4.596561,-4.661487,-4.6631126,-4.671543,-4.6281424,-4.626476,-4.214461,-3.8182874,-3.893992,-4.5645657,-4.730211,-4.7370567,-3.8326364,-3.3586187,-3.3121357,-3.2822113,-4.2727304,-4.876347,-4.802609,-4.80312,-4.775821,-4.7788363,-4.731228,-4.7196875,-3.94876,-4.5060277,-4.6650624,-4.4448743,-4.522284,-4.562715,-4.584318,-4.655214,-4.6744733,-2.4354615,-4.147652,-4.339351,-4.3836656,-4.5417123,-4.691741,-4.6512227,-2.998425,-3.2386131,-3.687658,-4.467769,-4.485807,-4.5367656,-4.6125135,-4.6314087,-3.28236,-4.346748,-4.5072384,-4.557223,-4.684773,-4.7394423,-4.627164,-4.6940713,-4.737821,-4.6550183,-4.641131,-4.6461205,-4.634151,-4.63334,-4.578536,-4.47862,-4.509247,-4.5313296,-3.5078526,-4.1765847,-4.373855,-4.443111,-4.4783797,-4.309585,-4.448894,-4.4980636,-4.5576453,-4.592545,-4.642234,-4.1589136,-4.3232546,-4.325254,-4.5526433,-4.5564647,-3.0289583,-4.450627,-4.6882615,-4.691747,-4.59512,-3.1569877,-4.4260335,-4.7437353,-4.537331,-4.5521092,-4.071371,-4.2791677,-4.584829,-4.158178,-4.422435,-4.159887,-3.8459654,-3.5182598,-3.3978186,-4.1514053,-4.311092,-4.3753734,-4.032887,-3.7300868,-4.109373,-3.6420898,-3.4687448,-3.4098353,-3.3563135,-3.6001158,-3.00194,-4.0344944,-4.4578595,-3.8907886,-4.4822507,-4.5668254,-4.560387,-4.3504434,-4.2451825,-4.5908256,-4.2587514,-4.6076465,-4.2766147,-4.1959777,-3.4043555,-3.313934,-3.2712162,-2.9930167,-3.032707,-4.1128135,-4.4411607,-4.1956406,-3.2964005,-3.7942224,-3.6029904,-4.509005,-4.5119033,-4.3588533,-4.555541,-4.4955726,-3.0065224,-4.1831284,-4.4268775,-4.5595403,-4.4470835,-4.3526406,-4.3313127,-4.3734546,-4.5678377,-4.502303,-4.3890157,-4.1632743,-4.0106597,-4.065618,-4.1102757,-4.3769693,-4.3632407,-4.2279468,-3.9537396,-4.215553,-4.4086676,-4.3446946,-4.198053,-1.9501786,-3.5555003,-4.259127,-4.372844,-4.3776236,-4.4832582,-4.3576264,-3.8271713,-4.294478,-4.5612683,-4.513237,-4.3471675,-4.3519397,-4.3348975,-4.3938246,-3.9343038,-4.208238,-4.312534,-4.3737473,-4.417684,-4.0390706,-2.2821994,-3.976173,-4.1743,-3.3008769,-3.221755,-3.2801657,-3.3119564,-3.941609,-3.5728264,-3.5624795,-4.1556196,-3.9695783,-4.139368,-4.215736,-4.161533,-3.7503362,-4.1120906,-2.7768164,-2.5684216,-3.7049327,-2.8721585,-4.0735745,-3.3407888,-4.0607343,-4.358826
+-0.8643406,-1.5727603,-1.9852011,-2.139481,-2.1909058,-2.282867,-2.3854098,-2.3652892,-2.2084236,-1.8497694,-1.1126301,-3.5030496,-4.0030828,-3.767406,-4.0115347,-4.190672,-4.172919,-2.8840523,-3.722834,-3.6290398,-4.2860456,-4.27318,-4.180898,-4.201154,-4.242411,-4.3286805,-3.3872838,-4.143027,-2.1752858,-2.7393923,-4.116607,-4.294766,-4.3356733,-4.427633,-4.3891597,-4.315827,-4.244371,-4.341447,-3.507962,-3.9748087,-4.5722675,-3.8744464,-4.400656,-4.423754,-4.292009,-4.148331,-4.039064,-4.0294204,-3.8369336,-3.8907933,-4.244078,-4.251469,-4.1600723,-4.1918178,-3.2567785,-3.6318913,-4.378636,-4.4000173,-3.0148196,-3.6768389,-4.42518,-4.3448024,-3.9979253,-4.0877557,-3.3322,-4.3246694,-4.5772023,-4.4991975,-4.4043736,-4.3439345,-4.3119287,-4.288751,-3.4636724,-3.289005,-4.475015,-4.613647,-4.55024,-4.372054,-4.3917956,-4.2890034,-4.258454,-4.2655783,-4.2698703,-4.2231126,-4.058906,-4.0910277,-2.8372726,-2.396883,-4.146783,-4.2736335,-4.3616,-3.8566809,-3.9937854,-4.4902167,-3.3394814,-4.5166764,-4.629649,-4.5681415,-4.5119653,-3.7244172,-4.055986,-4.442954,-4.2999377,-4.3177867,-2.2728324,-3.7854934,-4.3485913,-4.502979,-4.3521576,-4.3676324,-4.3472824,-4.3589797,-4.286205,-4.170498,-4.1141486,-2.6742008,-4.0449443,-4.077082,-4.2237782,-4.1384654,-2.2037828,-4.312277,-4.5261674,-4.522165,-4.460263,-4.400384,-4.2836328,-4.1799297,-3.1041236,-2.663247,-3.3966548,-4.1802883,-4.435799,-4.445454,-2.706218,-3.7346425,-3.5019634,-3.827619,-4.451989,-3.3906064,-4.4038625,-2.4383657,-4.384476,-4.6283503,-4.7735844,-4.742665,-4.7027707,-4.696982,-4.5746794,-4.468848,-4.5005527,-2.9941957,-4.419801,-3.7907147,-4.4440913,-4.4594197,-4.419191,-4.474913,-4.44301,-4.3860097,-4.349719,-4.300142,-4.067623,-4.044277,-4.0978227,-4.07892,-3.4538016,-3.3268046,-4.1861277,-3.5121398,-2.6640043,-4.3587995,-4.4524055,-4.3652306,-4.3426304,-4.3705544,-4.332838,-4.3039722,-4.159603,-4.138814,-4.1792927,-3.9676423,-3.9519596,-4.1073313,-4.05652,-3.9913287,-3.9742198,-3.8508568,-3.8308249,-3.9198256,-3.8037791,-3.7914758,-3.985529,-3.861775,-3.7897482,-3.0260186,-2.670434,-4.034075,-4.1138115,-4.0343213,-4.1193404,-4.170505,-2.8868847,-4.064884,-4.2867503,-4.2844834,-4.2812586,-4.332625,-4.228321,-4.110056,-4.1075125,-4.0679517,-4.038897,-4.034939,-3.9549432,-3.9465399,-1.8204021,-3.9441438,-4.2217145,-4.25683,-2.6255004,-4.3863726,-4.489198,-4.479483,-4.539826,-4.420547,-4.313972,-4.458276,-4.4322076,-4.339063,-4.227314,-2.001478,-4.0878625,-4.3706374,-4.40568,-3.6385314,-2.9938812,-4.4631324,-4.7605953,-4.8569274,-4.8549333,-2.9012995,-4.4754395,-4.818129,-4.7156415,-4.5580406,-3.2993011,-4.199451,-4.6798577,-4.208694,-4.630821,-4.3124185,-4.3221707,-3.7305655,-3.496047,-3.4325385,-4.444346,-4.5798182,-4.2766824,-3.9077706,-4.221955,-4.2819486,-4.20437,-3.8003178,-3.4333436,-3.8334494,-3.8587193,-2.9892185,-3.835009,-3.360763,-4.579208,-4.8943496,-4.6390676,-4.665482,-4.312828,-4.679253,-3.6287177,-4.6011405,-4.548918,-4.36929,-4.119654,-4.045917,-3.656528,-3.0439324,-2.9291096,-4.334335,-4.52094,-4.363436,-4.3369117,-4.385612,-3.1770177,-4.515062,-4.415156,-4.7163835,-4.7197123,-4.6901197,-3.3180795,-4.380493,-4.7663054,-4.711407,-4.6795306,-4.5699067,-4.4994817,-4.466723,-4.4913454,-4.453133,-4.449761,-4.2701173,-4.1535,-4.275107,-4.111098,-4.191321,-3.3750625,-4.2324233,-4.3874865,-4.3257456,-4.460714,-4.2693534,-4.180452,-2.3808677,-3.9324179,-4.3813148,-4.5453506,-4.000159,-4.5341024,-4.631105,-3.414172,-4.4609456,-4.7404475,-4.7258625,-4.604795,-4.158441,-3.9011993,-4.4912267,-4.4340725,-4.388866,-4.291263,-4.3024426,-3.711822,-3.8363757,-3.3833907,-4.021934,-4.27712,-4.350674,-3.7173882,-3.827705,-3.4639792,-4.1463876,-4.224965,-4.149506,-4.3396583,-4.1495795,-4.0907063,-4.1312633,-4.117641,-4.0505414,-4.031012,-2.908381,-2.4280987,-4.002354,-3.4643822,-4.2592897,-3.7498174,-3.7659311,-4.3110156
+-0.30123836,-1.4629171,-2.5491176,-3.1833453,-3.2584667,-3.492769,-3.6550002,-3.6096168,-3.4722705,-3.285148,-2.4812226,-3.9401245,-4.3395686,-4.3816614,-4.2103863,-4.1207604,-4.096591,-2.7895918,-3.7472272,-3.6755645,-4.2694864,-4.5168047,-4.360649,-4.3805146,-4.35676,-4.2791,-3.121805,-4.3193116,-3.423101,-2.6724205,-4.2884755,-4.221867,-4.308868,-4.441706,-4.3911147,-4.2991147,-4.202391,-4.150884,-3.933824,-3.0728407,-4.4060807,-4.433586,-4.2673,-4.140426,-3.9277196,-3.585779,-4.0102315,-4.031936,-3.171402,-4.231155,-4.2826133,-4.146032,-4.0737042,-4.044103,-4.0639377,-2.792853,-3.81564,-4.5081835,-4.381449,-3.9377508,-3.3457057,-3.5877733,-3.951198,-4.0160656,-3.615261,-4.306042,-4.4285283,-4.426083,-4.221321,-4.1688666,-4.1242614,-4.0245814,-3.9910274,-2.9195058,-4.1872783,-4.5646424,-4.531304,-4.3993316,-4.2207217,-4.098297,-4.0895333,-4.0734935,-4.0021977,-3.89401,-3.7857637,-3.670209,-3.6947227,-2.642704,-3.605661,-3.7073364,-3.6020722,-3.5708494,-3.523711,-3.4953947,-3.4729133,-3.4058266,-3.3623147,-3.3030725,-3.271272,-3.3200068,-2.9609146,-2.5247242,-3.3108969,-3.4170423,-3.3746214,-2.4193487,-2.727624,-3.5085495,-3.6106339,-3.543648,-3.4977756,-3.4183035,-3.3905487,-1.4962602,-2.7834687,-3.5512786,-3.8625293,-2.645718,-2.6422448,-3.9248824,-3.8162456,-4.052288,-4.078314,-3.9566393,-3.8562393,-3.7911816,-3.7083745,-1.9898767,-3.757554,-3.529342,-3.9372206,-4.0216856,-3.9613128,-3.250565,-2.7361715,-3.2107725,-3.400092,-3.218913,-3.552546,-3.2010884,-3.5556605,-3.8086662,-3.626379,-3.8351927,-3.9763408,-4.2811604,-4.283782,-4.186376,-4.0127916,-3.0672512,-3.969555,-4.0536637,-3.9630985,-3.2148912,-3.8236732,-3.766097,-3.6832075,-3.763732,-2.3434014,-3.8986773,-4.0994163,-4.004782,-3.8667545,-3.6315103,-3.5594482,-3.6778135,-3.663611,-3.7409887,-3.7381654,-3.4083595,-2.3987808,-3.62395,-3.92269,-3.795454,-3.7122808,-3.7229352,-3.7070942,-3.6487222,-3.725617,-3.5363216,-3.4915652,-3.3887663,-3.3069918,-3.4036326,-3.4187827,-3.3494406,-3.3159828,-3.3068085,-3.3986058,-3.4333591,-3.4050407,-3.2574573,-3.3290153,-3.2200518,-3.1378088,-1.0051696,-2.4507036,-3.6621706,-3.8397546,-3.8225026,-3.876431,-3.8301525,-3.5563786,-3.4694748,-3.5040627,-3.431436,-3.3819134,-3.3267074,-3.2878244,-3.2066932,-3.1967807,-3.1532722,-3.1083813,-3.1209507,-3.1051674,-3.221654,-2.8861632,-3.4017634,-3.3854818,-3.331307,-2.138214,-3.6643004,-3.8537974,-3.633429,-3.6117613,-3.5897915,-3.4434342,-3.4476821,-3.3084683,-3.2968469,-3.2357078,-2.1781254,-3.39342,-3.5279112,-3.612772,-3.5682828,-2.2946606,-3.866943,-4.1979184,-4.307425,-4.410978,-2.9401906,-4.32357,-4.43276,-4.4555182,-4.3043365,-3.036766,-3.9832563,-4.3224254,-3.6529684,-4.2256575,-3.9789248,-4.1658354,-3.9691796,-4.187884,-4.4386606,-4.3740115,-4.057835,-3.9457078,-4.047337,-4.193915,-4.1730275,-4.033522,-3.8171697,-3.517498,-3.9852862,-3.9125233,-2.5731835,-4.1510553,-3.752296,-3.5333238,-4.45729,-4.4680505,-4.477483,-4.388253,-4.5268893,-3.3888319,-4.4588437,-4.48089,-4.402786,-4.111036,-3.9114718,-3.6132147,-3.2007096,-3.495496,-4.518642,-4.4660687,-4.2916245,-4.0427947,-4.158469,-3.2222447,-3.564224,-3.1682434,-4.3938847,-4.631179,-4.7838054,-3.5257812,-4.358352,-4.589396,-4.590616,-4.628363,-4.5312057,-4.451139,-4.3722577,-4.335032,-4.3629107,-4.3220267,-3.7311873,-3.9652433,-4.057164,-3.4379365,-4.2417703,-4.3545403,-4.21711,-4.1784396,-4.144257,-4.066405,-4.001893,-3.5600543,-2.6982994,-3.6898842,-4.267903,-4.3691616,-4.3209186,-4.1371174,-3.9255843,-3.5147905,-4.1796145,-4.426597,-4.4312162,-4.4301276,-4.1199474,-2.6992097,-4.125774,-4.4080977,-4.3395505,-4.2486324,-4.224781,-3.8301797,-3.7045908,-3.9045072,-4.230081,-4.0570774,-3.9721003,-3.2179055,-3.8858361,-3.790347,-4.137434,-4.0868306,-4.107287,-4.0600095,-3.9793162,-3.7158113,-3.7494416,-3.6937752,-3.5660644,-3.4940531,-3.1287448,-2.8139582,-4.1216664,-4.454887,-4.208735,-3.6244228,-4.39949,-4.316019
+-1.2823293,-2.303249,-2.8130171,-2.958759,-2.9596903,-3.0353086,-3.1826408,-3.2674408,-3.2247396,-3.1129558,-2.2807004,-2.6559289,-3.5892467,-3.2548594,-3.9919205,-4.1717963,-4.0811152,-2.4551105,-3.382568,-3.3052115,-3.9743967,-4.33179,-4.4214883,-4.3775353,-4.3686905,-4.2569156,-2.7164545,-4.0534034,-3.7703419,-2.8824253,-3.81811,-3.644294,-4.283917,-4.502155,-4.5478325,-4.4500813,-4.3254523,-4.26381,-4.180544,-4.1111875,-3.9143128,-3.9006152,-3.821282,-3.8138213,-3.8251357,-3.728063,-3.6681118,-3.5044043,-3.353929,-3.5763252,-3.6808026,-3.6747675,-3.6827621,-3.6559834,-3.5705295,-3.0594602,-1.6682239,-3.3479857,-3.8316169,-4.0950003,-4.1673236,-2.7231212,-3.2513711,-3.311283,-3.9927077,-4.139793,-4.207138,-4.3524756,-4.25627,-4.197538,-4.1127415,-3.9789438,-2.9844499,-3.1565657,-3.3470469,-4.062248,-4.2068567,-4.111853,-2.4492776,-3.9045744,-3.9527416,-3.971685,-4.0707374,-4.0918384,-3.9653125,-3.8600354,-3.6635408,-3.5034604,-2.5713995,-3.8608003,-3.9497085,-3.9042387,-3.7544866,-3.6132216,-3.5292628,-3.406414,-3.5419884,-3.490034,-3.5004578,-3.4861045,-3.351381,-3.41722,-3.4070501,-3.3911152,-3.400497,-3.4121292,-1.5161178,-3.2512841,-3.448127,-3.494606,-3.4817023,-3.458223,-3.4465756,-3.481586,-3.159069,-2.5397732,-3.1321206,-1.9103897,-2.778271,-3.4729476,-3.9790492,-4.0259414,-4.0791287,-4.02842,-3.9320617,-3.8546557,-3.7404408,-3.2536454,-3.379068,-2.2932968,-3.7003832,-3.8400474,-2.6871698,-3.3113623,-3.6641018,-2.8252573,-2.5515227,-3.043265,-2.979133,-3.5364974,-3.416789,-3.682252,-4.024055,-3.7056308,-4.186525,-4.2671685,-4.216308,-4.319479,-3.015934,-2.8163066,-3.8735356,-4.179743,-4.242618,-4.169089,-4.106523,-4.0862575,-4.1153245,-3.19379,-3.2806187,-3.9652581,-4.043696,-4.066048,-3.1590388,-2.8781486,-3.7200742,-4.068916,-4.1490793,-4.150021,-4.1298594,-4.08954,-4.0405974,-4.0234857,-3.9818902,-3.9025855,-3.8403668,-3.7487445,-3.6968722,-3.6720667,-3.5307393,-3.6106198,-3.6038442,-3.657818,-3.7116017,-3.7896724,-3.7900176,-3.7754369,-3.735889,-3.6563165,-3.659862,-3.7168946,-3.7581058,-3.8225665,-3.928985,-3.9096494,-3.7359486,-3.7124534,-2.0561438,-3.357141,-3.5232754,-3.629947,-3.6629767,-3.7077565,-3.402495,-3.6310656,-3.9337635,-4.012584,-3.9888425,-3.9324431,-3.9184518,-3.8744855,-3.843471,-3.7881503,-3.7853408,-3.8354912,-3.748869,-3.6944814,-3.7214456,-3.7517962,-3.8431458,-3.9019632,-2.719325,-3.675604,-3.6945796,-3.7790527,-3.9426847,-3.9754024,-3.9375648,-3.9981298,-3.9193559,-3.9708748,-3.8401885,-2.8166494,-3.6931033,-3.834187,-4.075225,-4.053954,-1.9924977,-3.7116656,-4.044074,-4.1965976,-4.245691,-2.9031868,-3.4656653,-3.9996562,-4.041163,-4.134437,-2.2011235,-3.2287278,-3.4650908,-3.8452582,-4.398849,-4.2090335,-4.028096,-3.9971538,-4.056318,-4.090383,-4.0967937,-4.0725217,-4.0367146,-4.148991,-3.9616737,-3.8824658,-3.7639441,-3.80016,-3.8351378,-4.012382,-3.950325,-3.8580728,-3.882073,-3.8079915,-3.760757,-3.8367953,-3.8245063,-3.844172,-3.4142284,-3.912682,-2.634122,-3.8716435,-4.210426,-4.3825793,-3.8600202,-3.615424,-3.4365077,-3.4679198,-3.676699,-4.0184264,-4.025239,-3.974936,-3.9034843,-3.9006267,-3.6766386,-3.2865512,-2.5132225,-3.2268362,-3.976007,-3.8303995,-4.195559,-4.3986406,-4.3580947,-4.2373543,-4.2962294,-4.1619096,-4.1888695,-4.267531,-4.322525,-4.317796,-4.2238793,-4.0889416,-4.0419154,-3.9696918,-3.6442335,-3.8701386,-3.8451052,-3.8634624,-3.9193764,-4.042603,-3.843512,-3.7091928,-3.927174,-2.2502036,-3.6998324,-4.1450553,-4.271693,-4.216265,-4.103271,-3.3198,-3.4442987,-3.8731117,-4.1122003,-4.1519294,-4.2395387,-4.1839237,-4.096714,-3.934989,-3.8197565,-3.9439974,-3.9828534,-3.8092656,-3.167738,-3.2786906,-2.944254,-3.7890587,-3.9558454,-4.071202,-4.009095,-3.544719,-4.0785007,-4.2811036,-4.2371426,-4.2804427,-4.042895,-3.934197,-3.8551154,-3.8525996,-3.8341923,-3.7784195,-3.7820382,-3.768743,-1.7059433,-3.5768542,-3.9953647,-4.005219,-3.8215852,-3.7901425,-4.1971064
+-0.91682404,-2.21271,-2.8696108,-3.1701684,-3.2229853,-3.3015466,-3.3980403,-3.320621,-3.1365068,-3.0294123,-3.00331,-3.0936432,-2.0928183,-3.613943,-3.8448415,-3.859467,-3.6567543,-2.4693904,-3.6677673,-3.2120416,-3.5211344,-4.052549,-4.3610644,-4.457251,-4.4381194,-4.5178137,-3.3853831,-4.4520516,-4.366961,-2.6628442,-3.4266355,-3.118759,-3.8599954,-4.386865,-4.5192294,-4.5510964,-4.551665,-4.5268188,-4.392605,-4.513075,-4.4347997,-4.400269,-3.8761477,-4.338186,-3.1708221,-3.6986432,-4.359826,-4.4133987,-3.6895382,-3.7277021,-4.243793,-3.3569682,-4.2210755,-4.548824,-4.525066,-4.042279,-2.6922612,-3.8274245,-4.276713,-4.5027537,-4.536148,-3.645121,-2.597617,-3.304088,-3.396676,-4.0491157,-3.4176428,-4.007141,-4.1948495,-4.3776784,-3.961965,-3.8667655,-3.9040112,-3.143137,-4.3403525,-4.651392,-4.695461,-4.6484013,-3.9249253,-4.144884,-4.302338,-4.1195216,-4.4728265,-4.5281577,-4.2108335,-3.812406,-4.4697723,-4.275903,-4.0198326,-3.8913245,-4.29802,-4.2821894,-4.02681,-4.286511,-4.0318317,-4.205233,-4.1196103,-4.024669,-3.7670226,-4.031825,-2.6330366,-4.2083964,-4.2377844,-4.2050395,-4.053432,-4.0757017,-3.017445,-3.9834447,-3.0595064,-3.9490428,-4.1893225,-4.120082,-4.029747,-4.0575514,-3.830752,-2.8843293,-3.4235778,-3.3648415,-3.4796243,-4.157057,-4.279078,-4.219497,-4.142736,-4.0914073,-4.0173025,-3.9602785,-3.81208,-3.976191,-2.7904112,-3.583981,-3.8151765,-3.2719567,-3.7569618,-3.382709,-2.3058703,-2.6376903,-3.5060349,-3.057613,-3.4832664,-3.5442843,-3.8130012,-4.316159,-3.9788203,-3.5206313,-3.6709404,-4.272301,-4.2856917,-4.3082223,-3.3009443,-3.3876805,-3.865458,-4.196989,-4.3555794,-4.4246235,-4.3862977,-4.258861,-3.3525915,-3.4272742,-4.005314,-4.397387,-4.2148066,-4.352048,-4.408544,-4.315495,-4.023477,-4.1473956,-4.009213,-4.0729027,-3.5250905,-4.186896,-4.2727547,-4.190803,-4.149556,-4.052151,-3.9877667,-3.9352775,-3.9895158,-3.6061032,-3.6797235,-3.2770677,-4.051246,-4.10444,-4.1096425,-4.1439033,-4.209262,-4.1625757,-3.8164597,-3.6973839,-4.151853,-4.2964497,-4.34036,-4.3101325,-4.275913,-4.1945634,-4.212337,-4.228827,-4.2567573,-4.2637672,-4.239162,-4.223979,-4.2257223,-4.2300134,-3.6854215,-4.1943126,-4.3497205,-4.2771897,-4.269608,-4.23657,-4.216613,-4.249734,-4.258037,-4.220383,-4.227675,-4.2284317,-4.221124,-4.2075357,-4.2660623,-4.2512145,-4.383329,-4.3605514,-2.3907452,-4.0112786,-4.2984633,-4.233013,-4.2871876,-4.31507,-4.326952,-4.2382774,-4.2104855,-4.217406,-4.152756,-3.6160786,-3.7388835,-4.2258925,-4.357679,-4.309111,-2.5967038,-4.1361613,-4.373112,-4.3264966,-4.163498,-3.3880165,-4.177531,-3.524651,-4.3041697,-4.2923236,-2.4420195,-3.3667035,-3.2204185,-4.038578,-4.5780635,-4.3794036,-4.5336185,-4.6663885,-4.7015514,-4.49562,-3.9990277,-4.4970746,-4.6447387,-4.773578,-4.2857547,-4.782156,-4.6868744,-4.6162453,-4.4550233,-4.432344,-4.1864686,-4.206393,-4.317944,-4.1569543,-4.264608,-4.2339506,-4.2780766,-4.424884,-2.4609416,-4.2713804,-3.1931124,-4.272638,-4.675675,-4.7519817,-4.2587523,-4.390173,-4.251334,-4.1389656,-4.4057612,-4.7277856,-4.621609,-4.4595556,-4.3614225,-4.3722186,-3.7397356,-3.4219673,-3.7867084,-3.2114568,-4.3221087,-3.6105685,-4.234715,-4.4753695,-4.712668,-4.646119,-4.8189125,-4.8658433,-4.7000127,-4.8842006,-4.7276564,-4.709664,-4.6620398,-3.9982247,-4.428822,-4.721634,-4.54188,-4.4749093,-4.5098195,-4.5300126,-4.5799193,-4.657968,-4.386354,-4.4302373,-4.1993494,-2.8751626,-4.448475,-4.8501287,-4.1695704,-4.5633636,-4.5697274,-3.4047713,-4.0950446,-4.3213325,-4.598963,-4.628062,-4.7715144,-4.7214837,-4.437267,-4.287409,-4.2957625,-4.5104327,-4.5172772,-4.216649,-3.7199178,-4.189367,-3.0282106,-4.2192917,-4.5139685,-4.3469915,-3.8549485,-4.5596848,-4.597609,-4.8497324,-4.8426023,-4.590186,-4.425566,-4.506208,-4.393933,-4.347253,-4.3622937,-4.335072,-4.2670207,-4.0989285,-2.233971,-4.2317076,-4.6140885,-4.676703,-2.5663652,-3.4024909,-4.26121
+0.89165133,1.4960403,1.4848704,1.6006682,1.2379555,1.2676922,1.6281261,1.9871879,1.6017284,1.6667283,2.3504353,2.1169753,2.0134778,1.8618853,0.93215185,0.1871284,-0.29312277,-0.17272663,-1.3449874,-1.7605519,-2.0505254,-2.2700763,-2.5366502,-3.1960435,-2.6017275,-3.0900493,-3.2106085,-3.2814155,-3.3293128,-3.424306,-3.5016747,-3.6267447,-3.5659034,-3.60173,-3.7224574,-3.8462439,-3.6661189,-3.7626023,-3.8501754,-3.9003267,-3.8803315,-3.565674,-3.580083,-3.3575892,-3.253463,-3.4743447,-3.663731,-3.8002315,-3.8525715,-3.851915,-3.8747244,-3.9496865,-3.8637176,-3.4743197,-4.012438,-3.98414,-3.4617894,-3.6790802,-3.65662,-4.2374244,-3.7714868,-3.9772987,-4.004862,-4.273083,-3.4992876,-3.937633,-3.846025,-3.9107642,-4.068625,-4.2318344,-3.5388432,-4.2494736,-4.030762,-3.6178536,-4.1907234,-3.8526897,-4.3604207,-4.4660563,-4.4533353,-4.135202,-3.727827,-4.1162357,-4.3178577,-4.3145165,-4.358359,-2.9080925,-3.6497884,-4.057138,-4.264747,-4.081167,-3.9632134,-4.2041907,-4.3322716,-4.368849,-4.2312884,-3.9155846,-4.073134,-3.9323478,-3.4504075,-4.1187816,-4.3406854,-3.8562713,-4.1242995,-3.870029,-4.1205726,-4.3851533,-4.3496647,-3.8781238,-4.270481,-4.3638024,-4.3715386,-3.1664493,-4.217021,-4.447106,-3.839849,-4.3088775,-3.557114,-4.270084,-4.4626417,-4.427932,-4.3965797,-4.3369675,-4.3274417,-2.990149,-4.136628,-3.4271474,-4.025212,-4.3216376,-4.402222,-4.3859367,-4.1262784,-3.7278285,-4.4790673,-4.3700147,-4.0368886,-4.3469067,-4.402125,-4.367916,-4.338351,-4.285297,-4.2690215,-3.7059722,-4.141646,-4.228143,-4.2279077,-3.6318007,-4.084534,-4.097146,-4.190716,-3.2948675,-2.5888224,-3.7406259,-4.146376,-4.3784065,-4.271266,-4.1667905,-4.1307697,-2.8895023,-3.8137798,-4.332721,-3.5129654,-4.0191994,-4.3176017,-4.3483415,-4.3580737,-4.2574377,-4.1388326,-4.210086,-3.99571,-4.019722,-4.2680016,-4.2097945,-4.1776223,-4.2256045,-4.2738624,-4.339752,-4.281731,-3.1418302,-3.6270497,-3.5539272,-3.8626075,-4.252835,-4.4672155,-4.4969068,-4.42399,-4.4096446,-4.3382344,-3.9804382,-3.9847693,-3.129922,-3.6957855,-3.8316364,-3.9933662,-3.9990191,-3.5810575,-3.6992278,-3.9016728,-3.961803,-3.8932195,-3.6902385,-4.1111283,-3.8709273,-3.8173795,-3.9326224,-4.065294,-3.979948,-3.9692082,-4.0452724,-4.004088,-4.0705113,-4.122416,-4.0546308,-3.9303536,-3.7046385,-4.0761,-4.115231,-3.845694,-4.129837,-4.217921,-4.161653,-4.0252547,-3.913712,-4.0259905,-3.9863315,-3.8171039,-3.8483381,-3.981399,-3.9967198,-3.6218357,-4.058041,-4.125384,-1.961266,-1.8599429,-1.35254,-1.0456004,-0.92123216,-0.500027,-0.24352163,0.23247409,0.084290385,-0.3290847,-0.50443345,-0.42899364,-0.009625673,0.77471024,0.6706282,0.42519113,-0.44292307,-0.50295657,-1.0292711,-1.5965488,-1.6264877,-1.944643,-2.3642657,-2.6940954,-2.7099996,-2.7603607,-2.846789,-2.8658051,-2.880413,-2.9249654,-2.8885536,-2.8361115,-3.019927,-3.1649325,-3.0322893,-2.8745584,-2.9588966,-2.9816377,-2.9189725,-3.044759,-3.1433716,-3.152566,-3.231925,-3.269237,-3.2602234,-3.391889,-3.4059625,-3.3388963,-3.2889638,-3.2674332,-3.277515,-3.249619,-3.4218643,-3.4832468,-3.4321692,-3.3673005,-3.3787255,-3.3232625,-3.3300736,-3.366609,-3.2783825,-3.0704098,-2.930323,-2.977223,-2.839541,-2.5474663,-1.8023248,-2.0975485,-2.2709014,-1.8886406,-2.2275739,-2.5786667,-2.891982,-3.1070418,-2.9368458,-3.1501853,-3.243412,-3.2825756,-3.4751227,-3.4234262,-3.5079541,-3.5764606,-3.478405,-3.4452167,-3.5750084,-3.5288684,-3.2925434,-3.2443871,-2.6583266,-3.0612597,-2.8921986,-2.7747455,-2.4593525,-2.2806916,-2.379018,-2.4376664,-1.8654265,-1.8818862,-2.277771,-2.462001,-2.735392,-2.887521,-2.8208141,-2.9497743,-2.9444222,-3.269925,-3.2782593,-3.0050793,-2.593773,-2.5804713,-2.332809,-2.87893,-3.2704887,-3.4259257,-3.4871778,-3.5660925,-3.601038,-3.576255,-3.4645429,-3.374302,-2.3458524,-2.0095146,-1.6238415,-1.5365102,-2.4003916,-2.5195065,-2.3921947,-1.9771721,-1.7739899,-0.8620109,-0.39422345,-0.15912491,0.42484972,0.9136057
+-0.1793077,0.42531765,0.28754744,0.19571656,0.17509955,-0.41119903,-0.6778238,-0.87955815,-1.4798489,-1.5762091,-2.0811157,-2.4016109,-2.3590026,-2.4412346,-2.4808362,-2.5580359,-2.5689175,-2.5487437,-2.442089,-2.7952642,-2.8369627,-3.0442069,-2.9495296,-2.7293406,-3.0616899,-3.3916218,-2.9732404,-2.5922935,-2.949381,-3.1605744,-3.2481084,-3.1752458,-3.1381993,-3.1724014,-3.0735416,-3.1366668,-3.0389192,-2.979926,-2.9637454,-2.499227,-3.226772,-3.2672381,-3.2989354,-3.358863,-3.3059225,-3.2907133,-3.1769066,-3.1163082,-3.0589867,-3.0748827,-3.0156758,-3.0172195,-2.9706025,-2.9799707,-2.518056,-3.3915362,-2.986782,-3.5357304,-3.6931987,-3.8028536,-2.9989963,-3.815887,-3.8336062,-3.7289386,-3.3310485,-3.849308,-3.8511434,-3.895175,-3.884202,-3.7646694,-3.4905932,-4.015915,-3.7977328,-3.2731698,-3.9256258,-3.7091584,-4.049807,-4.0486064,-4.007878,-3.9636312,-3.785377,-3.9268079,-3.8170304,-3.7619338,-3.911841,-3.8504014,-3.6821442,-4.0096035,-3.8738852,-3.829104,-3.2452385,-4.0842366,-4.0536103,-3.989077,-3.8608232,-3.8300862,-2.9071825,-4.0492635,-4.0660295,-4.2341533,-3.9515715,-4.1902213,-3.6348934,-4.150566,-4.135122,-4.0935144,-4.2120495,-3.539658,-4.376927,-4.3061824,-4.149513,-3.8442845,-4.2754216,-3.1330917,-4.1718545,-4.206638,-4.4226775,-3.4916596,-4.1256413,-4.259289,-4.387581,-4.3516345,-4.291105,-4.240911,-4.166723,-3.0522904,-4.288716,-4.3818374,-4.357595,-4.332233,-4.2350736,-4.127862,-2.4781694,-4.0034375,-4.0812845,-4.2231355,-4.2498083,-4.2430344,-3.6417973,-4.3397007,-3.1499019,-3.38576,-3.9835458,-4.271169,-4.2714458,-3.5274186,-4.244432,-4.370131,-4.16939,-4.35354,-4.2843513,-4.1810403,-4.2385726,-4.2151065,-4.216724,-4.127627,-4.080267,-3.6087747,-2.8815255,-3.8309011,-4.0906825,-3.8629518,-4.1368985,-4.202702,-4.1657577,-4.1021,-4.150955,-4.1293926,-3.1665869,-4.150949,-4.281244,-4.1659846,-4.266523,-3.20824,-3.2237306,-3.9998426,-4.13448,-3.9709916,-3.9046674,-4.0182834,-4.1462936,-4.0905747,-4.0289674,-4.116752,-4.0731664,-4.033655,-3.9392142,-3.6968827,-4.0265536,-3.3861237,-3.7855535,-3.900578,-4.00654,-3.8532205,-3.9523692,-3.81458,-3.8844748,-3.775539,-3.7763782,-3.2435353,-3.5271347,-3.8824,-3.8243475,-3.813644,-3.8994746,-3.8302903,-3.7045765,-3.6397853,-2.570097,-3.6846652,-3.8014317,-3.8516932,-3.858346,-3.8884435,-3.836307,-3.9349866,-3.8999186,-3.903009,-3.87894,-3.8644753,-3.8552818,-3.8030329,-3.7389212,-3.7609143,-3.6324503,-3.3685863,-3.4628646,-3.562038,-3.6295497,-3.590846,-3.6020842,-3.206917,-3.426718,-3.1219175,-2.7445843,-2.201574,-1.880127,-2.399115,-2.635829,-2.6535993,-2.4189506,-2.3088813,-3.1429133,-3.375906,-3.3796296,-3.1574903,-2.8693771,-2.1216059,-2.0660963,-1.6346979,-1.4412937,-1.3736005,-1.3949888,-1.4545546,-1.3312178,-1.3744788,-1.4683142,-1.5523486,-1.66185,-1.805902,-2.007883,-2.2289643,-2.1889231,-1.9950199,-1.9484785,-1.9138479,-2.015173,-2.0315573,-2.0649087,-2.0225646,-2.1298692,-2.1559906,-2.0077467,-2.1449733,-2.0900962,-2.2130997,-2.2694426,-2.215796,-2.4758577,-2.5817165,-2.6160164,-2.5818012,-2.6060266,-2.567575,-2.3426456,-2.633372,-2.5948415,-2.6683686,-2.5419178,-2.5003638,-2.4467835,-2.152453,-2.1138253,-2.0339577,-2.1544929,-2.0288823,-1.7356791,-1.5994358,-1.2903755,-1.7405806,-1.7650423,-1.7468581,-2.0493023,-2.1886241,-2.4625201,-2.265964,-2.2421613,-2.4464133,-2.5318308,-2.5318265,-2.3755975,-2.5070176,-2.2726462,-2.4842343,-2.547088,-2.479122,-2.232481,-2.037851,-2.0914664,-1.8932295,-2.0933661,-2.1962054,-2.1287322,-1.7417455,-1.4988441,-1.6099167,-1.5855563,-1.9150171,-2.656413,-2.4098744,-2.3087459,-1.6342978,-1.2796357,-1.0250468,-0.9170005,-0.9565943,-1.2966042,-1.3588998,-1.203407,-1.2153723,-1.3158214,-2.2509062,-2.849455,-2.0994925,-1.3761749,-1.3283093,-1.2935648,-1.3600526,-1.2434082,-1.2779083,-0.9515373,-0.41614062,-0.36040592,-1.0464184,-1.8908553,-2.29702,-1.8519633,-2.2460103,-2.842607,-2.9409804,-3.0671966,-2.9816875,-2.9484098,-2.9960248,-3.0446482
+0.25375906,0.43099377,-0.04009697,-0.81850773,-0.99125904,-1.7689233,-2.0982013,-2.0265336,-1.9286876,-1.9148917,-2.2229693,-2.372343,-2.161237,-2.1009803,-2.109288,-2.109631,-2.176238,-2.1525402,-1.956671,-2.8262367,-2.9116397,-2.8959522,-2.816671,-2.6223295,-2.684372,-2.5791736,-2.326954,-2.9380908,-2.9234128,-2.520869,-3.0443366,-3.0730844,-3.1273775,-2.9397054,-2.9297543,-2.9254498,-2.666749,-2.8635762,-2.2796059,-2.9565098,-3.0060787,-2.9995136,-2.93341,-3.1236846,-2.9823673,-2.8971424,-2.7211502,-2.8844686,-2.819185,-2.7086105,-2.7064197,-2.7787151,-2.464746,-2.7054386,-2.6044028,-3.11173,-2.8138237,-3.1114402,-3.2787683,-3.1463609,-2.6396134,-3.439088,-3.3153634,-3.1400335,-2.8474193,-3.2585506,-3.1356072,-3.1459806,-3.0872464,-2.6322393,-3.2446675,-3.0367289,-3.12678,-3.2106748,-2.9172282,-2.9606135,-3.2096934,-3.297083,-3.238278,-3.2078636,-2.9497862,-3.0667143,-2.840697,-3.3490264,-3.1838732,-2.9499538,-2.7154691,-3.2661958,-3.1491928,-3.1571522,-2.8713644,-3.2967505,-3.158738,-3.157176,-3.077962,-3.013199,-2.7800426,-3.0928254,-3.315381,-3.2376359,-2.8072183,-3.3023677,-3.2041001,-3.2777271,-3.0914524,-3.0667691,-3.060577,-2.5273545,-3.1254678,-3.0812273,-3.3551512,-3.0942118,-3.001584,-2.2196765,-3.1966248,-3.1791117,-3.1343143,-3.0956633,-2.960084,-2.9669538,-3.1649866,-3.2032354,-3.193356,-3.256005,-3.1124864,-2.7680945,-3.3351135,-3.3110015,-3.0688214,-3.1413326,-3.105823,-2.9639668,-2.7213964,-3.1357727,-3.3671765,-3.1576848,-3.0863438,-3.0493672,-2.8984194,-3.3242269,-3.0040462,-3.309211,-3.235728,-3.1943078,-3.0558348,-2.2619202,-3.1800857,-3.1426687,-3.3510153,-3.1300807,-3.270988,-3.169775,-3.073203,-3.0803113,-3.0718634,-3.080954,-2.984418,-3.009723,-3.1882672,-2.2053475,-3.1290298,-2.4163496,-3.2963037,-3.339919,-3.2003508,-3.1039004,-3.2296042,-3.1153545,-2.6280608,-3.2378182,-3.1980333,-3.080017,-2.966337,-3.1830873,-2.3135884,-3.4327834,-3.1612818,-3.376374,-3.2993727,-3.0449612,-3.0822804,-2.8949933,-2.8440957,-3.0125685,-2.856952,-2.7890673,-2.7540102,-2.7465055,-2.8056874,-2.8379562,-2.9946437,-2.9662926,-2.9795337,-2.8129573,-2.9518404,-3.023271,-3.0583038,-2.9629803,-2.9342175,-2.927586,-2.9733443,-3.2580779,-3.219781,-3.0807705,-3.226767,-3.1370814,-2.993307,-3.0761242,-2.0232308,-3.024054,-2.9246144,-2.8380158,-3.0283031,-3.1626515,-2.9129434,-3.069213,-3.0094266,-3.044835,-3.0808525,-3.1333768,-3.1410143,-3.1413746,-3.0213556,-3.1229136,-3.0047057,-2.8795278,-3.0412908,-3.1344652,-3.1266408,-3.0585246,-3.042282,-3.0827978,-3.1055608,-3.033291,-2.757962,-2.2432165,-2.1433008,-2.0588136,-2.0216773,-2.0251703,-2.038,-2.1745832,-2.8330822,-2.8323765,-2.6915722,-2.557823,-2.4252315,-2.0426102,-1.8214321,-1.446341,-1.497611,-1.4780297,-1.4001157,-1.2586582,-0.9829511,-1.1922357,-1.2548399,-1.3662465,-1.433296,-1.2656603,-1.266777,-1.4696321,-1.3296261,-1.2945764,-1.4078703,-1.530309,-1.3781583,-1.8024478,-1.583355,-1.7077827,-2.036563,-1.9627326,-2.0645027,-2.0596018,-2.1330853,-2.1323965,-2.1605663,-2.4442067,-2.294723,-2.3245003,-2.326851,-2.3236642,-2.292674,-2.3081064,-1.8256269,-2.3450851,-2.3474638,-2.3379607,-2.3272347,-2.3786585,-2.0589821,-2.5920815,-2.4248304,-2.6504042,-2.7595754,-2.7795696,-2.5020602,-2.2698848,-2.302867,-1.7776573,-2.147379,-1.9763923,-2.1462967,-2.216846,-2.2947822,-2.3984103,-2.3627186,-2.3324757,-2.3590133,-2.3225183,-2.4561467,-2.455592,-2.5114145,-2.524334,-2.4516478,-2.3608408,-2.5175552,-2.62413,-2.4678926,-2.4029484,-2.479364,-2.4749644,-2.5211563,-2.31343,-1.9526408,-0.9132859,-2.1829824,-2.634408,-2.740795,-2.3751738,-1.917547,-1.2709932,-0.98444194,-0.6848546,-0.2990983,-0.3119039,-0.4952333,-0.50299984,-0.27437133,-0.7352937,-1.7526438,-2.4751558,-2.3338127,-1.9753795,-1.846343,-1.5499096,-1.3247039,-1.2377727,-1.1766758,-1.1295922,-1.0112839,-0.6405316,-0.5531102,-1.0353968,-2.0170853,-2.336623,-1.6724901,-2.01678,-2.272345,-2.5468702,-2.5200422,-2.714581,-2.4843965,-2.5883913,-2.6226258
+-0.10624111,-0.3884527,-1.1793191,-1.8740077,-1.9139614,-2.3471696,-2.6274405,-2.9051225,-2.8537388,-2.5607743,-2.8268752,-2.9395666,-2.8094096,-2.6037998,-2.4670644,-2.3617659,-2.3051891,-2.249218,-2.1529946,-2.7117155,-2.8281815,-2.7705789,-2.6861935,-2.5466475,-2.536356,-2.5004115,-2.41369,-2.8033452,-3.017377,-2.722722,-3.06634,-3.2510762,-3.1531074,-3.1423583,-3.1532145,-3.08968,-2.9410198,-2.8288093,-2.529343,-3.1099517,-3.2099807,-3.2019515,-3.0845103,-3.3321123,-3.2180574,-3.1186361,-3.051177,-3.0577288,-2.915061,-2.7782755,-2.7523131,-2.7304792,-2.6243298,-2.6458936,-2.7357106,-2.8975997,-2.829874,-2.8475423,-3.2533689,-3.3342361,-3.1347115,-3.1104026,-3.2559295,-3.2242396,-3.083292,-3.2640123,-3.2291152,-3.180013,-3.0676427,-3.017875,-2.9833803,-3.0343423,-3.1600642,-3.0990248,-2.9541419,-3.2192135,-3.324027,-3.3311439,-3.171658,-3.085794,-3.016208,-2.9935699,-2.4347477,-3.1184573,-3.3803282,-3.2648637,-2.9375682,-3.299029,-3.3992286,-3.2976635,-2.6567678,-3.529363,-3.5439186,-3.363232,-3.2269874,-3.1659226,-3.0863893,-3.4073966,-3.3138528,-3.2861052,-2.8442726,-3.2937398,-3.378895,-3.4489918,-3.565363,-3.4689608,-3.3847964,-3.164369,-3.4818773,-3.269651,-3.5076153,-3.379897,-3.2943926,-3.3544266,-3.3838708,-3.2920814,-3.2238324,-3.183776,-3.1371126,-3.122741,-3.04627,-3.0386884,-2.9180198,-2.9772377,-2.9953115,-2.9601111,-2.5664892,-3.1051798,-3.1289592,-3.0705914,-3.0813375,-3.0402699,-2.8134217,-2.2307081,-3.2752159,-3.1960478,-3.1833754,-3.0511608,-3.1786788,-3.045773,-3.0419335,-3.0456872,-2.9715736,-3.1123834,-3.021843,-2.9665246,-2.879259,-3.033795,-3.1598408,-3.1389117,-3.2598991,-3.2451377,-3.0787444,-3.0314355,-2.965128,-2.9433162,-2.9362285,-2.9443526,-2.8545082,-2.472103,-2.9882822,-3.2370853,-3.3159575,-3.182845,-3.1257055,-3.0665164,-3.0693882,-3.0288677,-2.6170664,-3.0014005,-3.1521168,-3.0938413,-3.0531962,-3.0050514,-2.9348905,-2.253642,-3.1290817,-3.0304441,-2.8661575,-2.8650606,-2.9334366,-2.9064,-2.8480487,-2.8579187,-2.8572655,-2.8179853,-2.7987456,-2.826116,-2.7874112,-2.849279,-2.8211505,-2.8763375,-2.7847104,-2.48439,-2.645412,-2.7794042,-2.8219461,-2.5959597,-2.590363,-2.4401398,-2.5651157,-2.7133403,-2.7945762,-2.7465067,-2.8236513,-2.780174,-2.7026606,-2.716138,-2.1443,-2.8662248,-2.9296064,-2.6997018,-2.8236158,-2.863515,-2.6188846,-2.5039873,-2.7114546,-2.7758687,-2.7184167,-2.7365856,-2.736422,-2.75114,-2.6547508,-2.6385963,-2.6776476,-2.6323729,-2.6976366,-2.8001392,-2.7468746,-2.6698582,-2.4665802,-2.4368258,-2.801095,-2.869911,-2.889652,-2.517914,-2.5990543,-2.475329,-2.5553892,-2.5342352,-2.4920187,-2.6321647,-2.6931567,-2.8027701,-2.8353572,-2.9026031,-2.8403902,-2.5962477,-2.7618876,-2.5434265,-2.5450869,-2.555185,-2.440649,-2.308876,-2.1378057,-2.1293838,-2.1753254,-2.1999404,-2.211678,-2.0549998,-2.1214898,-2.2482007,-2.1520133,-1.9801867,-1.930798,-1.8801141,-1.8129582,-1.6362538,-1.4620957,-1.4323547,-1.4437788,-1.4604166,-1.6279526,-1.5742364,-1.5932302,-1.5353618,-1.3880847,-1.4777613,-1.7178955,-1.763572,-1.746491,-1.667234,-1.6230719,-1.5737398,-1.5036356,-1.6547146,-1.9212377,-1.7334442,-1.7095823,-1.7310333,-1.4297779,-1.9243295,-1.8566697,-2.151562,-2.2364929,-1.6846464,-1.3426948,-1.1216812,-0.72029704,-0.72091454,-0.74131674,-0.7045774,-0.9497914,-1.0554392,-1.0126414,-1.1132569,-1.0574687,-1.366796,-1.4081006,-1.3275814,-1.4503865,-1.2770934,-1.2881038,-1.5515664,-1.5237768,-1.4115348,-1.2420263,-0.99597174,-0.84500843,-0.7784149,-0.7314052,-0.68333656,-0.39510912,-0.7249797,-1.6391323,-2.2611637,-2.4864295,-2.4484947,-2.4894295,-2.6888819,-2.7384267,-2.7453122,-2.6794045,-2.6104863,-2.8396206,-2.7982488,-2.8361847,-2.784153,-2.5251489,-2.4580028,-2.3175187,-2.892581,-2.8774142,-2.9422975,-2.9047432,-2.5590808,-2.2727528,-2.2397735,-1.9136271,-1.9137952,-1.8732405,-2.1245167,-2.3175263,-2.546241,-2.5141864,-2.7273433,-2.4668674,-2.2312717,-2.759258,-2.7922897,-2.863069,-2.8666909,-2.60773,-2.7965662,-3.098411
+-0.82923084,-1.8038378,-2.5008497,-2.5237803,-2.587521,-2.4469533,-3.1703181,-3.1849456,-3.1391397,-2.5637279,-3.144093,-3.1835246,-3.1429188,-3.0347295,-2.8761115,-2.77519,-2.7431943,-2.612382,-2.3415165,-3.038446,-3.246775,-3.5830934,-3.5781054,-3.443333,-3.241931,-2.6806545,-3.5732446,-3.313027,-3.6476207,-3.172517,-3.5532696,-3.5821872,-3.4762537,-3.4802423,-3.4439387,-3.3983095,-2.9283295,-3.68827,-2.874382,-3.4508615,-3.365241,-3.6432283,-3.386044,-3.6362956,-3.676825,-3.3523266,-3.596448,-3.5448961,-3.6444187,-3.303504,-3.7559638,-3.5716162,-3.4745526,-3.3333437,-3.1348238,-2.6806376,-2.9117212,-2.886211,-3.6255064,-3.79173,-3.609026,-3.7103925,-3.5354776,-3.429409,-2.8345103,-3.7911143,-3.5022745,-3.389506,-3.329947,-3.2132044,-3.0248353,-3.016876,-3.034109,-2.9784532,-2.7922883,-2.825871,-3.2725654,-3.2283638,-3.1890702,-3.1752543,-2.8975043,-1.9062641,-3.08566,-3.4192698,-3.4947798,-3.2434175,-3.1770694,-3.3166947,-3.2859797,-3.1777706,-2.7056832,-2.9858432,-2.4921708,-2.521555,-3.2550633,-3.4394083,-2.9117248,-2.9300673,-3.6593225,-3.9385939,-3.337605,-3.669179,-2.8439274,-3.4651754,-3.7431927,-3.9071498,-3.8174434,-3.489733,-3.3002808,-2.4386501,-3.4934313,-3.605742,-3.0234435,-3.678069,-3.65596,-3.5078406,-3.8494878,-3.680745,-3.4072423,-3.5848227,-3.516249,-3.410217,-3.1374729,-1.7996516,-3.1924024,-3.3788738,-2.523464,-3.4844992,-3.5007725,-3.6098409,-3.5022402,-3.36233,-3.174765,-2.5064723,-3.4990847,-3.6254997,-3.5391176,-3.5733335,-3.4174728,-3.4007578,-3.299141,-2.386905,-3.6226878,-3.6997795,-3.5037494,-2.8093746,-2.7073338,-3.53393,-3.1791387,-3.3479667,-3.5192962,-3.1362524,-3.6623087,-3.6578183,-3.6451182,-3.5821123,-3.5586777,-3.4589186,-3.2429104,-2.9598289,-2.6103764,-3.1301212,-3.0900102,-3.555503,-3.7132082,-3.5018587,-3.3713348,-3.4487324,-2.9438348,-3.4373922,-3.5372424,-3.4687502,-3.3105834,-3.2175903,-3.1627388,-3.282372,-3.3579953,-3.3613856,-3.5038822,-3.585769,-3.6216977,-3.639035,-3.6577103,-3.5901313,-3.527331,-3.587985,-3.51138,-2.4179578,-2.1226034,-2.9191365,-3.5067518,-3.7235284,-3.6883748,-3.6944776,-3.110651,-3.671887,-3.7113538,-3.4434366,-3.261344,-3.2001584,-3.334596,-3.6010568,-3.7959905,-3.5888596,-3.6829216,-3.6677227,-3.6739535,-3.7775254,-3.0231068,-3.5266714,-3.6377091,-3.550218,-3.6947064,-3.7557645,-3.6918926,-2.2744188,-3.629984,-3.8493018,-3.945869,-3.971518,-4.0220346,-3.4297771,-3.8280463,-3.9742074,-3.8806176,-3.894744,-3.9212008,-3.9168177,-3.89755,-3.8854027,-3.7479692,-3.8317637,-3.9625382,-3.5890179,-3.5318196,-3.6079512,-3.7406855,-3.8164496,-3.7451453,-3.7302918,-2.9443872,-3.069069,-3.7467847,-3.986206,-3.938291,-3.9515767,-3.900168,-2.7313476,-3.4091372,-3.1332066,-2.9532924,-2.405909,-1.8279142,-1.7204509,-1.579793,-1.5015686,-1.4441533,-1.2945907,-1.1995037,-1.1226552,-1.138866,-1.0783141,-1.125546,-1.0233216,-0.91183704,-0.87317795,-0.9473135,-0.7994332,-0.6627967,-0.5199382,-0.98482996,-1.4217007,-1.5351398,-1.66294,-1.6497602,-1.5362628,-1.4467709,-1.6193886,-1.5821996,-1.1636188,-0.9304623,-0.8860484,-0.88495034,-0.8958954,-0.86352867,-0.82823426,-0.6582138,-0.97797364,-0.8333759,-0.8856916,-0.26617146,-0.24333715,0.0012410283,-0.08343175,0.014538944,-1.2767458,-2.8939574,-3.1663764,-3.3621612,-3.2733917,-3.3113945,-3.1596026,-2.858283,-2.641003,-2.4922986,-2.6608267,-3.0779443,-2.8499246,-2.3542705,-1.9680877,-1.9438868,-1.975029,-2.5463636,-2.7106838,-2.0820217,-1.7923632,-1.9041305,-2.5976305,-2.9188662,-2.8679912,-2.9306803,-2.8717198,-3.1349921,-3.181411,-3.0858035,-2.9756947,-3.0878506,-3.1748347,-3.2625694,-3.4295094,-3.3657234,-3.0921893,-3.191397,-3.2115903,-2.956394,-3.3787842,-3.0891228,-3.0509887,-3.2219708,-3.034066,-2.54173,-3.681332,-3.4803066,-3.4274583,-3.081592,-3.0875683,-3.0712876,-3.1007824,-2.7474294,-2.732364,-3.021119,-3.0577123,-2.7249074,-3.194837,-3.1147132,-3.196704,-3.0339723,-2.1803224,-2.870973,-2.7830899,-3.242131,-3.4836822,-2.730586,-2.9328923,-3.098341
+-1.3234746,-2.0662918,-2.6548486,-2.8988686,-3.0344284,-2.9776697,-3.3844957,-3.5244064,-3.526966,-2.9664655,-3.3520446,-3.7657146,-3.6139827,-3.4429898,-3.2874737,-3.253785,-3.177236,-3.05786,-2.7527847,-3.3520954,-3.5892172,-3.5689807,-3.388265,-3.4098635,-3.342639,-2.6241663,-3.4755406,-4.0140533,-3.7840648,-3.4050798,-3.856238,-3.9367986,-3.892436,-4.0383472,-3.9434695,-3.8262024,-3.771174,-3.41767,-3.0310812,-3.38054,-3.3794785,-3.6565516,-3.6382017,-3.5483987,-3.6299264,-2.8133402,-3.1587582,-3.7277985,-3.9097986,-3.6870387,-3.9036775,-3.7486005,-3.6088467,-3.0009604,-3.8011198,-3.649995,-2.9644706,-3.7934232,-4.0429425,-4.0790973,-3.7467275,-3.6421447,-3.9377055,-3.323947,-3.6416705,-3.8717184,-3.667202,-3.540664,-3.436532,-3.3657033,-3.3092184,-3.2855172,-3.1992958,-3.0065093,-2.799253,-2.9092498,-2.9368582,-2.8634167,-2.9329877,-2.9232936,-2.769323,-1.794776,-3.0597587,-3.257731,-3.2074594,-2.947269,-2.3229184,-3.0727396,-3.3688588,-3.3307028,-2.791206,-3.2319956,-2.2690425,-1.8714294,-3.3598301,-3.7359805,-3.5484738,-3.5615878,-3.433819,-3.7312207,-3.8817706,-3.9374728,-3.2854137,-3.0701528,-3.793847,-3.9311156,-3.4898195,-4.0268483,-4.010239,-3.8029637,-3.6403458,-3.646442,-3.0189624,-3.6042752,-3.5347552,-2.5595512,-3.7375522,-3.8004742,-3.6976933,-3.7573104,-3.6868834,-3.1283307,-2.3013625,-2.8593764,-3.2461863,-3.5613363,-3.6896927,-3.712749,-3.721848,-3.5640974,-3.4169388,-2.8280327,-3.66523,-3.2566109,-3.728325,-3.7758555,-3.6560042,-3.845245,-3.8137698,-3.7038484,-3.491328,-3.0432758,-3.7022777,-3.5891013,-2.997753,-3.2254586,-3.2992136,-3.2638502,-3.14116,-3.1821022,-3.1209102,-3.0311522,-2.6055675,-3.2858243,-3.4001203,-3.438716,-3.3422523,-3.2926908,-3.040005,-3.0295453,-1.562051,-2.6085982,-1.8878226,-3.606116,-3.9511771,-3.8403573,-3.5737276,-3.4662519,-3.1955845,-3.6931653,-3.6592722,-3.7526517,-3.713348,-3.6205082,-3.5175858,-3.4438474,-3.3305151,-3.3165016,-3.2884705,-3.4469507,-3.3909583,-3.4322567,-3.4579592,-3.4096007,-3.378303,-3.380254,-3.3622582,-2.6350737,-2.6854072,-3.1471334,-3.2286856,-3.3359432,-3.3160405,-3.3696365,-3.3171544,-3.2320619,-3.3293104,-3.1037068,-3.0035563,-2.9556694,-3.215896,-2.27374,-2.3251057,-2.9525793,-3.0151548,-3.1516736,-3.0991213,-3.0805652,-3.036677,-3.131907,-3.0890942,-3.0207314,-3.1290822,-3.2215533,-3.1682074,-3.0104675,-1.7001691,-3.1334732,-3.3371043,-3.4381127,-3.4677374,-2.891624,-3.2952337,-3.3563123,-3.3077765,-3.2688494,-3.3309271,-3.3478656,-3.4032056,-3.3550348,-3.312717,-3.4741123,-3.6006327,-3.1604018,-3.2671237,-2.918811,-3.332527,-3.6156194,-3.5558078,-3.6166925,-3.52739,-3.3863502,-3.870378,-3.82159,-3.6489277,-3.633675,-3.5380664,-2.7818,-3.5638933,-3.4868083,-3.2891078,-3.2009892,-2.8545055,-2.5139375,-2.213539,-2.519395,-2.65069,-2.648349,-2.5060768,-2.1990018,-2.0010724,-2.3695698,-2.3212528,-2.2184677,-2.13694,-2.106032,-1.5939434,-1.9297571,-2.4437685,-3.0535636,-3.8734965,-3.6097457,-3.6379344,-3.417089,-3.327857,-3.2831097,-3.0664253,-3.618715,-3.3957572,-2.694424,-2.4426317,-2.4194496,-2.3834522,-2.1333785,-1.9979887,-2.7571597,-3.3828125,-2.9744692,-2.7327418,-2.4718316,-2.352991,-3.0218701,-3.5228658,-3.3354154,-3.5787857,-3.9089456,-3.686115,-3.832008,-3.7209554,-3.834334,-3.794063,-3.5437257,-3.470151,-3.249447,-3.454966,-3.5244527,-3.5456846,-3.356028,-3.0670328,-2.7286196,-2.822905,-3.065767,-3.5821595,-3.7865295,-3.2061405,-3.0631227,-3.4032903,-3.66098,-3.5224676,-3.371584,-3.624669,-3.410448,-3.60138,-3.5055752,-3.4954047,-3.3041072,-2.840575,-3.4710515,-3.4516883,-3.5970724,-3.5073206,-3.1853614,-3.3733497,-3.4497705,-2.784985,-3.482922,-3.4386883,-3.412188,-3.729135,-3.7876248,-3.218965,-3.9136796,-3.3989568,-3.8392582,-3.3733778,-3.4669044,-3.403438,-3.4825668,-3.4217043,-3.176762,-3.6497965,-3.6233363,-3.1811986,-3.5376773,-3.3254094,-3.3903458,-3.4092283,-3.1862025,-2.4653127,-3.53102,-3.561172,-3.5243,-3.464126,-3.2305639,-3.7737155
+-1.864644,-2.7112114,-2.979778,-3.0678988,-2.9702446,-2.8091528,-3.2630033,-3.5381024,-3.4760165,-3.0551627,-3.13842,-3.8421884,-3.932115,-3.927548,-3.8785567,-3.7846022,-3.7611928,-3.6945367,-3.7043977,-3.5238664,-3.9608593,-4.19607,-4.123424,-4.014155,-3.9747505,-3.4632728,-3.5387676,-4.284262,-4.0284033,-3.8545508,-4.451684,-4.44681,-4.5145726,-4.497783,-4.562075,-4.507437,-4.535736,-4.4393487,-3.904365,-3.825676,-4.681275,-4.078946,-4.6142144,-4.81506,-4.6772256,-3.6117272,-3.1379714,-4.2051945,-4.508625,-4.349651,-4.5582705,-4.6450276,-4.6151986,-3.9861789,-4.529962,-4.3521028,-4.059386,-4.8103027,-5.0128856,-4.6604524,-4.6815434,-4.686301,-3.9768014,-4.2995777,-4.6445866,-4.8178916,-4.9377627,-4.9055395,-4.8296494,-4.936406,-4.864402,-4.8283854,-4.26188,-4.417458,-4.9802284,-5.001758,-4.921648,-4.9642367,-4.898159,-4.886517,-4.8376684,-4.769996,-4.7146363,-4.675881,-3.3973703,-4.9719195,-4.767956,-4.80392,-4.935962,-4.884269,-4.267327,-4.486157,-4.3111124,-3.9895654,-3.5297003,-4.758401,-4.88768,-4.7194104,-4.9081683,-5.0087132,-4.8461885,-5.0612884,-4.8665843,-4.932068,-4.728739,-4.9490814,-4.9620585,-5.0185747,-4.9298625,-4.852988,-4.84256,-4.9094048,-4.8077607,-4.768414,-4.7586284,-3.453271,-4.552978,-4.8467727,-5.039078,-4.2628117,-4.977839,-4.20942,-4.7606087,-5.123175,-4.2499137,-5.07048,-5.0426426,-3.964799,-4.707392,-4.521297,-4.767835,-4.281198,-4.9484706,-4.3582892,-4.548674,-4.412536,-4.493043,-4.963378,-5.0216813,-5.008243,-4.6596518,-4.907924,-4.8500648,-4.7091975,-4.2343125,-4.891524,-4.881253,-4.4054694,-4.7447667,-4.920026,-4.7288885,-4.790132,-4.2975926,-4.694849,-4.5633984,-4.5771546,-4.5813193,-4.4909825,-4.4562874,-4.4533396,-3.7613587,-4.4145737,-4.0864596,-4.7677155,-4.6655307,-4.594523,-4.61196,-3.8344393,-3.4270878,-4.063009,-4.574424,-4.7198586,-4.715278,-4.574483,-4.4844346,-4.480674,-4.410632,-4.1737256,-4.014484,-4.6001906,-4.6740394,-4.6423917,-4.5827765,-4.417776,-4.394034,-4.3893337,-4.2105904,-3.7283783,-4.3305717,-4.427464,-4.2950993,-4.21137,-4.1399283,-4.1593223,-3.0244224,-4.35701,-4.0682206,-4.4819603,-4.4471087,-4.3290744,-4.3591995,-3.5355935,-4.0696526,-4.4153056,-4.3307686,-4.302218,-4.302177,-4.2396164,-4.299963,-4.3415003,-4.2304416,-4.1463733,-4.165668,-4.166779,-4.0786986,-4.0650964,-3.6700978,-4.3023815,-4.2306986,-4.181866,-4.284057,-4.30498,-4.349978,-4.317473,-4.3503976,-4.3085265,-4.4028163,-4.409001,-4.332155,-4.202862,-4.1368985,-4.081741,-4.364516,-4.348439,-4.3489366,-4.0958,-3.8118358,-4.5341654,-4.6158085,-4.6519713,-4.620313,-3.7789192,-4.568809,-4.793011,-4.76971,-4.766804,-4.717897,-4.279983,-4.745827,-4.7660985,-4.7757845,-4.476485,-4.0151134,-3.7851043,-3.8864627,-4.4132724,-4.598212,-4.3780932,-3.9181333,-3.563979,-4.032038,-3.6531215,-2.9683576,-2.9741726,-3.2227921,-3.5266612,-2.7912908,-4.020392,-4.509061,-3.7839298,-4.6345563,-4.672728,-4.6481056,-4.517553,-4.5215716,-4.712853,-4.4759574,-4.737122,-4.5057735,-3.7923965,-3.2574527,-2.95367,-2.8071513,-2.7849705,-2.8022346,-4.311499,-4.71313,-3.1969957,-2.6733317,-2.7502923,-3.5191522,-4.032002,-4.298103,-4.1162915,-4.364345,-4.439729,-4.009734,-4.3236127,-4.293981,-4.3157907,-4.404985,-4.345408,-4.356558,-4.459946,-4.6042647,-4.612373,-4.6277375,-4.4397254,-4.0788803,-3.7386346,-4.0401893,-4.4475756,-4.4127793,-4.6181197,-4.1433115,-4.228191,-4.488369,-4.4785113,-4.436688,-3.9667578,-4.5529027,-4.5430546,-4.5543036,-4.360829,-4.5018644,-4.334305,-3.3890302,-4.322024,-4.349139,-4.486601,-4.4462256,-4.2308464,-4.3168645,-4.19827,-4.243775,-4.502564,-4.437262,-4.2870116,-4.547607,-4.367502,-3.5420957,-4.3077607,-4.092011,-4.218222,-4.0728316,-3.9272003,-3.7192616,-4.1835256,-4.0558667,-4.018809,-4.343373,-4.364379,-4.331282,-4.2279525,-3.9314127,-4.1199822,-4.2381625,-4.2466726,-2.8447576,-4.3817787,-4.311127,-4.4898324,-4.2970004,-3.7600822,-4.555335
+-1.803287,-2.4568691,-3.0417926,-3.289252,-3.287935,-3.3875632,-3.2784443,-3.458828,-3.4301312,-3.3206325,-2.9890554,-3.5380893,-3.8427806,-3.8065228,-3.8016896,-3.8701816,-3.767899,-3.9027505,-3.661992,-3.7686505,-3.9443908,-4.101562,-4.1288,-4.172173,-4.139059,-4.1414585,-2.8930788,-4.0484953,-3.180368,-3.6599765,-4.016018,-4.6672893,-4.521044,-4.5210023,-4.4810004,-4.486424,-4.6039433,-4.6868834,-3.7788053,-3.081915,-4.579327,-3.7292523,-4.624068,-4.7122416,-4.629443,-4.7973742,-3.7703042,-4.3870482,-4.566132,-4.097553,-4.5568233,-4.7369742,-4.8288164,-2.9817193,-3.7510715,-4.7086973,-3.7548509,-4.838285,-5.038278,-4.148454,-4.421649,-4.934005,-5.016093,-3.4918299,-4.2893796,-4.967074,-4.9882975,-4.9789195,-4.9427915,-5.05915,-5.048594,-5.04473,-3.3045392,-4.703447,-5.040646,-4.9541726,-4.9695516,-4.701103,-4.8863683,-4.928291,-4.8528805,-4.800045,-4.797591,-4.661819,-3.9639316,-4.8053145,-4.144377,-2.9992967,-4.619747,-4.9716268,-4.222011,-3.5442576,-4.716434,-4.9809494,-3.7416081,-4.9137754,-4.8883905,-4.92569,-4.762576,-3.1805668,-4.8503833,-5.028162,-4.8756824,-4.871598,-2.9884243,-4.740359,-4.97097,-4.936849,-4.9538503,-4.9262433,-4.9100266,-4.8877344,-4.8689256,-4.6841245,-4.782474,-4.711536,-3.3257308,-3.804288,-4.776979,-3.0726922,-4.412725,-4.135321,-3.965548,-5.046598,-5.0673213,-5.047251,-4.9270015,-2.8361936,-4.1766706,-4.348902,-4.9581532,-5.076859,-5.0342813,-4.9089255,-3.211182,-3.50151,-3.203082,-4.299619,-4.864771,-4.8048725,-4.933491,-3.978767,-4.9892354,-5.084218,-5.1365185,-5.0789213,-5.02911,-4.9585185,-4.714389,-4.8749204,-3.9470983,-4.9373574,-4.974697,-4.85086,-4.603738,-4.620724,-4.656436,-4.7278867,-4.3163657,-4.6106453,-4.482221,-4.6347547,-4.6183825,-4.4000382,-4.6388316,-4.704652,-2.6715002,-4.105149,-4.5072885,-3.081205,-4.520162,-5.0411553,-5.0661993,-5.109428,-5.0626616,-5.052919,-4.996927,-4.996468,-4.72574,-4.636576,-4.7151313,-4.4152856,-4.50405,-4.5173345,-4.5588784,-4.5626864,-4.609048,-3.472757,-4.4597735,-4.7930064,-4.403835,-4.5404067,-4.7152085,-4.6711173,-4.468949,-2.5921996,-3.8260775,-4.7010736,-4.7531314,-4.731849,-4.7193837,-4.8489337,-4.138551,-4.4657483,-4.7380934,-4.8130116,-4.7988124,-4.766254,-4.7747073,-4.646103,-4.6467643,-4.5786166,-4.5457954,-4.558584,-4.548227,-4.5721936,-4.4986234,-4.367656,-4.3201156,-4.4070454,-4.45421,-4.3945565,-4.1994786,-4.3222213,-4.3451138,-4.1861176,-4.2588487,-4.461637,-4.2823434,-4.399995,-4.497127,-2.8085668,-4.161086,-4.291837,-4.4183383,-4.247755,-2.7021747,-4.3463836,-4.849474,-4.9408965,-4.904222,-3.9328098,-4.8422055,-4.859942,-4.7519603,-4.6865296,-4.631417,-4.5195556,-4.7950034,-4.378711,-4.719013,-4.540997,-4.291453,-4.085521,-3.8167195,-4.250962,-4.3877788,-4.4108205,-4.2361746,-4.0529294,-4.195313,-4.2698445,-3.9768734,-3.840756,-3.6580086,-3.830172,-3.7921124,-3.840219,-4.6022015,-4.6297927,-4.554021,-4.5988317,-4.669095,-4.4837403,-4.437958,-4.5038466,-3.8177118,-4.563291,-4.660562,-4.389765,-4.0689793,-3.8939977,-3.636346,-3.231416,-3.0551996,-4.040596,-4.397923,-4.0706954,-3.7464895,-4.1578364,-4.326714,-4.569116,-4.672465,-4.4098134,-4.637762,-4.725496,-4.2322793,-4.57727,-4.693086,-4.6211305,-4.566768,-4.46739,-4.499774,-4.4846067,-4.5508456,-4.594991,-4.4946294,-4.4769945,-4.2929244,-4.2131457,-4.215709,-4.3656545,-3.2548733,-4.2664676,-4.522616,-4.277884,-4.470333,-4.4778333,-4.3444486,-3.365009,-4.0887923,-4.5153666,-4.5579047,-4.5453258,-4.5879188,-4.640552,-3.4761105,-4.484348,-4.868437,-4.6980004,-4.559403,-4.5298014,-4.503445,-4.535956,-3.7583032,-4.3558974,-4.4286213,-4.4874496,-4.507062,-4.316633,-3.184116,-4.295875,-4.5285153,-3.9456744,-4.41756,-3.9286966,-3.9960241,-4.472696,-4.1931033,-4.0620418,-4.169583,-4.2111554,-4.204736,-4.3545504,-4.31377,-3.08777,-4.0350995,-4.581388,-2.287775,-4.0087085,-3.0135233,-4.4354887,-4.6836653,-4.456444,-4.6944137
+-0.611493,-1.2615788,-1.976248,-2.3832994,-2.3580344,-2.4461637,-2.534578,-2.6033635,-2.6942537,-2.2704866,-2.1525745,-3.0869527,-3.351276,-3.3658178,-3.2745852,-3.0221162,-2.8882492,-2.84302,-2.4182844,-3.1666977,-3.35456,-3.3824599,-3.2958913,-3.1162772,-2.9449277,-2.772343,-2.500227,-2.719604,-2.01377,-2.2831879,-3.4179974,-3.4881806,-3.5781362,-3.8852596,-3.8625326,-3.7766538,-3.561347,-3.245655,-2.8574429,-2.5023346,-3.4234552,-3.4256608,-3.475238,-3.3508651,-3.1074078,-2.5509393,-2.8170762,-2.7116578,-2.586591,-2.1847816,-2.569863,-2.5308285,-2.4359498,-2.2249534,-1.7820182,-2.2031293,-2.1921635,-2.4898636,-2.3018594,-2.3473868,-2.4903255,-2.8067088,-3.3371427,-3.1438892,-3.2279778,-3.634563,-3.6328197,-3.5272017,-3.3704526,-3.2142997,-3.0109386,-2.72974,-2.62032,-1.7859278,-2.7439318,-3.0848846,-3.044766,-2.9086342,-2.8214955,-2.5912025,-2.4980989,-2.4906306,-2.4210396,-2.41052,-2.3598292,-2.3423715,-2.3097856,-1.5778294,-1.9102099,-2.5506496,-2.5666819,-1.823503,-2.232068,-2.5175962,-2.5222998,-2.3836884,-2.5297172,-2.534767,-2.5064788,-1.9441414,-1.5722342,-2.6407473,-2.9379969,-2.8580148,-2.7223434,-2.0483224,-2.6144767,-3.2599301,-3.297348,-3.2465076,-2.827577,-2.605045,-2.9101944,-2.6508415,-2.8480015,-2.7517653,-2.8065631,-1.9502106,-2.6254349,-2.0870905,-2.3450844,-2.4057665,-2.8153768,-2.9381084,-2.9491673,-3.0177782,-3.0787091,-2.0083494,-2.337548,-2.9455585,-3.3805685,-3.4612179,-3.4259233,-3.3431587,-2.4686964,-3.0138874,-3.238757,-3.0572524,-3.658605,-3.756044,-3.718264,-3.2494817,-3.670223,-3.7116213,-3.628405,-3.6215537,-3.4573545,-3.332024,-3.0167694,-3.1397762,-2.985874,-3.0789928,-3.1156898,-3.1516492,-3.0616877,-3.1139004,-3.0938392,-2.9530377,-2.9772978,-2.9612412,-2.9702187,-2.9229958,-3.0095198,-3.1521435,-3.205009,-3.2027826,-3.3868232,-3.3913567,-3.4116077,-3.3041344,-1.8567371,-3.3288095,-3.5424905,-3.5795746,-3.6086504,-3.583366,-3.5193703,-3.5164776,-3.555808,-3.5044627,-3.424893,-3.3743234,-3.3391168,-3.2740865,-3.3512177,-3.4423516,-3.4640331,-3.3886833,-3.4433813,-3.513242,-3.5650258,-3.552411,-3.59346,-3.5513349,-3.484566,-1.337832,-1.9286342,-2.9970548,-3.170609,-3.2211502,-3.208579,-3.1767147,-2.4988103,-2.9367104,-3.229186,-3.2171254,-3.1788673,-3.2278557,-3.1738968,-3.1172376,-3.1731765,-3.1245632,-3.1022267,-3.0876513,-3.0902205,-3.0877852,-3.1158595,-3.3164387,-3.3380742,-3.374672,-3.371103,-3.3840852,-3.5288122,-3.5279603,-3.552083,-3.604328,-3.542437,-3.5649467,-3.529196,-3.5288253,-3.5082014,-2.626074,-3.2182646,-3.4199896,-3.466136,-3.420525,-2.3309293,-3.2541444,-3.481883,-3.5609148,-3.5226746,-2.2695348,-3.227583,-3.4463525,-3.7538838,-3.6954637,-3.2039912,-3.4559593,-3.8000884,-3.4842815,-3.746529,-3.5779893,-3.648274,-3.4034905,-3.5549219,-3.1602824,-3.788044,-3.8806152,-3.7982287,-3.6007395,-3.6894214,-3.6068592,-3.7866979,-3.4314451,-3.2785711,-3.7687554,-3.7956824,-2.509748,-3.5222595,-3.7669196,-3.7291875,-4.005256,-4.099782,-4.185941,-4.0542407,-4.042255,-3.5065186,-4.0513186,-4.0633674,-3.989244,-3.7443886,-3.6693392,-3.3005009,-2.900126,-2.9217014,-3.8270345,-3.834433,-3.625371,-3.6930947,-3.7725568,-3.6726358,-3.3875618,-4.112716,-3.8027444,-4.168317,-4.247154,-3.5705452,-3.9057136,-4.2448144,-4.1857944,-4.299878,-4.2850356,-4.2115107,-4.1771817,-4.139875,-4.0238776,-3.8838277,-3.586804,-3.4598174,-3.4199002,-3.3918824,-3.3106587,-2.8185,-3.6519847,-3.8647866,-4.0308247,-3.792624,-3.6256504,-3.5098553,-3.0140586,-3.3272653,-3.8748374,-4.1362686,-4.0161204,-3.761365,-3.5639176,-2.7614863,-3.7314305,-4.014542,-4.1263146,-4.1365485,-4.1317,-3.390994,-3.9694772,-3.7277637,-4.0406675,-4.145943,-4.154127,-3.3737442,-3.6472783,-3.31911,-3.8987107,-4.0983663,-3.9201608,-3.7834005,-3.8270478,-3.8479838,-3.9279828,-3.936994,-3.7685013,-3.72046,-3.457357,-3.1394315,-3.1599934,-3.0603714,-2.8349996,-2.7273984,-2.5247335,-1.8763423,-3.3415015,-3.2210355,-3.4629033,-3.2130089,-3.2065291,-3.3244662
+-1.2577419,-2.2234015,-2.8529067,-3.1377454,-3.2191439,-3.4192758,-3.4549856,-3.5658734,-3.5234888,-3.4220772,-2.8159208,-4.253713,-4.3966537,-4.4677773,-4.356972,-4.5049796,-4.374463,-4.2192483,-3.3969417,-4.0790753,-4.4364696,-4.5151963,-4.43156,-4.355515,-4.4198165,-4.4115586,-3.9138117,-4.43496,-4.1474357,-4.042428,-4.49473,-4.185968,-4.466925,-4.5130763,-4.4694257,-4.4139147,-4.3456187,-4.377079,-4.226517,-4.370815,-4.284792,-4.187376,-4.1554904,-4.146175,-4.069238,-3.7998443,-4.1354275,-4.172141,-3.99582,-3.9571633,-4.0329323,-3.970502,-3.9035096,-3.9004645,-3.8720345,-3.916892,-3.3389003,-4.374922,-4.408656,-4.1814475,-4.000047,-4.2458506,-4.3271737,-3.7994118,-4.375186,-4.388521,-4.2705564,-4.2749104,-4.1675706,-4.1076484,-4.0760655,-3.852378,-3.747437,-4.033011,-3.291504,-4.3416553,-4.513737,-4.4441075,-4.3732696,-4.2735076,-4.17007,-4.2044435,-4.241698,-4.244548,-4.1696014,-4.0138345,-4.027181,-3.9151788,-3.7361484,-3.9682508,-3.8760653,-3.7868228,-3.7772336,-3.808395,-3.8120317,-3.220431,-4.3689046,-4.311248,-4.2412853,-3.9328494,-3.5953226,-4.0781927,-4.458123,-4.3942704,-4.289055,-3.9408164,-3.9812446,-4.2035165,-3.8685918,-3.9778724,-3.938559,-3.854383,-3.6677523,-3.6584244,-2.9709477,-3.9653602,-4.0286174,-3.219865,-3.7213101,-4.4726543,-4.413505,-3.9409728,-4.4073005,-4.449173,-4.354269,-4.264583,-4.120628,-3.500518,-4.251122,-3.9363923,-4.2454405,-4.255813,-3.983129,-3.893559,-3.735372,-3.7295108,-3.8219762,-3.263465,-4.0916257,-4.3141704,-4.2850003,-4.503075,-4.4850497,-4.133455,-4.4431977,-4.4212294,-4.3344436,-4.3031826,-4.1413465,-4.0622773,-3.9666233,-3.7052245,-4.033939,-4.0182424,-3.9231043,-3.8343892,-3.7216568,-3.6979938,-3.7934241,-3.874826,-3.884849,-3.862463,-3.4262166,-3.9206295,-4.0756545,-3.899571,-3.7954326,-3.6306965,-3.5647697,-3.6629636,-3.4375374,-3.8999991,-3.7344127,-3.6149511,-3.608623,-3.6474643,-3.580523,-3.5608914,-3.5552201,-3.4641006,-3.4664226,-3.4860396,-3.5257075,-3.4460397,-3.359706,-3.3153462,-3.3501296,-3.4057646,-3.4403286,-3.4309578,-3.420646,-3.4391007,-3.419921,-3.4355218,-3.446493,-2.9191751,-2.4125872,-3.2980466,-3.9106889,-4.030273,-4.0677094,-4.0528493,-3.9347968,-3.8221765,-3.9209838,-3.8678203,-3.8745117,-3.7698512,-3.6821165,-3.6896152,-3.632386,-3.6269464,-3.6831079,-3.6210794,-3.5509477,-3.5200973,-3.5930963,-3.520228,-3.390677,-3.4278138,-3.2542126,-3.4292314,-3.5382056,-3.5339346,-3.5528946,-3.5157871,-3.5685782,-3.601566,-3.5741863,-3.506886,-3.5303192,-2.6491563,-3.826714,-4.0900726,-4.200978,-4.3126817,-3.337235,-4.430358,-4.515567,-4.4645753,-4.492787,-3.4230106,-4.4212003,-4.619189,-4.597314,-4.4323545,-3.7312603,-4.317496,-4.552275,-4.2842546,-4.4841495,-4.343112,-4.3052044,-4.2100015,-4.3093104,-4.2835994,-4.5049796,-4.336156,-4.1822553,-4.3553977,-4.2455106,-4.1421423,-4.182813,-4.0018077,-4.0149217,-4.393372,-4.4675407,-4.225468,-4.343562,-4.21139,-3.885573,-4.5030384,-4.4974837,-4.594126,-4.415377,-4.5728297,-3.9790463,-4.500185,-4.5773635,-4.581947,-4.36074,-4.0281568,-3.7638078,-3.6272054,-3.8959508,-4.3612447,-4.3072114,-4.222261,-4.1720705,-4.162163,-4.0103292,-3.9205732,-4.425246,-4.2059546,-4.6108527,-4.658474,-4.128186,-4.5626235,-4.6203465,-4.575538,-4.5695677,-4.561191,-4.564355,-4.550842,-4.531264,-4.483526,-4.390781,-4.0322127,-4.3307176,-4.4428973,-4.176037,-4.4687448,-4.4130063,-4.4061227,-4.333695,-4.418944,-4.3165174,-4.2597575,-3.9377847,-3.8208137,-4.3834558,-4.430178,-4.468669,-4.349422,-4.140971,-4.039882,-3.6408217,-4.473945,-4.5454774,-4.517079,-4.536504,-4.429709,-3.7064328,-4.4412227,-4.5169463,-4.4190373,-4.3403087,-4.3115535,-4.1849065,-4.3896422,-4.062407,-4.4411616,-4.4324827,-4.313518,-4.414864,-4.424952,-4.491757,-4.46429,-4.4035153,-4.3131957,-4.3193994,-4.275369,-3.9977612,-4.0599966,-4.065263,-3.9491496,-3.9313288,-3.9273953,-3.2197835,-4.3857493,-4.4778104,-4.2723866,-4.177971,-4.05061,-4.341541
+-0.7127103,-2.2174644,-2.8628063,-3.1843348,-3.3446627,-3.5391932,-3.6293647,-3.7327414,-3.6698766,-3.5244477,-3.0377347,-3.4274685,-3.909287,-3.8403368,-3.7209558,-4.1408963,-4.2064056,-4.1636195,-4.1041503,-3.4848888,-4.1612067,-4.511411,-4.61033,-4.5284185,-4.4807305,-4.4757266,-3.70863,-4.511751,-4.455197,-3.4310489,-4.330438,-4.0998883,-4.518576,-4.625502,-4.6183877,-4.530886,-4.4433274,-4.378903,-4.270048,-4.30595,-3.9819846,-3.675739,-4.4071956,-4.4033823,-4.1136003,-3.6296687,-3.710167,-4.3952837,-4.3447814,-4.229976,-4.396087,-4.315078,-4.2093453,-4.168582,-4.101203,-4.0124454,-2.6554341,-3.868163,-4.3194513,-4.2451353,-4.3573422,-4.279945,-3.6925611,-3.5415797,-3.933659,-4.2363777,-4.283903,-4.4590845,-4.3988023,-4.380074,-4.223971,-3.8492723,-3.7268882,-3.3886485,-3.9887948,-4.551952,-4.5726857,-4.491635,-3.3903155,-3.3448355,-3.7798772,-4.224485,-4.2800503,-4.403,-4.36847,-4.1763434,-4.142531,-3.3097653,-3.4218087,-3.6301045,-4.163056,-4.352725,-4.347517,-4.314878,-3.8582306,-3.8150449,-4.42718,-4.3725977,-4.3143306,-3.4698448,-4.0714087,-4.2766557,-4.2570615,-3.4734826,-4.207353,-3.8133578,-4.153732,-4.2440753,-4.2143693,-4.166165,-4.1123996,-3.9913793,-3.43971,-4.0564723,-3.2470422,-4.043576,-3.5174131,-2.926157,-3.3318074,-4.1312947,-4.312366,-3.9223614,-4.240124,-4.344617,-4.2377496,-4.1567864,-4.1104207,-3.442945,-4.168591,-3.1717207,-4.016657,-4.01316,-4.100387,-3.5187314,-3.8115878,-3.268168,-3.9919658,-3.272574,-3.6998901,-4.049667,-3.6419835,-4.386005,-4.2820163,-4.3898745,-4.442716,-4.478235,-4.4686866,-4.3843246,-4.315047,-3.7575321,-4.152079,-4.3712416,-4.359692,-4.2897763,-4.222837,-4.159679,-4.194505,-3.0889943,-3.783317,-4.301034,-4.0796466,-4.3832726,-4.403588,-4.1859508,-3.9789739,-4.2368884,-4.225898,-4.2124095,-3.8516998,-3.4919071,-4.216964,-4.3653994,-4.285704,-4.2859044,-4.2731223,-4.206643,-4.163773,-4.127867,-4.135444,-4.0154996,-4.027615,-4.0198884,-4.055826,-4.070658,-4.1119056,-4.1122346,-4.1492996,-4.1327004,-4.139327,-4.1696606,-4.188593,-4.1731143,-4.1667514,-4.152636,-4.0332875,-4.0476394,-4.093759,-4.016005,-4.005583,-3.9905334,-3.9811149,-4.0034566,-3.0561566,-3.8089528,-4.1991267,-4.297446,-4.2548747,-4.258121,-4.1843915,-4.1503005,-4.110252,-4.0345864,-3.9844418,-3.9750586,-3.9829154,-4.053701,-4.0120106,-3.8774314,-4.0469213,-4.12236,-3.970488,-3.983601,-4.1213446,-4.130127,-4.2074237,-4.155108,-4.0992656,-4.0507007,-3.9448013,-3.9415836,-3.9424367,-3.7974896,-3.5506854,-3.8536215,-4.151261,-4.278183,-2.1636443,-3.9743161,-4.423805,-4.486563,-4.598659,-2.7768855,-3.7845588,-3.694118,-4.2280574,-4.280812,-2.5832663,-3.6001053,-3.3412488,-3.682833,-4.391745,-4.269647,-4.010588,-3.9769292,-4.2338653,-4.390446,-3.8402486,-4.3327193,-4.2983847,-4.5582848,-4.4964375,-3.693565,-3.8144221,-3.7303157,-3.8029523,-4.2412667,-4.2566733,-4.3164515,-4.4423513,-4.3526635,-4.1027627,-4.480363,-4.3814373,-4.241856,-3.5284858,-4.3379655,-3.3739,-4.2480516,-4.5053964,-4.639788,-3.8462577,-3.6769967,-3.416195,-3.2329953,-3.7538114,-4.4602532,-4.4483027,-4.3397775,-4.191403,-4.232557,-4.126754,-3.5557277,-3.5070648,-3.156712,-4.2851725,-3.5492258,-3.6948438,-4.14269,-4.5651565,-4.5993805,-4.6139646,-4.4696774,-4.423033,-4.486019,-4.474196,-4.5162287,-4.497067,-4.234717,-3.9740596,-3.9217868,-3.8238587,-4.2458797,-4.2449183,-4.2835703,-4.1659713,-4.2685785,-4.20619,-4.236954,-3.8052554,-3.452614,-3.7459736,-4.0923533,-4.249166,-4.2270255,-4.1394205,-3.9171944,-3.3040059,-4.1908574,-4.603633,-4.651957,-4.55456,-4.3945913,-3.88802,-4.367747,-4.1507053,-4.299582,-4.176317,-4.1299863,-3.8527408,-4.1455283,-3.2916527,-4.0789638,-4.225288,-4.1352277,-4.021273,-3.7358794,-4.285666,-4.385409,-4.2934074,-4.2970014,-4.1390414,-4.1794686,-3.9464383,-4.042999,-4.0350027,-4.0022016,-3.9205298,-3.947784,-2.5702055,-4.1554747,-4.4708366,-4.4783826,-4.33063,-3.345324,-4.2626595
+-0.17948267,-1.1862931,-2.17613,-2.8309278,-3.0542572,-3.1737776,-3.1522942,-3.0897424,-2.9107997,-2.700591,-2.4758246,-2.5916524,-2.3739128,-3.3923984,-3.141179,-3.4318252,-3.2576761,-3.4828846,-3.6284947,-3.3445578,-3.5884707,-3.8185296,-3.9525943,-3.922051,-3.8420787,-3.833002,-3.2542315,-4.030416,-3.8542008,-2.9662085,-2.741269,-3.7063298,-3.618349,-3.8476148,-4.0152802,-4.113112,-3.980245,-3.832776,-3.4509454,-3.4505968,-3.2852728,-3.2158499,-3.049372,-2.8797932,-2.6715105,-2.093163,-2.8585415,-3.2117639,-3.4416418,-2.9272633,-3.4788597,-3.5155823,-3.5029576,-3.3050017,-3.1150808,-2.9330704,-2.4197521,-2.3394332,-3.1889758,-3.1942286,-3.017173,-2.5627394,-3.0657325,-2.781002,-2.7764273,-3.4528942,-3.6309888,-3.714727,-3.5401099,-3.2131248,-3.0461245,-3.1669314,-3.4824924,-2.7866545,-3.7399092,-4.0087066,-3.9019532,-3.6675515,-3.15858,-3.2010734,-3.1225483,-2.9776268,-3.0232434,-3.00098,-2.8778856,-2.7467704,-2.7886906,-2.3335085,-2.1341376,-2.7746375,-2.8361385,-2.8720453,-2.9137735,-2.876399,-2.6721778,-2.6431553,-2.3792713,-2.6544535,-2.2335742,-2.6667986,-2.3494976,-2.3699257,-2.2265825,-2.4830482,-2.5849109,-2.338759,-1.8603389,-2.55947,-2.3559704,-2.70727,-2.9561987,-2.8937247,-2.7883394,-2.435042,-2.644442,-2.3654056,-2.3678787,-2.5842605,-2.8875291,-3.078404,-3.0827098,-3.0542662,-2.8038878,-2.7626157,-2.6399627,-2.6044602,-2.356645,-2.678612,-2.4349926,-2.291981,-2.4665852,-2.0508933,-2.2307782,-1.4084051,-0.9132076,-2.7236593,-2.9050362,-3.1048913,-3.1661627,-3.1236944,-3.1943467,-3.4616513,-3.6038296,-3.4632618,-3.3891783,-3.1925921,-3.0021262,-2.9463289,-2.6747012,-3.029849,-2.8873138,-3.1241062,-3.0475292,-2.8989658,-2.76619,-2.8155937,-1.941953,-2.386111,-2.8779612,-3.0211487,-3.0029829,-3.159699,-3.2349398,-3.091847,-3.1305523,-3.0186257,-3.159687,-3.1518283,-2.9033208,-3.0725794,-3.446605,-3.4197717,-3.2744672,-3.0633206,-2.88804,-2.7832923,-2.7147188,-2.578472,-2.498319,-2.3100584,-2.674501,-2.6296158,-2.5453687,-2.7317865,-3.0710616,-2.880626,-2.5357158,-2.817955,-2.8713164,-2.969522,-2.9928489,-2.8697693,-2.9250247,-3.0089393,-2.9396036,-2.9497313,-2.952776,-2.9954925,-2.9629126,-2.928242,-2.913127,-2.7380676,-2.585107,-2.8435304,-2.9236453,-3.0171204,-3.0872133,-3.0790193,-3.07473,-3.2245746,-3.1735463,-3.0977879,-3.1130717,-3.1492784,-3.1289897,-3.1323953,-3.1657214,-3.310442,-3.4056249,-3.358026,-2.281597,-3.1548727,-3.3281083,-3.2512057,-3.4142413,-3.4303858,-3.4734302,-3.3602104,-3.3017435,-3.314785,-3.2067182,-3.1268976,-2.9024372,-2.96756,-3.0010338,-3.0735343,-1.8296661,-2.7405963,-2.991921,-3.0692902,-2.9651666,-2.6657825,-2.390048,-1.9262886,-2.538528,-2.8078547,-2.1072345,-1.906332,-2.5864577,-3.1262598,-3.5403976,-3.654565,-3.5530465,-3.68501,-3.6675684,-3.15025,-3.3481846,-3.6095989,-3.7632623,-3.8158317,-3.6475744,-3.687682,-3.731789,-3.8992186,-3.8716054,-3.6256218,-3.4544632,-3.4774046,-3.582661,-3.4583912,-3.494947,-3.4188519,-3.513717,-3.643259,-2.4075859,-2.6451492,-3.1344748,-3.6468673,-3.9050236,-4.0241504,-3.9351292,-3.8746352,-3.8279328,-3.9070673,-3.815103,-3.8561568,-3.772551,-3.7078643,-3.76431,-3.7575412,-3.495979,-3.4796505,-3.5113792,-2.6843934,-3.6811376,-3.445656,-3.9114437,-4.0291495,-4.1481767,-4.051689,-4.2552247,-4.329143,-4.2391915,-4.2529526,-4.1902103,-4.123373,-4.0317187,-3.9487839,-4.0209866,-3.9180107,-3.66616,-3.6636703,-3.5995896,-3.9002957,-3.864801,-3.8289795,-3.6247308,-3.6797676,-3.310267,-3.2934303,-3.7120142,-3.8892837,-3.6611123,-3.6527567,-3.5169556,-3.2406497,-2.940888,-3.8614302,-4.0891724,-4.085962,-4.0794168,-4.1141467,-3.9167533,-3.8528047,-3.6518965,-3.9492946,-4.0101275,-3.7161336,-3.391111,-3.3501275,-2.8651607,-3.6821125,-3.9356294,-4.130227,-3.8373046,-4.1714544,-4.032709,-4.1697645,-4.2040086,-4.059835,-3.882865,-3.8438816,-3.584804,-3.4980633,-3.4887393,-3.4683242,-3.3554034,-3.0132995,-2.6564002,-3.7527618,-3.9582143,-3.9083982,-3.7183204,-2.6044528,-3.7187285
+1.4640455,1.9228206,1.4064658,0.7348969,0.09930238,-0.63746464,-1.0858157,-1.8446498,-2.1347322,-2.2866597,-1.4929357,-1.1829915,-1.2915072,-0.683123,0.6732433,0.9603031,0.30547047,0.15424317,-0.09637755,-0.36944586,-0.5171801,-0.82729477,-1.1057103,-1.2329245,-1.0666578,-1.7026799,-1.9969494,-2.2352822,-2.385625,-2.6153555,-2.7699065,-2.9939752,-2.8722906,-2.998246,-3.1818864,-3.2164474,-3.1106172,-3.243049,-3.3796382,-3.4794443,-3.3728628,-2.953843,-3.280613,-3.1516957,-3.373347,-3.3541927,-3.4832034,-3.6580913,-3.6792433,-3.6675959,-3.6007502,-3.6863246,-3.6240125,-2.761977,-3.6916707,-3.8340468,-3.9487243,-3.0740185,-3.4598582,-3.8197489,-3.7860732,-3.906269,-3.9731507,-4.158574,-3.11836,-3.5922987,-3.8976846,-3.7966037,-3.8686976,-4.040224,-3.409201,-4.1273675,-4.062486,-3.3917375,-3.9501476,-3.609861,-4.125338,-4.2999825,-4.2260556,-3.839879,-3.3987098,-3.7957115,-4.1672373,-4.258413,-4.2970834,-2.9054565,-3.7086482,-3.9821239,-4.1724076,-3.9946208,-3.8205261,-4.091686,-4.2630687,-4.3112044,-4.253679,-4.1001086,-4.180219,-4.2721677,-3.1639493,-4.1470103,-4.185913,-3.7835855,-3.531759,-3.854815,-4.1341023,-4.3526144,-4.3258586,-3.341926,-4.107268,-4.327773,-4.3600745,-3.1486063,-4.159182,-4.3654227,-4.1877003,-4.364636,-4.2717443,-4.4841733,-4.4256644,-4.3861394,-4.293776,-4.267237,-4.2534733,-2.9141245,-4.146399,-3.6718996,-4.212149,-4.3406863,-4.3746357,-4.3527255,-4.273909,-3.5899503,-3.6621196,-4.385406,-4.2290916,-4.352096,-4.366895,-3.9650397,-4.3577995,-4.3614774,-4.3632913,-3.1259074,-3.965817,-3.9918027,-4.313852,-4.295484,-4.3068643,-4.2053795,-4.178708,-4.029035,-3.3268056,-4.236053,-4.23414,-4.3326735,-4.2325444,-4.1166244,-4.0875344,-2.7577975,-3.7322822,-4.3047013,-3.825831,-4.1557717,-4.1909704,-4.3430953,-4.087561,-4.1358542,-4.2365103,-4.291655,-3.6221368,-3.620051,-4.2561684,-4.0667233,-4.2121477,-4.2333474,-4.134669,-4.3515086,-4.2460146,-3.3605914,-3.6747835,-3.7338204,-4.101853,-4.3474703,-4.4302983,-4.417277,-4.356457,-4.3285346,-4.246604,-3.3377953,-3.9088807,-3.4331172,-3.586462,-3.7610693,-3.9618888,-3.992908,-3.7940617,-3.7296987,-3.902989,-3.6632354,-4.0448236,-3.4685087,-4.0579033,-3.8698106,-3.7380471,-3.8379197,-3.9604778,-3.4109156,-3.7054543,-3.7108402,-3.6528702,-3.867189,-3.773707,-3.953042,-3.7946048,-3.4954426,-3.9089365,-4.0163326,-3.7313142,-3.990623,-4.0845494,-4.0842295,-3.998067,-3.8419442,-3.936492,-3.906034,-3.5923877,-3.8203855,-3.9278293,-3.8922772,-3.2194467,-3.794958,-3.7075453,-2.451787,-2.4941936,-2.325153,-1.9755735,-1.8557568,-1.2787328,-1.1638005,-0.77330977,-0.7354241,-1.039361,-0.52691394,-0.34954065,-0.16078818,0.8650827,1.3244047,1.264879,0.2213502,-0.56682956,-0.9605288,-1.4745085,-1.3661382,-1.7958183,-2.257935,-2.6561093,-2.8036742,-2.91754,-3.0568154,-3.1601875,-3.1374154,-3.2093291,-3.1710377,-3.233079,-3.3803809,-3.481038,-3.3444438,-3.1450796,-3.2904315,-3.3315325,-3.208809,-3.352723,-3.3730385,-3.4510484,-3.490139,-3.6109576,-3.5796027,-3.6468437,-3.676717,-3.6514275,-3.587768,-3.5816708,-3.63795,-3.588017,-3.731791,-3.7097855,-3.8163266,-3.6834345,-3.7168975,-3.674251,-3.7352958,-3.735063,-3.6156068,-3.4161882,-3.3906958,-3.3863444,-3.280358,-3.171266,-2.4854963,-2.5393329,-2.806724,-2.4127264,-2.4937792,-2.8582366,-3.1565447,-3.315275,-3.4690619,-3.5020342,-3.5544791,-3.628113,-3.7552195,-3.7675357,-3.8218136,-3.86065,-3.8313613,-3.7555633,-3.8551288,-3.8443503,-3.7514577,-3.6133351,-2.94212,-3.4088035,-3.4212844,-3.3655634,-3.0699239,-3.0321002,-3.0966828,-3.001184,-2.397048,-2.4321852,-2.9461265,-2.9859395,-2.9612012,-3.1974118,-3.328536,-3.4258919,-3.350861,-3.5586848,-3.5050616,-3.3312845,-3.3627155,-3.1483834,-2.890362,-3.2762437,-3.5488768,-3.6802478,-3.7061086,-3.7501407,-3.8021626,-3.8034348,-3.6294794,-3.6323028,-2.783376,-2.8935347,-2.4163709,-2.223507,-3.014217,-3.2015963,-3.2754052,-2.9384317,-3.151042,-2.5684626,-1.9126058,-2.323577,-2.317479,-2.0370255
+-0.30827886,-0.053780735,-0.46090513,-0.15094838,-0.6279666,-1.0454624,-0.66465443,-0.58080226,-1.0780253,-1.1440847,-1.3235984,-2.4576983,-2.3678625,-2.6483212,-2.672402,-2.667341,-2.644703,-2.567798,-2.4329739,-2.686243,-2.536515,-3.294899,-3.1071799,-2.6758013,-3.6520498,-3.6140535,-3.5020165,-3.1525054,-3.5148,-3.357761,-3.3380175,-3.1588972,-3.028225,-3.1063886,-3.1722965,-3.0317974,-2.864677,-3.045632,-2.8558095,-2.403205,-3.567658,-3.367136,-3.628408,-3.6492171,-3.3602881,-3.2076466,-3.1677444,-3.1274006,-3.1027634,-2.990345,-2.821033,-2.791232,-2.7019644,-2.517761,-2.7069533,-3.4890797,-3.6603146,-3.5376616,-3.810802,-3.9493585,-3.63817,-3.5797486,-3.8817945,-3.5805526,-3.3543816,-3.8465838,-3.7554173,-3.6853917,-3.6079512,-3.445847,-3.3339252,-3.4399166,-3.544145,-3.381681,-3.869492,-3.4709096,-3.9009786,-3.8460255,-3.732777,-3.6787806,-3.6170382,-3.7583833,-3.4184363,-3.1760967,-4.026567,-3.8051286,-3.6897035,-3.8941016,-3.7451105,-3.6245418,-3.4156387,-3.8587518,-3.7176852,-3.5262935,-3.3765647,-3.2751932,-3.1435804,-3.746941,-3.7311578,-3.7520075,-3.4541154,-3.54984,-3.3790307,-4.0466905,-3.7969537,-3.7230344,-3.8854494,-3.5695183,-3.8859344,-3.6791253,-3.5473878,-3.5283833,-3.8173208,-3.6863623,-3.9765887,-3.8529272,-3.6115406,-3.2169645,-3.1278105,-3.7381968,-3.7918162,-3.8261886,-3.747847,-3.5681894,-3.8736224,-3.3770132,-4.0214148,-3.8413548,-3.7152638,-3.652214,-3.5388758,-3.4946897,-3.31467,-3.821015,-3.6507146,-3.7562442,-3.8848138,-3.7722802,-3.5442343,-3.9353714,-3.5986624,-3.6828809,-3.9685626,-3.9464326,-3.8476748,-3.5401263,-3.907949,-3.8313541,-3.683968,-3.780662,-3.6712685,-3.628377,-3.6635947,-3.595492,-3.6232243,-3.5935328,-3.5040684,-3.4363015,-3.1915376,-3.5235395,-3.8960495,-3.6070333,-3.8840156,-4.034305,-3.9565654,-3.8665366,-3.8498988,-3.7686,-3.5143552,-3.9252262,-3.8007684,-3.6565578,-3.7433925,-2.5568204,-2.8229847,-3.640163,-3.9581575,-3.8172393,-3.8660955,-3.9961934,-3.8887453,-3.7345634,-3.6624136,-3.607936,-3.588028,-3.580689,-3.536859,-3.3492577,-3.853963,-3.7549195,-4.065472,-3.7684817,-3.7882743,-3.5911589,-3.799986,-3.8257165,-3.6976914,-3.5883892,-3.4438398,-3.1305914,-3.83711,-3.8641362,-3.7710686,-3.6785305,-3.5845041,-3.612321,-3.667098,-3.5349085,-2.9838133,-3.9033747,-3.854525,-3.8052845,-3.7807488,-3.9268188,-3.7250004,-3.7391467,-3.7433782,-3.777862,-3.722259,-3.6976905,-3.7033296,-3.6920242,-3.774373,-3.7581086,-3.7061596,-3.5878115,-3.4790742,-3.6017284,-3.7706409,-3.723218,-3.6278353,-3.5306926,-3.51517,-3.3128753,-3.0837045,-2.8166795,-2.2170205,-2.9796267,-3.0456283,-3.1115274,-2.8031778,-2.5846648,-3.358912,-3.710575,-3.5617309,-3.4672565,-3.1402254,-2.5882502,-2.660862,-2.1981027,-2.2178116,-2.1799219,-2.1477008,-2.1621501,-1.8638694,-2.0902812,-2.1473475,-2.1205497,-2.1767268,-2.153636,-2.1284099,-2.5708733,-2.4021752,-2.4623868,-2.5242095,-2.570753,-2.4500358,-2.5404775,-2.4793239,-2.237157,-2.483636,-2.5759676,-2.590824,-2.622902,-2.5632062,-2.717977,-2.5799422,-2.4398804,-2.7570572,-2.8501954,-2.8755345,-2.8621168,-2.9289215,-2.749226,-2.3839195,-2.8749928,-2.9658194,-3.065962,-2.9767678,-2.950035,-2.8159356,-2.4841304,-2.6599107,-2.5871582,-2.4908996,-2.4069576,-2.2249846,-2.1332374,-2.0096803,-2.2718158,-2.2035682,-2.337924,-2.5549064,-2.6319094,-2.8495498,-2.5785155,-2.5440316,-2.7946134,-2.8695438,-2.892668,-2.6322212,-2.7763634,-2.574408,-2.6120043,-2.8254662,-2.772071,-2.5164928,-2.3394785,-2.566977,-2.4015431,-2.382595,-2.5293732,-2.4452705,-2.337207,-2.0744796,-2.128931,-1.8361223,-1.4547865,-1.9973226,-2.3093758,-2.1649141,-1.9941261,-1.8079915,-1.5983844,-1.4170763,-1.5281172,-1.8445246,-1.9994175,-1.8634071,-1.582403,-1.9499955,-2.0782828,-2.4406319,-2.069511,-1.9828565,-1.9111161,-1.6650274,-1.6862814,-1.8049166,-1.7897637,-1.7778392,-1.537792,-1.450613,-1.4217856,-1.6231153,-1.9154742,-1.9381394,-1.9524927,-2.978735,-2.9637551,-3.026434,-3.1117287,-3.133234,-2.9856787,-3.227477
+-0.82584506,-1.0451984,-1.4483685,-1.742804,-1.394376,-2.0294251,-2.6352656,-2.6940053,-2.667902,-2.4050252,-2.6494555,-2.805067,-2.59009,-2.6405005,-2.66211,-2.7436237,-2.7847538,-2.8246446,-2.7628164,-2.9160466,-2.967526,-2.962309,-2.9128008,-2.8138893,-2.9324956,-3.008922,-2.7451952,-2.902936,-2.986264,-2.4828503,-3.3041625,-3.3059459,-3.3481266,-3.096846,-3.5254214,-3.5656528,-3.5287578,-3.3923755,-3.3798118,-2.809284,-3.5252316,-3.64902,-3.485853,-3.5344076,-3.6041365,-3.5687242,-3.4420347,-3.3956623,-3.280385,-3.299998,-3.262672,-3.3110995,-3.25203,-3.3213654,-3.0860171,-3.2987843,-3.0729654,-3.309421,-3.7653441,-4.0619874,-3.827026,-3.5509124,-4.0920544,-4.253365,-3.6782718,-4.019768,-4.185756,-4.1484737,-4.08352,-3.0896134,-4.2242303,-3.8267775,-3.847961,-4.258904,-4.169904,-3.7779074,-4.305662,-4.4582767,-4.437555,-4.385182,-4.398538,-4.2625175,-4.2436004,-4.2668505,-4.228622,-4.261537,-3.337434,-4.5826325,-4.507967,-4.490707,-3.9210076,-4.5360427,-4.5261183,-4.420379,-4.3848743,-4.319778,-3.3619256,-3.8604298,-4.579004,-4.6079593,-4.3441033,-4.4430084,-4.2710037,-4.492192,-4.3918285,-4.3342013,-4.3031487,-3.3331547,-4.5680194,-4.6310697,-4.0619683,-4.552239,-3.454471,-3.2119155,-4.2910295,-4.4973054,-4.6299567,-4.639034,-3.6481445,-4.1067195,-4.5139594,-4.671082,-4.647044,-4.6326594,-4.5673723,-3.3456514,-4.081822,-4.6713085,-4.614969,-4.6336284,-4.6515203,-4.506965,-3.5280986,-3.7784448,-4.2522235,-4.667388,-4.7003756,-4.676086,-3.685007,-4.70274,-3.5089037,-3.6056623,-4.450077,-4.7082257,-4.7086415,-2.5378,-4.1718946,-4.380388,-3.9277759,-4.40023,-4.4999022,-4.5007195,-4.4283514,-4.5046916,-4.479091,-4.4911594,-4.465691,-4.4420342,-4.3515706,-2.2337174,-4.1222954,-3.6177192,-4.158381,-4.4371705,-4.484528,-3.735361,-4.3387227,-4.476857,-3.5769196,-4.3075485,-4.512591,-4.1235394,-4.383744,-3.224621,-2.6088881,-3.8877392,-4.206701,-4.267469,-4.1040626,-4.18006,-4.3626857,-4.2633615,-4.3736596,-4.3796253,-4.3394723,-4.3353014,-4.333223,-4.1057997,-4.375652,-4.346024,-4.2408357,-4.2923484,-4.4070106,-4.2102313,-4.0477405,-4.143589,-4.188456,-4.1568065,-4.1245065,-4.159457,-4.155644,-4.242915,-4.180646,-4.0500245,-4.175115,-4.130406,-4.0266857,-4.0081353,-2.3682446,-3.9391508,-4.095929,-4.057261,-4.198749,-4.2777123,-4.1806664,-4.296198,-4.2688103,-4.2480097,-4.2446613,-4.230229,-4.218764,-4.1796775,-4.0572495,-4.073338,-3.969627,-3.7337236,-3.6618369,-3.8721824,-3.9660077,-3.9433017,-3.934288,-3.9782624,-3.7342792,-3.4220421,-3.0950246,-3.0328345,-2.3864598,-3.449373,-3.595736,-3.503192,-3.4176128,-2.8028195,-3.7098045,-3.938161,-3.8405948,-3.7508159,-3.531535,-2.747251,-3.1044233,-2.959072,-2.4145274,-2.0038743,-1.7952895,-1.6766274,-1.5615795,-1.5028021,-1.5866909,-1.67151,-1.7321415,-1.6670685,-1.6836581,-1.932323,-1.9177315,-1.9013762,-1.9002781,-1.8189042,-2.0024967,-1.8823197,-1.9631834,-1.9201684,-1.7996011,-1.9497836,-1.8457918,-1.8958607,-1.876596,-2.0067215,-2.0684464,-2.034315,-2.1895514,-2.438428,-2.4579365,-2.4324262,-2.4211736,-2.312512,-2.1052256,-2.1302862,-2.2418745,-2.2931352,-2.1577234,-2.1395514,-2.1874838,-2.2573361,-1.8395665,-1.8362803,-1.9970822,-1.69417,-1.2956009,-1.4587882,-1.1690648,-1.7350681,-1.5119452,-1.2132719,-1.4948282,-1.785471,-2.0063682,-1.9496632,-1.6969435,-2.0161815,-2.191918,-2.2561622,-2.171095,-2.2022774,-2.162654,-2.1306782,-2.273108,-2.2357874,-2.0330634,-1.6558678,-1.5373111,-1.5371826,-1.6863835,-1.8325036,-1.6876876,-1.3162222,-1.050117,-1.7888398,-2.0724854,-3.379897,-3.6683805,-2.6941671,-2.6805718,-2.2892766,-1.7861621,-1.4650807,-2.017044,-2.3237638,-1.8312659,-1.5098028,-1.272315,-1.750623,-2.324803,-3.2107852,-3.1082904,-2.908143,-2.082406,-1.7256417,-1.1830153,-1.4248874,-1.3426504,-1.3728018,-1.2033803,-0.77848333,-0.7050323,-1.1248028,-2.1130517,-2.5605896,-1.8942997,-2.603284,-2.7732472,-3.0072436,-3.2895555,-3.2456446,-3.034543,-2.8242993,-3.0949087
+-0.089677185,-0.3402868,-1.1191041,-1.6288228,-1.6824639,-1.9977751,-2.4495244,-2.5681434,-2.5647676,-2.1865401,-2.506156,-2.6484902,-2.5414016,-2.3712006,-2.241078,-2.1384802,-2.1034741,-2.090221,-1.9782896,-2.6072817,-2.7114606,-2.8391633,-2.961472,-2.819931,-2.693325,-2.5608435,-2.4841738,-2.7808182,-2.8681564,-2.6049984,-3.1860569,-3.093389,-2.9889865,-3.13467,-3.1002915,-3.0432317,-2.8808894,-2.7811184,-2.7209988,-2.7910857,-3.1127634,-3.1994438,-3.210122,-3.3239958,-3.1776352,-3.1359105,-3.036056,-2.9951272,-2.8061595,-2.6500614,-2.6810236,-2.6100044,-2.5284755,-2.52871,-2.5292757,-2.6400337,-2.7144527,-2.8344245,-3.0525897,-3.0696158,-2.832708,-3.080872,-3.2023745,-3.1551423,-3.088243,-3.057518,-2.992017,-2.8327951,-2.7951965,-2.5252476,-2.9737415,-3.0220728,-2.9703934,-3.0736594,-2.938067,-3.1858563,-3.3545823,-3.376887,-3.1715178,-3.0677536,-2.890292,-2.8326917,-2.2987568,-3.423644,-3.2836614,-3.1406777,-2.7773943,-3.2544837,-3.2290807,-3.0757375,-3.0655417,-2.9372954,-2.8115706,-2.7044137,-2.6017709,-2.677157,-1.962528,-3.4320211,-3.0626197,-3.0185678,-3.209517,-2.9189978,-3.1074586,-3.2938848,-3.2719383,-3.1022782,-3.0634906,-2.964563,-3.1480145,-3.1942139,-2.988203,-3.26503,-3.2189915,-3.3133328,-3.5240464,-3.2657871,-3.143486,-3.0795121,-3.0205126,-3.0216565,-2.9807634,-2.954701,-2.8621442,-2.920713,-2.819334,-2.740079,-2.6237383,-3.02221,-2.987619,-2.9365656,-2.9840708,-2.8647552,-2.706091,-2.3003874,-3.2797616,-3.073885,-3.0402224,-2.938162,-2.9582136,-3.0729733,-3.0693738,-2.9975772,-3.0718203,-3.1705737,-3.0419154,-2.6157823,-3.0675602,-3.0883799,-3.2140505,-3.2429864,-3.0839348,-3.1800346,-3.5124807,-3.1636894,-3.0299873,-2.9097304,-2.856057,-2.8929806,-2.791911,-2.369767,-2.4045181,-3.1042724,-3.1796212,-2.9586241,-2.896103,-2.7482328,-2.7026758,-2.738823,-2.7595668,-2.699236,-2.7630596,-2.752211,-2.7181213,-2.706202,-2.6121774,-2.5649977,-2.884644,-2.7924879,-2.7144623,-2.7624555,-2.800088,-2.7707944,-2.744851,-2.8048122,-2.7660835,-2.7232716,-2.6827385,-2.718882,-2.598434,-2.4132214,-2.8749418,-2.9257712,-2.8203015,-2.7718654,-2.5720716,-2.7021976,-2.731463,-2.5098643,-2.553778,-2.2932534,-2.4414897,-2.55995,-2.6572223,-2.6276486,-2.7366009,-2.6602907,-2.6086462,-2.6257286,-2.0519414,-2.9117446,-2.8277688,-2.5390005,-2.694284,-2.6859393,-2.4715114,-2.4609866,-2.5290716,-2.5564485,-2.508532,-2.5254283,-2.5420005,-2.5428553,-2.4788504,-2.4668896,-2.5373578,-2.4936838,-2.5450358,-2.632369,-2.6126132,-2.5544596,-2.3908648,-2.2652454,-2.7366314,-2.6901212,-2.766024,-2.728249,-2.4526215,-2.4620209,-2.486656,-2.4366522,-2.4116669,-2.4113724,-2.8589282,-2.8209014,-2.7535698,-2.8264122,-2.795991,-2.4692955,-2.6272523,-2.1863956,-2.2094817,-2.2862759,-2.207575,-2.0753188,-1.7851093,-1.8210354,-1.8566604,-1.9640772,-1.9862585,-1.7974093,-1.7365627,-1.8312101,-1.8883121,-1.8164477,-1.7933583,-1.703201,-1.6215744,-1.5060766,-1.4341998,-1.299731,-1.4953532,-1.5055826,-1.775063,-1.7487974,-1.8168852,-1.708441,-1.6986232,-1.8560159,-1.8549213,-1.9201694,-1.8878365,-1.8509417,-1.7388978,-1.6689372,-1.6561234,-1.8226881,-1.9604659,-1.8094087,-1.7853866,-1.7654214,-1.4147615,-1.8675513,-1.8095691,-2.1219227,-2.1166248,-1.7585249,-1.235728,-0.9418587,-0.45102054,-0.3003366,-0.3762353,-0.5300778,-0.66778696,-0.832089,-0.8771712,-0.9926484,-0.9020086,-1.0686278,-1.1150606,-1.1098096,-1.092238,-0.9301534,-0.7249988,-0.92139524,-1.0949631,-1.0528712,-0.7513047,-0.5194882,-0.6947786,-0.79612726,-0.8220579,-0.95503277,-0.7324137,-1.0320091,-1.9484131,-2.3312247,-2.430839,-2.4970233,-2.4199789,-2.6750467,-2.6300976,-2.5059378,-2.40367,-2.4799497,-2.938924,-2.657957,-2.5348654,-2.4789805,-2.4098973,-2.408585,-2.3617826,-2.8759036,-2.7292032,-2.794929,-2.6763322,-2.4661114,-2.109961,-2.0677633,-1.7849505,-1.6424348,-1.5090139,-1.5477674,-1.7900739,-2.2484794,-2.5248098,-2.6557417,-2.3259296,-2.3168073,-2.3346848,-2.799753,-2.726317,-2.829022,-2.7009802,-2.5120878,-2.9090433
+-0.5545159,-1.2546616,-2.1631572,-2.3159685,-2.4680789,-2.2942152,-2.757863,-2.7900956,-2.9579506,-2.057316,-2.7618232,-3.076487,-2.9663682,-2.8449364,-2.6791425,-2.55913,-2.5015278,-2.4037952,-2.3266695,-2.8367078,-3.1088185,-3.257802,-3.1548817,-2.8817484,-2.673766,-2.462643,-2.9889774,-3.2926302,-3.334639,-3.0225432,-3.5074096,-3.4922144,-3.297566,-3.130386,-3.1822283,-2.9845576,-2.72374,-2.7028537,-2.5640984,-3.326582,-3.520927,-3.4906645,-3.478438,-3.5243902,-3.5623317,-3.3934972,-3.3827891,-3.446388,-3.2161446,-2.9037259,-2.8899846,-2.7982087,-2.7189617,-2.689964,-2.667684,-2.4483528,-2.9319496,-3.2191772,-3.5386474,-3.37164,-3.1691523,-3.1694586,-3.4378228,-3.2838035,-3.1500595,-3.1287935,-3.1118512,-3.0130618,-3.043035,-2.986998,-2.9578905,-2.976775,-2.6736574,-3.2276745,-3.0897357,-3.2289762,-3.3939524,-3.362237,-3.256445,-3.1833973,-2.9631202,-2.9217753,-2.8663507,-3.2929935,-3.3302183,-3.0994222,-3.1579297,-3.2689576,-3.2628329,-3.0901692,-2.83962,-2.8422706,-2.9940867,-2.8648357,-3.3149211,-3.3243885,-2.9123132,-3.3627298,-3.415638,-3.4700072,-2.8957887,-3.4782944,-3.3724265,-3.3057513,-3.5172331,-3.448617,-3.3612745,-2.960093,-3.265603,-3.2517586,-3.3299217,-3.570652,-3.2649684,-3.5384336,-3.5264194,-3.5605838,-3.5131903,-3.4743657,-3.1503763,-3.4510214,-3.4553432,-3.4638,-3.3672075,-3.373487,-3.4862862,-3.503856,-2.4080157,-3.3805206,-3.3966296,-3.4332078,-3.4684508,-3.42729,-3.288011,-2.8087785,-3.4281373,-3.4109254,-3.5140362,-3.333023,-3.4023871,-3.3855193,-3.3734994,-2.8663633,-3.4150147,-3.4960365,-3.356978,-3.1337948,-2.7258751,-3.2361302,-3.0740519,-3.3165479,-3.474286,-3.3007886,-3.4802794,-3.584393,-3.5058868,-3.501517,-3.4722388,-3.3755188,-3.2077303,-2.5338926,-2.857513,-3.497078,-3.378419,-3.49972,-3.4742885,-3.3882682,-3.3695712,-3.490295,-3.1413994,-3.35533,-3.4526281,-3.4416904,-3.3805819,-3.3342328,-3.330473,-3.396113,-3.4151022,-3.3842034,-3.3047862,-3.372183,-3.4447577,-3.5397487,-3.5900755,-3.4333613,-3.4910307,-3.6791675,-3.6175766,-3.5007505,-2.1613922,-3.410624,-3.5649762,-3.703174,-3.7527246,-3.724197,-2.9457104,-3.5123434,-3.6604934,-3.507907,-2.913341,-3.2206764,-3.2954466,-3.6336613,-3.8874168,-3.5561554,-3.5604644,-3.5518699,-3.513869,-3.642869,-2.786333,-3.3433986,-3.489359,-3.3807864,-3.4875076,-3.695929,-3.5771415,-2.438193,-3.5588088,-3.6225612,-3.7492652,-3.772812,-3.7959256,-3.622425,-3.5641015,-3.562804,-3.564553,-3.4199133,-3.3263779,-3.480805,-3.3933263,-3.4215746,-3.3427048,-3.3198888,-3.407826,-3.1853175,-3.1120472,-2.965405,-2.4658768,-3.0474026,-3.0746262,-3.0365653,-3.183144,-2.6821337,-3.1856573,-3.40065,-3.360583,-3.4200501,-3.3626394,-2.8013597,-2.8083844,-2.8082888,-2.736175,-2.5070024,-2.238132,-2.0201015,-1.7427256,-1.6065128,-1.6795356,-1.6178358,-1.6008422,-1.4910262,-1.4920223,-1.5499208,-1.4990895,-1.3968174,-1.3100336,-1.2074926,-1.1481886,-0.98147136,-0.9716899,-1.3200378,-2.1758056,-2.0913267,-1.8843234,-1.914022,-1.7448528,-1.6613724,-1.5335727,-1.8001475,-1.7974241,-1.6895916,-1.5119202,-1.4351807,-1.3874681,-1.2544053,-1.0209794,-1.1084721,-1.3684094,-1.6574898,-1.4705756,-1.4240928,-1.2062707,-1.3189588,-1.2471285,-1.4271033,-1.9963655,-2.8212454,-3.1146877,-3.1235394,-3.169177,-3.1488042,-3.0560255,-2.9464834,-2.6716714,-2.6659155,-2.4761128,-2.5355074,-2.8549726,-2.8856409,-2.673213,-2.2511613,-2.2500503,-2.2575722,-2.5546126,-2.7318013,-2.2426476,-1.932148,-2.0707343,-2.533456,-2.6663573,-2.6886349,-2.778319,-2.7526264,-2.7223265,-2.848054,-2.8199754,-2.7017796,-2.3811207,-3.0699902,-3.0979438,-3.1283264,-3.2502415,-2.9765143,-2.9174428,-2.7418063,-2.6147332,-3.017027,-3.0387673,-2.8920803,-2.7331944,-2.801487,-2.5633483,-3.26363,-3.2122803,-3.3533201,-3.0583475,-2.984023,-2.3864493,-2.5662184,-2.2173936,-2.3710098,-2.449936,-2.7987947,-2.9182637,-2.9097915,-2.7048697,-3.0434103,-2.4150462,-2.6940007,-2.261607,-3.0329494,-3.2195537,-3.26681,-2.9138083,-2.5392272,-3.2357807
+-0.69838196,-1.7929442,-2.2997499,-2.5184426,-2.7701252,-2.868351,-3.351656,-3.262804,-3.388591,-3.0869596,-3.3006654,-3.5328565,-3.810947,-3.7465858,-3.5915287,-3.5032806,-3.4563913,-3.3857822,-3.291565,-3.4099803,-3.7202454,-3.5820713,-3.4943352,-3.4140074,-3.256652,-2.9947383,-3.698708,-3.89535,-3.7523246,-3.1963706,-3.857757,-3.8878078,-3.7909298,-3.8367724,-3.7474656,-3.6538842,-3.549747,-3.500045,-3.37562,-3.4018734,-3.4388523,-3.6321883,-3.616898,-3.8846173,-3.8409076,-3.6575477,-3.523117,-3.4980621,-3.735002,-3.7396016,-3.632184,-3.50701,-3.436982,-3.3495946,-3.2702656,-3.0158138,-3.3663895,-3.6609097,-3.706945,-3.5875592,-3.4680254,-3.297902,-3.4872048,-3.2676387,-3.4351213,-3.5587742,-3.4508739,-3.3448749,-3.348242,-3.3337896,-3.3071067,-3.2799966,-3.225534,-3.2196453,-3.1400855,-3.369102,-3.3813863,-3.3341331,-3.3694339,-3.4012792,-3.3992379,-3.291263,-3.4001408,-3.3709626,-3.3851347,-2.6392295,-3.075386,-3.1842222,-3.24438,-3.328964,-2.9137435,-3.135467,-3.060494,-2.8242974,-3.429335,-3.4555361,-3.320737,-3.7390804,-3.8004842,-3.6486938,-3.5282516,-3.492322,-3.5056734,-3.1980295,-3.5174005,-3.5879312,-3.4752498,-3.4054823,-3.2617044,-3.1998122,-2.8032117,-3.3397362,-3.381966,-3.3999555,-3.3784797,-2.849267,-3.4398878,-3.5641172,-3.560608,-3.4471898,-3.3819716,-3.25865,-2.840132,-3.2674563,-3.2967787,-3.4051118,-3.233212,-3.4264328,-3.5375628,-3.6093855,-3.5700345,-3.462698,-3.4217515,-3.271718,-3.0445833,-3.3803325,-3.3415017,-3.6691782,-3.699181,-3.6810508,-3.6040373,-3.531613,-3.411317,-3.269102,-3.1190372,-3.205704,-3.2800164,-3.280781,-3.2522416,-2.9052267,-3.3162236,-2.9365468,-3.3063533,-3.4469013,-3.3094437,-3.2690082,-3.2332113,-3.303009,-3.2084584,-3.3173256,-2.647604,-2.8431387,-2.747778,-3.4088693,-3.5675752,-3.557013,-3.4303584,-3.364929,-3.1572366,-3.7315412,-3.5727682,-3.5671055,-3.5318096,-3.4362872,-3.4284163,-3.3770761,-3.334891,-3.3706923,-3.2342932,-3.4655132,-3.46063,-3.6785045,-3.7097373,-3.704721,-3.8142934,-3.7196126,-3.6466026,-3.5799809,-3.489575,-3.6392279,-3.7270865,-3.8440871,-3.785623,-3.7857451,-3.6443188,-3.7120304,-3.8183832,-3.7071877,-3.4376245,-3.3925886,-3.4904764,-2.7757208,-2.7662158,-3.3011804,-3.4132438,-3.428228,-3.3666048,-3.4030359,-3.415868,-3.503358,-3.4644485,-3.4698224,-3.5940013,-3.6272974,-3.5234694,-3.5239997,-2.5936613,-3.4756875,-3.5917292,-3.5597825,-3.5521648,-3.7022634,-3.735371,-3.6919,-3.6727018,-3.5918405,-3.5686307,-3.699678,-3.7601962,-3.6949396,-3.5763416,-3.551839,-3.8969874,-3.660626,-3.6368394,-3.68538,-3.5967624,-3.904879,-3.807201,-3.754271,-3.7558303,-3.2926087,-3.5827737,-3.8488135,-3.9392295,-3.8350644,-3.8055634,-3.6231859,-3.7134457,-3.7513542,-3.7630072,-3.8711433,-3.7764192,-3.5306957,-3.1301663,-3.4668977,-3.636976,-3.7350693,-3.7253742,-3.1153417,-3.1003504,-3.5836372,-3.2627647,-2.9906263,-2.7038016,-2.780562,-2.4300556,-2.3562164,-2.4983091,-3.0149493,-3.6165907,-3.6025686,-3.5967402,-3.6936793,-3.5332513,-3.5757775,-3.3929129,-3.8361464,-3.9472337,-3.9974847,-3.9157176,-3.656839,-3.429016,-2.7946825,-2.2331161,-2.9817786,-3.6345837,-3.8140998,-3.4347236,-2.988872,-2.9540122,-3.145382,-3.6023474,-3.73202,-3.7824197,-3.643313,-3.767385,-3.7403593,-3.747033,-3.8074727,-3.891213,-3.8572679,-3.8462086,-3.789497,-3.7729344,-3.8495264,-3.9067783,-3.8066978,-3.809156,-3.5288196,-3.414208,-3.5250993,-3.755673,-3.8528905,-3.8799334,-3.5184293,-3.6472082,-3.7892118,-3.614596,-3.8283243,-3.6184182,-3.649725,-3.7581534,-3.6893053,-3.651434,-3.4992108,-3.2505765,-3.5479367,-3.5241158,-3.5623202,-3.769816,-3.6511083,-3.7245631,-3.4774003,-3.258731,-3.3903012,-3.4308324,-3.396409,-3.4678972,-3.5923743,-3.146883,-3.4383497,-3.4715548,-3.5859523,-3.3232129,-3.560811,-3.2448626,-3.6395469,-3.6771605,-3.3412828,-3.4708323,-3.6594949,-3.5304863,-3.686008,-3.4995644,-3.5054932,-3.1792068,-3.4650688,-2.7944672,-3.7890387,-3.7250323,-3.5453725,-3.5491593,-3.0593996,-3.6888418
+-1.7147415,-2.4659543,-2.9587443,-3.2106836,-3.4949532,-3.0238624,-3.3661828,-3.71309,-3.9742885,-3.4368706,-3.0994768,-4.1856956,-4.3679166,-4.1986446,-4.0853815,-4.0297914,-4.0203342,-4.0678334,-3.9328861,-3.1285493,-3.964171,-4.4806986,-4.472594,-4.429608,-4.3738647,-3.4998996,-3.9577756,-4.5393763,-4.500135,-3.7892442,-4.4617705,-4.730633,-4.6899247,-4.761864,-4.9046702,-4.8194995,-4.7061543,-4.6877065,-4.0232315,-3.1123486,-4.455027,-3.2530742,-4.5651903,-4.85857,-4.7449455,-4.371466,-3.7653546,-4.5246034,-4.770093,-4.3383403,-4.747319,-4.76812,-4.6842947,-4.136797,-4.743171,-3.388484,-2.9700675,-4.4208198,-4.830295,-4.8747754,-4.6991286,-4.142038,-4.827303,-4.4030957,-3.9541926,-4.9593825,-5.0621777,-5.061602,-5.010675,-4.996035,-4.9557996,-4.941355,-4.9765563,-4.9445148,-4.7744594,-4.8243985,-4.9003205,-4.9073753,-4.881456,-4.7148843,-4.6490827,-4.68611,-4.6248956,-4.6299043,-4.644612,-4.4099574,-4.403907,-3.2866259,-4.8107705,-4.9222445,-4.4961925,-4.735644,-4.0863414,-4.527421,-3.1606357,-4.697213,-3.9620662,-3.7347698,-4.094025,-4.6637483,-4.994656,-4.9891915,-4.593679,-4.9165673,-4.9434104,-4.5256906,-5.092521,-4.939649,-4.8885584,-4.873779,-4.795211,-4.7681394,-4.816942,-4.772127,-4.7258415,-4.5701776,-3.0654101,-4.1273637,-4.449116,-4.258036,-4.7436423,-4.422659,-4.525743,-5.096048,-4.6122794,-5.004898,-4.457311,-4.625712,-4.786341,-4.7122746,-4.7595696,-4.7689104,-4.749583,-4.6916327,-2.4519935,-3.240868,-2.4573839,-4.1514134,-4.587981,-4.758942,-4.3167167,-4.6760297,-5.02368,-4.9394507,-4.742336,-4.84425,-4.8604894,-4.8707504,-4.8310833,-4.834376,-4.7656198,-4.789573,-4.7024207,-4.6757445,-4.649636,-4.6296854,-4.6143804,-4.5338674,-4.4947762,-4.472152,-2.9213188,-4.1636963,-4.668463,-4.9082828,-4.8428493,-4.740691,-4.6030717,-4.2626038,-4.313402,-3.2546036,-4.444529,-4.7810755,-4.7262096,-4.7417865,-4.7584243,-4.7271442,-4.720963,-4.643789,-4.529064,-4.561644,-4.6119447,-4.492988,-4.4336658,-4.36814,-4.406615,-4.3129563,-4.342239,-4.0775056,-4.31416,-4.3241587,-4.3055325,-4.3151603,-4.2984586,-4.28757,-3.9272485,-3.5178275,-4.4315953,-4.352029,-4.349208,-4.3324122,-4.441234,-4.2507577,-3.2855887,-4.490042,-4.5909157,-4.504926,-4.6204386,-4.677625,-4.3106647,-4.4758863,-4.610949,-4.522308,-4.4887195,-4.5103083,-4.454406,-4.4674373,-4.4543962,-4.43095,-4.4569807,-4.500228,-4.4966383,-4.4586167,-4.350703,-4.4560933,-4.4641633,-4.4771805,-4.506091,-4.484689,-4.3450265,-4.3657146,-4.4217052,-3.7104497,-4.250547,-4.365839,-4.4798703,-4.547003,-2.922657,-4.49938,-4.589197,-4.8555555,-4.776356,-2.645434,-4.2432017,-4.556124,-4.635632,-4.654644,-4.6775703,-4.5487905,-4.826138,-4.5210476,-4.6058917,-4.5070424,-4.3516593,-3.9508357,-3.27675,-3.8959136,-4.3561254,-4.199331,-3.9782786,-3.644081,-3.320726,-3.6738467,-3.6554985,-3.482272,-3.224358,-3.195077,-2.5323298,-2.981169,-4.3026996,-4.2775664,-4.3273225,-4.3771796,-4.406012,-4.448465,-4.214515,-4.383303,-3.909552,-4.5368323,-4.6120896,-4.169656,-3.812686,-3.6370635,-3.4695635,-3.1309862,-2.3417168,-3.732893,-4.0757217,-3.6272683,-2.957428,-3.588721,-3.667936,-3.8350053,-4.7745533,-4.1350923,-3.8190317,-4.545592,-4.7447643,-4.7222576,-4.724217,-4.7364974,-4.4984665,-4.482751,-4.653856,-4.4092317,-4.578508,-4.4650345,-4.320456,-4.1775575,-4.1357493,-4.0584636,-3.9345255,-4.222165,-3.8955598,-4.2102027,-4.1730328,-4.055571,-4.1610026,-4.1738963,-4.122168,-4.001881,-4.1616883,-4.3432,-4.438033,-3.717422,-4.3512015,-4.3919206,-4.0895195,-4.337196,-4.3434567,-4.3172994,-4.3237433,-4.3220983,-4.3371773,-4.217048,-3.5248222,-4.502645,-4.518042,-4.4157414,-4.465784,-4.135388,-3.1045516,-4.3701787,-4.5328546,-4.2136865,-4.3778124,-4.3101454,-3.9737844,-4.1942964,-4.275127,-3.938089,-3.8773942,-4.0509095,-4.161183,-4.0396385,-3.7651525,-4.006193,-4.1232986,-4.1134834,-2.8147557,-3.9017,-3.9306197,-4.558349,-4.571692,-3.926394,-4.574045
+-0.36700487,-1.2635696,-2.3195,-3.0465598,-3.2981856,-3.3828502,-3.6861067,-3.8161063,-3.8293915,-3.5470111,-3.507279,-3.9191308,-3.800912,-3.6019883,-3.5252514,-3.8402715,-3.8135638,-3.7012458,-3.530088,-3.9286714,-4.112895,-3.9821348,-3.8258777,-3.676402,-3.6589546,-3.501692,-3.1695313,-3.514882,-3.0603828,-3.4463768,-3.990828,-4.194723,-4.265386,-4.3258467,-4.3172865,-4.136846,-3.995964,-3.7948718,-3.351667,-3.306627,-3.9970622,-3.541594,-4.2128673,-4.3717537,-4.245327,-3.7130885,-3.631958,-3.793764,-3.5968828,-3.2639453,-3.918449,-3.8475528,-3.6327643,-2.6899223,-3.066115,-3.8981423,-3.4409711,-4.1166544,-4.4221025,-4.212573,-4.0064845,-4.0844417,-3.7640429,-3.4714248,-4.251768,-4.4294076,-4.47613,-4.3310704,-4.1379237,-3.8998275,-3.6634061,-3.5191524,-3.1926718,-3.1395187,-3.1645303,-3.122344,-2.987775,-3.2081437,-3.221458,-3.0032024,-2.8622296,-2.782555,-2.8220077,-2.7927632,-2.7981942,-2.8725467,-2.5851047,-2.2761126,-3.2434912,-3.4218366,-3.4116237,-3.4380012,-3.1845872,-3.2554765,-3.0651379,-2.9857445,-2.8020139,-2.8182378,-2.2410507,-2.8557568,-3.315451,-3.2482853,-2.9479144,-3.174234,-2.4417253,-3.3978448,-3.6211252,-3.567484,-3.359072,-3.3191628,-2.8797407,-2.6992903,-3.0190434,-3.125743,-3.2276502,-3.2100532,-3.4939318,-2.761845,-3.2392018,-3.1881344,-3.4094908,-3.6290133,-3.0970674,-3.712552,-3.502023,-3.568286,-3.485107,-3.455944,-3.7090325,-3.6318274,-3.686067,-3.825944,-3.7437892,-3.6381927,-2.6414976,-2.8651175,-3.3862987,-3.2757516,-3.6651669,-3.6864543,-3.4924726,-3.7585702,-4.019784,-4.1217704,-3.8032603,-4.2780666,-4.0664086,-3.8337288,-3.8148284,-3.8707314,-3.7892618,-3.7733626,-3.6461332,-3.8850217,-3.742365,-3.6720002,-3.6883817,-3.381011,-3.4086337,-3.3028805,-3.1949844,-3.094625,-2.8509972,-3.0849745,-3.2078047,-2.5286894,-3.585751,-3.687276,-2.817994,-2.981911,-3.4879472,-3.7051992,-3.763575,-3.840744,-3.861754,-3.9240766,-3.8983903,-3.9674187,-3.7482681,-3.747901,-3.8218198,-3.878819,-3.845181,-3.8481264,-3.8331409,-3.7108984,-3.7074857,-3.1869116,-3.4755108,-3.698852,-3.7500005,-3.7422128,-3.8212109,-3.760532,-3.5905175,-2.7332506,-2.6746373,-3.5287158,-3.6301718,-3.4979115,-3.4076872,-3.746068,-3.6854365,-3.7502975,-3.6831675,-3.7406073,-3.7784538,-3.8150516,-3.8488727,-3.1468651,-3.5770428,-3.6736412,-3.7052236,-3.748773,-3.7113643,-3.7632117,-3.8198638,-3.9214478,-3.8768077,-3.9838123,-3.951263,-3.8806973,-3.89881,-3.8651743,-3.9257798,-3.9182863,-3.829101,-3.9531178,-4.0139656,-3.9851594,-3.9208584,-3.5058894,-3.6575608,-3.7634468,-3.9139776,-4.1142926,-2.8082366,-3.7848926,-4.0419135,-4.01279,-4.1614547,-2.6766214,-3.7051158,-3.8905673,-4.1611257,-4.1201234,-4.182951,-4.0219007,-4.2468605,-3.7547765,-4.126297,-4.2844224,-4.248556,-3.9752364,-3.5319328,-3.6973681,-4.17395,-4.1019473,-4.14482,-3.8996868,-3.3261526,-3.7297673,-3.861052,-3.3424165,-3.0653985,-3.0126219,-3.3346105,-3.26754,-3.8056889,-3.2731278,-4.05022,-4.54497,-4.356319,-4.6865506,-4.1126885,-4.496547,-3.8214269,-4.239611,-4.5565505,-4.599607,-4.3097663,-4.10609,-3.6748893,-3.290986,-2.8517995,-3.7178736,-3.8441129,-3.9833517,-3.9211054,-3.939139,-3.955254,-3.2864687,-3.9793963,-4.0379863,-4.245839,-4.506828,-4.327272,-4.4547086,-4.4499655,-4.438741,-4.476992,-4.369691,-4.433157,-4.323116,-4.2335477,-3.9469147,-3.704266,-3.777348,-3.822496,-3.7983289,-3.54357,-3.5767426,-3.2775311,-3.5699666,-3.965797,-3.7885957,-3.6859245,-3.4579473,-3.5125494,-3.364101,-3.566247,-3.724317,-3.7949405,-3.660873,-3.6996884,-3.5112662,-3.1929386,-3.8476,-3.9367652,-3.8846688,-4.1284404,-3.8663144,-3.6345081,-3.6079767,-3.7217584,-4.052933,-4.103954,-3.9807172,-4.0215783,-3.810567,-3.324093,-3.9097567,-4.4249587,-4.1981053,-4.249093,-4.387754,-4.253703,-4.3523088,-4.420861,-4.0421524,-4.0188346,-3.854434,-4.0180717,-4.0257215,-3.7269082,-3.701789,-3.826457,-3.8670502,-3.1378365,-3.8264546,-3.8535113,-4.155631,-4.2958803,-4.3851223,-4.4722233
+-0.32670236,-0.7868652,-1.5554264,-2.3350124,-2.540718,-2.7554479,-2.9039552,-3.0354438,-2.962359,-2.5196626,-2.3593569,-3.1141493,-3.4643512,-3.6161876,-3.4640074,-3.5147715,-3.462101,-3.4938192,-3.4660094,-3.53684,-3.79039,-3.644581,-3.67485,-3.5881066,-3.5274067,-3.3457334,-3.2080693,-3.2639625,-2.5837073,-3.5574656,-3.7956843,-3.7038527,-3.5971746,-3.8509974,-3.7593293,-3.670948,-3.6127331,-3.3866158,-2.9905033,-2.8406413,-3.1356602,-2.986094,-3.0365548,-2.921998,-2.794177,-2.576213,-2.2081819,-2.387207,-2.347005,-1.9290509,-2.4683416,-2.6816592,-2.6931543,-2.5313854,-1.8434985,-3.0845766,-2.9123704,-3.6748488,-3.669699,-3.24354,-2.8716216,-3.224132,-3.1589231,-2.6550088,-3.1721323,-3.2716553,-3.177698,-3.0234108,-2.8371682,-2.7084289,-2.5690417,-2.2922494,-2.1003938,-2.24555,-1.7535429,-2.413177,-2.2867966,-2.2802672,-2.7313342,-2.6737874,-2.634103,-2.626668,-2.5061793,-2.4953322,-2.37064,-2.3400269,-1.5790551,-1.6936324,-2.603293,-2.7330127,-2.7186165,-2.6676645,-2.4890928,-2.349365,-1.3242562,-2.0622153,-2.858097,-3.1691687,-3.1632876,-2.8535752,-1.8238811,-2.7302403,-3.2752385,-3.335074,-2.7229052,-3.0828729,-2.9761848,-3.037631,-2.9270763,-2.1434877,-2.681549,-2.6585078,-2.709844,-1.5966876,-2.1020477,-3.199165,-3.2585793,-2.7311149,-3.1708813,-3.4941201,-3.6010878,-3.5222828,-3.6886764,-3.6308546,-3.4430676,-3.332471,-3.0929844,-3.2299602,-3.1881151,-3.0486732,-2.9111857,-2.7670984,-2.6645238,-2.5936246,-2.6060247,-2.393888,-2.789166,-1.9584823,-3.0415971,-3.4002843,-3.4215276,-2.9764395,-3.3864484,-3.29214,-3.3634715,-3.4281154,-3.347341,-2.6756313,-3.1531806,-3.12991,-3.062039,-2.9277296,-2.8326898,-2.7976232,-2.7588103,-2.6424882,-2.5702043,-2.4460173,-2.4718199,-2.4297526,-1.7844253,-2.4622316,-2.5041695,-2.8314679,-2.7808452,-2.75169,-2.912497,-3.0097823,-2.8982005,-2.522036,-2.4000413,-2.8034053,-2.9705682,-3.034998,-3.0207582,-2.939396,-2.9586987,-2.8794878,-3.0954397,-3.1941557,-3.2930639,-3.2005267,-3.1965127,-3.2277439,-3.4428182,-3.5165126,-3.4619563,-3.2577233,-3.2515235,-3.344203,-3.573266,-3.6263673,-3.6504066,-3.556219,-3.3813846,-3.1340268,-0.7293188,-2.3067515,-2.6517768,-2.839833,-2.9578278,-2.9470732,-2.8070805,-2.9991713,-3.0038211,-3.0263739,-2.9522524,-2.9677448,-2.9654045,-2.9026573,-2.8587089,-2.7126436,-2.6419516,-2.616196,-2.6354718,-2.682205,-2.729841,-2.9569964,-3.236013,-3.3544765,-3.2903156,-2.898515,-3.1317816,-3.2713714,-3.4318802,-3.5159364,-3.4630823,-3.4989228,-3.4241476,-3.3842282,-3.288187,-2.0504334,-2.386582,-3.248417,-3.5709085,-3.6723113,-2.4192457,-3.2403595,-3.492337,-3.5758631,-3.583734,-2.3198287,-3.1739557,-3.4745417,-3.632256,-3.6272116,-3.3721836,-3.598069,-3.9418216,-3.394351,-3.685141,-3.5848727,-3.8028517,-3.5941405,-3.4819248,-3.2017448,-3.7623382,-3.8645277,-3.8435335,-3.5597854,-3.6656013,-3.3461113,-3.8614736,-3.5887103,-3.269477,-3.7038145,-3.8498826,-3.0296817,-3.6983137,-3.7738633,-3.8110857,-3.9496627,-3.9119935,-4.011822,-3.4762032,-3.9193845,-3.4355407,-3.8357587,-3.8015113,-3.879548,-3.8141775,-3.7222195,-3.4181838,-3.0030608,-2.6160517,-3.4090636,-3.8701653,-3.7237525,-3.7761579,-3.5986087,-3.5781617,-3.3531265,-3.7850828,-3.5313048,-3.774981,-3.8205957,-3.4658763,-3.76936,-3.890461,-3.8592672,-3.9746022,-4.0385327,-4.0584803,-3.9388027,-3.8989491,-3.7849793,-3.6461155,-3.6085327,-3.5522416,-3.4912057,-3.2411335,-3.3056598,-3.6513276,-3.6858575,-3.7090197,-3.6872942,-3.5212233,-3.4946766,-3.3661008,-3.2383592,-2.9488826,-3.4612365,-3.5759873,-3.5902376,-3.3805728,-3.1772888,-3.0428987,-3.4880137,-3.5054684,-3.5146165,-3.6484685,-3.52771,-2.929503,-3.535696,-3.5550818,-3.7462072,-3.7492719,-3.7325444,-3.558013,-3.3715415,-3.0158873,-3.7011676,-3.8059907,-3.7150111,-4.00917,-3.9223037,-3.93651,-3.9359221,-3.7485733,-3.317271,-3.3031356,-3.2869878,-2.9548104,-2.862752,-2.7353716,-2.6796021,-2.5249348,-2.332815,-2.1802268,-3.1357405,-3.4169848,-3.270162,-3.0390801,-3.066721,-3.2815132
+-0.41454893,-1.2561889,-1.9845891,-2.3186438,-2.1674066,-2.1608512,-2.257317,-2.298679,-2.4036636,-2.2547536,-1.7353325,-2.7024226,-2.9625754,-3.2996273,-3.2567835,-3.0752716,-3.1381774,-2.9848077,-2.5996084,-2.6984148,-2.9237783,-2.8682208,-2.7710283,-2.5992293,-2.526877,-2.4394853,-1.7686787,-2.5966353,-2.1716704,-2.458108,-2.940702,-3.2751074,-3.4635403,-3.427319,-3.125851,-3.0333757,-2.840749,-2.7013855,-2.4759662,-2.4814248,-2.2841673,-1.9232802,-2.3652263,-2.417447,-2.514953,-2.119749,-1.9529958,-2.0342088,-2.1117144,-2.1284738,-2.0658865,-2.0741115,-2.112301,-2.0984073,-1.9383092,-1.8668914,-1.1719153,-1.4577034,-1.9368162,-1.5920565,-1.6456149,-1.4475965,-1.1740067,-1.6602516,-2.5666633,-2.8062682,-2.7550745,-2.6948328,-2.4202392,-2.3316557,-2.2998595,-1.6340587,-1.8233905,-1.4234271,-1.4085577,-2.3865433,-2.4970505,-2.2535677,-1.8681972,-2.457017,-2.3814447,-2.4469724,-2.3307958,-2.294965,-2.1236093,-2.2548032,-2.2476068,-2.3324668,-1.9450972,-2.1338475,-2.3412113,-2.4454656,-2.417982,-2.4725604,-2.2264876,-0.7516977,-2.0992465,-2.3847156,-2.3979464,-1.6394234,-1.1746235,-1.8152738,-2.2351754,-2.2443838,-2.069306,-1.4960432,-2.09013,-2.1440053,-2.0163875,-1.8570402,-2.336903,-2.3884876,-2.350193,-2.373107,-1.0754104,-2.0470634,-2.4120517,-1.827008,-2.766708,-3.3500023,-3.3944092,-2.9605584,-3.322637,-3.0068505,-2.7262688,-2.4161386,-2.195714,-1.9146571,-2.0074139,-2.307095,-2.4773672,-2.0125802,-2.1699076,-2.1699085,-2.4578516,-2.623891,-2.6328454,-2.5429432,-2.8008375,-3.2214198,-3.1317368,-3.162168,-3.105723,-2.713129,-3.2368379,-3.3272185,-3.1321492,-2.881761,-2.8761048,-2.618411,-2.1468744,-2.2854462,-2.3724136,-2.4349246,-2.4933054,-2.4264402,-2.4859533,-2.2370615,-2.554932,-2.5991292,-2.4519129,-2.6255336,-2.3938127,-2.267757,-2.7748332,-2.8294997,-2.8345656,-2.8832245,-2.808288,-2.6631265,-0.89087623,-2.1777506,-2.443304,-2.4602532,-2.5767767,-2.6399355,-2.4158201,-1.9207399,-2.3415449,-2.588129,-2.6939266,-2.5999417,-2.722516,-2.8370004,-2.8886917,-2.8577807,-2.837513,-2.787303,-2.7837503,-2.8112304,-2.8297935,-2.7734451,-2.7944775,-2.8280985,-2.7782402,-2.6244967,-1.9370067,-2.4078398,-2.6856546,-2.6388683,-2.556167,-2.604123,-1.8287554,-2.2840683,-2.5676765,-2.6440072,-2.6747103,-2.763205,-2.8385696,-2.8631716,-2.842607,-2.8035002,-2.7960207,-2.8395188,-2.846855,-2.7821808,-2.7788496,-2.8491821,-2.9268887,-3.0624785,-2.893811,-2.0874982,-2.7297974,-2.7817295,-2.9576173,-2.9590802,-2.9207177,-2.989452,-2.629718,-2.8883815,-2.9266577,-2.7921524,-1.1798637,-2.4193697,-2.5255957,-2.4389708,-1.7151132,-2.5626864,-2.7096236,-2.7248325,-2.5846562,-1.7110896,-2.8889768,-2.9033532,-3.4112954,-3.3790781,-2.9319518,-3.2982292,-3.451078,-3.448958,-3.5490885,-3.6191406,-3.7367225,-3.6441963,-3.5062797,-3.4961894,-3.4725337,-3.375957,-3.3445601,-3.2774804,-3.200435,-2.5081906,-3.0790362,-3.273778,-3.207599,-3.3235211,-3.345213,-3.1374023,-3.0844758,-2.998854,-3.0605052,-3.2040749,-2.9651933,-3.5089695,-3.4347348,-3.4963133,-3.1683874,-3.5123432,-3.5240605,-3.7578893,-3.6072469,-3.5068092,-3.3396235,-3.0520396,-3.0079658,-3.2969165,-3.1557865,-2.9106722,-2.9722877,-3.0013716,-2.9066262,-2.7670302,-3.30443,-2.675231,-3.3793108,-3.4745812,-3.3435893,-3.6132169,-3.6938515,-3.669316,-3.8100123,-3.8779125,-3.7904778,-3.755628,-3.645008,-3.5223935,-3.4200838,-3.1920016,-3.350492,-3.4216263,-2.5732913,-3.2937388,-3.3686159,-3.4397745,-3.469386,-3.5553946,-3.3843842,-3.237906,-2.9639068,-2.9190295,-3.1338348,-3.4472337,-3.3393655,-3.2235456,-2.8969688,-2.678738,-2.3703263,-3.1132905,-3.1883924,-3.164631,-3.2664058,-3.214183,-2.3200145,-3.34245,-3.474063,-3.4920578,-3.3453746,-3.1478128,-3.0568643,-3.0639958,-2.3832917,-3.2172232,-3.2726455,-3.3427057,-3.4368334,-3.5982015,-3.6800814,-3.7063255,-3.6030855,-3.4226122,-3.3747225,-3.1189594,-2.8975506,-2.849957,-2.6925645,-2.3913164,-2.354197,-2.1552582,-1.6969783,-3.0620003,-2.930313,-2.7773037,-2.4889164,-1.962059,-3.1705806
+-1.0181632,-2.4712005,-3.31516,-3.6492581,-3.7294736,-3.9072971,-3.8702888,-3.9737115,-3.9584422,-3.6363385,-2.6723924,-2.3866277,-4.248751,-3.7360659,-3.627624,-4.350586,-4.2249684,-4.387402,-4.31276,-4.399422,-3.9768338,-4.4895477,-4.4774094,-4.5090604,-4.484613,-4.467123,-3.8241215,-4.6615686,-4.4480844,-3.5030847,-4.001824,-4.780028,-4.49484,-4.5866637,-4.5643463,-4.5879416,-4.445956,-4.4035344,-4.174688,-4.2032523,-4.153214,-4.20618,-4.217787,-4.23927,-4.1710734,-4.0252137,-2.8672347,-4.455544,-4.534231,-4.2921386,-4.354487,-4.349903,-4.3402677,-4.2043767,-4.1604753,-3.4796612,-4.217754,-3.3254538,-4.506252,-4.336907,-4.17498,-4.121383,-3.619493,-4.10152,-3.6627288,-4.4547963,-4.302975,-4.245027,-4.157559,-4.104888,-4.1127486,-4.0217595,-3.999951,-3.3925614,-3.323347,-4.3115845,-4.2942224,-4.1735587,-2.381238,-3.4187431,-4.2462163,-4.308827,-4.122086,-4.1494336,-4.046928,-3.9277186,-3.9361153,-3.5302756,-2.3090627,-4.2901845,-4.2405424,-4.100378,-4.069362,-4.0281625,-3.8820987,-3.2056904,-4.1193547,-4.135629,-4.0836844,-3.8908224,-2.6497638,-3.5146294,-4.216252,-4.0881543,-3.2963455,-3.7368717,-4.110165,-3.6849556,-3.9797459,-4.13942,-3.966529,-4.067737,-2.3493943,-4.235675,-2.595405,-4.555554,-3.9186902,-3.3182273,-3.307755,-4.775611,-4.5764375,-3.157612,-4.676927,-4.4247837,-4.393862,-4.3655443,-3.3702724,-3.4398165,-3.9776788,-4.3053017,-4.19198,-3.3490806,-3.847447,-3.1243892,-3.8714995,-4.191836,-4.0206475,-4.12108,-4.4539914,-3.944806,-3.8187413,-4.74947,-3.7625022,-4.4561906,-4.481556,-4.0395374,-4.620358,-3.9817147,-4.637579,-4.5239635,-4.4147487,-4.3158984,-4.383972,-4.323356,-4.2629266,-4.1455374,-4.0596004,-3.2708964,-4.2129846,-3.6667244,-4.264926,-4.237564,-4.192668,-3.2364936,-4.055323,-4.2655272,-4.22705,-4.2193184,-3.6153803,-3.074347,-4.2149644,-4.2092977,-4.1256547,-4.1411,-4.1659184,-4.14746,-4.1117473,-4.0483317,-4.176001,-4.2046485,-4.2769203,-4.2700477,-4.2720666,-4.42361,-4.4254007,-4.38152,-4.368062,-4.330258,-4.358527,-4.409395,-4.5105367,-4.4309688,-4.462729,-4.44137,-4.401794,-4.401173,-4.4305024,-4.4454093,-4.3648295,-4.3235836,-4.3241444,-4.0531745,-3.3811693,-4.166077,-4.3636656,-4.407974,-4.4279647,-4.4595933,-4.338326,-4.418414,-4.358604,-4.2988477,-4.310566,-4.351397,-4.297407,-4.2700934,-4.3051248,-4.3665504,-4.4193196,-4.439236,-4.1134896,-2.3893747,-4.2456937,-4.2660336,-4.3338437,-4.433421,-4.4078093,-4.417051,-4.408602,-4.337092,-4.2679434,-4.2034807,-3.3965964,-4.0907254,-4.17703,-4.2397227,-3.1693892,-4.2044554,-4.3973203,-4.4256396,-4.2896514,-2.9627678,-3.2547781,-3.0650172,-4.4473534,-4.1786942,-3.2526398,-3.6264758,-3.3284078,-4.2685313,-4.6497364,-4.663506,-4.5748677,-4.3996377,-4.2039533,-3.8854604,-4.2768755,-4.6866345,-4.7385945,-4.650085,-4.5212502,-4.0292115,-4.696439,-4.4943004,-4.2221065,-4.6744595,-4.605194,-4.589758,-4.6794753,-4.620031,-4.471106,-4.5925117,-3.8609996,-4.8410535,-3.638773,-4.1277146,-3.0968556,-4.752974,-4.884759,-5.0331445,-4.307467,-4.5353475,-4.244077,-3.7913094,-3.8808336,-4.825203,-4.8431554,-4.6075644,-4.6167855,-4.6496205,-4.655721,-4.5690103,-4.4140887,-2.7892852,-4.633781,-3.4576595,-4.1928773,-4.776899,-4.875829,-4.3606725,-5.06438,-5.1018806,-4.9091578,-4.9119387,-4.8910937,-4.830936,-4.793758,-4.648216,-4.74067,-4.7985764,-4.4097905,-4.509249,-3.7818923,-4.710439,-4.8737116,-4.8269086,-4.634634,-4.6296134,-4.3013206,-4.476055,-4.428292,-4.8662553,-4.645394,-4.56753,-4.453796,-4.4248314,-3.0149965,-4.5976167,-4.775361,-4.683125,-4.7058034,-4.710647,-3.2269735,-4.6223464,-4.7515106,-4.78091,-4.757896,-4.5285325,-4.064491,-4.450853,-3.4933214,-4.6873937,-4.836927,-4.5972676,-4.5482574,-4.1019673,-4.8092394,-4.7634788,-5.041094,-4.695964,-4.465688,-4.6550574,-4.396844,-4.378695,-4.3350806,-4.3521895,-4.291544,-4.228541,-2.8553872,-4.642806,-4.542476,-4.7945414,-4.539988,-2.7472215,-4.765078
+-0.60377926,-1.7341788,-2.4094086,-2.9501226,-3.2102227,-3.400165,-3.4109058,-3.4294426,-3.4291842,-3.130515,-3.1454155,-2.8824925,-2.7004914,-4.0467715,-4.175011,-4.1112776,-4.110742,-4.145379,-4.2880526,-4.253988,-4.0013766,-4.0681214,-4.3038297,-4.2811093,-4.2085714,-4.146538,-3.4695027,-3.935927,-4.3298316,-2.6487775,-3.3045368,-4.314604,-4.3238664,-4.3793836,-4.41199,-4.4308043,-4.3213706,-4.182446,-4.1003547,-4.1263585,-4.0905666,-4.084055,-4.0425677,-4.004072,-3.8823066,-3.6275349,-2.5524774,-4.033006,-4.2800217,-2.560827,-3.9850311,-4.278846,-4.388687,-4.3567214,-4.3436594,-4.2694907,-4.2352138,-4.0311112,-4.2117486,-3.8978972,-4.0822425,-4.2213798,-3.6694655,-3.5787213,-3.9163747,-3.970892,-4.0601554,-4.187655,-4.2768626,-4.175627,-4.1989956,-4.168365,-4.2515683,-4.1871834,-3.4573789,-4.451653,-4.4280953,-4.2643213,-3.4954562,-3.9192634,-3.9703422,-4.1043673,-4.093509,-3.9882603,-3.9249759,-3.896421,-3.9526792,-3.800735,-2.3567886,-3.450403,-3.8846126,-3.978334,-4.0307193,-3.2991118,-3.8004413,-3.8979177,-3.9060817,-3.6655412,-3.73839,-3.8037944,-3.513505,-3.5515976,-3.6316905,-3.2751126,-2.5741057,-2.8488743,-3.9471545,-3.22641,-3.757903,-4.0027204,-4.013202,-3.7321482,-3.4399707,-3.846416,-3.311329,-3.4026084,-3.253611,-3.5030942,-4.1173515,-4.1166167,-4.119493,-3.4122045,-3.992766,-4.1731,-3.8020864,-3.443731,-3.6464424,-4.1791453,-3.0122254,-3.4220402,-3.8803906,-3.400374,-3.0305676,-1.8498082,-2.3423305,-3.8696022,-4.2128267,-4.448733,-4.305917,-4.474919,-4.075587,-4.3998876,-3.632512,-4.3477507,-4.484898,-3.9696794,-4.3273883,-4.414674,-4.321648,-3.6616082,-4.2505345,-4.374092,-4.374985,-4.3380694,-4.250543,-4.1755023,-3.349421,-3.9452987,-4.215594,-4.2371974,-4.305558,-4.037626,-4.2907968,-3.8735285,-4.1586413,-3.782741,-4.2494254,-4.259463,-3.6637602,-3.3990402,-4.355146,-4.424068,-4.3798146,-4.3067217,-4.3322906,-4.258696,-4.1683774,-4.178415,-3.8619676,-4.071347,-4.1337914,-3.942638,-3.8236861,-3.768062,-3.7368622,-3.650836,-3.7036357,-3.7222543,-3.7052884,-3.7613883,-3.7893329,-3.7765803,-3.781962,-3.7961926,-3.7863207,-3.8248487,-3.824944,-3.868867,-3.8526316,-3.884265,-3.9123483,-3.92701,-3.9777675,-3.08628,-3.9306655,-4.0241466,-4.0225263,-4.004803,-3.9647613,-3.990921,-3.9582086,-3.9487772,-3.9422698,-3.938026,-3.9457765,-3.9514985,-3.9503102,-4.020759,-3.99367,-3.997933,-3.1657789,-2.0147855,-3.4556303,-4.08359,-4.018265,-3.982699,-3.9720001,-3.9155564,-3.882606,-3.8681421,-3.835257,-3.829493,-3.7879643,-3.9438834,-3.9787478,-3.898746,-3.4622524,-3.7973022,-3.9083652,-3.907042,-3.8849874,-3.7800798,-2.1645298,-2.8956137,-4.222611,-4.141108,-3.4596744,-2.964225,-2.5726676,-3.8535275,-4.3413353,-4.4651866,-4.3878856,-4.651055,-4.5485606,-4.4723687,-2.7343993,-4.178766,-4.4693074,-4.766972,-4.5435553,-4.0843415,-4.302359,-4.5776534,-4.500403,-4.4817066,-4.374663,-4.5078945,-4.4964976,-4.4082675,-4.442016,-4.3598065,-4.4254174,-4.5637617,-2.8170934,-2.2214816,-2.8518562,-4.189789,-4.4815774,-4.652536,-4.0082293,-4.263778,-4.2323823,-4.1156135,-4.125915,-4.68109,-4.7643037,-4.6700974,-4.6575217,-4.6620426,-4.458602,-4.3857636,-4.3352227,-2.5276103,-4.3213735,-3.1458826,-4.1980186,-4.321038,-4.6241307,-4.7377443,-4.7117352,-4.8418946,-4.6362815,-4.761213,-4.7365413,-4.722051,-4.692386,-4.5883527,-4.485333,-4.381493,-4.2567916,-4.3738856,-2.8246183,-4.4557357,-4.640059,-4.8073277,-4.7018304,-4.718982,-4.3687406,-4.278734,-4.266643,-4.663415,-4.6549897,-3.86064,-4.577069,-4.6393385,-3.2347221,-4.2834616,-4.618236,-4.663817,-4.7127995,-4.7573256,-3.6744542,-4.561583,-4.6868796,-4.50932,-4.830581,-4.686515,-4.3442163,-4.3120346,-2.7723036,-3.9797072,-4.35665,-4.0662456,-4.3396196,-3.8746028,-4.385908,-4.530765,-4.7498617,-4.762101,-4.594067,-4.648769,-4.428492,-4.3533463,-4.317096,-4.2746067,-4.159345,-4.124768,-2.5220962,-4.3336496,-4.632018,-4.662913,-4.630266,-2.8565626,-4.287235
+-0.23140973,0.43439972,0.8040215,1.1124232,1.0259539,0.27046987,0.6819738,0.48953262,0.27273035,0.41559803,0.4352728,-0.15604126,-0.3160364,-1.1999264,-2.1395712,-2.5747693,-2.7517552,-2.7526958,-2.81786,-2.8087373,-2.8445253,-2.6130514,-3.054207,-2.8577325,-3.2845216,-3.3482847,-3.105169,-3.0745692,-3.1445477,-3.0502605,-3.1589053,-3.184613,-3.2828798,-2.9613252,-3.1126776,-3.2025146,-3.1004214,-3.121557,-3.116662,-2.6678395,-3.1822362,-3.1142833,-3.4727015,-3.408455,-3.2848523,-3.292296,-3.1890044,-3.19099,-3.1822958,-3.1716218,-3.1167834,-3.0979686,-3.0499196,-3.0162163,-2.5302174,-3.1257844,-3.4539206,-3.1833498,-3.669258,-3.8291574,-3.7085857,-3.2772357,-3.7622352,-3.7805986,-2.6711862,-3.7537012,-3.984602,-3.9002213,-3.671565,-3.715653,-3.6387992,-3.419016,-3.729024,-3.3146243,-3.7923012,-3.054133,-3.8334117,-3.893046,-3.9314027,-3.9462519,-3.9864302,-3.9202213,-3.8309321,-3.1773412,-3.8526673,-3.8959117,-2.8814378,-3.8708577,-3.888721,-3.943275,-3.725925,-3.8842897,-3.9855957,-3.9618964,-3.9365,-3.9599996,-3.5353494,-3.8338675,-3.7505417,-3.942884,-3.8153138,-3.9652863,-3.3923738,-4.121321,-4.2121644,-3.984715,-4.0751004,-3.434495,-4.040386,-4.076225,-4.062975,-3.5159962,-4.091973,-4.0582504,-3.6135254,-4.09591,-4.19096,-3.8934631,-3.0939698,-3.85261,-3.964333,-3.980476,-4.01313,-3.900865,-4.0992594,-3.7072368,-4.061966,-4.0938115,-4.0476146,-4.00789,-3.9887004,-3.9646745,-3.1808853,-3.79146,-3.467708,-3.960073,-4.095984,-4.1398563,-3.43503,-4.083609,-3.6763568,-3.6078606,-4.037007,-4.164022,-4.1212807,-3.1770802,-4.0397153,-4.156131,-3.8115315,-4.0732007,-4.1554875,-4.1753993,-4.116402,-4.0809035,-4.0109477,-3.9487405,-3.8695474,-3.8455157,-3.3361483,-2.8812993,-3.9793105,-3.943995,-4.128038,-4.184028,-4.0825834,-3.64044,-4.043595,-4.0216155,-3.2453675,-4.013422,-4.131945,-4.1911016,-4.2179694,-3.230199,-2.9264126,-3.8464365,-3.9071517,-3.4443097,-4.14638,-4.308239,-4.1483626,-3.9113493,-3.8657708,-3.81706,-3.9215126,-3.8478093,-3.742579,-3.296622,-3.864184,-3.896061,-3.9114456,-3.9013343,-3.875321,-3.8536515,-3.2865222,-3.9089303,-3.8190017,-3.7848134,-3.8679547,-3.6492133,-3.8281026,-3.9259162,-3.912054,-3.8961258,-3.921083,-3.9301138,-3.899046,-3.8812218,-2.251983,-3.7488027,-3.7851849,-3.925407,-3.6874723,-3.8283267,-3.9017282,-3.8760352,-3.9210534,-3.9611573,-3.9518647,-3.9623132,-3.9919124,-3.9157662,-3.9386764,-4.0222793,-3.980888,-3.6952844,-3.6968923,-3.821218,-3.9802299,-4.019323,-3.9119945,-3.9194694,-3.7575555,-3.5755546,-3.3227897,-2.9869258,-1.9899926,-3.2243447,-3.5792403,-3.3135386,-2.8402138,-1.796658,-2.9344344,-3.4311726,-3.6649659,-3.5970259,-3.4654207,-2.2129912,-2.162458,-1.788146,-1.7939687,-1.7091436,-1.5835314,-1.5289917,-1.2217951,-1.210969,-1.5037866,-1.6809332,-1.710856,-1.7620065,-1.5000408,-1.9420671,-2.2052178,-2.2208004,-2.218234,-2.1886663,-2.3444557,-2.3783894,-2.3123636,-2.0035863,-2.5554254,-2.4069505,-2.4631264,-2.5286827,-2.5532675,-2.6000628,-2.4046915,-2.5541506,-2.8517008,-2.8740811,-2.859828,-2.869845,-2.7709134,-2.6498728,-2.123557,-2.7791739,-2.7401905,-2.8087938,-2.6881716,-2.7367063,-2.660759,-2.591472,-2.5435066,-2.595254,-2.6531382,-2.3801398,-2.197239,-1.8856771,-1.525527,-1.9124575,-1.8510735,-1.9141045,-2.4152422,-2.6536155,-2.9781861,-2.79556,-2.8115518,-3.0430279,-2.9546866,-2.752284,-2.7143247,-2.838883,-2.547112,-2.8382163,-2.9928412,-2.6755629,-2.6809993,-2.6555142,-2.6992397,-2.6237698,-2.6369467,-2.5875754,-2.5628426,-2.4737897,-2.0106034,-1.8078787,-1.5992985,-1.1131282,-1.6638379,-1.6694179,-2.033213,-1.6248848,-1.4969645,-1.2325258,-1.1566548,-1.0320086,-1.650177,-1.8931723,-1.7747958,-1.3274355,-0.9161747,-1.3412342,-1.7064426,-1.7345703,-1.6078293,-1.4109898,-1.2826259,-1.2777364,-1.2642119,-1.2769194,-1.1446934,-0.93344337,-0.39960873,-0.26933074,-0.34468317,-0.6878642,-0.6991351,-1.0047159,-1.5494084,-1.7845244,-2.924346,-3.1572838,-3.054285,-2.8377242,-2.975707
+-0.44241136,-0.78761643,-1.4088595,-1.5575562,-1.8341384,-2.3149388,-2.7534487,-2.8072016,-2.8898783,-2.393743,-2.4959383,-3.0958788,-2.9690225,-3.1570323,-3.0206356,-2.930625,-2.9431543,-2.9598224,-2.690195,-3.2795444,-3.1621656,-3.0781121,-3.313748,-3.0953,-3.1232429,-2.997716,-2.9667811,-3.086598,-3.3836722,-2.9781208,-3.3010664,-3.260631,-3.4863923,-3.366773,-3.656867,-3.4869328,-3.1378193,-3.4224386,-3.042749,-2.893797,-3.7245183,-3.4396098,-3.556841,-3.6667871,-3.6724727,-3.5007577,-3.4107416,-3.471699,-3.4099212,-3.262376,-3.1854763,-3.1443174,-3.0797,-3.0468485,-2.8623524,-3.1769614,-3.1921408,-3.444759,-3.264022,-3.4496732,-3.172521,-3.3069746,-3.6249137,-3.694882,-3.4478793,-3.5031593,-3.3911788,-3.615427,-3.679276,-3.3562481,-3.2752142,-3.32141,-3.5558875,-3.5490682,-3.3179693,-2.8256516,-3.398634,-3.6533742,-3.633808,-3.586098,-3.3815594,-3.4338298,-3.3686662,-3.349469,-3.4307213,-3.347912,-2.8856022,-3.5581596,-3.5278268,-3.6428835,-3.5317035,-3.4856975,-3.6953979,-3.6450691,-3.48947,-3.4140525,-2.9968557,-3.3048615,-3.631399,-3.529024,-3.5665736,-3.4556491,-3.3398817,-3.3735478,-3.3060389,-3.1980476,-3.5918407,-3.2689764,-3.5810986,-3.5175889,-3.4285192,-3.1179743,-3.2877164,-3.064087,-3.4011059,-3.4932292,-3.520169,-3.4757004,-3.5138555,-3.5234606,-3.573279,-3.553184,-3.5434613,-2.8962202,-3.7475133,-3.7243848,-3.2903562,-3.6596541,-3.6605043,-3.761423,-3.8545995,-3.741848,-3.5416481,-3.592618,-3.6055365,-3.7719588,-3.8929887,-3.8381891,-3.4879541,-3.9444137,-3.1241984,-3.1708899,-3.5170748,-3.8712564,-3.895451,-3.3385186,-3.6624358,-3.7578235,-3.2220058,-3.7125173,-3.8077111,-3.777237,-3.743338,-3.9059095,-3.8448071,-3.9958787,-4.026871,-3.9252849,-3.723847,-2.667593,-3.4828944,-3.7644901,-3.683637,-3.8260465,-3.89463,-3.5494263,-3.7538662,-3.8044267,-3.5412116,-3.7781367,-3.8150115,-3.5384583,-3.393312,-2.9144235,-3.4132392,-3.6434186,-3.7121835,-3.6769056,-3.7885852,-3.755567,-3.6733832,-3.5867991,-3.62994,-3.6858897,-3.8682208,-3.8415513,-3.9908032,-3.853754,-3.862321,-3.5643342,-3.9430265,-3.8197198,-3.9016242,-3.7763457,-3.60878,-3.8995605,-3.8482347,-3.8057995,-3.0616317,-3.7464762,-3.653262,-3.9174151,-4.010419,-3.9991508,-3.9761376,-3.7937837,-3.7200522,-3.77488,-2.607614,-3.5070462,-3.7611709,-3.5671291,-3.6197572,-3.945517,-3.7421231,-3.575242,-3.8832679,-3.785624,-3.8373985,-3.8475122,-3.904759,-3.8490224,-3.8765159,-4.019237,-3.9185896,-4.0657005,-4.0511107,-3.9450803,-3.8964791,-3.8624177,-3.8376946,-3.888935,-4.276301,-4.398727,-4.1439443,-3.9666662,-3.4171338,-3.7627826,-3.955491,-3.8781857,-3.7145982,-2.9184613,-3.318712,-3.7932258,-3.7067132,-3.7147841,-3.6966443,-3.1126103,-3.103297,-2.799846,-2.8145945,-2.6936247,-2.496593,-2.3510437,-1.7131605,-1.7727885,-1.8429871,-1.8956614,-1.8794818,-1.6389389,-1.4664927,-1.9122176,-1.9201558,-1.7091498,-1.7510941,-1.7968307,-1.8318765,-2.011234,-1.9678102,-2.1183488,-2.2418242,-2.0532966,-2.1964931,-2.1469228,-2.149949,-2.1538227,-2.1334825,-2.017197,-2.2021523,-2.2334676,-2.159627,-2.1297052,-2.0863495,-2.0904765,-2.0447521,-2.330698,-2.5538511,-2.40594,-2.2495997,-2.259296,-2.2303257,-2.4001555,-2.4407759,-2.3720818,-2.351911,-2.147223,-1.9644263,-1.8349972,-1.6043096,-1.2149286,-1.326206,-1.2643075,-1.2852368,-1.2948678,-1.4367793,-1.4601202,-1.6400037,-1.7651598,-1.8346589,-1.8644884,-1.8426404,-1.8386259,-2.053863,-2.0993187,-1.9749489,-1.9283931,-2.029096,-2.0308285,-2.2257266,-2.3366742,-2.2241905,-2.1448565,-2.0636418,-1.7013438,-1.1383774,-1.9318938,-2.9078467,-3.364348,-3.2046406,-2.884397,-2.8502536,-2.4141822,-1.9924583,-1.7602377,-2.5124106,-2.7823937,-2.4600034,-1.9577949,-1.6557238,-2.0105891,-2.7739959,-3.6370008,-3.34779,-3.295484,-2.871375,-2.576102,-2.229568,-2.1420069,-1.947865,-1.8727312,-1.5700324,-1.5652204,-1.795007,-1.924974,-2.7244618,-3.2354624,-2.747933,-2.9304075,-3.2220473,-3.2571394,-3.2885208,-3.2419362,-3.2379868,-2.899232,-3.170311
+-0.21035427,-0.5173125,-1.0182679,-1.4690793,-1.4594147,-1.9581146,-2.3359642,-2.342352,-2.2719119,-1.968214,-2.4180708,-2.5168495,-2.4241023,-2.4038591,-2.395836,-2.354661,-2.3492622,-2.3730805,-2.2383757,-2.5872834,-2.8036523,-2.99295,-2.9171388,-2.7671437,-2.6226947,-2.5636935,-2.4337683,-3.0869884,-3.0931835,-2.6476045,-3.075395,-2.9748616,-2.816004,-3.013504,-2.9059463,-2.7860727,-2.6940172,-2.6483634,-2.522362,-2.514997,-3.2403054,-3.0279622,-3.3137565,-3.3820815,-2.9922242,-2.950462,-2.9585686,-2.7484179,-2.6633172,-2.584933,-2.678127,-2.6838715,-2.7260997,-2.75075,-2.5250769,-2.9548953,-2.842878,-2.7984436,-3.0332959,-3.1127205,-2.4713016,-3.19665,-3.0852938,-2.8716571,-2.7263458,-3.0729203,-3.0431967,-2.7696698,-2.889506,-2.4929404,-3.1868644,-3.0101018,-2.9805822,-2.9719877,-2.4522867,-2.9990413,-3.2490306,-3.1906414,-2.9681296,-2.9042163,-2.7604418,-2.8062549,-2.4648864,-3.0995772,-3.298133,-3.1970975,-3.1854348,-2.93931,-2.7789545,-2.719557,-2.7251046,-2.7670224,-2.77559,-2.7304897,-2.8282719,-2.9359274,-2.2608218,-3.0873113,-2.994309,-2.9359798,-2.8321187,-2.6911974,-2.641894,-2.7951548,-3.2376084,-3.0773387,-3.0183463,-2.7807665,-3.2754374,-3.009082,-3.0443766,-3.007177,-2.8149676,-3.2530751,-3.2671924,-3.260019,-3.2154417,-3.0427356,-3.0125785,-3.3058205,-3.3932672,-3.1625838,-3.006134,-2.9594822,-2.922597,-2.8947048,-2.8232636,-3.1583536,-2.9755092,-3.051423,-3.0364249,-3.017595,-3.058178,-2.7967024,-3.3234806,-3.2416995,-3.0238023,-3.213079,-3.1926367,-2.7106018,-3.1685367,-3.1352348,-3.3059616,-3.200593,-3.017526,-2.747489,-3.3751657,-3.186936,-3.1628196,-3.4290373,-3.303515,-3.0120258,-3.519267,-3.2211282,-3.203511,-3.0882099,-2.9991503,-2.9774213,-2.8997192,-2.8326957,-2.9529223,-3.2306972,-3.1761596,-3.0984526,-3.0057454,-2.967634,-3.044095,-2.9878206,-3.071637,-3.1437602,-3.0827224,-3.0398736,-3.0803485,-2.4219403,-3.1531649,-3.2836573,-3.2663574,-3.3379774,-3.1708238,-3.237527,-3.2605872,-3.1509736,-3.2693455,-2.9812627,-3.1846483,-3.25995,-3.29641,-3.265315,-2.6043153,-3.1372464,-3.2549365,-3.2977626,-3.2789886,-3.264853,-3.020598,-3.185888,-3.2446032,-3.087254,-2.9598475,-2.9908926,-3.1036124,-3.2149057,-3.2343256,-3.16052,-3.1881814,-3.1469717,-3.0123136,-3.115143,-2.2657232,-3.0331886,-3.197467,-3.0941706,-3.0455418,-3.0646563,-3.054141,-2.7297895,-3.122932,-3.1556416,-3.1902442,-3.233274,-3.2219508,-3.2215128,-3.0933087,-3.1096375,-3.0747085,-2.844761,-2.962139,-3.2009811,-3.157709,-3.1110597,-3.0146995,-2.8313634,-3.1210828,-2.866127,-2.749107,-2.9526868,-2.506165,-3.0458229,-2.9503715,-2.903027,-2.981965,-2.5084076,-2.9399543,-2.922708,-3.0142934,-3.1621573,-3.0080154,-2.603197,-2.6722746,-2.3195274,-2.0575469,-1.939019,-1.7561083,-1.6274221,-1.4265299,-1.3804703,-1.4050367,-1.5016422,-1.5618834,-1.5839798,-1.6593006,-1.601032,-1.5482605,-1.5020199,-1.6461267,-1.6482551,-1.6278732,-1.583277,-1.5011392,-1.2466738,-1.5131333,-1.444685,-1.58519,-1.5458386,-1.436122,-1.3793383,-1.5440025,-1.4795561,-1.5796056,-1.5705688,-1.5660241,-1.5589063,-1.4671979,-1.4157314,-1.2973905,-1.4528432,-1.5989435,-1.5915601,-1.5176024,-1.4019754,-1.0408547,-1.1525183,-1.30409,-1.3238978,-1.3315253,-0.77949053,-0.32059407,-0.054679126,-0.08005521,-0.67593086,-1.5157621,-1.9506853,-1.7557881,-1.5074103,-1.340662,-1.4650769,-1.4014807,-1.3145921,-1.2889655,-1.2367561,-1.2944157,-1.1365738,-1.1624169,-1.2161248,-1.2834504,-1.1681414,-1.0475259,-0.7687884,-0.94768065,-0.9977953,-0.94433326,-1.0473304,-0.7653145,-1.1291392,-2.0483294,-2.5077035,-2.5182247,-2.5349646,-2.6015885,-2.7130208,-2.5936012,-2.3187711,-2.4109647,-2.497867,-2.6353493,-2.43123,-2.1842256,-1.902905,-1.9418373,-2.093268,-2.4690566,-2.7661042,-2.5443573,-2.2894213,-1.9720855,-1.9034724,-1.761652,-1.7030463,-1.51846,-1.5358901,-1.8113146,-2.1100187,-2.2556038,-2.4554462,-2.624564,-2.6254892,-2.3823667,-2.47331,-2.2932208,-2.8063698,-2.8621008,-2.9600165,-2.7488847,-2.3797443,-2.8852854
+-0.48694927,-1.1324737,-1.514853,-1.8106816,-1.8110738,-1.9454665,-2.5466046,-2.5024216,-2.5130205,-2.172596,-2.768672,-2.6773577,-2.6829185,-2.5973117,-2.5490818,-2.538879,-2.5348992,-2.5783863,-2.5133743,-2.6350307,-2.785053,-3.1183243,-3.0906763,-2.9564993,-2.827761,-2.8564477,-2.7781708,-3.050335,-3.1439712,-2.7434916,-3.2378283,-3.0557928,-3.0941885,-3.0611615,-2.9955688,-2.933436,-2.9061852,-2.7348948,-2.6724482,-2.7667124,-3.1507964,-3.236962,-3.1252527,-3.256426,-3.093888,-3.002583,-2.9091616,-2.8926392,-2.782753,-2.7710083,-2.932375,-2.8921456,-2.8993888,-2.9516444,-2.8930516,-2.5840523,-2.9724522,-2.9854016,-3.0971107,-3.1938524,-3.0509741,-2.9590786,-3.2144322,-3.124919,-2.973495,-3.153085,-3.24962,-3.0525408,-3.1309366,-2.787568,-3.2144403,-3.1646168,-3.1388435,-3.063228,-2.9102073,-3.18758,-3.233766,-3.2005029,-3.0944204,-3.1402302,-3.1248536,-2.6663885,-2.6163795,-3.0709572,-3.175716,-3.1547542,-3.1376734,-3.0628805,-3.0590315,-2.9382796,-2.9217527,-3.1385171,-3.0143392,-2.8158388,-3.190041,-3.2061594,-2.7559986,-3.286377,-3.2345562,-3.2123113,-3.0760095,-3.0336072,-2.9495306,-2.7336593,-3.2803001,-3.1861281,-3.1066413,-2.8128476,-3.340629,-3.3137577,-3.379043,-3.2493236,-3.2351048,-3.4911077,-3.265286,-2.9331334,-3.3884084,-3.5129929,-3.5095124,-3.5491445,-3.2978497,-3.159412,-3.050096,-2.981741,-3.216693,-3.128517,-3.1028197,-3.144854,-3.0928614,-3.170992,-3.1798568,-3.2058203,-3.1952498,-2.675447,-3.1278262,-3.1308389,-2.7100902,-3.2935455,-3.213725,-3.1908224,-3.2542038,-3.074205,-3.258053,-3.1751926,-3.1168857,-2.8925328,-3.2707982,-3.3450243,-3.0556865,-3.3981733,-3.3616014,-3.209148,-3.3790817,-3.2038395,-3.1042576,-3.0799615,-3.163901,-3.128873,-3.09843,-3.1326418,-2.2214842,-3.0987577,-3.1061883,-3.0830672,-2.991044,-3.0251045,-2.7984056,-3.1354823,-2.9995434,-3.1930625,-3.097906,-3.0914578,-3.1710472,-3.16846,-3.1199336,-3.133496,-3.142542,-3.212931,-3.0480633,-3.2657557,-3.259141,-2.9473948,-3.0971334,-2.9723244,-3.1140249,-3.2311182,-3.2893023,-3.1881099,-2.7156746,-3.168055,-3.239399,-3.308364,-3.336502,-3.3234248,-3.1384287,-3.19117,-3.2929366,-3.150674,-2.7401881,-3.162429,-3.168184,-3.2887127,-2.9935968,-3.1734467,-3.233017,-3.2477713,-3.1290202,-3.134485,-2.793727,-3.2266333,-3.2569723,-3.1497178,-3.2074778,-3.2845943,-3.123131,-2.5760257,-3.0211606,-3.105003,-3.2709577,-3.3546112,-3.353489,-3.2728453,-3.2450433,-3.2895381,-3.335544,-3.056706,-3.0848522,-3.3720827,-3.3449922,-3.2842634,-3.1588564,-3.0902424,-3.2200859,-2.9165442,-2.9134812,-3.1523366,-2.5884721,-3.218314,-3.2236657,-3.1151676,-3.2084317,-2.7739627,-3.2310543,-3.1779494,-3.3886054,-3.52174,-3.3499308,-2.7496667,-2.81359,-2.635951,-2.6156619,-2.5696497,-2.409891,-2.237753,-2.2049847,-1.7950649,-1.796226,-1.7817738,-1.7737327,-1.8597028,-1.7313385,-1.7954378,-1.8456781,-1.7873445,-1.750011,-1.66627,-1.7406316,-1.5701637,-1.5055921,-1.5897417,-2.0470119,-2.0358849,-1.919383,-1.8651245,-1.8238411,-1.6606641,-1.6663868,-1.8772969,-1.6589181,-1.6711397,-1.6622941,-1.6445456,-1.6019135,-1.6417058,-1.595192,-1.3201854,-1.3482449,-1.5555477,-1.6508133,-1.6568401,-1.7052948,-1.2699537,-0.7843563,-0.9429541,-1.5260701,-2.3121974,-2.8305814,-2.9880986,-2.89606,-2.8904989,-3.0730646,-3.058704,-2.687042,-2.807186,-2.5290303,-2.8548431,-2.999783,-2.6620567,-2.4464328,-2.1911552,-2.3122177,-2.3366153,-2.5335531,-2.3801935,-2.0468967,-1.952893,-1.9770465,-2.3043861,-2.3564398,-2.484683,-2.3331928,-2.286666,-2.5483193,-2.745732,-2.748716,-2.699971,-2.523716,-2.738068,-2.7327008,-2.8729713,-2.9883192,-2.7537408,-3.0056975,-2.778569,-2.7971206,-2.8611887,-2.639934,-2.6851935,-2.6392303,-2.510527,-2.5543318,-2.9188132,-2.8855643,-2.7243242,-2.57266,-2.464244,-2.170845,-2.2020204,-1.8173704,-1.7537074,-1.9529757,-2.3706036,-2.5887609,-2.7994456,-2.5571227,-2.5766428,-2.3747444,-2.5005853,-2.0747688,-2.8243022,-2.9540634,-2.9685583,-2.8895893,-2.3978696,-2.9267244
+-0.56050545,-1.453083,-2.4743452,-2.984569,-3.276773,-3.1020684,-3.611333,-3.7590203,-3.7740188,-3.2162204,-2.9936764,-3.5838807,-3.941886,-3.8124042,-3.7297416,-3.6330183,-3.505148,-3.4896455,-3.194285,-2.9238563,-3.7649589,-3.9557004,-3.9240193,-3.9332528,-3.7884092,-3.097692,-3.8437476,-4.272153,-4.2538834,-3.7060618,-4.0605006,-4.3436503,-4.2737274,-4.325706,-4.1302924,-3.8895593,-3.6074739,-3.9229083,-3.7819881,-3.5738184,-4.040092,-4.121552,-4.1972394,-4.3122873,-4.2107673,-4.0170116,-3.7270904,-4.1287856,-4.028884,-3.715187,-3.7275615,-3.5616088,-3.4115062,-3.3860338,-3.1887217,-2.932521,-3.1383986,-4.0012636,-4.031859,-3.7281713,-3.051672,-3.6892555,-3.627529,-3.2285924,-2.6818624,-3.6629486,-3.6446784,-3.463076,-3.3070946,-3.166446,-3.1802247,-3.1072297,-2.8783722,-2.9890296,-2.16925,-3.2003617,-3.3422732,-3.190801,-3.135106,-3.110392,-3.0542176,-3.0997775,-2.9884858,-3.0661647,-3.0136652,-2.8178291,-2.851802,-2.514814,-3.4548652,-3.2559357,-2.9425893,-3.1670392,-2.9617746,-2.5588741,-3.2737255,-3.3470817,-3.1922648,-3.4119513,-3.6469226,-3.6828995,-3.4772582,-3.3155267,-3.1518216,-2.7062788,-2.9220939,-3.2590737,-3.1463091,-2.5560498,-3.0688982,-3.2281435,-2.412167,-3.2662594,-3.1603723,-3.3452547,-3.2515764,-2.845662,-2.9944768,-3.2463276,-2.9458354,-3.2956991,-3.4345164,-3.4414072,-2.55821,-3.4262152,-2.8677354,-3.355482,-3.4195929,-3.4193153,-3.4411173,-3.4127696,-3.364252,-3.3874505,-3.182159,-3.0652184,-2.25081,-2.6698022,-2.100581,-3.2444038,-3.359904,-3.6154068,-3.6123135,-3.6321163,-3.5707068,-3.437551,-3.2620406,-3.1260319,-3.0563617,-2.7260542,-3.1641119,-3.1364093,-3.113618,-3.1299355,-2.8762517,-3.1010337,-3.017137,-3.0914438,-3.086638,-3.0003047,-2.898966,-2.8344526,-2.782571,-2.3029957,-2.6609545,-3.3420272,-3.6393037,-3.6480653,-3.4891255,-3.4409094,-2.5506666,-3.0918326,-3.4502344,-3.5578184,-3.5408368,-3.420956,-3.3529143,-3.3549132,-3.2974188,-3.045035,-2.828412,-3.5139084,-3.5581064,-3.6124156,-3.172068,-2.963468,-3.62613,-3.595733,-3.4583611,-3.3908918,-3.2846866,-3.302286,-3.256143,-3.3886151,-3.453371,-3.3921168,-3.2745461,-3.2122488,-3.2004178,-3.099082,-3.0242186,-2.8844206,-2.932547,-2.254343,-2.360758,-3.3976302,-3.6746373,-3.8336945,-3.457345,-3.5598047,-3.3959126,-3.544176,-3.5674727,-3.5175905,-3.4440053,-3.4418705,-3.3975248,-3.3891776,-2.6735697,-3.6053443,-3.7899175,-3.827848,-3.8196645,-3.773919,-3.729577,-3.771833,-3.6966834,-3.5540104,-3.5751517,-3.7236848,-3.705164,-3.6729846,-3.5362892,-3.0177984,-3.8431125,-3.8135867,-3.782414,-3.86451,-3.2825983,-3.879455,-3.9170666,-3.921298,-4.0381284,-3.163606,-3.889979,-4.0015006,-4.2651887,-4.2192955,-4.22842,-3.9396405,-4.1224895,-4.1766977,-4.330588,-4.137324,-3.8851519,-3.7151718,-3.2964106,-3.2438822,-3.619027,-3.583532,-3.3475847,-3.1262012,-2.6115723,-3.0783272,-2.9084308,-2.7150974,-2.6373463,-2.719954,-2.410821,-2.4730854,-3.0745912,-3.4204135,-4.095867,-4.155436,-3.887394,-4.093485,-3.8767896,-3.8917537,-3.692307,-4.0825086,-4.1419444,-3.8515677,-3.4696083,-3.3050857,-3.199525,-2.8705914,-2.2089753,-3.078878,-3.6795757,-3.8703284,-3.4639347,-3.4818122,-3.4292243,-3.3913767,-4.009187,-4.283582,-3.6833806,-3.9986243,-3.977404,-3.9369392,-3.9992867,-3.921503,-4.0278788,-3.9756093,-3.8198647,-3.8061395,-3.7217917,-3.6661932,-3.8054428,-3.790091,-3.61538,-3.2917697,-3.1590977,-3.283379,-3.4934068,-3.820907,-3.860217,-3.3092265,-3.329627,-3.5432506,-3.576367,-3.4341424,-3.6482239,-3.5331445,-3.516704,-3.5456219,-3.421223,-3.1156054,-3.0268142,-3.233255,-3.154135,-3.1184678,-3.6018407,-3.5038686,-3.4836369,-3.3532467,-3.2597265,-3.7712612,-4.1116166,-3.7826796,-3.96308,-3.9745202,-3.313221,-3.9024224,-3.9970841,-4.1169763,-3.934566,-3.7961173,-3.3348296,-3.8759804,-3.689591,-3.2138743,-2.9898887,-3.6587105,-3.5767326,-3.6455474,-3.257111,-3.446925,-2.9650145,-3.5548766,-3.3160167,-3.4717035,-3.5285592,-3.6593704,-3.4807014,-2.828833,-3.8644772
+-0.9281896,-2.2373528,-2.9646163,-3.3013,-3.4472275,-3.526349,-3.8105917,-3.9392157,-3.984827,-3.7523026,-3.843852,-4.0770698,-4.0869546,-4.109842,-4.079587,-3.8993578,-3.8696127,-3.6947083,-3.5365615,-3.557874,-3.6865702,-4.211043,-4.368755,-4.3876624,-4.3307633,-4.232995,-4.2190466,-4.5481644,-4.391447,-3.7120738,-4.224749,-4.379956,-4.5228825,-4.3607593,-4.4034657,-4.236101,-4.1960244,-4.2488384,-3.816001,-3.334969,-4.323748,-3.781404,-4.239507,-4.542044,-4.500488,-4.3104253,-3.7103395,-4.2910504,-4.334832,-4.50859,-4.4560437,-4.369197,-4.1847024,-4.2562547,-4.2094607,-3.4481277,-4.0173745,-4.3900247,-4.617554,-4.503711,-4.297175,-4.2417674,-4.286561,-4.0727506,-4.06593,-4.5190253,-4.302493,-4.1587405,-4.0743866,-3.9531884,-3.9417624,-3.939641,-3.921454,-3.75347,-3.645618,-3.538948,-4.036733,-3.9431229,-3.7887955,-3.6901941,-3.716588,-3.7269244,-3.6952672,-3.6823282,-3.5885484,-3.3451009,-3.5951743,-3.5624137,-3.6839345,-3.6483521,-3.6024938,-3.595523,-3.1649632,-3.129632,-2.9614162,-3.8814645,-3.7022252,-3.5776415,-4.053493,-4.158211,-4.2287745,-4.3210945,-4.049455,-4.3449674,-4.280717,-4.0566382,-4.0569158,-3.9982429,-3.8660889,-3.8830395,-3.8078504,-3.9237885,-3.6950154,-3.9148293,-3.8148465,-3.5454082,-3.1922584,-3.8282714,-3.5768309,-3.847898,-3.9539123,-4.0743794,-3.7229667,-4.1467276,-3.6375473,-4.204342,-3.754992,-3.8533473,-4.0019126,-4.170516,-4.1414714,-3.8692145,-4.0887227,-4.0006666,-3.0356834,-3.5862067,-3.4741132,-3.9747872,-4.196541,-4.4006615,-4.312161,-4.038008,-4.361468,-4.3249335,-4.2283387,-4.4045525,-4.2922654,-4.0126634,-3.9352632,-4.1436224,-4.025893,-3.9265914,-3.900765,-3.879293,-3.6443927,-3.6576562,-3.6718774,-3.5536633,-3.6914272,-3.6481328,-2.8298302,-3.663238,-3.9538794,-3.9734244,-3.8887854,-3.878098,-3.648724,-3.58977,-3.4474561,-3.5496259,-3.9455705,-3.9715095,-3.8404074,-3.7869806,-3.7670922,-3.7630973,-3.7057347,-3.6769593,-3.3516269,-3.5621996,-3.6503103,-3.703177,-3.6150773,-3.5608265,-3.7493005,-3.718618,-3.5721776,-3.432782,-3.4287126,-3.4440942,-3.2882087,-3.3648007,-3.3643405,-3.339559,-3.2857056,-3.3053787,-3.4424257,-3.4318466,-3.4446301,-3.4310255,-3.428696,-3.580031,-2.823326,-3.4120977,-3.3179104,-3.4013793,-3.4466815,-3.3598833,-3.4328508,-3.101349,-3.412009,-3.4286108,-3.4667447,-3.6362648,-3.4261966,-3.4599802,-3.600583,-3.4713192,-3.361793,-3.4575357,-3.4563084,-3.5205932,-3.521513,-3.347181,-3.431281,-3.3396595,-3.3010774,-3.4303951,-3.4581122,-3.418666,-3.3620276,-3.0633821,-3.1761901,-3.151536,-3.1888044,-3.3085213,-2.576975,-3.4286902,-3.5929365,-3.6273525,-3.7191443,-2.7467337,-3.6677794,-3.8177915,-4.1057067,-4.0222073,-3.9814267,-3.9412956,-4.063562,-3.6553895,-3.7695866,-3.8481193,-3.7547746,-3.5295305,-2.8976722,-3.0680718,-3.7313561,-3.586163,-3.4907975,-3.1090431,-2.820209,-3.350961,-3.2357974,-2.8966267,-2.6729198,-2.5168955,-2.4673371,-2.740737,-3.6469812,-2.9491107,-3.8098302,-3.999998,-3.920998,-4.035656,-3.9939852,-4.0494256,-4.055156,-4.051001,-4.1336265,-3.8933272,-3.7230816,-3.5523357,-3.200434,-2.9166832,-2.630815,-3.3821495,-3.938859,-3.479207,-3.3941865,-3.5400426,-3.7665925,-3.8887148,-4.1145215,-4.1054053,-4.1342278,-4.2723002,-4.150955,-4.106321,-4.1900024,-4.162363,-4.277667,-4.287546,-4.177546,-4.079359,-4.127518,-4.1089396,-3.9265046,-4.010122,-3.7419357,-3.5091596,-3.614566,-4.0435596,-3.6619868,-4.1142297,-4.1219373,-3.8003082,-3.9881105,-3.9329224,-3.9126606,-3.543156,-3.8341417,-3.8527393,-3.9492235,-3.7423759,-4.1032414,-3.9403067,-3.7628713,-3.8816314,-3.8830934,-3.808392,-4.290008,-3.8142142,-3.7633367,-3.7451787,-3.8580356,-4.1345234,-4.1519065,-4.0279145,-4.0682025,-3.758689,-3.4173656,-4.0048566,-4.4083266,-4.6159806,-4.247212,-4.085815,-4.0406365,-4.2558875,-4.175595,-3.923871,-3.7793279,-3.9192643,-4.0639634,-3.8147311,-3.8957791,-3.9537487,-3.747274,-3.8936267,-3.6259127,-4.1820226,-4.1546464,-4.2729516,-4.1539855,-3.9312568,-4.2656837
+-0.752641,-1.2094574,-1.7092004,-2.163575,-2.5203676,-2.761022,-3.0812783,-3.1957743,-3.4284418,-2.8189526,-2.9108515,-3.3411565,-3.210585,-2.8500905,-2.8727245,-2.6230202,-2.7773128,-2.7933955,-2.563283,-2.43829,-2.6264906,-3.6357613,-3.428463,-3.5025828,-3.5005236,-3.3750508,-3.0998335,-3.398109,-2.932713,-3.2624097,-3.7986107,-3.7270017,-3.7328029,-3.7377963,-3.738934,-3.642333,-3.5035222,-3.3667955,-3.0364883,-3.1603122,-3.6148589,-3.1828058,-3.6279206,-3.4994206,-3.535256,-2.98497,-3.1173968,-3.3194273,-3.2145529,-2.905075,-3.394847,-3.5570314,-3.2801986,-3.2025867,-2.621181,-3.648808,-3.3786366,-3.930502,-3.9395185,-3.4602485,-3.0614855,-2.9374852,-3.270169,-3.2741294,-3.4015431,-3.782793,-3.602622,-3.3695602,-3.2283158,-3.000979,-2.8534844,-2.8130984,-2.5860176,-2.5240574,-2.4484887,-2.4085839,-3.0069633,-2.954153,-2.7471538,-2.6865997,-2.57664,-2.41435,-2.6006937,-2.4454932,-2.3699212,-2.5168767,-2.394312,-2.2138572,-3.0412083,-2.9492998,-2.9120023,-2.9291701,-2.7020679,-2.8392763,-2.6037931,-2.6437092,-2.6535165,-2.6400337,-2.577377,-2.4279232,-2.6346655,-2.6439195,-2.7154927,-2.5864313,-1.5879428,-2.9080215,-2.6933746,-2.928185,-2.897215,-2.8262446,-2.835401,-2.9061785,-2.7569976,-2.777076,-2.8695736,-2.924707,-2.8284736,-2.3737893,-1.9975629,-2.6576424,-2.779552,-2.9293547,-2.5124886,-2.6932478,-2.8457127,-2.7014167,-2.9779475,-2.7496326,-2.946465,-3.030778,-3.1283777,-3.24328,-3.2597728,-3.2489073,-3.1839337,-2.415811,-2.4790416,-2.1498475,-2.6332824,-2.6113186,-2.3513951,-2.4518075,-2.7650537,-2.6606178,-2.6543746,-2.8349614,-2.790347,-2.2500682,-2.6499205,-2.7941494,-2.9142656,-2.981666,-3.0523312,-3.1574402,-3.0140333,-2.9926558,-3.1528912,-3.2088282,-3.2378387,-3.3037288,-3.392766,-3.3567996,-3.3537006,-3.4391377,-3.5322502,-3.682993,-3.763576,-3.847959,-3.7827687,-1.1461992,-2.7325149,-3.092374,-3.203933,-3.3715546,-3.4823022,-3.6242378,-3.6521497,-3.717403,-2.4338014,-3.0529099,-3.2945201,-3.5211806,-3.6031675,-3.6468203,-3.8415112,-3.8138795,-3.797812,-3.7346492,-3.773584,-3.8738852,-3.9086556,-3.8421707,-3.9247656,-3.9332442,-3.8972435,-3.8974652,-2.2059836,-3.063207,-3.3008676,-3.3952966,-3.5000858,-3.7378383,-3.698617,-3.7625217,-3.691095,-3.7345853,-3.7927709,-3.808981,-3.8887162,-3.9197688,-3.8200393,-3.8285003,-3.8743834,-3.9326582,-3.879055,-3.8730826,-3.9581895,-4.0191064,-3.9756413,-4.0866265,-4.0234947,-3.6649287,-3.9269156,-3.937738,-4.0272574,-3.967174,-3.9790716,-4.0380416,-3.9037457,-3.9933553,-3.9117942,-3.5875027,-1.5227721,-2.6622179,-2.8792493,-3.0852923,-2.3842196,-3.0213609,-3.1030252,-3.090258,-3.1400726,-1.9784803,-3.069364,-3.1441731,-3.3734493,-3.3111148,-3.2354083,-3.0966659,-3.3205614,-2.5217607,-3.1489072,-3.4271765,-3.6633582,-3.5272064,-3.0904717,-3.1141052,-3.5037687,-3.663013,-3.740756,-3.4808602,-3.3346539,-2.6614087,-3.7767034,-3.645882,-3.1516423,-3.0763695,-3.1033902,-2.7990882,-3.256072,-3.3929882,-2.8748465,-3.878046,-3.7827563,-3.9726434,-3.4701347,-3.602033,-3.5054793,-3.441629,-3.870048,-3.8734264,-3.84973,-3.803371,-3.494608,-3.0983377,-2.70624,-3.2297878,-3.4301484,-3.6318297,-3.525344,-3.7465854,-3.4422646,-2.648035,-3.3714495,-3.2589765,-3.6410146,-3.6563153,-3.5555882,-3.827887,-3.838925,-3.7150536,-3.8963704,-3.9109583,-4.12935,-3.8975368,-3.8618207,-3.7495575,-3.5584588,-3.8515291,-3.9678798,-3.892692,-3.5039816,-3.4129891,-2.6399713,-3.2771006,-4.0240784,-3.820315,-3.5071192,-3.3622622,-3.7697825,-3.4518585,-3.4151297,-3.7183437,-3.6649508,-3.4713106,-3.6195645,-3.4036992,-3.1674209,-3.6225302,-3.4588294,-3.4017959,-3.8412938,-3.8850331,-3.3029995,-3.4246886,-3.1871228,-3.8997273,-3.8389616,-3.7482038,-3.6260145,-3.310522,-2.7666378,-3.695127,-3.8518147,-3.017613,-3.7739186,-3.872666,-3.8451924,-3.6985545,-3.993651,-3.67765,-3.3985724,-2.9239552,-3.459948,-3.6582265,-3.6123128,-3.7690587,-3.709752,-3.581921,-3.1465156,-3.9482203,-3.416916,-3.8717446,-3.758284,-3.6343012,-3.8422332
+-0.95202047,-2.5349336,-3.283537,-3.6480951,-3.7408357,-3.3205414,-3.8241334,-4.162395,-4.1527505,-3.7961392,-2.3421533,-3.653955,-4.3391743,-4.257789,-3.4945407,-4.303254,-4.385142,-4.3136845,-4.3967843,-4.191061,-3.3363752,-4.2827206,-4.4850163,-4.4759965,-4.4585996,-4.44373,-3.4610343,-4.2649446,-3.0834572,-4.3105006,-4.6461062,-3.6645205,-4.324038,-4.531301,-4.613129,-4.535691,-4.4467072,-4.3640695,-4.315483,-3.1980793,-4.2443705,-3.6202679,-4.300943,-4.4023204,-4.3292813,-4.1631737,-4.0535913,-4.016504,-3.9372969,-3.4858384,-3.8845663,-4.080516,-4.079189,-3.9822392,-2.6602054,-3.8177314,-3.630239,-4.1792855,-4.416867,-4.3901258,-3.6923862,-4.2787633,-4.215771,-2.9382741,-3.411618,-3.8898644,-4.50919,-4.589768,-4.429114,-4.407982,-4.3963466,-4.0880523,-4.1384187,-4.330171,-3.8797383,-4.3002057,-2.9605021,-3.1066015,-4.4419312,-4.460631,-4.4917216,-4.4175715,-4.3697047,-4.2782626,-4.2491574,-4.2159486,-4.1561937,-2.2312317,-3.8686666,-4.394833,-4.3268166,-4.347321,-4.345366,-4.196797,-3.8158374,-2.5210629,-4.166326,-4.469702,-4.432849,-4.2753577,-2.4962797,-3.9199843,-4.544991,-4.6145053,-4.2388287,-4.5027905,-3.8181586,-4.4431934,-4.5422115,-4.383306,-4.556543,-4.536015,-4.462151,-2.4240808,-4.1482606,-4.616472,-4.602361,-3.8042097,-3.0286603,-4.415166,-4.0418186,-4.605883,-4.6834197,-4.172733,-4.4192286,-3.735354,-4.32847,-4.2961392,-4.604554,-4.5081677,-4.518357,-4.4941554,-4.3970957,-4.182176,-4.253803,-2.817819,-3.6656032,-3.6085258,-3.886169,-4.3639884,-3.7498574,-4.4857726,-3.941052,-4.3836236,-4.622168,-4.6231313,-4.59428,-2.9421325,-4.370521,-4.588367,-4.5896835,-4.5949354,-4.4953704,-4.3649697,-4.22912,-4.1136837,-4.2507577,-4.168732,-4.1685967,-4.196131,-4.1505265,-4.0658035,-3.8787746,-4.1138005,-4.1494403,-4.208387,-4.232738,-4.1870027,-4.115126,-3.05521,-3.090988,-4.200935,-4.3117523,-4.3309903,-4.367522,-4.3642163,-4.3376794,-4.3699956,-4.305147,-4.0937963,-4.1454625,-3.950749,-3.9921184,-4.1044517,-4.155287,-4.039308,-3.9971633,-3.9523568,-3.9407134,-3.9571342,-3.9400702,-3.8182292,-3.8151898,-3.7973657,-3.7319422,-3.8262973,-1.5482256,-3.7823272,-4.3115172,-4.3683085,-4.4014225,-4.413426,-3.9629436,-4.3180346,-4.2882214,-4.360871,-4.422862,-4.303043,-4.2872796,-4.258535,-4.2263293,-4.070638,-4.0171213,-4.0287404,-3.9456763,-3.991537,-3.998435,-2.936662,-3.7369466,-4.0325217,-3.9694586,-3.8323479,-3.9071684,-3.9228787,-4.0750012,-3.9138865,-3.8192778,-3.885529,-3.3328028,-3.7828813,-3.9803343,-3.971047,-2.95751,-3.9286885,-4.067955,-4.056762,-3.9330044,-4.1438746,-4.3496823,-4.281183,-4.239076,-2.6659455,-3.7744384,-2.8654647,-4.3409753,-4.4633718,-3.8186765,-3.4595017,-4.180082,-3.7252746,-4.5306077,-4.404886,-4.3939285,-4.0928836,-3.8405318,-3.2600553,-4.6256504,-4.747404,-4.412316,-4.035858,-4.0233717,-3.154992,-4.0681157,-3.743536,-3.4457712,-4.1123633,-4.5938234,-4.2162337,-4.594517,-4.6686654,-4.013776,-4.6793942,-4.4349275,-4.597573,-3.5804057,-3.983787,-3.6900644,-3.902563,-4.6133456,-4.441609,-4.0201674,-3.839149,-3.4770336,-3.1555977,-2.7245607,-3.8350034,-4.4150457,-4.4348774,-4.443157,-4.361784,-3.8987699,-3.7559953,-4.699867,-2.8904603,-3.8574786,-4.4152904,-3.5115917,-4.2117133,-4.604297,-4.6870728,-4.6838155,-4.4142003,-4.5214963,-4.405127,-4.3792334,-4.496322,-4.4862847,-4.248398,-4.1984477,-4.1007752,-3.3119798,-3.1522465,-3.8838038,-4.4568734,-3.846582,-4.097409,-4.2024198,-4.5718923,-4.3500648,-4.243799,-3.7472715,-4.2131314,-4.3115764,-4.4050803,-4.3387227,-4.2685876,-3.592057,-3.7153578,-4.471214,-4.408829,-4.5700345,-4.291651,-2.7476945,-3.35035,-4.021296,-4.5761223,-4.3758225,-4.1975026,-4.2913976,-4.1247396,-2.5692053,-4.018986,-4.3332257,-3.706582,-4.4817176,-4.082991,-4.1788983,-4.23483,-4.331884,-4.129969,-3.9047227,-3.7038975,-4.1899962,-4.18398,-4.282201,-3.8758507,-4.051614,-4.0565157,-3.014091,-3.9148011,-4.0189614,-4.1304336,-4.383127,-4.2048635,-4.0337977
+-1.1633468,-2.4960217,-3.0507097,-3.346134,-3.514029,-3.4118114,-3.1579115,-3.636528,-3.7007728,-3.47933,-1.6511943,-2.6721547,-3.7010179,-4.015613,-3.4285748,-4.121288,-4.150655,-4.2495875,-4.290926,-4.0385633,-4.049095,-3.7842336,-3.9891496,-3.9552107,-3.8978639,-3.8790855,-3.1326518,-4.089299,-4.0405226,-4.0593624,-2.2364182,-3.9340396,-4.1917624,-4.2332,-4.2442403,-4.2380767,-4.167068,-4.092817,-4.011105,-3.91616,-3.8448253,-3.011418,-3.729951,-4.2121634,-4.267937,-4.0800247,-3.897173,-3.9612942,-3.8635507,-3.756112,-3.7899404,-3.8033643,-3.7555037,-3.6533575,-3.5809832,-3.5775957,-3.6581683,-3.6326778,-3.6667418,-3.6762393,-3.5634437,-3.5654254,-2.6401534,-2.9884672,-3.1076834,-3.2849298,-4.0916924,-4.349283,-4.374362,-4.322132,-4.271577,-4.142834,-4.100999,-3.9997063,-3.1602697,-4.078321,-4.3325725,-3.382154,-4.0567822,-4.367914,-4.3486686,-4.2869153,-4.2301874,-4.1506906,-4.096446,-3.9941254,-3.4597695,-3.9199243,-3.9533348,-4.1062756,-4.050896,-3.97536,-3.841806,-3.1348276,-3.7978492,-3.471024,-3.7210503,-4.0601597,-4.0533853,-2.2767372,-2.7773118,-3.9565206,-4.371502,-4.308376,-4.45431,-4.378637,-4.2255044,-4.146907,-4.1601615,-4.07805,-4.0168853,-3.9670844,-3.8703642,-2.6648598,-4.0017095,-4.2018065,-4.2263002,-3.6150537,-3.708345,-4.1370845,-3.530971,-4.1439505,-4.2346807,-4.2564883,-4.2539062,-4.0063853,-2.4990187,-3.5235233,-4.329633,-4.5632033,-3.6960797,-4.3091655,-3.8819647,-4.274892,-4.377433,-3.6582305,-4.3045735,-4.2555003,-4.0803714,-4.264934,-3.3789048,-4.390898,-4.472442,-4.48605,-4.3700957,-4.3802176,-4.321748,-4.3118505,-4.176659,-4.1359286,-4.1123815,-4.0873103,-4.0196905,-3.9847217,-3.901267,-3.825345,-3.8749862,-3.900784,-3.8825336,-3.8811069,-3.8772497,-3.8552299,-3.884996,-3.6834655,-3.8269725,-3.2029448,-3.708126,-4.084677,-4.133242,-4.0394855,-2.694415,-3.68626,-4.0743375,-4.166535,-4.213368,-4.1976466,-4.1456933,-4.1599736,-4.1013355,-3.939207,-4.0340533,-3.8837051,-3.832294,-3.8544726,-3.8105745,-3.7291312,-3.763647,-3.7411466,-3.7705307,-3.803907,-3.7842083,-3.7316422,-3.7227545,-3.7221746,-3.6763659,-3.6460733,-3.7123017,-3.684423,-3.6815999,-3.6326165,-3.6542408,-3.7086825,-3.296012,-3.723556,-3.8201008,-3.926786,-3.8536153,-3.7491665,-3.7273593,-3.73704,-3.7433681,-3.7254682,-3.7661672,-3.7989674,-3.761518,-3.7490745,-3.7768674,-3.7595859,-3.7119927,-3.7324862,-3.714491,-3.5419922,-3.6186848,-3.617063,-3.7456074,-3.5922487,-3.5300295,-3.5913997,-2.5343962,-3.611614,-3.92458,-4.0429454,-3.9525914,-3.9099002,-3.8953233,-3.8293653,-3.8854852,-3.8192863,-3.9162502,-3.9506269,-3.877071,-1.5411148,-3.3202884,-2.7890983,-4.0957427,-3.8472886,-3.3389173,-3.6546164,-3.4409513,-3.3131032,-4.1477203,-4.076778,-3.9430513,-3.709816,-3.6247158,-3.614353,-4.354396,-4.3085856,-4.2244716,-3.8772368,-4.221563,-2.9812841,-3.8525414,-3.7402844,-3.693675,-4.044682,-4.345864,-4.2141404,-4.4278274,-4.4096494,-4.2670527,-4.1834674,-3.7375588,-4.1512313,-3.3351774,-3.2931027,-3.0383925,-4.197347,-4.3986545,-4.2634335,-3.6704378,-3.501659,-3.369165,-2.994608,-3.1493673,-4.213306,-4.442842,-4.315794,-4.2045703,-4.253521,-4.311052,-4.248178,-3.781725,-2.6438138,-4.081759,-3.356298,-3.3256247,-4.0430884,-4.477223,-3.6266708,-4.407907,-4.3721566,-4.304127,-4.2937255,-4.386826,-4.482435,-4.4138436,-3.987473,-3.9362426,-4.0253315,-2.6075253,-2.8453836,-3.472598,-4.312276,-4.5009055,-4.3699527,-4.4704843,-4.432877,-4.2650123,-4.002756,-3.7173967,-4.0803366,-4.132406,-3.9431424,-3.9414287,-3.9767904,-2.889258,-3.943852,-4.2541137,-4.322406,-4.121659,-4.0702195,-2.702128,-4.0693326,-4.00344,-4.3574576,-4.229901,-4.0929017,-4.1401553,-4.0189524,-2.048901,-3.9023614,-4.272856,-3.898827,-3.4369397,-3.4725008,-3.7377262,-3.8365169,-3.941339,-3.8934107,-3.9622283,-4.121676,-4.0124307,-3.845171,-3.8909392,-3.8002915,-3.7511768,-3.7303057,-2.185514,-3.9405117,-4.176332,-4.253884,-4.1922336,-3.5285203,-4.0210595
+-0.9745546,-2.9604635,-3.728097,-3.8817878,-3.973332,-3.92202,-3.9082232,-3.9724236,-3.9575782,-3.728921,-3.1182742,-2.115787,-3.9491477,-3.3060865,-3.7302575,-4.3374877,-4.4263544,-4.525302,-4.563739,-4.4320693,-3.7949195,-3.3637996,-4.4878,-4.421661,-4.4011264,-4.414162,-3.6373675,-4.4813433,-4.5101857,-3.0442004,-3.8034244,-4.091751,-4.273143,-4.476345,-4.4622626,-4.495506,-4.406261,-4.30722,-4.323585,-4.1884313,-4.1964607,-4.1608377,-3.960281,-4.0059066,-3.9878821,-4.022279,-2.039836,-4.299227,-4.2918687,-2.9226656,-4.26959,-4.504231,-4.432213,-4.2819934,-4.219878,-4.1311364,-4.1940975,-4.125116,-4.029197,-3.9499335,-3.738401,-2.442412,-3.4037623,-3.829701,-3.5868857,-4.0219755,-4.3444657,-4.2663765,-4.4002333,-4.318101,-4.301621,-4.2284093,-4.258389,-4.269258,-2.118901,-4.1596265,-4.4004273,-4.1621614,-3.6605303,-4.1044497,-4.327396,-4.339813,-4.3325696,-4.2625394,-4.2211094,-4.15949,-4.017163,-4.1455417,-3.7812467,-3.4806058,-4.3417215,-4.332986,-4.282165,-4.19724,-3.4757185,-3.9409351,-3.5279486,-4.064837,-4.364432,-3.4628587,-3.4146948,-3.3471837,-3.1972637,-4.017963,-3.755341,-3.9068246,-4.407451,-4.326785,-4.410808,-4.323705,-3.7304296,-4.359836,-2.5531297,-4.3417954,-4.3376756,-3.3619814,-4.064689,-3.660273,-3.503357,-4.344355,-3.9916945,-3.63362,-4.352719,-4.4210114,-3.6000228,-2.9324207,-4.0551133,-3.806913,-4.235211,-3.7986755,-3.165946,-3.2513437,-3.2951093,-3.8024774,-4.237076,-3.974999,-3.9144564,-4.393575,-4.598585,-3.6200886,-4.033273,-3.7583013,-4.4732738,-4.18842,-4.408545,-4.4504333,-4.5744953,-4.556256,-4.501571,-4.432095,-4.2363143,-4.366345,-4.361506,-4.301333,-4.3023763,-3.4040883,-2.8864965,-3.959886,-4.4007545,-4.4434066,-4.4315977,-4.430492,-4.45717,-3.3892086,-4.329305,-4.4352736,-4.5041404,-4.500697,-3.3923595,-3.0476155,-4.42766,-4.523272,-4.412214,-4.4402604,-4.491182,-4.4817047,-4.475463,-4.3157644,-4.292888,-4.274274,-4.419212,-4.4505014,-4.424422,-4.4386888,-4.4907303,-4.3822365,-4.3693213,-4.338203,-4.327266,-4.359811,-4.282669,-4.231343,-4.286676,-4.3125176,-4.314136,-4.296601,-4.3067346,-4.3066115,-4.31521,-4.320892,-4.341839,-4.3883686,-3.5667105,-3.9850745,-4.3767533,-4.549655,-4.6217585,-4.551809,-4.5438924,-4.4828,-4.431701,-4.4083295,-4.4093575,-4.3897424,-4.3624663,-4.3445344,-4.3670855,-4.3357224,-4.295277,-4.3295116,-4.3162456,-3.3302393,-4.2724776,-4.349262,-4.48546,-4.4859614,-4.4686284,-4.442389,-4.459065,-4.475468,-4.470986,-4.5235248,-4.50227,-4.2711425,-4.3052073,-4.2938743,-4.4527836,-4.444735,-4.421349,-4.363308,-4.340802,-4.4392943,-1.7687454,-2.860878,-4.344257,-4.1052547,-3.7798276,-3.6506438,-3.5864632,-4.2861753,-4.7730174,-4.6605515,-4.1956897,-3.950417,-4.082664,-3.3881063,-2.7962112,-4.3749795,-4.4917245,-4.5166917,-4.4516406,-3.646382,-4.146596,-4.1885343,-4.245546,-4.5339494,-4.645099,-4.61834,-4.7567935,-4.628014,-4.6632977,-4.6727834,-3.7422075,-4.435601,-3.5688713,-3.0813646,-2.9587803,-4.506257,-4.8250175,-4.826575,-3.7480102,-3.5579615,-3.6558723,-3.1722183,-3.0734706,-3.8799653,-4.2671175,-4.675835,-4.689716,-4.6878915,-4.736886,-4.6772113,-4.6755376,-2.597248,-4.2918253,-2.8652632,-3.695067,-4.4584556,-4.8471704,-4.828987,-4.069164,-4.612663,-4.458936,-4.5054536,-4.6339307,-4.7169714,-4.7648635,-4.639401,-4.409638,-4.342557,-4.496035,-4.601682,-2.8829546,-4.3059077,-4.6738973,-4.6006436,-4.6860557,-4.7306895,-4.549607,-4.5578685,-4.053246,-4.5505667,-4.6159186,-4.2952957,-4.5488505,-4.5842233,-3.0616593,-4.5071836,-4.5740895,-4.6146874,-4.646952,-4.4436755,-2.5951052,-4.3656726,-4.17317,-4.4476466,-4.379058,-4.3613405,-4.312532,-4.5859365,-2.5147815,-3.9859629,-4.534187,-3.9400344,-4.5467505,-3.6698432,-4.207258,-4.3987727,-4.435487,-4.260222,-4.359938,-4.6315994,-4.486793,-4.365563,-4.345301,-4.2696996,-4.215384,-4.2236075,-2.2168121,-4.3385296,-3.8232703,-3.530842,-4.472317,-3.3829231,-4.6140227
+-0.4082212,-2.0485117,-2.8071768,-3.474279,-3.6718836,-3.5917444,-3.57932,-3.642629,-3.5687327,-3.3498483,-3.3486729,-2.236681,-2.9325092,-3.2782693,-3.8357487,-4.013722,-3.941989,-4.015848,-3.942987,-3.871634,-3.825686,-3.7827048,-3.76759,-3.6454663,-3.6184955,-3.6390724,-2.5537295,-2.11658,-3.6686232,-3.359591,-3.3290083,-3.818027,-4.2077837,-4.33429,-4.400039,-4.3604364,-4.178267,-4.0379295,-3.8800712,-3.9190364,-3.8188176,-3.6839437,-3.6946406,-3.749061,-3.710135,-3.499236,-1.8613086,-3.502829,-4.008633,-3.160177,-3.909069,-4.217972,-4.288587,-4.195598,-4.1258583,-4.0102477,-3.805822,-3.6955066,-3.8757052,-3.0674732,-3.678985,-4.129151,-3.2590652,-4.0531473,-2.6296315,-3.4160383,-3.8693476,-4.080151,-4.158919,-3.9913445,-4.086311,-3.672699,-3.8271103,-3.015914,-3.5791035,-4.238895,-4.409267,-4.331041,-3.3234313,-3.0601354,-3.966837,-4.2366853,-4.2550836,-4.222813,-4.1523886,-4.006808,-3.8658562,-2.4717157,-2.9780374,-3.0305502,-3.853948,-4.2642336,-4.3003054,-4.2043138,-4.1372867,-4.1216464,-4.073244,-4.0718465,-3.5368686,-3.9625568,-3.6276655,-2.7611942,-3.382859,-3.2645035,-3.428705,-3.5430098,-4.2198663,-4.2576003,-3.1347911,-4.099529,-3.486257,-4.1365557,-3.1075513,-4.0303187,-3.5617445,-3.7363482,-3.194463,-3.3682995,-4.1561956,-3.8101997,-3.9876466,-3.4212756,-4.197272,-4.2236423,-3.3225086,-3.0297377,-3.894877,-4.109355,-3.7790203,-4.235466,-3.350913,-3.0789318,-2.4361987,-3.0940175,-3.7356277,-3.9774618,-4.234994,-4.2957253,-4.3320155,-3.9729795,-3.3430538,-3.9933496,-4.274758,-4.309155,-4.0101066,-3.6521518,-4.132361,-4.0628858,-3.7429533,-3.169676,-3.9717774,-4.167213,-4.05398,-3.9778376,-3.9186535,-3.3425343,-3.0876398,-3.286653,-3.6989064,-4.183871,-4.218613,-4.150351,-4.172584,-3.8668723,-2.8425717,-3.7119427,-4.069159,-4.068513,-3.6222224,-3.1440651,-3.545514,-4.011839,-4.2095704,-4.1625886,-4.1643033,-4.0898986,-3.9486175,-3.86871,-2.9585314,-2.8906324,-3.8716984,-4.168877,-4.2282424,-4.102594,-3.8706584,-3.8110313,-3.6867118,-3.6878407,-3.6613388,-3.6514797,-3.6938205,-3.6822288,-3.5749683,-3.5490432,-3.5432296,-3.533315,-3.512611,-3.5602677,-3.5819664,-3.398958,-3.6497412,-3.7139935,-3.6895685,-3.4439824,-3.8164234,-3.6882792,-3.5958662,-3.5478294,-3.491847,-3.5108974,-3.5060377,-3.4801633,-3.4626899,-3.4492435,-3.4702268,-3.5287418,-3.5257874,-3.5211668,-3.5236034,-3.4798594,-2.1116772,-2.9068127,-3.350336,-3.9606214,-4.240466,-4.3159556,-4.263298,-4.1039386,-4.0344296,-3.8967705,-3.7683282,-3.8334804,-3.8950133,-3.9036283,-3.8940263,-3.7936635,-3.7493558,-3.7380881,-3.6994414,-3.7004218,-3.7282438,-3.7245479,-3.0745044,-3.1051912,-4.125038,-4.1689897,-3.8374772,-3.0424976,-2.8835144,-3.3275733,-4.0190673,-4.2484784,-4.049355,-4.096802,-4.213013,-4.2300506,-3.0505743,-3.576416,-4.1474433,-4.4276996,-4.377124,-3.2921474,-3.5708342,-3.9060864,-4.3240495,-4.3328357,-4.2072616,-4.223517,-4.204907,-4.1549716,-4.1585507,-3.8284292,-4.1592383,-4.1948485,-3.30131,-2.4082015,-2.4901853,-3.5038218,-4.1141286,-4.3885045,-3.4690695,-3.4704826,-3.6069813,-3.7148027,-3.984305,-4.2791867,-4.266131,-4.197403,-4.1310353,-4.091071,-4.0328236,-3.9849696,-4.06762,-2.9576063,-4.134283,-3.5200038,-3.4656668,-3.9270315,-4.322746,-4.4102864,-4.39745,-4.5113163,-4.364405,-4.377652,-4.330154,-4.2096877,-4.109663,-4.015982,-3.938201,-3.9739833,-3.8463058,-3.8952475,-2.5525851,-3.8964477,-4.290443,-4.3685384,-4.369782,-4.382864,-4.075934,-3.961215,-3.971828,-4.2213736,-3.477083,-3.344002,-4.1629786,-4.3105435,-3.3071537,-4.107105,-4.324619,-4.298019,-4.3564687,-4.2240133,-3.6940932,-4.2107816,-4.2592034,-3.7761803,-4.231358,-4.1735797,-3.7955575,-3.8153787,-3.7767859,-2.8948827,-3.9880075,-4.301622,-4.1578727,-3.4558985,-4.1886945,-4.2867975,-4.4185934,-4.417281,-4.1925235,-4.1357064,-3.8911767,-3.7561908,-3.7902331,-3.7133641,-3.5327835,-3.5731606,-2.4869318,-3.9776425,-4.3239417,-4.3486166,-4.2592993,-3.1332383,-4.0829806
+-0.715347,-1.2481656,-1.7101147,-2.1025405,-2.2543907,-2.0253038,-2.8685007,-2.7417817,-2.6938183,-2.342729,-2.8454533,-2.8887131,-2.9554148,-2.961154,-2.8793907,-2.7894542,-2.6848822,-2.665462,-2.5950754,-2.5646298,-3.0505729,-3.1641488,-3.1364617,-3.059428,-2.93746,-2.9336934,-2.8220973,-3.2424757,-3.162407,-2.8724084,-3.2500937,-3.260259,-3.1641,-3.0870945,-3.2519143,-2.8919768,-2.913566,-2.8205218,-3.1679955,-2.924635,-3.2555268,-3.2787406,-3.1757936,-3.0709038,-3.2116618,-3.0804353,-2.950018,-3.0737116,-2.9384637,-2.8644662,-2.876955,-3.0409818,-3.0534105,-3.07633,-3.049305,-2.5751548,-3.1822388,-2.893861,-3.256369,-3.1567078,-3.0057037,-2.739505,-3.2461622,-3.1503313,-2.6485739,-3.283163,-3.3105266,-3.1413436,-3.1335373,-2.9664783,-3.1200886,-3.153327,-3.1935725,-3.1392217,-2.767999,-3.2815309,-3.3184602,-3.3660688,-3.2353644,-3.1746306,-3.1699672,-2.915659,-2.6670167,-3.4259853,-3.3289156,-3.2324548,-3.0975556,-3.4237175,-3.305577,-3.2093375,-3.102728,-3.04524,-3.1049337,-2.8059354,-3.3985426,-3.4039547,-3.124247,-3.358915,-3.4297123,-3.3032594,-3.2402253,-3.210785,-2.8823688,-3.2781577,-3.4541948,-3.4739501,-3.371466,-3.018615,-3.3138967,-3.5363736,-3.4609149,-3.494979,-3.5594215,-3.5033984,-3.5036244,-3.4763207,-3.5399506,-3.4360678,-3.3700547,-3.458074,-3.385917,-3.472434,-3.376474,-3.3429065,-3.3366275,-3.345574,-3.3772726,-3.3794184,-3.35513,-3.321124,-3.3336005,-3.3542428,-3.2848828,-3.3071609,-3.3069274,-3.5160198,-2.4628935,-3.2212589,-3.2314203,-3.3513489,-3.3169637,-3.0563064,-3.3493412,-3.3843608,-3.351514,-2.805008,-3.4076977,-3.492396,-3.4362557,-3.5881414,-3.640245,-3.6498249,-3.6319225,-3.5134196,-3.4362693,-3.385179,-3.376045,-3.369658,-3.361349,-3.3579068,-2.687049,-3.4340258,-2.833459,-3.2981064,-3.410993,-3.4437416,-3.3229308,-3.4666028,-3.5096145,-3.3555944,-3.5978608,-3.5962782,-3.591838,-3.5893664,-3.5559585,-3.5699685,-3.5340495,-3.5168893,-3.138131,-3.5818524,-3.6584947,-3.413758,-3.0257607,-3.2110167,-3.3619857,-3.4726682,-3.6207068,-3.6283092,-3.5792482,-3.6072698,-3.5348535,-3.6235726,-3.6034963,-3.6937613,-3.3317013,-3.3763504,-3.6133254,-3.6237164,-3.179696,-3.434717,-3.5279303,-3.6050754,-2.9943821,-3.4832191,-3.537495,-3.6170473,-3.546605,-3.5944333,-3.2892938,-3.4729187,-3.5736358,-3.5681746,-3.6601067,-3.6982508,-3.6828337,-3.1538312,-3.2484014,-3.631621,-3.7866569,-3.8801627,-3.897828,-3.506278,-3.7672377,-3.7578616,-3.8069239,-3.5275242,-3.4559388,-3.592113,-3.6881452,-3.6336503,-3.6648288,-3.25663,-3.5156903,-3.2492263,-2.9504235,-3.0064092,-2.5884855,-3.1474903,-3.0681963,-3.1133149,-3.1912897,-2.8066247,-3.008656,-3.234383,-3.3816948,-3.592658,-3.484355,-2.643776,-2.887485,-2.7011595,-2.5802126,-2.443806,-2.153744,-1.9728107,-1.7050097,-1.4551604,-1.4288447,-1.5320802,-1.5766525,-1.4687681,-1.3941021,-1.5442338,-1.4638097,-1.3432972,-1.328321,-1.3443089,-1.2802131,-1.1139276,-0.8874549,-0.68531406,-0.92562646,-1.185343,-1.2257807,-1.2713828,-1.283565,-1.1870518,-1.1344762,-1.5559416,-1.7179303,-1.5528255,-1.5226672,-1.5191517,-1.484906,-1.3826156,-1.1740563,-0.9861713,-1.3249228,-1.5686414,-1.4274669,-1.4335396,-1.3730409,-1.6839278,-2.4099474,-2.5983,-2.51834,-2.8304243,-3.1334867,-3.202014,-3.1049798,-3.1694162,-3.2866845,-3.2067275,-2.833312,-2.782352,-2.5053074,-2.7976694,-2.9160175,-2.6730685,-2.4160762,-2.09525,-2.2504697,-2.2612817,-2.3453364,-3.0726936,-2.389653,-1.948431,-1.9298363,-2.393155,-2.5355034,-2.677309,-2.5706782,-2.4744418,-2.721769,-2.9888964,-3.02278,-3.022975,-2.926461,-3.0048614,-3.0158615,-3.0605674,-3.1089475,-3.0003486,-3.0176983,-2.8636262,-3.0061903,-3.0573738,-2.9335036,-2.858233,-2.9130478,-2.7478762,-2.6597874,-3.1283689,-3.1210628,-3.074895,-2.8608313,-2.7661057,-2.3642168,-2.4104161,-2.169102,-2.1505013,-2.3107028,-2.6942966,-2.9373584,-2.3798285,-2.9480605,-3.026011,-2.8852324,-2.9101381,-2.7963037,-2.7874649,-3.1225758,-3.1759434,-3.1403253,-2.441899,-3.1884303
+-0.31938678,-1.3982644,-2.2826107,-2.8972807,-3.315431,-3.0880551,-3.6546896,-3.8511095,-3.9721642,-3.4033945,-3.1574965,-3.9909759,-4.3268676,-4.230799,-4.1930633,-4.066863,-3.9847474,-3.9021335,-3.6474385,-3.6139183,-3.3748977,-3.856893,-4.253672,-4.4436135,-4.3081026,-3.8002257,-3.9172664,-4.4131303,-4.5795636,-3.8652854,-4.402332,-4.4672284,-4.358634,-4.1049733,-4.1531835,-4.042755,-3.9689283,-3.757452,-4.089412,-3.9413738,-3.9246106,-3.9675784,-4.2871847,-4.406435,-4.2993016,-4.3292403,-4.120452,-4.526489,-4.2982993,-3.9591107,-4.561767,-4.271026,-4.155092,-4.1451173,-4.1259747,-3.7215123,-4.134186,-3.9096713,-4.017606,-3.9681554,-3.7433848,-3.8510604,-3.7947588,-4.0081787,-3.2929492,-4.1791987,-4.2556205,-4.1233444,-3.9649692,-3.9115815,-3.9458947,-3.8869004,-3.8283663,-3.676523,-3.334499,-3.8879838,-4.0325346,-3.9426212,-3.9327178,-3.931222,-3.856759,-3.7710333,-3.662424,-3.668518,-3.6128168,-3.5534139,-3.575646,-3.169116,-3.9226909,-3.9418964,-4.007136,-4.012154,-3.8476825,-3.0322747,-3.7970843,-3.842215,-3.8765044,-4.076157,-4.03507,-4.0006676,-3.9806256,-3.949944,-3.6976657,-3.9272633,-3.6840003,-4.0610514,-4.03794,-4.026094,-3.5835443,-4.1001515,-3.616046,-4.1561027,-3.8055587,-4.035148,-3.9773355,-3.941629,-3.763092,-4.1560316,-4.211311,-3.944603,-4.281602,-4.324799,-3.5029469,-4.1674466,-4.2249427,-4.2211757,-4.22579,-4.235764,-4.1660743,-4.0830855,-4.0825753,-4.186033,-4.2280416,-4.260449,-3.4722002,-3.232183,-3.3878527,-3.6513338,-3.9856038,-4.125979,-4.180075,-4.1427855,-4.176954,-4.2284207,-4.14766,-4.1254983,-4.060892,-3.9867425,-3.8674016,-4.20253,-3.8487816,-4.206383,-4.2585974,-4.072825,-3.9568105,-4.128232,-4.13044,-4.1813784,-4.13263,-4.0770154,-4.0549583,-3.6597438,-4.190485,-4.3287396,-4.386466,-4.4135156,-4.351952,-4.393315,-3.4467442,-3.692174,-4.2681546,-4.286123,-4.3369365,-4.3519373,-4.3609056,-4.3965764,-4.3615007,-4.335109,-3.3761783,-4.2260456,-4.496909,-4.49621,-3.9953785,-4.3363996,-4.475838,-4.469999,-4.3939533,-4.3756175,-4.304898,-4.309562,-4.313591,-4.4464235,-4.3502736,-4.365137,-4.2485614,-4.1383986,-4.2661138,-4.282086,-4.249071,-4.121083,-4.0944123,-3.2406087,-3.0155342,-4.240935,-4.4195056,-4.4246016,-4.3114667,-4.3196054,-4.406792,-4.4150147,-4.3759856,-4.3082237,-4.3300185,-4.505288,-4.365354,-4.2836947,-4.3411155,-4.32529,-4.414217,-4.4613175,-4.4407983,-4.2965946,-4.255304,-4.4142365,-4.488562,-4.4666066,-4.459836,-4.569801,-4.579704,-4.435515,-4.382874,-3.484983,-4.0937853,-4.267488,-4.2347383,-4.1469936,-2.9594111,-3.8065486,-4.0745807,-4.125105,-4.248067,-3.089149,-3.7104807,-4.1248317,-4.2827306,-4.433285,-4.56899,-4.1447253,-4.4258523,-4.1335654,-4.5407395,-4.568771,-4.468164,-4.3557825,-3.4767828,-3.490241,-3.7027564,-3.9324164,-3.5822277,-3.0835843,-2.1303382,-2.5185094,-3.0206041,-2.638402,-2.3282409,-2.2287893,-2.0241802,-1.8420982,-2.6176953,-3.4290729,-4.1861653,-4.3274956,-4.140822,-4.4272475,-4.205195,-4.2572103,-4.0623446,-4.1766176,-4.5014024,-4.5225587,-4.1313043,-3.893042,-3.7184649,-3.3670735,-2.617374,-3.1430535,-3.565031,-4.0595646,-3.7654276,-3.8201218,-3.7627444,-3.5623176,-4.1688066,-4.263374,-3.1877153,-3.9846091,-4.2123833,-4.2649198,-4.3895164,-4.3197694,-4.4017773,-4.5879,-4.561353,-4.6325173,-4.624142,-4.393149,-4.5771775,-4.7159405,-4.7106137,-4.371679,-3.822599,-4.075362,-3.8182435,-4.407244,-4.5542755,-4.2611537,-3.9513183,-4.092595,-4.161263,-4.075313,-4.1378083,-4.2752643,-4.051836,-4.074697,-3.9830837,-3.8098483,-3.6200223,-3.845696,-3.736299,-3.5936937,-3.7891212,-4.377559,-4.177418,-3.4928904,-3.6154404,-3.9722438,-4.220691,-4.004681,-4.0633636,-3.788075,-3.428331,-4.034813,-4.3989224,-4.3638015,-4.3064637,-4.389544,-3.9940376,-4.4415393,-4.2250066,-3.8790007,-3.4779463,-4.034888,-4.1313014,-3.9385152,-3.6898727,-3.8350887,-3.8002334,-3.7404308,-3.5173597,-3.350862,-3.8083806,-3.8658175,-3.6994677,-3.1183934,-4.172844
+-0.59398216,-2.1821227,-3.2011096,-3.5451963,-3.7601242,-3.7006888,-3.808014,-3.9577203,-4.1644177,-3.9056106,-3.7274413,-4.322634,-4.242346,-4.163097,-3.9939027,-3.8736844,-3.8518538,-3.757649,-3.6236997,-3.6602654,-3.1956444,-4.1111007,-4.081028,-4.103987,-4.0554175,-3.92028,-3.1863117,-4.255158,-4.285387,-3.902875,-4.31607,-4.515783,-4.6451936,-4.472207,-4.627444,-4.3641133,-4.2418,-4.143363,-3.8342776,-3.2482433,-4.4234095,-3.7327619,-4.4285865,-4.6941867,-4.6627393,-4.3761983,-4.1831594,-4.3678856,-4.4484034,-4.126082,-4.3994045,-4.653874,-4.46411,-4.351992,-3.655368,-3.9982872,-4.430488,-4.3645043,-4.6340833,-4.475282,-4.1180987,-4.185595,-3.5959082,-4.2026753,-3.5839825,-4.3450723,-4.3847113,-4.2618694,-4.2945046,-4.062952,-4.0530386,-4.033561,-4.0088067,-3.7419806,-3.5045877,-3.1718144,-4.1156173,-4.1180644,-3.9159656,-3.831564,-3.938764,-3.6898036,-3.8828096,-3.8290954,-3.3976,-3.7117639,-3.73848,-3.4989011,-4.0434136,-4.0288463,-3.9585328,-3.893785,-3.7905812,-3.4704475,-2.835394,-3.860292,-3.4983706,-2.5037103,-3.795792,-4.2679524,-4.358185,-4.1896615,-3.4954605,-4.385754,-3.6999059,-4.1593823,-4.470156,-4.471932,-4.0550065,-4.067511,-3.900001,-4.0048146,-3.558478,-4.0399733,-4.01794,-3.6619642,-3.8192887,-3.5131342,-3.1075592,-3.6839118,-3.8527417,-4.0656505,-3.7337575,-3.9308763,-3.730308,-3.9470534,-3.653122,-3.7246804,-3.93407,-4.059124,-3.904901,-3.5932837,-3.866579,-3.898387,-3.4962163,-3.5601778,-3.3229303,-3.5887792,-3.801126,-3.9061232,-3.875258,-3.6286807,-3.8089385,-3.9510303,-3.9763322,-3.9863305,-3.882475,-3.7325792,-3.1359568,-3.7839704,-3.9143105,-3.894751,-3.8650084,-3.9303708,-3.7561073,-3.7953038,-3.9083405,-3.8728905,-3.8293743,-3.7981873,-3.7041073,-2.699561,-3.1260226,-3.8102498,-3.9318519,-4.0067487,-3.1555943,-3.8514051,-3.869564,-3.5850546,-4.020511,-4.081747,-3.9949927,-3.9735594,-3.992732,-4.016443,-3.9813824,-3.9618325,-3.736689,-3.8718495,-3.945036,-4.103084,-3.0892138,-3.6888063,-4.046995,-4.1160374,-4.056641,-3.9693394,-3.9853826,-4.0521297,-3.9435892,-3.9196372,-4.007016,-4.061484,-3.9802966,-3.2588744,-3.9798894,-4.081971,-3.965664,-3.8362164,-3.766089,-3.980977,-3.934268,-3.9300647,-3.8087068,-3.860023,-3.8714552,-3.8004298,-3.9350471,-3.9628663,-3.856008,-3.8223,-3.8354053,-3.9933047,-3.8036122,-3.4535344,-3.9047637,-3.9159622,-3.8531442,-3.9588914,-3.9586687,-3.9947095,-3.7873063,-3.751124,-3.8484101,-3.8376703,-3.7218218,-3.9015198,-3.9310985,-3.919176,-3.8659973,-3.7276506,-2.7861369,-3.5271573,-3.7837195,-3.8912444,-3.2085829,-3.8177762,-4.0963454,-4.077105,-4.0420146,-2.9395375,-3.4729214,-3.9133945,-4.2588744,-4.259383,-4.311751,-3.1707997,-4.0330963,-3.319394,-3.8181438,-4.0540595,-4.0544467,-3.834494,-3.4618108,-3.3693986,-4.410709,-4.157042,-3.9325614,-3.5540574,-2.311123,-2.4849296,-3.0668855,-2.9118028,-2.7566595,-2.5304163,-2.528635,-2.781454,-3.8672366,-3.2175772,-3.4969094,-3.709928,-4.1134963,-4.3346906,-4.319862,-4.344312,-4.3347325,-3.881476,-4.282018,-4.220634,-3.9054027,-3.7008624,-3.2236097,-3.0009027,-2.6643178,-3.3503127,-4.006859,-3.5576277,-3.786806,-4.064722,-4.1329055,-3.6343098,-4.202932,-3.9005938,-3.8086429,-4.2211204,-4.419869,-4.4013157,-4.5059648,-4.6020737,-4.6704793,-4.6120815,-4.465995,-4.4957643,-4.3888464,-4.393908,-4.206346,-4.2751102,-4.047812,-3.8278909,-3.7855878,-4.370707,-3.1777296,-4.1565557,-4.262201,-4.0240517,-4.2876554,-4.251896,-4.2213817,-3.9142861,-4.184664,-4.078307,-4.171831,-4.012061,-4.075975,-4.09904,-4.100653,-4.05272,-4.031832,-3.9885168,-4.344483,-4.031832,-3.7818336,-2.898273,-3.7562566,-4.2097783,-4.5887704,-4.36722,-4.4418187,-4.0621777,-3.6058574,-4.276363,-4.6662583,-4.7924857,-4.5235906,-4.38842,-4.0841737,-4.5134606,-4.427804,-4.107987,-3.842443,-4.317575,-4.428053,-4.1025257,-4.0953107,-4.1447225,-3.868792,-4.0671797,-3.7415662,-3.909824,-3.869657,-4.215015,-4.2596793,-3.9385266,-4.1297765
+-1.7836609,-2.6098046,-3.0764742,-3.2566533,-3.593238,-3.1730304,-3.350179,-3.7028847,-3.8868203,-3.6034117,-3.1075284,-3.8385153,-3.9459062,-3.6710732,-3.6405396,-3.638558,-3.7183208,-3.7708135,-3.717586,-3.6195118,-3.056744,-3.947505,-4.3753853,-4.273402,-4.206548,-4.209992,-3.2829604,-3.9190836,-4.3158364,-3.8327556,-4.3458524,-3.5594718,-4.372394,-4.479372,-4.7731056,-4.777296,-4.6235375,-4.6730127,-4.4045086,-3.9926524,-4.595765,-3.945953,-4.764186,-4.6390643,-4.629774,-4.36418,-4.1059604,-4.5155845,-4.633487,-3.4749289,-4.4044757,-4.8142295,-4.717301,-4.5933204,-4.208414,-3.9155593,-4.0954995,-4.515547,-4.7300534,-4.803136,-4.6697383,-4.3796463,-4.362228,-4.60426,-3.608754,-4.25398,-4.8646874,-4.8043594,-4.7954183,-4.730845,-4.699593,-4.6522713,-4.5854707,-4.5899053,-3.9532232,-3.6934514,-4.782435,-4.8501716,-4.7187767,-4.604976,-4.65394,-4.432357,-4.599711,-4.601866,-3.5916817,-4.617862,-4.479854,-3.5050766,-4.7257304,-4.8420672,-4.7639217,-4.3191547,-4.8422627,-4.5828404,-4.240813,-3.92353,-4.5691686,-4.2480025,-4.7980933,-3.746727,-4.643454,-4.4440446,-4.6963296,-4.7738533,-3.5947175,-4.5510087,-3.6948667,-4.6036882,-4.8113055,-4.639953,-4.7634926,-4.7282696,-4.162583,-4.3957095,-4.734471,-4.5618515,-4.6174417,-4.5780835,-3.5248759,-4.2194967,-4.3154945,-4.529964,-3.9424405,-3.4730053,-4.1192145,-4.117756,-4.5905185,-4.0096216,-4.454555,-4.84802,-4.657722,-4.4727483,-4.481987,-4.574386,-4.5272913,-4.288195,-4.2192335,-4.196295,-4.3892655,-4.3208714,-3.5266335,-3.6545532,-4.1105385,-4.6073365,-4.5158596,-4.67481,-4.6747603,-4.680745,-3.5992503,-4.3363543,-4.585143,-4.5722136,-4.587809,-4.483487,-4.492027,-4.5076523,-4.532293,-4.5174923,-4.6194034,-4.594248,-4.5519633,-4.551474,-3.8158221,-4.63833,-4.619452,-4.421297,-4.4489346,-4.63045,-4.5324893,-3.0004535,-4.0798316,-4.6506047,-4.644734,-4.620895,-4.6096644,-4.632212,-4.6259437,-4.616118,-4.35091,-4.5392127,-4.4402757,-4.48807,-4.4079823,-4.416325,-4.4634876,-4.5075336,-4.5167155,-4.4627843,-4.500277,-4.487244,-4.34181,-4.320871,-4.3987327,-4.38501,-4.320482,-4.3884583,-3.5844915,-4.1055484,-4.2978883,-4.2862983,-4.282399,-4.366135,-4.0317874,-4.240124,-4.2718115,-4.253491,-4.3778257,-4.3416367,-4.372253,-4.333072,-4.4188695,-4.391983,-4.3789124,-4.425269,-4.4289346,-4.458714,-4.455438,-4.409699,-4.438929,-4.5223694,-4.506195,-4.4397397,-4.369069,-4.3762107,-4.442906,-4.449141,-4.454594,-4.4851747,-4.4905195,-4.449516,-4.488421,-4.485268,-3.881384,-4.186298,-4.330854,-4.5417066,-4.083055,-4.32655,-4.4600883,-4.4863777,-4.4965415,-3.760098,-3.3396745,-3.4389563,-4.562363,-4.6564198,-4.775855,-4.0064163,-4.863502,-3.3578029,-4.526082,-4.5745106,-4.331473,-4.1085806,-3.961402,-3.137025,-4.306178,-4.66292,-4.4528937,-4.155627,-4.1310496,-3.4352238,-3.8527532,-3.7228327,-3.6262093,-4.0152955,-4.4001794,-2.6614597,-4.005388,-4.3680468,-3.8163095,-4.4959283,-4.27082,-4.7575984,-3.6705637,-4.274143,-4.674008,-3.1669352,-4.588234,-4.595694,-4.195453,-3.934,-3.532863,-3.166351,-2.821154,-3.4114957,-4.499417,-4.7247477,-4.5466733,-4.702871,-4.5976887,-3.5011683,-4.5612545,-3.8237472,-3.9935522,-4.6211934,-4.7122188,-4.8170695,-4.900596,-4.8193045,-4.896029,-4.7223964,-4.800364,-4.785227,-4.6220303,-4.787105,-4.6273093,-4.63384,-4.396969,-4.2788863,-4.1863294,-4.2309327,-3.696931,-4.705601,-4.8081656,-4.491014,-4.412997,-4.533181,-4.5779233,-4.511214,-3.9011374,-4.5635667,-4.557543,-4.296987,-4.5434194,-4.5425534,-4.528173,-4.424314,-4.5435996,-4.427671,-4.443175,-4.483304,-4.050642,-4.249523,-3.610724,-4.602349,-4.638231,-4.482454,-4.5265326,-4.285335,-3.0608194,-4.2866974,-4.4311943,-4.2243543,-4.313938,-4.3077188,-4.33098,-4.64031,-4.515892,-4.3483634,-3.9452024,-3.768909,-4.4499927,-4.2300425,-4.041201,-4.588533,-4.6224475,-4.27049,-4.3661895,-4.2217765,-4.099315,-4.5117383,-4.539639,-4.323217,-3.9437308
+-1.2105086,-2.8089476,-3.3672106,-3.7261724,-3.6353352,-3.3935213,-3.5450706,-4.0191875,-3.8497558,-3.5545595,-2.8571916,-4.2248807,-4.252341,-3.7549396,-4.0417733,-4.0403867,-4.107683,-4.164929,-4.1163254,-3.9497857,-3.8537617,-3.6338642,-4.067042,-3.92411,-3.8555684,-3.7742639,-3.2287962,-3.8486338,-2.96462,-3.5987296,-4.220262,-3.9636025,-4.2864,-4.071139,-4.306373,-4.210361,-4.233633,-4.151147,-3.5856576,-3.2321622,-4.0486155,-3.2798843,-4.256105,-4.3017683,-4.1658463,-3.8343549,-3.4957106,-3.643063,-3.8270097,-3.623509,-3.8779187,-3.9429145,-3.9319596,-3.7039208,-3.5072536,-3.6441245,-3.4845881,-3.4358833,-3.660163,-3.6801116,-3.5393927,-3.5395834,-2.8508742,-2.991259,-2.9494429,-3.0875595,-3.8961468,-4.041704,-3.9978085,-3.9301105,-3.8880162,-3.7836833,-3.2381783,-3.729443,-2.9705935,-3.2552776,-3.2477312,-3.7933354,-3.9885297,-3.945374,-3.8910336,-3.7447839,-3.7159185,-3.645082,-3.3371112,-3.4211955,-3.5714078,-2.399338,-3.977056,-4.0443597,-3.9643202,-3.9540963,-3.8895984,-3.780167,-3.652436,-2.6835861,-3.484549,-3.8258433,-3.7695813,-3.6986375,-2.867488,-3.173652,-3.9471202,-3.9497104,-2.7919106,-3.9580555,-3.0377522,-4.237455,-4.057113,-4.080762,-3.9956703,-3.8698964,-3.334922,-3.810327,-2.973909,-4.051924,-4.199905,-3.9560113,-2.8638792,-3.7348776,-3.6649566,-4.0704985,-4.141043,-2.847165,-4.1668596,-4.1321797,-4.055856,-2.9541233,-4.0846186,-4.052692,-3.3920443,-3.9939818,-3.9951277,-3.893293,-3.4904356,-3.8867602,-4.037771,-3.957456,-3.8905926,-2.8879852,-3.5218763,-3.2902296,-3.666748,-4.1613374,-4.079602,-4.0005755,-3.877812,-3.1166887,-3.8671217,-3.975123,-3.9342303,-3.9037824,-3.8831177,-3.857966,-3.8674521,-3.7799592,-3.7326932,-3.7333946,-3.746348,-3.6861553,-3.6324534,-3.6466358,-3.4962482,-3.3228226,-3.7844748,-3.4556942,-3.7111669,-3.6679206,-3.6459012,-3.2131362,-3.3115633,-3.7694402,-3.8908906,-3.8283677,-3.7467904,-3.6794624,-3.670258,-3.7068043,-3.7335815,-3.7753372,-3.8231273,-3.850841,-3.8643055,-3.65574,-3.6561325,-3.7925868,-3.823423,-3.8101048,-3.846146,-3.8612847,-3.8248057,-3.9108305,-3.9247532,-3.8861756,-3.8600402,-3.8416505,-3.6213512,-3.7689948,-3.774963,-3.738616,-3.668385,-3.6710124,-3.1183605,-3.7042656,-3.9376273,-3.979659,-3.9379764,-3.927302,-3.8638482,-3.7802706,-3.8016615,-3.774438,-3.7492008,-3.739664,-3.7134604,-3.717918,-3.6705887,-3.6997585,-3.888723,-3.85749,-3.8451648,-3.7298121,-3.8775935,-3.928782,-3.9832144,-4.0193543,-4.020089,-3.9997687,-3.8299384,-3.8833327,-3.8552976,-3.8187137,-3.467361,-3.9232192,-4.0273056,-4.0935245,-3.9425359,-3.9448895,-4.0479207,-4.1262536,-4.17841,-3.3145008,-2.808354,-2.5807939,-3.9628148,-4.258817,-4.1590314,-3.1320686,-3.9382114,-3.4421299,-4.1896195,-4.201552,-4.096329,-3.935223,-4.093494,-3.691172,-4.575229,-4.6584077,-4.3434186,-4.143928,-3.9990067,-3.6633015,-3.9065666,-3.966949,-4.160293,-4.384857,-4.4841743,-4.1206207,-4.0472107,-4.041966,-3.5834093,-4.4482064,-4.1198163,-4.5268073,-4.4009566,-4.021572,-4.1626635,-3.8651118,-4.4412017,-4.5590377,-4.074838,-3.7818584,-3.5373125,-3.491186,-3.7253466,-4.0039687,-4.4373794,-4.2330365,-4.1115103,-4.064047,-4.054096,-3.475038,-4.185573,-3.2441568,-4.32323,-4.379643,-3.636858,-4.0118194,-4.4161806,-4.7128444,-4.7485127,-4.6422343,-4.6623425,-4.6091466,-4.709184,-4.760935,-4.6672244,-4.4094977,-4.2270517,-3.9750128,-3.7286887,-3.9594073,-4.222999,-4.403713,-4.5146775,-4.471881,-4.386705,-4.2881284,-4.381621,-4.2175236,-3.6577668,-4.3938427,-4.483636,-4.326632,-4.251947,-4.1153245,-3.8636527,-3.9353433,-4.034386,-4.1020904,-3.9720206,-4.1153445,-3.4354868,-4.0227313,-4.2309365,-4.726628,-4.548073,-4.356151,-4.354672,-4.073124,-2.8191411,-4.511409,-4.6724815,-3.4700398,-4.230286,-4.1954217,-4.335036,-4.603769,-4.5358486,-4.36628,-4.454584,-4.0100017,-4.7429566,-4.5762906,-4.394055,-4.3052487,-4.3347883,-4.183954,-3.732307,-3.835218,-3.712028,-4.0695763,-4.4327674,-4.467317,-4.489531
+-0.61537427,-2.1032033,-3.2612867,-3.5983872,-3.6953845,-3.7297463,-3.4508934,-3.8689575,-3.8097777,-3.6200397,-2.908257,-3.3193762,-4.261164,-4.27188,-4.5816393,-4.4132705,-4.5604587,-4.577041,-4.4922657,-4.417108,-4.445235,-3.7888842,-4.3281794,-4.346562,-4.303624,-4.2342095,-4.1829534,-4.0316286,-3.4886103,-3.1568518,-4.3471894,-4.212765,-4.36385,-4.2648377,-4.056601,-3.8740554,-3.7407026,-3.6158385,-3.661011,-3.5628724,-3.550013,-3.3497355,-2.4152684,-4.100329,-3.9579368,-3.840104,-4.095607,-3.770203,-3.8824677,-3.9219894,-3.8515692,-3.7797575,-3.7315273,-3.7168422,-3.6800115,-3.642744,-3.7737842,-3.7842388,-3.7594051,-3.729527,-3.7000475,-3.77594,-3.8164687,-3.7027144,-2.8421001,-3.1184356,-3.1464028,-4.5504637,-4.5341744,-4.425877,-4.4509244,-2.8244696,-4.2067075,-4.5623517,-2.9785914,-3.275751,-4.0396314,-3.694675,-4.7908473,-4.845533,-4.7666516,-4.665336,-4.5730014,-4.4219527,-4.321241,-4.326973,-4.396366,-4.3269267,-4.364589,-4.0316815,-4.2102904,-4.1847634,-4.0759444,-3.0893283,-4.0318294,-3.760962,-3.356122,-4.154083,-4.0104566,-3.8952785,-3.623319,-2.6094189,-4.0111384,-4.4803414,-4.2545295,-2.7317657,-4.3709497,-3.4966097,-4.1636186,-4.7522106,-4.517014,-4.640073,-3.358759,-4.427075,-4.7100916,-4.608148,-4.467109,-3.7060094,-4.2679167,-4.3201165,-3.7559319,-4.3052297,-4.4036384,-3.1113443,-4.432282,-4.6599755,-4.060084,-4.021748,-2.8660614,-3.4748797,-3.7943254,-4.2952924,-4.201618,-3.9242144,-4.0986814,-4.0226364,-4.502395,-4.733527,-4.6682096,-3.339956,-3.3022454,-3.9571319,-3.9687152,-4.4477086,-4.7833915,-4.8937135,-4.8487735,-4.7872834,-4.825167,-4.8002667,-4.7852044,-4.7757154,-4.7036643,-4.2415285,-4.2192063,-4.599981,-4.586066,-4.5150523,-4.446358,-4.4044156,-4.328628,-4.256841,-4.211102,-4.240526,-4.29594,-3.8218207,-4.489425,-4.596405,-4.5241714,-2.6814313,-4.460856,-4.817456,-4.7159295,-4.6989784,-4.723338,-4.5854278,-4.5291266,-4.5362487,-4.08378,-4.319329,-4.29662,-4.2147255,-4.0786724,-4.0924315,-4.1743565,-4.1991963,-4.2808204,-4.3646617,-4.382014,-4.357049,-4.1970763,-4.2155423,-4.2569475,-4.336269,-4.334172,-4.342083,-4.3780503,-4.3455153,-4.3757358,-4.326744,-4.2609286,-4.2316427,-4.144962,-4.1145854,-4.0729837,-4.1995597,-4.2511477,-4.330936,-4.2828755,-4.3259563,-4.3370748,-4.32293,-4.295936,-4.339889,-4.3362765,-4.369077,-4.352526,-4.282946,-4.332251,-4.478516,-4.4959326,-4.498013,-4.4075456,-4.3537245,-4.4098825,-4.3948107,-4.3626676,-4.452868,-4.102647,-4.2308426,-4.402844,-4.442618,-4.3477263,-4.170826,-4.285954,-4.3551497,-4.4187617,-4.358725,-4.256189,-4.29238,-4.263246,-4.466105,-1.4963629,-2.747984,-4.3478518,-4.533731,-4.1488237,-3.985065,-3.5510845,-4.180966,-4.952452,-4.8850565,-4.718198,-4.424607,-4.2077346,-4.0742235,-4.497756,-4.600053,-4.529609,-4.471233,-4.3521576,-3.1629415,-4.472285,-4.429767,-4.31916,-4.321917,-4.608375,-4.48258,-4.658068,-4.6912017,-4.5901275,-4.628656,-3.989406,-4.59587,-4.370682,-3.183722,-2.8215542,-3.9950557,-4.727086,-4.8665557,-4.5665207,-4.1333,-3.9682927,-3.386917,-2.993846,-3.7432127,-4.4027414,-4.386856,-4.3271275,-4.347533,-4.4211783,-4.3501487,-4.3396325,-2.4656043,-4.256308,-3.628805,-3.7045426,-4.3855953,-5.012942,-5.0054846,-4.055803,-4.692221,-4.6465535,-4.327152,-4.305736,-4.4949694,-4.456177,-4.269113,-4.15279,-4.312581,-3.0917592,-3.4351363,-2.8867297,-4.33698,-4.572801,-4.798988,-4.608049,-4.6169977,-4.2116995,-4.378424,-4.106831,-4.429218,-4.391398,-4.280853,-4.292523,-4.4211545,-3.3485608,-4.214684,-4.7153916,-4.6904645,-4.475023,-4.375393,-3.2536695,-4.5748916,-4.634898,-4.4699006,-4.411453,-4.302483,-4.428825,-4.401704,-2.1180205,-4.018611,-4.6932282,-4.3002243,-3.6802173,-3.7176661,-4.184242,-4.5372477,-4.4193683,-4.2082243,-4.0519304,-4.074466,-4.1114526,-4.085398,-4.0638595,-4.0445952,-4.122844,-4.3103094,-3.0023444,-3.8711433,-4.523497,-3.9375834,-4.539702,-4.5009074,-4.2082515
+-0.9575831,-2.744338,-3.5448928,-3.9260092,-4.1172338,-4.0611596,-3.6572223,-4.215303,-4.276406,-4.1002054,-3.3021963,-2.8373964,-3.7129016,-3.8410535,-4.31521,-4.565458,-4.616241,-4.622205,-4.587135,-4.5082474,-4.0645037,-3.5211864,-4.3138833,-4.6812243,-4.5896845,-4.5502615,-3.3142042,-4.032708,-4.683515,-4.6981606,-3.664544,-3.76197,-4.281894,-4.5269465,-4.5272202,-4.562323,-4.508794,-4.426185,-4.3263783,-3.747208,-4.331248,-4.3776903,-2.7798066,-4.403672,-4.541145,-4.373547,-2.8375983,-3.799646,-4.3407807,-3.1270196,-4.3630214,-4.563286,-4.5726933,-4.5485635,-4.442033,-4.379354,-4.4207497,-4.2975044,-4.290315,-4.2243133,-3.4314408,-4.2382593,-4.284142,-4.17621,-2.4904175,-3.4307451,-4.4783196,-4.4071,-4.428429,-4.3774104,-4.362593,-4.356708,-4.244407,-3.5553298,-2.5920386,-3.8674388,-4.5343204,-3.3515239,-4.0947223,-4.5253973,-4.600652,-4.5094676,-4.4887266,-4.3683896,-4.3085814,-4.3100505,-4.273154,-3.0361068,-2.7596269,-4.3084993,-4.098929,-4.549106,-4.5513825,-4.4890437,-4.42653,-2.8658664,-4.4399676,-4.581472,-4.474632,-3.2623682,-3.1151748,-3.4192698,-4.243067,-3.562341,-3.705031,-4.3000865,-3.5397015,-3.7812467,-4.6389327,-4.691317,-4.6301293,-4.614543,-3.7225513,-4.5791,-4.695965,-4.5713544,-3.8884664,-4.5364842,-4.510924,-4.3788123,-4.319018,-3.479648,-2.8799107,-3.590843,-4.401775,-3.0397208,-4.2147403,-4.577561,-3.7185683,-3.2028108,-3.8240104,-3.6695566,-4.0529275,-3.8803153,-3.9297585,-3.8147578,-4.5859723,-4.741652,-4.740751,-4.6711574,-4.079163,-3.8706574,-4.3338275,-3.8385315,-4.6380787,-3.6231146,-3.2893226,-4.6013255,-4.701566,-4.6796546,-4.677069,-4.6510096,-4.594783,-4.362227,-4.481912,-4.447616,-4.553536,-4.49742,-4.416506,-4.381063,-4.3277826,-4.282098,-4.303264,-3.5803702,-2.509502,-3.621936,-4.507416,-4.6225467,-4.546046,-3.4612265,-2.820932,-4.515095,-4.5744905,-4.652815,-4.677503,-4.633879,-3.543883,-4.572988,-4.288836,-4.590958,-4.5397897,-4.46947,-4.3447967,-4.420894,-4.4676595,-4.4737573,-4.378896,-4.364092,-4.32217,-4.3027005,-4.1471,-4.0262103,-4.0533204,-4.014183,-3.9497566,-3.950409,-3.8773413,-3.8794484,-3.9582782,-3.8990374,-3.9219394,-3.94669,-3.9685044,-3.9261904,-3.7040896,-3.8119068,-3.7960005,-3.8429298,-3.7272763,-3.781025,-3.8349957,-3.8351817,-3.8187346,-3.8290296,-3.7900672,-3.806006,-3.8365989,-3.8352604,-3.7838435,-3.8579497,-3.8053794,-3.8540616,-3.886025,-3.726211,-3.8439984,-3.8011155,-3.7256966,-3.762919,-3.5464575,-3.7388878,-3.7873788,-3.782567,-3.845233,-3.6009655,-3.749251,-3.7622228,-3.794536,-3.749156,-3.797977,-3.7551765,-3.675414,-3.8640428,-1.3881314,-2.6957707,-4.309854,-4.198807,-4.1101766,-3.5295954,-3.3988454,-4.167422,-4.7926793,-4.743445,-4.348511,-4.133645,-4.1354427,-3.7976995,-3.1793592,-4.432238,-4.6685543,-4.5130877,-4.6341,-3.9190736,-3.9172025,-4.306681,-4.381704,-4.607199,-4.796839,-4.694988,-4.8692193,-4.8288474,-4.656944,-4.6836104,-4.509891,-4.5431323,-3.4662933,-2.683743,-2.4870117,-3.646793,-4.5863805,-4.892649,-3.7092385,-3.7929182,-3.965732,-3.5045161,-3.3498173,-4.365693,-4.778578,-4.7206035,-4.727344,-4.7218165,-4.7260275,-4.778024,-4.6902795,-3.4669695,-3.6427894,-3.5974422,-3.4644637,-4.485601,-5.0014863,-5.0260024,-4.0288258,-4.674895,-4.5195565,-4.50989,-4.66972,-4.815177,-4.8388267,-4.662727,-4.478537,-4.406789,-3.799261,-4.588451,-3.314046,-4.648535,-4.859808,-4.717492,-4.766843,-4.8819165,-4.596008,-4.5859666,-4.2240434,-4.5671277,-4.5935054,-4.5067954,-4.590031,-4.6176515,-2.9440267,-4.499662,-4.8259964,-4.867909,-4.7529464,-4.5427165,-3.235568,-4.4412413,-4.872938,-4.3340435,-4.637839,-4.593411,-4.7492814,-4.7331476,-4.714322,-3.0041313,-4.384312,-4.1819243,-4.7014937,-3.9410753,-4.561585,-4.2568192,-4.45613,-4.3885345,-4.5536904,-4.735825,-4.660279,-4.5330057,-4.5049076,-4.4402785,-4.3980684,-4.3625436,-2.9698062,-3.9773211,-4.651735,-4.496021,-4.56778,-3.4218695,-4.4083056
+-0.119398475,-1.1934333,-2.6006732,-3.3149385,-3.8396783,-3.9556313,-4.0029907,-4.081512,-4.0604253,-3.9043899,-3.9508872,-2.7910514,-3.0922508,-3.413517,-4.2013903,-4.4258485,-4.36212,-4.3465376,-4.261682,-4.131522,-4.071693,-2.8489366,-4.152339,-4.383699,-4.3141546,-4.2779217,-4.03177,-3.88977,-4.3149776,-4.3082557,-2.9878352,-4.195593,-3.8436427,-4.3479447,-4.6068516,-4.6078973,-4.4586825,-4.2611012,-4.089042,-3.8557878,-4.05761,-3.8913288,-3.991547,-4.07317,-3.9977555,-3.7782016,-2.659425,-3.636996,-4.2634015,-2.611806,-4.025495,-4.3936744,-4.412483,-4.2739596,-4.217568,-4.1330695,-4.07627,-4.0483155,-3.9000993,-3.7364392,-3.8512254,-4.047223,-4.00371,-3.9314551,-1.844707,-3.2488308,-3.975616,-4.4092855,-4.444924,-4.3884254,-4.397743,-3.3062305,-4.327933,-3.656939,-3.6672745,-3.9546547,-4.457621,-4.488172,-2.8862457,-3.6578507,-4.3894286,-4.5495763,-4.5131803,-4.3499737,-4.42606,-4.322373,-4.273974,-2.2151332,-4.149248,-4.146811,-3.3951411,-3.9611955,-4.4679227,-4.516493,-4.4528112,-4.205507,-3.4906359,-4.4366603,-4.488504,-4.203957,-4.301869,-3.2729473,-2.6767886,-4.0279727,-3.9975123,-4.431356,-3.1215777,-3.563972,-4.0647593,-4.5263534,-3.2175503,-3.876411,-3.7797441,-4.4693127,-3.6402283,-4.3172126,-3.4951792,-4.3330216,-4.592776,-3.9712377,-4.5891986,-4.617325,-4.5704007,-2.4726603,-4.2562914,-3.4094117,-4.3112574,-4.4691525,-4.255352,-4.283633,-4.3950734,-2.508635,-3.3261712,-3.1388922,-3.5058424,-4.413425,-4.521602,-4.6168747,-4.5425854,-4.437712,-3.2803273,-4.4576836,-4.550015,-4.213,-3.9814143,-3.6745598,-4.512522,-4.58937,-4.620456,-3.0834107,-4.4131227,-4.5640335,-4.559012,-4.4813914,-4.402195,-3.1363468,-3.4033425,-3.5136876,-4.361586,-4.500049,-4.5097604,-4.5067906,-4.339887,-4.4925647,-3.5792408,-4.470547,-4.348021,-4.582563,-3.0962048,-3.3031073,-3.4597473,-4.357907,-4.5213366,-4.5550375,-4.5519605,-4.4775553,-4.3940625,-4.360602,-4.208874,-4.389627,-4.3167796,-4.2570953,-4.2506537,-4.0725875,-3.9739866,-3.8652344,-3.8612661,-3.9028883,-3.9157023,-3.813962,-3.779654,-3.828969,-3.748654,-3.7467628,-3.7383356,-3.7037053,-3.7011619,-3.805015,-3.8041444,-3.8528638,-3.9109745,-3.9462962,-3.9052238,-3.8293853,-3.912476,-3.8060703,-3.7486844,-3.694322,-3.692443,-3.7426238,-3.7268991,-3.721024,-3.718799,-3.708243,-3.761271,-3.8412633,-3.7914205,-3.8067217,-3.7711139,-3.7535062,-3.7564497,-3.5520349,-2.571974,-3.9102464,-3.9754,-4.0083127,-3.9687934,-3.887075,-3.905583,-3.8560505,-3.837068,-3.868246,-3.8841214,-4.00641,-3.9270191,-3.8898792,-3.8130536,-3.758687,-3.8230805,-3.867732,-3.8984618,-3.7727761,-3.2882197,-3.1984615,-4.292136,-4.1499877,-4.010861,-1.9478722,-2.1489732,-3.13024,-4.0059857,-4.4664497,-4.4103694,-4.2924366,-4.3430905,-4.3595414,-3.5257,-3.2351098,-4.1083574,-4.4466486,-4.4434433,-3.540647,-2.9575086,-3.813682,-4.308227,-4.362946,-4.340612,-4.383589,-4.4458947,-4.471621,-4.4427185,-4.3952384,-4.302236,-4.3970876,-4.1246266,-2.3171637,-2.851334,-2.9935033,-3.847012,-4.4126267,-3.6999264,-3.5821865,-3.8742948,-3.7746024,-3.9599104,-3.954986,-4.5798945,-4.575777,-4.4996505,-4.4388967,-4.4252872,-4.4507546,-4.449475,-4.412536,-3.0884619,-3.3022633,-3.466011,-4.16579,-4.5027843,-4.564475,-4.493269,-4.6415534,-4.429541,-4.4637237,-4.463795,-4.382426,-4.3896728,-4.339791,-4.257899,-4.253413,-4.13993,-4.1374574,-2.288052,-4.032663,-4.4097223,-4.511409,-4.4726205,-4.4890485,-4.251325,-4.2274284,-4.028089,-4.3467464,-4.237533,-3.3642454,-4.355557,-4.3969235,-2.8315141,-4.0867553,-4.4159694,-4.4868193,-4.4876924,-4.4942007,-4.240664,-4.335873,-4.294659,-3.810485,-4.3868504,-4.276958,-4.087688,-3.9898496,-3.9778876,-2.345216,-3.9921746,-4.411389,-4.4069963,-4.1446176,-4.325463,-4.166079,-4.5042624,-4.3423567,-4.2514772,-4.1760488,-4.1295724,-3.985331,-4.017971,-3.9838138,-3.9039836,-3.8321114,-3.760035,-2.8547845,-4.106816,-4.2088656,-4.135862,-2.8314052,-4.1762767
+-0.74355406,-0.84848017,-1.1443255,-1.0088532,-0.48167253,0.2313157,-0.8927577,-1.0199244,-0.70511526,0.13992947,0.07003009,0.24221087,-0.43672645,-1.1660829,-2.202478,-3.034515,-3.3629289,-3.5508199,-3.5905666,-3.5311806,-3.0565782,-3.5129151,-3.469278,-3.5692265,-3.5640593,-2.8871784,-3.4681726,-2.6343224,-3.4280186,-3.3398895,-2.9709134,-3.538021,-3.5120344,-2.7298203,-3.2846386,-3.3764834,-3.7332149,-3.7223425,-3.7979531,-2.7539513,-3.5917068,-3.6966558,-3.779284,-3.257553,-3.3463943,-3.419022,-3.7496428,-3.6672707,-3.699194,-3.8540802,-3.8826723,-3.8348475,-3.8495078,-3.843099,-3.8472352,-2.9427052,-3.691649,-3.5856128,-3.9286928,-4.028031,-4.107514,-3.8814273,-4.012431,-4.0190854,-3.6324883,-3.6874762,-3.6596284,-4.1255307,-3.924487,-3.9555278,-3.9107027,-3.816584,-3.9690852,-3.784618,-2.9835873,-3.259172,-3.2998533,-4.0017924,-4.0765805,-4.0969424,-4.037817,-4.0470624,-4.0058846,-3.7837014,-3.965323,-3.8878388,-2.814743,-3.8241334,-4.0333023,-3.8985262,-3.8679924,-2.983721,-3.803772,-3.9241614,-3.98384,-3.9233184,-3.8819332,-3.8986087,-3.619292,-4.1472187,-3.9903216,-2.80466,-3.7260323,-4.004852,-4.0736604,-4.0741324,-4.0318003,-3.93226,-4.0090384,-3.9580712,-3.9244866,-3.38734,-3.866551,-4.1188245,-2.0525274,-3.9312816,-4.1001782,-4.2122245,-3.2278318,-3.669784,-4.025904,-4.1386886,-4.2414675,-4.2844415,-4.2354484,-4.1788545,-4.178196,-4.12709,-4.0290074,-3.9871106,-3.948398,-3.919118,-3.8675642,-2.7617414,-3.381545,-4.1282096,-4.2187157,-3.968594,-4.1976933,-4.2594132,-4.150006,-2.834258,-4.1803493,-4.1257253,-4.1308694,-4.07112,-3.1259265,-4.086389,-3.799943,-4.105971,-4.296882,-4.241307,-4.308365,-4.1883445,-4.1244035,-4.0572796,-4.0484366,-3.962235,-3.902009,-2.1998873,-2.6875062,-4.048325,-4.0824323,-4.3057747,-4.180906,-4.2438135,-4.3158092,-4.239169,-4.1658983,-3.318777,-4.1718807,-4.1306148,-4.249705,-3.4551795,-4.0490565,-4.1965117,-4.17399,-4.150189,-3.388403,-4.0713744,-3.6886604,-4.0647287,-3.69796,-3.5667315,-3.843464,-4.0991454,-4.10694,-3.7225666,-4.1658344,-4.0933394,-4.326588,-4.2472725,-4.2114997,-4.1516323,-3.7286906,-4.059928,-4.012964,-3.9781094,-2.5199695,-3.9747634,-4.0950503,-4.200774,-4.135377,-4.15359,-4.07917,-4.1136026,-4.28536,-4.149002,-2.1807065,-3.4021783,-3.5873199,-3.9414916,-4.171682,-4.0470304,-3.9816437,-3.5525575,-4.0947638,-4.069529,-4.027373,-4.1665416,-4.161978,-4.2570367,-4.252706,-3.9807763,-4.272108,-3.7909985,-3.7633014,-4.059095,-4.301147,-4.2658114,-4.102906,-4.0399947,-3.7517257,-3.8756142,-3.5817266,-3.1918654,-2.0017648,-2.8475378,-3.4360633,-3.5983682,-3.4489336,-2.874157,-2.829041,-3.6996331,-3.6487756,-3.702095,-3.6527505,-2.979135,-2.8487012,-2.9290977,-2.7770255,-2.221809,-1.9595823,-1.112426,-0.1169115,-0.012817085,-0.21547621,-0.6214657,-1.0941834,-1.5964134,-1.8773308,-2.0972052,-2.3326766,-1.8796434,-1.8797047,-1.5396636,-1.4030459,-1.5545282,-1.8200257,-1.1703393,-1.131048,-1.3097882,-1.1439526,-0.9146454,-0.9750481,-1.2005522,-1.435015,-1.1761675,-0.811305,-1.4979236,-2.208448,-2.489299,-2.6593845,-2.2123027,-1.9081926,-1.8771436,-1.6821775,-1.8571243,-2.0198195,-1.9267411,-1.9240556,-1.5982809,-1.2560909,-1.2171361,-1.1867948,-1.224896,-0.6569702,-0.280397,-0.9874001,-1.4195261,-1.8454261,-2.323707,-2.6019874,-2.1863601,-0.9279255,-0.033172965,0.25459978,0.41031623,-0.14811611,-0.67793006,-0.69154465,-0.9866881,-1.0354183,-0.59397995,-0.7258957,-1.1186926,-1.1437242,-0.7633615,-0.82308775,-0.70169014,-0.27386874,-0.11628729,-0.3040442,0.2153619,-0.7400891,-1.4140792,-1.7967029,-2.9764023,-3.4768252,-2.5901928,-2.910776,-2.5166922,-2.1783648,-1.4979577,-2.6593213,-2.699772,-2.0358691,-0.44126546,-0.15919909,-0.6398532,-1.3970442,-2.6382072,-2.7242908,-2.308404,-1.6403587,-0.9364814,0.1295756,0.25971532,0.41643792,0.3970709,0.22611761,0.38332397,0.48375198,0.5142085,-0.7809842,-0.40692794,-0.34241807,-0.24445885,-1.2266517,-1.7403307,-2.951522,-3.2740407,-3.2569907,-2.357307,-3.2128735
+-1.235225,-1.6322486,-2.155403,-2.548026,-2.650275,-2.1764708,-2.9084685,-2.8309011,-2.7098756,-1.8975143,-2.2068098,-2.770967,-2.978979,-3.2142863,-3.2492948,-3.3594298,-3.4473867,-3.5805812,-3.5022209,-3.5613146,-2.272376,-3.4757907,-3.6148775,-3.7889533,-3.7768645,-3.0658212,-3.6622458,-3.4098709,-3.634468,-3.0940928,-3.386584,-3.2869601,-3.6454582,-3.179965,-3.36799,-3.638417,-3.6322114,-3.677618,-3.409389,-2.7055914,-3.315056,-3.4680934,-3.7561836,-3.1477685,-3.610455,-3.670754,-3.5577533,-3.5251331,-3.6354873,-3.646146,-3.717317,-3.8138766,-3.9075236,-4.004269,-3.8185463,-3.4710803,-3.5558612,-3.339507,-3.4601073,-3.7042356,-3.7521405,-3.4616551,-3.7253509,-3.9495354,-3.585217,-3.6168234,-3.3955188,-3.9540596,-4.0069127,-3.8825212,-3.625361,-3.8246975,-3.8503184,-3.9861603,-3.6700003,-2.4304502,-3.711473,-3.9093432,-4.0265036,-3.9859843,-2.499402,-3.9660401,-4.011735,-3.0816197,-3.9597793,-4.310841,-3.3879716,-4.046475,-4.0153604,-4.050991,-4.1264486,-3.7729707,-3.9538074,-3.9611497,-3.6268854,-3.7043657,-2.7786098,-3.7547727,-3.7155976,-3.7830515,-3.804144,-3.722299,-3.4933717,-3.3238716,-2.9255447,-3.829471,-3.8261104,-3.7277951,-3.1911469,-3.8664598,-3.8881383,-2.735928,-3.6147187,-3.8570166,-2.7375183,-3.4963174,-4.0664616,-4.0698447,-3.871365,-3.710432,-3.6424942,-4.039345,-4.037345,-3.9695387,-3.9445662,-3.8704739,-3.828364,-3.880569,-3.951593,-3.9866343,-3.941977,-3.868565,-3.7649226,-3.7583995,-2.224874,-3.771356,-2.7592115,-1.7523606,-3.2133033,-3.778748,-3.6699464,-3.3210814,-3.81771,-4.0709596,-4.1954155,-3.897097,-3.5114088,-4.0069876,-2.8690207,-3.6759932,-3.9219275,-3.0506911,-3.8383265,-4.0193353,-4.1085925,-4.230292,-4.2930646,-4.1878657,-3.9827137,-3.8843403,-3.4864643,-3.948852,-2.667254,-3.736711,-4.1367784,-4.150934,-4.049745,-4.099809,-4.082549,-2.5909357,-3.774498,-4.1838,-4.1907687,-4.20698,-4.1820607,-4.0982814,-4.071138,-4.0956426,-2.957141,-4.2123075,-3.9448004,-3.1524937,-3.0921338,-2.9543436,-3.5144913,-3.8888245,-3.997209,-3.8125305,-3.5479994,-3.9948373,-4.131946,-4.141953,-4.1952024,-4.1642213,-2.9000957,-3.529862,-4.0697494,-4.170531,-2.8745928,-3.746418,-3.9340997,-4.056496,-3.336936,-3.9016838,-4.122111,-4.1935954,-4.0984626,-4.035192,-3.0393634,-3.3516588,-3.7976174,-3.8477798,-3.0144715,-3.7753701,-3.8516154,-3.8756094,-2.926639,-3.7647367,-4.1383944,-4.228457,-4.200535,-4.1258945,-4.113029,-4.325582,-4.1211286,-4.074602,-4.150336,-4.20775,-4.210732,-4.1918707,-4.197889,-3.2935874,-3.4101467,-3.6911716,-3.6884606,-3.5203333,-2.1903012,-3.08934,-3.5696983,-3.778987,-3.8121958,-2.9576168,-3.036058,-3.7148938,-3.9038963,-3.9842944,-3.913628,-2.8524647,-3.1319604,-3.0226,-2.8907251,-2.6169837,-1.929292,-1.7660158,-0.934941,-0.70937186,-0.70100707,-0.9379992,-0.9745185,-1.0435915,-0.9142793,-1.0690277,-1.3606827,-1.2113378,-1.2730589,-1.3150544,-1.3353217,-1.2840557,-1.4549913,-1.1354032,-0.8858306,-1.1538229,-1.2485662,-1.2405059,-1.3518538,-1.5123315,-1.6514523,-1.5159671,-1.1159978,-1.4974859,-1.6369536,-1.6977751,-1.7418268,-1.6803794,-1.9072757,-1.8290546,-1.6462011,-1.5218024,-1.6169245,-1.6101756,-1.7509394,-1.6476898,-0.99852616,-0.6746978,-1.699872,-2.6995676,-3.5912843,-3.6800232,-3.7046518,-3.7120047,-3.5528045,-3.7343154,-3.518333,-3.0821352,-2.3985724,-2.077863,-2.1867423,-2.0463731,-1.8037176,-1.6612663,-1.6102171,-1.4441023,-1.0149076,-2.0429707,-2.4566154,-2.1079168,-1.7776866,-1.6923251,-2.0482821,-2.1954105,-2.4481812,-2.5316782,-2.7268543,-3.4902864,-3.854979,-3.7323575,-3.3314185,-3.614401,-3.7009196,-2.8806999,-3.5803733,-3.51056,-3.4323986,-3.2385302,-2.421804,-2.9067318,-2.93077,-2.6672938,-2.2861977,-2.2681913,-2.7255757,-3.7565794,-3.6739137,-3.6209896,-3.3409908,-3.1387215,-2.3884747,-2.5119352,-2.1605852,-2.3318741,-1.7980051,-1.9868495,-1.9950917,-2.0036683,-2.8906426,-3.430543,-3.1458917,-2.9822042,-3.1240156,-2.9193487,-3.2289267,-3.3952665,-3.3961782,-2.8238006,-3.2359638
+-0.42070973,-0.84150547,-1.5166214,-1.8782706,-2.3493237,-1.9720521,-2.6626172,-2.6802595,-2.4271982,-2.172176,-2.421555,-2.673487,-2.8423133,-2.802238,-2.778242,-2.775498,-2.6756315,-2.7427292,-2.599771,-2.6991723,-2.5820653,-3.072298,-3.3803616,-3.544719,-3.3576813,-3.1801844,-3.0489144,-3.0964043,-3.327863,-3.250709,-3.6214254,-3.4125352,-3.8720245,-3.855289,-3.7554197,-3.6834645,-3.633638,-3.6624415,-3.5349634,-3.770351,-3.7910151,-3.510161,-3.6904197,-3.749432,-3.2947361,-3.3173976,-3.2881618,-3.2693467,-3.0402627,-2.921254,-3.0819569,-3.2076378,-3.2260003,-3.1799288,-3.0605466,-3.0552921,-3.0291016,-2.897814,-2.9413161,-2.9544158,-2.9443374,-2.9770615,-3.1192608,-3.0229287,-2.7149954,-3.4953592,-3.3977847,-3.2227712,-3.1793337,-3.8672366,-3.721681,-3.592184,-3.4026232,-3.2574353,-2.9423072,-3.6324384,-3.70886,-3.5833151,-3.5056834,-3.4404478,-3.2563295,-3.2619982,-3.724815,-3.6773186,-4.0277624,-3.904325,-3.8111362,-3.6090794,-3.7129674,-3.569911,-3.384983,-3.2672968,-3.1835883,-3.2261753,-3.7791834,-3.4962995,-3.3376026,-3.6327868,-3.480321,-3.578912,-3.4968982,-3.4352536,-3.29598,-3.0256944,-3.5077255,-3.6638637,-3.525229,-3.5472941,-3.3228216,-3.9150643,-3.8516326,-3.7837234,-3.557919,-3.4569883,-3.433176,-3.3820238,-3.441938,-3.358008,-3.3391786,-3.268087,-3.420117,-3.4994614,-3.4224033,-3.3815813,-3.3525844,-3.3636382,-3.5262794,-3.4250195,-3.3181672,-3.2572083,-3.2910619,-3.4016347,-3.4053135,-3.4846506,-3.504225,-3.6698546,-3.2771134,-3.9558878,-3.9029875,-3.8662734,-3.8934479,-3.363679,-3.7847614,-3.6595592,-3.746317,-3.246716,-3.6228392,-3.7963877,-3.8710017,-3.9105468,-3.8651729,-3.7314973,-3.7833486,-3.8875947,-3.6927023,-3.631131,-3.5884337,-3.6149147,-3.5683112,-3.5634441,-3.437411,-3.8645024,-3.367042,-3.944779,-3.883761,-3.8629804,-3.798831,-3.8078814,-3.4151328,-3.193839,-3.8539543,-3.7182198,-3.76436,-3.733717,-3.7322965,-3.723134,-3.65547,-3.690249,-3.1926389,-3.6374896,-3.4914606,-3.613354,-3.158134,-3.6168041,-3.5171068,-3.4075427,-3.518308,-3.585454,-3.5819101,-3.58667,-3.510981,-3.674564,-3.6448674,-3.70537,-3.652021,-3.1869733,-3.659473,-3.7258253,-3.5071228,-3.8288512,-3.755261,-3.4940934,-2.9459088,-3.7790556,-3.6455736,-3.6453443,-3.581437,-3.805561,-3.739625,-3.6227436,-3.6391578,-3.6287131,-3.7303352,-3.7532105,-3.7690358,-3.758266,-3.819161,-3.8304543,-3.9902396,-4.004029,-3.9155326,-3.6280847,-3.9501128,-4.113059,-4.1287017,-4.0424094,-4.099204,-4.127844,-4.089158,-3.9998035,-3.9569402,-3.692024,-3.3631794,-3.6907868,-3.6898942,-3.4735858,-2.8499608,-3.2779284,-3.281259,-3.274224,-3.375681,-3.0485072,-3.209286,-3.4069614,-3.4280224,-3.7801256,-3.828662,-3.3422422,-3.4997225,-3.340991,-3.4127142,-3.3417354,-3.2263231,-3.1743808,-2.8528457,-2.424959,-2.47829,-2.550022,-2.4826026,-2.3121245,-1.795407,-1.8447299,-2.0634246,-1.8664892,-1.7653863,-1.6930053,-1.6902332,-1.2038734,-1.2567971,-1.6571026,-2.7889566,-3.0790586,-2.7277884,-2.8423293,-2.905991,-2.9609642,-2.690774,-2.8136294,-2.9461913,-2.8995514,-2.602221,-2.4227302,-2.31985,-2.0338101,-1.5040464,-1.6268401,-2.4328876,-2.9984756,-2.6538215,-2.6900415,-2.4366307,-2.587157,-3.0519166,-3.1734757,-2.7981076,-3.2094147,-3.2684498,-3.3608408,-3.6000865,-3.6338418,-3.6738417,-3.5992541,-3.5408735,-3.32918,-3.3024602,-3.248849,-3.30795,-3.3967378,-3.469442,-3.3457267,-3.0524077,-3.0435157,-2.7656097,-3.6381683,-3.33161,-2.9651523,-2.4285755,-2.6422946,-3.0992494,-2.8901305,-2.9952018,-3.0187995,-2.8358707,-2.960329,-3.1712613,-3.1058936,-3.112777,-3.1610198,-3.1197655,-3.0562968,-3.3040838,-3.6337647,-3.192895,-2.9770303,-2.8813252,-3.230265,-3.10131,-2.8135846,-2.687034,-2.5169535,-2.6568046,-3.0785422,-3.0964217,-3.27525,-3.3201852,-3.238011,-2.9833486,-3.206017,-3.0830016,-2.8860664,-2.5143893,-3.0130188,-3.2637882,-2.5967822,-3.0692055,-3.2415118,-2.9035988,-2.6824841,-2.883164,-2.489143,-3.3181057,-3.3191013,-3.278436,-3.0276642,-3.431621
+-1.0708835,-2.5480306,-3.3334565,-3.5947227,-3.793439,-3.4336438,-3.9571033,-4.199426,-4.2194233,-3.691382,-3.262023,-4.1411176,-4.2133617,-4.1871037,-4.0713515,-3.9710422,-3.8841543,-3.7646313,-3.5066493,-3.487661,-3.03623,-3.8509755,-4.200944,-4.234982,-4.186626,-4.095672,-3.5302317,-3.8937984,-4.3532624,-4.049933,-4.212691,-4.299578,-4.555652,-4.331143,-4.5587735,-4.4576006,-4.3187985,-4.07282,-4.2769322,-3.8431373,-4.583236,-4.035148,-4.5275807,-4.520799,-4.485078,-4.271636,-4.085196,-4.281105,-4.1852856,-4.1955705,-4.322449,-4.2976046,-4.1647935,-4.1380754,-4.1027913,-3.7744164,-4.4342813,-3.8002038,-4.262541,-4.1929746,-3.7757554,-4.0217824,-3.110779,-4.300234,-3.6976461,-4.4874687,-4.4815755,-4.336779,-4.229561,-4.059655,-4.0991063,-4.230558,-4.1108623,-4.0240884,-2.7801516,-3.9596834,-4.420202,-4.5265436,-4.1037908,-4.208125,-4.2465644,-4.083421,-3.0363941,-4.246559,-4.522518,-4.2527056,-3.9723206,-4.1043077,-4.2423673,-4.2441735,-4.068256,-4.1687384,-3.7523417,-2.802991,-3.2232056,-4.0838966,-3.857234,-4.6144567,-4.088674,-4.5044713,-4.487793,-4.322453,-4.1846576,-4.490882,-4.0097995,-4.451836,-4.3492117,-4.2375283,-3.1197424,-4.529932,-3.7783093,-4.177612,-4.217818,-4.3154902,-4.2716055,-4.000472,-3.5638204,-4.1592317,-2.997027,-4.0174994,-4.110639,-4.2525444,-3.7876143,-4.3535056,-4.2044635,-3.8924232,-3.8614888,-4.125214,-4.1694903,-4.042388,-3.9597025,-2.983783,-3.8188539,-3.8509355,-2.791277,-3.1529224,-3.1327531,-3.271399,-3.4572458,-4.0110846,-4.320308,-3.3702188,-4.292315,-4.2946105,-4.09812,-4.234308,-4.3413405,-4.144683,-3.4822316,-4.1257243,-4.034541,-4.0106893,-3.767712,-4.102859,-3.9575138,-3.9129434,-3.914063,-3.9569068,-4.02605,-4.0568905,-3.9848313,-3.4792833,-3.8448572,-4.0860214,-3.9423833,-3.9712157,-4.014822,-4.0187345,-3.7260232,-3.5978544,-4.0971637,-4.027204,-3.9869056,-4.0419574,-4.065376,-4.0961747,-4.0929585,-4.074141,-3.0716784,-3.6458454,-3.4455276,-3.9154906,-3.4443936,-3.8830976,-3.955546,-3.9128232,-3.9621844,-3.9579086,-3.941512,-3.9975142,-4.0326724,-4.003158,-4.034621,-4.0768995,-4.023685,-4.0080724,-4.0252204,-4.0603757,-3.9858623,-3.921125,-3.9060578,-2.7819161,-2.8675382,-3.6185293,-3.9698176,-3.9889436,-3.9847527,-3.9819846,-3.8625827,-3.8401904,-3.8969607,-3.8372283,-3.860787,-3.9091988,-3.810505,-3.8100338,-3.893025,-3.9512424,-3.9681716,-3.9740367,-4.020471,-3.8852086,-4.026967,-4.0568147,-4.1395087,-4.1518183,-4.105034,-4.172336,-4.080944,-4.055673,-4.0221033,-3.9343667,-2.8179677,-3.9593382,-3.9147701,-3.8887877,-3.3140764,-3.8260102,-4.3648295,-4.331644,-4.2193246,-3.066585,-3.4510102,-4.113303,-4.334274,-4.3557324,-4.4180703,-4.0640883,-4.3150115,-3.4686232,-4.029725,-3.8976865,-3.7101412,-3.4949756,-2.851784,-2.524702,-2.4018433,-2.807365,-2.7124753,-2.2365928,-1.3871734,-1.178422,-2.0241632,-2.1428356,-2.0264468,-2.0099297,-1.7530532,-1.5315559,-3.1008039,-3.1670887,-4.1847577,-3.9965262,-3.8717256,-4.0176,-3.77912,-3.7233253,-3.6174712,-3.5271475,-4.1605487,-3.4123545,-2.959937,-2.6338396,-2.4850206,-2.20407,-1.63761,-1.8041434,-3.0999272,-4.2017646,-2.9707632,-3.2833467,-3.47141,-3.5870304,-4.1102166,-4.062797,-3.112698,-3.8611999,-4.029962,-4.145474,-4.2383523,-4.302054,-4.380587,-4.329311,-4.14633,-4.2572074,-4.1102424,-4.19142,-4.331715,-4.1898327,-3.9332576,-3.525504,-3.1528692,-3.747304,-3.2811427,-4.3513794,-4.14076,-3.545582,-3.7559605,-4.0764804,-4.287787,-3.9461894,-4.340174,-4.0302014,-4.091176,-4.3156037,-4.058842,-3.7559924,-3.4345784,-3.8647122,-4.0371275,-3.6385956,-4.3986216,-4.15512,-4.100449,-2.904486,-2.9685812,-3.970241,-4.2263513,-3.8589635,-4.0317926,-3.6287456,-3.4023361,-4.204964,-4.4048653,-4.485598,-4.177481,-4.100041,-3.6630368,-3.9856257,-4.1442046,-3.9265876,-3.2687807,-3.8515143,-4.203626,-4.008969,-3.9557562,-3.9666276,-3.8045235,-3.8676004,-3.4217947,-3.007061,-4.131375,-4.186819,-4.2077346,-3.8718104,-4.1753445
+-1.3206954,-2.7324603,-3.5701504,-3.8505187,-3.9081264,-3.8596377,-3.9193912,-4.132087,-4.248911,-4.121181,-3.6439197,-4.343211,-3.9868703,-4.121014,-4.088641,-3.9797373,-3.9262967,-3.85679,-3.81426,-3.8351398,-3.3471928,-3.9677758,-4.2190604,-4.3359714,-4.3403273,-4.283935,-3.128891,-4.167456,-4.3705163,-4.38658,-4.334677,-4.485339,-4.7502437,-4.460027,-4.7034583,-4.8084517,-4.753718,-4.62597,-4.304901,-3.7341895,-4.5657907,-3.456388,-4.39131,-4.760155,-4.8824525,-4.5608773,-3.7193522,-4.0228953,-4.326012,-3.2164073,-4.25276,-4.6744595,-4.811051,-4.789853,-4.30102,-3.7087412,-4.6063423,-4.584954,-4.933633,-4.8846717,-4.5143228,-4.7067447,-4.013899,-4.6651893,-4.0238976,-4.4135003,-4.871509,-4.8360157,-4.762308,-4.6736364,-4.626445,-4.5778003,-4.551701,-4.4477963,-2.7389798,-4.3015475,-4.6511755,-4.722754,-4.5009313,-4.6016407,-4.6193533,-4.30853,-4.735974,-4.26642,-2.9384124,-4.3140516,-4.575378,-4.03643,-4.715478,-4.74802,-4.6129723,-4.4950223,-4.511484,-4.3228297,-2.6149921,-3.916328,-3.8928666,-3.5567856,-3.7627273,-4.412357,-4.785233,-4.62977,-3.6961865,-4.9102135,-4.0341268,-4.8244076,-4.832897,-4.92288,-4.8121247,-4.602461,-4.61575,-4.6323395,-4.6013703,-4.518739,-4.5944986,-4.382757,-4.3952193,-4.152004,-3.075694,-4.137422,-4.3907256,-4.401253,-4.4758697,-4.5789237,-4.6325517,-4.412622,-3.717402,-4.479117,-4.5901074,-4.4943204,-4.2876287,-4.460302,-4.552917,-4.5921884,-4.5485406,-3.8607621,-3.6210814,-4.192098,-3.5864,-3.9150195,-4.5294104,-3.7692904,-3.8278794,-4.2943435,-4.7165065,-4.8204904,-4.7277355,-4.612935,-4.3781953,-4.4055896,-4.4467683,-4.492272,-4.11621,-4.623962,-4.4626155,-4.470099,-4.5031185,-4.4940066,-4.457283,-4.4260287,-4.3922343,-3.628595,-3.6025908,-4.459174,-4.473822,-4.486429,-4.461803,-4.4055505,-4.083341,-3.221909,-4.504828,-4.42347,-4.392532,-4.3941536,-4.3818893,-4.435199,-4.4114285,-4.3898067,-4.197161,-4.193186,-3.991034,-4.3472857,-3.800486,-4.231973,-4.4702125,-4.4310246,-4.3653097,-4.2409134,-4.2339973,-4.225367,-4.1968255,-4.134687,-4.190071,-4.209372,-4.0785446,-3.7547522,-4.2366357,-4.1809144,-4.2250304,-4.1880655,-4.0878854,-4.1768656,-3.1409607,-4.1062374,-4.241028,-4.228084,-4.1914096,-4.150038,-4.199757,-4.014541,-4.0905957,-4.0976434,-4.0523915,-4.189136,-4.0534515,-4.018379,-4.088078,-4.0247903,-3.9847655,-4.042626,-4.099998,-4.074384,-3.9980474,-4.0453525,-4.1115546,-4.089548,-4.074117,-4.087307,-4.0298843,-3.9863887,-4.019736,-3.949489,-3.4766476,-4.231274,-4.158422,-4.1014585,-3.7535086,-3.913249,-4.2985163,-4.3329997,-4.193126,-3.267583,-3.5236783,-3.9962645,-4.4721656,-4.619541,-4.6301217,-4.457108,-4.698978,-3.2920465,-4.19455,-4.1820507,-4.127879,-3.8846426,-3.4053993,-2.6391952,-4.0052342,-4.2068734,-3.971362,-3.613339,-3.2444263,-2.1152985,-3.4739914,-3.451886,-3.0799317,-2.9097314,-3.0232527,-2.631246,-3.994328,-4.532611,-3.05448,-4.1083164,-3.8411584,-4.1645746,-3.6606054,-4.043863,-4.3578305,-3.42069,-4.313962,-4.0575485,-3.6808712,-3.3980699,-3.0369153,-2.7360182,-2.4404535,-2.7176614,-3.8906226,-2.8124838,-3.5757382,-3.972629,-4.3887725,-3.1402588,-4.2120786,-4.118174,-3.4497323,-4.3626676,-4.601456,-4.5045066,-4.6284943,-4.824947,-4.7150993,-4.775493,-4.718359,-4.8115745,-4.7082553,-4.7749047,-4.687522,-4.6927447,-4.425052,-4.1987963,-4.089762,-4.658711,-2.5512981,-3.9887872,-4.2586436,-4.157558,-4.317965,-4.487164,-4.5496664,-4.3940654,-4.6356187,-4.5999274,-4.606558,-4.618827,-4.504887,-4.4494996,-4.5204945,-4.0789566,-4.5805235,-4.608016,-4.5745716,-4.6946445,-4.215896,-4.289286,-3.4540586,-4.22065,-4.5637274,-4.4360857,-4.5340285,-4.176466,-3.4962268,-4.335743,-4.75146,-4.5885715,-4.5514216,-4.380095,-4.440876,-4.576669,-4.5652056,-4.3746214,-3.6171794,-4.277192,-4.6347847,-4.637526,-4.4621816,-4.4013085,-4.377708,-4.3740478,-4.086923,-3.6051183,-4.0983963,-4.5135417,-4.7152443,-4.749784,-4.2645793
+-2.1111944,-3.0022237,-3.5081596,-3.652197,-3.7904687,-3.5186505,-3.9575663,-4.0843024,-4.2244473,-4.1901526,-4.0778604,-4.2090545,-4.174917,-3.9759712,-3.940549,-3.9499865,-3.8936305,-3.8465047,-3.728557,-3.7622585,-3.1127114,-3.3603125,-4.0799522,-4.122545,-3.9904284,-3.9858375,-3.9371266,-4.025677,-3.963077,-3.5475264,-3.760766,-3.7641544,-4.192324,-3.634624,-4.3278337,-4.4553266,-4.406276,-4.336756,-3.9154592,-3.89221,-3.2549305,-3.5679154,-4.410377,-4.384132,-4.44776,-4.01493,-3.4498868,-4.1087546,-4.2620664,-3.1132274,-4.1480947,-4.4341846,-4.3746114,-4.291474,-3.9723725,-3.7153563,-4.229335,-3.4445157,-4.3106627,-4.249822,-4.125426,-3.2731223,-3.1190443,-3.556215,-3.4433541,-3.6531982,-4.5482297,-4.643992,-4.503767,-4.3837504,-4.295713,-4.247019,-4.2477875,-4.1358256,-3.2474298,-3.267086,-4.346602,-4.4048934,-4.2609444,-4.1813006,-4.1467204,-3.9883313,-4.079209,-4.0588207,-2.4280143,-4.333472,-4.2103534,-3.4359474,-4.470332,-4.505132,-4.450557,-4.2218957,-4.4229217,-4.153643,-4.2441993,-3.1041732,-3.883245,-3.6930728,-4.57951,-4.3857007,-4.601998,-4.3778944,-4.4336047,-4.525262,-3.3400927,-4.6477585,-4.3041186,-4.4496818,-4.4596195,-4.2521596,-4.2000113,-4.1133018,-4.0920377,-3.991696,-4.021877,-4.053442,-4.063478,-3.5019786,-3.3897097,-2.9821472,-4.136049,-4.0303473,-4.2378297,-4.2108507,-4.1784377,-3.9061055,-3.3193753,-4.073632,-3.8982854,-4.433536,-4.3437457,-4.084157,-4.1531196,-4.153185,-4.125775,-4.054567,-3.9484553,-3.8167787,-3.7917619,-2.7418084,-3.2035532,-3.2080526,-3.5446002,-4.3278713,-4.3285637,-4.3176513,-4.238772,-4.159144,-3.1831224,-3.9485846,-4.2045245,-4.1623797,-4.143963,-4.054667,-3.9969864,-3.9743466,-3.9554162,-3.9095378,-3.8792157,-3.8491263,-3.8236904,-3.8135533,-3.6455684,-3.36144,-3.940886,-3.0957348,-3.9347415,-3.889772,-3.7841601,-3.3844802,-2.5585093,-4.0996504,-4.1913075,-4.11942,-4.0671124,-4.0536156,-4.0223374,-3.9897995,-3.9830403,-4.031777,-3.8175645,-3.9969158,-3.8206487,-3.7159276,-3.6808405,-3.725854,-3.7870479,-3.7447076,-3.7535725,-3.7513747,-3.7740154,-3.7771196,-3.7185879,-3.673017,-3.5799756,-3.6218982,-3.7106767,-3.7046266,-3.6824012,-3.6960511,-3.6798594,-3.740932,-2.3595774,-3.5563183,-4.1318784,-4.0257034,-4.0381665,-4.0253406,-3.8255262,-3.7040505,-3.8645787,-3.697926,-3.7151494,-3.698007,-3.6240892,-3.6027346,-3.622541,-3.7661138,-3.7384486,-3.6631756,-3.5987267,-3.524737,-3.7766433,-3.8197393,-3.800034,-3.803679,-3.7940722,-3.7426362,-3.6653266,-3.707584,-3.6302423,-3.6461785,-3.012519,-3.854515,-3.8094134,-3.839962,-3.439005,-3.8262496,-3.9863229,-4.004453,-3.956758,-3.7109447,-2.1847587,-2.380528,-4.069568,-4.266251,-4.3225646,-3.6127274,-4.395415,-3.3987827,-4.288876,-4.255667,-3.812077,-3.552786,-3.6707861,-2.7237406,-4.2002063,-4.2632575,-3.929418,-3.7348232,-4.0381846,-2.689832,-3.4238994,-3.3575246,-3.6466475,-3.9995112,-4.2023253,-2.721526,-4.1371264,-4.3009534,-3.214106,-4.381523,-4.2528176,-4.418601,-4.129602,-3.9756389,-4.5018425,-3.7209172,-4.5916142,-4.329223,-3.8765025,-3.5334105,-3.2399564,-2.9262316,-3.157007,-3.239686,-4.276408,-4.50748,-4.5095425,-4.5201526,-4.5607543,-3.8261352,-4.5640335,-3.9985437,-3.7951107,-4.613142,-4.71963,-4.368957,-4.625459,-4.7034793,-4.7124987,-4.8346286,-4.863532,-4.468576,-4.7149315,-4.86072,-4.7602797,-4.691425,-4.630129,-4.0757003,-4.399216,-4.1398673,-3.679092,-4.5543857,-4.4482675,-4.4604335,-4.4586234,-4.5439906,-4.71662,-4.5257363,-4.024585,-4.426971,-4.5719037,-4.3919387,-4.5056314,-4.5224566,-4.4713807,-4.4453588,-4.5007486,-4.4358344,-4.2289753,-4.5602946,-4.5501924,-3.9763932,-3.321036,-4.5241723,-4.6179376,-4.514669,-4.5788217,-4.445055,-3.4765704,-4.479387,-4.705198,-3.7641072,-4.2429357,-4.183909,-4.2157593,-4.557459,-4.40304,-4.2580676,-4.2365813,-4.1171875,-4.5587225,-4.59654,-3.9396129,-4.623715,-4.7031937,-4.5295568,-4.1751337,-4.028211,-4.3711915,-4.2907248,-4.565057,-4.6252837,-4.4401593
+-1.4410906,-2.823631,-3.048367,-3.2808356,-3.346736,-3.3501272,-3.135496,-3.4969306,-3.4799087,-3.5668921,-3.1036577,-3.6166835,-3.8341193,-3.643818,-3.9406738,-3.9252257,-3.9001565,-3.825966,-3.8081927,-3.8353105,-3.816462,-3.5387988,-3.8597112,-3.8233356,-3.780449,-3.7367325,-3.7137284,-3.7421718,-3.7384443,-2.8586936,-3.6505227,-2.8922327,-3.8311658,-3.8559403,-4.144659,-4.230533,-4.2406907,-4.1260543,-3.9359484,-3.8430524,-3.919251,-3.0447884,-2.9363594,-4.0861034,-4.0531764,-4.1156526,-4.0231295,-4.0085945,-4.0459485,-3.671023,-3.7725425,-4.09451,-4.0540037,-4.036587,-3.890304,-3.8844423,-3.7964015,-3.3679385,-3.827352,-3.8628879,-3.8500066,-3.3072631,-2.350199,-3.924384,-3.9544492,-2.89568,-4.097841,-4.333452,-4.2215443,-4.140777,-4.1349406,-4.056138,-3.7542105,-4.1314836,-4.0696487,-3.644186,-2.5880303,-4.2022424,-4.168625,-4.1070886,-4.064945,-4.0286603,-4.0189843,-4.0003304,-3.9789286,-3.8764248,-3.599743,-3.043182,-3.7786994,-4.19834,-4.1415334,-4.16931,-4.0848804,-3.9193616,-3.9276972,-2.1539092,-3.915213,-4.287449,-4.382565,-4.2821465,-2.867706,-3.6189272,-4.2285657,-4.356631,-4.063355,-4.215948,-4.00952,-4.0416603,-3.8812823,-3.9460058,-4.104634,-4.005494,-2.9239721,-3.8326497,-3.6886864,-4.0855827,-3.9981866,-3.9632049,-2.6651077,-3.9743152,-3.018707,-4.14375,-4.377793,-2.844398,-4.1307154,-4.246799,-4.2199783,-4.1818557,-4.163407,-3.8118382,-3.6824255,-4.0854125,-4.0751705,-3.9630308,-3.893538,-3.8215299,-3.8031259,-3.7985892,-3.81566,-2.6428297,-3.5801406,-3.003024,-3.5819583,-4.2248693,-4.2327943,-3.6328356,-4.141808,-3.7415433,-3.914661,-3.8665385,-4.0969815,-4.0428967,-3.969728,-3.7632527,-4.022312,-3.825613,-3.8588238,-3.8448858,-3.827479,-3.7909255,-3.7655215,-3.7622542,-3.7421765,-2.4415514,-3.6401806,-3.7526865,-3.8376231,-3.8449426,-3.739017,-3.6639926,-2.792204,-3.6540732,-4.027393,-3.9483714,-3.8660579,-3.8582315,-3.86546,-3.7926383,-3.7288089,-3.8341947,-3.8922148,-3.8820548,-3.9362102,-3.9141183,-3.9533324,-3.9402452,-3.8935275,-3.8662238,-3.8617358,-3.83315,-3.821384,-3.9102335,-3.9004145,-3.877933,-3.850968,-3.872007,-3.836162,-3.794579,-3.73423,-3.750451,-3.7029843,-3.7163382,-3.2210908,-3.720695,-3.8551412,-3.9475508,-3.9547615,-3.8941731,-3.8668923,-3.836032,-3.8661308,-3.8292394,-3.8284965,-3.862904,-3.8260174,-3.8403325,-3.824038,-3.8288226,-3.9155474,-3.9292026,-3.9107862,-3.8927217,-3.950173,-3.878487,-3.968759,-3.914682,-3.9556413,-4.0117564,-3.9598927,-3.987925,-3.9753528,-3.9351401,-3.8575082,-3.7094493,-3.88136,-4.002098,-3.991315,-3.9403863,-3.9984388,-3.9462123,-3.9649348,-3.9960103,-2.0327072,-2.016263,-3.576019,-4.076154,-4.3301625,-3.5363092,-4.0060744,-3.9295754,-4.1721034,-4.3323894,-3.9082208,-3.8571315,-3.9206853,-3.6360345,-4.4352994,-4.42417,-4.069668,-3.956439,-4.091321,-3.7665124,-3.8422022,-3.97507,-4.213457,-4.3574834,-4.4226966,-4.4947095,-4.3942046,-4.313071,-3.444174,-4.3329473,-3.824469,-4.0135164,-4.335074,-3.664562,-3.891913,-4.1248755,-4.318547,-4.2732973,-4.229296,-3.727759,-3.4617352,-3.5607815,-3.8815808,-3.6738627,-4.4435825,-4.336024,-4.338512,-4.3455224,-4.2690115,-4.2821565,-4.125036,-3.275518,-3.4863455,-3.9360003,-3.6130283,-3.216565,-3.7891011,-4.1881204,-3.9983845,-4.037003,-4.076763,-4.2436094,-4.195399,-4.3807807,-4.412222,-4.462401,-4.481989,-4.0523753,-3.6979213,-4.1916404,-3.7130313,-4.3108144,-3.8085375,-3.9212632,-4.165115,-4.0352936,-4.349761,-4.3813796,-3.7786736,-4.041309,-4.212798,-4.122075,-4.353484,-4.3592668,-3.6722317,-4.1456175,-4.287584,-4.238534,-3.7162433,-4.016583,-3.656352,-3.47161,-3.9125662,-4.1672244,-4.070437,-4.1226935,-4.3345428,-4.2997828,-3.3180885,-4.201423,-4.262256,-3.5033622,-4.0795946,-3.8693175,-3.8090081,-3.8400946,-3.6980405,-3.6990142,-3.9995255,-3.4712088,-3.9296594,-4.133211,-4.094711,-3.732026,-4.151074,-4.0992255,-3.8202567,-3.2926984,-3.934711,-3.4261773,-4.0036263,-4.166197,-4.163532
+-0.33752877,-2.1839786,-3.2248726,-3.6500008,-3.941464,-4.0621195,-3.6669192,-4.1038413,-4.181079,-4.1100364,-3.5107288,-3.3329687,-4.253736,-3.894916,-4.3606987,-4.552951,-4.397275,-4.44941,-4.4286356,-4.2093844,-4.2914376,-4.0535865,-4.401487,-4.3261333,-4.3301783,-4.264774,-4.257896,-4.149153,-4.148124,-3.206309,-3.6470454,-4.6259933,-4.4644465,-4.531894,-4.477162,-4.454235,-4.35376,-4.2474227,-4.199164,-4.22746,-4.0957723,-3.9896216,-3.8025584,-4.1431212,-4.1231456,-4.002442,-3.8803935,-3.8533144,-4.1669316,-3.5932536,-4.305636,-4.1900735,-4.084243,-4.0283985,-4.0024905,-3.9774032,-3.9741683,-3.9304028,-3.9239278,-3.9070764,-3.8760066,-2.5299273,-4.0583215,-4.29296,-4.067409,-3.4693954,-4.1177726,-4.2248387,-4.1281505,-4.046152,-4.0501227,-4.085764,-4.0621934,-3.9023023,-2.6985035,-4.122374,-3.114922,-3.902196,-4.2542014,-4.2064595,-4.166146,-4.136925,-4.1494956,-4.10053,-4.1071553,-4.081528,-2.4387655,-3.8963995,-4.0781703,-4.1505427,-4.1117907,-4.0744433,-4.0799804,-3.7567935,-4.11931,-3.869278,-3.5548203,-4.1293697,-4.1570373,-3.6321259,-3.9260302,-3.4059029,-3.1453855,-3.621551,-3.9662004,-4.192039,-4.032595,-4.271539,-4.2654805,-3.9581985,-4.2298365,-3.7117858,-2.6513524,-4.1348224,-4.3682065,-4.2996373,-4.2710447,-4.1261716,-3.9372845,-4.0457435,-3.938023,-4.1823215,-3.8509178,-2.6980045,-4.26032,-4.25929,-4.245971,-4.1183333,-4.134267,-2.8020535,-4.2653794,-4.321123,-3.9688902,-4.2191434,-4.041564,-4.358152,-4.2642198,-4.2621655,-3.3620515,-3.5744853,-3.7888427,-3.9309998,-3.6082444,-4.162452,-4.2315874,-4.242203,-3.166312,-4.206632,-4.2469726,-4.253852,-4.281263,-4.3254514,-4.2798905,-3.7210236,-3.410556,-3.0931787,-4.144978,-4.179621,-4.2164803,-4.2408557,-4.2389073,-4.2146144,-4.203774,-4.0239635,-3.9964385,-4.2425675,-4.271636,-4.2633147,-4.237675,-3.9142375,-3.6999717,-3.837882,-4.1431165,-4.2452807,-4.2338233,-4.2075477,-4.181388,-4.1898427,-4.1585007,-4.022142,-4.043201,-4.0747085,-4.019483,-4.043309,-4.183651,-4.1764092,-4.1873093,-4.2246504,-4.2314167,-4.2049356,-4.1973624,-4.1538854,-4.240224,-4.232242,-4.2168026,-4.252112,-4.234156,-4.241933,-4.2696724,-4.199839,-4.126984,-4.116486,-4.166486,-4.2141557,-4.055633,-4.220978,-4.295265,-4.242884,-4.201941,-4.242174,-4.1997437,-4.207712,-4.1985765,-4.225059,-4.213794,-4.2265124,-4.235945,-4.2196383,-4.233172,-4.328771,-4.3861203,-4.355684,-4.3564677,-4.2164817,-4.3104033,-4.290912,-4.2733865,-4.2426267,-4.244979,-4.180063,-4.17282,-4.1693945,-4.160354,-3.9902205,-4.1947627,-4.306849,-4.2320256,-4.196107,-4.089024,-4.0859613,-4.071981,-4.326512,-1.3516204,-2.5291831,-4.1020074,-4.2795534,-4.346107,-4.264664,-3.6655257,-3.931365,-4.466515,-4.604235,-4.507582,-4.243708,-3.9710708,-4.0562477,-4.395105,-4.2462587,-4.480139,-4.262447,-4.3457866,-3.8957667,-4.4166203,-4.3682704,-4.331987,-4.3273454,-4.387223,-4.4102216,-4.3485284,-4.369085,-4.3333983,-4.249045,-3.4895391,-4.291834,-4.0298324,-3.1325004,-2.34032,-3.279839,-4.2510753,-4.4677663,-4.4457197,-3.9280958,-3.7872849,-3.2957644,-2.7417035,-2.8798265,-4.0962954,-4.3605924,-4.292395,-4.299626,-4.317635,-4.378825,-4.16602,-4.1749325,-2.7244897,-3.28295,-3.0896578,-4.07,-4.566257,-4.8226333,-4.523568,-4.6982965,-4.603431,-4.498218,-4.449278,-4.6739507,-4.6728845,-4.5029683,-4.440088,-4.516311,-4.008455,-4.3675427,-3.0565786,-4.4823546,-4.588334,-4.529674,-4.5771184,-4.6475606,-4.493545,-4.4813123,-3.5483549,-4.402926,-4.510102,-4.709247,-4.583294,-4.5119987,-3.7061343,-4.4912057,-4.6727805,-4.6693087,-4.52537,-4.4883456,-3.9018083,-4.5789857,-4.54129,-4.310103,-4.489985,-4.3080535,-4.497517,-4.378073,-3.172476,-3.9533844,-4.522365,-4.320335,-4.5215774,-4.0324874,-4.542071,-4.2123084,-4.3657393,-4.2849627,-4.159888,-3.939221,-4.4260154,-4.388534,-4.415087,-4.315045,-4.2078633,-4.2113776,-3.6792827,-3.290781,-4.5825057,-4.5513034,-4.671903,-4.3907332,-4.6748157
+-0.6260692,-2.5241694,-3.3207495,-3.8757691,-4.099124,-4.067801,-3.592152,-4.1795344,-4.315839,-4.0328846,-3.8611321,-2.6345856,-3.7325664,-3.5268207,-4.2351255,-4.439377,-4.575373,-4.689734,-4.6000705,-4.3954625,-4.2346954,-2.783825,-4.341911,-4.619991,-4.451614,-4.4279294,-2.9626694,-3.4052882,-4.4459987,-4.277841,-3.8436313,-3.6510425,-4.3950763,-4.595945,-4.5170026,-4.506472,-4.376027,-4.25977,-4.1614633,-4.092378,-4.0841327,-4.0402207,-3.5132222,-4.2244563,-4.152088,-3.9810448,-3.935175,-3.044053,-4.186044,-2.7295275,-4.172043,-4.4820924,-4.449596,-4.335997,-4.2340493,-4.1513343,-4.057338,-4.055029,-4.019342,-3.963622,-3.8291507,-3.6168742,-3.9617805,-3.893271,-2.3867116,-3.0160837,-3.9277306,-4.398295,-4.4577737,-4.360459,-4.2601647,-4.2432246,-2.698663,-4.2459893,-3.6819704,-3.0366378,-3.135639,-4.5621614,-4.1144443,-4.4173117,-4.588142,-4.4846277,-4.441131,-4.3909802,-4.31733,-4.2197204,-2.6406236,-4.3223786,-4.2664495,-4.4084725,-2.2289734,-4.439414,-4.498927,-4.389455,-4.3357897,-3.73285,-3.1387508,-4.5729365,-4.5599194,-2.759128,-2.8833213,-3.8148942,-3.4910033,-3.722196,-4.057532,-4.4649205,-4.5387874,-4.616039,-4.617881,-4.130644,-4.537769,-3.445007,-3.4505115,-4.618315,-4.6657767,-4.535485,-3.1414108,-3.909472,-4.555536,-4.4929385,-4.3949575,-4.1411023,-3.767386,-3.2726455,-3.9440694,-4.3634496,-3.935494,-4.4455667,-4.5761166,-2.8414595,-4.264509,-3.905056,-3.7563891,-3.7412386,-3.6307468,-3.943771,-4.510938,-4.602183,-4.6156344,-4.6428666,-4.5635347,-4.440181,-4.461005,-3.8787527,-4.461984,-3.9643488,-2.756393,-4.44295,-4.564239,-4.524017,-4.5217094,-4.4312615,-4.444688,-4.471798,-4.328904,-4.3149047,-3.350379,-4.258447,-4.372437,-4.3135395,-4.2823267,-4.2301545,-4.2043777,-4.151802,-3.272427,-4.0773387,-4.4129777,-4.40669,-4.37424,-2.7593918,-2.794597,-4.2868586,-4.479576,-4.458959,-4.48609,-4.4584694,-4.4015927,-4.3689723,-4.3355885,-4.2733665,-4.1647882,-4.1930175,-4.115199,-4.08795,-4.085016,-4.038424,-3.9997873,-3.9774451,-3.9750714,-3.9673915,-3.9820957,-3.9565425,-3.9593759,-3.9122734,-3.8867412,-3.9201512,-3.8918128,-3.8646588,-3.7716088,-3.8706183,-3.919025,-3.9428601,-3.9720988,-4.0242414,-3.8759322,-3.88127,-3.9548478,-3.9237876,-3.8629746,-3.8628678,-3.8822966,-3.909556,-3.9157052,-3.9545522,-3.9220815,-3.888424,-3.9441228,-3.9223852,-3.9221864,-3.91567,-3.9230003,-3.8856683,-3.9535651,-3.845511,-3.9315228,-3.8818965,-3.8300357,-3.8789744,-3.9246411,-3.903078,-3.8935022,-3.851892,-3.90095,-3.6740847,-3.763257,-3.7869449,-3.7812395,-3.8441787,-3.8920403,-3.8923926,-3.7312045,-3.9155679,-1.8078713,-2.4675322,-4.1434064,-4.1212883,-4.1044083,-3.0602677,-2.938157,-3.480766,-4.361565,-4.6321797,-4.189491,-3.9137511,-3.919908,-4.1386256,-3.1057715,-3.8453403,-4.5038342,-4.1786337,-4.3298197,-4.4929442,-3.015856,-4.0990386,-4.411052,-4.3612237,-4.7132998,-4.580073,-4.5806165,-4.551308,-4.6077943,-4.4996,-4.527285,-4.3372283,-3.7123213,-2.227661,-2.1679525,-2.8336182,-4.1820216,-4.627035,-3.407019,-3.3125858,-3.6239452,-3.1942253,-2.945176,-3.2868283,-4.362774,-4.517037,-4.4435472,-4.4264894,-4.405375,-4.4468226,-4.400124,-3.627904,-3.6161637,-2.730351,-3.2679985,-4.1357813,-4.675923,-4.730137,-4.473913,-4.575791,-4.3880157,-4.411359,-4.486071,-4.5689173,-4.6019263,-4.5119123,-3.9940138,-4.4231215,-4.2599273,-4.3704677,-2.5893664,-3.689333,-4.439607,-4.4112325,-4.6834707,-4.6765695,-4.5911536,-4.555094,-3.716907,-4.636283,-4.6875167,-4.3342376,-4.6197314,-4.5872912,-2.811684,-3.8209262,-4.4397745,-4.6722035,-4.7417426,-4.4962068,-2.6945567,-3.9139414,-4.490655,-3.9440618,-4.36072,-4.377747,-4.681123,-4.5967565,-4.6382694,-3.182189,-4.4733815,-3.8640347,-4.710605,-4.4439297,-4.759523,-4.2156987,-4.575433,-4.422381,-4.5323234,-4.636651,-4.6060023,-4.444094,-4.4300604,-4.361557,-4.28173,-4.148584,-4.1459584,-2.2321327,-4.2102942,-4.584308,-4.569984,-4.3636174,-3.2336185
+-0.42006075,-1.894721,-2.5994768,-3.4523034,-3.697998,-3.8029242,-3.8167014,-3.7700458,-3.7620168,-3.6338964,-3.6361394,-2.7437778,-2.4298406,-2.8654785,-3.7297215,-4.0538354,-4.139069,-4.1377845,-3.9797235,-3.801135,-3.7258973,-1.984899,-3.6437283,-4.032917,-4.0012784,-3.969027,-3.81216,-3.881867,-3.8139567,-3.6928172,-3.6639557,-3.562855,-2.4911711,-3.268329,-4.0084195,-4.1078563,-3.9583373,-3.809916,-3.726512,-3.367787,-3.6527474,-3.6051505,-3.698151,-3.6464357,-3.5571234,-3.4454646,-2.3887815,-3.437955,-3.7859292,-2.0993016,-3.7358994,-3.9866633,-4.074301,-3.8916473,-3.764513,-3.6744661,-3.590641,-3.5136447,-3.5168953,-3.474543,-3.417792,-3.5229933,-3.4666693,-3.3870249,-1.6555512,-2.9581504,-3.1308117,-3.772952,-3.998592,-3.9070663,-3.9405084,-3.8491025,-3.7654247,-2.9078727,-3.79771,-2.9597974,-3.5450544,-4.0143657,-3.587161,-4.213004,-4.205783,-4.0687943,-3.9832168,-3.866448,-3.8307347,-3.7926917,-3.7087722,-3.6870856,-3.6854115,-3.318448,-2.513599,-3.6004739,-4.020728,-3.9616494,-3.629562,-4.0048137,-3.89286,-3.9263225,-3.8191433,-3.6133633,-3.4393075,-3.525735,-3.484915,-3.1303782,-3.9129071,-4.135175,-4.1137815,-2.9066906,-3.87261,-4.15364,-4.152355,-3.9469008,-3.2097611,-3.495429,-3.572556,-3.7115283,-3.423655,-4.0333037,-4.242176,-4.155236,-3.9146237,-3.5629067,-2.9703078,-3.6124117,-4.000365,-3.2111976,-3.8095613,-4.0108004,-3.7897844,-3.3662367,-3.703619,-3.5539956,-2.9071488,-3.4495277,-3.95893,-3.9140658,-3.6525023,-3.9790902,-3.6279979,-4.1691866,-4.293512,-4.1541953,-3.2442713,-4.0738354,-3.826405,-3.585751,-3.4715044,-4.0893025,-4.305777,-3.8229637,-3.9571443,-4.3298945,-4.27821,-3.8600726,-4.0107446,-3.1822858,-2.802233,-3.928752,-4.0680356,-4.1558127,-4.0815616,-3.966497,-3.8857055,-3.8549876,-3.09261,-3.9518118,-4.0611386,-3.982349,-3.7270808,-3.3375723,-3.140331,-3.8008895,-3.633816,-4.114698,-4.2078857,-4.159203,-4.0702868,-3.9178863,-3.700163,-4.0097985,-4.024428,-4.0468135,-4.0271344,-3.9521556,-3.8671284,-3.7753477,-3.7413373,-3.7556605,-3.6492434,-3.6216438,-3.5592904,-3.586989,-3.542726,-3.5459323,-3.5030317,-3.4768639,-3.4641514,-3.4653242,-3.451813,-3.463439,-3.5493674,-3.5622468,-3.5492854,-3.5299435,-3.58805,-3.5330992,-3.5419507,-3.5170746,-3.4561615,-3.458681,-3.4725926,-3.4763815,-3.4848876,-3.5017698,-3.4782424,-3.500197,-3.4987442,-3.5381122,-3.5263567,-3.5754304,-2.9990633,-3.3815384,-3.2865598,-3.6433825,-3.6834507,-3.66997,-3.6185553,-3.587643,-3.5925307,-3.5488758,-3.5628057,-3.5445411,-3.569262,-3.5509698,-3.511011,-3.5476274,-3.5560145,-3.4987667,-3.506739,-3.5953133,-3.568147,-3.4008687,-3.530931,-2.2008352,-3.7144313,-4.0554647,-3.8865829,-3.140547,-1.6570551,-1.9143047,-3.1846547,-3.9101658,-3.9033747,-3.6511838,-3.7664952,-3.3928976,-3.7322183,-2.8852377,-3.6168585,-4.033687,-4.0433445,-3.6913626,-3.4536378,-3.6047573,-4.0099125,-4.0523567,-4.0740314,-4.0583863,-4.010919,-3.981113,-3.9012413,-3.8422751,-3.766727,-3.9410515,-3.281149,-2.0348585,-3.0292788,-2.2158017,-3.2538154,-3.9818969,-3.5748818,-3.3113365,-3.3956757,-3.165563,-3.3427825,-3.6708505,-4.0648036,-4.0825667,-4.075672,-4.032244,-3.9692736,-3.916152,-3.8690124,-3.7837806,-2.2369947,-2.5701444,-2.8053582,-3.5621858,-4.0104823,-4.0977883,-3.947588,-4.152141,-4.105407,-4.173729,-4.063742,-4.0776477,-4.017322,-3.8913417,-3.7646718,-3.81745,-3.742334,-3.6546383,-2.087779,-3.3628125,-3.8019767,-4.116699,-4.1937556,-4.133241,-4.0009494,-3.9500217,-3.9957457,-3.9371982,-3.8410096,-3.35229,-3.8040004,-3.5509145,-1.8808484,-3.21129,-3.6639595,-4.052007,-4.0592475,-4.1159616,-3.9647827,-3.507779,-4.044025,-3.6252003,-4.156843,-4.07684,-4.032041,-3.8824582,-3.8808594,-2.5339608,-3.7335386,-4.04491,-4.081033,-3.6287138,-3.4091697,-3.8528662,-4.2903924,-4.1129155,-4.08083,-4.0900598,-3.9465585,-3.9304743,-3.9213223,-3.8154516,-3.6921282,-3.5703855,-3.6138668,-2.097939,-3.665715,-3.9865837,-3.9565768,-3.6165614,-3.0484774
+0.6165867,-0.657149,-2.3559513,-2.9220548,-2.953784,-3.0361829,-3.0625646,-3.2443562,-3.291582,-3.4001884,-3.5166883,-3.195659,-2.8662663,-2.6197155,-2.3170383,-1.4365911,-0.85922664,-1.1073322,-0.76476735,0.046818554,0.62395537,1.4038901,1.3552907,1.5510094,1.3641827,1.4105937,1.4460497,1.4968169,1.4830146,1.4793274,1.401782,1.2528586,0.8392974,0.32206213,-0.5888024,-1.8572865,-2.403892,-2.5301275,-2.6723876,-2.7206078,-2.8687274,-3.027398,-3.1402595,-2.5644498,-2.869275,-2.8207307,-2.9236884,-3.1312969,-3.3634083,-3.520877,-3.634203,-3.523178,-3.5303414,-3.2263758,-3.9428625,-4.0239344,-4.0201697,-3.6956782,-4.0664253,-4.2222505,-4.3352017,-3.9581866,-4.345844,-4.436381,-4.021934,-3.4513488,-3.8777423,-4.304615,-4.2817483,-4.293219,-4.153045,-3.96981,-4.5349627,-4.580377,-4.5752482,-4.5368257,-4.475194,-4.3455195,-4.2880654,-3.739243,-4.0121474,-4.437053,-4.570761,-4.592984,-4.5004487,-4.061872,-3.6462066,-4.220755,-4.5506973,-4.473907,-3.5042484,-4.402025,-4.483188,-4.740051,-3.8083677,-4.436613,-4.4394565,-4.1230655,-4.726908,-4.7428274,-4.710429,-4.760346,-3.188188,-4.30224,-4.2156425,-4.6573644,-4.6473937,-3.8540254,-4.1942444,-4.69957,-4.6114826,-4.2210298,-4.6456904,-4.7653317,-4.5202217,-4.2560315,-4.7842965,-4.908221,-4.952038,-4.9186187,-4.855766,-4.63319,-4.6076393,-4.17244,-4.725221,-4.545879,-4.0286913,-4.8345723,-4.7803397,-4.7248006,-4.5484624,-4.1907997,-4.8348346,-4.81579,-4.323141,-4.285793,-4.398811,-4.702152,-4.571941,-4.8298216,-4.523616,-4.012599,-3.2929962,-4.205985,-4.138982,-4.5802484,-4.195464,-4.3301744,-4.62855,-3.7629838,-4.516578,-4.6907864,-4.787829,-4.593886,-4.6320806,-4.6893377,-4.7177653,-4.7641683,-4.775681,-4.769835,-3.8485866,-4.6677146,-4.627374,-4.7112985,-3.799849,-4.5286107,-4.655996,-4.5362887,-4.3273406,-4.2509265,-4.7261996,-4.5915008,-4.6863847,-4.837275,-4.943919,-4.84147,-4.807691,-4.7505784,-3.3888934,-4.4189944,-4.6320796,-4.693712,-4.6545053,-4.6478505,-4.7004557,-4.7215347,-4.5768194,-4.54466,-4.3657136,-4.3134537,-4.5716786,-4.436153,-4.1245255,-3.9813242,-4.2493825,-4.3721004,-4.1868873,-3.935162,-4.355123,-3.6412225,-4.258522,-4.4707,-4.3695645,-4.0610347,-3.7491803,-3.8740392,-3.7961316,-3.5347652,-3.130909,-2.9129047,-2.146237,-2.9486291,-3.6351442,-3.583654,-3.280614,-4.144634,-3.9443283,-3.4771914,-3.7271676,-3.6698132,-3.8876166,-4.0785356,-3.5122974,-4.0079865,-3.4871562,-3.375295,-3.499931,-3.4713495,-3.1583333,-3.4675298,-3.6345727,-2.1637206,-1.6740873,-1.5368035,-1.0802152,-1.1175289,-1.2343178,-1.1578844,-1.2055798,-1.0804582,-1.1194308,-1.5456395,-1.4815893,-1.4758093,-1.1128647,-0.9827754,-1.865283,-2.306085,-2.3041787,-2.467682,-2.6197686,-2.607439,-3.0873363,-3.3215585,-3.5581517,-3.5993118,-3.757503,-3.9281402,-3.9445682,-4.0209413,-4.1087356,-4.0663247,-4.119715,-3.9396262,-3.766666,-3.8261123,-3.6180458,-3.6122108,-3.9413524,-3.9601374,-4.0546074,-4.183211,-3.9721556,-3.999878,-4.111797,-4.083612,-3.9969964,-4.0751414,-4.236251,-4.138952,-4.0649886,-4.0817895,-4.07188,-4.1031275,-4.091953,-4.1173983,-4.1626096,-4.142405,-4.1180196,-4.043919,-3.699242,-3.820479,-3.6097078,-3.567744,-3.399013,-3.3995688,-3.4387598,-3.3257637,-3.1335955,-3.0259042,-3.182991,-3.415104,-3.6461174,-3.794754,-3.7951655,-3.8013196,-3.7752109,-3.9261937,-3.9354887,-3.961306,-4.0120716,-3.917983,-4.0701046,-4.120667,-4.015681,-4.1045327,-3.8084798,-3.8189692,-3.744748,-3.6352916,-3.7881331,-3.7836714,-3.6013577,-3.4116073,-3.069669,-3.456715,-3.5653348,-3.3378868,-3.2806404,-3.6178517,-3.9269853,-3.852385,-3.7082887,-3.7390804,-3.9283438,-3.9773126,-3.9309359,-3.8806815,-3.797049,-3.4089727,-3.3084552,-3.5526648,-3.7742705,-3.8679008,-3.8494554,-3.8042517,-3.8386607,-3.7238321,-3.7064633,-3.6921334,-3.5365396,-3.493788,-3.4348774,-3.297278,-3.6148808,-3.6740088,-3.6109765,-3.2184696,-3.4190214,-3.4528599,-3.1849227,-2.8578973,-2.7016857,-2.7326481,-2.6470327
+0.883089,1.8821919,1.4015789,0.3379441,-0.83223146,-1.5662022,-1.8581061,-2.225418,-2.4886136,-2.9183438,-2.4187748,-2.011606,-2.1412396,-1.603225,-0.7156803,0.12514633,-0.46381825,-1.5467858,-1.8338821,-2.1844707,-2.4803443,-3.2842312,-3.4008172,-3.559217,-2.815986,-2.796803,-2.8266125,-2.3790886,-2.147069,-2.5998483,-2.6249602,-3.3056412,-3.5527446,-2.4562654,-3.0414357,-3.4439592,-3.698152,-3.5964386,-3.4459782,-3.5156715,-3.7346663,-3.5013447,-3.8258338,-3.3467116,-3.436473,-3.570836,-3.484414,-3.4916873,-3.6136525,-3.7341456,-3.7762837,-3.7825427,-3.8052998,-3.8351145,-2.8075802,-3.5539598,-4.05899,-4.1418033,-4.17261,-4.2036996,-4.152575,-3.9737382,-3.980925,-4.17736,-4.2111692,-3.1606295,-3.841968,-4.0262938,-3.9303846,-4.060493,-3.8620934,-3.1846642,-3.8340707,-4.2512116,-4.351484,-2.9988828,-3.428741,-3.8572416,-4.2208343,-4.320213,-4.356883,-4.2508926,-4.089109,-4.168236,-4.1436534,-4.139739,-3.7919364,-4.154276,-4.194185,-4.1220813,-4.138379,-3.2004209,-4.0132365,-4.2507234,-4.297382,-4.275246,-4.2774096,-4.0794444,-2.6456745,-3.824391,-3.9935684,-4.2489905,-3.8021245,-4.1770473,-4.3246913,-3.9329834,-4.0941567,-3.6092508,-4.1055655,-4.236926,-4.36484,-3.756402,-4.3063846,-4.4078074,-4.4790444,-4.3547525,-4.406791,-4.3772244,-4.4061484,-4.1884913,-4.226094,-4.111131,-4.19037,-4.2282767,-4.254183,-4.2297473,-4.2501464,-4.1948276,-4.15626,-4.1292396,-4.097457,-4.10636,-4.1180553,-4.0572777,-3.1625824,-4.1863847,-4.4233136,-4.397365,-3.229827,-4.2050643,-2.9890406,-3.348266,-3.787249,-4.16321,-4.16366,-4.206966,-4.377547,-4.452865,-4.0500183,-4.086086,-4.270797,-4.1372867,-4.1461477,-4.254352,-4.31052,-4.3803573,-4.3819675,-4.352301,-3.6230025,-4.1508317,-3.1992314,-4.1397233,-3.4870539,-3.8577428,-4.2010674,-4.1218667,-4.183456,-4.366529,-4.381318,-4.0177035,-4.3106656,-4.053643,-4.296537,-4.488029,-4.3376617,-3.6135745,-4.08622,-4.2898135,-3.39223,-3.6613867,-3.9331179,-3.901352,-4.029345,-3.6100383,-3.772348,-3.96903,-4.1930804,-3.6675942,-3.8760128,-4.1174493,-4.150409,-4.1710324,-4.2253933,-4.330705,-3.2623615,-3.7602668,-3.9605012,-4.1602015,-3.4082294,-3.918107,-4.186361,-4.307212,-4.1607537,-4.133306,-4.0748925,-4.2131763,-4.008847,-3.9952826,-3.2199965,-3.1228485,-3.8264756,-4.06609,-4.006516,-4.0628686,-4.141001,-4.198124,-4.154803,-4.12394,-4.185487,-4.2078347,-4.205173,-3.9346128,-4.011102,-4.144657,-4.0285935,-3.7890663,-3.9049492,-4.1314864,-4.154281,-3.9649024,-4.090695,-4.14453,-3.4987319,-3.2447615,-2.921486,-2.2718375,-0.8890248,-0.79783803,-0.75200206,-0.70754033,-1.2012632,-1.0598035,-1.6096795,-2.8854394,-3.2577782,-3.527503,-3.5263052,-3.199782,-2.7192988,-1.993576,-0.98125845,-0.24878931,-0.12248653,-0.5111751,-1.3651903,-1.8382769,-2.355671,-2.9208748,-2.9223988,-3.3263764,-3.4050226,-3.402954,-3.6150196,-3.3427994,-3.2255363,-3.0844479,-3.0878458,-2.9889643,-3.1204731,-3.1368961,-3.0669649,-3.2091212,-3.1574821,-3.0587473,-3.1228557,-3.1836147,-3.0918832,-2.955382,-2.9737206,-3.3512015,-3.6549883,-3.7137656,-3.7673879,-3.704986,-3.4373646,-3.2781568,-3.2271106,-3.8039336,-3.7879057,-3.8002982,-3.6480627,-3.3065608,-3.1111689,-3.0857916,-3.0103598,-2.8072886,-2.6085863,-2.434185,-2.2931955,-2.120021,-2.215568,-2.176381,-2.5440967,-2.8117008,-3.22859,-3.477695,-3.1175978,-3.4281402,-3.6912541,-3.6487117,-3.3160872,-3.3668852,-3.2657557,-3.145963,-3.6141028,-3.7062745,-3.3051727,-3.1965811,-3.057609,-3.0097766,-2.9307706,-3.2395182,-3.353386,-2.8992693,-2.5342417,-2.4403012,-2.117715,-0.9627103,0.06435393,0.27547815,0.05947712,-0.46457344,-0.83948296,-1.3796453,-1.4773209,-1.8393989,-2.6591945,-3.20575,-3.2246249,-2.74407,-1.4437218,0.008546352,0.9003114,1.1484053,0.36520115,-0.37759298,-1.2543421,-1.9916382,-2.4296362,-2.5965707,-2.6710162,-2.4026594,-1.7112188,-0.8609088,0.32902744,0.79744416,0.36562154,-0.58945805,-0.84498733,-1.3620484,-1.185662,-0.021646798,0.49730417,0.7317177,0.91182274
+-0.47969335,-0.52815634,-1.3380437,-1.5607421,-1.5562017,-1.2712686,-1.2212381,-1.0752327,-0.94832224,-0.7355053,-0.47591573,-0.14001775,-0.41373873,-1.2377353,-2.5625749,-3.1085892,-3.249302,-3.3155346,-3.2445767,-3.2950978,-3.1419888,-3.651043,-3.785997,-3.5868917,-3.564476,-3.0967422,-3.5598009,-3.7477164,-4.0626054,-3.9886541,-3.6228356,-3.877357,-3.9599738,-3.2369719,-3.6431377,-3.913188,-4.0642185,-4.119138,-4.092318,-3.1756015,-4.0084143,-3.3982568,-3.7085395,-3.7976265,-3.7706485,-4.030603,-3.8802228,-4.05823,-4.056271,-3.9149342,-3.8193364,-3.8858352,-3.9919648,-3.9983811,-3.8692465,-3.2941637,-3.8731298,-3.6151044,-3.7299542,-4.1323185,-4.0926585,-3.7340646,-4.08732,-4.078837,-3.969256,-3.458076,-4.0938234,-4.241792,-4.281078,-4.1989446,-4.123278,-4.064793,-4.0273633,-4.011314,-3.9212604,-3.7643843,-3.3129487,-4.0454087,-4.159717,-4.129951,-3.9263167,-4.1807923,-4.1658893,-4.0546556,-4.098164,-4.082907,-3.8520484,-3.9922566,-4.0714765,-4.0316343,-4.064961,-3.0182147,-4.140919,-4.28692,-4.252341,-4.177731,-4.070984,-4.0769157,-2.8959322,-3.8464956,-4.261455,-4.282845,-3.8394475,-3.6962886,-3.958919,-4.116975,-4.1477885,-4.157288,-4.1216087,-4.0905175,-4.090302,-3.4830549,-4.1493382,-4.2098184,-3.101455,-4.048115,-4.1912937,-3.9442234,-4.257901,-4.2453265,-3.7140603,-4.1811614,-4.26736,-4.2701077,-4.2817817,-4.191297,-4.053913,-4.0583324,-4.1464515,-4.1336284,-4.10654,-3.9974494,-3.894487,-2.6697216,-2.9404392,-3.8913016,-4.02821,-2.3361952,-3.462768,-3.917849,-4.0979524,-3.036848,-3.6917346,-4.1184797,-4.2653847,-4.188873,-4.0335994,-4.1856127,-2.9630113,-3.9190097,-4.099282,-4.218782,-4.260304,-4.320172,-4.265481,-4.263663,-4.28402,-4.2472844,-4.191151,-4.140207,-3.380291,-4.0346866,-4.2793546,-4.3284016,-4.431149,-4.3927627,-4.4709234,-4.3994727,-4.383186,-3.2577846,-4.15817,-4.3723617,-4.4374003,-3.6368763,-4.3926783,-4.600963,-4.4656253,-4.5168104,-4.265542,-4.453177,-4.5040894,-3.6110024,-3.4862347,-3.6449194,-3.4539366,-4.0016837,-4.1350207,-3.3909862,-3.818787,-3.412806,-4.04658,-4.384788,-4.4343085,-4.5079193,-3.9834094,-4.2341123,-4.4703293,-4.5493064,-3.3028383,-4.0620494,-4.15033,-4.2941937,-4.618356,-4.5626836,-4.6240373,-4.6551137,-4.6585884,-4.69881,-3.4065971,-3.8165226,-4.1234727,-4.2686753,-4.3845763,-4.459677,-4.4710374,-3.5470498,-3.723411,-4.109343,-4.352175,-4.45599,-4.5599256,-4.6356835,-4.6857133,-4.688928,-4.7319674,-4.5733824,-4.573849,-4.7818723,-4.873234,-4.82302,-4.757882,-4.7234626,-4.201184,-4.9301624,-4.7594256,-4.4402375,-3.3121762,-3.517663,-3.7889357,-4.1517067,-4.1068935,-3.6833267,-3.4055033,-4.127588,-4.3755283,-4.6041827,-4.6310444,-4.261267,-3.7703438,-3.8379145,-3.6269758,-3.6171384,-3.5368705,-3.295297,-2.435314,-2.1745691,-2.0349746,-1.9041052,-1.7504947,-1.687655,-1.2714708,-1.3227565,-1.3320336,-1.1847663,-1.2184956,-1.2107437,-1.375015,-1.4634778,-1.5223343,-1.7485809,-1.8825452,-1.95854,-2.0211024,-1.9521022,-1.7757626,-1.9327552,-2.1312418,-2.0446749,-2.0989714,-2.2552056,-2.1589885,-2.1334224,-2.190287,-2.1330578,-2.1723995,-2.6676369,-2.6983175,-2.599173,-2.5564368,-2.652894,-3.0032976,-2.6853528,-2.651658,-2.411365,-2.5304794,-2.0189986,-1.4341118,-0.76597315,-0.83646005,-1.4660745,-2.0837798,-2.7196343,-3.0328698,-2.9494457,-2.6707006,-2.2103527,-2.1282833,-2.047728,-1.8886385,-1.6658251,-1.333838,-1.4206686,-0.9806954,-0.9178974,-1.0219057,-1.0969744,-1.0266562,-1.2443447,-1.0592525,-1.2887201,-1.253469,-1.09863,-1.086817,-0.8408205,-0.14335018,-0.77912337,-1.9046898,-3.1501865,-3.4165804,-3.1716552,-3.3796084,-3.384566,-3.2843509,-3.2579722,-3.0536087,-3.2638502,-3.0753007,-2.6026988,-2.0942466,-1.6399837,-1.7847216,-2.99296,-3.5001404,-3.5431237,-3.1481729,-3.0502458,-2.4337394,-2.4136767,-2.1411147,-2.04473,-1.8129554,-1.6794975,-1.5404189,-1.832876,-2.8283412,-3.2389235,-3.0991983,-3.0472174,-3.3377442,-3.4959347,-3.7238865,-3.8733592,-3.839189,-2.658029,-3.484021
+-0.8351844,-1.3043268,-1.8557224,-2.234109,-2.5461774,-2.055777,-2.905808,-2.4541135,-2.309451,-1.7019405,-1.7906871,-2.2562344,-2.5631783,-2.8514771,-2.866216,-2.9187427,-2.9148636,-2.9465413,-2.972776,-3.0011976,-2.5983667,-3.1187763,-3.558134,-3.5043178,-3.4201744,-3.1702592,-3.6841102,-3.192956,-3.5469794,-3.228386,-3.2986221,-3.2161565,-3.4085784,-3.335271,-3.5627227,-3.332656,-3.352628,-3.2953973,-3.1125836,-2.8507361,-3.3381,-3.178104,-3.4769614,-3.4770625,-3.4122581,-3.5527158,-3.2082336,-3.5379968,-3.2807722,-3.1160562,-3.127,-3.266432,-3.24205,-3.3091974,-3.2572355,-3.280302,-3.2995672,-3.2112496,-3.2138968,-3.3601646,-3.4323115,-3.2175305,-3.4526668,-3.4885604,-2.1364756,-3.444816,-3.7398314,-3.7346816,-3.7418427,-3.5871933,-3.6471288,-3.70641,-3.7483954,-3.674985,-3.455933,-2.9485729,-3.0674646,-4.0703263,-3.8793616,-3.8645682,-3.8134832,-3.5438137,-3.7360015,-2.6207054,-4.042241,-4.107347,-3.1325164,-3.959046,-4.043571,-4.080021,-3.8879924,-3.5188565,-3.9177861,-3.8466153,-3.7202125,-3.8308973,-3.602421,-3.7948089,-2.8217497,-3.8370643,-4.1731195,-4.0074677,-3.9426513,-3.392861,-3.4459877,-4.00559,-4.0705776,-3.9321618,-3.1131816,-4.23114,-4.11659,-3.5171695,-4.22286,-4.154704,-2.8555598,-3.6801052,-4.2722335,-4.252247,-4.097879,-3.3396826,-3.051092,-3.6238317,-4.1693096,-4.1591763,-4.117603,-4.071592,-3.7472115,-4.0527034,-3.955894,-3.816587,-3.8415613,-3.0876884,-3.7879257,-3.3592153,-2.754466,-3.4325366,-3.461867,-2.668909,-3.531939,-3.7507858,-3.938488,-3.4986577,-3.841579,-3.9828854,-4.0314775,-3.642449,-3.649406,-4.000761,-3.4048595,-3.7659183,-4.039229,-3.5177972,-3.1963415,-3.9899182,-4.0211678,-3.9844885,-4.0072346,-3.9907584,-3.9029584,-3.9033685,-3.669365,-3.9405189,-2.5770926,-3.9904532,-4.112308,-4.089913,-4.0754304,-4.024299,-4.0936346,-3.1239724,-3.9364471,-4.171038,-4.2154202,-4.175019,-4.1413126,-4.061674,-3.9767694,-3.959848,-3.2790742,-3.906281,-3.6703458,-2.9278188,-3.1894875,-3.1781726,-3.69628,-3.9144845,-3.868496,-3.849153,-3.788259,-3.8590474,-3.7804112,-3.7944036,-3.7987113,-3.889019,-3.5515347,-3.4591434,-3.8448992,-3.951675,-2.9423342,-3.9208531,-4.0352626,-3.984789,-2.7190113,-3.5866983,-3.6361706,-3.8486362,-3.7884603,-3.693478,-3.1181612,-3.1831703,-3.4896364,-3.6606276,-3.4718816,-3.773213,-3.812694,-3.785841,-2.8568969,-3.657855,-3.8006186,-3.8789544,-3.8637972,-4.1146355,-3.942337,-3.9671378,-3.877936,-3.7135105,-3.6327689,-3.749186,-3.8790927,-3.874977,-3.937512,-3.9072833,-3.4110944,-4.036206,-3.674417,-3.3143346,-2.0983791,-2.725832,-3.1955724,-3.348774,-3.5807116,-2.6802158,-2.915543,-3.5508502,-3.8243032,-3.9329405,-3.9537506,-3.4251661,-3.1771564,-2.7587042,-2.8966699,-2.6974187,-2.406349,-2.0699196,-0.9965281,-0.83305687,-0.81603736,-0.92133456,-0.87674135,-1.0266545,-0.93950886,-1.1305144,-1.2374032,-1.2319531,-1.2743533,-1.2351942,-1.3727968,-1.4330518,-1.5062342,-1.5597367,-1.0771968,-1.30833,-1.4520442,-1.4730301,-1.4349065,-1.5347729,-1.7317996,-1.6751769,-1.1131067,-1.440352,-1.514693,-1.5537212,-1.5950716,-1.5840294,-1.7403269,-1.6846755,-1.4207549,-1.0269499,-1.2661467,-1.1414907,-1.4779825,-1.5137832,-1.0981593,-1.0497856,-1.8335013,-3.108611,-3.553228,-3.6184287,-3.4391077,-3.6134548,-3.8148522,-3.8924828,-3.585212,-3.1770408,-2.8056488,-2.173351,-2.257697,-1.9767559,-1.6764629,-1.5482755,-1.4168057,-1.2728565,-0.83600765,-1.3565934,-1.461335,-1.3112366,-0.9944145,-0.7268595,-0.65447706,-0.73011297,-0.80678207,-0.88399833,-1.1018088,-1.6467552,-3.0712457,-3.203619,-3.4400854,-3.2872682,-3.277021,-2.9963849,-3.5137787,-3.423397,-3.2402916,-3.021733,-2.901658,-3.2174764,-3.1473594,-2.7182765,-2.240072,-2.3065407,-3.1330793,-3.7177377,-3.6474602,-3.6819637,-3.3971405,-3.2742577,-2.3708725,-2.5761788,-2.225062,-2.1949089,-1.4455855,-1.8659794,-1.9129987,-1.8508849,-2.8336105,-3.3442655,-2.8725386,-2.7507606,-3.3289056,-3.03773,-3.2744274,-3.4626648,-3.3287969,-2.5039515,-3.1892343
+-0.6118831,-1.2377343,-1.7590613,-2.2236648,-2.6758428,-2.1346693,-2.8299422,-2.9314132,-2.7621927,-2.4463663,-2.4114816,-3.1260593,-3.2804232,-3.2325811,-3.128131,-2.9765396,-2.80892,-2.7219362,-2.5788493,-2.5491765,-2.2580886,-2.8503587,-2.8261395,-2.78226,-2.723277,-2.6858063,-2.608345,-2.820924,-3.1404338,-3.0705762,-3.537025,-3.4688928,-3.6920855,-3.627652,-3.5170038,-3.2521758,-3.1681495,-3.1161525,-2.9508457,-3.2045333,-3.201304,-3.0593505,-3.5030832,-3.6645129,-3.2547464,-3.3805265,-3.3337374,-3.3898242,-3.160122,-3.0255504,-3.1726894,-3.116355,-3.0864453,-3.0084758,-2.8225548,-2.8165607,-2.8084464,-2.58637,-3.2456675,-3.1342885,-2.9648356,-2.9151826,-2.7768266,-2.7142453,-2.4913254,-3.1739335,-3.0483224,-2.9228525,-2.8640466,-2.7685752,-2.5438743,-3.1743875,-3.1723335,-3.0143995,-2.930512,-2.8521252,-3.365478,-3.3877,-3.2713938,-3.2512221,-2.988676,-2.910865,-3.0880237,-3.2514544,-3.5257547,-3.319882,-3.1814876,-2.9626007,-3.2578282,-3.1648269,-2.9956589,-2.9599745,-2.9268377,-2.8503547,-3.1928546,-3.0479403,-3.053214,-3.1232195,-3.0016246,-2.8280072,-2.8254185,-2.759246,-2.7652042,-2.686993,-2.867505,-3.2585335,-3.2614775,-3.1629684,-3.0784962,-3.5631063,-3.542623,-3.4254575,-3.3264334,-3.3693566,-3.2732916,-3.1444464,-3.0698247,-2.9501958,-2.9145932,-2.7541442,-2.8699622,-3.0143976,-3.0012808,-2.9281926,-2.866973,-2.8268013,-2.8770792,-2.761248,-2.8495784,-2.9097342,-2.9774616,-1.6186101,-3.1902046,-3.4042823,-2.842291,-3.2010322,-3.2550287,-3.546517,-3.749329,-3.7574925,-3.6788478,-3.671647,-3.8144279,-3.8126125,-3.7415662,-3.6093018,-3.4702291,-3.8536944,-3.6501057,-3.8584428,-3.6816375,-3.6284754,-3.3665557,-3.712624,-3.5636444,-3.4235616,-3.3641272,-3.3740811,-3.2776728,-3.2671385,-3.171391,-3.2851353,-3.3572602,-3.4807832,-3.3939278,-3.3946276,-3.4245574,-3.4325776,-3.3356571,-2.8906488,-3.5968223,-3.5029702,-3.5055199,-3.5386543,-3.5532832,-3.5688834,-3.5789323,-3.5821214,-2.9391582,-3.3834357,-3.1121776,-3.535892,-3.3771944,-3.4728901,-3.3605165,-3.2469184,-3.3526525,-3.3336105,-3.3020713,-3.326106,-3.223555,-3.4154906,-3.4041114,-3.499613,-3.390277,-3.2445602,-3.3086898,-3.4574306,-3.3388944,-3.33114,-3.2268777,-3.2383857,-2.616213,-3.4431534,-3.5235064,-3.4565108,-3.4240484,-3.5200386,-3.4483767,-3.44231,-3.3612797,-3.244965,-3.4276152,-3.4342558,-3.4020998,-3.3580008,-3.487452,-3.4589677,-3.5641341,-3.5733442,-3.5446653,-3.5989594,-3.6320944,-3.8328462,-3.8318,-3.7546616,-3.8650527,-3.89685,-3.8546576,-3.6961293,-3.6078415,-3.4638572,-2.8950205,-3.5702147,-3.6666732,-3.651609,-2.9989848,-3.1378903,-3.1608245,-3.2044408,-3.302522,-2.8308225,-2.9450192,-3.0858412,-3.1924815,-3.5624084,-3.6141915,-3.2097409,-3.1558454,-2.7947223,-3.0529265,-2.9057152,-2.7783103,-2.6009169,-2.2873597,-1.7910197,-1.8909628,-1.9836779,-1.9270799,-1.7922721,-1.0460308,-0.80182654,-1.0246904,-0.9616378,-0.90884596,-0.84964186,-0.96396345,-0.72087485,-0.67964286,-0.5277408,-1.3513582,-1.9791765,-1.7933655,-1.7849529,-2.0193424,-2.1331043,-2.0078912,-2.2756166,-2.681001,-2.6936815,-2.4064207,-2.1103625,-1.917877,-1.6589425,-1.0976741,-1.105562,-1.8000016,-2.9442902,-2.4490476,-2.6044917,-2.2897635,-2.4239287,-2.934204,-3.1569014,-2.6104245,-3.115175,-3.251645,-3.3745456,-3.3999848,-3.4905913,-3.4484673,-3.4449294,-3.249555,-3.1281624,-3.0758092,-3.0260134,-3.125578,-3.2272906,-3.274545,-3.0435472,-2.755048,-2.939269,-2.3854308,-3.3946385,-3.129228,-2.8954487,-2.325868,-2.6254485,-3.0054305,-2.813036,-2.9005337,-2.9108078,-2.7274003,-2.7347407,-2.9879432,-2.911725,-2.8544111,-2.8323977,-2.7877474,-2.6249154,-3.0410395,-3.1027207,-3.010035,-2.7917597,-2.5209656,-2.9703631,-2.9978142,-3.0439913,-2.685045,-2.2922747,-2.6454763,-2.9770951,-3.1919303,-3.184538,-3.2775092,-3.1802223,-2.8301759,-3.0067408,-2.9414704,-2.8826375,-2.6272109,-2.821942,-2.973385,-2.1453784,-2.8775392,-3.0473876,-2.8558846,-2.508,-2.788896,-2.5690396,-3.238491,-3.1965961,-3.3065915,-3.024708,-3.5212083
+-1.4236531,-2.6231074,-3.296042,-3.4997473,-3.459245,-3.438721,-3.6545713,-3.8922553,-3.905034,-3.4325736,-3.3269255,-3.9138875,-3.9030766,-3.8532405,-3.7126527,-3.6092744,-3.421862,-3.353589,-3.2265277,-3.1053996,-2.9646926,-3.3761873,-3.7486234,-3.7046847,-3.6379962,-3.5067518,-3.2927222,-3.5277882,-3.9796004,-3.680049,-3.707798,-3.9480243,-4.1830873,-4.3382096,-4.2915554,-4.2721195,-4.2154255,-3.8145027,-3.9789405,-3.47052,-3.80693,-3.7360005,-4.199138,-4.229557,-4.321918,-4.344732,-3.9771438,-4.0431995,-4.0054493,-3.6374612,-3.8018575,-4.19579,-4.165972,-4.1005588,-3.9770617,-3.65571,-4.117959,-3.9660358,-4.0348296,-3.8493853,-3.6905167,-3.7104163,-3.1920924,-3.7145295,-3.0928586,-3.9977665,-4.2373247,-4.163655,-4.0415087,-3.8099928,-3.3429992,-3.9948287,-3.8621764,-3.738512,-3.5124936,-3.3208296,-3.7371144,-4.0157456,-3.812656,-3.8470812,-3.9245687,-3.9326053,-3.3455372,-3.7842565,-3.9636106,-4.0627875,-3.8662086,-3.957611,-3.9543953,-3.9051929,-3.8958602,-3.8379273,-3.748447,-3.0501933,-3.4494026,-3.9121761,-4.077937,-4.3142424,-3.8329825,-4.353869,-4.2634416,-4.0667953,-3.7312202,-4.217756,-3.6940384,-4.149276,-4.3103805,-4.126391,-3.793529,-4.2006626,-3.8434772,-3.8542652,-3.8710876,-3.7365966,-3.6653492,-3.6974459,-3.1972883,-3.7803779,-2.6986003,-3.7942634,-3.662075,-3.7957754,-3.464058,-4.2335615,-4.1892147,-4.0408273,-3.9796915,-3.7903304,-3.932578,-3.6536257,-3.3719637,-3.4648721,-3.5356498,-3.5257812,-3.6027079,-3.6330376,-2.8301272,-3.6182761,-3.5607014,-4.139929,-4.0223174,-3.739831,-4.0557685,-4.343983,-4.2317634,-4.0955663,-4.1026907,-3.7481923,-3.5719655,-3.251667,-3.3880706,-3.8288045,-3.7132392,-3.8460765,-3.7689662,-3.702229,-3.6681297,-3.740089,-3.7460322,-3.6399171,-3.7309432,-3.229406,-3.2312086,-4.0203953,-3.8133354,-3.7898622,-3.7435355,-3.591527,-3.4420276,-3.3127935,-3.7161474,-3.7575765,-3.6781297,-3.488866,-3.4524012,-3.4540977,-3.492107,-3.4850147,-2.803462,-3.6192422,-2.8267539,-3.7189522,-3.3661823,-3.6919856,-3.671271,-3.5004802,-3.4393837,-3.4435098,-3.453599,-3.435788,-3.6031547,-3.6005788,-3.571661,-3.4219441,-3.4781713,-3.5444522,-3.5549474,-3.3646946,-3.3762336,-3.3532255,-3.325902,-3.2501125,-2.436763,-3.4026709,-3.7711825,-3.8774142,-3.8802838,-3.5943189,-3.4400659,-3.3764615,-3.6092327,-3.5533237,-3.5180717,-3.309097,-3.245885,-3.3021142,-3.3413327,-3.6039023,-3.5790367,-3.5046718,-3.4849124,-3.3178854,-3.217796,-3.7606893,-3.6996508,-3.5727687,-3.5762663,-3.6667874,-3.532909,-3.6294093,-3.5195131,-3.4241848,-3.145876,-3.7252312,-3.5257373,-3.469342,-3.3453753,-3.5062947,-4.0742345,-4.014141,-3.9753284,-3.322179,-3.3045774,-3.5374975,-3.9429817,-3.8851824,-3.8730526,-3.73673,-3.9306302,-3.226042,-3.716385,-3.62588,-3.4409754,-3.321631,-3.0957685,-3.4011364,-3.545652,-3.391669,-3.386971,-2.8226676,-2.3290362,-1.832243,-2.970745,-3.0446384,-2.7984376,-2.5783134,-2.434165,-2.4486706,-3.574739,-3.813744,-4.0054736,-4.097751,-3.9258347,-3.8701024,-3.667175,-3.7785301,-3.8245883,-3.5768054,-4.0826864,-3.5409896,-3.3693128,-3.0590868,-2.8257723,-2.4642692,-2.117444,-2.339437,-3.187461,-4.140078,-3.4267955,-3.671691,-3.7215018,-3.5821066,-4.106554,-4.22003,-3.613639,-4.0120425,-4.0744734,-4.066995,-4.1186357,-4.332841,-4.3118253,-4.105129,-4.006983,-3.8883576,-3.7571425,-3.9511313,-3.9263587,-3.8480096,-3.3976922,-3.3341756,-3.3085778,-3.901424,-3.5680213,-4.0256586,-3.9642825,-3.531351,-3.742762,-4.1208973,-4.186848,-4.029722,-4.0806594,-3.8436565,-3.9563956,-4.0732903,-4.114474,-3.9560027,-3.8203287,-3.6529467,-3.985517,-3.9646077,-4.076154,-4.002426,-3.7943592,-3.3130937,-2.9466896,-3.9614058,-4.0226283,-3.735571,-3.8001952,-3.8019686,-3.6708035,-4.206008,-4.2830596,-4.1465607,-4.107521,-3.9887447,-3.624179,-3.786355,-3.9649806,-3.962215,-3.1628132,-3.6780953,-3.849564,-3.5776792,-3.892569,-4.128446,-3.9695592,-3.7576756,-3.805328,-3.1643245,-3.7985067,-3.8528419,-3.9189677,-3.9844384,-3.4573286
+-1.3570693,-2.5260286,-3.2053728,-3.4759078,-3.5682566,-3.342411,-3.7913527,-3.8617792,-3.96204,-3.823215,-3.5451539,-3.9491224,-3.7713923,-3.7591462,-3.7088556,-3.6344893,-3.5908098,-3.5812366,-3.5127063,-3.3500607,-3.368146,-3.0850437,-3.8141084,-3.7401347,-3.789257,-3.732314,-2.7114935,-3.7901053,-4.16779,-4.1129894,-3.5507412,-3.8659797,-4.356936,-4.35213,-4.498899,-4.576514,-4.3775244,-4.488511,-4.5312138,-4.225534,-3.4074693,-3.6589541,-4.32079,-4.550247,-4.60256,-4.3657393,-3.9972787,-4.0195923,-4.2737985,-3.1539311,-4.105182,-4.5155125,-4.5204215,-4.4532065,-4.1833405,-3.2137518,-4.4247017,-4.561672,-4.4894323,-4.3731174,-4.139503,-4.1868258,-3.8970256,-4.4711213,-3.8337083,-4.144345,-4.574206,-4.465084,-4.4616017,-4.363936,-4.2407174,-4.0938706,-4.0110793,-3.9754786,-3.8374896,-3.7030592,-4.219092,-3.8878303,-3.9545798,-3.9970112,-3.9307222,-3.3713768,-3.9676118,-4.1256857,-3.707224,-4.335255,-4.000086,-3.8683968,-4.311557,-4.248756,-4.1742167,-3.9451013,-4.0080457,-3.7884169,-2.692544,-3.850688,-4.1832905,-3.7184558,-3.75734,-4.2935057,-4.6024213,-4.3186126,-3.7805948,-4.546273,-4.031721,-4.5782075,-4.250715,-4.2736773,-4.1323037,-4.145306,-3.9673944,-4.0141582,-3.9177303,-3.5316207,-4.2797313,-3.7209463,-3.8843732,-4.027551,-3.1458395,-3.9547167,-4.11997,-4.18143,-4.206506,-3.892614,-4.2340617,-3.8374896,-4.431644,-3.9162593,-4.4494476,-4.3210855,-4.056533,-4.0627,-4.1219015,-4.055888,-4.0149417,-3.9711905,-3.922161,-3.8054223,-3.8494177,-4.1049333,-4.1361003,-3.71811,-3.8250103,-4.2373977,-4.231239,-4.176775,-4.0702147,-3.9426994,-3.7284288,-3.1484575,-4.1068697,-4.0789347,-4.038173,-3.8820252,-3.8092113,-3.8406758,-3.8132014,-3.7650394,-3.7025023,-3.5612159,-3.5967255,-3.5174098,-3.5990863,-3.7077384,-3.8177485,-3.8063521,-3.7100596,-3.6631966,-3.6840968,-3.1709514,-3.0032854,-3.8359032,-3.8876967,-3.770207,-3.7727437,-3.7958817,-3.754506,-3.7165694,-3.6658359,-3.5539255,-3.4029107,-3.5942693,-3.843759,-3.9758964,-3.900206,-3.9026065,-3.8753524,-3.763719,-3.7267299,-3.6814172,-3.6338327,-3.5079947,-3.5934327,-3.7007852,-3.6090055,-3.6992407,-3.6939845,-3.7496057,-3.6106248,-3.5552783,-3.4457011,-3.5364876,-3.118164,-2.788362,-3.4174461,-3.5543907,-3.5983183,-3.473403,-3.6031327,-3.566827,-3.5758867,-3.550743,-3.5322793,-3.6730454,-3.5973473,-3.576808,-3.626511,-3.5925326,-3.5211797,-3.5732498,-3.6343064,-3.664015,-3.5245335,-3.5583572,-3.6112597,-3.5500839,-3.5079103,-3.5607834,-3.650795,-3.6147637,-3.6358361,-3.588653,-3.1977472,-3.496127,-3.4914765,-3.6109142,-3.5247269,-3.3617082,-3.7115273,-3.7153869,-3.64919,-3.5973878,-3.0555851,-2.9006667,-3.821404,-3.9570737,-4.023632,-3.7947316,-3.981238,-3.5015352,-3.8102045,-3.7063107,-3.5713139,-3.371054,-3.1478324,-2.456101,-3.4918542,-3.703549,-3.4338899,-3.008841,-2.810542,-2.5671954,-3.2087507,-3.1585903,-3.106957,-3.263442,-3.4156706,-2.868011,-3.6418555,-3.9083066,-3.4523144,-3.8030791,-3.5919802,-3.7185602,-3.4355192,-3.5060885,-3.905868,-3.7250075,-4.00466,-3.7031069,-3.283039,-2.9449754,-2.4849133,-2.1657853,-1.9106412,-2.011327,-3.424761,-3.6529126,-3.715218,-3.7975364,-4.047634,-3.216807,-3.9198117,-4.1712937,-3.6725488,-4.0884643,-4.251508,-3.442666,-3.8410134,-4.1889277,-4.196135,-4.2107625,-4.1477118,-4.2508373,-4.08447,-4.241139,-4.280118,-4.167944,-3.8780231,-3.5763016,-3.594419,-3.9747472,-3.5874708,-4.1026006,-4.06086,-3.8655734,-3.9820805,-4.063951,-4.168821,-3.9845462,-4.106648,-4.140889,-4.164805,-4.3101997,-4.090056,-3.9320436,-3.8977146,-3.4812384,-4.022266,-3.9830961,-3.9431071,-4.1362996,-3.9239273,-3.9175858,-3.556357,-4.0988894,-4.314077,-4.182139,-4.1261764,-4.0537925,-3.5723002,-4.043122,-4.3330836,-4.2333417,-4.013471,-3.9288173,-3.820938,-3.7592988,-3.925753,-3.8788886,-2.4320705,-3.5460162,-3.9669824,-4.1406384,-4.201059,-4.169289,-4.047684,-3.9884124,-4.0154963,-3.2897732,-4.0014343,-4.124038,-4.296165,-4.2383676,-3.843895
+-0.91575664,-2.321124,-3.5092847,-4.023299,-4.2351604,-4.0725493,-3.799058,-4.216609,-4.3498273,-4.451278,-4.169291,-4.1888137,-4.301558,-4.268909,-4.268925,-4.2513356,-4.234918,-4.232124,-4.235657,-4.1624,-4.17162,-3.207623,-4.205759,-4.5563455,-4.5753736,-4.611924,-4.386102,-4.314345,-4.6357927,-4.148308,-4.02307,-4.167531,-4.6802287,-4.6476693,-4.58896,-4.7871013,-4.749543,-4.7940907,-4.6452937,-4.5706525,-3.6273947,-4.009504,-4.7489333,-4.8463306,-4.8540053,-4.637704,-4.4424067,-4.4767847,-4.555076,-4.0908437,-4.497786,-4.735841,-4.684361,-4.6373277,-4.564504,-4.212809,-4.4820275,-4.615376,-4.633767,-4.5958633,-4.5495014,-4.1297727,-4.2587123,-4.344494,-4.069447,-3.3127263,-4.646295,-4.979958,-4.865297,-4.8553014,-4.852859,-4.8876023,-4.9018474,-4.8553247,-4.4424977,-4.652867,-4.7189126,-4.7350316,-4.7022758,-4.6831203,-4.673747,-4.5076413,-4.5316815,-4.6367993,-3.0711503,-4.722957,-4.6540036,-3.9045987,-4.3820796,-4.9660296,-4.9455967,-4.9161296,-4.9200873,-4.0580025,-4.7065825,-3.1979334,-4.392554,-3.8839183,-4.3000536,-4.804857,-5.0581827,-4.949754,-4.280067,-5.003282,-4.6551356,-5.000911,-4.4378877,-4.699533,-4.700091,-4.7340503,-4.9581485,-4.9634185,-4.934942,-3.564767,-4.57709,-4.8758106,-4.792689,-4.425622,-3.5389931,-4.309909,-4.4826226,-4.3479476,-4.883202,-4.742816,-4.8834667,-3.822465,-4.0253124,-4.7557015,-4.1899185,-4.7677665,-4.7970843,-4.8714623,-4.80402,-4.754566,-4.7497125,-4.7335954,-4.4544206,-4.588554,-3.6938367,-3.3210955,-4.3729625,-4.254692,-3.9094539,-4.907784,-4.9321327,-4.984152,-4.982773,-4.8432627,-4.9357905,-4.6942515,-4.709725,-4.7796206,-4.516505,-4.870494,-4.869042,-4.8140426,-4.807672,-4.7899647,-4.77863,-4.7929897,-4.7395334,-4.6856284,-4.555015,-4.1527534,-4.6345496,-4.823411,-4.634855,-4.7679505,-4.7954135,-4.6789584,-2.614347,-4.4629436,-4.892508,-4.9429975,-4.9915853,-4.9545226,-4.9579883,-4.9624248,-4.6698084,-4.653548,-4.7573657,-4.683761,-4.630814,-4.6389556,-4.5717206,-4.5612993,-4.6197343,-4.5717793,-4.5858264,-4.5502753,-4.401174,-4.283353,-4.3058515,-4.356905,-4.3461237,-4.3478894,-4.248414,-4.28424,-4.161347,-4.144064,-4.0919023,-4.09113,-3.788012,-3.5478556,-4.3017287,-4.5866237,-4.6646986,-4.599872,-4.680997,-4.5924406,-4.463031,-4.527141,-4.4939513,-4.4652796,-4.458259,-4.4588833,-4.437531,-4.35729,-4.3894563,-4.4608197,-4.484795,-4.59606,-4.4241076,-4.4359326,-4.593956,-4.5581813,-4.5747566,-4.661896,-4.6549077,-4.621579,-4.6648297,-4.704392,-3.895946,-4.389762,-4.6178966,-4.8172374,-4.9536567,-4.6621375,-4.6483083,-4.6454053,-4.810344,-5.0481987,-3.018888,-1.9704318,-4.1626062,-4.646113,-4.852073,-3.4096508,-4.345002,-2.875923,-4.4073424,-4.556786,-4.694527,-4.3383646,-3.9346175,-2.6212158,-4.243466,-4.770145,-4.6595244,-4.4036994,-3.6255155,-3.0566154,-4.280027,-4.205572,-4.229156,-4.311704,-4.825649,-4.0359483,-4.384291,-4.921316,-3.9587111,-4.8282733,-4.0534863,-4.77809,-4.523698,-4.0499535,-3.8067632,-4.257622,-4.800509,-4.946772,-4.5572405,-4.190417,-3.8579211,-3.429124,-2.731966,-2.1950073,-3.8761091,-4.503515,-4.7563033,-4.7586155,-4.9463754,-4.457745,-4.650412,-5.0889015,-4.139293,-4.767449,-4.438892,-4.024088,-4.692803,-4.9565625,-4.769151,-4.8761544,-4.7480006,-4.8394246,-4.530501,-4.766894,-4.7962623,-4.687448,-4.563218,-4.5435777,-4.2719717,-4.3568873,-4.1260633,-4.839154,-4.5317073,-4.556061,-4.457529,-4.6658263,-4.540583,-4.628011,-4.002353,-4.4967904,-4.4884434,-4.371179,-4.539932,-4.7658815,-4.7534475,-4.478298,-4.7772603,-4.810717,-4.058682,-4.5329556,-4.5293336,-3.7593398,-3.5138927,-4.6638975,-4.7088304,-4.5280013,-4.5597653,-4.7129707,-3.5506954,-4.452479,-4.732118,-4.012362,-4.568511,-4.154567,-4.2119107,-4.0781703,-4.2836204,-4.133472,-3.780254,-2.989462,-4.018134,-4.432385,-4.5590587,-4.517654,-4.5050125,-4.506151,-4.4645824,-3.781714,-4.325297,-3.8488755,-4.4591875,-4.7500806,-4.1086287
+-0.8632098,-2.1855683,-3.4546566,-3.6751914,-3.872848,-3.5392983,-3.2526393,-3.6902568,-4.1070037,-4.0759807,-3.8947468,-3.9418921,-4.061024,-3.6164782,-4.058375,-4.1845937,-4.1723437,-4.119265,-4.108127,-3.9390445,-4.109378,-3.2974136,-3.7405295,-4.2559133,-4.3344254,-4.22,-4.2327185,-4.1755605,-4.132837,-3.8273888,-3.3492112,-4.0209193,-3.8138232,-4.3122945,-3.9326673,-4.369347,-4.4189577,-4.303394,-4.0024333,-4.0669875,-4.144503,-3.8175445,-4.0625606,-4.2740564,-4.382339,-4.1788754,-3.763966,-4.2574005,-4.0987954,-3.9298987,-3.9898,-4.2644577,-4.26279,-4.144028,-4.018236,-3.9882798,-4.0355687,-4.024099,-3.9788747,-3.9473772,-3.9064207,-3.400388,-3.1880558,-4.1283197,-4.060125,-2.9189048,-4.0588284,-4.4150367,-4.4114995,-4.314573,-4.287107,-4.2389364,-4.054998,-3.9971604,-2.643988,-4.10177,-3.9335513,-4.201398,-4.3767753,-4.318416,-4.1670065,-4.0459476,-3.9561954,-3.9544144,-3.606029,-4.0025063,-3.6916103,-3.715498,-3.8474536,-4.252418,-4.2187567,-4.139408,-4.0453057,-3.9432483,-3.8685112,-3.4541738,-2.8301644,-3.6702023,-4.1308293,-3.9711814,-4.1746583,-4.1525817,-3.8745017,-3.9936538,-3.9446778,-3.8487415,-3.3392863,-3.4971771,-4.0844145,-4.227362,-4.27519,-3.2002478,-4.1705604,-4.160954,-4.1719813,-4.052452,-3.727672,-4.13123,-3.8181386,-3.5955696,-3.999465,-4.076524,-3.9928327,-3.4755125,-4.1310434,-3.299952,-3.6888726,-4.2641225,-3.9788518,-4.357344,-4.386132,-4.2396235,-3.9321513,-4.189096,-4.233911,-4.171883,-4.0119014,-4.0124063,-3.633607,-3.5543048,-3.1241221,-3.8739119,-3.38034,-4.219305,-4.352327,-4.3650393,-4.198539,-4.212766,-3.4281402,-4.142885,-4.313885,-4.259476,-4.182588,-4.042023,-4.067037,-4.0275245,-3.9608474,-3.8896823,-3.757441,-3.6604118,-3.5998724,-3.5491648,-3.5101748,-3.2627497,-3.5430377,-3.5406709,-3.7048106,-3.7533712,-3.7108512,-3.681466,-1.7539845,-3.8327675,-4.3321567,-4.362493,-4.328461,-4.2821527,-4.254205,-4.194902,-3.5434558,-4.0012603,-4.0119314,-3.9305358,-3.7708697,-3.737143,-3.735159,-3.6937184,-3.7455235,-3.6663735,-3.6444569,-3.6370306,-3.485367,-3.5059972,-3.3895278,-3.370829,-3.295188,-3.3357043,-3.3778465,-3.446236,-3.476459,-3.3469148,-3.2924778,-3.3462207,-3.394799,-3.211135,-3.302858,-3.327036,-3.3750927,-3.2039325,-3.2549796,-3.169421,-3.250917,-3.2679334,-3.2610369,-3.2962193,-3.4047837,-3.449345,-3.3958402,-3.4173768,-3.3192415,-3.3426495,-3.349289,-3.3555422,-3.4441009,-3.1719673,-3.3236792,-3.1597586,-3.2365675,-3.1872134,-3.2380471,-3.26504,-3.203026,-3.1943614,-3.309275,-3.1051662,-3.3729658,-3.478051,-3.463166,-3.2614694,-3.194769,-3.2662435,-3.3575807,-3.67666,-1.4107363,-2.8847609,-4.2217174,-4.2383237,-4.2612777,-3.1731339,-3.8922706,-3.7555842,-4.4300795,-4.47944,-4.2973447,-4.017743,-3.6749187,-3.1112838,-4.1638403,-4.422127,-4.4344754,-4.1930375,-4.024466,-3.7679305,-4.353543,-4.325832,-4.2479663,-4.1552753,-4.362436,-4.6106763,-4.452982,-4.565017,-4.170466,-4.5131397,-3.7054434,-4.4442644,-4.12372,-3.3376071,-3.5486574,-3.8538232,-4.485117,-4.4485855,-4.101069,-3.7935367,-3.684419,-3.2251492,-2.6984897,-2.3236027,-3.6425028,-4.298051,-4.476081,-4.474436,-4.612908,-4.6684356,-4.258556,-4.4140024,-3.7395558,-3.7277026,-3.9468942,-3.848353,-4.414794,-4.5984826,-4.0835114,-4.309353,-4.2818465,-4.150533,-4.0072327,-4.2816033,-4.360101,-4.330514,-4.035663,-4.1271396,-3.9565396,-3.9179235,-3.941341,-4.3069167,-3.9540644,-4.1401668,-4.1535516,-4.2959166,-4.3883047,-4.288449,-3.4654303,-4.252021,-4.272465,-4.115207,-4.253284,-4.437637,-4.558917,-4.485718,-4.523308,-4.593679,-4.085178,-4.4840603,-4.307627,-3.5041823,-3.774641,-4.4034486,-4.52107,-4.3238835,-4.2799306,-4.5480914,-3.7221818,-4.0992994,-4.392241,-3.7242718,-4.1457677,-3.9244332,-4.2952766,-3.6531055,-4.04401,-4.071926,-3.7017217,-3.5194066,-4.365934,-4.236575,-4.178181,-3.525132,-4.145619,-4.4754243,-4.4426928,-3.4777696,-4.1282396,-3.4940395,-4.181372,-4.4914374,-3.983685
+-0.33419555,-2.6667576,-3.7975078,-4.3008533,-4.4607983,-4.117266,-3.6535752,-4.5608034,-4.7493005,-4.178201,-4.1688366,-3.4456244,-4.467117,-4.3436313,-4.456548,-4.4593353,-4.603145,-4.6569858,-4.6252427,-4.4122577,-4.4171453,-3.8075705,-4.5632358,-4.733708,-4.6348042,-4.5560427,-4.475061,-3.946319,-4.5404534,-4.371306,-4.4553823,-4.43549,-4.4088078,-4.479726,-4.096966,-4.4807067,-4.180562,-4.0500016,-3.9091735,-3.8535142,-4.0133843,-3.9728875,-3.9191809,-4.3243303,-4.179789,-3.8888197,-2.680857,-4.2526774,-3.815143,-4.4935074,-4.5649858,-4.431767,-4.350593,-4.1860194,-4.028562,-3.9592776,-3.8024092,-3.7815137,-3.8838034,-3.8817983,-3.9267077,-3.7874918,-3.884728,-3.8594928,-3.9648395,-3.6591856,-4.03429,-3.7522635,-4.1677604,-4.1152196,-4.04923,-4.046787,-3.8650918,-4.0134645,-3.9697647,-3.8713899,-4.0732064,-3.7692838,-4.1651597,-4.1377397,-4.1378427,-4.1383367,-4.092088,-4.0483184,-4.0466466,-4.056352,-2.0483618,-4.1550765,-3.9817343,-4.358281,-4.383705,-4.2340646,-4.1967216,-4.098721,-4.073601,-2.911769,-3.7796664,-4.3885484,-4.4457245,-4.4201326,-4.284929,-3.590552,-4.373055,-4.360744,-4.3033285,-4.208668,-4.1355767,-4.0989947,-4.124066,-3.7543035,-3.9900699,-4.0208344,-4.2015867,-4.1761727,-4.116952,-3.926775,-4.063566,-4.0790706,-4.018943,-3.9506373,-2.8538074,-2.954904,-3.882021,-3.778769,-4.464422,-3.7338805,-4.3952327,-3.9606843,-4.5911803,-4.503301,-4.1922154,-3.9983506,-4.350264,-4.583531,-4.5214467,-4.5354924,-4.4020147,-4.0791097,-4.244988,-3.4667277,-3.617859,-4.1348977,-3.8660574,-4.3947654,-4.5169196,-4.3283935,-2.9675975,-4.6021547,-4.5818357,-4.5233016,-4.5096474,-4.397751,-4.3724904,-4.322067,-4.2246704,-4.1326776,-4.15038,-4.1807847,-4.169801,-4.164354,-4.1517606,-4.129829,-4.100878,-4.0197206,-3.9536295,-4.1218295,-4.2017913,-4.2227435,-4.116673,-4.1061883,-2.2013943,-3.435512,-4.705221,-4.64726,-4.695983,-4.711367,-4.644279,-4.5446515,-4.4820666,-4.479919,-4.2615504,-4.28061,-4.286829,-4.22759,-4.2854166,-4.2999544,-4.2133303,-4.2032294,-4.185042,-4.180197,-4.127768,-4.2431273,-4.187439,-4.18037,-4.171846,-4.2289624,-4.205881,-4.129782,-3.7716022,-4.0495224,-4.206404,-4.209589,-4.1546283,-4.199705,-4.188662,-4.128348,-4.1773076,-4.2440877,-4.179205,-4.1725955,-4.2597175,-4.262117,-4.2563763,-4.2912593,-4.2441516,-4.235508,-4.2225237,-4.300967,-4.27816,-4.2784967,-4.264169,-4.2124667,-4.268679,-4.2486677,-4.267692,-4.283561,-4.2003226,-4.215256,-4.277949,-4.295197,-4.3242955,-4.3026147,-4.331056,-4.079458,-4.1484733,-4.1577005,-4.1401143,-4.220801,-4.224672,-4.3136306,-4.154389,-4.281203,-1.6546721,-3.0233567,-4.7617965,-4.717526,-4.3231077,-3.463271,-4.000007,-3.8450832,-4.9431977,-5.0115485,-4.6225567,-4.3035674,-4.1834884,-4.383186,-4.279071,-4.6820292,-4.9882317,-4.448192,-4.5038657,-4.7717104,-4.5512486,-4.933456,-4.862037,-4.643657,-4.6973133,-4.747604,-4.7650647,-4.5880313,-4.994144,-4.900121,-4.1450315,-4.9795065,-4.2388563,-3.5480366,-3.278855,-3.3177907,-4.879259,-4.9587665,-4.737263,-4.002044,-4.2679243,-3.7044878,-3.3670835,-3.090473,-4.6255183,-4.8771625,-4.7464633,-4.72217,-4.661341,-4.715228,-4.6339087,-4.610712,-3.9990878,-2.8938882,-3.8493166,-4.6355405,-5.101444,-5.029689,-4.395785,-4.953029,-4.6916976,-4.4507165,-4.6003013,-4.778395,-4.9245543,-4.836035,-4.5209417,-4.6683006,-4.3752375,-4.733956,-3.45089,-4.7435136,-4.916101,-4.8655124,-4.723004,-4.9840407,-4.8727436,-4.846213,-3.722999,-4.979214,-4.957618,-4.741842,-4.8519645,-4.8267274,-4.341776,-3.7345586,-4.818437,-5.0177507,-4.9987087,-4.9905477,-4.230969,-4.7635875,-4.9325213,-4.2631297,-4.9706383,-4.663263,-4.636812,-4.657124,-4.719565,-3.9485664,-4.9848676,-4.8342705,-4.928873,-4.0881667,-4.8695197,-4.637729,-4.980723,-4.836579,-4.3846383,-4.3193345,-5.0320325,-4.6576633,-4.6540427,-4.611538,-4.405504,-4.374759,-4.4686637,-3.8269172,-4.4879317,-3.9439054,-4.719209,-4.7603736,-4.3180885
+-0.43262267,-2.040418,-2.734313,-3.3207877,-3.6302383,-3.7319865,-2.8867536,-3.8989396,-4.0132337,-4.023048,-4.054506,-3.1508503,-4.079225,-2.9414773,-3.5441809,-3.7685819,-3.8714576,-4.0443935,-4.0795326,-4.1124887,-4.0946927,-2.9959397,-3.794353,-4.090737,-4.151524,-4.125999,-4.038734,-3.4956112,-4.0793695,-4.135908,-4.0288806,-3.9490557,-3.9340506,-3.5903804,-3.6385007,-3.799015,-3.7932181,-3.7776685,-3.6386757,-3.6708856,-3.7245197,-3.7562518,-3.7057986,-3.6847377,-3.7208061,-3.7587166,-3.2441175,-2.3383188,-2.7941527,-3.2305944,-3.5986466,-3.7617764,-3.937467,-4.030974,-4.029157,-3.9270558,-3.901877,-3.9469094,-3.9326544,-3.8562818,-3.8621912,-2.6998558,-3.7900662,-3.8883538,-3.9147983,-3.9415717,-2.81355,-3.734282,-4.037422,-3.98591,-3.9314656,-3.966083,-4.0044284,-3.8680253,-3.8998466,-3.305967,-3.8254528,-3.7976937,-3.5052605,-3.8592305,-3.9741158,-3.9501748,-3.9318972,-3.8675885,-3.8516278,-3.1938107,-2.6003728,-3.7303176,-4.0166783,-3.164711,-3.83807,-3.9026246,-4.016478,-4.0581403,-3.8187852,-4.0243444,-3.156001,-3.848186,-3.8970256,-3.921732,-2.6960578,-3.197213,-3.5715592,-3.8794389,-4.006898,-3.9938397,-4.0200167,-3.7770114,-3.7823715,-2.4670193,-3.7825546,-2.7866364,-3.4082506,-3.924748,-4.0477023,-4.0009575,-3.8070736,-3.9150424,-3.9438014,-3.90035,-3.9639788,-3.7462626,-2.452014,-3.877068,-3.1175103,-3.4729862,-3.5883784,-4.1326523,-3.1785517,-4.1190076,-3.7999697,-4.0128236,-3.9470372,-3.6958647,-3.9583573,-4.2365174,-3.8985486,-4.4089932,-3.843718,-4.2311625,-4.2531924,-4.306968,-3.6791325,-4.3030386,-4.452154,-4.3927727,-3.6228845,-3.0017529,-4.031779,-4.2343435,-4.3132067,-4.281957,-4.3147583,-4.326406,-4.045744,-4.408639,-4.428356,-4.27098,-4.2196064,-4.173878,-4.1348042,-4.1172404,-4.1286554,-4.136412,-1.9761469,-3.9965506,-4.3216386,-4.2947974,-4.3885684,-4.438112,-3.6501117,-3.903647,-4.2976074,-4.395162,-4.4382744,-4.444901,-4.4373946,-3.7000008,-4.1035275,-4.108989,-4.4493294,-4.299389,-4.166072,-4.189202,-4.2612047,-4.2797513,-4.340624,-4.3189893,-4.344243,-4.376759,-4.2908587,-4.246668,-4.165816,-4.214405,-4.2262053,-4.2305455,-4.1975937,-4.205439,-4.221885,-4.17915,-4.1372275,-4.096828,-4.1105304,-4.1539974,-3.9822326,-3.9938836,-4.1205277,-4.162376,-4.148204,-4.1725936,-4.161233,-4.155744,-4.1465406,-4.176557,-4.15468,-4.143143,-4.1834774,-4.168101,-4.099588,-4.0929947,-4.187159,-4.113045,-4.2714524,-4.076354,-4.1074247,-4.172947,-4.20157,-4.138478,-4.2193947,-4.2790513,-4.186502,-4.1834145,-4.1588025,-3.837954,-3.9209528,-4.029691,-4.1407237,-4.223384,-4.2198224,-4.114779,-4.020141,-4.227771,-3.6025681,-2.2254715,-3.8289824,-3.9253216,-4.0172887,-3.5288136,-2.6100237,-2.7218874,-3.5547101,-4.013145,-3.7365208,-3.346838,-3.5003119,-3.7486348,-3.6831923,-3.364079,-3.8064117,-3.7604418,-3.9406476,-3.9081988,-3.108992,-3.6332512,-3.975182,-3.8894477,-4.1714177,-4.251905,-4.239648,-4.2475,-4.285737,-4.1930194,-3.8986278,-4.0199456,-3.5904677,-2.457006,-2.443914,-2.8411655,-3.7137046,-4.017863,-3.6536207,-3.1811929,-3.0365286,-2.6251044,-2.4830813,-2.654018,-3.672718,-4.1033664,-4.1771455,-4.1838093,-4.161405,-4.1461034,-4.1376805,-4.0727944,-3.1920538,-2.5963693,-2.1299434,-3.32968,-4.1078687,-4.258752,-3.921432,-4.15955,-4.000875,-4.0761104,-4.111545,-4.1388583,-4.204922,-4.172832,-3.771072,-4.131102,-4.08341,-4.038979,-3.2493567,-3.244638,-3.9275541,-3.943603,-4.1118627,-4.2853436,-4.216986,-4.147391,-3.6188295,-4.1584663,-4.138594,-4.0711126,-4.1439767,-4.1470904,-3.3581705,-2.913558,-3.872591,-4.1731873,-4.193044,-4.086858,-4.0988445,-2.7806401,-3.9692812,-3.5441413,-3.9573355,-3.9708648,-4.16665,-4.166575,-4.2088804,-3.7287335,-4.1394844,-3.8472352,-4.148971,-3.9000006,-3.7439442,-3.644644,-3.9756484,-3.8721948,-3.871242,-4.2137074,-4.1918187,-4.09254,-4.0814157,-4.0626388,-4.023426,-3.8886633,-3.8547816,-3.630594,-3.6788876,-3.7087388,-3.6368744,-3.6056986,-1.8474257
+-0.92768174,-0.9683377,-2.8678908,-3.7341957,-4.0941978,-4.1315436,-3.9124703,-4.1768537,-4.143935,-4.094439,-4.013614,-3.8344078,-2.0532773,-2.5721161,-3.958652,-4.252096,-4.359182,-4.3913016,-4.2783265,-4.190355,-4.127965,-3.1778893,-4.1736503,-4.2539277,-2.221731,-4.1436815,-3.217351,-3.268443,-4.2658043,-4.540775,-4.491158,-4.383015,-4.2504582,-3.9429526,-4.3702207,-4.2524786,-4.220427,-4.142612,-4.0701385,-4.0553594,-3.9264503,-3.9508176,-3.9131336,-3.8848867,-3.8900065,-3.8864927,-2.1973908,-3.2442236,-4.071824,-2.547464,-4.1308503,-4.441713,-4.4087625,-4.342156,-4.230293,-4.107013,-4.0835166,-4.050198,-4.0530934,-4.017875,-4.0189853,-3.9930854,-3.9706912,-3.956976,-3.9098191,-3.249545,-1.3560274,-3.6715767,-4.217133,-4.170393,-4.177585,-4.072554,-3.480466,-2.843681,-4.16141,-4.246635,-2.8616824,-4.2557635,-4.498799,-4.351484,-4.337013,-4.212061,-4.143624,-4.090054,-4.072975,-4.058505,-2.4614806,-4.0306845,-3.932866,-3.0808852,-3.8260083,-4.32987,-4.4322133,-2.848934,-4.298427,-3.7047133,-3.6870723,-4.4600735,-4.5084434,-4.428082,-3.0971546,-3.9846148,-3.6748595,-4.3450093,-3.7113285,-3.035592,-3.5184631,-3.7600446,-3.7416167,-4.4011245,-4.540998,-3.3414426,-4.245686,-4.6284356,-4.5509567,-4.5326533,-3.3278584,-4.3827653,-4.0975604,-4.4748263,-4.4904017,-3.1579676,-3.6096163,-4.4186726,-4.5032945,-3.4577103,-3.3676167,-4.2249637,-3.559639,-3.6690316,-3.697134,-3.1914804,-4.292477,-4.1962667,-4.5139966,-4.447464,-4.634135,-4.655209,-4.316604,-3.9295106,-4.6371875,-3.4668021,-3.7582703,-4.488783,-3.8972626,-3.2846324,-4.3528852,-3.1638746,-4.3223014,-3.8265166,-4.521295,-4.6866927,-4.3113685,-3.5524993,-2.9326267,-3.0913887,-4.033877,-4.3673472,-4.5787983,-4.6414294,-4.5944276,-4.49721,-4.4168797,-4.306051,-2.8906178,-3.4395351,-4.3844976,-4.5145745,-4.5625443,-4.3672395,-2.911014,-3.712955,-4.4112363,-4.53811,-4.495368,-4.506239,-4.4423227,-4.282114,-4.295527,-4.429919,-4.366016,-4.368365,-4.318036,-4.251409,-4.234518,-4.1939397,-4.183232,-4.1894345,-4.2138963,-4.1679897,-4.145964,-4.220616,-4.258737,-4.2050424,-4.1991644,-4.200313,-4.2248974,-4.1952167,-3.4264054,-4.0738025,-4.1338525,-4.1693797,-4.1896405,-4.1929717,-4.150468,-4.1581573,-4.228812,-4.2234592,-4.1817884,-4.161783,-4.1602845,-4.1563067,-4.1509438,-4.1817565,-4.164711,-3.873877,-4.075741,-4.118103,-4.179567,-4.142506,-4.148809,-4.162145,-4.178064,-4.13625,-4.1814737,-4.159505,-4.153747,-4.1760564,-4.1679873,-4.207758,-4.187494,-4.1626163,-4.171202,-3.971704,-3.9464393,-4.0866256,-4.1595206,-4.1375327,-4.1318736,-4.1481786,-4.0915856,-4.16851,-3.770955,-3.6421041,-2.7723122,-4.0425334,-4.0011883,-4.1164355,-1.9773417,-2.5491087,-3.9801698,-4.4538426,-4.259886,-4.0315824,-4.2855053,-4.0171814,-3.708198,-3.3575537,-4.277723,-4.502188,-4.4767857,-4.223898,-3.6333296,-4.3820148,-4.6474133,-4.487806,-4.4885855,-4.543122,-4.452865,-4.4244213,-4.3850718,-3.900547,-3.7748022,-4.474976,-4.258387,-3.4722972,-4.286238,-2.8023396,-4.1177,-4.5324807,-4.4149694,-3.4317005,-3.9710221,-3.781033,-3.8565373,-4.165272,-4.3664236,-4.373276,-4.3564734,-4.3231754,-4.276233,-4.1881576,-3.9432073,-4.2606826,-3.2918434,-2.5450811,-2.5204272,-3.9325047,-4.619633,-4.6539106,-4.233275,-4.598321,-4.5254006,-4.526423,-4.466015,-4.497565,-4.4595594,-4.337377,-4.241575,-4.160357,-4.0895042,-4.0332932,-3.7878795,-1.9889164,-4.1567655,-4.463593,-4.5796537,-4.5496264,-4.4213405,-4.3523827,-4.2216544,-4.2854924,-4.2255096,-3.7788138,-4.1115365,-4.009596,-3.8943872,-1.8061774,-3.9480524,-4.4164605,-4.4305177,-4.380532,-4.352834,-4.210652,-4.1902204,-3.1158965,-4.3778963,-4.2198157,-4.296705,-4.1437163,-4.12295,-3.8000722,-3.8784137,-4.0671477,-4.018083,-4.0046005,-2.7069414,-4.0764194,-4.4577513,-4.2638464,-4.241984,-4.2515063,-4.1941237,-4.14198,-4.068703,-4.030108,-3.9952111,-3.955068,-3.9275355,-3.5386853,-3.586106,-3.9051757,-3.928616,-3.9094658,-2.8662534
+0.11565152,-1.1487737,-2.0416925,-2.2982578,-2.3057566,-2.306827,-2.462409,-2.554194,-2.5137496,-2.6010978,-2.541099,-2.375837,-2.2193637,-1.9004359,-1.5617135,-1.1139987,-1.0449033,-1.7273588,-1.5630608,-0.7518167,0.26872376,0.055274248,0.2993694,0.2757402,0.25153762,0.37006754,0.4627087,0.62966835,0.93202555,1.1048309,1.3572073,1.5189967,1.132925,0.8349906,0.9652053,0.6110373,0.6500697,0.8734186,1.0181029,0.8867055,0.59376574,0.5154114,-0.2635066,-0.73766154,-0.32156223,0.1576302,0.24160549,0.19896689,-0.018835545,-0.05569777,0.053150266,0.025031686,-0.045755208,-0.4331097,-0.4868707,-0.5592139,-0.76703054,-1.0946884,-1.4582701,-1.6123667,-1.209044,-1.2123184,-1.730206,-2.1527903,-2.2305706,-2.351842,-2.5207908,-2.4038587,-2.052577,-1.9935155,-1.9886222,-2.2834535,-2.2798448,-2.1648588,-2.2968285,-2.5153542,-2.596311,-2.6363058,-2.5719047,-2.380259,-2.7989216,-2.7432933,-2.556476,-2.533671,-2.6717758,-2.6868868,-2.5582664,-2.977765,-2.7571702,-2.8002396,-2.479948,-2.817533,-2.7623854,-2.811184,-2.7450855,-3.001715,-3.0785103,-3.0271404,-3.0460572,-2.926548,-2.9860559,-3.0146127,-2.469642,-3.1220388,-2.8215737,-2.8959332,-2.8490055,-2.8176818,-2.8338923,-2.878318,-3.0123024,-2.8542638,-2.904335,-3.1742332,-3.119187,-3.126451,-3.2386322,-3.095043,-2.9611158,-2.9785223,-3.049901,-3.1177852,-3.0920181,-2.9353747,-3.3366823,-3.306998,-3.0226731,-3.2011213,-3.0784311,-3.1191707,-3.1024895,-2.9989471,-3.166728,-3.1393244,-2.9284315,-3.000609,-3.045295,-3.3106155,-3.18191,-3.294922,-3.2358823,-2.8877916,-2.273066,-2.6603575,-2.8842359,-3.2211685,-3.1371415,-3.1074996,-3.0529025,-2.7714572,-3.1821184,-3.1282997,-3.1626062,-2.9651532,-2.8292546,-2.8549519,-2.854924,-2.8619618,-2.8927727,-3.2137995,-3.2184315,-3.1773472,-3.0532093,-3.1038995,-3.0514212,-3.255165,-2.8772852,-2.754386,-2.9038498,-2.9862967,-3.2196038,-3.2689934,-2.9897902,-2.7481222,-2.6846123,-2.5991488,-2.464252,-2.5233788,-2.4522495,-2.9169123,-2.9195251,-2.9518642,-2.9439445,-2.9285195,-2.9519982,-2.8634515,-2.8452501,-2.9826553,-2.9338317,-2.859882,-2.7722292,-2.3404818,-2.253931,-2.5531297,-2.7980294,-2.404604,-2.2001567,-2.4770446,-2.7688274,-2.5314217,-2.4550118,-2.648034,-2.317375,-2.2197523,-2.0603697,-2.0430303,-1.9819717,-1.8485546,-1.6811707,-1.4552574,-1.0885034,-1.7248673,-1.8776975,-1.7961371,-2.062325,-2.4920306,-2.2981403,-2.0539632,-2.0069747,-2.0772657,-2.234526,-2.2866144,-1.9103413,-2.0882998,-1.8328009,-1.7574992,-1.8506248,-1.888746,-1.7500548,-1.7429173,-1.7118576,-1.4898984,-1.4384391,-1.4615996,-1.2509818,-1.1694849,-1.2057457,-1.4869955,-1.7435682,-1.6951001,-1.6571343,-1.8144212,-1.9128554,-2.0791106,-1.8946176,-1.8941851,-2.0190017,-2.0297172,-2.2125547,-2.1182847,-2.2519903,-2.1762125,-2.1961038,-2.3162718,-2.388226,-2.4022574,-2.5883968,-2.7172956,-2.7979212,-2.8740811,-2.8718386,-2.8960443,-2.8960805,-2.878986,-2.9890792,-3.1490479,-3.026485,-3.0178938,-3.3228922,-3.1578805,-3.2961805,-3.4707603,-3.277299,-3.2548835,-3.4496422,-3.361195,-3.329862,-3.2592397,-3.2013686,-3.375771,-3.5069633,-3.5352705,-3.540122,-3.4922397,-3.4443402,-3.3445554,-3.5494406,-3.5084426,-3.4905412,-3.499341,-3.2450619,-3.4437094,-3.2544346,-3.1595054,-2.9985228,-3.042778,-2.8628585,-2.9642043,-2.9619741,-3.0532732,-2.8054087,-3.0306394,-3.07822,-3.2324266,-3.356752,-3.3322241,-3.3055177,-3.4437773,-3.476923,-3.5151682,-3.3558385,-3.424429,-3.4637542,-3.342249,-3.4613392,-3.4661617,-3.352879,-3.327848,-3.3010514,-3.2210252,-3.1854243,-3.317256,-3.2829432,-3.052926,-2.8612003,-3.18049,-3.0935495,-3.1276565,-2.832922,-2.9919162,-3.0950189,-3.2927446,-3.2065797,-3.1849375,-3.4265246,-3.4789424,-3.4422374,-3.4897203,-3.3693104,-3.1684065,-3.061235,-3.173144,-3.2357275,-3.3610086,-3.3121402,-3.3549817,-3.427381,-3.3181767,-3.2937899,-3.3208482,-3.3146777,-3.2402856,-3.2166033,-2.9511988,-3.0866349,-3.184302,-3.1890645,-2.846716,-3.1674848,-3.1645257,-2.9420033,-2.681579,-2.7319336,-2.9033647,-2.827972
+1.0728203,0.04585719,-1.8016932,-2.8792465,-3.2909334,-3.6822047,-3.92105,-3.9711046,-3.9561152,-3.9488835,-3.9300818,-3.810987,-3.3549054,-2.5713367,-1.5070972,0.05594167,1.2709432,1.7761192,2.3736587,2.156755,2.037143,2.8704627,2.6888404,2.77565,2.84683,2.7578619,2.1818163,1.9603367,1.9813159,1.8754425,1.6937759,1.452347,0.8946691,-0.3729263,-0.9894379,-2.0807598,-2.6210577,-2.958127,-2.9675746,-3.0402691,-3.299435,-3.313064,-3.45899,-3.8091373,-3.630022,-3.379608,-3.39751,-3.5005004,-3.766005,-3.9743705,-4.1081805,-3.9882345,-4.163988,-3.107506,-4.1470814,-4.156531,-4.4802475,-3.6868517,-4.739532,-4.722975,-4.7063837,-4.5713086,-4.6671286,-4.833245,-4.7680173,-3.3647962,-3.8880115,-4.364622,-4.4349723,-4.4600034,-4.4864974,-4.1033235,-4.482166,-4.5849795,-4.6604443,-4.7373834,-4.675937,-4.587694,-4.6067157,-4.1964397,-4.491523,-4.5606766,-4.5228744,-4.561126,-4.5961623,-4.6280756,-3.123881,-4.4052167,-4.677906,-4.7820683,-4.099567,-4.0277452,-4.641001,-4.885533,-5.038285,-5.0015826,-3.576025,-4.85311,-3.2800026,-4.1993394,-4.7602115,-5.1010814,-4.2615557,-4.9859686,-4.1379485,-4.7696323,-4.908711,-4.8706503,-4.7857146,-4.9570394,-5.0715804,-4.7048144,-4.8856597,-4.9020786,-4.5618234,-4.7851205,-4.940286,-4.879239,-4.8283916,-4.767294,-4.7320294,-4.684566,-4.6401052,-4.6450744,-4.616491,-4.53977,-3.1076674,-4.5625587,-4.859874,-4.9182444,-4.9377913,-4.7547812,-3.392008,-4.195294,-4.419358,-4.766331,-4.9405227,-5.0687966,-4.9216466,-5.0256944,-4.3496246,-3.4097517,-3.7962165,-4.6164293,-4.9241786,-4.737088,-5.056359,-5.0660634,-5.125231,-4.4602046,-4.733545,-4.4880366,-4.887094,-5.0159087,-5.0422025,-5.0285516,-5.0135484,-4.9456162,-4.362713,-4.7117696,-3.753829,-4.840375,-3.4294596,-4.524941,-4.8866754,-4.665228,-4.924298,-4.968763,-5.036162,-4.9455085,-4.4380746,-4.925957,-4.958837,-4.9142623,-4.768125,-4.774671,-4.666407,-4.6518636,-3.531643,-4.554641,-4.901878,-4.979614,-4.9506183,-4.878115,-4.4446144,-4.8738585,-4.9787927,-4.9279456,-4.618258,-4.221598,-4.7269197,-4.7363663,-4.7063785,-4.606217,-3.654055,-4.444829,-4.5668015,-4.4947457,-4.625543,-3.9731646,-3.9590077,-4.6033144,-4.788095,-4.748406,-4.5016103,-4.554316,-4.285321,-4.238423,-3.686156,-3.2556243,-2.6261754,-3.1632452,-4.1816072,-4.1057343,-4.072965,-4.6789823,-4.814514,-4.560653,-4.6873994,-4.7141266,-4.7729583,-4.7582936,-4.485478,-4.601975,-4.2557073,-4.151427,-4.3042884,-4.4459243,-4.5363507,-4.5482574,-4.4951034,-4.658478,-4.0448065,-3.1644852,-2.3981144,-1.9447381,-1.7325432,-1.6176581,-1.7166512,-1.6857169,-1.6375506,-1.6965897,-1.2473509,-1.2929664,-0.7667338,-0.4295345,-0.9410102,-1.2844164,-1.6656189,-1.950922,-2.460977,-3.0336566,-3.4788141,-3.5734706,-3.7086368,-3.9108224,-3.9880414,-4.1251597,-4.042466,-4.0635414,-4.1779017,-4.061885,-3.8885074,-3.936256,-3.9907308,-3.8698273,-3.7750793,-3.8314476,-3.9740758,-3.842877,-4.101751,-3.9797778,-3.964181,-4.166377,-4.1012836,-3.9576807,-4.038598,-4.023108,-4.222829,-4.1519785,-4.0383854,-4.128261,-4.050161,-4.047226,-4.039456,-4.089808,-4.112969,-4.0794883,-3.9821687,-4.011718,-3.8873205,-3.8412971,-3.806693,-3.799355,-3.7461805,-3.7397356,-3.8437538,-3.6970968,-3.6717162,-3.6520803,-3.7380757,-3.9123778,-4.017954,-4.075202,-3.996118,-3.98885,-4.105625,-4.0927224,-4.016007,-4.0722003,-4.1312475,-4.128152,-4.157537,-4.2725935,-4.097852,-4.1762404,-4.102279,-4.05731,-4.114297,-4.0018525,-4.2180266,-4.0452356,-3.9038653,-3.8102279,-3.6225853,-3.6947746,-3.6874454,-3.5715723,-3.6426606,-3.9553633,-4.145737,-4.07384,-4.0552454,-3.971457,-4.187938,-4.0767,-4.1262302,-3.9875665,-3.96172,-3.8413582,-3.5870352,-3.8279634,-4.0449743,-4.0357285,-4.118281,-3.9975572,-4.018599,-4.055249,-4.0592074,-4.019304,-3.8204508,-3.9032722,-3.63021,-3.4393632,-3.7801538,-3.8442922,-3.8969712,-3.9329515,-3.8592763,-3.962757,-3.860609,-3.5845025,-3.405019,-3.4066448,-3.3055897
+-0.60660964,-0.99210364,-1.1402876,-0.9904,-0.9019868,-0.6197373,-0.53917366,-0.27922827,-0.14853078,-0.31487036,-0.44088513,-0.3369453,-0.7833373,-1.8895583,-2.878769,-3.1940231,-3.2957387,-3.2790706,-3.2701344,-3.2202547,-2.8994532,-3.5395308,-3.6275375,-3.3142972,-3.2917893,-3.053493,-3.6661904,-3.4615126,-3.6195943,-3.5063095,-3.2088819,-3.540263,-3.6892798,-3.6592479,-3.7488637,-3.7322116,-3.7028108,-3.7754288,-3.7689486,-3.3710432,-3.3992274,-3.3380466,-3.5846505,-3.6468544,-3.648592,-3.9310331,-3.892899,-3.8656516,-3.8011746,-3.737853,-3.5869875,-3.6384106,-3.634317,-3.690174,-3.6303802,-3.536859,-3.5427284,-3.500441,-3.4857836,-4.079389,-4.0312324,-3.8651328,-3.8555846,-3.6389577,-3.622562,-2.9613504,-3.9638867,-4.197821,-4.029112,-3.9149184,-3.866284,-3.9633527,-3.7187042,-3.782227,-3.6907902,-3.4400048,-3.014385,-3.9364786,-4.2321362,-4.1809125,-4.114985,-3.9953775,-3.8355193,-3.745212,-3.7613373,-3.7875414,-3.4742873,-3.7949214,-3.577918,-3.4602015,-3.5879054,-2.861115,-4.038285,-4.0351214,-3.976735,-3.856773,-3.7109098,-3.843968,-2.4804535,-3.777556,-4.158444,-3.8944812,-3.9328117,-3.8584228,-3.9076843,-4.141995,-4.1943693,-4.1514077,-4.1894712,-4.054138,-4.02524,-3.8451095,-4.077987,-3.9907603,-3.6429284,-4.029761,-4.107286,-3.8803544,-4.0735893,-3.9230409,-3.068132,-3.437254,-4.068873,-4.1134634,-4.1433187,-4.0160336,-3.7908134,-3.8380194,-3.849215,-3.8179984,-3.6660502,-3.6660585,-3.487039,-3.1755188,-2.826033,-4.054836,-4.2402763,-2.8816943,-3.8673816,-4.07628,-4.2253985,-4.1373563,-4.179317,-4.3053827,-4.320286,-4.0710993,-4.102218,-4.200971,-3.396728,-4.117537,-4.1425147,-4.1983066,-4.229262,-4.1274095,-3.9860072,-3.9590735,-3.9822316,-3.8657727,-3.751289,-3.7866926,-2.9796035,-3.9862962,-3.4967606,-4.067167,-4.2695727,-4.199622,-4.226193,-4.144747,-4.1144137,-2.7007942,-3.9109917,-4.230849,-4.2428336,-4.239622,-4.2365675,-4.1879287,-4.0265174,-4.088065,-3.8557162,-4.057338,-4.3240876,-3.6232605,-3.7368808,-3.6772847,-3.9830174,-4.068319,-3.957255,-3.8586836,-3.4510767,-3.8763843,-4.154946,-4.2200503,-4.2100368,-4.220331,-4.1376996,-3.4769075,-4.1002293,-4.232312,-3.435869,-4.066829,-4.075565,-4.2097325,-3.7534332,-4.294893,-4.200049,-4.3374257,-4.312946,-4.2732058,-3.5993056,-3.5598688,-3.9412813,-4.0273156,-4.129126,-4.15116,-4.041005,-3.7783237,-3.6781483,-3.9091144,-4.151556,-4.102187,-4.1900764,-4.3485184,-4.299114,-4.363568,-4.3806677,-4.250059,-4.135696,-4.344743,-4.5118647,-4.4837556,-4.403235,-4.2693057,-3.8369517,-4.37816,-4.3991065,-4.0924582,-3.5486822,-3.60892,-4.076384,-4.204057,-4.054186,-3.7836657,-3.5042243,-4.058127,-4.160635,-4.3285756,-4.412292,-4.2890763,-3.927435,-3.8154387,-3.7540526,-3.6945996,-3.7881408,-3.3972168,-1.965313,-1.6656761,-1.4319541,-1.1090832,-1.0684016,-1.0140157,-1.1227894,-1.2935531,-1.2313895,-1.2609293,-1.6563053,-1.9123342,-2.1455176,-2.2621284,-2.1967206,-2.0429082,-1.927901,-2.0251513,-2.2348523,-2.0280342,-1.7523725,-2.0233772,-1.9674568,-1.4745274,-1.3767726,-1.5679116,-1.6313672,-1.7305346,-1.918922,-1.8702877,-1.9251084,-2.390224,-2.2606544,-2.4223387,-2.4326606,-2.6226115,-2.9006793,-2.3008277,-2.126001,-2.1009276,-2.2447152,-2.0105774,-1.4195812,-1.0462246,-1.5762277,-2.20428,-2.8821185,-3.0998383,-3.0443826,-2.9145427,-2.5776496,-2.0865612,-1.7585111,-1.6096697,-1.3458369,-1.0696023,-1.0447669,-1.0531881,-1.0439105,-1.0457702,-1.2397723,-1.5068605,-1.6837411,-1.8093443,-1.2848365,-1.3836999,-1.3113911,-0.85299104,-1.0066085,-0.75483817,-0.4582861,-1.1177588,-1.955965,-3.2055135,-3.5238826,-3.3959775,-3.5293453,-3.2950377,-3.230471,-3.2841475,-3.2533832,-3.2447534,-2.9536042,-2.3311207,-1.8046257,-1.2593682,-1.7137995,-2.7791004,-3.2768617,-3.4365468,-3.0799317,-3.026074,-2.434766,-2.396101,-2.1106431,-1.9510472,-1.7831779,-1.5808072,-1.4705944,-1.8067977,-2.8002396,-3.223847,-2.7249126,-2.6867752,-2.914499,-3.0667553,-3.3263118,-3.5199027,-3.4604688,-2.267601,-3.1355896
+-0.6381854,-1.9005089,-2.548198,-3.0717168,-3.2521024,-3.076825,-3.719293,-4.005477,-3.9101453,-3.4988236,-3.4292018,-3.8446288,-3.8962054,-3.821587,-3.679484,-3.4767303,-3.289666,-3.2070923,-3.1006112,-3.0640697,-2.8322062,-3.3551457,-3.352512,-3.3724518,-3.332017,-3.1423469,-3.4675684,-3.557271,-3.487498,-3.4720607,-3.8824172,-3.941131,-3.8134532,-3.6319962,-3.7430282,-3.547762,-3.3805175,-3.3709724,-3.3379426,-3.4446864,-3.64108,-3.5700696,-3.7066898,-4.1421113,-3.8992958,-3.8536882,-3.5371997,-3.572966,-3.4864345,-3.2879481,-3.5362844,-3.471183,-3.448248,-3.4086788,-3.3084276,-3.311946,-3.2928514,-2.832096,-3.514237,-3.6468382,-3.509142,-3.3331697,-3.213722,-3.2553687,-2.776109,-3.440373,-3.58055,-3.5365596,-3.4334636,-3.2712483,-3.037637,-3.2907782,-3.1191144,-3.039596,-3.017075,-2.6325562,-3.0219207,-3.2631273,-3.1601486,-3.1758964,-3.1370997,-3.0880437,-3.0276272,-2.252564,-3.1238093,-3.3024406,-3.3289618,-3.0292983,-3.3393402,-3.1739419,-3.1672587,-3.120155,-3.0717416,-3.0947757,-2.949544,-2.9604003,-2.9483747,-3.0508323,-3.0784278,-3.0524392,-3.046937,-3.0616293,-3.0020435,-2.9957638,-2.447738,-3.1519501,-3.1794553,-3.2157454,-2.3000045,-3.215375,-3.3641639,-3.3926747,-2.9194636,-3.2381942,-3.234034,-3.2191277,-3.3077397,-3.2878509,-3.2622113,-2.9224453,-2.8052683,-2.6399114,-3.7211819,-3.4912944,-3.7155743,-3.5887332,-3.5202627,-3.5739388,-3.9137988,-3.9316087,-3.5166948,-2.9453185,-3.3213093,-3.3465252,-2.3639615,-2.3909907,-3.0026135,-3.1991887,-3.4379988,-3.5287893,-3.4677637,-3.0939977,-3.3646913,-3.4590266,-3.5146475,-3.4608755,-2.6640882,-3.3979182,-3.251413,-3.5841029,-3.6471987,-3.8609357,-3.5451093,-3.6304102,-3.8006663,-3.8929772,-3.9248385,-3.8050742,-3.701045,-3.655276,-3.5399637,-2.098112,-2.555309,-3.2336636,-3.7594419,-3.9041848,-3.723333,-3.8482108,-3.98007,-3.095444,-3.2765627,-3.6123512,-3.943036,-4.244532,-4.2421265,-4.2258954,-4.084907,-4.0735626,-3.404297,-3.753642,-2.3052607,-3.2854657,-3.0863652,-3.429863,-3.561527,-3.5662224,-3.5947087,-3.8098063,-3.9147754,-3.9605522,-3.8359962,-3.7297096,-3.7754574,-3.9907093,-4.02901,-3.7106252,-3.678791,-3.9151216,-3.776291,-3.4288154,-3.4344103,-3.3890474,-2.0213542,-2.861249,-3.1967506,-3.32591,-3.4501257,-3.2528858,-3.2224636,-3.275053,-3.3169322,-3.395107,-3.3892605,-3.3815727,-3.537531,-3.6201973,-3.642283,-3.6262503,-3.672183,-3.7163148,-3.753388,-3.5874217,-3.5466268,-3.7107706,-3.7921143,-3.5516214,-3.5376248,-3.62272,-3.778665,-3.7596202,-3.7828832,-3.861083,-3.2897406,-3.932001,-3.5514247,-3.4128559,-3.508681,-3.6123352,-3.7418637,-3.8484874,-3.731412,-3.663748,-3.284493,-3.4918857,-3.7588062,-3.9206252,-3.8974004,-3.8188949,-3.5980372,-3.135589,-3.5524879,-3.447061,-3.4014103,-3.2598667,-2.9381413,-2.5676801,-2.8184361,-2.890089,-2.816824,-2.7006316,-1.6218216,-1.6910086,-1.8908,-1.936131,-1.9217477,-1.9007654,-1.8355584,-1.5325396,-1.5234313,-1.6971054,-2.951576,-3.7604146,-3.5405107,-3.5451581,-3.3034174,-3.3846765,-3.2521594,-3.5809221,-3.9166484,-3.854157,-3.4118133,-3.138435,-3.0029244,-2.762351,-2.0678647,-1.9613943,-2.7927065,-3.8059478,-3.595737,-3.7610154,-3.5617833,-3.5721784,-4.143888,-4.2694516,-3.6581225,-3.8439746,-3.9158359,-4.042709,-4.178036,-4.286841,-4.499374,-4.273189,-3.982355,-3.9712958,-3.914514,-3.8153644,-3.9370732,-3.9167705,-3.9333491,-3.4802482,-3.0744202,-3.287208,-2.94562,-4.1039257,-4.0761905,-3.7271118,-3.3245401,-3.770248,-4.09145,-3.7805,-3.873135,-3.756577,-3.651531,-3.9307113,-4.0058765,-3.7238374,-3.6288776,-3.6254475,-3.6488929,-3.5520356,-3.724555,-3.7850528,-3.694408,-3.7141314,-3.1965704,-3.9346194,-3.8465667,-3.6425824,-3.2434123,-3.0495296,-3.4831352,-3.8322744,-4.026407,-4.025602,-3.9978094,-3.746502,-3.3294907,-3.4604597,-3.5468836,-3.381803,-3.0773203,-3.3017433,-3.5433328,-3.6934967,-3.8579736,-3.944756,-3.589469,-3.4468176,-3.6979108,-3.387404,-3.9670386,-3.9775252,-3.7499118,-3.7445264,-3.5188293
+-0.22433203,-1.2674367,-2.0397506,-3.1342478,-3.3467994,-3.1972127,-3.4455435,-3.7350821,-4.0153885,-3.9088292,-3.6476662,-3.820498,-4.0719953,-3.8456073,-3.7211208,-3.626245,-3.5174322,-3.4956026,-3.4512036,-3.3170972,-3.4120667,-3.2529624,-3.3898726,-3.5342221,-3.618846,-3.3685045,-3.2068782,-3.7511768,-4.11126,-4.076945,-3.9743838,-4.162468,-4.2128973,-4.0716085,-4.0998816,-4.079673,-4.036405,-3.8377447,-3.9583812,-3.8359227,-3.6124768,-4.1748424,-3.958558,-4.2991643,-4.2144933,-4.2139163,-4.169409,-3.816833,-4.287643,-4.1889815,-4.0339913,-4.3351274,-4.3009496,-4.185455,-4.107799,-4.0666947,-4.074754,-4.0294757,-3.9957366,-3.835544,-4.2585673,-4.2686706,-3.841434,-4.029973,-3.7984562,-3.9644446,-4.422694,-4.2959933,-4.271914,-4.231215,-4.2186475,-4.1915364,-4.18084,-4.0227532,-4.115953,-3.995191,-4.020403,-4.1952415,-4.210441,-4.1984286,-4.2212987,-3.652551,-3.7316213,-3.2507942,-4.1664195,-4.594156,-4.5820823,-4.1644554,-4.510232,-4.424004,-4.36478,-4.1992316,-4.3205323,-3.9243865,-3.577089,-3.8646584,-4.0866604,-4.2816606,-4.1790633,-4.571962,-4.584109,-4.574248,-4.066538,-4.5449014,-4.1053023,-4.0519695,-4.3587646,-4.5414515,-4.3064966,-4.5401354,-4.5259876,-4.5124073,-3.9299817,-4.4886236,-4.5115457,-4.1951995,-3.7703838,-4.407745,-3.0842364,-4.204535,-4.411989,-4.554994,-4.436749,-4.5498652,-4.5456367,-4.5081997,-4.379213,-4.3415146,-4.3808036,-4.4280677,-4.031614,-3.6649508,-4.4186816,-4.4789586,-4.330729,-3.9417872,-3.9531436,-3.4499083,-3.454525,-4.3660226,-4.509047,-3.8836808,-3.7921462,-4.4563966,-4.556423,-4.6150656,-4.586766,-4.532069,-4.5804935,-4.4738145,-4.5240197,-4.698145,-4.4592805,-4.382196,-4.5941863,-4.621101,-4.6130238,-4.5585303,-4.4847655,-4.363093,-4.3080525,-4.242295,-3.8074641,-3.9807181,-4.48126,-4.5626855,-4.5366473,-4.4887595,-4.452126,-4.0649424,-3.9557662,-4.5090346,-4.6145854,-4.6472764,-4.657549,-4.6184764,-4.557937,-4.461373,-4.219489,-4.197163,-3.1995232,-3.2314112,-3.6891377,-4.4405828,-4.51574,-4.6214185,-4.757554,-4.863695,-4.8442335,-4.8583903,-4.710378,-4.5354013,-4.535856,-4.6737876,-4.600633,-4.3578076,-4.4356737,-4.5892777,-4.4536266,-4.371491,-4.284132,-4.2694955,-3.3067894,-2.8779001,-4.1942115,-4.43086,-4.5831447,-4.715052,-4.7371607,-4.7167764,-4.500145,-4.6046057,-4.500359,-4.6049647,-4.7777886,-4.7127233,-4.108908,-4.3747344,-4.7261634,-4.827601,-4.91742,-4.7514606,-4.0801473,-4.6459746,-4.753201,-4.6906314,-4.650637,-4.741018,-4.7562957,-4.669021,-4.807363,-4.847712,-4.4736586,-4.6387877,-4.5458946,-4.6310306,-4.7867665,-4.4932723,-4.6104393,-4.659543,-4.632311,-4.8234744,-4.0952735,-4.1397495,-4.534757,-4.6509466,-4.523638,-4.827455,-4.587232,-3.4284852,-4.261958,-4.2995906,-4.3237443,-4.104379,-3.9212022,-2.887021,-4.0359926,-3.9144378,-3.7629733,-3.3790097,-2.2849352,-2.0151052,-2.9678397,-3.4084854,-3.258232,-2.9966936,-2.9747176,-2.6656578,-4.3007193,-4.6701236,-3.825171,-4.549043,-4.124513,-4.357878,-4.241531,-4.2214737,-4.6072206,-3.7455,-4.348928,-4.561048,-4.0035305,-3.4958787,-3.1405952,-2.871813,-2.2101676,-1.7744141,-3.1957703,-4.085015,-3.553625,-4.0948586,-4.2854066,-3.6518083,-4.2875485,-4.51988,-3.8455586,-4.4644837,-4.5695353,-4.0134206,-4.304603,-4.6482997,-4.7006736,-4.5524936,-4.154141,-4.452908,-4.2799144,-4.0668406,-4.535193,-4.4072423,-4.554269,-4.1520348,-3.486876,-3.7186203,-3.7298818,-4.3274703,-3.8633614,-3.9542575,-3.7421756,-4.1470447,-4.28739,-4.067497,-4.2483125,-4.163495,-4.0805354,-4.2253084,-3.9435935,-3.9697008,-4.017405,-3.6973414,-4.0606112,-4.21582,-3.7106051,-4.149276,-4.241427,-3.5062485,-3.1036382,-4.1283727,-4.391272,-4.4267178,-3.9507732,-4.2399516,-4.006639,-4.197906,-4.3608823,-4.2117095,-4.2003794,-3.9684186,-3.559924,-3.5123925,-3.4670625,-3.0899553,-2.74433,-2.7382765,-3.0928092,-3.4648476,-3.762164,-3.9616895,-3.7507315,-3.7146654,-3.6799788,-3.4247868,-3.6904445,-3.9223142,-4.0226912,-3.9776826,-3.144089
+-1.1037562,-2.3982708,-2.8650272,-3.1322322,-3.496232,-3.417893,-3.065626,-3.633222,-3.808138,-3.6487134,-3.4243116,-3.7037134,-3.8670325,-3.7462354,-3.642542,-3.626217,-3.5750403,-3.5183854,-3.5701606,-3.4377499,-3.4427419,-2.8171058,-3.7641397,-3.9802165,-3.9263005,-3.9067693,-3.56226,-3.1603813,-4.187802,-4.2071366,-2.8590949,-3.652103,-4.483378,-4.552599,-4.6231103,-4.5583024,-4.3665843,-3.9345093,-4.442407,-4.374084,-3.4705448,-4.424872,-4.5687222,-4.6211734,-4.457353,-4.3729663,-4.2599673,-4.460797,-4.481396,-3.9673038,-4.0756927,-4.6637635,-4.640138,-4.51272,-4.420263,-4.212231,-4.3394694,-4.344021,-4.6679845,-4.608519,-4.511125,-4.4607825,-4.4119644,-4.350227,-4.348128,-3.6389296,-4.5011163,-4.5658545,-4.4866657,-4.4326177,-4.4319267,-4.446734,-4.3809743,-4.307572,-4.3352275,-4.2781415,-4.1657414,-4.2153664,-4.12304,-4.2102947,-4.2264104,-3.1934056,-3.3544862,-4.3352237,-3.466638,-4.4879556,-4.566196,-2.998061,-4.409701,-4.6513295,-4.57233,-4.5393558,-4.5737405,-4.421474,-3.1469235,-3.546052,-4.1441817,-3.3388746,-3.089125,-4.3728127,-4.648089,-4.629263,-4.388437,-4.653366,-4.536161,-4.66151,-4.562424,-4.560358,-4.494744,-4.535257,-4.4828377,-4.499759,-4.5101857,-4.4223933,-4.4288383,-3.505828,-4.306558,-4.3394303,-2.7847397,-4.123183,-4.4047675,-4.497189,-4.0817986,-4.2231174,-4.5284805,-4.355189,-4.256932,-4.326282,-4.613253,-4.5023875,-4.5176444,-4.388092,-4.5504375,-4.4296,-4.6078963,-4.492678,-3.9291558,-4.1572585,-3.426113,-4.2920413,-4.4563975,-4.0854354,-3.7641454,-4.5327115,-4.514512,-4.592321,-4.6087003,-4.516051,-4.4305634,-4.3833313,-4.426027,-4.48733,-4.521317,-4.475703,-4.3290076,-4.3094544,-4.312515,-4.3140574,-4.3241496,-4.264915,-4.2406583,-4.240751,-4.2083426,-3.9015422,-4.2026324,-4.2827153,-4.295016,-4.252924,-4.2272844,-4.1630745,-2.2483602,-4.155783,-4.2872033,-4.2570634,-4.338093,-4.3582997,-4.3601165,-4.304282,-4.192955,-4.170752,-4.2041984,-3.945129,-4.111859,-4.181663,-4.2427306,-4.2012444,-4.131755,-4.1914744,-4.254495,-4.2537384,-4.173758,-4.0392528,-4.113521,-4.204662,-4.146443,-3.8856606,-4.061643,-4.120313,-4.2190657,-4.2208557,-4.234594,-4.2040305,-4.0226464,-2.3373752,-3.9987607,-4.179622,-4.283235,-4.189752,-4.300146,-4.272894,-4.253472,-4.297449,-4.325438,-4.2584767,-4.1961308,-4.2408557,-4.191549,-3.9781523,-4.126291,-4.188401,-4.3096533,-4.2511926,-3.9141464,-4.0533013,-4.188721,-4.172255,-4.1415067,-4.294168,-4.2529655,-4.2228875,-4.2525244,-4.227879,-3.7927947,-3.9764466,-4.149926,-4.2051015,-4.1981025,-3.992041,-3.9956107,-4.014295,-4.026316,-4.203261,-3.0986018,-1.9227519,-4.0036054,-4.2596745,-4.3374414,-4.371025,-4.3763804,-3.4743543,-4.3456492,-4.319348,-4.1219945,-3.8491635,-3.5738251,-2.4751315,-3.8614726,-4.0065155,-4.1618733,-3.6836948,-3.030033,-2.0457497,-3.763526,-3.6777034,-3.357145,-3.2104273,-3.4444394,-3.0616019,-4.10259,-4.344482,-3.3234994,-4.429193,-3.5652819,-4.207828,-4.0308113,-3.8088484,-4.0760727,-4.1020007,-4.516031,-4.4359775,-4.051808,-3.7644172,-3.4469726,-3.0046225,-2.0920362,-1.7706845,-3.6588457,-3.8588972,-4.2199254,-4.4499803,-4.4042478,-3.8936133,-4.486872,-4.5211186,-4.1839623,-4.4394593,-4.3524613,-3.328351,-4.257898,-4.57107,-4.5708303,-4.4165635,-4.0827785,-4.1180654,-3.959507,-3.8661165,-4.1607366,-4.227845,-4.2877493,-4.200187,-3.7945733,-3.9833293,-3.8303585,-4.0790567,-3.8126974,-3.9294953,-3.7835317,-4.15411,-4.286883,-4.0682945,-4.1637073,-4.2502093,-4.01243,-4.1237807,-4.030926,-3.9725838,-3.9112287,-3.5161283,-3.9636817,-4.0401545,-3.5907924,-4.055132,-4.0076966,-3.7965822,-3.1893177,-4.4207144,-4.460197,-4.2571454,-3.9963613,-4.126146,-3.814611,-4.065877,-4.1481156,-4.116016,-4.2640615,-4.162194,-3.9287105,-4.0176888,-4.1679354,-3.8370614,-3.268382,-3.2675707,-3.7506137,-3.8987985,-4.010101,-4.065298,-4.068834,-3.9019666,-3.8291655,-3.3136425,-3.8567872,-3.7814093,-4.2253213,-4.1625533,-3.5412974
+-1.319433,-2.827239,-3.6275418,-3.778318,-3.9554276,-3.8992958,-3.8740687,-4.122876,-4.226498,-4.0851827,-4.079924,-3.8711019,-4.010816,-4.030271,-3.887731,-3.8704667,-3.8451176,-3.9289389,-4.014712,-3.7588263,-3.766367,-2.6145487,-4.213858,-4.403644,-4.4134936,-4.4217787,-4.2152796,-3.4905381,-4.4215155,-3.868976,-3.696179,-4.1961656,-3.8383842,-4.4846864,-4.4107647,-4.4405932,-4.7697673,-4.807511,-4.506149,-4.33341,-3.296124,-3.6406703,-4.387326,-4.594672,-4.9031663,-4.637031,-4.458223,-4.5363765,-4.536577,-4.2361865,-3.5885897,-4.7174096,-4.830707,-4.7387195,-4.5654173,-4.305707,-4.3399014,-4.4582343,-4.394167,-4.221814,-4.372377,-4.3957944,-3.9424634,-4.1972747,-2.9125888,-3.026895,-4.5396724,-4.7843556,-4.7699347,-4.627546,-4.553571,-4.5445304,-4.409145,-4.4685826,-4.001666,-2.7613144,-4.627455,-4.4819994,-4.31718,-4.357409,-4.4150147,-4.198122,-4.198607,-4.3611217,-3.2015874,-4.5121555,-4.5240407,-3.7818756,-4.554998,-4.524854,-4.5706534,-4.523705,-4.4766903,-4.3234744,-4.116898,-2.8028004,-4.2233825,-3.4460254,-3.9898114,-4.503619,-4.757845,-4.570189,-4.057608,-4.5695243,-3.755918,-4.527752,-3.1378303,-4.465733,-4.721727,-4.505346,-4.5591807,-4.523273,-4.436324,-4.370391,-4.383273,-4.0966153,-4.1415577,-4.071585,-4.093281,-2.963469,-3.7424607,-4.325829,-4.3069787,-3.9708939,-4.3242803,-3.5065732,-3.7267623,-4.294286,-3.136842,-4.3769884,-4.2842045,-4.1560388,-4.098165,-4.290115,-4.3086896,-3.8891373,-4.2925715,-3.7146,-4.05881,-3.1358352,-4.3025947,-4.0801873,-3.173442,-4.482934,-4.56847,-4.4970202,-4.4084744,-4.485081,-4.3225064,-4.2826743,-4.256351,-4.270113,-4.2660546,-3.3043766,-4.0866528,-4.214228,-4.255317,-4.2367373,-4.2314153,-4.1908298,-4.175424,-4.151918,-4.1367965,-4.0034804,-4.168714,-4.189428,-4.1857104,-4.192036,-4.174806,-4.1295013,-3.2556968,-4.025467,-4.3124194,-4.2397337,-4.2341456,-4.2045116,-4.179163,-4.163893,-3.6475286,-3.846569,-4.262716,-4.3073435,-4.237402,-4.209702,-4.1643863,-4.199848,-4.219204,-4.15128,-4.140263,-4.106706,-3.9724164,-4.1957273,-4.119704,-4.0707827,-4.0097322,-4.089001,-4.1565676,-4.1037173,-4.07424,-4.0755153,-4.0254054,-4.085404,-4.080584,-2.7704978,-4.09469,-4.318603,-4.2355223,-4.0898724,-4.064977,-4.0552807,-4.083272,-4.0416493,-4.053367,-4.076845,-4.0577855,-4.057332,-4.03483,-4.122807,-4.070933,-4.12932,-4.105819,-4.109991,-4.1242924,-4.1378193,-4.113336,-4.2243905,-4.2249227,-4.2130165,-4.1793876,-4.186363,-4.159388,-4.151228,-3.903399,-4.1552687,-4.1239676,-4.333676,-4.273765,-4.1005235,-4.0683985,-4.159353,-4.153399,-4.1942687,-3.2332788,-2.5077243,-4.1428766,-4.4026713,-4.5014615,-3.380786,-4.014041,-3.4180624,-4.1939297,-4.3507237,-4.0381,-3.5799716,-3.421218,-2.6775215,-3.9805741,-4.1432757,-4.0955377,-3.6140091,-3.4851432,-3.528106,-4.1773915,-4.1826477,-4.1104236,-4.2423053,-4.4642425,-3.6720736,-4.006794,-4.3079376,-4.0104647,-4.3246827,-3.8537278,-4.043689,-4.0794864,-3.7397928,-3.8065033,-4.19748,-4.342007,-4.4676147,-4.2429185,-3.5493026,-3.3036199,-2.913126,-2.6194193,-1.9059429,-3.8763232,-4.3727264,-4.4004655,-4.024196,-4.338621,-4.142798,-4.24006,-4.534407,-3.7734118,-4.219507,-4.245833,-2.84191,-3.7543063,-4.1855087,-4.290425,-4.204143,-4.239708,-4.24953,-4.0923944,-4.2034936,-4.272991,-4.2933097,-4.524773,-4.0880423,-4.172778,-4.3310685,-3.8785763,-4.32528,-4.227184,-4.044185,-4.0674424,-4.182791,-4.4747734,-4.4030232,-3.74149,-4.122277,-4.1466346,-4.304788,-4.3097134,-4.1191044,-4.0543146,-3.536315,-4.15107,-4.105996,-3.8860145,-4.3448834,-4.2100554,-3.7140713,-3.5809484,-4.1549907,-4.362716,-4.1375813,-4.073178,-4.251283,-3.5756505,-4.1516714,-4.3148494,-3.9182596,-4.080502,-3.8406777,-3.8477511,-3.6933703,-4.03794,-3.8860402,-3.1182137,-3.040975,-3.7925305,-4.255079,-4.478958,-3.9848228,-4.0542593,-4.252765,-4.3683815,-3.8546162,-4.4184246,-3.7673793,-4.428191,-4.41514,-3.8040743
+-0.90439147,-2.399026,-3.2807536,-3.5499277,-3.6535919,-3.597261,-2.9869285,-3.5963273,-3.880175,-3.8781047,-3.7154622,-3.4333653,-3.9091182,-3.9328322,-3.956349,-3.908629,-3.9418554,-3.8900952,-3.8494601,-3.7493348,-3.8337593,-2.872451,-3.7453027,-4.1250615,-4.0503764,-3.9529548,-3.8492675,-3.816587,-3.818276,-3.3236194,-2.4771514,-3.8485913,-4.0166516,-4.28716,-4.1842504,-4.229224,-4.206217,-4.097633,-3.8255582,-3.7214222,-3.652234,-2.3241487,-3.8044887,-4.1905417,-4.170832,-4.061556,-2.6232483,-3.984816,-3.4604497,-3.6501927,-3.9905539,-4.314363,-4.318931,-4.239695,-4.1646414,-3.9610844,-3.8051105,-3.9774861,-4.0023274,-2.4428945,-3.6141136,-3.5543556,-4.2516503,-4.2039866,-3.9456644,-3.9491925,-3.0904503,-3.9812407,-4.246095,-4.165973,-4.156635,-4.0469546,-3.9035773,-3.3427062,-3.803988,-3.9310193,-3.865368,-3.7909417,-3.877668,-3.8959527,-3.9053206,-3.8678222,-3.7073345,-3.622783,-3.5783253,-3.6894295,-3.7289348,-2.720208,-3.0736382,-3.9080873,-3.1958127,-3.8233094,-4.0823283,-3.9551706,-3.636425,-3.653585,-3.7395167,-3.5628076,-3.3880415,-3.1778612,-3.8500829,-3.8728967,-2.438907,-3.1266258,-3.9398694,-3.9415145,-2.5842056,-3.5251412,-3.4299934,-4.1819406,-4.2730894,-4.1668067,-3.8583717,-3.012171,-4.052381,-4.109604,-3.634932,-4.055118,-4.0387187,-3.6881373,-3.8309155,-3.6033196,-2.939954,-3.0047789,-4.188912,-3.0157042,-3.6683981,-3.837706,-4.272891,-3.3111286,-3.701981,-3.8610973,-4.429735,-3.865973,-4.288917,-4.6309648,-4.3758883,-4.5898194,-4.5237374,-3.770998,-3.0058668,-3.7122293,-3.6588023,-4.3690863,-4.4264984,-3.7221117,-4.402099,-4.4341884,-4.016875,-4.5211577,-4.4986925,-4.406282,-4.3573413,-3.5012808,-3.4626613,-4.2815175,-4.395702,-4.3595786,-4.252553,-4.139912,-4.077788,-4.065469,-4.073506,-3.6745715,-3.9818778,-3.2682858,-4.0594387,-4.1973004,-4.1829596,-4.0996213,-3.8617458,-3.7747269,-4.172379,-4.1756454,-4.1728683,-4.0950894,-4.07199,-4.0359445,-3.9980922,-3.2252378,-3.8572135,-4.0018606,-3.9944472,-4.014274,-4.064283,-4.110658,-4.0729322,-4.061807,-4.0812073,-2.1158774,-3.7822294,-4.104355,-4.105575,-4.1198616,-4.143563,-4.134755,-4.1387777,-4.1209993,-4.028809,-3.9546475,-3.903442,-3.8807015,-3.8710399,-3.8125,-3.8617826,-3.9726882,-4.008458,-3.9682255,-3.967915,-3.907421,-3.8102307,-3.8198123,-3.8057046,-3.8494554,-3.8534946,-3.8342404,-3.78972,-3.8511539,-3.902255,-4.005432,-4.0070586,-4.0261235,-4.1406255,-3.898118,-4.0530715,-4.0156217,-3.6511836,-3.8632288,-3.984188,-3.9755645,-3.9924378,-3.9583592,-3.9196987,-3.780867,-4.0560045,-4.099276,-4.0321274,-3.9282222,-3.8425298,-3.8452458,-3.8991866,-4.0737815,-1.5145581,-2.9356198,-3.9124942,-4.1860695,-4.257408,-3.0972214,-3.5495472,-3.4748378,-4.1938787,-4.386208,-4.171136,-3.9523091,-3.729013,-3.9091353,-4.5937295,-4.537681,-4.396481,-4.0207734,-3.699624,-4.120501,-4.505413,-4.4346576,-4.406162,-4.2911158,-4.2698717,-4.3853827,-4.373087,-4.2596807,-4.423726,-4.373235,-3.1437652,-4.0559554,-3.9939914,-3.5241418,-3.3279212,-3.2582254,-3.964686,-4.200129,-4.420034,-3.590988,-3.8672204,-3.2463574,-2.8737707,-2.6660004,-3.9489665,-4.518144,-4.5608416,-4.521045,-4.405391,-4.372082,-4.2653275,-4.234606,-3.4369106,-3.1453574,-3.6000798,-3.6292682,-4.100132,-4.447407,-4.350079,-4.307837,-4.180984,-4.106392,-4.037878,-4.2260003,-4.310737,-4.3383994,-4.2369556,-4.177797,-4.0508895,-4.106318,-3.824811,-3.5479302,-3.8217664,-4.0965953,-4.0639987,-4.244742,-4.383179,-4.2678576,-3.0024672,-3.8674755,-4.124785,-4.2702684,-4.2935205,-4.3024087,-4.283627,-3.8258138,-4.3002143,-4.3406606,-4.1653695,-4.0587974,-4.156616,-4.155389,-3.5971699,-3.4578123,-4.0493484,-4.0802584,-4.1045413,-4.3359394,-4.174805,-3.89327,-4.2707705,-3.4354692,-4.1366568,-3.2773871,-4.1756334,-3.8328748,-3.9860454,-3.9699073,-3.853457,-3.999309,-4.351487,-4.231362,-3.939228,-3.1010747,-3.9886107,-4.104987,-4.0862412,-3.3621645,-4.0033183,-3.0530772,-4.137475,-4.3362327,-3.0994682
+-0.044921637,-2.341481,-3.5025702,-4.034401,-4.184025,-4.2195725,-3.5571005,-4.2512527,-4.4780865,-4.2679195,-4.0654964,-3.2919374,-4.1838007,-4.2432237,-3.8700175,-4.1410313,-4.6031165,-4.567571,-4.437836,-4.29038,-4.2489686,-3.3604536,-4.0552545,-4.4060106,-4.292614,-4.0794487,-3.9982972,-3.9297523,-4.0126967,-4.005546,-2.9920602,-3.7619877,-3.739081,-4.2788053,-3.8746667,-4.258401,-4.211848,-3.9909277,-3.5375133,-3.7336478,-3.8621755,-3.8566985,-3.7839656,-3.7644463,-3.7516475,-3.7192159,-1.4282792,-3.8076272,-3.7556138,-4.116232,-4.5836577,-4.749519,-4.6645603,-4.586193,-4.456454,-4.2364254,-4.1362104,-4.1701417,-3.99398,-4.0192437,-3.9930606,-3.8018746,-2.1021962,-3.675474,-4.3749557,-4.206539,-3.2406778,-4.577844,-4.7105603,-4.6497207,-4.577595,-4.3804717,-4.203884,-4.185044,-4.1145186,-3.916224,-4.024153,-2.8028827,-4.0104737,-4.2854514,-4.226739,-4.0983195,-3.9762168,-3.943768,-3.8585782,-3.9130359,-3.7914376,-3.8251743,-1.9388113,-3.8344574,-2.9724874,-4.043097,-4.5559897,-4.396658,-4.2815804,-3.08181,-3.2834463,-4.375895,-4.41158,-4.3816447,-4.3135605,-4.3613124,-3.9590864,-4.388033,-4.251714,-4.1840067,-3.6436014,-2.3737483,-4.2306867,-4.4495435,-4.418413,-4.298823,-4.266901,-4.2443385,-4.0334287,-4.0578995,-4.090615,-3.9965186,-3.9137158,-3.779191,-3.4507012,-3.8140168,-3.208168,-2.1392984,-3.9832115,-4.4022684,-4.365391,-4.117712,-2.5381021,-4.4104905,-4.001226,-4.7072053,-4.692284,-4.1359606,-4.641045,-3.5495763,-3.4150615,-4.55213,-4.1609654,-3.736754,-4.2306247,-3.9477763,-4.5765624,-4.8179746,-4.6467266,-4.61719,-2.7655334,-4.5350285,-4.745986,-4.6787252,-4.5476937,-3.7563882,-4.4967713,-4.5210357,-2.7012026,-4.386875,-4.66569,-4.6768985,-4.600059,-4.4961534,-4.446903,-4.421555,-4.3481836,-3.6993108,-3.84862,-3.6722803,-4.400727,-4.451495,-4.3850555,-4.3067355,-4.0602365,-3.9681144,-4.195908,-4.170854,-4.0776567,-4.0671372,-4.107888,-4.112863,-3.7202382,-3.8978095,-3.929793,-4.000801,-3.9955335,-4.032302,-4.1040163,-4.1420484,-4.1042256,-4.085687,-4.0571613,-3.855451,-3.563705,-3.981606,-4.120291,-4.100441,-4.076201,-4.0515666,-4.0361123,-3.8381495,-3.9426017,-3.9995875,-3.9386773,-3.9506454,-3.9983149,-3.8977876,-3.962998,-4.0062623,-3.986855,-3.9887319,-3.9243379,-3.8700132,-3.857708,-3.884029,-3.8422403,-3.907703,-3.8842607,-3.8936443,-3.8239598,-3.907363,-3.943931,-4.0021634,-4.0056653,-3.9112659,-3.8904543,-3.8094058,-3.8632464,-3.9438953,-3.448432,-3.6691713,-3.7028651,-3.6982694,-3.7693,-3.7639031,-3.6899822,-3.7049332,-3.9066553,-4.0003715,-3.85111,-3.7439404,-3.6264343,-3.7277064,-3.849918,-3.968491,-1.0694194,-2.8758922,-4.0069404,-4.31249,-4.230827,-3.1951478,-3.5649755,-3.0818713,-4.0768666,-4.5095267,-4.337418,-4.163791,-3.9322944,-4.0488715,-3.2502933,-3.922728,-4.5671735,-4.3056493,-4.3127065,-4.393698,-3.5812259,-4.241215,-4.6111007,-4.546369,-4.7101336,-4.519997,-4.6064506,-4.437784,-4.4969134,-4.469509,-3.4613328,-4.347442,-3.9793677,-3.2422047,-2.6095653,-3.3181424,-4.097455,-4.6253176,-4.0534487,-3.7853293,-4.0729156,-3.6998286,-3.6154697,-3.710802,-4.544628,-4.6719575,-4.6819725,-4.574704,-4.5334897,-4.4404025,-4.3494477,-4.3933067,-4.324618,-2.4003587,-3.1240993,-3.84938,-4.408753,-4.726273,-4.2171817,-4.465609,-4.377857,-4.2932935,-4.4323297,-4.6054373,-4.592744,-4.5115952,-4.1782904,-4.3013053,-4.134542,-4.2968783,-4.187109,-3.2804072,-4.1597486,-4.494318,-4.459722,-4.499389,-4.7024646,-4.5153823,-3.5181193,-4.4750457,-4.6160955,-4.1025195,-4.3904357,-4.621575,-4.5547357,-4.399136,-4.448574,-4.373798,-4.231898,-4.325891,-4.0368924,-3.9125934,-4.1531563,-3.368664,-4.364877,-4.4238496,-4.4723907,-4.2962966,-4.1911025,-3.6247106,-4.2481804,-4.03769,-4.218866,-2.90802,-4.0075917,-3.938583,-4.4075456,-4.4145713,-4.39347,-3.9500751,-4.526806,-4.4477944,-4.212518,-3.5506206,-4.232182,-4.201411,-4.2019243,-4.070812,-3.9882646,-3.920402,-4.0133567,-4.0010896,-3.3215942
+-0.8590707,-1.8958714,-2.932833,-3.6095312,-3.9185948,-3.9455771,-3.6155446,-4.0277915,-4.104237,-3.9454126,-3.7774062,-2.8836493,-3.8626428,-3.2890396,-3.3621945,-3.5469034,-3.9776907,-4.1843305,-4.224784,-4.1640987,-4.179422,-2.5637684,-3.7430372,-4.1044025,-4.1030374,-4.116519,-3.99094,-3.4054286,-3.9706073,-3.3949475,-3.8001885,-3.0742028,-3.3680525,-3.6234052,-3.9298997,-4.1112437,-4.130653,-4.0490546,-3.9860663,-4.0180726,-3.9264503,-3.9344096,-3.852964,-3.821957,-3.8307652,-3.8388863,-1.9199603,-3.7406983,-2.9130898,-3.642769,-3.958466,-3.7879171,-4.04786,-4.057906,-4.04537,-3.930369,-3.8766441,-3.9243112,-3.9517665,-3.8708568,-3.5435512,-3.623691,-3.674951,-2.5205693,-3.6025238,-3.5075407,-2.2725642,-3.8689399,-3.962903,-4.1199756,-4.051843,-4.0295353,-3.8981833,-3.8324099,-3.8261867,-3.8025908,-3.6749034,-3.469171,-2.299304,-3.8972592,-4.070569,-3.9464765,-3.8905702,-3.8309793,-3.757978,-3.695188,-2.898323,-3.7943578,-3.8959193,-4.1080327,-3.5725355,-3.8878713,-3.8443356,-4.1624603,-3.5550895,-3.9333844,-3.5552692,-3.8088517,-3.976499,-3.9065194,-3.7835646,-3.7668366,-3.7860599,-3.182397,-3.7360272,-3.7385926,-3.8595996,-3.790556,-3.338218,-3.3350334,-3.8086228,-3.8462176,-3.891172,-3.7196274,-2.8874247,-3.9155455,-4.0284915,-3.8867145,-3.9236717,-4.0153155,-4.112163,-4.2126727,-2.9248571,-3.7584038,-3.7536998,-4.2827687,-2.9430895,-3.9593434,-4.156042,-3.916605,-3.5563006,-3.7368412,-4.0038695,-4.1427264,-3.019796,-3.169113,-3.7105522,-4.271432,-4.318664,-2.875289,-2.9517927,-3.854055,-4.211212,-4.1123166,-4.159271,-4.1614704,-4.1771646,-2.430774,-3.967567,-4.2281766,-4.1754766,-4.132042,-3.8774276,-4.1710515,-1.5170786,-4.0882497,-4.3252172,-4.1881037,-4.2032943,-4.16394,-4.0945706,-4.040253,-3.9680753,-3.9924383,-2.9276137,-2.954876,-3.870657,-4.199453,-4.276798,-4.2902727,-4.372312,-3.9397798,-4.2823706,-4.2488384,-4.2529073,-4.2331195,-4.2108817,-4.139663,-4.123856,-4.082292,-4.0152683,-3.8729248,-3.8132334,-3.8314142,-3.8905387,-1.985764,-3.6716056,-4.136049,-4.1785445,-3.875259,-3.3491073,-4.0344734,-4.1079874,-4.2986417,-4.3288474,-4.325771,-4.2376757,-4.248009,-4.213148,-4.166132,-4.09946,-4.0334053,-4.014572,-4.022905,-3.8252282,-3.7755613,-3.8690524,-3.9416285,-3.9059863,-3.9139438,-3.9388814,-3.9066596,-3.9186778,-3.9994874,-3.8941188,-3.938076,-3.9436116,-4.009834,-3.8868718,-3.8708215,-3.963727,-3.8874106,-4.0424676,-3.8398404,-3.8663297,-3.910873,-3.9751081,-3.8565798,-3.9291987,-4.006164,-3.940565,-3.918673,-3.979237,-3.5877788,-3.5819354,-3.7157593,-3.8733578,-4.0465164,-4.0025487,-3.9880705,-3.7648034,-3.9320407,-3.8901544,-3.951333,-1.7258506,-3.5227835,-3.8004584,-4.0933447,-2.708099,-1.8496373,-3.5927465,-4.2119937,-4.000974,-3.7237396,-3.7738671,-3.8318505,-4.010782,-3.5512753,-4.048571,-4.01914,-4.242527,-3.674998,-3.3919365,-3.7464423,-4.07887,-4.1429768,-4.309172,-4.400806,-4.3978167,-4.2711043,-4.38481,-4.332687,-3.7398853,-4.1031976,-3.737142,-2.8954453,-3.256516,-2.9421487,-3.8683114,-4.1818166,-4.2362,-3.3927708,-3.3313715,-3.1119082,-3.2564652,-3.7587018,-4.3403625,-4.4893103,-4.471161,-4.458816,-4.4041667,-4.3727927,-4.3358626,-4.228517,-4.1784368,-2.2911181,-2.2444382,-3.5450397,-4.048455,-4.2757354,-4.178206,-4.290135,-4.2667565,-4.3523507,-4.409447,-4.382647,-4.4274554,-4.4014454,-4.36196,-4.1223683,-4.073129,-4.1738725,-4.2261777,-2.3666365,-3.9397497,-4.046304,-4.28001,-4.507216,-4.47857,-4.3762417,-4.295527,-4.3110766,-4.2376533,-4.1121235,-4.0461206,-4.086396,-3.9240823,-3.7012496,-3.4804132,-3.992021,-4.0484443,-3.9356847,-3.8039727,-2.27591,-4.0436215,-3.5179884,-4.128166,-4.265865,-4.344003,-4.2848554,-4.201397,-4.0154734,-4.139544,-3.8705897,-4.0025887,-3.6670291,-2.5785275,-3.3814263,-3.9247618,-4.0169854,-4.2152896,-4.399525,-4.4205904,-4.304024,-4.265847,-4.174439,-3.989448,-3.7571888,-3.762855,-3.6788301,-3.6559799,-3.6397793,-3.6478264,-3.6548386,-3.4556212
+-0.5810163,-0.73832864,-2.789761,-3.6420052,-3.9547305,-4.0674057,-3.9787865,-4.2010684,-4.32603,-4.246925,-4.104397,-3.3217487,-4.159992,-3.4227214,-4.257836,-4.197259,-4.5330334,-4.5935354,-4.523003,-4.396367,-4.299427,-2.911622,-4.177657,-4.4445844,-4.3638,-4.282705,-4.3664846,-4.4041176,-4.3600264,-3.4176164,-4.1042256,-3.947762,-3.8928895,-3.9046063,-4.4862456,-4.523028,-4.4671564,-4.3828983,-4.2669992,-4.2298098,-4.214214,-4.2346826,-4.2168202,-4.2424903,-4.1963105,-3.693533,-3.0131822,-2.6985693,-3.8240657,-3.7864628,-4.17531,-4.490477,-4.5416,-4.5578566,-4.488431,-4.458481,-4.3577857,-4.336968,-4.318218,-4.273813,-2.3429918,-4.268906,-4.2838373,-4.426073,-4.2964654,-3.5241144,-2.4120545,-3.9362965,-4.2798266,-4.4515104,-4.396605,-4.5053134,-4.5004206,-4.453317,-4.235522,-4.027165,-3.6778412,-4.3972206,-3.000885,-4.222155,-4.370032,-4.5049877,-4.475968,-4.4127936,-4.349577,-4.3149714,-4.28729,-3.977675,-4.2122283,-3.7961497,-3.762815,-3.2359858,-4.306086,-4.442842,-4.473483,-4.438301,-4.389636,-4.335202,-4.2982774,-4.2604766,-4.1917396,-4.1200695,-2.2192502,-3.8257337,-4.3781,-3.7763133,-4.2107444,-3.5986738,-3.7437057,-3.8451476,-4.1443534,-3.5265908,-3.9511404,-4.309791,-4.4076433,-4.279605,-4.3506126,-4.5791397,-4.549321,-4.477928,-4.404918,-4.2914033,-2.8802657,-4.2677436,-4.3206487,-3.3571107,-4.0097136,-4.0023785,-4.331224,-3.2949612,-4.0100985,-3.4735029,-4.4049025,-3.8078408,-4.6187463,-4.2754455,-3.544931,-4.5420136,-4.5539165,-4.552529,-4.6365247,-4.6271706,-4.5774026,-3.4191608,-3.646144,-4.3318787,-4.40882,-3.1939902,-4.4282627,-4.3389764,-4.420509,-4.355946,-4.063234,-3.4152565,-2.057256,-3.9076295,-3.7372003,-4.323562,-4.4449654,-4.574189,-4.574923,-4.555156,-4.4896092,-4.495155,-4.155766,-3.750568,-4.4133286,-4.524671,-4.4870906,-4.477287,-4.11826,-4.169,-4.5115027,-4.510566,-4.5160546,-4.480678,-4.408734,-4.26222,-3.4241347,-4.3489957,-4.25418,-4.427012,-4.444406,-4.3928967,-4.364123,-3.7069712,-3.4259267,-4.3596644,-4.438666,-3.8650718,-4.0973325,-4.388011,-4.45342,-4.508082,-4.495601,-4.4589477,-4.3583074,-3.4445057,-3.1553152,-4.247885,-4.3244395,-4.442328,-4.4685464,-4.5110965,-4.4988103,-4.473805,-4.398907,-4.319567,-4.2479906,-4.1914635,-4.2362123,-4.2063537,-4.2123084,-4.207829,-4.130716,-4.185108,-4.2075844,-4.2403584,-4.202244,-4.1935463,-4.1864724,-4.153462,-4.2003407,-4.146073,-4.192774,-4.140318,-4.1717725,-4.155273,-4.136213,-4.120343,-4.1153874,-4.08108,-4.158157,-4.128575,-3.974131,-3.964347,-3.9900336,-4.0587687,-4.065382,-4.161159,-4.14806,-4.0418515,-3.9877229,-4.139279,-2.258238,-4.212971,-4.4100494,-4.472113,-3.121218,-3.0958111,-4.0692654,-4.3008423,-4.524969,-4.246658,-4.3086076,-4.3142533,-4.537789,-4.1362557,-4.5830593,-4.606134,-4.586267,-4.6706347,-3.7637477,-4.370414,-4.4109435,-4.5301795,-4.6433334,-4.695435,-4.7062883,-4.652721,-4.748285,-4.7468076,-4.198232,-4.6042385,-4.2643175,-4.360996,-4.6274915,-2.7565475,-4.1071467,-4.257928,-4.4295583,-3.2361274,-3.6185546,-3.3755357,-3.172092,-3.6641388,-4.285341,-4.530085,-4.595197,-4.6122203,-4.5940766,-4.6308217,-4.6746154,-4.6281843,-4.245098,-2.749262,-2.2237332,-3.673456,-4.214632,-4.3483768,-4.276555,-4.5020375,-4.5236616,-4.538296,-4.5327473,-4.4632463,-4.524421,-4.5574985,-4.573371,-4.658588,-4.563474,-4.493227,-4.395655,-2.8284073,-4.2630877,-4.364243,-4.4100804,-4.541612,-4.582687,-4.5358195,-4.6299706,-4.675576,-4.5269628,-4.031162,-4.3633313,-4.3970017,-4.3415885,-4.232058,-4.405546,-4.3417277,-4.292088,-4.3482614,-4.1589217,-4.1361585,-4.1091514,-2.9101238,-4.4097815,-4.48082,-4.4348454,-4.291417,-4.297827,-4.3685193,-4.3117824,-4.283918,-4.263184,-4.2490325,-3.2416396,-3.621759,-4.4708533,-4.283476,-4.212115,-4.3326697,-4.4782743,-4.4270377,-4.32383,-4.32629,-4.238875,-4.18317,-4.1662717,-4.093901,-4.0959578,-4.09973,-4.0975556,-4.02581,-4.0378733
+0.7723886,-0.880027,-2.3937268,-3.00659,-3.3111954,-3.4620242,-3.4425325,-3.5006564,-3.5498626,-3.5814483,-3.6123495,-3.5135632,-3.4232697,-2.9163504,-2.3930678,-1.039922,-0.78560144,-0.47976953,-0.27081048,0.15488815,0.28583187,0.26352626,0.38133895,0.3642,0.3184131,0.36406052,0.3295316,0.26220942,0.39259595,0.28614914,0.44271624,0.6712144,0.3950684,-0.56059724,-0.44484335,-0.65751475,-1.0916948,-1.3346603,-1.1345356,-1.2353699,-1.1748402,-1.3156552,-1.5851796,-2.7429852,-2.6598735,-2.3385823,-2.1185527,-1.8728104,-1.8310676,-1.777389,-1.6807439,-1.5322568,-1.5185618,-1.7812884,-2.2807221,-2.2046523,-2.358365,-2.6724496,-3.327034,-3.5929914,-3.5469742,-3.2986436,-3.1644444,-3.822968,-3.6078916,-3.2608995,-3.472134,-3.7621107,-3.6934037,-3.3592253,-3.027224,-3.1850948,-3.305369,-2.8883138,-2.5138404,-2.424901,-2.385416,-2.2204654,-2.1849046,-2.362616,-2.7541652,-3.200468,-3.236812,-2.889564,-2.499261,-2.4721382,-2.5772018,-3.489056,-3.4793077,-2.876,-2.8876042,-3.601715,-3.4166965,-3.1869981,-3.2215652,-3.550231,-4.0406194,-3.7995982,-3.90416,-3.7199864,-3.262144,-3.0967393,-2.7915535,-3.6822565,-3.5211878,-3.9071183,-3.3977036,-3.3435738,-3.304092,-3.533681,-3.2977333,-3.4571443,-3.6057026,-3.9567952,-3.7865467,-3.8232126,-4.0540314,-3.7334394,-3.7477088,-3.6423554,-3.3950865,-3.3102474,-3.22682,-3.3016992,-3.4682267,-3.568099,-3.0102503,-3.8308654,-3.8174028,-3.5284405,-3.3272543,-3.373676,-3.7029772,-3.6149263,-3.3909304,-3.3901238,-3.513854,-3.6442142,-3.6739295,-3.9996457,-3.974835,-3.153657,-3.0029716,-3.7106304,-3.8579535,-4.0621605,-4.1154923,-3.8611598,-3.8682852,-3.3576374,-3.9706407,-3.9371934,-4.048353,-4.106979,-3.6064487,-3.531252,-3.462751,-3.6456811,-3.5631762,-4.035495,-3.5609949,-4.0179,-3.2935557,-3.6445475,-3.7798133,-3.8663602,-3.968576,-3.776713,-4.0006247,-3.882668,-4.1188326,-4.0990195,-3.7478747,-3.5752852,-3.6415136,-3.378598,-3.0791588,-2.9889896,-2.8517437,-3.9497724,-3.806631,-3.6463223,-3.592501,-3.5343037,-3.4889908,-3.3329582,-3.333178,-3.4637268,-3.4630108,-3.2931988,-3.6615186,-3.4007854,-2.9864025,-3.388486,-3.1244378,-3.7643733,-3.570324,-3.5997682,-3.660919,-3.9093013,-3.2968166,-3.8914165,-4.017556,-3.7336464,-3.4060144,-3.232699,-2.9922833,-2.6891496,-2.4157588,-2.2813976,-2.077539,-2.333569,-2.959814,-3.023929,-2.9180806,-3.9166927,-3.8710804,-3.3889565,-3.2174037,-3.134052,-3.3580256,-3.7024684,-3.3128414,-3.1853833,-2.947698,-2.5737598,-2.7580268,-2.943052,-2.757537,-2.9221094,-2.9323785,-2.753786,-2.7490644,-2.778479,-2.6806684,-2.6346922,-2.2811832,-2.0479836,-1.9288788,-1.8856838,-1.7282414,-1.7807279,-1.6908281,-1.8791537,-1.6630073,-1.54547,-1.7830758,-2.0906668,-2.1970272,-2.0961475,-2.15713,-2.3554668,-2.491496,-2.7143507,-2.9035237,-3.1026278,-3.3322964,-3.45777,-3.5440845,-3.5819654,-3.6007152,-3.623608,-3.6186018,-3.4650712,-3.5608063,-3.5828633,-3.5543327,-3.5963335,-3.6914542,-2.8981135,-3.614326,-3.6127033,-3.519351,-3.641065,-3.6593246,-3.647613,-3.6355777,-3.5937364,-3.5303078,-3.6380756,-3.6453412,-3.62477,-3.6590998,-3.662869,-3.645087,-3.5145044,-3.734375,-3.7446747,-3.733543,-3.738439,-3.650426,-3.711557,-3.6506364,-3.5983686,-3.4670305,-3.486211,-3.3501492,-3.365005,-3.3521435,-3.3018627,-3.3103955,-3.4669883,-3.5220685,-3.5257316,-3.5494375,-3.5740013,-3.6393704,-3.6231513,-3.6815157,-3.7421517,-3.665494,-3.6580946,-3.6768556,-3.637805,-3.672419,-3.710791,-3.7062268,-3.6986442,-3.7124066,-3.6507745,-3.6644015,-3.5991411,-3.611065,-3.5460792,-3.4567108,-3.6305816,-3.5391266,-3.3624198,-3.3071675,-3.5074842,-3.5207925,-3.6744132,-3.6738963,-3.6317294,-3.656591,-3.681771,-3.7031531,-3.734891,-3.7481933,-3.6870766,-3.528127,-3.556357,-3.6755664,-3.6059432,-3.5919623,-3.6778688,-3.7351127,-3.7573762,-3.7905478,-3.7404418,-3.6945844,-3.6168494,-3.4793744,-3.3994029,-3.5843778,-3.6834733,-3.7094674,-3.6215115,-3.660794,-3.6600766,-3.5329132,-3.1566248,-3.0134115,-3.1652613,-3.1688926
+-1.3359327,-2.6297078,-2.611642,-2.4140356,-2.24439,-2.0358808,-2.2059407,-2.3512387,-2.2467623,-2.1495693,-1.861248,-2.5719867,-2.727435,-2.8622644,-3.020095,-3.1162505,-3.2469769,-3.320557,-3.3251605,-3.2957554,-2.8306258,-3.319905,-3.464005,-3.27177,-3.0530682,-2.2861288,-3.6205935,-3.5067937,-3.5416825,-3.6101575,-3.1788855,-3.378136,-3.8628364,-3.5942118,-3.754581,-3.6994538,-3.410831,-3.6233804,-3.6962314,-3.354816,-3.198578,-3.275169,-2.628776,-3.5627763,-3.999103,-4.196602,-4.096823,-3.9987092,-3.9258223,-3.7883816,-3.6322784,-3.706787,-3.713098,-3.5471144,-3.6975594,-3.3036945,-3.5752726,-3.4957008,-2.751708,-3.3302274,-3.8727684,-3.784019,-3.6110787,-3.5242267,-3.5065823,-2.4002361,-3.6970773,-3.8706622,-4.152798,-4.149276,-3.9143605,-3.548924,-3.8079095,-3.6678581,-3.7612514,-3.2890127,-2.822373,-3.86173,-4.030393,-4.0407753,-3.968481,-3.6526854,-3.821249,-3.6659565,-3.6448267,-3.6030078,-3.2310371,-3.4682145,-3.804172,-3.6974711,-3.6681294,-3.0211594,-3.746296,-3.7175956,-3.6214442,-3.621191,-3.4673862,-3.5300395,-1.722146,-3.3972185,-4.165789,-4.3460646,-4.133805,-3.928309,-2.651092,-4.2218347,-4.156034,-4.3169684,-4.2306995,-4.100277,-3.940217,-3.6879861,-3.7128286,-3.8899093,-3.5213828,-2.6914835,-4.0316157,-4.0222354,-3.6095562,-4.1705794,-3.799838,-3.228543,-4.103704,-4.295275,-4.134928,-4.0092025,-3.7750807,-3.905087,-3.812118,-3.7127814,-3.6655777,-3.7081876,-3.486015,-3.5211015,-2.177078,-3.8106523,-4.2279396,-2.903245,-3.9002357,-4.4251046,-4.350748,-3.8850584,-4.50734,-4.5165696,-4.662437,-4.3316245,-3.7475562,-4.5135736,-3.921813,-4.3033395,-4.47362,-4.423828,-4.217415,-4.247298,-4.1781764,-4.0227785,-3.9328094,-3.840632,-3.8098612,-3.5139961,-2.666459,-4.0665464,-3.3432536,-4.3654327,-4.382619,-4.3613334,-4.1770644,-4.0660605,-3.9652076,-2.9469087,-4.104047,-4.2492647,-4.314199,-4.101074,-3.9172525,-3.9435315,-3.8372493,-3.7039285,-3.127794,-4.03843,-3.8493624,-3.6462903,-3.7867084,-3.311499,-3.889813,-4.1080847,-4.017444,-3.8485198,-3.7871218,-3.651667,-3.864946,-3.7731347,-3.7010512,-3.5677114,-3.576632,-3.4496365,-3.8315606,-3.5556588,-2.814958,-3.8101106,-3.9158,-4.047201,-3.0627027,-3.8527012,-4.1338468,-4.358441,-4.21942,-4.2086926,-3.5411332,-3.643855,-4.099098,-4.033997,-3.9650054,-4.1698303,-3.7891793,-3.5950546,-3.46941,-4.252877,-4.321076,-4.2526994,-4.066439,-4.194163,-4.101274,-4.116183,-3.99746,-3.903213,-3.648756,-3.735536,-3.8748794,-3.7447577,-3.905086,-3.7976785,-3.1354513,-3.9021058,-3.9435668,-3.738439,-3.3749275,-3.4696884,-3.9179325,-3.6770508,-3.7809458,-3.467288,-3.4157343,-3.717957,-3.7304459,-3.9142337,-4.044413,-3.7472167,-3.4771132,-3.5310087,-3.5658324,-3.416259,-3.323403,-3.2245646,-2.8666875,-2.8042243,-3.0251694,-3.0106544,-2.9562764,-2.912258,-2.5092268,-2.6000504,-2.7901335,-2.6831918,-2.6507783,-2.4549487,-2.52671,-2.2135057,-2.4622927,-2.1205773,-2.3222642,-2.2091572,-2.0438728,-2.078321,-2.0107865,-2.2356186,-2.1180143,-1.9092307,-2.1790228,-2.6154604,-2.6403403,-2.6315649,-2.6479135,-2.5016172,-2.0792308,-2.0930269,-1.8608773,-2.4405904,-2.3046381,-2.417431,-2.3998322,-1.902235,-2.0546355,-2.1242528,-1.9766831,-1.7946157,-1.6211138,-1.2619209,-1.3381078,-1.559891,-1.569941,-1.8880033,-2.019367,-2.1570437,-2.1559105,-2.172193,-2.0596461,-2.062397,-2.3480241,-2.3924456,-2.1240737,-2.1430583,-1.7906685,-1.9171219,-2.1253438,-2.1688323,-2.0199122,-1.8323936,-1.9097946,-1.7840626,-1.6072552,-1.6866622,-1.9011927,-1.690027,-1.366317,-1.3132646,-1.2831533,-1.5734055,-2.3510337,-2.6176953,-3.2297869,-3.3608031,-3.135449,-2.9502864,-3.091588,-3.6549373,-3.3997388,-3.0050316,-2.8590083,-2.6462977,-2.6915848,-3.5971017,-3.4141726,-3.2680278,-3.2096803,-3.0528748,-2.6855862,-2.6577044,-2.5184255,-2.442258,-2.4746804,-2.3335705,-2.4702888,-2.6402373,-3.0434566,-2.802083,-2.7747693,-2.626597,-2.8504996,-3.291399,-3.5124974,-3.7415938,-3.6511145,-2.8842463,-3.4940462
+-1.1615038,-2.5613046,-3.1872058,-3.570192,-3.6884592,-3.2982738,-3.614326,-3.7913532,-3.9804769,-3.6005511,-3.4198194,-3.863954,-3.8134255,-3.8334184,-3.8329148,-3.8244858,-3.7726874,-3.774551,-3.789526,-3.7952213,-3.6763623,-3.3080733,-4.2548127,-4.1991463,-4.175282,-3.5639994,-4.309296,-4.3943152,-4.3834596,-4.347507,-4.1515427,-4.2981744,-4.488869,-4.41722,-4.4159017,-4.506535,-4.374207,-4.371961,-4.160738,-3.8869839,-4.1973596,-4.3733673,-4.3619294,-4.3141804,-4.536776,-4.412639,-4.3009887,-4.1491427,-4.235888,-4.188693,-3.474308,-4.30489,-4.434552,-4.4714584,-4.375565,-4.217123,-4.278978,-4.129318,-4.0677247,-4.2253976,-4.116818,-4.1128106,-3.935925,-4.1663184,-3.7744188,-3.7980113,-3.895146,-4.218399,-4.525422,-4.3853493,-4.2699265,-4.386996,-4.3205748,-4.2159867,-4.1262126,-4.049171,-3.8619456,-4.3882127,-4.2670283,-4.3375964,-4.29447,-4.2170787,-4.126652,-2.7648857,-4.326695,-4.487587,-4.510163,-4.1132536,-4.5483747,-4.546775,-4.493336,-4.3753967,-4.4527774,-4.308059,-4.0918627,-4.356845,-4.3359694,-4.5347905,-4.4144444,-4.26448,-4.320076,-4.2153955,-4.2379503,-4.153667,-3.517539,-4.1776247,-4.39712,-4.43337,-4.028588,-4.4530234,-4.3611884,-4.3691397,-4.193334,-4.251083,-4.0014086,-3.9464679,-4.1389923,-4.1174316,-3.136922,-3.991243,-3.627402,-4.184669,-4.2949457,-4.1867847,-4.2610908,-3.987712,-4.1873755,-3.9396791,-4.2179055,-4.1598263,-4.179999,-3.688068,-3.877438,-3.9318523,-3.8472552,-3.1823583,-3.6812782,-3.814815,-4.0836787,-4.373347,-4.3456197,-4.18093,-4.1013975,-4.4642806,-4.3540397,-4.398219,-3.6714728,-4.263023,-4.151279,-4.2019644,-4.1133127,-4.1704307,-3.4751878,-4.035507,-4.213259,-4.2142954,-4.2149167,-4.2622514,-4.2377543,-4.1186223,-4.012445,-3.2744849,-3.7812953,-3.4856176,-4.0462613,-4.2980065,-4.239303,-4.195808,-4.2489333,-3.982853,-4.0462794,-4.2409215,-4.2624183,-4.3065324,-4.326224,-4.3584642,-4.278536,-4.264198,-4.3190036,-4.130992,-4.203036,-2.9717605,-3.3327093,-3.8008962,-4.1237993,-4.207132,-4.0739074,-4.039823,-4.109348,-4.08418,-4.197911,-4.185869,-4.110217,-4.029795,-4.1105676,-4.216367,-4.034668,-4.1055355,-4.1003447,-3.8475451,-3.8885684,-4.1082754,-2.97135,-2.9969277,-3.9146485,-4.054665,-4.2260547,-4.3477488,-4.295658,-4.120861,-4.402389,-4.271479,-4.133845,-4.41485,-4.215055,-4.131571,-4.058043,-4.2805967,-4.228728,-4.1502867,-4.000752,-4.021864,-3.8941054,-4.2962737,-4.317017,-4.3999887,-4.251074,-4.244019,-4.1678877,-4.2394567,-4.283304,-4.219371,-3.9253106,-4.367637,-4.364823,-4.079278,-3.969582,-4.070927,-4.431806,-4.3731833,-4.4665265,-4.3583035,-3.9408708,-3.948557,-4.178689,-4.2498593,-4.421401,-4.5270777,-4.137499,-3.376554,-3.884883,-3.7067604,-3.5505238,-3.271755,-2.7438188,-1.833833,-1.9936018,-2.044992,-2.0394754,-2.0584946,-0.8103501,-0.61028093,-0.9907368,-1.0638049,-1.0500588,-0.9447164,-0.960067,-0.9325511,-0.9038752,-1.0580301,-1.580616,-2.6827621,-2.317554,-2.0858488,-1.9283237,-2.0216055,-2.1984923,-2.907752,-3.9547381,-3.3478577,-2.6620047,-2.3376858,-2.1395297,-1.9722295,-1.5712647,-1.2723863,-1.8680558,-3.4141839,-3.4435663,-3.4534955,-3.2701979,-3.3210154,-3.7390156,-4.0579467,-3.700377,-3.9860597,-4.1067595,-4.076631,-4.2062435,-4.1081643,-4.027762,-3.8951259,-3.707415,-3.8315873,-3.7621627,-3.4945385,-3.595039,-3.7313294,-3.5375297,-2.8089178,-2.3803568,-2.3498569,-2.2556472,-3.9908137,-4.0638804,-3.38319,-2.9943748,-3.2999978,-4.0272536,-3.8138003,-3.8954701,-3.718923,-3.6744256,-3.865972,-4.107732,-4.1153164,-4.052587,-3.9995136,-4.052918,-3.647368,-3.9229703,-4.1284547,-3.99292,-4.064738,-3.0320857,-3.9814544,-4.0373054,-3.715303,-3.3296196,-2.9906597,-3.315819,-3.9862795,-4.2423677,-3.8236117,-3.9199367,-3.4387953,-2.81195,-2.682508,-2.5468893,-2.4122465,-2.142162,-2.1323647,-2.2462034,-2.9762044,-3.873612,-4.0409684,-3.7562718,-3.674115,-4.0002294,-3.936379,-3.842565,-4.2231193,-4.305141,-4.2140512,-3.1092107
+0.26601496,-0.16912517,-0.65887403,-1.6662796,-2.9306502,-3.4318628,-3.2480597,-3.5207443,-3.8862677,-3.7087688,-3.6238825,-4.0419183,-3.9409442,-4.011992,-3.9877558,-3.9649577,-3.8808913,-3.7933335,-3.7033963,-3.5410962,-3.4402885,-3.3706276,-3.4908652,-3.7371087,-3.8618793,-3.7182808,-3.958147,-4.09864,-4.192193,-4.1935854,-4.1479683,-4.1757445,-4.1769357,-4.1129827,-4.120186,-4.070063,-4.071485,-4.0759,-4.0474906,-3.8881235,-3.911107,-3.9534035,-4.1596713,-4.1774993,-4.000719,-4.0753303,-4.008803,-4.2685194,-3.9917269,-4.041987,-4.0859427,-4.083487,-4.147166,-4.1371503,-4.146288,-4.0602746,-4.0224514,-4.009252,-3.9604473,-3.931026,-3.9904685,-3.9504933,-3.7315593,-3.8612604,-3.8543115,-3.9107194,-3.9354138,-4.0647755,-4.0392957,-4.010325,-3.9623218,-3.9375072,-3.8663182,-3.9503398,-3.8559399,-3.7933426,-3.6961956,-3.708497,-3.7374668,-3.7157602,-3.69845,-3.5168576,-3.6039639,-1.7291346,-3.8778396,-3.706851,-3.781344,-3.7953677,-3.8361359,-3.8867092,-3.9492664,-3.9445062,-3.9058394,-3.6728594,-3.6673338,-3.908072,-3.8465562,-3.9038491,-3.8018289,-3.8482504,-3.8974166,-3.9211268,-3.7622733,-3.7318754,-3.69591,-3.7627387,-3.772809,-3.816897,-3.7148938,-3.713375,-3.8091545,-3.7893863,-3.6756794,-3.6114542,-3.5095675,-3.399862,-3.1803727,-3.4577675,-3.1532502,-3.7125926,-3.6562011,-3.6335826,-3.6782808,-3.702826,-3.6587522,-3.638043,-3.6626384,-3.467524,-3.6391764,-3.5715177,-3.4521017,-3.3344448,-3.268999,-3.2388427,-3.1856267,-3.1346679,-3.2011323,-2.9196427,-3.2328432,-3.5437136,-3.4438124,-3.5413375,-3.6934175,-3.6870852,-3.6965032,-3.6539898,-3.5313423,-3.4753475,-3.3489485,-3.1447947,-3.1083536,-3.262741,-3.28273,-3.2167785,-3.3903599,-3.3672342,-3.2929988,-3.25084,-3.251393,-3.221984,-3.177312,-3.0421143,-3.0799084,-3.0673432,-3.1690347,-3.2752182,-3.311581,-3.1818895,-3.0725563,-2.9298768,-2.7873611,-2.7137845,-3.059161,-3.1432195,-3.066072,-3.0458229,-2.9678786,-2.9056833,-2.8138099,-2.8567986,-3.0060353,-1.9394207,-2.5976155,-3.0146787,-3.1752071,-3.3772597,-3.317511,-3.3111868,-3.3990653,-3.344591,-2.9385872,-3.2929702,-3.5815883,-3.656183,-3.6506035,-3.4881983,-3.609285,-3.3704348,-3.409095,-3.5188394,-3.4833012,-3.4022317,-2.9574144,-2.1446981,-3.4942565,-3.800754,-3.9819407,-3.9785957,-3.8665614,-3.6299043,-3.7713294,-3.863697,-3.754809,-3.7055068,-3.4842503,-3.6468496,-3.365992,-3.6474862,-3.7365222,-3.7362676,-3.6593878,-3.6864638,-3.4223251,-3.6036668,-3.758801,-3.7074423,-3.673307,-3.6569722,-3.7070622,-3.6756372,-3.612017,-3.5875347,-3.2555327,-3.525181,-3.6777415,-3.6481533,-3.4420018,-3.4522934,-3.6130893,-3.6954808,-3.6437972,-3.4679437,-3.3095803,-3.3180435,-3.9338856,-3.9870696,-4.0481267,-3.7539692,-3.7841659,-3.9773126,-3.8632092,-3.9288764,-3.7859302,-3.484363,-3.286344,-3.3059168,-3.5094798,-3.568758,-3.5296187,-2.7224112,-1.8344293,-1.8800097,-2.661644,-3.1114576,-2.8567784,-2.502067,-2.2906618,-2.1133041,-2.6192524,-3.1755152,-3.439031,-3.5306764,-3.5726762,-3.6755497,-3.4538658,-3.3904514,-3.7195406,-3.7520342,-3.9950461,-3.5910645,-3.048343,-2.6774182,-2.4479182,-2.1305003,-1.536077,-1.2136979,-1.7162671,-2.6925788,-2.7018065,-3.0714433,-3.4402094,-3.6142259,-3.8121305,-4.0805936,-3.95443,-3.9775853,-3.912026,-4.0080748,-3.937554,-4.072382,-4.12366,-4.0637565,-4.055337,-4.006432,-3.9094405,-3.8514576,-3.83572,-3.9720187,-3.7554069,-3.4131603,-2.989623,-3.2862973,-3.548894,-3.8915334,-3.869307,-3.3002462,-3.401443,-3.932939,-3.9258924,-4.0616884,-4.1837773,-4.1254296,-3.995088,-4.1105475,-4.072545,-4.1227307,-4.08738,-3.756247,-3.9065557,-3.9941945,-3.9316044,-3.9081964,-4.027311,-4.0967965,-3.7459717,-4.1933985,-4.3048625,-4.122553,-3.9618278,-3.9381318,-3.8964276,-4.087266,-4.2708926,-4.29806,-4.12881,-3.9306374,-3.769908,-3.8349981,-3.7509804,-3.3778415,-2.9038188,-2.9058628,-3.4523973,-3.674459,-3.8827448,-4.051293,-3.8407936,-3.7421994,-3.8192563,-3.487367,-3.752007,-4.0433307,-4.0200777,-4.0781775,-3.4939008
+-1.1358798,-2.4592938,-2.8419213,-2.8926768,-3.276505,-3.0639045,-2.886108,-3.2848887,-3.18571,-3.1526308,-3.0285459,-3.213774,-3.6178937,-3.6649318,-3.6623504,-3.6536412,-3.5683556,-3.4710498,-3.5566678,-3.5673513,-3.5134635,-2.6279702,-3.8132052,-3.9625058,-3.9230585,-4.010091,-3.4043834,-3.6804085,-4.162234,-4.129055,-2.8463008,-3.081324,-3.818305,-4.1867642,-4.02469,-3.9235787,-4.178065,-4.114103,-4.328057,-4.2352033,-2.9504037,-3.8244853,-3.8686218,-4.1835446,-4.2719254,-4.1643105,-3.9575038,-4.172853,-4.314963,-4.2113404,-3.5364587,-3.961069,-4.1490126,-4.179298,-4.1438727,-4.1526513,-4.125622,-4.1399627,-4.132463,-4.10834,-4.1111016,-4.0867343,-3.9818282,-4.007276,-3.4841137,-3.2910006,-4.286182,-4.2859597,-4.3025937,-4.1863456,-4.103431,-4.119233,-4.1062226,-3.9959722,-4.0240345,-3.2305005,-3.5483265,-3.7155433,-4.224241,-4.3464103,-4.317434,-3.5308502,-4.1337085,-4.330642,-3.060567,-4.3391557,-4.411962,-4.127298,-4.4640694,-4.3768725,-4.299316,-4.231767,-4.221949,-4.2366743,-3.0017023,-3.0486426,-3.930491,-4.0026,-3.952478,-4.0726166,-4.4156947,-4.3898196,-4.2438517,-4.150574,-4.101625,-4.494182,-4.4444265,-4.3662224,-4.3436017,-4.376208,-4.305451,-4.204147,-4.216856,-4.237638,-4.217378,-4.1579895,-4.1835303,-3.7181363,-3.2038493,-3.5886145,-4.265438,-4.2099967,-4.3936357,-4.2656465,-4.030704,-4.3289037,-3.712668,-4.30845,-4.3859305,-4.2662315,-4.3087993,-4.2482786,-4.245582,-4.187156,-4.111978,-4.1277046,-3.727056,-4.2023497,-3.9117713,-4.217546,-3.8433852,-4.2006187,-3.7243142,-4.2666755,-4.267951,-4.2597017,-4.297149,-4.294552,-4.2482595,-4.2881775,-3.9625692,-4.2226787,-4.3447657,-4.170586,-4.286474,-4.263256,-4.239864,-4.188063,-4.1532235,-4.1201644,-4.10752,-4.06624,-4.0788918,-3.989141,-4.111179,-4.141069,-4.1376324,-4.112887,-4.054893,-3.997023,-2.5796502,-3.1710055,-4.188606,-4.212458,-4.2766666,-4.2804084,-4.3009806,-4.2858596,-4.152104,-4.1038575,-4.1656113,-3.1186826,-3.9008584,-4.1657767,-4.2329865,-4.1938868,-4.1649013,-4.2497754,-4.2411027,-4.1371255,-3.1621192,-4.097832,-4.178786,-4.2173066,-4.256232,-4.2114253,-4.176041,-4.1712365,-4.1712584,-4.145816,-4.1183953,-4.140223,-4.095224,-2.2592633,-4.016497,-4.131464,-4.296856,-4.16896,-4.074473,-4.0666842,-4.130312,-4.1215725,-4.1712193,-4.067495,-3.9949064,-4.0747695,-4.054691,-3.4973214,-3.9084692,-3.9894633,-4.092354,-4.1641817,-4.134337,-4.0690603,-4.121862,-3.9626698,-3.8390584,-3.9114532,-4.002732,-4.0139008,-3.9741821,-3.971438,-3.7980132,-3.921524,-3.8463054,-3.7445846,-3.7321415,-3.6907792,-3.6747718,-3.7968001,-3.6800666,-3.7152324,-2.6173677,-2.1631627,-3.8194914,-4.0475044,-4.0873933,-3.8886895,-3.943349,-3.054534,-3.9015002,-3.9151287,-3.6488028,-3.3540142,-2.9551206,-2.1862676,-3.2079685,-3.3626702,-3.50143,-3.0156732,-2.3307185,-1.9746232,-3.3340216,-3.0490897,-2.8898134,-2.6128447,-2.8387456,-2.3477259,-3.6473603,-4.0542536,-3.5957742,-4.1617956,-3.2389903,-3.729343,-3.4235225,-3.291808,-3.7345319,-3.6262455,-4.0341644,-4.007904,-3.4636445,-3.2390852,-3.108372,-2.8169997,-2.0334191,-1.4572115,-1.6792283,-2.8391213,-3.5653043,-3.924849,-4.008141,-3.750237,-4.2055984,-4.2835584,-4.076077,-4.329592,-4.274838,-2.9287357,-3.9561,-4.160629,-4.314279,-4.192641,-3.7584329,-3.6139288,-3.4178412,-3.0975947,-3.3026063,-3.5638223,-3.5061312,-3.3464243,-2.839171,-2.8921537,-3.3566613,-3.7883954,-3.4204872,-3.4352927,-3.3369656,-3.8969889,-4.1958766,-3.8282127,-3.8597221,-3.9551244,-3.6895351,-3.8698068,-4.0285425,-3.9960403,-3.9257245,-3.4549036,-3.9321132,-3.9644694,-3.7280731,-4.01714,-3.7545257,-3.6574912,-2.811758,-3.957605,-3.978262,-3.7124257,-3.5345569,-3.6693103,-3.71238,-3.8229833,-3.9106574,-3.7838297,-3.9064212,-3.6635525,-3.3709838,-3.3076952,-3.3301044,-2.9956927,-2.5522504,-2.0639062,-3.196551,-3.4454956,-3.7595506,-4.0287747,-3.8104148,-3.7434707,-3.7714562,-3.4065619,-3.7969465,-3.5818594,-4.0940566,-4.074375,-3.2678585
+-1.0379949,-2.4283574,-3.346279,-3.566987,-3.8734994,-3.5513062,-3.02943,-3.709013,-3.6839652,-3.6256921,-3.484683,-3.7683434,-3.9433312,-3.9574795,-3.8878512,-3.8035874,-3.7400503,-3.7511082,-3.7547407,-3.7468238,-3.7768536,-2.9928675,-3.8258605,-4.0969977,-4.0315356,-4.0848002,-3.9162269,-3.5003178,-4.057244,-4.1111636,-2.2735085,-3.8700862,-3.5510678,-4.1066203,-4.2453084,-4.2051835,-4.363174,-4.3957343,-4.3577285,-4.252334,-3.8196588,-3.7999787,-4.3943152,-4.490747,-4.541492,-4.330384,-3.9602323,-4.011845,-4.207072,-4.2785106,-3.322572,-4.1815834,-4.3346047,-4.3260508,-4.3564296,-4.2068934,-4.1811404,-4.202739,-4.087438,-3.8824992,-3.1558163,-3.6660223,-4.00349,-4.217998,-4.404163,-3.849349,-4.464585,-4.4985013,-4.584479,-4.453653,-4.372684,-4.329822,-4.2464356,-4.18586,-4.0813856,-3.3640757,-4.195372,-4.2225475,-4.2611213,-4.1685967,-4.024607,-4.0165615,-3.6934018,-4.085105,-3.7869506,-4.012931,-3.9902568,-3.4226975,-4.042219,-4.265613,-4.3264766,-2.8653722,-4.214321,-4.303642,-3.5847547,-4.2651234,-4.4121976,-4.625726,-4.597646,-4.540712,-4.5603046,-3.96063,-4.513532,-4.5247755,-4.3333535,-4.483173,-3.7853389,-4.1846375,-4.4926243,-4.529268,-4.560204,-4.459372,-4.374938,-4.4306197,-4.4026537,-4.0706697,-3.8747916,-3.410776,-4.515327,-4.401008,-4.073634,-4.3446245,-4.299216,-3.0282369,-4.564334,-3.0363598,-4.1730156,-4.490102,-4.1378846,-3.0702922,-4.289398,-3.9608808,-4.4724746,-4.573652,-4.6533813,-4.567594,-4.683534,-4.654962,-4.3093247,-4.248037,-3.9156222,-4.541029,-3.9742846,-4.6259103,-4.5194545,-4.5696483,-4.565262,-4.577818,-4.4693074,-4.491005,-4.3416505,-4.2379355,-3.742765,-4.021184,-4.4454694,-4.287309,-4.249738,-4.1692786,-4.142819,-4.1285586,-4.1123385,-4.087079,-4.0452614,-4.0828204,-3.9809146,-4.0771804,-4.037254,-3.952826,-3.0561233,-4.1323066,-4.3129554,-4.104591,-4.137855,-4.213776,-4.2276435,-4.060589,-4.0905805,-4.079896,-2.4703977,-4.052975,-4.14041,-3.9503102,-4.333113,-4.422551,-4.3833184,-4.3248744,-4.366689,-4.3754983,-4.3538814,-2.6891053,-3.631554,-4.283057,-4.3463535,-4.3952484,-4.4044814,-4.3737855,-4.3178616,-4.2787943,-4.228056,-4.2371793,-4.2782626,-4.286823,-4.2132964,-4.0740924,-4.169509,-4.156715,-4.101685,-3.9452796,-3.9406362,-4.0396028,-4.0512056,-3.9995685,-4.070688,-3.981101,-4.0258718,-4.077569,-4.0696297,-3.6545053,-3.9083376,-3.9595065,-3.9438586,-3.9847274,-3.8318982,-3.9577022,-4.000588,-3.8904643,-3.8839622,-3.969139,-4.011703,-4.0344863,-3.9977098,-3.9509807,-4.075271,-3.9565954,-3.9392877,-3.926488,-3.8372922,-3.8984494,-3.8704839,-4.036957,-3.9521542,-3.9494553,-1.9017444,-3.4426088,-4.366058,-4.421698,-4.353758,-2.915739,-3.7672052,-3.3776238,-4.0282645,-4.197922,-4.1674733,-3.6437645,-3.0561802,-2.6088362,-3.120081,-3.8073888,-4.018581,-3.3115234,-2.5806265,-3.3157532,-4.043974,-3.9245586,-3.8431058,-4.039533,-4.043852,-3.9921284,-4.088154,-4.5134044,-4.4827976,-4.5210676,-3.7624536,-4.1365886,-3.925201,-3.871294,-3.3276465,-3.6682184,-4.2497787,-4.0614824,-3.8182044,-2.7834117,-3.0157962,-2.5447211,-1.9845152,-1.3557839,-1.3509495,-2.8110867,-3.9285512,-4.1901097,-4.3574653,-4.466558,-4.372663,-4.4118533,-3.7294917,-4.4560685,-4.4556403,-2.9265423,-3.8808856,-4.2154098,-4.224332,-4.2558947,-4.0591106,-3.9846826,-3.6912732,-3.7821822,-4.1119432,-4.33888,-4.2782645,-3.9203382,-3.600873,-4.0023637,-4.3808,-4.4930363,-3.5024586,-4.059355,-4.0166144,-4.4258504,-4.563869,-4.1831813,-3.6048007,-4.202522,-4.146114,-4.3278413,-4.396609,-4.3803554,-4.4052725,-4.0062723,-4.3769174,-4.4416776,-4.2330694,-4.364984,-4.1387625,-4.142583,-3.02675,-4.2619553,-4.3574133,-4.1362634,-3.9813151,-4.0923333,-4.1406317,-4.266188,-4.364255,-3.7326245,-4.189055,-3.717145,-3.6830096,-3.331627,-3.718842,-3.4652543,-2.685987,-2.1849518,-3.7693868,-4.086683,-4.2841434,-4.3016963,-3.9554,-4.0497975,-4.179865,-3.3877907,-3.9312587,-4.028566,-4.337415,-4.529156,-2.6403131
+-1.3246157,-2.759584,-3.7344737,-3.926105,-4.1156135,-4.0809636,-3.5659487,-4.002261,-4.3191605,-4.22424,-4.009546,-3.704135,-4.0262485,-4.3652077,-4.4240336,-4.3813667,-4.309276,-4.2271023,-4.110658,-3.9826903,-4.072222,-3.9217381,-4.1029344,-4.1421714,-4.0863585,-4.0758724,-4.0680957,-4.051731,-4.0583386,-3.8989954,-2.4125686,-3.6741412,-3.6622615,-4.399678,-4.591985,-4.4459977,-4.553919,-4.493716,-4.368372,-4.3043294,-4.310263,-4.179686,-3.0003679,-4.425691,-4.5228376,-4.45252,-4.0359716,-4.1785135,-2.1298442,-4.110149,-4.498645,-4.7027693,-4.7049756,-4.621368,-4.531486,-4.366223,-4.2950745,-4.305161,-2.705052,-4.3643823,-4.6401467,-4.6811786,-4.628822,-4.520547,-4.451637,-3.5660784,-3.8416429,-4.6423173,-4.7359753,-4.651407,-4.5370326,-4.3854165,-4.2609553,-4.2188287,-4.1729712,-4.188126,-4.1233907,-4.0281596,-4.014667,-4.02753,-4.02552,-3.8486438,-3.7845573,-3.8262734,-3.8711019,-3.8439746,-3.8344626,-3.5477328,-2.8507724,-3.8627286,-3.3407998,-4.078283,-4.1738467,-4.1533766,-4.108065,-4.019174,-4.0216165,-3.8237414,-3.3570712,-4.0241923,-4.1643705,-3.5560918,-4.1770663,-4.223293,-4.132015,-3.2905834,-2.8615208,-4.192348,-4.000628,-4.498092,-4.530818,-3.5542054,-4.4531865,-3.0321596,-4.4081254,-4.490167,-4.465917,-4.3663225,-4.24596,-4.150474,-3.7919087,-4.142421,-3.3574586,-4.209867,-4.388457,-3.1408043,-3.8231797,-4.5149646,-4.4456034,-4.4808106,-4.2035165,-3.0026135,-3.9786258,-4.530145,-4.7026944,-4.65542,-4.613046,-4.5817037,-3.388063,-4.187757,-3.6318204,-3.6340823,-4.329476,-4.5629725,-4.5967317,-4.61113,-4.5009933,-4.264213,-4.3282366,-4.5390334,-4.4950304,-4.4188333,-4.407623,-4.135306,-1.775981,-4.120217,-4.607664,-4.6277113,-4.6218877,-4.500938,-4.43119,-4.335277,-4.275841,-4.25631,-4.074218,-4.216116,-4.281694,-4.2718863,-4.257075,-4.1412654,-4.1903415,-3.8338838,-2.7181118,-4.037109,-4.1468625,-4.1662726,-4.195086,-4.2083607,-4.1789055,-3.5886564,-3.3321342,-4.1274,-4.2260566,-4.2124743,-4.2114434,-4.1954303,-4.1104627,-4.0823035,-4.077073,-3.0336099,-2.5104334,-4.003927,-4.320372,-4.447722,-4.523007,-4.543067,-4.5021143,-4.5195975,-4.4073753,-4.376141,-4.3256717,-4.29353,-4.2517247,-4.199445,-4.112151,-4.0141864,-3.9354095,-3.9228797,-3.8898416,-3.9090362,-3.8617644,-3.8266768,-3.8353992,-3.8169746,-3.8895984,-3.8895507,-3.8679605,-3.8378348,-3.7741346,-3.7929,-3.7646108,-3.7708402,-3.7783709,-3.65584,-3.6989455,-3.6707985,-2.5934289,-3.6269395,-3.8545017,-3.9620938,-4.010713,-4.035807,-4.087796,-3.9188242,-3.969195,-3.9023747,-3.940579,-3.9768467,-3.9109483,-3.8579803,-3.798902,-4.074685,-2.5814679,-3.4333134,-4.0566907,-4.3542666,-4.3003306,-3.91929,-3.773397,-3.643926,-4.407091,-4.599933,-4.3512354,-4.1037908,-3.8212447,-4.090219,-4.404163,-4.565498,-4.6330104,-4.0428395,-4.2052846,-4.641787,-3.952674,-4.4382854,-4.6941066,-4.6375184,-4.6148586,-4.5990434,-4.786985,-4.732986,-4.7751966,-4.7910447,-3.9393563,-4.555218,-4.3386526,-4.2522426,-3.2981482,-3.5709302,-4.743564,-4.47632,-4.5575824,-3.5520723,-4.0446167,-3.5007296,-2.9844089,-3.010888,-4.094723,-4.82913,-4.748527,-4.7944503,-4.6615252,-4.686855,-4.7376895,-4.6198106,-4.636408,-3.3644664,-4.1476903,-4.1295786,-4.5736775,-4.8991094,-4.7545657,-4.75626,-4.6094966,-4.5072036,-4.56671,-4.683567,-4.702461,-4.5940866,-4.284896,-4.351358,-4.307204,-4.575394,-4.558329,-3.7343206,-3.6773272,-4.358968,-4.4648314,-4.853109,-4.8054433,-4.588327,-3.4118104,-4.436299,-4.736743,-4.7141404,-4.7149644,-4.730154,-4.7311907,-4.6229405,-4.6325684,-4.6279693,-4.605965,-4.524807,-4.492925,-4.5359607,-4.5482335,-2.7614713,-4.4200697,-4.581083,-4.515181,-4.8100533,-4.688716,-4.3695254,-4.6274514,-3.9741874,-4.5437007,-3.4652362,-4.1765466,-3.957893,-4.5653424,-4.4971013,-4.3999133,-4.4112573,-4.802954,-4.7152042,-4.47133,-3.278135,-4.444843,-4.648826,-4.7094927,-4.56366,-4.4685655,-4.341664,-4.4672112,-4.114018,-3.8091612
+-0.22974437,-1.987606,-3.272314,-3.7254663,-3.8912773,-3.826861,-3.1131814,-3.969545,-4.152264,-3.9370694,-3.9075055,-3.4914656,-4.172984,-4.3405967,-4.2092204,-4.196414,-4.1505895,-3.9472766,-3.8891878,-3.9061155,-3.8190427,-3.2053542,-3.8565383,-4.1008215,-3.9733882,-3.9928927,-3.8684678,-3.9680758,-3.9207196,-3.8714266,-3.1681545,-2.9291892,-3.4336584,-4.1181107,-4.2255206,-4.1321435,-4.0681286,-4.0378246,-4.0100713,-3.9326653,-3.8349013,-3.8602662,-2.3913999,-4.0457053,-4.1115303,-4.015762,-2.4457512,-4.180725,-3.6842475,-3.8468385,-3.8463898,-4.3439565,-4.3309145,-4.279758,-4.2343307,-4.231316,-4.0302134,-3.625673,-1.5506074,-3.8064694,-4.183431,-3.578115,-3.9133143,-4.4181857,-4.607948,-3.3424811,-2.9049206,-4.2218513,-4.3586664,-4.542163,-4.5086913,-4.5291657,-4.314979,-4.2349916,-4.1493554,-3.1026103,-4.190577,-3.425023,-4.239011,-4.4133344,-4.38712,-4.202452,-4.0279536,-3.9493585,-3.9017658,-3.864056,-3.7837996,-3.7802558,-3.594022,-3.0799234,-4.0864863,-4.2855554,-4.189052,-4.1507173,-3.9808617,-3.635673,-3.618612,-4.2705083,-4.323298,-4.016247,-4.188528,-3.9613614,-4.066005,-4.030208,-3.9180198,-3.73624,-2.2908297,-3.2465708,-4.1451216,-4.1947126,-4.1657934,-4.455196,-4.472671,-4.441389,-4.3180456,-4.221914,-4.0657325,-3.977324,-3.8225374,-3.7750936,-3.6653876,-3.327962,-3.879027,-2.8025718,-3.7527738,-3.1376822,-3.922134,-4.317573,-4.4738574,-4.3153462,-4.0056453,-4.19253,-3.3037853,-4.260129,-4.4174986,-4.4404206,-4.3638563,-4.2813973,-4.1052213,-2.9847627,-3.3987257,-3.5832531,-4.274236,-4.453832,-4.324231,-3.7693124,-4.2956862,-3.0083075,-4.2856297,-4.445222,-4.1158814,-3.7023954,-4.245266,-4.477491,-1.6932526,-3.983585,-4.4152517,-4.569784,-4.5941987,-4.5361934,-4.458217,-4.375511,-4.289827,-3.5017903,-3.9894948,-3.4870524,-4.226762,-4.4859147,-4.520897,-4.4824815,-4.303206,-4.228555,-4.0917845,-3.723804,-4.104297,-4.1911745,-4.275922,-4.211991,-4.0863667,-4.091494,-4.051555,-4.1207747,-4.0023837,-3.9880586,-4.0232606,-3.9753966,-3.9549465,-3.964943,-3.8697152,-2.6650717,-1.473131,-3.9310374,-4.235154,-4.4188757,-4.498965,-4.533998,-4.5468946,-4.492167,-4.448333,-4.452338,-4.416206,-4.3692703,-4.32429,-4.3153415,-4.3024707,-4.113766,-4.0622954,-4.072434,-4.0596757,-4.0302434,-4.068592,-4.088845,-4.137853,-4.119719,-4.09428,-4.1140146,-4.1586475,-4.1045985,-4.1581006,-4.06533,-4.0037527,-3.9715643,-3.9619126,-4.0149302,-3.9556065,-3.8714576,-2.780731,-3.8581567,-4.3077006,-4.348101,-4.3523726,-4.342319,-4.4066367,-4.110363,-3.800024,-3.6801994,-3.7860675,-3.958046,-4.093212,-4.280804,-4.0531096,-3.9146419,-3.8101783,-4.058329,-3.1548347,-4.3111873,-4.2475224,-3.589435,-3.483317,-2.863416,-4.0127068,-4.185196,-4.030804,-3.4400463,-3.097039,-3.3889349,-3.5874808,-3.879766,-4.246754,-3.879623,-3.9442053,-4.434735,-3.4337249,-3.9330435,-4.045622,-4.13924,-4.4066854,-4.4616013,-4.7120266,-4.6422563,-4.6630063,-4.7669253,-4.237205,-4.2648377,-3.443657,-3.0615342,-2.7426758,-3.1450038,-4.050719,-4.246474,-3.895718,-3.5995991,-3.3881705,-2.6874828,-2.19517,-2.4863122,-4.0031857,-4.59859,-4.7107615,-4.7322006,-4.756765,-4.735934,-4.7941175,-4.719059,-4.716352,-2.8841116,-2.8815322,-3.7010808,-4.0478234,-4.2973647,-3.8193164,-4.1738734,-3.9396605,-3.763492,-4.0151772,-4.054547,-4.325194,-4.5318637,-4.430087,-4.496921,-4.335912,-4.491754,-4.440328,-3.2636118,-4.132145,-3.9798322,-4.089852,-4.4071264,-4.6704993,-4.5338097,-3.3310986,-4.304857,-4.2701964,-4.359266,-4.554914,-4.7075114,-4.6997843,-4.162683,-4.6318626,-4.7490067,-4.7654757,-4.567805,-4.409971,-4.147267,-4.4434123,-3.98772,-4.45168,-4.092646,-4.0282545,-4.0455275,-4.1444182,-4.3195896,-4.267474,-4.078419,-4.094312,-3.0965369,-3.2456245,-3.5076163,-3.9026866,-3.5242524,-3.3364868,-3.5984974,-4.191175,-4.174555,-4.203935,-3.191839,-4.3405995,-4.3738155,-4.4269633,-4.451228,-4.4123597,-4.339992,-4.3196735,-4.2396183,-3.650609
+-1.1893673,-2.2444916,-3.8254414,-4.0662165,-4.2402987,-4.149407,-3.8834038,-4.140285,-4.263869,-4.0779896,-3.879455,-3.5705037,-4.1115394,-3.7644362,-3.5960915,-4.1790147,-4.394859,-4.3476605,-4.2232013,-4.101452,-4.0622573,-2.9459763,-4.2322083,-4.3530326,-4.240498,-4.1399503,-4.008658,-3.9692392,-3.9136238,-3.8096986,-2.5960002,-3.2835732,-3.7293239,-3.721127,-4.468372,-4.573816,-4.589947,-4.509686,-4.3646474,-4.259153,-4.0909777,-4.072236,-3.7312493,-3.5887418,-4.349864,-4.1759887,-2.168723,-4.35576,-2.8119931,-4.1112123,-4.3174567,-4.580002,-4.4134965,-4.3728113,-4.3175755,-4.22687,-4.105371,-4.0512137,-2.9064157,-4.326713,-4.1918564,-4.0229154,-3.0762928,-3.846045,-3.6200824,-3.1439323,-2.371176,-3.945375,-4.549235,-4.5680585,-4.454531,-4.4757905,-4.318499,-4.380277,-2.2724383,-4.177235,-4.5845127,-4.0362754,-3.8463454,-4.4640427,-4.465736,-4.38977,-4.363809,-4.2965693,-4.25565,-4.122172,-2.6255362,-3.9011288,-4.338737,-3.2105813,-3.5997496,-3.9660592,-4.5759907,-4.618794,-4.52739,-4.4658227,-4.0797176,-4.4553113,-4.3860273,-4.1239796,-4.1116095,-4.051948,-4.0036845,-3.968905,-3.8407736,-3.8413172,-3.6797197,-2.9415836,-3.832981,-3.7674365,-2.5925808,-4.1973176,-4.0234056,-4.2688594,-2.872092,-4.298009,-4.3986406,-4.413693,-4.289105,-4.190704,-3.9914708,-3.585073,-3.125513,-4.3442163,-4.237622,-3.2846706,-3.8841853,-4.4455066,-4.368028,-3.297468,-3.790358,-4.0935698,-3.748159,-4.376433,-4.3212924,-4.307829,-4.18826,-4.1329665,-4.0357413,-3.9095263,-3.7687516,-2.8779066,-4.068304,-4.353879,-2.2217908,-3.9591126,-4.066096,-2.9539738,-4.2140718,-4.297379,-4.057653,-4.2647142,-3.2184863,-3.884035,-2.361907,-4.1177115,-4.578856,-4.5047574,-4.469587,-4.440243,-4.3650312,-4.276772,-4.1488748,-4.178985,-3.9471364,-2.9758494,-3.99886,-4.501288,-4.3852453,-4.336531,-4.363242,-4.323343,-3.2787764,-4.3279147,-4.501145,-4.446733,-4.3692417,-4.1432614,-3.8414073,-4.070969,-4.0148916,-3.9732308,-3.7088842,-3.9625487,-3.940528,-3.847412,-3.8577595,-3.8690958,-3.8412914,-1.5538654,-1.8708277,-4.32736,-4.513003,-4.561394,-4.55839,-4.5176477,-4.413196,-4.0206532,-4.447095,-4.434607,-4.3205123,-4.2528706,-4.1907043,-4.2529917,-4.2515483,-4.201243,-4.0490026,-4.005455,-3.9440427,-3.8398752,-3.871923,-3.880724,-3.884256,-3.8806844,-3.88619,-3.8263392,-3.8369808,-3.868857,-3.9298158,-3.8782678,-3.875547,-3.8599734,-3.8581605,-3.946612,-3.9886842,-3.9105172,-3.8292422,-3.9091363,-3.9448552,-3.9585085,-3.8723202,-3.804397,-3.9589052,-4.2048573,-4.239207,-4.158781,-3.935524,-3.734334,-3.8029952,-3.7965422,-4.0567465,-3.8620234,-3.6394663,-3.7594,-3.0327544,-4.2917056,-4.419033,-4.1139016,-3.1426854,-1.8845191,-4.245968,-4.6283307,-4.576571,-4.351067,-4.499933,-4.5121207,-3.8823504,-4.0002637,-4.6068807,-4.6004086,-4.5839,-4.5938354,-3.800447,-4.4289227,-4.6331882,-4.647489,-4.634135,-4.566008,-4.5349755,-4.439513,-4.503363,-4.5218325,-3.908411,-4.6243463,-4.4911227,-4.4870124,-4.4983225,-3.5508146,-4.678035,-4.6733027,-4.6873736,-3.4122577,-3.9394526,-4.0403028,-4.378125,-4.4803615,-4.575494,-4.5922084,-4.572488,-4.5156846,-4.468764,-4.4229007,-4.4730754,-4.4089074,-4.36747,-2.8898635,-2.1516242,-3.945745,-4.648771,-4.715492,-4.6916165,-4.772544,-4.7293377,-4.693261,-4.717802,-4.5950284,-4.5650845,-4.49526,-4.482352,-4.4350724,-4.4077754,-4.360574,-3.885024,-3.631392,-4.4807673,-4.6441464,-4.5899816,-4.6287293,-4.644922,-4.456397,-4.3580117,-4.5071254,-4.388988,-4.3313293,-4.297712,-4.115064,-4.091024,-2.4271512,-4.016605,-4.5523353,-4.600679,-4.6621623,-4.5410676,-4.027688,-4.4634614,-3.9210134,-4.621467,-4.6070027,-4.5781407,-4.469683,-4.285744,-4.253705,-4.193854,-4.178452,-4.2164636,-4.1800876,-3.739521,-3.576057,-4.5436006,-4.3354516,-4.34903,-4.451303,-4.5570054,-4.388387,-4.2422504,-4.2185698,-4.0496373,-3.8975801,-3.847989,-3.777967,-3.7625976,-3.791687,-3.8461328,-3.182426,-3.619213
+-0.8494845,-1.6270669,-2.9357498,-3.223569,-3.3713071,-3.442422,-2.9142413,-3.5104527,-3.6361969,-3.6687346,-3.6398716,-3.653224,-3.6342733,-3.2037709,-2.722464,-3.7630358,-3.9697046,-3.9789643,-3.9575644,-3.8947234,-3.7276092,-3.596292,-3.5383887,-3.714264,-3.5041173,-3.5581229,-3.5332916,-3.5602996,-3.5090575,-3.3777735,-3.4990113,-3.470211,-3.0119956,-1.4458241,-3.4875395,-3.695745,-4.0075016,-4.1948876,-4.1606946,-4.0267606,-3.9227495,-3.862925,-3.8262653,-3.8606648,-3.909042,-3.3203368,-1.7039256,-2.411028,-3.3792224,-3.5415902,-3.6502507,-3.8426042,-3.9115796,-3.9840517,-4.008356,-3.9950385,-3.9710631,-3.936244,-3.2265754,-3.3064446,-3.6375287,-3.2678714,-3.8840804,-4.0846477,-3.9630094,-2.9726763,-3.1689239,-3.1836176,-3.2280233,-3.6226027,-3.6933694,-3.9217577,-4.105504,-4.181741,-4.1453586,-3.7832508,-3.452146,-3.881154,-3.5152707,-3.7655792,-4.015542,-4.0385594,-4.0627694,-4.1044393,-4.0775094,-3.4947336,-3.2729053,-3.9625459,-3.1938314,-3.6178951,-3.4962125,-3.7275991,-3.541703,-3.8173008,-4.038978,-4.079065,-4.0770154,-4.0620313,-4.04655,-3.9633017,-3.9793172,-3.9463353,-2.904081,-3.2082667,-3.2714427,-3.4303708,-3.6185083,-3.861753,-3.174421,-3.550058,-3.5748124,-3.5711708,-3.5118725,-3.843813,-3.5339873,-3.9756045,-3.9219656,-4.0844126,-4.0228634,-3.0987263,-4.0089397,-3.970069,-4.0450597,-3.9546056,-3.8153634,-3.098128,-3.607244,-3.778195,-3.4786465,-3.6736467,-3.4712224,-3.5228884,-3.5414677,-3.5296812,-3.8149881,-3.947535,-4.0139394,-3.3401568,-4.0069923,-3.9208817,-4.071397,-4.0845084,-4.0746374,-3.8833294,-3.9449635,-3.697547,-2.9220266,-3.9708624,-3.5007386,-4.0331388,-3.3686588,-3.6095476,-3.6097574,-3.0810378,-3.7417636,-3.728888,-3.7115479,-3.6054876,-4.080756,-4.1190524,-4.1823816,-4.2540593,-4.2116084,-4.149593,-3.7758317,-3.585358,-4.0188713,-4.11437,-3.9683971,-3.419613,-4.023939,-3.393629,-3.82966,-3.7559495,-4.049099,-4.150538,-3.480411,-3.9256449,-3.7275257,-3.5766573,-3.98001,-3.732717,-3.8300366,-3.9311051,-3.9530969,-3.7008805,-3.804871,-3.6390815,-3.5600677,-3.8486295,-3.9550123,-4.0183682,-4.047576,-4.1086364,-4.0356116,-4.193303,-4.095141,-3.6688576,-4.105246,-4.0638204,-4.0889463,-4.0278735,-3.9986486,-3.9146657,-3.8661466,-3.8418112,-3.8585868,-3.8606658,-3.8369813,-3.8050523,-3.7771573,-3.7412648,-3.7500238,-3.7354484,-3.7171102,-3.6879115,-3.6976924,-3.7305837,-3.7289362,-3.713502,-3.6761322,-3.7064643,-3.702867,-3.7269607,-3.7008862,-3.696505,-3.6736455,-3.6093302,-3.7061706,-3.7146964,-3.7237473,-3.70049,-3.6924253,-3.7443695,-3.755311,-3.7616181,-3.718027,-3.683819,-3.7247424,-3.7090054,-3.7242074,-3.6849763,-3.7312803,-3.5420513,-3.7169766,-3.7976303,-3.7398825,-3.6636593,-3.736651,-1.9897261,-3.736525,-3.83038,-3.9216065,-3.9605398,-4.025986,-4.0602098,-4.0106077,-3.9755006,-3.923922,-3.9052176,-3.8979115,-3.7877655,-3.1715121,-3.45906,-3.9691734,-3.9669375,-4.0352407,-4.0592804,-4.042832,-3.9773664,-3.9365907,-3.951201,-3.9200158,-3.8292727,-3.7853622,-3.8077884,-3.7784538,-3.825501,-3.3933425,-3.787136,-3.8579154,-2.8816729,-3.7242699,-3.776586,-3.9176793,-3.9807296,-3.9640474,-3.9801426,-3.9634595,-3.9123054,-3.866993,-3.8612313,-3.827376,-3.7865272,-3.792315,-3.7775416,-3.7719998,-2.7684178,-3.7744088,-3.8002448,-3.882173,-3.8535247,-3.8609405,-3.4346962,-3.723555,-3.7969003,-3.8107123,-3.8177447,-3.8190527,-3.7964015,-3.7785459,-3.7644877,-3.6871638,-2.7182713,-3.7649922,-3.8109899,-3.831098,-3.8327398,-3.8434777,-3.8187423,-3.5933092,-3.7158937,-3.7225118,-3.5364351,-3.6810918,-3.7294421,-3.7092233,-2.7570844,-3.4733257,-3.827096,-3.8703122,-3.8497539,-3.8531966,-3.8206816,-3.8149257,-3.7111287,-3.8704162,-3.8870296,-3.7388654,-3.638005,-3.568417,-3.6667628,-3.6841533,-3.7628937,-3.793705,-2.3126616,-3.5341904,-2.9033833,-3.8124104,-3.9040008,-3.9397988,-3.952517,-4.028094,-4.0091224,-3.9912348,-4.036743,-3.6786077,-3.6363766,-3.6431017,-3.611065,-3.6480417,-3.6940117,-3.7245631,-3.665304,-3.7271366
+-1.3508673,-1.9744034,-2.327482,-3.0463836,-3.3008287,-3.1687107,-3.1251001,-3.2115793,-3.2718868,-3.14606,-3.0783916,-3.0851862,-3.01023,-2.6415186,-3.1793172,-3.479723,-3.507256,-3.4508133,-3.385197,-3.2925472,-3.236199,-2.8397813,-3.4241617,-3.4327917,-3.2785172,-2.794892,-3.518998,-3.627016,-3.4368126,-3.369861,-3.6270304,-3.5482254,-3.3147054,-1.7983301,-3.5722926,-3.7418714,-3.8636742,-3.8572373,-3.683493,-3.5442111,-3.5048733,-3.40734,-3.4186091,-3.4055386,-3.4411254,-3.1978796,-2.2225528,-2.0907755,-2.4156218,-3.1672897,-3.3542552,-3.7610378,-3.835988,-3.8552709,-3.727859,-3.6866524,-3.5784824,-3.0292435,-3.037251,-2.6673722,-3.4746518,-3.386972,-3.1097274,-3.4900627,-2.2531705,-2.9735138,-2.16815,-3.5102627,-3.0964713,-2.2226934,-2.4988704,-3.3181076,-3.4824963,-3.2211652,-3.4476638,-4.026736,-3.0308616,-3.119844,-3.8261957,-3.7040195,-4.1470246,-4.143257,-3.7667165,-3.5487761,-3.2354727,-3.8326879,-2.8761008,-3.275588,-3.307729,-3.2553632,-2.9269717,-3.623309,-3.2047539,-3.6141808,-3.5234423,-4.0169945,-4.0908127,-3.618117,-3.532944,-3.7975564,-4.0504107,-4.136413,-2.4291444,-3.6065636,-3.2034576,-3.9925928,-3.0378518,-3.6036334,-3.7609334,-3.0979404,-4.0786586,-3.4184544,-2.6905568,-3.6171393,-2.8255925,-3.581633,-3.8610468,-3.979663,-3.953453,-3.6226144,-3.5995836,-2.3559153,-3.4603496,-2.6226413,-3.0410297,-3.110642,-3.9133782,-4.029778,-3.38133,-3.4446487,-3.8429623,-3.6962261,-3.8774529,-2.7610247,-3.6048758,-3.6254551,-3.6776419,-3.7952294,-3.076267,-3.727044,-3.8632889,-3.739973,-3.562509,-3.9179974,-4.0400825,-4.0193563,-2.9972792,-3.2202606,-3.5663748,-3.6793065,-3.5542083,-3.6212707,-3.4534988,-2.7346902,-2.4207225,-3.857429,-4.04041,-2.5290241,-3.4961197,-3.4733121,-4.1395755,-4.0688443,-3.5810008,-3.9767241,-3.8660798,-2.9443178,-3.7315316,-4.0698524,-3.2764935,-4.021199,-3.8372264,-4.10545,-4.0292597,-4.0484715,-3.823429,-3.2168374,-3.40195,-3.1898904,-3.5825012,-2.7533438,-3.8015394,-3.3374946,-3.7189584,-3.6003745,-3.6052496,-2.3396869,-3.3834872,-3.8615832,-3.62489,-4.1137905,-4.0790734,-4.105079,-4.081822,-4.0512576,-3.8716502,-3.9931645,-3.9902453,-3.9141788,-3.885219,-3.8805213,-3.8623729,-3.8375287,-3.736607,-3.737424,-3.7440019,-3.7480617,-3.6836767,-3.6248512,-3.6003456,-3.585453,-3.5528286,-3.50384,-3.4885004,-3.5247788,-3.4963636,-3.4810326,-3.5031846,-3.4832008,-3.4703321,-3.4745948,-3.5216844,-3.5114758,-3.4614823,-3.4633486,-3.473989,-3.4940517,-3.4879763,-3.4912486,-3.5213423,-3.5438366,-3.5104039,-3.4983335,-3.4960465,-3.5424733,-3.6147945,-3.5990455,-3.5207863,-3.501433,-3.507485,-3.5022967,-3.5425723,-3.5551517,-3.5655546,-3.372279,-3.4022408,-3.623363,-3.673092,-3.6138883,-3.6250925,-3.1874766,-3.7187562,-3.7360702,-3.6985288,-3.6879818,-3.5174665,-3.240603,-3.7931652,-3.821279,-3.7980967,-3.7630277,-3.703631,-3.657548,-3.6949449,-3.6648552,-3.6698945,-3.6641688,-3.634912,-3.626949,-3.6220102,-3.6075068,-3.6006227,-3.5764663,-3.5560343,-3.588777,-3.6287699,-3.5620203,-3.3741105,-3.5853276,-3.2265325,-3.7701812,-3.7682066,-3.0413976,-3.9157863,-3.9778304,-3.9472737,-3.899034,-3.8484201,-3.7923236,-3.760685,-3.7324185,-3.7038894,-3.6427279,-3.602209,-3.5778859,-3.564064,-3.5733366,-3.630573,-3.1012383,-3.878849,-3.8923345,-3.7854419,-3.8185802,-3.7853131,-3.0645308,-3.9509487,-4.0568347,-4.031239,-3.9690046,-3.9316745,-3.8860402,-3.8230252,-3.7816548,-3.7125711,-3.6445265,-3.7466898,-3.7669635,-3.6722698,-3.6179028,-3.6346023,-3.6225984,-3.2288105,-3.6798177,-3.8696785,-3.7385688,-3.667139,-3.6590993,-3.6036565,-2.3558793,-3.934579,-4.0980687,-4.035387,-3.969479,-3.900743,-3.8286743,-3.7390137,-3.6875892,-3.6763494,-3.6222658,-3.5494912,-3.5216181,-3.4787092,-3.4522932,-3.4459019,-3.5187645,-3.4916375,-3.3907905,-3.35775,-2.5458832,-3.8566365,-3.8377237,-3.870686,-3.7580662,-3.7917328,-3.7552776,-3.690333,-3.688842,-3.1757512,-3.4688315,-3.4357564,-3.4107213,-3.38923,-3.4358711,-3.463764,-3.380182,-3.3313742
+0.9259403,-0.39327747,-2.0582216,-2.99026,-3.5198936,-3.8792796,-4.016806,-3.9930234,-4.056848,-4.0385985,-4.2090144,-4.2012124,-4.077007,-3.741117,-3.3287778,-2.009592,-1.5075672,-1.274595,-1.0090413,-0.2662483,0.084635526,0.33816904,-0.1332078,-0.45280886,-0.6500634,-0.8329509,-0.8659223,-0.8454198,-0.6996476,-0.41986156,-0.06292987,0.39313143,0.5204836,0.52241373,0.19279891,-0.3128789,-0.21849126,-0.35708708,0.1138276,-0.27467334,-0.8550932,-2.0731637,-1.820152,-2.8524842,-2.6714597,-2.3875775,-2.4988184,-2.8183665,-3.2819092,-3.5902464,-3.4035194,-3.5247955,-3.4356833,-2.7512202,-3.0818384,-3.3308983,-2.8234923,-3.019481,-3.3928099,-3.2919111,-3.4083955,-3.8834758,-3.2517335,-3.8420238,-3.9840302,-3.2386494,-3.0282207,-3.1881638,-3.1773741,-3.2829578,-3.6971474,-3.3549883,-3.4932504,-3.6680899,-3.8566866,-3.9058008,-3.8268085,-3.820269,-3.8703456,-3.522716,-2.819355,-3.737205,-3.9311585,-4.0538077,-4.154479,-4.096933,-2.4659,-3.24467,-3.7214208,-4.0749726,-3.3529792,-3.6703837,-3.9990067,-4.086772,-3.441641,-3.2084498,-3.9391665,-4.1060505,-4.2985024,-4.225264,-4.2160177,-4.2624555,-2.614625,-4.002189,-3.36925,-3.7530932,-4.16461,-4.2543936,-3.710465,-4.255199,-4.3727837,-3.607775,-3.3393764,-3.4400263,-3.8932548,-3.4706426,-3.7866135,-4.262378,-4.431067,-4.5004854,-4.452351,-4.3608747,-4.276277,-4.2167325,-4.0184603,-4.0935063,-2.2766724,-3.5129912,-3.957303,-4.2932134,-4.391558,-3.9166336,-4.36252,-4.2675962,-4.2495604,-4.1696906,-4.1299753,-3.8625717,-3.227234,-4.2777987,-4.194267,-2.8653867,-2.675158,-3.5858097,-3.738834,-4.2959805,-4.3284593,-3.667512,-4.296316,-2.9533463,-4.0116525,-3.8833241,-3.7418542,-4.059694,-4.3338294,-4.5195184,-4.5165153,-4.430863,-3.872517,-4.126688,-3.5941553,-4.3834944,-2.9944587,-3.1419752,-3.5450792,-3.3701587,-3.8375597,-4.1589866,-4.3007646,-4.3010097,-3.7443461,-4.2490315,-4.4637914,-4.5066886,-4.4556284,-4.383205,-4.252718,-4.285745,-3.4624453,-4.213964,-4.347565,-4.355024,-4.3065257,-4.2947354,-4.117304,-4.0355015,-4.092998,-4.0848627,-3.9459505,-3.4485502,-3.8091373,-3.5841498,-3.8360739,-3.9046788,-2.6707244,-3.0233378,-3.6243644,-3.6181388,-3.5527854,-3.8264046,-3.17378,-3.7709637,-4.056586,-3.9526916,-3.726437,-3.522791,-3.4038897,-3.175006,-3.0796075,-2.835518,-2.3270187,-1.4621267,-2.4712353,-2.737984,-2.1038628,-3.5569751,-3.8347192,-3.6403205,-3.7784743,-3.7687197,-3.9523444,-4.141825,-3.6415498,-3.8178577,-3.250175,-3.1121697,-3.5460448,-3.6002653,-3.5554636,-3.6709695,-3.631925,-2.9571996,-2.5625296,-2.1677318,-1.8992419,-1.9233775,-1.8821268,-1.6215928,-1.2254245,-1.0030215,-0.8335579,-0.932857,-0.755191,-0.9153668,-0.78103226,-0.6662267,-0.9812717,-1.3557658,-1.5838962,-1.6540937,-1.8014421,-2.1191523,-2.3275013,-2.528514,-2.647332,-2.884749,-3.1054375,-3.411238,-3.5222332,-3.6991801,-4.045642,-4.052609,-4.0054326,-4.1360283,-4.244821,-4.1458845,-4.0439854,-4.171795,-4.268006,-3.9800158,-4.342216,-4.168113,-4.163939,-4.389021,-4.14164,-4.229446,-4.203442,-4.261684,-4.3270664,-4.3517585,-4.263355,-4.214854,-4.226683,-4.2504196,-4.25763,-4.2463346,-4.2997894,-4.303388,-4.2690415,-4.263585,-4.2012177,-4.1321974,-4.114237,-4.1211433,-4.0444636,-4.127463,-4.150842,-4.113082,-4.108743,-4.157764,-4.1746516,-4.309334,-4.2541475,-4.313024,-4.2572517,-4.142401,-4.300413,-4.2970414,-4.2317195,-4.259601,-4.385987,-4.253487,-4.2917376,-4.4079013,-4.2787814,-4.274631,-4.3038154,-4.266292,-4.2462735,-4.167187,-4.332748,-4.276324,-4.105167,-4.109974,-4.1619735,-4.169206,-4.143729,-4.12818,-4.04681,-4.203207,-4.2586837,-4.3301077,-4.3392177,-4.218271,-4.3278418,-4.276893,-4.2863264,-4.181261,-4.1113086,-4.2082734,-4.0995374,-4.087541,-4.343778,-4.2528653,-4.293532,-4.313629,-4.187263,-4.254205,-4.277022,-4.2239327,-4.1034102,-4.117074,-4.052291,-3.8912668,-4.245464,-4.1350417,-4.154492,-4.0885625,-4.2010913,-4.1379232,-4.111455,-3.8906522,-3.8086581,-3.9590611,-4.0590634
+0.86518353,-0.07615918,-1.7256508,-2.7968485,-3.3830519,-3.7409492,-3.684483,-4.0166054,-3.9729056,-3.933229,-3.932516,-3.8757372,-3.513449,-3.0699162,-3.1136208,-1.920404,-0.94545275,-0.77456254,0.60185885,1.3489313,1.2652171,2.0948532,2.0212839,1.9348929,2.0137851,1.7731059,1.6882043,1.6435056,1.746253,1.900495,2.0188127,2.0149121,1.8287549,1.5096745,0.8525358,0.09978533,-0.89830536,-1.9270911,-2.2166882,-2.6309268,-2.9067898,-3.2357922,-2.8654838,-3.7588391,-3.4635425,-3.3061938,-3.2582932,-3.3184404,-3.519036,-3.8231654,-4.081485,-3.8444343,-3.8430943,-3.6858277,-3.1308527,-4.295546,-4.2052712,-3.8021216,-4.0120435,-4.6275983,-4.6142244,-4.763291,-4.4692903,-4.663921,-4.8796673,-3.7604837,-3.9457674,-4.2904835,-4.595655,-4.4431825,-4.4063272,-4.1615734,-4.424246,-4.49987,-4.3419385,-4.5591187,-4.4783626,-4.388558,-4.485691,-4.513412,-4.467368,-4.2456336,-4.2122707,-4.2647758,-4.3181896,-4.4102254,-3.6705792,-4.0888023,-4.3605437,-4.3527884,-4.3830523,-2.8732338,-4.355371,-4.733805,-4.971229,-4.97475,-3.5288482,-4.908892,-4.469599,-3.5187922,-4.625169,-5.105361,-4.8536844,-4.530845,-4.4884496,-4.555531,-5.043279,-5.0969186,-4.259078,-4.881017,-5.0708137,-4.402026,-4.545995,-4.57719,-5.1784253,-4.7703304,-4.8961606,-5.080382,-5.050751,-5.049986,-5.0193596,-4.9462676,-4.912048,-4.8579593,-4.844531,-4.750713,-3.9298835,-4.402695,-4.667807,-4.8305564,-4.823965,-4.6633406,-4.1256127,-3.7434134,-4.561481,-4.683371,-4.9916625,-5.0961967,-4.8261566,-4.9864626,-4.1502304,-4.057388,-3.359161,-4.7131314,-4.842668,-5.0922256,-5.078835,-5.1328225,-5.155812,-4.1120644,-5.0077815,-4.9537244,-4.6671467,-4.933548,-5.048908,-5.06651,-5.030828,-5.0215955,-4.565103,-4.3692384,-3.9870439,-4.9387937,-4.3097258,-4.4207172,-4.9629464,-3.8060932,-4.713454,-5.0087223,-5.148066,-4.6755266,-4.101296,-4.8061733,-4.861665,-5.0562873,-4.5007596,-4.9030256,-4.949221,-4.9948654,-4.4934335,-4.616135,-5.052749,-5.1512713,-5.1223464,-5.068572,-4.700687,-4.86158,-4.9323134,-4.920343,-4.7250276,-4.3080087,-4.6815777,-4.567495,-4.624646,-4.719896,-4.335167,-3.4502635,-4.43937,-4.5451856,-4.4578586,-4.279636,-3.74968,-4.7430406,-4.9953485,-4.7024016,-4.405147,-4.326115,-4.0628247,-3.7174354,-3.3493094,-2.9430776,-2.6173987,-2.1883883,-3.581396,-3.741899,-3.6090236,-4.3780212,-4.5535517,-4.14936,-4.3358283,-4.304251,-4.523724,-4.533745,-4.3271503,-4.4158835,-3.8456173,-3.8093333,-3.8562832,-4.1105366,-4.3341994,-4.417645,-4.3290524,-4.5336256,-3.8170128,-3.144699,-2.9350536,-2.780647,-2.1140246,-1.742049,-1.7306166,-1.6227851,-1.4675958,-1.482599,-0.96210355,-1.1809466,-0.84115344,-0.479047,-0.46085215,-0.8544218,-1.2706096,-1.3082659,-1.6570549,-2.114636,-2.452579,-2.53859,-2.6834319,-3.0091958,-3.148112,-3.4622912,-3.7324767,-3.7862139,-4.001228,-4.1016526,-3.9009595,-3.903605,-4.028548,-3.9212494,-3.7838879,-3.9418464,-4.0688987,-3.9247136,-4.0622935,-4.043341,-4.0097585,-4.227921,-4.0817175,-3.9842687,-4.004771,-4.0323806,-4.2282996,-4.20342,-4.097552,-4.0900044,-4.1293454,-4.0250344,-4.0424023,-3.9937472,-4.2466207,-4.154457,-4.059183,-4.0639377,-3.9195871,-3.9504514,-3.9133015,-3.917602,-3.8539777,-3.880404,-4.0049696,-3.954547,-3.8506541,-3.88167,-3.8861065,-4.0763164,-4.03649,-4.095179,-4.0354753,-3.9334507,-4.053584,-4.082842,-4.0325503,-4.0337386,-4.1258707,-4.102993,-4.1301327,-4.2752857,-4.099978,-4.1539836,-4.1223493,-4.068605,-4.085946,-3.9885778,-4.161155,-4.135764,-3.9715943,-3.8649545,-3.739377,-3.8393679,-3.969327,-3.8049936,-3.697916,-3.8963323,-3.919487,-4.1174903,-4.0149894,-3.9573321,-3.9858375,-4.0962543,-4.0690455,-3.9837298,-3.925408,-4.026031,-3.9232945,-3.8246107,-4.143986,-4.0944533,-4.051249,-4.0597224,-3.9728627,-4.073284,-4.1008363,-4.034065,-3.942316,-3.8539495,-3.7890248,-3.5226922,-3.846506,-3.9005198,-3.871482,-3.999258,-3.994411,-4.081794,-3.9444346,-3.7135592,-3.4214854,-3.4545016,-3.493061
+-1.4041975,-2.917576,-2.8700266,-2.5301046,-2.3508148,-2.2773185,-2.7290463,-2.8527517,-2.5192337,-2.155918,-2.2687254,-3.0290613,-2.9188151,-2.8823211,-2.9784045,-3.1130233,-3.2056625,-3.3897598,-3.305336,-3.181943,-3.4082222,-3.3417044,-3.427355,-3.3789368,-3.3064282,-2.2022076,-3.4905102,-3.5066266,-3.639683,-3.5832443,-3.5644617,-3.1030235,-3.721807,-3.778963,-3.7767372,-3.7549472,-3.834704,-3.8794255,-3.647986,-3.6670372,-3.6617653,-3.6876445,-2.9882867,-3.5585945,-4.1063724,-4.1151633,-4.1353545,-3.834227,-3.898973,-3.8239598,-3.8663836,-3.7808084,-3.7817297,-3.8439426,-3.871646,-3.6397636,-3.708589,-3.7269778,-3.686024,-3.519843,-3.7350578,-3.6304166,-3.644681,-3.6860726,-3.6721961,-2.850702,-3.7530718,-3.966117,-4.189871,-4.0064845,-3.926807,-3.924563,-3.8934464,-3.824306,-3.7826972,-3.5292614,-3.641166,-3.8302927,-3.9389772,-4.023745,-3.9366589,-3.7850013,-3.9110904,-3.817843,-3.7766628,-3.8437405,-3.8623977,-3.5915306,-3.98201,-3.9372258,-3.9793243,-3.6723642,-4.0211663,-4.0926843,-4.040387,-4.023765,-3.9193702,-3.8506694,-2.6740975,-3.3947322,-4.3530135,-4.2793975,-4.1987767,-4.069384,-2.580246,-4.2566705,-4.4159083,-4.397999,-4.283263,-4.2666,-4.1854744,-4.236777,-4.0805125,-4.1337295,-3.7812934,-2.1934488,-4.1771626,-4.492228,-4.2012796,-4.0466113,-3.6861541,-3.7190804,-4.364094,-4.407557,-4.2981863,-4.27228,-4.059774,-4.165586,-4.194024,-4.151339,-4.105229,-3.955174,-3.8673353,-3.7899256,-2.3750446,-3.6733828,-4.4946485,-3.2196121,-4.261646,-4.4462256,-4.5091615,-3.519098,-4.110101,-4.545017,-4.494989,-4.2849483,-2.7094865,-4.161843,-4.4772873,-4.1080327,-4.3878455,-4.3290777,-4.0509114,-4.1651187,-4.0641465,-4.0473046,-4.0811224,-4.1062922,-4.084583,-3.9742465,-3.0019162,-4.175834,-3.4425476,-3.715035,-4.4347396,-4.4093175,-4.265964,-4.060302,-4.097098,-2.941176,-4.083982,-4.38722,-4.3340735,-4.1896806,-4.1285095,-4.045455,-3.8885384,-3.8704152,-3.6123261,-4.048187,-3.9595385,-3.7774582,-3.7554193,-3.4194036,-2.9541876,-4.2026687,-4.2881703,-4.2116437,-4.186565,-4.142677,-4.126508,-3.9312043,-3.8998132,-3.9741483,-4.022544,-4.0157747,-3.9645162,-4.0663733,-3.5647826,-3.9456716,-4.0190578,-4.1564307,-2.9963777,-3.2318919,-4.081916,-4.2637377,-4.2091727,-4.07877,-3.9010859,-3.7229857,-3.9131875,-4.034278,-3.9929404,-3.936523,-4.02685,-3.7725663,-3.0852041,-4.0661135,-4.146834,-4.139002,-4.092142,-4.1652207,-4.123139,-4.1148987,-4.0986342,-3.9689274,-4.0767884,-4.1741805,-4.173368,-4.103321,-4.176538,-4.082267,-3.937632,-3.9905858,-3.9215274,-3.7868361,-3.3647919,-3.6331816,-3.9077086,-4.0009246,-4.0532537,-3.8542218,-3.298552,-3.7920036,-3.5985882,-4.041318,-4.1120057,-4.0029864,-3.4810393,-3.570705,-3.7063656,-3.7091918,-3.679081,-3.370789,-2.9846933,-3.3064616,-3.1467957,-2.3435278,-2.6144938,-2.2723374,-2.4552784,-2.6647646,-1.7843666,-1.783422,-2.1876986,-2.449658,-2.1858454,-2.4828892,-2.1709397,-2.1526866,-2.5511823,-2.8074746,-2.6525803,-3.11907,-2.7343574,-2.9926658,-2.7959886,-2.5694873,-3.2755294,-2.852367,-2.3580515,-2.1312876,-2.117536,-1.8776457,-1.7317598,-2.2416039,-2.3133109,-2.7313042,-2.3958843,-2.1238413,-2.071946,-2.072915,-2.818562,-2.7128372,-2.6044004,-2.9829533,-3.3493004,-3.4225073,-3.6041074,-3.7693944,-3.9120698,-3.910089,-3.7181005,-3.5432286,-2.9555063,-2.843521,-3.3228352,-3.2074542,-2.5237675,-2.3377194,-2.918439,-2.8477902,-2.3946724,-2.9644034,-2.8534987,-2.4184866,-2.9030926,-2.7610972,-3.195616,-2.9897773,-3.375284,-3.1659846,-2.8413467,-3.2466846,-3.5669496,-3.3909054,-3.477611,-3.8355284,-3.983851,-3.5491505,-2.534193,-3.5730934,-3.6018193,-3.8180299,-3.517106,-3.80792,-3.4366326,-3.0208812,-2.4790587,-2.965143,-3.031487,-3.5320284,-3.5571628,-3.3465228,-2.7977762,-2.6220167,-2.4139924,-2.4112844,-2.3790047,-2.6828256,-2.5204656,-2.4876056,-2.8447065,-3.19224,-3.42904,-3.033221,-2.7903452,-3.298104,-2.9860597,-3.3773758,-3.6219144,-3.754106,-3.5450978,-2.546296,-3.042529
+-1.413043,-2.4891446,-2.2571635,-2.0616508,-1.6726756,-0.9131884,-1.068893,-1.5615985,-1.8755023,-1.6475992,-1.4102979,-2.1886215,-2.905396,-3.1056566,-3.1623454,-3.2034366,-3.218327,-3.288688,-3.3804286,-3.3536587,-3.2773051,-3.0825655,-3.5732894,-3.503314,-3.4326756,-2.9538143,-3.576418,-3.390969,-3.7696342,-3.754106,-3.0904508,-3.5057354,-3.5621247,-3.7248597,-3.776722,-3.6838183,-3.708426,-3.789106,-3.6974788,-3.7460303,-3.8447852,-3.347961,-3.3474398,-3.8097372,-3.499175,-3.6142557,-3.8607635,-3.7701397,-3.6778498,-3.5485106,-3.2086415,-3.7431016,-3.6641288,-3.6619358,-3.6476672,-3.6160429,-3.6973405,-3.5023994,-3.5302486,-3.6146345,-3.5121453,-3.4647546,-3.1252975,-3.6366115,-3.473738,-2.8239937,-3.6299758,-3.4516928,-3.7939296,-3.897571,-3.827805,-3.8320603,-3.8931375,-3.8968673,-3.7345357,-3.6345878,-2.9951537,-3.5910692,-3.6257768,-3.6511154,-3.7995043,-3.679386,-3.896852,-3.5656447,-3.768928,-3.6049094,-3.6506357,-3.4783049,-3.8439355,-3.8241343,-3.7008233,-3.4657674,-3.8438334,-3.6087441,-3.591347,-3.3645754,-3.7819247,-2.825093,-3.4425538,-3.6909544,-4.028847,-3.9520736,-3.9921222,-4.1478415,-3.832407,-4.2640104,-4.107469,-4.1314836,-3.5258658,-4.1537447,-4.1065946,-4.0416365,-3.1671796,-4.08466,-3.903812,-4.0984616,-4.227835,-4.0338664,-3.9288502,-3.8595371,-3.523354,-4.043878,-4.1157293,-4.0583444,-4.0007358,-4.0060897,-3.4729235,-4.264206,-4.217038,-4.0399737,-3.9307604,-3.5277195,-3.5595136,-3.808011,-3.7091804,-4.011621,-4.249974,-3.8050041,-4.352464,-4.340221,-4.209044,-4.131945,-4.234955,-4.1738987,-4.1405425,-4.007844,-3.7363453,-4.301344,-3.985311,-3.9736247,-4.0437245,-3.9585547,-3.3723803,-4.2496405,-4.183788,-4.070842,-3.9744105,-3.9278197,-3.9386048,-4.0004764,-2.7994418,-4.073933,-3.9434075,-3.4674296,-4.0760913,-4.1288085,-4.28334,-4.333719,-4.1850076,-2.9814727,-3.4416537,-3.967248,-4.129809,-4.04547,-4.0648675,-4.1416726,-4.282897,-4.269727,-3.6770945,-4.4052696,-4.307738,-4.103408,-2.9630592,-3.7073503,-3.9018807,-4.3823924,-4.2555647,-4.1353416,-4.2023835,-4.167032,-4.3632135,-4.5309877,-4.3713694,-4.2931037,-4.0642767,-3.9546027,-4.517202,-4.299731,-4.04659,-4.0475,-4.0286155,-3.8929338,-3.0800633,-3.4850357,-4.0378947,-4.231167,-4.445875,-4.6414213,-4.4730296,-3.2308047,-4.0833983,-4.092135,-4.21178,-4.4027047,-4.211,-4.2343836,-4.03504,-4.4912524,-4.4839787,-4.485398,-4.4004855,-4.436547,-4.2783256,-4.4494987,-4.582359,-4.4352536,-4.324739,-4.232306,-4.388176,-4.447099,-4.454656,-4.1981297,-3.7000327,-4.364263,-4.3423057,-4.1734567,-3.6624382,-3.6087806,-4.2245855,-4.020902,-4.1683593,-3.9912324,-3.7699232,-4.0729566,-3.79036,-4.0030775,-4.2949786,-4.2133055,-3.9628043,-3.0967536,-3.771051,-3.7777448,-3.2635362,-3.0251062,-2.2277622,-1.5002744,-1.643084,-1.604979,-1.5993371,-1.5655973,-1.3196578,-0.906346,-1.1490281,-1.3397865,-1.3635149,-1.1850269,-1.2247763,-1.2454395,-0.89771014,-0.7453825,-0.5867506,-1.3830671,-1.2972255,-1.550525,-1.2975471,-1.4052036,-1.2942145,-1.1281521,-1.3777559,-1.6762428,-1.7402177,-1.6476529,-1.695148,-1.5615041,-1.008657,-0.8063552,-1.4151208,-2.176824,-2.7175775,-2.6797123,-1.8869576,-1.6631489,-3.0224385,-3.4990127,-3.0821729,-3.6560602,-4.0236197,-4.028019,-3.870829,-3.8100553,-3.6033807,-3.676313,-3.541297,-3.2113976,-2.4278946,-1.9469926,-1.6352775,-1.5851777,-1.7399728,-1.6686418,-1.377949,-1.2847605,-0.7183704,-0.8375513,-1.1513805,-1.1331186,-0.9139735,-0.8720812,-1.0447576,-1.1791382,-1.3187401,-1.2442822,-1.2188251,-1.1275148,-1.5877934,-2.6043968,-3.3161263,-3.6647701,-3.8451104,-3.8628016,-3.3930001,-3.757275,-3.555857,-3.6738486,-3.3973336,-3.65787,-3.303101,-2.9086866,-2.0781221,-1.7434926,-1.7376697,-2.9179811,-3.7277012,-3.4872086,-3.1950414,-2.6325417,-1.9493523,-1.7260742,-1.4834483,-1.260637,-1.1600482,-1.0687068,-0.92652243,-1.0978103,-1.3197134,-1.5404577,-1.6204643,-1.6939263,-3.2540298,-3.6048102,-3.4809425,-3.749034,-3.7836099,-2.9258204,-2.8909698
+-0.79487413,-1.9919662,-2.6675286,-3.180263,-3.594894,-3.1634762,-3.5148218,-3.7860208,-3.8473763,-3.6235723,-3.426837,-4.0030236,-3.8608308,-3.7963243,-3.763558,-3.6231258,-3.4948606,-3.5290308,-3.5280452,-3.3988552,-3.509525,-3.3167896,-3.4884636,-3.650956,-3.5995758,-3.4108887,-3.5416536,-3.5160508,-3.7645807,-3.9345713,-3.8111367,-4.147508,-4.2301936,-4.3490133,-4.2312484,-4.242582,-4.33081,-4.249126,-4.1876907,-3.9369135,-3.9219813,-4.160002,-4.2841187,-4.3389306,-4.4444394,-4.4965496,-4.1721606,-3.883998,-4.1345477,-4.1292796,-3.105591,-4.1065636,-4.342833,-4.39677,-4.338837,-4.1019607,-4.126702,-4.030111,-3.8225584,-3.9860349,-3.9966812,-3.9416122,-3.6726213,-3.6669369,-3.6050909,-3.2652643,-3.9892497,-3.8485107,-4.2879577,-4.5190377,-4.2199693,-4.1690674,-4.0116935,-3.9584813,-3.8757415,-3.6499455,-2.7262318,-3.9815784,-4.0954094,-4.329986,-4.1336575,-3.8303485,-3.8917441,-2.9081883,-3.9863286,-4.152842,-4.078874,-3.857285,-3.9434485,-3.8371868,-3.8046713,-3.7190537,-3.6415503,-3.693078,-3.4127262,-3.6003692,-3.7346854,-3.3267598,-3.9303613,-4.0010657,-3.9715443,-3.7721162,-3.6958318,-3.5349152,-3.4046478,-3.4413278,-3.5730581,-3.5736012,-3.4454246,-3.498083,-3.5039158,-3.4816835,-3.2059097,-3.3129916,-3.1276996,-3.1893175,-3.6624355,-3.5872717,-2.977383,-3.5489106,-3.045365,-3.673492,-3.8617897,-3.8319526,-3.8419352,-3.6860235,-3.698913,-3.1975374,-3.7212362,-3.7497683,-3.6245713,-3.5499952,-3.5139897,-3.4889407,-3.4666307,-2.74618,-3.5852716,-3.6431074,-3.5686984,-4.0193386,-4.1054354,-3.9112878,-3.8646464,-3.905107,-3.8209367,-3.733499,-3.6333394,-3.6995254,-3.7020402,-3.6087797,-3.4003196,-3.7335057,-3.6695206,-3.6007628,-3.6388512,-3.672572,-3.6661634,-3.6327744,-3.5757775,-3.3114462,-3.348385,-2.731698,-3.2958164,-3.5925293,-3.761673,-3.809155,-3.8290458,-3.8359575,-3.7374892,-3.5472767,-3.4920058,-3.689631,-3.8169255,-3.8349333,-3.7443519,-3.7563448,-3.7742467,-3.749076,-3.6247497,-3.5793405,-3.6567333,-3.0337043,-2.61049,-3.7928405,-4.0508995,-4.081043,-3.8549018,-3.8096533,-3.7620277,-3.717825,-3.4009972,-4.031258,-4.0519643,-3.8545427,-3.8700953,-3.771134,-3.8538737,-3.8671079,-3.657481,-2.863491,-3.8027,-4.0769258,-3.6957917,-3.1978512,-4.038364,-4.2292886,-4.447849,-4.4703054,-4.2042966,-4.276542,-4.4188185,-4.2371373,-4.0796313,-4.257286,-4.0400434,-3.8805947,-3.8281856,-4.134681,-4.1757627,-4.094534,-3.871076,-3.9478345,-3.7905478,-4.3110495,-4.3288274,-4.299168,-4.1670284,-4.186209,-4.169911,-4.15857,-4.245214,-4.0899577,-3.8480706,-4.2009225,-4.1443534,-4.019592,-3.9469147,-4.0602207,-4.4492245,-4.3236737,-4.3857064,-4.218637,-3.9694676,-4.075771,-4.5465045,-4.4536786,-4.47545,-4.536691,-4.329452,-3.6632423,-4.1026855,-4.050205,-3.8637185,-3.6508694,-3.3070812,-2.7207003,-2.7180455,-2.4909484,-2.343812,-2.3024745,-1.3856037,-1.0787406,-1.1990857,-1.4872012,-1.4324167,-0.97662324,-1.1392937,-0.8509913,-0.67113715,-0.84124607,-1.7221143,-2.8664842,-2.7309873,-2.6657896,-2.675264,-2.381447,-2.323865,-2.4953194,-3.2941127,-3.844048,-3.2805226,-2.9809759,-2.8231812,-2.7037892,-2.4698846,-1.7542224,-2.1389136,-3.139806,-3.6531885,-3.8372002,-3.728767,-3.6890364,-4.113493,-4.3536577,-4.167131,-4.1902795,-4.087211,-3.478936,-4.1829996,-4.181597,-4.3852906,-4.2493596,-4.079781,-4.051925,-3.846233,-3.6580496,-3.4313645,-3.4636052,-3.4834049,-2.8844128,-2.5613337,-2.4152288,-2.523382,-3.5782344,-4.0647526,-3.6943913,-3.1185966,-3.469666,-4.0349364,-3.9574008,-3.8091612,-3.5949507,-3.4712753,-3.7601027,-4.180531,-4.18994,-4.079932,-3.81811,-3.943565,-3.6935654,-3.657965,-4.1949034,-4.0272393,-3.9907436,-2.979989,-4.028611,-4.1602015,-4.084016,-3.7397122,-3.342476,-3.6134443,-4.2949233,-4.6379333,-3.6793375,-3.8924632,-3.5574799,-3.2327702,-3.023749,-2.9474118,-2.9397497,-2.7706926,-2.719325,-3.3517451,-3.8858094,-4.0199857,-4.1549044,-3.8238597,-3.496547,-3.966412,-3.7144384,-3.9246545,-3.964126,-4.1973596,-4.0566964,-3.241858
+-1.0640547,-2.1478088,-2.442422,-2.8015645,-3.559887,-3.190074,-2.6337526,-3.2579918,-3.283698,-3.0964987,-2.7128098,-3.3666964,-3.893743,-3.8007402,-3.841525,-3.8059478,-3.689658,-3.6186182,-3.6157684,-3.5635448,-3.5213914,-3.293891,-3.7017722,-3.9839177,-3.914513,-3.2003973,-3.7146583,-4.1197724,-4.369863,-4.432394,-3.5154889,-4.396749,-4.5518126,-4.507066,-3.8235607,-4.4025216,-4.4744964,-4.4287343,-4.329868,-4.4300346,-4.2790055,-4.37044,-4.2446256,-3.9157996,-4.3213267,-4.341286,-4.3185935,-4.0336423,-4.4310393,-4.391235,-3.6487556,-4.4321637,-4.63018,-4.5486083,-4.4625664,-4.332689,-4.2417936,-4.2277017,-4.112471,-4.0832973,-4.111509,-4.1289425,-4.0651383,-4.0556865,-4.0513754,-3.4305296,-4.242363,-4.5327773,-4.354447,-4.3049464,-4.2936716,-4.22737,-4.125983,-4.114585,-4.203576,-4.1951737,-3.3362296,-4.29441,-4.444536,-4.4420485,-4.4240603,-4.04163,-4.282909,-2.100874,-4.268016,-4.603065,-4.602715,-4.283197,-4.581001,-4.586066,-4.5215344,-4.4712796,-4.4583836,-4.423207,-3.7098722,-3.7416668,-4.571893,-4.5383363,-4.55633,-4.494689,-4.423489,-4.389991,-4.3717694,-4.385237,-4.235271,-4.3714423,-4.2742186,-4.402704,-4.226019,-4.4204082,-4.4061704,-4.402935,-4.3855686,-4.3238997,-4.283294,-4.053431,-4.1708245,-4.1832128,-3.277596,-3.9801712,-4.354068,-4.4230676,-4.41438,-4.367308,-4.304071,-4.3721395,-3.6304595,-4.3097606,-4.4284024,-4.3623514,-4.3939157,-4.3830385,-4.3504543,-4.2062116,-4.188665,-4.091319,-3.9783096,-3.996961,-3.4203365,-4.2374244,-4.387443,-4.33309,-3.8446894,-4.350196,-4.303387,-4.411892,-4.3439846,-4.335922,-4.2632437,-4.0105796,-4.2764974,-4.284508,-4.339322,-4.292455,-4.2021813,-4.22167,-4.284763,-4.26339,-4.211946,-4.096639,-4.0130334,-3.950006,-4.055752,-4.0044327,-4.1101174,-4.1835575,-4.202898,-4.129278,-4.1669016,-4.1953416,-3.7774167,-3.9036698,-4.1814456,-4.236835,-4.2989554,-4.3140426,-4.2388034,-4.1962895,-3.7473917,-3.9837775,-4.2230287,-3.7354398,-2.1674337,-4.0066133,-4.4749675,-4.426269,-4.3463683,-4.3317847,-4.3460155,-4.1890426,-2.8346403,-4.309071,-4.396061,-4.4250607,-4.4614325,-4.4145455,-4.435873,-4.463931,-4.429518,-4.4125113,-4.386042,-4.3822594,-4.265285,-2.4198446,-3.998036,-4.1796346,-4.4344144,-4.4743476,-4.3303385,-4.1911616,-4.2708054,-4.29734,-4.1969604,-3.9790416,-4.312531,-4.307544,-4.0021396,-4.294253,-4.3991466,-4.377606,-4.2763963,-4.3646207,-3.307343,-4.3413997,-4.45885,-4.427042,-4.3800416,-4.385749,-4.397984,-4.3743863,-4.261733,-4.2105618,-3.8283715,-4.3754487,-4.4032764,-4.276873,-3.9742332,-3.9379325,-4.176986,-4.3220143,-4.168036,-4.127506,-3.6911833,-3.3118033,-4.288689,-4.3234487,-4.2710214,-4.138284,-3.9609923,-2.9572601,-3.8224416,-3.918984,-3.7243533,-3.5202603,-3.0571556,-1.7944889,-2.5277731,-2.5020394,-3.019133,-3.0350556,-1.5418673,-1.7264471,-3.42695,-3.3348327,-3.0338054,-2.5781567,-2.6702814,-1.8577652,-3.6068225,-4.02626,-3.9781308,-4.435101,-3.0925355,-3.688232,-3.3885946,-3.0549834,-3.231061,-3.408732,-3.6087382,-4.048573,-3.4077773,-3.1767297,-3.062262,-2.8033142,-1.9226911,-1.0527422,-2.3282998,-3.7702985,-2.8207588,-3.7864661,-4.228977,-3.9751945,-4.4961867,-4.538053,-4.2662683,-4.460052,-4.376076,-3.7455697,-4.3584127,-4.314493,-4.3062425,-4.1703124,-3.852015,-3.6773067,-3.570427,-3.1192706,-2.854598,-2.9184904,-3.3507104,-3.2963376,-2.551293,-2.2339168,-2.5806708,-3.6210456,-3.570895,-3.7515445,-3.0366893,-3.2011604,-4.1507792,-3.9554257,-3.9593816,-4.0574775,-3.6781087,-3.8012362,-3.9945612,-4.1234975,-4.0960917,-4.0459065,-3.9410167,-3.9140205,-3.4511108,-4.1094522,-3.9277368,-3.6433156,-3.7562728,-4.3349047,-4.407952,-4.205064,-3.8168783,-3.6083655,-3.4441595,-3.808928,-4.110108,-4.2205243,-4.4112635,-4.0298696,-3.4625285,-2.8642273,-3.0994768,-2.8011613,-2.237587,-1.3726609,-1.9650619,-2.2809103,-3.0928884,-3.8467183,-3.87787,-3.6362329,-3.794602,-3.6989703,-3.4131906,-3.7077327,-4.3283315,-4.2923093,-3.4915473
+-0.103989094,-1.6116607,-2.145058,-2.4984984,-2.8146791,-2.9333727,-2.5328336,-2.7765503,-2.8921478,-3.0965567,-2.8008146,-3.0066776,-3.243051,-3.4065652,-3.3632517,-3.2518892,-3.116829,-3.097434,-3.043894,-2.9537783,-3.073389,-2.4512405,-3.2524714,-3.6987495,-3.7800288,-3.712298,-3.2318788,-3.7564554,-3.5797389,-4.1482377,-3.3662143,-3.863565,-4.179721,-4.424773,-3.7726545,-4.11169,-4.1756506,-4.2057076,-4.092351,-4.0513434,-3.5382223,-4.0019493,-4.398413,-4.4495277,-4.4001164,-4.1204276,-3.7294097,-4.3428793,-4.333093,-4.3801312,-3.453769,-4.0374703,-4.3072095,-4.2836146,-4.262405,-4.082316,-4.2218566,-4.2126923,-3.9527478,-3.979093,-4.298016,-4.3303804,-3.7187624,-4.256013,-4.2509465,-3.5101676,-4.4389544,-4.601047,-4.351923,-4.2495036,-4.175441,-4.1624246,-3.9269576,-3.9904003,-3.985643,-2.632267,-4.078523,-3.4536867,-4.5113683,-4.62115,-4.5209136,-4.1470914,-4.3319182,-2.9310799,-3.5242095,-4.48789,-4.7106113,-3.7563539,-4.504686,-4.6832995,-4.6858172,-4.6016316,-3.9277754,-4.6626267,-3.5571275,-3.9342089,-4.503805,-4.514602,-4.232423,-4.5622487,-4.5712724,-4.64784,-3.2698684,-4.379222,-4.531237,-4.7171216,-4.7466693,-4.7721,-4.747201,-4.6170006,-4.5437107,-4.529858,-4.4694715,-4.459819,-4.465123,-4.050945,-4.0404286,-3.334993,-3.5337677,-3.816031,-4.3047023,-3.9215422,-4.6170726,-4.4052634,-3.2601922,-3.8631072,-4.32383,-4.618254,-4.805307,-4.509194,-4.6835647,-4.3555036,-4.7428927,-4.6415358,-4.4684815,-4.346022,-4.042418,-4.700733,-4.379474,-4.5219274,-4.5327983,-4.67139,-3.9020553,-4.550456,-4.6877513,-4.6901174,-4.6179214,-4.5949607,-4.618671,-4.5757804,-4.516499,-4.4811387,-4.249726,-3.0289762,-4.387566,-4.537301,-4.5778317,-4.4988346,-4.480243,-4.3243146,-4.237345,-4.204595,-4.23387,-4.1732354,-4.2543683,-4.2482834,-4.195507,-4.250115,-4.343902,-4.28808,-4.2992897,-3.2663202,-3.9588857,-4.503882,-4.568678,-4.4688034,-4.456801,-4.4599223,-3.118234,-3.3515503,-3.6817608,-3.4021807,-3.6055114,-4.535993,-4.7802997,-4.710862,-4.6685915,-4.68047,-4.6834645,-3.040553,-2.9011087,-4.3496127,-4.6315475,-4.6969466,-4.7448707,-4.787048,-4.6565704,-4.800053,-4.6703753,-4.663044,-4.6071563,-4.5790577,-4.645958,-4.199085,-4.451494,-4.3896546,-4.4686522,-4.372667,-4.444636,-4.6137223,-4.4014106,-4.3784184,-4.3699555,-4.236309,-4.511412,-4.3662505,-4.2995033,-4.040694,-4.185534,-4.276319,-4.2554026,-4.2191386,-4.109039,-4.019748,-4.151674,-4.096588,-4.153582,-4.429301,-4.248242,-4.18829,-4.12038,-4.162416,-4.206865,-4.1090198,-4.013766,-4.165688,-4.36476,-4.350185,-4.148398,-4.01553,-4.1880126,-4.456448,-3.2143075,-3.0093226,-4.2385707,-4.500981,-4.4805026,-4.3726306,-4.1501994,-2.9812512,-4.0782237,-4.510927,-4.687983,-4.359015,-3.8033366,-2.9378698,-3.3811438,-3.6508765,-4.311123,-4.1491995,-3.1473322,-2.7605863,-3.6096175,-3.7191477,-3.3949413,-2.9403694,-3.3024168,-2.2824392,-3.890266,-4.59979,-4.5043073,-4.6212463,-3.751768,-4.310866,-4.2559047,-4.012382,-4.4572754,-3.7070212,-4.15428,-4.4887347,-4.2967343,-3.146125,-3.2406797,-2.8105435,-2.1829448,-1.3065798,-0.8421622,-1.8452086,-3.3240886,-4.134163,-4.2287717,-4.295176,-4.2522073,-4.568854,-4.0326495,-4.598328,-4.076772,-3.076555,-4.0183587,-4.386697,-4.2436814,-4.284266,-4.1066136,-4.2532954,-4.045118,-3.9763956,-4.061439,-4.127477,-4.4904923,-4.319381,-3.8274827,-3.6712637,-3.9692163,-4.1618237,-3.463341,-4.3557873,-3.8251386,-4.145714,-4.426033,-4.3082347,-3.8668003,-4.185885,-3.9774613,-4.043422,-4.038014,-4.0036936,-4.141517,-3.8046932,-4.1261616,-4.2591395,-4.1338434,-4.3121696,-4.2581344,-3.9943404,-3.3178434,-3.9904761,-4.1394005,-4.133731,-3.8761983,-3.8579283,-3.9021482,-3.729034,-4.109036,-4.042585,-4.0470366,-3.89178,-3.594927,-2.6140003,-2.585692,-2.4164796,-2.1567993,-1.0764737,-2.0324254,-2.72822,-3.0552306,-3.295329,-3.3396606,-3.16884,-3.2380533,-3.2837257,-3.3307805,-3.0142858,-3.5583894,-3.7798195,-2.6284726
+-0.8392562,-2.0549295,-2.868475,-3.0776348,-3.016074,-3.4358118,-2.8719432,-3.9091458,-4.039887,-4.0335264,-3.652688,-3.1663923,-3.6912513,-3.9747767,-3.9414506,-3.9423184,-3.8230462,-3.8536801,-3.8322978,-3.4815645,-3.6051135,-2.81736,-3.8624568,-4.1556015,-4.0454617,-3.9724798,-3.8510804,-2.6450758,-4.2184486,-4.2761245,-3.3014328,-4.167622,-3.4642022,-4.4884458,-4.181002,-4.3022895,-4.738554,-4.736312,-4.4568877,-4.411387,-4.3667665,-2.9898372,-4.073789,-4.8157034,-4.9167867,-4.6387687,-2.933892,-4.3799357,-4.377213,-4.228281,-3.8140588,-4.457728,-4.6163344,-4.6335993,-4.5401816,-4.3198404,-4.144466,-3.9335423,-3.5773058,-3.89319,-3.902525,-3.861669,-3.0261455,-3.980546,-4.0651503,-2.7786405,-3.735598,-4.4361653,-4.6114717,-4.4251027,-4.2485456,-4.10916,-4.097939,-3.9987736,-3.8993583,-3.7835197,-3.4112377,-4.010999,-3.726293,-3.8108025,-3.9636316,-3.9398293,-3.8821616,-3.8504167,-2.1195035,-4.0462976,-4.199909,-4.1611657,-3.7285094,-3.855649,-4.2527466,-2.906667,-4.154773,-3.2794197,-3.793003,-4.421025,-4.6572957,-4.0963283,-4.698298,-3.6661637,-4.668947,-4.6305943,-4.468801,-4.3850274,-4.24339,-4.1361537,-3.183422,-3.9545884,-4.088741,-4.0816517,-4.006477,-3.9430966,-3.901699,-2.4739647,-3.9926424,-4.1082296,-4.0659842,-3.9077563,-2.9774218,-4.089607,-4.1747932,-4.139168,-2.2317865,-3.5051777,-3.978127,-3.910047,-3.968246,-4.069693,-3.8999653,-3.950531,-3.8827238,-4.0626016,-4.615611,-4.59598,-4.546004,-4.592959,-4.7051177,-4.645247,-3.7853408,-4.487279,-4.5694637,-4.6427507,-3.279602,-4.4596486,-4.5435867,-4.5040984,-4.3609667,-4.2734675,-3.369779,-4.096395,-4.2405596,-4.1943984,-4.1602273,-2.5520086,-4.112699,-4.1719074,-4.209331,-4.1745915,-4.230698,-4.16195,-4.1052537,-4.0500646,-3.9816504,-3.9913764,-3.9383602,-3.8403478,-3.8534503,-3.8917775,-3.8682728,-3.8375416,-3.8168697,-3.3757994,-3.9140763,-3.9901757,-3.2666454,-4.07834,-4.2241607,-4.1506276,-3.478038,-2.883164,-3.5793176,-3.7338624,-4.3346972,-4.4923325,-4.4675145,-4.454535,-4.4730244,-4.370418,-4.3957543,-3.3274047,-2.0951722,-3.9560952,-4.3107495,-4.456759,-4.4283824,-4.4034758,-4.210138,-4.2833395,-4.3175645,-4.3055615,-4.2186947,-4.178169,-4.097989,-4.0982356,-4.057502,-3.9511943,-3.9587245,-3.773337,-3.8051057,-3.720818,-3.8006334,-3.7615204,-3.801845,-3.7361922,-3.70476,-3.7462206,-3.7608128,-3.733933,-3.6721861,-3.736918,-3.6922898,-3.7642078,-3.7529902,-3.7719889,-3.8318963,-3.7378645,-3.6197848,-3.7992349,-3.847928,-3.9133687,-3.9400325,-3.9457965,-3.9537044,-3.8248763,-3.8414187,-3.936067,-3.9459186,-3.8900304,-3.909051,-3.9887762,-3.8981862,-4.0085235,-3.0174532,-3.9108005,-3.7879367,-4.44148,-4.3353763,-3.7586718,-4.1207824,-3.8071427,-4.4533296,-4.3234477,-4.382747,-4.169431,-3.7589288,-3.5889502,-4.181948,-4.1246657,-4.436337,-3.8562822,-3.4771087,-3.5607228,-4.1637716,-4.2365165,-4.187706,-4.1171813,-4.097856,-4.1127906,-4.207584,-4.1309514,-4.1826897,-4.3335814,-3.987595,-4.356918,-4.1134124,-3.9631314,-2.8122277,-3.7727733,-4.298627,-4.238773,-4.0474524,-3.6625652,-3.6069667,-2.973432,-2.438513,-2.1149426,-2.4207714,-3.5025997,-3.7032747,-3.841498,-3.843144,-3.9863887,-4.1622214,-4.1899095,-3.5528827,-3.969277,-4.005381,-3.5003777,-4.393349,-4.8265934,-4.648338,-4.4556193,-4.3408074,-4.3458953,-4.1659436,-4.4002585,-4.284706,-4.174422,-3.8396993,-4.1088576,-3.8385715,-4.0573726,-4.2011924,-4.135238,-3.8395314,-4.232389,-3.9650826,-4.139485,-4.3660197,-3.9476361,-3.5906446,-4.361405,-4.288675,-4.2875934,-4.240907,-4.181344,-4.08449,-3.8878021,-4.029404,-4.0771856,-4.1695647,-4.269165,-3.9666743,-3.9679956,-3.2512274,-3.449525,-4.526924,-4.3574204,-4.2205486,-4.1506124,-4.0577974,-4.2186494,-4.326986,-3.9841385,-3.992929,-3.8720884,-3.4296074,-3.2216885,-4.3102894,-4.0400887,-3.828854,-3.5769844,-4.3541284,-4.444748,-4.085721,-3.8435378,-4.0017495,-3.8323526,-3.8560395,-3.601634,-3.3578439,-3.4498053,-4.062443,-3.940484,-3.056058
+-0.9075386,-2.272923,-3.419366,-3.8999162,-4.0819063,-3.948875,-3.507146,-4.02562,-4.212546,-3.8405032,-3.6591144,-3.4738767,-4.0332503,-4.1519756,-4.1270485,-4.025189,-3.9282384,-3.8778663,-3.9033294,-3.804666,-3.6518068,-2.3509064,-3.7385116,-4.228139,-4.266166,-4.305652,-4.2735405,-4.1560864,-4.050549,-3.8255534,-2.3371382,-3.7147431,-3.4041097,-4.0729012,-4.1523414,-4.086704,-4.3350854,-4.3394723,-4.304828,-4.2008586,-4.0698566,-3.163047,-3.0143805,-4.028069,-4.24394,-4.2221923,-3.101489,-3.961813,-3.3188581,-3.8896222,-3.7213655,-4.1001444,-4.242704,-4.3421903,-4.3022046,-4.289246,-4.0793977,-4.015303,-2.1444554,-3.6873744,-3.9793067,-4.0893703,-3.8344874,-4.0706778,-4.3539724,-3.043547,-3.155857,-3.9927773,-4.2924685,-4.3454566,-4.3277225,-4.223415,-4.1226454,-4.0843835,-2.4091396,-3.3497655,-4.067655,-4.2437253,-4.225165,-4.2570896,-4.1557894,-4.0955935,-3.9849067,-3.9316573,-3.8251958,-3.5905828,-3.7270942,-3.7858849,-1.8858008,-3.9587445,-4.2336426,-4.1223226,-4.2235956,-3.499645,-3.688783,-3.831595,-3.854465,-4.1419697,-4.232087,-3.099644,-4.224836,-2.878163,-4.1930194,-4.321382,-4.2244205,-3.3284795,-3.1021042,-3.3697393,-3.3343565,-3.9980392,-3.3102837,-4.2040253,-4.306378,-4.2459083,-4.1891217,-4.1865106,-4.0212045,-3.9314532,-3.8379588,-3.8016515,-3.4198995,-3.061119,-2.771222,-3.1425428,-3.1767666,-3.902697,-3.42805,-3.4635684,-3.96211,-3.6370265,-3.684513,-3.545724,-4.050778,-4.226523,-4.327356,-4.3603516,-4.3329215,-4.2662563,-4.188003,-3.3420737,-3.2711148,-3.8966002,-4.1646943,-4.332122,-4.241694,-4.1581388,-4.0841403,-3.952145,-4.0180964,-3.9644647,-3.9619684,-3.9760919,-3.550825,-3.740108,-0.8400844,-3.2205853,-4.001845,-4.276083,-4.345588,-4.336248,-4.269545,-4.1960835,-4.1141777,-4.013408,-3.1840043,-3.824162,-3.316334,-4.1072755,-4.33566,-4.3430467,-4.32087,-4.0152235,-4.1214147,-2.9228103,-3.6188998,-3.8449693,-4.1512785,-4.261474,-4.26352,-4.238923,-3.6193118,-3.1406078,-3.9790149,-4.1714544,-4.282783,-4.3047805,-4.332068,-4.3267803,-4.209741,-2.8605757,-1.2208548,-3.4164238,-4.094823,-4.3119545,-4.3878026,-4.3978333,-4.3991494,-4.4020534,-4.3344502,-4.3097057,-4.2637043,-4.217347,-4.1385655,-4.138044,-4.122028,-4.060513,-4.019408,-3.976173,-3.8820539,-3.82964,-3.8214726,-3.800819,-3.9130769,-3.8380542,-3.7784824,-3.8201308,-3.8827534,-3.8221087,-3.8128657,-3.775374,-3.7480044,-3.7348409,-3.8164482,-3.7920537,-3.777367,-3.71667,-2.6015801,-3.5079384,-4.162236,-4.2635665,-4.2906556,-4.2666426,-4.285917,-4.0061507,-3.7187705,-3.4693742,-3.5477068,-3.8837285,-4.030207,-4.0030875,-3.7283773,-3.689334,-3.0886078,-3.8383503,-3.6616492,-4.1342254,-4.1753135,-3.9669251,-3.6319394,-3.5760996,-4.068086,-4.2857003,-3.941307,-3.2112038,-2.7335744,-3.1765053,-3.0736103,-4.0286503,-4.130413,-3.3428097,-3.5119677,-3.84999,-3.2013502,-3.7643027,-3.8927288,-4.043309,-4.087484,-4.1274257,-4.3076453,-4.239247,-4.199372,-4.434274,-3.7522187,-4.033853,-3.6145792,-3.6902223,-3.0077584,-3.62406,-3.9991326,-4.0805836,-3.843101,-2.48707,-2.7074676,-2.1350727,-1.5747406,-1.4242682,-2.4427073,-3.6847982,-4.185,-4.2770963,-4.208262,-4.30263,-4.4184012,-4.397303,-4.356482,-3.2505233,-3.7844644,-3.5874925,-3.9974208,-4.3596334,-4.3470054,-4.3749576,-4.3187714,-4.142612,-4.252436,-4.2531676,-4.457942,-4.5213523,-3.891168,-3.8957896,-3.8564653,-4.189075,-4.3525662,-3.5208604,-3.8457317,-3.7039256,-4.071252,-4.595466,-4.616315,-4.4388127,-3.1877139,-4.0294757,-4.2657905,-4.501069,-4.5464597,-4.568643,-4.4916606,-4.397555,-4.3326297,-4.293632,-4.3245344,-4.17357,-3.973784,-3.9306731,-4.1623626,-2.7893186,-4.223656,-3.9496922,-3.857193,-4.044281,-4.140536,-4.081572,-4.1901603,-3.8363767,-4.1220326,-3.2462556,-3.3512053,-3.1609266,-3.6919417,-3.261367,-3.2020862,-3.1947641,-4.178538,-4.2143188,-4.3029423,-3.4998145,-4.121275,-4.1691146,-4.2548804,-4.220632,-4.141189,-4.020485,-4.1217046,-3.4990396,-3.5995345
+-1.6120777,-2.7784204,-3.153163,-3.3663912,-3.3930938,-3.3620465,-2.9223506,-3.3745508,-3.3805404,-3.2730489,-3.4982364,-3.3386188,-3.427033,-3.536675,-3.3865774,-3.5798633,-3.5860996,-3.6531389,-3.7308545,-3.7181125,-3.6563826,-3.2959645,-3.284766,-3.6364381,-3.6824317,-3.7098393,-3.7004538,-3.5665517,-3.7067585,-3.7097144,-3.0092146,-3.5110989,-3.5160935,-3.5906274,-3.7134995,-3.7394118,-3.8329425,-3.8679204,-3.8842711,-3.8277497,-3.8457465,-3.833201,-3.660694,-3.7805572,-3.8835387,-3.8597507,-2.6070452,-3.585907,-3.553904,-3.6026573,-3.186328,-3.7997003,-3.9135394,-4.007408,-4.016071,-4.0438466,-4.048963,-2.1787891,-2.4980593,-2.8509588,-3.0104635,-3.6632524,-3.8803325,-3.8727112,-3.989843,-2.9786792,-2.7454264,-3.0240197,-3.8201833,-4.030885,-4.0473666,-4.0227704,-4.077767,-4.060602,-3.8792648,-3.7434464,-4.0830483,-2.859219,-3.8447208,-3.9734006,-4.042321,-4.062567,-4.0542216,-4.042676,-3.8584151,-2.8108802,-3.7983851,-3.9073896,-2.9243026,-3.7342925,-3.7098556,-3.18206,-3.757502,-3.8133144,-3.7169137,-3.9168224,-3.2560444,-3.4158022,-3.8778338,-2.9658246,-3.805345,-3.7333956,-3.9385667,-3.907971,-3.8663669,-2.1269255,-3.427519,-2.9103322,-3.7705226,-3.7156782,-3.5289493,-3.8591547,-3.2299445,-3.8937201,-3.7524524,-3.9590712,-4.003009,-4.020947,-4.077081,-4.085634,-4.1346498,-2.8089638,-3.6199765,-3.1903532,-3.0622635,-3.0444846,-2.9676461,-3.3317277,-3.8398042,-3.839778,-3.5414207,-2.716693,-3.4841533,-3.5424254,-3.831469,-3.9113488,-3.945396,-3.8606954,-3.9862065,-2.2202349,-2.9369195,-3.6437216,-3.813376,-4.085975,-3.9231744,-4.0359955,-2.5124438,-3.779736,-3.8925853,-3.716061,-3.9260168,-3.9543529,-3.7632055,-3.6436987,-1.9284642,-3.1829448,-3.6498742,-3.8348703,-3.9484634,-3.956564,-3.9929585,-4.0193048,-4.0249877,-3.8964825,-2.8561769,-3.0704556,-2.9860663,-3.3892002,-3.647618,-3.6828437,-3.6199923,-2.9035072,-3.4637368,-3.4978623,-3.4778407,-2.9531522,-3.634806,-3.7604737,-3.1543674,-3.590744,-3.7764297,-3.8219638,-3.5953462,-3.984118,-3.9950986,-4.006987,-3.9079337,-3.9103546,-3.8545747,-2.7849708,-1.3563716,-2.7384071,-3.4021037,-3.6025505,-3.700593,-3.762785,-3.8230247,-3.8379226,-3.8417883,-3.8437324,-3.868999,-3.8688078,-3.85822,-3.8161664,-3.8123074,-3.8027825,-3.9684215,-3.9281282,-3.898086,-3.9742026,-3.946179,-3.9301486,-3.9273496,-3.9173656,-3.8928523,-3.9069963,-3.8906417,-3.8793383,-3.8474927,-3.8508468,-3.8461938,-3.8090854,-4.00235,-3.8466387,-3.8933182,-3.9043627,-3.096956,-3.6752243,-3.7070546,-3.7301335,-3.7973452,-3.8196392,-3.8017068,-3.57239,-3.565796,-3.5782852,-3.7261624,-3.847322,-3.8693423,-3.7909646,-3.5900805,-3.7812495,-3.702765,-3.8280072,-3.2938414,-3.5325832,-3.5463333,-3.7612495,-2.9938114,-2.1492472,-2.9259408,-3.2815647,-3.0775433,-2.9724455,-3.1543045,-2.9403973,-3.0294387,-3.0605178,-3.3593357,-3.1681867,-3.6502867,-3.6177554,-3.3963208,-3.1848714,-3.2758899,-3.4265103,-3.442677,-3.6572332,-3.6071417,-3.6210876,-3.5898402,-3.648066,-3.4536977,-3.44486,-3.463065,-3.2962408,-3.5490527,-2.9310164,-3.3937309,-3.4967356,-3.4112618,-2.9294393,-2.9981432,-2.9432669,-3.0966704,-3.491703,-3.5698578,-3.5692396,-3.5971565,-3.6119351,-3.64964,-3.7235017,-3.6688244,-3.6853225,-3.7017288,-2.8837895,-3.036491,-3.108393,-3.4179945,-3.4534407,-3.6669552,-3.467814,-3.426581,-3.481708,-3.4619997,-3.5982742,-3.7329488,-3.765068,-3.6810117,-3.6968784,-3.6945596,-3.7236495,-3.8874164,-2.9392495,-3.4223862,-3.28078,-3.6346102,-3.725185,-3.6691835,-3.6941051,-3.2713153,-3.5626416,-3.6499808,-3.7873197,-3.933329,-3.8702793,-3.8674722,-3.894247,-3.8589683,-3.855723,-3.9010563,-3.7660556,-3.8824944,-3.981935,-3.9597363,-3.7510571,-3.7669349,-3.643901,-3.8269973,-3.9910965,-4.1040235,-4.0888066,-4.0666084,-4.041329,-3.924098,-3.7482219,-2.930912,-3.174384,-3.2886324,-3.123731,-3.3805652,-3.6065297,-3.6708226,-3.7358809,-3.9508982,-3.2285228,-3.7267442,-3.8571167,-3.9527922,-3.9568186,-3.942676,-3.8467321,-3.983786,-3.890461,-3.446977
+-0.9666768,-2.5447373,-2.369043,-1.8417804,-1.6379545,-1.3151023,-0.9904222,-1.1462421,-1.07097,-1.393147,-0.7093548,-1.2161844,-1.3384356,-1.3279412,-1.5683987,-2.3138337,-2.8979454,-3.2239444,-3.4285834,-3.4499102,-3.4046774,-3.1209402,-3.864746,-3.8939424,-3.7213712,-3.4763079,-4.1135406,-3.8628182,-3.9245505,-4.0433917,-3.3931918,-3.8939395,-4.110498,-4.1381907,-4.309747,-4.116882,-4.148313,-4.0923305,-4.1527905,-3.8558025,-4.0103707,-4.039988,-3.5701485,-4.0070624,-3.9922671,-4.050668,-3.9385014,-4.0398345,-4.0032024,-3.9127703,-3.5361047,-3.6212962,-3.9818807,-4.1094356,-4.1071744,-4.0943274,-4.1437607,-4.1190352,-4.124306,-4.1586637,-4.1814766,-4.16204,-3.2385445,-3.8232236,-4.3210144,-3.4079843,-4.109039,-4.04085,-4.2928634,-4.4209104,-4.310271,-4.2979054,-4.3147907,-4.390946,-4.283463,-4.2150135,-4.22775,-4.2112813,-4.187743,-4.221812,-4.267117,-4.195824,-4.2455897,-4.21453,-4.247146,-4.3050275,-4.3264203,-4.0743275,-4.3768034,-4.4741473,-4.3130717,-4.1913543,-4.3894296,-4.3133197,-4.326653,-4.1913996,-4.3291564,-4.3149705,-3.621338,-3.8431468,-4.441301,-4.43318,-4.4520235,-4.530439,-4.2112637,-4.539675,-4.6267276,-4.483644,-3.4425118,-4.478822,-4.513594,-4.531305,-4.0531626,-4.604231,-4.6384854,-3.6789575,-4.6029334,-4.5838685,-4.6746106,-4.605645,-3.9041238,-4.5171533,-4.731728,-4.623308,-4.654586,-4.6414633,-4.6006007,-3.6809149,-4.5514874,-4.554897,-4.591887,-2.949017,-3.5292368,-4.1309657,-4.3069773,-4.0573735,-4.6695485,-4.5243354,-4.7773013,-4.927014,-4.7834835,-4.627093,-3.5792034,-4.61048,-4.6498494,-4.6479115,-4.624768,-4.7654834,-4.6644983,-4.496778,-4.749885,-4.7046676,-4.379085,-4.7487082,-4.7817664,-4.671375,-4.6744456,-4.6840367,-4.7289844,-4.683964,-3.3567073,-4.4449806,-4.543337,-4.462539,-4.667575,-4.668817,-4.8101134,-4.6627135,-4.6107955,-4.2790155,-3.7820578,-4.330816,-4.6806583,-4.667702,-4.661386,-4.73303,-4.718311,-4.5367746,-4.16704,-4.489001,-4.5380893,-3.7196999,-4.5116634,-3.7365713,-4.298103,-4.638986,-4.622399,-4.5532594,-4.549934,-4.518034,-4.06714,-4.6109324,-4.5348735,-4.3095937,-4.352932,-4.2724133,-4.425836,-4.470632,-4.341817,-4.1627593,-4.4745107,-4.542483,-3.2243896,-3.0183175,-4.423907,-4.642895,-4.286649,-4.7369113,-4.4560003,-2.8428414,-4.1205034,-4.3322244,-4.0163183,-4.5024366,-4.4497175,-4.62705,-4.4998,-4.8328433,-4.890905,-4.790718,-4.5249324,-4.5834746,-4.3375425,-4.6338434,-4.715012,-4.4323125,-4.129926,-3.9406362,-3.9258037,-4.3325233,-4.374572,-4.3802595,-4.053111,-4.4019246,-3.9681382,-3.8699794,-3.4736538,-3.112679,-3.4173338,-3.5055795,-3.5269246,-3.3352227,-3.3342648,-3.8795676,-3.8646035,-4.081332,-4.037428,-3.7715507,-3.3294868,-3.1347337,-2.9496489,-2.7528808,-2.665182,-2.4974031,-2.528428,-1.8793869,-2.2568257,-2.341242,-2.286171,-2.204323,-1.9516897,-1.3210714,-2.1436503,-2.2803771,-2.2444167,-1.9302044,-2.0764866,-1.7876475,-1.9129312,-1.8520944,-1.5822988,-1.4993784,-1.696682,-1.7045562,-1.8364067,-1.9115405,-1.9233387,-1.6684189,-1.6389327,-2.0158873,-2.3237214,-2.464377,-2.6099422,-2.599751,-2.4315314,-2.1155505,-1.4214437,-1.7835371,-1.5686562,-1.9307015,-2.0758827,-1.4701765,-1.4944885,-1.450378,-1.1425619,-1.3371508,-1.9080014,-2.4748404,-2.1233358,-2.1699696,-2.092207,-2.001305,-1.7605321,-1.7432966,-1.9650693,-1.8288703,-1.639853,-1.7050233,-2.123497,-2.1357002,-1.8760571,-1.8646073,-1.2377148,-1.3217647,-1.4980843,-1.7427816,-1.4015613,-1.1307352,-1.2343416,-1.4175098,-1.392056,-1.251159,-1.6487765,-1.0915499,-0.4047398,-0.27967745,-0.48921657,-0.6171943,-1.4386997,-2.439549,-2.7220645,-3.2340145,-2.8892684,-2.8083868,-2.975862,-3.3533957,-3.0867724,-2.6570055,-2.6164417,-1.9068866,-1.3827529,-2.473855,-3.197466,-2.6650062,-2.2058,-2.054598,-2.1287806,-1.9825537,-1.9020824,-1.8338056,-1.894165,-1.6085126,-1.3922594,-1.1188881,-0.4993124,-0.71632403,-1.3108389,-0.6964509,-0.3918125,-0.975764,-1.4496565,-2.7921505,-3.4231777,-2.6546135,-2.414813
+-1.3153887,-2.9936967,-3.046506,-3.276534,-3.6813064,-2.9834929,-2.302218,-2.8863654,-3.2139082,-3.0470097,-2.4162776,-3.0896282,-3.7439437,-3.762961,-3.8494592,-3.9077702,-3.840528,-3.8044257,-3.7529492,-3.8046117,-3.538445,-3.3741972,-3.7101383,-3.8718076,-3.8120651,-3.6826649,-3.7444959,-3.177867,-3.9428492,-4.071561,-3.2859852,-4.219997,-4.524775,-4.428986,-4.3336425,-4.426083,-4.5284896,-4.4398293,-4.4710355,-4.4184375,-4.2085605,-4.1102495,-3.8075118,-4.403733,-4.63882,-4.545452,-4.375606,-4.009135,-4.338408,-4.3559265,-3.4465628,-4.0490117,-4.4540296,-4.5954046,-4.51955,-4.325794,-4.3687973,-4.257904,-4.104293,-4.3326335,-4.3517914,-4.1893625,-3.8670268,-3.9040685,-4.375645,-3.4657292,-4.615721,-4.3099976,-4.9638505,-4.77093,-4.650609,-4.508206,-4.5770297,-4.444194,-4.3666434,-4.1039386,-3.148533,-4.4657216,-4.508464,-4.5616355,-4.634127,-4.590301,-4.6812835,-4.0353475,-4.6497846,-4.598346,-4.541906,-4.5784807,-4.621329,-4.5462317,-4.45086,-4.4901633,-4.3407393,-4.374953,-4.18811,-4.343588,-4.605718,-4.594769,-4.4707403,-4.679806,-4.590379,-4.439958,-4.4188333,-4.4693727,-4.1215386,-4.5749145,-4.633862,-4.6287026,-4.476531,-4.629799,-4.5405297,-4.569017,-4.5049853,-4.486974,-4.3438287,-4.4061594,-4.6246686,-4.4786367,-3.8397832,-4.6070538,-3.0128608,-4.666979,-4.8169913,-4.685591,-4.6915607,-4.7050385,-4.7081213,-4.4624066,-4.818478,-4.5366125,-4.441542,-4.5531087,-4.289037,-4.313731,-4.4458156,-4.1777263,-4.820395,-4.7264204,-4.0395217,-5.034953,-4.8883824,-4.898126,-4.0618653,-5.0847573,-4.7645593,-4.8517795,-4.8474226,-4.843559,-4.6673546,-4.6122036,-3.5000076,-4.792684,-4.7598653,-4.4914145,-4.7169976,-4.575805,-4.614939,-4.665564,-4.6946836,-3.76549,-4.801317,-4.81591,-4.759318,-4.871384,-4.687423,-4.6623693,-4.69193,-4.4742236,-4.43272,-4.3184876,-3.4797342,-4.0002856,-4.6812005,-4.5428357,-4.553862,-4.6057935,-4.573904,-4.398627,-4.1880026,-4.4936733,-4.3917155,-2.8551693,-3.9867167,-4.197355,-4.7098536,-4.6599274,-4.495877,-4.537647,-4.536568,-4.4458737,-3.054318,-4.5872946,-4.4595485,-4.460366,-4.5137205,-4.4292254,-4.573604,-4.544601,-4.476375,-4.6225667,-4.558559,-4.693706,-4.4339027,-3.127881,-4.628358,-4.7100654,-4.8195014,-4.7239385,-4.46901,-4.0055842,-4.7201395,-4.6074386,-4.501142,-4.772585,-4.5091834,-4.631123,-4.3351665,-4.799356,-4.81282,-4.8043866,-4.576648,-4.621132,-4.3732266,-4.8546357,-4.808105,-4.516277,-4.4927363,-4.441037,-4.5289526,-4.743282,-4.8284936,-4.7502418,-4.4865165,-4.7201715,-4.595461,-4.44087,-4.202885,-4.229774,-4.7617264,-4.674895,-4.6601634,-4.355842,-3.79354,-3.809834,-4.732229,-4.7086616,-4.783289,-4.5690966,-3.7246218,-2.5642204,-3.2718277,-3.0811253,-3.1132884,-2.9548361,-2.673313,-1.5574791,-1.9711363,-1.9658911,-2.2482953,-2.3090591,-1.0479004,-1.0454018,-1.4993987,-1.8930137,-1.8021317,-1.4967494,-1.6428499,-1.4770424,-1.4014297,-1.5019403,-1.1706021,-1.6101301,-1.8351178,-1.8018174,-2.0981364,-1.9809661,-1.648174,-1.4259529,-2.1517873,-2.8264053,-3.0218618,-2.9845233,-2.8788152,-2.7886457,-2.3580747,-1.7749562,-1.567833,-2.6789043,-3.1850743,-3.1174374,-2.837118,-2.412002,-3.2223504,-3.9419131,-3.47471,-3.9787345,-4.3317313,-3.2268763,-4.018268,-4.0639663,-4.3359323,-4.241175,-3.8420877,-3.620511,-3.2117388,-2.4342794,-2.4621267,-2.2485487,-2.5815706,-2.6912518,-2.229959,-1.9806359,-1.4882095,-2.514385,-2.7513652,-2.828392,-2.3091578,-1.9240072,-2.5998368,-2.9688048,-2.6797004,-2.6813445,-2.5000932,-2.3448577,-2.7769704,-3.6004207,-3.8226695,-4.05392,-4.272122,-4.134588,-3.7152247,-4.3256755,-3.8444648,-3.8312964,-3.0698,-4.157927,-4.031194,-3.8263297,-3.3987036,-2.5947118,-1.9701695,-3.2658184,-4.2967677,-3.5831409,-3.7081065,-3.2036524,-2.7324166,-2.0298643,-2.1764889,-2.0380723,-1.9014595,-1.4125264,-1.0310035,-0.8373024,-1.0247307,-1.5673242,-2.0603824,-2.0011983,-2.9175284,-3.651586,-3.3470438,-3.977038,-4.321074,-4.1173954,-3.6020193
+-1.7703314,-2.5260744,-2.6362076,-3.1786642,-3.64189,-3.2698834,-2.785728,-3.3213067,-3.6404269,-3.7391953,-3.0531783,-3.4531693,-3.7322168,-3.6596386,-3.5929768,-3.5320551,-3.5173233,-3.538061,-3.5457435,-3.5195732,-3.3106933,-3.1216478,-2.9464571,-3.7544909,-3.8023648,-3.7601013,-3.6461928,-3.2954135,-3.8703094,-3.9876933,-3.3230143,-3.460042,-3.6725304,-4.430193,-4.177584,-3.9357924,-4.3805375,-4.5062118,-4.5303855,-4.6300645,-4.2704124,-4.523605,-4.4342446,-4.362459,-4.582066,-4.4917955,-4.119642,-4.5031705,-4.3337994,-4.3283677,-3.1982496,-4.243486,-4.3005147,-4.460785,-4.6612535,-4.352263,-3.8893065,-4.661016,-4.3975105,-4.3170257,-3.9598908,-4.6318307,-3.9496713,-4.3726044,-4.5861373,-4.1877003,-4.8217473,-4.8546157,-4.680967,-4.5892615,-4.6359725,-4.5891414,-4.5666194,-4.4273086,-4.4371347,-4.3513064,-3.717299,-3.421985,-4.506252,-4.758984,-4.763323,-3.956356,-4.6920347,-3.4235415,-3.7058587,-4.553327,-4.774058,-4.532607,-4.8604636,-4.755485,-4.6196084,-4.640249,-4.609368,-4.3656335,-3.696372,-4.0944757,-4.6668086,-4.5094285,-4.670272,-4.8505154,-4.844542,-4.6893754,-4.491032,-4.430517,-4.404314,-4.6905894,-4.3190055,-4.7252707,-4.088256,-4.532702,-4.8435493,-4.750646,-4.7069106,-4.619121,-4.3393884,-4.188681,-4.4042387,-3.6699798,-3.5163732,-4.47188,-4.109716,-3.9493632,-4.8144984,-4.799591,-4.460873,-4.5806413,-4.314629,-4.2444806,-4.713777,-4.4884725,-4.388062,-4.4553227,-4.3701606,-3.2325938,-4.328752,-4.629944,-3.7394805,-4.4264255,-3.8537798,-4.165087,-4.8503804,-4.7409043,-4.296903,-4.6652837,-4.5063696,-4.5436597,-4.5272546,-4.5556126,-4.466123,-4.444453,-4.4489446,-4.4119077,-4.4646597,-4.3640428,-4.2882524,-4.3241305,-4.4117236,-4.4062943,-4.4448104,-3.2547944,-4.2563424,-4.4406815,-4.459786,-4.491288,-4.4320655,-4.370317,-4.44752,-4.4182057,-4.354345,-4.300224,-4.2501493,-2.6850588,-4.226197,-4.385961,-4.386178,-4.466825,-4.483944,-4.35012,-3.7927632,-3.976748,-4.4512424,-2.6293821,-3.6379972,-3.9203997,-4.5459733,-4.6586766,-4.4685063,-4.4313745,-4.4207363,-4.390381,-3.340918,-4.5798516,-4.574852,-4.4571757,-4.54411,-4.563909,-4.4608364,-4.463043,-4.3831906,-4.3652124,-4.2929187,-4.3212266,-4.2255616,-3.966164,-4.428135,-4.4935803,-4.572163,-4.436827,-4.3495946,-4.3914723,-4.3528876,-4.354852,-4.275722,-4.4060593,-4.399818,-4.408128,-4.4074044,-4.0607677,-4.463485,-4.5727296,-4.487946,-4.474748,-4.53704,-4.559608,-4.594457,-4.5095277,-4.364,-4.019548,-4.3583612,-4.5234466,-4.6064906,-4.563249,-4.628926,-4.667191,-4.59996,-4.448338,-4.4346232,-4.4930687,-4.555573,-4.669951,-4.6026683,-4.4989743,-4.048469,-3.6297462,-4.5557427,-4.6573067,-4.7026544,-4.6896796,-4.443334,-3.1548834,-4.1171417,-4.278832,-4.2271037,-3.8746104,-3.197882,-2.695314,-2.8137927,-2.9087307,-3.2509735,-3.1791842,-2.3747404,-2.2775638,-2.7543705,-2.837552,-2.725659,-2.4216495,-2.4805794,-2.2850933,-3.2448812,-3.5517344,-3.9873033,-4.3029766,-4.030874,-4.2987285,-3.9355597,-3.8461046,-4.1084948,-3.5447383,-4.2016764,-4.139371,-3.453981,-3.2117,-3.027207,-2.8118954,-2.426663,-1.8655996,-1.9999905,-3.5952487,-3.9354887,-3.9867125,-4.038594,-3.8902402,-4.241944,-4.379256,-4.3707967,-4.347826,-4.430917,-2.949378,-4.031659,-4.16834,-4.3846235,-4.4446216,-4.279004,-4.2997746,-4.1009803,-3.8455267,-3.9966617,-4.0997653,-4.207425,-3.9330778,-3.3605022,-3.3399692,-3.5143461,-4.064035,-3.8933558,-4.1301913,-3.6951127,-4.014115,-4.4482884,-4.2354884,-4.3194504,-4.413337,-4.053075,-4.022946,-4.2320094,-4.251273,-4.2065597,-4.1036563,-4.0924945,-4.0398507,-3.9665189,-4.2385545,-4.1548057,-3.608535,-3.883596,-4.3875146,-4.430084,-4.3857365,-3.8989196,-3.5437903,-3.3591037,-3.857997,-4.2758627,-4.340244,-4.5125628,-4.034126,-3.3913321,-2.0831652,-2.6746612,-2.342469,-1.805212,-1.3392534,-1.5598149,-2.014091,-3.1626227,-3.8424363,-3.7955508,-3.409687,-3.7623959,-3.6886325,-3.5313892,-3.5139449,-4.189795,-4.0573335,-2.9561534
+-1.5579748,-2.7844481,-3.4822192,-3.7730632,-3.9632306,-3.9698167,-2.7223902,-3.491744,-3.8130116,-4.1445317,-3.9189315,-4.08866,-4.0635166,-4.1197057,-4.11978,-4.069444,-4.064426,-4.052964,-4.033217,-4.0355935,-3.962233,-3.2266083,-3.6125252,-4.047299,-4.094609,-4.100794,-3.8329864,-3.8166227,-3.314856,-4.1196465,-3.0190246,-3.5166273,-3.2317593,-4.1998415,-3.5983086,-3.6758003,-4.0697064,-4.486998,-4.615235,-4.4327054,-4.313994,-4.6308618,-4.414009,-4.362957,-4.6829066,-4.6102853,-2.915555,-4.1255136,-4.436246,-4.4709754,-2.9185445,-3.9939141,-4.337688,-4.4375796,-4.7168903,-4.6828074,-4.656827,-4.663644,-3.7000337,-4.476038,-4.4961467,-4.654837,-4.4902253,-3.1619878,-4.1732755,-3.3532395,-4.519151,-4.873108,-4.9300957,-4.9401,-4.88804,-4.8180604,-4.846826,-4.7414737,-4.662027,-4.5911965,-4.604488,-3.3048592,-4.5026946,-4.771561,-4.7525,-4.4858727,-4.408829,-2.954997,-3.7861247,-4.6194425,-4.77065,-4.608908,-3.6841724,-4.7333093,-4.7008224,-3.9779315,-4.707783,-4.204429,-4.0913095,-4.338885,-4.24566,-4.315248,-4.703324,-4.728359,-4.8521895,-4.741957,-4.3076215,-3.6458602,-4.4035497,-4.7671657,-3.9474568,-4.404265,-4.6618323,-4.7425556,-4.505076,-4.7718163,-4.7398515,-4.731215,-4.6980386,-4.665878,-4.5707216,-2.7515278,-4.3742595,-3.4926367,-3.5783417,-4.2891803,-4.5762787,-4.801477,-4.7476373,-4.6884375,-4.571805,-3.866282,-3.5590816,-3.9837146,-4.6232033,-4.2536397,-4.6070485,-4.6561346,-4.661356,-4.6132436,-4.3379025,-3.805584,-4.4201264,-4.596481,-4.30548,-4.6081724,-4.380607,-4.622136,-4.637469,-4.5592833,-4.534241,-4.5554934,-4.539717,-4.5577617,-4.560453,-4.5898504,-4.507291,-4.4587626,-4.490113,-4.393403,-4.386516,-4.324682,-4.3744965,-4.2575307,-4.240544,-4.32793,-4.3531957,-4.344419,-4.350063,-4.360111,-4.3337703,-4.378089,-4.375507,-4.257645,-4.266353,-1.747927,-4.081205,-4.2247553,-4.451798,-4.598636,-4.659498,-4.6169305,-4.552413,-3.2721186,-4.2467427,-4.2256804,-3.5173216,-3.945232,-4.492912,-4.5865197,-4.5084624,-4.5815654,-4.6111026,-3.683892,-2.7790189,-3.1773846,-4.113404,-4.513189,-4.6517158,-4.61369,-4.626789,-4.6136174,-4.623732,-4.6913667,-4.7067623,-4.7317114,-4.7296677,-4.7079463,-4.5704336,-4.4705415,-4.5801,-4.541312,-4.4843287,-4.5613036,-4.477874,-4.478754,-4.5174785,-4.3896375,-4.382049,-4.373409,-4.3787985,-3.792779,-4.254426,-4.430556,-4.376949,-4.400965,-4.237406,-4.2745624,-4.419923,-4.3874426,-4.3744707,-4.606559,-4.3434157,-4.436686,-4.4904532,-4.507428,-4.482203,-4.328868,-4.360933,-4.4664865,-4.550848,-4.6010327,-4.425592,-4.4250054,-4.463306,-4.5832896,-4.122516,-4.244084,-3.7766643,-4.7196174,-4.598638,-4.6147075,-3.9302483,-2.9519384,-3.9996276,-4.548997,-4.47387,-4.187615,-3.7400393,-3.1242263,-4.301894,-4.385843,-4.516009,-3.989634,-3.3392782,-3.799397,-4.2047296,-4.1275105,-4.0391374,-4.01312,-4.1941376,-2.9444008,-4.1389055,-4.384314,-4.32437,-4.694593,-4.1053863,-4.544728,-4.294355,-4.1922145,-3.740808,-3.4177053,-4.016053,-4.3163543,-4.1315355,-2.9262426,-3.1416283,-2.7783136,-2.192074,-1.5254798,-1.4968886,-3.0591316,-4.0667434,-4.17909,-4.074425,-4.333721,-4.3727345,-4.5848536,-4.0284476,-4.4400306,-4.1160355,-3.132747,-3.8429074,-4.3663335,-4.388076,-4.4849973,-4.4204097,-4.481405,-4.30269,-4.474565,-4.5062203,-4.334759,-4.397986,-4.329421,-4.1678615,-4.226049,-4.3981767,-4.4193816,-4.2145143,-4.345489,-4.3441157,-4.206496,-4.3608003,-4.3016405,-3.6345308,-4.298965,-4.24613,-4.321895,-4.1877456,-4.259355,-4.3998446,-4.1261897,-4.1939387,-4.281822,-4.306578,-4.487864,-4.4099255,-4.2530503,-3.3508668,-3.8965116,-4.5657077,-4.4626884,-4.3197722,-4.137974,-4.19774,-3.941854,-4.3191085,-4.3173084,-4.479411,-4.477835,-4.304626,-1.9969914,-3.637043,-3.5854778,-3.2142425,-2.4436173,-3.8538785,-4.235521,-4.1450663,-4.280662,-4.291285,-4.226575,-4.2814517,-4.223995,-3.6758347,-3.3782246,-4.142549,-4.135389,-2.4918928
+-0.9201967,-2.0905867,-2.95424,-3.1950102,-3.2880826,-3.5398898,-3.064115,-3.462032,-3.5938654,-3.6878257,-3.1951127,-2.1596942,-3.5890021,-4.0963693,-4.046186,-3.9740958,-3.8262272,-3.7906132,-3.7636027,-3.548162,-3.5359778,-2.6261826,-3.6733556,-4.2969894,-4.2003474,-4.21845,-4.1288123,-2.7298987,-3.7734675,-4.4807315,-4.1879783,-4.0852194,-3.5945673,-4.1583085,-3.9725728,-3.9699016,-4.4187055,-4.3645577,-3.6550422,-4.3614826,-4.438105,-4.451774,-3.4688504,-4.3770185,-4.4918647,-4.235269,-2.63375,-3.5737886,-4.320412,-4.542058,-3.3609705,-4.034447,-4.4032245,-4.61577,-4.543079,-4.460322,-4.3698635,-4.394961,-2.496273,-3.9036708,-4.5333095,-4.687246,-4.710591,-4.622786,-3.1713023,-3.5737476,-3.9599895,-4.2989674,-4.7361465,-4.5831776,-4.5429935,-4.4913907,-4.3728595,-4.2483673,-4.193909,-4.274258,-2.3503118,-3.8168674,-4.5672565,-4.548962,-4.5329027,-4.259724,-4.1485343,-3.121362,-2.7253199,-4.556186,-4.6583242,-4.5983105,-2.7805653,-4.5582223,-3.5476775,-4.219029,-3.5452385,-3.8011365,-4.7390027,-4.294602,-4.566105,-4.8372674,-4.4108186,-3.7928262,-4.8159895,-4.8023167,-4.584459,-3.2455235,-4.745979,-4.0788765,-3.6613674,-3.5075712,-4.735686,-4.7393317,-4.6197076,-4.679736,-4.61579,-4.519295,-4.4194164,-4.3053756,-4.2432528,-3.6301193,-4.194472,-4.263165,-4.2164216,-4.1347175,-3.5777545,-4.2943306,-4.0071883,-4.681186,-2.616133,-4.1818223,-4.2583785,-3.8634467,-4.665012,-4.7918277,-4.6721163,-4.6491313,-4.531325,-4.3966613,-4.421411,-4.331321,-4.209654,-4.2445874,-3.78553,-4.2840877,-4.2972765,-4.2744937,-4.4008875,-4.425434,-4.291604,-4.2640023,-4.025273,-4.431317,-4.4819407,-4.495207,-4.4719105,-4.1151986,-2.6014376,-3.2191877,-4.3964825,-4.4979596,-4.5325227,-4.4569144,-4.4235086,-4.369007,-4.310803,-4.312051,-4.461665,-4.346249,-4.2814736,-4.407936,-4.457228,-4.4183784,-4.3752923,-2.1281,-4.27916,-3.9298358,-4.182588,-4.8409963,-4.949826,-4.9516344,-4.8185463,-4.7448325,-4.7249465,-3.192463,-4.3663707,-4.9383035,-4.85714,-4.8037953,-4.8433366,-4.840632,-4.8613334,-3.960392,-2.2830355,-3.6884878,-4.175771,-4.6921773,-4.751247,-4.753734,-4.6674285,-4.6907983,-4.714566,-4.70607,-4.69935,-4.662375,-4.667321,-4.639137,-4.345579,-4.2829185,-4.3075624,-4.247922,-4.302558,-4.3380175,-3.97861,-4.2619786,-4.312985,-4.2870803,-4.294466,-4.228335,-4.1339564,-3.823751,-4.108854,-4.2218757,-4.172257,-4.1325283,-4.1162143,-3.9303608,-3.9501977,-3.9880638,-3.9797788,-3.660144,-4.205428,-4.39249,-4.404194,-4.437897,-4.3598423,-4.22971,-4.1292615,-4.2495046,-4.279548,-4.279676,-4.3218594,-4.2926536,-4.279894,-4.4242234,-4.4231615,-4.449042,-4.3283696,-4.505877,-4.5345416,-4.4045615,-3.2674341,-4.023789,-4.6086698,-4.7367377,-4.660037,-4.453898,-4.21639,-4.0274673,-4.774491,-4.516215,-4.6629114,-4.3018003,-4.1515355,-4.245483,-4.335522,-4.4089613,-4.5714397,-4.3590393,-4.601525,-4.5931344,-4.7439237,-4.621833,-4.532747,-4.743499,-4.0589566,-4.630469,-4.4674487,-3.8556824,-3.2459157,-3.9747658,-4.6446943,-4.7868233,-4.6393123,-2.9537945,-3.3841891,-2.9714823,-2.3654728,-1.6298163,-1.7022169,-3.372933,-4.137196,-4.2276607,-4.328439,-4.3135457,-4.315215,-4.3891497,-4.3659015,-4.337128,-4.094239,-4.1822934,-4.5642715,-4.759196,-4.5750976,-4.689097,-4.481112,-4.540526,-4.413028,-4.476436,-4.555518,-4.4763484,-4.3138537,-4.4399166,-4.14365,-4.211199,-4.332448,-4.1673822,-3.9349837,-4.593175,-4.148109,-4.28031,-4.362575,-4.3447666,-3.508469,-4.4094796,-4.3252897,-4.4171424,-4.4101877,-4.472113,-4.4924283,-4.6113153,-4.341239,-4.3286653,-4.35606,-4.3411207,-4.2923493,-4.232799,-4.150367,-2.434236,-4.2980566,-4.5937347,-4.3870034,-4.2810187,-4.229954,-4.16215,-4.409305,-4.353781,-4.372935,-4.1612706,-3.841251,-2.6683092,-4.1131067,-4.1321673,-3.8656492,-3.095233,-3.859191,-4.2555146,-4.085378,-3.7302217,-4.2775645,-4.0584674,-3.9899387,-4.0200715,-3.922823,-3.6637177,-3.8927226,-3.939649,-2.390864
+-0.84813446,-2.6262927,-3.5946305,-3.8461595,-3.931799,-3.7256994,-3.0292416,-3.8717499,-4.2697277,-3.9671874,-4.0334954,-3.4292917,-4.069654,-4.274103,-4.3078084,-4.232164,-4.1604943,-4.0998282,-4.102586,-3.9287992,-2.809681,-3.412724,-3.5806093,-4.054449,-4.2729306,-4.3970723,-4.504009,-4.4589868,-4.111287,-4.0620704,-3.0584888,-3.4218657,-3.0712883,-4.0079856,-4.2117176,-4.295465,-4.520413,-4.5945573,-4.4789934,-4.3709574,-4.168183,-3.2390358,-3.7825809,-4.194555,-4.4125247,-4.276413,-2.897143,-3.9110909,-4.170004,-4.317473,-3.9486089,-3.8581738,-4.201442,-4.5128713,-4.4870896,-4.3977532,-4.185289,-3.96875,-2.3696117,-3.5881827,-4.045735,-4.3136415,-4.406633,-4.386499,-4.2903547,-3.9102654,-3.2142458,-3.1224704,-4.022431,-4.3588557,-4.4006157,-4.3446164,-4.2554975,-4.231173,-3.1578584,-3.1688578,-3.955463,-4.292951,-4.4921064,-4.3602214,-4.311455,-4.26679,-4.1766477,-4.0816555,-3.2053063,-2.835951,-4.0447307,-4.2707963,-4.299805,-4.1622367,-4.1984067,-4.1172414,-3.9773831,-2.322092,-3.9866748,-4.0140476,-3.5837893,-4.2225556,-4.295214,-3.4493017,-4.293389,-2.8328228,-3.6861246,-4.071293,-4.413078,-2.8095663,-4.121395,-3.4596982,-4.1352053,-3.5026078,-3.534813,-4.1603546,-4.4444547,-3.1019437,-4.0341725,-4.335571,-4.5206857,-4.4221835,-4.412113,-4.292089,-4.2623377,-3.1592593,-3.7033553,-3.486443,-2.0663176,-3.7548747,-3.6506755,-4.093291,-4.2605424,-3.9737573,-4.321508,-4.300838,-4.468237,-4.3825107,-4.2155433,-4.3838973,-4.3285823,-4.237961,-4.185644,-3.1461222,-4.0039616,-3.3296819,-3.949822,-4.356858,-4.4435306,-4.4005656,-3.5035715,-4.131183,-4.4081454,-4.3710275,-4.2523904,-4.064964,-4.2477345,-4.3098583,-1.5832245,-2.8802924,-3.806285,-4.268707,-4.3904653,-4.452187,-4.410759,-4.3471346,-4.277612,-4.103708,-2.9657142,-4.012748,-4.319752,-4.3560767,-4.3155284,-4.226669,-3.0403845,-3.19942,-3.9482079,-3.7206101,-3.704043,-3.5249481,-3.9965353,-4.2679977,-4.280377,-2.9007955,-3.853704,-2.4214816,-3.479494,-4.0871854,-4.3048434,-4.4141793,-4.4799995,-4.391211,-4.2921615,-3.5159392,-1.4515584,-3.2401261,-4.0927577,-4.2478857,-4.330229,-4.3624544,-4.394428,-4.3707514,-4.304613,-4.2289195,-4.230987,-4.2130427,-4.235764,-4.0110683,-4.1662345,-4.2141757,-4.1329103,-4.1139627,-3.9954448,-3.9339933,-3.8677,-3.843195,-3.8820176,-3.8489413,-3.8457694,-3.7765899,-3.770441,-3.767815,-3.8886933,-3.8305106,-3.8306713,-3.727292,-3.795559,-3.7633815,-3.76164,-3.7980952,-3.0561886,-2.9091675,-3.9212613,-4.2415915,-4.3357534,-4.2884264,-4.256682,-4.292618,-3.9727445,-3.7254734,-3.7251086,-3.9107742,-3.9335036,-3.862063,-3.8980937,-3.8082428,-3.8787189,-3.9082122,-3.7344522,-4.0840573,-4.035263,-3.7080894,-2.8126235,-3.5310318,-3.8747096,-4.2374473,-3.955904,-3.4272118,-3.368115,-3.1908371,-3.737196,-4.0570045,-4.200046,-3.595615,-3.8577342,-4.118711,-3.592612,-3.8627553,-3.820651,-3.9863162,-4.0030723,-4.180631,-4.2995877,-4.332451,-4.2030745,-4.3097816,-3.46811,-3.9379892,-3.8110647,-4.080936,-3.6235142,-3.7564788,-4.041246,-4.15822,-4.267384,-2.9870005,-3.1584249,-2.1785936,-1.5717788,-1.9669616,-3.4424613,-4.327585,-4.452128,-4.3879743,-4.3618126,-4.281635,-4.328857,-4.3434424,-4.2852726,-4.1937847,-3.450418,-3.7130265,-4.1472287,-4.329422,-4.4213543,-4.318026,-4.1382394,-3.940249,-3.94906,-3.954948,-4.157555,-4.222617,-4.13957,-3.8909698,-3.9544597,-4.017353,-4.117786,-3.532775,-3.7233348,-3.7754588,-4.006151,-4.4178987,-4.5841928,-4.2569094,-3.0609534,-3.8186898,-4.0185113,-4.241039,-4.413311,-4.3585153,-4.275298,-4.20516,-4.1768317,-4.135933,-4.095387,-4.167818,-4.004478,-3.9573717,-4.0279384,-3.099088,-3.9748483,-3.7572694,-3.6373098,-3.7702212,-3.9257255,-4.112915,-4.096645,-3.7629147,-3.946607,-3.0835097,-3.5417967,-3.2937365,-3.665048,-3.5371435,-3.422975,-3.4293475,-3.6508899,-4.0127916,-4.3101726,-3.7179394,-3.792941,-4.0015607,-4.21012,-4.3045588,-4.321897,-3.6496873,-4.2265,-4.318622,-3.0023396
+0.95926785,-0.18368143,-1.4410701,-2.2256908,-2.7196221,-3.2655394,-3.474862,-3.5248249,-3.5573916,-3.6534684,-3.9341063,-3.8604121,-3.6768234,-3.7583556,-3.3675945,-2.393217,-1.9996645,-1.8630519,-1.5062537,-1.0016038,-0.5531048,-0.14785662,-0.33721882,-1.0853579,-1.5975578,-2.0470254,-2.7269883,-2.7897105,-2.4026496,-2.1636782,-1.4464328,-0.323767,0.86971396,1.3608654,1.6971049,1.5907843,1.4044545,1.869298,2.1054704,1.5982146,1.3003116,0.7316011,0.66668355,-0.030738592,0.19415621,0.22822268,0.653816,0.45640445,0.013217181,-0.37323213,-0.37914246,-0.520244,-0.86322063,-0.8992488,-0.84123904,-1.2945056,-1.5181229,-2.6443,-2.7358427,-3.0468557,-2.96741,-2.9115467,-2.923398,-3.2020254,-3.162278,-3.3125603,-2.9018593,-3.273099,-3.068507,-2.9436426,-3.0995078,-3.3542995,-3.338947,-3.1904569,-3.4933317,-3.6836085,-3.7582536,-3.7751398,-3.937368,-3.743669,-3.185439,-3.655429,-3.7275014,-3.6466866,-3.7624545,-3.8937354,-3.3133998,-3.6058455,-3.7265544,-3.8649554,-3.9988809,-3.1902876,-3.682632,-3.8798695,-3.783805,-2.987839,-3.703529,-4.026263,-4.1460814,-4.1620483,-4.081015,-4.1182113,-3.5418293,-3.3184395,-3.6307902,-3.69664,-3.8260798,-4.0927367,-3.759993,-3.9358397,-4.0768137,-3.1152468,-3.6170259,-3.957646,-4.120431,-3.6277812,-3.917529,-3.9805655,-4.0612097,-4.08558,-4.045236,-4.085895,-4.1369195,-4.126656,-3.330966,-4.0297666,-3.3722346,-3.7591329,-3.8468242,-3.8171692,-4.1400023,-4.0821915,-4.053185,-3.7898726,-3.8165307,-3.830768,-3.9567218,-3.8815093,-3.5021439,-4.0502753,-3.7992234,-2.7841659,-3.3710573,-3.8413167,-3.94936,-4.096951,-4.1498847,-3.5065918,-3.9245763,-3.3897119,-3.9338865,-4.0601816,-3.891437,-4.0286584,-3.901832,-4.077094,-4.14455,-4.1072254,-3.9164896,-3.7891912,-4.0081954,-4.1779127,-3.7894359,-3.413704,-3.777351,-3.5808716,-3.7404222,-3.796287,-4.039505,-3.9846802,-3.811027,-4.2157245,-3.7406392,-4.084519,-4.048173,-3.7442718,-3.5831232,-3.579743,-3.7965312,-3.4796617,-3.9992175,-4.013414,-3.9693904,-3.974844,-3.9080338,-3.7989306,-3.864108,-3.9227433,-4.0321145,-3.905252,-3.6748643,-3.5532763,-3.525936,-3.8445902,-3.8730912,-3.1660628,-3.3048742,-3.5050282,-3.5692139,-3.5460184,-3.2704082,-3.4191437,-3.673372,-3.4647121,-3.2914424,-3.1000197,-2.9203458,-2.9409976,-2.8837347,-2.983669,-3.0872557,-2.8625202,-3.0591192,-3.028833,-2.855874,-3.2178953,-3.3651783,-3.0701804,-3.1097028,-3.0962927,-3.2784555,-3.3995905,-3.115066,-3.0698004,-2.9668689,-2.9334073,-3.088959,-3.1876645,-3.1875536,-3.3245907,-3.331199,-3.4044867,-3.476335,-2.9826913,-2.3203416,-2.7117624,-2.589857,-2.303684,-1.9518347,-1.5945253,-1.5066686,-1.3213441,-1.1492975,-0.955623,-0.7960693,-0.78757733,-0.8901779,-1.3257017,-1.3579524,-1.1727672,-1.4094849,-1.626091,-1.8706772,-2.0249634,-2.2951376,-2.5709224,-2.9160745,-3.0712726,-3.098097,-3.060841,-3.2984948,-3.3261003,-3.1909018,-3.2464247,-3.4379592,-3.3934197,-3.3109412,-3.395879,-3.5248625,-3.4759216,-3.4541402,-3.4995031,-3.5530357,-3.662807,-3.5566783,-3.5920866,-3.7488704,-3.7794662,-3.7033324,-3.7507176,-3.7221007,-3.6573546,-3.7223854,-3.7025113,-3.7574143,-3.5707848,-3.9140697,-3.7823868,-3.6947823,-3.757339,-3.8362718,-3.7729278,-3.7705417,-3.8446894,-3.6832995,-3.817532,-3.775835,-3.754252,-3.771834,-3.8044505,-3.8411312,-3.885579,-3.8425555,-3.8659673,-3.8603096,-3.7074537,-3.853065,-3.8350196,-3.7545743,-3.8232617,-3.983788,-3.845818,-3.775291,-3.9346642,-3.8647747,-3.819888,-3.89113,-3.9016042,-3.9095144,-3.8005476,-3.8539457,-3.902801,-3.9196773,-3.8331075,-3.8466845,-3.8969226,-3.9216223,-3.7498536,-3.6202054,-3.8297248,-3.8837457,-3.8996243,-3.9946399,-3.8782806,-3.870473,-3.8963675,-3.9257383,-3.8966546,-3.8812566,-3.9719791,-3.832078,-3.802106,-4.012469,-3.9197545,-3.8706307,-3.9297023,-3.8956246,-3.9105334,-3.9542074,-3.9021764,-3.9275322,-3.9532495,-3.9246116,-3.9428759,-4.1215243,-3.915567,-3.9260006,-3.9783454,-3.9752612,-3.9114957,-3.9509425,-3.616821,-3.2726626,-3.5271869,-3.714056
+-1.281995,-2.7219188,-2.6715665,-2.6756635,-2.166842,-1.875411,-1.5986803,-1.5926738,-1.9017115,-2.064293,-1.923414,-2.0408282,-3.2303221,-3.4479518,-3.450758,-3.452951,-3.432376,-3.3776171,-3.3693101,-3.4532518,-3.4239874,-3.3174958,-3.3503726,-3.519219,-3.4554904,-2.9355915,-3.6214216,-3.6152956,-3.2211814,-3.7033973,-3.5190334,-3.7188334,-4.112289,-4.021368,-4.3449707,-4.3035097,-4.1285434,-4.028964,-4.0108294,-3.9217215,-3.7629056,-3.7320094,-3.3358748,-3.9468708,-4.087417,-4.066309,-4.0917325,-3.944604,-3.7665677,-3.6158867,-3.4773583,-3.4556851,-4.056111,-3.9258447,-3.878325,-3.8991628,-3.8277488,-3.8590903,-3.784367,-3.7457318,-3.9580593,-3.9272141,-3.504233,-4.0658317,-4.1486096,-3.147842,-4.063211,-4.3496184,-3.8268743,-4.328831,-4.238409,-4.254152,-4.0759053,-4.1450953,-3.9117723,-3.9529061,-3.4907632,-4.1828647,-4.1147413,-4.066506,-4.01212,-3.1068568,-4.1755323,-4.395599,-4.2787495,-4.2293916,-4.1621127,-4.1249375,-3.9322171,-4.2495723,-4.154658,-4.1368375,-3.9652143,-4.02994,-4.1046033,-3.872613,-4.2016006,-4.195663,-4.154506,-4.0269613,-4.2623677,-4.2875023,-4.269131,-3.6083274,-4.0309052,-4.4649982,-4.3460274,-4.2998447,-4.100556,-4.454085,-4.4192185,-4.4209933,-4.4507885,-4.416457,-4.3817687,-3.427775,-4.412864,-4.5425744,-4.5009074,-4.431051,-3.0079904,-4.182644,-4.07025,-4.583158,-4.6145406,-4.5827613,-4.558178,-4.2932935,-4.5275846,-4.501523,-4.472717,-3.1081464,-3.3591332,-3.5535421,-3.9950986,-4.230634,-4.65369,-4.4111876,-3.6193645,-4.1527486,-4.6595283,-4.667749,-3.8312135,-4.5969195,-4.691727,-4.728152,-4.71236,-4.688447,-4.6001816,-4.623285,-4.6294675,-4.5503845,-4.5355163,-4.508318,-4.4630632,-4.4125166,-4.413115,-4.388298,-4.3602157,-4.203902,-4.083627,-3.4358678,-4.4530215,-4.49785,-4.6037574,-4.605486,-4.525946,-4.396806,-4.502332,-4.479551,-3.330105,-3.6887758,-4.544089,-4.573677,-4.578116,-4.57889,-4.4956384,-4.324444,-4.4628263,-4.295976,-4.351136,-3.706152,-3.9716892,-3.3818026,-4.2137837,-4.511127,-4.687182,-4.709267,-4.6652684,-4.64529,-3.8182511,-4.7017503,-4.597134,-4.410046,-4.5214295,-4.389629,-4.387264,-4.396195,-4.457559,-3.8217,-4.5888658,-4.447885,-3.9668417,-2.2394629,-3.9474297,-4.156138,-4.028209,-4.506679,-4.558617,-3.2025554,-4.0801854,-4.5018625,-3.788477,-4.551748,-4.582548,-4.6908755,-4.614025,-4.788023,-4.755022,-4.736358,-4.6225457,-4.5860534,-4.540255,-4.6996264,-4.8094993,-4.4757867,-4.2677016,-4.120542,-4.2360406,-4.496711,-4.4674163,-4.390081,-4.290033,-4.046246,-4.406031,-4.2652946,-3.781395,-3.3702784,-3.3662045,-3.7910733,-4.0118976,-3.9666228,-4.0130677,-4.172701,-3.8386064,-4.503783,-4.6203957,-4.507292,-3.8014078,-3.3220217,-3.2409852,-3.28979,-3.2422574,-2.9152577,-2.796996,-2.191904,-2.1613798,-2.0846665,-2.1980903,-2.1047993,-1.7372575,-1.141856,-1.626081,-1.6547258,-1.6248956,-1.4983296,-1.6662171,-1.6209846,-1.6739695,-1.9494622,-1.6821136,-1.2967794,-1.6277127,-1.6635344,-1.5758862,-1.5158017,-1.7133019,-1.6502755,-1.5851743,-1.3903701,-1.7543864,-1.8809118,-1.8989513,-2.0009952,-2.018074,-1.6422677,-1.035548,-1.2443349,-1.6347301,-1.5574925,-1.6177526,-1.4778695,-1.4816713,-1.347146,-1.5489943,-2.3007016,-3.4971423,-3.9373345,-2.7605832,-2.862448,-2.810895,-2.6649446,-2.4591322,-2.2357426,-2.223423,-2.0250409,-1.7370155,-1.681843,-1.9172277,-1.7637985,-1.5767748,-1.4192061,-1.3460386,-1.3364148,-1.3620708,-1.734381,-1.594573,-1.1993599,-1.3059027,-1.4071224,-1.4203458,-1.507777,-1.5294561,-1.233599,-0.45231736,-0.17769843,-0.7418701,-1.7494149,-3.1185312,-3.9013333,-3.6981215,-4.0998664,-3.81453,-3.7378058,-3.9538465,-3.7799273,-4.006146,-3.5607939,-3.077229,-2.7125387,-1.8998802,-2.393856,-3.5595474,-3.7060685,-3.205326,-2.8911662,-2.651911,-1.9931962,-2.1575513,-1.8177145,-1.5605788,-1.5717571,-1.4487402,-1.4371185,-0.9944021,-1.0127711,-1.5335176,-1.3350179,-0.909676,-1.21277,-2.1318197,-3.7120147,-3.7052798,-3.4480884,-3.0220206
+-1.6487672,-2.4479828,-2.7697883,-3.0580657,-3.4353092,-3.062449,-2.7176158,-3.5645287,-3.664044,-3.7067637,-3.301127,-3.6518579,-3.86335,-3.8361568,-3.844997,-3.7846837,-3.6920545,-3.647019,-3.64261,-3.6669517,-3.7107844,-3.536965,-3.2330384,-3.8172421,-3.7920809,-3.6108944,-3.6156,-3.2683713,-3.9016318,-4.009779,-3.6147556,-4.1419625,-3.964138,-4.0645356,-4.209709,-3.9839172,-3.9360337,-4.104549,-4.2346845,-4.1910915,-4.018526,-4.086741,-3.796152,-3.9618287,-4.2011275,-4.1883807,-4.1659403,-3.9307828,-3.9347763,-3.9564424,-3.219414,-3.8096857,-3.9019532,-4.200825,-4.225514,-4.1119704,-4.0100465,-4.0117364,-3.8940015,-3.258515,-3.8883138,-4.0918126,-3.9236608,-3.4913266,-3.7711787,-3.402444,-4.2737174,-4.127129,-4.23146,-4.390098,-4.3963966,-4.2921762,-4.128265,-4.0793123,-4.0626764,-3.8101087,-2.9936678,-4.12786,-4.280621,-4.250253,-4.1256804,-3.8595595,-3.8811755,-3.24803,-4.050427,-3.8609939,-4.2860827,-3.9817576,-3.383103,-4.216577,-4.3102803,-4.2251377,-4.13014,-4.0647597,-3.8328042,-3.2684805,-4.3150635,-4.1187997,-3.1792111,-4.16591,-4.069344,-4.036816,-3.967341,-3.6948133,-4.0075903,-3.8622832,-3.7788897,-3.885756,-3.8117247,-3.807375,-3.7577343,-3.7514815,-3.789209,-3.754898,-3.6040173,-2.6028402,-3.5996187,-3.9242177,-3.802896,-3.1982684,-3.0129998,-4.056045,-3.336993,-3.632372,-4.1852665,-4.1901727,-4.0721073,-3.7807317,-4.0263352,-3.8638043,-3.6995206,-3.765121,-3.1463895,-3.3851256,-3.8492174,-3.4631462,-3.863855,-3.5666099,-3.4890213,-4.032367,-4.0241,-3.930931,-2.8777485,-3.9403863,-4.095401,-4.070312,-3.9940276,-3.929792,-3.799871,-3.71455,-3.7136235,-3.7087893,-3.5963295,-3.615086,-3.6973033,-3.75738,-3.7406173,-3.7400703,-3.6768377,-3.2665854,-2.8716722,-3.497324,-2.8364105,-3.657141,-3.7604823,-3.8007293,-3.812111,-3.726306,-3.6634974,-3.6307282,-3.6063702,-2.7260337,-3.676972,-3.8278003,-3.8492637,-3.851368,-3.7920842,-3.799612,-3.7562823,-3.5085661,-3.7497406,-2.6408439,-3.561347,-3.6238542,-4.1466117,-4.291679,-4.1370864,-4.165071,-4.227502,-4.17139,-3.8049521,-4.2526712,-4.3012705,-4.224873,-4.278081,-4.269326,-4.2592854,-4.1719174,-4.22483,-4.086741,-3.9817195,-3.9463348,-3.8516526,-3.722313,-3.7405777,-3.8995929,-3.9080482,-3.968276,-4.0070877,-3.4860764,-3.947309,-4.003204,-3.3849673,-3.9823613,-4.1139226,-4.2791247,-4.1045833,-4.092475,-4.1308384,-4.162968,-4.139297,-4.130314,-3.6716013,-4.266723,-4.254007,-4.194983,-4.181104,-4.2579236,-4.2634025,-4.196134,-4.282471,-4.2444034,-4.0719376,-3.9407563,-4.2669015,-4.422316,-4.1702538,-4.3805637,-4.475587,-4.4318223,-4.472954,-4.3645096,-2.8406005,-3.6817026,-3.972341,-4.4245777,-4.435252,-4.596033,-3.9496331,-3.242869,-3.8548698,-4.3391175,-4.2239304,-4.0862355,-3.5839908,-2.353723,-2.6983175,-2.5185509,-2.5734315,-2.3555818,-1.2594151,-0.99737364,-1.1616726,-1.4409053,-1.371872,-0.973726,-0.83325976,-0.73333925,-0.77118546,-0.75357884,-0.3201689,-0.7916556,-1.2303512,-1.78932,-1.7445765,-1.9219847,-1.810955,-1.9076705,-3.2951512,-3.7530112,-3.0705762,-2.94582,-2.6896787,-2.437819,-2.2045422,-1.6492615,-1.2715607,-1.8027763,-2.8208702,-3.1585445,-2.9634564,-2.2059178,-2.6094685,-3.5367928,-3.2503707,-3.718926,-3.9963021,-3.0284858,-3.7808814,-4.0001216,-4.103549,-4.1930156,-4.2121396,-4.1930413,-3.958086,-3.6456392,-3.7755704,-3.7985625,-3.719933,-3.2693737,-2.9437597,-2.828142,-2.4717488,-3.9242816,-3.7047,-3.6378882,-3.1548865,-2.6670864,-3.6165895,-3.8041105,-3.6983142,-3.6457095,-3.5492954,-3.5026522,-4.021496,-4.306561,-4.106594,-4.1717772,-4.20455,-4.0726957,-3.5579658,-4.197649,-4.1267486,-3.962654,-3.351242,-4.138249,-4.157306,-3.9340482,-3.4502785,-2.9424937,-2.1752748,-3.2470927,-4.1185646,-4.054754,-3.990931,-3.5827396,-2.990428,-1.5908294,-1.3442488,-1.1823843,-0.94218403,-0.57778937,-0.56248814,-0.21897441,0.13510448,-0.035289347,-0.6216962,-0.8356914,-1.808327,-3.056045,-3.3830323,-3.6836655,-3.9782357,-3.9731555,-3.3855085
+-0.98717016,-1.3844638,-1.5350473,-1.5386183,-1.9610386,-1.8988767,-1.5928824,-2.8794045,-2.817953,-2.9333212,-2.775091,-2.8981233,-3.095231,-3.0682125,-3.0065553,-3.0278137,-2.9618778,-2.882164,-2.8852878,-2.7655027,-2.5655487,-2.5418377,-2.2300792,-2.6750607,-2.65535,-2.6177049,-2.4007583,-2.0464044,-2.929087,-2.9276743,-2.6240616,-3.2081566,-3.0839274,-3.346918,-3.4747536,-3.28848,-3.4066749,-3.5647125,-3.4432437,-3.6088548,-3.166836,-3.5329745,-3.436685,-3.2929435,-3.6421285,-3.6475518,-2.6123586,-3.473786,-3.5141401,-3.469572,-2.5247211,-3.276237,-3.281496,-3.5880673,-3.7877893,-3.5679247,-3.473136,-3.442461,-2.678812,-3.2816923,-3.4802885,-3.3367085,-3.2783244,-2.267943,-3.2567592,-3.3906507,-3.5858636,-3.480427,-3.4855237,-3.353628,-3.3135867,-3.180225,-3.0439606,-3.0232475,-3.096403,-2.9902196,-2.7765863,-1.5165632,-3.1952038,-3.513329,-3.4333463,-2.071315,-3.4048586,-2.828919,-3.5542922,-3.5680928,-3.469543,-3.4048548,-2.479782,-3.2393527,-3.6368866,-3.5741217,-3.608969,-3.3616242,-2.73242,-3.1900315,-3.6715775,-3.676258,-3.467578,-3.6158755,-3.5809588,-3.502595,-3.2994475,-3.166464,-3.1782439,-3.1693006,-2.293149,-3.0955274,-2.1935577,-2.9796062,-2.7588162,-3.1621852,-3.1498682,-3.1450977,-3.2264638,-3.2978828,-3.2945657,-3.42113,-2.79737,-1.7539225,-3.1772003,-2.883603,-3.357614,-3.3824024,-3.289284,-3.2307916,-3.2207868,-3.1037943,-3.2267184,-3.37716,-3.385006,-3.4394937,-3.4354396,-3.41255,-3.4429808,-3.4426627,-3.281332,-1.5944533,-2.9988394,-2.2149777,-3.319284,-3.3851728,-2.3093848,-3.4732022,-3.5925312,-3.5374007,-3.4676838,-3.4472125,-3.5443559,-3.5733829,-3.648265,-3.7416387,-3.7577305,-3.029852,-3.3740048,-3.5363894,-3.2284164,-3.61034,-3.6308334,-2.3468394,-3.139351,-3.4404674,-3.524277,-3.5325737,-3.6312733,-3.586164,-3.5834763,-3.6075444,-3.5928922,-3.4933558,-3.5245433,-2.0110373,-3.0091734,-3.2221556,-3.2865043,-3.3076143,-3.3252182,-3.300012,-3.3232956,-2.2741127,-2.255287,-2.656505,-3.0452945,-3.3131087,-3.6286128,-3.836102,-3.7868805,-3.6882467,-3.633971,-3.6300328,-3.038094,-3.4674025,-3.823657,-3.7612033,-3.6109676,-3.6274025,-3.6419783,-3.4876328,-3.4201374,-3.4493728,-3.340623,-3.3308685,-3.256863,-2.7373857,-3.0566618,-3.2882438,-3.4064891,-3.2767408,-3.2575607,-3.0509932,-3.402162,-3.2733052,-3.266241,-3.228623,-3.194713,-3.180354,-3.185119,-3.1578739,-3.0601695,-3.1048744,-3.1057513,-3.053858,-2.5926435,-3.2713642,-3.2921062,-3.2827992,-3.0895076,-3.1402926,-3.2183776,-3.272402,-3.2868505,-3.239035,-3.052096,-3.0302045,-3.062152,-3.025188,-2.9685502,-3.2146845,-3.2435617,-3.2731276,-3.1743617,-2.9966025,-2.5986192,-2.920515,-3.2658386,-3.5516152,-3.557677,-3.6611075,-2.9933004,-2.4951034,-3.2521234,-3.5569215,-3.0627885,-2.7367182,-2.5318344,-2.555417,-3.2199025,-3.1958733,-2.795293,-2.263032,-1.877646,-2.4895697,-2.61664,-2.2190819,-2.0065565,-2.002163,-2.262983,-2.272307,-3.2265942,-3.3293352,-3.2391503,-3.4694047,-2.6798825,-2.9293058,-2.5891995,-2.995817,-2.74524,-2.7489648,-3.1970935,-3.1936455,-2.8742552,-2.4327433,-2.1564503,-1.8027842,-1.4311354,-1.0229931,-1.1723208,-2.4304752,-2.606651,-2.5757208,-2.920947,-2.625391,-3.2566693,-3.3617787,-3.2341638,-3.1609702,-3.1179035,-2.6390133,-3.1426551,-3.3115697,-3.256431,-3.2859411,-3.1623921,-3.1204388,-2.7057996,-2.7990088,-3.0636835,-3.1990228,-3.0118732,-2.4354258,-2.3806367,-2.841395,-3.045098,-3.2120814,-2.8468566,-2.5751734,-2.7042484,-3.0823164,-3.1550903,-2.9155626,-2.9470866,-2.885381,-2.820741,-3.0620236,-3.3875768,-3.351765,-3.187848,-3.1985903,-3.1704352,-2.966137,-2.387557,-3.001295,-2.9668121,-2.871647,-2.7164023,-3.3765223,-3.349065,-2.9509866,-2.4541223,-2.5668988,-3.094605,-3.0227113,-3.3905296,-2.9483714,-2.8835936,-2.446819,-2.4040318,-1.88409,-1.9288955,-1.855927,-1.8879194,-2.2243009,-2.6487935,-2.9726844,-3.0576253,-3.2444506,-2.90255,-2.4543285,-3.2478108,-3.0513828,-2.9630353,-2.682815,-3.1680684,-2.9883351,-2.1188936
+-1.6244354,-2.7547283,-3.2866828,-3.5516343,-3.2894082,-3.4738665,-3.4549608,-3.6879246,-3.6934752,-3.6107757,-3.8201728,-3.1333423,-3.7670956,-3.7921615,-3.8729272,-3.8994803,-3.9428039,-3.9999547,-4.03244,-3.9929166,-3.8999715,-2.7998886,-3.4955797,-4.002563,-4.1134744,-4.1887536,-3.8314924,-3.618094,-3.5824409,-4.065512,-3.2974436,-3.7155895,-3.291088,-3.705944,-3.8122277,-2.9737177,-3.459029,-3.9232526,-4.179171,-4.0856023,-4.1878448,-4.2717776,-4.1671505,-4.1479964,-4.229601,-4.194377,-2.551107,-3.8013873,-4.0995083,-4.241003,-3.0469499,-3.777142,-3.662971,-4.0442233,-4.3346047,-4.4445624,-4.4047465,-4.418591,-2.8998914,-3.470595,-4.21671,-4.329498,-4.448256,-3.6009843,-2.656299,-3.3824399,-3.8321834,-4.2951403,-4.475139,-4.4772267,-4.51564,-4.4771113,-4.483039,-4.4762363,-4.296661,-4.152197,-3.4844027,-2.399184,-3.849072,-4.233855,-4.39251,-4.333123,-4.224953,-2.9874759,-3.7483444,-3.023675,-3.9397192,-4.23214,-3.5353577,-4.2944503,-4.434652,-3.462112,-4.253736,-3.5437257,-3.9111457,-4.1759467,-4.3294683,-4.195927,-4.12823,-4.5049233,-4.52181,-4.4401307,-4.0885453,-4.1059384,-4.0953636,-3.9564233,-2.3167214,-3.357057,-4.1421328,-2.9212165,-3.97082,-4.3460846,-4.3945127,-4.409251,-4.3680987,-4.294467,-4.161835,-2.9828703,-3.3990762,-3.473212,-3.6442351,-4.2696643,-3.9604087,-3.6835485,-4.3568864,-4.3759418,-4.294592,-4.248458,-3.7323232,-3.7097735,-3.1215978,-4.1376095,-4.3329616,-4.300406,-4.28858,-3.942912,-3.4855113,-3.6444426,-4.1954184,-4.07929,-3.9247642,-4.091542,-3.814301,-4.010183,-3.9229417,-3.8873243,-3.8525577,-3.8067498,-3.7466416,-3.807558,-3.800901,-3.7552166,-3.7196774,-3.5456903,-3.7268262,-2.084307,-3.5759156,-4.0101123,-4.135954,-2.7875128,-3.4723403,-4.165176,-4.270432,-4.248271,-4.316941,-4.127643,-4.0715566,-3.9186926,-3.7519946,-3.8557162,-3.8167768,-1.8743229,-3.4101238,-3.506839,-3.6302445,-4.188457,-4.376043,-4.3863907,-4.334188,-3.2188096,-3.4090838,-2.3839145,-3.379373,-3.79882,-4.292861,-4.4212356,-4.464353,-4.434415,-4.2644067,-3.9616036,-2.6819577,-2.5522504,-3.4506063,-3.9757953,-4.2253003,-4.23211,-4.270653,-4.2671485,-4.288512,-4.2604237,-4.2200923,-4.176828,-4.178693,-3.6609125,-3.9626703,-4.1309476,-4.2194295,-4.19495,-4.2124696,-4.1142297,-4.1387167,-4.1863437,-4.0942564,-4.058034,-4.060807,-4.0922236,-3.9282794,-2.7630458,-3.8507285,-4.0346913,-4.136479,-4.1673126,-3.944057,-4.134422,-4.1465964,-4.175083,-4.128596,-3.5690148,-3.9938154,-4.1245594,-4.2043834,-4.2441487,-4.24639,-4.0520453,-3.9910345,-4.0694656,-4.2280602,-4.245134,-4.2801,-4.2077603,-4.1046166,-4.283918,-3.5886762,-3.8415437,-3.8888645,-3.9935164,-4.0943217,-4.1701427,-3.5521417,-3.0898201,-3.67667,-3.8455725,-3.7349973,-3.6710632,-3.6424673,-3.2036147,-3.8985286,-3.9776845,-3.8871913,-3.562316,-3.659295,-3.904345,-3.9998493,-3.885684,-3.9394417,-4.027724,-3.831984,-3.0784984,-3.909667,-4.055511,-4.066614,-4.1344695,-3.7100263,-3.8668818,-3.9138846,-4.054444,-3.0315428,-3.4361246,-3.6603274,-3.790895,-3.8738885,-2.5683994,-2.65385,-2.1327,-1.625437,-1.0460677,-1.713191,-2.8983574,-3.597489,-3.7121248,-3.625872,-3.9234939,-3.8868284,-4.0429835,-3.9254308,-4.1357646,-3.1055954,-3.421771,-3.4976766,-3.9211845,-4.0369678,-3.967599,-3.9507413,-4.042765,-3.8654213,-4.0548153,-4.1826754,-4.207383,-4.0613046,-3.8899283,-4.019171,-4.049394,-4.2485905,-4.2155433,-3.8931422,-3.9557195,-4.12947,-4.05081,-4.142158,-4.054172,-3.3536859,-3.6975513,-3.779993,-4.04181,-4.102358,-4.160924,-4.1520057,-4.138368,-4.101958,-4.156828,-3.8260684,-4.12072,-4.154634,-4.2284265,-3.7857642,-3.7225199,-3.949593,-3.891933,-3.7984848,-4.1280193,-4.2222066,-4.0652156,-4.3210735,-4.135705,-3.9668288,-3.8725328,-3.6737297,-2.186285,-3.0455968,-3.2862973,-3.3598883,-3.5756834,-3.6926184,-3.8247218,-4.018145,-4.049072,-3.6964035,-4.056698,-4.177514,-4.1544023,-4.109939,-3.7428575,-4.1197968,-4.15887,-2.289053
+-1.5974712,-2.704103,-3.4114456,-3.5375297,-3.7209892,-3.551004,-3.0519435,-3.497181,-3.7381063,-3.7143617,-3.4063182,-2.2568574,-3.66748,-3.9001594,-3.897118,-3.8723245,-3.8349605,-3.7344556,-3.7182517,-3.6821291,-3.5111551,-2.5284836,-3.1596541,-4.0269704,-4.0161858,-4.0688477,-4.037005,-2.2155118,-3.4085884,-4.0805707,-4.1193576,-4.1050878,-2.9388905,-3.8582416,-3.5145254,-3.6544108,-4.0962806,-4.321212,-4.0892406,-4.422758,-3.8220916,-3.7641711,-3.6989117,-4.43121,-4.4471235,-4.2952104,-2.4530032,-3.6411104,-4.2953434,-4.395505,-3.7173138,-4.2126403,-4.3441725,-4.315876,-4.267552,-4.2434964,-4.207952,-4.224278,-2.5263367,-3.609303,-3.928296,-3.5906823,-4.4566174,-3.175357,-3.6181571,-4.3144693,-3.882585,-3.4697452,-4.4041715,-4.3465266,-4.3562098,-4.2477565,-4.2845087,-4.2433753,-4.1015716,-2.720941,-3.710588,-3.3388162,-4.393143,-4.4006085,-4.317241,-4.225917,-4.1737895,-2.5092502,-2.7049108,-3.8218427,-4.4642196,-4.399058,-3.2818472,-4.383654,-3.0540402,-4.340342,-3.314674,-3.501794,-4.2388625,-3.8784547,-3.357768,-4.4271,-3.3558517,-3.281341,-4.414702,-4.5780272,-4.050923,-3.3668933,-4.364488,-4.228072,-2.6096077,-3.164795,-4.243645,-3.840363,-3.7689562,-4.4392323,-4.5197964,-4.446105,-4.3797936,-4.266691,-4.1101766,-3.8423982,-4.1221414,-4.144316,-3.399835,-3.2637773,-4.0474167,-2.4847631,-4.2617702,-4.5511494,-4.4703665,-4.4434404,-4.4384437,-2.4382586,-3.6417413,-4.496735,-4.5114937,-4.5755677,-4.4831214,-4.440242,-4.3737054,-4.291734,-4.1632013,-3.6206255,-2.4272962,-4.222938,-4.5394416,-4.1072297,-4.4201193,-4.3945823,-4.2678437,-4.251761,-3.9394202,-4.061495,-4.0022836,-4.0129285,-4.0206265,-2.014007,-2.8434181,-2.5020556,-4.23511,-4.5589123,-4.5298376,-4.347077,-4.28096,-4.413785,-4.592468,-4.371097,-4.2284408,-4.451904,-4.3511095,-4.0759244,-4.2252026,-4.090828,-3.8685312,-1.9672787,-3.4235415,-2.4940047,-3.5285923,-3.5919948,-4.620948,-4.7087235,-4.655259,-3.6410136,-4.5731235,-3.684502,-4.658767,-4.6852813,-4.63687,-4.6651855,-4.6178446,-4.5921454,-4.4895654,-3.0564108,-2.1718915,-2.401554,-4.3017955,-4.3950987,-4.480079,-4.508918,-4.552382,-4.4879403,-4.4292865,-4.4171853,-4.449002,-4.4715195,-4.4497056,-4.064018,-4.3510747,-4.4687104,-4.4402213,-4.47895,-4.294476,-4.196363,-4.126511,-4.127514,-4.1178956,-4.153444,-4.137944,-3.9518714,-4.0767407,-3.1025817,-4.249392,-4.3494487,-4.3815503,-4.311299,-4.0906644,-4.1325336,-4.390038,-4.483875,-4.337764,-3.9886212,-4.3272634,-4.3942914,-4.4039984,-4.3797946,-4.3067985,-4.5024,-4.3107343,-4.1107297,-4.06483,-3.9760513,-4.1732583,-3.4409914,-4.4644713,-4.437315,-4.3420076,-4.23144,-3.5227513,-4.643894,-4.5937734,-4.4901514,-3.1782165,-3.7782493,-4.365628,-4.543015,-4.2858415,-3.995861,-3.8997183,-3.4278698,-4.275057,-4.350835,-4.4400716,-3.8665252,-3.9914918,-4.3048835,-3.3882854,-3.891665,-4.1849647,-4.2845654,-4.304562,-4.304594,-4.3909564,-4.3739295,-4.443526,-4.652347,-3.437126,-4.2756915,-4.2238836,-3.7961726,-3.0624435,-3.8418055,-4.4664063,-4.416577,-4.2509418,-3.224776,-3.596644,-3.1331012,-2.5879261,-2.3961124,-3.5769253,-4.5685534,-4.3114333,-4.2937994,-4.3157887,-4.3398824,-4.319444,-4.514362,-4.3849525,-4.388609,-4.2110934,-3.6879988,-4.442476,-4.509201,-4.406938,-4.50912,-4.307839,-4.316911,-4.2626176,-4.3295484,-4.42318,-4.383064,-4.048596,-4.175072,-4.1221123,-4.252609,-4.2405477,-4.13071,-3.1566434,-4.013701,-4.065448,-4.3961887,-4.5025954,-4.3501,-3.1010108,-4.041959,-4.08657,-4.2779307,-4.4151487,-4.5308375,-4.4705586,-4.345295,-4.1215196,-4.1935573,-4.1963506,-4.355511,-4.1935334,-3.9325595,-4.084479,-2.4693289,-4.066235,-4.12447,-4.0560875,-4.0792084,-4.120257,-4.184347,-4.295193,-4.315191,-4.2442822,-4.02731,-3.955699,-2.3057222,-3.4261515,-3.5422702,-3.5009232,-3.0410943,-3.7420034,-4.0881352,-4.1921744,-3.567893,-3.884396,-3.9992795,-4.190547,-4.260476,-4.1805844,-4.0156875,-4.109997,-4.025032,-2.2315712
+-1.5621967,-2.681089,-2.7802944,-2.3256621,-1.9847326,-1.599587,-1.2113695,-0.945324,-0.8522827,-0.6109088,-0.31243086,-0.2479139,-0.2017631,-0.4668184,-0.9496295,-1.4755869,-1.9436169,-2.381674,-2.9745786,-3.2348118,-3.1753852,-3.2227616,-3.4507527,-3.4177804,-3.3252127,-3.0823889,-3.341423,-3.3752081,-3.4269602,-3.4337606,-3.2168715,-3.5966644,-3.7135754,-3.7142425,-3.6783605,-3.6337302,-3.5198483,-3.2300615,-3.744495,-3.679535,-3.651446,-3.510087,-3.259036,-3.6632907,-3.8550954,-3.747302,-3.7659278,-3.7928805,-3.8262239,-3.6332545,-3.678049,-3.6293197,-3.6566873,-3.6373887,-3.624169,-3.659885,-3.5610151,-3.5699058,-3.5137072,-3.4976685,-3.5549788,-3.6252956,-3.2201982,-3.583716,-3.5631995,-2.7595627,-4.03725,-4.1538863,-4.3630824,-4.2684546,-4.2009034,-4.040412,-4.3391747,-4.1735487,-4.066721,-4.0515995,-4.0383945,-3.995625,-3.9967875,-3.9643936,-3.8673282,-3.491843,-3.8181539,-4.0401235,-4.055422,-4.025139,-3.9887218,-3.3169293,-3.893104,-3.7741227,-4.27353,-3.8897548,-4.2051024,-4.269068,-4.2280097,-4.21226,-4.1593227,-3.919846,-4.2667437,-3.1900063,-4.1132803,-4.4390073,-4.447976,-4.2696676,-4.2423005,-4.237558,-4.303977,-4.331376,-4.1265063,-4.4040937,-4.3865957,-4.377123,-4.31584,-4.077681,-4.326443,-3.7963157,-4.238174,-4.3712583,-4.2972493,-4.30926,-4.272586,-4.3050656,-4.1972632,-4.2088647,-4.086354,-4.2733397,-4.216539,-3.939899,-4.2805195,-4.3059306,-4.204326,-4.2179084,-4.2489905,-3.7985573,-3.4795406,-4.0732093,-4.3248153,-3.3994913,-4.232096,-4.458793,-4.447808,-4.4067044,-3.562986,-4.4418445,-4.658832,-4.6933346,-4.5712714,-4.36086,-4.5513797,-3.9452395,-4.494394,-4.5231714,-3.6976118,-4.3922505,-4.4010415,-4.7422686,-4.790278,-4.7662253,-4.483763,-4.4657907,-3.7759137,-4.469011,-4.51908,-4.03421,-4.6459584,-4.683347,-4.550811,-4.415803,-3.8425803,-4.3800673,-4.407661,-4.6177444,-4.6409206,-4.4540415,-4.694411,-4.2884545,-4.341993,-4.508826,-4.57434,-4.5086093,-4.571716,-4.5453033,-4.518598,-4.50121,-4.1190853,-4.327185,-4.4762163,-4.4784985,-4.442559,-4.4280033,-3.5537322,-4.395576,-4.523254,-4.537579,-4.6278157,-4.4153824,-4.42073,-4.3691535,-3.847824,-4.2168136,-4.4806223,-4.393369,-3.8862739,-3.6149359,-4.5863433,-4.6140404,-4.7643256,-4.887009,-4.676558,-4.055205,-4.831619,-4.645542,-4.867915,-4.858194,-4.727858,-4.642417,-4.2971644,-4.7211776,-4.7901354,-4.6553426,-4.666018,-4.1340175,-4.7595983,-4.7511215,-4.647825,-4.5906253,-4.239651,-4.757207,-4.7764153,-4.407438,-4.765342,-4.8692164,-4.821897,-4.226707,-4.3027186,-4.220033,-3.977797,-3.4702525,-3.5746703,-3.7187448,-4.2228575,-4.378862,-3.8601336,-3.9111624,-3.8155227,-4.7527447,-4.8420987,-4.5734515,-3.584699,-3.752748,-3.2573526,-3.0281131,-3.0269103,-2.7928123,-2.791755,-2.5483115,-2.575126,-2.424673,-2.5518136,-2.7366261,-2.4527807,-2.302557,-2.5701675,-2.2172756,-1.9912372,-1.9569173,-1.9550016,-1.9256778,-1.8802001,-2.1602266,-1.764076,-1.6791105,-1.7403581,-1.8345761,-2.0247948,-1.7356064,-1.7679818,-1.7305174,-1.7372098,-1.821095,-1.9116411,-2.1392279,-2.4047332,-2.4754906,-2.2408974,-1.949512,-1.8943605,-1.9355311,-2.3525672,-2.2613506,-2.2452526,-2.1121044,-1.9740801,-1.7790337,-1.8418536,-1.7274022,-1.5375965,-1.2234597,-1.317028,-1.4103286,-1.4843435,-1.451797,-1.4371607,-1.5573201,-1.815963,-2.0708416,-2.0515666,-1.9547911,-1.9872794,-2.0259833,-1.8491533,-1.9945688,-2.0512106,-1.86267,-2.1592736,-2.2293825,-2.2120156,-2.1499631,-1.9808588,-1.961931,-1.8776703,-1.8476138,-1.8213723,-1.6018667,-1.3120584,-1.2174797,-1.4786043,-1.3256555,-0.9769884,-0.96816236,-0.79299754,-0.86079174,-0.2798918,-0.16638577,-0.33519477,-0.2761249,-0.6342889,-1.1439004,-1.3858202,-1.385113,-1.3345711,-0.6673489,-0.2459718,-0.23236066,-1.2313633,-1.5202076,-1.5735433,-1.6146975,-1.5918586,-1.4441118,-1.2039201,-1.2354414,-1.3065476,-1.1927335,-0.8103669,-1.0505724,-1.3195925,-1.4522421,-1.2549806,-1.3190908,-1.3828773,-1.1179085,-0.6027059,-0.15482035,-0.04497415
+-1.0151978,-2.809685,-2.3297544,-1.30298,-0.7398252,-0.57712454,-0.062768936,0.6904414,1.8653514,2.1709046,1.5468731,0.55518854,1.0746685,1.0797565,0.69045615,-0.05694163,-0.9500335,-1.9759586,-2.328178,-2.5017,-2.6474593,-2.9737618,-2.8679729,-2.8184218,-2.8081625,-2.464163,-3.278503,-3.141555,-3.1236656,-3.3879108,-3.137111,-3.7920613,-4.148277,-4.3845305,-4.563412,-4.2388983,-4.323198,-4.409232,-4.241304,-4.0147653,-4.0304327,-4.0940213,-3.5665278,-4.185471,-4.2767844,-4.158852,-4.1657734,-4.1837907,-4.3524947,-4.064764,-4.203512,-3.974875,-3.9835925,-4.028788,-3.7097573,-4.069959,-4.029859,-4.015156,-2.465599,-4.3078365,-4.577976,-4.721541,-4.292849,-4.665622,-4.7140455,-2.909361,-4.2857003,-4.467133,-4.566411,-4.41326,-4.50503,-3.631451,-4.3831854,-4.4598823,-4.4983525,-4.6441917,-4.692713,-4.5507793,-4.518702,-4.4221253,-4.3479075,-3.090574,-4.314572,-4.6925197,-4.7319303,-4.6825967,-4.5568223,-3.9021482,-4.2661834,-4.6690145,-4.676987,-4.1958594,-4.43568,-4.6121373,-4.5504813,-4.474219,-4.355026,-4.405227,-3.0788243,-3.5385382,-4.1250057,-4.659011,-4.8851275,-3.7633672,-3.9517312,-4.225631,-4.742721,-4.825578,-4.52618,-4.815524,-4.870518,-4.8800573,-4.548867,-4.5852194,-4.8083115,-3.7081838,-4.167705,-4.7370696,-4.888545,-4.865581,-4.8492837,-3.985824,-3.862432,-4.374156,-4.768265,-4.7689557,-4.7322955,-3.9859362,-4.592992,-4.73251,-4.702925,-2.8928142,-4.42363,-4.3450418,-3.1847215,-4.233148,-4.7137,-4.7119613,-3.865724,-4.710762,-4.875652,-4.9433208,-2.8643556,-4.272966,-4.764517,-4.949355,-4.9008107,-4.6415496,-4.8698173,-4.513354,-4.6702485,-4.933363,-4.824502,-4.711898,-4.614662,-4.5756197,-4.4554343,-4.3478036,-4.321303,-4.2363973,-2.2461767,-3.9092984,-4.6694126,-4.2029853,-4.872842,-4.9329543,-4.8636785,-4.786037,-4.7676797,-4.5735393,-2.7732956,-3.9613547,-4.7086654,-4.974815,-4.9760823,-4.928744,-4.7716084,-4.6194806,-4.6231036,-4.146485,-4.6076035,-4.733437,-4.595297,-4.664922,-3.392733,-4.0367312,-4.798671,-4.959684,-4.932511,-4.8269167,-3.6547723,-4.5647626,-4.596703,-4.8185935,-4.6897893,-4.3407617,-4.6686625,-4.7993026,-4.3908153,-4.4421372,-4.1140428,-4.1756754,-4.2226624,-2.926042,-3.6746173,-3.7716126,-4.3480883,-4.227533,-4.3338656,-3.0268068,-4.0608854,-4.4872494,-4.610496,-4.591488,-4.6192403,-4.7511897,-3.4864295,-4.397757,-4.6215773,-4.6959915,-4.5730147,-4.73229,-4.5181565,-4.6537423,-4.473425,-4.276629,-4.4110894,-4.280171,-4.362717,-4.187464,-4.669419,-4.78194,-4.7625237,-3.7826,-3.4802842,-3.5541136,-3.3614872,-2.9835813,-2.964419,-3.351787,-3.8786025,-4.026195,-3.9966426,-4.555466,-3.8911567,-4.3279424,-4.2088695,-4.043636,-3.6364338,-3.8904767,-3.4426522,-3.7214704,-3.2623303,-2.6157331,-2.1150665,-1.6729615,-1.6361854,-1.3161786,-1.2594013,-1.4038696,-1.5847371,-1.3840137,-1.4996243,-1.6726434,-1.9176693,-2.436791,-2.371593,-2.5084605,-2.4263227,-2.6822088,-2.5484805,-2.2606149,-2.4502,-2.5240998,-2.585959,-2.5331628,-2.5438478,-2.6929524,-2.779067,-2.3696942,-3.1152952,-3.2582784,-3.4829876,-3.5644717,-3.6280448,-3.4024668,-3.0732977,-1.8551819,-2.3905892,-2.9734688,-3.1407266,-3.2073054,-3.232361,-2.5766006,-2.517901,-2.1235955,-1.141567,0.09146416,0.14808068,0.22688077,0.45164892,0.930624,0.87151873,0.6691905,0.36901844,-0.19397557,-0.35062748,-0.24026477,-0.44004226,-0.5960382,-0.6228282,-0.65413266,-0.9534096,-1.2707574,-1.8546984,-2.507234,-2.8936982,-3.201661,-3.2229018,-3.2343917,-3.4615402,-3.2952762,-3.2226806,-3.1277623,-2.7506442,-2.5595288,-2.6588778,-2.1473129,-0.98116106,0.08124629,-1.2412136,-1.8758988,-2.3002555,-2.932174,-3.4590678,-3.6037745,-3.018436,-1.738617,-1.5031662,-1.4520414,-1.2746375,-1.1644232,-1.1483855,-1.1529279,-0.7716448,-0.9198105,-0.9684822,-0.3144446,-0.6328772,-0.5469054,-0.9026781,-1.704648,-2.0089715,-2.236567,-1.6761439,-2.1269827,-2.4936752,-2.7056582,-2.6186757,-2.4659228,-2.595405,-1.3999457,0.06415945,0.85381025,0.51914656
+-1.5179305,-2.790827,-2.7540338,-2.6715982,-2.3184738,-2.0319936,-1.2779782,-1.9787555,-2.4809632,-2.461141,-2.050527,-2.8678389,-3.5580673,-3.5279808,-3.445241,-3.3453074,-3.3089876,-3.2910023,-3.223218,-3.353783,-3.285442,-3.295692,-3.2667809,-3.4292524,-3.2333202,-2.9118867,-3.5307229,-3.6351695,-3.576734,-3.4138427,-3.4520645,-3.532838,-4.220395,-4.303983,-4.428883,-3.921803,-4.1436877,-4.2861137,-4.214442,-4.152848,-3.8734875,-3.7898946,-3.408976,-4.0147767,-4.3796897,-4.191561,-4.083952,-4.034218,-3.813305,-3.6929936,-3.8238168,-3.7418017,-3.8910904,-3.830814,-3.7021418,-3.7570477,-3.6231709,-3.7871528,-4.194007,-4.005675,-4.1624656,-4.0605483,-4.00293,-3.680678,-3.8540673,-3.2631063,-4.2539315,-4.2763944,-4.313765,-4.3803363,-4.245883,-4.290765,-4.17359,-4.0367227,-3.934958,-3.9080062,-3.8889918,-4.1793227,-4.0080214,-3.9877,-3.984117,-3.753758,-4.0718274,-4.068547,-4.0603695,-4.0546703,-4.022025,-3.5877385,-4.313927,-4.480909,-4.2956815,-4.0320396,-4.404788,-4.30405,-4.2949967,-4.3269496,-4.4543724,-4.0648746,-4.562681,-3.9606848,-4.6228704,-4.6620336,-4.509327,-4.5197062,-4.2245293,-4.6332555,-4.466191,-4.130418,-4.4737716,-4.61208,-4.5703325,-4.5443196,-4.5720153,-4.522838,-4.4883866,-3.0442162,-4.486762,-4.569407,-4.3752313,-4.6826067,-3.276886,-3.5658007,-4.4014807,-4.5822024,-4.7930207,-4.7547617,-4.728104,-4.612979,-4.6827464,-4.625231,-4.635282,-3.9225698,-4.491589,-3.8662062,-4.0781937,-3.8916793,-4.7079864,-4.312549,-4.6414046,-4.597619,-4.8682203,-4.6995063,-3.194579,-4.3993926,-4.6111064,-4.7057004,-4.795297,-4.796634,-4.722493,-4.6787753,-4.699347,-4.6382914,-4.598499,-4.426408,-4.6987424,-4.584453,-4.5771756,-4.560122,-4.503655,-4.5115056,-4.3307214,-4.3175287,-4.3853793,-4.6206155,-4.6868005,-4.6527934,-4.4954195,-4.6419415,-4.577787,-4.4162354,-4.0413647,-3.1070905,-4.2812004,-4.5178323,-4.5420575,-4.578365,-4.5517507,-4.295701,-4.361445,-4.2118087,-4.5139794,-4.232101,-3.383822,-4.347796,-3.924975,-4.5973496,-4.683899,-4.6604075,-4.6127563,-4.578727,-4.5518904,-4.708248,-4.4279413,-4.2083445,-4.375851,-4.4676156,-4.3590345,-4.261477,-4.424761,-4.1942444,-4.5792108,-4.562798,-4.1350856,-4.249549,-4.109692,-4.307507,-3.9895244,-4.61113,-4.4190474,-2.6849275,-4.069586,-4.371915,-4.280831,-4.587669,-4.4277864,-4.6453514,-4.7276177,-4.766345,-4.74679,-4.7157135,-4.495179,-4.484071,-4.6148953,-4.721735,-4.7618985,-4.4066033,-4.2419324,-4.0754166,-3.9596868,-4.5471063,-4.726692,-4.58727,-4.533274,-4.1676016,-4.0974207,-3.9800844,-3.6504502,-2.7829173,-2.9675894,-3.5488997,-3.9271255,-3.928475,-3.8068943,-3.8744597,-4.207454,-4.5128703,-4.609981,-4.3800397,-3.859095,-3.7636938,-2.9053237,-3.4515152,-3.410635,-3.170518,-2.9332736,-2.166335,-2.0810575,-1.9774771,-2.0533252,-1.9706774,-1.4413197,-0.80151314,-1.6945043,-1.8116205,-1.8312657,-1.4756858,-1.6632719,-1.5006666,-1.5696337,-1.9371359,-1.4455831,-1.2438319,-1.5497346,-1.5040436,-1.6438656,-1.4958982,-1.7603059,-1.5284019,-1.3356802,-1.3412957,-1.6311948,-1.8585501,-1.9674366,-2.093123,-2.1526625,-1.8255234,-1.4619849,-0.7937824,-1.2218723,-1.3359957,-1.5471907,-1.3607731,-1.2603462,-0.90679675,-0.9541469,-0.8611414,-1.2426105,-1.6335776,-1.6551933,-2.0804408,-2.1277146,-2.3553228,-2.6616197,-2.6778693,-2.6140003,-2.567567,-2.1133888,-1.9172587,-2.0309663,-1.8231802,-1.654191,-1.3619192,-1.1450624,-0.959814,-1.2291565,-1.4213698,-1.3686757,-0.93269295,-1.1969314,-1.3810081,-1.2447138,-1.4022412,-1.4703183,-1.5668275,-1.0483437,-0.7909394,-1.0220859,-0.46405458,-0.63016754,-2.068543,-2.6746302,-3.835548,-3.6947422,-3.626818,-3.9515362,-3.9570408,-3.9044466,-3.6579547,-3.1504543,-2.872913,-1.7857797,-2.215438,-3.2568517,-3.288226,-2.9281316,-2.5747051,-2.389905,-0.9377791,-1.2647767,-1.1840379,-1.0239279,-1.304362,-1.2274611,-1.725359,-1.2960062,-1.7266676,-2.387041,-2.2200758,-1.679219,-1.3096862,-0.8719961,-1.1945271,-1.7538004,-2.2304757,-2.058341
+-1.4928389,-3.0235775,-3.326037,-3.6139755,-3.8504715,-3.7594624,-3.4687166,-4.0818787,-3.8976007,-4.0536685,-3.819882,-4.0809097,-4.311521,-4.1627135,-4.2432227,-4.1984067,-4.1200128,-4.033928,-4.0067153,-3.9367337,-3.9956245,-3.9602456,-3.6325808,-3.8597512,-3.9246783,-3.568402,-3.6169019,-3.4228597,-3.6811059,-3.7766342,-3.4603755,-4.1504455,-3.655191,-4.060982,-4.226687,-3.7371998,-3.9678893,-4.3820024,-4.629187,-4.627834,-4.5513425,-4.6002584,-4.2634635,-4.5186715,-4.813193,-4.7289977,-4.4961357,-4.3280773,-4.239202,-4.3533506,-3.730823,-3.7721686,-4.2081122,-4.629431,-4.665071,-4.582171,-4.430331,-4.4452615,-4.3297853,-3.5796647,-4.557561,-4.5783467,-4.5253067,-4.0885873,-4.510383,-3.7957916,-4.6782355,-4.4471564,-4.343801,-4.7240067,-4.8319135,-4.8217044,-4.72566,-4.6306014,-4.589296,-4.583817,-3.8284602,-4.5848894,-4.7270017,-4.6527677,-4.569423,-4.4414306,-4.313724,-3.8869,-4.053123,-4.6452127,-4.5796847,-4.144726,-4.3138137,-3.9259152,-4.76879,-4.1855965,-4.680286,-4.620742,-4.6500926,-3.6269605,-4.8474174,-4.6012645,-3.9491787,-3.977055,-4.1125417,-4.807737,-4.771377,-3.5499368,-4.2698483,-4.8317666,-4.759931,-4.7885156,-4.423593,-4.3296165,-4.577637,-4.617324,-4.5520005,-4.443572,-4.24398,-2.8907914,-4.2210827,-4.7042346,-3.7395082,-4.002251,-3.500594,-4.1569276,-4.200315,-4.4038367,-4.8166823,-4.821367,-4.783148,-3.9251223,-4.795958,-4.7418113,-4.7924256,-4.4825296,-4.561045,-3.78539,-4.5991426,-4.6252093,-4.3291554,-4.431655,-4.5607047,-4.180245,-4.009415,-4.633934,-3.1506777,-4.633861,-4.709437,-4.7870193,-4.655375,-4.5880995,-4.362732,-4.2863584,-4.3755336,-4.231604,-4.30684,-3.4815357,-4.316113,-4.215896,-4.2790465,-4.32904,-4.2454076,-4.2873836,-3.9830995,-3.9505615,-3.6956816,-4.1576223,-4.2566113,-4.2916727,-4.2749515,-4.143399,-4.0180726,-3.9499412,-3.991887,-2.3140368,-3.994936,-4.183898,-4.167328,-4.3025737,-4.161007,-4.2991824,-4.1767287,-4.228741,-4.273627,-3.3732069,-2.7391827,-3.8362942,-4.146849,-4.5083594,-4.1854224,-4.354516,-4.483913,-4.296677,-4.1238914,-4.1724505,-4.6250277,-4.5485225,-4.624718,-4.585296,-4.589775,-4.587492,-4.6181455,-4.415069,-4.328442,-4.322389,-4.0883155,-4.1149726,-3.780631,-4.6366825,-4.562325,-4.5790896,-4.418759,-3.592597,-4.164491,-4.6583138,-3.7208014,-4.46546,-4.5786586,-4.500433,-4.4194045,-4.508347,-4.6537967,-4.546825,-4.462602,-4.5941772,-3.7157617,-4.6824775,-4.6855917,-4.7480755,-4.701609,-4.7206864,-4.416681,-4.690258,-4.7507567,-4.68041,-4.5480523,-4.2039313,-4.4770713,-4.564321,-4.384662,-4.232092,-4.486509,-4.502456,-4.6424394,-4.607759,-2.3937302,-3.6579814,-3.6898422,-4.220661,-4.3062305,-4.380239,-4.1165423,-3.4667234,-3.7886872,-4.2682567,-4.189917,-4.101801,-3.6735487,-2.2426205,-2.7844057,-2.5450058,-2.7349384,-2.583096,-1.2442176,-0.9481675,-0.9582419,-1.3684392,-1.2802773,-0.7782044,-0.6238609,-0.63612956,-0.996564,-1.3734221,-1.8140559,-3.5165348,-2.927,-3.6343546,-3.4086602,-3.6868672,-3.1103597,-3.091214,-3.9833093,-4.1196327,-3.2912798,-2.9882693,-2.8949804,-2.6618004,-2.3647165,-1.3964081,-1.3616371,-3.2981555,-3.6061625,-3.5865111,-3.4780345,-2.4254022,-2.5130355,-3.8911576,-3.821672,-4.235687,-4.323808,-3.2974205,-3.6246214,-4.109869,-4.257626,-4.358378,-4.371411,-4.324639,-4.2249646,-4.0874853,-4.2027917,-4.436092,-4.215096,-4.0391717,-3.6326776,-3.8209834,-3.4436266,-4.360674,-3.668052,-3.941732,-3.4835536,-3.109525,-4.1847835,-4.227403,-4.0233397,-4.081636,-3.9839826,-3.8887,-4.4023457,-4.6152883,-4.4150157,-4.3079896,-4.5530686,-4.4184685,-3.6693702,-4.5889716,-4.5450187,-4.2511764,-4.0994244,-4.696642,-4.450748,-4.2493916,-3.9132047,-3.314681,-2.7190847,-3.821549,-4.53979,-3.910263,-4.277597,-3.871757,-3.3755772,-1.81581,-1.8472981,-1.5843675,-1.1769464,-0.89873916,-0.656333,-1.0115099,-1.2990265,-2.096062,-2.5505564,-2.51449,-3.8458815,-3.9431796,-3.9027677,-3.7142186,-4.43775,-4.4720206,-2.784387
+-1.1834915,-2.5248034,-3.0106974,-3.0916214,-2.8545737,-3.0591187,-2.7770681,-3.5405965,-3.1182363,-3.2908635,-3.2417245,-3.2467585,-3.4839463,-3.3066208,-3.3937867,-3.4805102,-3.5020514,-3.4896019,-3.5544689,-3.5460172,-3.5140133,-3.4347723,-3.1657498,-3.719604,-3.560031,-3.6141837,-3.2280838,-3.068927,-3.6854084,-3.7667937,-3.0533857,-3.4707654,-3.1812572,-3.225039,-3.5018082,-3.2361772,-3.3985534,-3.607578,-3.788568,-3.9304624,-3.2991776,-3.6576824,-3.6678495,-3.476184,-3.9292197,-4.015885,-3.3102875,-3.8805313,-3.8293695,-3.781044,-2.782329,-3.6487327,-3.4454982,-3.6439497,-3.8283281,-3.8188386,-3.7054954,-3.6038685,-3.2490606,-2.8759112,-3.6501002,-3.66854,-3.6301591,-3.6186812,-3.5570583,-3.260477,-3.3358357,-3.5608702,-3.7485814,-3.7580209,-3.7422657,-3.4878366,-3.6351962,-3.7149272,-3.6732273,-3.3740144,-2.0823483,-2.9053607,-3.628955,-3.8089256,-3.7886763,-3.3141208,-3.4557276,-3.462502,-3.0714998,-3.688258,-3.715445,-3.6387916,-2.4279566,-3.4940264,-3.7009912,-3.6852834,-3.4089577,-3.57224,-3.6398144,-3.5580196,-3.8037705,-3.7867951,-3.6684723,-3.5530393,-3.6198232,-3.5584815,-3.401776,-2.8485012,-3.4328558,-3.6502106,-3.5752442,-3.4787197,-2.7982037,-3.657744,-3.32549,-3.708551,-3.648718,-3.6666665,-3.6017377,-3.508829,-2.9757366,-3.404783,-2.4179783,-2.9485965,-3.2986975,-3.5905533,-3.0314407,-3.5340662,-3.718782,-3.8206692,-3.92197,-3.270319,-3.9637246,-3.9873042,-3.9027038,-3.8047757,-3.700286,-3.6062505,-3.5413544,-3.5591185,-3.553735,-2.5427487,-3.7114463,-2.8675196,-3.7601476,-3.8644004,-2.7090478,-3.6549995,-3.831739,-3.8909955,-3.781116,-3.8040476,-3.7640047,-3.6086555,-3.645234,-3.6146169,-3.5295708,-2.6600323,-3.572086,-3.1818242,-3.5971797,-3.8414502,-3.9327521,-3.8760695,-3.7819118,-3.7867942,-3.658913,-3.7226887,-3.7055087,-3.5979369,-3.609796,-3.6156645,-3.5571113,-3.5432992,-3.5161307,-1.8953037,-3.418276,-3.6082895,-3.7222972,-3.815773,-3.827232,-3.8173218,-3.7962046,-2.549378,-3.4026856,-1.7697198,-2.4278657,-3.291269,-3.6056063,-3.7906117,-3.8385649,-3.753755,-3.8043299,-3.7791739,-3.03089,-2.352862,-3.5274687,-3.6322608,-3.813455,-3.8988023,-3.9257174,-3.8136625,-3.8235521,-3.8275704,-3.8156748,-3.8444486,-3.774345,-3.7276716,-3.275988,-3.8098292,-3.866787,-3.9849944,-3.8775783,-3.3966842,-3.683972,-3.8121562,-3.872418,-3.958974,-3.8771014,-3.8617063,-3.895393,-3.827551,-3.9107037,-3.9193406,-3.8935308,-3.828753,-3.357622,-3.8852196,-3.858395,-3.9540129,-3.8947182,-3.7749157,-3.7238307,-3.8971028,-3.891686,-3.94144,-3.91439,-4.042319,-4.2912188,-4.1721225,-3.8860874,-3.792448,-3.8890972,-3.992392,-4.040681,-3.9016,-3.3237042,-3.5442889,-3.3579988,-3.929831,-4.019885,-3.998394,-3.1887407,-2.9513183,-3.0402627,-3.572616,-3.4964895,-3.3856723,-3.0168617,-2.9121008,-3.618876,-3.5816877,-3.5377412,-2.9482017,-1.6192741,-3.0256603,-3.3952236,-3.1329558,-3.062181,-3.1121793,-3.1807928,-2.91784,-3.608616,-3.6608016,-3.6875596,-3.915362,-3.4166791,-3.8827057,-3.629726,-3.687096,-2.9535115,-3.1816497,-3.5131555,-3.7117085,-3.4277604,-2.3439817,-2.4416456,-1.4360294,-1.1564152,-0.9216816,-2.0323808,-2.9538257,-3.323886,-2.9613702,-3.3985403,-3.3012629,-3.653449,-3.6882896,-3.7340221,-3.6475325,-3.3923414,-2.7600894,-3.469704,-3.6304772,-3.6837513,-3.9918475,-3.8973742,-3.8539758,-3.5967348,-3.6368997,-3.7306552,-3.765387,-3.719016,-3.4326582,-3.3431115,-3.4834056,-3.611075,-3.838561,-3.2991154,-3.5675025,-3.4802017,-3.5017867,-3.911344,-3.7191224,-3.2252417,-3.805718,-3.5682185,-3.5002184,-3.757146,-3.9351764,-3.7247653,-3.7365599,-3.7973566,-3.856113,-3.2456055,-3.8718104,-3.7785153,-3.7482762,-3.1988869,-4.009229,-3.9667392,-3.62434,-3.3612251,-3.0836117,-3.262457,-3.7001438,-3.9624562,-3.702961,-3.639752,-3.425706,-3.1731005,-1.6036115,-2.8285325,-2.9367876,-2.9804697,-2.8797555,-2.677011,-3.1196513,-3.3997319,-3.5333958,-3.3636959,-3.366547,-3.4163554,-3.6662188,-3.5233617,-3.6301098,-3.7458887,-3.665024,-2.3675718
+-1.5472417,-2.373096,-2.0497787,-1.2393458,-0.47192067,-0.042268097,-0.15604773,0.12798938,0.5821184,0.44894174,-0.23401493,-0.8007359,-0.43273693,-0.04487914,0.48504394,0.13866067,-0.8070404,-1.455884,-1.3763146,-1.820662,-1.9524493,-1.7557225,-2.8100808,-3.1791184,-3.2719517,-2.7194839,-3.176516,-3.153677,-3.1153746,-3.265843,-2.8355556,-3.0200913,-3.6027539,-3.527628,-3.5818865,-3.6218214,-3.84304,-3.3881145,-3.807918,-3.7562013,-3.8500724,-3.8592358,-3.697277,-3.8966823,-3.7435288,-3.66801,-3.7563992,-3.8639922,-3.9595456,-3.9121776,-3.9475837,-3.911199,-3.8649364,-3.804604,-3.958012,-3.8173566,-3.830236,-3.8244452,-3.3181236,-3.852757,-4.1523438,-4.106811,-3.8344908,-4.065103,-4.0379605,-2.5230885,-3.7214017,-3.9218316,-3.930757,-3.870769,-3.9594903,-3.7538056,-3.904132,-3.9083695,-4.0374274,-4.1299577,-3.9850001,-3.9463658,-3.9372215,-3.9635463,-3.903658,-3.7812495,-3.7033548,-3.9708543,-4.0245976,-4.0018644,-3.966312,-3.5346746,-3.548752,-3.4589524,-4.0890737,-3.9298887,-4.25602,-4.307397,-4.3278,-4.2544117,-4.2473207,-4.092916,-4.0742755,-2.6332185,-3.6268888,-4.0593762,-4.291558,-4.201419,-4.2304792,-4.414844,-4.3529377,-4.2554965,-4.0244093,-4.2872453,-4.321138,-4.341963,-4.2273555,-3.3350263,-4.1732764,-4.3655305,-4.346315,-4.4594555,-4.417784,-4.37569,-4.427476,-4.342978,-4.3437533,-4.243337,-4.255464,-4.260153,-4.163849,-3.7528334,-4.165849,-4.4034057,-4.42543,-4.382345,-4.3114595,-3.665927,-3.5728536,-3.893063,-4.316523,-3.50597,-3.8988523,-4.288454,-4.407105,-4.4537864,-3.509925,-4.136976,-4.4069257,-4.5443616,-4.5232015,-4.57544,-4.433334,-4.2412763,-4.394606,-4.380629,-3.2255206,-4.0801587,-4.373044,-4.450564,-4.5173593,-4.5334196,-4.4173155,-4.4082255,-3.685262,-4.2095766,-4.2921195,-3.8331132,-4.2377768,-4.4568305,-4.1955957,-4.389524,-4.500523,-4.5064464,-4.296209,-4.4682894,-4.5791965,-4.5359855,-4.44632,-3.137981,-4.05251,-4.2591815,-4.318847,-4.4571033,-4.424778,-4.437389,-4.3556533,-4.284372,-4.1734724,-4.182991,-4.355468,-4.4071693,-4.4594893,-4.390637,-3.3046956,-4.0307527,-4.193287,-4.2304344,-4.29452,-3.9260168,-4.218353,-4.1618304,-3.958444,-4.2959957,-3.702168,-3.8138442,-3.2933686,-3.002035,-3.312122,-3.8438787,-3.835647,-3.7559276,-3.5358663,-2.9186294,-3.392397,-3.462677,-3.83985,-3.8080711,-3.5988262,-3.8705869,-3.1999106,-3.7311807,-3.8096118,-3.6658545,-3.5270338,-3.8163753,-3.9047627,-3.7047296,-3.7189326,-3.6200628,-3.851101,-3.8650713,-3.8287044,-3.3258772,-3.8345904,-3.8158526,-3.8390512,-3.064146,-3.2048292,-3.1287282,-3.1210182,-2.6270077,-2.8658264,-3.039341,-3.300598,-3.1531818,-2.6071963,-3.07345,-2.9992323,-3.4575675,-3.4642885,-3.2518244,-2.4938972,-2.9658976,-2.3663292,-2.1611502,-1.541568,-0.8663662,-0.79806906,-0.9900519,-0.7704794,-0.7099404,-0.9878755,-1.2948544,-1.2176199,-1.2847142,-1.653444,-1.7235901,-1.4487927,-1.6279202,-1.2819743,-1.3598299,-1.4298968,-1.9474559,-1.871429,-1.6919646,-1.9623728,-2.0176616,-2.1163528,-1.9509611,-1.6818213,-2.1270213,-2.1642413,-1.9915414,-2.310253,-2.4913116,-2.786404,-3.0321193,-2.7674313,-2.217023,-1.9346888,-1.5026152,-2.3675735,-2.35268,-2.3454537,-2.112556,-2.276875,-1.7541695,-1.5877001,-1.5578256,-1.244246,-0.96126944,-1.5616639,-1.5317388,-1.7351842,-1.5201509,-1.5575926,-1.8843007,-2.049049,-2.446179,-2.6078222,-2.389905,-2.4165933,-2.4952955,-2.2897494,-2.4585936,-2.7245607,-2.5203629,-2.5555,-2.8802574,-2.8510926,-2.8618474,-2.7360463,-2.408853,-2.4999042,-2.093692,-2.0625908,-1.8606067,-1.2289193,-1.1217506,-1.3877766,-1.234909,-0.7195906,-0.7202539,-0.95805246,-0.2761172,0.3307414,0.8002024,0.61227727,1.0625873,0.50594676,-0.8109277,-1.9813211,-1.9672666,-2.114479,-1.4046178,-0.5382007,-0.54240793,-1.8019409,-2.482981,-2.6271253,-2.913328,-2.9892457,-2.7130713,-2.315568,-2.2566266,-2.1543376,-1.9122112,-1.6877835,-1.8583336,-2.1324215,-2.5558634,-2.1979556,-2.09755,-2.0103078,-1.6698563,-1.101794,-1.0228901,-1.3500223
+-0.78382796,-1.754637,-2.6114302,-2.3566463,-2.1871395,-1.965004,-1.1770597,-2.01587,-2.5701876,-2.9157434,-2.9074764,-3.3004303,-3.6651986,-3.5565243,-3.42403,-3.2618032,-3.1908236,-3.147027,-3.1764612,-3.2385318,-3.278914,-3.0959077,-2.9508233,-3.2576444,-2.9699318,-2.5087051,-3.325457,-3.5077982,-3.248601,-2.8847027,-3.1427515,-3.4036958,-3.3949914,-3.7702832,-3.9742227,-3.639155,-3.9926758,-4.1619973,-4.131671,-4.0203743,-3.8325667,-3.6572423,-3.1170847,-3.8416896,-3.9980397,-3.988358,-3.769394,-3.575489,-3.4150858,-3.4131727,-3.3611555,-3.3195105,-3.2736144,-3.217203,-3.4564326,-3.4312053,-3.2452826,-3.465196,-3.4075456,-2.780864,-3.7578683,-3.8573518,-3.7498646,-3.4731412,-3.7480807,-2.7377014,-4.0304275,-4.2943406,-4.468099,-4.258781,-4.055642,-3.8006558,-3.9459033,-3.7943206,-3.7550068,-3.7145743,-3.586964,-3.6170683,-3.6026769,-3.5961916,-3.5356612,-3.5548213,-3.4308877,-3.3917346,-3.3563306,-3.358095,-3.4109075,-2.7651505,-3.8238654,-3.4615116,-4.146481,-3.5255356,-4.3505373,-4.447431,-4.3911676,-4.289499,-4.3865514,-4.2170815,-3.6348119,-3.4270697,-4.1647506,-4.4962535,-4.553658,-4.5549006,-4.3529067,-4.589913,-4.429606,-3.983799,-4.053579,-4.2747955,-4.3757033,-4.3723483,-4.325567,-4.2606864,-4.2364893,-3.1491246,-4.5206428,-4.4514575,-4.3873277,-4.127599,-3.4184666,-2.9648962,-4.1148553,-3.9343019,-4.4605117,-4.6386695,-4.6170716,-4.6125484,-4.4193635,-4.3374963,-4.269865,-3.0704973,-4.349683,-4.1133094,-4.2043395,-3.9440284,-4.549128,-4.481214,-4.6298223,-4.2933536,-4.5415993,-4.3699327,-3.6357272,-4.2796483,-4.4644127,-4.4510007,-4.3701425,-4.4145393,-4.279823,-4.167136,-4.2440066,-4.1009793,-4.1506624,-3.991837,-4.096019,-4.00213,-3.9361777,-3.9344125,-3.927465,-3.8191257,-3.9100032,-3.8057113,-3.811891,-4.1297054,-4.0328126,-4.0385966,-4.067147,-3.8520017,-3.9085088,-3.8257995,-3.798966,-2.6470962,-4.1735253,-4.3218884,-4.198954,-4.2222705,-4.1196346,-3.8009658,-3.8687358,-3.0452337,-3.9885478,-4.059385,-4.0043254,-4.0850744,-3.9393458,-3.99194,-4.1688337,-4.0278363,-4.0388184,-3.9833646,-3.9806323,-4.014579,-3.7024112,-3.6657033,-3.7536988,-3.9073205,-3.7706423,-3.8024707,-3.9825273,-3.9932132,-3.7888017,-3.887485,-3.7131467,-3.3918314,-2.9945664,-3.9412885,-4.0050006,-4.161926,-3.930696,-2.506833,-3.6892676,-4.2749515,-4.021463,-4.347319,-4.273539,-4.464566,-4.4640975,-4.188233,-4.2929225,-4.209876,-3.987637,-4.1040444,-4.1505666,-4.155179,-4.216414,-3.9572163,-4.0442305,-3.980154,-2.571393,-3.958611,-4.47401,-4.4142733,-4.354545,-3.483785,-3.9083533,-3.9497285,-3.9708905,-3.5355248,-3.8945627,-4.400377,-4.332906,-4.240443,-3.1488416,-3.7134233,-3.5892801,-4.2221007,-4.247708,-4.301277,-3.8232975,-4.0518756,-3.4780889,-4.245917,-4.0463414,-3.7813416,-3.5881839,-2.0595508,-2.2243752,-1.8168483,-2.0278263,-2.158691,-1.528085,-1.3723397,-1.8221743,-2.0502558,-1.9731979,-1.715507,-1.712537,-1.6077943,-1.6301537,-1.9823337,-1.3512716,-0.9579541,-1.0023494,-1.1245012,-1.0254595,-0.9096729,-1.4281752,-1.3144617,-2.0105062,-2.3394825,-2.485845,-2.6632314,-2.4846456,-2.3244567,-2.0626411,-1.3785424,-1.492446,-2.7208123,-3.568692,-3.18543,-3.0616753,-2.238386,-2.005012,-2.2103486,-2.4545755,-2.6841478,-3.740508,-3.6248312,-2.9264526,-3.1788745,-3.3424623,-3.6584055,-3.800716,-3.6791022,-3.622832,-3.2793944,-2.7365983,-2.585474,-2.5485854,-2.275722,-1.9814672,-1.6061358,-1.3696227,-1.0496504,-0.9653055,-1.9412577,-1.6119919,-1.2839904,-1.320214,-1.6526022,-1.7081563,-1.7871366,-2.1276894,-2.0873032,-1.5589814,-1.1067271,-1.1743524,-0.54124206,-0.6502219,-2.0194116,-2.8272176,-3.4684293,-3.9353752,-3.7200203,-3.564509,-3.669015,-3.9029589,-3.7979908,-3.3910408,-3.3151064,-2.7144296,-2.6644673,-3.493638,-3.088739,-3.3705075,-3.0889306,-2.9378052,-1.0829172,-1.6926067,-1.6456919,-1.5984771,-1.7717474,-1.7623873,-1.9391706,-1.2408464,-1.4257352,-2.2436943,-2.060154,-1.1711464,-0.68077254,-0.47000778,-1.4575825,-2.4624124,-2.8795793,-2.598988
+-1.89115,-3.0280628,-2.8749747,-1.750252,-1.3467753,-0.95829576,-0.9305145,-0.5307062,-0.437061,-0.5573692,-0.5422502,-1.1190612,-1.8104801,-2.4435916,-2.6582932,-2.7404437,-2.9143462,-3.1580915,-3.2895947,-3.2660933,-3.2097292,-3.2319946,-3.393721,-3.2280107,-3.1342325,-2.607946,-3.309094,-3.21868,-3.150568,-3.2745345,-3.3987963,-3.4196997,-3.900972,-4.0097747,-4.139566,-4.1390166,-3.5842268,-4.023418,-3.9814692,-3.893539,-3.874889,-3.8519535,-3.5852413,-4.117164,-3.8873734,-3.997745,-4.00914,-3.9945273,-3.9889927,-4.027352,-4.04025,-4.032822,-3.903513,-3.4948928,-4.218401,-4.228211,-4.1697354,-4.104332,-4.1383405,-3.9061794,-4.1015825,-4.1378875,-4.2049503,-4.022549,-3.9093823,-2.9385335,-4.276654,-4.4470096,-4.425648,-4.462592,-4.5029597,-4.198795,-4.4746413,-4.4666505,-4.160937,-4.13191,-4.072414,-4.0118303,-3.9082341,-3.9023695,-3.8797345,-3.627986,-3.9678836,-4.216004,-4.143037,-4.028011,-3.9576368,-4.028593,-3.6299083,-3.7999673,-4.3764286,-4.1269174,-4.010202,-4.315432,-4.3840585,-4.4997873,-4.3413396,-4.2942295,-4.3098435,-3.7098422,-4.313471,-4.4225283,-4.4038024,-4.335297,-3.892312,-4.512798,-4.449308,-3.9065194,-4.3419538,-4.5734153,-4.496884,-4.374347,-4.313105,-3.774425,-4.533357,-4.464025,-4.4610844,-4.352945,-4.199581,-4.6925454,-4.4107327,-3.8524327,-4.3688393,-4.1339593,-4.375321,-4.3926363,-4.343823,-4.417246,-4.5528903,-4.3729396,-4.28475,-3.7918935,-4.5720534,-4.622774,-3.945835,-4.0378556,-4.559715,-4.669147,-4.650432,-4.6542377,-4.5304494,-4.4781833,-4.3901286,-3.5299997,-4.347168,-4.476998,-4.532499,-4.5385613,-4.538469,-4.442845,-4.3046603,-4.4197373,-4.4085736,-4.3532047,-4.31201,-4.15779,-4.0924807,-4.0736036,-4.275155,-4.2722926,-4.3700695,-4.1615205,-4.5695558,-3.812142,-4.554608,-4.464778,-4.4897156,-4.479412,-4.3213577,-4.1831975,-4.036901,-3.2398705,-4.6515317,-4.688069,-4.5857577,-4.371285,-4.530121,-4.5176873,-4.4070363,-4.0614295,-4.741157,-4.622999,-4.550944,-4.3290296,-4.6948752,-4.5964684,-4.7925143,-4.6083045,-4.475144,-4.4317656,-4.4583898,-4.654799,-4.375359,-4.207202,-4.2818666,-4.419769,-4.430992,-4.096436,-4.315084,-4.4204464,-3.764978,-4.6855917,-4.205347,-4.1755114,-4.409265,-4.1402383,-4.4025884,-4.247027,-3.998713,-3.0721226,-2.8579679,-3.7932653,-4.245341,-4.2537036,-3.6931572,-4.0406327,-3.8404784,-4.421276,-4.176043,-4.1960807,-3.9386868,-3.919845,-4.1867094,-3.8254094,-3.9825168,-3.6051068,-3.5992289,-3.5024972,-2.8274045,-3.9871097,-4.2946806,-4.2908034,-4.099904,-3.4114587,-3.5231724,-3.3468726,-3.1026106,-2.4171333,-2.2401369,-2.4790192,-2.7288754,-2.7407305,-1.8744438,-2.8411477,-3.3433518,-3.6793427,-3.7342925,-3.463967,-2.437465,-2.373873,-1.935184,-1.6879368,-1.6638098,-1.6189861,-1.7007909,-1.6554215,-1.5035224,-1.4675372,-1.7996502,-2.0563953,-2.170662,-1.9659653,-2.1805935,-2.338564,-2.3409889,-2.425273,-2.338071,-2.2396774,-2.074743,-2.5492067,-2.264852,-1.7017651,-2.4468296,-2.22681,-2.5034566,-2.3706234,-2.7029421,-2.9228053,-2.719818,-2.7994723,-2.9405754,-3.1078415,-3.2535641,-3.3527384,-3.357463,-3.122364,-2.8340611,-1.9270313,-2.9708233,-3.054246,-3.1792574,-3.1275692,-3.1036005,-2.949511,-2.998129,-2.8083215,-2.6332297,-2.5073252,-2.2871208,-2.3913262,-2.2525597,-1.7788045,-1.5265956,-1.8060918,-2.1749458,-2.682755,-2.9502378,-2.8150487,-2.9103909,-2.9137478,-2.9244704,-2.73827,-3.0192342,-2.934648,-3.3118134,-3.4576204,-3.3994584,-3.3733974,-3.3015783,-3.3907294,-3.3913922,-2.8844554,-3.0202324,-3.0863152,-2.619751,-2.3497071,-2.9429967,-2.7401164,-2.2103758,-1.3978872,-0.3026237,-0.20548159,-0.38345534,-0.5286452,-0.6627085,-0.6411945,-1.142575,-1.1521451,-1.3256674,-1.4972851,-1.28003,-0.64676684,-0.09464088,-0.27485275,-0.88280433,-1.3243275,-1.6548104,-1.7689924,-2.1285417,-2.1099112,-2.1484709,-2.4913487,-2.5569963,-2.6401935,-2.28436,-2.289423,-2.7184935,-2.782498,-2.598218,-2.6410036,-2.6947074,-2.568843,-1.9585359,-1.7060595,-2.2498446
+-1.4449241,-2.2724094,-2.868182,-2.4808893,-2.0718606,-1.300926,-0.6201093,-1.0218658,-1.8821101,-2.4144106,-2.620573,-2.7032034,-3.2092996,-3.0416005,-3.0395958,-3.1005073,-3.1242042,-3.281206,-3.3001595,-3.2927313,-3.181519,-3.1491816,-2.9956143,-3.5415947,-3.565137,-3.0591033,-3.3777018,-3.3806567,-3.3158717,-3.387985,-3.4248114,-3.0908518,-3.5728168,-3.884107,-3.7997522,-3.7333999,-3.8177857,-3.8054776,-3.5227957,-3.6008258,-3.7516322,-3.8556952,-3.5074143,-3.7525883,-3.6341345,-3.7212934,-3.8337035,-3.9150295,-3.8354402,-3.7172623,-3.5997856,-3.615302,-3.5618606,-2.9061348,-3.735928,-3.8294606,-3.5537572,-3.4729211,-3.3597445,-2.1276176,-3.5917664,-3.9766374,-3.766211,-3.7875876,-3.7171388,-2.5691934,-3.3051007,-3.778678,-3.9402604,-3.901277,-4.0079675,-2.8671894,-3.743083,-3.9588923,-4.035446,-4.010575,-3.8514585,-3.653284,-3.5863101,-3.3969505,-3.3791287,-3.451943,-3.5120401,-3.4282541,-3.3883905,-3.3187199,-3.31463,-3.2704408,-3.1049058,-3.189559,-3.65872,-2.9261632,-2.8384948,-3.9129148,-4.0331206,-2.9529815,-3.8642921,-3.1525502,-3.8797917,-4.0106263,-3.8102274,-4.034081,-4.0348954,-3.8269234,-2.9107144,-3.6814408,-3.9689279,-3.8206916,-3.195755,-3.8295388,-3.9997387,-3.8490553,-3.6296046,-3.6793718,-3.8037667,-3.6402955,-3.6914775,-3.6773782,-3.5582466,-3.2122226,-3.438519,-2.835967,-3.0173178,-3.6671693,-3.8424044,-3.9156756,-3.8961067,-3.9170632,-3.9096594,-3.7768917,-3.5906906,-2.4069164,-3.6051426,-4.025484,-3.96763,-3.7220001,-3.99481,-3.9579043,-4.0329747,-4.030035,-3.878593,-3.5567784,-3.4258094,-2.2962947,-3.5980067,-3.9167933,-3.8340988,-3.7781248,-3.7334294,-3.4855375,-3.547398,-3.5138068,-3.4210613,-3.4111338,-3.601841,-3.5834844,-3.5293932,-3.5439832,-3.5303583,-3.6185284,-3.6079512,-3.6564534,-3.6043735,-3.2578344,-3.7689705,-3.8424735,-3.7670035,-3.6932054,-3.614467,-3.5006855,-3.4550138,-2.5898044,-3.459169,-3.7715435,-3.6095073,-3.530181,-3.2165508,-3.7296805,-3.7802558,-2.8219543,-3.670858,-3.7607274,-3.6009922,-3.483081,-3.8265605,-3.912539,-3.7975187,-3.7863955,-3.7272916,-3.6144152,-3.6605244,-2.5499291,-3.8420377,-3.9174776,-3.88166,-3.9169192,-3.9656692,-3.8581944,-3.8409934,-3.801537,-3.5733833,-3.5211177,-3.4524157,-3.2078335,-3.2766945,-3.5277326,-3.800825,-3.8538656,-3.8278313,-2.589021,-3.4440129,-3.55841,-3.7328472,-3.8731842,-3.7736287,-3.801351,-3.8604603,-3.9157481,-3.7493815,-3.9944177,-3.858131,-3.8247075,-3.9335637,-3.9123645,-3.7945123,-3.6960683,-3.664145,-3.6861086,-2.51467,-3.97959,-3.9370914,-3.9636264,-3.9663272,-3.0864139,-3.4351194,-3.332193,-3.3679614,-3.3365893,-3.8467088,-3.969913,-3.754633,-3.7289553,-2.4162705,-3.9528418,-3.813025,-3.6587286,-3.6032436,-3.6483803,-3.369151,-3.7024465,-3.2546859,-3.8279066,-3.4349184,-3.1069412,-2.8014183,-2.1260657,-3.039787,-2.9117312,-2.3595462,-1.6916752,-1.2274289,-1.000891,-0.9374692,-1.0790966,-1.0134544,-0.8039759,-0.63656104,-0.9820172,-0.43019456,-0.6713593,0.11049551,0.5889415,-0.25814193,-0.002028823,0.09668851,0.05887282,-0.5650737,-0.8790296,-1.5068357,-2.1232538,-1.6692235,-1.5162213,-1.3804536,-1.19996,-1.1434617,-1.0187674,-0.59724027,0.091965705,-0.6103548,-0.8101354,-0.8644189,-0.75148576,-0.7581033,-0.61471796,-1.0848908,-1.126833,-2.5015302,-3.0853643,-2.4136481,-3.211968,-3.342383,-3.07203,-3.0375195,-2.996984,-3.049209,-2.493147,-2.3686085,-2.4065301,-1.8731937,-1.5440803,-1.2317414,-1.0602691,-1.218391,-1.0385725,-1.411236,-1.150712,-0.9787094,-1.1133142,-0.739042,-1.0125747,-1.3364105,-1.0404782,-1.0753076,-1.1972067,-0.7457635,-0.15213633,-0.37099773,0.032001346,0.9379585,0.8484562,0.090724975,-0.7941542,-1.6280999,-1.7501886,-2.130693,-2.3870227,-2.4675276,-2.2737892,-1.9632595,-1.7098598,-1.3821568,-1.3692656,-2.535026,-2.3850825,-2.2973347,-1.4553099,-1.2798877,-0.6068026,-0.40368015,-0.50689596,-0.82973546,-1.1405635,-0.5644575,-0.4256453,0.20331508,0.49381062,0.024406135,-0.3224646,0.2988904,0.502773,0.06262362,-0.10387069,-0.86098176,-1.571414,-2.1613195
+0.56818223,0.66916,-0.66054463,-1.7983108,-2.6724348,-3.1760955,-3.5057745,-3.4888568,-3.8836994,-3.7542205,-3.9217362,-3.7867475,-3.4665227,-3.460771,-3.2805505,-3.1098547,-2.4810596,-2.1752467,-2.230239,-2.1437442,-1.4168024,-1.3636019,-0.5670867,-0.61066085,-1.2502363,-1.5370264,-2.2008026,-2.497959,-2.3150961,-1.9780393,-1.3361635,-0.9710719,0.04379922,0.753822,0.9752105,0.8750539,0.52561706,-0.54887736,-0.90269655,-0.91536564,-0.992513,-1.5311499,-2.1996942,-2.4567323,-2.466526,-2.7952666,-3.112486,-3.279211,-3.5033753,-3.672423,-3.610705,-3.6152606,-3.6423316,-3.6232452,-2.9431357,-3.9659176,-3.8621469,-4.25396,-3.9171429,-3.7628155,-4.269974,-4.4438205,-4.351501,-4.099087,-4.6289186,-4.596519,-3.3344817,-4.313683,-4.5056257,-4.3098083,-4.5355744,-4.743712,-3.9285388,-4.327616,-4.3696847,-4.330707,-4.3888144,-4.249533,-4.253884,-3.8826685,-4.263594,-4.0225964,-4.546074,-4.438334,-4.581489,-4.308479,-4.440777,-3.6667888,-4.318122,-3.878275,-4.2151356,-4.740992,-3.679894,-4.4342165,-4.5921226,-4.335446,-4.553244,-4.3296857,-4.8567014,-4.9827733,-4.7307305,-4.759102,-4.762965,-4.6635876,-3.805984,-4.292086,-4.8594737,-4.912252,-4.250343,-4.5856643,-4.714277,-4.237248,-3.505977,-4.3995967,-4.8020396,-4.8460155,-4.1149774,-4.627424,-4.544267,-4.816968,-4.88343,-4.852822,-4.7890553,-4.7287,-4.635906,-4.078519,-4.471493,-3.6404333,-4.344005,-4.7096744,-4.9070992,-4.817433,-4.539255,-4.487806,-4.880959,-4.2260933,-4.7200437,-4.706247,-3.9694595,-4.249592,-4.8088226,-4.8232856,-4.55413,-3.8974018,-4.6654186,-4.6552367,-4.385353,-4.6525035,-4.867871,-4.442452,-4.4255233,-4.810328,-4.7022724,-4.2672324,-4.758734,-4.8863215,-4.8920555,-4.788611,-4.7308407,-4.484721,-3.1248755,-4.5479674,-4.912418,-4.100507,-4.795772,-4.8564997,-3.9660063,-4.779324,-4.867659,-4.345757,-3.7794528,-4.4397993,-4.6561728,-4.8177457,-4.765083,-4.6415143,-4.6718955,-4.5221562,-4.602319,-4.579142,-4.4585843,-4.578432,-4.5464473,-4.536635,-4.5797634,-4.5261827,-4.4635844,-4.450963,-4.497977,-4.517258,-3.9099145,-4.2727785,-4.510472,-4.559731,-4.486382,-3.938664,-4.376271,-4.368299,-4.175715,-4.519072,-4.311798,-4.369154,-4.7605586,-3.335318,-3.192596,-2.936126,-3.4388356,-3.588342,-3.6775985,-3.4017773,-3.042826,-2.586649,-2.9294274,-3.0959613,-2.8450048,-2.9720435,-3.7108598,-3.6535828,-3.3801188,-3.1606097,-3.0614614,-3.2745304,-3.5136914,-3.3065588,-2.8812582,-3.2724361,-3.098508,-3.3669524,-3.7130756,-2.5102131,-3.924045,-4.111959,-4.1714406,-3.8937984,-3.82793,-3.4551759,-3.3918457,-3.038445,-2.51326,-2.1883235,-1.9548764,-1.7531936,-1.8592699,-1.7346954,-1.1962686,-1.3261609,-1.352323,-1.738255,-1.9719753,-2.093442,-2.2834287,-2.4967241,-2.8604794,-3.1295214,-3.122459,-3.3040771,-3.3608272,-3.4300632,-3.5905113,-3.6204026,-3.7551446,-3.9623647,-4.089412,-3.9073853,-3.9560523,-3.9869933,-3.8965893,-3.9380136,-4.2022233,-4.190699,-3.9408326,-4.1450095,-4.0418124,-4.1007943,-4.1449304,-4.0893455,-3.9868298,-4.0395274,-3.7701044,-4.1813726,-4.0851502,-4.0632114,-4.08174,-4.0075645,-3.9043574,-3.8136287,-4.006061,-4.2623568,-4.09365,-4.131567,-4.0533175,-4.0889564,-4.0034685,-3.9950814,-3.9452295,-3.8914971,-3.9066806,-3.9594955,-3.9598203,-3.583921,-3.9893336,-4.160407,-4.1476426,-4.01535,-4.040144,-3.995603,-3.95362,-4.013443,-4.0608277,-3.9970536,-3.977241,-4.16121,-4.0533686,-4.0215697,-4.156435,-4.168125,-4.075521,-4.0379577,-4.067687,-4.010344,-4.0011997,-4.0301647,-4.121448,-3.9822655,-3.9709668,-4.0698442,-3.9494438,-3.8186808,-3.7950015,-3.7988625,-3.8133898,-3.9606385,-4.076256,-3.9398913,-3.6258693,-3.7623,-3.9129481,-3.9936395,-3.942915,-3.8813667,-3.9894037,-3.8908424,-4.0955844,-4.076056,-4.05669,-4.090551,-4.090466,-4.0262456,-3.783679,-4.1500254,-4.08024,-3.9176612,-3.8755379,-3.8411717,-3.7204518,-4.077952,-3.9938622,-3.9921107,-3.9223332,-3.8386617,-3.9506545,-3.979199,-3.9079156,-3.7405534,-3.6424878
+-0.3919943,-0.30060047,-0.19609565,-1.0720878,-1.8589299,-2.3707128,-2.7544045,-2.6958742,-2.4524152,-2.5533462,-2.9954875,-2.8959222,-2.2062528,-2.0330856,-1.7191081,-1.164788,-0.18132931,0.24322319,0.16850811,-0.05944711,-0.9434776,-1.6013036,-1.9268503,-1.9442334,-1.92103,-2.3099084,-2.622127,-2.5823584,-2.6590157,-2.8592372,-2.8289812,-3.0032158,-3.4841862,-3.5259678,-3.5353003,-3.510127,-3.5887537,-3.614512,-3.9773145,-3.917933,-3.9481006,-3.9711967,-3.9063978,-3.7726293,-3.8356075,-4.139911,-4.241943,-4.087544,-3.9727492,-4.1300073,-4.1696696,-3.9821358,-4.106116,-4.1561913,-3.856316,-4.289776,-4.1718383,-4.360334,-3.8390331,-4.1047363,-4.428598,-4.292683,-4.216553,-4.3631086,-4.3721766,-4.024244,-4.322374,-4.369081,-4.450772,-4.5700316,-4.484617,-4.3756866,-4.2810693,-4.414499,-4.247789,-4.236177,-4.135149,-4.175676,-4.250442,-4.160352,-4.2542205,-4.0744205,-4.3139634,-4.4441366,-4.344421,-4.356729,-4.4314356,-4.2002864,-4.236137,-4.077205,-4.3882127,-4.524639,-4.379686,-4.4936967,-4.3873935,-4.6013284,-4.2327847,-4.0373483,-4.480978,-4.4439898,-4.481317,-4.5900264,-4.5083847,-4.542526,-4.2362766,-4.5905194,-4.6080766,-4.501733,-4.450398,-4.5420785,-4.582175,-4.5647097,-4.173387,-4.5042653,-4.4715047,-4.5347047,-4.428512,-4.603229,-4.5122137,-4.529455,-4.5452876,-4.504412,-4.512731,-4.486123,-4.5459914,-4.586661,-4.3889313,-4.2475057,-4.4687266,-4.692068,-4.624436,-4.60024,-4.55287,-4.2114687,-4.506678,-4.2710032,-4.452339,-4.4486194,-4.484301,-4.585482,-4.650824,-4.5374117,-4.435154,-4.309837,-4.6917763,-4.6172996,-4.607264,-4.575418,-4.5456567,-4.4770193,-4.2944536,-4.698564,-4.50917,-4.5283217,-4.5352187,-4.466534,-4.5902095,-4.6222396,-4.578176,-4.5847354,-3.7803197,-4.410117,-4.588071,-4.2534957,-4.756165,-4.709212,-4.578987,-4.523991,-4.6279645,-4.5949802,-4.4027257,-4.438733,-4.7156377,-4.7405343,-4.5330405,-4.177131,-4.711746,-4.614279,-4.5471854,-4.3937,-4.414552,-4.4942403,-4.527577,-4.474666,-4.472242,-4.52827,-4.472715,-4.4987893,-4.5325866,-4.4806385,-4.240195,-4.4915648,-4.502417,-4.488934,-4.3411317,-4.225097,-4.6071095,-4.5324445,-4.235989,-4.6141,-4.385258,-4.530379,-4.7081194,-3.861446,-3.953755,-3.9109473,-4.6243243,-4.630143,-4.472519,-4.3234324,-3.9838119,-4.309137,-4.6284614,-4.4448485,-4.376066,-4.242621,-4.5132437,-4.6911926,-4.382114,-4.4484076,-4.2239623,-4.2351,-4.3705378,-4.121399,-3.980278,-4.257974,-4.2980323,-4.4464564,-4.262361,-3.5343623,-4.6204705,-4.635698,-4.4615183,-4.0726786,-4.269463,-4.0509357,-4.165355,-3.7898464,-3.2690747,-3.261853,-3.2351,-3.391382,-2.4175935,-2.3616843,-1.7028561,-2.4454377,-3.0298488,-2.9562953,-2.1682322,-2.0227683,-1.808126,-1.8338821,-1.8208468,-1.8520923,-1.9446366,-2.1013017,-2.1290224,-2.3036304,-2.5321386,-2.6831527,-2.7892423,-2.7346675,-2.9535582,-2.996077,-2.9791117,-2.9338338,-2.857325,-2.9063685,-2.9915571,-3.1906667,-2.926646,-3.0499666,-3.07015,-3.065331,-3.181952,-3.1743026,-3.24572,-3.394824,-3.1687005,-3.5686574,-3.6573682,-3.6579895,-3.6750197,-3.6547344,-3.622681,-3.3985398,-3.4953442,-3.450071,-3.6350303,-3.6218615,-3.5650513,-3.43732,-3.5468702,-3.501813,-3.277134,-3.241703,-3.2358952,-3.0746317,-3.1594071,-3.0829942,-3.2776086,-3.4221463,-3.407701,-3.4693398,-3.4313586,-3.5115862,-3.5802445,-3.464335,-3.5723262,-3.5493853,-3.6111333,-3.6239643,-3.6437747,-3.5473022,-3.6144123,-3.5898185,-3.6658065,-3.634798,-3.583106,-3.4496965,-3.556482,-3.396954,-3.2880814,-3.460009,-3.3967056,-3.148486,-3.3725467,-3.3280926,-3.259466,-3.230937,-2.7954397,-3.0744915,-3.0955172,-2.9922202,-3.16748,-3.2197542,-3.3290582,-3.4849348,-3.4490366,-3.4816902,-3.515512,-3.3215976,-3.207132,-3.3892078,-3.5371323,-3.4857347,-3.5162616,-3.658113,-3.318972,-3.526839,-3.4522772,-3.283246,-3.1425204,-3.127255,-3.0729928,-3.456936,-3.3610241,-3.4913359,-3.1214094,-3.2330146,-3.2158995,-3.3300428,-2.9149761,-2.7018638,-2.5470903
+-0.8067296,-2.4709744,-2.8853283,-2.3425028,-1.9178584,-1.4770632,-1.0035443,-0.8480019,-0.41297835,-0.21625453,-0.25245136,-1.1595385,-2.1677282,-2.8192458,-3.141305,-3.2793634,-3.479842,-3.4102693,-3.210749,-3.6227465,-3.7532372,-3.4903908,-3.55051,-3.6840744,-3.6236339,-3.483672,-3.4415665,-3.3051405,-3.2026923,-3.2545547,-3.4817624,-2.9866195,-3.7824044,-4.0562778,-3.9600377,-4.0397515,-4.19274,-3.8037052,-3.9185424,-4.023729,-3.945335,-3.9182734,-3.5020885,-3.7231135,-3.970542,-3.918064,-4.0449862,-4.0873017,-3.9161124,-3.919232,-3.8738704,-3.944778,-3.9148679,-3.913642,-3.947196,-3.8597236,-3.8780813,-3.663822,-3.9560118,-3.8696227,-3.5338223,-4.078754,-4.171544,-4.184664,-4.022489,-3.6700537,-3.3561294,-4.104149,-4.1312146,-4.3137236,-4.463248,-4.459181,-4.2916913,-4.3374896,-4.3217382,-4.234615,-4.1930985,-4.1754584,-4.14356,-4.213038,-4.188495,-4.107779,-3.6595922,-3.9694247,-4.059153,-4.1339355,-4.140574,-4.0958724,-4.0840898,-2.9882526,-4.370711,-4.451898,-4.212399,-4.4714627,-4.386384,-4.3424582,-4.210279,-4.172541,-4.489392,-4.2309575,-4.0114055,-4.5178466,-4.415978,-4.340037,-4.4526315,-3.9888506,-4.2838755,-3.819075,-4.2219033,-4.490967,-4.518854,-4.4239964,-4.263444,-4.003743,-4.382379,-4.256253,-4.199244,-4.2772574,-4.191237,-4.10037,-4.1419597,-4.119415,-3.9978538,-4.0060577,-4.034144,-3.9929605,-3.9390373,-3.8812585,-3.774365,-3.8226738,-3.831161,-3.769794,-3.7281275,-3.1583352,-4.0188637,-4.3983655,-4.3360887,-4.224689,-3.7332568,-4.415071,-4.387216,-4.30102,-4.3127866,-3.49926,-4.478682,-4.411257,-4.377746,-4.2499986,-4.1878285,-3.9781094,-3.7169447,-4.1737304,-4.0357904,-4.033712,-4.0898604,-4.00953,-3.905261,-3.8510423,-3.8146367,-3.794087,-3.78584,-3.6706007,-3.703218,-3.3409235,-4.050998,-4.0004363,-3.8271213,-3.9186535,-3.815404,-3.7922454,-3.4401026,-3.8526807,-4.156426,-4.019183,-3.7698708,-3.5075302,-4.148048,-3.8876085,-3.9632707,-3.7937503,-4.18885,-4.1361012,-3.9917636,-3.708033,-3.8234973,-3.9378963,-3.7935724,-3.6813684,-3.7207913,-3.6724095,-3.6995864,-3.4582458,-3.8997917,-3.9223256,-3.8690648,-3.939547,-4.0448856,-4.10883,-4.1355295,-3.9027705,-3.9454737,-3.8352094,-3.7970624,-3.7517133,-2.6656022,-4.0692797,-4.0830903,-3.9954152,-4.007193,-4.073579,-2.857676,-4.009026,-4.327844,-4.21767,-4.2262177,-4.325426,-3.9084754,-4.41897,-4.2327595,-4.224444,-4.2780027,-4.2744656,-4.2562656,-4.19278,-4.080038,-3.9292936,-3.9550214,-4.0493293,-4.098103,-2.838064,-4.3290114,-4.4823394,-4.501354,-4.382072,-4.188235,-3.8436494,-3.84835,-3.7789607,-3.3444319,-3.653595,-3.7368484,-3.9236927,-2.9587429,-2.7830782,-2.734394,-3.71242,-3.8471003,-3.8696342,-3.244596,-2.862081,-2.3024688,-1.8500316,-1.7115834,-1.7935376,-1.8675141,-1.3368499,-1.6935072,-1.7507129,-2.0640306,-2.3496647,-2.4325724,-2.5128517,-2.7832255,-2.8137205,-2.7697456,-2.876905,-2.775734,-2.6510248,-2.5144782,-2.7682147,-2.7305818,-2.3202858,-2.4457598,-1.9506445,-2.1429954,-2.4639263,-2.6258779,-2.7208576,-2.8334196,-3.181664,-3.2918248,-3.4099872,-3.5589342,-3.5105848,-3.4807086,-3.495902,-3.450213,-3.0990765,-3.4499652,-3.5214202,-3.499133,-3.5236974,-3.6008835,-3.666194,-3.5897405,-3.4190352,-3.2560146,-3.1422076,-2.659234,-2.8230212,-2.643842,-2.5650516,-2.6874678,-2.8732176,-3.0515428,-3.2287736,-3.5395453,-3.4199333,-3.4714663,-3.5446837,-3.438654,-3.521109,-3.5924296,-3.2940896,-3.6018639,-3.7167187,-3.7290926,-3.717008,-2.7627397,-3.4328227,-3.4140725,-3.4814773,-3.594387,-3.5740905,-3.2804844,-2.8537834,-3.110375,-3.1837883,-3.1181364,-3.0292807,-2.6407406,-2.7091022,-2.9016743,-2.8422477,-2.9241197,-2.604307,-2.7885032,-3.2111058,-3.3262625,-3.4914858,-3.4631047,-3.4650655,-3.057625,-3.2554007,-3.5432973,-3.5349035,-3.6341438,-3.3032632,-3.5212321,-3.5924473,-3.6010332,-3.4687417,-3.4085717,-3.4140491,-3.3464723,-3.2994933,-3.3443165,-3.5875525,-3.4555542,-3.265657,-3.3513978,-3.2774696,-2.8127866,-2.4654543,-2.3377156
+-0.30108398,-1.0357916,-0.71159583,-0.031326115,-0.6643065,-1.124928,-1.506568,-1.5522022,-1.0760891,-0.36684704,-1.0004272,-1.1917219,-0.20615762,0.4050082,0.54084784,0.6342568,0.8207459,0.7524748,0.26034433,-0.07304335,-0.6154407,-1.676712,-2.5175414,-2.7772818,-2.6543503,-2.4391568,-2.3241892,-2.2383556,-2.1767006,-2.2920394,-2.462923,-2.5397027,-3.0797637,-3.4956427,-3.6747227,-3.6944041,-3.64161,-3.2758713,-3.5842905,-3.6112957,-3.6497488,-3.6588264,-3.6429672,-3.3069224,-3.8152575,-3.7430282,-3.7582126,-3.8736014,-3.6008666,-3.6623483,-3.6551933,-3.6181965,-3.6819425,-3.665848,-3.4547935,-3.6990032,-3.2765644,-3.786901,-4.1379685,-3.9586258,-3.7944455,-4.0856814,-4.018763,-3.848578,-4.071484,-4.060287,-3.6205466,-4.1532416,-4.2044168,-4.331578,-4.3138766,-4.181254,-4.0446467,-4.243151,-4.24108,-4.223241,-4.153046,-3.9837384,-3.9119735,-3.953269,-3.9223971,-3.9706688,-3.8544884,-3.7980456,-3.8935409,-3.803235,-3.7633233,-3.7454233,-3.3917904,-3.7104492,-4.209703,-4.1297803,-3.829907,-4.2574983,-4.1902275,-3.9243994,-4.005815,-3.1845734,-4.386995,-4.485971,-4.3366737,-4.444573,-4.2508016,-4.1347327,-4.173654,-3.958798,-4.4599032,-4.203152,-4.34403,-4.3400173,-4.2674727,-4.176458,-3.9644384,-3.9836307,-4.3732104,-4.2108126,-3.923923,-4.378144,-3.9859242,-4.2717595,-4.238582,-4.1308265,-4.0068336,-3.9837642,-3.928854,-3.5087447,-4.1936135,-3.9390645,-4.187323,-4.2683415,-4.1501584,-4.0342813,-3.77489,-4.0519667,-4.4265075,-2.9968307,-4.30852,-4.4270053,-3.6923056,-4.45949,-4.4697895,-4.3985186,-4.4244905,-3.5592556,-4.4824576,-4.445134,-4.4234796,-4.3604054,-4.340213,-4.2692094,-4.153953,-4.34203,-4.310408,-4.2489524,-4.410849,-4.2416553,-4.080899,-4.049661,-4.040185,-4.0223927,-4.0216074,-3.779088,-4.194573,-3.7969441,-4.391915,-4.269034,-4.1589227,-4.236631,-4.1412168,-4.206596,-4.094156,-3.9674535,-4.130072,-4.2305913,-4.132004,-4.0733066,-4.3742843,-4.112082,-4.0945406,-4.169598,-4.058123,-3.9740953,-3.9371066,-3.8098645,-3.890039,-3.8817892,-3.9240885,-3.8254962,-3.795381,-3.8202505,-3.8117118,-3.8570151,-3.781269,-3.8758907,-3.7934966,-3.9092603,-4.0426145,-3.9126382,-3.5716033,-3.8313088,-4.1375737,-4.0880227,-4.2158074,-4.0619235,-3.3086915,-4.353226,-4.018578,-3.9715075,-3.9969234,-3.9539495,-3.7253485,-3.932386,-4.006415,-4.0399127,-4.0337253,-3.904902,-4.0855594,-4.149694,-3.7843552,-3.7840724,-3.7337651,-3.7207656,-3.9528785,-3.8708243,-3.5801818,-3.700059,-3.7160797,-3.904789,-3.9804206,-3.7250152,-4.4452233,-4.457828,-4.305892,-4.2911954,-4.0311584,-3.7673154,-3.5830822,-3.5231295,-3.086901,-2.521851,-2.3155107,-2.157606,-1.8207974,-1.3710098,-1.3083351,-1.4128714,-1.1109917,-1.1311162,-1.7188289,-1.9634702,-2.163382,-2.190741,-2.1916904,-2.5234573,-2.7157588,-2.694728,-2.88269,-2.8496647,-2.916474,-3.0078502,-3.0706425,-2.8038688,-3.1438775,-3.0509124,-2.94624,-2.9490664,-2.7986343,-2.8494081,-2.752573,-3.043041,-2.7630298,-2.9594913,-3.203421,-3.010493,-3.2019458,-3.3598223,-3.4032607,-3.3941698,-3.0951974,-3.3996882,-3.4046593,-3.3863292,-3.4630845,-3.4304972,-3.4089537,-3.3673632,-3.44368,-3.4994292,-3.605185,-3.5641034,-3.5366278,-3.5842857,-3.5663197,-3.594845,-3.5169868,-3.3979583,-3.326858,-3.367033,-3.036407,-3.048164,-3.170978,-3.2418733,-3.244936,-3.2156866,-3.2704563,-3.3891616,-3.5049634,-3.5340867,-3.568441,-3.5708447,-3.5218754,-3.689826,-3.6380982,-3.4635074,-3.7823339,-3.7836614,-3.7075915,-3.6865058,-3.1558394,-3.7121797,-3.6830556,-3.6832318,-3.5029502,-3.5677311,-3.4681869,-3.2326815,-3.4319518,-3.3793736,-3.2728229,-3.235942,-3.0825365,-2.988039,-2.9885266,-2.9141042,-3.0926776,-3.0294583,-3.1754596,-3.414091,-3.4200096,-3.5266871,-3.5369985,-3.4767256,-3.3674624,-3.461536,-3.5146089,-3.5439425,-3.570184,-3.6224434,-3.39391,-3.7171426,-3.6890001,-3.5176697,-3.4154632,-3.4533277,-3.3587751,-3.4550576,-3.4336805,-3.4446645,-3.2970579,-3.418546,-3.5406024,-3.600346,-3.5561023,-3.0982637,-3.0017107
diff --git a/example/output/CONUSv4f1_multi/SOILM_0-10_NOAH_CONUSv4f1_20160401_20170401_ep100.csv b/example/output/CONUSv4f1_multi/SOILM_0-10_NOAH_CONUSv4f1_20160401_20170401_ep100.csv
new file mode 100644
index 0000000..0fe7605
--- /dev/null
+++ b/example/output/CONUSv4f1_multi/SOILM_0-10_NOAH_CONUSv4f1_20160401_20170401_ep100.csv
@@ -0,0 +1,412 @@
+0.8601103,1.29952,1.5757018,1.9143287,2.504566,2.95404,2.693786,2.1248553,1.8181181,1.6943169,1.6244864,2.0121183,2.4766042,2.5244408,2.4321222,2.5299625,2.3076546,1.7110665,1.2953198,0.9356669,0.658551,0.60499704,0.7695982,1.0915314,0.82796776,0.8325728,0.6849265,0.5803772,0.45949486,0.39542687,0.24381481,0.06462523,0.0011634268,-0.003853146,-0.07329151,-0.1397569,-0.30534798,-0.4207282,-0.4240812,-0.4013003,-0.41251472,-0.41192466,-0.4531511,-0.52953434,-0.5576055,-0.5883378,-0.5768995,-0.56656045,-0.06695913,0.15659602,0.07509495,0.18341039,0.18792878,0.0035649203,-0.11408813,-0.14530905,0.0014818199,0.6450176,0.67387915,0.38135135,0.17159681,0.083168656,0.55578643,0.39700592,0.13068257,-0.058011618,-0.21306334,-0.31547105,-0.18224825,0.09009075,0.375373,0.51186323,0.3635326,0.33636162,0.6742828,0.650767,0.51427543,0.3274612,0.30012393,0.70330095,0.33206186,0.119100586,0.033268277,0.5456275,0.73229,0.5145075,0.19497645,0.01055285,-0.12888196,-0.24549045,-0.34023756,-0.36161456,-0.3802429,-0.3702104,-0.23383301,-0.078265,-0.117028445,0.04839531,0.54018784,0.6764035,0.5532619,0.33533216,0.21061806,0.105007485,0.034477483,-0.06324732,-0.09517893,0.17719351,0.3121727,0.42404702,0.22851472,0.044009004,-0.06130999,-0.13025464,-0.24593219,-0.34926662,-0.42685235,-0.50229746,-0.5701771,-0.6341958,-0.7052017,-0.7438427,-0.7549328,-0.47772554,-0.23965059,-0.36918566,-0.47507,-0.49495798,-0.2814753,0.087910265,0.017442662,-0.13590539,-0.26911995,-0.38985044,-0.49351725,-0.5849472,-0.6474879,-0.7004806,-0.75133103,-0.7914525,-0.82339907,-0.86091924,-0.81774366,-0.77839714,-0.79752195,-0.8377199,-0.86866534,-0.89421135,-0.9202729,-0.8651843,-0.8101501,-0.818501,-0.5007595,0.5815555,0.9247768,0.6607737,0.37641707,0.28917766,0.3263927,0.42688006,0.49532223,0.29089743,0.16542189,0.050413664,0.028179463,-0.0062621348,-0.08046545,-0.14446872,-0.19669546,0.15087143,0.63606966,0.9157962,0.792385,0.5583137,0.43905118,0.50393665,0.59466696,0.49550104,0.31412476,0.14571765,0.13318156,0.16881336,0.18340357,0.26719102,0.39258826,0.45767134,0.5989831,0.74075776,0.65952456,1.1160557,1.2897072,0.97804165,0.89409894,1.0209181,1.1431353,1.3909162,1.6620216,1.5883539,1.5413799,1.3930925,1.1996193,1.126515,1.2478776,1.1621279,1.1016483,1.1129434,1.0106561,1.0398738,1.1091567,1.210479,1.1360474,1.0191265,1.0047625,1.0844572,1.0430297,1.2438219,1.3964905,1.1328998,1.1863854,1.1645284,1.1907047,1.2600952,1.2419243,0.8910303,0.9015596,1.1217012,1.1557512,1.2278353,1.1645713,1.1655357,1.3623364,1.5483179,1.707675,1.9644076,2.1011724,2.1800787,2.5586305,2.863916,3.093975,3.2591312,3.370935,3.4893365,3.6007965,3.65946,3.704424,3.7852993,3.7255964,3.724101,3.8392577,3.9174037,4.00803,4.019475,4.0545716,3.9816146,3.951505,3.951657,3.999776,4.033402,4.050296,4.0750146,4.0903044,4.0654674,4.061613,4.078104,3.954543,3.983622,3.979969,4.009884,4.0393143,4.0593047,4.0413494,3.9855313,4.0467353,3.9676576,4.004999,4.038972,4.075153,4.0825653,4.086288,4.0687385,4.0644073,4.0150585,4.0425224,4.0156507,4.0280743,4.0767746,4.0968037,4.1248074,4.1023865,4.071848,4.050931,4.1249456,4.0631084,3.9874048,3.9187326,3.9396212,3.9575489,3.969297,3.9867182,4.0093756,3.9944386,4.0187826,3.9734259,3.951167,3.9397187,4.0121884,4.0808506,4.064741,4.11418,4.070813,4.028654,4.0864525,4.0544033,4.096835,4.213992,4.160374,4.0830936,4.0275455,3.9995346,3.971674,4.034783,3.9774675,3.961955,3.9120429,3.9556975,3.9344923,3.9186995,3.954184,3.9705272,4.0345387,4.0104737,4.026838,4.0657578,4.0440598,4.0133576,3.984146,4.048912,3.9449906,3.9854789,3.9626865,4.030178,3.984766,3.987661,4.074202,3.960713,4.0264115,4.0550284,4.049862,3.99094,3.9192772,3.907726,3.9031034,3.899591,3.942727,3.9706469,3.920617,3.90101,3.916931,3.898886,3.9187536,3.941808,3.986978,4.063358,3.757794,3.8533137
+0.90891206,0.9703711,1.0289665,1.6027672,1.568573,1.4235735,1.3336139,1.1921848,1.1669579,1.0995628,1.0865476,1.065582,1.5023842,2.6913257,2.066443,1.7128451,1.556292,1.4571458,1.3472431,1.278456,1.1560812,2.3231204,2.0312555,2.235894,1.8584164,1.604783,1.6809146,1.7240705,1.5345976,1.4181185,1.3213484,1.2418067,1.1269437,1.1712751,1.1275736,1.1084183,1.0528479,0.99446917,0.92478627,0.8922914,0.85839826,0.74748063,0.70088995,1.5486908,1.8111217,1.5561652,1.3967955,1.2949963,1.2643329,1.2236676,1.1185628,1.174435,1.287223,1.168361,1.1082988,1.0450287,0.97502625,0.91219115,0.8645434,0.8338995,0.7701108,0.6847366,0.8571949,0.93801206,0.80731064,0.7268886,0.5993171,0.53882587,0.4853211,0.56012386,0.78969944,1.029604,0.90168726,0.76455045,1.4055028,1.4963179,1.4143999,1.2756103,1.1919036,1.0953319,0.9877341,0.91175675,0.83632743,1.116858,1.4212811,1.2009999,1.0877764,0.97324896,0.89396983,0.8448755,0.7856214,0.7185776,0.6066289,0.51220375,0.4607066,0.35310265,0.23447464,0.2754869,0.5266109,0.96968603,1.620136,1.4047186,1.0881541,0.94167346,0.8643544,0.78375006,0.68193805,0.5873306,0.47178507,0.3382717,0.23540007,0.16437353,0.07886751,-0.02072547,-0.05871671,-0.13779593,-0.20033355,-0.24590676,-0.29900318,-0.3622807,-0.38858902,-0.39312235,-0.4170976,-0.48053706,-0.50236845,-0.5338281,-0.55377495,-0.5730636,-0.6316957,-0.46034694,-0.22499155,-0.22301856,-0.2898117,-0.3796178,-0.47524887,-0.533589,-0.55357873,-0.58755046,-0.61301214,-0.62871325,-0.6929195,-0.76014525,-0.75134563,-0.7605221,-0.7870848,-0.8336302,-0.89070433,-0.9366295,-0.9427929,-0.93313265,-0.93878776,-0.89834106,-0.8018995,-0.7423535,-0.6056676,-0.27169937,-0.28887907,-0.35630992,-0.36820397,-0.3273573,-0.44463706,-0.50614244,-0.5840968,-0.6242827,-0.6812874,-0.7568692,-0.79286665,-0.8279867,-0.86221564,-0.5896199,0.34605366,0.36658657,0.22224788,0.11792311,0.07214567,0.17056857,0.30368626,0.027637247,-0.03260159,-0.13674676,-0.18916228,-0.26842034,-0.33785868,-0.058318075,1.4204103,1.3674388,1.4642831,2.270781,2.0384107,2.2425528,2.099565,1.9194052,2.0286877,1.7265637,1.5763862,2.354958,2.6425753,2.6317906,2.590307,2.7496605,2.552268,2.0975761,2.2779222,2.0474055,1.8705838,1.8814398,1.9326735,1.9782498,2.458054,2.5097592,2.1819186,1.9877858,2.0053082,2.5139341,2.235983,2.0678487,1.9423933,1.8097696,2.0995407,2.375816,2.1275742,1.9204253,1.8272564,1.6956735,1.6865852,1.8227726,1.8289151,2.2641912,2.6927824,2.5265937,2.11688,2.008066,1.9822359,2.3229747,2.3461368,2.2452607,2.6683202,3.103692,3.2079039,2.5814748,2.4021344,2.6494899,2.2425275,2.5246174,2.2733607,2.1605206,2.1499004,2.5663557,2.4911132,2.4008946,2.1201785,2.5023036,2.9973016,2.969337,3.0494945,2.6562333,2.3392076,2.3743026,2.6319337,2.5286145,2.4807782,2.6879067,2.9063692,3.5563169,2.6618192,2.7225087,2.8912632,2.756165,2.6370554,2.7091575,3.318358,2.7451782,2.6214266,2.4877396,2.3107882,2.7613406,2.6416893,2.6737862,2.7409158,2.8022618,2.8023114,2.9368055,3.5726435,3.717688,3.513212,3.3630772,2.9286327,2.9689653,3.1106842,3.169775,3.274355,3.3628635,3.7634351,3.054625,2.8284514,2.9616182,2.9151528,2.8664446,2.800352,2.9406838,2.9243631,2.7488127,2.8635192,2.9423568,2.9371147,2.5915947,2.399579,2.3847032,2.741224,3.3818116,3.2908282,3.161194,2.5787847,2.8213878,3.2444925,2.8045588,2.3741262,2.2532601,2.2455125,2.348391,2.7605333,3.2804446,2.5275328,2.3352544,2.7411568,2.9230988,2.747527,2.3861964,2.179272,2.2500648,2.4065418,2.8746982,2.9502306,3.0845723,2.957955,2.9177995,3.0504317,3.3913927,3.178504,3.4483447,3.4086082,3.0122676,3.0815153,2.7019296,2.4983733,2.266329,2.2025983,2.6103964,2.9241302,2.4529822,2.2408478,2.6922693,2.227681,2.1627364,2.3059244,2.5156455,2.2700715,2.7466066,2.5837333,2.6443434,2.7213602,2.4588237,2.6078753,2.3250477,2.0131996
+0.5760481,0.50376666,0.47316688,0.5934663,0.67213583,0.54740864,0.29055583,0.20479393,0.25210553,0.31201544,0.36389926,0.2934653,0.27625683,1.1036332,1.147578,0.77870804,0.5742237,0.36683497,0.31892064,0.24525617,0.2318633,0.9458431,0.99783695,1.2365615,1.0144383,0.7918246,0.81420344,0.893426,0.744607,0.68646467,0.57488316,0.41096866,0.41033024,0.7689512,0.78634906,0.59246904,0.4669354,0.41428712,0.43182194,0.4153427,0.3435648,0.23636995,0.25927395,0.43667662,0.6070189,0.569435,0.49892217,0.39083824,0.52857053,0.64875865,0.56317973,0.53251004,0.62878734,0.6311026,0.48267412,0.42232144,0.39456597,0.38484997,0.3801312,0.3956727,0.36185426,0.30314943,0.26059744,0.24492376,0.1792187,0.10574156,0.025890123,-0.037067633,-0.08743134,-0.080672085,-0.07780601,-0.024341088,-0.0064320453,-0.014831934,0.6142758,0.6000922,0.70661163,0.603829,0.6454805,0.56585383,0.3878706,0.3925771,0.34314278,0.20706014,0.16186932,0.16602239,0.108200535,0.0738204,0.047324095,0.040383186,0.022719491,-0.0219961,-0.07789764,-0.08089319,-0.106058374,-0.104867965,-0.11134547,-0.114529535,0.58984876,1.0485194,0.72483313,0.6241793,0.39451885,0.36085546,0.27718768,0.21980493,0.19836117,0.14523496,0.072278365,-0.015039336,0.002875235,-0.046855148,-0.07051425,-0.087222606,-0.14568414,-0.16263464,-0.20471251,-0.2780225,-0.34118706,-0.3958816,-0.41525275,-0.40469664,-0.40730497,-0.38287318,-0.43644205,-0.49124503,-0.4829495,-0.48180303,-0.4906454,-0.46341497,-0.5120503,-0.5217528,-0.55608636,-0.62786996,-0.6592134,-0.6909985,-0.7184242,-0.7504175,-0.7816363,-0.81910163,-0.9177786,-0.9618686,-0.9583524,-0.9827916,-1.0321803,-1.0809526,-1.2096298,-1.3321414,-1.3270137,-1.334889,-1.3535123,-1.3784467,-1.3669565,-1.3622323,-1.350545,-1.3246578,-1.3420618,-1.3494377,-1.4372051,-1.3299642,-1.3290493,-1.3737893,-1.4544394,-1.4191592,-1.450621,-1.5224137,-1.5760559,-1.5910563,-1.6219709,-1.655716,-1.6456766,-1.580698,-1.6113966,-1.6348382,-1.5999036,-1.528473,-1.33271,-1.3937659,-1.3890582,-1.3728664,-1.4197974,-1.4755933,-1.5535147,-0.9980569,0.52692217,0.47916216,0.53764427,0.62466085,0.48181397,0.30258527,0.16105652,-0.01086298,-0.043369267,0.06286378,-0.11091009,0.4484106,1.7977006,1.7383032,1.9601865,1.7608112,1.7548065,1.3448439,1.247257,1.4172843,1.1980481,1.0404537,1.2749608,1.3221426,1.6442499,2.2160742,1.6570668,1.5861725,1.4641218,1.3282675,1.2035235,1.0618021,0.9941819,0.88336635,1.0187631,1.5943342,1.2839643,1.1520598,1.045762,0.95031524,0.87941825,0.9454184,0.97112346,1.3208561,1.6506591,1.702104,1.5105755,1.3086143,1.4293365,1.8665943,1.8333972,1.5541676,1.843725,1.5552716,1.7492847,1.471373,1.8130122,1.8175917,1.5765009,1.7321321,1.5764792,1.3950362,1.3424298,1.6450481,1.6854441,1.6334033,1.4887075,1.8125865,1.9267259,2.0663674,1.9045826,1.7354932,1.5340192,2.3306909,2.516647,1.8853787,1.597899,1.8421593,2.10434,2.17234,1.7105846,1.652942,2.0402203,1.6310302,1.4738266,1.7147875,1.8917483,1.5708238,1.4132457,1.33076,1.2245195,1.5893073,1.825625,1.8056124,1.8339012,2.0392528,2.30625,2.6308403,3.1451943,2.4260511,2.732695,2.1869924,1.6587676,1.7086751,1.8853729,2.0424438,2.166195,1.98863,2.149537,2.031704,1.6196375,1.8649117,1.9315066,1.6452317,1.4888008,1.5579133,1.4240015,1.2493042,1.2243263,1.1690185,1.0437212,0.93503505,0.9543348,0.9465952,1.5480536,1.940603,1.7947233,1.745615,1.9829574,1.8720206,2.2605622,2.0509331,1.67844,1.5259817,1.4321553,1.2375672,1.4250567,2.401997,1.9829354,1.9287565,1.942858,1.9677525,2.4929192,2.181334,1.8399777,1.7123983,1.8101376,1.9891646,2.2517638,1.9298757,1.6886334,1.6371102,1.7402661,2.0250146,2.072799,2.1989717,2.2203822,1.9556787,1.8770218,1.5482718,1.3668578,1.3511578,1.1902399,1.1584208,1.2651209,1.5412278,1.3872802,1.7990623,1.6636157,1.6078229,1.7043415,1.7157304,1.5424056,2.059599,1.9608907,1.7835952,1.9240024,1.6087348,1.9979725,1.6614043,1.4846377
+0.03434856,-0.29746455,-0.46058688,-0.42875797,-0.25041157,-0.4076718,-0.5815711,-0.639645,-0.5798187,-0.5232413,-0.60804737,-0.51508963,-0.23401688,1.1660869,0.8868376,0.53189707,0.1827782,-0.04014269,-0.15526164,-0.22284727,-0.28122523,0.08439648,0.3223637,0.3360544,0.23551165,0.2132874,0.4665652,0.3500922,0.15654413,0.11890426,-0.012691688,-0.20276138,-0.26464295,-0.18488441,-0.02851231,-0.04258735,-0.17210527,-0.28502727,-0.27037513,-0.28709584,-0.36831635,-0.44178975,-0.5151453,-0.54483694,-0.5840299,-0.5971038,-0.5766455,-0.6217193,-0.6169213,-0.16675878,0.025714267,0.026770864,-0.05406968,-0.14817916,-0.23960675,-0.3132358,-0.336557,-0.35600337,-0.4103154,-0.4529662,-0.511986,-0.56513834,-0.6323086,-0.6330924,-0.6740492,-0.758631,-0.77915275,-0.8267908,-0.8966652,-0.9393121,-0.9258833,-0.8550705,-0.83710796,-0.8873461,-0.82885194,-0.7301662,-0.58176786,-0.14987367,-0.084548175,-0.24020965,-0.363435,-0.44158614,-0.5152053,-0.5982959,-0.6017561,-0.6127679,-0.6797725,-0.7697596,-0.77246815,-0.81142604,-0.83749425,-0.86385834,-0.8927055,-0.933421,-0.9653422,-1.0082418,-1.0167671,-1.0383825,-0.5247411,0.20227128,-0.06576966,-0.24998328,-0.36297303,-0.439474,-0.5264568,-0.6085286,-0.6633325,-0.70121986,-0.7493994,-0.77854824,-0.8068948,-0.84598935,-0.8723851,-0.8881361,-0.93485755,-0.9702928,-0.9940155,-1.0372468,-1.0869231,-1.1807127,-1.2104287,-1.2477382,-1.2918718,-1.3303506,-1.3322972,-1.4120038,-1.4349461,-1.4471922,-1.5083394,-1.4968021,-1.4803607,-1.4987566,-1.5681546,-1.6400204,-1.6861186,-1.6908972,-1.7058207,-1.7532973,-1.7445409,-1.7972386,-1.8637831,-1.874835,-1.8765522,-1.9227161,-1.9484915,-1.9818622,-1.9654323,-2.009421,-2.0050695,-2.0191088,-2.0806494,-2.094338,-2.0290887,-2.01949,-2.0569623,-2.0041265,-1.9856414,-1.9732432,-2.0401137,-1.9654565,-2.0460477,-2.03898,-2.0781384,-2.0652099,-2.019103,-2.0673947,-2.0932817,-2.0946827,-2.1181884,-2.1622787,-2.0791416,-2.069194,-2.1024027,-2.0787897,-1.7780137,-1.4775784,-1.5118682,-1.6877999,-1.6577744,-1.6861649,-1.7507329,-1.7833283,-1.8183811,-1.3851231,-0.23193567,0.09159243,0.080205694,0.11755185,-0.012076635,-0.26109612,-0.41475028,-0.5363019,-0.6393719,-0.71229297,-0.7889602,0.18138784,1.6228878,1.468687,1.7622786,1.5165575,1.4354541,0.8962831,0.6601224,0.46640086,0.373461,0.32009074,0.8736631,1.0136517,1.2087444,1.3940303,0.86912775,0.8553561,1.3982939,1.3869057,1.0718734,0.7422378,0.5848876,0.4573495,0.38782656,1.0390049,0.7482168,0.52606225,0.4293866,0.36664116,0.2732103,0.45299956,0.60266954,0.5588283,1.3056624,0.9896352,1.076382,1.1090338,1.3985479,1.5311365,1.2105566,1.0679525,1.7006812,1.3551118,1.6723857,1.2856672,1.6526898,1.6702071,1.1746889,1.2694094,1.3660916,1.7343535,1.9875021,1.8362317,1.8061241,2.1807914,2.5352626,2.9121747,2.9765613,2.8372834,1.8963379,2.128866,2.4336812,2.8878088,2.3890295,1.687247,2.0200195,2.3768988,2.6160781,2.7609787,2.6164808,2.6364112,2.925385,2.3411136,2.6087246,2.8390412,2.9423013,3.0071301,3.108078,3.074035,3.1076102,3.036775,3.1519783,3.26832,3.3920496,3.357563,3.3979838,3.521919,3.6639771,3.0751927,3.1499743,2.4997063,2.3418827,2.5419104,2.7965403,2.9478784,3.0549605,2.9986467,3.1122756,2.576374,2.36965,2.5151281,2.4636362,2.3541312,2.4059548,2.6043553,2.8860571,2.9570928,3.075099,3.0619485,2.9471297,2.5637982,2.0065546,1.515538,2.0212207,1.9693632,1.6746855,2.0096893,1.8368034,1.6173456,1.9054382,1.4298314,1.347508,1.4770448,1.5495708,1.3118608,1.2126014,2.0103457,1.3321972,1.2718022,1.4615948,1.6144743,1.9401376,1.448243,1.4681087,1.8089778,2.2794094,2.5638702,2.7890341,2.9477963,3.1242986,3.2551365,3.3299687,3.3796403,3.452581,3.349314,3.3657293,3.1399226,2.9584022,1.8598969,1.2174257,0.872949,0.56313,0.36821425,0.5115521,0.79663634,0.43574655,1.1867728,1.1537977,1.2372975,1.4961693,1.1610548,1.0988281,1.8518143,1.3214998,1.3683269,1.4292581,1.0848272,1.0925126,0.9744092,0.8321593
+-0.024030749,-0.06391226,-0.13159391,-0.16959079,-0.22788778,-0.3310848,-0.40422434,-0.40685046,-0.42856738,-0.44974816,-0.47276655,-0.47961855,-0.4251153,0.5536489,0.662009,0.2290758,0.031856466,-0.08454046,-0.15520906,-0.21118969,-0.23803557,1.0148032,0.91425294,0.57689244,0.3153301,0.2405199,0.49568176,0.33011127,0.13102089,0.047682393,-0.023054447,-0.102874845,-0.1479366,-0.18242547,-0.017588567,0.08216268,0.028139938,0.14401926,-0.034564447,-0.15122947,-0.21291469,-0.2664803,-0.32049376,-0.3336981,-0.35799155,-0.38831598,-0.41799378,-0.46356812,-0.46726155,-0.42934334,0.09555867,0.37760133,0.114184365,0.22885571,0.14398906,-0.08594218,-0.16822655,-0.21436425,-0.264126,-0.31942067,-0.3844185,-0.4388407,-0.49085438,-0.52685326,-0.57728153,-0.6550281,-0.705575,-0.7348531,-0.7750738,-0.80375206,-0.7870791,-0.76288265,-0.7684154,-0.8024079,-0.7793707,-0.7575403,-0.5912537,0.0552412,0.13043217,-0.17950901,-0.2854426,-0.39424384,-0.4908564,-0.5532117,-0.57691467,-0.61907125,-0.70583755,-0.7982359,-0.8484088,-0.8851138,-0.94138336,-0.9974212,-1.0397446,-1.0848663,-1.1354536,-1.1952089,-1.2214017,-1.251143,-1.2946968,-1.3338423,-1.3309371,-1.311362,-1.3172684,-1.3271589,-1.3929083,-1.451221,-1.4902582,-1.497236,-1.5130805,-1.5346912,-1.5438178,-1.5501857,-1.5545108,-1.5997046,-1.6308157,-1.6503048,-1.6929948,-1.7366672,-1.7720616,-1.8697854,-1.878329,-1.8925018,-1.9197592,-1.9541339,-1.9717753,-2.00465,-1.9751202,-2.0098984,-2.0173244,-2.0297933,-2.0090082,-2.032449,-2.067072,-2.0838332,-2.1007457,-2.10738,-2.1092188,-2.152709,-2.1534865,-2.1884704,-2.231811,-2.238491,-2.2454119,-2.3500905,-2.3210568,-2.3488522,-2.357995,-2.3594515,-2.3448648,-2.3544073,-2.4265203,-2.440608,-2.3885815,-2.398463,-2.4405146,-2.419814,-2.3792248,-2.3901389,-2.432385,-2.3575168,-2.3979018,-2.3573828,-2.380506,-2.382331,-2.3579283,-2.3847017,-2.3796616,-2.4188125,-2.4235024,-2.434958,-2.401228,-2.3982117,-2.4022217,-2.424779,-2.3203802,-2.3654573,-2.3927286,-2.4102008,-2.3228972,-2.3066232,-2.3219252,-2.33106,-2.316769,-2.2769575,-1.547003,-0.6207868,-0.46928585,-0.61765647,-0.8255227,-1.0219566,-1.1131239,-1.1818763,-1.2620875,-1.3018484,-1.356597,-1.329395,0.8748728,1.224062,1.294941,1.3560159,1.1561767,0.7295555,0.43918628,0.2782471,0.16471788,0.10626453,1.0643531,1.1326576,1.1799837,1.5735633,1.0950565,1.2059677,1.7254645,1.3801531,1.4129114,0.96012276,0.73368543,0.54467094,0.42924672,0.9286587,0.76123625,0.5558958,0.45285285,0.34423643,0.2557865,0.6948929,0.63255095,0.44258967,0.83298016,0.9216301,0.7701813,0.773015,1.3189776,1.423972,1.05639,0.8824873,1.3854734,1.1550049,1.3664174,1.5248559,1.5646428,1.4141,1.0212057,1.1291326,0.9216571,1.0212315,0.93457574,0.63281137,0.58670473,0.8583894,1.2399672,1.8118309,1.7444811,2.0185647,1.189242,1.1309285,1.2104211,1.8272383,2.2451982,1.2700672,1.236593,1.5070896,1.632826,1.4859084,1.0856518,0.91436213,1.5064266,1.2899101,1.4746099,1.8646711,2.1458845,2.288217,2.2147708,1.9210628,1.8104335,1.8038116,2.2018075,2.7250056,2.9697435,2.573387,3.0749764,3.5437298,3.0390472,2.271496,2.6242578,1.8526571,1.5330298,1.636065,1.8665811,2.0702858,1.9959764,1.762191,2.1775076,1.9830513,1.9421678,1.9464916,1.9014771,1.8866699,1.8281004,1.9444236,2.1898084,2.1953697,2.1863174,2.0974197,1.826107,1.3495908,0.92048407,1.1807342,1.8022952,1.6306324,1.31422,1.672664,2.1677115,1.8286781,2.2231543,1.520863,1.1448703,1.0703275,0.8383308,0.5917735,0.5361268,1.8085818,1.5658008,1.5600256,1.3598834,1.7082244,1.9897707,1.3757107,1.3081194,1.4475579,1.708544,1.8515034,2.1756809,2.2499678,2.3078349,2.1575496,1.6574099,1.3770583,1.4471568,1.6851598,1.9145346,1.7331687,1.2498386,0.7094543,0.46648073,0.31094107,0.19538598,0.11105037,0.21036376,0.50721705,0.32098788,0.64546806,0.9842484,0.96681404,1.6359198,1.4249903,0.9879105,1.7564234,1.1880757,1.068723,1.1707127,0.76898694,0.52681345,0.7940372,0.5114584
+0.4313634,0.38050818,0.5399201,0.64518166,0.96031547,1.023371,0.9772017,0.7000991,0.65587026,0.71529144,0.636873,0.894165,1.0056323,1.0719677,0.9422417,0.88551164,0.8706865,0.6062251,0.22009788,-0.033542898,-0.09789334,0.022643153,0.112323776,0.11931901,0.238645,0.34424004,0.43884394,0.3356382,0.24940987,0.173078,0.046475146,-0.10611023,-0.21455799,-0.26435283,-0.28209314,-0.34657228,-0.45724693,-0.50764143,-0.4178999,-0.40299332,-0.40036893,-0.4004707,-0.40885913,-0.49184495,-0.5510882,-0.59992343,-0.6435342,-0.6532876,-0.49977887,-0.3978222,-0.25601947,-0.27024445,-0.18080051,-0.24004301,-0.3408441,-0.40899467,-0.2955731,0.14275557,0.1639651,-0.02230559,-0.1162024,-0.2038003,-0.13802883,-0.18701503,-0.32669252,-0.47782755,-0.6001158,-0.6720856,-0.6619909,-0.5708148,-0.48322594,-0.26949522,-0.29972833,-0.18444555,0.021253366,0.047240723,-0.0051165037,-0.12350075,-0.07261908,0.44642898,0.11076029,-0.14027506,-0.27381283,0.065896675,0.13400471,-0.050070476,-0.17924526,-0.31116012,-0.44976035,-0.5321767,-0.6133134,-0.6425073,-0.6815351,-0.72378737,-0.616928,-0.5145777,-0.50618404,-0.3082175,-0.029475044,0.22155319,0.078551576,-0.15061039,-0.26782376,-0.37668264,-0.43035477,-0.2801237,-0.060474616,0.25088388,0.100837424,0.20454277,0.024730954,-0.1475502,-0.27374685,-0.38243946,-0.47292778,-0.5285096,-0.60628116,-0.64217776,-0.6856699,-0.73585856,-0.7857567,-0.81484795,-0.8039323,-0.4496699,-0.25579947,-0.39738035,-0.49998426,-0.58349997,-0.6021542,-0.5651911,-0.5269666,-0.53821844,-0.6265084,-0.6889109,-0.73408616,-0.7876874,-0.8127039,-0.83720595,-0.8605312,-0.88658506,-0.90084636,-0.92434025,-0.93047816,-0.8575288,-0.85850644,-0.8808292,-0.9145509,-0.92858195,-0.95417273,-0.9411604,-0.84575564,-0.86352223,-0.85384774,-0.42656502,0.2691756,0.20099676,0.069545105,0.030974496,-0.015054818,-0.051180374,-0.11520554,-0.12179294,-0.24848104,-0.3085182,-0.29560763,-0.315482,-0.40213472,-0.4670704,-0.5086032,0.050049562,0.48570913,0.54747546,0.41537434,0.29298645,0.23556696,0.2870766,0.32339162,0.19698732,0.07712066,-0.03091314,-0.03352737,-0.005213525,-0.040381145,0.041312996,0.11501317,0.16288999,0.24945788,0.32167363,0.275388,1.0009671,1.2756357,0.88259757,0.7846105,0.91564196,1.030525,1.3276389,1.7028527,1.5283589,1.4783213,1.1708102,0.92821187,0.88386345,1.0290821,0.97024894,0.98588884,1.0637739,0.95501375,0.8955914,1.0304278,1.1118279,0.942449,0.9631504,1.0243937,1.1808677,1.0789391,1.1963286,1.1571685,0.93465906,1.1181759,1.0660686,1.0040106,0.8007499,0.94019544,0.76357377,0.70115626,0.9497049,0.90744007,0.96647024,1.1207914,1.2190145,1.4772669,1.7732377,2.0074036,2.249645,2.1824932,2.3973355,2.8026705,3.1346884,3.271045,3.3912086,3.3264647,3.3271413,3.4289834,3.4960282,3.5269575,3.5301847,3.5440397,3.5951953,3.7556696,3.87384,3.9159036,3.9499304,4.029887,4.0052013,3.9899302,3.9889817,3.9656196,3.9785943,3.990241,3.9979696,4.0082684,4.005618,3.934313,3.9437559,3.910993,3.945874,3.9951787,4.0122156,3.983861,4.0129666,3.971881,3.9406018,3.9820366,3.9482288,3.9374034,4.036789,4.0627694,4.0091867,4.009561,3.9945135,4.0040045,4.0093575,4.0366096,3.9859266,3.9848328,3.9912434,3.9725218,3.9911895,3.9816875,3.9684343,3.9554896,3.978661,4.110074,3.9426184,3.9351478,3.970748,3.9794598,3.9660807,3.9831538,3.9605665,3.932705,3.934846,3.9114172,3.872131,3.8835714,3.9259167,3.9422462,3.947924,4.0039988,4.0147343,3.9751296,4.0312223,4.02431,4.0087233,4.1772356,3.9931712,3.867869,3.9096594,3.906218,3.8965182,4.0093064,3.990964,3.8090022,3.8889644,3.8993492,3.9013014,3.898333,3.904352,3.9348311,3.949741,3.9391427,3.9582403,3.9794364,3.9557323,3.8825104,3.9098525,3.854257,3.8266954,3.9169278,3.8747473,3.9370108,3.910079,3.9305713,3.8490806,3.86858,3.850107,3.8755913,3.855666,3.8573775,3.7434802,3.800393,3.8012064,3.7355285,3.8487713,3.8914616,3.8330975,3.784646,3.8064833,3.7467198,3.7707539,3.802126,3.7682564,3.8625894,3.687443,3.7324243
+-0.046365976,-0.20210716,-0.2493736,0.76196086,0.954687,0.6076958,0.18383388,-0.05768926,-0.16850956,-0.1758564,-0.15344788,-0.1620074,0.551432,1.3791202,1.4652121,1.1019677,0.6408961,0.25494736,0.033643637,-0.08767828,-0.14190799,-0.11309342,0.29459345,1.1499972,1.0765686,0.86010236,0.7811885,0.690248,0.625474,0.6654583,0.4174708,0.18957108,-0.014597531,0.33648694,0.4865049,0.3217265,0.1419631,0.2607069,0.29896885,0.14129494,0.00070990995,-0.144491,-0.24251117,-0.26209065,0.3380755,0.70391285,0.31718,0.089521274,0.40603128,0.6571881,0.97157776,0.95383734,0.78595364,0.47980106,0.29171512,0.1314671,0.2813975,0.32839745,0.14074834,0.04339819,-0.066904426,-0.19663168,-0.24593993,-0.24772425,-0.4075357,-0.48118258,-0.53933936,-0.605879,-0.5941015,-0.6203455,-0.5859369,-0.122632354,-0.07134119,-0.24532358,0.31713423,0.45721257,0.43666682,0.35472432,0.50029135,0.34236264,0.07760438,-0.043400135,-0.15471102,-0.19790138,0.12167452,0.08232568,-0.10657859,-0.24233072,-0.3150031,-0.35432416,-0.3716136,-0.41889247,-0.4635607,-0.50081795,-0.51789105,-0.54761326,-0.57818866,-0.5929863,-0.31357372,0.41570577,0.5166639,0.2683054,0.0019844659,-0.09726407,-0.19933213,-0.25854674,-0.3036645,-0.3419083,-0.4107141,-0.45949912,-0.49159706,-0.5524801,-0.5619346,-0.5679935,-0.61214995,-0.6539928,-0.67266405,-0.68489677,-0.71934366,-0.7618654,-0.7939875,-0.81798863,-0.8287244,-0.831048,-0.8027631,-0.834399,-0.87737685,-0.8961213,-0.92400074,-0.86535764,-0.76884055,-0.6712112,-0.7547759,-0.8361964,-0.8918576,-0.93173677,-0.9574737,-0.97498095,-0.99883354,-1.0129464,-1.0487134,-1.0911926,-1.1355631,-1.1545827,-1.1506543,-1.1508312,-1.168853,-1.1989877,-1.2397103,-1.232987,-1.2282562,-1.2331381,-1.2109231,-1.2014494,-1.0896196,-0.9883263,-1.0045115,-1.042315,-0.88083863,-0.2761916,-0.46242663,-0.5933506,-0.7093669,-0.80017245,-0.83851624,-0.86865824,-0.91543025,-0.94809234,-0.9881908,-0.9484615,0.56572163,0.23229046,-0.044092696,-0.16064513,0.1953286,0.36597,0.31954575,0.013301317,-0.16905601,-0.26406017,-0.3581045,-0.44583255,-0.5128866,-0.3206862,0.25340572,0.2370127,0.90684575,1.5320874,1.4078529,1.6270666,1.0834463,0.8630541,1.2087305,0.9379725,0.7993529,1.3496875,1.7775756,1.8320403,1.7379832,1.7498509,1.6076018,1.2243613,1.6665726,1.5503964,1.156566,0.9905822,0.90766686,1.0851318,1.4044654,1.5615737,1.0711939,1.155805,1.125201,1.5142791,1.2264789,1.0231495,0.7759141,0.5796762,0.7657002,1.3370633,0.9049678,0.62754416,0.5342565,0.49290216,0.37468392,0.8035243,0.9388847,1.4954549,1.9296114,1.5246148,1.384697,1.3841556,1.4717898,1.5630122,1.5695487,1.3708675,1.7991256,1.9630731,1.9550109,1.5558932,1.6441312,2.0072703,1.8020849,2.000849,1.9924054,2.1204965,2.3585927,2.5044518,2.2717564,2.4104095,2.5242445,2.6899958,3.2389975,3.376543,3.32796,3.0123334,3.0488298,3.084487,3.3668895,3.2977018,3.4210112,3.4658248,3.4394534,3.834175,3.434851,3.5059302,3.5748253,3.4567404,3.4686263,3.5242748,3.881079,3.447835,3.6140196,3.5590801,3.4250379,3.50595,3.400433,3.497029,3.5033507,3.5868914,3.6114898,3.5925186,3.8841894,4.0114512,3.90298,3.8584404,3.824506,3.8333309,3.8413472,3.8548214,3.8590152,3.823504,4.0815873,3.6549006,3.5953186,3.6447215,3.636648,3.6232412,3.652404,3.7046764,3.7340174,3.6633925,3.6482344,3.6529365,3.680374,3.6027095,3.5564332,3.6081996,3.601037,3.9423594,3.752792,3.5358348,3.2578924,3.6547213,3.694065,3.1528594,2.87599,3.0552301,3.0657296,3.1439838,3.21404,3.556383,2.9704895,3.0347095,3.0494533,3.3163695,3.2918396,3.0487921,3.0743394,3.2563045,3.3070064,3.2794964,3.3121102,3.4563258,3.4284523,3.476005,3.5307734,3.6618097,3.5538487,3.7714558,3.8548849,3.9595556,3.7241545,3.237512,3.0520186,3.064837,3.0428648,3.2059574,2.7819347,2.373682,2.3601317,2.96567,2.486859,2.6937656,2.7668493,2.8638577,2.814948,3.3710847,3.2851555,3.1538658,3.3374612,3.1747117,3.493619,2.919113,2.6489637
+0.11422409,-0.38030148,-0.76747096,-0.5823277,-0.36708775,-0.5765318,-0.9340627,-1.1120892,-1.1897227,-1.2628572,-1.2510929,-1.1302025,-0.6528845,0.18388729,0.31231114,0.29315296,-0.08087745,-0.48301548,-0.71657,-0.84862137,-0.9275665,-0.86780584,-0.5231986,-0.12295969,3.0275434e-05,0.046976794,0.043899503,-0.006741669,0.011410791,-0.048706513,-0.22537196,-0.49035534,-0.7927643,-0.8268265,-0.745571,-0.64512014,-0.76578075,-0.882856,-0.8698915,-0.82465476,-0.862895,-0.9375786,-1.0702722,-1.0635159,-0.91403353,-0.7558779,-0.8477006,-0.940148,-0.8439433,-0.65379596,-0.43029314,-0.2660922,-0.28588814,-0.37396955,-0.54575336,-0.68755203,-0.73446095,-0.74778765,-0.80678713,-0.90488327,-0.98936117,-1.0591605,-1.1756139,-1.3324444,-1.4367692,-1.5184939,-1.1431826,-0.8913659,-0.8756336,-1.0069468,-1.0623586,-1.0439227,-1.0520223,-1.071532,-1.0367211,-0.9326355,-0.82216763,-0.66015625,-0.08575955,-0.2802032,-0.5562175,-0.7697774,-0.8691911,-0.9383445,-0.98715246,-0.9883028,-1.0706484,-1.1896586,-1.291178,-1.3740182,-1.4371691,-1.4898791,-1.4694269,-1.6225004,-1.6617792,-1.6501722,-1.66795,-1.6867356,-1.575047,-1.107249,-0.6452509,-0.60595965,-0.820999,-1.01353,-1.1489762,-1.2500422,-1.2976112,-1.3296256,-1.3558614,-1.4254972,-1.467948,-1.53477,-1.5771518,-1.6262648,-1.6653025,-1.7193308,-1.7569964,-1.8039362,-1.8454037,-1.8860778,-1.9374985,-1.9951975,-2.022187,-2.0230105,-2.053543,-2.068955,-2.0450943,-1.971966,-2.0253983,-2.0217543,-2.050724,-2.0682273,-2.1134,-2.1468322,-2.2124977,-2.2409492,-2.2757761,-2.3029077,-2.3301888,-2.3417315,-2.356653,-2.3607547,-2.393961,-2.4447742,-2.476,-2.4633884,-2.4735484,-2.4532118,-2.4698682,-2.5197585,-2.5599322,-2.6165535,-2.5850224,-2.585556,-2.615788,-2.5725923,-2.5188723,-2.4820967,-2.3751383,-2.2158563,-2.29434,-2.3812945,-2.396089,-2.4207978,-2.4437861,-2.4172878,-2.3686144,-2.399732,-2.419804,-2.500224,-2.501278,-2.4878695,-2.5026453,-2.4211938,-1.8774257,-1.1720953,-0.94527286,-1.1969444,-1.2811416,-1.3650746,-1.4515059,-1.5280423,-1.6519637,-1.6625168,-1.4802895,-1.1534882,-0.6590323,0.012740079,0.040613193,-0.1792526,-0.3461687,-0.5501279,-0.45920336,-0.33542743,-0.5490471,-0.2342693,0.9192021,1.0294642,1.2941859,1.0960557,1.1384561,0.91868395,0.8628366,0.6043869,0.48397052,0.42806786,0.40905708,0.43920678,0.83676314,0.9986274,0.61663204,0.8735696,0.984308,0.8600685,0.78020626,0.7167644,0.6263941,0.4866687,0.44948924,0.69294876,0.58925706,0.30131176,0.23051448,0.16521819,0.14290604,0.04463717,0.08360848,0.5334735,1.2337773,0.88796973,1.2374372,1.5800476,1.909248,1.8912871,1.8423028,2.0101266,2.5400844,2.7524648,2.9595037,3.0704994,3.1784406,3.3173187,3.308045,3.4602184,3.5528016,3.644993,3.6336503,3.81163,3.8781505,3.9363027,3.9881902,4.019615,4.317681,4.100608,3.9362104,3.998147,4.008088,4.2330995,4.5375338,4.031268,4.073883,4.10999,4.07509,4.2176757,4.1145525,4.1218343,4.4308496,4.1896496,4.1587214,4.122596,4.1625633,4.125688,4.1020203,4.156195,4.178178,4.104622,4.127797,4.169446,4.183055,4.1846957,4.1002665,4.1271644,4.271504,4.272785,4.245246,4.1765094,4.139716,4.173068,4.177448,4.1454573,4.1431227,4.1495214,4.346816,4.1339655,4.076182,4.1100264,4.089284,4.159625,4.1539974,4.1830783,4.232052,4.142007,4.1171517,4.1051817,4.2076755,4.240579,4.219039,4.18954,4.1439586,4.1166973,3.8639083,3.7905376,4.029083,4.120549,4.0134006,3.524223,3.6128502,3.8229625,3.925724,3.9022384,3.938161,3.869514,3.5325255,3.6951072,3.7972429,3.9046323,3.968618,3.9786053,4.0478826,4.031356,4.087392,4.0673513,4.0610595,4.0235534,3.990036,4.0202913,4.0129614,4.0359664,4.0199003,4.0571027,4.0458555,4.13589,4.1720915,3.8824568,3.7428548,3.754209,3.6206498,3.6637464,3.3744457,2.9662695,2.912201,3.062653,2.7904873,2.7468796,2.664003,2.6330776,2.7255359,3.0570395,3.0417705,3.1841536,3.3693793,3.5771472,3.62642,3.6340942,3.481246
+0.06382027,-0.31850305,-0.61189526,-0.63155526,-0.6605804,-0.6878061,-0.8065397,-0.8937498,-0.9526619,-0.9550296,-0.6616184,0.25068927,0.019865777,0.18391187,0.15360291,0.033682365,-0.15285689,-0.32866526,-0.46667278,-0.58090085,-0.68316674,-0.12680109,0.16199236,0.1821623,0.12545626,0.16264467,0.17650117,0.26041356,0.17638996,0.07857497,-0.03891968,-0.21113725,-0.37635761,-0.5069174,-0.4813447,-0.13284525,0.3369172,0.093819454,-0.09924333,-0.20475751,-0.30242926,-0.46527863,-0.6172841,-0.606318,-0.33220786,-0.39329824,-0.520545,-0.62972015,-0.6934444,-0.44704682,-0.14772397,0.021123324,0.123343915,0.054011,-0.072915874,-0.20696367,-0.32826126,-0.4177451,-0.51588535,-0.63966924,-0.73586285,-0.83052176,-0.9340912,-1.0098453,-1.0832849,-1.1491251,-1.1832895,-1.2196534,-1.2899987,-1.381218,-1.4526846,-1.4680694,-1.4486051,-1.4521415,-1.4995207,-1.3899715,-0.5859903,-0.26696706,0.49265164,0.023343105,-0.20434177,-0.37926945,-0.5049661,-0.6212585,-0.69549257,-0.75402343,-0.8225417,-0.9121175,-1.0006943,-1.079565,-1.158181,-1.231604,-1.2893136,-1.3793011,-1.4556417,-1.5300864,-1.5779815,-1.637054,-1.6223501,-1.5523034,-1.4709166,-1.5809517,-1.6083815,-1.6734583,-1.7269901,-1.7758821,-1.834825,-1.857483,-1.9045844,-1.9534416,-1.9904251,-2.0181844,-2.0597053,-2.083476,-2.073921,-2.08602,-2.1356611,-2.1592934,-2.1768703,-2.1791368,-2.2064724,-2.2283127,-2.2343564,-2.2401226,-2.2678323,-2.2671676,-2.224814,-2.2379532,-2.2667994,-2.2887206,-2.3133576,-2.3359554,-2.3328006,-2.3401346,-2.3556242,-2.3758292,-2.3861005,-2.3995967,-2.4074469,-2.411612,-2.417553,-2.4370515,-2.450997,-2.494134,-2.510346,-2.52635,-2.5405605,-2.5213323,-2.5143957,-2.5446386,-2.603806,-2.6300569,-2.6235423,-2.6293812,-2.6318505,-2.6334836,-2.6131787,-2.6195564,-2.6107538,-2.6273267,-2.634887,-2.663111,-2.6446486,-2.6445827,-2.6501818,-2.655449,-2.5945067,-2.6358862,-2.6368418,-2.6881657,-2.6908808,-2.6979084,-2.6896265,-2.688599,-2.5113225,-2.47642,-2.4587677,-2.4911177,-2.462142,-2.4757738,-2.5079677,-2.5227308,-2.5335941,-2.511865,-2.2710369,-1.6740296,-1.4294791,-1.4958024,-1.5280663,-1.6002254,-1.6339595,-1.6677532,-1.7308228,-1.7495384,-1.7900611,-1.804225,-0.10161467,0.67242205,0.8894353,0.8539353,0.7263562,0.443953,0.21607725,-0.048554715,-0.12634079,-0.18249866,0.08801812,0.8168149,0.7351118,0.89323705,0.71409655,0.795498,1.0217044,0.8604801,0.5823359,0.37243217,0.1832717,0.019845936,-0.066104695,0.07319063,0.01344553,-0.09402844,-0.19523631,-0.26699558,-0.3228565,-0.31117105,-0.336204,-0.38002804,0.15017754,0.27770114,0.37887743,0.56066453,0.7535355,0.792355,0.50402784,0.62156653,1.191414,1.528828,1.8714558,1.9936817,2.0997252,1.9413106,2.1524768,2.4275515,2.48461,2.7364342,2.80071,2.7549021,3.004666,3.0432706,3.2277536,3.395421,3.50675,3.3950033,3.1146872,3.2799315,3.438085,3.5953321,3.3433814,2.9201698,3.3128638,3.5471497,3.6115966,3.6766684,3.7381349,3.85221,3.905735,3.8913875,3.9423406,3.9625216,3.9352539,3.988082,4.0736723,4.040942,4.1350107,3.969324,3.9274988,4.044779,4.154965,4.2638783,4.211218,4.1824627,4.390671,4.3324966,4.3411407,4.178982,4.2128315,4.2961035,4.280985,4.2602177,4.247198,4.204766,4.276264,4.1990933,4.129568,4.204713,4.21055,4.3053565,4.2360344,4.171754,4.1654496,4.261865,4.25896,4.2517724,4.233143,4.1464534,3.9482915,3.381525,3.0497646,2.784585,2.3961892,2.3301392,2.1580327,1.6961632,1.8148105,1.5267363,1.611582,2.2052767,2.4320621,2.5173786,2.491559,2.2652345,1.7969339,1.8391061,1.664609,1.762758,1.8326278,1.7145646,2.0345652,2.5992324,2.9042056,3.0493782,3.1853776,3.2439737,3.4138904,3.5720813,3.5593166,3.4345498,3.350883,3.4089446,3.4905732,3.284442,2.6811287,1.7055675,1.1683192,0.8610134,0.6094242,0.4805464,0.3787107,0.5156757,0.38335866,0.5390244,0.6308759,0.43552455,0.93700767,1.0463617,0.88530153,1.2227973,1.0233831,1.0423404,1.0290486,1.0742385,1.0665227,1.1072047,1.1371087
+0.06492783,-0.059295397,-0.13677658,-0.21955527,-0.40512443,-0.4933265,-0.5583752,-0.61031556,-0.6075695,-0.16594295,-0.02329002,-0.027949732,0.49359953,0.60435367,0.31412303,0.10490267,0.01089995,-0.09857224,-0.20311733,-0.30776998,-0.40839905,0.56018734,1.0793679,0.42731836,0.2595591,0.21579044,0.23696096,0.094992206,0.0038336702,-0.06613304,-0.09271611,-0.15859129,-0.23208188,-0.26857558,-0.2546632,0.040657032,0.3493738,0.842471,0.29142377,0.07650192,-0.07034315,-0.15408437,-0.23984683,-0.3389128,-0.37811774,-0.45115986,-0.48657706,-0.5084525,-0.55457115,-0.025414538,0.5786063,0.36771125,0.15670304,0.19542532,0.2769401,0.20380399,-0.041168254,-0.13707156,-0.24362093,-0.34650677,-0.41951078,-0.48816925,-0.55053806,-0.6199594,-0.6774992,-0.7420026,-0.80199087,-0.8455035,-0.9047326,-0.92774045,-0.95780814,-0.98009044,-1.0045245,-1.0329081,-1.0261109,-1.0466957,-0.83657527,-0.73072565,0.86479014,0.28526515,0.09786078,-0.10350953,-0.22329749,-0.35976583,-0.41832805,-0.48037946,-0.53903824,-0.6109874,-0.6691396,-0.72794116,-0.77319443,-0.810999,-0.852511,-0.90913177,-0.96016914,-1.0115682,-1.0462664,-1.0794151,-1.0954739,-1.1267858,-1.1257067,-1.1457024,-1.1826165,-1.2132463,-1.2759998,-1.3205464,-1.3452338,-1.3740408,-1.4084561,-1.4207869,-1.4517977,-1.5049262,-1.5228927,-1.5658951,-1.6128573,-1.6657075,-1.703306,-1.763125,-1.831265,-1.8932166,-1.9399598,-1.986516,-2.0086355,-2.028328,-2.024613,-2.080322,-2.0733535,-2.0740805,-2.0776656,-2.0770717,-2.0523376,-2.0670056,-2.113906,-2.1401615,-2.176737,-2.2107182,-2.222234,-2.228186,-2.238823,-2.2652688,-2.2741227,-2.3075395,-2.3205757,-2.3412435,-2.3627012,-2.3782697,-2.3922243,-2.403988,-2.410306,-2.4255502,-2.4379244,-2.4372709,-2.4409928,-2.4436927,-2.4300575,-2.4095068,-2.4189956,-2.406127,-2.433506,-2.4031925,-2.444614,-2.452063,-2.469272,-2.494474,-2.4917352,-2.455911,-2.482243,-2.4752388,-2.4858317,-2.5070739,-2.5014615,-2.4942207,-2.5476823,-2.5349517,-2.480005,-2.475306,-2.4765437,-2.5257893,-2.5318725,-2.5421486,-2.5514045,-2.5833848,-2.5970864,-2.5316968,-2.3168335,-1.6374483,-1.6039908,-1.7791593,-1.8224127,-1.9100922,-1.9751599,-2.0534666,-2.0780797,-2.0982122,-2.0980651,-2.108717,-0.25310257,0.51860416,0.5411254,0.99791443,0.64179444,0.19152504,-0.052278083,-0.13900097,-0.20280327,-0.25683165,-0.057806503,1.3328362,0.98872745,1.1600926,1.2336615,1.3647577,1.3662267,1.2045301,1.590838,1.0197074,0.82766944,0.7583256,0.703182,0.69547915,0.61801904,0.5282591,0.48144865,0.4406789,0.4159112,0.44435507,0.38659203,0.33746666,0.36670423,0.36280566,0.34349793,0.33981234,1.2059357,1.3785982,1.052708,0.8942406,1.1603785,0.9461583,0.9800906,1.2839162,1.291833,1.2620246,0.9593721,0.9700991,0.8141971,0.82712775,0.79317355,0.8020167,0.8132171,0.8924187,1.0283101,1.4662168,1.3626993,1.6459447,1.2248008,1.016345,1.1747435,1.4816451,1.7068789,1.6295278,1.1019114,1.2198536,1.4244583,1.3516257,1.2638216,1.3097453,1.3978492,1.3831022,1.1885564,1.4196967,1.4411616,1.4035608,1.342049,1.3110898,1.3290083,1.4255502,1.4867876,1.6439942,1.6679418,1.169983,1.2975587,1.6542338,1.8830824,1.5483167,1.6935399,1.6597384,1.4722395,1.3125879,1.3507966,1.4078972,1.3812046,1.3577813,1.4210505,1.5649097,1.5517628,1.4186121,1.5829403,1.4475455,1.3195734,1.3161972,1.2937392,1.3182577,1.3336143,1.3310128,1.272826,1.2394607,1.1809664,1.1228034,1.5485017,1.3014941,1.0307989,1.4562991,1.7635016,1.5862551,1.8526115,1.5118295,1.5962169,1.0966902,0.97245777,0.925069,0.955427,1.3157177,1.543092,1.6921299,1.3976243,1.5684135,1.654296,1.4989171,1.466996,1.3477604,1.4769785,1.3351643,1.4634537,1.2109936,1.2153751,1.1827395,1.1149788,1.1976027,1.3706354,1.1382331,1.1488922,1.0025733,0.90581703,0.7969875,0.6983623,0.58619946,0.4623329,0.39158583,0.40642172,0.41943753,0.36034876,0.4067234,0.35651094,0.5040801,1.3468891,1.5532193,1.0522512,1.4641696,1.3643423,1.2368957,1.3435191,0.82338583,0.9451185,1.1375449,0.70847654
+0.3190469,0.8588443,0.96737945,0.9134116,0.76587653,0.6492465,0.5039089,0.4186026,0.58434296,0.91692543,0.7951927,0.6553061,0.57969856,0.603383,0.47270083,0.3595914,0.20609345,0.04506198,-0.08310421,-0.2104792,-0.31293988,0.34640932,0.957269,0.61058116,0.49437433,0.34771195,0.3465717,0.34704486,0.16959171,0.021164704,-0.14972393,-0.3630153,-0.49954578,-0.658412,-0.48456988,-0.16399433,0.1341821,0.6105464,0.48038858,0.31866485,0.1080008,-0.09176648,-0.24390185,-0.34796318,-0.46441603,-0.6528195,-0.8369237,-1.0507221,-1.1562159,-1.0651283,-0.8319392,-0.7298607,-0.86933446,-0.950578,-0.94817215,-0.6338652,-0.6446044,-0.86186314,-1.0959923,-1.2409463,-1.4244657,-1.5907282,-1.6161481,-1.7947348,-1.9385194,-1.9722849,-2.0234509,-1.9958315,-1.9644872,-1.9115989,-1.8847857,-1.9023302,-1.9574116,-1.9638865,-1.9188778,-1.9775629,-1.918427,-1.9805866,-1.932079,-1.9716132,-2.0922508,-2.2270522,-2.212309,-2.1950889,-2.1562276,-2.2120738,-2.312441,-2.3861156,-2.431902,-2.4112482,-2.4095738,-2.4409704,-2.4368787,-2.427009,-2.438891,-2.4165745,-2.405541,-2.3945003,-2.4017053,-2.407865,-2.3492508,-2.4131732,-2.406677,-2.4559593,-2.5204268,-2.5875342,-2.5541413,-2.5250173,-2.497367,-2.486991,-2.4970677,-2.5162315,-2.5127149,-2.6028748,-2.6223085,-2.604925,-2.6552613,-2.6934762,-2.727961,-2.7550778,-2.732101,-2.7148247,-2.726007,-2.722478,-2.7509947,-2.7131262,-2.699111,-2.7185364,-2.7044559,-2.7261925,-2.7310243,-2.7458053,-2.7541535,-2.753838,-2.7750201,-2.7835212,-2.7786417,-2.7939417,-2.8048587,-2.8024607,-2.8078446,-2.813137,-2.8141465,-2.8258023,-2.8191116,-2.8140051,-2.8132958,-2.7931147,-2.8008137,-2.801371,-2.8233423,-2.8239927,-2.811669,-2.8102086,-2.8228183,-2.8192136,-2.7836175,-2.8235393,-2.82822,-2.822571,-2.8105383,-2.829009,-2.8317335,-2.8264065,-2.799267,-2.7879958,-2.7931933,-2.8170192,-2.8307686,-2.8232894,-2.812331,-2.808058,-2.8175502,-2.8548903,-2.774811,-2.8341527,-2.8299937,-2.8001308,-2.805541,-2.8070884,-2.8216355,-2.8205256,-2.8225837,-2.8004494,-2.789772,-2.7748322,-2.7333026,-2.719469,-2.7287374,-2.7505062,-2.751553,-2.749518,-2.7638884,-2.7332156,-2.7493868,-2.791377,-2.287715,-1.6314101,-0.59970665,0.2910447,0.06952578,-0.1767727,-0.3855502,-0.50170904,-0.58519596,-0.6693306,-0.69132704,-0.17985274,0.2818228,0.103375986,1.0478915,1.1029892,0.9936583,0.9412202,1.1205513,0.9296126,0.70710576,0.5584224,0.44882673,0.3784144,0.2630518,0.14458008,0.03460211,-0.060202327,-0.1398189,-0.21172261,-0.269411,-0.32651618,-0.34284502,-0.3670774,-0.3776234,-0.47172365,0.21079205,1.3398868,0.93701005,0.7150236,0.8863778,0.82438374,0.7152966,0.8226303,0.9747157,1.0514948,0.8397009,0.7517822,0.6806816,0.5334164,0.42523342,0.38503224,0.36371532,0.39260876,0.39750135,1.1036797,1.5318985,1.6333414,1.3619288,1.1235656,1.0269414,1.1033078,2.2524753,2.24691,1.756659,1.6345764,1.5765007,1.4983616,1.3645909,1.2312624,1.5881137,1.6676717,1.4605112,1.3767996,1.3300159,1.2428598,1.1598581,1.1173458,1.1092482,1.0804126,1.0880364,1.6674736,2.5356555,2.033761,1.7438104,2.3728423,3.2646098,2.609117,3.065895,2.9991763,2.621415,2.249625,2.029602,1.9208801,1.8245685,1.7357997,2.1086345,2.6954339,2.7755463,2.4735882,2.8140678,2.5702705,2.279232,2.02803,1.9769244,1.8542595,1.773696,1.7020485,1.6444657,1.6071169,1.5939641,2.0971177,2.6771238,2.3886695,2.1019585,2.4600997,3.0069876,2.6656604,2.7018962,2.4056573,2.152371,2.0015423,1.9342524,1.8748477,1.7801436,2.122011,2.6074276,2.8411613,2.4553418,2.846684,2.8577635,2.3872821,2.1791735,2.008282,1.871054,1.8279152,1.7679651,1.6686205,1.6148267,1.5621569,1.5215079,1.5238752,1.9408119,1.7944347,1.656906,1.613183,1.5357058,1.4546031,1.4171504,1.3802471,1.3453047,1.3366064,1.3034978,1.3093454,1.2738235,1.2406985,1.1928103,1.3689349,2.4351337,2.6778998,2.1783237,2.3322368,2.2539032,1.9278677,1.9198478,1.7464535,1.6319718,1.5551047,1.5274721
+-0.38922602,-0.28533763,-0.38230538,-0.5282255,-0.7541597,-1.0953184,-1.379422,-1.3961389,-0.15879092,1.5744051,1.2939657,1.0175333,0.8388267,0.7749603,0.6321666,0.44441453,0.1887485,-0.097983375,-0.43728617,-0.72656083,-0.7669368,0.018913087,0.5484927,0.23351489,0.093808025,0.05177341,0.0074531846,-0.1218835,-0.2589612,-0.49096498,-0.7954777,-1.00225,-1.150934,-1.2598413,-1.2593784,-1.0340883,-0.39168686,-0.687418,-0.95369494,-1.0763717,-1.1893846,-1.2741572,-1.3119717,-1.3268764,-1.3696911,-1.4056396,-1.4623995,-1.5587258,-1.569726,-1.5447397,-1.4248525,-1.4062656,-1.4572716,-1.517561,-1.5551128,-1.580078,-1.6168702,-1.6753349,-1.7082909,-1.7321048,-1.7781645,-1.8237501,-1.851778,-1.9042311,-1.9723375,-1.9779148,-1.9779577,-1.9781055,-1.9730856,-1.9608575,-1.9544178,-1.9684594,-2.0021746,-2.0091724,-1.9864774,-1.9777349,-1.976995,-1.9541512,-2.0411541,-2.108271,-2.2002497,-2.251585,-2.253398,-2.25991,-2.249391,-2.278671,-2.3105352,-2.3429558,-2.352632,-2.3378625,-2.317992,-2.3161533,-2.3104315,-2.3021975,-2.3000643,-2.2919812,-2.2800214,-2.2730248,-2.288362,-2.3237941,-2.3055036,-2.323976,-2.3313324,-2.3377619,-2.3663518,-2.3781538,-2.3562703,-2.3380232,-2.3154314,-2.314119,-2.3291645,-2.3662555,-2.3735065,-2.415172,-2.4272275,-2.4060893,-2.4205942,-2.4445093,-2.4664402,-2.474396,-2.4687157,-2.4452784,-2.4378011,-2.4337008,-2.4408145,-2.4314594,-2.4118814,-2.4167714,-2.4095054,-2.4294176,-2.4327326,-2.4286036,-2.4297738,-2.43668,-2.4692554,-2.488758,-2.479426,-2.472224,-2.4887724,-2.4836643,-2.4769657,-2.4723186,-2.4696484,-2.4789362,-2.4855638,-2.504231,-2.5115235,-2.476562,-2.4650404,-2.4640274,-2.486713,-2.504857,-2.500727,-2.4742458,-2.4740672,-2.4700046,-2.437131,-2.445785,-2.4833212,-2.5087483,-2.4906754,-2.4883728,-2.498771,-2.5000458,-2.4702497,-2.4042754,-2.4299357,-2.4550865,-2.4745045,-2.5053406,-2.5201373,-2.5135567,-2.505088,-2.4926949,-2.46355,-2.4888282,-2.4995575,-2.5091252,-2.5443616,-2.5548544,-2.5434785,-2.5284512,-2.5172234,-2.4846148,-2.4543183,-2.3864048,-2.4372067,-2.4372883,-2.4445715,-2.4818847,-2.5126698,-2.5101779,-2.4680839,-2.4036965,-2.4085464,-2.406673,-2.2830138,-1.639802,0.33421382,0.9434552,0.66529703,0.41260752,0.17365679,0.016451214,-0.11349437,-0.258368,-0.33966595,-0.32877526,-0.33369747,-0.36873618,0.62471807,1.0969028,1.0357891,1.2711012,1.1354971,0.99374664,0.8272369,0.71671486,0.66188157,0.636625,0.5634722,0.46730375,0.403083,0.31943673,0.21345139,0.08679041,0.02848928,-0.024961282,-0.03444876,-0.028987397,0.044292193,0.009445917,0.07685003,0.9644727,1.3442245,1.1903775,1.091329,1.1571059,1.0158472,1.1650596,1.764909,1.5396872,1.3280156,1.2344818,1.1422029,1.0343797,0.9762466,0.9485463,0.9329369,0.9433195,0.9492378,1.2274611,1.4413452,1.6304045,1.745726,1.451411,1.3380368,1.3250726,1.5692952,2.1351957,1.9188731,1.7495995,1.6368402,1.4883156,1.2832642,1.2252336,1.6652852,1.8742414,1.70914,1.590409,1.459276,1.3014355,1.2071892,1.2013998,1.2132744,1.2377808,1.2844965,1.5802245,2.2167487,2.2556748,2.0088615,2.1388514,2.6298194,2.5882814,2.6110382,2.5924926,2.388534,2.1343312,1.93749,1.8150694,1.6880355,1.5913591,1.8240612,2.3470573,2.555602,2.4139962,2.4783878,2.478079,2.2437496,2.0050466,1.8583783,1.6981629,1.6121984,1.523339,1.414975,1.3642054,1.3735625,1.4918599,1.9675224,2.135933,1.9429257,2.1497283,2.5457716,2.346904,2.3090503,2.4586334,2.107963,1.8225007,1.6677027,1.5675709,1.465117,1.7305768,2.017393,2.3702857,2.1390445,2.5394897,2.654514,2.2578623,1.9682105,1.8420515,1.7595953,1.666024,1.6033447,1.4972863,1.4147468,1.3329151,1.2838838,1.2952819,1.759022,1.9308176,1.7049761,1.473833,1.363046,1.2823064,1.2056572,1.1377077,1.0613527,0.9872962,0.9729558,0.9509083,0.8619572,0.7897321,0.74501383,0.8471786,1.6619003,2.2591202,1.866688,1.9532177,2.0751452,1.7479575,1.6975529,1.4565282,1.317698,1.2252889,1.1185606
+0.9496398,1.1913636,1.3423414,1.1237876,1.4076294,1.472984,1.2693366,0.76390207,0.555769,0.6757593,0.6592079,0.6925857,0.63286567,0.7092408,0.59855306,0.508987,0.3957673,0.25100482,0.11857739,0.016656239,-0.010270838,0.2390546,0.42794788,0.3571283,0.34184116,0.3716675,0.38186407,0.27184844,0.29729965,0.28395325,0.21309009,0.115094155,0.020529833,0.113530114,0.34959888,0.10912059,0.019459844,-0.03867356,0.089070246,0.15202036,0.15272023,0.28974968,0.15493904,0.067714036,-0.0037755556,-0.04770821,-0.09063447,-0.124176696,0.02808291,0.20620012,0.59534454,0.6559692,0.62803733,0.4612893,0.2571906,0.0774862,0.19847558,0.42055675,0.55111337,0.31205842,0.1542796,0.07965526,0.11351301,0.014965083,-0.089280546,-0.12986961,-0.18365094,-0.2446964,-0.23920813,-0.20254476,0.14560552,0.38601544,0.23329355,0.27993572,0.4641372,0.36129913,0.23479776,0.112220064,0.27934396,1.1112357,0.51831126,0.35813797,0.21192525,0.27501708,0.753096,0.59837186,0.35481635,0.17212918,0.059663977,-0.019939888,-0.0884994,-0.11743723,-0.14595902,-0.16847663,-0.02075437,0.28309235,0.24221246,0.17201984,0.34463575,0.6988053,0.5442243,0.40566096,0.30097607,0.18602064,0.094615266,0.649938,0.91270566,1.0452154,0.6036544,0.68967193,0.5453552,0.3225473,0.25982147,0.25587484,0.13340478,0.03038581,0.033826616,0.07708976,-0.026206683,-0.122199506,-0.19404109,-0.19859912,-0.20826246,-0.1399578,0.25133315,0.06406543,-0.06673254,-0.14625412,-0.15286802,-0.0998587,0.100640625,0.31889763,0.13605793,-0.031799357,-0.11539051,-0.19675042,-0.26384652,-0.3123765,-0.36424798,-0.4100408,-0.43485165,-0.46236268,-0.47874415,-0.46112752,-0.4411915,-0.47829887,-0.5130884,-0.5369647,-0.55980045,-0.56780064,-0.53738016,-0.56984735,-0.58344847,-0.5318747,0.04029714,0.32138473,0.30114985,0.26109773,0.27998328,0.20868108,0.20391661,0.12546583,0.006784711,-0.0923741,-0.10941109,-0.12702523,-0.1837396,-0.22626273,-0.25982365,0.20772624,0.61692697,0.6041138,0.5644871,0.45718902,0.41110575,0.4213233,0.52628064,0.40074357,0.24072163,0.18276043,0.11696002,0.09427059,0.06784344,0.077200234,0.13426973,0.122553885,0.18525107,0.22723217,0.25737903,0.8009707,1.0067077,0.9120021,0.70482314,0.816489,0.9745188,1.2952691,1.549159,1.2849703,1.1915141,1.1845168,1.070096,1.0105028,1.2218506,1.0244818,1.1280302,1.2257608,1.0938563,0.98168135,0.96685624,1.2859933,1.0653676,0.95691097,1.0731982,1.2348897,1.1966162,1.2621634,1.056624,0.88317156,0.9370805,0.9901124,0.9184243,0.84757894,0.80126137,0.7882195,0.8124161,0.85848856,0.7966336,0.9053537,1.1581047,1.4626019,1.849011,2.19581,2.583002,2.9570174,3.1407952,3.3331127,3.592349,3.808886,3.9432135,4.1245165,4.180738,4.1564274,4.253157,4.303758,4.299916,4.3040557,4.2818766,4.279344,4.3200865,4.338727,4.3421354,4.3514385,4.387216,4.366928,4.3568954,4.35824,4.322439,4.330988,4.330634,4.3081884,4.328396,4.347874,4.285788,4.2967515,4.2682414,4.3080935,4.3388157,4.3456287,4.335214,4.3338575,4.27909,4.270625,4.313487,4.274184,4.273388,4.3323545,4.3496895,4.3469996,4.327386,4.3252425,4.33755,4.341363,4.359487,4.2984185,4.331193,4.3251667,4.3007107,4.303852,4.2913227,4.310286,4.3039527,4.297609,4.337871,4.3631716,4.345271,4.391259,4.3469467,4.3298664,4.3781033,4.358878,4.3414497,4.2939405,4.3002224,4.322974,4.3153462,4.3011513,4.284669,4.2968874,4.353466,4.3301907,4.3002224,4.36828,4.3698807,4.3536377,4.3652687,4.293598,4.3293905,4.2922497,4.3223042,4.313403,4.3098116,4.4019527,4.4007955,4.40375,4.3794155,4.386341,4.327033,4.235221,4.28503,4.270258,4.249528,4.2700434,4.3214483,4.270579,4.2223377,4.26812,4.2929115,4.2562685,4.291231,4.2122927,4.263007,4.235884,4.281299,4.2179446,4.3026557,4.3068814,4.362049,4.3411527,4.3505588,4.288903,4.2842865,4.2499275,4.149296,4.222498,4.298356,4.308234,4.3187203,4.2842298,4.263942,4.2551217,4.2469053,4.1943,4.147832,4.1160035,4.096033
+-0.26691237,-0.41661495,-0.42267555,-0.23934117,0.20692836,0.14430197,0.006377641,-0.26417023,-0.49093965,-0.534402,-0.53871244,-0.53407526,-0.50274396,0.2007702,0.42747208,0.3862189,0.18756655,-0.13135009,-0.36691254,-0.50018257,-0.5551683,-0.56396306,-0.60676104,-0.6153115,-0.51059276,-0.37814015,-0.20761628,-0.28408226,-0.30781445,-0.43106008,-0.49069753,-0.55091983,-0.6243328,-0.5156863,-0.33890912,-0.43773186,-0.5597451,-0.6621955,-0.65963346,-0.63096106,-0.654529,-0.73461497,-0.7375457,-0.7451074,-0.79519284,-0.8568021,-0.85953814,-0.8970078,-0.8578968,-0.7644582,-0.20313133,-0.19813524,-0.3939788,-0.4830613,-0.51534647,-0.57361364,-0.5858082,-0.4931726,-0.56738174,-0.63199145,-0.6340109,-0.6980076,-0.78545064,-0.84956044,-0.8517221,-0.9188881,-0.9890027,-1.0118732,-1.0767814,-1.0931616,-1.0222201,-0.97272795,-0.9241743,-0.91608536,-0.9504609,-0.8908013,-0.872532,-0.83010364,-0.37852627,-0.18123691,-0.36316857,-0.5280451,-0.60139817,-0.6824758,-0.79964125,-0.84630007,-0.81922364,-0.85264975,-0.922661,-0.9684144,-1.0098312,-1.0306242,-1.0693438,-1.1224136,-1.1606842,-1.178739,-1.1652691,-1.1478791,-1.0796857,-0.90634346,-0.7667172,-0.845773,-0.86737794,-0.9220855,-0.94387686,-1.0119342,-1.0295588,-0.81953996,-0.6047287,-0.41494554,-0.3910524,-0.5442499,-0.4840824,-0.53415287,-0.6116651,-0.71902347,-0.7842978,-0.67667544,-0.7429321,-0.85749507,-0.9277578,-0.98209965,-0.97875106,-0.98884,-1.0320696,-1.0451746,-1.0850086,-1.0902815,-1.1190128,-1.0039144,-0.7848964,-0.82840914,-0.91265243,-1.0025516,-1.0957506,-1.1298909,-1.1609166,-1.2128569,-1.2269258,-1.2805512,-1.3033655,-1.3622059,-1.3886967,-1.4019773,-1.3907789,-1.3857348,-1.4123899,-1.4598293,-1.5316515,-1.5511789,-1.582129,-1.6020601,-1.5996432,-1.6196451,-1.5061871,-1.3241649,-1.2413539,-1.284658,-1.3428907,-1.4013586,-1.437058,-1.4421419,-1.4399265,-1.4525254,-1.4277043,-1.4314127,-1.4717765,-1.4896908,-1.5544146,-1.3139011,-0.5618839,-0.6021552,-0.59658223,-0.625097,-0.56998223,-0.56701106,-0.6180608,-0.7335158,-0.8239629,-0.8927417,-0.9492699,-1.0120662,-1.0592546,-1.044017,-1.0117455,-1.0091105,-0.97219336,-0.8847629,-0.8000937,-0.20631386,0.58489555,0.84746957,0.61602783,0.5424421,0.82261324,1.1394503,1.6766107,1.6811062,1.5528997,1.29326,0.9270947,0.7938626,1.4884946,1.1839823,1.2103069,1.2616608,0.8725837,0.5658967,0.9784447,1.1046098,0.7059194,0.8158801,1.1460387,1.420858,1.321579,1.1687046,0.7190471,0.5046286,0.43604344,0.47530627,0.37062,0.19014466,0.09993692,0.09865503,-0.019098233,0.06761141,0.2945643,0.85848206,1.1805989,1.2532439,1.6485581,2.1734633,2.5646448,2.7925272,2.92879,3.1245072,3.270616,3.42043,3.5220227,3.6278472,3.734746,3.7818627,3.8291438,3.8546457,3.8812952,3.8865914,3.883234,3.9330559,3.9477587,4.0359173,4.009733,3.9868631,4.076024,4.0688596,4.0436096,4.0795693,4.0601835,3.9978375,4.0391836,3.9937005,3.986865,3.9991312,4.039631,4.049469,4.000429,4.011703,4.0440226,4.051832,3.99164,4.0041504,4.079339,4.0296335,4.0396953,4.0425596,3.981627,4.070175,4.1173944,4.008572,3.9917402,3.9867263,3.97578,3.9924822,4.073782,4.0323877,4.0423746,3.9932814,3.968637,3.9695969,3.9789019,3.9760451,4.000707,4.0137854,4.105591,4.019964,4.0243683,4.034774,4.012744,4.0009413,4.0157027,4.0587053,4.0145555,3.9707565,3.961925,3.9149303,3.9232843,4.022138,3.9587867,3.9422874,4.0462337,4.037381,4.005638,4.0280685,3.9653645,4.0012918,4.1009436,4.0282655,4.0045767,3.9944105,3.9407322,3.921276,3.962115,4.003216,3.9816275,4.011832,3.994143,4.0073195,3.999053,3.9600577,3.9585464,3.9845529,3.9868503,4.008939,4.039898,3.982315,3.9758086,3.9624822,3.9523506,3.9286482,3.953454,3.9205215,3.9333096,3.9757414,3.9503536,3.9394393,3.9335206,3.9470897,3.9519703,3.9423473,3.992331,3.894983,3.9355166,3.8690972,3.9057105,3.915189,3.9543834,3.8873668,3.8730495,3.8482676,3.8602936,3.8693948,3.8795013,3.92939,3.8540878,3.9016635,3.861057
+-0.5362663,-0.7148521,-0.69153327,-0.77317035,-0.7773325,-0.7370484,-0.7478966,-0.7923353,-0.83851004,-0.9021431,-0.94619584,-0.9913346,-1.0425882,-0.57470685,-0.17063236,-0.3291993,-0.43673155,-0.52057767,-0.60730654,-0.704491,-0.7969575,-0.8823112,-0.94712496,-1.0183084,-1.0374192,-1.0207146,-1.0306321,-1.0643799,-1.1239979,-1.1239765,-1.1240985,-1.1576587,-1.2082949,-1.265423,-1.2592975,-1.1587642,-1.14168,-1.2232015,-1.2920992,-1.2817419,-1.3114071,-1.3499061,-1.3850751,-1.4479905,-0.69147146,0.12319173,-0.15961201,-0.38338238,-0.53414065,-0.55733943,-0.549052,-0.5169237,-0.61759925,-0.6949264,-0.7441604,-0.82273877,-0.9179745,-0.9554257,-0.99810326,-1.0373578,-1.0789391,-1.1311381,-1.2499158,-1.3176496,-1.3582438,-1.4389398,-1.5621336,-1.6334667,-1.8009007,-1.8180304,-1.6865572,-1.525634,-1.5021594,-1.5428289,-1.6242511,-1.6302139,-1.6209712,-1.6333983,-1.5357269,-1.3063468,-1.3299496,-1.4134632,-1.4549398,-1.5413175,-1.6370968,-1.6357231,-1.6196289,-1.6797316,-1.7570618,-1.825388,-1.8604972,-1.9030341,-1.9694463,-1.9849218,-2.004307,-2.0701437,-2.055025,-2.1411262,-1.822599,-1.6325079,-1.6708572,-1.6882015,-1.7724354,-1.7731287,-1.7971299,-1.8519518,-1.8821489,-1.9139311,-1.9980326,-1.8645937,-1.8935761,-1.9598277,-1.9763052,-1.8544452,-1.8741322,-1.9575727,-2.0354702,-2.0868754,-2.142209,-2.2112577,-2.2531567,-2.2878318,-2.3053145,-2.3464675,-2.3456292,-2.361634,-2.3974805,-2.4212492,-2.4517355,-2.5765944,-2.6187246,-2.5515456,-2.548339,-2.5732462,-2.6435072,-2.6800117,-2.7245646,-2.7583437,-2.78448,-2.8086526,-2.8173103,-2.8706117,-2.8961482,-2.9049213,-2.9316645,-2.9432669,-2.9506545,-2.9812407,-2.9992666,-3.0328808,-3.0547771,-3.0827568,-3.0833187,-3.1433792,-3.02266,-2.8159103,-2.7917664,-2.8058152,-2.7245939,-2.520266,-2.4849553,-2.5475347,-2.5851045,-2.5805194,-2.637487,-2.677775,-2.7138357,-2.7260804,-2.7888246,-2.8992736,-2.9375663,-2.904472,-2.8785083,-2.884182,-2.8848715,-3.004834,-2.908462,-2.9182446,-2.9277344,-2.937622,-2.9749403,-2.8962092,-2.74664,-2.828442,-2.8750207,-2.861218,-2.9152455,-2.8883355,-2.7050729,-2.3359084,-2.1255832,-2.1129012,-0.9072036,-0.7305103,-0.87960476,-0.75168276,-0.00093725696,0.14643551,0.059956145,0.061145697,-0.13253437,-0.32148594,-0.26932707,-0.3720805,-0.42781538,-0.48810726,-0.5742304,-0.6196085,-0.13415919,0.2641827,-0.061972197,0.051988352,-0.014350031,0.11761527,-0.17773403,-0.29963365,-0.37850487,-0.4894539,-0.55268663,-0.25545457,-0.33133787,-0.48187855,-0.5876393,-0.65636814,-0.71287626,-0.73729324,-0.75497556,-0.6293767,-0.030767959,-0.18869744,-0.36359817,-0.37837768,-0.27869457,-0.3348071,-0.4432912,-0.50974166,-0.32952648,-0.3534958,-0.26636755,-0.27734947,-0.47254625,-0.39542544,-0.45011592,-0.43982634,-0.479214,-0.471425,-0.38999712,-0.29838014,-0.39454192,-0.16510867,-0.064833045,0.049753305,0.40977836,0.7048922,0.81390786,0.87569124,0.86609155,0.8013194,1.0066209,1.0811026,1.1082175,1.1408343,1.2504518,1.6819088,1.4489806,1.4911529,1.6316353,1.5775847,1.5857764,1.6067334,1.8844652,1.8211111,1.8959918,1.8796349,1.8624394,2.0004299,2.1308596,2.1031234,2.0560355,2.0263662,1.9843905,2.0450213,2.3898718,2.5787086,2.5946283,2.679017,2.5389993,2.4561732,2.4359167,2.4208088,2.4046938,2.437346,2.7156496,2.8958497,2.9391875,3.0856566,3.1767402,3.018002,2.94809,2.97248,3.0692027,2.9389806,2.892776,2.8506887,2.9405718,3.0918229,2.9305902,2.8657415,2.8745337,2.9411788,3.0818098,3.2865775,3.2340612,3.2941575,3.4609022,3.3403835,3.2699633,3.2442803,3.2143037,3.190785,3.2640452,3.5126958,3.3398104,3.3793488,3.348318,3.3478267,3.3462915,3.094429,3.0999322,3.098021,3.1104975,3.2034833,3.1488554,3.164834,3.2329876,3.3180454,3.269725,2.8964646,2.8747098,2.9089594,2.9893646,3.1303222,2.864266,2.5494542,2.1325462,1.8889899,1.4511485,1.4725728,1.2216885,0.984717,0.7785152,1.049648,0.78610396,0.6908786,1.1618025,1.1711216,0.9472244,1.3020037,1.1331453,1.057559,1.0602778,0.86315024,0.935976,0.72009814,0.4931215
+-0.1582464,-0.3492818,-0.37818867,-0.28975964,-0.14911845,-0.21687336,-0.38827917,-0.48236647,-0.5275163,-0.547156,-0.5508943,-0.50516826,-0.2746911,0.19972147,0.6147985,0.4178661,0.11218105,-0.10274419,-0.2615108,-0.3972413,-0.42970562,-0.33959496,-0.16296257,0.082973614,0.12097116,0.07055649,-0.042583685,-0.1076736,-0.10460693,-0.18808578,-0.29971644,-0.41304457,-0.54772484,-0.5522016,0.026248608,0.1318603,-0.0057546683,-0.12498325,-0.22046702,-0.30416033,-0.42960152,-0.5202455,-0.60664845,-0.48756254,0.45723185,0.5755764,0.30537468,0.08692451,-0.003434483,-0.008782823,1.1383288,0.9011544,0.69944346,0.49377698,0.37108052,0.18728001,0.11815493,-0.0016604029,-0.079175696,-0.15403977,-0.2630389,-0.3553604,-0.3841325,-0.43424857,-0.5450663,-0.6684859,-0.7643454,-0.84989715,-0.8959614,-0.77236634,-0.7576827,-0.7267873,-0.81285304,-0.85271865,-0.8327254,-0.9032873,-0.5468576,-0.23823272,0.7808258,0.47111607,0.085258275,-0.0715279,-0.256056,-0.3452573,-0.3413331,-0.44175223,-0.54507065,-0.62963635,-0.71042454,-0.80215836,-0.88607657,-0.93954086,-0.9782576,-1.0068151,-1.0673978,-1.068845,-1.0920328,-1.112125,-0.7726991,0.10960935,0.12283294,0.050730918,-0.16970684,-0.31988823,-0.44665912,-0.5604851,-0.6243285,-0.65829885,-0.29670495,0.10037638,-0.12214436,-0.38403702,-0.4958295,-0.58035994,-0.6688173,-0.7786894,-0.8484826,-0.9096235,-0.971125,-1.0611801,-1.1184709,-1.1888487,-1.2251322,-1.2545304,-1.2741297,-1.2959759,-1.3546832,-1.3648111,-1.4082382,-1.419523,-1.3376513,-1.3082107,-1.3391268,-1.3945866,-1.4674889,-1.5267236,-1.5626768,-1.601038,-1.6289827,-1.6690269,-1.7268043,-1.7686241,-1.7923024,-1.8252609,-1.8374468,-1.8554064,-1.881854,-1.9040506,-1.9134011,-1.9662001,-2.004383,-2.0220218,-2.0491245,-2.0759137,-1.9885266,-1.9295509,-1.9385648,-1.9373732,-1.768255,-1.4445595,-1.4897596,-1.5793766,-1.627069,-1.652358,-1.6991756,-1.7367642,-1.7291737,-1.7550899,-1.7847877,-1.8037176,-1.5297649,-1.3661633,-1.4128984,-1.4640422,-1.351011,-1.1170892,-1.1051964,-1.1423919,-1.2776763,-1.3630376,-1.4241798,-1.4686923,-1.4960623,-1.5282125,-1.5496662,-1.5088134,-1.3420608,-0.966305,-0.41516575,-0.29508165,-0.34297264,-0.4085942,-0.41843164,-0.5089829,-0.5741135,-0.27101076,0.60441524,0.6667546,0.666191,0.8702004,0.766398,0.5412903,0.4521769,0.5943979,0.562392,0.26421374,0.049381915,0.033655908,0.5488155,0.93321973,0.5960876,0.73059857,0.84900624,0.7634454,0.61291814,0.44030827,0.20451704,0.015320521,-0.112552494,-0.105052024,-0.19136779,-0.40525222,-0.539333,-0.61557764,-0.685591,-0.6633238,-0.6396723,-0.21763301,0.26305455,0.14862122,0.11035529,0.03851376,0.21212603,0.3749376,0.44545817,0.39114416,0.6860433,0.75552094,0.69276357,0.59701145,0.65796715,0.7550792,0.7846024,0.82631445,0.8611003,0.9193338,1.0327566,1.2978532,1.2184026,1.3984001,1.5745993,1.8869324,2.107884,2.3010468,2.2069364,2.311039,2.32708,2.4997425,2.8096483,2.9144511,2.86987,2.7916024,2.8390517,3.2945905,3.2408707,3.2001798,3.5477462,3.6918614,3.5479326,3.4923365,3.6709094,3.6465921,3.6984928,3.8074734,3.645729,3.6086278,3.7100813,3.7165484,3.6574535,3.510905,3.3870277,3.5204852,3.7386725,3.8843722,4.005095,4.064542,3.8588722,3.7314196,3.738998,3.690138,3.6761541,3.7371478,4.000127,4.077078,4.1119013,4.0863934,4.062727,4.0001516,3.884143,3.9729595,3.9918375,3.843761,3.8253522,3.8256307,3.930436,3.9405408,3.8739598,3.7974029,3.769312,3.888699,3.9527206,3.7416108,3.6042504,3.6712453,3.4678955,3.1902509,3.2237356,3.380529,3.3716078,3.3389502,3.4391754,3.471913,3.057053,2.7801204,2.7026944,2.7106054,2.6256018,2.2910054,2.362514,2.5125139,2.621552,2.6716487,2.7161446,2.775741,2.7894258,2.8964276,2.9338436,3.0519533,2.9810598,3.1362164,3.2817435,3.1640375,2.96823,2.4773688,2.1930227,2.151184,2.0474563,1.8657792,1.754569,1.8006793,1.7236626,1.8399323,1.6472414,1.4810607,1.6437931,1.695056,1.6366074,2.0725126,2.0089722,1.9844432,2.0421546,1.8882369,2.02517,1.8131697,1.5785329
+0.180544,0.0036544576,-0.16529779,-0.30845195,-0.29396737,-0.27719843,-0.32571673,-0.38886184,-0.45653993,-0.49368545,-0.51981,-0.57929087,-0.54838336,-0.10710843,-0.07066168,-0.18750568,-0.26863152,-0.36130276,-0.45966572,-0.56744206,-0.676403,-0.72285557,-0.5985036,-0.46579623,-0.42865026,-0.42408502,-0.49731576,-0.46251553,-0.34929258,-0.2645352,-0.32882518,-0.42794427,-0.52744234,-0.631938,-0.26207516,-0.23297422,-0.29368326,-0.3352116,-0.43323502,-0.4841146,-0.517695,-0.58266026,-0.6552414,-0.76489687,-0.5227877,-0.058735248,-0.09090179,-0.2637155,-0.3866324,0.14552845,1.3900745,1.0009272,0.6289716,0.42664456,0.29759395,0.10042168,0.00945884,-0.06900895,-0.15621026,-0.20515604,-0.2821244,-0.36291078,-0.4735775,-0.5048307,-0.5831903,-0.7269473,-0.7827498,-0.85936517,-0.93079984,-0.97712374,-1.0495386,-1.0700421,-1.0985265,-1.1307845,-1.2001836,-1.0518034,-0.46307397,-0.2660161,0.6810577,0.37381774,0.008421425,-0.09687942,-0.28285038,-0.37876981,-0.45430192,-0.5295321,-0.6305579,-0.7015683,-0.77976406,-0.8694204,-0.9374962,-1.0184238,-1.1111622,-1.1196456,-1.16749,-1.2272843,-1.2592204,-1.28529,-1.3680284,-0.9813337,-0.8580692,-0.83384055,-0.95614016,-0.9922483,-1.1036936,-1.1434324,-1.1768293,-1.2306077,-1.2680271,-1.3149078,-1.344835,-1.4034989,-1.4108825,-1.4452952,-1.5153689,-1.5613774,-1.557505,-1.5914602,-1.6309047,-1.665108,-1.6748319,-1.7193308,-1.7690386,-1.7636573,-1.7735989,-1.8344085,-1.9068491,-1.8878229,-1.9108613,-1.9366941,-1.9325683,-1.9516846,-1.9589312,-1.9564339,-1.9651154,-1.9849372,-1.9870571,-2.0072882,-2.0142062,-2.0337594,-2.03409,-2.0452466,-2.04068,-2.086224,-2.1112688,-2.1256104,-2.1342235,-2.13809,-2.1154282,-2.1448932,-2.1660538,-2.1300511,-2.1517234,-2.1852787,-2.2071943,-2.193024,-2.2156892,-2.1957498,-2.2371054,-2.1700854,-2.196237,-2.2157009,-2.2244108,-2.1967099,-2.223103,-2.2408776,-2.2310762,-2.239605,-2.2482271,-2.225524,-2.1940522,-2.2017899,-2.2426815,-2.2594204,-2.1172612,-1.7397422,-1.6739638,-1.7566783,-1.7496871,-1.774119,-1.8056825,-1.8097465,-1.8381474,-1.8543973,-1.8768945,-1.8124497,-1.7207268,-1.5810618,-1.5371573,-1.5564445,-1.5710386,-1.5880078,-1.5930281,-1.5810375,-1.5945709,-1.4860951,-0.22074805,-0.08618879,-0.08576049,-0.07377477,0.011550862,-0.14690268,-0.27051193,-0.37353235,-0.44441706,-0.51443005,-0.557399,-0.47549516,-0.05075645,0.07091519,-0.06062753,0.118465364,0.41187617,0.130848,0.074228555,-0.04808658,-0.13300534,-0.20569171,-0.24958846,-0.19862221,-0.20192607,-0.29533815,-0.34207267,-0.37651587,-0.42615038,-0.4448925,-0.46676993,-0.4183665,0.21323723,0.17925715,0.022448469,0.07410438,0.25684097,0.399831,0.22128884,0.1475056,0.3725711,0.3775953,0.4421989,0.3512681,0.2794959,0.36955673,0.42006338,0.5315777,0.6192168,0.68194985,0.7707818,0.92135346,0.90549797,1.1272509,1.1988682,1.2943505,1.7758836,2.384049,2.3596292,2.456312,2.5130854,2.8423643,3.2197692,3.0145295,3.1063814,3.1894393,3.2513504,3.446631,3.4526436,3.541758,3.722591,3.6651826,3.517599,3.498999,3.572999,3.5529494,3.6479278,3.54381,3.5870068,3.425315,3.4520245,3.5859885,3.842446,3.8700275,3.8518755,3.927123,4.2984037,4.3906326,4.402812,4.5081267,4.267707,4.2227926,4.2386413,4.194255,4.130474,4.1390224,4.354993,4.3977566,4.403296,4.369175,4.3555746,4.3519206,4.247604,4.1469393,4.190267,4.164772,4.1459117,4.1455035,4.2190194,4.2151127,4.3669,4.230812,4.3989396,4.4339995,4.4680243,4.520552,4.548927,4.410081,4.6224556,4.5209565,4.375655,4.3362913,4.379567,4.31814,4.294895,4.4954295,4.408495,4.5698833,4.488835,4.6139956,4.5782743,4.3932414,4.35422,4.2666225,4.3437366,4.1777563,4.2577324,4.212717,4.226217,4.2280135,4.2583604,4.3855715,4.2706623,4.1216207,4.3160076,4.3729014,4.473996,4.4560328,4.2766566,4.331751,4.1931677,3.8800278,3.2325745,2.7557235,2.3677163,2.2913904,1.9895473,1.3712761,1.1738682,0.9664568,0.8984716,1.2619348,1.3388249,1.4401028,1.6313047,1.6421078,1.941514,2.0812275,1.9696178
+-0.2658872,-0.28313333,-0.2827262,-0.31023037,-0.34910077,-0.45536816,-0.586602,-0.66279274,-0.6396247,-0.4225974,0.18372987,0.55477446,0.51620543,0.5822095,0.6126231,0.3083606,0.14253908,-0.019437175,-0.1508209,-0.21832317,-0.26026782,0.041330088,0.31467754,0.71700346,0.61372346,0.43779308,0.35808295,0.31218442,0.29706728,0.2687288,0.14920683,0.043847788,-0.011288088,-0.052606907,0.032982055,0.30317843,1.324642,1.2350752,0.6413789,0.43194786,0.32839024,0.22483434,0.092919186,0.017618392,-0.037679713,0.14766549,0.18563896,0.03249586,-0.008092161,1.0781758,1.2189968,1.1236755,0.8241152,0.58534676,0.53219396,0.45230526,0.30074987,0.23178671,0.1478346,0.06592864,-0.050395187,-0.1499838,-0.18840156,-0.22294226,-0.32525128,-0.35560834,-0.36609808,-0.41385204,-0.41924605,-0.4454773,-0.45648527,-0.5131794,-0.5673983,-0.585567,-0.5776868,-0.3454539,0.4040666,0.46566582,0.6533136,0.43983454,0.21845119,0.11376026,-0.0049451105,-0.1059742,-0.16651414,-0.23576188,-0.33398223,-0.34617537,-0.38864607,-0.42921466,-0.4509911,-0.5236635,-0.5667212,-0.5628468,-0.58389175,-0.62695175,-0.644969,-0.66611195,-0.6784388,-0.6978855,-0.6827916,-0.6777542,-0.7289215,-0.7570997,-0.8237554,-0.8202438,-0.82508206,-0.8333019,-0.85353035,-0.8687695,-0.8836397,-0.9295364,-0.9309439,-0.9573839,-1.0123996,-1.0408111,-1.0261558,-1.0660417,-1.0971901,-1.1401037,-1.1377703,-1.1467934,-1.184905,-1.1980784,-1.211407,-1.2885231,-1.3250353,-1.2972888,-1.30838,-1.3252599,-1.3036473,-1.3189546,-1.3624723,-1.37429,-1.4088061,-1.4202652,-1.4231431,-1.452943,-1.4736221,-1.5010898,-1.5201088,-1.5239558,-1.5465119,-1.5614169,-1.5749307,-1.5856568,-1.5939617,-1.60167,-1.5917164,-1.6119345,-1.6352682,-1.6661394,-1.6576096,-1.6297467,-1.6438899,-1.6381991,-1.6196976,-1.6191915,-1.6493537,-1.616716,-1.668739,-1.6951361,-1.7165339,-1.709871,-1.6954684,-1.6984173,-1.6793587,-1.7119336,-1.7295463,-1.7370437,-1.7088948,-1.7154557,-1.7585945,-1.7481041,-1.7273189,-1.7157223,-1.7367942,-1.8147143,-1.814732,-1.8288596,-1.8556786,-1.8623838,-1.8711339,-1.8469408,-1.8022039,-1.687275,-1.6362928,-1.6417625,-1.7145823,-1.765552,-1.7824942,-1.777672,-1.7986286,-1.7949457,-1.8078791,-1.7896518,-0.5389446,0.25038546,0.2760746,0.7809281,1.2863245,0.98507404,0.85285467,0.6208033,0.45793256,0.34190407,0.23962961,0.3369508,0.44074142,0.32124606,0.46877176,0.5190522,0.5389465,0.9361491,1.0044284,0.7738391,0.70011693,0.5788272,0.48921597,0.4692738,0.39203435,0.18165483,0.09751423,0.021112818,-0.028201174,-0.02468526,-0.01817016,-0.04785968,0.022322524,0.25871217,0.34654444,0.47320098,0.9210159,1.1934235,1.1538358,1.1584582,1.6132017,1.8547657,1.99653,1.9872835,2.4161148,2.677783,2.587524,2.8486242,2.8280768,2.8453112,2.8810222,2.843999,2.9476833,2.9680653,3.02703,3.417823,3.6338427,4.1631794,4.053788,4.1677194,4.3144193,4.7056346,4.6843834,4.514783,4.4784527,4.3661613,4.4113874,4.6739407,4.468954,4.445781,4.638318,4.6288695,4.4189186,4.3515635,4.5089645,4.3965755,4.424105,4.381736,4.4138794,4.370461,4.4834695,4.556074,4.8810253,4.617576,4.468153,4.5326095,4.8491926,5.066868,4.916899,4.969746,4.748789,4.5614724,4.5470157,4.533739,4.4534807,4.463416,4.730598,4.7991943,4.7926693,4.7580338,4.7373047,4.672169,4.556221,4.4776573,4.556984,4.5229616,4.5106454,4.507597,4.507188,4.532366,4.218046,4.2731256,4.3617644,4.5997534,4.2118044,4.243601,4.080223,3.780168,4.037783,4.204249,4.2561812,4.386208,4.422845,4.4730625,4.5131526,4.5877714,4.585883,4.5513754,4.659541,4.73835,4.7554274,4.6723337,4.8286757,4.685845,4.7365026,4.595517,4.743009,4.6168365,4.720064,4.7708015,4.786337,4.8151517,4.8512206,4.776497,4.8133345,4.7968836,4.58406,4.1829805,3.9096518,3.6838531,3.3971417,3.2166288,2.922859,2.6623712,2.3907623,2.1469216,1.8365304,1.5047975,1.7332126,1.5480876,1.6423632,2.1913924,2.4446547,2.689815,2.9831138,2.9634335,3.2500458,3.7767186,3.661086
+-0.5460086,-0.6490318,-0.65626657,-0.7087107,-0.82825494,-0.8965374,-0.97395897,-1.0197824,-1.0597973,-0.68127,-0.28977466,-0.40018684,-0.5003606,-0.4408226,-0.40677953,-0.49972093,-0.60641295,-0.71209973,-0.80580056,-0.8655106,-0.9196386,-0.51600134,-0.049334418,-0.150065,-0.20315026,-0.22463934,-0.32201105,-0.3738416,-0.3868752,-0.47350457,-0.54946864,-0.65165037,-0.74205893,-0.7857864,-0.21241985,0.08414464,0.3175923,0.57920074,0.14892197,-0.10711035,-0.20274903,-0.31114888,-0.44760463,-0.54601806,-0.6164203,-0.6782103,-0.7079755,-0.74428725,-0.77613866,-0.5961717,-0.430091,-0.5656227,-0.63470364,-0.6289469,-0.4547925,-0.48664865,-0.58594847,-0.67049193,-0.72984684,-0.7972236,-0.8706331,-0.93488693,-0.9783068,-1.0539159,-1.2020329,-1.2457818,-1.2760103,-1.2546914,-1.2951984,-1.3210697,-1.3404684,-1.3703496,-1.4089072,-1.4053342,-1.4154646,-1.4704401,-1.4557893,-1.5168285,-1.3742174,-1.3259267,-1.3691838,-1.4600809,-1.4916482,-1.5272527,-1.5538515,-1.6027603,-1.6582992,-1.6545898,-1.6986125,-1.7404757,-1.7719872,-1.8112259,-1.8256633,-1.8510003,-1.8731632,-1.8877103,-1.9071808,-1.9232454,-1.9431189,-1.9571632,-1.9620506,-1.9840915,-1.9669999,-1.9994192,-2.0425768,-2.0610023,-2.0667658,-2.0617907,-2.0621367,-2.0748715,-2.0941231,-2.106451,-2.1153908,-2.1622076,-2.2058263,-2.173819,-2.1993763,-2.2234244,-2.246651,-2.2762508,-2.2784832,-2.2836237,-2.3113117,-2.3117194,-2.357198,-2.3853712,-2.3374772,-2.3604364,-2.3697612,-2.3887978,-2.4064548,-2.4296126,-2.45584,-2.4784691,-2.4632835,-2.4637856,-2.4835308,-2.517182,-2.5404663,-2.563232,-2.591526,-2.5780058,-2.5777953,-2.5651062,-2.3927655,-2.4201846,-2.4662755,-2.4744353,-2.459569,-2.4819248,-2.504863,-2.509582,-2.5176334,-2.5312972,-2.5603127,-2.5685418,-2.5555973,-2.5970924,-2.6089027,-2.6019762,-2.6001642,-2.6408682,-2.6525927,-2.5880146,-2.5974064,-2.6807892,-2.6334295,-2.6559603,-2.671791,-2.646832,-2.6141872,-2.6390228,-2.6581178,-2.6710942,-2.7062943,-2.723876,-2.7159345,-2.7470465,-2.743596,-2.7430563,-2.7432501,-2.689104,-2.6987567,-2.7087994,-2.7440755,-2.5229945,-2.398511,-2.3979015,-2.4278946,-2.4576569,-2.486691,-2.4806275,-2.4995847,-2.498714,-2.5332427,-2.539172,-1.2455055,-0.20576406,0.21031085,0.626554,0.3336998,0.021572437,-0.06366907,-0.2324785,-0.32270104,-0.44576812,-0.5328589,-0.52943677,-0.38492662,-0.54118526,0.46717578,0.48738945,0.4379989,0.5716145,0.5340142,0.3708268,0.25439537,0.14543639,0.057036567,0.059863236,-0.050182354,-0.213186,-0.26591858,-0.32398796,-0.36391157,-0.38800335,-0.41944078,-0.4610235,-0.4941072,-0.47334376,-0.44350064,-0.40269646,-0.15154621,0.39183432,0.35870197,0.19461311,0.35462636,0.5337097,0.58017373,0.5653852,0.6509013,0.719898,0.7075755,0.7664741,0.7514916,0.80992776,0.86506265,0.8235079,0.7224119,0.76603144,0.87419975,1.1583515,1.2101033,1.6656833,1.5127954,1.4629934,1.576436,1.8230681,1.6645746,1.6139925,1.5676873,1.8511143,2.1230705,2.1523645,2.2236423,2.332995,2.4349687,2.433672,2.5083418,2.662634,2.6349406,2.556714,2.6432748,2.589625,2.6351123,2.597135,2.8524625,3.1711483,3.5609741,3.3994837,3.6199944,3.7922077,3.5893376,3.2103877,3.3159797,3.0635364,2.5619807,2.636842,2.8847346,3.0965168,3.2033072,3.3048158,3.517908,3.8253121,3.936891,3.9663086,4.0022645,4.0663033,3.9273105,3.80973,3.8802423,3.9366975,3.9979248,4.012597,3.9996176,3.905691,3.9738898,4.125325,4.0681663,3.88202,3.8247285,3.719696,3.182145,1.8608991,2.3463912,1.9142574,1.2924972,1.5659945,1.9832375,2.2705722,2.3400419,2.714561,2.8730578,3.3318596,3.3925886,3.12289,2.6870952,2.365941,2.5800266,2.934649,3.1754947,3.3110273,3.6349864,3.6043463,3.6592982,3.7085652,3.6486669,3.3072426,3.4400673,3.4262676,3.295309,3.1969335,2.9456487,1.6853248,0.88594526,0.66734874,0.4961574,0.4096081,0.2991284,0.26934212,0.25991648,0.21379724,0.1544215,0.16448204,0.7542887,0.9412067,0.82619315,0.83570683,0.8485241,0.807646,0.83778834,0.91946685,0.75798166,0.84696424,0.7552899
+0.54889613,0.5516111,0.3530081,0.17243329,0.054673206,-0.18177764,-0.28521776,-0.2643792,0.56173635,1.119179,0.7444207,0.4297049,0.25048617,0.34259918,0.3738478,0.25647086,0.11001593,-0.056529965,-0.15001917,-0.21557036,-0.23167393,0.9570631,1.1017421,0.77878094,0.7191898,0.80790806,0.68320036,0.5293174,0.3886137,0.31017652,0.29806063,0.18044686,0.050364602,-0.09697592,-0.06337471,0.31293935,0.5379286,0.38294163,0.14499475,0.018938947,-0.074586034,-0.14031419,-0.20613974,-0.2514585,-0.24538265,-0.21701084,-0.23887481,-0.27842027,-0.36591163,-0.32734776,-0.102917135,0.008261714,0.031541396,0.21928982,0.39688942,0.26197916,0.060319368,-0.07956737,-0.15996018,-0.22085582,-0.2713826,-0.34096932,-0.40642607,-0.42887124,-0.4704762,-0.5397125,-0.56346446,-0.5743117,-0.61412907,-0.6653556,-0.6758949,-0.65639615,-0.6016561,-0.646647,-0.667784,-0.58747244,-0.6676091,-0.43384227,-0.5254562,-0.6026976,-0.6564815,-0.73606896,-0.77227867,-0.8411874,-0.87305504,-0.84428513,-0.8601315,-0.88438237,-0.93764436,-1.0098125,-1.0264757,-1.0403621,-1.0579773,-1.0916649,-1.1216435,-1.1542368,-1.179712,-1.1847026,-1.2128246,-1.2416675,-1.2822499,-1.2607982,-1.264709,-1.260628,-1.278621,-1.3658042,-1.4161769,-1.4508405,-1.5110993,-1.5212464,-1.549258,-1.5654957,-1.6143612,-1.6250477,-1.6084151,-1.6403196,-1.6607678,-1.7384105,-1.8238248,-1.8382483,-1.8681531,-1.9037648,-1.9250073,-1.9538972,-1.9601495,-1.9850109,-1.9871476,-1.9820809,-1.990848,-1.9969969,-1.9883392,-1.9965808,-1.9965503,-2.0151446,-2.0437303,-2.080052,-2.0872912,-2.1366205,-2.1704082,-2.160807,-2.1776128,-2.177178,-2.2025168,-2.2118082,-2.2488582,-2.264522,-2.3156726,-2.33099,-2.345428,-2.3615954,-2.3883018,-2.443054,-2.4054327,-2.418314,-2.4286497,-2.4601479,-2.436241,-2.4212446,-2.4893422,-2.4984243,-2.481899,-2.4775817,-2.4875655,-2.5121827,-2.4972758,-2.3552873,-2.2391305,-2.2593327,-2.3215246,-2.3544974,-2.4070072,-2.4160419,-2.4287477,-2.5073078,-2.326651,-2.3686395,-2.4531975,-2.4924178,-2.4499934,-2.4740903,-2.4992523,-2.5199308,-2.5386338,-2.5304575,-2.2666764,-1.5628002,-1.1533287,-1.131708,-1.2493685,-1.3860607,-1.4507611,-1.4976206,-1.579103,-1.5704491,-1.6216342,-1.6265194,-0.49271104,0.5934019,1.5852495,1.768281,1.117397,0.82551026,0.56130743,0.37444437,0.2835739,0.20449185,0.18632306,0.4176173,0.45725217,0.9357579,2.0888348,1.300592,1.784142,1.4627105,1.4039289,1.1488626,1.0147794,0.8859215,0.76782393,0.6900587,0.56172943,0.43353736,0.36371362,0.29445857,0.2495919,0.2288873,0.1976632,0.20591761,0.19589062,0.71919346,0.84702015,0.91917,1.0407945,1.9068099,1.5135962,1.194016,1.6724826,1.8552071,2.118311,2.3926969,3.150682,2.816669,2.9999905,3.1921616,3.34392,3.4385767,3.4123516,3.335339,3.1611795,3.090982,3.2192798,3.3084064,3.3334374,3.2246227,2.3215885,1.6409798,1.636968,1.6995798,1.8034346,2.5842738,1.8398364,2.227434,2.5354354,2.7779362,2.7713373,2.6274972,2.8750575,3.1606455,3.3935568,3.5442495,3.6020262,3.6355953,3.5546308,3.4858613,3.485781,3.4521966,3.5822248,3.7806923,4.027482,3.536988,3.30141,3.5311482,3.8547072,3.5182087,3.477883,3.4177885,2.7511163,2.8410072,3.1571126,3.4156609,3.5660608,3.6163874,3.6655653,4.041651,3.7131119,3.893237,3.5751019,3.7664013,3.4503798,3.5298681,3.6221693,3.5943131,3.5790606,3.535719,3.4304721,3.246924,3.0879438,2.9134078,2.947473,2.841539,2.3617454,3.0552871,2.9915538,2.7084358,2.175119,2.7654762,1.888515,2.0640583,2.2543852,2.4402397,2.577585,2.76837,2.670453,2.8359003,2.9559493,3.545373,3.33926,2.6415699,2.8018255,3.2591152,3.575976,3.6744525,3.677267,3.8144915,3.8575866,3.8194551,3.7598848,3.7918923,4.065238,3.5920296,3.8403537,3.765376,3.576638,3.1907225,2.6685412,2.1115808,1.7393417,1.4889824,1.2323892,1.0427825,0.84673154,0.7631538,0.701898,0.5764054,1.6975112,1.4740926,1.432224,2.0210884,2.1741307,2.3490605,2.6972973,2.7630005,2.6594234,2.417573,1.9810834
+-0.69544137,-0.7016138,-0.5995158,-0.5918291,-0.58182645,-0.59110916,-0.6680987,-0.8225013,1.1675155,0.6937914,0.47185606,0.24149393,0.118027285,-0.052016977,-0.12412645,-0.16749242,-0.26729825,-0.40818706,-0.57377934,-0.7394615,-0.8352419,-0.6530491,-0.13597089,-0.45345873,-0.6016041,-0.69236326,-0.3775288,0.28504223,-0.15000139,-0.44180688,-0.60879165,-0.8709768,-1.0370003,-1.2035162,-1.2968578,-1.3222302,-1.2400122,-1.247781,-1.3759562,-1.45368,-1.524822,-1.6149946,-1.6878393,-1.749009,-1.794674,-1.8525088,-1.9150443,-1.9811683,-2.022343,-2.0084705,-2.0793476,-2.0920525,-2.15724,-2.1685884,-2.157422,-2.1747196,-2.19805,-2.238965,-2.2476902,-2.275672,-2.3053722,-2.345432,-2.3747876,-2.404652,-2.4635851,-2.4717155,-2.5003655,-2.5205805,-2.5473309,-2.5454998,-2.5659432,-2.5938706,-2.5691094,-2.584385,-2.5678415,-2.533722,-2.539862,-2.6338592,-2.621546,-2.6558585,-2.6240783,-2.6488996,-2.6616354,-2.6699896,-2.6800652,-2.6916642,-2.7071862,-2.7221503,-2.7488182,-2.7726748,-2.793034,-2.8009934,-2.8100705,-2.82998,-2.8423777,-2.8544412,-2.8573503,-2.8640378,-2.8787048,-2.8847384,-2.8843856,-2.8793364,-2.8698971,-2.8753996,-2.885037,-2.9078631,-2.9192462,-2.9354963,-2.9403098,-2.9543142,-2.9496298,-2.9613626,-2.9533541,-2.958024,-2.970931,-2.9821095,-2.9994721,-3.0314903,-3.0775974,-3.1186705,-3.1285875,-3.1317518,-3.144303,-3.1521769,-3.1534657,-3.1521356,-3.1685224,-3.178008,-3.1716723,-3.1631174,-3.1583645,-3.1637602,-3.171115,-3.1720905,-3.1683066,-3.1718073,-3.1773782,-3.1807938,-3.183668,-3.1860132,-3.196127,-3.2006304,-3.205924,-3.220374,-3.2194667,-3.220049,-3.2266507,-3.2339797,-3.2443602,-3.2460835,-3.237054,-3.2535448,-3.2504177,-3.2699087,-3.284011,-3.2778945,-3.2744646,-3.295565,-3.293694,-3.263649,-3.2582924,-3.267315,-3.2708495,-3.2759733,-3.2981467,-3.2896028,-3.3229935,-3.3336668,-3.3196564,-3.304541,-3.2866476,-3.2831187,-3.3116975,-3.3321562,-3.3028667,-3.3288627,-3.3389392,-3.3429832,-3.3154402,-3.305379,-3.3094733,-3.3252206,-3.3371718,-3.3276978,-3.3399997,-3.3991199,-3.3529086,-3.3350496,-3.339912,-3.352137,-3.3425658,-3.336292,-3.3433132,-3.3460536,-3.3685446,-3.3712125,-3.3593903,-3.2265682,-3.013218,-2.3622706,-2.334914,-2.4054787,-2.4994226,-2.5500097,-2.5849438,-2.6112483,-2.622294,-2.6023855,-2.6558075,-2.7056952,-1.0359465,-0.3925323,-0.72227365,-0.5971344,-0.8836913,-1.0067526,-1.105001,-1.1978934,-1.2645081,-1.3220174,-1.380331,-1.4254441,-1.4541825,-1.482628,-1.5154884,-1.5551313,-1.5894077,-1.604128,-1.6171453,-1.6428468,-1.6686552,-1.6921078,-1.7232921,-1.5076098,-0.79960227,-1.0052539,-1.0990329,-1.1344011,-1.204149,-1.119421,0.12737478,-0.1956848,-0.41694936,-0.575505,-0.6608671,-0.78872484,-0.8046862,-0.8488035,-0.9331082,-0.9500387,-0.9647364,-0.58660144,-0.11280817,-0.15762356,0.36259007,-0.07983873,-0.4290372,-0.54838216,-0.43696004,0.67246175,0.10847893,-0.031808358,0.014794212,0.05390146,-0.062224958,-0.16926253,-0.054039564,0.5315765,0.069362074,0.035025064,-9.370223e-05,-0.0782488,-0.16640444,-0.25069112,-0.32678187,-0.10548663,-0.35290498,-0.42132008,0.13057895,0.8634937,0.33088955,0.3532902,1.1059148,1.1137332,1.121791,1.0990455,1.0283114,0.6660262,0.3915645,0.3063352,0.23402585,0.20450984,0.41156498,0.80258894,0.9551081,0.76463705,0.6511676,0.80033416,0.52671397,0.30875695,0.24203943,0.14839207,0.1001035,0.084313154,0.031959888,-0.031973403,-0.09553571,-0.07690251,0.56146,0.370372,0.14555518,0.13100527,0.9395237,0.86540514,0.54468536,1.0325212,0.7544125,0.40755838,0.25458187,0.17112347,0.043001805,-0.02009077,0.61727595,0.60299337,0.28962216,0.7408015,0.8232783,0.5122392,0.22310184,0.1317101,0.06952736,0.040336225,-0.044374894,-0.10294847,-0.12892392,-0.1599455,-0.20656288,-0.24847667,-0.021855038,0.039294917,-0.07059972,-0.14907102,-0.20048095,-0.26218235,-0.29531175,-0.34112865,-0.37364802,-0.4370586,-0.5123291,-0.5411046,-0.57117116,-0.6583084,-0.69285774,-0.81043404,-0.30757642,0.7699837,0.2896707,0.027739007,0.35219017,0.09990345,0.24110062,0.035709906,-0.09161684,-0.21711579,-0.3515975
+-0.41489536,-0.32700497,-0.36748418,-0.41395047,-0.44119143,-0.52563304,-0.6958385,-0.6838682,-0.5264297,0.08534831,0.23170687,-0.016979765,-0.14711075,-0.3510307,-0.45149708,-0.5398137,-0.68948776,-0.8553198,-1.0127,-1.1451128,-1.2014111,-1.1860117,-1.1522427,-1.1984643,-1.228761,-1.272244,-1.2866054,-1.1967589,-1.2628543,-1.2998923,-1.3606429,-1.3967731,-1.4421827,-1.4896599,-1.5149709,-1.4705138,-1.2620373,-1.2311379,-1.311136,-1.3695925,-1.4038628,-1.4381428,-1.4859893,-1.505924,-1.5283976,-1.5536005,-1.5795765,-1.6336207,-1.6690832,-1.695262,-1.7120385,-1.730979,-1.7466406,-1.7596962,-1.7461847,-1.7633296,-1.775545,-1.7886338,-1.7972116,-1.8185685,-1.8317087,-1.8563325,-1.8906049,-1.9246223,-1.9611177,-1.9599267,-1.9782907,-1.9936267,-2.0064933,-2.0211565,-2.02706,-2.0581522,-2.025197,-2.0453467,-2.0579405,-2.0615351,-2.0692835,-2.0819056,-2.0970526,-2.1346517,-2.0942502,-2.1108284,-2.1254816,-2.1504297,-2.1512094,-2.1665518,-2.1717172,-2.175495,-2.1884527,-2.199491,-2.2097793,-2.2006924,-2.214097,-2.222496,-2.230245,-2.2384753,-2.2440796,-2.2421288,-2.248359,-2.2540464,-2.2409558,-2.2552867,-2.247631,-2.242768,-2.2394876,-2.2419364,-2.2518165,-2.261046,-2.2669296,-2.2754383,-2.2720492,-2.2659624,-2.2725306,-2.2765636,-2.2830477,-2.271422,-2.2861443,-2.2841015,-2.294689,-2.3095703,-2.3110104,-2.3272688,-2.3530505,-2.360896,-2.356213,-2.3581712,-2.3497248,-2.3595872,-2.3702693,-2.3715396,-2.3574724,-2.3678937,-2.3856776,-2.3855896,-2.37932,-2.3698692,-2.3743877,-2.3780308,-2.3765879,-2.3725252,-2.383009,-2.3892696,-2.3890364,-2.395393,-2.404118,-2.407454,-2.4101405,-2.4058914,-2.4270487,-2.4334664,-2.4257443,-2.4308171,-2.433457,-2.4405632,-2.449586,-2.4511273,-2.4359632,-2.4558144,-2.4654808,-2.4472976,-2.4480848,-2.4615636,-2.4643013,-2.462737,-2.4626565,-2.437737,-2.4637299,-2.478167,-2.4768772,-2.467411,-2.4569619,-2.448735,-2.499847,-2.499146,-2.4925444,-2.498697,-2.5196357,-2.5133586,-2.490717,-2.4860754,-2.492248,-2.5194783,-2.524044,-2.5150087,-2.5089054,-2.50335,-2.5181954,-2.496453,-2.5111449,-2.5200758,-2.5089524,-2.4945595,-2.502445,-2.484427,-2.486113,-2.5281854,-2.526607,-2.4260812,-2.1796813,-2.0219166,-2.0574634,-2.1347992,-2.192502,-2.2173529,-2.234096,-2.2332008,-2.2152538,-2.185431,-2.1806123,-2.210816,-0.5149008,0.41971117,0.16634189,0.23430206,0.013850499,-0.123470545,-0.23966242,-0.3396814,-0.43456623,-0.47520947,-0.52339834,-0.5811772,-0.6522965,-0.705465,-0.77757657,-0.83810645,-0.87116647,-0.92272633,-0.95427465,-0.9540615,-0.94149595,-0.9834467,-0.9905044,-0.66640925,0.77909184,0.5622951,0.36968005,0.20625801,0.10263291,0.043942545,0.42096525,0.3441066,0.17357562,0.08415897,0.010300387,-0.03792062,-0.09423937,-0.1504788,-0.18792564,-0.21283005,-0.2080948,-0.18227498,0.15788874,0.24083723,0.105759025,-0.023348462,-0.1377115,-0.19588585,-0.15582187,0.98835015,0.80468786,0.5998175,0.480147,0.38319772,0.30192846,0.23170613,0.22383349,0.9325882,0.9686285,0.67373466,0.5055439,0.40212628,0.33555093,0.46332115,0.96279204,0.71519125,0.5895469,0.49163413,1.1307008,1.3767422,1.0176208,1.2611036,1.4278033,1.8899683,1.7273362,2.0386763,2.0758796,1.7018349,1.5902996,1.5014889,1.4385022,1.383198,1.3796089,1.8211927,2.0816696,1.7694588,2.0456033,2.1645985,1.8136156,1.7015281,1.6351979,1.596643,1.5499465,1.4996092,1.4182754,1.3359079,1.2544584,1.3576773,1.9881041,1.600064,1.4142624,1.5686402,1.7515537,1.6397549,1.3912456,1.7471887,1.8439251,1.5015526,1.3376155,1.2340679,1.1195507,1.1492686,1.8202513,1.8582239,1.59502,1.7370183,1.7872512,1.5313494,1.3640462,1.3096257,1.2670743,1.2536654,1.2310648,1.1093817,1.0339264,0.98006797,0.9156023,0.83504844,1.0296476,1.1754401,1.0203058,0.9605376,0.8912674,0.8320303,0.7832941,0.73404384,0.68548673,0.61200255,0.52625775,0.47841787,0.44303364,0.37243342,0.30938134,0.2370563,0.42005265,0.8671992,0.72264975,0.59723157,1.1480918,1.1800749,0.98441577,0.8371136,0.739355,0.6602231,0.5506345
+-0.61224663,-0.64549744,-0.70258,-0.770651,-0.8387145,-0.88745403,-0.8857775,-0.44210148,-0.21808013,0.12714197,-0.21212667,-0.43557012,-0.57144755,-0.6712172,-0.77064157,-0.83464813,-0.9126841,-0.977087,-1.0388268,-1.068092,-1.0794239,-1.0816915,-1.1162169,-1.1548028,-1.1669335,-1.1759815,-1.1902976,-1.2016082,-1.1913424,-1.1985121,-1.2231755,-1.2529638,-1.2565302,-1.2603799,-1.2534993,-1.1498524,-1.1626074,-1.2352943,-1.2356235,-1.2208753,-1.238877,-0.52573854,-0.5999316,-0.73966634,-0.8257406,-0.8734739,-0.9017906,-0.92987597,-0.9435381,-0.9716189,-0.9913448,-1.016783,-1.0359292,-1.0536957,-1.0497472,-1.0784496,-1.0845089,-1.1040698,-1.122649,-1.1301067,-1.1296704,-1.1383113,-1.1390561,-1.1531911,-1.1880333,-1.2070243,-1.201427,-1.1852088,-1.1994357,-1.2133381,-1.2069631,-1.2184792,-1.2440519,-1.248694,-1.2340617,-1.2562724,-1.2730641,-1.2840452,-1.29215,-1.3495009,-1.4518776,-1.5240664,-1.4917054,-1.4606853,-1.4796484,-1.5052078,-1.5201249,-1.5587869,-1.5846561,-1.5744959,-1.5244774,-1.5170988,-1.5192928,-1.5361028,-1.5398526,-1.5342116,-1.508558,-1.4981005,-1.4930463,-1.490617,-1.4999741,-1.4876002,-1.4759164,-1.4630948,-1.4885893,-1.5185314,-1.5215685,-1.513018,-1.4947616,-1.484649,-1.4871275,-1.5031873,-1.5517464,-1.6028494,-1.5785111,-1.565629,-1.60938,-1.6586252,-1.6744993,-1.6822879,-1.6876245,-1.6889576,-1.6963828,-1.6784716,-1.6464013,-1.6185801,-1.6050327,-1.5818812,-1.566239,-1.5488279,-1.5329912,-1.5327294,-1.543906,-1.5452609,-1.5512024,-1.5751799,-1.5466422,-1.5196408,-1.5058618,-1.5118297,-1.5329847,-1.5453415,-1.5456443,-1.538166,-1.5285558,-1.5273376,-1.4997413,-1.4852045,-1.4720432,-1.4670175,-1.4788753,-1.4982662,-1.502353,-1.4796616,-1.4451951,-1.4170442,-1.4045217,-1.390304,-1.3718083,-1.3732013,-1.4015316,-1.4098151,-1.4122331,-1.4142122,-1.3884959,-1.379035,-1.3818667,-1.3763528,-1.3530034,-1.3415163,-1.3872998,-1.4445802,-1.4943897,-1.4881089,-1.4439543,-1.4456863,-1.5210955,-1.5648242,-1.749299,-1.8947012,-1.7899821,-1.7442791,-1.6932275,-1.6587999,-1.6137567,-1.598371,-1.5705594,-1.5335817,-1.5325842,-1.5549073,-1.5782663,-1.5179176,-1.474721,-1.4287337,-1.3879962,-1.3605502,-1.3385811,-1.277605,-1.107826,-0.69134295,-0.8345268,-0.9799304,-1.1235964,-1.1882418,-1.1494205,-1.0708691,-1.0749501,-1.0864644,-1.0626562,-1.0141928,-0.049551096,-0.17274836,-0.13360342,-0.3093391,-0.4924278,-0.5941573,-0.65667915,-0.7098094,-0.7347113,-0.7553252,-0.79157495,-0.82047033,-0.831848,-0.8574388,-0.87197673,-0.906634,-0.9150891,-0.90390486,-0.89380366,-0.9057939,-0.9554431,-0.94409573,-0.89562094,-0.5588857,0.24182574,-0.23946668,-0.44578192,-0.5873746,-0.63167894,-0.13672826,0.18821429,-0.2855692,-0.44967043,-0.5231206,-0.60124266,-0.6873356,-0.72510624,-0.7309508,-0.74986905,-0.7629608,-0.79129124,-0.6911383,-0.31139854,-0.40365022,-0.45953184,-0.6090368,-0.6923571,-0.669817,-0.4903304,0.54047686,-0.1007411,-0.32454592,-0.3906353,-0.44260406,-0.5692585,-0.5937465,-0.25925878,0.3859185,-0.15995161,-0.34518653,-0.48152694,-0.56094027,-0.6061096,-0.490149,-0.41534746,-0.5299824,-0.6021992,-0.57659936,-0.4887666,0.22119538,-0.10821512,0.037680585,0.23763333,0.961258,0.68672717,0.4555906,0.40469387,-0.0011364967,-0.2620727,-0.37649757,-0.40641454,-0.43357265,-0.42361724,0.4129888,0.9674115,0.43459082,0.6614083,0.7660802,0.2863921,-0.06684761,-0.2651217,-0.36694968,-0.43723798,-0.50126714,-0.56360596,-0.5875737,-0.5762975,-0.5501778,0.15438578,0.0057099983,-0.25407434,0.64385545,0.4543295,0.40720508,-0.011777654,0.24200378,0.2349373,-0.08370663,-0.30041042,-0.43905276,-0.48753268,-0.27343315,1.1018195,0.86057436,0.15204574,0.4436075,0.71850884,0.11430895,-0.27424425,-0.42535192,-0.47774982,-0.21111226,-0.021314185,-0.28619573,-0.4429475,-0.5074417,-0.56145227,-0.5871429,-0.22641553,-0.3744751,-0.52237797,-0.6133742,-0.6578207,-0.67413306,-0.70163935,-0.7502704,-0.7574805,-0.76579916,-0.78273404,-0.7817387,-0.7866309,-0.7890887,-0.7921917,-0.8068582,0.019538794,-0.055118214,-0.38989776,-0.53456175,-0.3260367,-0.49317563,-0.6052538,-0.70002156,-0.75699186,-0.7891442,-0.830341
+1.5210167,2.0799978,2.4572635,2.6515055,2.8834424,2.8922253,2.780027,2.4258595,2.3037193,2.473363,2.6240423,2.68473,2.8238566,3.0075173,3.0291114,2.8964844,2.9198227,2.7593403,2.2643754,1.4563141,0.97683835,0.73925525,0.73432595,0.6434986,0.7258569,0.8569721,0.9784951,0.9661622,0.8967074,0.7783521,0.8143438,0.85359615,0.7140151,0.60247743,0.51162845,0.38767073,0.19298802,0.10010441,0.13260494,0.20923607,0.30983973,0.6692587,0.79783374,0.7548702,0.6913515,0.5552241,0.33164403,0.17385776,0.3238551,0.5348784,0.6956196,0.9319428,0.95433366,0.7886599,0.49751747,0.33876055,0.36431062,0.6342753,0.801029,0.6820662,0.46867716,0.34610987,0.32683176,0.20498909,0.07484032,-0.030181002,-0.1039944,-0.17354815,-0.09307779,0.27571204,0.75790656,1.0442677,0.7379714,0.6441231,0.9025649,0.86492413,0.7928451,0.6830152,0.67316115,1.3022046,0.74128234,0.48652184,0.4092462,0.4259447,1.0465947,0.8743721,0.65556014,0.43197152,0.27870303,0.1616505,0.050245192,-0.008528095,-0.031678643,-0.0638722,0.09544818,0.53383106,0.5808656,0.39853793,0.5736281,0.8406129,0.7717254,0.62575877,0.6394155,0.60289025,0.4244607,0.86120427,1.0239229,1.0076983,0.74508786,0.7483262,0.67495763,0.49116433,0.44778484,0.575071,0.43715173,0.26653504,0.33325315,0.4594227,0.2951357,0.15906928,0.048591677,-0.0035202764,0.010780234,0.054674316,0.7485919,0.54640466,0.3253561,0.20293298,0.13360955,0.077483565,0.17550677,0.5364245,0.56529236,0.3137129,0.17818578,0.07270564,-0.0035390817,-0.07114375,-0.13199303,-0.17210753,-0.16917948,-0.18705942,-0.19829158,-0.20206638,-0.15303811,-0.17881085,-0.21278886,-0.22633477,-0.22714397,-0.24001049,-0.18134934,-0.22498333,-0.22836012,-0.21030277,0.37765905,0.6877667,0.6243341,0.5733341,0.58916414,0.5983523,0.60020137,0.6139964,0.44483733,0.29210845,0.31491452,0.25505334,0.15132117,0.05990402,0.014390562,0.5087184,0.8724797,0.77300286,0.81428087,0.72847164,0.65259457,0.62879807,0.6516435,0.57726645,0.48063803,0.32796645,0.3004027,0.271085,0.2127031,0.2465051,0.43961027,0.44610855,0.55488974,0.6098934,0.6064969,0.88549626,1.1347378,1.1295742,1.0949911,1.2483333,1.5568612,1.8771126,2.3905466,2.1784434,1.837704,1.6212919,1.4589938,1.3922036,1.680004,1.7063428,1.8081313,1.9768915,1.9602818,1.6824024,1.6330048,1.7514504,1.4298034,1.3700656,1.5753567,1.7781405,1.8752735,1.9748578,1.7217014,1.4071219,1.3449259,1.3212467,1.2814627,1.1596434,0.9721029,0.93617195,0.95714486,0.9487785,0.96134716,1.1018519,1.3582515,1.8125145,2.215431,2.726672,3.1642382,3.4980023,3.674499,3.8168683,3.893529,3.9831243,4.0158057,4.085172,4.2205534,4.2061925,4.2807693,4.2938957,4.262973,4.2902274,4.2691803,4.259758,4.3002167,4.324731,4.329528,4.344864,4.37661,4.348755,4.333557,4.320323,4.307035,4.310751,4.3121853,4.3144445,4.323848,4.332488,4.292865,4.280974,4.254033,4.2974825,4.3164434,4.3349466,4.317117,4.3162465,4.2755547,4.2725053,4.30328,4.289138,4.2879314,4.3177214,4.3354135,4.3343654,4.320623,4.3197813,4.3314157,4.2935047,4.310013,4.272442,4.2859545,4.303111,4.275032,4.276535,4.2695427,4.289959,4.2989144,4.277646,4.2484655,4.280452,4.309328,4.330889,4.3148212,4.2880163,4.345381,4.32069,4.3114166,4.278034,4.2956495,4.3020186,4.254016,4.256152,4.251092,4.2492356,4.3349924,4.2805557,4.2391176,4.308548,4.3021746,4.2827754,4.283479,4.2889175,4.280298,4.272002,4.29263,4.2372437,4.23388,4.2762413,4.2789903,4.303916,4.2432466,4.2934947,4.269409,4.23387,4.2303724,4.271985,4.2561374,4.224013,4.2919664,4.233557,4.2038264,4.2120132,4.2365894,4.206227,4.242065,4.1857815,4.2448173,4.199981,4.2586336,4.162512,4.2436147,4.209002,4.1927776,4.2321224,4.2181387,4.170737,4.192663,4.153115,4.1463294,4.1526675,4.217678,4.2467065,4.2388697,4.1786776,4.1989965,4.191546,4.213726,4.185612,4.1979604,4.243671,4.266596
+-0.63690674,-0.7006309,-0.70098495,-0.38187382,-0.15569474,-0.2561187,-0.40926433,-0.48300356,-0.52747405,-0.581674,-0.6034254,-0.6357272,-0.6688944,-0.31667057,-0.058760595,-0.2237398,-0.33953214,-0.43910566,-0.5173355,-0.588222,-0.6471009,-0.6770365,-0.7150053,-0.78197026,-0.82532144,-0.789999,-0.7918585,-0.82272327,-0.8202095,-0.5616886,-0.5755099,-0.6368455,-0.69271404,-0.74006134,-0.7098817,-0.7048961,-0.7336459,-0.7759013,-0.83834946,-0.8388302,-0.83056986,-0.86049885,-0.88580143,-0.9125835,-0.94081134,-0.9262934,-0.946107,-0.93738055,-0.2900938,0.060524892,0.070562646,0.1592217,-0.02248938,-0.21184935,-0.31251267,-0.3682968,-0.45660377,-0.540292,-0.58861846,-0.6727221,-0.7071254,-0.7205518,-0.7607306,-0.834896,-0.8671653,-0.89556754,-0.96552336,-1.0118695,-1.1073403,-1.1043046,-0.7286506,-0.40269065,-0.5252018,-0.6000844,-0.68063545,-0.7700901,-0.76248646,-0.7820469,-0.10705583,0.22332303,-0.14406799,-0.15906797,-0.26469925,-0.3198282,0.13365416,0.09171732,-0.19538483,-0.32389086,-0.4509508,-0.5658568,-0.6176239,-0.6870998,-0.75277793,-0.8042847,-0.876101,-0.93611753,-0.93041897,-0.9790192,-0.9229913,-0.7698158,-0.76382524,-0.83804625,-0.93513644,-0.87568194,-0.9054862,-0.93761307,-1.0246766,-0.63598746,-0.45298263,-0.53648114,-0.66093373,-0.7785613,-0.74688494,-0.6759963,-0.7439265,-0.85515845,-0.942036,-1.0266055,-1.1188265,-1.2086267,-1.281489,-1.3637122,-1.3961928,-1.4584286,-1.4535639,-1.5152478,-1.5490699,-1.6012478,-1.6569325,-1.6756586,-1.7474761,-1.7732433,-1.8065516,-1.8689518,-1.9562469,-1.9790987,-2.030204,-2.0853436,-2.0984173,-2.1335244,-2.1762226,-2.2254062,-2.2560935,-2.259866,-2.2835917,-2.3016684,-2.3229764,-2.339068,-2.3893561,-2.415904,-2.4429522,-2.4504857,-2.4731607,-2.4752703,-2.4116101,-2.0417135,-1.8859966,-1.9488127,-2.0580928,-2.101887,-2.1002462,-2.169786,-2.1911273,-2.1872404,-2.2116313,-2.1904144,-2.2301874,-2.2739336,-2.3128223,-2.332769,-2.2217817,-2.2897258,-2.3065205,-2.2716067,-2.1987112,-2.077927,-2.0640554,-2.1450133,-2.2140527,-2.1972933,-2.2281268,-2.2546113,-2.2868023,-2.2955828,-2.2903814,-2.242949,-2.241597,-2.1719804,-1.755453,-0.7370627,-0.3938697,-0.527771,-0.51039606,-0.5691571,-0.64728355,-0.44875315,0.5195899,0.3504608,0.29663453,0.37631655,0.111213595,-0.065258905,0.47369903,0.3826792,0.17053975,0.046296526,-0.078013435,-0.050944056,0.21515974,0.47760236,0.352073,0.077783644,0.014254164,0.2633304,0.29858193,0.058250967,-0.059860345,-0.1286111,-0.13335131,0.094827324,0.15065382,-0.03349081,-0.11933805,-0.18967402,-0.22852173,-0.27258193,-0.2929278,-0.008588117,0.35274,0.19087909,0.058791418,0.10341467,0.21154116,0.2843761,0.22786371,0.20358507,0.38497946,0.8084634,1.0607966,1.0036587,0.90394115,0.8985716,1.0928488,1.3551462,1.4128232,1.5849463,1.7979409,1.8674614,2.1079798,2.2885525,2.4716089,2.628048,2.7821913,2.84955,2.9412766,2.99962,3.1055539,3.2429585,3.3195412,3.3600302,3.4613543,3.5059345,3.533812,3.5488505,3.5819535,3.6110027,3.6529615,3.697797,3.6519175,3.6759758,3.6907954,3.6911077,3.7306352,3.7406912,3.683468,3.7479494,3.8023992,3.7809849,3.7906406,3.8015347,3.8038335,3.8111722,3.8674674,3.863532,3.9331014,3.9136977,3.9068613,3.8998995,3.9061122,3.9081633,3.9126399,3.9629357,3.9955654,4.0666003,4.1442785,4.168648,4.141719,4.1220126,4.163922,4.1760545,4.1887627,4.108807,4.1251817,4.1288977,4.110082,4.1602516,4.0759726,4.052991,4.1030912,4.1368847,4.1275206,4.07872,4.0840125,4.1263943,4.1027675,4.024505,4.058133,4.070874,4.095443,4.085385,4.0735884,4.117432,4.2598696,4.204801,4.2158074,4.1704454,4.228947,4.195591,4.1813335,4.186421,4.2134485,4.2029223,4.2260804,4.1888943,4.208173,4.2632113,4.2672834,4.227331,4.178172,4.1220536,4.114946,4.15126,4.233268,4.1607957,4.229493,4.2597876,4.277006,4.2396975,4.3041368,4.1684666,4.1849947,4.257104,4.109024,4.1218867,4.1577287,4.0559845,4.0336866,3.9916973,4.163903,4.1387625,4.1001377,4.1477747,4.0636344,4.1128263,4.009794
+-0.53420985,-1.1627295,-1.3968681,-1.4673009,-1.4903501,-1.6259629,-1.668319,-1.6992695,-1.7801654,-1.872648,-1.9402518,-1.8357418,-1.8624057,-1.6127133,-1.4355768,-1.5226628,-1.5448681,-1.5927207,-1.6706296,-1.7449067,-1.7753408,-1.8736761,-2.0017848,-2.095233,-2.163827,-2.190259,-2.1671715,-2.2198591,-2.1373296,-2.1009705,-2.1814404,-2.179912,-2.219122,-2.260644,-1.7450233,-1.483407,-1.597764,-1.7710123,-1.9030273,-1.9618309,-2.043988,-2.04881,-2.072553,-1.924649,-1.139107,-0.32848698,-0.6660782,-0.99307156,-1.1731226,-1.3290551,-1.4406856,-0.79247105,-0.65264326,-1.0138549,-1.2089996,-1.3276812,-1.4846604,-1.6120261,-1.7033577,-1.7700102,-1.8288331,-1.8755562,-2.0077636,-2.116723,-2.1420958,-2.1748013,-2.294485,-2.4067018,-2.4818132,-2.4999106,-2.327417,-2.3252523,-2.3883247,-2.4297626,-2.4776442,-2.5288906,-2.5165684,-2.4987526,-1.8977139,-1.3631723,-1.506649,-1.7189763,-1.8518567,-1.9976454,-2.1040692,-2.2216115,-2.2258942,-2.26211,-2.3868654,-2.4978805,-2.5688844,-2.639196,-2.709836,-2.763774,-2.8123384,-2.8347754,-2.8613458,-2.8736777,-2.5902705,-1.9229482,-1.9248316,-2.084171,-2.182043,-2.2545366,-2.3397374,-2.4338918,-2.5038195,-2.5080216,-2.4905703,-2.5681918,-2.6228385,-2.6430554,-2.7140253,-2.7818193,-2.8000627,-2.820431,-2.856461,-2.881423,-2.9214354,-2.9463234,-3.0078218,-3.0754058,-3.0807734,-3.1199508,-3.1192613,-3.0917425,-3.0843856,-3.1569743,-3.1911304,-3.1836617,-3.177544,-3.1078784,-3.1274025,-3.118441,-3.1130576,-3.1861386,-3.2126374,-3.2403526,-3.26417,-3.2497492,-3.2111883,-3.2544584,-3.306461,-3.3359082,-3.3570795,-3.3703256,-3.345402,-3.358556,-3.394106,-3.3918989,-3.4111152,-3.4296324,-3.4131477,-3.392868,-3.4049044,-3.3665338,-3.3666391,-3.3523207,-2.9574072,-2.4068549,-2.5150337,-2.6224182,-2.663278,-2.7103367,-2.7483995,-2.7429671,-2.8035145,-2.8570526,-2.8588886,-2.9119911,-2.9119172,-2.874041,-2.9231746,-2.9482336,-3.000565,-2.9843094,-2.8987503,-2.9789915,-2.9594254,-2.9669313,-3.007666,-3.033101,-3.0590072,-3.1141453,-3.0637958,-3.09484,-3.0832424,-3.0896654,-3.0072403,-2.7685637,-2.6889343,-2.4418793,-1.2618291,-1.1665099,-1.4004768,-1.4417781,-0.99859315,-1.0882919,-1.2873669,-1.130922,-1.2278994,-1.4135842,-1.5474585,-1.3460696,-1.3560197,-1.5416672,-1.6624284,-1.6782839,-1.6462753,-1.5108365,-1.622276,-1.608609,-1.6033404,-0.75787103,-1.0946202,-1.347817,-1.43503,-1.4540802,-1.4933118,-1.4419334,-1.5489433,-1.5909762,-1.6427381,-1.6879803,-1.7291512,-1.7970098,-1.7715356,-1.7874238,-1.4399979,-1.5243071,-1.7389702,-1.7839792,-1.764243,-1.7761593,-1.8466418,-1.8612176,-1.6305451,-1.6805246,-1.7765894,-1.793181,-1.8701969,-1.9438114,-1.9710099,-1.9310281,-1.9256433,-1.9543649,-1.8896564,-1.8938166,-1.9405086,-1.7721996,-1.6436186,-1.4776407,-1.3239871,-1.235796,-1.171824,-1.0849032,-1.2385335,-1.2484531,-1.0539693,-1.0807319,-0.9744996,-0.89031875,-0.9532852,-0.9140829,-0.9172141,-0.9046178,-0.9493052,-1.0042611,-1.027081,-0.9980436,-0.98198724,-1.0009356,-1.0514345,-1.0258029,-1.000422,-0.925672,-0.95090544,-0.9826548,-0.77117074,-0.69578326,-0.6951324,-0.6339019,-0.64586663,-0.693703,-0.71552485,-0.8533437,-0.7332117,-0.6680768,-0.62529963,-0.62887424,-0.62030613,-0.66009283,-0.65739083,-0.6391765,-0.77032995,-0.7597673,-0.7283764,-0.7614262,-0.7570821,-0.7971896,-0.7965342,-0.7731882,-0.7808278,-0.7981981,-0.8112969,-0.7697682,-0.75327516,-0.68808264,-0.6359613,-0.65663636,-0.63676894,-0.633573,-0.6636676,-0.55200803,-0.5676234,-0.56767,-0.50284374,-0.49454442,-0.47850424,-0.45964703,-0.42848772,-0.147558,-0.12902157,-0.06272869,0.034880716,0.15387656,0.4933318,0.40813315,0.3746866,0.3482381,0.26740253,0.28032532,0.25762343,0.23915516,0.30841613,0.37905633,0.39354423,-0.07962985,-0.32801396,-0.37824,-0.4249496,-0.4822701,-0.29641938,-0.45288238,-0.5343381,-0.6763969,-0.69348633,-0.5840665,-0.5606764,-0.5112668,-0.73328483,-0.81213754,-0.8551713,-1.0964179,-1.0790956,-0.8837949,-0.93655634,-0.4810705,-0.44069427,-0.5636511,-0.51750034,-0.7391301,-0.7233019,-0.7608697,-0.908103
+0.582655,0.524276,0.43241495,0.4367361,0.51974034,0.4918006,0.3805126,0.33355016,0.23134403,0.24839859,0.24512313,0.27062052,0.35788935,0.5639856,0.8189075,0.6965668,0.569651,0.46128756,0.36537868,0.28944606,0.23269962,0.19907375,0.18889813,0.27771452,0.24885099,0.25731617,0.20922068,0.18352656,0.18485692,0.1870497,0.16979915,0.18464746,0.15854047,0.11537163,0.305386,0.3316546,0.31436417,0.28344172,0.19361399,0.19859545,0.17878298,0.13746436,0.07043666,0.21648751,1.0235626,1.4043651,1.1183009,0.87146366,0.7578329,0.7721256,1.3068726,1.3722322,1.1572511,0.93021274,0.8405919,0.7668537,0.6959658,0.63577247,0.5835849,0.5335512,0.44840357,0.372405,0.28359056,0.32599473,0.21004884,0.07871853,0.02372824,-0.019582342,0.00018211827,0.08275831,0.24949114,0.3435421,0.24467967,0.17559321,0.21540724,0.2675553,0.6396495,0.5888587,0.7723019,0.6878977,0.48448837,0.43191674,0.3144933,0.29150084,0.32170486,0.25581607,0.17142375,0.11683671,0.08455293,0.030752491,0.012459416,-0.037831243,-0.08111815,-0.056004155,-0.105147675,-0.10557352,-0.08616853,-0.08828269,-0.09617604,0.29996735,0.3946383,0.32443148,0.19109398,0.1642232,0.057636265,0.028279532,0.025463495,0.0042006113,0.014500637,0.11999123,0.073351726,-0.045378137,-0.062749594,-0.08082119,-0.17039444,-0.26373565,-0.29014975,-0.3176517,-0.38831955,-0.4606589,-0.49461347,-0.5730601,-0.634419,-0.6706856,-0.6133626,-0.6507784,-0.7464144,-0.76395833,-0.8289482,-0.7976756,-0.7599224,-0.60803914,-0.6491047,-0.73492557,-0.80589026,-0.8448212,-0.89385474,-0.9475901,-0.9745815,-1.0213561,-1.0603877,-1.0856895,-1.130089,-1.1415071,-1.1780553,-1.1748862,-1.1800003,-1.1894432,-1.1976106,-1.1734455,-1.2031393,-1.2470922,-1.2238178,-1.2433019,-1.2512772,-1.2661047,-1.2987931,-1.2675176,-1.1313391,-0.6650238,-0.7355728,-0.83312887,-0.85696113,-0.9096168,-0.99127525,-1.0220889,-1.0291398,-1.0194349,-1.0354981,-1.0095905,-0.85464036,-0.7847375,-0.85056794,-0.9179264,-0.49241465,0.035770137,-0.045766626,-0.13027799,-0.20982087,-0.29482263,-0.36816484,-0.42741483,-0.48539078,-0.54731905,-0.60522336,-0.62497914,-0.52973074,-0.27000675,0.07264133,0.07481718,-0.0631125,-0.16915028,-0.17297415,-0.26127768,-0.29009223,-0.1750219,0.64525783,0.9723778,1.0463699,0.98197067,0.96286446,0.77305925,0.6153966,0.54598296,0.525938,0.38980046,0.2740928,0.26038533,0.7494446,0.9855021,0.7313905,0.7584255,1.0390925,1.0770949,0.8273651,0.6197851,0.5093398,0.41134006,0.36382818,0.38126296,0.33095428,0.2343974,0.16407676,0.102749005,0.064507306,0.051150937,0.022714216,0.16357751,0.39914787,0.33306694,0.29527903,0.34560814,0.4903804,0.55680525,0.4822238,0.41430363,0.7008739,0.75075287,0.7975501,0.7548107,0.6760809,0.6603596,0.65678746,0.69712466,0.75978667,0.89313996,1.0915549,1.1493571,1.1581142,1.3751328,1.6946278,1.9234407,2.1290596,2.3092115,2.204017,2.3322237,2.3949656,2.5294833,3.0885632,3.2914248,3.4597495,3.5991588,3.7762113,3.8981519,3.8304393,3.823794,3.9331625,3.992608,3.9520488,3.9439816,4.04269,4.066122,4.00912,4.048485,4.012637,4.014995,4.0927906,4.139597,4.1438684,4.0967765,4.0721617,4.154364,4.148776,4.1482773,4.1506605,4.17999,4.0866327,4.0323935,4.028898,4.0203424,3.9985266,3.9973688,4.086999,4.130925,4.099662,4.118099,4.090767,4.111457,4.0589285,4.1298246,4.1369514,4.0524764,4.005549,4.003255,4.0732307,4.102591,4.139029,4.124394,4.0842834,4.105317,4.0816307,3.9686308,3.9676876,3.937357,3.8662503,3.6413121,3.5932024,3.6122227,3.6437879,3.6358917,3.6773324,3.7975798,3.6642137,3.5776012,3.5305314,3.4711998,3.3804579,3.3307657,3.3233156,3.3613777,3.4765887,3.5625744,3.6149879,3.7017472,3.69741,3.7308989,3.7552676,3.8143396,3.755323,3.734806,3.833777,3.835041,3.769147,3.5056534,3.3457088,3.3666735,3.288132,2.9462354,2.329239,2.070697,2.0843124,2.0797238,1.8364869,1.6806418,1.6385602,1.5958657,1.6991062,2.0943723,2.272739,2.3978682,2.4972072,2.5112064,2.5713491,2.514295,2.391954
+-0.69826025,-0.5823863,-0.5698687,-0.61472833,-0.6405737,-0.65882146,-0.6857911,-0.7046209,-0.72507846,-0.74498534,-0.7557479,-0.63711405,-0.4049615,-0.13054413,-0.07301487,-0.10358973,-0.19138934,-0.27317315,-0.37567246,-0.4989321,-0.602156,-0.71781844,-0.66181654,-0.39147985,-0.23149417,-0.19175915,-0.34172088,-0.3684419,-0.35575658,-0.3163194,-0.28508067,-0.34342042,-0.4190626,-0.5296086,-0.49259287,-0.17429413,0.553053,0.4111469,0.20657559,0.089930415,0.035349723,-0.08790572,-0.24451591,-0.32480022,0.019842155,0.48105705,0.3648764,0.18757156,0.06324999,0.18592997,0.61897314,0.65849984,0.4787888,0.26894704,0.17519018,0.08470847,0.0054030605,-0.06327252,-0.19951974,-0.25472748,-0.3562925,-0.46984673,-0.59976566,-0.6483946,-0.72331613,-0.8495549,-0.9160118,-0.99214137,-1.0910101,-1.1236355,-1.1800971,-1.1722494,-1.1949937,-1.215481,-1.2421668,-1.1451637,-0.6804758,-0.5607883,-0.20157297,-0.14500324,-0.32943967,-0.4277992,-0.621822,-0.7267641,-0.76501435,-0.8177427,-0.9177971,-0.9967626,-1.0614316,-1.1322092,-1.1645495,-1.2183015,-1.2890855,-1.2925322,-1.3236794,-1.3659222,-1.3752229,-1.4026685,-1.4770951,-1.4515246,-0.98910415,-0.66624033,-0.8353143,-0.88250875,-1.0273983,-1.0885377,-1.1288763,-1.1913412,-1.2291523,-1.2728643,-1.3197713,-1.3911736,-1.4065278,-1.4422972,-1.491348,-1.5446348,-1.5678158,-1.593236,-1.6315384,-1.673624,-1.6815426,-1.7114332,-1.7492542,-1.7574449,-1.7787807,-1.818244,-1.8862646,-1.8241906,-1.8318896,-1.8416464,-1.8416736,-1.8576205,-1.8668244,-1.8877304,-1.9115405,-1.9158335,-1.9215198,-1.9421637,-1.9392625,-1.9609228,-1.9679476,-1.9676074,-1.9606216,-1.9711726,-2.0034268,-2.0160627,-2.0183887,-2.011083,-1.9983816,-1.9926417,-2.033519,-2.045856,-2.026297,-2.0304222,-2.0497837,-2.0536098,-1.8194553,-1.6141915,-1.7349187,-1.6976113,-1.7359321,-1.7910576,-1.8187699,-1.8158057,-1.8561764,-1.8671495,-1.8506815,-1.8575435,-1.8652194,-1.8825376,-1.8906721,-1.8632953,-1.8897933,-1.9005146,-1.7976499,-1.6114964,-1.6032107,-1.5574222,-1.6051598,-1.6260145,-1.659524,-1.6844093,-1.6938086,-1.721726,-1.7456325,-1.7337856,-1.743603,-1.7360775,-1.5848927,-1.4774818,-1.5142989,-1.5228941,-1.5434926,-1.5683616,-1.5722711,-1.4802628,-0.65639377,-0.5134287,-0.49288583,-0.6099164,-0.401538,-0.36306283,-0.43255392,-0.5116882,-0.57287395,-0.63968587,-0.70741,-0.74487025,-0.60849905,-0.6447581,-0.6528449,-0.7797359,-0.59700716,-0.551535,-0.6868932,-0.67152977,-0.72702074,-0.7347656,-0.74261487,-0.7634195,-0.79439044,-0.8135626,-0.80945754,-0.8289675,-0.82957053,-0.8471205,-0.8637285,-0.906024,-0.59790087,-0.5180176,-0.5796215,-0.64421284,-0.6372819,-0.54796314,-0.6236584,-0.6647556,-0.6213254,-0.5614091,-0.6200557,-0.6924653,-0.64679587,-0.7054986,-0.66818655,-0.599916,-0.4051649,-0.35172957,-0.25104412,-0.21840934,-0.070620224,-0.01819114,0.24113946,0.88379467,1.4590703,1.9244893,1.7356684,1.7646816,1.6311173,2.0956092,2.6382904,2.500278,2.611556,2.8925328,3.0546465,3.2689543,3.076795,3.0831146,3.4476104,3.6263914,3.471467,3.5482726,3.7849658,3.6419199,3.464582,3.5107012,3.4201431,3.4393768,3.5236247,3.7141852,4.136464,4.0903306,4.0258408,4.31067,4.576654,4.68122,4.7210155,4.698811,4.475691,4.2902765,4.3100843,4.328267,4.2910156,4.2909617,4.4391813,4.684261,4.5868597,4.6110783,4.5269876,4.5513697,4.303031,4.264512,4.3604813,4.169804,4.1591334,4.187234,4.236352,4.2580214,4.348297,4.2855053,4.448837,4.425617,4.3873973,4.2691984,4.399982,4.375121,4.4582167,4.395233,4.348127,4.240455,4.2720537,4.237816,4.2529497,4.4978313,4.442933,4.5000353,4.454653,4.4603066,4.3449616,4.3910403,4.2700877,4.20337,4.264509,4.2022195,4.2795715,4.3039875,4.3302717,4.341579,4.4021034,4.4641457,4.485651,4.2935886,4.4210815,4.510195,4.4781084,4.2242227,4.3763943,4.3226094,4.282426,3.6046894,2.7119846,2.1666355,1.5917547,1.1457318,1.3050823,1.1125294,1.2457727,1.2161548,1.1912868,1.2513044,1.4507759,1.3324773,1.388804,1.4221017,1.4348229,2.0984926,2.0117657
+0.32609543,0.06182139,-0.35123307,-0.63674724,-0.71861255,-0.73143697,-0.8047044,-0.89342153,-1.0027245,-0.9816456,-0.9495822,-0.8945817,-0.4244962,-0.35444522,-0.4996639,-0.4689669,-0.5595759,-0.6532867,-0.75129205,-0.8427377,-0.9175422,-0.98013127,-0.7223268,-0.4824737,-0.200112,-0.3124669,-0.46475074,-0.45551994,-0.5509093,-0.5740006,-0.5351606,-0.6400829,-0.6829681,-0.7824266,-0.73482364,-0.25065717,0.5234475,0.7349989,0.19327725,-0.005344469,-0.11462985,-0.26645043,-0.3653862,-0.48488018,-0.49233127,-0.042532574,-0.10215396,-0.31367454,-0.4304986,-0.23840526,0.010773633,-0.042138737,-0.14407095,-0.318206,-0.41484272,-0.45157608,-0.53325593,-0.5707879,-0.6200484,-0.66796666,-0.7540837,-0.7850003,-0.87193537,-0.90187335,-0.9344319,-1.0429809,-1.0043049,-0.88069034,-0.8674129,-0.9952542,-1.0656867,-1.1343946,-1.2446525,-1.2687914,-1.31038,-1.3564296,-1.2190219,-1.1112885,-1.0756416,-1.0636313,-1.1488819,-1.2404683,-1.3297154,-1.3810382,-1.4175265,-1.4624122,-1.5061518,-1.5310385,-1.5639349,-1.6141579,-1.6364475,-1.6806036,-1.7546251,-1.7408798,-1.7675574,-1.8269839,-1.8427993,-1.8442187,-1.8450675,-1.8348405,-1.7345593,-1.6586227,-1.6828187,-1.6876254,-1.7899609,-1.8032305,-1.8128986,-1.8527477,-1.8589308,-1.8766599,-1.8834531,-1.9107103,-1.9095857,-1.9379566,-1.9920385,-2.0109773,-1.9955207,-2.0080645,-2.0356994,-2.0465486,-2.0641747,-2.0703373,-2.1136734,-2.1345043,-2.1447663,-2.2206779,-2.248053,-2.1736014,-2.219416,-2.235145,-2.208067,-2.2334077,-2.2535396,-2.2545424,-2.2640305,-2.275828,-2.280677,-2.2953649,-2.2001586,-2.06314,-2.1420581,-2.168119,-2.2143478,-2.2664785,-2.2935743,-2.3332293,-2.3330421,-2.3409786,-2.3388786,-2.343685,-2.365023,-2.4095223,-2.4018905,-2.396569,-2.4778357,-2.4346366,-2.3787167,-2.2850552,-2.3301346,-2.3081827,-2.3687258,-2.4273958,-2.444054,-2.4194486,-2.4394042,-2.4739475,-2.4274127,-2.4668932,-2.4770226,-2.4613042,-2.4201343,-2.4111876,-2.4342656,-2.4726858,-2.316987,-2.163906,-2.1211572,-2.2435026,-2.1802838,-2.217115,-2.2424908,-2.2609818,-2.2601361,-2.3363824,-2.3327675,-2.2482803,-2.1550274,-2.1840582,-2.1567836,-2.156639,-2.1851828,-2.1985781,-2.2208014,-2.2519114,-2.25416,-2.2843556,-2.0161147,-1.7366122,-1.7383177,-1.5114632,-1.0795728,-0.940718,-0.9728626,-0.9886981,-1.0509524,-1.1041932,-1.1714072,-0.96965945,-1.0202582,-1.1093776,-0.9589342,-0.7130058,-0.6624564,-0.43831944,-0.48820886,-0.5456003,-0.6218777,-0.6578237,-0.6840093,-0.7189915,-0.70949054,-0.7241067,-0.7795149,-0.80458236,-0.8228196,-0.8506992,-0.8722519,-0.87926424,-0.9048269,-0.9317732,-0.92775965,-0.8262542,-0.77087486,-0.8062074,-0.69714284,-0.7376255,-0.6596321,-0.6740694,-0.60059524,-0.60328984,-0.6013145,-0.5191376,-0.5220623,-0.46573323,-0.42747208,-0.42802182,-0.30272114,-0.23008166,-0.26359493,-0.2585956,-0.1347255,-0.03638583,0.36842737,1.1083255,0.7742369,0.80278134,0.88571817,1.4432595,1.769892,2.388741,2.1610088,2.331439,2.5268536,2.7638493,2.8039606,2.853181,2.986169,2.938314,2.7544591,2.7791953,2.8724837,2.7927494,2.903654,2.9136827,2.952765,2.8479679,2.9347262,3.1482582,3.4026456,3.3481607,3.2885695,3.396678,3.6730072,3.837193,3.83482,3.9580946,3.927227,3.8588955,3.8499384,3.7915478,3.7136288,3.720396,3.841491,3.9261222,3.8892896,3.7976754,3.8097894,3.8342733,3.701459,3.5704198,3.642848,3.5793743,3.625001,3.6785038,3.6809015,3.6923738,3.7974617,3.8310108,3.895875,3.8858576,3.968933,3.9173899,4.007228,3.8274307,3.8525515,3.7061334,3.6693625,3.5990982,3.6077719,3.592252,3.5548203,3.6487541,3.6320324,3.7085943,3.6803858,3.7046514,3.6699746,3.6440694,3.643344,3.4830585,3.5885043,3.4892015,3.5353599,3.4388704,3.4087877,3.4974422,3.618015,3.6616611,3.5820084,3.3015823,3.4071724,3.4737105,3.657431,3.8231282,3.7914722,3.7106075,3.2678819,2.4716053,1.8518353,1.6240007,1.288875,0.94733375,0.68329555,0.5680156,0.79739684,0.5662637,0.39631182,0.489515,0.48433912,0.41020113,0.450458,0.46848273,0.48026037,0.9946829,0.8077278
+-0.6629337,-0.81636155,-0.9208061,-1.0592476,-1.1667383,-1.2048556,-1.250026,-1.3575389,-1.5080733,-0.17253762,0.27992094,0.5928393,0.15931068,-0.23943707,-0.3992827,-0.38801223,-0.48698655,-0.65049326,-0.7821523,-0.9129626,-1.0174298,-1.1597867,-1.3418944,-1.3105192,-1.1658797,-1.1284692,-1.2156858,-1.2589543,-1.3077797,-1.3826469,-1.3767344,-1.4345351,-1.4568037,-1.5306585,-1.4785266,-0.67652285,-0.17635308,-0.065910324,-0.32006317,-0.51498944,-0.61947703,-0.79552865,-0.9666237,-1.1048639,-1.2276812,-1.3273606,-1.3240178,-1.3902347,-1.480046,-1.6036441,-1.7195246,-1.7211213,-1.7275836,-1.802072,-1.6184032,-1.5443931,-1.5973519,-1.6330744,-1.6844418,-1.7313273,-1.7763321,-1.8131096,-1.8505775,-1.9121712,-1.9349283,-1.9993287,-2.0469565,-2.0918736,-2.1111197,-2.1401668,-2.1615987,-2.202434,-2.2356367,-2.2144585,-2.2439866,-2.3507311,-2.340992,-2.3430777,-2.3462949,-2.3541193,-2.344098,-2.34727,-2.3356729,-2.3410244,-2.359801,-2.376276,-2.367727,-2.3624442,-2.381887,-2.3939142,-2.4103074,-2.4081802,-2.426269,-2.4420276,-2.464807,-2.4604034,-2.4682634,-2.482215,-2.4950542,-2.5146403,-2.521153,-2.546332,-2.5193858,-2.5096178,-2.4926243,-2.5063374,-2.5102131,-2.5080664,-2.5092216,-2.5255303,-2.5337093,-2.534615,-2.5298142,-2.5482028,-2.5342622,-2.5238185,-2.529398,-2.5382738,-2.5415735,-2.555573,-2.585324,-2.6078172,-2.6250067,-2.6163259,-2.6235857,-2.6181862,-2.6095662,-2.6278791,-2.6491253,-2.6649966,-2.6660712,-2.6792784,-2.6710656,-2.6594002,-2.6467805,-2.6495764,-2.6692097,-2.6799889,-2.6682935,-2.6874304,-2.6873555,-2.6954088,-2.706143,-2.726726,-2.7448742,-2.7623353,-2.7650452,-2.7601984,-2.7626789,-2.7736306,-2.7756293,-2.7793126,-2.781064,-2.813171,-2.8626742,-2.8838801,-2.8535461,-2.8855417,-2.8963158,-2.8838627,-2.8815866,-2.8834493,-2.8880863,-2.8703456,-2.8884783,-2.9429708,-2.9149323,-2.9509392,-2.9465506,-2.9444714,-2.9256172,-2.9377427,-2.9505877,-3.0012345,-2.9369638,-2.9142284,-2.958993,-2.9772282,-2.9633255,-2.941497,-2.933304,-2.9276223,-2.942696,-2.965818,-2.9816127,-2.9015286,-2.9307017,-2.9296737,-2.9537096,-2.9764962,-2.9761605,-2.9571614,-2.9641967,-2.9678233,-2.988532,-3.012814,-3.0071287,-2.8889153,-2.7530308,-2.4144611,-2.4227839,-2.4671824,-2.519504,-2.5248532,-2.5391338,-2.5559678,-2.5140755,-2.3637466,-2.3730521,-2.3807673,-0.9854817,-0.24325304,-0.36459714,-0.37065494,-0.5175637,-0.67524594,-0.76731694,-0.8036449,-0.83792543,-0.8513521,-0.8939403,-0.9655201,-1.0204732,-1.0589428,-1.0897838,-1.1069065,-1.1174309,-1.1293519,-1.1355188,-1.1218866,-1.1033158,-1.0733147,-1.0302645,-1.0055599,-0.83133864,-0.8076906,-0.77363193,-0.7855077,-0.7663976,-0.7777286,-0.7268597,-0.7311288,-0.7582707,-0.7563447,-0.71828735,-0.7095601,-0.68794274,-0.6587593,-0.62234163,-0.6459039,-0.6279284,-0.50300497,-0.2789836,0.07277848,0.30580992,0.09232116,0.065776736,0.1888897,0.17378806,0.41882613,0.13236447,0.34596926,0.48010677,0.54909515,0.5346521,0.49347275,0.5184455,0.5110155,0.5970464,0.64146525,0.6525903,0.68358475,0.66470516,0.6562464,0.65868205,0.63222384,0.6238855,0.687732,0.90683633,0.9633603,1.0350924,1.0125676,1.6379112,2.2114167,1.9900966,2.0689974,1.6229527,1.5888059,1.6658692,1.73159,1.7616878,1.7829175,1.8277235,2.0905175,2.1844735,2.145916,2.2649622,2.581735,2.4531434,2.368,2.4350872,2.454392,2.5575266,2.615357,2.6369922,2.5690527,2.6326709,2.7167227,2.8465285,2.870731,2.8852139,2.622528,2.1564074,1.2028111,0.9803456,0.58956075,0.31026667,0.37923002,0.5880552,0.7380479,0.8173528,0.81746066,0.41428667,0.63719094,0.40116227,0.6361782,1.066506,0.90609646,0.63916594,0.79749525,0.9634513,1.0701772,1.1623377,1.082504,1.1339225,1.1947546,1.1928358,1.0561,0.76837856,0.69973004,0.7657913,0.7746984,0.5603374,0.24605428,0.031396504,-0.10134497,-0.15462627,-0.18414845,-0.28090277,-0.33204412,-0.36296082,-0.42463773,-0.47093356,-0.522574,-0.25780988,-0.20443626,-0.33180067,-0.25195417,-0.27449387,-0.34270898,-0.28375715,-0.2745405,-0.24649431,-0.18749128,-0.21636748
+-0.6273314,-1.1210335,-1.2435809,-1.3297379,-1.4075081,-1.4376503,-1.4726533,-1.6130757,-1.2140293,-0.10250001,-0.0722415,-0.37586316,-0.5967113,-0.78688395,-0.9006276,-0.91032326,-0.95084965,-1.045232,-1.1337745,-1.2212526,-1.3092475,-1.2759854,-0.9234798,-0.9907073,-0.9673282,-0.93778527,-0.99531466,-0.9897702,-0.9522332,-0.6303531,-0.53600395,-0.71506363,-0.84274125,-0.974167,-1.0856633,-0.4301657,-0.011903722,-0.17874695,-0.36901018,-0.617102,-0.73665273,-0.8693029,-0.9901463,-1.1106367,-1.2083906,-1.2981913,-1.3688376,-1.3847349,-1.434877,-1.5482765,-1.6397622,-1.652482,-1.6346774,-1.0759594,-0.5569182,-0.32298243,-0.53958726,-0.7312614,-0.8720679,-0.9997648,-1.1270188,-1.2219889,-1.299704,-1.4064367,-1.4909574,-1.5740947,-1.6657995,-1.7286055,-1.7660252,-1.8161151,-1.8790178,-1.9477175,-1.9248492,-1.8374748,-1.8431475,-1.9234602,-1.9668891,-1.9825191,-2.01224,-2.048121,-2.0437603,-2.055984,-2.0903456,-2.1313798,-2.1686783,-2.2077255,-2.2107701,-2.2220702,-2.2621105,-2.3023443,-2.3326917,-2.346445,-2.3925452,-2.406714,-2.4081697,-2.3947496,-2.4047625,-2.4414513,-2.4745698,-2.5312843,-2.4819221,-2.5114136,-2.461709,-2.4727707,-2.4646125,-2.4907584,-2.4979837,-2.5127604,-2.530131,-2.5466728,-2.5522122,-2.5365672,-2.5415301,-2.5554392,-2.5628037,-2.5451791,-2.5711393,-2.5815687,-2.6038594,-2.6111183,-2.5598383,-2.5616941,-2.590166,-2.5923653,-2.6033022,-2.687691,-2.6432633,-2.6504517,-2.6553116,-2.6584446,-2.6670504,-2.673083,-2.6925025,-2.686062,-2.665153,-2.665227,-2.6946275,-2.7074559,-2.6944122,-2.797929,-2.7146313,-2.7274075,-2.7366734,-2.7977781,-2.781487,-2.7905746,-2.811164,-2.8246133,-2.8054233,-2.8217611,-2.8306825,-2.867765,-2.8598967,-2.871326,-2.883272,-2.9029505,-2.8551278,-2.944171,-2.9367445,-2.921536,-2.9154034,-2.927052,-2.9269109,-2.8809168,-2.9052222,-2.9825258,-2.9306884,-3.0056572,-2.9859538,-2.9564428,-2.9299057,-2.9260297,-2.9875674,-2.9876313,-2.951837,-2.9380264,-3.011757,-3.0531356,-3.0481958,-3.0475225,-3.0571942,-3.0349996,-3.0513258,-3.0528128,-3.0088701,-2.9229474,-2.9164097,-2.9102442,-2.9519877,-2.9553483,-2.9719062,-2.9633598,-2.9872274,-2.9503934,-3.0060802,-3.0376825,-3.052583,-3.0702195,-2.271801,-0.9515966,-0.95746493,-1.1424966,-1.2205645,-1.289128,-1.3800455,-1.4647737,-1.5487118,-1.4822336,-1.591161,-1.6691704,-1.0134594,-0.77203476,-0.89057046,-0.80313826,-0.92537266,-0.93372774,-0.94771504,-0.9460023,-0.9536616,-0.9831401,-1.0282966,-1.0673611,-1.1052746,-1.1305907,-1.1454906,-1.1715784,-1.1595656,-1.1487294,-1.1157465,-1.1194355,-1.0629864,-0.97597504,-0.9247617,-0.9214323,-0.90039015,-0.8220565,-0.7713476,-0.7439329,-0.67635834,-0.6572101,-0.62918526,-0.46505365,-0.39784876,-0.31843513,-0.25647873,-0.23916064,-0.23733614,-0.15349494,-0.19663079,-0.23423146,-0.15898077,-0.07563092,-0.048124637,-0.19162661,-0.23298924,-0.19617482,-0.19488764,-0.15681235,-0.15762302,0.11987831,0.100709334,0.27638388,0.408125,0.47242242,0.48075604,0.49188393,0.5300382,0.4498105,0.57725644,0.61192197,0.62147486,0.65735275,0.63620126,0.63900477,0.64958614,0.6024623,0.5695642,0.5817818,1.226775,1.4542713,1.3152744,1.3616581,2.0219223,2.0977013,2.026659,2.3122778,2.0584583,2.1698923,2.185061,2.2770731,2.3447528,2.4322448,2.5205717,2.580113,2.72303,2.795405,2.7652428,2.9681015,2.8598022,2.742626,2.7657475,2.7847157,2.808769,2.8010082,2.8009672,2.7933896,2.8693764,2.9749613,2.8992877,2.994267,2.9399369,2.8089526,2.59558,1.8396128,1.1415105,0.89987093,0.6688749,0.5460862,0.7545753,0.9478961,1.0406842,0.9801024,0.8170779,0.9122765,0.79190695,1.3278062,1.2967623,0.94199395,1.009252,1.2790499,1.4609723,1.5725807,1.6277058,1.6254166,1.7108014,1.7166331,1.5975087,1.3733504,1.1124128,1.1580977,1.1962943,1.0572685,0.69948673,0.37752914,0.17962019,0.02072366,0.00086242333,-0.06294,-0.13395755,-0.22514741,-0.2743569,-0.3182636,-0.3929457,-0.46166682,-0.3284207,-0.013280254,-0.1293001,-0.110443965,-0.18217434,-0.2228832,-0.21530911,-0.23683928,-0.2079632,-0.30513257,-0.3185458
+-0.5016745,-0.46022785,-0.4397259,-0.46591136,-0.5151338,-0.5543847,-0.660872,-0.7204585,0.4352273,0.6424552,0.3872028,0.17756002,-0.0011363775,-0.09360747,-0.16748863,-0.24037156,-0.38420856,-0.56529963,-0.7270796,-0.9036408,-1.0649978,-1.1192665,-1.1540937,-1.1924561,-1.2112099,-1.191401,-1.265894,-1.3253895,-1.295298,-1.3551825,-1.4437046,-1.539119,-1.5895739,-1.6815493,-1.7161922,-1.7398937,-1.5228856,-1.2877254,-1.3759376,-1.4390166,-1.5146139,-1.5776876,-1.6328714,-1.6601222,-1.7013453,-1.7071707,-1.7410192,-1.7875986,-1.8071129,-1.7843039,-1.8052742,-1.826884,-1.8498237,-1.9462284,-1.9357069,-1.9452019,-1.952083,-1.9950956,-1.9944996,-2.0141718,-2.0464,-2.0741549,-2.1145613,-2.1532798,-2.2291749,-2.2341342,-2.2492707,-2.270772,-2.3069077,-2.3406289,-2.3626487,-2.414559,-2.455588,-2.4277577,-2.3643456,-2.3353589,-2.3190541,-2.3455245,-2.3856907,-2.450913,-2.4311132,-2.4530373,-2.4613867,-2.4724991,-2.4742007,-2.4876413,-2.514957,-2.5547714,-2.6141353,-2.6621914,-2.663038,-2.652966,-2.6481292,-2.6646848,-2.6698112,-2.6730056,-2.663522,-2.6655288,-2.6950994,-2.720292,-2.7045033,-2.6852174,-2.6710315,-2.6726503,-2.6890662,-2.7041745,-2.7072988,-2.7129555,-2.7008722,-2.707819,-2.7098534,-2.7234719,-2.7411184,-2.754953,-2.7687726,-2.771559,-2.8053584,-2.843624,-2.877459,-2.92298,-2.9080777,-2.898467,-2.902484,-2.9017003,-2.9017868,-2.959765,-2.904846,-2.8758688,-2.876317,-2.8701892,-2.8587508,-2.8514605,-2.8593857,-2.8820324,-2.8964775,-2.912593,-2.9101658,-2.8891563,-2.8807657,-2.8790572,-2.892405,-2.9053562,-2.9206138,-2.965385,-2.9575782,-2.9544187,-2.9599686,-2.9419708,-2.94659,-2.9537907,-2.9550006,-2.9628987,-2.9632719,-2.9584594,-2.9624617,-2.97896,-2.9568844,-2.986752,-2.9979162,-2.9705338,-2.9658694,-2.9803352,-2.9882023,-3.00069,-3.0137668,-2.9934483,-3.0205073,-3.0469055,-3.027369,-3.0103297,-3.00004,-2.990696,-3.0081704,-3.0392947,-3.0153937,-3.0262103,-3.078316,-3.0504804,-3.0315804,-3.0176854,-3.0273886,-3.0487785,-3.0524106,-3.0600054,-3.0589163,-3.0789504,-3.1002243,-3.090564,-3.0878386,-3.0845404,-3.059378,-3.0364776,-3.047783,-3.0536404,-3.0608711,-3.0875924,-3.0909705,-3.1318407,-3.1230516,-3.0902095,-3.0705051,-3.092465,-3.0863097,-3.0675862,-3.0541685,-3.0645356,-3.089069,-3.0639236,-3.0851736,-3.0880413,-2.6650438,-2.3105755,-2.1758504,-1.7395575,-1.8310633,-1.9102764,-1.9797432,-2.0162144,-2.0500166,-2.0756638,-2.1102571,-2.1502812,-2.1720946,-2.190288,-2.2178874,-2.21627,-2.2530546,-2.2904816,-2.2939181,-2.2733579,-2.2514453,-2.3078222,-2.325866,-2.318275,-2.1912727,-2.0519397,-2.0770996,-2.083547,-2.1044059,-2.1475327,-0.33603257,0.065326124,-0.25234175,-0.4190259,-0.5038108,-0.5415492,-0.6128315,-0.68449545,-0.7567723,-0.808329,-0.8457799,-0.8148968,-0.38800043,-0.5183326,-0.6115812,-0.69261575,-0.7879422,-0.8320284,-0.8303293,0.87709534,0.8095865,0.47411978,0.43428427,0.3667817,0.24184822,0.1532702,0.02754261,1.1355274,0.81735754,0.5910671,0.38412368,0.27940428,0.1912363,0.34913716,0.772248,0.81692123,0.39756614,0.21904685,0.8206915,1.4206048,0.98263144,0.92166233,1.0605938,1.4036729,0.92999816,1.0199416,1.344859,1.0228982,0.73903483,0.59170777,0.51221883,0.45968622,0.401323,1.0226828,1.4256394,1.2901015,1.223849,1.5146182,1.0792818,0.89505726,0.8386266,0.8074214,0.7497472,0.6496816,0.5145141,0.40177673,0.31734088,0.23890536,0.41470218,0.4776796,0.3071052,0.85601044,1.2458105,1.125785,0.7468387,0.8263903,1.0193348,0.6432869,0.47924972,0.3973264,0.30900913,0.24194993,0.8314856,1.0377822,0.66044736,0.9804609,0.90624076,0.63137466,0.45790097,0.41582114,0.37281623,0.31303206,0.26193556,0.23906462,0.18180323,0.12675382,0.064620405,0.0058223046,0.19832186,0.41587782,0.23555194,0.13931154,0.061672185,0.008030791,-0.030920144,-0.06770913,-0.100555,-0.13403791,-0.182241,-0.2240404,-0.25044727,-0.28332216,-0.33376083,-0.38747537,-0.29100996,-0.02116121,0.09205611,-0.024194326,-0.05503731,-0.06756917,-0.08097032,-0.120695174,-0.21360551,-0.2775932,-0.27683723
+-1.0038978,-1.4221169,-1.5814937,-1.6698902,-1.71192,-1.7887772,-1.8561141,-1.7299337,-1.0108523,-0.58025396,-0.6587364,-0.73905736,-0.85698915,-1.0375695,-1.1536173,-1.2373655,-1.3048135,-1.4126184,-1.517475,-1.6036297,-1.6653115,-1.7525842,-1.8093517,-1.8515263,-1.8628385,-1.8655686,-1.8938513,-1.8968236,-1.9190652,-1.9357843,-1.9537413,-1.9811115,-2.0010374,-2.0158226,-2.0621095,-1.9204462,-1.4390833,-1.3415537,-1.3906971,-1.4861267,-1.5702581,-1.6613467,-1.7450919,-1.8138049,-1.885455,-1.9243984,-1.9677969,-2.015672,-2.0408976,-2.0394464,-2.061464,-2.0716224,-2.086186,-2.1247814,-2.1227007,-2.147811,-2.1689818,-2.202095,-2.222356,-2.2408438,-2.2737408,-2.2942712,-2.3028207,-2.3114023,-2.3292513,-2.3626728,-2.395631,-2.4273567,-2.4533513,-2.4624104,-2.4723582,-2.4960022,-2.50423,-2.5122786,-2.5012577,-2.487257,-2.48552,-2.4998057,-2.5304065,-2.5473025,-2.5395162,-2.5521448,-2.583753,-2.583508,-2.601334,-2.6095705,-2.6283405,-2.638253,-2.6512403,-2.6664424,-2.6442382,-2.6572592,-2.66535,-2.685374,-2.6992736,-2.725692,-2.7094414,-2.7206516,-2.7409463,-2.7583323,-2.7503514,-2.7310424,-2.7287483,-2.7309234,-2.7309666,-2.7206268,-2.6992202,-2.6936865,-2.7010767,-2.7120333,-2.7105336,-2.723715,-2.74398,-2.7264605,-2.7390652,-2.7701974,-2.795195,-2.7812333,-2.7862196,-2.7786312,-2.7921634,-2.825669,-2.852485,-2.865469,-2.8428955,-2.8513494,-2.8348956,-2.8389428,-2.861712,-2.8478072,-2.8454623,-2.8363576,-2.8518772,-2.8913317,-2.88409,-2.8674588,-2.834569,-2.7895894,-2.7857518,-2.7853274,-2.809345,-2.8424137,-2.879206,-2.887779,-2.8977776,-2.8993578,-2.9002874,-2.9040833,-2.9169536,-2.9253414,-2.9068937,-2.8816695,-2.8827455,-2.8816588,-2.908112,-2.9214487,-2.908319,-2.9199605,-2.9378424,-2.9225478,-2.9270778,-2.9327452,-2.9360523,-2.929327,-2.9279919,-2.9241781,-2.9067955,-2.920734,-2.9178119,-2.896752,-2.8617907,-2.8652654,-2.9049084,-2.9333763,-2.9134364,-2.9236403,-2.9307408,-2.8851526,-2.8339734,-2.8230383,-2.8779826,-2.9282773,-2.9115613,-2.922151,-2.917049,-2.909903,-2.9258184,-2.9090185,-2.899885,-2.8800616,-2.8473237,-2.8234372,-2.8565578,-2.881246,-2.8864348,-2.8896627,-2.8935676,-2.9061584,-2.8837724,-2.7786999,-2.645803,-2.6726172,-2.6624594,-2.6525736,-2.6739244,-2.7428212,-2.7412362,-2.7165675,-2.7161276,-2.7564828,-1.9455775,-1.2628735,-0.9785676,-0.7625212,-0.9702283,-1.2060044,-1.2758615,-1.3530161,-1.4657781,-1.561192,-1.6387981,-1.6704533,-1.6724524,-1.6929361,-1.7491413,-1.8260593,-1.8564901,-1.8977072,-1.9419104,-1.9866936,-1.9830822,-1.9603004,-1.9505305,-2.0514295,-1.4156947,-0.84137106,-0.97473216,-1.098112,-1.0915661,-1.1915245,-0.77567637,-0.81306344,-0.98071945,-1.004773,-1.0713708,-1.1121645,-1.1006624,-1.0934471,-1.1554661,-1.1807004,-1.2105557,-1.2707722,-1.3121009,-1.1613922,-1.1734532,-1.2324883,-1.2839231,-1.2999558,-1.3516656,0.0535386,0.1454762,0.087699324,0.15892306,0.23399113,0.13997735,-0.08262089,-0.09308955,0.7090968,0.5631748,0.5787049,0.47634673,0.37808192,0.31761152,0.24346869,0.5309116,0.43039665,0.35798997,0.29721376,0.1751839,0.3924413,0.36972773,0.7137728,0.73938787,1.0861355,0.6971594,0.68317443,0.9234002,0.87166095,0.75280404,0.6473036,0.6705477,0.61260074,0.63944054,1.03438,1.6034884,1.1703378,1.684432,1.5995426,1.3378639,1.5519753,1.7746048,1.876813,1.7588873,1.5727437,1.3632693,1.1863104,1.0225039,0.69034016,0.7268604,0.70069504,0.4672804,1.1254213,1.1770248,0.8175428,0.5255357,0.64716136,1.0595465,0.77113485,0.4692102,0.23566903,0.11275205,0.06451374,1.3326681,1.6351624,1.1133913,1.2557118,1.0261871,0.7434871,0.6051879,0.70390016,0.81948996,0.8700837,0.73435533,0.49764395,0.44191322,0.37579548,0.33038065,0.22790663,0.15360525,0.20586298,0.2204042,0.093909025,-0.017054964,-0.10533297,-0.2018872,-0.2820919,-0.33117428,-0.37839448,-0.4690004,-0.5334614,-0.5520544,-0.595935,-0.6240995,-0.6901126,-0.22842658,0.28520954,0.17506881,-0.016001357,-0.1466402,-0.22031544,-0.27452525,-0.4058133,-0.4356716,-0.5325152,-0.699847
+1.0618267,1.4455264,1.5081565,1.6545529,1.6570373,1.5737545,1.4496,1.2498567,1.1392382,1.2863281,1.3158675,1.2992148,1.3529987,1.5050035,1.609164,1.515883,1.4991672,1.4071081,1.2491361,0.9321121,0.37484884,0.17507803,0.17373209,0.33918923,0.4864427,0.71725726,0.9359713,0.9884372,1.1728079,1.2574117,1.0785532,0.8336698,0.4443621,0.21682261,0.24489437,0.0072113313,-0.19200966,-0.33432192,-0.2248881,-0.073660344,0.10870816,0.40871707,0.57296145,0.5472061,0.5415048,0.4653455,0.24665149,-0.032639537,0.20124535,0.36868265,0.5626976,0.8491321,0.6296016,0.2208638,-0.040711343,-0.1637899,0.033266168,0.19907384,0.3810297,0.25005987,0.07900751,-0.06177985,-0.112864956,-0.18900178,-0.34805968,-0.445619,-0.5198063,-0.584855,-0.56753016,-0.23584639,0.013595987,0.18908907,0.15193759,0.120511964,0.35150632,0.5648417,0.6365963,0.66034395,0.7659738,1.0365691,0.89909124,0.6909057,0.3299466,0.056403417,0.17898774,0.18469188,-0.0069869235,-0.21593353,-0.3811795,-0.4807561,-0.5673994,-0.6360471,-0.68163145,-0.6999066,-0.5855944,-0.046922963,0.064706,-0.13563271,-0.24025397,-0.013605412,0.21501471,0.1817848,0.037543874,-0.0075610243,-0.07955931,0.4086362,0.530373,0.386455,0.18132032,0.044982385,-0.06752143,-0.22115166,-0.124025986,0.2937203,0.051576708,-0.1473142,0.034570236,0.11974722,-0.022768456,-0.18854198,-0.3125831,-0.35765493,-0.37466806,-0.39638227,0.018059079,0.050516117,-0.18325992,-0.26626956,-0.3093918,-0.37285423,-0.41253453,-0.00022828206,0.26128256,-0.049183335,-0.21724218,-0.28800452,-0.28417414,-0.35792363,-0.44366154,-0.49238002,-0.52889436,-0.58599895,-0.62071645,-0.6148373,-0.35917383,-0.38162363,-0.47701964,-0.50441736,-0.5570172,-0.55329233,-0.52834916,-0.57522166,-0.6034334,-0.64209443,-0.30062646,0.025301095,-0.05331594,-0.05683201,-0.031776126,0.11981194,0.33490106,0.27203444,0.04714972,-0.08879697,-0.03712097,-0.030222628,-0.14114282,-0.2510771,-0.33304137,-0.014647324,0.5073192,0.2947567,0.36910972,0.4671386,0.51745325,0.4305898,0.3271529,0.22655009,0.12002045,-0.020745747,-0.09768674,-0.14634578,-0.21353392,0.020292278,0.27471298,0.3518461,0.4277706,0.41639322,0.4951564,0.7227102,0.9893429,1.1990132,1.0305773,1.3010811,1.6327398,1.8969417,2.4080276,2.1427073,2.109067,2.1237624,1.9829116,1.9292568,2.1547642,1.9908886,2.0500007,2.1310515,2.084103,1.9538357,1.9034754,2.0552487,1.7097446,1.7028624,1.8411024,1.9223632,1.8572497,1.8471671,1.5777683,1.4276025,1.3701531,1.4191959,1.2293564,1.0742402,0.701815,0.623515,0.60233605,0.61801445,0.6519053,0.8537807,0.969836,1.2257751,1.616066,1.9028261,2.1071877,2.243564,2.3076463,2.4166522,2.5911198,2.7483373,2.8952017,3.0407808,3.1025105,3.170715,3.2662237,3.35428,3.4171052,3.4765658,3.5221243,3.6063955,3.6534333,3.7437215,3.813924,3.838684,3.8819642,3.884972,3.8646667,3.875762,3.8819501,3.9010653,3.906488,3.902545,3.9173489,3.9272156,3.8885195,3.8358274,3.8069205,3.8484507,3.861062,3.873327,3.8986254,3.8768735,3.8668137,3.8304412,3.8571823,3.842909,3.8549109,3.9082065,3.9531384,3.9049704,3.9025893,3.92295,3.922357,3.9073665,3.9157593,3.8546429,3.8704057,3.8986936,3.894321,3.8836477,3.8792944,3.8726609,3.8480773,3.83084,3.8073373,3.7966561,3.8259668,3.8498173,3.8361511,3.836976,3.8296375,3.8143132,3.7847583,3.7853017,3.8073575,3.8002794,3.7397988,3.8214598,3.8345647,3.842073,3.8688323,3.847502,3.7916813,3.8783512,3.8849874,3.8660145,3.8408146,3.7604918,3.8173735,3.8152475,3.805949,3.7625117,3.7699993,3.8638613,3.8132052,3.8519363,3.8143885,3.8396928,3.8116899,3.8158321,3.8263173,3.858119,3.8453805,3.8546433,3.8733072,3.8533454,3.8130584,3.821629,3.7969165,3.7931604,3.8591495,3.821049,3.8450313,3.8237822,3.870543,3.7981482,3.842207,3.787801,3.8015783,3.7921896,3.825852,3.779654,3.8276005,3.7831807,3.7727365,3.836873,3.852236,3.7967284,3.8068871,3.815937,3.783711,3.8036633,3.81699,3.8099127,3.7960951,3.8334775,3.7926826
+0.12657377,0.26713324,0.318768,0.34194762,0.6064733,0.60265994,0.49018097,0.3920951,0.38312203,0.33334082,0.28874126,0.29854876,0.30879754,0.5002731,0.68649876,0.5517781,0.4491657,0.36398223,0.30422252,0.28186953,0.24690579,0.21891586,0.20299406,0.28809187,0.32099345,0.3414455,0.29888564,0.29538167,0.2515301,0.5067605,0.55589974,0.422247,0.35986507,0.32371873,0.51277626,0.6486654,0.4836563,0.44097334,0.39899027,0.42109042,0.3366519,0.33829957,0.27806532,0.25423852,0.22350638,0.2870296,0.2595184,0.24842428,0.25923538,0.23013304,0.2276587,1.2665524,1.6636119,1.3665752,1.0508068,0.85953844,0.848786,0.92029065,0.74012864,0.6247649,0.5273011,0.49762732,0.512053,0.45812306,0.3808345,0.37365508,0.35592613,0.34418893,0.2733763,0.31835443,0.6733191,0.97928643,0.7504113,0.6312252,0.5988513,0.49731445,0.36531377,0.35430315,0.32978058,0.4538855,0.3302734,0.29684556,0.3323421,0.32524383,0.28159958,0.42814958,0.32869637,0.28947657,0.2979357,0.27330247,0.27646208,0.25007898,0.21374577,0.21667998,0.17535792,0.14771746,0.15911116,0.2103937,0.24363185,0.7307706,0.6300349,0.52862084,0.31584135,0.5886199,0.59868073,0.4473584,0.3634339,0.37811214,0.33753675,0.32789525,0.28335938,0.21117786,0.47870636,0.89126575,0.5978473,0.4724782,0.3565393,0.4495479,0.40266606,0.32046774,0.24566822,0.16383173,0.11935182,0.06862825,0.094925,0.06274423,0.024585944,-0.05168085,-0.12075849,-0.05014271,-0.12768024,-0.004795324,0.04902156,0.017003935,-0.067212895,-0.12209535,-0.17584579,-0.29896754,-0.3340486,-0.38813865,-0.44785,-0.5767652,-0.62577075,-0.6221526,-0.63258725,-0.6395837,-0.7001359,-0.7519651,-0.80506617,-0.8355242,-0.9416319,-1.0150113,-1.015471,-1.0405118,-1.0606673,-1.0359142,-0.96465206,-0.9963386,-1.0331131,-0.9619826,-0.9366436,-0.9613652,-0.96103156,-0.96196127,-0.9672706,-1.0044366,-1.1324929,-1.1452398,-1.1682463,-1.0279492,-0.4231976,-0.5691924,-0.6285264,-0.6318889,-0.6756247,-0.7327213,-0.7376766,-0.79598427,-0.85964984,-0.9072236,-0.9112712,-0.94541067,-0.98401827,-0.9299731,-0.67000407,-0.7137288,-0.70687354,-0.5420934,-0.50371933,0.36560813,0.6589627,0.5107342,1.0868362,0.8353429,0.59557635,0.91227806,1.9510132,1.5009093,1.3836,1.5267942,1.4148207,1.3055301,1.6641908,1.6052629,1.312268,1.1405711,0.8961481,1.0726628,1.593879,1.6761415,1.4054571,1.1910156,1.0956222,1.662535,1.7653515,1.461654,1.1296307,0.88358086,0.8188859,0.9754882,1.0342027,0.76789117,0.62402487,0.5601245,0.52382505,0.51125115,0.55147976,0.9702389,1.2149904,1.1115327,1.0629041,1.1340123,1.2346239,1.3519886,1.3496492,1.4996958,1.5526433,1.8920686,2.1270528,2.1584244,2.1202278,2.22802,2.5536442,2.853794,3.00194,3.296361,3.438922,3.6775193,3.846287,3.9842176,4.045976,4.078682,4.1510086,4.136118,4.200866,4.2517753,4.2483873,4.2740536,4.3316345,4.3122377,4.307612,4.309299,4.3643403,4.4868574,4.466092,4.5073013,4.590497,4.6026273,4.7014694,4.662042,4.5862904,4.5826902,4.6398764,4.6588492,4.562781,4.586972,4.5990524,4.562689,4.5290117,4.5131454,4.5071507,4.4818006,4.5027657,4.4760776,4.5282955,4.485633,4.479165,4.4540515,4.4555254,4.4539886,4.458029,4.518159,4.522301,4.5860496,4.5385027,4.655857,4.6173143,4.613092,4.642817,4.6988807,4.7344933,4.6384377,4.6863933,4.708841,4.6972694,4.735573,4.616975,4.567303,4.574362,4.544302,4.5688887,4.5672626,4.545346,4.5755534,4.5780005,4.6046286,4.5984287,4.592574,4.5972576,4.582965,4.5460405,4.8205185,4.732999,4.7272015,4.6975293,4.6415367,4.6408806,4.6486278,4.5910482,4.553644,4.60504,4.594268,4.536972,4.517582,4.5613785,4.6524186,4.6215944,4.569684,4.6009765,4.50441,4.4442825,4.464639,4.540659,4.534557,4.570862,4.5722938,4.6214767,4.609192,4.6697607,4.4911375,4.5039945,4.5041146,4.437459,4.4999294,4.551672,4.434855,4.422424,4.39884,4.449112,4.4765186,4.487688,4.407596,4.415208,4.3635445,4.3669367
+0.1341499,-0.027420234,-0.1057456,-0.07902548,0.15236726,0.13969639,0.100406796,0.055211652,-0.011589874,-0.05737168,-0.08536887,0.026498325,0.264765,0.81445336,0.7326779,0.43672198,0.30113557,0.20434715,0.11137892,0.059235234,0.008517701,-0.07909599,0.3182171,0.5759498,0.44809246,0.31458092,0.24272521,0.20092763,1.2806094,1.2364321,0.90443856,0.63785684,0.46058407,0.37099618,0.3809542,0.73162794,0.56898093,0.35161477,0.22539,0.16785292,0.07221642,0.037723865,0.009943549,0.023685072,0.62257504,1.329612,0.86818767,0.5712973,0.5803346,0.5127979,0.84948564,1.0006227,0.7125716,0.55945444,0.4734947,0.34011012,0.2303075,0.13798444,0.09928028,0.04879507,0.049750727,0.06333473,-0.0054778345,-0.10195404,-0.114954144,-0.12169322,-0.15759957,-0.21511137,-0.26037908,-0.1423665,0.12396857,0.2782212,0.0582312,-0.056379136,-0.07928541,-0.051257934,0.39711154,0.45208222,0.42278183,0.36890462,0.22601257,0.087164894,0.028580237,-0.029588822,0.012904692,0.062284146,0.008001745,-0.011654329,-0.057692856,-0.12675819,-0.21917999,-0.31750375,-0.4003394,-0.5358672,-0.6825383,-0.72403425,-0.808262,-0.83960205,-0.5511061,0.7351969,1.2380126,1.0413034,0.5913923,0.44175014,0.21013232,0.040710483,-0.07952267,-0.10909435,-0.15991886,-0.24368086,-0.29210323,-0.34251988,-0.48052883,-0.61040676,-0.6876837,-0.76523787,-0.8888008,-0.97777545,-1.0693833,-1.1450322,-1.2317669,-1.3622493,-1.4090601,-1.4597439,-1.5044891,-1.488936,-1.496742,-1.5535976,-1.5705726,-1.6279631,-1.2223307,-0.12373258,-0.30772567,-0.5583751,-0.71513015,-0.854093,-0.96541876,-1.0765543,-1.1668706,-1.2372804,-1.2948987,-1.3990732,-1.489298,-1.5556135,-1.6066775,-1.6384215,-1.6654935,-1.6997738,-1.7350026,-1.7412434,-1.774807,-1.7940216,-1.80305,-1.84138,-1.83901,-1.7221347,-1.7348354,-1.7686007,-1.5580249,-0.8157786,-0.93668807,-1.0959603,-1.1795871,-1.2246363,-1.3116708,-1.3750923,-1.4536673,-1.4963274,-1.5466245,-1.5520115,-1.4685323,-1.4902266,-1.5025889,-1.5445287,-1.5248126,-1.4738148,-1.4752082,-1.517555,-1.5291314,-1.5450715,-1.5609827,-1.5876462,-1.5632849,-1.4611925,-1.5229619,-1.552184,-1.458751,-1.1317718,-0.8705218,-0.70709586,-0.46246174,-0.41315416,0.074060395,-0.21809615,-0.4616151,-0.4827991,0.3739108,0.21249716,0.5010951,0.64022875,0.40483606,0.10498254,-0.03797522,0.19300249,0.37911934,0.04936712,-0.16416873,-0.093615025,0.28939474,0.28941134,0.12582807,0.07102843,0.24455898,0.712083,0.38508394,0.14430517,-0.010116678,-0.110070184,-0.19391155,-0.120651305,-0.13227053,-0.23897617,-0.323893,-0.38355964,-0.42522854,-0.43950194,-0.28890666,-0.020182777,0.50210804,0.35359794,0.088398814,0.11209427,0.26629785,0.41604996,0.45282695,0.29939556,0.4338693,0.4041499,0.3670539,0.27632555,0.18187147,0.46406794,0.39686006,0.5142872,0.70400655,0.65218276,1.0492983,1.510335,1.3780584,1.9542329,2.138032,2.3284998,2.5040014,2.6884315,2.813551,2.9102807,3.0863194,3.118605,3.192321,3.083572,2.9161167,2.8938522,3.001601,3.1644936,3.0109124,3.0965328,3.286686,3.3989978,3.2946854,3.2755136,3.420247,3.2216933,3.4092405,3.4744287,3.4681587,3.4550061,3.5027766,3.4075105,3.364976,3.295858,3.179929,3.1782944,3.1887984,3.361685,3.4236264,3.5155363,3.3752775,3.2713585,3.2127366,3.1266577,3.0823836,3.1019976,3.3291354,3.589367,3.7859967,3.950454,3.9823961,3.9571362,3.8070755,3.7919788,3.7866476,3.7908328,3.7952032,3.8143187,3.8334296,3.8606162,3.7781415,3.7552154,3.7495382,3.814303,3.9807243,4.0363345,4.0167713,4.004607,4.2110004,4.1440372,3.89938,3.9829535,4.002075,4.0056877,3.9899268,4.161372,4.078162,4.028886,4.0247917,3.9143658,3.900671,3.744581,3.6765077,3.8106356,3.8506567,3.890755,3.9072676,3.8564563,3.8758178,4.0031614,4.123089,3.6898808,3.363858,3.350879,3.4307442,3.5366344,3.4384587,3.156558,2.550194,2.2251346,2.0297484,2.086632,1.8347516,1.7169585,1.3970582,1.8289847,1.4595292,1.3568311,1.3831264,1.2906885,1.1290776,1.162614,1.5304611,1.279409,1.3295741,1.0945419,1.5314803,1.329638,0.9831536
+0.22162326,0.12814103,0.1655949,0.19130531,0.28905064,0.2705534,0.18709017,0.10149382,0.05689365,0.060543153,0.067992166,0.09836598,0.6101583,0.73823786,0.73277706,0.63522273,0.4045073,0.21778868,0.0909619,-0.005578663,-0.07043409,-0.106123835,0.0072505362,0.1965171,0.21760257,0.24674694,0.28103423,0.44820672,0.36505452,0.41798574,0.3358217,0.22375102,0.12939744,0.059563015,0.053400386,0.35274783,0.47543705,0.29129535,0.17154554,0.16110238,0.08212902,-0.028150346,-0.08970782,-0.15577997,0.30648723,0.6222989,0.47042102,0.31770247,0.55286455,0.7607592,0.9882251,1.0143373,0.76739925,0.50574285,0.36584532,0.269384,0.1942347,0.13997631,0.05247538,0.041289303,-0.01718169,-0.08980563,-0.1241954,-0.11357875,-0.18805028,-0.23983951,-0.23632054,-0.25238052,-0.3189224,-0.30200264,-0.35880506,-0.30118462,-0.33959502,-0.38793442,-0.29654217,-0.22125615,0.39255494,0.44173717,0.3136017,0.256887,0.042780314,-0.009365868,-0.12838618,-0.16093798,-0.16924264,-0.23404162,-0.28671625,-0.32036626,-0.32058668,-0.345784,-0.35110173,-0.3700901,-0.43511164,-0.41982967,-0.4821973,-0.5030553,-0.49843156,-0.5250245,-0.5844221,-0.34356293,0.5116136,0.662971,0.44704536,0.5151007,0.24111103,0.08208193,-0.005529832,-0.07337418,-0.15988746,-0.19033842,-0.24387972,-0.33448428,-0.36206156,-0.39699936,-0.43336797,-0.46805015,-0.49574476,-0.51134855,-0.53651845,-0.56860375,-0.58924365,-0.64698035,-0.67870426,-0.7036363,-0.70005196,-0.7184893,-0.81298757,-0.80764437,-0.831318,-0.7838155,-0.7411381,-0.59443545,-0.6707467,-0.746928,-0.79930675,-0.8486625,-0.8590838,-0.92557466,-0.9472208,-0.97241646,-0.9965086,-1.0227593,-1.0640303,-1.074842,-1.0999937,-1.0910907,-1.0962305,-1.1095898,-1.142348,-1.1313053,-1.2089276,-1.250624,-1.2621245,-1.2701507,-1.2708704,-1.2822876,-1.2843268,-1.2728014,-1.2916744,-1.1342795,-1.1762574,-1.225811,-1.2675614,-1.2466946,-1.2657342,-1.26296,-1.2516453,-1.2715045,-1.3043814,-1.2920057,-1.162096,-1.1232595,-1.1523542,-1.1661925,-0.9789767,-0.6904071,-0.7252475,-0.82458484,-0.9304999,-1.0028408,-1.0563083,-1.1037817,-1.1427138,-1.1257186,-1.2021558,-1.1779916,-1.135451,-0.9797476,-0.7692718,-0.65331614,-0.5999887,-0.6534936,-0.7036308,-0.761225,-0.8342016,-0.6063069,0.43666548,0.48653233,0.55513155,0.40107208,0.41325632,0.25373882,0.13110141,0.057998527,0.11619258,-0.059000608,-0.20831676,-0.055936825,0.31744903,0.10843548,-0.010718357,-0.11701052,0.20391233,0.51883805,0.34312367,0.15181841,-0.026071098,-0.14475888,-0.21688236,-0.23537232,-0.29186708,-0.3674983,-0.42882124,-0.47659096,-0.52257675,-0.5388775,-0.5296287,-0.47051394,0.2927048,0.46655196,0.26866516,0.41610253,0.59944206,0.6371856,0.52991587,0.51660883,0.83285487,0.9354636,1.0109522,0.9609871,0.887336,1.0190825,1.1211151,1.3275951,1.4305024,1.5035958,1.9100322,2.2196913,2.272346,2.3219924,2.3535838,2.5333896,2.9982333,3.493897,3.6485534,3.8601902,3.7920144,3.7406955,4.056842,3.9142933,3.798424,3.7172737,3.730637,3.9379907,3.807736,3.7683694,3.9028168,3.9630725,3.8751597,3.8069282,3.965438,3.9209878,3.921667,3.8837483,3.8028169,3.7657413,3.7638428,3.7977686,3.7471347,3.6425908,3.6055412,3.6875496,3.877874,4.1444874,4.173677,4.264331,4.125042,4.02176,3.9774928,3.9395175,3.9003265,3.9104471,4.0744658,4.2173386,4.22727,4.2919526,4.302458,4.23084,4.169662,4.118264,4.175323,4.057062,4.0270205,4.0443635,4.078699,4.126374,4.1447134,4.133587,4.2272305,4.3854675,4.4737053,4.4568515,4.3774757,4.408504,4.398464,4.1410074,4.1215553,4.182227,4.1673775,4.140899,4.0940948,4.293824,4.2748013,4.2358313,4.137952,4.118662,3.9535785,3.9797049,4.100894,4.110905,4.0997944,4.181347,4.1860065,4.2075396,4.2168465,4.2423964,4.25272,4.285549,4.2848597,4.2707586,4.327901,4.411025,4.3778954,3.8864176,3.6078098,3.5579386,3.4676583,3.1062675,2.7284274,2.4689324,2.234231,2.2735167,1.9336219,1.6599154,1.6260521,1.7765559,1.7601433,2.2433167,2.4453256,2.4761,2.579062,2.4827092,2.8725972,2.662358,2.3332288
+-0.4839685,-0.5247664,-0.49662566,-0.51409465,-0.5159132,-0.53387094,-0.5811688,-0.6360711,-0.6776912,-0.7241929,-0.75243664,-0.74395144,-0.51401746,-0.36397222,-0.25989866,-0.3315992,-0.43387592,-0.5270949,-0.6166436,-0.7032453,-0.8127047,-0.8998618,-0.79411495,-0.6863097,-0.5584303,-0.5241364,-0.60700595,-0.60960054,-0.58460194,-0.5991646,-0.65834343,-0.6903795,-0.7409241,-0.80600333,-0.85613084,-0.7713564,0.2048949,0.45214546,0.10625188,-0.08562036,-0.16395478,-0.29502884,-0.4173177,-0.5325227,-0.5138333,-0.18706842,-0.18628843,-0.35744405,-0.34661582,-0.016317379,0.119532034,-0.0021192096,-0.1444342,-0.27755442,-0.39412403,-0.49117947,-0.6291381,-0.6845409,-0.7301291,-0.7803981,-0.837088,-0.8950108,-0.98485464,-1.0495981,-1.093744,-1.1752949,-1.1836598,-1.2255812,-1.3148735,-1.3754332,-1.4273939,-1.477309,-1.5389178,-1.5668449,-1.4853559,-1.4445703,-0.7537441,-0.4953694,-0.5847006,-0.6873792,-0.8014723,-0.90970737,-1.0489347,-1.137502,-1.2156577,-1.3018775,-1.3558223,-1.4062946,-1.466531,-1.5331199,-1.5637317,-1.5930974,-1.6480601,-1.6917703,-1.7109767,-1.7595813,-1.7933922,-1.8094475,-1.8241835,-1.8310691,-0.75414556,-0.102206424,-0.34479183,-0.52727056,-0.69719344,-0.81392026,-0.9257245,-1.0396249,-1.097835,-1.1808884,-1.2727649,-1.3524683,-1.4258173,-1.5060992,-1.5640812,-1.602746,-1.6475593,-1.6995265,-1.7246397,-1.7477149,-1.7775836,-1.8218858,-1.8715863,-1.8868657,-1.9334624,-1.975457,-1.9499354,-1.9502054,-1.9609796,-2.0049717,-2.032166,-2.062465,-2.044195,-2.040043,-2.0381413,-2.0287232,-2.0366068,-2.040266,-2.0345044,-2.0713856,-2.098888,-2.1313133,-2.126652,-2.150256,-2.2055755,-2.222276,-2.2292004,-2.2167053,-2.2079434,-2.2092237,-2.195036,-2.17208,-2.1999798,-2.2535157,-2.2548265,-2.2765944,-2.1256294,-1.9010313,-1.8502235,-1.7919699,-1.8477367,-1.9288763,-1.9814814,-1.9820235,-2.038914,-2.0674472,-2.0130582,-2.0389342,-2.079297,-2.0584688,-2.0293298,-2.0293505,-2.0351562,-2.0193667,-2.0054784,-1.7438089,-1.6284451,-1.6816318,-1.7047796,-1.7295865,-1.7588991,-1.7874756,-1.8264284,-1.8543715,-1.931441,-1.8721598,-1.8526186,-1.8069878,-1.6738706,-1.4667428,-1.4221792,-1.4386413,-1.457201,-1.4645965,-1.5558801,-1.4909472,-1.1838012,-1.0723203,-1.0820904,-1.0819249,-0.4428622,-0.26202318,-0.3856578,-0.472705,-0.5256015,-0.5944663,-0.61037785,-0.418788,-0.44623828,-0.48100668,-0.45282432,-0.5366856,-0.37162834,0.027867261,-0.053759437,-0.17000057,-0.24127056,-0.29244918,-0.30787304,-0.26681584,-0.29008764,-0.3329083,-0.3580521,-0.39033556,-0.42748946,-0.41366988,-0.42559302,-0.37443894,-0.3471671,-0.3103716,-0.41512442,-0.38592172,-0.2871777,-0.2744142,-0.26781672,-0.30915755,-0.24324144,-0.2654857,-0.21835716,-0.2306209,-0.21040781,-0.1467469,-0.11219606,-0.1031699,-0.008350391,0.022867624,0.17217198,0.1894703,0.16148828,0.29859155,0.36914384,0.49712425,0.6976065,1.3397886,1.1754308,1.3303299,1.2676052,1.3785032,1.8323511,1.8974148,1.7538929,1.7546822,1.8309364,2.0293894,1.9507585,1.9400053,2.015924,2.1714673,2.0357184,1.979763,2.0356312,2.1584425,2.138257,2.1275508,2.117057,2.0556161,2.1310062,2.204153,2.4369884,2.4645982,2.4063838,2.5643864,2.8788316,3.2989457,3.4557438,3.587573,3.4666395,3.4150295,3.4016242,3.398645,3.3793645,3.4461672,3.6058903,3.8644626,3.6822014,3.723993,3.6788192,3.639828,3.5050392,3.4300008,3.4567096,3.3988183,3.4356608,3.4659393,3.453196,3.4303296,3.4574897,3.43333,3.542606,3.574337,3.6195803,3.6386251,3.867969,3.7222877,3.894405,3.5259337,3.316306,3.4727764,3.5253897,3.5220118,3.5156004,3.6269832,3.513562,3.637104,3.6620271,3.699064,3.397713,3.1461012,3.1016133,3.0027885,3.072248,3.022893,2.96916,2.847789,2.816272,2.8190255,2.889815,3.027429,3.0251198,2.8326635,2.8582008,2.852312,2.624529,1.8146734,1.3016498,1.2396352,0.9867114,0.9300219,0.70090765,0.64491946,0.5162529,0.4551863,0.5312795,0.512625,0.57055765,0.6041026,0.39207405,0.38273317,0.5799571,0.48018402,0.8092415,0.6454059,0.62835467,1.6662576,0.9644339
+0.36334646,0.22196923,0.059483897,-0.06397422,-0.10870941,-0.08561559,-0.13223411,-0.19767676,-0.27860132,-0.27750808,-0.20152958,-0.26627168,0.076837346,0.23529617,0.54266125,0.5097296,0.30781958,0.15233357,0.038780946,-0.06583561,-0.17892112,-0.32586333,-0.48448938,-0.36685923,0.93671876,0.78405714,0.7537259,0.7273001,0.64482397,0.69833815,0.58103156,0.40837866,0.26136363,0.12135938,0.025043514,0.31880265,0.7446552,0.67461604,0.42677876,0.27186,0.20355919,0.06898108,-0.008845579,-0.099351525,-0.14726399,0.27007815,0.4986372,0.28536937,0.24053599,0.30607814,0.27147248,0.2101487,0.058810893,-0.017078858,0.5107904,0.52564096,0.23127942,0.097736046,0.023860488,-0.04280333,-0.12691042,-0.18276443,-0.24494232,-0.29570174,-0.33970064,-0.41401508,-0.47234815,-0.5135987,-0.5716484,-0.68974197,-0.7615843,-0.7934748,-0.86934817,-0.8754523,-0.92646,-0.9254837,-0.7718369,-0.68005997,-0.7174895,-0.75357145,-0.82398146,-0.8758908,-0.9494724,-0.98890984,-1.0176276,-1.0487398,-1.0797584,-1.0950885,-1.1439127,-1.1887059,-1.2165493,-1.2240996,-1.2690829,-1.273469,-1.300379,-1.3612657,-1.3795933,-1.4014745,-1.4190826,-1.43732,-1.4739802,-1.4597116,-1.4749405,-1.4404402,-1.5209444,-1.5435929,-1.5358169,-1.5759668,-1.5980946,-1.6124508,-1.6104517,-1.6461875,-1.6431109,-1.6581851,-1.7169372,-1.7529728,-1.768307,-1.768213,-1.7976875,-1.8195667,-1.8254465,-1.8393201,-1.8912107,-1.9096328,-1.9341754,-2.0062685,-2.0377588,-1.9883866,-2.0267632,-2.0486403,-2.0286777,-2.060297,-2.0753207,-2.080105,-2.0881517,-2.0946422,-2.1019993,-2.1235917,-2.1292949,-2.1143894,-2.1574636,-2.172803,-2.1802795,-2.1913218,-2.2085717,-2.227429,-2.2425425,-2.2472446,-2.2487233,-2.2397456,-2.2544336,-2.261693,-2.2506914,-2.2496502,-2.301261,-2.3144298,-2.3368583,-2.2705708,-2.3420372,-2.3056996,-2.3093224,-2.3529372,-2.3880076,-2.3377557,-2.3461537,-2.3531404,-2.0230482,-1.9013088,-1.9473186,-1.9496619,-1.9233363,-1.9388541,-1.9822453,-2.0395005,-1.8774854,-1.5514455,-1.4560826,-1.5646145,-1.581821,-1.609904,-1.6550157,-1.682421,-1.6636,-1.706449,-1.7585744,-1.660636,-1.5302536,-1.5815421,-1.5694726,-1.5933688,-1.6384839,-1.654731,-1.6555278,-1.6815579,-1.7192372,-1.7207458,-1.4718838,-0.63289094,-0.16612677,0.7222544,0.7728826,0.45243996,0.34730387,0.20954612,0.033091497,-0.10855533,-0.20040302,-0.19350986,-0.3093358,-0.39022672,0.63211596,0.6364571,0.77800316,0.8913636,0.80971235,0.53428257,0.50882393,0.4936909,0.41640353,0.33281156,0.25648996,0.19333154,0.12766434,0.06409074,0.018606316,-0.024008255,-0.083615944,-0.072473034,-0.10512394,-0.028992262,-0.10258198,0.06261706,0.16546126,0.12294215,0.2032561,0.19618858,0.41336644,0.5378276,0.66748554,0.7323994,1.4614787,1.8820701,1.957546,2.0239089,2.106123,2.2094426,2.3470972,2.333684,2.6055036,2.6334815,2.762363,2.8189955,3.2699223,3.7949781,3.3814802,3.4594767,3.6180162,3.9444664,4.093363,4.192277,3.9091876,3.9316812,3.9221144,3.9814787,3.9976091,3.9718342,3.9886994,4.0514383,3.8620317,3.7592385,3.8034816,3.7658205,3.832615,3.808795,3.8346667,3.6838493,3.787467,3.8413804,4.1245356,3.9293976,3.910098,3.957258,4.2449083,4.327616,4.2818203,4.429796,4.1525784,4.113975,4.1005516,4.0571947,3.9986405,3.9646022,4.0366797,4.240769,4.152386,4.097227,4.108979,4.1338367,4.008639,3.9517338,3.9966612,3.945943,3.9201422,3.9744215,3.9643807,3.948041,4.1033545,4.13779,4.2748857,4.2382345,4.2133436,4.180943,4.40162,4.0748634,4.345678,4.3421593,4.118649,4.1396165,4.167569,4.1894383,4.1528444,4.232666,4.121888,4.313148,4.278787,4.386644,4.40333,4.339132,4.1890936,4.108694,4.1335325,4.0443163,4.1066036,4.0784307,4.0767655,4.0803,4.129133,4.181512,4.180027,4.0270624,4.1179514,4.2232313,4.2471766,4.351989,4.248944,4.324979,4.224951,4.223395,3.6993246,3.0587611,2.6396122,2.0897987,1.839644,1.4937456,1.1721702,0.92272854,0.7270632,1.0400338,1.2706265,1.312221,1.6117138,1.7089143,1.9686215,2.6170752,2.218553
+-0.115750626,-0.3914616,-0.5725405,-0.70616454,-0.7545968,-0.7934202,-0.8580335,-1.0176765,-1.0579088,-0.37507963,-0.18461238,-0.33628914,-0.527368,-0.73626685,-0.7615913,-0.76998085,-0.80378443,-0.90858877,-1.0037416,-1.1205953,-1.2363096,-1.4108305,-1.2055476,-1.184269,-0.7550143,-0.41717318,-0.29054356,-0.28419587,-0.3483873,-0.25543594,-0.31465656,-0.47262642,-0.58190274,-0.7600982,-0.86631894,-0.45714098,0.017179172,0.12869194,0.20563243,-0.1591615,-0.27731925,-0.4748716,-0.6629996,-0.8279867,-0.9362284,-0.99814594,-0.9295044,-0.9975819,-1.146584,-1.2984729,-1.4165039,-1.4431162,-1.4519582,-1.3458182,-0.8854131,-0.71351266,-0.8953644,-0.9755095,-1.1098319,-1.2019664,-1.3024338,-1.3982098,-1.4834862,-1.5834374,-1.6330652,-1.7107782,-1.7831604,-1.8302763,-1.8592308,-1.9392817,-1.9882739,-2.0271628,-1.6786113,-1.4390043,-1.5159396,-1.6399696,-1.6668346,-1.6908118,-1.75787,-1.7954113,-1.8780085,-1.929672,-1.9805372,-2.0175526,-2.0460672,-2.0927403,-2.140133,-2.1603348,-2.1885915,-2.2249212,-2.264227,-2.281979,-2.312193,-2.096784,-2.04249,-2.078197,-2.1257792,-2.172299,-2.1936593,-2.2410746,-2.254903,-2.2871954,-2.3093224,-2.3130774,-2.3437502,-2.3756204,-2.3605719,-2.3803284,-2.4084926,-2.417231,-2.4226458,-2.4429245,-2.440361,-2.469532,-2.4869297,-2.4827008,-2.4761953,-2.493373,-2.4960175,-2.4921188,-2.502767,-2.5288382,-2.5556498,-2.5678396,-2.5711565,-2.6366558,-2.5898561,-2.58466,-2.6138492,-2.6321154,-2.619513,-2.6548676,-2.6629064,-2.6611352,-2.6475868,-2.634892,-2.6303787,-2.6636,-2.7189996,-2.6833787,-2.6607099,-2.6770332,-2.680439,-2.6945913,-2.6813445,-2.7208238,-2.743648,-2.742918,-2.744286,-2.7279315,-2.7522893,-2.7510102,-2.7412238,-2.7505038,-2.7738924,-2.8307397,-2.7715514,-2.7936783,-2.8256402,-2.8195906,-2.8138776,-2.8344984,-2.8536553,-2.822053,-2.7925384,-1.8329798,-0.46662205,-0.82104325,-1.0117906,-1.1295627,-1.2285221,-1.3184745,-1.4115915,-1.5074296,-1.2712663,-1.3472694,-1.447445,-1.5500923,-1.6090235,-1.6553462,-1.7084446,-1.7640679,-1.817672,-1.8740549,-1.9304552,-1.9312694,-1.9625268,-1.9791927,-2.0243456,-2.0640874,-2.106808,-2.1134686,-2.144176,-2.1682737,-2.2261193,-2.2789085,-2.3024273,-2.2501686,-1.6377226,-0.36001337,-0.42007205,-0.7194458,-0.8017432,-0.8640772,-0.9321653,-1.0277879,-1.1323062,-1.099664,-1.1656095,-1.2561896,-0.40686524,-0.05135193,-0.23517744,-0.051765848,-0.3541303,-0.5179627,-0.58881915,-0.61213344,-0.6408582,-0.66762745,-0.7206613,-0.775193,-0.8311819,-0.8762803,-0.9031775,-0.93250895,-0.9440135,-0.95638055,-0.95951945,-0.9748642,-0.9455313,-0.88515013,-0.8410283,-0.8436359,-0.63810754,-0.5806681,-0.4895631,-0.4080259,-0.3396091,-0.30628425,-0.19877522,-0.020308863,0.08645724,0.123854265,0.25293118,0.2059163,0.15282752,0.26267642,0.2880522,0.12303837,0.25572324,0.24812357,0.48508346,1.1563386,1.3296721,1.1449811,1.1624441,1.4985093,1.3724533,2.0019832,1.8308536,1.9332638,1.9654152,1.931699,1.9765754,1.9901981,1.96947,2.3481271,2.18909,2.1616845,2.1010885,2.0443,2.0908365,2.0656142,2.0977085,2.0407515,2.1638176,2.150885,2.6185164,2.7432814,2.6065407,2.5252728,2.8020787,3.1556678,3.1009336,3.300188,3.165293,3.049705,2.8590143,2.7590442,2.6574943,2.6183622,2.6260285,2.9459033,2.902805,2.8261962,2.8709095,2.982994,2.7075703,2.5279443,2.6223576,2.5065653,2.5484376,2.5963798,2.5812862,2.5110688,2.5833802,2.656268,2.720191,2.848437,2.8788652,2.8124077,3.06446,2.844164,2.6376615,1.9686728,1.5391246,1.8450325,2.119598,2.2511408,2.311465,2.4225292,2.3263826,2.5800138,2.562624,2.7498899,2.8293252,2.9414563,2.7172568,2.677099,2.6860156,2.6344457,2.6296477,2.542914,2.635662,2.8062336,2.9075801,3.0295215,2.9585452,2.7881327,2.7529614,2.8769298,2.9594736,2.8621721,2.6223354,1.8396974,1.101053,0.6990235,0.4788887,0.3578239,0.28339958,0.20523144,0.14136396,0.10773437,0.021751523,0.053758178,0.0017373748,0.022856582,0.14923187,0.067591906,0.2753958,0.30424643,0.41443813,0.3950538,0.30785424
+0.76696324,0.52788067,-0.07505785,-0.3947128,-0.41727823,-0.49713707,-0.56802833,-0.7213416,-0.4995063,-0.08823499,0.018074833,-0.20383176,-0.42012537,-0.57962084,-0.56287444,-0.546323,-0.57335186,-0.6738013,-0.7781948,-0.91346395,-1.1163117,-1.3213735,-1.0761884,-0.94098824,-0.24139951,0.3542387,0.34323943,0.051873077,-0.033850502,0.01858354,-0.055970434,-0.2794914,-0.4109257,-0.57280475,-0.74279785,-0.62079763,-0.15651438,0.18035612,0.0027422197,-0.30721658,-0.39756238,-0.5225011,-0.6702472,-0.82915473,-0.8718468,-0.8627613,-0.78490907,-0.7876972,-0.94215477,-1.1626835,-1.2166932,-1.1391602,-1.1236255,-1.0197055,-0.6832407,-0.36101803,-0.4956438,-0.6305322,-0.7188239,-0.7747359,-0.87288743,-0.9764677,-1.0783181,-1.1722176,-1.2816014,-1.3799227,-1.4143,-1.474097,-1.5516627,-1.6671824,-1.7692204,-1.8326781,-0.82648283,0.050675545,-0.38284153,-0.6200199,-0.7339498,-0.8435179,-1.0391966,-1.1701561,-1.3305198,-1.444784,-1.5530434,-1.6377857,-1.682755,-1.7237899,-1.8073602,-1.8692571,-1.9337046,-1.9929624,-2.0374904,-2.0814924,-2.043653,-2.0438533,-2.0711842,-2.0976272,-2.123752,-2.1455302,-2.179029,-2.2386663,-2.196528,-2.2080626,-2.215424,-2.234424,-2.270375,-2.3165128,-2.2985198,-2.3296022,-2.3620312,-2.372992,-2.3892472,-2.4287193,-2.4305844,-2.4490962,-2.4746857,-2.469285,-2.484506,-2.5136914,-2.5326428,-2.543643,-2.5456212,-2.5530028,-2.5790403,-2.5863006,-2.5762024,-2.6937547,-2.632667,-2.6331272,-2.622108,-2.634254,-2.6221921,-2.625355,-2.6468525,-2.6721854,-2.679428,-2.674249,-2.6541755,-2.7122226,-2.7123952,-2.764948,-2.7144043,-2.7236228,-2.7323356,-2.7805219,-2.7066097,-2.699103,-2.721535,-2.734449,-2.726392,-2.735846,-2.7600467,-2.8036776,-2.7951484,-2.840639,-2.734772,-2.7655237,-2.724595,-2.7239034,-2.7433174,-2.7401576,-2.7388964,-2.7548547,-2.7709918,-2.7686415,-2.7219687,-1.8039473,-1.0023171,-1.2259431,-1.3202937,-1.3909861,-1.4909108,-1.5774696,-1.6722295,-1.5567105,-0.73052466,-0.8645927,-1.0388395,-1.1474211,-1.2294511,-1.3234804,-1.4340054,-1.5594401,-1.5014257,-1.485044,-1.566509,-1.5333338,-1.4680519,-1.4434197,-1.4331232,-1.4197125,-1.4515314,-1.5062891,-1.5854136,-1.639208,-1.6803848,-1.7345312,-1.8029742,-1.8602569,-1.7859702,-1.3062626,-1.3063917,-1.2134613,-1.1806295,-1.1898413,-1.2205997,-1.2784581,-1.3975683,-1.4692051,-1.5199443,-1.5652668,-1.2248353,-0.79024446,-0.87373,-0.6912438,-0.78158975,-0.7828902,-0.75526476,-0.7611819,-0.7846369,-0.79867435,-0.81961966,-0.86709565,-0.914659,-0.9466696,-0.96429527,-0.95823765,-0.9572292,-0.9105201,-0.88801295,-0.86438036,-0.8610178,-0.7022018,-0.5790756,-0.5650301,-0.6036587,-0.7269857,-0.5994209,-0.48835403,-0.3892231,-0.36036485,-0.3216743,-0.16987085,-0.08740668,-0.062534794,-0.005581539,-0.0003750138,-0.026647609,0.012794513,-0.022579934,-0.06787756,0.039222855,-0.0005098097,0.11853756,0.05301078,0.013751078,0.12076007,0.12256245,0.23980106,0.19640312,0.32391497,0.36019146,0.47939372,0.54020345,0.60967386,0.61313504,0.5964615,0.64763707,0.7677311,0.76481974,0.7611377,0.79391885,0.84664553,0.853089,0.87151706,0.88159543,0.8497802,0.8073632,0.7850468,1.050854,1.3856413,1.2126595,1.2077034,1.2686697,1.6713858,1.5813603,1.6448143,1.5798473,1.6375494,1.5620708,1.5314274,1.5281456,1.5115116,1.468849,1.5259018,1.4478235,1.4014688,1.3888183,1.5281692,1.4919285,1.4276414,1.411659,1.4060589,1.4654548,1.5319483,1.5646896,1.5592532,1.5372803,1.5437495,1.4766454,1.4487104,1.433278,1.4596646,1.7242326,1.8146929,1.916264,2.2131119,2.335969,2.262964,2.170228,2.1585755,2.1158288,2.1186779,2.098741,2.2105365,2.0540884,2.2237394,2.2158191,2.255828,2.101134,1.9804051,1.8634723,1.8643965,1.8721428,1.90248,1.9634132,2.0179493,2.0588994,2.0961118,2.0854564,1.9996858,1.9250481,2.0308967,2.1839783,2.3076677,2.4411273,2.4971333,2.496099,2.412308,2.0917974,1.4502127,1.0405225,0.39430448,-0.00043509528,-0.1191863,-0.28047508,-0.14197195,0.0648669,0.2305092,0.49205863,0.4480265,0.65965676,0.7576754,0.8718548,0.98624086,0.9571224
+-0.9610772,-0.98217577,-1.1029567,-1.2402551,-1.3388304,-1.4333792,-1.5318637,-1.6792578,-0.40689477,-0.11909738,-0.43755746,-0.64150584,-0.8280812,-0.9691025,-1.1474677,-1.2217249,-1.2469547,-1.3154123,-1.3922158,-1.4929842,-1.6423608,-1.787297,-1.8232459,-1.8204926,-1.7013595,-1.6455626,-1.6763078,-1.7025851,-1.6787773,-1.7216648,-1.7395635,-1.7276609,-1.6966405,-1.7690119,-1.8903975,-1.9171678,-1.8491753,-1.7751533,-1.589756,-1.6842132,-1.7636632,-1.8144543,-1.8893609,-1.9635805,-1.9967483,-2.0608506,-2.126048,-2.1156464,-2.106111,-2.1697054,-2.2206879,-2.2714274,-2.2697399,-2.266661,-2.165378,-2.0796337,-2.0872228,-2.1429977,-2.1625514,-2.1842992,-2.211238,-2.2287467,-2.2602642,-2.2915564,-2.3230782,-2.3541114,-2.3657093,-2.3900304,-2.414084,-2.4334092,-2.4547853,-2.536136,-2.0745425,-1.5700097,-1.5410373,-1.6545343,-1.7667534,-1.8844578,-1.9856853,-2.117579,-2.1408453,-2.211773,-2.283752,-2.3265374,-2.3486996,-2.3795085,-2.4114225,-2.41962,-2.441683,-2.4684792,-2.4763358,-2.5046582,-2.5420637,-2.4874513,-2.5062356,-2.5315738,-2.54767,-2.5516663,-2.54567,-2.560711,-2.5512493,-2.5789404,-2.5818057,-2.5967262,-2.5799384,-2.5976477,-2.60149,-2.6106555,-2.602755,-2.6150396,-2.6269157,-2.6336803,-2.6436553,-2.6572046,-2.6592925,-2.6518927,-2.6505404,-2.666144,-2.66504,-2.6569078,-2.668153,-2.6829033,-2.6993206,-2.704084,-2.7232685,-2.7302058,-2.7101676,-2.7269669,-2.7182755,-2.7338386,-2.7292876,-2.7275286,-2.7334328,-2.7396863,-2.7577975,-2.7494807,-2.7302084,-2.763009,-2.7626004,-2.7596922,-2.755648,-2.760456,-2.7747416,-2.7758904,-2.773788,-2.7841988,-2.7879899,-2.7705526,-2.7817752,-2.7855377,-2.7955441,-2.7974439,-2.7887387,-2.791111,-2.8108501,-2.8216686,-2.790204,-2.808496,-2.8141289,-2.8234553,-2.814138,-2.8275626,-2.8607125,-2.8338861,-2.8162518,-2.8623755,-2.854845,-2.8494322,-2.8548694,-2.850366,-2.8550355,-2.8429244,-2.8610797,-2.8781514,-2.2359538,-1.7544856,-1.8624513,-1.9560325,-2.007404,-2.0444436,-2.0888085,-2.1136153,-2.1898534,-2.2552478,-2.2916665,-2.2452807,-2.3067646,-2.291826,-2.2866023,-2.281192,-2.2929773,-2.3138752,-2.3430505,-2.3331404,-2.3840628,-2.4142168,-2.4289215,-2.4715977,-2.5258906,-2.555068,-2.5674515,-2.5297356,-2.4910007,-2.472078,-2.4969761,-2.4928136,-2.5411067,-2.6071768,-2.5831943,-2.6038334,-2.3341837,-2.2345433,-2.0148702,-1.5788058,-1.611752,-1.6094557,-1.5741485,-1.5975158,-1.6164749,-1.6206896,-1.6259189,-1.6461518,-1.6824572,-1.6848837,-1.6785271,-1.661613,-1.6392224,-1.6226327,-1.6048858,-1.5546145,-1.5303538,-1.4212732,-1.323493,-1.2915233,-1.277863,-1.2587184,-1.1875303,-1.200874,-1.1560001,-1.0843049,-1.0922911,-0.9993272,-0.9341387,-0.872635,-0.83349586,-0.9192638,-0.92044723,-0.8566341,-0.85438913,-0.8767324,-0.8910996,-0.8615012,-0.811385,-0.81137484,-0.83068997,-0.8564819,-0.8706011,-0.86817753,-0.8376462,-0.6457957,-0.5548923,-0.5542673,-0.49031687,-0.42634046,-0.41769055,-0.39077306,-0.41395998,-0.43305275,-0.35756364,-0.3016498,-0.25757617,-0.21375161,-0.25630018,-0.2778483,-0.31347027,-0.3037413,-0.3502831,-0.33577955,-0.26128182,0.07445668,-0.16004278,-0.1266942,0.14753656,0.6287026,0.37152606,0.21742319,0.17764795,0.077564254,0.02026182,0.07215357,0.067065716,0.07413478,0.097503066,0.09886971,0.15388589,0.2413909,0.21039347,0.5169829,0.41221723,0.5268175,0.5870857,0.6112765,0.63308203,0.6390867,0.62002754,0.5929125,0.5512836,0.534216,0.24395393,0.08636415,-0.0068396144,-0.15397799,0.20320947,0.44203386,0.055270065,-0.22568078,-0.1878268,-0.40014428,-0.46425948,-0.45022747,-0.4268262,-0.39670482,-0.13336304,0.5355588,0.21014546,0.14549215,0.0003500916,-0.11905117,-0.25676152,-0.22266228,-0.14451481,-0.07180622,-0.060325023,-0.08337271,-0.071209386,-0.05904038,-0.09965451,-0.16544901,-0.28660434,-0.41462523,-0.32395655,-0.32113963,-0.34298417,-0.40950328,-0.47207513,-0.5586281,-0.5941739,-0.66178656,-0.7383149,-0.81813097,-0.8566169,-0.9205209,-0.9997945,-1.0749922,-1.0019228,-0.7995805,-0.88988054,-0.9054504,-0.78938675,-0.74568224,-0.8010858,-0.91998744,-0.8960853,-0.98082376,-1.1956735
+-2.0993996,-2.2601657,-2.369316,-2.4743538,-2.5346506,-2.6312375,-2.673409,-2.400577,-1.4515955,-1.3578129,-1.4372436,-1.52991,-1.7140964,-1.9033041,-1.9301877,-1.9308767,-1.9968014,-2.0524697,-2.1290922,-2.208796,-2.279295,-2.3853984,-2.400733,-2.4805088,-2.4880648,-2.4952226,-2.5482597,-2.2061815,-2.1738834,-1.8891395,-1.8536463,-1.8955497,-1.9430153,-2.0702946,-2.1891627,-2.1002052,-1.7474105,-1.3363317,-1.4871749,-1.6516597,-1.8205274,-1.9340997,-2.0169494,-2.097022,-2.1583853,-2.21651,-2.1233764,-2.1331983,-2.2327142,-2.3378084,-2.3766236,-2.4136496,-2.452796,-2.5022044,-2.544965,-2.5463793,-2.591249,-2.6292515,-2.6598415,-2.7137177,-2.7566385,-2.7861357,-2.799819,-2.8247013,-2.8517973,-2.8664856,-2.8837595,-2.913845,-2.934807,-2.9381213,-2.9520502,-2.9622383,-2.9725888,-2.9984446,-2.9941974,-2.9717946,-2.9759438,-2.994204,-3.0062513,-3.038159,-3.0483882,-3.0692875,-3.0747898,-3.088552,-3.085075,-3.0868378,-3.0821118,-3.093378,-3.1330934,-3.0965075,-3.118301,-3.1196234,-3.123362,-3.1279614,-3.1304216,-3.1330209,-3.1178367,-3.1262927,-3.145127,-3.1563697,-3.1405463,-3.1458385,-3.1307092,-3.1452885,-3.1477933,-3.1529312,-3.1481185,-3.1457093,-3.1422124,-3.149886,-3.1499467,-3.161513,-3.1692686,-3.1738558,-3.1698835,-3.1750798,-3.1881442,-3.192337,-3.1964166,-3.1867328,-3.2014637,-3.2193723,-3.2249143,-3.2313857,-3.2377205,-3.2542133,-3.2307668,-3.2299051,-3.2341294,-3.2350292,-3.2219543,-3.2095919,-3.2146263,-3.2345066,-3.2384613,-3.239378,-3.239009,-3.2247603,-3.2180424,-3.221243,-3.2258134,-3.23365,-3.2499406,-3.2644548,-3.2647626,-3.2653284,-3.2672744,-3.258049,-3.2615201,-3.2647188,-3.258254,-3.2541065,-3.2524776,-3.2495656,-3.2568622,-3.2503724,-3.2374945,-3.2195191,-3.2253065,-3.2413402,-3.2488532,-3.2622042,-3.2574692,-3.2583241,-3.2615688,-3.2477798,-3.2448041,-3.234117,-3.2385015,-3.2338061,-3.2393403,-3.2443156,-3.2633877,-3.2620845,-3.2391305,-3.171864,-3.2167194,-3.2089815,-3.2304106,-3.2473156,-3.2952187,-3.2596228,-3.2717345,-3.269722,-3.2483747,-3.1481752,-3.2265997,-3.2066562,-3.1731987,-3.1952758,-3.223289,-3.2409892,-3.2537103,-3.2226088,-3.2269936,-3.2457683,-3.2449272,-3.2565756,-3.2539468,-3.2598863,-3.2535582,-3.188944,-3.1883287,-3.2196856,-3.2541375,-3.2500544,-3.2892003,-3.2328508,-3.266598,-3.2853875,-3.0654693,-2.8626409,-2.6137323,-2.2936764,-2.2971137,-2.3340354,-2.3825011,-2.4339252,-2.4797184,-2.509006,-2.5044484,-2.5004797,-2.542782,-2.5410705,-2.5535183,-2.577133,-2.5384212,-2.537996,-2.5573728,-2.5330577,-2.4231577,-2.448082,-2.4849262,-2.509417,-2.350206,-2.0917025,-2.0309355,-2.0108361,-2.003688,-1.987594,-1.8623099,-1.6554135,-1.6208305,-1.6504388,-1.680841,-1.7047653,-1.7305276,-1.7357465,-1.7500298,-1.7373711,-1.717368,-1.7397326,-1.7661033,-1.7627132,-1.7813997,-1.8261452,-1.8561827,-1.8449469,-1.9070237,-1.3537364,-1.002673,-1.0092437,-1.0377954,-1.0180198,-1.1161494,-1.0971464,-1.1200994,-0.38086957,-0.28779256,-0.46678075,-0.5237234,-0.59511817,-0.6862868,-0.8265996,-0.61488295,-0.1337721,-0.21128352,-0.37269586,-0.34770447,0.06717016,-0.3439784,-0.48064288,-0.021492943,0.057945285,-0.18869513,-0.32258022,-0.40632257,-0.6653547,-0.66476417,-0.7796106,-0.84681964,-0.8879726,-0.8766724,-0.7177952,-0.09033401,0.014633052,0.2000742,0.4246139,-0.033449177,-0.17716077,-0.2141303,-0.29920143,-0.37120834,-0.4480331,-0.5165752,-0.55877066,-0.5870124,-0.71080625,-0.8198468,-0.8867085,-0.9010562,-0.7582606,-0.53584576,-0.69609994,-0.83945,-1.0119349,-0.8800038,-0.9234141,-0.9960197,-1.0507648,-1.0568691,-1.1418694,-0.8995816,0.15818588,-0.08137584,-0.24401611,-0.49470022,-0.72251976,-0.80280274,-0.78504086,-0.8064671,-0.86207193,-0.91993743,-0.9359711,-0.98050034,-1.0314876,-1.0553033,-1.1510816,-1.3279898,-1.3764622,-1.3435736,-1.3923488,-1.4304616,-1.5048445,-1.5824379,-1.6262606,-1.6633778,-1.7219998,-1.7841239,-1.8227,-1.874022,-1.9337993,-1.9800313,-2.0453296,-2.0111053,-1.9610525,-1.9988747,-2.038241,-2.0952196,-2.1244707,-2.1162634,-2.0892966,-2.1236174,-2.165544,-2.1463346
+-2.358862,-2.571384,-2.6510973,-2.763358,-2.8092692,-2.901785,-2.925005,-2.707075,-2.2427034,-2.126983,-1.9053221,-1.7703136,-1.9682076,-2.13335,-2.179731,-2.1940832,-2.2593958,-2.3165963,-2.3819962,-2.429808,-2.429915,-2.5320473,-2.5657434,-2.6149042,-2.6236417,-2.6606092,-2.712442,-2.6214907,-2.6588488,-2.6451378,-2.7058434,-2.7416582,-2.709227,-2.7329998,-2.7552075,-2.8126593,-2.8399203,-2.880009,-2.910325,-2.9202533,-2.9452994,-2.953218,-2.972041,-2.9975703,-3.0122056,-3.040172,-3.0655034,-3.0810084,-3.0944648,-3.0910559,-3.0686698,-3.081916,-3.1091385,-3.1204834,-3.1435542,-3.175742,-3.1857538,-3.1900706,-3.2048762,-3.2303805,-3.248421,-3.255938,-3.2592702,-3.2552702,-3.2618353,-3.283423,-3.3023252,-3.3219547,-3.3273063,-3.3348572,-3.3417623,-3.3596854,-3.3553445,-3.3597965,-3.365117,-3.3663418,-3.3653622,-3.3782864,-3.3851476,-3.4069767,-3.4175775,-3.4260864,-3.4350553,-3.4384284,-3.43467,-3.417346,-3.4231162,-3.4338572,-3.4357853,-3.4238803,-3.4524238,-3.455813,-3.4478416,-3.4558659,-3.455998,-3.463484,-3.4675903,-3.4717174,-3.4810572,-3.4859476,-3.4944654,-3.4804254,-3.4756932,-3.4740376,-3.4737415,-3.476211,-3.4741683,-3.477868,-3.4805255,-3.4826374,-3.4802718,-3.4828582,-3.4843957,-3.4829817,-3.4819565,-3.4941554,-3.4879189,-3.4840755,-3.4945552,-3.5072842,-3.492783,-3.4986858,-3.5119522,-3.5194387,-3.5321407,-3.518404,-3.5175521,-3.5095086,-3.5153146,-3.513946,-3.5036736,-3.482773,-3.4960966,-3.511782,-3.5221949,-3.5181816,-3.5221214,-3.5019202,-3.4992282,-3.49795,-3.5019522,-3.5150652,-3.5241308,-3.5263932,-3.5232873,-3.530373,-3.5291958,-3.5187364,-3.5193472,-3.5299473,-3.516814,-3.5071616,-3.5110807,-3.508597,-3.507503,-3.499242,-3.5081508,-3.488617,-3.4633265,-3.4750218,-3.5044067,-3.499586,-3.5003986,-3.5135436,-3.5225506,-3.5267868,-3.5156693,-3.4486828,-3.449448,-3.4558992,-3.4626474,-3.4880338,-3.4970553,-3.5115433,-3.4969954,-3.451446,-3.459559,-3.4454854,-3.4643729,-3.4699144,-3.4752908,-3.4855556,-3.4783964,-3.4871757,-3.4873493,-3.4376125,-3.4919722,-3.4735327,-3.4221573,-3.4131703,-3.4261293,-3.427764,-3.447101,-3.45452,-3.4286373,-3.434812,-3.429563,-3.4848728,-3.4843903,-3.5211735,-3.4883614,-3.4667788,-3.4317734,-3.437295,-3.4404578,-3.4665155,-2.9151025,-2.0832806,-2.2112648,-2.327932,-2.4355812,-2.46948,-2.5278578,-2.4937437,-2.5146863,-2.5807178,-2.5573344,-2.5741858,-2.6016064,-2.606605,-2.6069775,-2.6140993,-2.656142,-2.6537116,-2.6538682,-2.6357036,-2.6530263,-2.6711774,-2.6498854,-2.665275,-2.6286478,-2.5995235,-2.5819468,-2.6016226,-2.5167377,-2.317751,-2.3083935,-2.3123856,-2.2844062,-2.2848258,-2.2440662,-2.1874123,-2.2124119,-2.169191,-2.1963663,-2.1956496,-2.1459985,-2.1184134,-2.1362884,-2.1256142,-2.160407,-2.1745877,-2.2390058,-2.2656136,-2.2969065,-2.3400545,-2.3616338,-2.3720248,-2.3979127,-1.96372,-1.4906187,-1.5604866,-1.5878944,-1.5922257,-1.7424982,-0.59870315,-0.8104358,-0.2360302,-0.64065504,-0.90890056,-1.0434971,-1.1302364,-1.1862122,-1.2851523,-1.2182465,-0.76982105,-0.99606025,-1.1686693,-1.262527,-1.3764081,-1.3889283,-1.3950007,-1.185529,-0.9329323,-1.0293802,-1.1471097,-1.0836458,-1.056678,-1.0394356,-1.2550693,-1.3246709,-1.369329,-1.3680109,-1.3196678,-0.66747457,-0.7628259,-0.71065253,-0.27040097,-0.7180357,-0.8366245,-0.9052419,-0.9383718,-0.95817983,-1.0472102,-1.144378,-1.1986303,-1.2545724,-1.3788333,-1.4209632,-1.4342694,-1.4958639,-1.5280735,-1.5917268,-1.661552,-1.7460513,-1.8462485,-1.3145847,-1.4255888,-1.537296,-1.6254184,-1.6457388,-1.7052808,-1.614087,-0.29353422,-0.73129255,-1.0656536,-1.1741834,-1.3050982,-1.3601862,-1.3256919,-1.3862741,-1.4233924,-1.4308105,-1.5213244,-1.561491,-1.5818777,-1.6215234,-1.7210739,-1.8155985,-1.8055739,-1.842027,-1.9424415,-1.9907771,-2.0250146,-2.0773826,-2.1207197,-2.14353,-2.1664019,-2.2140768,-2.2304473,-2.2612934,-2.291453,-2.3178222,-2.3596892,-2.4185,-2.3542998,-2.3334417,-2.3651443,-2.442549,-2.4559038,-2.474937,-2.4639692,-2.468175,-2.5244076,-2.5063057
+0.8365523,0.96039987,0.9732528,0.9027989,1.1276364,1.2496233,1.2300112,1.0292507,0.81955564,0.9063945,0.93453914,0.93139815,0.91955054,1.043443,1.1176585,1.1374079,1.0409306,0.83821,0.5679796,0.27997628,0.124924004,-0.016540822,0.10483359,0.56655777,0.4555245,0.30428934,0.2787929,0.29722613,0.47022736,0.5131358,0.3032672,0.09791708,-0.06078909,-0.16218267,0.07550745,0.1751839,-0.04403807,-0.12319705,0.08100338,0.18137918,0.079043075,0.3153563,0.38724333,0.30194682,0.2758621,0.22039463,0.10702358,-0.06263535,-0.0193935,0.123855695,0.5903742,0.96030235,0.844698,0.5728918,0.33571732,0.15733667,0.18983786,0.28714257,0.33680505,0.30049342,0.16747364,0.040791627,0.07579571,0.08843702,-0.084556475,-0.19419377,-0.2532845,-0.3208804,-0.4057476,-0.26769882,0.061570924,0.27820492,0.14810629,0.039823715,0.12912829,0.24261089,0.22079761,0.19996579,0.20492195,0.45269692,0.19392747,0.033769507,0.05176616,-0.12898771,0.121479034,0.22584821,0.04803549,-0.099490434,-0.19993956,-0.28698468,-0.32914072,-0.36454067,-0.41565043,-0.43727815,-0.45130944,-0.29748183,0.014836196,-0.015168782,-0.099444196,0.27043843,0.22952966,0.05767655,0.022120986,0.003380198,-0.02871589,0.36527514,0.53098786,0.35721114,0.18613921,0.06511651,-0.00061355904,-0.10956304,-0.19931553,0.097755015,-0.016264688,-0.18811767,-0.13636704,0.045897845,0.10338794,-0.06856236,-0.20416096,-0.24053575,-0.28108385,-0.29901743,-0.20136307,0.016729455,-0.14984834,-0.26465943,0.039970767,-0.002631221,-0.11136702,0.09944235,0.1348161,-0.05643562,-0.2039075,-0.2773083,-0.2455294,-0.29233074,-0.37590817,-0.4018829,-0.4106481,-0.41314757,-0.44960737,-0.4738788,-0.3899839,-0.38051876,-0.40460226,-0.3777706,-0.41833067,-0.40988034,-0.40651107,-0.48493332,-0.5413346,-0.4969803,-0.38930497,-0.19503544,-0.1902454,-0.17734383,-0.068635345,0.13713843,0.21029492,0.10350774,-0.016664851,0.03932252,0.19701885,0.14305948,0.079818904,-0.052714456,-0.15987174,-0.09152436,0.38245532,0.23553412,0.21336956,0.24005575,0.38528413,0.42898732,0.25491372,0.22089456,0.1722935,0.057600256,0.017638702,-0.03332613,-0.107799724,0.5141295,0.55352587,0.37237674,0.36642477,0.3347414,0.3659377,0.6237667,0.8696527,1.0712643,0.9266499,1.1928134,1.4845791,1.6416249,2.0878515,1.7834641,1.5450263,1.4346671,1.2992003,1.1732123,1.3446703,1.3896366,1.4330812,1.4891747,1.5001805,1.377486,1.3071264,1.4478375,1.213421,0.9965857,1.1553094,1.3723519,1.3311327,1.2529628,1.1075611,1.012361,1.0573785,1.0733707,1.0416591,1.0714357,0.93791205,0.85176593,0.8892195,0.86100656,0.76924527,0.95795774,1.0714407,1.2939801,1.5813673,1.7719417,1.8686246,1.9135377,1.8581922,1.8572522,1.9372121,2.0578055,2.1665893,2.228213,2.2307327,2.273866,2.3277745,2.4457347,2.4748201,2.5298793,2.5542479,2.6054368,2.7747266,2.9785104,3.1705666,3.3143687,3.4501696,3.455563,3.4265165,3.4593453,3.5156188,3.5516248,3.5734072,3.599907,3.6224198,3.6424236,3.6617599,3.6001441,3.5688033,3.601914,3.638277,3.627837,3.6829956,3.7358172,3.686142,3.6491463,3.6733987,3.624517,3.7005668,3.744969,3.8270905,3.8951993,3.9005687,3.888613,3.8490052,3.865543,3.8064213,3.8147836,3.803224,3.9306731,3.9292917,3.9147713,3.875915,3.8184454,3.7862217,3.7743149,3.7370565,3.7453363,3.7187524,3.7062993,3.7030373,3.6952548,3.7356377,3.7321503,3.7354991,3.7157512,3.7126503,3.6939266,3.6831381,3.760839,3.778001,3.8111084,3.8520446,3.8646712,3.7738752,3.971981,3.8723814,3.9410827,3.8850417,3.8457923,3.855495,3.8682625,3.8495426,3.8185825,3.8043377,3.8939567,3.8648527,3.8339336,3.7932003,3.832677,3.7738895,3.834682,3.8722885,3.8920257,3.8952494,3.862072,3.8812263,3.8790154,3.8635738,3.8583112,3.8319342,3.8293996,3.8323202,3.8479917,3.8700423,3.8317494,3.861193,3.864447,3.8667626,3.8574667,3.853631,3.7882717,3.8443377,3.7337291,3.7185135,3.7114325,3.7208807,3.7437136,3.747713,3.6866493,3.723474,3.666699,3.6567688,3.6757998,3.6497054,3.6176333,3.5967638,3.624474,3.5128713
+0.7580235,0.6839318,0.61112267,0.6542535,1.194507,1.0916631,0.9138,0.8128732,0.7439232,0.68845433,0.6632863,0.6632004,1.0437655,1.2359834,1.320576,1.1884333,1.0677087,0.8844888,0.78231645,0.71289223,0.6492448,0.62148964,0.70654744,1.0890659,1.0009501,0.87572896,0.77549773,0.74342936,0.71372557,0.69832,0.6537467,0.59303844,0.55539,0.5191093,0.5104539,0.48900807,0.5100619,0.46724516,0.91598564,0.99806476,0.8542652,0.76910144,0.6700109,0.5958513,0.60228944,0.60921365,0.5525245,0.5213032,0.55875885,0.7071202,1.0565991,2.0132468,2.203456,2.1280997,1.6558709,1.3138561,1.1296222,0.9672035,0.88465345,0.75716096,0.6975313,0.6764808,0.6499794,0.6221191,0.575113,0.56653166,0.5915629,0.6020115,0.5517075,1.344147,1.3206899,1.1187966,0.93739706,0.8468432,0.7681393,0.7250563,0.7521569,0.7993158,0.766698,0.7017911,0.63642544,0.69951487,0.844661,0.7047609,1.421458,1.359812,1.0122174,0.8999657,0.857533,0.8037191,0.76504266,0.73622954,0.67716914,0.67452437,0.61702853,0.5765537,0.6718458,0.75442857,0.89342785,1.1583637,0.9523787,0.83436716,0.71739984,0.68942964,0.67041105,0.6307715,0.5592284,0.5710978,0.56638336,0.6019901,0.5527123,0.5528706,0.47211367,0.62035286,0.60026443,0.57135886,0.545447,0.55786747,0.55284727,0.5411118,0.5239259,0.50374615,0.47797394,0.45016587,0.47736144,0.4675687,0.4430623,0.3867901,0.65516746,0.7559943,0.6251282,0.62824005,0.67288864,0.5797821,0.5342139,0.53101087,0.5174275,0.49676055,0.49250847,0.4950531,0.40866625,0.41672003,0.43769222,0.4338897,0.43920547,0.40936765,0.37059763,0.3980939,0.4289724,0.41592062,0.3775277,0.35947463,0.39552653,0.3869386,0.34836668,0.8247861,0.7483028,1.6170218,1.6075501,1.4052652,1.2435491,1.0394722,0.8946244,0.75590754,0.857007,0.84411526,0.7372621,0.674609,0.6151176,0.61927533,1.2196683,1.2013514,1.0508491,0.8738918,0.82765007,0.8869436,0.69565463,0.6107871,0.54441506,0.48889375,0.45177346,0.40685102,0.35458112,0.7843804,0.95247394,0.73845005,0.7030376,0.70542467,0.9482883,1.6920012,1.6121123,1.762368,2.212499,1.9324907,1.9345088,2.0967937,2.505912,2.1517847,2.1964521,2.2258444,2.3108523,2.096557,2.1194994,2.1137183,2.1182845,1.8754005,1.6408005,1.5428597,2.040948,2.23199,2.175931,1.8538852,1.7092316,2.4251018,2.312429,2.0585442,1.6913495,1.5101998,1.430027,1.5280586,1.5751811,1.4434996,1.3003311,1.2358601,1.2391326,1.1953338,1.176657,1.9408251,2.1953053,2.1345508,2.1580646,2.4270024,2.6347115,2.7997775,2.8535678,2.8676858,3.0300624,3.2917032,3.5360093,3.4803562,3.4697976,3.6934044,3.943028,4.1438575,4.348259,4.3819456,4.5266438,4.7696,4.6579523,4.759806,4.825734,4.8343925,4.894084,4.945431,4.8929605,4.8383055,4.7377305,4.7914724,4.854806,4.845128,4.7988663,4.7573133,4.812144,4.844219,4.7716627,4.7739744,4.886993,4.98108,4.95118,4.8670073,4.8759527,4.7760324,4.817069,4.883337,4.741701,4.8251543,4.804427,4.809107,4.7960324,4.780425,4.780019,4.7814236,4.8466883,4.955599,4.84359,4.79809,4.7690563,4.742527,4.759892,4.7819443,4.7815843,4.8653803,4.940054,4.9862976,4.894199,4.9958906,5.005628,5.05737,4.9771414,4.9964123,5.00231,4.864615,4.9306765,4.9517646,4.9356337,4.999633,4.878434,4.841223,4.865487,4.9420595,5.1204314,4.886748,4.7552996,4.8729806,4.9952345,4.8628726,4.8412805,4.89186,4.927039,4.9491787,4.9785213,5.1463957,5.0408006,4.996888,5.0955906,5.0272474,5.0618978,5.037218,4.9317455,4.8530245,4.944931,4.861336,4.8692923,4.7963142,4.776643,4.8126855,4.8574944,4.8291655,4.8403025,4.7131495,4.68015,4.7767124,4.833382,4.8809385,4.7925158,4.8654838,4.9008675,4.962905,4.96236,4.7923474,4.6539736,4.9767246,4.633672,4.8462777,4.9647236,4.950961,4.891719,4.8782635,4.906225,4.8111167,4.9864373,4.9180264,4.921387,4.7813287,4.778769
+0.7299987,0.697675,0.63852525,0.5962886,0.75868726,0.77941656,0.7049752,0.6221527,0.5823613,0.55915123,0.5304616,0.5466154,1.2952933,1.4930677,1.414809,1.2770927,1.0884473,0.92914796,0.8304131,0.75649726,0.69883406,0.647129,1.6986809,1.9703264,1.5304278,1.3201551,1.1414286,1.0613745,0.99827933,1.0027204,0.9455354,0.8651392,0.7719403,0.71377516,0.6836076,1.1043762,1.0713792,0.91573673,0.82503974,0.82956666,0.8287716,0.7545116,0.68582743,0.6247322,1.1247168,1.4592721,1.2046943,1.0010145,1.7190615,1.55303,1.5630623,1.8140986,1.5069336,1.3006014,1.3226538,1.1641278,1.0130866,0.89448607,0.8178043,0.77489394,0.6985047,0.6630109,0.6362069,0.6441447,0.59878945,0.5872346,0.5867677,0.5683722,0.5614023,0.57569605,0.5421957,0.5030755,0.50954247,0.48956585,1.3502302,1.3807186,1.6847342,1.5355396,1.2031236,1.1138572,0.95883054,0.8839018,0.78797746,0.740325,0.8817924,1.0326313,0.83931077,0.7637348,0.722438,0.6863459,0.665233,0.66424775,0.5784476,0.6050322,0.5709306,0.5355648,0.60937107,0.683849,0.5919053,1.0099655,1.9647331,2.2076917,1.6547657,1.3562206,1.1438036,1.0329099,0.9410533,0.8702085,0.83005494,0.8033786,0.74178946,0.7072208,0.6870491,0.6590026,0.6089672,0.5953712,0.5783604,0.5775172,0.55793864,0.5376713,0.52831984,0.49479735,0.46720517,0.45587662,0.4728585,0.43864602,0.40706658,0.4055779,0.36230978,0.46027306,0.39193738,0.4175095,0.41471487,0.41638717,0.4089551,0.40534517,0.39405516,0.37636787,0.36557487,0.36310405,0.35831863,0.3257723,0.32506853,0.33057496,0.33059165,0.30809286,0.2888078,0.27921724,0.3094336,0.299247,0.26439932,0.23600326,0.19669966,0.19213767,0.14050506,0.19537525,0.17622396,0.15358862,0.15424886,0.40887934,0.36767977,0.29218483,0.23740183,0.22004206,0.20911455,0.21624295,0.19577958,0.19494005,0.17492577,0.07913795,0.61300945,0.6612048,0.49288547,0.3711323,0.29922253,0.34622747,0.28376764,0.22172211,0.16025837,0.13004205,0.11003266,0.07877484,0.08442573,0.09136373,0.081973225,0.071203396,0.11942302,0.3664986,0.6095852,0.6900683,1.0849571,1.0210719,1.248755,0.97638917,0.84104663,0.7963395,1.5360591,1.4070566,1.7680502,1.9743104,1.8355901,1.5572731,1.3131905,1.3325573,1.6068051,1.312134,1.0629617,0.92649496,1.075582,1.0873498,0.9730053,0.93933535,1.0297182,1.8741143,1.5571239,1.2633891,1.110066,0.994246,0.9040383,0.8268738,0.82794464,0.7195046,0.60394096,0.5426049,0.50220835,0.45964038,0.53108615,0.85317874,1.6297531,1.6436722,1.5455073,1.5958999,1.6994094,1.5194294,1.6065049,1.7097001,1.9211427,2.0452375,2.0297627,1.8603227,1.7367847,2.2528646,2.3805993,2.435761,2.9103446,2.9601266,3.3652148,3.498557,3.5848243,3.891213,4.0553446,4.1745725,4.3160667,4.563139,4.593011,4.7544928,4.8110847,4.798221,4.909754,4.9145393,4.8651514,4.8832264,4.8916264,4.9502654,4.8893156,4.8774457,4.9624996,5.0899153,5.0556574,4.9723163,5.0856996,5.0476894,5.0642147,5.0978165,5.0204387,5.015886,5.0331135,5.043381,5.0133743,4.9625916,4.925596,4.917243,5.0168276,5.156338,5.020077,5.087838,5.0414157,4.9797907,4.9826517,4.98158,4.977706,5.0023665,5.1623106,5.2310343,5.082154,5.112527,5.055396,5.08013,5.050573,5.0758147,5.0683002,4.9962344,5.021977,5.009598,5.014923,5.063613,5.010338,4.9866924,5.014741,5.15619,5.07872,4.9191566,4.6540585,4.7788725,4.9062095,4.4951153,4.078001,4.1247053,4.233075,4.2948127,4.3148813,4.5570207,4.600451,4.41521,4.3892126,4.251589,4.232148,3.9676414,3.8969932,4.160209,4.3250885,4.3269014,4.5513315,4.6371555,4.805125,4.8811526,4.9568753,4.921228,4.7367325,4.6784973,4.812029,4.971306,4.8211393,4.6345944,4.2213116,4.0759454,3.7895408,3.739905,3.5937798,3.385861,3.1102262,3.3598561,3.1086059,2.999432,2.8382545,2.6259387,2.6827314,2.8273058,2.9668102,2.9763322,3.2457874,2.9525723,3.0764205,2.8906538,2.6421814
+0.6417171,0.30999666,-0.04523651,-0.083245456,0.039193887,0.06562719,-0.076912075,-0.2418137,-0.34826195,-0.41323656,-0.41114834,-0.28387356,0.5099315,0.9031721,1.0095514,0.8674318,0.6980505,0.43404105,0.21053049,0.024217445,-0.071183726,-0.14522056,0.05084132,0.11620833,0.043541957,0.0729285,0.22612213,0.31460765,0.53415555,0.5841419,0.4342832,0.34078258,0.1969706,0.037873108,-0.1221544,-0.256347,-0.2587841,-0.14223628,0.0058630295,-0.019513767,-0.12427758,-0.19844083,-0.32995296,-0.37245613,0.033255193,0.13902974,-0.062420484,-0.1667658,0.08248268,0.25865757,0.31001437,0.81880844,0.8269837,0.5526967,0.28521836,0.09098835,-0.03125496,-0.1465015,-0.24575828,-0.331123,-0.35391536,-0.36578012,-0.3794249,-0.4612932,-0.5166167,-0.51703846,-0.5588654,-0.57272947,-0.60402566,-0.6397217,-0.67263997,-0.7151304,-0.7251428,-0.70790327,-0.30051184,0.007843394,0.29897025,0.21401677,-0.04187816,-0.18704575,-0.1901198,-0.28667215,-0.42771545,-0.46417698,-0.5086577,-0.59379166,-0.5881767,-0.60110736,-0.62113416,-0.66417706,-0.6913895,-0.7258899,-0.7517631,-0.783705,-0.85706306,-0.87309235,-0.86835194,-0.8651359,-0.8324027,-0.79661876,0.46705747,0.55096227,0.12756266,-0.05080032,-0.19477667,-0.29818332,-0.3898214,-0.44451743,-0.47917804,-0.5331637,-0.5694695,-0.6102375,-0.666546,-0.71825707,-0.7354699,-0.73830223,-0.76000607,-0.7752222,-0.80734295,-0.8279713,-0.8559457,-0.9150927,-0.9306121,-0.9210923,-0.9390471,-0.9496555,-0.9352391,-0.94377905,-0.99112016,-1.0189445,-1.0251868,-1.033326,-0.9932604,-0.6706555,-0.53654337,-0.64308506,-0.72200936,-0.7993991,-0.85967773,-0.8989166,-0.9355804,-0.9564681,-0.97776914,-1.0252169,-1.0534929,-1.0430856,-1.0417202,-1.0326569,-1.041754,-1.0448867,-1.0804944,-1.1279876,-1.2003136,-1.217561,-1.220193,-1.2640092,-1.2303627,-1.1557028,-1.1411154,-1.1389961,-1.179194,-1.1956191,-1.1783006,-1.1948744,-1.2220532,-1.2010694,-1.1516453,-1.1754917,-1.1753476,-1.1914109,-1.1012269,-0.9122366,-0.8968272,-0.9245578,0.09114535,0.2974696,-0.032022428,-0.14999482,-0.24926189,-0.34218952,-0.42836493,-0.50958586,-0.56651044,-0.61306995,-0.6507719,-0.6340148,-0.6426804,-0.61840487,-0.5144935,-0.45231068,-0.5282117,-0.6005936,-0.6820868,-0.6525755,-0.52083546,-0.45373464,0.5829799,0.7014759,0.95162654,0.9727628,0.9823798,0.999768,1.1993992,1.1087013,0.94453317,0.8299505,0.6601424,0.53824955,0.46589988,0.25149202,0.38245502,0.3019787,0.38351768,0.85418975,0.68666244,0.5366837,0.4994287,0.5100911,0.504723,0.47465765,0.4315984,0.36888295,0.27323323,0.21602668,0.18337387,0.16563249,0.19864206,0.24587111,0.8741952,0.79006994,0.90118515,1.3936645,1.724422,1.8255804,1.9425973,2.3288584,2.7407227,3.1635947,3.3446295,3.439581,3.5344536,3.6405282,3.7762024,3.796533,3.879461,3.8271267,3.8667557,3.844173,3.8694308,3.8597193,3.8412333,3.825565,3.935885,3.9409978,3.8870988,3.8687057,3.8767104,3.9075181,4.3006964,4.125623,4.032298,3.9939852,3.9761343,4.0529947,3.975647,3.901867,3.9841409,4.0533247,4.0454397,3.9682274,4.0032387,3.970048,3.9408848,4.0065336,3.98946,3.9442925,4.0207725,4.012168,4.0342646,3.9763021,3.906807,3.9551282,4.050638,4.1008835,4.0062017,4.005313,3.967289,3.9376178,3.9381754,3.935021,3.9411948,3.951641,3.997486,4.151911,4.0434093,4.0222254,3.9932265,4.0314617,4.058362,4.041179,4.065521,3.986504,3.9620647,3.9524508,3.9916468,4.026339,4.0562506,4.063613,4.0115767,4.0641217,4.0029225,3.906229,4.0015926,3.9744534,4.229031,3.855258,3.8472521,3.9075074,3.9454753,3.9094427,3.8332386,3.8848517,3.9619553,4.0048127,4.0003133,4.0048294,3.957857,4.0072474,4.140756,4.0797014,4.0008087,3.9991522,3.9977427,3.9940195,4.035579,3.9887733,3.9628,3.9357662,3.9165788,3.953163,3.9371715,3.9248714,3.9801588,3.9421384,3.9853296,3.9416564,3.9845333,4.0134625,3.9188051,3.811079,3.8492064,3.7913728,3.8634593,3.9571958,3.9026423,3.7829013,3.8422182,3.7960863,3.9103522,3.9181123,3.9398477,3.9855614,4.0429454,3.9154553,3.981135
+-0.53861165,-0.65546024,-0.74143773,-0.8253243,-0.89367795,-0.90446585,-0.94351804,-1.0365305,-1.0805405,-1.1230474,-1.1386158,-1.1848698,-0.8030354,-0.58122456,-0.6072489,-0.6548562,-0.74212396,-0.84588426,-0.9484347,-1.0297365,-1.1672707,-1.2376102,-0.074297234,0.093973026,0.038293775,-0.17933883,-0.2903774,-0.34332484,-0.4707359,-0.5426229,-0.5560249,-0.6181495,-0.73840725,-0.88365316,-0.9901081,-1.0482705,-0.7673577,-0.051528137,-0.3864935,-0.4843615,-0.5343469,-0.67317104,-0.84481776,-0.97005963,-1.0101467,-0.9651776,-0.9837669,-1.0350623,-0.73529553,-0.06003311,-0.102884576,-0.24385335,-0.3587042,-0.5154164,-0.63169265,-0.7028081,-0.8090089,-0.8864136,-0.96198505,-1.0245641,-1.0843824,-1.1675979,-1.2574681,-1.3165972,-1.3767462,-1.4762521,-1.5585575,-1.5516138,-1.6418552,-1.645047,-1.7045572,-1.7264572,-1.7604154,-1.7755721,-1.861763,-1.8549917,-1.6706712,-1.6335167,-1.6686469,-1.7107816,-1.8082157,-1.8148971,-1.8857226,-1.895124,-1.8912444,-1.9241965,-1.9719748,-2.0429595,-2.0401506,-2.0899417,-2.11455,-2.121537,-2.153237,-2.1580558,-2.154799,-2.1748023,-2.1817849,-2.200099,-2.208507,-2.2197828,-2.17589,-2.0417662,-2.081918,-2.0869598,-2.1324487,-2.1567347,-2.146026,-2.1938853,-2.1813161,-2.1889937,-2.2145858,-2.258178,-2.2405996,-2.260131,-2.293696,-2.3168602,-2.3432531,-2.341124,-2.3604536,-2.3851562,-2.388444,-2.394976,-2.4109921,-2.4294872,-2.406875,-2.4300344,-2.5126896,-2.4683194,-2.456689,-2.4561505,-2.46264,-2.4761233,-2.4819193,-2.4891853,-2.4996054,-2.5217795,-2.5076787,-2.542195,-2.5263734,-2.5443254,-2.5523176,-2.564561,-2.5657144,-2.545909,-2.5504441,-2.5521405,-2.5631068,-2.5674345,-2.5651994,-2.5687623,-2.60042,-2.5681915,-2.540007,-2.5779004,-2.6002269,-2.5947206,-2.6053665,-2.4583287,-2.4952335,-2.460042,-2.4669285,-2.4758787,-2.4959538,-2.4823174,-2.4782012,-2.5207295,-2.1153421,-1.8009458,-1.8880651,-1.9220912,-1.8830932,-1.9882373,-2.0422199,-2.08287,-1.6989965,-1.0429714,-1.2007926,-1.3047884,-1.4081842,-1.4837508,-1.5511587,-1.6204524,-1.6236823,-1.6291449,-1.701143,-1.6974745,-1.71074,-1.770447,-1.7169813,-1.7532992,-1.8036298,-1.8476944,-1.8097018,-1.8223901,-1.8378162,-1.907196,-1.8001385,-1.8311021,-1.721506,-1.4993429,-0.98607314,-0.91130626,-1.0933876,-1.2019862,-1.2434684,-1.3233216,-1.373847,-0.8970206,-0.9723986,-1.1151128,-1.059433,-0.94180226,-0.8126591,-0.5248734,-0.77817047,-0.9177171,-1.0054768,-1.0465134,-1.0748167,-1.0590209,-1.1075544,-1.1666439,-1.2034307,-1.2355727,-1.2682034,-1.2767313,-1.2514651,-1.2061827,-1.2353214,-1.2821505,-1.1382316,-1.0171386,-1.103549,-1.2146962,-1.2496389,-1.1752365,-1.144532,-0.9444701,-0.9290815,-0.92748153,-0.88451284,-0.79601187,-0.75222504,-0.64256644,-0.50411546,-0.46181157,-0.26555133,-0.26921967,-0.13391948,0.037276108,0.120406315,0.19571218,0.59103125,1.52201,1.1489358,1.1114668,0.89198256,1.0342085,1.4038393,1.6318208,1.1031318,1.1515834,1.1861788,1.5053325,1.4541726,1.421526,1.578758,2.3065283,2.1437106,2.0208213,1.9568888,2.027165,1.9281981,1.9012372,1.8152002,1.7587197,1.8677509,1.9028761,2.2627053,2.2204182,2.1017551,2.1884027,2.818122,3.3253942,3.5699117,3.6571436,3.1458077,3.0036156,2.8889318,2.7507668,2.6167438,2.619476,2.7577467,3.3311782,3.4607742,3.6724372,3.60507,3.7785015,3.6291184,3.2430072,3.249363,3.0304909,2.9683914,2.9548326,2.9463701,2.9395132,3.1403096,3.0700061,3.4393835,3.420518,2.8024771,1.7736372,1.567501,1.1296594,1.3598417,1.5288069,0.8393424,0.9653442,1.3203629,1.5183339,1.7060207,1.7526112,1.3399587,1.182726,1.1077995,0.8186948,0.7249837,0.44487882,0.28296512,0.28731728,0.4652201,0.77307105,0.9576348,1.0862969,1.1781626,1.1988643,1.2888112,1.0937635,0.8012264,0.4999926,0.6544168,0.7917836,0.8391572,0.83421767,0.5381658,0.45293638,0.36407134,0.33494043,0.16083662,0.2810458,0.2722486,0.11617778,0.21251264,0.29931608,0.1874461,0.28295934,0.12703164,0.060773987,0.50854737,0.34627527,0.40553924,0.25326264,0.23284464,1.4782913,0.66106546
+0.53322,0.40482646,0.15116477,0.06441395,0.16614838,0.16905612,0.0578571,-0.04107276,-0.12606955,-0.008666661,0.25312173,0.27011514,0.45590654,0.50370246,0.63892376,0.6878885,0.5342358,0.35750368,0.21256348,0.06173979,-0.05431633,-0.18719052,1.3837006,0.9665544,1.356616,1.2550077,1.2309301,1.2530115,1.1475073,1.1085546,0.9876771,0.7754388,0.5536993,0.29865682,0.1316746,0.078579426,0.22103252,0.16523159,0.22373323,0.27378488,0.18693452,0.0520179,-0.053275492,-0.16682385,-0.029142093,0.5245504,0.58118176,0.33152115,0.3259201,0.5380639,0.45975447,0.36099494,0.23235835,0.19648056,0.6119739,0.5773885,0.3228412,0.19362268,0.08139092,0.026304577,-0.023126196,-0.07606557,-0.1446412,-0.18608609,-0.23943447,-0.30002248,-0.33146268,-0.33722937,-0.41669843,-0.48588514,-0.54679996,-0.5441236,-0.55555785,-0.5622332,-0.61910594,-0.6468296,-0.5932309,-0.5450289,-0.5764487,-0.60203433,-0.65441984,-0.6771425,-0.74145246,-0.7846104,-0.808262,-0.8258461,-0.8373003,-0.8667828,-0.908598,-0.95943356,-1.0135921,-1.0285686,-1.0639958,-1.0834906,-1.0963511,-1.140811,-1.1421733,-1.161869,-1.1833501,-1.1933017,-1.090636,-0.8065841,-0.8095021,-0.8612435,-0.959229,-1.0177014,-1.044189,-1.1138399,-1.1748662,-1.1999898,-1.2260226,-1.2767966,-1.3028846,-1.3204942,-1.3637112,-1.4132226,-1.4409788,-1.4655321,-1.4852273,-1.5127975,-1.5087919,-1.4831747,-1.5362194,-1.5900681,-1.6027868,-1.6768882,-1.6900278,-1.6199713,-1.668767,-1.6962101,-1.6818578,-1.6949742,-1.6848315,-1.7082751,-1.7414323,-1.7817861,-1.794754,-1.8306198,-1.8565977,-1.8700244,-1.9046007,-1.9184179,-1.9591746,-1.9780868,-2.0009403,-2.0295753,-2.0572486,-2.0404308,-2.0456095,-2.048299,-2.093686,-2.1182768,-2.118629,-2.103292,-2.0792341,-2.0842128,-1.7460151,-1.4652603,-1.4890468,-1.5092313,-1.5563893,-1.6585126,-1.7250477,-1.7144569,-1.7346137,-1.6213212,-0.4037215,-0.20579337,-0.5051918,-0.6297056,-0.6892055,-0.8214485,-0.8714839,-0.99132204,-0.667032,0.75956184,0.4966749,0.11805798,-0.0990254,-0.24851677,-0.36308324,-0.46388727,-0.4651773,-0.5336422,-0.64335656,-0.5670177,-0.55950606,-0.39701796,-0.25956142,-0.33641315,-0.45718226,-0.53920794,-0.6080954,-0.66135484,-0.7418294,-0.739853,-0.6922295,-0.5410513,0.009529758,0.97771835,0.96992624,0.97771025,1.0859275,0.96776485,0.637175,0.32127258,0.14852302,0.14786546,0.016948901,-0.11174165,0.87187445,0.81808054,0.8482139,1.3100837,1.0652964,0.97489834,0.9593325,0.8838466,0.6750717,0.49948072,0.37491488,0.2536127,0.16480039,0.04520889,-0.021529999,-0.052871097,-0.09712232,-0.0862941,-0.12754473,-0.10591853,-0.1326,0.16818683,0.28995287,0.21508797,0.10198291,0.14078383,0.49761355,0.6387993,0.7297173,0.76934713,0.8748248,1.6278818,1.8848732,1.9891481,2.141149,2.1741383,2.1981797,2.3300972,2.5805411,2.547277,2.4761705,2.6277556,3.0584116,3.6322453,3.5790598,3.6327848,3.7613106,3.997426,4.0885544,4.2364836,4.068027,4.003683,4.006534,4.066828,4.135821,4.0885487,4.093322,4.2480984,4.1461954,4.0585194,4.0241117,3.9772968,3.9889936,3.9592736,3.9623346,3.914217,3.9970345,4.010153,4.263526,4.107098,4.047863,4.1021137,4.369009,4.443618,4.340953,4.4580746,4.295521,4.2666874,4.2299,4.1986504,4.16123,4.14149,4.1934576,4.3473997,4.252061,4.2624874,4.236816,4.271166,4.2382545,4.1879034,4.197829,4.119433,4.089465,4.1121273,4.116659,4.082595,4.1421375,4.1362476,4.227995,4.2202625,4.2153616,4.2043552,4.461603,4.334028,4.4103136,4.3964424,4.311957,4.253457,4.2473345,4.24783,4.2083673,4.2193007,4.1636505,4.251309,4.2729063,4.327861,4.377944,4.2857475,4.255736,4.1828957,4.1686606,4.127489,4.2254925,4.1759467,4.110879,4.1083117,4.137102,4.1472287,4.170318,4.1299434,4.1481,4.1866245,4.1966405,4.2468534,4.2651825,4.281045,4.221513,4.066882,3.454943,3.156983,3.0794458,2.6377087,2.2591321,1.8348237,1.4057615,1.3632587,1.261267,1.4491694,1.5775032,1.6007098,2.0103493,2.0077271,2.2360363,2.6597087,2.2319193
+0.38452828,0.20860268,-0.02568255,-0.13638465,-0.2644561,-0.28887102,-0.32193005,-0.3936721,-0.44519097,-0.35688916,0.18455197,0.34809467,0.2717886,0.2547654,0.43601713,0.2992012,0.19119787,0.078431845,-0.020858537,-0.13747971,-0.27716407,-0.43676427,0.60979784,0.5560582,0.9430444,0.8190063,0.7765717,1.0027122,0.8570555,0.8421869,0.64330125,0.485564,0.37103888,0.21643294,0.08423461,0.11095171,0.67285883,0.6469898,0.6457135,0.35793373,0.23757516,0.10830787,-0.00950456,-0.122927606,-0.14078192,-0.016589794,0.07089257,-0.051770482,-0.17775035,0.07427727,0.31824988,0.10066326,0.025095042,0.17590185,0.3245709,0.20147146,0.06408219,-0.0368685,-0.09837866,-0.15530536,-0.24522884,-0.2992878,-0.35717526,-0.45066065,-0.5201208,-0.62920225,-0.6272407,-0.6830679,-0.7332725,-0.7943584,-0.84592766,-0.91602415,-0.51023966,-0.23608892,-0.41633567,-0.50250816,-0.57535267,-0.64658284,-0.70338917,-0.7606548,-0.86141294,-0.89294076,-1.0310344,-1.0581887,-1.096597,-1.196153,-1.2966616,-1.3604898,-1.3869295,-1.4436657,-1.5012331,-1.5550619,-1.3224126,-1.245002,-1.2607402,-1.3198323,-1.3748586,-1.4568288,-1.46329,-1.4926898,-1.5198905,-1.5601311,-1.5982382,-1.6181641,-1.6978452,-1.6982176,-1.6525339,-1.699183,-1.7274995,-1.738042,-1.7446858,-1.82494,-1.7585554,-1.8287184,-1.9013712,-1.9092734,-1.8771126,-1.9389733,-1.9537686,-2.007037,-2.0208366,-1.9364921,-1.9176196,-1.9579865,-1.9887999,-2.0916176,-1.9111688,-1.7680662,-1.8063791,-1.8723387,-1.8873878,-1.9773493,-2.0003207,-2.0161912,-2.0322561,-2.0537918,-2.0140545,-2.0945935,-2.079008,-2.0956705,-2.130834,-2.1519356,-2.1599746,-2.1334717,-2.136386,-2.182653,-2.2460656,-2.2315063,-2.2532701,-2.2263007,-2.2804112,-2.298386,-2.2945085,-2.2793815,-2.2731194,-2.333356,-2.3178415,-2.3515983,-2.3753366,-2.3825307,-2.3657582,-2.412883,-2.4577646,-2.3882551,-2.3916912,-2.03032,-1.4541272,-1.4919794,-1.5821573,-1.5893098,-1.6058984,-1.6699932,-1.7253057,-1.6765728,0.6418196,0.8062371,0.38534135,0.08308269,0.012135867,-0.024095502,-0.21524657,-0.27834743,-0.34760895,-0.4533409,-0.56249356,-0.4203134,-0.43053132,-0.45998594,-0.48641172,-0.5526151,-0.6118452,-0.6720627,-0.7049801,-0.73325324,-0.82749116,-0.8465778,-0.8715857,-0.65520465,-0.04777504,0.70736545,0.34733972,0.15783772,0.106599554,0.032715645,-0.045386072,-0.16339083,-0.27086702,-0.36636415,-0.43961632,-0.5143204,-0.2703958,-0.05063541,-0.13542607,0.70384,0.46721137,0.27495956,0.19208907,0.17600779,0.1226051,0.0986473,0.051704522,-0.02403542,-0.11447829,-0.17465484,-0.23855042,-0.24925068,-0.24839993,-0.23300733,-0.27250353,-0.20324753,-0.1850742,0.0037099458,0.18879776,0.1619095,0.37865466,0.3910043,0.51446134,0.6213578,0.7928573,0.9690938,1.0932833,1.2967498,1.3226912,1.3019787,1.5209394,1.4865097,1.365655,1.4549261,1.6542729,1.3746135,1.4333805,1.5239215,1.8950851,2.306121,2.788725,2.8889651,2.9879713,3.4601877,3.5520515,4.110701,3.6211038,3.515115,3.4322248,3.4674711,3.6757817,3.5367212,3.5451016,3.9696207,3.7983346,3.6355338,3.5825844,3.4990902,3.4921026,3.5460744,3.535203,3.4620028,3.5322638,3.572938,3.9093997,3.8582532,3.791688,3.8327541,4.1054945,4.268847,4.2429056,4.377431,4.225422,4.279204,4.0694566,3.9619725,3.8470337,3.7829993,3.8489535,4.189487,3.9970903,4.1384563,4.0764613,4.266634,3.9469466,3.8501139,3.8567433,3.7552223,3.7152061,3.7387257,3.7800784,3.7839208,3.9008904,4.0690093,4.128169,4.137718,4.101538,4.1594296,4.2955446,4.110571,4.3220654,4.127428,3.868379,3.8623488,3.908827,3.9027562,3.8786213,4.0469337,3.9942203,4.139346,3.9736252,3.9880877,3.7439756,3.9356952,3.7474346,3.6704826,3.8016725,3.626192,3.8493366,3.7093263,3.6382494,3.6688862,3.6718822,3.7757597,3.8003607,3.8056486,3.815728,3.9120293,3.8515563,3.9193254,3.841365,3.7614255,3.560445,3.0239885,1.9736209,1.4283183,0.97191286,0.7581919,0.5942005,0.53162915,0.45400643,0.63468456,0.84584343,0.73090476,1.1095746,0.99581933,1.2715495,1.1917567,1.4208196,2.0794008,1.9728925
+0.31580675,0.016535271,-0.20960493,-0.3308639,-0.40105057,-0.4749673,-0.5516172,-0.6550195,-0.5131702,0.2621603,0.2412322,-0.027517743,0.1774702,0.16738987,-0.096898615,-0.19429891,-0.26880923,-0.36829883,-0.4752902,-0.61050904,-0.80722415,-0.64586973,-0.017093156,-0.14112222,0.6409554,0.427441,0.3242454,0.53472877,0.42538333,0.39874172,0.173177,0.028336074,-0.091492385,-0.25420317,-0.45725685,-0.5875306,-0.38301146,0.14333992,0.08975656,-0.18440965,-0.29341164,-0.40472472,-0.5792042,-0.75813806,-0.7918721,-0.8475176,-0.67550343,-0.45005542,-0.570014,-0.8601689,-1.0259756,-1.0511498,-1.1040206,-1.1627843,-1.0453434,-0.86524016,-0.81532586,-0.9369964,-1.0404024,-1.0477691,-1.0564517,-1.1466651,-1.2818766,-1.4226453,-1.5305108,-1.6341023,-1.655649,-1.6868451,-1.7470304,-1.8121881,-1.9265136,-1.7627497,-1.0717318,-0.56470895,-0.68983054,-0.91025126,-1.0762179,-1.257351,-1.4303212,-1.5651453,-1.657693,-1.7148997,-1.8110723,-1.8280702,-1.8623531,-1.9377427,-1.9937569,-2.0248241,-2.064232,-2.138176,-2.084669,-1.8060083,-1.6278011,-1.5753729,-1.5984317,-1.6967607,-1.764628,-1.8430306,-1.9141794,-1.9800665,-1.9581692,-2.0280979,-2.0561647,-2.0854397,-2.1092796,-2.1202052,-2.1190486,-2.180183,-2.2306533,-2.2698517,-2.3061564,-2.3328102,-2.3195052,-2.35611,-2.3825417,-2.375525,-2.394638,-2.4527202,-2.4708927,-2.4750233,-2.4995155,-2.4907146,-2.5313509,-2.5131695,-2.5300403,-2.6239495,-2.1818583,-2.091057,-2.1557908,-2.246007,-2.3013053,-2.350926,-2.3921194,-2.4167352,-2.439225,-2.455335,-2.4601953,-2.509254,-2.5376153,-2.5629885,-2.5453153,-2.579896,-2.609685,-2.6343508,-2.6412604,-2.606493,-2.6324782,-2.6285224,-2.641609,-2.6664052,-2.6952717,-2.7129905,-2.7298775,-2.7251797,-2.7695765,-2.7985072,-2.755621,-2.7917256,-2.795009,-2.7930796,-2.7732472,-2.7997131,-2.8232348,-2.7851522,-2.7881875,-2.872096,-2.7707953,-2.8069286,-2.813705,-2.807838,-2.7996335,-2.8160264,-2.840781,-2.8974168,-2.3525681,-1.7674137,-1.7839353,-1.9127045,-1.9806236,-2.0235114,-2.0663476,-2.1285183,-2.1747274,-2.2449744,-2.299265,-2.2508159,-2.2206557,-2.211811,-2.2360592,-2.2497487,-2.275257,-2.2715492,-2.3381078,-2.3147821,-2.3680189,-2.4143362,-2.4793828,-2.4380603,-2.4851341,-2.438562,-2.4506197,-2.4460373,-2.4261847,-2.4161274,-2.4241297,-2.4700577,-2.382495,-2.1956139,-2.237526,-2.2864223,-2.086284,-1.8587276,-1.762794,-1.4193299,-1.3398484,-1.3286197,-1.3218102,-1.3363316,-1.3099617,-1.2903754,-1.3092053,-1.3366808,-1.355271,-1.3514221,-1.3579586,-1.3525672,-1.3104441,-1.3080885,-1.3162942,-1.2831868,-1.1568601,-1.0034193,-1.0015465,-1.1033145,-1.0377078,-0.850043,-0.7274005,-0.59234023,-0.512973,-0.4604681,-0.4013166,-0.2649186,-0.18775028,-0.13245723,-0.07452397,-0.14853518,-0.123254135,-0.06201185,-0.09289019,-0.17773138,-0.12373541,-0.11464602,-0.0343008,-0.063087836,-0.07652788,-0.11150701,-0.10513468,-0.028235536,-0.20940644,0.061663542,-0.029514205,0.15892135,0.26640892,0.35424083,0.3544135,0.32867143,0.31190223,0.38894022,0.38625637,0.3856788,0.4055026,0.5835253,0.68528783,0.6648825,0.6714097,0.662219,0.64533657,0.66548723,0.7761575,0.90864444,0.88939273,0.887766,1.0753716,1.2326137,1.2949275,1.4326935,1.5466061,1.7526119,1.6430733,1.6573725,1.6278574,1.622536,1.5660422,1.8245573,1.8181498,1.8513534,1.8698406,2.202426,2.1264803,1.9378698,1.7590207,1.8166896,1.8575447,1.932831,1.9816525,1.9773481,1.9883018,2.0914543,2.0753741,2.1425104,2.14433,2.2102551,2.1532507,1.9491199,2.0925474,1.8208008,1.4535452,1.4280685,1.4463885,1.5442226,1.6208367,1.7038707,1.6130147,1.6666589,1.5334685,1.6605737,1.4100707,1.1013997,1.1288952,1.2178228,1.3178761,1.3824308,1.4390625,1.4412255,1.4890604,1.5403653,1.543668,1.5994859,1.5212864,1.3799319,1.4432914,1.5504812,1.5052222,1.4341385,1.1876215,0.92381984,0.7537487,0.56391203,0.2390952,-0.0025310032,-0.15747543,-0.29480037,-0.40829787,-0.51995724,-0.6526821,-0.6232186,-0.421159,-0.31397516,0.06725289,0.071572706,0.17927167,-0.015200328,0.124505594,0.07545087,-0.014962535
+-1.0051961,-1.0108407,-1.1947255,-1.3442593,-1.4233946,-1.5392553,-1.6216025,-1.7080516,-1.2051663,-0.39982355,-0.379022,-0.61321044,-0.8262406,-0.9890156,-1.1844168,-1.2963122,-1.3321171,-1.3949314,-1.4730443,-1.5705496,-1.6935964,-1.8368809,-1.9807009,-2.0746021,-1.4960563,-1.3049176,-1.4110944,-1.161974,-0.76894987,0.03752399,-0.18557745,-0.5419465,-0.6951436,-0.9065522,-1.1461372,-1.3650165,-1.2654843,-0.9790196,-0.939073,-1.1181381,-1.28137,-1.4021889,-1.5346059,-1.627555,-1.748568,-1.8595397,-1.9331782,-1.8854651,-1.8940527,-1.9953924,-2.1423376,-2.1805303,-2.2001343,-2.2328353,-2.220794,-2.2683134,-2.3120306,-2.3476157,-2.354519,-2.3969498,-2.4316669,-2.4517136,-2.4594798,-2.4657917,-2.4973156,-2.488468,-2.5285249,-2.562921,-2.5852537,-2.5543811,-2.572878,-1.7336997,-1.040005,-1.1863389,-1.3511786,-1.4902364,-1.6465707,-1.7808743,-1.8861282,-2.0287516,-2.0886543,-2.2009282,-2.2595885,-2.3135638,-2.3692799,-2.416068,-2.4428926,-2.460676,-2.4884472,-2.5208693,-2.5715907,-2.3353906,-1.3459682,-1.1343203,-1.3633223,-1.5299413,-1.6689899,-1.7522228,-1.8300922,-1.9320432,-2.0263896,-2.1267858,-2.1509783,-2.2106397,-2.2352242,-2.288907,-2.332354,-2.350655,-2.3609474,-2.4075959,-2.4496675,-2.4786878,-2.5211325,-2.5647335,-2.5680017,-2.5581756,-2.5892391,-2.6168885,-2.6305017,-2.6630125,-2.662866,-2.696217,-2.7065125,-2.740945,-2.420279,-1.5260882,-0.9923068,-1.2610594,-1.4747391,-1.655313,-1.763283,-1.8451314,-1.9574862,-2.0497446,-2.1468968,-2.1898901,-2.2066388,-2.2740247,-2.3028722,-2.3454537,-2.4106221,-2.448093,-2.4718938,-2.2939625,-1.8674314,-1.7212007,-1.751432,-1.832571,-1.9542551,-2.038466,-2.1058738,-2.1281157,-2.1465921,-2.221925,-2.2812872,-2.3299184,-2.38194,-2.4578285,-2.484239,-2.486559,-2.5055845,-2.5667877,-2.5978994,-2.5655303,-2.581648,-2.598468,-2.653956,-2.6761067,-2.6952064,-2.6998746,-2.6946461,-2.6754417,-2.6828268,-2.7293766,-2.7046244,-2.5940413,-2.665682,-2.7139535,-2.7271395,-2.7279134,-2.7738686,-2.69839,-2.7081037,-2.7272384,-2.7410445,-2.6389139,-2.727071,-2.7184248,-2.7053971,-2.7089171,-2.7205315,-2.7336986,-2.7229884,-2.703885,-2.7575245,-2.7586071,-2.736403,-2.7511775,-2.7969093,-2.836769,-2.8559153,-2.8141654,-2.7903812,-2.7633023,-2.7743137,-2.816863,-1.8028705,-0.7650778,-0.9266039,-1.0659535,-1.1764792,-1.0178529,-1.1810915,-1.3356946,-1.393148,-1.4091083,-1.4114304,-1.4406211,-1.472784,-1.4750206,-1.4868479,-1.4927795,-1.5195757,-1.5364959,-1.5435997,-1.541981,-1.5494597,-1.5439761,-1.5315874,-1.5175242,-1.5511614,-1.484153,-1.4067254,-1.3917513,-1.0676485,-1.0771868,-1.0643331,-1.0756042,-1.0413492,-1.0053747,-0.9865388,-0.9788779,-0.91658986,-0.87662506,-0.8491127,-0.93495494,-0.9474994,-0.87734276,-0.86207134,-0.87209743,-0.8917865,-0.9040281,-0.84410715,-0.82210296,-0.8044008,-0.8320256,-0.8733535,-0.83081466,-0.8246758,-0.31178278,-0.53531104,-0.59141016,-0.49835855,-0.38647857,-0.4031117,-0.4058408,-0.18910512,0.5013583,0.10412569,0.09888677,0.18944542,0.25937083,0.23277234,0.23580293,0.21449415,0.18995728,0.18500207,0.1449178,0.12321684,-0.036964502,-0.2766496,-0.2067117,-0.056106668,-0.24621312,-0.40254283,-0.4471272,-0.5363803,-0.21771914,-0.18194951,-0.19539757,-0.17892396,-0.13894399,-0.084969416,0.049685363,0.29854733,0.55606616,0.5761363,0.6921085,0.57320994,0.6704938,0.7019686,0.7195337,0.7393825,0.7531929,0.7628794,0.7660871,0.749573,0.7769066,0.5111516,0.2971691,0.2171758,0.106865,0.025337685,-0.115986824,-0.18321605,-0.25967106,-0.2833733,-0.24292304,-0.32235664,-0.31687194,-0.26746032,-0.23070323,-0.25770015,0.4081308,0.3092376,0.018709142,-0.2026939,-0.32075876,-0.51120615,-0.51799774,-0.45637774,-0.36810055,-0.35406148,-0.4204527,-0.4503129,-0.42143035,-0.40383545,-0.40125823,-0.5190927,-0.68800485,-0.5972272,-0.55934787,-0.5695596,-0.6460156,-0.7173444,-0.79944354,-0.8339876,-0.86426634,-0.9295328,-1.0143046,-1.0511998,-1.1012338,-1.190941,-1.2904526,-1.4036236,-1.4681928,-1.4651394,-1.4355865,-0.6439243,-0.35192564,-0.6012346,-0.73823965,-0.7571622,-0.81398475,-1.0092226
+-1.8876685,-1.9475828,-2.0690987,-2.1693926,-2.2339756,-2.2779584,-2.3359423,-1.705959,0.051383633,0.5291251,0.30673876,-0.017400872,-0.2504381,-0.49767554,-0.69820106,-0.8950944,-1.0430328,-1.1655796,-1.2981561,-1.4292058,-1.529982,-1.6319515,-1.7400961,-1.7948248,-0.56825787,-0.3696592,-0.49248135,-0.51694596,-0.61678755,-0.16476147,0.07488571,-0.27526882,-0.4940399,-0.68756753,-0.8712107,-1.011146,-1.1231712,-1.2262602,-1.3870608,-1.500462,-1.6055322,-1.7022009,-1.7967653,-1.8800578,-1.9702032,-2.0587075,-1.20754,-0.77838767,-0.9299929,-1.1343586,-1.3007021,-1.4173213,-1.4896677,-1.5745411,-1.6669356,-1.5877359,-1.6762613,-1.7686476,-1.8433985,-1.9315434,-2.0347152,-2.117314,-2.146438,-2.200003,-2.2527492,-2.2614727,-2.2940612,-2.3319268,-2.359993,-2.3562365,-2.3687308,-1.7513347,-1.4863384,-1.6001067,-1.7139502,-1.7995245,-1.8812475,-1.9572309,-2.0234606,-2.159246,-2.2401724,-2.299976,-2.3216598,-2.3537643,-2.3922243,-2.4122095,-2.4364018,-2.471687,-2.4976754,-2.4074988,-2.2774813,-1.1741028,-0.575722,-0.764555,-0.96956754,-1.1224074,-1.2348317,-1.3464956,-1.4506502,-1.5393739,-1.6260664,-1.7323542,-1.7811854,-1.8634093,-1.9401896,-1.9989917,-2.0400908,-2.0854678,-2.1396618,-2.1838675,-2.2174416,-2.2616973,-2.2957275,-2.3287587,-2.339998,-2.361919,-2.400032,-2.4307427,-2.0816534,-1.8247846,-1.5029206,-1.500831,-1.6257373,-1.6088548,-1.5502672,-1.1500683,-0.8077925,-0.9934664,-1.15426,-1.2694631,-1.3530006,-1.4185473,-1.5009892,-1.6019734,-1.67007,-1.7276007,-1.7723458,-1.8227448,-1.8782892,-1.9378203,-1.9817475,-2.016284,-2.0544004,-2.0845811,-1.7352788,-1.5893068,-1.6854396,-1.7343917,-0.21103254,-0.093414366,-0.39367533,-0.6469867,-0.834728,-1.0202211,-1.1429324,-1.2383404,-1.3264464,-1.4079707,-1.4945438,-1.5649117,-1.6309793,-1.7077334,-1.7566268,-1.7838947,-1.8248459,-1.8760118,-1.923157,-1.9523237,-1.9905808,-2.0220852,-2.0492764,-2.0841508,-2.1438203,-2.1814637,-2.1636796,-2.1697664,-2.2194042,-2.2341747,-2.2538743,-2.2791913,-2.3234801,-2.3042808,-2.3195434,-2.3241491,-2.316846,-2.2878535,-2.3409991,-2.3458385,-2.3448913,-2.3516471,-2.3951023,-2.4169574,-2.4329176,-2.4662623,-2.4440286,-2.4410095,-2.439859,-2.4618993,-2.4655128,-2.4814029,-2.500179,-2.4454775,-2.4358928,-2.4637287,-2.4850187,-2.5206459,-0.8494526,0.043321196,-0.114680305,-0.26802048,-0.18587048,-0.29233038,-0.40948224,-0.48573017,-0.5345671,-0.6036496,-0.66688186,-0.7407369,-0.8033476,-0.84887457,-0.89720285,-0.9530563,-0.99496216,-1.023981,-1.0433458,-1.0647402,-1.0942698,-1.1145544,-1.1359662,-1.1627003,-1.15902,-1.1559484,-1.1530021,-1.3228911,-1.3556497,-1.3233935,-1.2926803,-1.2685543,-1.2313864,-1.1643109,-0.8283248,-0.49391228,-0.48597425,-0.49099943,-0.50277156,-0.54808116,-0.56881887,-0.5509684,-0.55756116,-0.5509794,-0.55061626,-0.56969416,-0.5610989,-0.57684326,-0.6178432,-0.65106905,-0.66838753,-0.6594682,-0.68997675,0.6729115,0.644907,0.43574134,0.4132637,0.42645264,0.41710794,0.79139113,0.83418083,1.370925,1.0242467,0.84408104,0.8338388,0.75605893,0.67778134,0.688145,0.67541814,0.58455724,0.47669452,0.44669014,0.436377,0.3747611,0.24677576,0.13685118,0.6729179,0.94709694,0.63564026,0.5133025,0.86067426,1.3864462,0.8845532,0.6478834,0.55949545,0.49425745,0.49052626,1.1506488,1.2283714,1.1551181,1.3877155,1.7385566,1.217374,0.92064035,0.8330629,0.763137,0.72795755,0.724962,0.6779386,0.6078241,0.5463507,0.51409394,0.45480666,0.37132788,0.3259552,0.35259542,0.31718585,0.21897636,0.15220441,0.1322157,0.4394881,0.80490756,0.42867997,0.29096028,0.22323309,0.20004122,0.49498767,1.5580362,1.2205453,0.8763592,0.6135841,0.4382776,0.35061944,0.28183833,0.2703721,0.23270054,0.16340327,0.07038373,0.0042699315,-0.027210008,-0.054520603,-0.0996338,-0.16812827,-0.20627439,-0.25488245,-0.3302849,-0.40377137,-0.44961673,-0.53374714,-0.59042037,-0.6337842,-0.6719679,-0.734987,-0.7868749,-0.8421937,-0.9180983,-1.024509,-1.1432256,-1.1853997,-1.1849136,-1.3362471,-1.3674752,-1.379816,-1.4401398,-1.5029541,-1.5730947,-1.5978593,-1.5008675,-1.5217304
+-2.2650392,-2.4849677,-2.6119766,-2.7125857,-2.7855701,-2.850128,-2.92841,-2.3792334,-1.9017091,-1.8277488,-1.8260496,-1.7247586,-1.8343109,-1.954612,-2.0709488,-2.1621842,-2.245348,-2.304772,-2.3664207,-2.4150066,-2.4413228,-2.4814558,-2.5032828,-2.5355287,-2.5547922,-2.6019135,-2.6162825,-2.6509373,-2.6844099,-2.6843338,-2.6951349,-2.7133038,-2.7222338,-2.7228456,-2.717579,-2.7460682,-2.7649384,-2.8052254,-2.8129575,-2.8296213,-2.8515024,-2.8708086,-2.873993,-2.8888419,-2.8905582,-2.908626,-2.934387,-2.9468489,-2.9474533,-2.9279532,-2.9336228,-2.9425857,-2.949071,-2.9573946,-2.9726732,-2.8960962,-2.907515,-2.9236035,-2.9278944,-2.9465065,-2.976195,-2.9980402,-3.0039773,-3.0122552,-3.0269966,-3.0331264,-3.026999,-3.0359795,-3.0338402,-3.01996,-3.0280488,-3.038187,-3.038768,-3.0442665,-3.0520127,-3.0457501,-3.0527096,-3.067467,-3.0872579,-3.161267,-3.170969,-3.221064,-3.198319,-3.1855445,-3.197075,-3.1915078,-3.1934028,-3.1987147,-3.219789,-3.2088146,-3.200072,-3.2066462,-3.212084,-3.2114305,-3.2115505,-3.2124624,-3.2072577,-3.2119627,-3.2180943,-3.2204313,-3.2166696,-3.2212248,-3.2386975,-3.2399879,-3.242487,-3.263094,-3.2604568,-3.2714312,-3.265868,-3.2577667,-3.2616272,-3.2653737,-3.2761297,-3.2758431,-3.2629595,-3.2693262,-3.270894,-3.2722976,-3.275587,-3.2711036,-3.2668295,-3.2687926,-3.294063,-3.2820287,-3.2829986,-3.2897928,-3.2824485,-3.2732453,-3.2707243,-3.2700655,-3.2649894,-3.2691584,-3.273374,-3.2915754,-3.2859325,-3.2844954,-3.2774162,-3.2867298,-3.298441,-3.3081229,-3.2914891,-3.3011627,-3.3105683,-3.3080726,-3.3097675,-3.3042479,-3.3016315,-3.3011866,-3.3116336,-3.3094935,-3.3097558,-3.308728,-3.3071523,-3.3046772,-3.30504,-3.2870173,-3.2780406,-3.286429,-3.300223,-3.314427,-3.3215518,-3.32094,-3.312208,-3.3003266,-3.291018,-3.2969346,-3.2884858,-3.2932463,-3.3126006,-3.3279016,-3.3354025,-3.3408532,-3.3691597,-2.5458884,-2.07402,-2.1367285,-2.2927656,-2.3756626,-2.4440327,-2.4862738,-2.5248594,-2.5598555,-2.584507,-2.6029198,-2.6032615,-2.545415,-2.6287901,-2.6443882,-2.6516657,-2.6740623,-2.7021325,-2.707436,-2.7196522,-2.728925,-2.7154374,-2.730857,-2.7331023,-2.7558208,-2.8003538,-2.8199446,-2.8001242,-2.7947412,-2.7990203,-2.8182867,-2.8070645,-2.789616,-2.1954987,-1.5741434,-1.5051607,-1.5987281,-1.7191315,-1.7722242,-1.8223873,-1.8468487,-1.8386254,-1.9120326,-1.956438,-2.0186334,-2.0633383,-2.0692906,-2.0784376,-2.1126595,-2.1210155,-2.1229947,-2.1293764,-2.1461134,-2.178255,-2.1766527,-2.1830685,-2.2295375,-2.1576705,-2.1595485,-2.1808805,-2.3028772,-2.3415737,-2.2653532,-2.2682076,-2.2497056,-2.2157705,-2.1934934,-2.2577875,-2.25801,-2.2775578,-2.2569432,-2.2916257,-2.3743563,-2.325789,-2.3309326,-2.3404527,-2.3382678,-2.3370972,-2.351022,-2.4118867,-2.4348671,-2.4568973,-2.4696002,-2.467327,-2.4658859,-2.4522028,-2.4829679,-2.3839986,-2.3487651,-2.3284981,-2.337224,-2.1651542,-0.23464027,0.13929567,0.04310793,-0.15679553,-0.24534504,-0.3079937,-0.37366605,-0.42177045,-0.50592715,-0.54205906,-0.31133544,-0.08653365,-0.19950582,-0.27189213,-0.33502316,-0.43728286,-0.5119709,-0.55297184,-0.59782183,-0.58891165,-0.6608161,-0.68239474,-0.22861539,0.046557073,-0.20967616,-0.2703554,-0.30642158,-0.32148373,-0.26348612,0.3254247,0.5656,0.53645724,0.68513095,0.32423112,0.21368854,0.17022416,0.11022,0.04538281,-0.017327856,-0.08432661,-0.14004539,-0.17780243,-0.2311152,-0.35340506,-0.3958548,-0.39104167,-0.45585033,-0.53035563,-0.6479009,-0.73097104,-0.8392067,-0.9758938,-0.8765602,-0.9415393,-1.0624018,-1.1045618,-1.1348162,-1.179915,-0.6109401,-0.079150036,-0.23481512,-0.3765749,-0.5622773,-0.6890789,-0.68636996,-0.6458925,-0.7545792,-0.72659874,-0.61562586,-0.6211002,-0.71032286,-0.8055904,-0.90106595,-1.0642405,-1.1643791,-1.2434392,-1.3762228,-1.4806976,-1.5392808,-1.6316005,-1.7069337,-1.7631794,-1.8043203,-1.8525562,-1.8949401,-1.9135787,-1.9281636,-1.9588349,-2.0161877,-2.0054708,-2.0160148,-2.0734806,-2.0901036,-2.1537852,-2.1714702,-2.1953778,-2.2170365,-2.239225,-2.2818573,-2.3053906
+-2.1888857,-2.7090604,-2.859849,-2.9233246,-2.9431076,-3.0022116,-2.974603,-2.792499,-2.670741,-2.651462,-2.6460483,-2.7055085,-2.7469625,-2.7433262,-2.693877,-2.6571512,-2.6796403,-2.7041447,-2.7500482,-2.7781637,-2.771936,-2.781145,-2.7867591,-2.7695837,-2.7369504,-2.7025995,-2.710434,-2.7371702,-2.7514474,-2.745093,-2.7666206,-2.800137,-2.8253498,-2.8269682,-2.8119593,-2.715045,-2.708393,-2.7532353,-2.773129,-2.8173199,-2.8463068,-2.8631368,-2.8608265,-2.888293,-2.8709507,-2.850232,-2.860786,-2.8865142,-2.897593,-2.8740788,-2.777184,-2.7460122,-2.7638307,-2.7713542,-2.7856421,-2.8110619,-2.8499408,-2.8673875,-2.876734,-2.9007661,-2.923822,-2.9329972,-2.953308,-2.9670498,-2.9744923,-2.9787865,-2.9854789,-2.9883733,-2.9957643,-2.9908032,-2.9882247,-2.9878566,-2.9706376,-2.9661698,-2.958397,-2.9658422,-2.950177,-2.9819267,-2.993895,-3.053484,-3.088952,-3.0519776,-3.0869966,-3.074992,-3.0578246,-3.048286,-3.0688422,-3.0880911,-3.0994337,-3.074794,-3.0846217,-3.0857177,-3.0772367,-3.0807536,-3.0892138,-3.0659337,-3.0574088,-3.066986,-3.077909,-3.0817947,-3.0891247,-3.0834084,-3.0582638,-3.0740352,-3.0984442,-3.109148,-3.1162987,-3.1194494,-3.1116834,-3.1164353,-3.1231604,-3.136829,-3.1366673,-3.1355524,-3.124594,-3.1330514,-3.1404428,-3.146024,-3.1477225,-3.1344528,-3.1175494,-3.1012354,-3.1076863,-3.110035,-3.1047535,-3.1038706,-3.110937,-3.1085682,-3.1069894,-3.098082,-3.0774524,-3.075704,-3.091155,-3.110652,-3.1167836,-3.1199243,-3.1228347,-3.1188772,-3.1134796,-3.102087,-3.1075559,-3.0992384,-3.0848215,-3.0947328,-3.0788414,-3.088472,-3.0929701,-3.0783546,-3.0761685,-3.0729446,-3.0917134,-3.0995278,-3.1049995,-3.1051521,-3.0948677,-3.0578651,-2.9963439,-2.9828222,-2.9991407,-3.0495644,-3.0746238,-3.0721998,-3.0635548,-3.0644705,-3.0428135,-3.012206,-2.9844966,-2.9432926,-2.9596286,-3.0115764,-3.032496,-3.0466857,-3.0592628,-2.9779668,-2.8856173,-2.8014817,-2.804606,-2.8478577,-2.855208,-2.869389,-2.896449,-2.9093404,-2.9161313,-2.9163496,-2.8930817,-2.7515693,-2.7915115,-2.8011951,-2.7761898,-2.7674043,-2.7913606,-2.8520303,-2.8875296,-2.8818574,-2.8440518,-2.787259,-2.8202362,-2.8237345,-2.8511362,-2.846243,-2.82904,-2.8149154,-2.7667866,-2.7578619,-2.8084033,-2.7959483,-2.8463583,-2.903677,-2.82339,-2.8451877,-2.8309512,-2.8260076,-2.8351655,-2.8022127,-2.683344,-2.704094,-2.7017908,-2.734689,-2.7780254,-2.7759292,-2.7700558,-2.765284,-2.764046,-2.7142453,-2.7007399,-2.7179487,-2.7529292,-2.7284603,-2.7061615,-2.70978,-2.6244738,-2.5780861,-2.5697408,-2.6049,-2.6745625,-2.6485467,-2.6603377,-2.6412678,-2.593354,-2.5902612,-2.608264,-2.5967927,-2.6243372,-2.5757523,-2.5697453,-2.5958128,-2.5689209,-2.5698252,-2.5864997,-2.6048574,-2.6241865,-2.6112318,-2.6326306,-2.6590858,-2.6773174,-2.6926901,-2.713493,-2.7174184,-2.685669,-2.6504333,-2.6123261,-2.5455592,-2.5385368,-2.563449,-2.5991218,-0.8481325,-0.6879752,-0.7924853,-0.93117166,-1.1044538,-1.1934297,-1.2807252,-1.3495234,-1.421561,-1.4592941,-1.4661245,-1.4255061,-1.4612778,-1.5039556,-1.5301065,-1.5787145,-1.6232533,-1.6800935,-1.7103862,-1.7285237,-1.737556,-1.7409886,-1.1757293,-1.1441417,-1.2436142,-1.3254206,-1.3541715,-1.4056065,-1.3844652,-1.3293619,-0.78555787,-0.9980019,-0.90993536,-1.0291582,-1.1482701,-1.2075424,-1.2557993,-1.2859321,-1.3351997,-1.3860667,-1.4251072,-1.4631155,-1.4854333,-1.5365579,-1.5666437,-1.5825695,-1.6182301,-1.6496563,-1.7524066,-1.834125,-1.8792995,-1.825928,-1.7623355,-1.782048,-1.7913003,-1.7837358,-1.793026,-1.7821934,-1.44737,-1.3618996,-1.4588463,-1.5595055,-1.6756728,-1.6326518,-1.6249797,-1.6364207,-1.6533054,-1.4605839,-0.9505949,-1.1298598,-1.2772162,-1.4272175,-1.5748023,-1.6650782,-1.6412425,-1.6318908,-1.7188017,-1.812368,-1.8820024,-1.9127536,-1.976009,-2.0223134,-2.0312514,-2.055833,-2.0561395,-2.0698059,-2.0922685,-2.0843234,-2.1313584,-2.0855858,-2.0542564,-1.9842305,-1.9650495,-2.0242941,-2.0216527,-2.0514731,-2.0368538,-2.0250714,-2.0924697,-2.0628204
+-1.4013395,-1.6645445,-1.6985419,-1.8228235,-1.8701756,-1.9384893,-1.7147943,-0.40404436,-0.24687608,0.21851389,0.03715383,-0.106714875,-0.39966583,-0.67698634,-0.8404849,-0.9565024,-1.0765921,-1.171185,-1.2821089,-1.4085193,-1.4952784,-1.6139146,-1.6756327,-1.7404038,-1.8019501,-1.8136512,-1.8586823,-1.9022104,-1.8898995,-1.9480054,-1.9405918,-1.9581712,-1.9938715,-2.046525,-2.0769148,-1.9240252,-1.5692136,-1.6272583,-1.7166197,-1.7812655,-1.8355455,-1.9083247,-1.992218,-2.0602999,-2.0684366,-2.1125824,-2.1302528,-2.1619213,-2.2175255,-2.2375374,-2.260903,-2.2460108,-2.2518945,-2.260611,-2.2587159,-2.2562437,-2.2572007,-2.2780619,-2.2877288,-2.3053336,-2.3355763,-2.3731065,-2.383831,-2.422551,-2.4577713,-2.4844463,-2.4949613,-2.515178,-2.521532,-2.527742,-2.5956063,-2.601997,-2.606802,-2.6119344,-2.5948985,-2.601719,-2.6158206,-2.6238635,-2.6396003,-2.6658103,-2.6674106,-2.7336333,-2.8101878,-2.8114767,-2.7978501,-2.7808166,-2.7941227,-2.8219414,-2.8488443,-2.8560107,-2.8872657,-2.9135528,-2.8945613,-2.882372,-2.8710349,-2.8705673,-2.871172,-2.8778138,-2.8782744,-2.8835561,-2.8765662,-2.875086,-2.86615,-2.8727393,-2.8900363,-2.9042141,-2.913295,-2.93279,-2.9489589,-2.959258,-2.957888,-2.9558249,-2.9557111,-2.9596763,-2.9661796,-2.9936843,-3.0214183,-3.0036442,-2.9868627,-2.9666903,-2.9909072,-3.0219128,-2.9319253,-2.9110556,-2.9201803,-2.9422848,-2.9452062,-2.9522207,-2.9352531,-2.921077,-2.9107845,-2.9447286,-2.9809418,-2.9876733,-2.964861,-2.9202375,-2.9122345,-2.932176,-2.9401808,-2.950717,-2.9731734,-2.984415,-2.995423,-2.9992352,-2.996482,-2.9927416,-2.9943297,-3.011032,-3.0047526,-2.9796424,-2.9687731,-2.960246,-2.9567475,-2.9792361,-2.9917185,-2.9802127,-2.9691267,-2.9569654,-2.9658833,-3.0181353,-3.0154934,-2.9910984,-2.9747505,-2.9837372,-2.9865298,-3.0055194,-3.0124388,-2.9936638,-2.9727583,-2.9718375,-2.9369187,-3.0183814,-2.0087717,-0.6359141,-0.36674762,-0.74618113,-0.9927503,-1.129663,-1.2118899,-1.3197687,-1.482403,-1.5665598,-1.6284709,-1.6829201,-1.7286875,-1.7218022,-1.8229256,-1.8933686,-1.8978987,-1.9248955,-1.966995,-1.9984701,-2.0566187,-2.1000557,-2.1350398,-2.1202042,-2.1528795,-2.1752417,-2.2433088,-2.2781022,-2.270988,-2.239902,-2.3044486,-2.2113352,-2.253523,-2.2982228,-2.3695831,-2.333519,-2.292223,-2.2739089,-2.303475,-2.3336535,-2.3382792,-2.2774558,-2.25389,-2.284425,-2.2939696,-2.3181465,-2.3377066,-2.3282325,-2.2840605,-2.2587554,-2.2397814,-2.2240012,-2.2346644,-2.2618904,-2.279849,-2.233015,-2.2596304,-2.2919679,-2.2334628,-2.2816634,-2.2831447,-2.3920386,-1.9550831,-1.662288,-1.6855068,-1.6993464,-1.6703922,-1.7153227,-1.586962,-1.2310202,-1.1878642,-1.2620909,-1.2747097,-1.3073616,-1.3212842,-1.2758353,-1.3045206,-1.386683,-1.4447067,-1.4864118,-1.5370913,-1.5587893,-1.5818098,-1.6044718,-1.6242676,-1.620555,-1.6590649,-0.81060743,-0.24342977,-0.56827295,-0.5724779,-0.58551085,-0.7791912,0.6739499,0.45986488,0.87653923,0.6797365,0.6769868,0.567238,0.27880284,0.08012642,0.17588077,0.32692873,0.9683838,0.6384829,0.44060677,0.23994093,0.049699757,0.038891885,-0.005859567,-0.1503114,-0.28771225,-0.3713558,-0.3635495,-0.19166623,0.61962396,0.45782357,0.17048486,0.07341492,0.031287957,0.024396915,0.65400726,1.0432395,1.2576368,0.7418585,1.0180507,0.95906,1.047297,1.1980617,1.2266145,1.1989956,1.1138961,0.95709616,0.74801385,0.55579036,0.3963068,0.21982093,0.06479049,0.05322383,0.0032760687,0.14903346,0.088454336,-0.08268851,-0.20264183,-0.31066605,-0.35092053,-0.36362782,-0.45779127,-0.46830726,-0.49171263,-0.6593855,0.60028267,0.6480241,0.40344405,0.1479975,-0.05501017,-0.21365483,-0.22621658,-0.2163329,0.022525687,0.78972816,1.2864258,0.74571943,0.5945836,0.43414813,0.24376206,-0.049919527,-0.20654975,-0.21188663,-0.31754535,-0.45705295,-0.5614034,-0.6967803,-0.76608795,-0.8430767,-0.94023436,-1.0571392,-1.1507175,-1.2039256,-1.2884648,-1.4031204,-1.4910742,-1.5542297,-1.5157158,-1.2476785,-1.2735568,-1.3907328,-1.4452882,-1.5396276,-1.5812783,-1.5846639,-1.6926354,-1.7413074
+2.8511524,3.3333318,3.4486353,3.5479536,3.6142368,3.6448812,4.051321,4.110357,4.058013,4.2769947,4.1325617,4.050112,4.0604258,4.0937414,4.1012535,4.099869,4.0506177,4.041503,4.0367265,4.048119,4.055232,4.0704784,4.0947275,4.1176147,4.114704,4.1171865,4.1315613,4.1264567,4.124399,4.1115437,4.0842566,4.072633,4.0832014,4.0880995,4.060958,4.1749163,4.0979657,4.0491138,4.0779605,4.0874805,4.1050553,4.1004143,4.101033,4.0937095,4.103753,4.0927935,4.076792,4.079914,4.0895123,4.0988483,4.0946836,4.1146603,4.1320114,4.133912,4.146303,4.1491537,4.1539392,4.142395,4.1141267,4.101282,4.0979877,4.1006413,4.103748,4.1040688,4.116425,4.1370077,4.154802,4.1567163,4.1612597,4.145935,4.113138,4.086609,4.061304,4.0564065,4.087063,4.124369,4.141114,4.1475277,4.1407213,4.0986767,4.103028,4.0699263,4.0485945,4.0453706,4.059769,4.077898,4.0687685,4.0568285,4.065114,4.087576,4.0827484,4.081771,4.0813456,4.078023,4.0825286,4.0977488,4.1100397,4.114408,4.11496,4.1098795,4.12877,4.1426606,4.133108,4.1196795,4.1174583,4.128468,4.118491,4.106035,4.0948033,4.1004333,4.1078978,4.1134186,4.119286,4.1095276,4.101364,4.0878787,4.0783715,4.084032,4.098045,4.114954,4.10903,4.1045017,4.112336,4.124272,4.1213603,4.1372066,4.166565,4.1689796,4.1589108,4.1570263,4.1484327,4.133395,4.132979,4.1341777,4.1513658,4.1668406,4.1816616,4.1953306,4.196949,4.1879654,4.187436,4.198512,4.212222,4.2080703,4.1942053,4.191975,4.184762,4.1597137,4.1561127,4.1725416,4.192644,4.188614,4.193686,4.1835904,4.173936,4.1709604,4.1654615,4.1764545,4.1684427,4.1439915,4.138052,4.149005,4.1795874,4.2045937,4.216919,4.178719,4.180998,4.199595,4.195898,4.1897035,4.1653233,4.3002768,4.4605923,4.4860954,4.3329086,4.3325453,4.3107376,4.3115406,4.287286,4.243903,4.202134,4.1842117,4.177611,4.1809072,4.1900187,4.1970005,4.2316737,4.242039,4.224593,4.2176256,4.214881,4.2234964,4.2340145,4.2414293,4.245275,4.2607665,4.271983,4.2946405,4.3047123,4.3035064,4.309492,4.300284,4.267414,4.223143,4.2221737,4.2044625,4.201245,4.197117,4.192891,4.204709,4.2055483,4.2212305,4.219865,4.243545,4.273756,4.2937574,4.27358,4.258347,4.2334476,4.239491,4.236123,4.217272,4.216786,4.2086444,4.209102,4.196232,4.189748,4.190411,4.1950617,4.197367,4.1845446,4.176086,4.179188,4.2089877,4.220399,4.189103,4.188493,4.190821,4.196499,4.212725,4.2015505,4.185256,4.2105947,4.196863,4.2275558,4.206971,4.1934047,4.207013,4.231212,4.222149,4.2074413,4.2175794,4.245541,4.288473,4.3069954,4.3054776,4.298769,4.292836,4.272474,4.426934,4.5717278,4.406392,4.361634,4.342609,4.292466,4.7738695,4.520868,4.7528844,4.5856624,4.51207,4.4738,4.429864,4.3981256,4.533993,4.4555,4.7511506,4.5630836,4.4686794,4.471902,4.4874706,4.528338,4.498215,4.4647064,4.4618254,4.483635,4.4788275,4.5609846,4.714227,4.655646,4.5922937,4.5468254,4.5380917,4.5414066,4.551499,4.748586,4.7519007,4.588272,4.6601105,4.666133,4.5764146,4.546971,4.5273876,4.50891,4.5437126,4.555811,4.551285,4.5519214,4.544794,4.537338,4.5392466,4.527499,4.5196476,4.5346036,4.544224,4.5416284,4.539584,4.527484,4.506933,4.6667047,4.5868764,4.5436716,4.5444674,4.560354,4.840561,4.6806407,4.565797,4.555789,4.541525,4.525605,4.51661,4.5307813,4.6247597,4.6828184,4.716132,4.6058908,4.526368,4.5305014,4.536666,4.5416856,4.517745,4.504077,4.5266004,4.527338,4.5294757,4.531815,4.524232,4.5186777,4.503421,4.4795995,4.472063,4.465212,4.444671,4.4380836,4.4532375,4.465518,4.4560785,4.4696717,4.5145407,4.50906,4.5147977,4.503074,4.5079117,4.5111065,4.525544,4.5211697
+0.8369183,0.7804146,0.7277299,0.54928106,0.7818624,0.9079248,0.9595196,0.6171179,0.35580683,0.5018706,0.60685825,0.60067934,0.61698866,0.7230135,0.809248,0.9342246,0.74285364,0.3721156,0.048496757,-0.16480806,-0.24919526,-0.35925376,-0.22485144,0.16434458,0.20655298,0.12673473,0.0073067285,0.024056856,0.1482608,0.12741105,-0.031222355,-0.2179439,-0.34455937,-0.43372893,-0.4454533,-0.36101842,-0.4617179,-0.51894075,-0.15498818,-0.053341668,-0.16029903,0.09488584,0.3076544,0.40126857,0.4589734,0.26298663,0.058244053,-0.14592792,-0.14097375,0.027737636,0.36833552,0.9188497,0.9602687,0.73667765,0.43462157,0.23516928,0.15595917,0.18501598,0.19010128,0.23041426,0.18958908,0.027064893,-0.09846668,-0.09285317,-0.21893127,-0.31567234,-0.38884825,-0.46399128,-0.54284275,-0.613474,-0.51816535,-0.16362089,-0.26298833,-0.356395,-0.41197962,-0.34726295,-0.29846138,-0.2113825,-0.2541511,0.15184031,-0.068042606,-0.29657507,-0.32564157,-0.43201637,-0.11984658,0.23047023,-0.050395083,-0.24002002,-0.3695585,-0.4636327,-0.5182442,-0.56405133,-0.6132704,-0.65161186,-0.70408714,-0.61801606,-0.3076648,-0.19126667,-0.38358063,-0.25125843,-0.2304104,-0.21781194,-0.15751056,-0.02958547,-0.1459774,-0.13080198,0.16198766,0.038170192,-0.16063742,-0.20163013,-0.33720785,-0.45143297,-0.47551233,-0.34469312,-0.44246995,-0.5248263,-0.48595625,-0.30654088,-0.17988475,-0.37607393,-0.44312996,-0.46807766,-0.55250794,-0.6085301,-0.53002244,-0.45004445,-0.56270415,-0.57227194,-0.14548947,-0.08116695,-0.22261661,-0.1338926,-0.08090407,-0.28136018,-0.39429796,-0.45897597,-0.46921498,-0.4984631,-0.56234944,-0.5111435,-0.32718515,-0.46925557,-0.54154134,-0.62471944,-0.60715836,-0.5282932,-0.5227368,-0.48846337,-0.5702343,-0.6172364,-0.6505006,-0.68671423,-0.7175138,-0.7686596,-0.79965925,-0.7308341,-0.71709925,-0.6848351,-0.6061382,-0.42088047,-0.2542074,-0.24227226,-0.3874396,-0.22759807,-0.0068300776,-0.18992785,-0.24880645,-0.3387531,-0.4163047,-0.3878761,-0.10721813,-0.18964885,-0.20419168,-0.24652329,-0.11386989,0.19435202,-0.04138493,-0.1647496,-0.21951212,-0.27181178,-0.258144,-0.30095512,-0.34739095,-0.2081934,-0.0015175156,-0.17079383,-0.12665218,-0.002263572,-0.04893234,0.25443596,0.6097224,0.8516183,0.83646846,1.3923244,1.6029482,1.7088113,2.2073,2.0394313,2.0835028,1.9453533,1.8742478,1.7034237,1.8346009,1.8706259,1.9307053,2.0344362,2.1728728,2.032677,1.9459733,1.9415327,1.7054073,1.3722842,1.5795411,1.8655089,1.9440038,1.9332533,1.769513,1.5214978,1.2765377,1.1391206,1.0645443,1.0905073,0.820445,0.69437784,0.6424941,0.62588096,0.51625574,0.7232037,0.96075976,1.2211776,1.634752,1.8398751,2.0081394,2.1859617,2.3886044,2.4165764,2.4984903,2.5308673,2.6134462,2.7297502,2.7190485,2.728804,2.74542,2.7288864,2.7427468,2.7497342,2.73637,2.8468714,3.0109622,3.1175425,3.1366327,3.1837497,3.223662,3.2454958,3.1625915,3.15786,3.0391064,3.0028286,3.1073356,3.1718602,3.0260422,2.939873,2.9229915,2.9301748,2.9301572,2.9255495,2.972789,3.1161697,3.160276,2.9761033,2.9647748,2.9573169,2.9970694,2.977906,2.9659152,3.130011,3.2539291,3.2631712,3.1583538,3.1214614,3.139223,3.1188755,3.1911952,3.2996674,3.2822752,3.1980753,3.129966,3.0590827,3.0487967,3.0426936,3.0550375,3.1304634,3.1514964,3.1867304,3.1701703,3.1443164,3.214398,3.2733397,3.1771364,3.1759164,3.1121376,3.031769,3.0297453,3.0071268,2.9862351,3.0395799,3.148847,3.2049634,3.2307217,3.4048634,3.5009198,3.647368,3.6701822,3.5356078,3.490204,3.3203733,3.325315,3.2201347,3.207438,3.2290006,3.2214222,3.347231,3.21909,3.285476,3.3634217,3.3063493,3.3455849,3.3289733,3.459749,3.421948,3.3081815,3.4561315,3.535391,3.5642214,3.3663692,3.3731165,3.3001041,3.2867143,3.4591222,3.4143126,3.3856392,3.5200105,3.6356168,3.7053437,3.6038918,3.637689,3.6090727,3.5917346,3.605996,3.6096158,3.5393915,3.6605508,3.5079312,3.5529294,3.6974266,3.6870008,3.5795276,3.6038947,3.5932884,3.531343,3.7033598,3.5976121,3.6348152,3.6787567,3.7298706
+0.42032412,0.24072902,0.064695284,0.04454452,0.24045701,0.24817128,0.1353273,0.09284231,-0.012727421,-0.04130123,-0.052618872,-0.080537006,0.09842929,0.4440062,0.89719903,0.78153133,0.53746,0.3580259,0.23751675,0.11481859,0.07395597,-0.0290648,0.118405536,0.762836,0.6692039,0.791901,0.7643639,0.6139846,0.4569356,0.32695678,0.1826068,0.09012933,0.024632413,-0.042135548,-0.1095549,-0.06322934,-0.054237437,-0.14683424,0.45427543,0.6247071,0.36752275,0.28995132,0.39891922,0.32545245,0.21115147,0.2261995,0.1517853,0.022226725,0.30947638,0.64972216,0.59982264,1.2766714,1.4285443,1.3455989,0.90415907,0.6815375,0.62490225,0.49193454,0.3937959,0.3100444,0.15595596,0.09566392,0.030537393,-0.031794455,-0.08233479,-0.12570527,-0.15627518,-0.1847638,-0.18009512,-0.09248002,-0.08947232,-0.13393502,-0.18040091,-0.21118228,0.040484305,0.37037814,0.5836327,0.64966965,0.39304626,0.24394836,0.10505645,0.10310073,0.18388581,0.008146029,0.30287844,0.7542358,0.43737936,0.21923356,0.08900134,-0.007954437,-0.078068346,-0.12481281,-0.1751906,-0.19902961,-0.24851994,-0.28124133,-0.12793252,0.0069858767,-0.0666807,-0.050598454,-0.15623826,0.41269356,0.516965,0.37775424,0.24405919,0.10130601,0.097906455,0.27451968,0.113988176,-0.01860531,-0.09152138,-0.15438418,-0.21575119,-0.23469512,-0.26398394,-0.30482173,-0.34426975,-0.3689698,-0.39616835,-0.41525173,-0.42515984,-0.4202476,-0.42120665,-0.44626,-0.47487605,-0.36443296,-0.41750476,-0.47310895,-0.4786601,-0.45186162,-0.4406374,-0.085005835,0.1484072,-0.0780566,-0.19655503,-0.2777446,-0.3417469,-0.38520446,-0.42086768,-0.44807723,-0.37320822,-0.36583963,-0.41553828,-0.4411816,-0.4629601,-0.5007886,-0.5267882,-0.5029221,-0.49685413,-0.5176378,-0.5292324,-0.57303005,-0.5812702,-0.578688,-0.5696794,-0.4331472,-0.39215973,-0.4032575,-0.25003242,-0.007923212,0.046001453,0.032655586,-0.075373694,-0.07464942,0.26199427,0.1917546,0.046115298,-0.0885209,-0.18094306,-0.22814482,-0.038170766,-0.017800089,-0.09442757,-0.18658975,-0.015163805,0.28427774,0.08830632,-0.00086135045,-0.07962838,-0.17131256,-0.24505301,-0.2995898,-0.34394896,-0.3485687,-0.26654616,-0.29923224,-0.32585284,-0.06335986,0.4002706,0.48443043,0.59493685,0.59152687,1.321856,1.1434665,1.151376,1.2684939,1.0930195,0.9284491,0.82108325,0.8147902,0.8219763,0.7759807,0.84730065,0.87059504,0.95867443,0.91000295,0.8356632,0.70972025,0.7614304,0.843866,0.822834,0.8350712,0.8292711,1.2637227,1.1181314,0.8947097,0.77373,0.6895859,0.706938,0.710942,0.698113,0.71924335,0.61280835,0.5344633,0.574222,0.5887746,0.53869313,0.6489905,0.9998336,1.0280049,1.0849867,1.3318962,1.5655477,1.6978357,1.751722,1.809164,1.952391,2.1343071,2.352189,2.5465121,2.6541696,2.8467872,3.0153763,3.296931,3.3856792,3.687539,3.765247,3.866648,4.007321,4.067694,4.1420803,4.149963,4.2222853,4.214222,4.3005705,4.3604474,4.400285,4.4096646,4.412203,4.3514814,4.457712,4.354644,4.337043,4.3285446,4.3182297,4.381658,4.388338,4.327674,4.4200873,4.3666906,4.3406453,4.3312197,4.402528,4.3170652,4.3870335,4.3971443,4.3565016,4.4084272,4.403066,4.380682,4.350938,4.379653,4.369566,4.3314757,4.369869,4.388996,4.38741,4.4028797,4.3663664,4.3608036,4.3448067,4.3750343,4.370408,4.394259,4.4427843,4.469808,4.4255295,4.4517975,4.4149323,4.4144783,4.352865,4.3935432,4.3903403,4.3587337,4.372334,4.4218388,4.3937216,4.372779,4.4328747,4.3252945,4.36697,4.3486986,4.3930216,4.3973436,4.45276,4.4480753,4.412208,4.4465475,4.413748,4.389752,4.43149,4.444645,4.504259,4.555008,4.613534,4.5176353,4.4710345,4.501466,4.4642315,4.4185824,4.3844843,4.3259125,4.36227,4.303464,4.2899594,4.312133,4.374073,4.3926277,4.3280106,4.3204684,4.2794433,4.2426357,4.400646,4.346991,4.3750224,4.448528,4.4595413,4.4288626,4.4626064,4.4027944,4.368137,4.4081535,4.399414,4.4017515,4.526011,4.4975586,4.432746,4.3868303,4.4126396,4.329425,4.3263083,4.2804136,4.1766243,4.0791144,3.919848
+0.5915923,0.4822266,0.14223225,-0.029185105,-0.037301455,-0.059571933,-0.11765866,-0.20304139,-0.23934351,-0.2972879,-0.26873565,-0.3233418,-0.13628912,0.69714904,0.5876984,0.40184653,0.21972533,0.11001615,0.010097977,-0.08889495,-0.19692682,-0.2692797,-0.13656178,0.24785267,0.13051659,0.07858972,0.073198974,0.048157234,0.022253871,0.06427686,0.022684176,-0.031947207,-0.09502882,-0.16732192,-0.2726564,-0.17088178,0.535136,0.44971442,0.10385148,0.042523194,0.054565143,-0.058607634,-0.16956957,-0.28985423,0.066956505,0.4034059,0.17923585,0.0057718456,0.08980027,0.62823534,0.9089676,0.6546178,0.36922503,0.23593877,0.18618403,0.07559638,-0.03802667,-0.13261165,-0.19285892,-0.27171528,-0.34642327,-0.3871569,-0.4477572,-0.49862438,-0.5540628,-0.6218159,-0.68946785,-0.674911,-0.69498694,-0.7602444,-0.84081495,-0.89533603,-0.9650502,-1.0015392,-1.0430794,-1.1012836,-1.0786273,-1.0834801,-1.0915477,-1.1158195,-1.1706982,-1.2004995,-1.2702831,-1.3079051,-1.3411958,-1.3600143,-1.3908076,-1.436393,-1.5032042,-1.5531411,-1.6221944,-1.3735887,-1.3262937,-1.3694342,-1.4262954,-1.4911652,-1.5393412,-1.5768735,-1.6115404,-1.6392161,-1.6799165,-1.6336833,-1.610074,-1.6138945,-1.6708648,-1.7039528,-1.7074881,-1.7565911,-1.7803493,-1.8026155,-1.827448,-1.8638115,-1.8796341,-1.8634027,-1.9103309,-1.9371479,-1.9803573,-1.9759138,-1.9910244,-2.0100946,-2.0403118,-2.026322,-2.0568128,-2.0869153,-2.0621643,-2.0913894,-2.1849275,-2.1497202,-2.1581707,-2.1649828,-2.1631083,-2.160077,-2.1827517,-2.208053,-2.2388043,-2.2665462,-2.291614,-2.3012786,-2.3519344,-2.3505619,-2.3629098,-2.383101,-2.3953667,-2.3785048,-2.384787,-2.384954,-2.3983023,-2.4206398,-2.417366,-2.432037,-2.4497313,-2.4602008,-2.4368033,-2.51692,-2.4695756,-2.4767678,-2.4850435,-2.1318533,-2.131578,-2.1059446,-2.1144562,-2.173264,-2.2175887,-2.2121391,-2.1997187,-1.9950652,-0.52139074,0.032132443,-0.3775608,-0.5674486,-0.64683443,-0.70189553,-0.80413854,-0.80966353,0.5354327,1.315744,0.77112585,0.49594975,0.25349462,0.036499206,-0.11875568,-0.25630498,-0.33037227,-0.14366539,0.14011715,0.41675788,0.3726628,0.25728852,0.10578613,0.005783621,-0.11499557,-0.2606819,-0.35145956,-0.4300533,-0.45663506,-0.4908967,-0.379777,0.15010582,0.43104166,1.2069914,0.96165335,0.7551684,0.65844023,0.52750653,0.34859365,0.17903858,0.110112146,0.54133874,0.40461308,0.23192854,0.64622605,0.8935107,0.61200047,1.4404987,1.0387313,0.7747043,0.70702434,0.617067,0.5360923,0.43675587,0.32951188,0.23081596,0.14751129,0.0672376,0.010369297,-0.029225621,-0.08205749,-0.10013232,-0.14630228,-0.17054205,-0.23935905,-0.020709988,0.10247569,0.06940001,0.048417587,-0.025127064,0.19571073,0.33255202,0.4884898,0.6441897,0.8717847,1.3778384,1.4555123,1.5619092,1.7430408,1.9150425,1.8972951,2.1164725,2.408235,2.5145452,2.4000697,2.5673633,3.00258,3.594052,3.5193949,3.747211,3.7785544,3.8981287,4.172268,4.291279,4.144221,4.1049848,4.185603,4.26077,4.217168,4.2779884,4.280657,4.2944555,4.2498384,4.189727,4.1877584,4.1653943,4.2048626,4.1734304,4.1211834,4.1319475,4.163756,4.185156,4.1735883,4.201213,4.1471777,4.1986976,4.212651,4.546111,4.480839,4.6801767,4.531507,4.486781,4.424819,4.3904057,4.3512707,4.3508425,4.36034,4.392989,4.396509,4.406598,4.3573465,4.3459706,4.3157396,4.2255316,4.237967,4.185254,4.2018337,4.2486463,4.245675,4.2287884,4.299187,4.299161,4.3680773,4.4071026,4.541888,4.478583,4.5268455,4.482752,4.5994754,4.414198,4.186388,4.3779955,4.3506193,4.344285,4.347099,4.3492117,4.306002,4.3654604,4.3121557,4.3400564,4.3272886,4.1978664,4.344735,4.2268867,4.142333,4.204896,4.2124143,4.160825,4.1258025,4.1919775,4.2981997,4.3349066,4.346637,4.228359,4.2157445,4.256559,4.3790255,4.4309525,4.248909,4.0484924,3.7014832,2.985009,2.094123,1.5552202,1.0995318,1.0130634,0.83964443,0.86235976,0.77444744,0.8972112,0.6725867,0.6763585,0.9231394,0.8425598,1.0087464,0.87838775,0.98599446,1.4066435,1.2360866
+0.4509474,0.30154234,0.17210852,0.104751214,0.0665341,0.09815267,0.05326583,-0.07299757,-0.19748932,-0.09775005,0.05815841,0.08913168,0.32946014,0.77448046,0.7690205,0.683193,0.5004113,0.33266664,0.19792175,0.045435015,-0.03456253,-0.23737352,0.8805323,1.0288237,1.388549,1.2595427,1.1595485,1.2254807,1.0950708,0.97663116,0.88133514,0.7862314,0.577697,0.3146151,0.10874988,0.016356867,0.32292557,0.3459385,0.09299727,0.028118555,0.022474546,-0.05145846,-0.093690366,-0.22843732,0.32759297,0.645621,0.47346026,0.24061911,0.11570643,0.67510164,0.73603976,0.5284361,0.4109486,0.26375642,0.6218074,0.6088959,0.398961,0.3487092,0.16851941,0.09967187,0.00890838,-0.038730916,-0.11222497,-0.13961203,-0.1926824,-0.2621732,-0.3059981,-0.22447388,-0.10501096,-0.26183277,-0.37005764,-0.41391927,-0.32213497,-0.20246941,-0.33825296,-0.43098408,-0.43836054,-0.50368357,-0.57061625,-0.56642723,-0.6467228,-0.6464627,-0.73711354,-0.7601066,-0.7994033,-0.8339697,-0.87639093,-0.892076,-0.93933964,-1.0134401,-0.8765607,-0.70343745,-0.7992233,-0.8149524,-0.8825406,-0.9609134,-0.996508,-1.0304517,-1.0758457,-1.0968888,-1.1370487,-1.0905409,-1.1391045,-1.1142771,-1.1788378,-1.2212099,-1.245229,-1.3132359,-1.3697331,-1.4040823,-1.4466028,-1.4969981,-1.5124869,-1.5592775,-1.6003642,-1.6337873,-1.660857,-1.6806744,-1.7102289,-1.7426249,-1.4500825,-1.0636322,-1.1644208,-1.2474929,-1.3121991,-1.397547,-1.4399965,-1.4729369,-1.5186677,-1.5460382,-1.5705721,-1.6073804,-1.6274116,-1.6464659,-1.6755981,-1.7144101,-1.7228255,-1.7574971,-1.7660241,-1.787559,-1.8077621,-1.8460029,-1.8723731,-1.8806655,-1.9131222,-1.9463329,-1.9771429,-1.9763999,-1.9833909,-1.9928952,-2.0182753,-2.0322201,-2.011158,-1.9964544,-2.004968,-2.0417864,-1.594616,-0.9304599,-1.0026175,-1.0424944,-1.130105,-1.2265307,-1.2959168,-1.3097149,-1.342505,-1.405474,-1.3977764,-1.2841127,-1.3561287,-1.3719412,-1.3523614,-1.4202287,-1.4440411,-1.4611163,0.4171463,0.95239866,0.5938951,0.24850844,0.17124338,0.08830911,-0.1512926,-0.24862288,-0.12288959,-0.11424206,-0.24775524,-0.3162824,-0.43889147,-0.29095998,-0.18669018,-0.3002673,-0.38619784,-0.46877974,-0.518182,-0.54508746,-0.65137136,-0.64067066,-0.48483622,-0.583084,-0.38958427,0.98380923,0.77781606,0.6612289,0.57167983,0.4505926,0.2289332,0.037639525,-0.044675376,0.25633818,0.22318222,-0.011057649,0.4970628,0.70202357,0.55087674,0.8812867,0.7416939,0.4781518,0.37582397,0.31320885,0.21512087,0.110173374,0.020700395,-0.058211055,-0.116753414,-0.17903243,-0.226967,-0.24147965,-0.26241395,-0.27673256,-0.3169855,-0.2926137,-0.30211094,-0.042768624,0.1394,0.17415802,0.3846888,0.5386715,0.68941945,0.7711694,0.8899199,0.92910296,1.0943034,1.5496068,1.5994741,1.6900651,1.7562226,1.771659,1.8192325,1.8910594,1.9965453,2.0059774,1.9605578,2.0017269,2.2913904,3.205691,3.2399402,3.2731283,3.4090276,3.5717394,3.9883318,4.201665,3.97366,3.889322,3.8423314,3.87433,3.9607573,3.8746848,3.9025288,4.0109835,3.8141475,3.681975,3.7200136,3.6430254,3.695674,3.670926,3.632372,3.5752776,3.6624098,3.7501717,3.8784137,3.8915062,3.758356,3.7708778,3.9538076,4.2772584,4.21474,4.347339,4.2127123,4.1664176,4.0702825,4.0016813,3.9268448,3.8874042,3.9335768,4.1377263,4.0198936,4.0845485,4.040747,4.1481543,4.1500897,4.0762606,4.000245,3.9021595,3.8528368,3.8888433,3.9347842,3.930836,4.015737,4.0671024,4.1740713,4.1341114,4.201741,4.192465,4.4053965,4.2459126,4.418041,4.4980407,4.3561716,4.2035336,4.1800504,4.199258,4.190611,4.2042136,4.1612535,4.2695017,4.28397,4.3657036,4.2975607,4.310295,4.2223005,4.099321,4.0209146,3.9658308,4.039624,3.960172,3.936751,3.9515924,4.0272503,4.095456,4.102359,4.0114384,3.9199672,4.075808,4.1446695,4.223243,4.2616196,4.2231126,4.157205,3.9102035,3.13401,2.5992713,2.2582812,1.6702367,1.2613096,0.90819585,0.561276,0.8103951,0.8774906,0.87263346,1.0763861,1.0528326,1.1553004,1.1340866,1.1818106,1.4790556,1.3203504
+0.3719636,0.25006425,0.00097095594,-0.17731352,-0.35919574,-0.423622,-0.4579709,-0.5163857,-0.5511538,-0.46554184,-0.20348771,-0.22648098,-0.27225864,-0.18875165,-0.08735426,-0.1159081,-0.21043506,-0.3067337,-0.38979843,-0.4894694,-0.60225916,-0.794572,-0.27429587,-0.10348478,0.9329492,0.85387766,0.5779063,1.0087067,0.9079827,0.8213736,0.5262063,0.34391472,0.18407111,0.011160623,-0.15163426,-0.23375194,0.34007594,0.6900338,0.565664,0.17562802,0.086848214,-0.03488506,-0.20361573,-0.33342874,-0.45423192,-0.40427756,-0.1737428,-0.2456704,-0.38043815,-0.06423879,-0.031021025,-0.22517835,-0.30782616,-0.21536732,0.08848217,0.06709306,-0.07169388,-0.19706447,-0.2785438,-0.33596203,-0.46763766,-0.55251306,-0.67483467,-0.7706255,-0.87262225,-0.96870196,-0.9425046,-0.85329986,-0.9246205,-0.98888934,-0.9999957,-0.9692528,0.5772099,0.4165125,0.066599,-0.17997713,-0.32622862,-0.44728717,-0.5745836,-0.7075204,-0.81127566,-0.9107542,-1.068187,-1.116199,-1.2011085,-1.2830036,-1.3770267,-1.4115999,-1.436933,-1.4175087,-1.247277,-1.265629,-1.1123376,-1.0106539,-1.1021779,-1.1976379,-1.2676842,-1.3375802,-1.391049,-1.444307,-1.4933221,-1.5474579,-1.597546,-1.5960131,-1.6620743,-1.6857336,-1.6871023,-1.7285563,-1.7635127,-1.7918571,-1.815836,-1.85272,-1.8534224,-1.8904403,-1.9284703,-1.9446309,-1.9259689,-1.9423761,-1.9611732,-1.9973639,-1.9865203,-1.6413257,-1.6107965,-1.685082,-1.7099907,-1.7895657,-1.7288823,-1.2026968,-1.0461906,-1.1568544,-1.2251198,-1.3290331,-1.3859034,-1.415601,-1.4676352,-1.5275242,-1.5809481,-1.5162082,-1.5699958,-1.621314,-1.6576021,-1.707565,-1.7337189,-1.7351213,-1.7610968,-1.807852,-1.9061074,-1.869951,-1.8894086,-1.9015169,-1.955414,-1.9458728,-1.9789274,-2.0085747,-2.0424361,-2.0782042,-2.1012473,-2.1181674,-2.1518557,-2.1436696,-2.1319613,-2.1611342,-2.2220364,-2.185893,-2.249937,-1.7735217,-1.4648902,-1.4893748,-1.5289375,-1.5273554,-1.544067,-1.5883322,-1.6305037,-1.6286697,0.29158476,0.93514705,0.35324383,0.110682696,-0.027503137,-0.13248739,-0.24961181,-0.33121967,-0.23623535,-0.13278453,-0.30074248,-0.36892143,-0.42108846,-0.4614725,-0.50098157,-0.51724976,-0.5573302,-0.58110404,-0.62912315,-0.6891328,-0.75130254,-0.7715395,-0.8464174,-0.85944796,-0.88825256,0.27099428,0.22834413,0.050334115,0.039968047,-0.013138335,-0.11521235,-0.2006521,-0.287782,-0.3433309,-0.40884256,-0.46294418,-0.45913428,-0.335159,-0.3361563,-0.13261034,-0.07844995,-0.16662958,-0.1835474,-0.19355659,-0.23364119,-0.26190624,-0.3159528,-0.34587362,-0.37179565,-0.40416405,-0.40847492,-0.41115505,-0.42177707,-0.4269759,-0.44038814,-0.4501927,-0.44264913,-0.18849331,-0.013303738,-0.088218376,-0.03448252,0.0044097938,0.11841245,0.27187598,0.403159,0.5095934,0.5278826,0.49715155,0.621748,0.64169234,0.727733,0.7113434,0.68216616,0.7500272,0.8114407,0.6340686,0.69678986,0.67007804,0.86459386,0.9534011,1.5440717,1.3730805,1.3570497,1.5181118,1.5583315,1.7221763,1.5086756,1.5386083,1.5535558,1.6137342,1.6821876,1.611525,1.6262169,2.250008,2.291237,2.2769356,2.2939634,2.29955,2.3303828,2.3323476,2.3357778,2.2988777,2.3748126,2.4294662,2.4927168,2.7494764,2.7901013,2.6603696,2.9882421,3.499858,3.3980353,3.6077209,3.653268,3.6166093,3.5269365,3.4762182,3.4261832,3.3739724,3.34882,3.7091212,3.4799047,3.5384316,3.5444927,3.8555064,3.4556975,3.3685665,3.3050582,3.3799663,3.3566432,3.3874435,3.3471415,3.3097212,3.3788524,3.4938364,3.5880702,3.5445561,3.5315516,3.4179711,3.3451657,3.1190221,3.0861807,2.4222126,2.2084758,2.1733825,2.4046383,2.614047,2.7021766,2.6621451,2.518692,2.541131,2.3270102,2.10721,1.9029261,1.781768,1.7248373,1.9360869,2.2888799,2.3702488,2.6297889,2.5005808,2.6307049,2.7449474,2.743494,2.671265,2.412177,2.1019833,2.1556048,2.1934342,1.9240005,1.5048622,1.100457,0.9275079,0.8063985,0.66289085,0.48459315,0.3491112,0.30354226,0.2501536,0.182928,0.13338344,0.05504227,0.15058558,0.038881484,0.12688573,0.30502743,0.35329103,0.43794537,0.32691732,0.44715667,0.6735593,0.6076956
+0.94853634,0.65231717,0.24881737,0.06693332,0.00136723,-0.08193773,-0.15047511,-0.20414443,-0.12720434,0.14807315,0.1426252,0.054035757,-0.06919967,-0.088795796,-0.04217906,0.039456476,-0.021454457,-0.08799064,-0.13813518,-0.20386544,-0.30685884,-0.39256024,-0.21496688,-0.059149113,0.47680867,0.54878783,0.98135114,1.180603,0.9968549,0.89315224,0.62532514,0.48663902,0.35387057,0.18913682,0.011535421,-0.1227504,0.075651914,0.9959737,0.76113737,0.35124397,0.24738894,0.113091126,-0.035569064,-0.13712068,-0.18732606,-0.04002187,0.42233506,0.27879208,0.08602272,-0.16272473,-0.26195645,-0.33484846,-0.33906084,-0.45827094,-0.41466272,-0.29360715,-0.27336392,-0.3301644,-0.44942015,-0.38914546,-0.39982194,-0.44875756,-0.53820395,-0.59379786,-0.66235876,-0.7713014,-0.8327825,-0.8325206,-0.96097517,-0.94342506,-0.9391449,-0.7528647,0.26492316,0.097472385,-0.093199715,-0.26029485,-0.38021833,-0.5249297,-0.6295315,-0.76764774,-0.8363727,-0.90945137,-1.0211303,-1.0464416,-1.1000438,-1.1572663,-1.2386231,-1.2746994,-1.2975979,-1.357288,-1.0979836,-0.75781626,-0.5745249,-0.5821276,-0.69254667,-0.78467727,-0.8723876,-0.9622073,-1.0150766,-1.0850381,-1.1172721,-1.1847764,-1.2310733,-1.2536968,-1.2874408,-1.2943971,-1.3251636,-1.388624,-1.4377569,-1.4808843,-1.5045738,-1.5440862,-1.5448574,-1.5905427,-1.6273069,-1.6150905,-1.640507,-1.721313,-1.7761991,-1.9122714,-1.8095409,-1.7815694,-1.8451456,-1.8707104,-1.3695315,-0.89355075,-0.6373275,-0.5983684,-0.61675656,-0.7412827,-0.8474721,-0.94692445,-1.0348786,-1.1209569,-1.1819967,-1.2704067,-1.2869837,-1.4103847,-1.4574063,-1.5194415,-1.5193958,-1.5865922,-1.6562243,-1.7545185,-1.5916772,-1.5640037,-1.6598847,-1.6447282,-1.7362611,-1.6370717,-1.7204934,-1.764945,-1.8043387,-1.8418639,-1.8562641,-1.8773484,-1.915262,-1.9239562,-1.9407481,-1.9185307,-1.8971431,-1.9401308,-2.0471272,-2.0524614,-1.8762945,-1.9711897,-1.7585968,-1.7013688,-1.7396921,-1.7401392,-1.7575942,-1.7946097,-1.8511527,-1.9520438,-1.1858029,-0.3566471,-0.5390381,-0.7108766,-0.78374326,-0.83673495,-0.93126184,-1.0541102,-0.9799189,-0.9670856,-1.0461838,-0.98605806,-1.0336086,-1.0605247,-1.0845664,-1.1018124,-1.1164235,-1.0690458,-1.1119835,-1.1432761,-1.242908,-1.2438127,-1.2985033,-1.3703039,-1.4607286,-1.4788086,-1.4896336,-1.4641514,-1.4721478,-1.4010994,-1.3635874,-1.4090552,-1.2905036,-0.81472623,-0.886567,-0.9457257,-0.62712634,-0.16734411,-0.39375353,-0.23803607,-0.17101826,-0.3789779,-0.42887324,-0.450761,-0.46625614,-0.43623537,-0.4918303,-0.55792046,-0.5669763,-0.5901104,-0.5947728,-0.54267967,-0.5647149,-0.57094896,-0.56566656,-0.54324263,-0.5131182,-0.39223528,-0.2987578,-0.40334636,-0.336843,-0.24285708,-0.08776173,-0.012876842,0.10627,0.17205058,0.16736881,0.23695295,0.38253286,0.44528574,0.52213025,0.5267034,0.565935,0.6018041,0.6484132,0.5758595,0.60976183,0.646025,0.7491842,0.7631103,0.8526265,0.8751274,0.8387916,0.93440354,0.8250167,1.454697,1.2050283,1.4438671,1.5701808,1.6510462,1.62442,1.6866231,1.6509492,1.9875312,2.1215754,2.1946292,2.1829638,2.2085972,2.2464442,2.2318406,2.267754,2.2297451,2.1239698,2.1332643,2.1906962,2.5663815,2.5865653,2.424622,2.6987343,2.759719,2.798848,2.842702,2.9175713,2.8907776,2.7434268,2.7247634,2.6817892,2.637061,2.5696502,3.0005636,2.930717,3.0522244,3.3263593,3.4677672,3.1685905,3.0915785,2.9846992,3.0264046,3.0799546,3.1181443,3.1595259,3.124232,3.116906,3.2539864,3.1974154,3.2594998,3.2529216,3.2711942,3.2129803,3.0912483,3.143371,2.6195276,2.565816,2.0397198,2.0668156,2.2135007,2.2293088,2.1922104,2.307616,2.2882214,2.3898575,2.1953,2.173,2.495679,2.4507132,2.7153363,2.913725,3.0510361,3.181736,3.289386,3.3236952,3.3334346,3.2386603,3.0564182,2.7576365,2.9219747,2.9148946,2.8833368,2.7423992,2.543858,2.2768862,1.9350175,1.6002766,1.1499333,0.68125653,0.46852237,0.36890888,0.33558846,0.28228623,0.23013242,0.15148415,0.12981555,0.47093028,0.44850454,0.72003496,0.70799434,0.94928765,0.78423655,0.87038636,0.9740888,0.88563836
+-0.8177794,-0.5201428,-0.53455544,-0.6605422,-0.7606366,-0.9101695,-0.99317515,-0.9517522,-0.02935658,0.4569786,0.45502627,0.23749031,0.015843723,-0.19417904,-0.42433304,-0.60986525,-0.6756019,-0.75571054,-0.82554334,-0.888188,-1.0501343,-1.263994,-1.3610924,-1.4476231,-0.9163254,-0.1324261,-0.41137055,-0.33430052,-0.11927587,0.6106564,0.45264587,0.20029224,0.0072160847,-0.16125505,-0.47434545,-0.7466612,-0.45316786,-0.2685052,-0.40723315,-0.50602794,-0.69138855,-0.83436,-0.9910902,-1.1619291,-1.2748748,-1.3638258,-1.4895964,-1.5107083,-1.5260887,-1.8095107,-1.9541203,-2.0221784,-2.0688314,-2.1119814,-2.1448526,-2.1653678,-2.1747127,-2.227769,-2.267806,-2.2927234,-2.3231761,-2.372902,-2.3818662,-2.3865576,-2.420029,-2.4348946,-2.4420831,-2.4433088,-2.4695137,-2.4775305,-2.504522,-1.3948479,-0.8785985,-1.0634875,-1.2025449,-1.3671055,-1.5251079,-1.6663646,-1.7776054,-1.9330492,-1.9803326,-2.0878632,-2.1029336,-2.161275,-2.216061,-2.2625976,-2.318231,-2.3544304,-2.3693564,-2.3608654,-2.310742,-2.1549156,-1.0468423,-0.80351174,-1.0514822,-1.2669094,-1.4599524,-1.5934576,-1.7143285,-1.8303213,-1.9064428,-2.0161507,-2.0303106,-2.0761697,-2.1251826,-2.1782842,-2.2151604,-2.255877,-2.289138,-2.3427978,-2.3847466,-2.4196882,-2.434154,-2.4622664,-2.4687445,-2.4784672,-2.5065103,-2.5456586,-2.5761805,-2.571085,-2.4524662,-2.0753772,-1.1130986,-0.915662,-1.1083447,-1.126052,-0.7915627,-0.9790852,-1.2022746,-1.4198555,-1.5967292,-1.707893,-1.8159077,-1.9016154,-1.9991002,-2.0466645,-2.065166,-2.1426935,-2.1925797,-2.2407327,-2.2634325,-2.2946277,-2.3209128,-1.9520259,-0.9842924,-0.8003318,-1.0650494,-1.2489738,-1.2872117,-1.3067237,-1.4994884,-1.5987463,-1.6543812,-1.7533967,-1.3705812,-1.1229621,-1.2770723,-1.3951888,-1.4977818,-1.6225454,-1.6711395,-1.7618663,-1.9001355,-1.8903108,-1.9479253,-2.0171728,-2.0543373,-2.1274736,-2.1883206,-2.2086828,-2.21096,-2.2250638,-2.2666245,-2.2489934,-2.3338091,-2.2865002,-2.3378215,-2.4009452,-2.3971982,-2.3942766,-2.3949637,-2.3926525,-2.4043024,-2.4385014,-2.4906063,-2.3777096,-2.4089074,-2.4493756,-2.4502172,-2.4973931,-2.517267,-2.4676979,-2.4844582,-2.523767,-2.503057,-2.5102913,-2.5554929,-2.555845,-2.5807753,-2.6237822,-2.5939264,-2.6198106,-2.6112475,-2.6103024,-2.608431,-2.5924757,-1.6053255,-0.7056643,-0.83745176,-1.0195252,-1.2015741,-1.1255776,-1.3245422,-1.4150592,-1.4617199,-1.479112,-1.4381734,-1.493405,-1.5053489,-1.4884746,-1.5123806,-1.549509,-1.5504339,-1.5700264,-1.5677634,-1.6020875,-1.595958,-1.6060299,-1.6223643,-1.6709083,-1.573527,-1.5354202,-1.5114,-1.6072593,-1.5444565,-1.4249053,-1.3674833,-1.3868594,-1.3459239,-1.3194174,-1.2830566,-1.1392052,-1.1182703,-1.04774,-1.0359553,-1.1301022,-1.0789136,-0.99949074,-0.97398794,-0.9715984,-0.9844779,-1.028993,-0.95717096,-0.9684013,-0.9296382,-0.93744427,-0.9739717,-0.92098147,-0.9050156,-0.38480633,-0.24350764,-0.33328527,-0.25591722,-0.1696539,-0.28451404,-0.30711138,-0.09684375,0.70339096,0.6821786,0.8207842,0.89848924,0.8870702,0.8407774,0.8307556,0.8573956,0.8012166,0.7891725,0.7410038,0.6539127,0.48279363,0.33483583,0.4914682,0.56109786,0.22961475,0.1636583,0.09704603,0.010792125,0.5160639,0.45023224,0.41673142,0.46245512,0.5733784,0.69073814,0.8078998,1.0316828,1.5467324,1.4003031,1.8550646,1.7579442,1.968462,2.0741901,2.1131563,2.1387496,2.150398,2.184359,2.215806,2.2051363,2.1998072,2.097311,1.9894419,1.880652,1.6144652,1.0910914,0.8447304,0.7394549,0.54532796,0.6986775,0.61181194,0.5069419,0.5923178,0.684482,0.75121623,0.75063,0.96382344,1.2089819,0.9397296,0.8944448,0.6976548,0.5211877,0.44148844,0.60357034,0.7552748,0.73747563,0.71810615,0.529317,0.66540015,0.6490129,0.67945266,0.4067366,0.20659511,0.27923417,0.28724268,0.19055009,0.10386853,-0.006843623,-0.114743754,-0.19881964,-0.22686633,-0.299399,-0.40612298,-0.44311416,-0.53103334,-0.6474564,-0.76500154,-0.94155765,-1.0701351,-1.1507189,-1.1491973,-0.9273662,-0.6958773,-0.16319752,0.10729839,-0.06109233,0.054756198,0.46691132
+-2.1084576,-2.1200027,-2.2298293,-2.350059,-2.4393415,-2.5058293,-2.5666287,-2.2600448,-0.97016513,-0.18493994,-0.43798465,-0.7518747,-0.97048366,-1.1584835,-1.3030281,-1.4266518,-1.5329994,-1.6435647,-1.7481449,-1.8725232,-2.006556,-2.1283505,-2.2010207,-2.279265,-2.3048477,-2.3868876,-2.41423,-1.3609276,-0.4275659,-0.5127467,-0.69377375,-1.0230559,-1.1961106,-1.3812952,-1.5709689,-1.4732513,-1.2514033,-1.3857293,-1.5596597,-1.6969986,-1.822669,-1.9497465,-2.1182842,-2.2135692,-2.2852347,-2.338997,-2.3794582,-2.389656,-2.430059,-2.4986608,-2.5460372,-2.5866675,-2.609282,-2.6121325,-2.630846,-2.6342092,-2.6414485,-2.6598265,-2.6720505,-2.6922166,-2.7115493,-2.7250075,-2.7555735,-2.7654324,-2.787476,-2.791297,-2.7922368,-2.7935076,-2.7963045,-2.7864516,-2.7881062,-2.7871237,-2.8209732,-2.829897,-2.830369,-2.8268037,-2.823852,-2.834201,-2.8430188,-2.868255,-2.8506014,-2.855064,-2.8502035,-2.8591757,-2.8664072,-2.8711774,-2.8748407,-2.8786378,-2.8772097,-2.8664427,-2.8847246,-2.560849,-2.2992043,-2.4021297,-2.4936721,-2.5596054,-2.5966144,-2.6195383,-2.645967,-2.6710637,-2.6856186,-2.7099924,-2.72821,-2.7435274,-2.7515597,-2.7641227,-2.7709386,-2.7856212,-2.784711,-2.7963557,-2.8165617,-2.833188,-2.8395329,-2.8483448,-2.8494287,-2.8530197,-2.8624046,-2.8868203,-2.8712387,-2.9039724,-2.8951955,-2.8846216,-2.6031518,-2.3889453,-2.432622,-1.9164418,-1.4204242,-1.56793,-1.7302592,-1.9328511,-2.067573,-2.1394877,-2.2385798,-2.3047523,-2.3613477,-2.418867,-2.442916,-2.4988365,-2.5266855,-2.5430627,-2.5626268,-2.579925,-2.5933015,-2.6097095,-1.918606,-1.498066,-1.6238463,-1.7741492,-1.8527143,-1.9420017,-2.0425367,-2.141092,-2.1954021,-2.223033,-2.271451,-2.3611705,-2.425232,-2.4611845,-2.483505,-2.4979277,-2.5040264,-2.536521,-2.5738983,-2.5705237,-2.5923753,-2.6220186,-2.631352,-2.651646,-2.6459172,-2.648479,-2.6636722,-2.6758137,-2.648549,-2.4458294,-2.1619127,-2.3007853,-2.3130026,-2.3351803,-2.3639379,-2.395412,-2.4036393,-2.4278116,-2.4553428,-2.479293,-2.5110493,-2.5431802,-2.5558555,-2.5600805,-2.5580075,-2.5580285,-2.5519617,-2.5638816,-2.5657005,-2.5760136,-2.6009576,-2.6039455,-2.6214066,-2.6189237,-2.638453,-2.6644752,-2.6907182,-2.6800344,-2.6726806,-2.6728313,-2.6786323,-2.6743095,-2.3201535,-1.5854386,-1.5978274,-1.6148756,-1.6721525,-1.7341108,-1.8165746,-1.8779348,-1.9311161,-1.9277225,-1.9317979,-1.9387221,-1.9549962,-2.0049417,-2.0197563,-2.0049763,-2.0245903,-2.0254679,-2.0504909,-2.0632334,-2.0557237,-2.0745974,-2.09152,-2.1397665,-2.1372113,-2.1245284,-2.1127467,-2.083472,-1.6471138,-1.1206682,-1.2456584,-1.294107,-1.3370178,-1.3646665,-1.3876004,-1.4296777,-1.4711925,-1.4710577,-1.4711871,-1.4694798,-1.4735087,-1.4953871,-1.5044351,-1.5086586,-1.5126283,-1.508493,-1.5376681,-1.5478853,-1.565387,-1.5800774,-1.5948949,-1.6300503,-1.6429422,-1.6719458,-1.7279558,-1.705204,-1.6554981,-1.6491778,-1.6578102,-0.8641829,-0.22485791,0.062687725,-0.31702325,-0.5889101,-0.6382874,-0.68236077,-0.72164774,-0.74749833,-0.6363811,-0.46823245,-0.7320764,-0.8263121,-0.855306,-0.8931514,-0.9757921,-0.95579016,-0.96853495,-1.0421968,-1.1037294,-1.1524296,-1.197212,-1.0863137,-0.9288314,-0.94434273,-1.0417587,-1.0568655,-1.0639752,-0.88230306,-0.41069373,-0.45796162,-0.3882668,0.0027520917,-0.40919197,-0.61598223,-0.6188774,-0.63039994,-0.627361,-0.64028555,-0.67404675,-0.7136925,-0.75078475,-0.8012847,-0.8599172,-0.921364,-0.99884886,-1.0003791,-1.0705608,-1.1491811,-1.1826131,-1.1943072,-1.2004395,-1.1460433,-1.1813865,-1.2279725,-1.2637341,-1.2839898,-1.2997208,-1.0892525,-0.11846329,-0.32398555,-0.61973655,-0.81152904,-0.88812745,-0.92650896,-0.9491589,-1.0297122,-1.08387,-0.8354194,-0.8535593,-0.94712615,-1.034753,-1.1169294,-1.2610933,-1.3443391,-1.3969326,-1.425607,-1.4662993,-1.5044334,-1.546395,-1.581461,-1.6157027,-1.660017,-1.7378725,-1.8133111,-1.8695087,-1.9265692,-2.0073438,-2.06501,-2.110672,-2.1422966,-2.2063975,-2.2478013,-2.247881,-2.2740302,-2.2908049,-2.3116817,-2.329259,-2.3498769,-2.2134326
+-2.4521413,-2.3621047,-2.3852196,-2.4368367,-2.4757447,-2.5138907,-2.6001248,-1.9133512,-0.7330071,-0.06368543,-0.044012588,-0.37018204,-0.70341724,-0.93968225,-1.141469,-1.2781059,-1.4067976,-1.5252769,-1.63519,-1.7389531,-1.826009,-1.9298401,-1.9967691,-2.049231,-2.123907,-2.157499,-2.2112887,-1.9384782,-1.7364299,-1.7995305,-1.8234513,-1.900249,-1.9376719,-2.015997,-2.0384333,-2.1363273,-2.0192082,-1.9781721,-2.0222957,-2.09075,-2.1476364,-2.2046986,-2.2589319,-2.2979863,-2.3654752,-2.4149632,-2.466127,-2.492356,-2.5063167,-2.5174308,-2.5734057,-2.583026,-2.6079297,-2.622457,-2.6427114,-2.6623178,-2.6879995,-2.7016997,-2.7062726,-2.7249768,-2.742398,-2.7507591,-2.7620516,-2.8001137,-2.8294754,-2.8315234,-2.8435717,-2.8524911,-2.861547,-2.8558426,-2.855888,-2.8629553,-2.889023,-2.9604373,-2.9510193,-2.9367652,-2.9499726,-2.9564128,-2.968059,-3.0035815,-2.9664063,-2.9702232,-2.9397845,-2.9538026,-2.9782352,-2.9816427,-2.9892378,-2.9685376,-2.9922934,-2.987222,-2.9463224,-2.6197443,-2.4190042,-2.5036912,-2.567555,-2.6270733,-2.6450238,-2.6632164,-2.6839232,-2.7234397,-2.756472,-2.776291,-2.7890782,-2.7921844,-2.7922502,-2.8237646,-2.825885,-2.8285027,-2.8260574,-2.8460302,-2.8749638,-2.8773794,-2.9075081,-2.9096875,-2.8802767,-2.9051232,-2.928362,-2.9273973,-2.934695,-2.9307413,-2.6495047,-2.5371642,-2.6172762,-2.436408,-2.388978,-2.2611017,-2.1737323,-2.2535658,-2.371796,-2.4406059,-2.4676723,-2.5225778,-2.5897481,-2.5780807,-2.6199794,-2.6418948,-2.6478057,-2.6990583,-2.7279396,-2.7279968,-2.5260034,-2.3960714,-2.4528852,-2.5201235,-2.318571,-2.1868737,-2.260562,-2.3401093,-1.84082,-1.3746135,-1.5654056,-1.6988318,-1.7773992,-1.8613622,-1.9423151,-2.0486119,-2.1337938,-2.1945827,-2.2453556,-2.280797,-2.324671,-2.3756156,-2.4194987,-2.4418952,-2.4672158,-2.498258,-2.5632257,-2.572081,-2.5847635,-2.6013532,-2.621137,-2.609169,-2.4514847,-2.1817775,-2.155979,-2.2571962,-2.3006763,-2.3249688,-2.3603847,-2.352879,-2.3029895,-2.1904664,-2.2632933,-2.3182611,-2.3778486,-2.4259884,-2.4172812,-2.4529614,-2.45588,-2.4365005,-2.4666784,-2.481557,-2.4803443,-2.5122523,-2.5575542,-2.5637894,-2.563345,-2.5715325,-2.597102,-2.6291046,-2.6714678,-2.6276703,-2.6011932,-2.6297376,-2.6465895,-2.6436372,-2.664364,-2.4209385,-2.039155,-2.0144467,-2.0742173,-2.13973,-2.1826873,-2.248812,-2.2733512,-2.2191854,-2.207313,-2.232606,-2.24527,-2.2601774,-2.2646384,-2.2555456,-2.2628052,-2.261023,-2.2662745,-2.2796884,-2.277399,-2.2645588,-2.284852,-2.316408,-2.2730398,-2.251488,-2.26529,-2.3242764,-2.2176166,-1.9927821,-1.9606419,-1.964256,-1.9662095,-1.9987764,-2.0885053,-2.1091824,-2.0526164,-2.0178647,-2.0099697,-1.9924219,-1.989082,-2.0003774,-2.0039415,-2.0391736,-2.0793486,-2.0413928,-2.0383105,-2.0464616,-2.0677147,-2.0804417,-2.0971565,-2.111777,-2.1036854,-2.0975776,-2.1766725,-2.0963516,-2.0403526,-2.039502,-2.0116813,-0.40773535,-0.0824662,-0.17839247,-0.313151,-0.6036637,-0.6925747,-0.76257753,-0.8058611,-0.8534029,-0.7007004,0.25707036,-0.0620117,-0.31092626,-0.4199052,-0.4993185,-0.5980878,-0.70054054,-0.7296919,-0.77899325,-0.75978875,-0.81825465,-0.88064027,-0.9183965,-0.96411455,-0.96566623,-1.0106276,-1.0554893,-1.0825851,-0.79652655,-0.36635548,-0.34511513,-0.54836524,-0.4726522,-0.6287024,-0.72378993,-0.7836155,-0.83232117,-0.8679553,-0.9147581,-0.9645176,-1.005567,-1.0276059,-1.0593415,-1.115468,-1.1568536,-1.1852981,-1.2270274,-1.2740307,-1.3262746,-1.3644576,-1.3522424,-1.417428,-1.5047631,-1.5222806,-1.5444518,-1.5419191,-1.5602269,-1.5966542,-0.8971036,-0.085848406,-0.35213155,-0.5912967,-0.7271174,-0.8539305,-0.9229051,-0.9765285,-1.0849208,-1.1445141,-0.4696749,-0.71261543,-0.86756724,-0.99396944,-1.0780994,-1.1822414,-1.2451688,-1.317144,-1.3932068,-1.4632568,-1.501792,-1.5511857,-1.602814,-1.6415987,-1.6743648,-1.7117339,-1.7473967,-1.7866673,-1.8184575,-1.8722943,-1.9371171,-1.9879775,-2.0259743,-2.1068316,-2.084752,-2.1103842,-2.1819062,-2.1295757,-2.119659,-2.1263592,-2.1943321,-2.1753645
+-2.4598022,-2.3704283,-2.3977816,-2.4467645,-2.481636,-2.5088432,-2.5817785,-2.35855,-2.171843,-1.9528012,-1.8186283,-1.8902925,-1.9546539,-2.0450315,-2.0944242,-2.1177433,-2.153955,-2.1780767,-2.2013068,-2.2326832,-2.2617364,-2.3181021,-2.368319,-2.401176,-2.4339826,-2.476972,-2.4938488,-2.5332806,-2.583013,-2.6411114,-2.5676627,-2.567621,-2.5818315,-2.5469782,-2.542672,-2.6319313,-2.6668372,-2.6825995,-2.6684768,-2.660784,-2.6660209,-2.660689,-2.6280289,-2.645719,-2.677639,-2.7002647,-2.702556,-2.4016628,-2.202887,-2.2736955,-2.3603287,-2.388018,-2.399817,-2.423685,-2.4618635,-2.5001597,-2.5066087,-2.510409,-2.516435,-2.5435839,-2.5617142,-2.5604064,-2.5783348,-2.6066005,-2.661738,-2.6845636,-2.7030473,-2.6914,-2.6876557,-2.694885,-2.731043,-2.7308652,-2.7649174,-2.7967317,-2.7815628,-2.7727752,-2.8024516,-2.7856946,-2.7819657,-2.8618426,-2.8723328,-2.8383708,-2.8559728,-2.8489723,-2.8419404,-2.8485599,-2.8788939,-2.8958628,-2.8962543,-2.9333117,-2.8822432,-2.903129,-2.903273,-2.908041,-2.9099379,-2.9164925,-2.9222379,-2.9028938,-2.8999796,-2.906963,-2.9208226,-2.937633,-2.9100997,-2.903569,-2.914997,-2.927639,-2.9193742,-2.919158,-2.9210155,-2.9358492,-2.9375963,-2.9331312,-2.9446244,-2.9250677,-2.9473848,-2.935761,-2.9427752,-2.9337394,-2.9380379,-2.966517,-2.4974074,-2.0287447,-2.1325321,-2.2284074,-2.3274708,-2.3633437,-2.40067,-2.444354,-2.4578524,-2.476934,-2.5491247,-2.6198575,-2.592516,-2.5156999,-2.580294,-2.594772,-2.6119466,-2.6112337,-2.626132,-2.6868906,-2.6672225,-2.7697945,-2.7108054,-2.512291,-2.5584197,-2.590115,-2.61815,-2.687687,-2.640562,-2.6618598,-2.658646,-2.6444068,-2.66921,-2.7798767,-2.7337646,-2.7228098,-2.6923473,-2.706475,-2.7326736,-2.82522,-2.7956586,-2.7892203,-2.7467198,-2.7384057,-2.7430363,-2.7755604,-2.7905636,-2.7603014,-2.757422,-2.7774348,-2.78121,-2.817008,-2.6148708,-2.3419633,-2.3825905,-2.402196,-2.4129033,-2.4477153,-2.4902349,-2.5129766,-2.5467434,-2.5787048,-2.5821815,-2.6250792,-2.650135,-2.6067896,-2.6090052,-2.6668782,-2.6621356,-2.6257582,-2.6544936,-2.6713138,-2.7300572,-2.7480607,-2.7544599,-2.6939836,-2.6975393,-2.730245,-2.7471914,-2.7720435,-2.8215184,-2.753983,-2.712079,-2.7257538,-2.7245226,-2.755588,-2.7772512,-2.6947193,-2.5384634,-2.563674,-2.5850773,-2.5914736,-2.652383,-2.6817498,-2.617684,-2.6074996,-2.6162162,-2.6351264,-2.6604319,-2.6488612,-2.6552312,-2.632887,-2.6304545,-2.6310675,-2.6332078,-2.6448023,-2.630913,-2.6287389,-2.6246448,-2.6104302,-2.6383097,-2.60707,-2.593234,-2.5769043,-2.6974225,-2.6201704,-2.6374598,-2.614533,-2.5884721,-2.5924864,-2.591305,-2.5638852,-2.4565694,-2.4303663,-2.4367106,-2.4470696,-2.4257016,-2.4177604,-2.4114718,-2.4783673,-2.5021608,-2.4815593,-2.4736824,-2.468377,-2.4787066,-2.501131,-2.5120506,-2.519359,-2.4963636,-2.472445,-2.5411396,-2.4690497,-2.4478223,-2.4620876,-2.4318914,-1.3126855,-0.3964662,-0.564867,-0.46653873,-0.7241646,-0.8213106,-0.9125769,-0.97997904,-1.0643721,-0.90892184,-0.1471656,-0.2988925,-0.53707755,-0.66269535,-0.75730693,-0.84853125,-0.9155172,-0.9765061,-1.0567769,-1.1475406,-1.2166998,-1.303993,-1.3126895,-1.3704503,-1.4162545,-1.4476273,-1.4532244,-1.4796994,-1.4930232,-1.3638088,-0.96974075,-0.9736637,-0.92574894,-0.9882595,-1.0610187,-1.1197722,-1.1892898,-1.2425528,-1.2709839,-1.3131928,-1.3574699,-1.3957379,-1.4215635,-1.4678682,-1.529558,-1.5497047,-1.5897808,-1.6425196,-1.7063386,-1.7081624,-1.7301463,-1.7868441,-1.7155361,-1.7657888,-1.7989202,-1.812921,-1.837331,-1.887507,-0.92084146,0.066094935,-0.34253466,-0.6146536,-0.79744095,-0.92929804,-1.0555513,-1.1401099,-1.2169305,-1.1659366,-0.25197962,-0.6326607,-0.90593225,-1.0973016,-1.2067428,-1.3158265,-1.4088343,-1.2674593,-1.2830758,-1.4075464,-1.4924908,-1.5691051,-1.6388925,-1.6870484,-1.7379489,-1.7740494,-1.8220093,-1.8644457,-1.8984902,-1.9381633,-1.9925412,-2.059514,-2.1253033,-2.0740452,-2.0352616,-2.0598657,-2.1202402,-2.1515872,-2.1677327,-2.1851501,-2.1992679,-2.227432
+-2.1640425,-2.4554029,-2.6150877,-2.7127514,-2.778531,-2.8478193,-2.8627846,-2.5710177,-2.5333505,-2.0535135,-2.0142968,-2.104273,-2.1168947,-2.184069,-2.2212873,-2.2286453,-2.2881513,-2.3576014,-2.4302564,-2.5072694,-2.5455573,-2.5980568,-2.5950193,-2.6325111,-2.6344304,-2.5774612,-2.5518227,-2.5298886,-2.528386,-2.5267286,-2.551076,-2.537653,-2.562591,-2.6092324,-2.6365116,-2.5291042,-2.5534787,-2.575366,-2.5569768,-2.55365,-2.5692153,-2.6303625,-2.675233,-2.6934876,-2.70818,-2.7247696,-2.708897,-2.614892,-2.6457841,-2.6664145,-2.6937113,-2.7072253,-2.7181473,-2.7147684,-2.7182813,-2.725731,-2.7228649,-2.7018971,-2.7053332,-2.7106528,-2.7066998,-2.6979504,-2.706061,-2.7076929,-2.7324107,-2.7691758,-2.75679,-2.7468307,-2.7397552,-2.7395763,-2.7326467,-2.7464,-2.7508366,-2.7599783,-2.7630548,-2.760386,-2.7721627,-2.770471,-2.7638397,-2.83424,-2.827004,-2.825054,-2.8195786,-2.815066,-2.8104835,-2.8187976,-2.8282423,-2.8424487,-2.834472,-2.7975633,-2.8467014,-2.8396118,-2.8264394,-2.8332863,-2.8396525,-2.839777,-2.8433456,-2.8402746,-2.839056,-2.8463202,-2.8479826,-2.8536723,-2.859161,-2.8604076,-2.8650653,-2.8677545,-2.8733273,-2.8754897,-2.8900912,-2.8920474,-2.8894382,-2.8918557,-2.8730354,-2.8776906,-2.8617172,-2.8803813,-2.8975549,-2.8922114,-2.8940425,-2.8831391,-2.803381,-2.8087497,-2.817454,-2.8100853,-2.7725787,-2.831655,-2.82783,-2.8051472,-2.810299,-2.812136,-2.8177693,-2.8269727,-2.8398712,-2.8539205,-2.828011,-2.8192859,-2.807819,-2.8272657,-2.8320012,-2.8348713,-2.8520088,-2.8263907,-2.8225076,-2.8546958,-2.8543952,-2.8717551,-2.858388,-2.8587227,-2.8866425,-2.8865583,-2.8833108,-2.8704305,-2.8602204,-2.8181262,-2.8595133,-2.8559155,-2.889077,-2.89736,-2.8843513,-2.8510218,-2.8917468,-2.8823686,-2.8840108,-2.8746824,-2.8732781,-2.8849545,-2.9073122,-2.9076376,-2.8966413,-2.888638,-2.8736656,-2.7892706,-2.7347507,-2.6386905,-2.6397002,-2.6855187,-2.7148952,-2.7335727,-2.724759,-2.7763677,-2.757626,-2.7065783,-2.75462,-2.7166786,-2.7261727,-2.753036,-2.7790852,-2.7704027,-2.7549715,-2.755207,-2.8065367,-2.7507963,-2.7281303,-2.733839,-2.7357626,-2.7479353,-2.7512836,-2.7373557,-2.744435,-2.75152,-2.7496743,-2.7402291,-2.6784735,-2.7647176,-2.7858627,-2.744567,-2.7444215,-2.7709785,-2.7458353,-2.742443,-2.740122,-2.7622004,-2.7403615,-2.756927,-2.7437487,-2.7393413,-2.7430816,-2.7668302,-2.774362,-2.7659435,-2.7521408,-2.7388887,-2.7485557,-2.7393486,-2.7453756,-2.7556543,-2.743988,-2.743366,-2.74841,-2.776444,-2.741803,-2.690423,-2.697247,-2.8002672,-2.794551,-2.7351537,-2.7353153,-2.7118273,-2.7022119,-2.7648864,-2.7626529,-2.764638,-2.732603,-2.683584,-2.695491,-2.6765618,-2.688698,-2.6316245,-2.612426,-2.6870747,-2.6875901,-2.599029,-2.587472,-2.6111596,-2.6966095,-2.698873,-2.7143884,-2.7071216,-2.694995,-2.7482257,-2.6127253,-2.4817142,-2.4523764,-2.4750128,-2.5952678,-0.9939633,-1.1187636,-1.0352407,-1.0770743,-1.2470713,-1.3476461,-1.4708421,-1.5446738,-1.6103545,-1.5846796,-0.90890384,-0.97087985,-1.2012436,-1.3321536,-1.4482397,-1.4763415,-1.4609591,-1.5237944,-1.5684301,-1.5809965,-1.5865479,-1.6136863,-1.6191804,-1.453865,-1.4793316,-1.5202332,-1.4688232,-1.465377,-1.4502478,-1.452898,-1.41407,-1.5080135,-1.559747,-1.4713216,-1.4500017,-1.4328172,-1.4306552,-1.4177934,-1.4526658,-1.4973879,-1.5291653,-1.5700061,-1.6035862,-1.6366885,-1.6480529,-1.6466553,-1.6925669,-1.7208238,-1.7046846,-1.6601443,-1.6374407,-1.5970218,-1.4364638,-1.446748,-1.4922166,-1.4810632,-1.477737,-1.5228734,-0.32690164,-0.60721064,-0.87271184,-1.030276,-1.1269639,-1.1956304,-1.203944,-1.2237934,-1.2847512,-1.3025386,-1.2881815,-1.2939905,-1.2862353,-1.2902898,-1.3500595,-1.414671,-1.3512774,-1.3283701,-1.3488948,-1.3974667,-1.4466147,-1.4720749,-1.4896057,-1.5197436,-1.5373244,-1.5624006,-1.5811226,-1.5900468,-1.5977484,-1.59913,-1.6183078,-1.6056622,-1.5933038,-1.4763768,-1.5258219,-1.5450406,-1.5301563,-1.5765376,-1.5252767,-1.5165,-1.5889883,-1.5591521
+-1.7344638,-2.0925362,-2.3283563,-2.4100604,-2.5182629,-2.6809793,-2.6292624,-2.5936658,-2.6995344,-2.6271968,-2.399558,-2.492935,-2.5279636,-2.5743275,-2.5837247,-2.599245,-2.6546206,-2.701619,-2.7464194,-2.7765546,-2.7854247,-2.787167,-2.7881665,-2.801734,-2.8143198,-2.8288677,-2.8475957,-2.849599,-2.861617,-2.868027,-2.8785331,-2.8923666,-2.891754,-2.8920946,-2.896239,-2.9123023,-2.9185414,-2.9239664,-2.9351487,-2.9357672,-2.9330144,-2.9554143,-2.9709852,-2.9545307,-2.9587705,-2.9663992,-2.9770942,-2.978447,-2.9869776,-2.9774961,-2.9900155,-2.9949489,-3.004297,-3.0094695,-3.0124915,-3.0060687,-2.998436,-2.9915733,-2.9984462,-3.0005336,-3.0023975,-3.008565,-3.0293894,-3.0478487,-3.067598,-3.0632086,-3.0531478,-3.0430043,-3.040403,-3.0539777,-3.0558004,-3.053225,-3.0597115,-3.0657907,-3.0576715,-3.0568228,-3.0804634,-3.0957594,-3.1129084,-3.1657772,-3.140572,-3.073935,-3.1110747,-3.1158044,-3.1103096,-3.1163414,-3.1460059,-3.1573625,-3.1595936,-3.1573834,-3.1288493,-3.138064,-3.142304,-3.155076,-3.1571565,-3.145075,-3.142172,-3.1549006,-3.1664932,-3.1576047,-3.1533053,-3.146268,-3.1489024,-3.172972,-3.1807685,-3.149126,-3.152564,-3.1438205,-3.163465,-3.1729782,-3.1743317,-3.1844249,-3.1941376,-3.1843925,-3.157183,-3.1638076,-3.1764095,-3.166024,-3.1477141,-3.1452036,-3.1621559,-3.163182,-3.1783755,-3.1744199,-3.1768017,-3.1851928,-3.1972444,-3.2096064,-3.2291987,-3.2212956,-3.2174377,-3.2180407,-3.2156754,-3.222562,-3.2081735,-3.2043538,-3.230738,-3.2255445,-3.223555,-3.2007406,-3.1989315,-3.206091,-3.1988523,-3.223041,-3.215848,-3.2367265,-3.2382214,-3.231844,-3.2177148,-3.2342186,-3.2600505,-3.2583404,-3.2613053,-3.2288046,-3.2385883,-3.2282948,-3.2297707,-3.2295182,-3.2700677,-3.228819,-3.2363036,-3.2654366,-3.2842112,-3.252423,-3.2241845,-3.217079,-3.2508655,-3.2791119,-3.2534478,-3.2693605,-3.2974257,-3.0932028,-2.536874,-2.2218008,-2.2066674,-2.3048992,-2.3722649,-2.475109,-2.4781694,-2.515157,-2.4650605,-2.5821564,-2.5331826,-2.5630212,-2.6061082,-2.6025877,-2.6225657,-2.6454172,-2.6811638,-2.6877213,-2.7322657,-2.7351928,-2.7467396,-2.7467155,-2.7818294,-2.786,-2.8046527,-2.8010192,-2.8163981,-2.8203511,-2.8284965,-2.8542738,-2.846656,-2.8786159,-2.8159122,-2.8570411,-2.9231086,-2.862656,-2.9212203,-2.9218373,-2.910349,-2.902837,-2.8998144,-2.9011724,-2.9194999,-2.9315333,-2.9518886,-2.9629116,-2.9535449,-2.9453568,-2.9490173,-2.9404979,-2.9358764,-2.9342203,-2.9457455,-2.9463584,-2.9497385,-2.9469023,-2.9548569,-2.9223182,-2.93249,-2.9469182,-2.994267,-3.0020838,-2.8549604,-2.9124832,-2.9192963,-2.9505212,-2.9408836,-2.9432268,-2.8765552,-2.8924172,-2.9449987,-2.9127102,-2.8744166,-2.7459269,-2.6843107,-2.6889257,-2.696835,-2.6933014,-2.6915202,-2.7063496,-2.7418926,-2.739152,-2.709961,-2.7045865,-2.6951232,-2.7059717,-2.6902416,-2.5975385,-2.4421732,-2.5073779,-2.5337029,-2.5619824,-2.0426064,-0.8846835,-0.7345707,-0.8062823,-0.83820236,-1.0524046,-1.1874077,-1.2491215,-1.3516519,-1.4048252,-1.4639138,-1.4286437,-1.3557861,-1.4246925,-1.5441031,-1.5950747,-1.657367,-1.6762738,-1.7364279,-1.7750149,-1.7863274,-1.8119006,-1.8428652,-1.8461108,-0.4319809,-0.27195856,-0.59111094,-0.7791738,-0.8986963,-1.0085204,-1.0357413,-1.0375367,-1.2159727,-1.3032138,-1.4029673,-1.4762032,-1.5295506,-1.5772171,-1.6067158,-1.5938354,-1.5954409,-1.6309958,-1.6599418,-1.6661319,-1.7127899,-1.7828109,-1.7925184,-1.8088881,-1.8827972,-1.9026679,-1.9197485,-1.9299963,-1.936765,-1.9575095,-1.6070787,-1.4786935,-1.5313995,-1.6336756,-1.6090542,0.09919523,0.21985154,-0.25413063,-0.5593751,-0.7822995,-0.88141704,-0.97979116,-1.1114149,-1.2206054,-1.3352175,-1.4203126,-1.5197351,-1.6116055,-1.7080345,-1.7211934,-1.7726085,-1.8162358,-1.8664391,-1.9350276,-2.0027955,-2.0230744,-2.0735757,-2.1260173,-2.1617036,-2.194646,-2.227639,-2.2628694,-2.3039865,-2.3296282,-2.3933043,-2.4005075,-2.3932667,-2.4364557,-2.4480073,-2.4736192,-2.5276854,-2.5192451,-2.5252962,-2.5218506,-2.5449433,-2.57732,-2.552137
+0.06612772,-0.2879731,-0.35266608,-0.38824922,-0.12315783,-0.10148041,-0.26775202,-0.34860685,-0.45333222,-0.5199094,-0.55557764,-0.57221586,-0.62635416,-0.608509,-0.38984606,-0.32131195,-0.39929146,-0.49271885,-0.5703024,-0.615973,-0.67352116,-0.70636,-0.2695951,0.21106003,0.32282117,0.3063684,0.049069833,0.08307433,-0.0042044856,-0.14295796,-0.2675125,-0.38295692,-0.46152586,-0.5694425,-0.6612008,-0.58896106,-0.65703493,-0.71031785,0.27020782,0.4343763,0.08279391,0.23621087,0.42043397,0.14204647,-0.05125011,-0.19224311,-0.27574727,-0.37443972,-0.22306158,0.30648613,0.7928854,1.4309727,1.4113032,1.2746425,0.7557357,0.50709045,0.2652312,0.034281302,-0.12863058,-0.1571477,-0.16742153,-0.27759436,-0.35887948,-0.45362356,-0.49183366,-0.5155305,-0.5773331,-0.65148425,-0.73565257,-0.6971779,-0.7195227,-0.46902934,-0.48847002,-0.55324286,-0.623839,-0.59274757,-0.5671976,-0.47586247,-0.57954663,-0.31297466,-0.29826862,-0.5118945,-0.41495663,-0.5379011,-0.5257753,-0.07886067,-0.056254257,-0.15616296,-0.29295823,-0.35694394,0.117870495,0.23961388,-0.049133927,-0.22995605,-0.4038632,-0.5158157,-0.41964614,-0.060323957,-0.28655195,-0.36029983,-0.3313664,-0.011030372,0.43476605,0.71990985,0.60601735,0.86278045,1.1124678,0.7015451,0.50444984,0.26606482,0.033235807,-0.1818604,-0.24482368,0.14193277,-0.08579004,-0.25054258,-0.123484686,0.26613063,0.4884724,0.44602305,0.2034903,0.001878731,-0.19886605,-0.33178627,-0.045368332,0.17577986,-0.116081,-0.2551065,0.2635392,0.6807136,0.46436518,0.4935379,0.37814113,0.39327192,0.10921371,-0.09443718,0.075768664,-0.016346563,-0.19158177,-0.08375873,0.14418404,-0.162051,-0.31619576,-0.45884925,-0.59552395,-0.57319844,-0.5246833,-0.28986388,-0.44055605,-0.5869232,-0.6141037,-0.5816809,-0.34920925,-0.5644164,-0.7008027,-0.7924197,-0.86148643,-0.90664744,-0.8911062,-0.9324302,-0.95928085,-0.8414317,-0.8506817,-0.5437002,0.007841516,-0.26847437,-0.4293753,-0.50720817,-0.596478,-0.65905607,-0.757166,-0.8286723,-0.8580378,-0.87078094,-0.42602044,0.27316272,-0.12912391,-0.32614785,-0.41994834,-0.48501745,-0.5147129,-0.62552506,-0.6609229,-0.6509277,-0.68977666,-0.729884,-0.74527323,-0.7160442,-0.72775036,-0.58724624,-0.20572384,-0.1297778,0.23396902,0.36365327,0.54334915,0.67343277,1.0168635,0.5513262,0.31514463,0.26194915,0.48901564,0.26971084,0.1609489,0.12192418,0.025514584,-0.05304597,-0.06707734,-0.13901205,-0.17795676,-0.12708835,0.5076046,0.37374532,0.33869395,0.7657496,0.53715575,0.35300466,0.25577223,0.14264236,0.07502453,0.021521691,-0.12030502,-0.08577618,-0.108955696,-0.21095864,-0.25002298,-0.20492803,-0.2837921,-0.2979859,-0.19415416,-0.19116893,-0.20419309,-0.08249843,0.07695371,0.18901935,0.23575963,0.18664648,0.2665286,0.3222089,0.33648297,0.372192,0.36234653,0.38280934,0.41112515,0.3922591,0.4440896,0.451834,0.54401326,0.6418688,0.7853401,0.81827813,0.81232595,0.80278087,0.8349596,0.9158286,0.9507042,0.95124894,0.9447969,0.9356251,0.9372734,0.9552697,0.9522941,0.9648007,0.97640944,1.000412,0.9917681,1.0241598,1.0891087,1.2644186,1.33358,1.2701697,1.2855281,1.275029,1.3192347,1.3342099,1.3252352,1.4542595,1.4295042,1.3765879,1.3519317,1.3503263,1.4174113,1.3597423,1.3132305,1.3880188,1.3758554,1.3095279,1.325613,1.3721251,1.4036638,1.4379711,1.4587457,1.4900463,1.5309484,1.6120262,1.6150787,1.6573281,1.6792144,1.7504693,1.7037566,1.6945031,1.6690049,1.6684694,1.6474972,1.6337838,1.6326578,1.6956811,1.7124224,1.7332886,1.6795247,1.7367517,1.7914947,1.8225449,1.8022807,1.7182081,1.8436921,1.8947862,1.9184048,1.9012631,1.9007928,1.9227668,1.9639513,2.1237845,2.152634,2.2381065,2.5933053,2.5397196,2.795493,2.7640257,2.8816097,2.7074637,2.625911,2.682387,2.6613526,2.5940876,2.4411597,2.4824324,2.537892,2.5651171,2.767733,2.7181869,2.6919398,2.7489324,2.7096505,2.636158,2.6690092,2.656917,2.6351595,2.6803398,2.80219,3.1703753,3.1651292,3.380722,3.323944,3.2793632,3.184842,3.2362003,3.1009645,3.0211358,2.7112591,2.584433,1.929688,1.3192258,1.024448,0.8201253,0.5967398
+1.184524,1.2831969,1.1221496,0.75583196,0.8542559,0.83237064,0.7700888,0.55832446,0.27059042,0.19047494,0.18326804,0.13218503,0.50367564,0.8845433,1.2106383,1.0978861,1.0250535,0.8776846,0.65645933,0.36387637,0.25343847,0.15556215,0.2300101,0.80272937,0.6499318,0.7264616,0.8120309,0.85626394,0.90582246,1.090419,1.0706172,0.81792605,0.488028,0.28848734,0.14432761,0.05315643,0.090623036,0.011109564,0.28472427,0.70977044,0.60892236,0.38032082,0.28609365,0.29405177,0.25726354,0.34279954,0.16526277,0.12272617,0.5863043,0.81680185,0.9847077,1.0001177,1.0790279,1.076,0.91260636,0.73110867,0.6010838,0.54944503,0.31790078,0.25392976,0.23279642,0.08812764,-0.017379057,0.023752261,-0.07713233,-0.099741414,-0.19128968,-0.19733734,-0.18154813,-0.11198743,-0.123496786,-0.07241981,-0.103150725,-0.18865456,0.022990998,0.19417685,0.42747027,0.4900987,0.45883667,0.46112844,0.19363457,0.049214054,-0.080533355,-0.15180103,-0.1210597,-0.08852026,-0.19391121,-0.24736701,-0.3065076,-0.3651418,-0.40255988,-0.37477207,-0.4278719,-0.4407562,-0.48225385,-0.49793568,-0.47691697,-0.4334512,-0.47548828,-0.49434817,-0.14368087,1.1251861,0.59038043,0.5929496,0.38212466,0.14398092,0.09419961,-0.018449131,-0.11500634,-0.18123238,-0.09800555,-0.085641086,-0.22911017,-0.20537302,-0.30277574,-0.36044294,-0.40827465,-0.4531554,-0.4849582,-0.50662106,-0.53361267,-0.5596447,-0.5943167,-0.6173758,-0.61562395,-0.6420952,-0.6692908,-0.62515336,-0.5168688,-0.56644213,-0.48423347,-0.20951064,-0.2979593,-0.42338702,-0.5031034,-0.56068677,-0.6132032,-0.6507571,-0.68691766,-0.7128979,-0.716429,-0.71928555,-0.7319245,-0.7588774,-0.76371884,-0.7773018,-0.76067686,-0.769404,-0.7833277,-0.8166398,-0.8498433,-0.8745677,-0.91289026,-0.9296979,-0.9395892,-0.9467658,-0.95018315,-0.1533106,0.07561588,0.11760433,0.073344335,-0.019716393,-0.18736121,-0.28243053,-0.2796356,-0.26554194,-0.28927076,-0.33119184,-0.39263815,-0.43823662,-0.26726976,-0.10572015,-0.20806961,-0.0924432,0.13539045,0.28714433,0.1815762,0.019028325,-0.09211317,-0.20343888,-0.26859227,-0.33248496,-0.33588523,-0.34447336,-0.38277406,0.0073085614,0.6677146,0.6070682,0.6306872,0.6247004,0.5495541,0.32638848,0.3562888,0.35337606,0.30394393,0.3977123,0.5554097,0.479936,0.6542512,0.7177297,0.63732517,0.7110542,0.65055215,0.7385905,0.75387037,0.6072837,0.5708336,0.5101535,0.5650151,0.4147907,0.41987854,0.36042905,0.39398122,0.64717174,0.54062986,0.4932202,0.43721867,0.39366633,0.41062766,0.37475482,0.32589197,0.33176148,0.2325776,0.17924583,0.182095,0.14707549,0.16759916,0.1917962,0.22574474,0.36796516,0.41665012,0.8450384,1.1237063,1.333956,1.2978542,1.2368951,1.3781053,1.5335536,1.6734684,1.7627809,1.7488185,1.954433,2.0808873,2.264866,2.5441275,2.7682066,2.953568,3.1682673,3.301839,3.6084743,3.8185518,3.9160538,3.9976425,3.9340498,4.0060816,3.9673634,3.9803753,3.9945512,4.1584883,4.2622757,4.243327,4.182182,4.198906,4.140069,4.094972,4.0776577,4.1408167,4.1626525,4.2322826,4.186072,4.167563,4.103462,4.153537,4.0646706,4.1018305,4.174706,4.271801,4.3036375,4.271386,4.269972,4.2563944,4.2298765,4.239129,4.227371,4.274359,4.277033,4.222145,4.1861477,4.1994867,4.171102,4.1689262,4.1330385,4.107583,4.2467065,4.24271,4.244523,4.2033696,4.2395573,4.2629795,4.2567935,4.2281404,4.162764,4.1531143,4.101657,4.094227,4.1799874,4.2568274,4.271658,4.26696,4.187682,4.2257423,4.258295,4.268009,4.236455,4.251888,4.4461074,4.22756,4.2341876,4.220608,4.237422,4.2086973,4.322749,4.345383,4.367633,4.3757133,4.303661,4.2984505,4.2819767,4.301235,4.283775,4.2580833,4.2521887,4.236767,4.2214103,4.1767535,4.160624,4.192606,4.2369556,4.2809806,4.232148,4.17449,4.2196503,4.318327,4.370018,4.312978,4.3804564,4.4357595,4.3612056,4.339854,4.0309763,4.1274514,4.111365,3.8256795,3.9757915,4.031128,3.8403635,3.7618318,3.8038578,3.7623863,3.6858575,3.6384296,3.5275202,3.562339,3.5878992,3.3335648
+1.1371977,1.1418486,0.8690448,0.63733006,0.46763098,0.36061537,0.30042553,0.12897742,-0.19078577,-0.26530814,-0.29278943,-0.3448522,-0.24426825,-0.08852036,-0.06596033,0.038498852,0.066615134,0.016298015,-0.073541805,-0.19247949,-0.26213458,-0.3263672,-0.078680396,0.25877714,0.646,0.69757754,0.6761117,0.69342285,0.7274048,0.7459181,0.80461293,0.77811027,0.67829084,0.6072018,0.17680088,-0.020519387,0.098833874,0.14792673,0.19089739,0.23197187,0.26128846,0.3064623,0.15544544,0.13860555,0.54599404,0.57615656,0.42183852,0.17155808,0.42680633,0.5573655,0.62472403,0.5129575,0.53811044,0.4485678,0.37010694,0.19586615,0.05477107,0.14401136,0.06616703,-0.12710884,-0.17206413,-0.2469113,-0.35217896,-0.3832229,-0.41362956,-0.4492008,-0.5258461,-0.49279627,-0.41030145,-0.49176428,-0.5969634,-0.6445605,-0.5160368,-0.5334966,-0.6425628,-0.30030918,0.48019564,0.13279332,-0.18321992,-0.34566754,-0.4406102,-0.54322064,-0.6191462,-0.6698655,-0.7412144,-0.79337794,-0.76942474,-0.8081726,-0.85472757,-0.9046569,-0.87349594,-0.83906144,-0.89760053,-0.9299182,-0.9589062,-0.98957276,-1.018667,-1.0280046,-1.0037123,-1.0305281,-0.78819376,-0.058649134,-0.24853636,-0.34679395,-0.421561,-0.56974375,-0.6481735,-0.7090517,-0.7626891,-0.8443253,-0.90414345,-0.9371337,-0.98162764,-1.0069468,-1.0207963,-1.0397686,-1.0637281,-1.0694788,-1.055574,-1.0843599,-1.1003387,-1.1437333,-1.1532907,-1.169403,-1.1984202,-1.2211468,-1.2278658,-1.1117765,-1.092876,-1.1575096,-1.2041615,-1.2535725,-1.2438443,-1.2524033,-1.2707847,-1.2852308,-1.3017209,-1.3222572,-1.3464532,-1.3708017,-1.3952391,-1.3845611,-1.394298,-1.4294283,-1.4570975,-1.470927,-1.4875209,-1.4602318,-1.4461001,-1.4563704,-1.4670172,-1.4905112,-1.5018628,-1.5315943,-1.5475533,-1.5529718,-1.5154715,-0.47036493,-0.3077464,-0.46867326,-0.61572915,-0.717866,-0.773787,-0.8375575,-0.90570104,-0.90588474,-0.7114254,-0.4562935,-0.62163246,-0.7234998,-0.73874515,-0.7908621,-0.84268475,-0.8496529,0.33628583,0.9920063,0.6066545,0.2710076,0.055632766,-0.12936157,-0.25541675,-0.29545,-0.111616224,0.4069346,0.5131563,1.0629647,1.0710719,0.79104006,0.7463311,0.71095943,0.5669259,0.27640575,0.14220412,0.11811386,0.04646324,0.088621244,0.17535211,0.121801436,0.21157633,0.17691913,0.20935775,0.3237832,0.43197954,0.44186568,0.29910845,0.17868248,0.11951798,0.085356236,0.03741787,-0.08010793,-0.06555836,0.34680223,0.3384338,0.9309485,0.71013844,0.6779691,0.7154292,0.6165302,0.5733068,0.5193894,0.47901726,0.4326008,0.29227835,0.14698967,0.0919155,0.06916529,0.06608412,0.13439503,0.35271585,0.43235537,0.3990975,0.68569255,0.9254619,0.96267056,0.97548246,0.9803014,1.1036278,1.1450295,1.1947383,1.254925,1.4090072,1.4475377,1.4593544,1.508837,1.5133872,1.5109544,1.5277805,1.5312641,1.7607827,1.8189616,1.8349988,1.8898609,1.953701,2.1201549,2.2175367,2.2050495,2.1408975,2.1531267,2.4345393,2.3781047,2.3783834,2.3002632,2.2901106,2.385397,2.2741933,2.2698154,2.2751389,2.3076901,2.3495083,2.3226552,2.3708124,2.3990657,2.3603077,2.297576,2.3027208,2.3253675,2.3406618,2.325868,2.3543537,2.3476584,2.2760222,2.2734435,2.3885913,2.5116782,2.4920454,2.641507,2.572507,2.5470204,2.498364,2.4681194,2.4278498,2.411592,2.4584274,2.6625452,2.69486,2.737303,2.7280533,2.7429183,2.7870421,2.6968546,2.65448,2.5967255,2.5584798,2.5649924,2.6021776,2.6086068,2.7022166,2.7461762,2.817418,2.9353127,3.0054917,3.066687,3.1822176,3.1407518,3.196378,3.2947822,3.2186856,3.2132103,3.182311,3.1993275,3.208367,3.3420606,3.348114,3.4508042,3.4519744,3.4487164,3.495768,3.3907642,3.388145,3.3711479,3.2371144,3.214006,3.201252,3.1681795,3.1026602,3.1303873,3.209259,3.314177,3.3472123,3.249734,3.205109,3.205431,3.224119,3.3850956,3.4524612,3.460186,3.445898,3.5714526,3.6915178,3.6439648,3.5617886,3.7181826,3.6921844,3.7414913,3.7452588,3.553833,3.3697214,3.4397273,3.1461897,3.1816213,3.0197608,2.938089,2.948555,3.1808553,3.018333
+-0.00809373,-0.30689603,-0.29025146,-0.17049636,-0.012379628,-0.013563398,-0.113514185,-0.17665394,-0.29522446,-0.32132423,-0.3047842,-0.31705564,-0.23822631,0.35462058,0.29907873,0.19909877,0.055210564,-0.035209265,-0.122232735,-0.21278048,-0.32775673,-0.45071512,-0.2332092,0.4204749,0.22449945,0.21425745,0.3204417,0.2526153,0.21763624,0.3523658,0.17613433,0.020650242,-0.06551382,-0.16906251,-0.26402184,-0.37529314,0.16647029,0.14681713,-0.08457044,-0.07827389,-0.05267022,-0.2034002,-0.2788081,-0.3712464,-0.18913569,-0.02218679,-0.078413606,-0.14124578,-0.03529827,0.5319022,0.7062932,0.36319146,0.09362607,-0.031364586,0.16321845,0.15246356,-0.08004622,-0.21399523,-0.29308283,-0.3326665,-0.40251336,-0.47003525,-0.543513,-0.60770535,-0.6454759,-0.7062911,-0.7913207,-0.83451277,-0.8726781,-0.9382071,-1.0038408,-1.0532074,-1.1260134,-1.133932,-1.2247705,-1.0848315,-0.9678368,-1.0087185,-1.0450766,-1.0834157,-1.158314,-1.1880542,-1.2835262,-1.2994676,-1.3654215,-1.4353964,-1.4620665,-1.4618496,-1.4948323,-1.5427778,-1.4863853,-1.1987073,-1.2043414,-1.2991307,-1.3609974,-1.4555869,-1.5191066,-1.5603037,-1.5756773,-1.6069088,-1.5397079,-1.4037485,-1.4438981,-1.4664011,-1.5314076,-1.5594139,-1.6158222,-1.68103,-1.6819516,-1.729668,-1.7746769,-1.8301344,-1.8759823,-1.9410129,-1.9891782,-1.9841977,-2.0066483,-2.0163734,-2.031856,-2.0497177,-2.095953,-2.07941,-2.1321983,-2.1440053,-2.155839,-2.2312863,-2.2343001,-2.1930168,-1.9462814,-1.7829103,-1.8257974,-1.9057755,-1.9408885,-1.9649773,-1.9916178,-2.0309136,-2.0034494,-2.0356112,-2.063223,-2.0445554,-2.1008317,-2.1515458,-2.1553886,-2.1549292,-2.208425,-2.2541187,-2.2660773,-2.2899508,-2.2469888,-2.2617707,-2.2756653,-2.2571259,-2.2299495,-2.2078137,-2.2843313,-2.2959514,-1.7537618,-1.1614722,-1.2457929,-1.2184559,-1.3063784,-1.42878,-1.5048392,-1.5005755,-1.5600222,-1.2976753,-1.0039133,-0.6846336,-0.8931679,-0.9715718,-0.9892959,-1.1188549,-1.2420577,-1.2734078,-0.29316106,0.7244234,0.4884947,0.056395467,-0.1751521,-0.320589,-0.40564573,-0.47623444,-0.55685806,-0.45529643,-0.15508534,0.1307805,0.16274078,-3.6161393e-05,-0.12193662,-0.24432279,-0.3398539,-0.44210687,-0.4941542,-0.5294291,-0.6140697,-0.63842905,-0.5975919,-0.07299721,0.24184017,0.66160727,0.389877,0.1439024,-0.0014399551,-0.08792104,-0.20053272,-0.2906044,-0.3245227,0.20037891,0.2603979,-0.05799784,0.17062731,0.645516,0.25352672,0.7566178,0.38831508,0.17026553,0.10356246,0.03203358,-0.009645652,-0.03961393,-0.08666241,-0.15229915,-0.21920824,-0.27842012,-0.32056493,-0.36263925,-0.37249935,-0.36791798,-0.42074925,-0.40201014,-0.4177538,-0.25209558,-0.13892053,-0.11674337,-0.14925607,-0.19251996,-0.076695815,0.028742258,0.15133719,0.2279735,0.32008705,0.4668371,0.54812026,0.5644043,0.60907614,0.6210887,0.59053165,0.62583494,0.6611988,0.7876422,0.7968481,0.90224075,1.0277255,1.9361733,1.8589598,1.9463608,1.9734495,2.0778494,2.402897,3.0312853,3.049139,3.0546181,3.1455126,3.199766,3.1570902,3.1230218,3.098164,3.2459536,3.360048,3.1996293,3.1500487,3.0408134,3.0456254,3.0416548,3.0023942,3.0057595,3.0218968,3.04242,3.1122525,3.103151,3.0355318,3.0752485,3.1224566,3.603581,3.5573907,3.8673759,3.6461482,3.6707478,3.62845,3.559853,3.4543903,3.4220734,3.4146955,3.475328,3.3994412,3.4768002,3.420868,3.546072,3.5977645,3.4897292,3.4176729,3.3485951,3.3294663,3.3515754,3.3546648,3.3337426,3.4152536,3.444871,3.5685654,3.6523485,3.892196,4.0752397,4.2422695,4.163946,4.3480186,4.121228,3.8671792,4.0191884,4.0092545,4.0109854,4.0294313,4.014085,3.9456968,4.0655794,4.0366178,3.9440522,3.965857,3.758565,3.9615264,4.077882,3.933606,3.9162645,4.002074,3.872973,3.8779073,3.9291885,4.033559,4.102308,4.102779,3.9977016,3.8749619,3.9939013,4.016836,4.0763903,3.6928606,3.2003803,2.8605363,2.5025527,1.8923216,1.3334802,0.7382092,0.60206413,0.52119935,0.4635388,0.4005155,0.43441623,0.5107415,0.30813387,0.49136472,0.39596915,0.37856078,0.3445923,0.32290944,0.7130655,0.9322429
+-0.95454085,-0.9100596,-1.0146397,-0.8795556,-0.8327725,-0.9500297,-1.0674251,-1.1420294,-1.2625613,-1.3557726,-1.4228089,-0.783646,0.27799332,0.4482623,0.15652385,-0.052079927,-0.22565968,-0.35931814,-0.5078138,-0.67197853,-0.7937045,-0.9528514,-0.110203266,0.31098893,0.33079228,0.7156131,0.41523772,0.24720488,0.14469506,0.14854951,0.043796856,-0.22271891,-0.4143333,-0.5916044,-0.753188,-0.67223036,0.162908,0.11866385,-0.12412807,-0.42409718,-0.49100482,-0.63396144,-0.8198191,-0.9556238,-0.9806179,-0.9328813,-1.0892923,-1.1398544,-1.108398,-0.08536011,0.30340213,0.06996268,-0.1941034,-0.21701427,0.25883734,-0.027230483,-0.37279642,-0.5683938,-0.5161407,-0.31215966,-0.63425285,-0.8378749,-1.0721382,-1.2711936,-1.3370965,-1.4537334,-1.5535889,-1.1404738,-1.0892731,-1.2716684,-1.4026906,-1.2212099,-0.51947594,-0.7144018,-0.9585205,-1.1958382,-1.3098011,-1.3935351,-1.5023739,-1.6332681,-1.6924517,-1.7909985,-1.8478045,-1.8879054,-1.9468478,-1.9787751,-2.037074,-2.066863,-2.095427,-2.1042943,-2.116602,-2.1396272,-2.1417062,-2.1709979,-2.1830053,-2.2038746,-2.2097578,-2.217527,-2.2462344,-2.2697227,-2.2652767,-2.2656245,-2.3151753,-2.3209603,-2.3405676,-2.3541117,-2.3452091,-2.354847,-2.3448956,-2.3546782,-2.362709,-2.430586,-2.407007,-2.412468,-2.4267766,-2.438925,-2.446073,-2.4406514,-2.4541845,-2.4510763,-2.459639,-2.4310398,-2.4585795,-2.4644635,-2.4577641,-2.4618156,-2.469048,-2.4406333,-2.4549947,-2.486392,-2.4602857,-2.483058,-2.4811902,-2.4824119,-2.4914608,-2.5064602,-2.5108385,-2.5096393,-2.492607,-2.5067382,-2.4850273,-2.4907393,-2.4993474,-2.4901018,-2.485488,-2.4976115,-2.5264313,-2.51897,-2.5109603,-2.509614,-2.5227017,-2.5156484,-2.5054512,-2.4974728,-2.5055969,-2.5354247,-2.5477004,-2.5337949,-2.5429084,-2.5189302,-2.5141401,-2.5287542,-2.5577707,-2.5266526,-2.533223,-2.0998256,-0.79604447,-0.5811059,-0.86633295,-1.011019,-1.1326053,-1.2847764,-1.3736916,-1.4423959,-0.2732826,0.6870283,0.46894038,-0.17867494,-0.49280724,-0.63114977,-0.74880034,-0.8438565,-0.9064111,-0.98071134,-0.77540314,-0.75668097,-0.7977176,-0.95812017,-1.0274633,-1.037564,-1.1241721,-1.1677272,-1.2121959,-1.2659998,-1.2661926,-1.287375,-1.3298843,-0.90128833,-0.33134627,0.6062761,0.29385263,0.09502761,-0.10204162,-0.15512046,-0.3019525,-0.43461967,-0.529769,-0.46951053,-0.40485215,-0.5887339,-0.58732486,-0.078874975,-0.21810563,0.062605426,0.11140819,-0.11790478,-0.22147664,-0.259612,-0.30301368,-0.33776587,-0.41418496,-0.48454472,-0.53378105,-0.5747738,-0.60654867,-0.61704665,-0.63856196,-0.6812109,-0.701977,-0.7762259,-0.7462784,-0.6724302,-0.50672925,-0.4483928,-0.0847355,0.18242595,0.5392021,0.860671,1.2307959,1.4192796,1.4953234,1.5370044,1.5815387,1.8778793,1.9392471,1.9987507,2.0444202,2.0796995,2.0566404,2.044395,2.0548844,2.1999214,2.255843,2.5122523,2.5563774,2.5466537,2.544776,2.8077035,2.973433,3.2979841,3.00119,3.0469494,3.1001275,3.0712454,3.0756464,3.0798976,3.0983102,3.3624213,3.2605495,3.170228,3.13636,3.091263,3.060351,3.084783,3.0795393,3.1154153,3.1722264,3.2944045,3.414278,3.4516904,3.4494264,3.5162458,3.6246347,3.6920223,3.493815,3.6574824,3.4490113,3.307448,3.3337502,3.3451436,3.3917265,3.4300866,3.3859868,3.616301,3.4435992,3.4553885,3.4413445,3.6485934,3.3920772,3.4495215,3.3721976,3.3167658,3.3305023,3.3889961,3.390272,3.3439662,3.354314,3.4094338,3.4863315,3.5509527,3.4272747,3.4457293,3.5400345,3.2521179,3.6554153,3.4454894,3.1912065,3.2834806,3.3569903,3.3588996,3.3720655,3.36735,3.2733955,3.4486504,3.544662,3.310236,3.3077862,3.0741518,3.2070866,3.151865,3.2444758,3.2668872,3.4525256,3.1949797,3.189998,3.2866592,3.3301053,3.338049,3.302582,3.2169855,3.1761432,3.2060022,3.1329153,2.841238,2.5185003,2.1937032,2.1171317,2.0007472,1.6957283,1.3733258,1.0001233,0.69677925,0.42374864,0.29595715,0.23200999,0.26927006,0.1811149,0.031251956,0.48948872,0.36291426,0.3252777,0.047085885,-0.029300038,0.57692415,0.6249838
+-0.017513614,0.19690435,0.21427672,0.15387262,0.06057695,0.04214071,0.027788553,0.014747776,-0.045636687,-0.07674354,-0.12874806,-0.15922654,0.06569387,0.79710615,0.7259753,0.5206962,0.40035692,0.32325888,0.2537508,0.16217878,0.10097109,0.01612639,0.16893472,0.57735664,1.1668259,1.189617,1.1967068,1.4313095,1.2329977,1.121659,0.9601085,0.80422604,0.61300594,0.4600781,0.36005223,0.30394435,0.41095006,0.52885365,0.5473008,0.3301423,0.25686908,0.19893532,0.15373977,0.09411658,0.027365535,-0.08152354,-0.11157721,-0.17578019,-0.25301203,0.08696489,0.39236367,0.39178962,0.28586712,0.22371762,0.15188214,0.22550444,0.24910109,0.21905492,0.11611834,0.001821287,-0.13041446,-0.18526065,-0.2336212,-0.32043028,-0.35140637,-0.38530958,-0.41351312,-0.4784034,-0.5538581,-0.60277027,-0.66885155,-0.5322542,-0.2603073,-0.36534134,-0.483626,-0.5890278,-0.6606823,-0.6945814,-0.7344222,-0.75852686,-0.77789307,-0.81690073,-0.8930276,-0.9157767,-0.97718036,-1.0515072,-1.0771027,-1.0797101,-1.1168624,-1.1946385,-1.2135035,-0.25716293,0.6908326,0.39406613,0.12658884,-0.036029305,-0.1647066,-0.25509158,-0.35644513,-0.46130812,-0.5546926,-0.6943623,-0.71072984,-0.75663537,-0.7974577,-0.8339494,-0.88584507,-0.94394416,-0.99372256,-1.07182,-1.1148586,-1.1382205,-1.169023,-1.2257968,-1.266092,-1.28425,-1.304881,-1.3580372,-1.4134257,-1.4580812,-1.4869521,-1.4846032,-1.515389,-1.5088737,-1.5058638,-1.547743,-1.5432577,-1.6168487,-1.6276474,-1.6089523,-1.6139446,-1.6406944,-1.623448,-1.5823677,-1.5857246,-1.581976,-1.5626627,-1.5860721,-1.627499,-1.6270958,-1.6465001,-1.6663314,-1.6538844,-1.650044,-1.6598165,-1.6970868,-1.7100344,-1.7064345,-1.7124891,-1.703862,-1.6943903,-1.6730769,-1.6738819,-1.7164216,-1.5072098,-1.3843328,-1.4094636,-1.5122777,-1.534837,-1.5203063,-1.5253363,-1.5516106,-1.5537826,-1.5158521,-1.5084947,-1.5627869,-1.2356787,-0.9963709,-1.1070646,-1.1425111,-1.1344445,-1.146174,-1.170484,-1.2363901,-0.8370316,0.62796557,0.9033047,0.58411527,0.3513357,0.19345504,0.08819762,0.06025863,-0.036525395,-0.13062827,-0.21687551,-0.22647598,-0.2711673,-0.3237133,-0.35164154,-0.3492068,-0.34317106,-0.34856623,-0.3725937,-0.37666196,-0.4627694,-0.4845216,-0.520729,-0.5306367,-0.59362566,-0.25432226,-0.13042891,-0.21936595,-0.26821956,-0.27307248,-0.26751274,-0.27594578,-0.26358125,-0.33551037,-0.37331808,-0.37471682,-0.36813936,-0.40142643,-0.4417585,-0.21207266,0.013089765,-0.091819435,-0.103122905,-0.10976513,-0.1281568,-0.11433764,-0.1423923,-0.15706603,-0.16460508,-0.1896222,-0.18394303,-0.16079792,-0.16449776,-0.13051961,-0.14012285,-0.13008071,0.19482799,0.5086453,0.6148598,0.619534,0.78346527,1.178945,1.2004822,1.3522676,1.5332994,1.7002506,1.9001011,1.9835565,1.9994707,2.063949,2.2986157,2.3174577,2.3298647,2.4793942,2.6454935,2.3248363,2.4682465,2.5069761,2.8441253,2.9141488,3.0401425,2.7031841,2.687018,2.932955,2.8932862,2.833071,2.4497116,2.558854,2.7904315,2.8991952,3.1254792,3.0939286,3.1723356,3.5770423,3.9498372,3.8076324,3.8897343,3.8807685,3.7959013,3.8050945,3.7633324,3.782062,4.053483,4.183548,4.1731224,4.3203897,3.9708538,3.9705663,4.334609,4.6353436,4.4523745,4.6397424,4.499287,4.327873,4.271208,4.196807,4.1655397,4.1359005,4.1653037,4.492588,4.5075817,4.705408,4.508358,4.8488665,4.503542,4.586115,4.4228773,4.3855314,4.314168,4.3353863,4.3130693,4.320085,4.4057007,4.476516,4.479677,4.464054,4.413856,4.2672544,3.970417,3.2172487,2.9176884,2.4832134,2.5552797,2.370029,2.8558059,3.5647175,3.9850507,4.1097045,4.2573485,4.2322855,3.7194963,3.1651733,2.6777415,2.4650228,2.3786104,2.7651842,3.0665317,3.3489652,3.8450613,3.8582227,4.162695,4.302973,4.3447638,4.3649197,4.005929,4.0805125,4.1637154,4.1798863,3.6819985,2.991292,2.1820428,1.7484035,1.5741786,1.511852,1.4134228,1.3389452,1.2795107,1.2160707,1.1209888,1.0515726,0.98370254,1.0298547,1.8914967,1.7610853,1.8825855,1.7199717,1.7355945,1.5393612,1.350644,1.3852499,1.6833719
+0.3642004,0.18595079,-0.036153805,-0.2057577,-0.30945337,-0.37196434,-0.39519644,-0.47084078,-0.35634112,-0.3353697,-0.410515,-0.4038306,-0.44858432,-0.5431429,-0.58513606,-0.61793077,-0.6374532,-0.706091,-0.73571277,-0.75932574,-0.8086339,-0.87648684,-0.90780264,-0.9338678,-0.7846908,0.09796782,0.23647709,0.48474598,0.70784366,0.4370793,0.23737298,0.15196538,-0.010073874,-0.15890089,-0.278169,-0.42565638,-0.15503557,0.14586246,0.3322192,0.21667056,0.03429557,-0.13589741,-0.288926,-0.4344256,-0.4250405,0.47803396,0.32802314,0.107684836,-0.09462874,-0.34855288,-0.53875315,-0.6669113,-0.6994623,-0.777562,-0.83488333,-0.86036474,-0.9148761,-0.9568287,-0.9920975,-1.0133225,-1.0485402,-1.0964379,-1.1388469,-1.1942753,-1.226449,-1.2566888,-1.2849283,-1.3245962,-1.4106636,-1.4183942,-1.4766036,-1.4872246,-1.3330257,-1.3858373,-1.4372718,-1.4666699,-1.5242577,-1.5904789,-1.6101885,-1.6329155,-1.6625669,-1.683392,-1.7411025,-1.7365222,-1.7829183,-1.8314905,-1.8365207,-1.8503153,-1.8637198,-1.708234,-1.1778475,-0.97284234,-0.9673057,0.038269702,0.05635107,-0.26655743,-0.489774,-0.6637718,-0.7932078,-0.9223728,-1.0231487,-1.1867533,-1.2405927,-1.3117085,-1.3834136,-1.4262213,-1.5004113,-1.574853,-1.653864,-1.7364898,-1.7833216,-1.8202109,-1.8504485,-1.8751531,-1.914236,-1.8991938,-1.9378959,-1.9695389,-2.0685155,-2.1255233,-2.1258008,-2.1580281,-2.1647105,-2.1820352,-1.8018789,-1.2752028,-1.0941699,-0.7659105,-0.78361195,-0.916036,-1.0359931,-1.1653154,-1.2602524,-1.2978116,-1.3568213,-1.4189255,-1.4666815,-1.5629056,-1.5799913,-1.6218594,-1.6590557,-1.7130592,-1.7247651,-1.7739604,-1.4751058,-1.2291031,-1.2998096,-1.353956,-1.4376682,-1.468317,-1.5044053,-1.5316951,-1.550484,-1.6452656,-1.6676664,-1.7290782,-1.7773552,-1.8568952,-1.876199,-1.8576436,-1.8770396,-1.9121548,-1.9083984,-1.894608,-1.9385953,-1.9951878,-1.8162934,-1.717206,-1.772481,-1.7936304,-1.7780156,-1.7626561,-1.7934915,-1.9116511,-1.6104312,-0.5237619,-0.22252195,-0.4388289,-0.58066493,-0.6884401,-0.7781714,-0.84994704,-0.91423166,-0.98284185,-1.069351,-1.1092839,-1.1942863,-1.2319881,-1.2672175,-1.2770275,-1.2720673,-1.2787095,-1.3189692,-1.3550055,-1.4157356,-1.4228292,-1.4211664,-1.474273,-1.543451,-1.6332885,-1.6685529,-1.6796653,-1.6775718,-1.641164,-1.6227806,-1.6235243,-1.34248,-0.8940451,-0.9551947,-1.0056881,-1.0620955,-1.0324614,-1.0222577,-1.0516756,-1.0768125,-0.9951735,-0.8922196,-0.90921104,-0.9404206,-0.95413756,-0.97789776,-1.0060214,-1.0077096,-1.0143371,-1.0108126,-0.9916885,-0.98040366,-0.98437226,-0.9636512,-0.9285461,-0.76956034,-0.49715036,-0.37913135,-0.42875355,-0.3862903,0.35427082,0.40700912,0.38223684,0.48922133,0.52452517,0.59386456,0.5616226,0.6440793,0.70519155,0.78506863,0.7469375,0.74965596,0.8424826,0.93767565,0.81316197,0.88904583,0.8690909,1.035661,0.8627384,0.7859731,0.68681777,0.5857351,0.6823722,0.5773178,0.64822954,1.0235314,1.2345752,1.402514,1.4940838,1.505667,1.6685748,1.8530557,2.2007287,2.6055293,2.750361,2.8747718,2.911909,2.9041893,2.9455814,2.9496877,2.9950485,3.0030808,3.0386224,3.1584363,3.487969,3.423667,3.3734667,3.6546984,3.6149788,3.5941648,3.572126,3.4073093,3.4166584,3.1901073,3.1570096,3.1705837,3.1833525,3.188825,3.4686437,3.6049075,3.8340926,3.720689,3.9863825,3.8687596,3.8896866,3.8448567,3.826798,3.749886,3.7585633,3.7377005,3.7488198,3.8088584,4.015552,3.8716152,3.93664,3.783443,3.5739572,3.0566993,2.3922791,2.0097933,1.5079435,1.2849967,1.1824734,1.125871,1.2876529,1.378267,1.3952217,1.2744732,1.1071413,1.1584176,1.0190377,0.9795215,0.804536,0.9415966,1.2106034,1.2879822,1.332339,1.4067291,1.26172,1.3769025,1.3310888,1.3488759,1.2756878,1.0657501,1.1216822,1.3718746,1.4334285,1.2053325,0.9311916,0.75890267,0.6158661,0.5304244,0.48258978,0.42457107,0.37186396,0.2901953,0.227383,0.16223001,0.09105708,0.025420126,-0.008885819,0.7308916,0.9122631,0.8971783,0.8895565,1.3156772,1.3006514,0.9354007,0.7849723,1.3482096
+0.8957425,0.8788332,0.43847883,0.028190572,-0.12814121,-0.21083462,-0.26848227,-0.27819645,0.85559094,0.85966784,0.5710867,0.2982303,0.085639924,-0.06693831,-0.046880107,0.14128652,0.1502317,0.045132954,-0.03380659,-0.15442064,-0.2634262,-0.38567358,-0.51783043,-0.5211568,-0.22451366,0.6567645,0.50518435,0.6791331,0.91251916,1.0379391,0.79757625,0.59387517,0.44420788,0.19929783,-0.003505893,-0.18995664,-0.1598143,0.02392799,0.033369306,-0.07216807,-0.20087759,-0.2553127,-0.35586128,-0.4565744,-0.5514751,-0.5647288,-0.45967665,-0.40651584,-0.48740807,-0.61133,-0.7767298,-0.84186864,-0.79172117,-0.81646204,-0.83365655,-0.78270555,-0.695973,-0.74634254,-0.7877023,-0.82714397,-0.8548582,-0.88518906,-0.9272502,-0.9762715,-1.0148759,-1.0519879,-1.1202953,-1.1829234,-1.2051526,-1.2693466,-1.3200103,-1.2801106,-1.1847783,-1.182674,-1.1310899,-1.2119977,-1.2800627,-1.3152645,-1.333822,-1.396178,-1.3942001,-1.4405645,-1.5014209,-1.5620778,-1.613364,-1.6322187,-1.6454688,-1.6539173,-1.6613166,-1.6991122,-1.7045281,-1.2073805,-0.93420106,-0.9218564,-0.9542634,-1.0866033,-1.1822753,-1.2526903,-1.310431,-1.3637632,-1.4258106,-1.4718959,-1.5129447,-1.5405679,-1.5596316,-1.5907795,-1.6356248,-1.6744728,-1.7117934,-1.7473559,-1.7886665,-1.8196329,-1.8430445,-1.8561127,-1.8825682,-1.9054272,-1.9189153,-1.9157184,-1.9340256,-1.9829971,-2.0228238,-1.3870553,-0.77319604,-0.013662815,0.11455944,0.19039525,-0.048327725,0.05168358,-0.04534844,-0.33128846,-0.50331175,0.15653187,0.53504825,-0.050690193,-0.28700697,-0.40854725,-0.56645787,-0.66758573,-0.7611848,-0.8634982,-0.925488,-0.9647097,-0.9671478,-0.8763036,-0.47835058,-0.46067905,-0.6487708,-0.7642591,-0.21184497,-0.046671346,-0.39029726,-0.5247421,-0.63078713,-0.6981361,-0.58287054,-0.7233163,-0.83823925,-0.92323077,-0.9695358,-1.0125363,-1.0610924,-1.1167719,-1.168876,-1.2084401,-1.2597346,-1.299772,-1.1972989,-1.2182986,-1.2490065,-1.2768955,-1.3022964,-1.3284194,-1.3597558,-0.8225129,0.74400324,0.6006918,0.22411595,-0.033884067,-0.16843884,-0.2838947,-0.36182597,-0.09545502,-0.1316385,-0.31132266,-0.42253375,-0.5937041,-0.6351105,-0.6141358,-0.6495148,-0.6656143,-0.67931044,-0.7228364,-0.7784535,-0.85376,-0.8871019,-0.9399526,-0.97154975,-1.0147932,-1.0768267,-1.1333605,-1.1542273,-1.2003524,-1.1834936,-1.1451231,-1.1353877,-1.1628201,-1.1351733,-0.11538604,-0.078868136,-0.35415906,-0.4984658,-0.5426825,-0.61134183,-0.6626855,-0.70651317,-0.71403575,-0.7211546,-0.7234645,-0.7409518,-0.75552547,-0.7743585,-0.79494256,-0.80504894,-0.82098806,-0.8221016,-0.8276956,-0.83695453,-0.8472615,-0.8520715,-0.8820996,-0.6807009,-0.38668522,-0.31629822,-0.3394124,0.61296695,0.8392202,0.84139514,1.0015364,1.2184188,1.3357605,1.4083713,1.4315574,1.5005502,1.5416172,1.6208079,1.7061536,1.718369,1.7395408,1.7507457,1.72876,1.7302467,1.7672517,1.836142,1.8535995,2.02289,2.0057652,2.0172844,2.0303607,2.0426319,2.405431,2.1598692,2.1888995,2.328147,2.408284,2.4572558,2.5717087,2.7964911,3.134814,3.2990434,3.2937355,3.3316011,3.3520675,3.4438229,3.4471984,3.4205933,3.4282334,3.3776903,3.3736181,3.391242,3.4976037,3.4813669,3.3922057,3.5233998,3.5902147,3.6781335,3.666766,3.6807823,3.6780336,3.7685378,3.754911,3.6938791,3.6326792,3.578807,3.582334,3.7326508,3.7287002,3.6395755,3.9176536,3.708618,3.5438914,3.4915125,3.506934,3.5271845,3.596409,3.6683888,3.680621,3.6851213,3.6924798,3.7150655,3.7709105,3.8027256,3.8082995,3.8845785,4.027405,4.1878233,4.285848,3.7795658,3.549651,3.5772977,3.6399105,3.6406941,3.6002753,3.5706468,3.6930788,3.7275605,3.7303793,3.8152087,3.8410716,3.7561076,3.5892015,3.5000975,3.4846616,3.4660273,3.49577,3.5335243,3.620898,3.6986327,3.6998193,3.6619642,3.601482,3.5858903,3.6749516,3.727506,3.6808674,3.3384697,2.620356,2.161802,1.7011435,1.1217568,0.7420298,0.54407555,0.4358404,0.35659826,0.30400392,0.25347835,0.22090302,0.9623766,0.9056342,0.9607324,1.0369425,1.0683458,1.072758,1.1504716,1.0934691,1.4828768
+-0.63542604,-0.92806005,-0.9907129,-1.086765,-1.1651155,-1.2571507,-1.314444,-0.9086539,0.0133390725,0.0055454336,0.14955766,0.041712906,-0.20834698,-0.42943376,-0.58595735,-0.6134956,-0.68318194,-0.8159666,-0.93143463,-1.070025,-1.2084718,-1.3597441,-1.4751846,-1.5310069,-1.6497164,-1.6201546,-1.6280572,-1.3648257,-0.9178051,-0.5466454,-0.3000441,-0.46817878,-0.6419189,-0.8055131,-0.96842766,-1.0041751,-0.10354124,0.16093202,-0.21377805,-0.5759647,-0.7529503,-0.88334215,-1.0501935,-1.207493,-1.0729382,-1.1129427,-1.2199875,-1.1230986,-1.1817654,-1.3614202,-1.5325199,-1.6287988,-1.6910625,-1.7653633,-1.8014592,-1.831224,-1.8697132,-1.9059209,-1.9481869,-1.9781785,-2.0001037,-2.0303314,-2.079635,-2.136619,-2.1679368,-2.2129772,-2.2626026,-2.3143792,-2.33734,-2.3668513,-2.397316,-2.372765,-2.2551312,-2.2657688,-2.3152566,-2.3525944,-2.3876812,-2.4068453,-2.3988647,-2.436347,-2.4007316,-2.4880748,-2.5407329,-2.5303874,-2.547473,-2.5560288,-2.5358634,-2.5108714,-2.6016884,-2.430891,-2.355698,-2.039422,-1.5006235,-1.3638427,-1.5293908,-1.642081,-1.7528591,-1.8560312,-1.9379208,-2.003109,-2.0760937,-2.1308064,-2.1661172,-2.210369,-2.2479806,-2.2657666,-2.3168757,-2.3694546,-1.9896406,-1.4679774,-1.3939745,-1.3157557,-1.3438008,-1.4920752,-1.5994292,-1.7027386,-1.7918979,-1.8126673,-1.5943937,-1.5034463,-1.5178175,-1.375103,-0.43723145,0.06429729,0.29765606,0.46421966,0.051487405,-0.186655,-0.35171103,-0.5496925,-0.71301407,0.11630608,0.34478223,-0.07877769,-0.3167191,-0.4573782,-0.61774516,-0.7560401,-0.8761843,-0.9785657,-0.8585007,-0.9116493,-0.672073,-0.4467497,-0.16646568,-0.25042123,-0.5384812,-0.67140937,-0.40914127,-0.3556621,-0.55957425,-0.7337837,-0.8481629,-0.8237572,-0.5132603,-0.4221747,-0.5141364,-0.73479044,-0.8842077,-0.9987632,-1.0919676,-1.1734136,-1.2225565,-1.3290832,-1.2630303,-1.352199,-1.4439123,-1.4902104,-1.5394151,-1.573535,-1.6135454,-1.662849,-1.4534454,-0.2725093,0.560872,0.44782585,0.027359001,-0.1875829,-0.31438154,-0.4231042,-0.38626114,0.16927966,1.1445922,0.6940473,0.33392304,0.13486497,-0.062299833,-0.15201542,-0.22486387,-0.29980096,-0.37623912,-0.4756274,-0.57445943,-0.6716662,-0.73928523,-0.80766964,-0.8725872,-0.9524462,-1.0417778,-1.1280906,-1.1385934,-1.1417229,-1.1639994,-1.1437249,-1.190663,-1.224711,-1.2839184,-0.29517275,0.17198579,-0.17145231,-0.34369826,-0.43529108,-0.50352544,-0.5455823,-0.5929207,-0.63563025,-0.67115545,-0.7427068,-0.79072267,-0.8269371,-0.84570706,-0.8675263,-0.8865673,-0.9023063,-0.9134933,-0.9336622,-0.9620514,-0.9722768,-0.9881895,-1.0462143,-1.0521234,-0.9933446,-0.919664,-0.9532993,-0.28495538,0.31354207,0.0021405555,-0.067624286,-0.05831771,-0.030772712,-0.07216053,0.011687387,0.10263117,0.28114772,0.38048524,0.41683644,0.42132732,0.44922304,0.46203607,0.41104266,0.37686062,0.39499316,0.39603788,0.27332434,0.13059609,-0.032406818,-0.13347957,-0.17017567,-0.20391794,0.45839524,0.69901067,0.71110773,1.0554264,1.2231047,1.2897463,1.7270944,1.5686376,1.4845749,1.2975979,1.5955894,1.9413238,2.0948522,2.2025394,2.2937398,2.4185214,2.3897247,2.1961544,2.2028425,2.0863514,1.7892237,1.4896693,1.7034802,1.7480184,1.499167,1.1568239,0.9880564,0.83289206,0.80099666,0.80136275,0.5835521,0.51020885,0.6546527,0.76008,1.1105764,1.4086578,1.506536,1.5323163,1.9554459,1.8425686,2.1787686,2.4049735,2.552074,2.6357083,2.6836696,2.7350125,2.787821,2.8283746,2.8474321,2.8230655,2.7500858,2.6972272,2.5507667,1.94007,1.1656744,0.6559928,0.46387398,0.57848006,0.7891984,0.6350806,0.399811,0.33237892,0.36369276,0.38895547,0.3712531,0.4999081,0.42244035,0.3721224,0.23664893,0.024498496,-0.0008681528,0.13930239,0.20321526,0.29671818,1.148628,0.9196469,1.15937,1.2546835,1.0913919,0.6102412,0.29960442,0.25227866,0.24515976,0.124182746,-0.0025417358,-0.08897479,-0.16426027,-0.23444884,-0.29010573,-0.36650825,-0.4637997,-0.5175801,-0.58351207,-0.6681372,-0.74116886,-0.7738166,-0.8167439,-0.25603795,0.013237637,-0.15392074,-0.2840651,-0.42135063,-0.37847406,-0.3399571,-0.4445993,-0.45164984
+-0.9192766,-1.1297287,-1.238694,-1.3665323,-1.4502277,-1.5446572,-1.6406249,-0.9362353,-0.24786606,0.022626657,0.68610996,0.22066884,-0.09903875,-0.3351856,-0.5484164,-0.66312325,-0.7546706,-0.86199236,-0.9902115,-1.1266351,-1.2331923,-1.3678577,-1.4904292,-1.586637,-1.7360086,-1.7222257,-1.7827141,-1.829343,-1.7078211,-1.590911,-0.6146145,-0.4058463,-0.5590735,-0.7419431,-0.9332149,-1.1310648,-0.10809907,-0.0038862452,-0.28796092,-0.5521927,-0.7194052,-0.86585474,-1.0031056,-1.1417928,-1.2729771,-1.4309611,-1.1410296,-0.40707988,-0.44314003,-0.75775594,-1.0432801,-1.2323797,-1.3404893,-1.4355316,-1.5201883,-1.6172824,-1.7004027,-1.7492748,-1.7853419,-1.8389478,-1.9489882,-1.9941797,-2.0289755,-2.1023984,-2.1933017,-2.2737224,-2.3002758,-2.344302,-2.4085221,-2.4481006,-2.4853966,-2.5240846,-2.4951556,-2.5447354,-2.523409,-2.5125613,-2.5220928,-2.5323904,-2.5244951,-2.5803566,-2.5773945,-2.6497226,-2.6781368,-2.6709065,-2.6875606,-2.706954,-2.7177982,-2.774651,-2.4926739,-2.2259588,-2.2131429,-2.062349,-1.7953565,-1.6678317,-1.7849739,-1.901711,-2.0149305,-2.1171021,-2.1886482,-2.2509885,-2.305343,-2.3481174,-2.381228,-2.4154456,-2.460146,-2.4783916,-2.510398,-2.5435977,-2.6041079,-2.5642438,-1.526428,-0.8714205,-0.9603713,-1.1717349,-1.312398,-1.460155,-1.5383754,-1.3738577,-1.3750852,-1.416177,-1.0621784,-0.9201237,-0.75009024,0.2760073,0.22523807,0.03883643,-0.17993753,0.07304895,0.021513004,-0.28357223,-0.45943856,0.19614176,0.10141246,-0.11956398,-0.32219696,-0.52117294,-0.6825288,-0.852023,-0.9774894,-1.012656,-0.8500356,-0.9423915,-0.80986196,0.04437733,0.20179681,-0.08038908,-0.34596482,-0.45001304,0.47788876,0.4963305,0.10934079,-0.09523235,-0.24208234,-0.40658665,-0.19029686,-0.031097975,-0.28630275,-0.5086785,-0.66616315,-0.79263,-0.7934061,-0.8761094,-0.93832755,-1.0248405,-1.1472917,-1.2655926,-1.3734763,-1.4204779,-1.4721323,-1.5075703,-1.5652893,-1.6285746,-0.93507826,0.12030642,0.24317746,0.19599037,-0.14264882,-0.28187248,-0.41789916,-0.5400158,-0.5438856,-0.6479368,-0.65718806,-0.52658963,-0.6322339,-0.7926116,-0.8347832,-0.9462719,-1.0259722,-1.0372608,-1.1154363,-0.9497739,-1.0322068,-1.1013391,-1.1679279,-1.1912917,-1.2226064,-1.2670084,-1.321693,-1.3818843,-1.4298776,-1.4039654,-1.3931353,-1.3927323,-1.4359007,-1.4515536,-1.4905896,-0.9482611,-0.32002324,-0.44241923,-0.54983836,-0.6738628,-0.7782035,-0.8640238,-0.91458,-0.9362438,-0.9440284,-1.0114435,-1.0717928,-1.0712994,-1.0552546,-1.0387807,-1.0525413,-1.0721908,-1.0934286,-1.1251354,-1.136342,-1.1369091,-1.1526961,-1.179491,-1.211489,-1.2296821,-1.1792607,-1.2488703,-0.18198891,0.32439923,0.034517225,-0.078354806,-0.10741907,-0.11724934,-0.24671058,-0.011631679,-0.026679154,-0.017371472,0.025600675,0.039423812,-0.011386346,-0.009820562,-0.015579816,-0.07196601,-0.11720009,-0.11732142,-0.14923355,-0.20912682,-0.27882412,-0.33231956,-0.38256836,-0.4073612,-0.40670678,0.27329803,0.63701165,0.43134624,0.5514681,0.6100553,0.34058595,1.4050257,1.1999316,1.1096281,1.0260856,1.1593091,1.3161447,1.278197,1.171416,0.9660461,1.0902698,1.4583955,1.0774825,0.936636,0.79100716,0.6202768,0.59071934,0.6019292,0.58676934,0.42862147,0.5564942,0.36915618,0.2678698,0.24900757,0.48027837,0.662083,0.5635133,0.4671142,0.44035465,0.5309117,0.951682,1.5610528,1.1724203,1.297039,1.1480031,1.3373718,1.7111186,2.025095,2.2039027,2.2683585,2.2348654,2.0840874,1.916206,1.7022207,1.3234057,0.9926318,0.87888575,0.73802215,0.4713508,0.3215106,0.24505453,0.17831135,0.16874464,0.58698386,0.6207242,0.41512468,0.33629107,0.29410008,0.18290693,0.44777733,1.2443585,0.8476599,0.6246671,0.3959273,0.23603307,0.20634331,0.2622149,0.2597645,0.44737494,1.7761602,1.0456564,1.1343894,1.066129,0.824605,0.50931346,0.28413254,0.28067496,0.28843895,0.20122443,0.10541284,0.03692812,-0.028498534,-0.091126785,-0.14978135,-0.21993573,-0.31731427,-0.3712412,-0.43887782,-0.51570696,-0.5804979,-0.6422007,-0.7459417,0.12700461,0.20566282,-0.053379185,-0.18027218,-0.3323065,-0.1298708,-0.14153232,-0.33637118,-0.4872646
+-2.4240441,-2.3191264,-2.3673983,-2.4245071,-2.4552422,-2.4772036,-2.5612612,-2.3370762,-2.1961355,-2.124875,-1.7964511,-1.8323154,-1.9047773,-1.9938447,-2.0565224,-2.0893242,-2.1243832,-2.1501215,-2.1849184,-2.2170887,-2.249319,-2.297096,-2.3406081,-2.369525,-2.4165788,-2.4691818,-2.4858375,-2.5137105,-2.586688,-2.4367313,-2.1117275,-2.1237876,-2.1794236,-2.1977048,-2.2410655,-2.3432045,-2.2481132,-2.2003875,-2.2337904,-2.2754104,-2.2979822,-2.3213425,-2.3324637,-2.381049,-2.4224339,-2.4614058,-2.5033896,-2.3250575,-2.1859999,-2.2300124,-2.2948403,-2.3428202,-2.3680637,-2.3956988,-2.4222484,-2.4534109,-2.4752648,-2.486556,-2.48338,-2.5096776,-2.5379782,-2.5628982,-2.5679936,-2.587696,-2.6365538,-2.6713247,-2.6787293,-2.6750708,-2.7030387,-2.724993,-2.7487717,-2.7608662,-2.766271,-2.8070107,-2.7848268,-2.7785523,-2.7818704,-2.7846107,-2.7918534,-2.8545947,-2.8661475,-2.8623993,-2.881043,-2.861791,-2.8723211,-2.873003,-2.9296346,-2.9208305,-2.9364195,-2.91298,-2.9182315,-2.9059873,-2.716642,-2.6380253,-2.6647615,-2.7140527,-2.7304225,-2.735763,-2.7453108,-2.7715847,-2.7839432,-2.7995107,-2.8051403,-2.8017726,-2.8275833,-2.8411145,-2.8396611,-2.8530304,-2.849668,-2.8712854,-2.873407,-2.8517475,-2.8861606,-2.8909347,-2.8888695,-2.9013326,-2.9125853,-2.9122646,-2.9090135,-2.9213514,-2.5651507,-2.3037105,-2.2618937,-2.2950525,-2.3187842,-2.3129716,-2.2327642,-2.2075126,-2.3285303,-2.3873248,-2.4824338,-2.303414,-2.266407,-2.2976828,-2.3830385,-2.4115236,-2.4431086,-2.4678962,-2.4924436,-2.29254,-1.7488141,-1.520586,-1.4347463,-1.4959675,-1.6372509,-1.7535727,-1.8890184,-2.0063596,-2.0267174,-2.096229,-2.132018,-2.1638842,-2.215004,-2.2907982,-2.3366342,-2.3594828,-2.3759756,-2.4037533,-2.4401593,-1.6658047,-0.8030258,-1.0608526,-1.3335676,-1.5203315,-1.6672318,-1.8124957,-1.8929613,-1.9174331,-1.9635403,-2.0192962,-2.0688426,-2.1391964,-2.2026138,-2.2652688,-2.1706975,-2.0879831,-2.1152053,-2.1725476,-2.207004,-2.2378485,-2.2945719,-2.316769,-2.339357,-2.3773084,-2.3764243,-2.2450957,-2.2527776,-2.345754,-2.391324,-2.3479323,-2.352058,-2.3821359,-2.439336,-2.45289,-2.4774046,-2.4535344,-2.4520984,-2.4643598,-2.5026102,-2.5386572,-2.5995595,-2.5816364,-2.5189748,-2.5246923,-2.5349946,-2.551494,-2.5813494,-2.643807,-2.667696,-2.6347933,-2.6158845,-2.6058445,-2.6779146,-2.709361,-2.707697,-2.6677794,-2.6682785,-2.728156,-2.620185,-2.6244512,-2.6378298,-2.6309824,-2.6154919,-2.631579,-2.6414826,-2.6467984,-2.6264489,-2.6259162,-2.6103196,-2.5894308,-2.6188755,-2.5840287,-2.591065,-2.4908776,-1.5250558,-1.0628829,-1.2044529,-1.2970748,-1.3801025,-1.4516138,-1.5468401,-1.4003887,-1.185117,-1.2337065,-1.2793994,-1.3054974,-1.4006925,-1.4528491,-1.4728478,-1.53927,-1.5799382,-1.5969229,-1.6060622,-1.6187334,-1.6234933,-1.6502004,-1.6864103,-1.7094458,-1.7169876,-1.7320462,-1.759949,-1.7502363,-1.74177,-1.744874,-1.735272,-1.1672099,-0.5210206,-0.52524966,-0.40796375,-0.6819524,-0.785801,-0.8534652,-0.9092108,-0.9385525,-0.77535486,-0.27090827,-0.49162835,-0.6883593,-0.7779472,-0.8488442,-0.895887,-0.9655825,-1.018645,-1.0986454,-1.1777136,-1.2318034,-1.2905974,-1.2948313,-1.3207552,-1.3845358,-1.4010168,-1.4229643,-1.4878871,-1.4879712,-1.196049,-0.4436471,-0.65135753,-0.7471148,-0.83477324,-0.9155166,-0.97392917,-1.027342,-1.0591958,-1.094796,-1.1480719,-1.212942,-1.2581779,-1.294937,-1.3494229,-1.3988327,-1.4294538,-1.4809635,-1.5244707,-1.5673301,-1.5764463,-1.5894148,-1.6319792,-1.4417968,-1.2678415,-1.3052863,-1.3985358,-1.483104,-1.5388061,-1.449118,-0.6849052,-0.50589836,-0.73858535,-0.8848443,-0.9869245,-1.0779318,-1.1620965,-1.2485929,-1.2673702,-0.3437754,-0.63428134,-0.87769866,-1.0635492,-1.1896921,-1.2908933,-1.3698084,-1.433044,-1.4971983,-1.5616317,-1.610678,-1.6653109,-1.7144321,-1.7608745,-1.8028573,-1.846391,-1.8828099,-1.9177685,-1.94738,-1.9778732,-2.0223067,-2.0657024,-2.126593,-2.0667045,-2.0133448,-2.0269513,-2.080801,-2.1149492,-2.1540258,-2.154522,-2.1724734,-2.229076
+-2.232083,-2.3393893,-2.4995282,-2.5783634,-2.6254373,-2.6927958,-2.7605224,-2.7137728,-2.823604,-2.166678,-1.4729875,-1.6744373,-1.7881248,-1.8965328,-1.9825583,-2.072546,-2.1303804,-2.1585307,-2.199203,-2.2387633,-2.2638965,-2.340054,-2.4213114,-2.4910836,-2.5289698,-2.5948598,-2.6057508,-2.6475942,-2.7130687,-2.7157574,-2.7862225,-2.8011954,-2.8180568,-2.8037484,-2.7510827,-2.8312821,-2.907868,-2.9161468,-2.9107223,-2.8995738,-2.9002032,-2.9279337,-2.9087176,-2.8909097,-2.907855,-2.9224033,-2.9521332,-2.9858608,-2.9952264,-2.9436114,-2.9327493,-2.980171,-2.9787781,-2.9756236,-2.9860554,-3.007952,-3.0096629,-2.9896245,-2.9526088,-2.9737825,-2.9913945,-2.9966772,-3.0125828,-3.0277908,-3.0784073,-3.0786023,-3.0573585,-3.0220718,-3.0303998,-3.0467386,-3.0580044,-3.0736089,-3.0742514,-3.0999818,-3.0936794,-3.078648,-3.0895574,-3.0969787,-3.1123447,-3.166114,-3.1217723,-3.0628674,-3.1117058,-3.1009235,-3.1030455,-3.1175919,-3.1604044,-3.177156,-3.1721182,-3.073966,-2.3663254,-2.1906471,-2.337698,-2.4464095,-2.5103798,-2.5646398,-2.5910954,-2.6484032,-2.6935568,-2.7280226,-2.779374,-2.7973075,-2.8046076,-2.8380737,-2.8762016,-2.8642278,-2.8732562,-2.9021926,-2.9088426,-2.927895,-2.9384418,-2.9420705,-2.9530864,-2.9128618,-2.9680705,-2.9568133,-2.9664679,-2.9504468,-2.9467363,-2.9767768,-1.8820527,-1.3476665,-1.1909366,-1.2695607,-1.5174394,-1.697058,-1.8483,-1.9591644,-2.061706,-2.1504028,-2.2681894,-2.3509114,-2.406786,-2.4403963,-2.4793,-2.4941053,-2.5123105,-2.5284228,-2.5625453,-2.618813,-2.6280556,-2.684766,-2.406376,-2.2109265,-2.303637,-2.3990893,-2.4528537,-2.5043626,-2.5434976,-2.5855095,-2.6128454,-2.5943804,-2.5911875,-2.6645322,-2.6575322,-2.6841311,-2.710499,-2.7467031,-2.7704668,-2.7325408,-2.6399684,-2.738542,-2.737026,-2.7261405,-2.756692,-2.7849233,-2.8247962,-2.8399992,-2.8150907,-2.8232446,-2.8375258,-2.8493748,-2.850706,-2.866955,-2.8454113,-2.916689,-2.8969517,-2.8972006,-2.8445697,-2.902465,-2.9050214,-2.8872085,-2.9081473,-2.8944538,-2.930614,-2.9426744,-2.9346757,-2.9376543,-2.979215,-2.9660769,-2.931157,-2.91984,-2.9334047,-2.9402602,-2.9624648,-2.9719338,-2.953805,-2.9424396,-2.9633546,-2.993163,-3.0004044,-3.0155072,-2.9881573,-2.970273,-2.9194574,-2.9310145,-2.9496837,-3.0134568,-3.0491576,-2.9924974,-2.9443908,-2.961509,-2.9859965,-3.0381637,-3.0524364,-3.016902,-3.0226252,-3.042694,-3.0411687,-3.027091,-3.0272336,-3.0288296,-3.022441,-3.0178328,-3.0429661,-3.0333114,-3.0186105,-3.0181336,-3.011518,-2.9803104,-3.0283113,-2.9667363,-2.9870594,-3.0017917,-2.952313,-2.9740298,-2.9984474,-3.0033324,-2.968066,-2.9806163,-2.967341,-2.9860787,-3.0109606,-2.927597,-2.933773,-2.9730802,-2.9468231,-2.939895,-2.9276838,-2.9408026,-2.918621,-2.9149117,-2.9275007,-2.9146554,-2.9005575,-2.897821,-2.8949199,-2.8904548,-2.8798175,-2.842432,-2.9114876,-2.8182669,-2.8751998,-2.8669853,-2.8546252,-2.331173,-1.7219025,-1.4270494,-0.96022886,-1.1577132,-1.3330493,-1.4207726,-1.5218539,-1.6197875,-1.6863852,-1.2510672,-0.93953216,-1.0498192,-1.1368319,-1.2246543,-1.2807319,-1.3725879,-1.4667863,-1.5379701,-1.5902276,-1.641643,-1.6928647,-1.7504439,-1.7813072,-1.8325293,-1.8852987,-1.9279525,-1.9406992,-1.9634007,-1.6274424,-0.7252538,-0.8684596,-1.0670843,-1.033267,-1.0735233,-1.1952608,-1.3038683,-1.366774,-1.4089457,-1.450237,-1.4734128,-1.4990118,-1.5425315,-1.5852431,-1.6278108,-1.662519,-1.7273839,-1.7895427,-1.8215928,-1.8683836,-1.8781745,-1.9307225,-1.9756266,-1.9750723,-2.0056946,-2.065856,-2.0783362,-2.106864,-1.6886094,0.17194797,-0.1421681,-0.43282554,-0.63031733,-0.75359315,-0.8644836,-0.9436972,-1.1089329,-1.219121,-1.3656467,-1.4863282,-1.5781455,-1.6312921,-1.6491288,-1.7733366,-1.8701003,-1.9245231,-1.9607166,-1.9884531,-2.0188928,-2.0721378,-2.0794082,-2.1188173,-2.1621041,-2.1818516,-2.2308521,-2.277975,-2.2830372,-2.3331811,-2.374321,-2.391921,-2.4633403,-2.4677703,-2.4602492,-2.4582543,-2.4952934,-2.4975443,-2.5427957,-2.5410557,-2.535715,-2.548649
+-1.7890444,-2.1297958,-2.2985864,-2.3946447,-2.493903,-2.7242765,-2.788288,-2.7090704,-2.7526937,-2.4713712,-2.3463974,-2.4010706,-2.4551415,-2.4941027,-2.5380735,-2.5821793,-2.6260133,-2.6484053,-2.6842008,-2.7199287,-2.7468748,-2.7841632,-2.7953086,-2.8179357,-2.8377357,-2.8609629,-2.878632,-2.8933036,-2.912764,-2.9225261,-2.9392636,-2.9526498,-2.9515274,-2.9567099,-2.9718091,-2.9941292,-3.0092373,-3.0179007,-3.0207653,-3.0294013,-3.0299919,-3.0269644,-3.0551476,-3.0592723,-3.0676768,-3.0768342,-3.0920653,-3.1008246,-3.1109557,-3.1074247,-3.109499,-3.1293602,-3.133529,-3.1457086,-3.1444702,-3.149898,-3.1456459,-3.1476371,-3.15584,-3.1596408,-3.1623547,-3.1660652,-3.1553683,-3.156722,-3.1586466,-3.167768,-3.1731749,-3.1584897,-3.1809046,-3.1711807,-3.1877465,-3.2060566,-3.2104812,-3.216326,-3.2036023,-3.2087855,-3.2071028,-3.204671,-3.231366,-3.209534,-3.176718,-3.188912,-3.23817,-3.2387605,-3.198905,-3.2106125,-3.2080293,-3.2219763,-3.2375052,-3.225748,-3.2237759,-3.224357,-3.2248302,-3.249195,-3.2586462,-3.2546053,-3.2374916,-3.2206361,-3.2346349,-3.2608912,-3.269917,-3.242495,-3.2569132,-3.2634456,-3.251029,-3.2744126,-3.2679782,-3.2610378,-3.2694228,-3.2658627,-3.2729816,-3.2561665,-3.2295947,-3.196403,-3.2098098,-3.2658334,-3.275982,-3.2638793,-3.238843,-3.2344036,-2.0401468,-1.1508759,-1.2778146,-1.4486169,-1.6142719,-1.7706159,-1.8999379,-2.0135126,-2.1164653,-2.1684737,-2.194095,-2.2717428,-2.3703966,-2.4621425,-2.5059028,-2.538186,-2.5675645,-2.5689561,-2.5658658,-2.6379943,-2.7062109,-2.6608996,-2.6785433,-2.7315128,-2.7643251,-2.7857733,-2.7715993,-2.797687,-2.8500624,-2.85569,-2.862731,-2.8723814,-2.8398857,-2.8313732,-2.8994174,-2.918507,-2.932776,-2.9357185,-2.3826914,-0.4068346,-0.4856138,-0.77112514,-0.90975386,-1.0182487,-1.2153443,-1.4081751,-1.5543299,-1.6749159,-1.7626009,-1.8559415,-1.9128141,-1.9828703,-2.0619204,-2.1347218,-2.1703916,-2.1979837,-2.232876,-2.23003,-2.121439,-2.0650725,-2.2093558,-2.25251,-2.3082752,-2.3632607,-2.411572,-2.421475,-2.4222763,-2.4262543,-2.4571486,-2.469761,-2.4590788,-2.4694452,-2.4854193,-2.4810586,-2.5090127,-2.5381498,-2.5447946,-2.5335064,-2.5575106,-2.5812678,-2.5854702,-2.5986392,-2.6204333,-2.6238816,-2.6131601,-2.6254702,-2.6931968,-2.7003074,-2.706839,-2.6895778,-2.6727948,-2.6761339,-2.7006333,-2.715876,-2.7297492,-2.716466,-2.7195742,-2.7203221,-2.7384648,-2.721387,-2.7064788,-2.717613,-2.7257605,-2.7276616,-2.7272842,-2.7337723,-2.7353683,-2.7364974,-2.7336655,-2.736538,-2.7367342,-2.7844794,-2.792768,-2.7892613,-2.7778535,-2.7927713,-2.7948446,-2.7979183,-2.8176188,-2.791594,-2.7717175,-2.7652898,-2.8163345,-2.794333,-2.7763705,-2.7436652,-2.6557288,-2.6070938,-2.580012,-2.5697865,-2.5956202,-2.6191335,-2.6298637,-2.6138494,-2.6070848,-2.6105897,-2.6077719,-2.595164,-2.5851598,-2.5885887,-2.5920334,-2.6336484,-2.6053886,-2.655037,-1.8991548,-0.59169567,-0.63123643,-0.75634915,-0.8067032,-1.0143658,-1.0732749,-1.146652,-1.1786175,-1.2043833,-1.2576723,-1.2645352,-1.2985755,-1.3593695,-1.4414475,-1.4758637,-1.5175246,-1.5652869,-1.5778267,-1.593069,-1.61967,-1.6632423,-1.6890148,-1.7161208,-0.55993956,-0.26924184,-0.6178098,-0.7608777,-0.89187425,-0.96395147,-0.95182776,-0.99654186,-1.1384805,-1.2122672,-1.2598343,-1.371222,-1.4529488,-1.5075903,-1.5713336,-1.590231,-1.5832725,-1.5895443,-1.5968809,-1.626527,-1.6586328,-1.6815604,-1.7055426,-1.7354949,-1.7723635,-1.8025298,-1.8197551,-1.8070594,-1.8240842,-1.8674693,-1.9134507,-1.9414462,-1.9605361,-1.982435,-1.9859884,-0.551898,-0.11578184,-0.4764125,-0.7353757,-0.866925,-0.95154536,-1.1002252,-1.1941276,-1.2331736,-1.2694736,-1.32998,-1.4448024,-1.5310632,-1.5637524,-1.58544,-1.6450763,-1.7232955,-1.792543,-1.816233,-1.8601155,-1.8940976,-1.9672668,-2.0223172,-2.0741796,-2.1329606,-2.197065,-2.273765,-2.30658,-2.3641663,-2.4129536,-2.4113793,-2.4516728,-2.498483,-2.4938323,-2.5180843,-2.5156593,-2.5231762,-2.5455067,-2.5588372,-2.5731008,-2.5878139,-2.6096365
+-1.8109099,-2.2355545,-2.379868,-2.438011,-2.4581196,-2.6389108,-2.5896122,-2.5727854,-2.628597,-2.516562,-2.5034037,-2.570819,-2.5753312,-2.5900965,-2.6118188,-2.6224277,-2.6529844,-2.688855,-2.7331648,-2.740435,-2.7763696,-2.812447,-2.8289263,-2.8362603,-2.8420224,-2.8467383,-2.8656552,-2.8762898,-2.8760805,-2.8890648,-2.8987944,-2.910552,-2.913504,-2.9174206,-2.9371147,-2.955793,-2.9535346,-2.9623637,-2.974387,-2.9685802,-2.9651766,-2.9611144,-2.981988,-2.9975734,-3.005527,-2.9969592,-3.0065446,-3.0125961,-3.017018,-3.0215297,-3.0257807,-3.0448365,-3.0393124,-3.0349002,-3.0603015,-3.0443053,-3.0286717,-3.032568,-3.055671,-3.0544066,-3.0519726,-3.0527349,-3.0520563,-3.0566823,-3.0516138,-3.042779,-3.0486333,-3.0569677,-3.07002,-3.064363,-3.079366,-3.1010265,-3.1093812,-3.118417,-3.091819,-3.093205,-3.1038625,-3.1082432,-3.1290195,-3.1106937,-3.0160165,-3.0860271,-3.1372864,-3.1369288,-3.1313336,-3.1172004,-3.1185744,-3.1278036,-3.1420987,-3.1382856,-3.1444569,-3.1393895,-3.1392443,-3.1540546,-3.159319,-3.15729,-3.139689,-3.1457858,-3.1543832,-3.1632438,-3.1616,-3.153791,-3.1584644,-3.1675882,-3.170508,-3.1695466,-3.1715655,-3.1742887,-3.185109,-3.1774673,-3.1651788,-3.1544812,-3.1541526,-3.1409569,-3.146142,-3.1635094,-3.1619773,-3.1645787,-3.1699524,-3.1631675,-3.1300569,-3.1287308,-3.152049,-3.135224,-3.131774,-3.1335464,-3.130969,-3.1319017,-3.1224618,-3.1223254,-3.0526867,-2.9431615,-2.9358177,-2.9849093,-3.0046952,-3.0067747,-3.0078158,-3.0037374,-3.0072432,-3.0243177,-3.0446382,-3.0549166,-3.0425892,-3.0434647,-3.0511618,-3.0607667,-3.0532947,-3.0534601,-3.0683727,-3.0691066,-3.0663803,-3.0572424,-3.0439515,-3.0505702,-3.063772,-3.072338,-3.0810006,-3.07999,-1.3558438,0.6411315,-0.033963967,-0.4403486,-0.6005202,-0.7224886,-0.8680508,-1.0091863,-1.1011299,-1.2108209,-1.2867966,-1.3613756,-1.4094986,-1.5019367,-1.5358132,-1.6376449,-1.6691467,-1.6929507,-1.6974665,-1.7320356,-1.3929169,-1.0983391,-1.3123014,-1.3861723,-1.4952545,-1.581516,-1.6330502,-1.6398053,-1.7192042,-1.7428718,-1.7652416,-1.7511039,-1.7662001,-1.8009336,-1.8322129,-1.8542936,-1.8883281,-1.8934774,-1.8990161,-1.9187694,-1.9365016,-1.9422512,-1.9347192,-1.9445887,-1.9378195,-1.9411728,-1.9818609,-2.005322,-2.0298102,-2.0430694,-2.0558124,-2.0555656,-2.05267,-2.0618093,-2.0864127,-2.0924735,-2.1004143,-2.0914516,-2.0881543,-2.0782325,-2.066777,-2.0527937,-2.0743504,-2.073479,-2.07037,-2.088118,-2.075323,-2.064688,-2.0617383,-2.056175,-2.0655065,-2.094985,-2.140476,-2.1314158,-2.0973725,-2.1353903,-2.1678138,-2.179564,-2.1641254,-2.135027,-2.1379535,-2.1558824,-2.1670594,-2.1965828,-2.1945984,-2.1851401,-2.201688,-2.222945,-2.050618,-1.906299,-1.9475013,-1.9922961,-2.0402308,-2.0390422,-2.0122025,-2.0225952,-2.061287,-2.0513906,-2.0452433,-2.0259213,-2.0320337,-2.0504322,-2.0496302,-2.042963,-1.999363,-2.001108,-1.9579322,-0.58187646,-0.5730136,-0.85598725,-0.95609605,-1.1055173,-1.1687781,-1.257134,-1.2078714,-1.132693,-1.2454133,-1.3416234,-1.4075173,-1.4759157,-1.52175,-1.5559434,-1.5781925,-1.5519753,-1.5683165,-1.63887,-1.6901643,-1.7072136,-1.7141631,-1.713194,-1.1164564,-0.78477705,-1.0564438,-1.1585183,-1.2651484,-1.3413825,-1.3559686,-1.3930261,-1.4985232,-1.5374916,-1.5607964,-1.581085,-1.6126773,-1.6477854,-1.6839195,-1.6878941,-1.6962972,-1.743382,-1.780672,-1.8163604,-1.8244827,-1.8552959,-1.8696187,-1.8889728,-1.8892983,-1.8751582,-1.8417234,-1.8435476,-1.9135884,-1.9376981,-1.953288,-1.9737978,-1.9677827,-1.9815353,-1.9799175,-0.94219357,-0.64348054,-0.9023173,-1.1176412,-1.2307312,-1.3291109,-1.3929528,-1.4792107,-1.5779097,-1.6263814,-1.6627312,-1.698679,-1.7260284,-1.773891,-1.8686318,-1.9488385,-1.9881198,-1.9830651,-2.0006993,-2.0604463,-2.0972784,-2.1409163,-2.138475,-2.1575384,-2.1961136,-2.2235174,-2.2432938,-2.263483,-2.2794273,-2.3105547,-2.33111,-2.361698,-2.3653064,-2.360938,-2.366673,-2.3877,-2.4105544,-2.4410496,-2.4410295,-2.4466422,-2.46066,-2.4819508
+0.24840538,-0.06819877,-0.29257464,-0.4297325,-0.222835,-0.1981834,-0.3543818,-0.44824815,-0.5475827,-0.59596413,-0.578819,-0.60234827,-0.6403823,-0.6179314,-0.11937757,-0.05116006,-0.28532422,-0.44178274,-0.5588204,-0.65277636,-0.7050492,-0.7554532,-0.22630481,0.25068468,0.6915996,0.68363637,0.344273,0.3729888,0.16060646,-0.0072095655,-0.16647772,-0.34871608,-0.4721408,-0.59924835,-0.74873614,-0.7485262,-0.7777065,-0.8245715,-0.06026126,0.47266483,0.18629654,0.05929387,0.18561204,-0.02943721,-0.20674004,-0.36097205,-0.48442623,-0.6489233,-0.5143913,0.23321141,0.89064586,1.2217423,1.5700016,1.4058917,0.9033308,0.5226473,0.42227894,0.26090366,-0.008740492,-0.024530765,-0.045039114,-0.23626159,-0.3737934,-0.4832427,-0.57726485,-0.64573216,-0.7063272,-0.78147256,-0.8720071,-0.4261022,-0.3831654,0.29734465,0.14716537,-0.22783318,-0.490119,-0.47016177,-0.61308914,-0.57728994,-0.75194633,-0.55009454,-0.60044247,-0.5890374,-0.2909776,-0.57580775,-0.5199841,0.16703768,0.030532029,-0.15744668,-0.398705,-0.40343785,-0.38731948,0.21834247,0.0198468,-0.29111168,-0.5237084,-0.63772756,-0.6584345,-0.31796342,-0.5533166,-0.6300436,-0.6011811,0.107945755,0.6442535,0.6747828,0.732911,0.56136036,1.0900183,0.7684564,0.52496654,0.7179657,0.42873755,0.12740953,-0.1068552,0.42593658,0.21285172,-0.06620197,-0.036755648,0.30306843,0.29470307,0.19347167,-0.0013083704,-0.13275889,-0.30108398,-0.43623286,-0.23796168,0.063605025,-0.26641232,-0.4621992,-0.198013,0.50849676,0.3057911,0.7107756,0.49918395,0.31485218,0.07785106,-0.14495988,-0.1254582,-0.25904462,-0.47100028,-0.38436726,-0.05568255,-0.3242026,-0.49418217,-0.6167612,-0.3217095,-0.18879564,-0.26297855,0.099647045,-0.234771,-0.4342857,-0.542621,-0.46050614,-0.31791258,-0.51894903,-0.5068097,-0.6461352,-0.7691009,-0.8335964,-0.7979121,-0.7714531,-0.67361414,-0.3672461,-0.47101253,-0.25227487,0.20233344,-0.09216982,-0.32675317,-0.50177807,-0.5760686,-0.62266445,-0.66313344,-0.79525954,-0.8296788,-0.90067685,-0.12877853,0.651698,0.18704322,-0.10097785,-0.24473132,-0.36263865,-0.45006514,-0.5523866,-0.58454216,-0.5714274,-0.5682455,-0.5989411,-0.50567573,-0.26640415,-0.3467709,-0.35369825,-0.049566288,-0.056358647,0.4806224,0.55122674,0.5963565,0.714925,1.021732,0.5975903,0.33568233,0.1816663,0.41135296,0.32118878,0.23440222,0.14541358,0.006635163,-0.12352827,-0.16886261,-0.2028198,-0.23522182,-0.21299328,0.3145374,0.3297628,0.21007738,0.6780515,0.6840646,0.41858566,0.25146538,0.10366148,0.026900958,-0.010925729,-0.13566947,-0.12534164,-0.1613086,-0.27562857,-0.28880015,-0.24636428,-0.29693273,-0.2523322,-0.18143652,-0.14525394,-0.14213024,-0.13063513,0.03199393,0.15185389,0.2257361,0.19246136,0.2722066,0.39926213,0.39740005,0.41016853,0.3938894,0.45776463,0.53072965,0.55485225,0.61376244,0.6426558,0.7823701,0.83896434,0.9447057,0.9717922,0.9508251,0.9368657,0.9451947,0.9780171,1.0106108,1.0123117,0.9673761,0.93770653,0.93832433,0.9738946,0.95841736,0.9665611,0.99548435,1.0662341,1.0863395,1.0608821,1.0964947,1.2898316,1.4256821,1.3857198,1.3855413,1.3407899,1.382109,1.4384389,1.427777,1.5328994,1.5549928,1.5128278,1.45821,1.4080791,1.4867389,1.4485886,1.4396644,1.4751966,1.475893,1.3444409,1.3695545,1.344528,1.3668917,1.3990672,1.4366343,1.5012472,1.591468,1.7182817,1.7391285,1.7674494,1.8432091,1.8771315,1.8536171,1.835212,1.8091688,1.8001255,1.843003,1.8435204,1.8279843,1.874742,1.9261352,1.9376655,1.8604001,1.9208202,1.9475892,1.9587293,1.9447293,1.8630832,1.8739829,1.9398632,1.9941406,2.0130372,2.0271387,2.0684953,2.1445022,2.3497908,2.3855436,2.4413342,2.7105618,2.5522962,2.847959,2.7759933,2.7639391,2.7427251,2.6672645,2.6918154,2.6364198,2.50213,2.4219522,2.4638407,2.5359838,2.5953958,2.8180466,2.8749332,2.8387976,2.7978377,2.7622857,2.670802,2.7170372,2.6473014,2.6554632,2.6293678,2.8047986,3.112207,3.3206575,3.496739,3.3167057,3.3045254,3.13334,3.277778,2.9634366,2.4284012,1.9606667,1.4893732,0.8467636,0.55481565,0.3759244,0.20277812,0.07766326
+-0.26031592,-0.22084908,-0.09923166,-0.17319728,0.4110328,0.49269986,0.35357606,0.17231263,0.039234597,-0.06903304,-0.24003683,-0.22622071,0.008046027,0.6291487,1.8564434,1.4551097,1.1222734,0.86247885,0.6317874,0.49416488,0.3817151,0.23702033,0.17448749,0.8040504,1.1439259,1.163763,1.150939,1.299151,1.1525054,1.0169054,0.8123723,0.5902002,0.41805863,0.236609,0.073342144,0.090336815,0.034967344,-0.08977577,0.79677343,1.4872391,1.2106502,0.9173713,1.2879996,1.2395284,0.9312742,0.76476485,0.58132815,0.5021241,0.5694959,0.7748588,1.8182291,1.5983319,1.6614665,1.5297532,1.2991507,1.1529403,1.0258186,0.90675056,0.7192912,0.64291936,0.5061911,0.39342213,0.29801872,0.16549507,0.08040331,-0.00906172,-0.11447491,-0.20019418,-0.17590006,0.012434218,0.042438474,1.2738985,1.0691525,0.72354317,0.5080253,0.432671,0.32380286,0.23369955,0.101969,0.16232887,0.0021616705,0.035909165,0.14955279,-0.069778994,-0.13281642,-0.14911741,-0.25719443,-0.3048337,-0.36139706,-0.34417167,-0.4243399,-0.49705213,-0.53432494,-0.61448944,-0.72242844,-0.8089055,-0.40862074,0.008551914,-0.25069818,-0.3423351,-0.42071208,0.20941138,0.2580264,0.06492558,-0.051661443,-0.212107,-0.28169888,-0.3202973,-0.4229239,-0.44376156,-0.5480073,-0.67694056,-0.7605282,-0.7987764,-0.8673782,-0.90168554,-0.59904253,-0.34083068,0.7413862,0.9177398,0.58096737,0.3571127,0.17734407,-0.053736906,-0.16476016,-0.2686982,-0.4314663,-0.4909415,-0.599825,-0.55801785,-0.21206567,0.79187375,0.7735237,0.5224898,0.45951962,0.30663487,0.20331113,0.16066061,-0.009376954,0.0734096,0.7538191,0.51692003,0.3093153,0.13003977,0.0907878,0.045637768,-0.09855214,-0.19380201,-0.29838625,-0.37840465,-0.49548677,-0.56907225,-0.602936,-0.6407875,-0.650009,-0.7289039,-0.55653685,1.1966805,0.9928423,0.7832203,0.6580515,0.581228,0.46460348,0.40974343,0.73350567,0.57379395,0.35776374,0.25106046,0.19302015,0.19618286,0.14389184,-0.018452417,-0.06445864,0.20567507,1.323035,1.3080176,0.99791765,0.86053324,0.73070216,0.59117484,0.48624766,0.37977576,0.32603753,0.2707224,0.18585418,0.81963634,1.402019,1.2300657,1.054799,0.8666366,0.84460545,0.753204,1.302724,1.332421,1.1178913,1.1223005,1.0386964,0.8119984,0.73502004,0.6875518,0.67478013,0.57488215,0.5225955,0.5133197,0.5429919,0.50243586,0.41312447,0.38553503,0.40934026,0.36468,0.3429467,0.23225038,0.22086696,1.0291479,1.1622466,0.94050765,0.7916111,0.6155599,0.5242239,0.4732796,0.42984638,0.377252,0.33117223,0.2920932,0.22337578,0.2348574,0.22835617,0.30757773,0.30225387,0.3747156,0.43893835,0.27349466,0.25617087,0.37267786,0.3515612,0.2779108,0.1995384,0.23419599,0.12650183,0.12391344,0.086645514,0.12888904,0.16125518,0.14634319,0.24219178,0.2857623,0.4090304,0.4555204,0.5631492,0.60617656,0.63165754,0.64378774,0.6058098,0.5686499,0.589738,0.5831077,0.5694524,0.5198941,0.55214655,0.51614386,0.5066037,0.4349243,0.4561889,0.547189,0.5460898,0.5345534,0.5365886,0.59041584,0.54162216,0.51443624,0.542977,0.55357265,0.5650026,0.6809462,0.6416011,0.85051525,0.80920947,0.727598,0.67631793,0.6304396,0.58169925,0.5757169,0.5142525,0.83634555,0.9078891,1.0150272,0.95925665,0.8940327,0.8749825,0.9006034,0.9477981,1.0254602,1.1725627,1.355912,1.4457173,1.485328,1.5215449,1.6421158,1.7177646,1.6812956,1.6734257,1.6813259,1.7584664,1.8630948,1.8992972,2.0273762,1.9922194,1.9563437,1.9348681,2.1307063,2.0867867,2.099879,2.0606399,2.037474,2.153411,2.3436494,2.3226936,2.281138,2.269612,2.339715,2.4467325,2.7411375,2.9679034,3.1276746,3.4157174,3.3552623,3.4846883,3.6005015,3.5853133,3.5733252,3.3504407,3.2397537,3.312868,3.2167878,3.1537473,3.3202877,3.4494033,3.6652102,3.8505757,3.799335,3.5796666,3.6087937,3.5224333,3.5214264,3.4596395,3.4850862,3.5612392,3.6598446,3.9232259,4.087221,4.053162,3.6161754,3.2624354,3.048298,2.9823785,2.7441616,2.3242235,2.396067,2.2312617,2.1082134,1.8624582,1.6720874,1.5666903,1.4259161,1.2808326
+-0.21624784,-0.4513678,-0.5174354,-0.47009984,0.17109738,0.14636609,-0.026676279,-0.15415746,-0.2772916,-0.39772195,-0.4442103,-0.48075432,-0.116356015,0.26450807,0.712413,0.4252362,0.28471097,0.15795965,0.023417443,-0.19276716,-0.2649178,-0.31723243,-0.38561538,-0.2172393,-0.21527848,-0.20950477,-0.1487594,-0.13100739,-0.005455151,-0.019098371,-0.15654883,-0.20150094,-0.30307245,-0.3904937,-0.46307552,-0.539917,-0.5751022,-0.59173405,-0.2393087,0.45160764,0.3084476,0.090793,-0.062038593,-0.15399745,-0.09604179,0.42031357,0.30973637,0.06661898,0.17531857,0.30159947,1.0404726,0.8612312,0.8713473,1.0403953,0.6681738,0.4833908,0.9237013,0.6697941,0.38888967,0.16333014,-0.018837892,-0.0883577,-0.19849928,-0.26450288,-0.35341722,-0.43399587,-0.50078255,-0.53120774,-0.479084,-0.3614564,-0.3498778,-0.41226268,-0.3833568,-0.4424851,-0.2053936,-0.10624619,0.6588316,0.50528866,0.1779262,-0.106156856,-0.2608197,-0.34423104,-0.4690054,-0.545967,-0.57639617,-0.6360471,-0.7163261,-0.7539442,-0.79633254,-0.8381391,-0.88294154,-0.8206003,-0.8699137,-0.9336764,-1.0163474,-1.0753853,-1.0618852,-1.0489486,-1.0919008,-1.0916057,-0.15850349,1.0170307,0.25135624,0.1814094,-0.042030163,-0.22457276,-0.2586046,-0.39372027,-0.49663997,-0.5669045,-0.6823058,-0.7765044,-0.8714764,-0.9107078,-0.983119,-1.0425203,-1.0799778,-1.0515821,-0.9754262,-0.98259676,-1.0526752,-1.1190591,-1.1879903,-1.2312369,-1.2419521,-1.2501495,-1.2915933,-1.2221736,-0.75937307,0.57552433,0.19586733,-0.03492788,-0.25685397,-0.39867437,-0.49491692,-0.59141743,-0.6973182,-0.77984923,-0.8670896,-0.9222961,-0.26342273,-0.06343026,-0.36753014,-0.5351274,-0.66540694,-0.7559793,-0.8200253,-0.8789957,-0.93817985,-0.99862516,-1.0733063,-1.1066132,-1.1577121,-1.1837206,-1.2174808,-1.2680931,-0.8922157,0.17001118,-0.022861704,-0.05920211,-0.2500118,-0.48527783,-0.5885165,-0.6677191,-0.62962174,-0.65322477,-0.7016064,-0.69918275,-0.77600676,-0.8191793,-0.8521274,-0.9235206,-0.96331024,-0.9582211,-0.33176732,0.05884074,-0.18125112,-0.40320945,-0.539258,-0.61328685,-0.67821443,-0.74378306,-0.7896505,-0.50165576,0.07253827,0.3061939,0.16273487,0.14535631,0.065124676,-0.031303883,0.04190654,-0.040839683,-0.09884068,-0.090601385,-0.036821786,0.08296308,0.027238477,-0.07398026,-0.002236791,0.21368337,0.11184065,0.09785348,0.13913478,0.15625606,-0.0152151175,-0.091478474,-0.08369199,-0.1011799,-0.1572199,-0.21076193,-0.26866648,-0.35728818,-0.37715918,0.42464694,0.43652862,0.29876414,0.22737427,0.1362199,0.10831308,0.075189546,0.04673994,0.027749378,-0.04092997,-0.1215262,-0.14821044,-0.14635557,-0.19341497,-0.19822751,-0.14076364,0.035375137,-0.017002601,0.12360929,0.31552768,0.36706248,0.3655468,0.35737067,0.54072684,0.7874522,0.828396,0.8617182,0.84108925,0.88484675,1.0403461,1.0797873,1.1229293,1.1734952,1.2104003,1.2513399,1.339749,1.2759509,1.279577,1.2139146,1.2963585,1.4071205,1.4339939,1.4308226,1.49736,1.4629536,1.6107793,1.6163871,1.5355824,1.5601573,1.5810795,1.6748722,1.7449358,1.6978431,1.7190366,1.8219212,1.8633887,1.7199323,1.7238735,1.7588608,1.6968601,1.7740104,1.7731919,1.7851081,1.7646074,1.7021738,1.7296811,1.6352773,1.6555744,1.7047243,1.7681248,2.0476253,2.1097338,2.0770855,1.9893734,1.9524982,1.9573836,1.9565606,1.955009,1.9628739,2.0254426,2.1065288,2.1657634,2.0411901,2.0422034,2.06243,2.0303652,1.958232,1.936926,1.9087465,1.9681911,1.9889216,1.9843497,2.126505,2.0336246,1.9776134,1.9263396,2.0726995,2.2030106,2.2280657,2.207378,2.164957,2.2996087,2.4756055,2.4043121,2.217094,2.1694832,2.162514,2.1554432,2.2867908,2.3699749,2.3171163,2.4383283,2.368543,2.382138,2.3626175,2.2777607,2.2565546,2.1831503,2.1330519,2.135938,2.116238,2.047322,2.143432,2.209235,2.281077,2.3266916,2.282815,2.2231252,2.270156,2.3276935,2.4411206,2.4227943,2.5219052,2.510352,2.6487384,2.6813343,2.53895,2.4178157,2.3363516,1.960074,1.6486938,1.7865984,1.797497,1.6781621,1.8651234,1.7649453,1.8529876,1.8471706,1.7570567,1.8529015,1.7710395,1.4715126
+0.9296756,0.6366656,0.22891177,-0.072606534,-0.16774301,-0.15602018,-0.15556093,-0.21470542,-0.30294427,-0.21587892,-0.11133067,-0.21231785,-0.23940682,0.1884416,0.37125885,0.3489338,0.24567096,0.1136712,0.036643688,-0.017916601,-0.109132335,-0.19728376,-0.327358,0.15674837,0.3255054,0.4617826,0.7141209,0.9079202,0.787948,0.64235365,0.545091,0.41016883,0.26080403,0.11541106,0.00096907094,-0.08314662,-0.045354497,0.14878233,0.57356685,0.77358425,0.5704871,0.34846196,0.16460456,0.04162954,0.23191647,0.42677847,0.24664037,0.19858874,0.08495051,-0.042461004,-0.040411975,-0.033011805,-0.06604174,-0.14264052,-0.2061153,-0.18348536,-0.19829631,-0.18138547,-0.23009546,-0.29359227,-0.28974408,-0.31383854,-0.3464117,-0.3965471,-0.41373965,-0.44381675,-0.49268216,-0.57282555,-0.6105535,-0.6449634,-0.68717986,-0.5787543,-0.22895987,-0.32193643,-0.4013043,-0.47157186,-0.5582823,-0.60164714,-0.65111697,-0.6967093,-0.73829424,-0.79192173,-0.8531585,-0.9069015,-0.98905087,-1.021104,-1.0585027,-1.0483837,-1.0961587,-1.1491253,-1.1370742,-0.9688492,-1.0016934,-1.0636764,-1.1361017,-1.201983,-1.2536217,-1.2659835,-1.301293,-1.3376637,-1.39976,-1.4219317,-1.4302051,-1.42302,-1.4330536,-1.4410086,-1.4979029,-1.499512,-1.550253,-1.5475676,-1.5790722,-1.5962803,-1.6053551,-1.6109126,-1.6498258,-1.6456397,-1.6677485,-1.7088602,-1.7189463,-1.7230195,-1.7337792,-1.7531078,-1.743623,-1.7485601,-1.7575897,-1.7863642,-1.7684664,-1.7788787,-1.7329333,-1.4848884,-1.536097,-1.5605769,-1.5005243,-1.4344133,-1.499093,-1.5647256,-1.5793523,-1.6010342,-1.6116725,-1.6371485,-1.6578531,-1.7013594,-1.7133722,-1.7219037,-1.715122,-1.7517871,-1.8092,-1.7731181,-1.781496,-1.7802402,-1.8057015,-1.817061,-1.8149393,-1.789581,-1.7600448,-1.7614443,-1.7393355,-1.7951316,-1.8260999,-1.8227792,-1.8471651,-1.8647288,-1.947173,-1.906016,-1.8833754,-1.8557012,-0.9096334,-0.4276838,-0.6102272,-0.69445884,-0.7527901,-0.8416231,-0.92954624,-0.98551,-0.789605,0.39765435,1.283498,0.85398483,0.51828945,0.31541866,0.16636768,0.07604484,-0.000905741,-0.06895088,-0.13393968,0.26232052,0.3034975,0.15824892,0.094520405,0.01302496,-0.08016656,-0.16142528,-0.23660271,-0.31524304,-0.39599922,-0.43434733,-0.4934093,-0.55443287,-0.6040273,-0.41139346,-0.4505211,-0.51687974,-0.5474851,-0.56044537,-0.59030396,-0.6378751,-0.55704504,-0.26374012,-0.38895267,-0.44923648,-0.5032821,-0.37876546,-0.3236209,0.495623,0.47162664,0.21113423,0.089823455,0.012068149,-0.07002398,-0.1493093,-0.20830508,-0.26755622,-0.32450247,-0.37836075,-0.41251537,-0.4513325,-0.49132377,-0.51499027,-0.5438598,-0.5786381,-0.36555222,-0.08695458,0.011220638,-0.023562502,0.1274748,0.8550161,0.85397655,1.0957026,1.3038667,1.4053483,1.5095665,1.7385422,1.847695,1.9030203,1.9971967,1.9773419,2.0580697,2.1177359,2.18112,2.144356,2.174345,2.2046509,2.2593822,2.400887,2.922235,2.685098,2.7270737,2.8333523,2.9029179,3.2848449,3.0031877,2.973516,2.9764626,2.9679718,2.9391065,2.9484003,2.9341063,3.009512,3.1101809,3.0125904,2.9696667,2.9389663,2.8948467,2.872921,2.8440027,2.8579822,2.820749,2.9505882,3.017911,3.085286,3.0073972,3.0413027,3.1606593,3.2740362,3.148665,3.2963376,3.2127495,3.2876291,3.2191133,3.1655064,3.0902538,3.0855563,3.076395,3.0796468,3.0524547,3.059383,3.0642583,3.2426362,3.1263776,3.1214528,3.0723643,2.9952152,2.984971,2.9907017,2.993517,2.997425,3.011961,3.0833135,3.0909224,3.0447624,3.1117115,3.2034488,3.3053944,3.2015858,3.4532661,3.4393375,3.5164266,3.4049878,3.4149053,3.4240036,3.4133615,3.407539,3.4664507,3.482809,3.4583921,3.462286,3.551392,3.5288448,3.4078708,3.3502727,3.257567,3.191287,3.2044015,3.1355054,3.1019151,3.1546183,3.2060428,3.2468405,3.291583,3.0446606,3.0255675,3.0811236,3.1290436,3.2577193,3.3628497,3.4099112,3.423385,3.435371,3.465258,3.4873188,3.4892654,3.4767072,3.292894,2.437945,1.8616223,1.5280812,1.8644488,1.6426692,1.685045,1.7090522,2.087589,1.9953051,2.0795949,2.1365,2.1860545
+1.0730011,0.95084524,0.55469054,0.088817865,-0.17575231,-0.23436649,-0.23804918,-0.31719652,-0.28815997,-0.22996865,-0.2610647,-0.29388,-0.26687613,-0.37264788,-0.3032792,-0.15816285,-0.17788368,-0.26725358,-0.2874194,-0.36091805,-0.41496396,-0.5272775,-0.49446785,-0.29405347,-0.23867516,0.060371194,0.24058883,0.666137,0.81804025,0.6792251,0.6156783,0.57811916,0.29035246,0.056590054,-0.091866314,-0.2552592,-0.32534093,-0.19360533,-0.010950636,0.027388167,-0.041916143,-0.17793773,-0.28912166,-0.38916686,-0.48777583,0.40429938,0.62152237,0.3404171,0.083375126,-0.046297397,-0.24831343,-0.41500214,-0.41155815,-0.47130862,-0.538381,-0.51985216,-0.5279108,-0.54417336,-0.5835055,-0.54215664,-0.6044228,-0.6486143,-0.6941831,-0.7432657,-0.7688389,-0.79660386,-0.82549155,-0.90003353,-0.90727675,-0.9279891,-0.98713374,-1.0364614,-0.88787496,-1.0024518,-0.95507723,-1.0304816,-1.0869071,-1.0990661,-1.1167325,-1.1656195,-1.1593806,-1.2058961,-1.2564442,-1.3143332,-1.3659294,-1.398011,-1.4788319,-1.5090336,-1.5207279,-1.5227773,-1.4540987,-0.5304162,-0.14661309,-0.13260385,-0.017912198,-0.14070728,-0.3575843,-0.54254293,-0.6535855,-0.7491082,-0.85130954,-0.94180244,-1.0036733,-1.04108,-1.0936135,-1.1403682,-1.2001097,-1.2560655,-1.2978936,-0.20728178,0.24927486,0.024321128,-0.18888013,-0.33189696,-0.48636258,-0.6137701,-0.72329104,-0.8303828,-0.92838967,-0.9901279,-1.0371385,-1.1124926,-0.9571142,-0.81086683,-0.71041304,-0.63046503,-0.5359628,-0.451925,-0.560706,-0.6885151,-0.7879089,-0.86237794,-0.92588353,-0.99420655,-1.0737062,-1.1515415,-1.1909695,-1.2253072,-1.2556905,-1.3053931,-1.3509674,-1.4148207,-1.4557613,-1.4605899,-1.4834359,-1.507405,-1.565285,-1.5684048,-1.4755664,-1.4946973,-1.5446563,-1.5736835,-1.5911207,-1.5910957,-1.2569928,-1.2713559,-1.2584049,-1.2560235,-1.3193805,-1.3628395,-1.401932,-1.4416345,-1.5285168,-1.5086353,-1.5254993,-1.5797734,-1.5873344,-1.5131508,-1.560395,-1.5722158,-1.5924613,-1.6183667,-1.6274755,-1.63276,-0.48626453,0.44830865,0.34761527,-0.05597258,-0.2497003,-0.38789263,-0.48529065,-0.5225805,-0.39903837,-0.45358497,-0.4620338,-0.5752504,-0.6838128,-0.68191534,-0.70556664,-0.7420916,-0.7381201,-0.75624585,-0.78907686,-0.82508093,-0.8718525,-0.90037805,-0.92833865,-0.9619426,-1.0100611,-1.0854726,-1.0737951,-1.152365,-1.1143879,-1.0775006,-1.0455024,-1.0484724,-1.0419612,-0.4431915,-0.48881656,-0.613667,-0.64950335,-0.67235357,-0.6893525,-0.73726726,-0.78814334,-0.722407,-0.7270582,-0.71824896,-0.7471851,-0.78542465,-0.80759764,-0.8175192,-0.83291966,-0.85964286,-0.86361915,-0.88396096,-0.8960969,-0.8918316,-0.88894314,-0.89738923,-0.8467518,-0.5605608,-0.47955957,-0.43828815,-0.4116315,0.06462662,0.18692522,0.25046772,0.34760028,0.38243634,0.36744457,0.48228818,0.6081109,0.6099164,0.59665215,0.61336213,0.61455226,0.60813016,0.6351198,0.5742297,0.6101123,0.5454008,0.60101134,0.5584954,0.7504961,0.73437506,0.7125273,0.748423,0.77824926,1.2331301,1.6470386,1.6869708,1.7287612,1.7851539,1.8082066,1.8922479,1.9543977,2.034021,2.2377534,2.1943135,2.1426625,2.140524,2.207531,2.2547257,2.2640154,2.2393904,2.310005,2.3396087,2.3855705,2.6300564,2.5453796,2.4973814,2.6431088,2.879279,2.987433,3.063295,3.0810664,3.1697059,3.1751528,3.1486683,3.0010648,2.9728258,2.9691303,3.0399299,3.0596745,3.087799,3.0594716,3.1484659,3.0096672,2.923153,2.868357,2.8864694,2.8324203,2.8845189,2.9446144,2.9732165,2.9902663,3.0153084,3.0175006,3.0409389,3.0901747,3.1779404,3.265294,3.3737292,3.5457277,3.7258332,3.7797766,3.8475986,3.7393372,3.6982198,3.6367946,3.5762029,3.5513067,3.627194,3.6490324,3.589642,3.6211238,3.598928,3.4846458,3.2470243,3.1433496,3.0872312,3.08363,3.1244173,3.0791655,3.173884,3.2662559,3.3215432,3.3598645,3.2885766,3.2376575,3.3472567,3.433899,3.510847,3.582247,3.585552,3.5860848,3.5279727,3.3874292,3.2013602,2.960726,2.3650703,1.8602636,1.3804547,0.9594139,0.61614823,0.97671187,1.0637591,1.2190189,1.3883882,1.5255651,1.6282493,1.6270362,1.7532566,1.9405928
+-0.6957337,-0.83318174,-0.9242908,-1.0047345,-1.1437722,-1.2276709,-1.305547,-1.3526316,-0.88300586,-0.8577356,-0.97145414,-1.0450578,-1.1174185,-1.2228954,-1.0463585,-0.8953358,-0.9595233,-1.0474511,-1.1562564,-1.2426558,-1.3393974,-1.4730021,-1.6198039,-1.6872709,-1.7112625,-1.6233695,-1.698766,-1.0466962,-0.5708282,-0.47884005,-0.5228474,-0.57429695,-0.6987398,-0.8460777,-1.0150162,-1.2398944,-1.2556957,-1.1710691,-1.2234342,-1.2607044,-1.3480592,-1.427258,-1.5690513,-1.6705978,-1.7602736,-1.4539905,-1.1745522,-0.94101447,-0.9621382,-1.137285,-1.35936,-1.548933,-1.6320045,-1.6939409,-1.7567288,-1.8955845,-1.8713863,-1.922423,-1.9806982,-2.0271933,-2.0640235,-2.1179361,-2.1579294,-2.2160125,-2.2548256,-2.2850025,-2.3184142,-2.3487544,-2.3880763,-2.3875356,-2.3978238,-2.3841603,-2.394371,-2.4513652,-2.4426696,-2.440091,-2.4631994,-2.481458,-2.4989395,-2.5277853,-2.5088458,-2.5201547,-2.5917432,-2.5254722,-2.5468202,-2.5791261,-2.5826015,-2.589029,-2.6062288,-2.628632,-2.6100888,-2.401106,-2.1579318,-2.2030792,-2.2450264,-2.2877593,-2.3397396,-2.370815,-2.4030547,-2.4254322,-2.4396758,-2.4864051,-2.4913607,-2.5009365,-2.5159833,-2.5113685,-2.5040436,-2.5258408,-2.5055575,-2.3766217,-2.4400213,-2.421264,-2.3233144,-2.3316255,-2.392829,-2.4374022,-2.4553866,-2.458237,-2.5034604,-2.536449,-2.412099,-1.8721678,-1.7052217,-1.7030022,-1.5925124,-1.5455327,-1.4415224,-1.3650141,-1.3819933,-1.5190799,-1.6364825,-1.7134207,-1.7252412,-1.8497366,-1.9399626,-1.9995825,-2.0480425,-2.105431,-2.1304255,-2.1240163,-2.197723,-2.215015,-2.2565627,-2.2720125,-2.2709455,-2.141231,-2.1345434,-2.1837568,-1.684892,-1.0721513,-1.2677051,-1.3795438,-1.4710019,-1.5454535,-1.5368079,-0.97640586,-0.68444544,-0.9837371,-1.1519576,-1.2784902,-1.3936447,-1.5045855,-1.5959631,-1.6568358,-1.7330976,-1.8555899,-1.7898036,-1.8866413,-1.9734284,-2.032165,-2.0706792,-2.1119702,-1.969203,-1.0613316,-0.55370533,-0.24768642,-0.56132233,-0.74704224,-0.86178184,-0.97449756,-1.0765007,-1.0698328,-0.60065484,-0.6326134,-0.7479212,-0.92028683,-1.0576714,-1.0930929,-1.1437118,-1.2049184,-1.2672616,-1.3264222,-1.3713901,-1.4360915,-1.4538813,-1.5000207,-1.5587575,-1.6164129,-1.6863396,-1.7492985,-1.7944458,-1.7579796,-1.7561654,-1.7538652,-1.8004488,-1.8187921,-1.7564529,-0.5446566,-0.24761744,-0.5187948,-0.62077343,-0.7098719,-0.787913,-0.8730092,-0.93129206,-0.96595776,-1.0150084,-1.0479004,-1.0223206,-1.0242401,-1.0223898,-1.0230767,-1.032083,-1.0327871,-1.0281056,-1.0206064,-1.0111234,-1.0056127,-1.0032394,-1.0086313,-0.9780538,-0.99295,-0.93284786,-0.9221135,-0.1902748,0.28050923,-0.04961353,-0.09758301,-0.0652138,-0.010745715,-0.008349132,-0.09996514,-0.07478629,-0.012907755,0.051643897,0.059705902,0.047568996,0.08934496,0.12001215,0.101033464,0.10527155,0.08546655,0.14764604,0.038162503,-0.040625434,-0.17771508,-0.19972442,-0.18782774,-0.22189991,-0.21712673,-0.11362837,0.014046777,0.113184705,0.18736063,0.20337844,0.17933834,0.38249114,0.5037117,0.57193327,0.58202237,0.6559095,0.6719761,0.6805326,0.6898589,0.82631665,0.8955277,0.9220325,0.8803586,0.9054451,0.81479466,0.5717367,0.7710557,0.85661393,0.68047976,0.5743857,0.53932947,0.33918124,0.5418371,0.626869,0.47351736,0.29614395,0.2664141,0.35940433,0.43359226,0.38874775,0.5875783,0.46688664,1.0232639,0.74888974,0.9078957,1.067555,1.1758511,1.2000968,1.2112653,1.2177451,1.2142506,1.211344,1.2047147,1.2149862,1.221071,0.8606268,0.7551092,0.4156528,0.107261464,0.023909409,-0.014882188,-0.0076258294,0.07092403,0.25669712,0.067709506,0.04471733,0.070926085,0.077838644,0.1666231,0.3817681,0.13828711,0.06336376,-0.0858895,-0.25627556,-0.30546945,-0.17502493,-0.0925785,-0.043624695,-0.1759328,-0.27478135,-0.17060341,-0.1165434,-0.095769286,-0.13653535,-0.33974558,-0.3801164,-0.29271808,-0.28351682,-0.30339745,-0.34029564,-0.38400227,-0.41690043,-0.43921435,-0.4846918,-0.5503944,-0.5689747,-0.58058554,-0.6449048,-0.696776,-0.73253024,-0.7726753,0.14931966,0.061629657,-0.17031111,-0.29392636,-0.38321695,-0.4492338,-0.4881965,-0.53897667,0.053399783
+-1.3517175,-1.3691914,-1.4277123,-1.4563267,-1.5086712,-1.5512093,-1.6157727,-1.395216,-0.59079784,-0.597649,-0.58774495,-0.67970055,-0.7962185,-0.9403208,-1.0321543,-0.6312333,-0.6987797,-0.91645277,-1.0538371,-1.1676595,-1.2799582,-1.428196,-1.5729637,-1.6268206,-1.7928745,-1.7781663,-1.8094205,-1.5496154,-1.2955071,-0.64175385,0.43321997,0.16542794,-0.29769897,-0.53068924,-0.717992,-0.9400162,-1.0301635,-0.8045466,-0.8224635,-0.9735576,-1.0861446,-1.2260623,-1.3620095,-1.5031499,-1.3136139,-1.3533579,-1.3499482,-1.2323616,-1.254818,-1.3770406,-1.5572186,-1.6774035,-1.7507062,-1.8244781,-1.876375,-1.9293809,-1.8153578,-1.8544799,-1.912333,-1.9792621,-2.0681484,-2.0885925,-2.1372056,-2.1882226,-2.2309055,-2.2651534,-2.2827601,-2.3306768,-2.3818517,-2.397499,-2.415359,-2.284951,-2.0968454,-2.0915177,-2.1331353,-2.1778321,-2.2361736,-2.2774973,-2.2952852,-2.3353043,-2.3511758,-2.3977208,-2.464362,-2.4758663,-2.5042934,-2.508502,-2.519487,-2.4947877,-2.5850866,-2.3461323,-1.980038,-1.6258589,-1.2752807,-1.2722329,-1.4306446,-1.5536463,-1.6641073,-1.7706933,-1.8600364,-1.9159334,-1.9743242,-2.0385873,-2.0832415,-2.1371548,-2.189014,-2.2242107,-2.2653933,-2.3672166,-1.6254559,-1.0030105,-0.9774671,-0.9435092,-1.087263,-1.2030497,-1.0428575,-1.0005018,-1.0962334,-1.2336209,-1.4076657,-1.3908312,-1.0438615,-0.7561152,-0.6540892,0.32831374,0.5103759,0.54435575,0.4159204,-0.04564771,-0.21575186,-0.37156212,-0.6257068,-0.20541254,0.5296463,0.2416992,-0.3595472,-0.61129975,-0.758983,-0.6146259,-0.53381634,-0.43812853,-0.39652628,-0.4621083,-0.5650815,-0.108363,-0.22037354,-0.20470092,-0.4606917,-0.13871641,0.20494695,0.07567796,-0.35141408,-0.5336198,-0.6813188,-0.79931843,-0.7790824,-0.6948943,-0.8884812,-1.0324374,-1.1620243,-1.2702179,-1.3318663,-1.407419,-1.4500959,-1.5309227,-1.6032615,-1.682974,-1.7684102,-1.7906983,-1.8227286,-1.8689378,-1.9194019,-1.9729626,-1.1989422,0.19293734,-0.10249393,0.21432039,-0.24655762,-0.48437953,-0.6048319,-0.6977119,-0.66686904,-0.11942114,0.14389502,-0.0032380335,-0.32710722,-0.5210581,-0.6381807,-0.7316362,-0.78862053,-0.8638294,-0.94279563,-1.0427158,-0.9692259,-1.0521511,-1.0982753,-1.1409705,-1.2036841,-1.2524309,-1.3229917,-1.4086001,-1.4804547,-1.4568379,-1.4623148,-1.5047415,-1.5744891,-1.5968865,-1.6116213,-0.48396015,-0.27961332,-0.55300725,-0.6613947,-0.76509,-0.8478287,-0.9357649,-0.984168,-1.0240651,-1.0655205,-0.5975641,-0.048026048,-0.32870078,-0.51470906,-0.579986,-0.6396576,-0.67757845,-0.72419566,-0.7669585,-0.815646,-0.84694177,-0.8945389,-0.9683068,-0.9115858,-0.8622475,-0.8097529,-0.9786453,-0.2622251,-0.017816078,-0.2736107,-0.34794977,-0.31558424,-0.277,-0.43994915,-0.29456776,-0.14074202,-0.09011155,-0.023941036,-0.07351394,-0.1086894,-0.06660636,-0.026740711,-0.104304716,-0.14891921,-0.17006917,-0.19790052,-0.23302713,-0.32424775,-0.38115042,-0.41744798,-0.4283082,-0.47339046,0.1235511,0.3756163,0.08458039,0.26710412,0.41909847,0.411,1.0241168,0.84176385,0.80955076,0.8031509,0.5859415,0.719043,0.82861686,0.86642855,0.90264976,0.9991286,0.9326941,0.5671517,0.5105835,0.36712176,0.19931068,0.32664946,0.38910848,0.5153153,0.55942833,0.44747558,0.21439922,0.08134687,0.23468725,0.6558995,0.55446607,0.27685434,-0.00313114,0.013354283,0.12298469,0.48743027,0.9024707,0.6166032,1.0476134,0.9725826,0.8044407,1.0158386,1.2464917,1.4100313,1.4544148,1.4736786,1.5058713,1.5067501,1.4739381,1.2915972,0.92843986,0.69868505,0.46569043,0.3202459,0.2268879,0.061499316,-0.06979148,-0.17087847,0.13302398,0.4439134,0.1709428,-0.03060959,-0.069698766,-0.12645712,-0.00842404,0.23957892,0.19263491,-0.029269664,-0.15533732,-0.31379572,-0.40257785,-0.30696285,-0.3140741,-0.2561097,0.7563605,0.192994,0.17978017,0.1367641,0.01794472,-0.1934676,-0.37899217,-0.37959722,-0.39442652,-0.48934817,-0.57240015,-0.6455419,-0.70151746,-0.7549722,-0.8170055,-0.88013893,-0.94196516,-0.98498386,-1.0548594,-1.1141881,-1.1934847,-1.2584357,-1.2820309,-0.3540697,0.03883103,-0.26416928,-0.4143994,-0.5765704,-0.6257424,-0.64179146,-0.7517368,-0.63253486
+0.59914213,0.40769807,0.106474414,-0.086486295,-0.18665767,-0.34756348,-0.4139213,0.40081525,0.75036824,0.5962988,0.66336215,0.45408952,0.2648036,0.10070105,-0.061070584,-0.17307289,-0.15489157,-0.28383243,-0.36112052,-0.4275994,-0.533978,-0.647966,-0.75028324,-0.84604836,-0.898914,-0.93010616,-0.93946755,-0.9866081,-0.9729276,-0.8858859,-0.12573636,0.1033683,-0.06294231,-0.15500504,-0.33093983,-0.5085278,-0.60394824,-0.47509488,-0.33590096,-0.47046638,-0.58920425,-0.68859035,-0.78273547,-0.8787124,-0.9368893,-0.98158044,-0.94001985,-0.047159415,0.063193485,-0.16198482,-0.41788042,-0.59335583,-0.7052759,-0.7723144,-0.8371525,-0.88189536,-0.92337596,-0.96888006,-1.0109425,-1.068285,-1.1171167,-1.1654558,-1.2133157,-1.2960403,-1.3778186,-1.430634,-1.4726933,-1.5128174,-1.5522789,-1.567466,-1.6159288,-1.0749319,-0.59176683,-0.76219434,-0.8869976,-0.98674285,-1.070607,-1.1436361,-1.2089677,-1.2943444,-1.3780589,-1.4059227,-1.4611266,-1.5183616,-1.5451707,-1.6017517,-1.6238899,-1.6949068,-1.7058486,-1.4848565,-1.0855131,-0.94156003,0.17500162,0.46710193,0.19980788,-0.00043350458,-0.18826875,-0.3712662,-0.5102532,-0.61732787,-0.7120066,-0.81938744,-0.93062955,-1.0220015,-1.109273,-1.1587865,-1.2120689,-1.2890179,-1.3446171,-1.0257401,-0.19470754,-0.0677405,0.05325963,0.1686563,-0.00042409822,-0.06894693,0.18522617,0.06894921,-0.10835318,-0.10894069,-0.19744842,0.473489,0.96181726,0.8848777,0.81651145,0.84010607,1.029088,0.8596903,0.48192322,0.33267686,0.19572808,0.0520772,0.30935985,0.43471396,0.26859117,0.16102059,-0.028167374,-0.20840918,-0.18610053,0.038944457,0.15113127,0.06190371,0.07806662,0.05652659,0.7354928,0.8830543,0.5480461,0.3423026,0.9895102,0.89205694,0.52637845,0.3386293,0.21512076,0.1351089,0.13570814,0.025684398,-0.12464905,-0.26039016,-0.36818886,-0.4742415,-0.50420886,-0.54120445,-0.5776882,-0.6180774,-0.7140033,-0.74463373,-0.6257093,-0.72935957,-0.77892387,-0.8251161,-0.8706121,-0.91685385,-1.0062288,-0.81291974,-0.7684666,-0.7061622,-0.79783773,-0.8364801,-0.8708732,-0.90105265,-0.7205773,-0.4838568,-0.37884033,-0.474722,-0.4739992,-0.32563493,-0.43749893,-0.5225045,-0.61981905,-0.6520165,-0.69667834,-0.5327713,-0.62482786,-0.68481433,-0.7666774,-0.7941133,-0.81869197,-0.8539979,-0.9022132,-0.9406262,-0.9870362,-1.018364,-0.9721463,-0.99097925,-1.0080857,-1.027898,-1.0480247,-0.9488533,-0.5814821,-0.66660404,-0.707206,-0.7925763,-0.85349965,-0.8895179,-0.9043205,-0.9147986,-0.79461145,0.3370081,0.48888636,0.3120501,0.19488446,0.10469718,0.04262081,0.009033997,-0.013519194,-0.04296052,-0.09686546,-0.12121929,-0.16511257,-0.22397114,-0.28180787,-0.27303183,-0.16747995,-0.27369782,1.1648428,1.2425373,1.1579044,1.1493089,1.2085191,1.2875259,1.1874818,1.4413884,1.6848038,2.1031148,2.44304,2.6636546,2.7976642,2.918798,2.9759169,3.0351105,3.1055396,3.182282,3.2313263,3.2398548,3.1646166,2.9697247,2.7695317,2.4278426,1.9791622,2.4227343,2.3734574,2.1595647,2.5145094,2.8164515,2.875468,2.745233,2.2566948,2.126437,2.446125,3.0533643,3.5773168,3.8250208,3.986332,4.135931,4.1984887,4.0656424,3.8028116,4.0347347,4.1876426,4.277629,4.280924,4.3299904,4.376728,4.4259777,4.333456,4.1488094,4.101285,4.005524,3.3894374,3.0659177,2.9696593,2.7703202,2.9570136,3.1953259,3.6325758,4.004857,3.8053958,4.191044,4.2304506,4.2124004,4.4125204,4.5204697,4.5185165,4.5003295,4.5471597,4.4679346,4.4234076,4.432538,4.428975,4.4377184,4.412345,4.4037,4.470642,4.516653,4.2604947,3.2933679,2.258542,1.7917652,1.5239992,1.485606,1.5000399,1.5676181,1.6269215,1.5231361,1.9274573,1.8842847,1.8715078,1.5428956,1.3980609,1.4906523,1.6949699,1.9969926,2.0709155,2.971932,2.4936626,2.9568398,3.239659,3.3999724,3.147015,2.8326259,2.8167393,2.687523,2.1552093,1.507365,1.1001325,0.924814,0.8184885,0.775828,0.72455114,0.6190955,0.5532661,0.5189236,0.46168748,0.42064384,0.38667884,0.33928418,1.342671,1.4626164,1.1737132,0.9286849,0.7817059,0.7045602,0.6317597,0.5759051,0.49082994
+-1.9951594,-1.8785706,-1.968843,-2.0729523,-2.1173778,-2.1841104,-2.2692862,-2.0229692,-1.7443186,-1.415705,-1.0603291,-1.234306,-1.3285692,-1.445685,-1.5591962,-1.651288,-1.7507505,-1.7987826,-1.8688512,-1.9389321,-2.0128698,-2.0848296,-2.116264,-2.1520808,-2.2040467,-2.2259994,-2.2668185,-2.2878513,-2.3578072,-2.3741755,-2.4556117,-2.263334,-2.301001,-2.3420813,-2.403616,-2.4014878,-2.3421926,-2.2136452,-2.196326,-2.257512,-2.308723,-2.3568988,-2.397614,-2.425105,-2.4354086,-2.458878,-2.4828417,-2.5899682,-2.4871752,-2.4929645,-2.5149102,-2.520805,-2.5354753,-2.5439205,-2.5540895,-2.5493698,-2.5664258,-2.5865936,-2.5835867,-2.583637,-2.5907905,-2.6092272,-2.6174912,-2.6321323,-2.6657104,-2.6916273,-2.7072978,-2.7012131,-2.684124,-2.6892302,-2.6784441,-2.6918972,-2.6878572,-2.7157533,-2.7081218,-2.7375844,-2.7268682,-2.7401009,-2.758075,-2.7767339,-2.7783897,-2.7536817,-2.769624,-2.754528,-2.773956,-2.7599418,-2.7606153,-2.7384005,-2.7683496,-2.7377002,-2.631465,-2.2610748,-2.1050527,-2.1490288,-2.2372062,-2.3393931,-2.4069195,-2.4331474,-2.4851155,-2.5265622,-2.5611603,-2.6050477,-2.6262748,-2.6340156,-2.6296897,-2.6455216,-2.635654,-2.6426692,-2.6377711,-2.6816843,-2.600533,-2.5416832,-2.6010938,-2.6252856,-2.629531,-2.641319,-2.63448,-2.639392,-2.64685,-2.6403587,-2.3435888,-2.0284374,-2.054149,-2.042254,-1.8208647,-1.7552509,-1.787377,-1.8258259,-1.8837811,-1.987523,-1.8905494,-1.5346513,-1.0914862,-1.0523309,-1.2128602,-1.351443,-1.4878777,-1.5971954,-1.70771,-1.7990742,-1.8655566,-1.9502285,-2.0148556,-2.0699046,-2.119679,-1.9876758,-2.0433881,-2.1290421,-2.1928978,-2.2061472,-2.2179298,-2.2618828,-2.320691,-1.987001,-1.684117,-1.7753379,-1.8888054,-1.9969416,-2.0629153,-2.1972246,-2.0672445,-2.0557575,-2.1043253,-2.1625314,-2.2146068,-2.3519602,-2.2250695,-2.2812934,-2.329379,-2.3528976,-2.3729506,-2.392585,-2.4041467,-2.4538934,-2.5230215,-2.424584,-2.4272203,-2.4609916,-2.461927,-2.4716763,-2.4882474,-2.5552557,-2.4680498,-2.4839103,-2.3391113,-1.5877938,-1.5548003,-1.6590711,-1.7366743,-1.8051463,-1.8589439,-1.9062892,-1.9622989,-2.0107393,-2.045449,-2.0806963,-2.1204262,-2.148161,-2.1706629,-2.1980963,-2.236052,-2.2380857,-2.2577891,-2.2734392,-2.275503,-2.2857337,-2.3084965,-2.370474,-2.3519495,-2.341704,-2.3433456,-2.3417978,-2.3890724,-2.4183478,-2.441017,-2.4429145,-2.3642185,-1.3191514,-0.9435288,-1.1020565,-1.2158853,-1.3224515,-1.4337077,-1.5026531,-1.5473261,-1.5996299,-1.6414149,-1.6685195,-1.7236056,-1.7643263,-1.7810256,-1.8102787,-1.8922074,-1.8685088,-1.8172424,-1.6121974,-1.6337564,-1.6609509,-1.7402997,-1.7781847,-1.7815626,-1.5141971,-1.1415696,-1.2154008,-1.256299,-1.2901438,-1.3725597,-1.435961,-1.4760126,-1.5176814,-1.5610006,-1.5766373,-1.5977031,-1.6167443,-1.6395401,-1.6596664,-1.6818175,-1.7036748,-1.7330706,-1.586529,-1.0899211,-1.1459103,-1.202573,-1.2651067,-1.3368088,-0.74846244,-0.48265272,-0.6301157,-0.2189794,-0.48260742,-0.6463684,-0.7695726,-0.847393,-0.88627195,-0.922764,-0.62384224,-0.5756864,-0.7679567,-0.8523619,-0.9259989,-0.97762585,-1.0434537,-1.0719496,-1.1191933,-1.1964221,-1.2565808,-1.2950689,-1.3222198,-1.3661693,-1.259068,-1.0993267,-1.1359787,-1.2089373,-1.303848,-0.8621517,0.2586317,-0.2825251,-0.36942956,-0.18859808,-0.38236392,-0.56723857,-0.6248704,-0.65827376,-0.6687528,-0.7141371,-0.7852037,-0.86987317,-0.95121264,-1.0323532,-1.0975183,-1.1552986,-1.2289922,-1.2954224,-1.3501617,-1.3652962,-1.3858337,-1.4251821,-1.4865866,-1.5365269,-1.5180653,-1.5375946,-1.5574867,-1.6114751,-1.5050318,-0.31897727,-0.16617231,-0.5325072,-0.6809254,-0.79152566,-0.90984905,-0.9685103,-1.0527724,-1.161475,-0.87474597,-0.76037025,-0.863816,-0.9746928,-1.0866842,-1.2084754,-1.2722789,-1.4048479,-1.3184047,-1.2320938,-1.3235327,-1.4155056,-1.4884963,-1.5413418,-1.5967875,-1.6523612,-1.6957436,-1.7422348,-1.7916822,-1.8380972,-1.8879745,-1.9271836,-1.9782441,-1.7884194,-1.6191757,-1.6549718,-1.7278215,-1.8030101,-1.8524069,-1.9013247,-1.9463181,-1.9942486
+-1.9586308,-1.7901092,-1.8715754,-2.0342197,-2.1369424,-2.250132,-2.3604717,-0.7811915,-0.3247416,-0.38699675,-0.23321927,-0.33224964,-0.48390904,-0.6727103,-0.84023315,-0.9969055,-1.138309,-1.2572607,-1.3797174,-1.4973435,-1.5732265,-1.6833295,-1.7225096,-1.7454722,-1.8295794,-1.8552917,-1.9016079,-2.0001304,-1.9934179,-2.0687282,-2.1138892,-2.148663,-2.1875615,-2.2523665,-2.3360295,-2.3699102,-2.419332,-2.4689646,-2.4707506,-2.493165,-2.5069337,-2.571578,-2.5997603,-2.6507719,-2.6828678,-2.707632,-2.725957,-2.7450542,-2.7650728,-2.7900813,-2.8059318,-2.8248801,-2.823143,-2.8287356,-2.8422225,-2.8416204,-2.864922,-2.858601,-2.8561268,-2.874228,-2.8742166,-2.9265747,-2.942033,-2.9420571,-2.977007,-3.0050144,-3.0089827,-2.9926617,-2.985886,-3.0149796,-3.0166397,-3.022066,-3.0406606,-3.063776,-3.0502274,-3.0579832,-3.0480251,-3.0635972,-3.0671563,-3.103182,-3.1079164,-3.0620556,-3.1160254,-3.1162286,-3.1106253,-3.104827,-3.1039672,-2.7695177,-2.428677,-1.8937787,-1.099343,-0.926128,-0.9402558,-1.1599197,-1.2988412,-1.4801898,-1.6204221,-1.6939768,-1.8125437,-1.8938674,-1.9780344,-2.074674,-2.1415772,-2.2147586,-2.224409,-2.2550135,-2.290069,-2.1562564,-1.3133953,-0.9024507,-0.8986841,-1.0262604,-0.9745499,-1.012918,-1.0702798,-1.1246961,-1.1674302,-0.9624458,-0.26893705,-0.20134565,0.46545428,0.7004248,0.9364958,0.92509377,1.0430069,1.0214243,0.6304792,0.26279837,-0.00075657293,-0.23759773,-0.15317926,0.20509148,0.11245005,-0.020773422,-0.19172154,-0.3373352,-0.48296505,-0.61230266,-0.7319443,-0.8297338,0.04737364,0.6576278,0.5891285,0.34805757,0.035857696,-0.16317879,-0.3374591,-0.20237604,0.05481233,-0.24071123,-0.44200873,-0.59077615,-0.64523077,-0.64273465,-0.54912794,-0.7398132,-0.9410974,-1.100841,-1.1331971,0.076943114,0.91916144,0.28923875,-0.028922077,-0.21732976,-0.3564265,-0.54852456,-0.6952189,-0.80689937,-0.91506326,-1.0010858,-1.136558,-1.1564881,-1.1185206,-0.84160197,-0.84055746,-0.9337798,-1.1229547,-1.2599497,-1.0538733,-0.30252093,-0.3046692,-0.30494753,0.13614254,0.3413996,-0.006852623,-0.18437321,-0.3908743,-0.5106348,-0.60360277,-0.76753294,-0.79818404,-0.75434196,-0.8611637,-0.98994327,-1.0956668,-1.1880136,-1.2825115,-1.339623,-1.366884,-1.3959769,-1.4322692,-1.4735525,-1.5709573,-1.574395,-1.6101868,-1.5125442,-1.1905622,-1.1319249,-1.2134702,-1.2827723,-1.392233,-1.463203,-1.533973,-1.5741405,-1.6146404,-1.642246,-1.6366156,-1.4512154,-1.4652892,-1.5253341,-1.5557914,-1.6169205,-1.6185281,-1.6256126,-1.6209245,-1.6504819,-1.6650145,-1.6908417,-1.7089646,-1.7445155,-1.6966801,-1.7261542,-1.7447977,-1.8333917,-1.6229761,-1.4723105,-1.4758682,-1.5730214,-1.5842342,-1.6142291,-1.5891122,-1.4594672,-0.7383548,-0.6275393,-0.6678425,-0.7766688,-0.91621506,-0.9039843,-0.9034088,-0.9189798,-0.93909705,-0.9550534,-0.9913736,-1.0082741,-1.0421827,-1.0746896,-1.0956625,-1.1208279,-1.1497387,-1.2789838,0.015224759,0.12612991,-0.076578364,-0.18133211,-0.23313765,0.580195,0.6603509,0.33176973,0.7442414,0.4108171,0.12798238,-0.0014108531,-0.15059632,-0.2630508,-0.23719022,0.75855076,0.53749126,0.27875513,0.13275734,-0.0035964213,-0.078429475,-0.12701616,-0.23352657,-0.34447163,-0.42833793,-0.48496258,-0.54871887,-0.62738466,-0.5059993,0.18445452,0.33450216,0.1070957,-0.018730413,-0.104469806,0.02022304,0.9069942,0.44615078,0.21639489,0.5090857,0.34563473,0.17173411,0.10911286,0.112652436,0.0795524,0.026509698,-0.11691038,-0.21829867,-0.28420204,-0.3793108,-0.4688365,-0.5380662,-0.60676426,-0.63809365,-0.6705303,-0.7039745,-0.73542225,-0.79333115,-0.8503188,-0.8350994,-0.8005584,-0.82952183,-0.85682917,-1.0054699,-0.9785738,-0.44681776,-0.06757273,-0.28031874,-0.36911276,-0.41909876,-0.48275054,-0.5365385,-0.86485267,-0.78001034,-0.87752724,-0.83353776,-0.8782909,-0.9997952,-1.0770979,-1.1663668,-1.1272677,-1.1825744,-1.2602341,-1.2857952,-1.3538289,-1.4227953,-1.4088099,-1.454397,-1.4984908,-1.5195782,-1.5670757,-1.5968024,-1.633539,-1.6958648,-1.7386123,-1.7438381,-1.8033326,-1.7791805,-1.8162191,-1.8371222,-1.8454921,-1.8706236,-1.8468022,-1.904265,-1.9250344,-1.9973547
+-1.6016037,-1.803854,-1.8759916,-1.9865884,-2.0990014,-2.2177312,-2.3229947,-1.821736,-1.5801234,-1.5946068,-1.6608586,-1.8119242,-1.8694007,-1.9138929,-1.9611484,-1.9907204,-2.042553,-2.08851,-2.1359437,-2.2058914,-2.2674286,-2.3348188,-2.3824942,-2.4303522,-2.4536085,-2.4608555,-2.4822326,-2.5135098,-2.5125701,-2.546164,-2.5585692,-2.5669627,-2.5602007,-2.5780346,-2.5965352,-2.6266057,-2.6587236,-2.6918612,-2.669383,-2.6847053,-2.6988573,-2.7165847,-2.7283142,-2.748701,-2.7641692,-2.7602692,-2.7779999,-2.7929416,-2.8015633,-2.7934086,-2.7922742,-2.7969904,-2.8023062,-2.8077116,-2.8103325,-2.8043933,-2.801152,-2.7952251,-2.8040056,-2.8181362,-2.8257318,-2.844297,-2.8515372,-2.8653088,-2.8986528,-2.9574854,-2.9700742,-2.9457042,-2.9757454,-2.995259,-2.598869,-2.3897405,-2.4136915,-2.5159283,-2.552115,-2.5691218,-2.5978568,-2.6372304,-2.6657536,-2.716424,-2.725096,-2.7611837,-2.809455,-2.8184066,-2.7898982,-2.8237085,-2.7600386,-2.7976096,-2.801034,-2.472466,-1.1013774,-0.49525908,-0.64211917,-1.0106956,-1.2707379,-1.5166291,-1.6784658,-1.8026152,-1.9277339,-2.0435584,-2.1689112,-2.260377,-2.3193069,-2.3992054,-2.4600115,-2.5043187,-2.4954317,-2.5768986,-2.465709,-2.3363163,-2.291113,-2.3216517,-1.66047,-0.28425202,-0.08131398,-0.41240835,-0.70414805,-0.8988279,-0.1927702,-0.01761337,-0.25543368,0.20898065,0.38131568,0.48218286,0.68101287,0.5640233,0.08149004,-0.2140044,-0.45885646,-0.67864406,0.11509542,0.32372192,-0.102459535,-0.38153642,-0.3876949,-0.48960173,-0.6718979,-0.86665106,-1.0281132,-1.1719844,-1.0782819,-0.053794127,0.056586396,-0.19539587,-0.49481916,-0.71440136,-0.88933206,-0.9994608,-1.081926,-1.222387,-1.3435729,-1.4586651,-1.478344,-0.995648,-1.0350989,-1.2171391,-1.3625405,-1.4890089,-1.6044973,0.33114028,0.75358593,0.18318081,-0.054698046,-0.26196936,-0.43132702,-0.596702,-0.7714349,-0.90667796,-1.0183777,-1.1193943,-1.2231528,-1.298938,-1.3399789,-1.4042772,-1.4608358,-1.5034587,-1.5494237,-1.5952115,-1.6265068,-0.4057774,-0.0834259,-0.2033706,-0.45660472,-0.62241846,-0.78930396,-0.8895504,-1.0356805,-1.1365833,-1.2256311,-1.3034489,-1.3681166,-1.4170476,-1.4724808,-1.5120271,-1.5594504,-1.6074573,-1.6541607,-1.6953791,-1.7295518,-1.7793986,-1.8199836,-1.8537489,-1.8705072,-1.8829402,-1.9125488,-1.9535577,-2.0110261,-2.0235736,-2.056461,-2.0312219,-2.0298169,-2.0315824,-2.096468,-2.1090484,-2.117949,-2.108026,-2.1099205,-2.121696,-2.1302776,-2.1194143,-2.1043413,-2.0848017,-2.040894,-2.0354884,-2.0656695,-2.0683138,-2.0677056,-2.0691085,-2.052851,-2.053854,-2.064932,-2.085973,-2.079912,-2.0977225,-2.129423,-2.1416345,-2.1335616,-2.140339,-2.105284,-2.132413,-2.1171098,-2.1438363,-2.1555138,-2.0933652,-2.060757,-2.0935614,-1.9842807,-1.9766574,-1.9612883,-1.9576554,-1.9796768,-1.984496,-1.9825381,-1.9753654,-1.9611561,-1.9622864,-1.9636025,-1.9596407,-1.9365339,-1.9852644,-1.9106076,-1.9054724,-1.9403834,-1.9456803,-1.9826126,-0.56324065,0.26344812,-0.16989768,0.18390723,0.019794587,-0.2363125,-0.35971546,-0.48617187,-0.5379435,-0.6460513,-0.07468523,0.06800267,-0.2070287,-0.3715822,-0.48110896,-0.565223,-0.62758243,-0.71172744,-0.7759899,-0.86698514,-0.92715955,-0.9675243,-1.0235721,-1.0119421,0.32164943,0.38433817,0.09865363,-0.09031176,-0.2556283,-0.26988536,1.0293113,0.5817629,0.2875511,0.11701593,0.005194772,-0.15101911,-0.21149512,-0.2547956,-0.26166663,-0.30057234,-0.39489514,-0.47611964,-0.538539,-0.5854874,-0.64640963,-0.69423854,-0.76964784,-0.8526422,-0.9217213,-0.9813584,-1.0079489,-1.0536098,-1.111687,-0.9926897,-0.929865,-0.61202717,-0.5355381,-0.7092839,0.053549174,0.5483328,0.5830921,0.16279882,-0.11319533,-0.25342703,-0.38510793,-0.48662385,-0.6306615,-0.7218663,-0.8636557,-0.9329729,-1.0174342,-1.1147649,-1.2056744,-1.2706065,-1.3418994,-1.3890126,-1.438194,-1.5048738,-1.5782263,-1.6667476,-1.7175343,-1.768256,-1.8255562,-1.8720446,-1.9460433,-1.9861827,-2.0292416,-2.0959933,-2.1479268,-2.1726089,-2.2283864,-2.2252822,-2.2331467,-2.2310529,-2.257564,-2.2909002,-2.2970884,-2.298421,-2.3160715,-2.329249
+-1.9434279,-1.9762583,-2.0979629,-2.2515802,-2.3781781,-2.5046978,-2.5658631,-2.4737928,-2.5311172,-2.5906353,-2.5991054,-2.6139219,-2.6127348,-2.6578918,-2.7019315,-2.7128358,-2.738274,-2.7599247,-2.7789264,-2.7982948,-2.8165593,-2.8211892,-2.833488,-2.8343065,-2.8591146,-2.8920383,-2.8821778,-2.8913927,-2.8996358,-2.9093075,-2.9053993,-2.9088008,-2.9288998,-2.9355543,-2.9366508,-2.9424212,-2.964675,-2.9677203,-2.9520059,-2.960503,-2.9410143,-2.952418,-2.9562519,-2.9293416,-2.9861205,-3.024641,-3.0291214,-3.026092,-3.0322256,-3.029468,-3.0377996,-3.074658,-3.073794,-3.0701308,-3.0776477,-3.0752716,-3.0604272,-3.0591595,-3.046392,-3.084716,-3.0678463,-3.0669622,-3.0922432,-3.1146324,-3.2010446,-3.2398384,-3.2110415,-3.0722175,-3.100874,-3.119203,-3.1241279,-3.1524863,-3.1579657,-3.1721952,-3.209313,-3.2004046,-3.1613653,-3.1355526,-3.1766787,-3.21369,-3.1480598,-3.1017141,-3.2121809,-3.205134,-3.0970054,-3.1283448,-3.130612,-3.1443462,-3.0626438,-1.5872083,-0.6690731,-0.54442453,-0.8096162,-1.0378954,-1.2966275,-1.4776855,-1.2165269,-1.1367401,-1.2588208,-1.4048991,-1.6157464,-1.7593932,-1.8420672,-1.9118692,-1.3023065,-0.970325,-1.1170428,-1.0343965,-1.0003824,-1.0869526,-1.2341487,-1.4197812,-1.322527,0.056401733,0.4526272,0.9126795,0.51052624,0.1924214,0.64332193,0.8940746,1.115284,1.0027086,0.77378154,0.4677744,0.5752647,0.31819052,0.0770168,-0.11659543,-0.37742883,-0.25104815,0.73253953,0.50282264,0.22155617,0.006500382,-0.1829343,0.090988174,-0.020051163,-0.17911094,-0.34517825,-0.28996232,-0.10835959,0.08324489,0.14422008,0.060005326,-0.08911571,-0.2681386,-0.42873752,-0.4761969,-0.54596114,-0.72197866,-0.83520746,-0.9369244,-0.49736866,-0.25037897,-0.4382643,-0.63017297,-0.80227137,-0.96381205,-0.26492953,1.2876774,0.75881666,0.32927367,0.15907046,0.051039044,-0.10484673,-0.30417198,-0.46988463,-0.6588079,-0.7429137,-0.8473445,-0.93781567,-0.9582347,-1.0323311,-1.0969971,-1.1757263,-1.2195909,-1.2627857,-1.3458099,-1.2412124,-0.632259,-0.6916455,-0.83174384,-0.9333637,-1.0197259,-1.1324885,-1.1963754,-1.289206,-1.3348029,-1.3824316,-1.410205,-1.4364568,-1.46872,-1.5091476,-1.5438066,-1.5961614,-1.6720562,-1.7146995,-1.7478069,-1.7668936,-1.7947974,-1.8113583,-1.8285013,-1.8550198,-1.8896216,-1.9038779,-1.9152623,-1.9572972,-1.9730914,-2.0113804,-1.9957919,-2.006006,-2.0084486,-2.0322962,-2.0478187,-2.0709238,-2.0699854,-2.0745869,-2.074726,-2.1089258,-2.0955968,-2.0946336,-2.106167,-2.1472554,-2.1082945,-2.0813723,-2.112105,-2.115345,-2.1175888,-2.1191077,-2.1332436,-2.0950687,-2.1177912,-2.1480289,-2.1753948,-2.1323748,-2.1488647,-2.1678681,-2.1708605,-2.1600559,-2.1718416,-2.1386251,-2.1511118,-2.1786923,-2.179656,-2.160643,-2.202179,-2.2150886,-2.1866198,-2.1533446,-2.1391098,-2.1289942,-2.1334262,-2.1438074,-2.1260848,-2.1091638,-2.1100998,-2.1095705,-2.1230094,-2.1029856,-2.1010633,-2.107154,-2.1509514,-2.1975446,-2.2068644,-2.0255764,-0.36173886,0.0010244884,-0.21339537,-0.17924197,-0.27845412,-0.3805006,-0.43852496,-0.5385189,-0.59322983,-0.6881481,-0.41380882,-0.12760438,-0.279065,-0.39570898,-0.4793887,-0.53465396,-0.6338122,-0.76527226,-0.81978405,-0.826324,-0.8749233,-0.92003727,-0.9721198,-0.557312,0.27870455,-0.028238263,-0.19253536,-0.27955514,-0.3797173,-0.096483275,0.62662005,0.1494383,-0.10018796,-0.2273927,-0.33322823,-0.43423885,-0.49950895,-0.59668493,-0.644984,-0.6775848,-0.7261727,-0.7301549,-0.7618946,-0.8138429,-0.8938204,-0.9119206,-0.95157945,-1.0091925,-1.073276,-1.098849,-1.0959888,-1.1239603,-1.1726133,-1.1836716,-1.1611538,-1.2035682,-1.2103962,-1.2971563,0.040636722,0.6069669,0.2742129,-0.08927208,-0.22536047,-0.32866043,-0.452148,-0.5738778,-0.6828039,-0.7585341,-0.8253525,-0.88932806,-0.94623995,-1.0137151,-1.074237,-1.1288753,-1.2021016,-1.2543173,-1.3256083,-1.4019601,-1.4854965,-1.5451853,-1.6255128,-1.7030015,-1.7666584,-1.8272057,-1.9142597,-1.9594176,-2.0111089,-2.0703793,-2.0383804,-2.0927982,-2.133391,-2.0951817,-2.1758955,-2.198263,-2.2332926,-2.2168787,-2.213324,-2.2513933,-2.2893643,-2.3061836
+-1.6421286,-1.9951842,-2.1664116,-2.2452278,-2.3162475,-2.4386153,-2.338869,-1.9833943,-2.0851474,-2.121549,-2.169912,-2.2065818,-2.250144,-2.2875643,-2.3125618,-2.3346763,-2.4094758,-2.483295,-2.5291715,-2.524259,-2.5415535,-2.574067,-2.5942745,-2.6013784,-2.6064124,-2.6214423,-2.630381,-2.6464043,-2.651551,-2.6637383,-2.67283,-2.6868362,-2.699892,-2.7136166,-2.734298,-2.7465005,-2.747489,-2.753446,-2.7609234,-2.7719393,-2.783035,-2.799622,-2.8223672,-2.8317142,-2.8256006,-2.83406,-2.8264427,-2.8291626,-2.8333354,-2.8417087,-2.8723104,-2.4416475,-2.3058777,-2.3036237,-2.38933,-2.4288964,-2.4603305,-2.4973059,-2.5518148,-2.5114775,-2.5530956,-2.5669465,-2.5846128,-2.6194806,-2.6372051,-2.6677792,-2.6855443,-2.7009423,-2.7240381,-2.7496066,-2.7711017,-2.7842193,-2.7962656,-2.7980354,-2.8019009,-2.8093135,-2.8219533,-2.8510096,-2.8734236,-2.8685818,-2.9108982,-2.8641133,-2.96018,-2.87281,-2.8962977,-2.9001045,-2.8987017,-2.908723,-2.9299276,-2.93638,-2.9357553,-2.942802,-2.9459677,-2.9494243,-2.949976,-2.964681,-2.9498112,-2.9597318,-2.96381,-2.9677284,-2.9685585,-2.966106,-2.965149,-2.9778268,-2.9936922,-2.9947145,-2.999537,-2.995275,-3.0007768,-3.0004692,-2.9926014,-2.9954295,-3.0042078,-3.0086248,-3.0146072,-3.0099568,-3.0088923,-3.0122528,-3.0271497,-3.0162706,-3.0976276,-3.0054498,-3.0057597,-3.0019264,-2.9977665,-2.9931467,-2.993962,-2.9992013,-3.0098703,-3.0477524,-1.0917883,-0.36604834,-0.52952176,-0.72254026,-0.90192604,-1.0470194,-1.1813462,-1.1064872,-1.1251197,-1.2710178,-1.4331558,-1.5552871,-1.6344664,-1.709048,-1.7702054,-1.8407569,-1.9040033,-1.9646466,-2.0198817,-2.0637321,-2.0867124,-2.1242285,-2.1597335,-2.1876497,-2.2278364,-2.2614923,-2.2856503,-2.3157306,0.64947546,0.53606653,0.014768068,-0.30561697,-0.5076913,-0.68453443,-0.8610857,-1.0233414,-1.124343,-1.2203448,-1.3194731,-1.4159628,-1.4927672,-1.5839726,-1.6512104,-1.707911,-1.7487425,-1.77772,-1.8105592,-1.7456002,-1.1839404,-1.1567752,-1.2095318,-1.3133177,-1.2365669,-0.6459292,-0.48633653,-0.6137986,-0.8025775,-0.9395745,-1.070111,-1.1815431,-1.2891653,-1.3860273,-1.4720929,-1.5529199,-1.6166861,-1.6733361,-1.7222836,-1.7657197,-1.8056355,-1.849956,-1.8886869,-1.9188374,-1.9581863,-1.9912857,-2.0139623,-2.0394073,-2.0723426,-2.1034467,-2.130733,-2.1468904,-2.1632113,-2.1802974,-2.2013109,-2.2127836,-2.2315469,-2.2343223,-2.2556357,-2.2722855,-2.2965124,-2.3009787,-2.3034842,-2.311102,-2.3178911,-2.332398,-2.3517818,-2.3642929,-2.370923,-2.3807163,-2.393551,-2.4231162,-2.4289145,-2.467533,-2.463171,-2.468082,-2.4842548,-2.4874487,-2.4957108,-2.5026376,-2.507244,-2.4907427,-2.4880185,-2.4986334,-2.5055208,-2.5363727,-2.5396662,-2.475757,-2.4376948,-2.4289618,-2.4376845,-2.4382248,-2.4568021,-2.4725726,-2.469386,-2.4669805,-2.4627628,-2.4731674,-2.478654,-2.4717271,-2.4731116,-2.4674463,-2.471663,-2.4820561,-2.5557609,-2.514473,-2.5408971,-2.4744744,-2.3873744,-2.4192324,-2.4319544,-2.473356,-2.4827816,-2.5446384,-2.4516969,-2.1995595,-2.1292038,-2.1058967,-2.1321137,-2.1804214,-2.216339,-2.2303758,-2.249164,-2.2500238,-2.2542913,-2.2431788,-2.2705908,-2.2928748,-2.3181145,-2.3287127,-2.3396826,-2.3120918,-2.3380237,-2.345213,-2.35667,-2.3784313,-2.3568807,-2.3822103,-2.3777966,-2.3833685,-2.384229,-2.3810797,-2.4056177,-2.3955135,-2.4005475,-2.39572,-2.388012,-2.3946872,-2.412834,-2.4230258,-2.4229732,-2.4172041,-2.4142406,-2.4225664,-2.4524426,-2.4590826,-2.4617848,-2.4654412,-2.4665823,-2.4666278,-2.4607515,-2.4845996,-2.5319448,-2.4941816,-2.5057135,-1.7336211,-0.5899643,-0.8132728,-1.0479488,-1.1926343,-1.2838366,-1.4153852,-1.5605236,-1.6095778,-1.6511974,-1.7212169,-1.7868682,-1.8492047,-1.8910447,-1.9449539,-1.9856682,-2.0084145,-2.0700479,-2.1370015,-2.178769,-2.1928487,-2.2105627,-2.2493343,-2.2875419,-2.3216789,-2.3412776,-2.3716438,-2.3990417,-2.426817,-2.4493396,-2.4688864,-2.4750865,-2.509775,-2.4761953,-2.484034,-2.5276713,-2.534409,-2.5500016,-2.5498133,-2.5619266,-2.6010945,-2.5912333
+0.5709126,0.20596096,-0.2194349,-0.37337956,0.079766065,0.023773592,-0.15740421,-0.2302201,-0.33746123,-0.4779557,-0.40553647,-0.4063241,-0.40344566,-0.27305967,0.3407445,0.25036716,0.011459824,-0.17158149,-0.30482405,-0.40006584,-0.47485355,-0.5217958,-0.5218258,-0.2218204,0.905466,1.0340743,0.67931867,0.5546094,0.31098425,0.114169165,-0.09867516,-0.27485624,-0.37209928,-0.4680065,-0.5592934,-0.6056106,-0.6428448,-0.66011155,-0.050172623,0.94003546,0.4999683,0.3205791,0.280309,0.04186407,-0.12189156,-0.2735111,-0.39704168,-0.52863204,-0.4278753,0.0035408996,0.6867054,0.7642479,0.96208215,0.8492334,0.45036983,0.13289706,0.15641244,0.60947454,0.21220393,0.4010591,0.50445193,0.11099264,-0.10111444,-0.22729726,-0.37852257,-0.48574376,-0.5276621,-0.60735345,-0.7005406,-0.26528385,-0.35262352,0.15072574,0.0006924458,-0.3054389,-0.45321006,-0.4379496,-0.25268286,-0.2819658,-0.52181107,0.040285338,-0.24196447,0.02554902,0.5597981,0.021607716,0.12414366,0.46888363,0.39019865,0.19246002,-0.13552924,0.06106856,-0.09995513,-0.23860617,-0.33757415,-0.5326273,-0.6748616,-0.7926668,-0.6911198,-0.33867225,-0.54989654,-0.6680169,-0.7336268,0.38815328,1.0687823,0.72145206,0.9072013,0.5855614,0.98486876,0.6510002,0.24231695,0.021443766,-0.17070234,-0.38326463,-0.4608644,0.09199864,-0.14325622,-0.34421867,-0.25174654,0.22886123,0.017117664,-0.16141786,-0.2833356,-0.26176047,-0.40476406,-0.5564116,0.0067574307,0.38625765,-0.1306916,-0.30509752,-0.26719782,0.27441096,0.052387234,0.8499432,0.6175679,0.35392618,0.10932736,-0.037649147,0.01029155,-0.16071302,-0.24841754,-0.2283482,0.03986687,-0.2556474,-0.4368153,-0.5586562,-0.27725494,0.20087835,0.08027086,0.47070038,0.003438253,-0.18914928,-0.32776934,-0.36801258,-0.32010388,-0.4492051,-0.33574077,-0.49808413,-0.6388169,-0.5181004,-0.44866186,-0.36969352,-0.049766935,0.4154022,-0.03270105,0.08973758,0.3740127,0.040285576,-0.12577718,-0.29050928,-0.36444676,-0.4215328,-0.46358317,-0.5261575,-0.5417019,-0.5530898,0.3309017,1.0061119,0.47472966,0.17135486,0.0014885478,-0.108814254,-0.17058024,-0.22678578,-0.26940602,-0.22193162,-0.2675969,-0.30837864,0.71342283,0.9594101,0.6449957,0.60280204,0.8175044,0.72442746,0.9186788,0.92370445,1.0293517,1.192878,1.3899754,0.9320148,0.6764477,0.4620568,0.5260266,0.5054623,0.3670564,0.26606622,0.18152443,0.122671366,0.084592074,0.037535276,-0.03394522,-0.01640864,0.39878708,0.42681113,0.30728856,0.5807488,0.7591673,0.44761992,0.3259096,0.23605348,0.16887195,0.09373063,0.032171365,0.03107823,-0.020509582,-0.07063502,-0.07613644,-0.12747009,-0.16323975,-0.07617861,0.061362263,0.080336004,0.07644074,0.10983159,0.2485532,0.34048757,0.41325632,0.36484352,0.42430514,0.53391236,0.508513,0.5331143,0.5245581,0.5954053,0.67847586,0.7441685,0.76605713,0.7773936,0.88802826,0.9537294,1.1319566,1.2233126,1.2588385,1.2445406,1.2253742,1.2172384,1.2152009,1.2690036,1.2898275,1.2950156,1.2772143,1.2778221,1.277494,1.2730294,1.3019576,1.3851221,1.4861537,1.4160225,1.4361217,1.5122468,1.5750761,1.6116488,1.5599822,1.5985525,1.6200087,1.6401035,1.6937188,1.7316322,1.7481294,1.7089094,1.6928927,1.66633,1.6730497,1.7084827,1.6669407,1.6207509,1.6071767,1.5554516,1.6039333,1.6118369,1.6632295,1.7014323,1.7528541,1.7514744,1.8202035,1.910701,2.0096684,2.0763407,2.131137,2.1897707,2.1562886,2.10963,2.0682268,2.057125,2.096362,2.1152716,2.1020455,2.135209,2.1520305,2.078493,2.0423095,1.9685419,1.9214321,1.913883,1.947653,1.9402806,2.0197728,2.0882654,2.1628563,2.1965451,2.2298512,2.3382177,2.4330573,2.6079936,2.7360396,2.932034,3.2133985,3.1113603,3.278819,3.2902575,3.2948244,3.247836,3.1776958,3.091534,3.0585155,3.0051994,2.929174,3.0003629,2.950793,3.0618634,3.2734878,3.3499813,3.1974328,3.1384947,3.0643,2.9960775,2.9450788,2.873189,2.9059246,3.0023375,3.2135534,3.5032816,3.8545444,3.8408976,3.663745,3.553568,3.5234234,3.4304779,3.0508528,2.3294094,1.6981993,1.2066251,0.69962996,0.44586766,0.22045438,0.07936999,0.031096574
+0.020334397,-0.12730198,-0.14642236,-0.24760483,0.74500644,0.6147857,0.36273664,0.17427571,0.12906854,-0.008036595,-0.12779218,-0.13897835,0.13794367,0.38360286,1.3924,0.9945533,0.6545941,0.43813372,0.3117476,0.24036555,0.12384878,-0.05842938,-0.12846519,-0.07011941,0.51008576,0.7363794,0.52001846,0.71328175,0.60329235,0.3939369,0.21670647,0.07957168,-0.013880156,-0.1291048,-0.26101786,-0.24574433,-0.11253306,-0.26069117,0.005511541,1.3601904,1.2652922,0.7873601,0.9051788,0.7319813,0.48074704,0.32716274,0.13395399,0.039473567,0.0554418,0.5627908,0.8712141,0.6630194,1.0979356,0.795342,0.5679566,0.46966112,0.33418918,0.47967434,0.28807798,0.19285108,0.52045864,0.44507772,0.17917173,0.060916934,-0.071349606,-0.14542314,-0.22508116,-0.29084057,-0.36037406,-0.33009893,-0.3677264,0.28783086,0.29657143,-0.031464603,0.030555908,0.14967947,0.5776684,0.3072543,0.08257954,0.34352452,0.13733894,-0.04759345,-0.13647828,-0.28686243,-0.035641085,0.64929444,0.3496586,0.16391505,-0.02889027,-0.012976158,0.016033888,-0.15348434,-0.25993657,-0.15960677,-0.22218296,-0.4337643,-0.51722735,-0.3651808,-0.56197476,-0.5899844,-0.5361372,1.0539576,0.8455001,0.59863216,0.51839876,0.36556515,0.31047308,0.28181124,0.333972,0.2553537,0.13489941,-0.019940954,-0.2861044,-0.41768175,-0.5545023,-0.64381886,-0.7056477,-0.53803384,-0.5255611,-0.5340373,-0.5415681,-0.6888268,-0.82380545,-0.91838294,-0.96527004,-1.0124476,-1.0967455,-1.1286778,-1.1889853,-1.2385709,-1.3039982,-0.05632588,0.20958,0.038440693,0.064271465,-0.15961078,-0.24399762,-0.37941712,-0.49501443,-0.29832172,0.56297725,0.08342482,-0.13477726,-0.282369,-0.31710202,-0.2987278,-0.34657228,-0.38787678,-0.4731439,-0.55304945,-0.6800773,-0.74002594,-0.8006458,-0.9168358,-0.837687,-0.900587,-0.7835909,0.8910996,0.5549231,0.4811479,0.3801607,0.3813792,0.26478627,0.16228046,0.33568126,0.14798522,-0.014132619,-0.077496916,-0.10863556,-0.15249196,-0.17032109,-0.34369943,-0.38339168,-0.12481566,1.2642837,1.2847494,0.8392625,0.5858241,0.38016242,0.21785744,0.08761096,-0.01687745,-0.093025506,-0.15221839,-0.056294043,0.85528135,1.6913033,1.2049965,0.95391196,0.8645764,0.8151008,0.58382475,0.91248333,1.0789951,1.4332204,1.6648052,1.5084393,0.9768859,0.6966151,0.53798914,0.51232743,0.42806432,0.3858541,0.40021822,0.44440955,0.37815574,0.25753635,0.23205678,0.2188981,0.22653677,0.32464045,0.30632496,0.231364,1.0657579,0.9912379,0.754135,0.5780476,0.4136146,0.3243264,0.26704466,0.15812127,0.112425014,0.05088949,-0.020928856,-0.07105271,-0.08952118,-0.11813933,-0.10121873,-0.12269537,-0.10945432,-0.107410416,-0.15917845,-0.099885985,-0.04643968,-0.09666024,-0.14772992,-0.10472262,-0.048156958,-0.063473865,-0.021472398,-0.045204874,-0.0041422285,0.06206033,0.1579657,0.35128748,0.38913512,0.42179918,0.46624732,0.6349503,0.71018183,0.7007797,0.6798179,0.6701464,0.7194094,0.71525383,0.7390052,0.692139,0.6628504,0.7169839,0.724296,0.6825121,0.64798206,0.6573788,0.68685365,0.6865447,0.6882749,0.7043859,0.80436087,0.7957207,0.7714309,0.7146195,0.6975318,0.7203387,0.8083354,0.77691317,0.8690313,0.92048717,0.85624766,0.81352246,0.78326887,0.77925164,0.7935904,0.86560506,1.0204409,1.1283684,1.102931,1.1002575,1.1135241,1.1429608,1.1632435,1.1911225,1.2089617,1.2984626,1.3900294,1.4528153,1.4620887,1.4572105,1.6394132,1.6435392,1.5870533,1.5498503,1.5193092,1.5322793,1.5460544,1.5484658,1.7275687,1.7235401,1.6903895,1.6125226,1.720892,1.7827001,1.8187841,1.7568679,1.6899527,1.7879043,2.018416,1.9814475,1.9132365,1.902054,1.9933124,2.0620208,2.3105245,2.5138025,2.6837273,2.8794875,2.8180404,3.1012392,3.2584248,3.0454507,3.0790825,2.934866,2.9279823,2.9411907,2.8455286,2.7875516,2.801919,2.888702,3.062264,3.330552,3.392774,3.2074714,3.2130504,3.0965629,3.129178,3.111735,3.0712335,3.088636,3.1476533,3.4005315,3.6295366,3.6262608,3.2018914,2.5358286,2.237394,2.1500788,1.9643499,1.6509665,1.2701576,0.936428,0.6293491,0.508193,0.41714543,0.31397855,0.29795498,0.25509796
+0.6860545,0.38149083,0.20428264,0.09030859,0.20509912,0.16881381,0.11891107,0.07728739,-0.008771166,-0.047398265,-0.0937654,-0.060912207,-0.032388814,0.15141056,0.5057403,0.4732257,0.39505774,0.26874763,0.21574344,0.12181571,0.013436798,-0.103580415,-0.08628266,0.6098224,0.70663345,0.6107516,0.65935326,0.8442955,0.9616336,0.9948764,0.9557703,0.75885737,0.47267938,0.24332388,0.084546894,0.056618292,0.05933017,-0.024861638,0.5750574,1.1951643,1.0235238,0.7644766,0.71021783,0.64016616,0.65499735,0.89793336,0.67898196,0.45254543,0.3843984,0.48300028,0.8023803,0.6701726,0.5087223,0.4238329,0.28725117,0.42363444,0.57275456,1.1101537,0.64519984,0.49413598,0.43928957,0.30257416,0.1502728,0.10064907,0.020157613,-0.024528272,-0.06172907,-0.023026232,0.42579594,0.572833,0.35785726,0.17690718,0.49069858,0.35557926,0.24807654,0.24138592,0.73647344,0.3564545,0.18090215,0.061081316,-0.0725436,-0.0910773,-0.15427183,-0.22514366,-0.05854639,0.20996831,-0.021221222,-0.102664486,-0.1605786,-0.041815817,0.043320928,-0.039625086,-0.11019303,-0.15603897,-0.15399036,-0.26565903,-0.31679627,-0.3312859,-0.40899044,-0.35354763,0.5348887,1.3489928,0.83428186,0.47333217,0.32964104,0.2146565,0.5526992,0.5574077,0.4016728,0.27070174,0.076483205,-0.039630808,-0.1742929,-0.21795863,-0.31728265,-0.38018614,-0.18760592,0.10222165,0.25043258,0.13402404,-0.055494778,-0.1843424,-0.31103516,-0.4205296,-0.468255,-0.51681066,-0.61880887,-0.6695232,-0.6096163,-0.23611486,-0.3888643,-0.5029046,-0.56484586,-0.6150765,-0.52392876,-0.5480902,-0.61012286,-0.6381676,-0.737015,-0.7112077,0.5893758,0.52947915,0.130641,-0.07123928,-0.20515813,-0.3093241,-0.3203207,-0.3802302,-0.45306134,-0.52121264,-0.61715835,-0.6884701,-0.7928724,-0.86365,-0.80394524,-0.71197987,0.03626417,1.0845268,0.73009497,0.3780524,0.17232588,0.008767139,-0.08040583,-0.17211674,0.38280314,0.5855706,0.44006246,0.57374924,0.29963377,0.10939033,0.026844528,-0.1419993,-0.19008556,-0.02934071,0.8179271,0.833537,0.48492086,0.29787457,0.13983874,0.009582434,-0.09827471,-0.15631457,-0.1932305,-0.2830607,-0.25956988,0.51055384,1.2423654,0.7647848,0.63646126,0.51160735,0.51962703,0.39711192,0.27147526,0.4534848,0.7346582,0.80287933,0.7044027,0.44184667,0.49081147,0.4813531,0.44893283,0.43967742,0.39222074,0.41465223,0.2785992,0.19082363,0.1845448,0.14957269,0.07878606,0.0005793758,-0.025567383,0.14546734,0.28920668,1.1541418,0.6789028,0.5396027,0.4611357,0.32604533,0.26250967,0.2025884,0.12674555,0.12462191,0.06741826,-0.0053614676,-0.024774615,-0.05422614,-0.10345325,-0.092313714,-0.016907245,0.27881214,0.25932038,0.3226496,0.5220384,0.55199164,0.5536727,0.50415516,0.61613035,0.86009365,0.8986149,0.95740056,0.96659803,1.0642414,1.1994686,1.2147802,1.3130616,1.4353175,1.4648844,1.5227275,1.5703508,1.5604631,1.4973867,1.4303222,1.401547,1.5695493,1.5743396,1.6867657,1.7334065,1.6962268,2.0320203,2.125023,2.1217928,2.1453896,2.1930206,2.3087711,2.329314,2.2210073,2.1728091,2.2427878,2.4036717,2.3680215,2.2894838,2.2569494,2.2319212,2.4147148,2.4143732,2.3519597,2.2721422,2.1539693,2.1196842,2.1058779,2.1614394,2.1230314,2.2402189,2.432568,2.5087469,2.4689837,2.356206,2.3183753,2.3091786,2.3175793,2.3230639,2.319767,2.4034805,2.5087147,2.6500077,2.5921435,2.5398502,2.5787897,2.6078322,2.5412774,2.5444987,2.5290139,2.5387106,2.6103463,2.6068585,2.688141,2.6670756,2.501639,2.4043303,2.5991561,2.7417626,2.7489312,2.8967888,2.9171176,3.0098157,3.1711056,3.1461468,3.0093336,2.9593759,2.9712968,2.9403877,3.0524495,3.124983,3.2020364,3.3264372,3.2246668,3.3085592,3.3914037,3.287618,3.1995625,3.1364067,2.968257,2.984939,2.9069834,2.878951,3.0427537,3.100957,3.1914606,3.3042321,3.418686,3.2478235,3.355094,3.3876114,3.588431,3.5297556,3.6307273,3.737383,3.8245764,3.8044448,3.6107068,3.4600806,3.3825502,2.9565852,2.703775,2.7200084,2.503048,2.0705876,2.0093179,1.7931854,1.6377633,1.5270313,1.3674836,1.286428,1.2287662,1.164688
+0.56541705,0.29608908,0.026351709,-0.18308741,-0.37914312,-0.33675867,-0.33969554,-0.47359985,0.0452029,0.1764339,0.17895374,0.07669753,-0.09688206,0.38452405,0.25656232,0.10031973,0.0021841712,-0.024987351,0.07264228,0.06579478,-0.0072194003,-0.13974805,-0.29985237,-0.2423615,-0.31782788,1.084771,0.829188,0.700817,0.77796006,0.7520064,0.6237558,0.46794367,0.28801835,0.09541474,-0.079064816,-0.18158293,1.3950878,1.4185436,1.1125716,0.66215026,0.45357513,0.19853222,0.002235558,-0.15775561,-0.08222945,0.23139463,0.27550885,0.14157283,-0.07782407,0.20021845,0.42814502,0.49058342,0.2269635,0.037879888,0.13933651,0.17205349,0.046181206,-0.09470236,-0.23759161,-0.25869521,-0.33952776,-0.46762374,-0.52678704,-0.57811403,-0.6360734,-0.691995,-0.85758424,-0.9137795,-0.898016,-0.94114655,-1.01272,-1.1402096,-0.7352854,-0.1195295,-0.11581156,-0.4096299,-0.5486546,-0.6319036,-0.7270918,-0.8028916,-0.9011229,-0.9661791,-1.0316825,-1.1238568,-1.1499345,-1.206567,-1.2952859,-1.3508964,-1.4580667,-1.4980434,-1.4400632,-1.0001833,-1.003496,-1.0878206,-1.1569996,-1.2489495,-1.3292747,-1.3772134,-1.4608138,-1.5500464,-1.5403544,-1.552814,-1.607795,-1.6250285,-1.6412778,-1.6888012,-1.7033813,-1.770025,-1.7936456,-1.876627,-1.8184961,-1.8264663,-1.8841937,-1.8398938,-1.9048612,-1.9388287,-1.9648008,-1.9545779,-1.9798533,-2.0057316,-2.0474162,-1.8297678,-1.6322861,-1.694895,-1.7621708,-1.7821213,-1.9141232,-1.8859367,-1.8399541,-1.1895503,-1.1150944,-1.2107375,-1.3192686,-1.2403413,-1.3149532,-1.3831451,-1.4837871,-1.5147588,-1.6000586,-1.6364379,-1.6373353,-1.7067264,-1.7177179,-1.7250831,-1.7453511,-1.7917511,-1.8683792,-1.9534214,-1.8012784,-1.8282549,-1.8831029,-1.9552016,-1.9771395,-1.9542084,-2.0084052,-2.0816793,-1.8264776,-1.5263984,-1.5643348,-1.56113,-1.5728806,-1.6323406,-1.7210764,-1.6952403,-1.8025541,-1.8150883,-0.4997241,-0.007140916,-0.29333302,-0.4690543,-0.5334699,-0.6093843,-0.71410495,-0.8097832,-0.59360194,0.71915126,0.6087123,0.18002395,-0.0719004,-0.20966041,-0.34285367,-0.43830138,-0.44603747,-0.5062274,-0.44884625,0.19239888,0.1023141,-0.14281613,-0.1644108,-0.23172523,-0.29642615,-0.36444756,-0.4185673,-0.4881216,-0.4943113,-0.53685355,-0.58827746,-0.53857553,0.025473457,0.613901,0.36006334,0.20206344,0.09402692,0.11005221,0.0024368726,-0.114671335,-0.1720318,-0.03407618,-0.14622359,-0.22480913,-0.27475843,-0.11605708,-0.09629345,-0.081526056,-0.14852607,-0.22091062,-0.2440432,-0.25363737,-0.27215618,-0.29520512,-0.31030005,-0.33366787,-0.34720558,-0.37308776,-0.4067471,-0.39598957,-0.4062366,-0.4114821,-0.40651113,-0.42449597,0.053926308,0.1208159,0.3295231,0.4585332,0.5326121,0.6855866,0.58163166,0.85557675,0.88628614,0.9380118,0.97705936,0.92067957,0.8451519,0.7866862,0.75473166,0.775164,0.76430595,0.7709122,0.9935838,0.7492854,0.770265,0.71872455,1.8025885,2.158188,2.3160148,2.0190682,1.8188391,1.8091733,2.269443,2.7772906,2.3795524,2.1213481,2.018428,2.1103613,2.2595394,2.1187782,2.0112672,2.1471522,2.1338103,1.9213345,1.7972183,2.0635424,1.8643372,1.8495835,1.7851701,1.7541856,1.9179722,1.9034383,2.256534,2.454152,2.316176,2.2063706,2.4566123,2.937376,3.0492024,3.2865858,3.0376062,2.9823008,2.884366,2.7319446,2.5425532,2.4060338,2.399579,2.394352,2.3484905,2.4402761,2.376849,2.6619053,2.8575206,2.927077,2.6511598,2.404241,2.2954693,2.3092146,2.2875779,2.2969217,2.4268641,2.4814603,2.6278386,2.807809,2.8161755,2.8776295,3.3222966,3.3577158,3.7720032,3.9255996,4.110301,3.8171258,3.7025664,3.6396043,3.544001,3.5122936,3.558368,3.7355227,3.7811346,3.7167568,3.7797637,3.8832598,3.9182634,3.7942867,3.615769,3.493188,3.5970309,3.4017792,3.2608805,3.2216175,3.3034546,3.4111056,3.5340562,3.4190674,3.4172297,3.5821667,3.5044584,3.6963696,3.7549555,3.6565807,3.575497,3.562254,3.3216507,2.8518815,2.093817,1.6950173,1.5268087,1.0128251,0.7872678,0.4679216,1.1188796,0.85625833,0.6529993,0.6229058,0.68846345,0.8968886,0.78824353,0.9278146,1.5194273
+-0.24950126,-0.66124797,-0.78411496,-0.8764432,-0.95407665,-1.0394542,-1.0118759,-1.052396,-1.1198158,-1.1136403,-1.1882093,-1.2413174,-1.2562085,-1.2666367,-1.2172569,-1.2795894,-1.3103303,-1.347037,-1.33335,-1.2714181,-1.2768061,-1.326529,-1.3230485,-1.2347951,-1.2432394,-1.0060115,-0.7749207,-0.6122752,-0.5334216,-0.67653275,-0.75537777,-0.80815846,-0.86749065,-0.9452084,-1.0376917,-1.0508393,-0.9853523,-0.7836048,-0.15483937,-0.35676196,-0.59959745,-0.7216853,-0.8418447,-0.9631568,-0.77964246,-0.051056813,0.31141898,-0.10674313,-0.3785817,-0.56138957,-0.7406677,-0.79203117,-0.8342498,-0.93653786,-1.0055231,-1.0575354,-1.1148967,-1.1125875,-1.1765095,-1.2150191,-1.2672634,-1.3149447,-1.3570876,-1.3953184,-1.4258524,-1.4731648,-1.524996,-1.5689912,-1.6067762,-1.6356174,-1.6948707,-1.7267584,-1.6944182,-1.7515645,-1.7485139,-1.7997524,-1.8282893,-1.8523872,-1.891676,-1.9361322,-1.9559357,-1.9965792,-2.0396159,-0.5699215,-0.24951476,-0.7136415,-0.9953714,-1.1642516,-1.2723539,-1.3759632,-1.2941852,-0.59081215,-0.68014157,-0.899973,-1.0464337,-1.1718603,-1.3095257,-1.4288802,-1.5063974,-1.5618947,-1.6160861,-1.679791,-1.7390215,-1.772479,-1.8143566,-1.847687,-1.8772075,-1.9066777,-1.9153316,-1.9138038,-1.9421052,-1.9478202,-1.9603932,-1.9910269,-2.030931,-2.0559509,-2.058517,-2.0810766,-2.1164253,-2.1406994,-2.1613672,-1.732943,-1.5354636,-1.6188767,-1.6293805,-1.6358817,-1.7072071,-1.7196264,-1.6345556,-1.4146897,-1.445714,-1.5425043,-1.6094184,-1.6265554,-1.7142403,-1.7669358,-1.7920372,-1.8162398,-1.8384556,-1.734853,-1.6068231,-1.7018039,-1.7571862,-1.7907691,-1.8189168,-1.8525522,-1.876646,-1.3837869,-0.8027245,-1.0486155,-1.2244545,-1.33991,-1.437573,-1.4813502,-1.5249434,-1.5136118,-1.0030413,-0.87692875,-1.0780673,-1.2053118,-1.3074398,-1.397609,-1.4714587,-1.5075026,-1.5348692,-1.5423168,-0.59140074,-0.5318495,-0.83271587,-0.97095716,-1.0702162,-1.1759622,-1.2511687,-1.3048749,0.35447225,0.5919001,0.19004956,-0.147182,-0.36006856,-0.512628,-0.64158964,-0.6765516,-0.19523822,-0.09206422,-0.34493488,-0.46253562,-0.6020987,-0.70362586,-0.7601547,-0.8585207,-0.9126849,-0.9708661,-1.0229275,-1.0212175,-1.0639361,-1.126531,-1.1592046,-1.1719683,-1.2157552,-1.2247488,-1.3226731,-1.3472365,-1.3850255,-1.395467,-1.4022343,-1.4135447,-1.4129467,-0.9275535,-0.9625626,-1.0328842,-1.046086,-1.059886,-1.0916498,-1.1216992,-1.1975286,-1.2388833,-1.2425723,-1.2703584,-1.2673223,-1.3118181,-1.3311393,-1.3404036,-1.3520367,-1.3613794,-1.3731685,-1.381059,-1.3810983,-1.387244,-1.4062918,-1.4072152,-1.3690903,-1.345948,-1.3042009,-1.2668252,-1.2218385,-1.1460427,-1.1175672,-0.9727861,-0.8402616,-0.7917175,-0.68447566,-0.5885508,-0.59211427,-0.5806309,-0.5796079,-0.5544233,-0.5416445,-0.5190416,-0.4939286,-0.54056597,-0.5065198,-0.45909244,-0.44886857,-0.47427928,-0.22858843,-0.067614645,-0.094624266,-0.13174425,-0.12893467,0.05499958,0.042702664,0.16535237,0.16743031,0.10218479,0.05083241,0.056708384,0.14887118,0.2336481,0.24330829,0.22332133,0.22342567,0.16637997,0.13279228,0.12397458,0.11566578,0.104469806,0.12904327,0.14172374,0.16146247,0.18525456,0.26586065,0.26373452,0.20003556,0.31570157,0.30286694,0.4206247,0.36636737,0.37995416,0.35016686,0.29247332,0.28769523,0.30489123,0.29139996,0.3137645,0.30121976,0.30344254,0.48249775,0.981467,0.9436113,0.9129908,0.8320337,0.8269799,0.78402436,0.72099805,0.71817774,0.7090467,0.7092539,0.6921611,0.6581576,0.6736455,0.665318,0.6477545,0.73341143,0.77110195,0.7309752,0.686466,0.88678527,0.6944895,0.6508935,0.6022922,0.57736814,0.54471403,0.55928504,0.6137844,0.7085394,0.6209067,0.6171404,0.5303736,0.5375906,0.5956419,0.6559211,0.68176246,0.6303843,0.6003701,0.5959268,0.53430945,0.47791755,0.42380565,0.3848012,0.35346,0.34453505,0.34498748,0.2622982,0.09513222,-0.14646141,-0.30242437,-0.3848578,-0.41236785,-0.44951326,-0.5153528,-0.61138767,-0.645784,-0.6440438,-0.6863601,-0.75396794,-0.81224096,-0.3419221,-0.10310343,-0.2607886,-0.08656223,-0.11605148,-0.13542604,-0.2735587,-0.3451114,0.035323035
+-0.668789,-0.66542786,-0.62963134,-0.64338803,-0.69661087,-0.75013506,-0.77214456,-0.81880164,-0.8303295,-0.86937135,-0.91817206,-0.96398705,-1.0026591,-1.0478098,-1.0068631,-0.9456124,-0.98956895,-1.0322348,-1.0818508,-1.1371982,-1.2072045,-1.2856836,-1.3434075,-1.3566102,-1.4375103,-1.2054955,-1.0912915,0.062163744,0.12330221,-0.1637499,-0.29117206,-0.39349836,-0.5250991,-0.6630216,-0.79326963,-0.90857106,-0.9718697,-0.9516177,-0.41327545,-0.49568763,-0.66723216,-0.7996771,-0.9128419,-1.0257832,-1.0987192,-1.0580456,-0.25434986,-0.21211593,-0.4040913,-0.6113643,-0.7813032,-0.9035164,-1.041787,-1.145606,-1.1858584,-1.2816306,-1.3357779,-1.3832021,-1.4455636,-1.5130191,-1.5627774,-1.6203672,-1.6603521,-1.7104714,-1.7395043,-1.761925,-1.7927817,-1.8145418,-1.8490918,-1.8672013,-1.8854818,-1.9046955,-1.9197674,-1.9666954,-1.9457734,-1.9872062,-2.0048819,-2.0241601,-2.0367093,-2.0447278,-2.0710042,-2.083837,-2.134378,-2.1210618,-2.106741,-2.1434748,-2.1557994,-2.1820073,-2.169396,-1.8080263,-1.4332461,-1.1064802,-0.47046825,-0.7405542,-0.8755505,-0.98464435,-1.104171,-1.2196823,-1.3206508,-1.3989052,-1.4761896,-1.5591967,-1.6488184,-1.7039987,-1.7639618,-1.8159747,-1.8363605,-1.8680904,-1.92095,-1.3486259,-1.1229935,-1.2000608,-1.2850727,-1.3406917,-1.4227283,-1.5330931,-1.6069378,-1.6771489,-1.7616686,-1.808711,-1.8162427,-1.7303672,-1.72067,-1.7591827,-1.7825052,-1.5945843,-1.3873526,-1.0965599,-0.99639136,-0.9895545,-0.98441696,-1.1075258,-1.2124993,-1.3052356,-1.4054224,-1.4900656,-1.5498927,-1.5917618,-1.6357086,-1.658992,-1.5070384,-1.3978567,-1.4634905,-1.5259035,-1.2960341,-0.72690344,-0.82307106,-0.95717144,-1.0680072,-1.135399,-1.1730518,-1.2322066,-1.2964901,-1.335329,-1.382289,-0.9112897,-0.37986118,-0.6472862,-0.7987455,-0.9246986,-1.0141768,-1.1103545,-1.1955855,-1.2695976,-1.3254068,-1.2573001,-1.0479071,-1.1571033,-1.2622492,-1.3399029,-1.3938363,-1.4317851,-1.4326918,-1.3354454,-0.21538801,0.11162065,-0.18497784,-0.43369997,-0.56089807,-0.66472495,-0.73004884,-0.7219153,-0.19854821,-0.17614369,-0.40240973,-0.4596405,-0.45771325,-0.576179,-0.657851,-0.7473216,-0.8135563,-0.8808161,-0.9660841,-1.0178757,-1.0413926,-1.0953012,-1.1655226,-1.2047755,-1.2451184,-1.2612579,-1.2944812,-1.3349102,-1.3430443,-1.3607666,-1.3817778,-1.4209237,-1.4328108,-0.65218246,-0.3003878,-0.46015796,-0.5547959,-0.6447203,-0.7172233,-0.7995385,-0.8629199,-0.8712465,-0.9208621,-0.9097452,-0.9083196,-0.9415081,-0.9792546,-0.9914664,-1.0290228,-1.0387785,-1.0683292,-1.0928448,-1.0779673,-1.0922892,-1.1116214,-1.1517847,-0.99505484,-0.76517975,-0.6773992,-0.6632083,-0.1549301,0.2152317,-0.10479309,-0.15147051,-0.1784013,-0.15416352,-0.15450123,-0.16253479,-0.1753252,-0.15657759,-0.12707615,-0.102366075,-0.0766931,-0.025374148,-0.034271,0.0092915185,0.036372628,0.10175401,0.09359889,0.067713246,0.003531821,-0.034836326,-0.021167707,-0.026632968,-0.062093984,-0.14505886,-0.0986062,0.06451921,0.21195938,0.23241375,0.20626669,0.1747331,0.2682609,0.47703123,0.39973277,0.41671526,0.46262923,0.48400527,0.47777492,0.4804883,0.47726816,0.46197346,0.4279421,0.3095663,0.23841296,0.2520914,0.2969789,0.40978524,0.44933954,0.45530677,0.48508513,0.39265767,0.33961457,0.3884082,0.20693423,0.10901469,0.057319287,0.04417825,0.08268547,0.09141238,0.21241526,0.2834018,0.121983185,0.23510562,0.15562257,0.17663841,0.29144427,0.39467287,0.454288,0.4520823,0.4331087,0.41136253,0.38783067,0.36338145,0.3221329,0.2798291,0.20740724,0.14384592,0.05705035,-0.014739569,-0.1023529,-0.18637714,-0.17670576,-0.16956343,-0.20800143,-0.25049278,-0.23370568,-0.22342038,-0.241798,-0.24989837,-0.17490704,-0.13520415,-0.21302685,-0.28760034,-0.34398305,-0.3578245,-0.30954954,-0.25039437,-0.25717494,-0.29083088,-0.28585255,-0.25081885,-0.24395819,-0.26000348,-0.29431194,-0.34976372,-0.3471791,-0.3548342,-0.36941022,-0.3911032,-0.42356294,-0.45718372,-0.47984993,-0.5177423,-0.56685024,-0.61900234,-0.65419555,-0.70615065,-0.75946033,-0.8297118,-0.8797446,-0.9241979,-0.90112317,-0.90509945,-0.90415335,-0.8236375,-0.87999463,-0.74871373,-0.6954367,-0.76049936,-0.7691817
+-0.5238461,-0.7145835,-0.8042744,-0.8361811,-0.94689083,-1.017034,-1.0553753,-1.0686971,-0.628734,-0.45891452,-0.59932953,-0.7174588,-0.8066652,-0.8930599,-0.9579505,-0.94828403,-0.91192186,-0.9524819,-1.0576661,-1.144929,-1.198358,-1.2842088,-1.4532671,-1.5344484,-1.5891709,-1.6026664,-1.4770893,-1.1646619,-0.947734,-0.8081101,-0.4711553,-0.31545505,-0.5406055,-0.72144616,-0.85617375,-1.0681186,-1.0164927,-1.0786926,-1.2026191,-1.3025004,-1.3920773,-1.4120731,-1.5030322,-1.5928569,-1.7012668,-1.7500985,-1.653816,-1.4112488,-1.3630201,-1.4761671,-1.6393197,-1.7923883,-1.840807,-1.9048103,-1.9500313,-2.0397463,-2.0049887,-2.031149,-2.066216,-2.108448,-2.1204805,-2.159477,-2.1974297,-2.2587132,-2.2889776,-2.3226247,-2.3666058,-2.3935356,-2.430759,-2.4396327,-2.4589105,-2.487723,-2.497952,-2.5566912,-2.4623613,-2.4667425,-2.5090244,-2.5236816,-2.535511,-2.5696082,-2.5725148,-2.5873394,-2.668064,-2.6418343,-2.6667056,-2.676376,-2.6821237,-2.6707578,-2.67215,-2.7038798,-2.7295845,-2.6906097,-2.528118,-2.4963565,-2.5437403,-2.5778313,-2.5993578,-2.613255,-2.6300683,-2.6398978,-2.6420927,-2.6648092,-2.6658447,-2.6726499,-2.6787658,-2.681004,-2.667335,-2.7015584,-2.7047648,-2.5929742,-2.50413,-2.5662055,-2.6163788,-2.6403246,-2.6139684,-2.6371114,-2.659952,-2.6441836,-2.670671,-2.7043796,-2.6972852,-2.653516,-2.5801759,-2.6054893,-2.594103,-2.6360383,-1.3442385,-0.33168828,-0.4135419,-0.78795516,-1.0401554,-1.189106,-1.2589812,-1.4060012,-1.5613575,-1.6587224,-1.7692869,-1.8717622,-1.9460369,-2.001677,-2.0480626,-2.0970652,-2.150056,-2.1645665,-2.2055693,-1.959986,-1.9496412,-1.817534,-1.7319715,-0.60793734,-0.758204,-0.998814,-1.1740177,-1.2920208,-1.391079,-1.4085429,-1.2154176,-1.3884408,-1.5236654,-1.6274474,-1.7204099,-1.808728,-1.8706485,-1.9303818,-1.9821706,-2.0196712,-2.081479,-2.09265,-2.1490183,-2.1795826,-2.2023146,-2.2322855,-2.2683477,-2.1601892,-2.154417,-1.8842605,-1.7786463,-1.8638767,-1.9359202,-1.9887279,-2.023956,-1.715194,-0.6781234,-0.5305254,-0.6518694,-0.8598926,-1.0164351,-1.072067,-1.1623354,-1.2100542,-1.2728143,-1.3266859,-1.3712898,-1.4364891,-1.4694653,-1.5333428,-1.5659217,-1.6075907,-1.6671858,-1.7334146,-1.7903004,-1.7848252,-1.753512,-1.7595828,-1.7861484,-1.8117285,-1.8128768,-1.6156201,-1.3599612,-1.364913,-1.4224174,-1.4727213,-1.5050874,-1.5601566,-1.5777426,-1.6093036,-1.6308552,-1.6611286,-1.6030757,-1.516154,-1.4780619,-1.4784763,-1.4823813,-1.4862909,-1.464718,-1.4522396,-1.4252179,-1.4075067,-1.3902209,-1.3747936,-1.3383057,-1.2049959,-1.1088512,-1.14432,-0.85222155,-0.14878827,-0.36263973,-0.41022897,-0.38367915,-0.3572725,-0.3788831,-0.44740558,-0.34794328,-0.20610464,-0.15249212,-0.15625483,-0.18073975,-0.08677052,-0.024445575,-0.0002660714,0.02504063,0.02844866,0.08655457,-0.025641184,-0.043165606,-0.1853797,-0.1877807,-0.19239904,-0.2178357,-0.26912424,-0.32601666,-0.24872784,-0.037336092,0.039842356,0.05111741,0.073269665,0.39532927,0.4505272,0.43326962,0.40100205,0.53271055,0.5477127,0.5487034,0.53669405,0.54925704,0.63612163,0.70112836,0.6589515,0.6400926,0.60680664,0.44267905,0.6692182,0.71695924,0.5731015,0.63333994,0.57558477,0.4631157,0.37242234,0.15106882,0.4127563,0.41118616,0.31201035,0.38347432,0.4007118,0.5812174,0.8012985,0.7032205,1.0092952,0.8978355,1.103906,1.2081904,1.3821604,1.4213821,1.4305997,1.4693594,1.5104975,1.5362437,1.5145831,1.5371096,1.5999327,1.5171354,1.525102,1.2124104,0.82036173,0.6091059,0.4030572,0.2137742,0.18912785,0.13417341,0.04333226,0.13846087,0.19944212,0.23941438,0.21576111,0.2825848,0.24145679,0.24030636,0.07159014,-0.10403174,-0.16032135,0.045818683,0.15764928,0.092748895,0.03907295,0.0407415,0.17577648,0.23214398,0.28029603,0.16002135,-0.09290689,-0.16129658,-0.0684267,-0.082816854,-0.115103275,-0.17533462,-0.26302454,-0.31940186,-0.3524744,-0.4092278,-0.48190123,-0.50906765,-0.52245057,-0.61358595,-0.6603164,-0.69803625,-0.76291674,-0.83822024,-0.85489964,-0.84590966,-0.876317,-0.8285643,-0.7718951,-0.6904073,-0.69458437,-0.72749215
+-0.6848,-0.941702,-1.23132,-1.3753692,-1.4882927,-1.495631,-1.5022609,-1.5259678,-1.2924242,-1.2207949,-1.2512662,-1.249492,-1.297087,-1.4366658,-1.4978111,-1.1143647,-1.039027,-1.161102,-1.3074038,-1.4469507,-1.5573931,-1.7339176,-1.8979754,-1.895676,-2.0052042,-2.045292,-2.0352511,-2.0982265,-2.1088285,-2.0031989,-1.3010898,-1.093888,-1.2782888,-1.448103,-1.6131556,-1.7717161,-1.8602624,-1.8809962,-1.9435741,-1.9916679,-2.0122638,-2.0322957,-2.095236,-2.2020688,-2.2487657,-2.296544,-2.2353148,-1.9603357,-1.9217249,-2.009541,-2.1291356,-2.2139454,-2.2449584,-2.293302,-2.3164098,-2.3663359,-2.3452992,-2.3535113,-2.3914316,-2.4176087,-2.4296057,-2.4452858,-2.4685216,-2.5001173,-2.5479538,-2.5854855,-2.6085904,-2.6109214,-2.6415272,-2.66694,-2.6908283,-2.718062,-2.7250881,-2.7424915,-2.713594,-2.719137,-2.7248292,-2.726048,-2.713439,-2.7178028,-2.7402637,-2.7654083,-2.8390143,-2.80696,-2.7985826,-2.8020551,-2.769466,-2.7533085,-2.7929268,-2.7959397,-2.8799703,-2.8840466,-2.0024552,-1.8808064,-2.0138628,-2.1188831,-2.2069998,-2.279255,-2.3586087,-2.4067285,-2.4418418,-2.4669297,-2.480292,-2.5113478,-2.5378962,-2.5696096,-2.622734,-2.6912744,-2.737391,-2.7412694,-1.71247,-1.0381176,-1.0046319,-1.3130761,-1.5890639,-1.7462535,-1.8306323,-1.9086647,-1.9606423,-2.0336323,-2.130159,-2.2108827,-1.8316257,-1.0382532,-0.94440764,-0.712958,-0.6704818,-0.84431636,-1.0546939,-1.291439,-1.4721242,-1.6023605,-1.7372377,-1.7980305,-1.8768857,-1.9402521,-2.026693,-1.9460136,-1.7992296,-1.8623159,-1.9454849,-2.050819,-2.1055222,-2.090042,-1.9580071,-1.6660082,-1.6890578,-1.8363438,-1.9339815,-1.8795488,-1.9325247,-1.9981449,-2.0662193,-2.1224291,-2.1256657,-2.0356035,-2.1269958,-2.2036183,-2.2842016,-2.3632069,-2.3915102,-2.3848777,-2.4145856,-2.4618058,-2.5062594,-2.5379808,-2.560645,-2.5753698,-2.5522137,-2.5595665,-2.5605636,-2.56998,-2.6248655,-2.6192765,-2.5324516,-2.42602,-2.3880806,-2.4352515,-2.4975948,-2.537482,-2.5391693,-2.4936047,-2.237391,-2.2062254,-2.2069206,-2.0979674,-1.8844439,-1.9165043,-1.984655,-2.0154128,-2.1203709,-2.1295695,-2.028911,-2.0972307,-2.1631932,-2.204814,-2.2427177,-2.2744408,-2.3202205,-2.3712711,-2.4297664,-2.3807461,-2.3391075,-2.3644638,-2.4367356,-2.4512792,-2.4638438,-2.327212,-2.2701921,-2.2828498,-2.3139713,-2.3630342,-2.3646536,-2.36986,-2.370407,-2.3911653,-2.390318,-1.8845117,-1.161553,-1.1618314,-1.2986078,-1.3761129,-1.4220738,-1.4460146,-1.4614855,-1.4876971,-1.5088248,-1.5073264,-1.5398699,-1.5672187,-1.5192393,-1.3912395,-1.3149028,-1.3875437,-1.1803496,-0.8348597,-1.0121572,-0.9936112,-0.931385,-0.9092767,-0.86056405,-0.77681243,-0.581981,-0.39855802,-0.26598433,-0.27188292,-0.23318508,-0.12457818,-0.08020395,-0.10892227,-0.19158246,-0.14193888,-0.11466746,-0.20785098,-0.30503443,-0.44532806,-0.50271565,-0.52258056,-0.574924,-0.52231616,-0.54486746,-0.38904136,-0.07241863,0.030625302,-0.012320694,0.41076374,0.5922644,0.32075927,0.3483585,0.36282188,0.55937696,0.59927,0.57018244,0.5809118,0.6714754,0.7283428,0.5777216,0.6055876,0.55654204,0.39467752,0.16131784,0.4298119,0.62182945,0.24486278,0.008471783,-0.055799495,-0.12114392,-0.14830714,-0.41476977,-0.19392121,-0.07967202,-0.19545971,0.007849034,0.18804367,0.3874064,0.56432855,0.64245796,1.0251596,0.9735862,1.0479242,1.2077885,1.3318697,1.388363,1.3984792,1.4058924,1.3790803,1.3416429,1.2889041,1.1984189,1.0765488,0.9926921,0.7761288,0.34709096,-0.068633124,-0.35932145,-0.58381677,-0.7225913,-0.7934071,-0.491781,-0.46441755,-0.41806075,-0.27342543,-0.28412554,-0.4248909,-0.38640058,-0.30070466,-0.40008765,-0.5925216,-0.65494764,-0.62928814,-0.37715957,-0.24219476,-0.27739358,0.5123236,0.50482357,1.0411098,1.2099234,1.075104,0.43000126,-0.032004658,-0.091589734,-0.1857072,-0.42902827,-0.60573715,-0.7465192,-0.8341607,-0.8969656,-0.93851066,-1.0217947,-1.0986016,-1.150174,-1.2243522,-1.2905291,-1.3514819,-1.4194149,-1.4930487,-0.9548359,-0.6281289,-0.8109641,-0.8417742,-0.96759844,-0.7888725,-0.7814973,-0.90686905,-0.8573595
+-1.0861794,-1.3250825,-1.4103018,-1.571775,-1.7147417,-1.8200305,-2.0023367,-1.7222712,-1.2782156,-1.3135257,-1.3098845,-1.3790364,-1.4380808,-1.511316,-1.6564543,-1.5984879,-1.4990814,-1.6265857,-1.7387123,-1.8093917,-1.902554,-1.9917822,-2.1040018,-2.1509795,-2.2426805,-2.321124,-2.3298771,-2.3795123,-2.4199347,-2.1202393,-1.2422538,-0.8719508,-1.1171758,-1.2680182,-1.4280248,-1.6287761,-1.792913,-1.7326987,-1.6311944,-1.6673834,-1.7582164,-1.8466995,-1.944362,-2.0821526,-2.105373,-2.2036164,-2.1839304,-1.1693342,-0.6821238,-0.9772331,-1.2055224,-1.3940697,-1.5419635,-1.6717596,-1.771204,-1.8731432,-1.9269433,-1.9982806,-2.0436165,-2.1133509,-2.1609707,-2.2498097,-2.2806363,-2.3243117,-2.369913,-2.3870232,-2.425074,-2.4608505,-2.495886,-2.5227,-2.5711584,-2.1909046,-2.0968878,-2.143334,-2.2101343,-2.2667866,-2.3172493,-2.352673,-2.3813744,-2.3993905,-2.406631,-2.41357,-2.3739965,-2.4624424,-2.501312,-2.5031664,-2.3330169,-2.3164568,-2.345167,-2.3318958,-2.0449932,-1.1495433,-0.5415844,-0.72835624,-1.0061604,-1.2043905,-1.3673604,-1.5169257,-1.6594468,-1.7756407,-1.867479,-1.9823579,-2.079642,-2.1581545,-2.2194128,-2.268783,-2.3225012,-2.1776817,-1.616754,-1.3616369,-1.3678455,-0.6544639,-0.23660426,-0.47054198,-0.7627572,-0.9695468,-1.039339,-0.99922216,-1.1859268,-1.3369958,-1.4931221,-1.5383785,-1.4173135,-0.60059667,-0.3390916,-0.58326405,-0.38431776,-0.40220958,-0.64529026,-0.83013237,-0.7689329,-0.68486655,-0.6047175,-0.79639244,-1.0463253,-1.1958599,-1.3459284,-1.4959874,-1.6393242,-1.73352,-1.7802513,-1.8032373,-1.8325014,-1.5252023,-0.92662823,-0.7907789,-0.8342873,-0.7534808,-0.48221186,-0.36612344,-0.6653888,-0.8213494,-0.8283881,-0.8931765,-0.95191664,-1.0667777,-1.2527239,-1.4500976,-1.6089239,-1.6770399,-1.666143,-1.7822654,-1.8219947,-1.9001974,-1.8184252,-1.6258882,-1.5255454,-1.6001649,-1.70778,-1.810713,-1.9126298,-2.0107186,-2.074523,-2.1147118,-2.1184895,-2.090354,-2.1127744,-2.14124,-2.1903007,-2.206831,-1.7559669,-0.39131045,0.01783583,-0.41925865,-0.6246017,-0.37744153,-0.5729289,-0.7665781,-0.9025955,-1.0077565,-1.1392484,-0.88681334,-0.8889145,-1.0515802,-1.1937883,-1.3097665,-1.4126022,-1.5020455,-1.6167334,-1.7214434,-1.8118008,-1.861927,-1.8934848,-1.9484209,-2.0088496,-2.037886,-2.0720737,-1.6367443,-1.2880149,-1.3382852,-1.4172078,-1.5016003,-1.5891933,-1.6474106,-1.7138276,-1.7418119,-1.525779,-0.14799732,-0.066369355,-0.44561982,-0.61908835,-0.7016524,-0.7926974,-0.8674612,-0.9290565,-0.99436784,-1.0596244,-1.0847119,-1.1384037,-1.2267711,-1.2515397,-1.263203,-1.2198215,-1.3280997,-0.93652135,-0.58709335,-0.72593516,-0.7720696,-0.76788825,-0.7634493,-0.73989546,-0.6292027,-0.61617357,-0.53225094,-0.39982116,-0.35272896,-0.36013007,-0.3766266,-0.28411698,-0.2677161,-0.37008914,-0.38677472,-0.40991575,-0.41988784,-0.45258933,-0.5366489,-0.60109013,-0.6692411,-0.71169126,-0.38865954,-0.001346875,-0.31576395,-0.082069114,0.032446492,0.04133414,0.70261955,0.6546881,0.23254468,0.21740519,0.23322134,0.40946174,0.4471935,0.45435667,0.44037762,0.4752338,0.8229815,0.4884231,0.44330165,0.45034727,0.33762252,0.3368815,0.27604753,0.47930688,0.3710513,0.20383705,0.1000859,-0.026727166,-0.011414055,-0.050139386,0.32931802,0.28287363,0.14213069,0.10252312,0.19840114,0.44690925,0.5177075,0.45596847,0.79551625,0.798931,0.8647483,0.9382912,1.1278638,1.1731596,1.2110791,1.2447777,1.2585618,1.2834823,1.2772899,1.2296362,1.1436335,1.1103017,0.93577385,0.54966354,0.24683018,-0.077710316,-0.31403193,-0.42000708,-0.46124223,-0.36450428,0.07821292,-0.13208444,-0.1649431,-0.12696087,-0.1348191,-0.088592455,0.010754,-0.025347877,-0.15422685,-0.28698015,-0.39137435,-0.27559566,-0.12874153,-0.19159059,0.2268848,0.21459417,0.29889768,0.35512826,0.22445886,-0.072436415,-0.3177908,-0.3580283,-0.375378,-0.51380295,-0.6100408,-0.69847393,-0.75871,-0.81227064,-0.87789786,-0.95212364,-1.0354896,-1.122262,-1.1957943,-1.2687984,-1.3427734,-1.4014589,-1.484083,-1.2067567,-0.8797871,-0.9534942,-1.0338385,-1.1094124,-0.9750813,-0.7654362,-0.89398944,-0.91872865
+-1.2549193,-0.9632193,-0.82167256,-0.8422195,-0.86472666,-0.9932411,-1.0716825,-0.82438916,-0.56669736,-0.32821527,0.33553904,0.65628994,0.6330189,0.34344992,0.11890946,-0.12285416,-0.3370292,-0.46161634,-0.5844134,-0.6428455,-0.7070603,-0.78393126,-0.8299546,-0.9083532,-0.9791342,-1.03743,-1.0975081,-1.1291194,-1.1881006,-1.219632,-1.2074583,-1.0762961,-1.1506569,-1.2235593,-1.2564695,-1.3255692,-1.3742471,-1.3941891,-1.3984022,-1.4087659,-1.4146304,-1.4398124,-1.4736059,-1.469756,-1.4823,-1.4931238,-1.5331964,-1.1971128,-0.99808586,-1.0561597,-1.168687,-1.2506179,-1.3124393,-1.3574119,-1.4015967,-1.4044476,-1.42839,-1.4619691,-1.5068091,-1.5033073,-1.5262487,-1.5340025,-1.536938,-1.5979947,-1.6677608,-1.7054183,-1.7480184,-1.7851822,-1.75437,-1.7587402,-1.793695,-1.7186391,-1.5302901,-1.5559894,-1.6447004,-1.7045283,-1.7227101,-1.7528366,-1.7781218,-1.8594601,-1.8685033,-1.7230815,-1.4754585,-1.5632503,-1.6145815,-1.7061826,-1.7560372,-1.8009427,-1.8291392,-1.8040047,-0.6505627,0.75395024,1.1353122,0.61030465,0.34361908,0.13001789,-0.08462094,-0.26570028,-0.39681676,-0.5224507,-0.61612594,-0.70918894,-0.8146789,-0.910646,-0.9870565,-1.0421981,-1.0967053,-1.1640248,-1.1549592,-1.097541,-0.73344034,-0.4895871,-0.52309245,-0.53362817,-0.6628084,-0.80113256,-0.8686898,-0.52754277,-0.02524848,0.059482235,0.28752863,1.3659136,0.99777174,0.9263843,0.9345485,1.5205314,1.1135831,0.93925726,0.74197036,0.5231145,0.30465537,0.24252729,0.42465985,0.38506964,0.26520002,0.5156557,0.38235366,0.4729995,0.50319725,0.18017967,0.058419157,-0.06347038,-0.003460031,-0.046241086,-0.14867257,-0.23222066,-0.37241957,-0.4651754,-0.21022655,-0.19665484,-0.34162053,-0.44232056,-0.52146614,-0.48344868,-0.22215222,-0.26029134,-0.44094202,-0.578545,-0.68010914,0.32114232,1.4251556,0.822005,0.6011706,0.44073686,0.33754212,0.43177795,0.87395173,0.75724,0.52011263,0.3259556,0.11382316,-0.033438694,-0.17896767,-0.28515458,-0.384427,-0.38552958,-0.248797,-0.39117146,-0.45396277,-0.4726516,-0.5416727,-0.2970733,0.53700083,0.62540156,0.3762326,0.7832593,0.65209454,0.46567857,0.3224022,0.17142935,0.05160435,0.21307813,0.39257583,0.2304688,0.084389344,-0.029940497,-0.15459563,-0.22393344,-0.3034417,-0.37710357,-0.45466065,-0.52040756,-0.59394497,-0.61006093,-0.66874164,-0.6877742,-0.7461878,-0.7928423,-0.8516575,-0.8688877,-0.89972126,-0.89041084,-0.9678102,-1.0050896,-1.0314317,-1.0616021,-0.8945142,0.5836686,0.9245343,0.6651628,0.5111758,0.43508556,0.38928178,0.34247383,0.264568,0.19831997,0.13738406,0.056003634,-0.007625606,-0.04040132,-0.088061824,-0.14047532,-0.13531767,-0.17640178,0.59933007,0.98745966,0.74970424,0.663677,0.64578617,0.6059122,0.47708756,0.6666048,0.7829641,0.57165885,0.63521725,0.66238165,0.5562535,0.4886222,0.5251543,0.5275487,0.507213,0.49590605,0.47131777,0.47075045,0.43054515,0.3966454,0.35941857,0.33240956,0.3313051,0.38338128,1.524339,1.2129476,1.2533889,1.1998749,1.0225122,1.8323877,1.5527401,1.2385802,1.424404,1.3887378,1.3794228,1.2938993,1.1914285,1.0557569,1.5277402,1.8607135,1.490721,1.2793915,1.1740471,1.0453513,1.0051244,0.9168011,1.0029471,0.86108315,0.7790661,0.7455789,0.71612835,0.7138264,0.6707498,1.3234925,1.4344893,1.1665878,1.0433553,1.0247223,1.2233407,1.9615531,1.6130168,1.734634,1.6794387,1.6058514,1.638897,1.8005604,1.9750333,2.1180902,2.123772,2.0457773,1.9055135,1.8000587,1.649228,1.4837534,1.4128864,1.2994539,1.1270026,1.0143387,0.94222605,0.8742588,0.78670794,0.691163,0.999164,1.4170866,1.1003213,1.0063877,1.0082653,0.868916,1.3100569,1.4081224,1.0329443,0.92074215,0.8781409,0.7807779,0.7901664,0.78894395,0.7261698,0.96198475,1.0234342,0.86905175,0.9013014,0.8428912,0.6796231,0.6865449,0.55544186,0.5313748,0.45006347,0.3664339,0.28530556,0.20717107,0.11800775,0.022682462,-0.040166985,-0.11956859,-0.20759504,-0.25773817,-0.32399434,-0.40349007,-0.42384717,-0.49034905,-0.37571615,-0.20366602,-0.32379052,-0.39916533,-0.4916368,-0.5520057,-0.5757427,-0.63152087,-0.67062426
+-1.7448597,-1.7173848,-1.7120168,-1.8352456,-1.8869153,-1.9699161,-2.177456,-1.9862325,-1.8206887,-1.7648904,-1.2502187,-1.0716515,-1.0266061,-1.2199415,-1.3249056,-1.4409673,-1.6381454,-1.6385018,-1.7149327,-1.7869045,-1.8504361,-1.9315476,-1.9756444,-2.0127008,-2.0698876,-2.102236,-2.1401207,-2.1906576,-2.1965165,-2.275494,-2.2826262,-2.302947,-2.308414,-2.346071,-2.3735905,-2.3769433,-2.4165554,-2.478162,-2.4460254,-2.4590516,-2.4636989,-2.4900084,-2.4968567,-2.4708407,-2.0975974,-2.0092764,-2.0770476,-2.1534247,-2.2036247,-2.2441149,-2.2636786,-2.303824,-2.3303518,-2.347714,-2.371232,-2.3706748,-2.3920035,-2.410656,-2.4283938,-2.443313,-2.459949,-2.5460234,-2.5319877,-2.5482202,-2.5977342,-2.6434429,-2.6657789,-2.6598592,-2.6897259,-2.7376776,-2.3521256,-1.8209684,-1.2542504,-1.278466,-1.4340819,-1.5559,-1.6618838,-1.7792984,-1.8921995,-2.0204298,-2.1488576,-2.2023983,-2.2840738,-2.365431,-1.9674878,-1.4907804,-1.2238296,-0.9788753,-1.1507908,-1.0170903,-0.36515057,0.5814397,0.48704755,0.042808186,-0.24093302,-0.5135024,-0.7093408,-0.7798735,-0.9001097,-1.0628619,-1.2298489,-1.3695309,-1.475116,-1.6049339,-1.6882927,-1.7809572,-1.8612347,-0.7065935,0.56423604,0.10033955,0.5486719,0.23149924,0.1800148,-0.064839795,-0.27071494,-0.25862876,-0.3405385,-0.17889124,0.095346496,-0.16525759,-0.283422,0.64326763,1.1927075,1.1738704,0.8071827,0.6473812,0.45264095,0.5567424,0.9131363,0.4496009,0.6406301,0.8552414,0.5614674,0.31081304,0.11825575,-0.042096954,-0.23795328,-0.42838275,-0.57463294,-0.76203096,-0.90016794,-1.0242732,-0.94917727,-0.914217,-1.0049781,-1.1091564,-1.1469989,-0.5168941,-0.26235878,-0.59080285,-0.7798393,-0.85117567,-0.94767845,-0.6382287,0.49280667,0.35727793,-0.12060851,-0.43731356,-0.59972906,0.8328336,1.2700255,0.4716754,0.13620089,0.08898786,0.3704265,0.5388713,0.19415863,-0.06594816,-0.26101893,-0.41567436,-0.58843976,-0.7144486,-0.8069886,-0.6929605,-0.5656481,-0.65015197,-0.83045924,-0.93200284,-0.71977293,0.10317662,-0.0043569766,0.22827147,0.40529054,0.060528252,-0.17067756,0.023150198,-0.18263619,-0.3445531,-0.45335045,-0.59311736,-0.639551,-0.72029984,-0.65091354,-0.7767956,-0.8743221,-0.97812194,-1.0749184,-1.1485835,-1.207889,-1.2584413,-1.3036449,-1.3579435,-1.3896425,-1.3904216,-1.4887253,-1.5450807,-1.5992789,-1.635987,-1.6404936,-1.6160564,-1.6729131,-1.734909,-1.7672421,-1.7875406,-1.8046676,-1.7509034,-1.5798867,-1.3693464,-1.3709934,-1.4128091,-1.4284804,-1.4334856,-1.4142444,-1.4253659,-1.4565616,-1.4705508,-1.479641,-1.5022986,-1.5076602,-1.5508755,-1.5875993,-1.5672375,-1.5308056,-1.5737724,-1.6543311,-1.6210133,-1.570819,-1.572514,-1.5232863,-1.5538734,-1.5946258,-1.5348418,-1.2593536,-1.1375502,-1.0533442,-1.1031946,-1.0864091,-1.0593636,-1.0573423,-1.0673417,-1.0901632,-1.0984148,-1.0720298,-1.070337,-1.1262535,-1.1489952,-1.1681902,-1.1709228,-1.1573873,-1.2230477,-0.64239204,-0.7460246,-0.72763526,-0.7628337,-0.84308225,0.6175781,0.69032645,0.3347329,0.8272568,0.43774617,0.31238425,0.12846749,-0.053213652,-0.09789877,0.20469368,0.61301506,0.3580783,0.13127857,-0.022176098,-0.13805628,-0.21930148,-0.26833433,-0.28321958,-0.37287337,-0.45366582,-0.49024796,-0.5213487,-0.5590983,-0.65567946,0.08242522,0.4623912,0.19392511,0.054401044,-0.14949685,-0.17691897,1.0733095,0.49549878,0.33486724,0.20752147,0.090390906,-0.043488897,0.017294466,0.038355727,0.08876228,0.08188741,0.025446583,-0.076487824,-0.11018847,-0.1710624,-0.2665117,-0.3551783,-0.44832787,-0.52656436,-0.571307,-0.5987649,-0.6658039,-0.72604734,-0.8080388,-0.4445563,-0.061326694,-0.2922841,-0.40652493,-0.48173732,-0.6127535,-0.090979695,0.1634899,-0.14922921,-0.31897554,-0.39305508,-0.5392081,-0.5321948,-0.6744815,-0.69298315,-0.84743845,-0.8110695,-0.88475543,-0.95758307,-1.1388228,-1.20788,-1.2644563,-1.2983174,-1.3713714,-1.4286077,-1.4897591,-1.5690569,-1.5866936,-1.6443589,-1.6944779,-1.7361352,-1.7974235,-1.8275146,-1.8687029,-1.9205939,-1.9687144,-1.9849142,-2.0400982,-2.0618806,-2.0311112,-2.0262368,-2.0482295,-2.0898795,-1.978694,-1.8635087,-1.8728912,-1.9608359
+-1.3028748,-1.5028651,-1.6103997,-1.7508103,-1.8392788,-1.9406521,-2.084342,-2.0086284,-2.0762339,-2.1397398,-2.0273864,-1.9532074,-1.9616215,-2.0432777,-2.1339564,-2.1921377,-2.2171848,-2.2504873,-2.2759688,-2.319786,-2.3618689,-2.3930168,-2.433334,-2.479897,-2.520385,-2.531384,-2.5563397,-2.5729032,-2.5710564,-2.5977724,-2.6118975,-2.6210752,-2.611191,-2.6298947,-2.6285677,-2.6497335,-2.6612084,-2.670436,-2.6818573,-2.7109091,-2.7164822,-2.7164538,-2.721991,-2.7603676,-2.7593498,-2.7566898,-2.772959,-2.7818997,-2.7729979,-2.7814784,-2.774818,-2.7783947,-2.7837305,-2.7857044,-2.7827692,-2.7785249,-2.7683954,-2.7762423,-2.7904954,-2.791964,-2.7958312,-2.803862,-2.7760706,-2.7843328,-2.8308902,-2.8585753,-2.8789034,-2.8788378,-2.921639,-2.9568582,-1.7762918,-1.2791032,-1.3583242,-1.5226785,-1.6462884,-1.7814171,-1.8874679,-1.9902614,-2.0609365,-2.1734638,-2.3089762,-2.4085538,-2.4341226,-2.5087867,-2.3240604,-1.3705627,-0.85189414,-0.99039847,-1.124338,-0.2508298,0.19284193,0.116484,-0.006253332,-0.22888061,-0.42984504,-0.62024164,-0.77589905,-0.9089656,-1.0097637,-0.97966397,-1.0955683,-1.238308,-1.3780532,-1.4524808,-1.3037618,-1.3485098,-1.4472216,-1.1165824,-0.60128975,-0.21001862,-0.3947671,-0.5792643,-0.38153937,-0.29248923,0.3408964,0.630106,0.13704653,0.5226601,0.5603268,0.18338531,0.056441743,1.1661462,0.82344586,0.82669926,0.68910134,0.37593055,0.17687349,-0.020986643,-0.16351019,-0.21729647,0.25120133,0.20412539,0.15217425,0.15634368,0.12110342,0.11550231,0.041052576,-0.19955914,-0.36084348,-0.4852677,-0.53740066,-0.38755238,-0.40813395,-0.49332926,-0.61616313,-0.71272177,-0.80201155,-0.7802278,-0.74601734,-0.8474518,-0.9522313,-1.0417533,-1.0944391,-0.95726144,-1.0070661,-1.0741491,-1.143893,-1.2156706,-1.0980828,0.7191713,0.75535417,0.3201717,0.13749103,-0.021708887,-0.022445332,-0.038151816,-0.11631699,-0.24429579,-0.406176,-0.53237194,-0.6398286,-0.72551227,-0.75021017,-0.7971542,-0.8417283,-0.8967787,-0.9484627,-0.91946244,-0.71949637,-0.6852336,-0.7627333,-0.7528442,-0.68606913,-0.516348,-0.6263007,-0.7066034,-0.82188237,-0.921122,-0.99027634,-1.0486529,-1.0796607,-1.1213979,-1.1520603,-1.1783308,-1.2106345,-1.2568861,-1.2893825,-1.3310596,-1.3659043,-1.3983886,-1.4231803,-1.4452882,-1.4423347,-1.4587559,-1.5034579,-1.5188869,-1.4533947,-1.4527354,-1.4618664,-1.481877,-1.5176425,-1.5397142,-1.5687597,-1.5824804,-1.5802108,-1.5665,-1.5627291,-1.5732175,-1.5786157,-1.5782506,-1.5751854,-1.5604703,-1.5622244,-1.5817837,-1.6039062,-1.5978181,-1.6005883,-1.6008997,-1.5943545,-1.6166191,-1.6287278,-1.6265664,-1.6332338,-1.6494994,-1.6726359,-1.616076,-1.6365793,-1.6296518,-1.6069453,-1.6372409,-1.6430151,-1.6374894,-1.6693689,-1.6052712,-1.579206,-1.5642351,-1.3719987,-1.1652422,-1.1742113,-1.196541,-1.2418242,-1.2766905,-1.2859032,-1.2929707,-1.3210833,-1.3530966,-1.3700063,-1.3741351,-1.367949,-1.3884319,-1.4058415,-1.3840166,-1.4260418,-1.4368091,-1.4932145,-0.4328662,0.23858999,-0.09161812,0.055524718,-0.09625532,-0.21942951,-0.29245794,-0.39734364,-0.4390759,-0.52767515,0.16618921,0.18088864,-0.09288861,-0.2249867,-0.3159657,-0.38480777,-0.4293203,-0.49446544,-0.5711352,-0.64253795,-0.69594604,-0.73531055,-0.77950907,-0.8237184,0.37744206,0.2871762,0.016469758,-0.09621997,-0.24421065,-0.2804099,1.1868136,0.60397476,0.37019837,0.19117258,0.11881189,0.06778802,0.100556925,0.10035913,0.10840133,0.085271746,-0.0010111034,-0.120650664,-0.18908274,-0.23422928,-0.3141901,-0.39008135,-0.477649,-0.53852654,-0.5927103,-0.62398636,-0.68031025,-0.7342361,-0.7868742,-0.7356176,-0.5540242,-0.6404427,-0.7084823,-0.7997421,-0.30216438,0.5429886,0.29538015,-0.03301413,-0.20556284,-0.31030005,-0.438996,-0.51134586,-0.6217793,-0.6977333,-0.87296,-0.89503515,-0.96963054,-1.004579,-1.0943598,-1.1695029,-1.2537739,-1.2871644,-1.3178976,-1.3549168,-1.4048444,-1.4524403,-1.5217019,-1.5787885,-1.637713,-1.6995435,-1.7493579,-1.7949152,-1.8567214,-1.9210304,-1.9719577,-2.0263815,-2.073819,-2.1126935,-2.112618,-2.123496,-2.158588,-2.2083018,-2.2366672,-2.2398653,-2.2615106,-2.3338096
+-1.4557877,-1.8183713,-1.9377112,-2.087232,-2.219051,-2.3621078,-2.4949973,-2.5145714,-2.5806222,-2.6239204,-2.6693923,-2.6844654,-2.6404307,-2.6360927,-2.6488101,-2.6781309,-2.6862276,-2.6870148,-2.68264,-2.692288,-2.7089365,-2.722775,-2.738048,-2.7646246,-2.7850444,-2.7984943,-2.8080478,-2.7952719,-2.8151183,-2.8166404,-2.8229403,-2.8170977,-2.789465,-2.7831464,-2.7772694,-2.8106637,-2.8575919,-2.8896005,-2.8983731,-2.8912106,-2.8952951,-2.883318,-2.8931417,-2.8801918,-2.905599,-2.9151554,-2.9214344,-2.933488,-2.9256964,-2.912213,-2.9016452,-2.9001951,-2.9026937,-2.9058638,-2.9097908,-2.950122,-2.9308527,-2.9093409,-2.9250476,-2.9304214,-2.9464374,-2.938474,-2.9193878,-2.920316,-2.962593,-3.0226707,-3.0526292,-3.0076723,-3.0359383,-3.082758,-3.0607924,-3.0005274,-3.0311856,-2.9967175,-2.9982297,-2.9943554,-2.9925032,-3.0152752,-2.9813297,-2.9877133,-3.0120447,-3.0546036,-3.0278952,-2.942358,-2.7461543,-2.4236069,-2.3275075,-2.3617768,-2.0599794,-1.0317767,-0.27341002,-0.2946004,-0.5274493,-0.7557472,-0.89372563,-1.0436053,-0.961442,-0.90908384,-1.0746843,-1.1332119,-1.1930679,-1.3886735,-1.5509186,-1.3867768,-0.2510518,-0.07483569,-0.17414844,-0.21972902,-0.37506592,-0.3150955,-0.42191607,-0.65521616,-0.73132527,-0.008022822,0.59945977,0.58587945,0.75380576,0.14864866,0.6210357,0.88696265,1.0481052,0.6617228,0.74459475,0.40973032,0.2638176,0.4961409,0.15788032,-0.07092604,-0.26855308,-0.4203443,0.31625307,0.48761702,0.25950885,0.5917431,0.84695446,0.9759042,0.33779782,0.08043392,-0.092997424,-0.25295237,-0.16387767,0.75656104,0.33514005,0.29530263,0.07261507,-0.09929985,-0.21946304,-0.20897235,-0.30444145,-0.47939548,-0.61691546,-0.7366276,-0.71675754,-0.57027155,-0.7091343,-0.82229805,-0.9207105,-1.0153594,-0.07111933,1.172153,0.7232534,0.31571758,0.13376282,0.06504603,0.3663625,0.15408264,-0.058568824,-0.22206505,-0.37152714,-0.5019538,-0.62062013,-0.62283266,-0.5514449,-0.646623,-0.72054935,-0.79605865,-0.87869275,-0.9206378,-0.89781725,-0.7429258,-0.784219,-0.8777662,-0.82522714,-0.64304227,-0.6835001,-0.65371376,-0.796188,-0.8963407,-0.97937524,-1.0410172,-1.0979917,-1.133855,-1.1698067,-1.2132804,-1.2552128,-1.2992108,-1.3421234,-1.3961585,-1.4548559,-1.5002413,-1.5272356,-1.5556821,-1.5491577,-1.5472691,-1.6031778,-1.6592054,-1.7059277,-1.7307763,-1.7527215,-1.7335079,-1.7539673,-1.7837471,-1.8028772,-1.8142867,-1.8172952,-1.8125268,-1.8142645,-1.8147203,-1.7919185,-1.7803615,-1.7653767,-1.7369087,-1.7259616,-1.7563324,-1.7879304,-1.7656977,-1.7679389,-1.7666209,-1.7496427,-1.7571301,-1.7965859,-1.8234802,-1.7841082,-1.786841,-1.8340408,-1.8716515,-1.8466535,-1.8249137,-1.8141382,-1.840526,-1.8825946,-1.8859427,-1.9145072,-1.8772688,-1.852511,-1.8650959,-1.6871233,-1.5157855,-1.5149115,-1.5192311,-1.5612481,-1.5793309,-1.5549734,-1.5449519,-1.5524492,-1.5634239,-1.563045,-1.5530603,-1.5575362,-1.5903409,-1.6557261,-1.6582131,-1.6674583,-1.6706134,-1.6923151,-0.4915728,0.23340283,-0.06835535,-0.16676196,-0.29159763,-0.3636306,-0.44001704,-0.5027789,-0.58548665,-0.68152475,-0.4076542,-0.27307564,-0.4603625,-0.55652523,-0.62957096,-0.7059945,-0.75271904,-0.7979006,-0.82625675,-0.9221622,-0.9970211,-1.0284014,-1.0698713,-1.0754795,-0.17784892,0.027004313,-0.23882085,-0.3908401,-0.5089165,-0.14076108,0.7171356,0.20125665,-0.06273466,-0.206672,-0.30149916,-0.41482043,-0.470554,-0.50704706,-0.5379832,-0.5874057,-0.6702571,-0.7725486,-0.81967545,-0.8471355,-0.88799673,-0.9412453,-1.0140274,-1.078697,-1.1251638,-1.1473424,-1.1890084,-1.2390933,-1.2943552,-1.3415561,-1.3175993,-1.3547007,-1.383146,-1.4345922,-0.38156462,0.38939923,0.15190557,-0.14131366,-0.29015392,-0.41791236,-0.5558967,-0.67658716,-0.7864517,-0.9001415,-1.0337051,-1.1015115,-1.1530019,-1.2072743,-1.3040023,-1.3917525,-1.4811196,-1.505098,-1.5364357,-1.585231,-1.659404,-1.7227699,-1.7918478,-1.8429158,-1.9018637,-1.9644586,-2.0316887,-2.08349,-2.1384761,-2.2051039,-2.2505221,-2.3029773,-2.3323255,-2.4232523,-2.4434943,-2.432336,-2.453681,-2.4721513,-2.5177689,-2.5339024,-2.5377688,-2.5439239
+-1.5276151,-2.258877,-2.3736868,-2.4706883,-2.5726314,-2.7688928,-2.7559454,-2.5919414,-2.663828,-2.700545,-2.7055151,-2.7199404,-2.7165346,-2.738637,-2.7569747,-2.7641125,-2.7872787,-2.8137267,-2.8518183,-2.8654141,-2.9013557,-2.912888,-2.9254308,-2.9073117,-2.9218001,-2.9215586,-2.9102352,-2.9106312,-2.8991747,-2.9199326,-2.9070375,-2.925837,-2.9449942,-2.9627967,-2.9739614,-2.9539247,-2.944842,-2.9654126,-2.9735646,-3.0043197,-2.9835687,-2.9940057,-2.9994278,-2.975985,-3.0098324,-3.0129077,-3.0336447,-3.0200615,-3.0301247,-3.0506353,-3.0578046,-3.0576525,-3.085862,-3.0749688,-3.0491714,-3.0360794,-3.0621004,-3.0832849,-3.0907989,-3.0685816,-3.0985487,-3.0973601,-3.1126456,-3.1362643,-3.177732,-3.2162797,-3.1515505,-3.0780559,-3.0941591,-3.0936656,-3.08821,-3.1078663,-3.1309347,-3.1305013,-3.1442726,-3.15316,-3.1321108,-3.1180518,-3.130333,-3.1254306,-3.1292343,-3.1113207,-3.1457555,-3.1174,-3.0852077,-3.1010492,-3.0891547,-3.0278387,-2.3596816,-0.65538555,-0.22852284,-0.52316576,-0.7437269,-0.81390893,-0.9538108,-1.1698587,-0.65003943,-0.3743043,-0.6979517,-0.96294117,-1.2072834,-1.3794308,-1.4543395,-1.3392352,-1.1798284,-0.78168654,-0.44679752,-0.5306748,-0.7731232,-0.9116464,-1.0842757,-1.2310123,-1.2889624,-1.2177544,-0.7712692,-0.42141226,-0.5215572,-0.57188857,0.50778323,0.44852945,0.32524285,0.3821807,0.04239587,-0.24021076,-0.43072337,-0.5766014,-0.74503446,-0.898809,-1.027388,-0.9048863,0.16202329,0.13515265,-0.074383885,-0.22705097,0.27485812,0.62251794,0.14615318,-0.101426646,0.032246385,-0.12096098,-0.08495565,0.7164873,0.25108674,0.035096083,0.18951638,0.12387568,-0.13934362,-0.30360934,-0.51391894,-0.7211664,-0.8944982,-1.0089352,-0.88550746,-0.6760286,-0.8311784,-0.97820044,-1.0785576,-1.1869309,0.16650783,1.029115,0.55958754,0.15064923,-0.025679406,0.27231377,0.29232153,0.048709806,-0.16186522,-0.40310407,-0.5721189,-0.7338741,-0.821223,-0.8042141,-0.64085925,-0.70813465,-0.8314555,-0.8542795,-0.88818145,-0.9678242,-1.0855318,-1.1019701,-1.193295,-1.2794094,-1.3524524,-1.3536043,-1.3651562,-1.4025943,-1.4862182,-1.5545958,-1.6079091,-1.6446403,-1.6743642,-1.7216203,-1.7853128,-1.8329773,-1.8810294,-1.9547949,-2.0123606,-2.051791,-2.076521,-2.1075087,-2.1149962,-2.1334286,-2.1455364,-2.1794171,-2.2089038,-2.2142937,-2.2435746,-2.2680373,-2.287391,-2.3075547,-2.3146048,-2.3167005,-2.341002,-2.351197,-2.3720093,-2.3625774,-2.3603005,-2.3683925,-2.3894625,-2.3583994,-2.3796813,-2.3879614,-2.3895206,-2.398014,-2.399342,-2.415041,-2.4268959,-2.429131,-2.4267964,-2.4361954,-2.4261436,-2.4424312,-2.437784,-2.4560175,-2.4629798,-2.4572663,-2.4606025,-2.4821663,-2.4736063,-2.471632,-2.4768295,-2.4505572,-2.4591956,-2.4631739,-2.4421692,-2.4840217,-2.4127884,-2.3158522,-2.3336825,-2.311401,-2.3320274,-2.3429866,-2.3379097,-2.333728,-2.3210502,-2.3206398,-2.320818,-2.310944,-2.302743,-2.2995768,-2.3509398,-2.344501,-2.3723931,-2.3708446,-2.390036,-1.7139918,-0.9514566,-1.0505738,-1.1711447,-1.2696388,-1.3853934,-1.4589896,-1.5314143,-1.530654,-1.5770807,-1.5968564,-1.6245863,-1.6870117,-1.7332858,-1.7562275,-1.7808745,-1.8052031,-1.8342025,-1.8055809,-1.8438067,-1.837656,-1.7342649,-1.8106308,-1.8940648,-1.30042,-0.80923355,-0.9743675,-1.1017764,-1.1928203,-1.1682646,-1.2332144,-1.0966119,-1.1441529,-1.2451301,-1.2842572,-1.3867894,-1.4261227,-1.4929984,-1.5404526,-1.5947821,-1.6527113,-1.7328591,-1.7756171,-1.792338,-1.8252028,-1.8301884,-1.8843031,-1.9367218,-1.9658985,-1.9849972,-2.0061488,-2.0414457,-2.0652137,-2.0822802,-2.1373754,-2.1980572,-2.1501274,-2.17062,-0.89130855,0.4917884,0.022206265,-0.3727165,-0.58637035,-0.6836794,-0.8405796,-1.0127904,-1.1253532,-1.2180754,-1.3523074,-1.4271394,-1.5401754,-1.6094159,-1.6789715,-1.7514771,-1.8296243,-1.876013,-1.9518809,-2.002327,-2.0789957,-2.128397,-2.1835098,-2.2367914,-2.303234,-2.3625093,-2.4290967,-2.4797144,-2.531742,-2.5514765,-2.582169,-2.6074114,-2.6333175,-2.6007915,-2.6073909,-2.6360016,-2.6457944,-2.664359,-2.6759014,-2.6731386,-2.7030258,-2.7064123
+0.7229357,0.58936113,0.06237698,-0.19135967,0.20170793,0.20353113,-0.034772087,-0.17550308,-0.26617494,-0.41161025,-0.34413838,-0.39360887,-0.35292166,-0.26500684,0.0537992,0.15193336,-0.061713148,-0.23224649,-0.37431544,-0.4789027,-0.5315253,-0.59064853,-0.6751611,-0.6505224,0.3047526,0.6245618,0.4575625,0.36672992,0.09078692,-0.06038965,-0.23794177,-0.3962295,-0.52985823,-0.6662178,-0.78859365,-0.83698547,-0.92061234,-0.9355554,-0.55415785,1.0683148,0.7128506,0.36126,0.32401854,0.09612547,-0.085954174,-0.2753666,-0.44665232,-0.6283586,-0.7094792,-0.6875571,-0.296238,0.20877276,0.47006786,0.54002464,0.22979264,-0.047086526,-0.10513152,0.48013097,0.12507991,0.014007933,0.559415,0.15347004,-0.14200795,-0.2558157,-0.47573784,-0.5947254,-0.68838835,-0.7780885,-0.902225,-0.928982,-0.8870386,-0.35411328,-0.19626218,-0.5262141,-0.74167633,-0.64526314,-0.05454431,-0.20599316,-0.56194735,0.0019273199,-0.27035713,-0.3015295,0.4547959,-0.09448467,-0.16506998,0.11550227,0.05137911,-0.12530804,-0.4361973,-0.44866833,-0.41194722,-0.58293235,-0.6398457,-0.79001194,-0.85377765,-0.911153,-0.9822227,-0.7407866,-0.919023,-0.9595833,-0.93845946,0.026288051,0.9323915,0.346478,0.63067466,0.4635117,0.71271753,0.5071583,0.17070504,-0.09204216,-0.3143331,-0.5125354,-0.69354653,-0.40104264,-0.51398486,-0.6696847,-0.5180859,-0.18671961,-0.46096253,-0.67646,-0.8069855,-0.83528054,-0.83557385,-0.9536841,-0.6230147,0.06985773,-0.3998877,-0.55586946,-0.66625535,-0.1841916,-0.3200374,0.16508883,0.19223396,-0.15511268,-0.39286155,-0.53642,-0.3445938,-0.49121824,-0.55284864,-0.43467367,-0.32782006,-0.5650708,-0.7300321,-0.8866565,-0.87139726,-0.2755426,-0.3421079,-0.0883095,-0.30390164,-0.5087732,-0.64464533,-0.6376134,-0.698953,-0.8326816,-0.89943767,-0.98617727,-1.0585533,-0.70470184,-0.30550295,-0.4134956,-0.31191355,0.19657871,-0.1637504,-0.18205422,0.018542428,-0.18418823,-0.37610424,-0.5241766,-0.5989411,-0.65863574,-0.7089092,-0.78059596,-0.78855467,-0.804949,-0.06429942,0.89288634,0.47142816,0.09340185,-0.118587956,-0.26228124,-0.29818243,-0.36955196,-0.43084013,-0.44242102,-0.48968405,-0.08728735,1.1454532,1.185744,0.9878794,0.90568167,1.0968087,1.1399024,1.3082395,1.1477544,1.1759464,1.4255764,1.5242424,1.0828584,0.75291294,0.39080036,0.30600888,0.21370862,0.110252365,1.9516796e-05,-0.069982156,-0.15802978,-0.22004381,-0.22677419,-0.30092993,-0.31142086,0.013113018,0.090844944,-0.046485674,0.29731447,0.51834387,0.20199205,0.09142651,-0.01177476,-0.070210546,-0.131229,-0.21915983,-0.22764733,-0.2554473,-0.32062677,-0.3470522,-0.3247408,-0.3709377,-0.32457092,-0.27375937,-0.23021673,-0.30508688,-0.22585991,-0.1814336,-0.05326555,-0.008494336,-0.0013712831,0.03052022,0.14081158,0.1217497,0.15548752,0.17421131,0.22793017,0.2799954,0.33419645,0.33948106,0.3395009,0.38600752,0.45162034,0.6475184,0.72231036,0.76304185,0.7441665,0.7550684,0.76755464,0.77402645,0.8356341,0.86178607,0.87182796,0.81928456,0.8437428,0.85235196,0.83119047,0.784444,0.7773644,0.91454154,0.86407435,0.8705003,0.899789,0.9572911,1.0102975,0.9940766,0.9826555,1.0074337,1.0062861,1.0316783,1.0882819,1.112042,1.1065352,1.1478829,1.150467,1.1521292,1.1559514,1.1561888,1.1216016,1.2220681,1.167631,1.1391985,1.1252594,1.1351894,1.1367942,1.1189603,1.0871747,1.0757122,1.0695262,1.0975618,1.1374197,1.1785054,1.21308,1.2305132,1.2328613,1.2310743,1.2367302,1.2435291,1.2142117,1.2454104,1.303103,1.3523532,1.3481102,1.2994437,1.2972978,1.2766898,1.3533292,1.4083996,1.3807135,1.3671541,1.3927991,1.4310079,1.4635824,1.4751544,1.4698129,1.4682814,1.5201263,1.6071049,1.627352,1.7984626,1.8104975,1.9048352,1.9973187,2.0394583,2.0788918,2.1413784,2.2269273,2.1507735,2.1436653,2.173786,2.2248478,2.259472,2.3010232,2.4559944,2.6275754,2.6683624,2.473917,2.4397361,2.401826,2.4111283,2.373118,2.4348347,2.4565494,2.6094887,2.9548597,3.2504296,3.3375847,3.5009198,3.5423055,3.4529161,3.550208,3.6040387,3.3001266,2.626317,1.9311863,1.1827767,0.7878791,0.3881603,0.1382058,0.0048102476
+0.05339246,0.048295196,0.06786245,0.04188327,0.7852676,0.8954373,0.6917689,0.5626931,0.47258127,0.3804457,0.2629933,0.22124748,0.2081076,0.23110859,1.4834256,1.476496,1.0881491,0.8935636,0.8109548,0.69974494,0.6174256,0.47252375,0.36945334,0.30010045,1.0413179,1.4183729,1.4016953,1.587639,1.2259657,1.0400357,0.780349,0.6784567,0.57169205,0.4216754,0.25899863,0.26574385,0.23520313,0.031841,0.33018172,2.1503582,1.9859967,1.3953797,1.3336356,1.1257207,0.9266196,0.78648245,0.6209502,0.523322,0.41554415,0.8894739,1.3389304,1.0603118,1.0364902,0.9372027,0.8908001,0.99392414,0.8351756,0.9017119,0.7180516,0.6124215,0.8644932,0.7387974,0.5871316,0.4731121,0.34285024,0.23510818,0.18202724,0.057499114,-0.030439388,-0.0758954,-0.022229869,0.86849505,0.9953716,0.59882903,0.42032957,0.42204598,0.9402416,0.70854867,0.4969142,0.5496134,0.41955072,0.2649309,0.14474683,-0.021272954,-0.08785206,0.86095124,0.76639724,0.534507,0.34822932,0.2657441,0.20796812,0.044087436,0.06186888,0.20276529,0.07968372,-0.13131978,-0.20794709,-0.028844636,-0.19859199,-0.266394,0.054690737,1.884778,1.3138943,1.0970441,1.0185635,0.9351222,0.7978644,0.7608724,0.83177906,0.8630756,0.5801548,0.36846027,0.15780582,0.0941084,0.009335194,-0.12634364,-0.19956417,0.37806386,0.5485073,0.2067167,0.05339623,-0.0713505,-0.20911153,-0.3199931,-0.37600684,-0.44149953,-0.56133085,-0.623469,-0.69995034,-0.8033793,-0.830901,-0.21097222,0.1928124,0.31312206,0.3689084,0.08370416,-0.012230899,-0.14741465,-0.29318213,-0.0579399,1.0148832,0.57029986,0.34288496,0.18907957,0.12173496,0.14822072,0.05652352,0.20463742,0.24619548,0.0811608,-0.10147469,-0.2415535,-0.34353676,-0.46757847,-0.5130223,-0.5706406,-0.59517956,0.88461596,0.8993144,0.7345835,0.6538348,0.64894533,0.58622324,0.50524616,0.56860375,0.49473375,0.33981642,0.3694058,0.41128457,0.29387048,0.20618053,0.06685455,0.0029048286,0.57511526,1.7336144,1.7477038,1.470983,1.1731911,0.99328876,0.8533124,0.7146422,0.5609959,0.44242468,0.35789728,0.37777665,1.6686562,2.3656976,1.738991,1.5050519,1.3748028,1.3808753,1.1911451,1.0854385,1.0531318,1.0396924,1.1246455,1.0511166,0.86097103,0.8158132,0.8763609,0.84051013,0.7668557,0.73700035,0.7499043,0.6905763,0.6209314,0.566336,0.5656025,0.5451518,0.54406655,0.555234,0.47509456,0.4574684,1.2570827,1.4185563,1.1102691,1.0168098,0.88760996,0.80701315,0.7564547,0.6736401,0.64923483,0.62447286,0.54668224,0.4767952,0.4911257,0.48031443,0.53223664,0.5352002,0.5399345,0.51192445,0.5235196,0.4146751,0.5203278,0.5082561,0.4352718,0.42988646,0.51232255,0.51335114,0.57727396,0.5704145,0.6797026,0.71172476,0.6994003,0.83992845,0.89118314,0.93729746,0.9693377,1.1715575,1.2051125,1.1665554,1.1493834,1.1871464,1.240341,1.214596,1.3452623,1.2749232,1.2584774,1.3289559,1.4160287,1.3120699,1.2576162,1.3812455,1.3707337,1.4238827,1.3247097,1.3413304,1.4374962,1.4063132,1.3941917,1.3175914,1.3594422,1.3688354,1.5086021,1.4479767,1.5931425,1.5578475,1.4646847,1.4238975,1.4202392,1.4438207,1.4682539,1.4478881,1.555047,1.5877969,1.4983616,1.4734123,1.459681,1.495164,1.5102909,1.5482522,1.5564431,1.6909102,1.7886035,1.9173256,1.845463,1.8436198,1.9291325,1.9134645,1.8880799,1.8717974,1.8720806,1.9702268,2.0376163,2.0566916,2.118179,2.100669,2.0736246,1.9558612,2.0791235,2.1138191,2.140582,2.1112027,2.0153222,1.9894559,2.1850648,2.2049763,2.1458158,2.211184,2.3077786,2.4182272,2.6267462,2.7969456,2.9298584,3.0352004,2.941565,3.206787,3.1856878,2.9546542,2.9928553,2.9390194,3.0505314,3.030684,3.0899532,2.9696007,3.0923257,3.1295547,3.2342458,3.448401,3.5552802,3.3985999,3.5120177,3.412681,3.545363,3.6077478,3.5793042,3.6053352,3.6523986,3.752904,3.869152,3.9313576,3.9691877,3.099591,2.5696769,2.5492043,2.3658462,1.9999113,1.6383818,1.4372988,1.1451352,0.992344,0.9446657,0.8324978,0.8094886,0.77878976
+0.10151674,-0.080038294,-0.121781394,-0.19515996,-0.22093403,-0.27644852,-0.27769035,-0.35406676,-0.4289475,-0.4446459,-0.5252893,-0.53182507,-0.55065566,-0.22449605,0.23863985,0.24251269,0.031344455,0.07932451,0.2802085,0.15709135,0.0014848448,-0.13529792,-0.24560957,-0.027104292,0.3712776,0.38428128,0.62148654,1.0662141,0.7444319,0.5503197,0.3660947,0.23421408,0.10514997,-0.032589126,-0.15409005,-0.2629774,-0.32331416,-0.43779528,0.058923427,1.2749178,0.8495401,0.55182284,0.5739424,0.42699394,0.27298105,0.23043226,0.0700551,-0.02621283,-0.095470816,0.37405726,0.9045691,0.5792642,0.26796907,0.14613535,0.07684758,0.19614558,0.5168936,0.5997437,0.25666466,0.35613889,0.43779558,0.21146767,0.05072199,-0.064625815,-0.18631591,-0.27926797,-0.3549598,-0.44505438,0.44173175,0.47399086,0.6005528,0.5181067,0.26612976,0.11413172,0.15501201,0.40183726,0.5672877,0.20462482,0.0809094,-0.103465304,-0.2551338,-0.3299739,-0.44582728,-0.53415424,-0.5241638,-0.533005,-0.6715449,-0.72276753,-0.79780513,-0.8705685,-0.95730287,-0.9829432,-0.7885475,-0.09355433,-0.19584687,-0.4463969,-0.6187749,-0.4941712,-0.50132257,-0.63202727,0.6305958,1.0035053,0.48301315,0.16793148,0.025190119,-0.08237642,0.23920597,0.3632428,0.61152065,0.3348881,-0.038280245,-0.2048692,-0.4156068,-0.5359973,-0.68295985,-0.75254154,-0.7181177,-0.62957025,-0.5711312,-0.7210367,-0.8205018,-0.90298766,-1.0095177,-1.0939779,-1.1532907,-1.236231,-1.3199687,-1.3469561,0.03513967,0.5077721,0.110033825,-0.15950352,-0.3327126,-0.46130618,-0.51918036,-0.6285739,-0.6881946,-0.73062533,-0.8217443,-0.6591457,0.5721671,0.15118252,-0.14414646,-0.33480552,-0.4881181,-0.5901358,-0.6570252,-0.70074844,-0.73426664,-0.83749413,-0.91603494,-0.9806357,-1.0341598,-1.0864043,-1.1386367,-1.1505839,-0.5759991,0.8901063,0.45717138,0.104973376,-0.07658222,-0.19898653,-0.28399593,-0.38046712,0.13271363,0.3960248,0.064411655,-0.08549905,-0.16758232,-0.28334507,-0.4021448,-0.5121381,-0.56273735,-0.43758082,0.22713773,0.5698688,0.4448142,0.26732853,0.0342721,-0.12277764,-0.23937827,-0.3221617,-0.40216354,-0.4790149,-0.51315594,0.39117312,1.5329937,0.952933,0.6582657,0.48922884,0.35393664,0.22247516,0.098773494,0.56963444,0.70023775,0.6926816,0.4968751,0.27674967,0.17087378,0.12843128,0.08039303,0.07095517,0.038538773,-0.011653025,-0.08699464,-0.12086339,-0.15345049,-0.16876101,-0.22445537,-0.2726269,-0.29565307,-0.034011185,-0.06652047,-0.07545921,-0.12533073,-0.16480112,-0.196986,-0.2626619,-0.28603095,-0.3049703,-0.3468551,-0.36708897,-0.39638168,-0.4423758,-0.42966458,-0.42017043,-0.44884002,-0.44285974,-0.4393338,-0.40731955,-0.28495634,-0.253838,-0.19386871,-0.1289327,-0.11203949,-0.18289572,-0.16188611,-0.07020339,-0.042753104,0.0011632405,0.0020784996,0.050185617,0.078715324,0.13867071,0.26003298,0.28427792,0.26689798,0.3077916,0.35270786,0.4226791,0.55683935,0.60010743,0.657351,0.7299937,0.7255008,0.8183874,0.8466333,0.86795366,1.063293,1.2301147,1.203657,1.2135756,1.2164809,1.2575645,1.303796,1.3343375,1.3508139,1.3894687,1.4432447,1.3747191,1.3458737,1.3574936,1.3779044,1.5403509,1.4900277,1.5960727,1.6229877,1.4960756,1.4654505,1.4513345,1.4463458,1.4604914,1.4503247,1.5376582,1.6188391,1.617162,1.5687695,1.5609164,1.5784113,1.5731907,1.5987611,1.6203763,1.7436463,1.7819384,2.0793018,1.9127653,1.9051881,1.8745538,1.878596,1.8399992,1.8480337,1.8551254,1.8687093,1.9470614,1.9898033,2.1259532,2.0854144,1.9708836,1.8682425,1.9019465,1.890181,1.9246011,2.0423698,2.0515108,2.0998368,2.2361424,2.2068684,2.2357628,2.2364755,2.2762904,2.300552,2.3658285,2.3348768,2.330716,2.1043513,1.8219754,1.6562312,1.4754727,1.3908967,1.396766,1.4750342,1.5735826,1.7201915,1.7161424,1.7450981,1.8724257,1.8295671,1.6887848,1.3961283,1.1821151,1.16182,1.2997553,1.653153,1.9653409,2.2297783,2.334743,2.4404597,2.6357439,2.3957357,1.8187326,1.3822398,1.1198857,0.94934064,1.0745655,0.9307968,0.8416951,0.75834703,0.5766033,0.5911279,0.420946,0.3940602,0.5540547,0.5107018,0.48745537,0.49445403
+0.50866777,0.45471376,0.08766024,-0.21694249,-0.31281847,-0.34349146,-0.29402858,-0.35492605,-0.4299112,-0.40403062,-0.45924604,-0.47968394,-0.5149163,-0.526931,-0.46660846,-0.42350262,-0.4232946,-0.29180223,0.39194044,0.42262727,0.14494906,-0.06107208,-0.1392645,0.22740354,0.27802718,0.21109496,0.20293494,0.23953979,0.14803483,0.1337907,0.03024723,-0.11954071,-0.21931748,-0.31389633,-0.39076507,-0.40961236,-0.40553024,-0.45552436,-0.33421332,0.29573137,0.25507277,0.003994461,-0.091715366,-0.16966681,-0.23336346,0.790117,0.6091711,0.2595497,0.0749407,0.3120216,0.29102355,-0.0036811344,-0.22186811,-0.35304803,-0.083088964,0.124824226,0.02293827,0.19109614,0.033430163,-0.12955664,-0.12928115,-0.25836217,-0.35392115,-0.4002971,-0.47500223,-0.53841776,-0.58928394,-0.65724766,-0.6717134,-0.7475219,-0.7146431,-0.8219006,-0.8148668,-0.7373886,-0.62700546,-0.6860268,-0.7475282,-0.8133641,-0.8085592,-0.79309654,-0.8940246,-0.95822436,-1.0054373,-1.0710306,-1.1484547,-1.2400172,-1.3052133,-1.3169215,-1.3630033,-1.3803923,-1.4050682,-1.3258507,-1.2447741,-1.0286964,-1.0557775,-0.99684656,-1.1336414,-1.1790055,-1.2928433,-1.3357968,-1.2375343,-0.93004227,-0.9595024,-1.0426328,-1.127513,-1.1966972,-1.2710893,-1.2914219,-1.3543205,-1.393683,-1.4477813,-1.4928079,-1.5461056,-1.5333056,-1.610729,-1.6452957,-1.6408193,-1.667396,-1.4769287,-1.3609382,-1.4193984,-1.4423059,-1.4985468,-1.5720289,-1.6031284,-1.6433986,-1.7227044,-1.7129874,-1.5323637,-1.2629567,-1.3383548,-1.4171863,-1.4851625,-1.5349011,-1.55582,-1.6126425,-1.5961138,-1.6462168,-1.6660912,-1.6172211,-0.38928407,-0.21597913,-0.5052565,-0.6791805,-0.8137244,-0.89873344,-0.981623,-0.8592114,-0.68745375,-0.7656607,-0.87104267,-0.9692863,-1.0319006,-1.0843768,-1.1510761,-1.1599417,-0.85095,-0.29797292,-0.49935612,-0.65601957,-0.7611327,-0.78824514,-0.898157,-1.0045229,-0.4201154,0.26755816,-0.011204544,-0.15227894,-0.2660827,-0.43875593,-0.51911724,-0.6120441,-0.67854095,-0.7553411,-0.79002786,-0.24103318,1.211793,0.6819043,0.26008236,0.06662516,-0.059106264,-0.16413645,-0.18154837,-0.1777898,-0.2850536,0.5442565,1.0627489,0.51814616,0.3805551,0.25450695,0.109016225,-0.011922952,-0.09952828,0.02874038,0.019973274,-0.022553157,-0.10781759,-0.16472442,-0.2397482,-0.28878328,-0.2908551,-0.3146857,-0.35541406,-0.37400082,-0.3965212,-0.4097045,-0.44813573,-0.45624155,-0.49624205,-0.50250417,-0.5287185,0.65534765,0.5975671,0.27826196,0.13321297,0.05281837,-0.009331387,-0.062656745,-0.10867149,-0.14826913,-0.17638133,-0.22152026,-0.2511009,-0.27091104,-0.28682414,-0.2957021,-0.31916952,-0.33468008,-0.3293569,-0.34377125,-0.21492073,-0.2418107,-0.1401898,-0.05718087,-0.0066217966,0.069820225,0.110963434,0.18550722,0.23836409,0.3125903,0.3234484,0.3425154,0.40776834,0.36624348,0.4545688,0.49394065,0.41260207,0.4688902,0.4982587,0.42629611,0.43309534,0.3959221,0.39187524,0.43254268,0.44371173,0.43464696,0.42678282,0.438234,0.61644375,0.8238071,0.7847465,0.8337515,0.9011147,0.96184,1.028041,1.0342307,1.0415854,1.0879818,1.1364127,1.0708461,1.0439095,1.0496261,1.032602,1.092092,1.1015849,1.113168,1.1292487,1.031982,1.0258636,0.99211943,0.950114,0.9558991,1.0118662,1.137818,1.1319964,1.4242625,1.4432404,1.4515738,1.5252955,1.543479,1.5727966,1.5783172,1.6078464,1.6431582,1.7745247,1.7194884,1.717035,1.7472293,1.8409581,1.8096774,1.7601506,1.7048745,1.6864676,1.7085171,1.7427553,1.8826998,1.9568727,1.8298965,1.6913985,1.8070095,1.8885338,1.9290872,2.0846257,2.1333778,2.1466002,2.370439,2.3608406,2.3849928,2.3614593,2.362857,2.3508334,2.3640182,2.3629563,2.4681647,2.4636412,2.4576597,2.4759483,2.341448,2.4490113,2.435279,2.4027267,2.3833241,2.3858848,2.3802705,2.4177957,2.4956498,2.5778928,2.596134,2.5433576,2.5750003,2.3979485,2.4237566,2.3756237,2.409198,2.1978474,1.8946393,1.6705,1.3562422,0.80858815,0.4251082,0.25515336,0.17926191,0.14747001,0.11571045,0.20783912,0.23817514,0.20957182,0.11604674,0.096695825,0.07530774,-0.010518242,0.00081849843,-0.04323803,-0.02450207,0.13887666
+0.81007695,0.72756195,0.11260195,-0.49703348,-0.70250964,-0.7118182,-0.6057807,-0.6428256,-0.6565467,-0.7023162,-0.74194187,-0.7071386,-0.79863274,-0.88585716,-0.91013217,-0.9695014,-0.9803766,-0.89450896,0.16076359,0.23857488,-0.20422368,-0.44869506,-0.61234593,0.32013446,0.5361725,1.0131269,0.8976797,0.69653463,0.5490227,0.7508095,0.6117127,0.32293728,-0.09301776,-0.4031388,-0.565989,-0.6529679,0.85636157,0.8230313,0.5433743,0.14831796,-0.10435121,-0.31780946,-0.48627466,-0.5531509,-0.594301,-0.067380965,0.17235257,-0.10246754,-0.387032,-0.5081337,-0.63699913,-0.82869405,-0.9545185,-0.9693321,-0.8467033,-0.85915637,-0.9208718,-0.8122921,-0.8165924,-0.94235516,-1.0060962,-1.0528398,-1.1256084,-1.204009,-1.2516837,-1.3097674,-1.3784975,-1.4249651,-1.4215358,-1.3090348,-1.3442551,-1.4868225,-1.5106126,-1.2944827,-1.0049053,-1.1300871,-1.2774922,-1.3764693,-1.4581276,-1.6078202,-1.6684607,-1.7527331,-1.8266382,-1.768089,-1.7124802,-1.7982805,-1.9093952,-1.9568708,-2.010684,-2.0632646,-1.9440337,-1.5538044,-1.6272888,-1.7102909,-1.7954186,-1.9090102,-1.9988425,-2.0409923,-2.1190612,-2.1813946,-2.2466178,-2.2898302,-2.310269,-2.3408809,-2.3650258,-2.3742213,-2.4071114,-2.4495616,-2.4833422,-2.492848,-2.5321553,-2.5726902,-2.6745048,-2.639438,-2.6559086,-2.6597478,-2.6841807,-2.6965275,-2.6250646,-2.5112484,-2.5069447,-2.5406456,-2.5913486,-2.6331458,-2.6546094,-2.6600976,-2.6864007,-2.7020402,-2.7067995,-2.6033533,-2.611465,-2.6440468,-2.569122,-2.2572412,-2.1847568,-2.213945,-2.2995567,-2.3602521,-2.4472377,-2.34521,-1.6452225,-1.4336382,-1.6021639,-1.7218542,-1.8292876,-1.9219586,-1.6876597,-1.3432853,-1.3935151,-1.5492861,-1.6726762,-1.7621303,-1.862624,-1.9667661,-2.0054595,-2.074532,-1.9280035,-1.5637822,-1.5965447,-1.7044653,-1.796447,-1.8709811,-1.9079988,-2.0219688,-2.075232,-1.495188,-1.0828022,-1.2271643,-1.3229758,-1.4167819,-1.55583,-1.6418349,-1.744725,-1.8071697,-1.7481129,-0.38350287,0.4605071,0.09002,-0.36524722,-0.55855906,-0.6717756,-0.7774346,-0.8222704,-0.92484546,-0.8742883,0.070704,0.4857105,-0.076376185,-0.37632722,-0.500145,-0.5996296,-0.7127552,-0.7891295,-0.87412226,-0.9209366,-0.9519349,-1.0018442,-1.1043763,-1.150347,-0.38111806,-0.20008777,-0.47268957,-0.5822559,-0.6119114,-0.68829906,-0.7633978,-0.85274506,-0.9072484,-0.96323496,-1.0109549,-1.0640702,-0.8960775,-0.9691284,-0.98954374,-1.0273321,-1.0257319,-1.0116118,-1.0404409,-1.0506256,-1.0447798,-1.0805836,-1.0994666,-1.1433818,-1.1808703,-1.1764925,-1.1595511,-1.1632206,-1.1658633,-1.1820121,-1.1770235,-0.5309804,-0.18114035,-0.076265156,0.06589927,0.12715694,0.2945813,0.29464716,0.38288677,0.41338786,0.47686118,0.4616883,0.45148003,0.4502507,0.3875627,0.35389367,0.34046617,0.29761857,0.30791646,0.33469856,0.246468,0.20549063,0.15706722,0.13018753,0.13052078,0.17484622,0.11953001,0.13260725,0.12949276,0.11359234,0.2204978,0.14884973,0.099296525,0.10237263,0.13293155,0.1964015,0.18244456,0.20095606,0.25694117,0.50977194,0.41364017,0.30226564,0.310848,0.27985668,0.3037352,0.3660642,0.32225844,0.36492795,0.26498738,0.26451084,0.23368083,0.1951767,0.20054464,0.23489206,0.3519747,0.3380239,0.3181715,0.28213692,0.28304914,0.30116352,0.30411923,0.2980706,0.2875713,0.3161351,0.31111997,0.3461979,0.2891272,0.31325018,0.3434623,0.7887429,0.65533423,0.5246664,0.47945726,0.49463212,0.5407456,0.59529066,0.63327694,0.5859478,0.4652953,0.405998,0.47546023,0.5641214,0.6242334,0.7422645,0.8345283,0.80001783,0.96954286,1.0628958,1.0568049,1.0141338,0.95510113,0.94264543,1.0045651,1.0918245,1.1258965,1.1527998,1.1842659,1.2557173,1.3943408,1.5300736,1.6090691,1.4414475,1.3016124,1.2552915,1.2276546,1.2348905,1.290946,1.3843677,1.5064244,1.6686068,1.8432183,1.725529,1.6896863,1.7992113,2.038607,2.2493455,2.3174,2.333345,2.3080091,1.9982562,1.3574783,0.7336181,0.269769,-0.25739115,-0.71567976,-0.7296507,-0.6602651,0.08191331,0.36453706,0.12219177,0.056046393,-0.13642207,-0.18715498,-0.17836924,-0.21126506,1.2846701
+0.9508723,0.92255414,0.50430775,0.057071734,-0.24416737,-0.26267925,-0.23652185,-0.27560142,-0.31570488,-0.31215858,0.12900384,0.05673531,-0.123963684,-0.23616904,-0.29661137,-0.35112,-0.3578152,-0.32906783,-0.2453111,-0.19917648,-0.277937,-0.30769405,-0.40858173,-0.42933092,-0.3338738,0.4400705,0.5110394,0.38075182,0.37386316,0.37215257,0.3020432,0.23445772,0.16701953,-0.0024108998,-0.16591789,-0.18484539,1.3441085,1.3524678,1.0321219,0.5076669,0.28906196,0.12237705,-0.04506639,-0.12902348,-0.1682349,-0.1308124,-0.13390632,-0.18238635,-0.2606223,-0.41278118,-0.524332,-0.46823323,-0.24943653,-0.38936773,-0.46816996,-0.42371318,-0.4882279,-0.38198847,-0.49402928,-0.58365756,-0.6699969,-0.73435295,-0.76991963,-0.8189946,-0.89330536,-0.9570881,-1.085526,-1.1195402,-1.0932505,-1.1620204,-1.2521347,-1.4041721,-1.2060782,-0.959067,-0.858063,-1.0490117,-1.175085,-1.2497363,-1.3370471,-1.411678,-1.4947679,-1.5332042,-1.5669708,-1.7214966,-1.6192083,-1.645788,-1.7351772,-1.762105,-1.8060023,-1.8101785,-1.8152939,-1.4100728,-1.3872023,-1.4163345,-1.3711679,-1.4311368,-1.4993277,-1.5378761,-1.6217523,-1.668851,-1.7073698,-1.6901237,-1.7579014,-1.779556,-1.7924404,-1.8308764,-1.8466833,-1.8940129,-1.9651766,-1.6700478,-1.5115838,-1.5510647,-1.6123188,-1.6201513,-1.7146375,-1.7712042,-1.80983,-1.840824,-1.8627208,-1.924069,-1.9304678,-1.8889203,-1.6814783,-1.6783026,-1.7028174,-1.7885171,-1.9226856,-1.9143558,-1.9509377,-1.8962032,-1.760573,-1.7973869,-1.9068041,-1.8508189,-1.87872,-1.905757,-1.9675691,-1.9904389,-2.0905356,-1.7633438,-1.5068214,-1.5465502,-1.5737201,-1.5781076,-1.6194425,-1.7023906,-1.7858833,-1.86303,-1.7000077,-1.7289748,-1.8143679,-1.8953477,-1.9259057,-1.9185193,-1.9293939,-2.019184,-1.7707913,-1.5672734,-1.6334397,-1.6276597,-1.6324704,-1.6863251,-1.7628081,-1.7340755,-1.8484298,-1.8619332,-1.4304407,-0.7332284,-0.81321144,-0.88621134,-0.9065908,-0.9795079,-1.081584,-1.1747273,-0.2991563,0.6635913,0.3369838,-0.036620762,-0.20838614,-0.3161948,-0.43839705,-0.52175754,-0.529941,-0.6220108,-0.6690414,-0.35590234,-0.12916577,-0.36542284,-0.41191196,-0.42879456,-0.44489652,-0.48078978,-0.5236596,-0.5921744,-0.58486235,-0.61550564,-0.66650766,-0.7114678,-0.6919559,-0.3335967,-0.35572743,-0.36329007,-0.38435084,-0.35805398,-0.3838272,-0.43262592,-0.48781344,-0.51438415,-0.5392562,-0.57085335,-0.6150736,-0.6169642,-0.59899706,-0.5820365,-0.54680884,-0.5593111,-0.54221785,-0.5281016,-0.55286515,-0.56834185,-0.58013415,-0.5783261,-0.57759184,-0.6016294,-0.6258585,-0.6009954,-0.6116002,-0.60673094,-0.5898089,-0.5880108,-0.51142853,-0.35850304,-0.21018752,-0.07829583,-0.066158995,-0.05996732,-0.05966268,0.11201315,0.18690996,0.2561487,0.2468472,0.1916147,0.19838598,0.13628897,0.13333008,0.16221371,0.08702232,0.10423951,0.21355188,0.09839982,0.14698921,0.16419005,0.2549588,0.36737457,0.38299105,0.25039855,0.22759198,0.22607289,0.40430284,0.5460211,0.29060262,0.19679825,0.21279803,0.3478246,0.46160117,0.37603092,0.3501729,0.43507403,0.43790007,0.2548291,0.25563765,0.38886738,0.28255218,0.3438008,0.32695186,0.3191675,0.42671248,0.3290968,0.4200385,0.37811148,0.26603922,0.29535195,0.44829422,0.7228414,0.61982155,1.1121315,0.8432636,0.8400688,0.8399584,0.7745609,0.7052058,0.65169185,0.67557627,0.6761669,0.7181747,0.7009679,0.7002999,0.8499296,0.93235385,0.8045059,0.65299785,0.62895346,0.6481471,0.70839524,0.7387017,0.7722643,0.8567273,0.75886655,0.80560386,0.8774567,0.8962232,0.90138704,1.0419863,1.1271968,1.1429439,1.2685354,1.5851331,1.343946,1.277825,1.2005675,1.1236331,1.1269102,1.1751105,1.277878,1.2747203,1.2796514,1.358259,1.5476339,2.008801,1.9484291,1.6562729,1.4969673,1.5851424,1.478373,1.4068108,1.4526559,1.5452782,1.6801233,1.8515502,1.8008837,1.695245,1.833235,1.9254105,2.174757,2.481445,2.4635382,2.5012417,2.5430076,2.5436606,2.4322371,2.1493983,1.8263218,1.3946314,0.97403586,0.71810985,0.41426495,0.57876533,0.6122894,0.27066976,0.23234223,0.17841795,1.1806446,0.9880724,1.0726535,1.3757329
+0.46617353,0.21933697,0.024927989,-0.070725754,-0.12969153,-0.22623606,-0.21641877,-0.21810682,-0.2852288,-0.29023954,-0.15181902,-0.15159419,-0.25019506,-0.33334917,0.17836973,0.4064937,0.39159262,0.44450048,0.4788937,0.4498313,0.22577326,0.041730177,-0.20397387,-0.25973997,-0.33358032,0.18751498,0.54994816,0.5913813,0.6185343,0.649827,0.52011174,0.43018237,0.27328742,0.1239803,-0.013044644,-0.05308545,0.81968546,0.9771564,1.1881247,0.8741995,0.5440867,0.33303827,0.11606346,-0.030446429,-0.008580137,0.7630897,1.2849998,0.82128763,0.4832555,0.2871703,0.0004123412,-0.16377692,-0.191884,-0.27169955,-0.35653263,-0.40439898,-0.3135409,-0.2741354,-0.39744693,-0.37465107,-0.44646215,-0.50937784,-0.5669391,-0.616811,-0.6398155,-0.7065358,-0.7605454,-0.80344605,-0.81605995,-0.8757427,-0.98217297,-1.0693722,-1.0552144,-1.1335306,-1.1637979,-1.2474403,-1.3208207,-1.338659,-1.3980882,-1.4626129,-1.4762409,-1.5302311,-1.6070318,-1.6539218,-1.7024312,-1.7198668,-1.8078371,-1.8532782,-1.8719211,-1.6452427,-1.1501974,-0.71160936,-0.1827852,-0.23135085,-0.45836323,-0.6416211,-0.8323757,-0.97002906,-1.1029227,-1.2015555,-1.3117727,-1.3723559,-1.4691515,-1.5368803,-1.5886719,-1.643004,-1.7021444,-1.7535317,-1.7871188,-1.5445387,-1.6475519,-1.516806,-1.373463,-1.454387,-1.532525,-1.5984561,-1.6514928,-1.6866863,-1.7257786,-1.7657213,-1.8100898,-1.8320502,-1.8473147,-1.8799711,-1.8824012,-1.9116169,-1.9115038,-1.9571118,-1.9024237,-1.7245584,-1.6436119,-1.7203295,-1.7529817,-1.7917124,-1.8540921,-1.8933148,-1.9476956,-1.9264125,-1.970813,-1.9076312,-1.629458,-1.5824733,-1.6573629,-1.7240388,-1.7408099,-1.7700434,-1.8182942,-1.8779479,-1.8104105,-1.7153062,-1.7733605,-1.8201904,-1.845267,-1.888113,-1.8598478,-1.8406594,-1.3245435,-1.217413,-1.3158938,-1.3815975,-1.4411035,-1.4906011,-1.5711517,-1.6145271,-1.6562498,-1.7414262,-1.5140066,-1.2952749,-1.3426893,-1.4112775,-1.4543929,-1.5301934,-1.5779465,-1.5857329,-0.7426243,0.16140166,0.071934566,-0.17326382,-0.3813831,-0.5216261,-0.62377435,-0.58025324,-0.2607715,-0.45516777,-0.5043798,-0.1942554,-0.08193736,-0.29721743,-0.35987067,-0.43846667,-0.49877104,-0.5695904,-0.6288878,-0.6942141,-0.53618324,-0.6236278,-0.7255984,-0.8092985,-0.9215697,-0.99231607,-1.0193512,-1.0257157,-0.98292255,-0.98848045,-1.0009067,-1.0482987,-1.0960727,-0.71668696,-0.44540823,-0.562008,-0.6181886,-0.6463774,-0.61358917,-0.6808151,-0.60584533,-0.41174883,-0.375585,-0.46638322,-0.46924418,-0.5386841,-0.585233,-0.6203779,-0.6514065,-0.6637242,-0.6973747,-0.7175267,-0.70852274,-0.7243616,-0.740207,-0.76650333,-0.744444,-0.6669874,-0.57776797,-0.51951015,-0.41839555,0.3421875,0.087698266,0.15471148,0.23754866,0.31965458,0.36354512,0.34827486,0.4299766,0.45475248,0.39126003,0.4919299,0.43232706,0.46635538,0.4876299,0.46882313,0.51607573,0.49622738,0.5943866,0.569144,0.6465281,0.56746364,0.5136666,0.48269504,0.62998,0.7619235,0.5393598,0.59145826,0.5866387,0.5704791,0.5674541,0.60309774,0.6993228,0.7233542,0.82906455,0.74589705,0.7433591,0.7604952,0.76881886,0.7744189,0.7723723,0.75658965,0.8327546,0.83013046,1.2160869,1.3599801,1.2909279,1.1756003,1.193455,1.5438871,1.6313795,1.9050028,2.0621552,2.1878607,2.2781863,2.250651,2.2447643,2.1288276,1.9863605,1.8592299,2.1127691,2.157659,2.0916533,2.349752,2.2393181,2.172183,2.0840378,2.0343757,2.0036612,2.0005536,2.0126681,2.0037818,2.0172021,2.030665,1.9787443,2.0283535,2.123334,2.2047143,2.244501,2.291585,2.4090283,2.3599987,2.457934,2.248785,2.2641356,2.3290186,2.39153,2.4332428,2.476563,2.4959342,2.390847,2.2788055,1.9592876,1.5612218,1.4753008,1.4819742,1.5202223,1.5918412,1.763561,1.8473246,1.8061597,1.8433939,1.8743806,1.8621023,1.7452832,1.6138144,1.4954469,1.5502346,1.3914667,1.186429,0.9603499,0.7630776,0.6422601,0.49162138,0.27392852,0.16939814,0.09873,0.053326342,0.045420293,-0.027314382,-0.06558546,-0.09204437,-0.09945884,0.0017181523,-0.040030174,-0.03196426,-0.0495572,0.60618806,0.5753968,0.46414632,0.6188897
+0.7804195,0.73771477,0.36283934,-0.010158271,-0.22395241,-0.32940313,-0.3309409,-0.33939674,-0.34375003,-0.29998285,-0.33570862,-0.38292748,-0.42479584,-0.49830496,-0.20558093,0.5533018,0.47519815,0.40318388,0.33326387,0.24149574,0.061427314,-0.10102184,-0.25858438,-0.3442884,-0.38913065,-0.16385852,0.009649873,0.5228783,0.50385314,0.37922058,0.3430491,0.50447977,0.31411463,0.10169029,-0.058582693,-0.19292228,0.0023916885,0.08305858,0.8534486,0.7714483,0.39108154,0.17292325,-0.009222757,-0.15843956,-0.24670161,0.039183717,0.13876303,0.2416464,0.095060974,-0.09909408,-0.27241963,-0.41737205,-0.48552206,-0.5283149,-0.59330326,-0.58778596,-0.5321337,-0.42825332,-0.46299705,-0.52358294,-0.56861424,-0.60701,-0.652938,-0.69673705,-0.71699846,-0.7613781,-0.8156341,-0.86071754,-0.897061,-0.93403363,-1.0035716,-1.0630407,-1.0804379,-1.0952959,-0.8740233,-0.91253805,-1.0068784,-1.0464617,-1.101835,-1.1511508,-1.1515946,-1.1942313,-1.2306494,-1.2759181,-1.3096179,-1.3241804,-1.3715718,-1.4195809,-1.3532239,-1.2454438,-1.172426,-0.61326385,0.16054663,0.35482675,-0.010541435,-0.22519575,-0.4122743,-0.58528936,-0.724972,-0.83308494,-0.9461052,-1.0094802,-1.1052003,-1.1880193,-1.2327739,-1.3319887,-1.4019687,-1.4638656,-1.5057762,-0.9587122,-0.7683998,-0.8960875,-0.9065736,-0.6418563,-0.70891905,-0.86482656,-0.9878502,-1.0643187,-1.1482658,-1.2395666,-1.3249137,-1.3743658,-1.3555696,-1.3919895,-1.4308678,-1.2273626,0.042011905,0.3273548,-0.016617578,-0.15394981,-0.33986527,-0.46567142,-0.54691404,-0.7044604,-0.84139514,-0.93885356,-1.046048,-1.0984433,-1.1929331,-1.1481669,-1.0312234,-1.0670512,-1.1642962,-1.2409383,-1.0816236,-1.005073,-1.077141,-1.112437,-1.1104378,-1.0752199,-1.144563,-1.1938857,-1.2675526,-1.3384242,-0.73703456,-0.43293655,-0.5124066,-0.7116406,-0.86670876,-0.97575843,-1.0575523,-1.1266344,-1.1833872,-1.2806199,-1.300844,-1.186718,-1.172144,-1.1916611,-1.2334448,-1.3050869,-1.3764027,-1.4355092,-1.4566648,-1.427541,-1.052922,-0.14139818,0.21365817,-0.04821426,-0.3169604,-0.48762167,-0.6067786,-0.5604729,-0.15163636,-0.31565666,-0.50732374,-0.35675886,-0.25317362,-0.42401895,-0.45241648,-0.47891837,-0.58522093,-0.7000738,-0.75643873,-0.8398297,-0.88935244,-0.9630854,-1.0527848,-1.114839,-1.1636508,-1.2011738,-1.2070963,-1.199853,-1.1624975,-1.1760952,-1.216167,-1.2670321,-1.2948693,-0.975525,-0.68409395,-0.8057741,-0.8819662,-0.88643116,-0.8841573,-0.9643399,-0.9953015,-1.0084687,-1.0185971,-1.0334502,-0.94653016,-0.7942519,-0.8453176,-0.88294935,-0.90663546,-0.93428075,-0.95506257,-0.96768045,-0.9594855,-0.94972235,-0.9501668,-0.9699906,-0.8882246,-0.6858917,-0.512698,-0.5083216,-0.4120029,0.36591727,0.28510183,0.46603692,0.655669,0.7748733,0.8661631,0.94709265,1.0963342,1.1274219,1.116549,1.2292099,1.2380658,1.2859677,1.340668,1.3611887,1.4517021,1.3891709,1.4504461,1.4069057,1.6050357,1.5029466,1.4594663,1.4163821,1.5141052,2.198407,2.4015846,2.355951,2.5265865,2.594287,2.6084194,2.7901082,3.0159664,3.0548153,3.1884713,3.2174253,3.1814408,3.1364355,3.1620905,3.177272,3.1898866,3.1387572,3.1260066,3.16961,3.294094,3.6334956,3.5928617,3.4847775,3.52672,3.7811348,3.768423,3.8289976,3.7835405,3.8109999,3.8598948,3.826305,3.9105163,3.795539,3.7159278,3.6933863,3.7816658,3.8028224,3.7518044,3.7996364,3.816279,3.7291627,3.6641512,3.698377,3.6664386,3.6655822,3.6685905,3.6802437,3.6935046,3.6998808,3.694824,3.698348,3.7036269,3.6880846,3.6723442,3.6788652,3.6007142,3.5059915,3.2282,2.8018687,2.522429,2.639275,2.9044704,3.0271494,3.0728498,3.0901134,2.9439259,2.933245,2.8130941,2.50595,2.466058,2.6863873,2.8223014,2.9423769,2.97478,3.0894046,3.1377566,3.2244492,3.2522435,3.253777,3.1689405,3.155756,3.144898,3.1610088,3.1006503,2.9939933,2.8225443,2.5172634,2.2955341,2.0000057,1.5172426,1.0655286,0.7638166,0.6025886,0.46902812,0.3377177,0.266091,0.22439949,0.27538344,0.4886847,0.45507577,0.51223433,0.49306643,0.7872158,0.73862153,0.6438736,0.69090354
+0.9406332,1.1052909,0.5739573,0.1510775,-0.067948624,-0.22040372,-0.18748558,-0.22223142,0.118639156,0.1315495,0.0007826276,-0.06924845,-0.13182369,-0.21859658,-0.2670903,0.33860046,0.561479,0.55567765,0.4608741,0.29272997,0.10273591,-0.011472242,-0.16713636,-0.32548273,-0.3816764,-0.41363418,-0.37567374,-0.26086545,-0.19358534,-0.10606678,0.12186156,0.25893715,0.09151895,-0.05453565,-0.19173077,-0.32830688,-0.38133222,-0.36581457,0.55105823,0.44874457,0.23483534,0.1016403,-0.06441222,-0.19467756,-0.24822465,-0.1408827,-0.15761678,-0.0062990673,0.066608995,-0.07251388,-0.29231587,-0.4603956,-0.57608896,-0.59804493,-0.68652153,-0.6907047,-0.70754933,-0.7226094,-0.7368095,-0.7620011,-0.8117253,-0.82074916,-0.8160433,-0.8242229,-0.87108326,-0.9032569,-0.93558,-0.99578285,-1.0375441,-1.0692065,-1.1058705,-1.172266,-1.2171686,-1.2233877,-1.1564608,-1.1953863,-1.2548685,-1.285408,-1.29273,-1.2941684,-1.2807848,-1.309576,-1.3265343,-1.3796271,-1.4628195,-1.4891893,-1.4858956,-1.4954473,-1.5306678,-1.5364208,-1.1239142,-0.3423763,0.5592903,0.3667959,0.1355941,-0.046022277,-0.24774988,-0.4214038,-0.5564406,-0.6616783,-0.768906,-0.86782074,-0.9490664,-1.0114537,-1.0586091,-1.1034245,-1.155695,-1.2555438,-1.3473148,-1.3353161,-1.17422,-0.9739337,-0.85684645,-0.87804985,-0.96467257,-1.049968,-1.1484635,-1.1369946,-1.1640289,-1.2042228,-1.3027029,-1.2181227,-0.9246893,-0.89058113,-0.83947074,-0.4372296,0.604722,0.928958,0.41884518,0.18817967,0.03142937,-0.09253326,-0.23483475,-0.3835094,-0.52983123,-0.6340766,-0.7247906,-0.800579,-0.8451904,-0.7467654,-0.79984856,-0.8178389,-0.81808674,-0.82666945,0.14119795,0.605765,0.19626524,-0.009344216,-0.08756727,0.0050893314,-0.036314372,-0.18550281,-0.35171106,-0.47224703,-0.111401394,0.10728517,-0.14232627,-0.36930072,-0.53173333,-0.64454246,-0.7457607,-0.8443511,-0.9096714,-0.98184323,-1.0286202,-0.9342805,-0.80951,-0.63648856,-0.74942946,-0.83989835,-0.9298165,-1.0098746,-1.1089289,-0.91269124,-0.5076409,0.1918865,0.21888731,-0.034552295,-0.22595376,-0.36262512,-0.49335408,-0.4220466,-0.16452174,-0.31317648,-0.43666905,-0.57721865,-0.639917,-0.69313157,-0.73873806,-0.749268,-0.79006016,-0.8518924,-0.7801133,-0.8365721,-0.8981357,-0.9466654,-0.99834955,-1.0386258,-1.0908346,-1.1587498,-1.2175468,-1.205416,-1.1936399,-1.1649418,-1.1817265,-1.2165294,-1.230427,-1.1424236,-1.0786023,-1.0709257,-1.0945317,-1.1157278,-1.1447452,-1.1702347,-1.2075036,-1.2060306,-1.2106246,-1.0424945,0.12817442,0.1863956,-0.07089763,-0.19764052,-0.2949717,-0.36070675,-0.40239558,-0.4509991,-0.49933082,-0.5130375,-0.5368971,-0.58356225,-0.39691108,-0.1465022,-0.020913433,-0.057269733,0.6602944,1.2265072,0.99378467,1.3127041,1.5864369,1.7863269,1.9642571,2.0506387,2.286217,2.4475174,2.4530725,2.5487404,2.8001204,2.9844592,3.0367303,3.121751,3.1646419,3.1975772,3.220622,3.3410947,3.560039,3.584047,3.6580696,3.6474245,3.7680318,3.8735187,3.649256,3.799527,3.8904366,3.909104,3.8208594,3.830584,3.9783425,3.9746456,4.0986156,4.0808487,4.04638,4.047389,4.1159086,4.065143,4.0957747,4.086305,4.153021,4.1800556,4.169361,4.2304306,4.186488,4.1561575,4.1085615,4.2159805,4.276223,4.1775,4.1753807,4.1511893,4.1187496,3.999587,3.9786124,3.9739885,4.027275,4.045343,4.1440105,4.192297,4.2107544,4.1906834,4.2065663,4.205914,4.1387043,4.1730623,4.182154,4.2036276,4.2113266,4.2065897,4.2120857,4.1790814,4.205105,4.2519674,4.2836385,4.239867,4.332964,4.342209,4.2983637,4.109246,3.507626,2.7466416,2.1887345,2.1810272,2.4554148,2.616684,2.683329,2.6784735,2.702563,2.612622,2.4811506,2.3030891,2.2250404,2.3894916,2.4646347,2.528373,2.548244,2.876094,3.0331886,3.2663999,3.3895397,3.4334126,3.44583,3.4890323,3.4965608,3.5371633,3.556126,3.4771762,3.2023664,2.7658465,2.5509691,2.2824469,1.7694285,1.1678104,0.7406915,0.595356,0.44333628,0.2926599,0.20221283,0.11639783,0.13389947,0.3921879,0.43764335,0.667754,0.6100454,0.8865,0.8007074,0.82735693,0.85806215
+-1.0576918,-1.4891613,-1.7718213,-1.9799225,-2.1508672,-2.151361,-2.1822567,-2.0173926,-1.7884872,-2.0241861,-2.0071082,-1.9817119,-2.0809884,-2.215373,-2.1155672,-1.4709623,-1.4252427,-1.601485,-1.8015137,-1.9756657,-2.0341842,-2.1065533,-2.2370398,-2.2707348,-2.2972355,-2.1588566,-2.2130847,-2.251832,-2.1659713,-1.7678322,-1.1005639,-1.7195787,-1.8415551,-1.9074835,-1.9757959,-2.0989604,-2.0303624,-2.1116314,-2.2096355,-2.309599,-2.3631897,-2.3661323,-2.3941393,-2.346007,-2.4230025,-2.47362,-2.1687737,-1.6244107,-1.7958782,-2.0244079,-2.1707838,-2.246466,-2.302199,-2.3448603,-2.3705394,-2.3482976,-2.4052198,-2.4363322,-2.4604573,-2.5071044,-2.503072,-2.5549479,-2.6147256,-2.6478217,-2.6826973,-2.7282796,-2.7444031,-2.749765,-2.7462475,-2.8026588,-2.859808,-2.857184,-2.8777661,-2.860798,-2.8543122,-2.8657858,-2.8656864,-2.8531003,-2.8025842,-2.7496314,-2.7635732,-2.7991314,-2.796868,-2.779849,-2.7727735,-2.7708926,-2.7224898,-2.712273,-2.7115688,-2.7284312,-2.4544067,-1.6440611,-1.1637676,-1.7487319,-1.9789333,-2.0826473,-2.2351604,-2.3266606,-2.3946366,-2.4458833,-2.4839497,-2.5221512,-2.5348587,-2.537471,-2.5391188,-2.523065,-2.583684,-2.618913,-2.5656886,-2.0548174,-1.5895176,-1.5953484,-1.7966974,-1.9373503,-2.0007815,-1.9036899,-2.0063963,-2.101243,-2.2266154,-2.1721053,-2.245161,-2.263608,-2.053417,-1.7678999,-1.5400891,-1.4466598,-1.675128,-1.4530597,-1.6815655,-1.7904077,-1.8984699,-1.9914509,-2.0904098,-2.197474,-2.2325459,-2.2682624,-2.3216953,-2.287097,-2.315611,-2.219205,-2.2322066,-2.3018787,-2.2748716,-1.9328536,-1.8284149,-1.5604012,-1.9142389,-1.9526813,-1.8874879,-1.8110969,-1.9945123,-2.0905466,-2.135589,-2.2109702,-1.9742138,-1.6107583,-1.9313811,-2.1003828,-2.175634,-2.1990457,-2.287749,-2.3325346,-2.3585997,-2.4083676,-2.2277107,-2.0365784,-2.086046,-2.2279735,-2.2645047,-2.3174582,-2.3529415,-2.383421,-2.2811246,-1.952204,-1.6325768,-1.658365,-1.8361187,-1.966476,-2.0007374,-2.0136003,-2.0157447,-1.5984011,-1.5156454,-1.7584065,-1.8852041,-1.8639545,-1.9080219,-2.0135155,-2.0749388,-2.0194204,-2.0251968,-1.6702366,-1.7371905,-1.9473512,-2.029249,-2.0445936,-2.1255567,-2.192217,-2.2632074,-2.3208396,-2.3319187,-2.30512,-2.1705222,-2.2222128,-2.2869434,-2.332949,-2.3626177,-2.058713,-1.8378056,-2.0074346,-2.1119807,-2.157837,-2.2071776,-2.262273,-2.2686844,-2.2478874,-2.164503,-1.8110349,-1.2885842,-1.6288791,-1.8110776,-1.8361228,-1.8353169,-1.8110998,-1.8041319,-1.8134327,-1.82922,-1.8125728,-1.81255,-1.9080601,-1.9971521,-1.4057016,-1.1451288,-1.4780015,-1.3653251,-1.2320424,-1.4259303,-1.2355461,-0.87240946,-0.78023297,-1.2689373,-1.1205109,-0.63662755,0.38419485,0.9815868,1.1274427,1.2387832,1.3943232,1.2888998,1.0634921,0.94203323,1.1574188,1.0410832,0.6578286,-0.10776332,-0.6015881,-0.76563203,-0.8724425,-1.1465899,-1.4952146,-1.2455368,-0.8195803,0.2459173,0.6070305,0.4858998,0.30094928,-0.25548822,-0.7243682,-0.74515164,-0.11770947,0.44829965,0.461307,0.4619928,0.6547637,0.3715208,-0.0125592165,-0.13936879,-0.043030065,-0.24666284,-0.7848414,-0.88303626,0.37982303,0.33814743,-0.72729075,-1.3853178,-1.4714246,-1.3022504,-1.2299367,-1.3548472,-1.2684686,-1.2910383,-1.2324862,-0.9487761,-0.5368156,-0.3673785,-0.10256012,0.6419838,0.9526329,0.5216383,1.6393437,2.215571,2.4366024,2.4773107,2.4263158,2.2921722,2.1639152,1.9292953,1.7365477,1.2789379,0.7134291,0.29362482,-0.35523373,-0.89025056,-1.1764207,-1.2562418,-1.3944356,-1.5290128,-1.5434215,-1.2462409,-1.3338423,-1.4206367,-1.182375,-1.1391778,-1.3976872,-1.510057,-1.43998,-1.6644113,-1.7655807,-1.7676032,-1.6077721,-1.0899632,-0.96823,-1.1503022,-0.60619944,-1.0425661,-0.56440127,-0.25942022,-0.6196896,-1.3084767,-1.5645862,-1.2443109,-1.1342382,-1.3442332,-1.5453877,-1.6801221,-1.7330681,-1.7420694,-1.7923076,-1.8636208,-1.9508517,-1.9861839,-2.0423949,-2.1317992,-2.1625671,-2.1900284,-2.1983018,-2.060793,-1.891151,-2.06791,-1.8084959,-1.798951,-1.7764759,-1.8010283,-1.9348743,-1.8985183
+0.24685319,0.009041283,-0.33097124,-0.59167325,-0.80956775,-0.9012017,-1.0232306,-0.5928366,0.23781393,-0.13306619,-0.06291039,-0.04811274,-0.19383274,-0.4765602,-0.6094099,-0.17658466,0.12814598,-0.19514878,-0.49140435,-0.63515615,-0.7917836,-0.93497163,-1.0272712,-1.0639607,-1.1051526,-1.0919771,-1.1784487,-1.2698164,-1.2008035,-0.25202927,1.015461,0.91536856,0.49087077,-0.03876241,-0.3408845,-0.5516782,-0.6478107,-0.7110311,-0.72939235,-0.86686766,-0.93948495,-1.0278866,-1.1309187,-1.1803172,-1.249443,-1.3044751,-0.8528559,0.48512417,0.14071289,-0.2845647,-0.56782085,-0.7520406,-0.8848093,-0.98869807,-1.0593987,-1.118356,-1.1615902,-1.2562461,-1.3572972,-1.4366509,-1.5027474,-1.6039956,-1.6537808,-1.7021804,-1.7601199,-1.7998424,-1.8291235,-1.8741728,-1.8867737,-1.9079581,-1.949861,-1.9976747,-1.9811978,-2.0069041,-2.027154,-2.0425174,-2.0278661,-2.0366063,-2.075888,-2.1225348,-2.1599684,-2.185596,-2.1453047,-2.1633139,-2.1510155,-2.0575025,-1.3253949,-0.91021407,-1.1212108,-1.1763,-0.8931617,-0.25755492,-0.21875477,-0.48851445,-0.68108827,-0.8205156,-0.95668375,-1.0588816,-1.152957,-1.25245,-1.3172004,-1.3904715,-1.4845426,-1.5656259,-1.6345472,-1.7195258,-1.7345481,-1.7900732,-1.7270194,-1.4495559,-0.5436597,-0.048264693,-0.36850083,-0.5914983,-0.59799725,-0.40702534,-0.54078424,-0.668983,-0.79905164,-0.93799746,-0.94506365,-1.000117,-0.92557985,-0.85533166,-0.56685066,-0.037788745,0.5030842,0.37906152,0.43464562,0.557198,0.13320895,-0.074655116,0.050424036,-0.1895635,-0.43917167,-0.5885769,-0.73164487,-0.74280727,-0.38035065,-0.3953007,-0.42621896,-0.5950199,-0.7191983,-0.5853711,-0.5587206,-0.55046976,-0.72316706,-0.774582,-0.6864804,-0.68346107,-0.6785241,-0.40059376,-0.46819308,-0.5578471,-0.40764338,-0.5389426,-0.7476941,-0.9416199,-1.038434,-0.99889153,-0.31411305,-0.6114356,-0.80078495,-0.81181777,-0.6775771,-0.70672303,-0.75553715,-0.873649,-0.99087214,-1.110405,-1.2300427,-1.3275478,-1.4459867,-1.441355,-1.522613,-1.5414889,-1.5755343,-1.6459247,-1.6881086,-1.7157451,-1.7544049,-1.4098799,-0.8649808,-0.8498334,-0.9150839,-0.84695095,-0.8906003,-0.9848359,-1.0828292,-1.210045,-1.0439379,-0.21138005,-0.08568549,-0.259928,-0.52913654,-0.682122,-0.8035302,-0.88044065,-0.94438726,-0.993301,-1.0638009,-1.1074722,-1.1153878,-1.1696563,-1.2328205,-1.257355,-1.3023456,-1.2872416,-1.2395442,-1.3031398,-1.3551953,-1.3927678,-1.4549584,-1.4323057,-1.4605769,-1.4681807,-1.4854652,-0.24764262,0.6522949,0.07558602,-0.18105587,-0.28611138,-0.33021516,-0.35062337,-0.39208668,-0.43837267,-0.5050681,-0.53505033,-0.5731527,-0.61873317,-0.60548055,-0.50984174,-0.47816774,-0.57774997,0.3589513,0.8116788,0.42582965,0.35729674,0.40472177,0.41349027,0.255782,0.27129775,0.4734246,0.8271128,1.110078,1.2107043,1.2414798,1.3083187,1.4191628,1.3915725,1.3796929,1.4777943,1.4912277,1.4056406,1.276833,1.1533121,1.0206428,0.83389145,0.5697218,0.48228115,0.82784885,0.7882978,1.2109573,1.3908821,1.1520748,1.0911834,1.2141641,0.99171007,1.2135962,1.5385365,1.8398024,1.8620046,1.8647058,1.8859183,1.973347,2.056739,1.993798,2.0752554,2.1256602,2.053627,2.2989228,2.365661,2.394887,1.9009618,1.5110295,1.3181692,1.2357115,1.1751738,0.7544732,0.8077451,1.2188193,1.1053004,1.3126504,1.6055582,2.0482168,2.2657773,2.6072102,3.0479155,3.3165705,3.3396,3.411985,3.481115,3.4856043,3.5403614,3.574189,3.581685,3.5701203,3.5745459,3.5596576,3.4962492,3.4551692,3.311479,3.2425032,3.1910815,2.5986292,1.6854045,1.1161578,0.71547747,1.1228242,1.0123606,0.84136367,1.08184,1.1747919,1.0456339,0.8959444,0.90606105,0.70681703,0.3577757,0.22089379,0.28966448,0.53452593,0.7007855,0.6992161,0.7557999,0.595852,0.7171784,0.8582362,0.64587986,0.29676217,0.1537964,0.17320146,0.099195,-0.098630324,-0.22553499,-0.3018784,-0.3736416,-0.40802085,-0.44462055,-0.49127895,-0.53517115,-0.5977385,-0.66645014,-0.6989814,-0.75383735,-0.79561067,-0.8445766,-0.7673653,-0.6072672,-0.66465807,-0.6389706,-0.66805446,-0.6252274,-0.40087593,-0.5027078,-0.3672221
+0.520585,0.45658237,0.23525454,-0.09688985,-0.3886958,-0.6094816,-0.73532605,-0.7494378,-0.54025364,-0.5855409,-0.41790274,0.12579456,0.21015324,-0.12680015,-0.3551046,-0.49482596,-0.55794454,-0.71430176,-0.8184174,-0.8598219,-0.929772,-1.0041544,-1.0793631,-1.1416771,-1.1957035,-1.2554308,-1.2787949,-1.2952214,-1.3158447,-1.3316993,-1.3920977,-1.3762242,-1.4059536,-1.4270267,-1.4764339,-1.5014303,-1.5484316,-1.5522227,-1.5390062,-1.5473567,-1.5627927,-1.5932322,-1.6095126,-1.6633761,-1.6715856,-1.6885324,-1.7572677,-0.44739208,0.007121656,-0.23917164,-0.47246963,-0.65248275,-0.7950505,-0.91070837,-1.0125818,-1.0864569,-1.1551931,-1.2074695,-1.270133,-1.3328953,-1.4439187,-1.4168112,-1.4216316,-1.464952,-1.5231199,-1.5844693,-1.6144834,-1.6469238,-1.6752853,-1.7400239,-1.7961192,-1.717924,-1.7405457,-1.745081,-1.7579813,-1.7675688,-1.7717743,-1.7869825,-1.8185731,-1.8850482,-1.9380122,-2.009582,-1.9906368,-2.0544033,-2.0540662,-1.9736092,-1.8420494,-1.3431596,-1.108434,-1.1117303,-0.97604734,-0.41584778,0.16539337,-0.09420243,-0.31070247,-0.4327277,-0.58773315,-0.73191965,-0.628335,-0.52285963,-0.55205756,-0.717394,-0.86241114,-0.98060775,-1.0865963,-1.1783485,-1.2635899,-1.3613343,-1.2088144,-1.0182589,-0.81104827,-0.58546865,0.03756452,0.106784776,-0.13697203,-0.31965536,-0.3778069,-0.24191003,-0.36927658,0.23151223,0.5706296,0.25076658,0.09193368,0.27505767,0.27159965,0.20396943,0.42913425,0.32231906,0.22190748,0.22979112,0.58670783,0.96270496,0.7789099,0.5091566,0.225787,0.21936552,0.1553341,0.36018574,0.40892977,0.097891286,-0.07899542,-0.1624296,-0.015020985,0.089060694,0.042403776,-0.18072647,-0.32146198,-0.30064544,-0.2370141,-0.12990029,-0.13253342,-0.23334305,-0.17853974,-0.081428796,0.04682829,-0.11631501,-0.2601703,-0.4457656,-0.5805789,0.3920734,1.8175415,0.69600415,0.56669015,0.3499846,0.20377618,0.089869276,-0.008868482,-0.04281481,-0.13652311,-0.22325025,-0.28850293,-0.3705684,-0.48617455,-0.57805514,-0.6780895,-0.73133683,-0.7727661,-0.77271104,-0.7932624,-0.77527595,-0.76473594,-0.23488419,1.4962533,0.8726783,0.5879847,0.36232978,0.21007375,0.0930073,0.008403327,-0.06120665,-0.08632681,0.1265407,0.24925886,0.029014666,-0.088092566,-0.18806024,-0.27782473,-0.35838917,-0.43565416,-0.4999379,-0.5608271,-0.5993929,-0.6142337,-0.6290498,-0.67248297,-0.705228,-0.7391749,-0.77004766,-0.794991,-0.8066274,-0.82706904,-0.8523071,-0.89518905,-0.9095507,-0.92880434,-0.8772263,-0.72305053,0.32289216,0.7660835,0.41703635,0.25713888,0.16501455,0.11973329,0.119163975,0.1410274,0.12229261,0.08074503,0.043117944,0.008396003,-0.081307024,-0.19168797,-0.22337656,-0.11030088,-0.07223888,-0.017349105,0.35679284,0.2670323,0.29420325,0.32647443,0.40498075,0.42899996,0.71783876,0.8268856,0.9943644,1.2183261,1.4230454,1.6498146,1.7867467,1.9888802,2.1626875,2.3034368,2.4148335,2.5065067,2.5478263,2.576622,2.5261052,2.4177523,2.1688423,1.767782,1.4919864,1.9874599,1.8426027,2.1267757,2.3205109,2.3353074,2.3822875,2.0909367,1.9268432,2.196373,2.5173554,2.8605094,2.9655726,3.0127938,2.991551,2.8753521,2.9009104,2.9204595,3.1040468,3.3038855,3.378679,3.4544032,3.4264078,3.4563973,3.3180642,2.8829832,2.4090157,2.1406398,1.9586884,1.6147892,2.117202,1.9983046,2.2523546,2.6114907,2.9404855,3.1728888,3.6090848,3.672228,3.8895404,3.9048905,4.0791383,4.143242,4.189205,4.1899548,4.132265,4.102292,4.082657,4.068433,3.979136,3.9563992,3.9183996,3.8771195,3.82907,3.8504677,3.9031863,3.7747889,3.366139,2.4789474,1.7278802,2.0759454,1.8470685,1.8361211,2.2241812,2.4492779,2.4316418,2.432126,2.6053333,2.5246038,1.8300867,1.1698928,1.0060639,1.2137713,1.421421,1.454999,1.4009006,1.2896132,1.2872353,1.3674107,1.2232265,0.7974501,0.5461171,0.33670336,0.3620846,0.31976664,0.23042677,0.16160981,0.083176464,0.042563025,0.013883252,-0.032050963,-0.085703686,-0.13209026,-0.1661011,-0.21970645,-0.25945687,-0.2922047,-0.35666254,-0.42331806,-0.35292152,-0.28536537,-0.35584137,-0.39595893,-0.3698319,-0.16607222,-0.23415475,-0.25845236
+-1.9382013,-1.5060064,-1.4590354,-1.5801171,-1.6409272,-1.7508757,-2.0609102,-1.9503484,-1.9114093,-1.9672846,-1.7465332,-1.4726295,-1.2848883,-1.3437767,-1.4105413,-1.4413189,-1.5447658,-1.5808705,-1.6022127,-1.6612588,-1.7506016,-1.8482445,-1.8155049,-1.7810726,-1.8480926,-1.8681784,-1.8843874,-1.9969945,-1.9515915,-2.0193772,-2.0672278,-2.077548,-2.1130328,-2.164882,-2.2537048,-2.2711368,-2.2685077,-2.28768,-2.2503047,-2.2449827,-2.2301354,-2.296761,-2.3022418,-2.3288813,-2.2914035,-2.3398252,-2.3998747,-2.3558893,-2.221034,-2.2301931,-2.2976627,-2.2976027,-2.3208683,-2.3525555,-2.3582358,-2.3412461,-2.3536575,-2.3844485,-2.4336786,-2.4045365,-2.4011807,-2.5142298,-2.4398055,-2.5056968,-2.530911,-2.4445186,-2.464532,-2.5409126,-2.4808247,-2.4852219,-1.9199396,-1.3773539,-1.2252901,-1.3211439,-1.4055738,-1.5556874,-1.6123369,-1.6821212,-1.7884178,-1.9040515,-1.8910394,-1.8588293,-1.909827,-1.9964457,-1.9604961,-2.0142627,-2.0748916,-2.0688386,-2.0958066,-1.8568017,-1.5355895,-1.0077751,-0.540652,-0.6460497,-0.8139348,-0.95191145,-1.0240452,-1.0455579,-0.9262072,-0.8135397,-0.9233769,-1.0366192,-1.1218679,-1.2131969,-1.2721641,-1.368496,-1.4022667,-1.4751308,-0.9115486,-0.57962644,-0.6692867,-0.7560331,-0.8293847,-0.9144615,-1.0229682,-0.6019507,-0.38624197,-0.33815455,-0.14006257,-0.32432696,-0.5173724,-0.6399616,-0.6912744,-0.4513346,-0.22609903,-0.21868174,-0.26735556,-0.30909067,-0.20873679,-0.15305941,-0.25118583,-0.2688392,0.13818888,0.24330561,0.11525777,0.79996526,0.5484772,0.27025062,0.03871416,-0.15094247,-0.28892782,-0.4148199,0.09336227,0.51686853,0.26147202,0.030856673,-0.14478497,-0.225997,-0.14485101,-0.090265736,-0.19241717,-0.26103574,-0.35421628,-0.3339786,0.45575815,0.6653247,0.3408059,0.036898006,-0.08060013,0.38376796,0.76451516,0.45450574,0.26092225,0.16182445,0.011083785,-0.08974446,-0.18792348,-0.2567457,-0.3805094,-0.51725215,-0.6861353,-0.8161932,-0.895013,-0.8815006,-0.9795254,-1.014271,-1.0710001,-1.2149577,-0.9701498,-0.5631633,-0.6433883,-0.63892865,-0.3035856,-0.17112698,-0.34428397,-0.3681875,-0.51269126,-0.62286925,-0.7008388,-0.82208943,-0.8222492,-0.5829073,-0.04537561,-0.004554298,-0.20636047,-0.4118797,-0.5768767,-0.6294912,-0.66935813,-0.7138689,-0.7590647,-0.8012179,-0.9260695,-0.897749,-0.93583506,-0.9607242,-0.996694,-0.9882864,-1.0430529,-1.0945396,-1.1161377,-1.1202278,-1.1760345,-1.1809046,-1.2028348,-1.2803025,-1.2239299,-1.2423077,-1.2628651,-1.2597029,-1.3001672,-1.3465148,-1.307047,-1.3095231,-1.3210734,-1.3175192,-1.3169242,-1.3091274,-1.3222363,-1.3234369,-1.2562518,-1.3092777,-1.295821,-1.2971721,-1.3329074,-1.2685262,-1.2934339,-1.308859,-1.3029381,-1.2957509,-1.2332616,-1.2320967,-1.3029828,-1.2699294,-1.2140548,-1.2999625,-0.045282263,0.4905805,0.2150272,0.18877764,0.14517382,0.09974529,0.0031984784,-0.0047256313,-0.013219025,-0.06779462,-0.11959642,-0.16127409,-0.20898871,-0.30881888,-0.14534517,-0.19075824,-0.24047214,-0.24679713,-0.34333315,0.44671085,0.88374925,0.4993186,0.4898436,0.3420785,0.26966733,0.21069501,0.1032418,0.42917192,0.58379143,0.8894874,0.65563387,0.410658,0.3134433,0.20266964,0.17220981,0.10248877,0.093509674,0.046362508,-0.021852706,-0.085756466,-0.1553053,-0.31731394,-0.20416276,0.86237276,0.843506,0.49828613,0.5713069,0.4020253,0.31294936,1.0117645,0.7945452,0.56040156,0.38786638,0.349724,0.27956852,0.30679667,0.32278565,0.34789377,0.31633353,0.23124762,0.15632439,0.09947796,0.04344522,-0.031790894,-0.11527485,-0.16596572,-0.20828013,-0.23610182,-0.25897375,-0.29427636,-0.32745564,-0.26273674,0.69549596,0.68058014,0.44579065,0.31713012,0.23464482,0.10112281,0.041241262,0.25108165,0.10842779,0.047689933,-0.0053101443,-0.11423126,-0.18034737,-0.40224677,-0.2922547,-0.38800693,-0.3656199,-0.41373643,-0.4936775,-0.5139378,-0.56109655,-0.5630214,-0.62380785,-0.7240207,-0.79228187,-0.84923565,-0.91067827,-0.919175,-0.9858122,-1.0403247,-1.0823013,-1.1102836,-1.1367162,-1.2128847,-1.2449639,-1.2961385,-1.2701386,-1.3442924,-1.3148968,-1.1388845,-1.1822696,-1.2050129,-1.2388501,-1.288745,-1.0080984,-1.0272032,-1.1888483
+-1.6387436,-1.7384584,-1.7652268,-1.884347,-1.9531268,-2.0410562,-2.1874332,-2.1603096,-2.189712,-2.2536476,-2.2817078,-2.3079703,-2.2963514,-2.3182042,-2.3500402,-2.3690233,-2.3983347,-2.3931363,-2.3844523,-2.401114,-2.4240494,-2.482503,-2.482327,-2.4987826,-2.531505,-2.5451121,-2.5451453,-2.5527346,-2.5398917,-2.5546088,-2.5679607,-2.5781937,-2.5686922,-2.6009238,-2.6187453,-2.6627836,-2.6222324,-2.6334805,-2.6256738,-2.6484509,-2.6674042,-2.689063,-2.7254577,-2.7358985,-2.7521424,-2.7383642,-2.7222867,-2.6297636,-2.610251,-2.553865,-2.5847583,-2.6019855,-2.6240947,-2.6516428,-2.6556752,-2.6617656,-2.6522274,-2.6583729,-2.7072482,-2.7218742,-2.740575,-2.7546406,-2.7247238,-2.7461972,-2.799437,-2.809688,-2.8420272,-2.857655,-2.137858,-1.412915,-0.7696395,-0.6051662,-0.5946926,-0.9429693,-1.1976353,-1.3739729,-1.5030761,-1.6356833,-1.7860293,-1.9348984,-2.0243523,-2.1255856,-2.1801276,-2.2606773,-2.2582035,-1.9743345,-1.6561565,-1.4895328,-1.44359,-1.453981,-0.9963492,-0.012597691,0.17283727,-0.17327358,-0.5005911,-0.7280208,-0.7831621,-0.8309611,-0.46145934,-0.39217365,-0.5507707,-0.8353443,-1.0639527,-1.2167735,-1.3288156,-1.3273258,-1.3745664,-0.6366519,0.28599715,0.35059434,-0.13471454,-0.44730324,-0.49947298,-0.36540985,-0.6413108,-0.747151,-0.04358977,0.50966334,0.180237,-0.19612026,-0.42073894,0.26694036,0.4148575,0.5470996,0.63113666,0.23513533,-0.031776763,-0.1869752,-0.23279493,0.34002486,1.0065029,0.64373875,0.7281877,0.36137575,0.7607515,0.82379127,0.39023528,0.05229943,-0.1686254,-0.3434946,-0.18483113,0.1993598,0.0639364,-0.20224793,0.16389574,0.64331454,0.26896092,-0.03915104,-0.24573436,-0.41491857,-0.55957955,-0.66077685,-0.62047565,-0.30875096,-0.43735594,-0.3500902,-0.47860605,-0.6887239,-0.54269886,0.84396553,0.337488,0.034024272,-0.16716757,-0.2426761,-0.061857313,-0.08368811,-0.25170898,-0.43623924,-0.6067426,-0.77502465,-0.9183141,-1.0185403,-1.1082144,-1.1776571,-1.1834675,-1.2506642,-1.3733234,-1.3312664,-0.22446582,0.30078512,-0.15416117,-0.30621588,-0.18463457,-0.035095025,-0.3561291,-0.50795126,-0.7030799,-0.87007177,-0.9882801,-1.0847366,-1.0973374,-1.0346226,-1.0896531,-1.1631258,-1.2350695,-1.3245637,-1.3891119,-1.4460511,-1.5020299,-1.540761,-1.5822525,-1.627763,-1.6225151,-1.6134342,-1.683142,-1.695354,-1.726352,-1.7540638,-1.7577091,-1.7338476,-1.7712958,-1.7954681,-1.8291614,-1.8329024,-1.8734188,-1.8634192,-1.834217,-1.8088827,-1.835547,-1.8276582,-1.8292115,-1.7784187,-1.7611496,-1.7567043,-1.7790334,-1.7712497,-1.7660642,-1.7618268,-1.7225494,-1.7414201,-1.7930087,-1.8118938,-1.7469045,-1.7509427,-1.8076789,-1.7624911,-1.7146255,-1.6973902,-1.6529773,-1.6777773,-1.7524211,-1.7155071,-1.7134203,-1.6425612,-1.6364658,-1.6434137,-0.42423043,0.04273886,-0.24487484,-0.32485253,-0.42205516,-0.5238601,-0.6046542,-0.6248453,-0.64572245,-0.7441075,-0.82038534,-0.8738531,-0.8820963,-0.9501995,-1.106065,-1.112192,-1.14363,-1.133901,-1.1819669,0.16731578,0.35151473,0.057354633,0.11999108,0.11362912,0.015984531,-0.1443051,-0.20947887,-0.074939966,-0.30928385,-0.07574883,0.05496243,-0.059568156,-0.20678101,-0.35254258,-0.43016136,-0.4560088,-0.46127284,-0.5487246,-0.6554651,-0.7551098,-0.8272597,-0.89055055,-0.79456955,-0.36075947,-0.3566187,-0.44081548,-0.41232425,-0.51749104,-0.56356215,0.37540123,0.24499421,-0.0051714964,-0.2007018,-0.23011568,-0.28238913,-0.2144887,-0.2098368,-0.15401207,-0.11398026,-0.17432861,-0.30928326,-0.38239944,-0.43007958,-0.5263878,-0.62235606,-0.70641327,-0.7902396,-0.8460611,-0.8618501,-0.9218018,-1.0018903,-1.0815812,-0.9691784,-0.77542895,-0.8524461,-0.8949785,-0.9698644,-1.0599477,-0.54755545,-0.0952238,-0.33296108,-0.47886804,-0.6302092,-0.8107953,-0.9008359,-0.9544807,-1.0308403,-1.1887407,-1.2255206,-1.2828515,-1.3040524,-1.3904209,-1.4659373,-1.497288,-1.5225438,-1.5570195,-1.6009194,-1.6411219,-1.6837654,-1.743552,-1.7649575,-1.8030682,-1.8404403,-1.8890857,-1.9232483,-1.962002,-2.0068989,-2.0569239,-2.0798202,-2.1034021,-2.1335375,-2.136715,-2.141625,-2.1625128,-2.1944308,-2.2123437,-2.2077858,-2.238378,-2.3109217
+-0.9589118,-0.9908314,-1.0637368,-1.2749021,-1.4394727,-1.586235,-1.7038727,-1.6795688,-1.7623916,-1.8170233,-1.8674717,-1.8864725,-1.895,-1.9369987,-1.9984568,-2.0555396,-2.0710154,-2.0732477,-2.0908523,-2.1197734,-2.1564999,-2.1918955,-2.2203765,-2.2381225,-2.259405,-2.2828517,-2.2903209,-2.2901723,-2.2904472,-2.2989397,-2.3029852,-2.3002503,-2.30954,-2.3258586,-2.3552594,-2.3708293,-2.3884807,-2.3947673,-2.38922,-2.4032946,-2.4081845,-2.4261506,-2.4804518,-2.4748533,-2.4797344,-2.4892087,-2.4921165,-2.4781694,-2.4748368,-2.4749007,-2.4788504,-2.4983363,-2.5054219,-2.519632,-2.5280232,-2.5442288,-2.5169244,-2.5425758,-2.5717325,-2.580915,-2.553346,-2.417853,-2.266098,-2.3483782,-2.4143353,-2.5026927,-2.5027227,-2.4713352,-2.5003703,-1.4815582,-0.81500185,-0.79498017,-0.89679235,-1.0658545,-1.2242994,-1.355875,-1.467047,-1.5704851,-1.6609803,-1.7596118,-1.924603,-2.0327005,-1.991198,-1.8375981,-1.5604522,-1.3002322,-0.7144484,-0.09761326,-0.03941318,0.17351851,0.18745212,-0.050795417,0.116929665,0.08058493,-0.04457465,0.5855949,0.28388137,0.06997916,0.23314069,0.34986278,0.49557066,0.15716411,0.12207125,0.59409857,0.85880065,0.4478623,0.32407454,0.76187587,0.6598407,0.5775293,0.42078316,0.3650926,0.22783731,0.49992168,0.5730793,0.6085712,1.0888206,1.1026464,0.84603393,0.84111726,0.8731134,0.7666409,1.0095242,0.8781767,0.8201823,0.54385316,0.3334818,0.18106407,0.06790498,0.6011907,1.2535267,0.75637895,0.8836452,1.1087055,0.9857259,1.2412674,0.71451735,0.40953836,0.2172483,0.6125015,0.77806294,0.85888696,0.73156583,0.7059896,0.8336221,0.57767737,0.80773115,0.59565794,0.4149949,0.2878503,0.1800894,0.44747394,0.5378906,0.2854006,0.16703315,0.0714498,-0.032949436,-0.024976049,1.0006762,1.2543596,0.69171536,0.45023504,0.29968607,0.5812745,1.1114331,0.64260495,0.42841992,0.23186533,0.1059681,-0.003629256,-0.069940105,0.068641484,0.18301396,0.109228924,0.042223293,0.016139518,-0.081152454,-0.08504833,0.6536647,0.7598461,0.4783709,0.31614476,0.47604585,0.37721705,0.16193952,0.050378125,0.010556426,-0.032116026,-0.1409618,-0.15301871,-0.07928459,-0.18598075,-0.26893085,-0.34246182,-0.39866352,-0.47091687,-0.53860784,-0.60597724,-0.65246,-0.6932837,-0.725134,-0.7527951,-0.78333384,-0.80893433,-0.866104,-0.832944,-0.70595723,-0.76850677,-0.8128885,-0.8440162,-0.88424814,-0.91201437,-0.9439098,-0.96796507,-0.97963023,-0.9898303,-1.0027807,-1.0232017,-1.0371886,-1.0691327,-1.0795993,-1.0597754,-1.0545108,-1.0669911,-1.091481,-1.0792911,-1.085202,-1.081258,-1.0670195,-1.079621,-1.1213477,-1.1427689,-1.1045607,-1.1271737,-1.1189666,-1.0764098,-1.0847178,-1.0711466,-1.0793738,-1.0977991,-1.1174089,-1.1080838,-1.072806,-1.0397955,-1.0179719,-0.9328724,-0.3840326,-0.09893116,-0.2723722,-0.31851515,-0.3525161,-0.4116002,-0.41334766,-0.4351563,-0.4818397,-0.5308537,-0.5870859,-0.60810727,-0.63312805,-0.6974702,-0.7483963,-0.7840871,-0.77551126,-0.80813396,-0.86778426,-0.70884174,-0.023243338,-0.11489642,-0.20285384,-0.24634032,-0.26604384,-0.35990074,-0.42519623,-0.3552239,-0.4232583,-0.35099754,-0.30776125,-0.33916956,-0.3690325,-0.46353632,-0.5258486,-0.52615535,-0.542984,-0.62162256,-0.70556223,-0.758878,-0.7716902,-0.80130553,-0.8289853,-0.10312013,0.041920025,-0.07091537,-0.14776228,-0.2411614,-0.2508412,0.6496348,0.47605115,0.2144458,0.0697602,0.028234001,0.07475141,0.08556865,0.13848189,0.23369198,0.21567194,0.04473046,-0.10627173,-0.1291489,-0.15769129,-0.23433958,-0.3223963,-0.3927065,-0.4599648,-0.5051685,-0.5331232,-0.6129876,-0.6970013,-0.7588639,-0.828456,-0.83077157,-0.82767713,-0.8655602,-0.94268847,-0.9605886,-0.23640059,0.17195071,-0.04822388,-0.14863099,-0.29734337,-0.44805115,-0.5135681,-0.5850646,-0.69035727,-0.8194709,-0.8847047,-0.8919821,-0.9319879,-1.030779,-1.0983131,-1.1703217,-1.1951195,-1.2066811,-1.2700545,-1.3356919,-1.3912246,-1.4520283,-1.4946822,-1.548461,-1.6056287,-1.6579604,-1.7088931,-1.7593915,-1.8396343,-1.8759958,-1.9278147,-1.9607822,-2.0203803,-2.0257123,-2.0425298,-2.0786588,-2.1101015,-2.140992,-2.147376,-2.1693175,-2.1942832
+-0.5019861,-1.0619621,-1.1414075,-1.2708637,-1.3921795,-1.6606389,-1.7571949,-1.6023543,-1.7134826,-1.7956736,-1.8720937,-1.9124005,-1.9048836,-1.9274797,-1.9915526,-2.0676107,-2.1042247,-2.1284356,-2.1344686,-2.1552477,-2.1921337,-2.235205,-2.2807374,-2.300008,-2.3281364,-2.347465,-2.3441408,-2.3556395,-2.3708675,-2.3808227,-2.4042122,-2.4031334,-2.3871784,-2.4097838,-2.441702,-2.4779174,-2.49236,-2.5420787,-2.5651126,-2.58491,-2.578827,-2.561274,-2.5728536,-2.572763,-2.599539,-2.6155605,-2.6106577,-2.6057086,-2.596945,-2.59023,-2.5995228,-2.6250825,-2.625761,-2.6437879,-2.6428723,-2.6617615,-2.6472287,-2.6645136,-2.67938,-2.6792855,-2.6935754,-2.6976867,-2.668218,-2.6638741,-2.6714954,-2.675139,-2.7219481,-2.782497,-2.6779761,-2.3472524,-1.8014234,-0.9875389,-0.78454185,-1.0171819,-1.2004071,-1.3270952,-1.445339,-1.553735,-1.6070855,-1.6533453,-1.7910522,-1.8305173,-1.4004343,-0.7659361,-0.12939851,0.42723927,0.12974127,0.49498212,0.66167426,0.4956208,0.66390115,0.54219604,0.87771404,0.76187384,0.56746614,0.7833467,0.6803104,0.6234489,0.4386202,0.4227342,0.7769219,0.9569658,1.0337303,0.9648405,0.9544183,1.0423044,0.8274052,0.89188385,0.84140426,0.8895693,0.83246166,0.74066246,0.69812286,0.60966647,1.0513268,1.1226254,1.0916147,1.0964842,1.2213775,1.057532,1.1887624,1.2274058,1.06357,0.8857385,0.64585805,0.6869136,0.5987439,0.65548503,0.5591099,0.5384723,1.1245854,0.78285486,1.0394307,1.1246486,1.1708344,1.0478382,0.74695086,0.4868939,0.57258564,0.80717444,1.2075944,1.1196073,0.8942661,1.1103408,1.2530245,0.91432846,1.0252242,0.79001164,0.95808727,1.1758524,0.8573414,0.7512895,0.6828822,0.5286006,0.5260854,0.7035892,0.7079286,0.74819195,1.4539819,1.131201,0.78772557,0.5854999,0.50706553,1.1622405,0.87443316,0.63046813,0.52097994,0.40910012,0.29867905,0.21210624,0.46304804,0.8844271,1.23601,0.96628034,0.9415991,1.078588,0.74018365,0.56777346,0.5837435,0.46385288,0.32762504,0.39636195,0.410398,0.34453017,0.22782905,0.09562302,0.021238081,-0.0051211827,-0.055493254,-0.09364131,-0.122134686,-0.08218063,-0.12237236,-0.200499,-0.25392205,-0.31161472,-0.36330014,-0.4139402,-0.4325505,-0.45021936,-0.4636997,-0.48282444,-0.51808465,-0.5672875,-0.6272591,-0.56947124,-0.5346096,-0.5650437,-0.59706664,-0.6480254,-0.68071306,-0.7024952,-0.7129665,-0.7216882,-0.71691275,-0.7171854,-0.7423957,-0.7784217,-0.8482793,-0.89731,-0.9150238,-0.9033127,-0.9162792,-0.916185,-0.67324305,-0.58240104,-0.65605056,-0.70738226,-0.73106194,-0.75713176,-0.8110471,-0.8465595,-0.8367262,-0.86303926,-0.91058624,-0.94804084,-0.95336115,-0.9531251,-0.9493608,-0.9829183,-0.9863594,-0.99854445,-1.0014031,-0.9643215,-0.93548167,-0.605774,0.22959365,0.22166444,-0.012192538,-0.12176329,-0.21692951,-0.28272215,-0.33139935,-0.38946772,-0.43547666,-0.5003994,-0.5504862,-0.5777621,-0.6269711,-0.68713427,-0.7598487,-0.77803034,-0.8120054,-0.8723935,-0.94199586,-0.86621976,-0.5300216,-0.31665248,-0.40110594,-0.4574839,-0.53936625,-0.64504087,-0.6755771,-0.4941308,-0.25950137,-0.28696948,-0.36173058,-0.46639538,-0.5507436,-0.63289,-0.7045828,-0.7235946,-0.77634364,-0.8310125,-0.90813756,-0.967133,-0.991945,-1.0179825,-0.8399122,0.7424506,0.41519332,0.20657676,0.070506856,-0.029034209,-0.10487361,0.9346167,0.60316074,0.36601073,0.2113802,0.08320482,0.03668515,-0.011927573,-0.015015252,0.049035985,0.044342864,-0.06865126,-0.12566708,-0.16117269,-0.20671047,-0.27165192,-0.35524574,-0.4354434,-0.5022129,-0.5434309,-0.5883374,-0.6680895,-0.7484416,-0.8198336,-0.8919487,-0.8971213,-0.8963666,-0.91272265,-0.90088886,-0.7527843,0.4686358,0.5030211,0.19454984,0.023999896,-0.119525686,-0.2829858,-0.40238655,-0.5513824,-0.7076053,-0.86576426,-0.95547014,-0.9897953,-1.0402462,-0.8736614,-0.65573555,-0.79830253,-0.89360094,-0.9569353,-1.0544403,-1.095008,-0.95574784,-0.9379492,-1.0477697,-1.1329525,-1.2223487,-1.315511,-1.4000041,-1.4783072,-1.5461398,-1.6032845,-1.6533347,-1.6825075,-1.771657,-1.813734,-1.8440512,-1.8976059,-1.958687,-2.0146265,-2.0368657,-2.0606709,-2.105707
+-0.9914967,-1.9423432,-2.2475297,-2.3978848,-2.5435882,-2.7998643,-2.8044572,-2.6740363,-2.7255945,-2.7461815,-2.7292826,-2.7414036,-2.7405987,-2.748736,-2.7721698,-2.7901196,-2.8069832,-2.829114,-2.8476539,-2.8632827,-2.892368,-2.9348454,-2.9374268,-2.892074,-2.9017684,-2.9085717,-2.9048867,-2.8917158,-2.883741,-2.893651,-2.8858447,-2.8874326,-2.894504,-2.8997717,-2.9214063,-2.935494,-2.9463727,-2.979314,-2.9698598,-2.9694123,-2.9456022,-2.9416409,-2.9653606,-2.931188,-2.9560995,-2.9600558,-2.9858162,-2.9832058,-2.9796178,-2.9909363,-2.9903533,-2.9976187,-3.0161288,-3.0130072,-3.0035412,-2.9760444,-3.0068433,-3.0161157,-3.0457191,-3.031755,-3.0123343,-3.0086577,-3.023901,-3.06039,-3.076858,-3.078682,-3.03278,-3.001656,-3.0028157,-2.8618865,-2.4348698,-1.8765026,-1.8402016,-1.9860561,-2.1152864,-2.222789,-2.2719364,-2.3280542,-2.373353,-2.429909,-2.457567,-2.4768524,-2.424876,-2.2438586,-0.7855636,-0.19131976,-0.54965484,-0.37725317,-0.02301694,-0.096101746,-0.1475448,-0.40329412,-0.36026263,-0.38147163,-0.22256456,0.26858312,0.047659133,-0.22435449,-0.45241183,-0.6218837,-0.7405987,-0.79128075,-0.82914037,-0.66625774,-0.68292737,-0.72124213,-0.01209503,-0.07745725,0.23675339,0.10678734,-0.2966784,0.15615152,0.47829014,0.78851074,0.5992454,0.5954146,0.7109299,0.4162233,1.0638559,1.341435,1.0226908,0.8530398,0.46417516,0.43279514,0.22950439,0.07403101,-0.10134958,0.055715386,-0.062963754,-0.15428323,0.10826422,0.50425994,0.5315058,0.34128803,1.3676109,0.66674984,0.38032413,0.26047027,0.9590356,0.6379787,1.4636722,0.9808941,0.7167821,0.6024133,1.2709529,0.76832736,0.96711946,0.8573371,0.7704108,0.66166407,0.38880286,0.2818174,0.24036132,0.14026769,-0.00043771788,-0.08492382,-0.13382551,0.0479447,0.7494769,1.2614224,0.5752902,0.33718908,0.24562113,0.89073366,0.63900244,0.37820986,0.19904791,0.07672988,-0.022503424,-0.1137058,0.04625616,0.21704434,0.44245988,0.1913958,0.6358485,0.7533562,0.73849225,0.7734238,0.446998,0.20885356,0.0911939,0.04890697,0.83901155,0.45669693,0.23594598,0.099560305,-0.028145988,-0.1598314,-0.23827668,-0.29953295,-0.38472286,-0.49123394,-0.58646613,-0.68888533,-0.7747649,-0.86913705,-0.95856583,-1.0329511,-1.0871481,-1.1381983,-1.1571896,-1.1695153,-1.1833894,-1.2353684,-1.3190112,-0.21950924,0.08630325,-0.25537664,-0.42576373,-0.53324336,-0.6203556,-0.7150098,-0.81128013,-0.8968186,-0.95910573,-0.98109335,-1.0114645,-1.0969164,-1.226254,-1.2585123,-1.2902882,-1.3494393,-1.4087403,-1.4537392,-1.3723094,-1.3801982,-1.4519944,-1.5093901,-1.5488021,-1.589458,-1.5493771,-1.4432125,-1.5082123,-1.5687544,-1.648162,-1.6809108,-1.7019236,-1.7294886,-1.7536204,-1.7981672,-1.8170342,-1.794102,-1.7719166,-1.7567497,-1.7337258,-1.6386919,-1.2595928,-1.0371258,-1.0252566,-1.0812414,-1.1153848,-1.1716952,-1.2469709,-1.3074317,-1.3570147,-1.413307,-1.4678035,-1.518544,-1.5503128,-1.5802187,-1.600906,-1.6394429,-1.6802329,-1.7382647,-1.7854377,-1.8029273,-1.7479857,-1.6728363,-1.653548,-1.6757658,-1.7528133,-1.8153236,-1.8886242,-1.8041793,-1.5886974,-1.5471416,-1.5418856,-1.5869558,-1.6384809,-1.6700084,-1.7089534,-1.7404329,-1.7985733,-1.8064406,-1.8472645,-1.8840477,-1.9176054,-1.9528637,-1.9441893,-1.3226738,-0.8029309,-0.9985301,-1.137304,-1.2405546,-1.2957438,-1.3505366,-1.271461,-1.3679619,-1.434654,-1.5112584,-1.564541,-1.585612,-1.6192485,-1.6484703,-1.6775198,-1.7362447,-1.7732785,-1.7860816,-1.801902,-1.8222523,-1.8461481,-1.8821309,-1.9316256,-1.9721545,-1.9924924,-2.0164557,-2.0513706,-2.0739627,-2.0796347,-2.1199236,-2.1848178,-2.0783627,-2.0288515,-1.6181961,0.14619412,0.1411247,-0.33786377,-0.565302,-0.6299981,-0.7877119,-1.0001715,-1.1763101,-1.2759082,-1.3953327,-1.5042988,-1.6101501,-1.6784333,-1.2252918,-0.9506395,-1.1293569,-1.2760051,-1.4079816,-1.5527536,-1.6631458,-1.7456464,-1.8284391,-1.9026504,-1.9806038,-2.0553544,-2.137287,-2.2135386,-2.248752,-2.300499,-2.3255532,-2.3653896,-2.4115634,-2.417717,-2.4254575,-2.4720676,-2.483303,-2.5154696,-2.5266838,-2.5406246,-2.5660362,-2.5645056
+-1.3815403,-2.0378191,-2.4074354,-2.7003226,-2.8299484,-2.996464,-2.909605,-2.8467903,-2.8873677,-2.8296795,-2.8639445,-2.866313,-2.8645535,-2.8857186,-2.9471178,-2.94663,-2.9324014,-2.9519215,-2.9724674,-2.9744847,-2.9954896,-2.989798,-3.001978,-2.9883928,-2.972691,-2.9612179,-2.9372134,-2.9430413,-2.9430835,-2.92938,-2.9432855,-2.921085,-2.9236555,-2.958386,-2.9702473,-2.9308925,-2.9568706,-2.9814568,-2.9593349,-2.9691615,-2.9649248,-2.9743,-2.9817,-2.983356,-2.99959,-3.0125911,-3.005566,-2.9971604,-2.9845834,-2.9912214,-3.0044613,-2.99861,-3.0068939,-3.0062225,-3.0172882,-3.0080996,-3.0088084,-3.0151482,-2.998153,-3.0083168,-3.0135224,-3.0189226,-3.0136387,-3.0234423,-3.0182207,-3.0421073,-3.0645342,-3.0569687,-3.0534966,-3.054967,-3.031826,-3.0172849,-3.024372,-3.0172682,-3.0144439,-3.0379794,-3.053609,-3.0498762,-3.0193644,-3.0205858,-3.0525503,-3.0079474,-2.956616,-2.948333,-2.9906392,-3.0066872,-3.0202622,-2.8902693,-2.824211,-2.689806,-2.6413236,-2.715432,-2.760376,-2.5973122,-2.4064744,-2.494574,-2.5082874,-2.520465,-2.6111813,-2.6355476,-2.6731024,-2.730898,-2.7386332,-2.0469203,-1.5444269,-1.6778848,-1.5371289,-1.4392612,-1.6040387,-1.7586601,-1.8913896,-1.9235526,-1.7719846,-1.0076963,-0.5084806,0.29859692,0.16415857,-0.17421922,0.39808297,0.6901177,0.86695755,0.5879744,0.116041854,-0.07217898,-0.2926128,-0.44093227,-0.6125635,-0.61753976,-0.71638536,-0.143705,0.41511706,0.14839014,-0.09335189,-0.27064076,-0.30399972,-0.45788494,-0.0612411,0.5622705,0.55833125,0.74067986,1.1368936,0.8917473,0.77602917,1.2392386,1.1238878,0.57226264,0.22997157,0.05071834,-0.14201523,-0.33293855,-0.4250129,-0.116509095,0.03914893,-0.16072242,-0.38706142,-0.50873345,-0.60970783,-0.79208,0.65322167,1.1399022,0.5063228,0.1817143,0.02669203,-0.045260515,-0.24068098,-0.40924188,-0.57988465,-0.72295,-0.8295462,-0.94871736,-0.7012098,-0.5473931,-0.7686581,-0.91861784,-0.03668541,0.51239794,0.274928,0.3145119,-0.015807707,-0.26725662,-0.48499215,-0.5411428,0.79224575,0.54418933,0.2888177,0.0028856285,-0.18822524,-0.3297267,-0.45640934,-0.5607747,-0.6567776,-0.76079965,-0.8959644,-1.0272378,-1.1513392,-1.2694895,-1.3844868,-1.4639723,-1.51266,-1.5753149,-1.6347712,-1.6323445,-1.6381234,-1.7019305,-1.733726,-1.7019888,-1.6759946,-1.7484388,-1.7904072,-1.8460877,-1.9025596,-1.9212241,-1.939159,-1.9687538,-1.957161,-1.961438,-1.9885875,-2.0012007,-2.0107894,-2.0480208,-2.0337462,-2.0254426,-2.0506716,-2.0573742,-2.0598009,-2.0537143,-2.0880582,-2.1221592,-2.1377215,-2.1480718,-2.1369324,-2.126827,-2.147298,-2.1821375,-2.1727598,-2.1647549,-2.1830401,-2.2039328,-2.2134326,-2.2061534,-2.2058945,-2.2143006,-2.2305167,-2.2433152,-2.2548118,-2.216826,-2.170518,-2.140267,-2.199008,-2.2390585,-2.2549965,-2.2504902,-2.2396808,-2.2394013,-2.2387595,-2.2532678,-2.2670007,-2.27352,-2.2833605,-2.284603,-2.2608876,-2.2484105,-2.2601595,-2.270578,-2.2978268,-2.2915745,-2.2885282,-2.2932067,-2.2957208,-2.310996,-2.3382149,-2.3475575,-2.3541274,-2.2821767,-2.129502,-2.0760303,-2.13808,-2.1763449,-2.2107284,-2.2447157,-2.276585,-2.2897923,-2.3003266,-2.334423,-2.3793855,-2.4100757,-2.4208097,-2.4441667,-2.451766,-2.2810338,-2.1280284,-2.1934633,-2.244979,-2.2932448,-2.3301852,-2.3625264,-2.3814597,-2.4202614,-2.4464908,-2.4767425,-2.4969552,-2.5100965,-2.5255916,-2.5566792,-2.5642366,-2.5762968,-2.600197,-2.6076875,-2.6312156,-2.665677,-2.6927216,-2.700667,-2.7012792,-2.7097793,-2.721458,-2.73637,-2.770823,-2.7785645,-2.7570393,-2.7378786,-2.7177756,-2.6545122,-2.5809476,-2.4648197,-0.52832997,0.028722335,-0.23995642,-0.4191308,-0.53986996,-0.71259606,-0.9207416,-1.1045237,-1.2835402,-1.4820206,-1.6599051,-1.7800997,-1.8305037,-1.6597,-1.6641995,-1.9196427,-2.0110781,-2.0998635,-2.2682662,-2.358129,-2.430077,-2.507885,-2.5612657,-2.6057444,-2.6366906,-2.6583133,-2.6850233,-2.712677,-2.7422326,-2.7575173,-2.7796767,-2.7745593,-2.772264,-2.7562642,-2.7638748,-2.796671,-2.8214583,-2.8206081,-2.8084154,-2.820795,-2.8456783
+0.9136234,0.79459566,0.36026096,0.08118814,0.49347144,0.71507967,0.47715825,0.31228364,0.24158846,0.0954891,0.077136576,-0.034252595,-0.078414604,-0.088064194,0.16617581,0.4222671,0.2544427,0.08961789,-0.056181397,-0.12932648,-0.21721214,-0.31390208,-0.42371863,-0.4259282,-0.34678325,-0.15110698,0.025414854,-0.01655094,-0.14802018,-0.2661513,-0.36274374,-0.42397535,-0.46112293,-0.5410667,-0.6076067,-0.66472393,-0.7217855,-0.7469486,-0.7844714,1.2064501,1.8366199,1.2388028,1.0554268,0.8116499,0.5969324,0.34957194,0.08689514,-0.13577327,-0.26770574,-0.39651603,-0.4894938,-0.20449226,0.058470216,0.1455254,-0.103287384,0.10192214,0.35247132,0.39264226,0.2446792,0.20726122,1.2450243,0.86395746,0.5612575,0.39372087,0.12635314,-0.044069592,-0.20567346,-0.3426129,-0.4337821,-0.5333667,-0.5313281,-0.30277207,0.5547018,0.21986555,-0.07054399,-0.20675467,0.7168269,0.44658864,0.10983014,0.5841074,0.3136226,-0.009926993,1.169814,0.63955617,0.54405487,0.87759906,0.82514745,0.71851915,0.31053585,0.13340904,0.18768217,0.05468825,-0.0124390945,-0.094005495,-0.22601031,-0.16210009,-0.23345037,-0.059771843,-0.27557093,-0.26859197,-0.2158128,0.53353536,1.5862691,1.0080843,1.1541479,1.0145837,0.9317117,0.85317135,0.59495556,0.37297046,0.18223052,-0.027827572,-0.19873889,-0.19001241,-0.26758495,-0.3922851,-0.2781255,0.1583633,-0.07838766,-0.28825378,-0.3857798,-0.30725485,-0.3084155,-0.44320545,-0.1204513,0.6802546,0.24978714,0.027050693,-0.10914582,0.068485916,0.12529854,0.38259223,0.5065841,0.20968722,0.030221064,-0.0359825,0.22751494,0.09921628,0.05077109,0.31491786,0.1556185,-0.073731765,-0.1892162,-0.27523917,-0.32409537,0.056065593,0.05199873,0.20951755,0.19964263,0.048819173,-0.110040694,-0.18852292,-0.27657214,-0.32765552,-0.36129832,-0.33877262,-0.4641919,0.014090989,0.6116115,0.4763674,0.45877942,0.8239755,0.5628107,0.42751482,0.5146296,0.36723167,0.19982591,0.072738305,-0.023635235,-0.04431903,-0.038035702,-0.13942677,-0.22028126,-0.27344653,0.19533361,1.4198451,1.2422082,0.8362385,0.59190977,0.4279127,0.30729565,0.2218882,0.15880202,0.09619543,0.08875319,1.2297404,2.1600518,2.0417583,1.794496,1.5907416,1.6392963,1.601443,1.7202984,1.517005,1.437474,1.4832487,1.5332434,1.1966226,1.0244864,0.9026917,0.80728996,0.71935093,0.704756,0.68771315,0.5942166,0.58816725,0.5135835,0.5026439,0.46780193,0.4450221,0.5518383,0.52169144,0.4746477,0.7857623,1.0729824,0.85637367,0.79730284,0.70113444,0.6534547,0.6137804,0.55676603,0.5283526,0.51655036,0.42576203,0.409905,0.43509883,0.41282827,0.42297643,0.42655295,0.5024414,0.41446486,0.48132753,0.55216086,0.6965605,0.7631683,0.809821,0.8810549,0.99839544,1.0112326,1.044272,1.0671706,1.1539056,1.2808216,1.2713246,1.2669652,1.2770315,1.3036835,1.3316568,1.6093944,1.6957366,1.7360134,1.7108378,1.7052848,1.7100337,1.71377,1.7727994,1.8060529,1.8168788,1.7572567,1.7751081,1.762354,1.7542527,1.7610109,1.7674328,1.8606812,1.8407618,1.831187,1.8341131,1.8189485,1.8485205,1.8395934,1.8508899,1.8753304,1.8749125,1.9254448,1.9663656,1.9809282,1.9476955,1.9693499,1.9612036,1.9601088,1.9571908,1.955405,1.8844087,1.9741564,1.9839373,1.983645,1.961536,1.9420164,1.9542675,1.9746957,2.0153213,2.007594,2.0503426,2.0902963,2.1311066,2.1676755,2.1815662,2.2380972,2.2353039,2.21978,2.2038417,2.2044868,2.201898,2.2511878,2.2294817,2.2672446,2.2410579,2.1881309,2.1722598,2.106772,2.1219554,2.2570386,2.3033595,2.2659593,2.2659194,2.3780885,2.4285407,2.4236374,2.4469159,2.4836864,2.540255,2.6586368,2.6539435,2.829746,2.8624496,2.8885305,2.992733,3.0042505,2.9678402,2.9231973,2.899792,2.9036195,2.9361136,2.9695444,3.0113602,3.0323796,3.052034,3.1307373,3.2717671,3.149784,3.005166,2.9995177,2.8940773,2.869821,2.8042636,2.912785,2.9768,3.0998983,3.25202,3.4995809,3.6267235,3.7129612,3.6858835,3.6649652,3.6617563,3.7574553,3.6394057,3.150035,2.3019192,1.5154693,1.1937379,0.7787475,0.4150505,0.2631989
+0.08840138,0.3620806,0.4946401,0.48967576,1.2111914,1.4801182,1.1931994,1.0138559,0.802194,0.61235845,0.49744093,0.33058146,0.23846479,0.17447333,1.4916327,2.1644597,1.7751305,1.5035844,1.3509786,1.2144885,1.0361792,0.81358755,0.5936056,0.9529176,2.2089434,2.3976216,2.536171,2.369963,1.9778814,1.783036,1.53249,1.273205,1.072617,0.8753944,0.62041247,0.45224804,0.26322144,0.08763538,-0.0063816793,2.4702225,2.8082712,2.308281,2.133329,1.8397964,1.5415218,1.2822821,1.0460665,0.82703793,0.66535884,0.57184315,0.7237393,1.137121,1.1879354,1.1074014,1.020283,1.2752073,1.3773229,1.4234493,1.2410696,1.1787075,1.8184284,1.750273,1.5121338,1.237241,0.95806694,0.722726,0.5296596,0.3657359,0.21998511,0.27163795,0.5362618,0.9598913,2.0970483,1.645125,1.4158841,1.579956,2.2673287,1.7630839,1.5499177,1.7422919,1.4680588,1.2598749,1.2455823,0.9967272,0.9176141,1.6084783,1.6762896,1.5847669,1.2523265,1.000735,0.7875835,0.606746,0.52691245,1.2782476,1.2020735,0.8352548,0.5787332,0.55466723,0.35248733,0.3022309,1.1402678,2.4207752,2.3475752,2.206768,2.1525776,1.9122016,2.1174502,2.181769,1.880054,2.231237,1.8981593,1.5260874,1.2455392,0.9660809,0.68974656,0.49547946,0.3314856,1.0416873,1.6724768,1.5590901,1.3062761,1.2014084,0.9814663,0.7312454,0.508784,0.28669196,0.10866164,-0.022522341,-0.14427775,-0.2661035,-0.3386715,-0.21299186,-0.0977034,0.06907219,0.17259087,0.033765007,-0.06526533,-0.16155289,-0.2580624,-0.1719516,0.7367508,0.6483762,0.4786228,0.33735088,0.14217025,0.15119474,0.04269093,-0.05668783,-0.16211696,-0.17597115,-0.3180098,-0.3721735,-0.43235862,-0.4775464,-0.50719386,-0.47045648,-0.4905182,0.22339799,0.8712841,0.9797108,1.0571481,1.330933,1.281426,1.1092844,1.0642136,0.9564339,0.7876255,0.72123206,0.65153474,0.54275966,0.4387173,0.23116736,0.17821233,0.67735696,1.9791296,2.248207,2.2277522,1.9687364,1.693115,1.4909288,1.3543057,1.1886749,1.0414329,0.94471645,1.2609216,2.7620735,3.1661725,2.8029232,2.3947062,2.2642467,2.1603017,2.0052407,1.973928,1.920924,1.8929238,1.8119435,1.7316148,1.6518604,1.5856419,1.5633006,1.5259504,1.4586277,1.4224591,1.3661913,1.2929885,1.2504185,1.2136776,1.1683735,1.1366704,1.1151894,1.0850971,1.0718853,1.081563,1.9444224,2.2959719,2.02346,1.881037,1.73768,1.6412667,1.5751221,1.4873248,1.4753668,1.4088233,1.3438916,1.3875694,1.3361087,1.2829919,1.3054702,1.2892103,1.2829797,1.2466421,1.2066004,1.1701202,1.2061179,1.2344922,1.2298715,1.2055035,1.2168306,1.1665289,1.191103,1.183485,1.2380766,1.2872736,1.1844254,1.121421,1.1676114,1.2258073,1.2498646,1.4269564,1.4947243,1.5180602,1.4976549,1.484822,1.4708004,1.5124488,1.5517325,1.4808968,1.4508284,1.4215016,1.4392197,1.4263813,1.3874857,1.3777788,1.4114938,1.4619119,1.4204365,1.3932184,1.415546,1.3807322,1.4142444,1.3466451,1.3295333,1.3362978,1.3215096,1.3036292,1.3235805,1.3313148,1.319203,1.2916296,1.2663162,1.2552701,1.2465758,1.2253999,1.2244585,1.3048291,1.3090634,1.2538798,1.2446742,1.2133489,1.2188628,1.235976,1.2578443,1.2880316,1.359906,1.4233323,1.4459252,1.4475133,1.4382406,1.4678234,1.4452548,1.4086136,1.4025166,1.4524794,1.4852343,1.5099353,1.5706415,1.5396929,1.4546226,1.393394,1.4041309,1.4088597,1.443156,1.4488931,1.420938,1.3933463,1.5887136,1.6738756,1.6438982,1.6077111,1.614697,1.6394584,1.7345695,1.8880721,2.016772,2.1554031,2.186703,2.3245466,2.537475,2.4171772,2.4336138,2.4131641,2.4160056,2.426334,2.4011512,2.317349,2.3840752,2.4990249,2.5916128,2.7812414,2.9602375,2.7935581,2.6679435,2.6239142,2.5076246,2.4459581,2.3933666,2.4048922,2.4665136,2.6302485,2.9064765,3.1645002,3.1181574,2.407939,1.9058319,1.7483057,1.6429626,1.4271958,1.2827933,1.2146468,1.1128616,1.0656587,1.1149968,1.0364468,0.99293435,0.99430156
+0.08469939,0.021945052,0.19280587,0.22301365,0.77953964,0.8796505,0.6542626,0.54133815,0.43275493,0.23008506,0.14409153,0.07792418,0.044805054,0.2613151,1.1877723,1.4438977,1.1449611,1.3889027,2.097558,1.7730542,1.4565258,1.257655,1.0958445,2.2985137,2.2910848,1.8588674,2.1146817,2.1827788,1.8516186,1.6479082,1.4066646,1.2040157,1.0401533,0.8490303,0.6887745,0.56168836,0.45045757,0.27935207,0.23222975,2.3989801,2.3203015,1.7190008,1.7644678,1.5598571,1.2811265,1.1354852,0.9373278,0.72147536,0.5859103,0.8618428,0.9417623,0.9690851,0.779242,0.5729773,1.0365307,1.2785546,1.0726118,0.9788878,0.76184297,0.9194911,1.3025074,1.079979,0.93464327,0.70840716,0.5097865,0.362405,0.23639713,0.11583376,0.07807629,0.063859195,0.34249616,0.44320166,0.6560241,0.7517017,0.74282956,0.5345417,0.4215085,0.26643372,0.23764803,0.18262587,-0.039346855,-0.092618614,-0.19303682,-0.2942677,-0.29923126,-0.4221837,-0.5844783,-0.6309631,-0.64193004,-0.6507767,-0.67711437,-0.70749736,-0.72760546,-0.40361264,-0.34356368,-0.44602683,-0.515885,-0.5124143,-0.60163724,-0.5876191,-0.24745315,0.30350456,0.30113333,0.09526667,-0.06300993,-0.18364117,0.24785624,0.49205524,0.32605633,0.20199673,0.011571731,-0.069611,-0.17147811,-0.2036011,-0.3659236,-0.40524927,-0.35749388,-0.019352805,-0.05851167,-0.18793325,-0.27506223,-0.3060047,-0.35471964,-0.4785201,-0.48441955,-0.58977985,-0.7018125,-0.7022189,-0.29393798,0.3249932,0.15805496,0.033968095,-0.1399567,-0.22845466,-0.28865692,-0.38089207,-0.346809,-0.4175827,-0.43576175,0.09824383,1.7316487,1.3102276,0.9817784,0.748942,0.4941951,0.38581148,0.31888953,0.2218393,0.14691682,0.05485603,-0.019921485,-0.07981029,-0.13253498,-0.19785044,-0.2136313,-0.24720202,0.56097364,1.4482052,1.0922745,0.87158763,0.7494035,0.683961,0.5673239,0.4496603,0.812124,0.8633956,0.700721,0.6201446,0.5401271,0.4286524,0.25513932,0.11473933,0.058382798,0.023683775,0.21391948,1.123949,2.5187287,2.1746664,1.6794066,1.4317943,1.2394187,1.0437851,0.89481914,0.7791194,0.7562518,1.3788829,2.5722935,2.0114727,1.663509,1.4977269,1.3572755,1.2320689,1.1161927,1.3136336,1.2983717,1.2031008,1.1077299,1.0071766,0.92275774,0.84182364,0.77894855,0.8056771,0.78104925,0.6885712,0.6238141,0.5915108,0.5799024,0.5106145,0.5010054,0.4675979,0.46484253,0.6468148,0.70732534,0.6195462,0.5667601,0.5103617,0.4688878,0.43205371,0.40568733,0.383753,0.34728026,0.32512784,0.28863448,0.267921,0.32008052,0.25763068,0.24805002,0.23974995,0.24147676,0.28966156,0.29362947,0.24229382,0.23006056,0.27834737,0.34436053,0.36276278,0.3291585,0.3503844,0.3370531,0.36350867,0.37689754,0.4944262,0.547897,0.47540104,0.4349295,0.49707645,0.47079986,0.47099388,0.5333637,0.55189925,0.60474205,0.6014426,0.5708991,0.55337805,0.5577947,0.6597293,0.6262822,0.580527,0.65825117,0.744544,0.7154945,0.6380963,0.6650748,0.73790723,0.8182069,0.8009131,0.7418759,0.7311363,0.7066009,0.9312909,0.8611454,0.8700408,0.87851906,1.0166568,0.9897176,0.981447,0.9942908,0.9230691,0.87146586,0.8593459,0.81973356,0.80562884,0.76046884,0.7864261,0.8466156,0.86639017,0.81356317,0.798826,0.7946974,0.79978454,0.82471716,0.8547363,0.9491008,1.0220999,1.2980399,1.2868221,1.2681277,1.2370174,1.2576195,1.2610505,1.2951026,1.2946402,1.3245288,1.4100788,1.4946873,1.6181047,1.6297967,1.5667566,1.3838018,1.3703923,1.3520987,1.3569226,1.381288,1.3508317,1.2924033,1.4532182,1.5883983,1.6114163,1.5715876,1.5861359,1.6048901,1.7058318,1.8411098,1.9173297,1.9622139,2.0245676,2.2391014,2.3954453,2.4035857,2.3572283,2.3578281,2.2866154,2.337028,2.2880135,2.1892767,2.3142352,2.4019008,2.3175082,1.9252721,1.7026753,1.4751391,1.4288435,1.4033301,1.6198931,1.8566711,1.9895997,2.095701,2.1884506,2.3729544,2.3406777,2.0875535,1.8410622,1.5246503,1.3041375,1.1251922,1.1014054,1.1923189,1.1151125,1.1045467,0.99184656,0.9325968,1.1779656,1.2048998,1.1739991,1.2351887
+0.5620683,0.5391892,0.412033,0.3215338,0.20841384,0.08983636,0.051660452,0.12024708,0.05365428,0.032253224,0.048383806,0.029367406,-0.053231116,-0.11683512,-0.10721545,-0.09129061,-0.033247907,1.001104,1.7501667,1.3494234,1.0373108,0.7496332,0.57027626,1.7870355,1.6247104,1.5007839,1.3665857,1.4069047,1.2507057,1.1280695,1.0341325,0.7778145,0.6609318,0.49774122,0.36892438,0.32535982,0.3687731,0.28890896,0.32150888,1.3620031,1.1022966,0.849242,0.84874654,0.93016243,0.7209265,1.0797759,1.0328034,0.75810826,0.59212196,0.55599487,0.37550014,0.28202778,0.08218998,-0.056973483,0.59870255,1.0906682,0.7637801,0.6550756,0.4885444,0.42167786,0.43053165,0.34429848,0.13292445,0.119387686,0.05076656,-0.0418252,-0.11578156,-0.1983619,-0.24481814,-0.33473882,-0.35781667,-0.46755695,-0.42837274,0.17319672,0.24832122,0.08181718,-0.014236454,-0.061534394,-0.090119004,-0.0827802,-0.22389773,-0.30575716,-0.40988976,-0.49290204,-0.54657304,-0.67953974,-0.7839079,-0.82577384,-0.8629998,-0.9078339,-0.8721814,-0.79743624,-0.7993524,-0.7372145,-0.7857756,-0.7700019,-0.9355664,-0.8662914,-0.9325739,-1.0362059,-1.0038211,-0.91547346,-0.7872678,-0.85941577,-0.925382,-1.0002038,-1.1040847,-1.0734725,-1.1292636,-1.1707196,-1.2633809,-1.2943789,-1.3784584,-1.4094748,-1.4951057,-1.5012782,-1.5075716,-1.5511009,-1.2134893,-1.1583289,-1.2299082,-1.2239369,-1.2595294,-1.3631179,-1.3772353,-1.4400296,-1.5459071,-1.56757,-1.5050113,-0.3567177,-0.17884645,-0.37963998,-0.51754504,-0.5424924,-0.6163392,-0.68180907,-0.7385111,-0.84944963,-0.90400016,-0.5756119,0.7838464,0.41468114,0.10006763,-0.089161366,-0.2586338,-0.3457883,-0.43225718,-0.5442178,-0.59516674,-0.66316843,-0.717951,-0.81027573,-0.8871752,-0.9507823,-1.015636,-1.05053,-1.0430477,-0.1372488,-0.11857331,-0.29113495,-0.39490807,-0.353388,-0.37740678,-0.5137831,-0.09376001,0.5484034,0.17632516,0.11792165,0.046370853,-0.13879178,-0.1921967,-0.26959276,-0.3148436,-0.41240922,-0.45034173,0.40008947,1.7873039,1.2217407,0.87528944,0.6477072,0.49896872,0.3607478,0.31920266,0.21491985,0.12840287,0.18916751,1.1447341,0.71480304,0.618229,0.5361807,0.41180658,0.2526046,0.15626505,0.20817721,0.2200735,0.15653794,0.05522522,0.029846642,-0.048138913,-0.0075979047,0.0077223144,-0.04116897,-0.11138448,-0.12730034,-0.18532793,-0.25209516,-0.2983933,-0.25803474,-0.32986253,-0.375479,-0.3842526,0.5543334,0.66334844,0.41365516,0.24932955,0.17652115,0.1301322,0.049189407,-0.019086745,-0.069530904,-0.120839626,-0.15320392,-0.18409307,-0.2334262,-0.2951582,-0.2808669,-0.30549967,-0.30275676,-0.3099693,-0.32649803,0.8844248,0.8931993,0.8069724,0.89318293,0.73769957,0.60628647,0.4085975,0.50683784,0.4382232,0.4777162,0.44420272,0.4480248,0.5222609,0.4028088,0.5526372,0.6552938,0.69252324,0.7868811,1.0111316,1.1710405,1.2414274,1.182339,1.1515185,1.2447253,1.4058146,1.410053,1.426088,1.4108135,1.3767939,1.8015432,1.8022404,1.7854723,1.828896,2.0241857,2.2199888,2.1674666,2.17803,2.1815891,2.315741,2.4538546,2.222691,2.3010166,2.3116817,2.518659,2.638691,2.420312,2.419322,2.2487178,2.1661344,2.1080885,2.067411,1.998281,2.0421576,2.2014828,2.3330698,2.5467641,2.333126,2.2184653,2.2838383,2.3671308,2.450006,2.522985,2.7128396,2.8158362,3.0970945,2.8689995,2.8115306,2.7423081,2.8316154,2.7051368,2.6543665,2.6489038,2.7921276,2.95359,2.9986162,3.1080923,3.1339781,2.9390967,2.6483011,2.7364323,2.8636422,2.9287934,3.099592,3.088747,3.098391,3.1560817,3.2832398,3.1628156,3.1280847,3.1639323,3.1372511,3.0894442,2.826198,2.6497352,2.1658273,1.8143151,1.5103794,1.3603818,1.5806706,1.7473068,1.8834646,2.0027435,2.110107,2.1982498,2.2758017,2.5030627,2.451479,2.2224813,1.7194197,1.7377316,1.5139301,1.6158369,1.6762146,1.8567303,1.8288594,1.7225293,1.6347039,1.5132979,1.1800334,0.92960453,0.7988982,0.6764612,0.6338988,0.65371776,0.94304454,0.94501555,1.4511936,1.2751918,1.0096891,1.3552873,1.1101949,1.5508953,1.3039618,1.1017815,1.8892052
+1.2536497,1.3629942,1.1296221,0.65609235,0.20342244,-0.07377419,-0.027929228,-0.06580069,-0.11027455,-0.118827716,-0.12975723,-0.14479993,-0.21548636,-0.28787667,-0.3864486,-0.41510236,-0.40304822,-0.25633618,-0.07746376,0.036508363,-0.04270322,-0.15538791,-0.27071723,1.0041424,1.2130847,1.6542677,1.5202947,1.5702282,1.6407385,1.7158008,1.6540246,1.3984768,1.0149795,0.6730909,0.3553187,0.20960408,1.0862654,1.2996416,0.99973106,1.1124997,0.9381055,0.6809928,0.48859477,0.5778668,0.5700824,1.1990442,1.2950735,1.0221941,0.74779224,0.6626406,0.4138394,0.22096367,0.027734179,-0.08246446,-0.09737499,-0.11890301,-0.14773808,-0.16467763,-0.193861,-0.32441965,-0.2948568,-0.35884604,-0.43008536,-0.4952469,-0.541777,-0.5878807,-0.5828823,-0.62413573,-0.66467917,-0.7171415,-0.781977,-0.8904768,-0.8970211,-0.752838,-0.6495585,-0.72005165,-0.8540979,-0.8721926,-0.9306119,-0.9966017,-1.0267458,-1.0576975,-1.1075815,-1.0999157,-0.80524373,-0.82733953,-0.99345374,-1.0273237,-1.0601374,-1.055505,-0.89195603,0.47844517,0.20975551,-0.06710245,-0.24657018,-0.42286733,-0.58784634,-0.75996983,-0.85821366,-0.95494413,-1.094281,-1.1878171,-1.2668463,-1.3046557,-1.2424293,-1.2818425,-1.330545,-1.3717332,-1.4197123,-1.4454885,-1.5127836,-1.5779,-1.6476802,-1.6839861,-1.7648075,-1.7765777,-1.8193705,-1.8514662,-1.8502057,-1.8687378,-1.8945549,-1.8964236,-1.941854,-2.0001416,-2.0136576,-2.0760047,-2.1052775,-2.1009402,-2.0987542,-2.140081,-2.068646,-2.0972295,-1.9055007,-1.5443376,-1.5390468,-1.5811528,-1.6458716,-1.719809,-1.7900827,-1.5860493,-0.90098435,-0.9357449,-1.0663817,-1.1523362,-1.2538335,-1.3997622,-0.5117276,-0.21126135,-0.3780815,-0.5205386,-0.69857347,-0.7816744,-0.8836735,-0.9926683,-1.0559211,-1.0295042,-0.9563902,-0.29063314,-0.41690537,-0.57939523,-0.6657314,-0.7433506,-0.7159785,-0.81963164,-0.8588821,-0.13052745,-0.18300305,-0.30462563,-0.3956371,-0.48496556,-0.5431215,-0.65044975,-0.76657134,-0.8487966,-0.5535212,0.46914196,1.0659399,0.5863571,0.3066422,0.11748542,-0.021197002,-0.1013487,-0.08725664,-0.2168103,-0.28389347,-0.19104794,0.56953603,0.21559279,0.14805119,0.100161016,0.01722582,-0.08406004,-0.16597007,-0.23300666,-0.2698502,-0.2970633,-0.36182866,-0.43383846,-0.4858649,-0.0577962,0.01328421,-0.04011168,-0.13717268,-0.12007831,-0.17865415,-0.22241032,-0.25709024,-0.22441545,-0.3141713,-0.35232073,-0.38872507,-0.3809874,-0.4072812,-0.46933213,-0.50709814,-0.4918474,-0.48821053,-0.48155266,-0.50053966,-0.5149588,-0.5284513,-0.52974796,-0.5463712,-0.56618595,-0.55872655,-0.5617527,-0.5703125,-0.576386,-0.5765674,-0.56330436,-0.26002192,0.09084079,0.25549537,0.377429,0.46971154,0.65880644,0.6542938,0.7816533,0.7295108,0.75988984,0.771392,0.8196435,0.8524406,0.7972881,0.818451,0.8750408,0.8078927,0.81073475,1.0855097,0.98265517,0.95256853,0.89615846,0.97168255,1.0773523,1.0576267,0.9757335,0.94345236,0.93726546,0.9845879,1.09629,1.0730524,1.0550326,1.0220963,1.0724745,1.1128678,1.034534,1.0336306,1.0584214,1.2091546,1.2562699,1.1062665,1.1232686,1.0719717,1.107995,1.1700293,1.0869406,1.160548,1.10634,1.2115808,1.2043858,1.1698108,1.1486049,1.1395817,1.3037636,1.3413599,1.2572567,1.2139748,1.1874685,1.1773725,1.1637251,1.1682715,1.127552,1.1374004,1.1232371,1.2076964,1.1205502,1.1388074,1.1885861,1.2676834,1.2706847,1.1962783,1.1762207,1.210973,1.2480702,1.2599828,1.2635059,1.2516404,1.1734166,1.1818252,1.251017,1.2818861,1.337336,1.4976343,1.5296935,1.4932463,1.6585915,1.8483053,1.7163792,1.6234527,1.5700874,1.5407722,1.6076868,1.6694685,1.7268146,1.7737105,1.760652,1.8326514,1.95458,1.934697,1.8585156,1.6589564,1.572303,1.5908306,1.5531348,1.5164244,1.5469245,1.6080885,1.6966255,1.8061674,1.9291834,1.7564434,1.7491686,1.9287735,2.1594796,2.4467196,2.481468,2.4836383,2.4526296,2.4916596,2.4139428,2.4007933,2.197878,1.7342937,1.3838403,1.3772348,1.213075,1.5384301,1.4024886,1.3017116,1.4247036,1.3119357,1.3417045,1.3112552,1.4356066,1.8447734
+1.1962621,1.206388,0.9405458,0.2220247,-0.39856705,-0.55325055,-0.4328125,-0.41891646,-0.47427335,-0.4365611,-0.28971034,-0.34984827,-0.45602703,-0.5713101,-0.38185441,-0.24529007,-0.08401726,0.061085332,-0.005845677,-0.12516095,-0.29826003,-0.2915074,-0.34824654,-0.14413142,-0.04808488,0.05734158,0.21990986,0.2510886,0.36073056,0.47770214,0.45448452,0.4279082,0.35996234,0.23137115,-0.043578546,-0.28677344,0.025106061,0.43356377,0.4591051,0.30197868,0.1783949,0.023359958,-0.20585872,-0.26260746,-0.18837878,0.09373155,0.18432887,-0.016825926,-0.19974975,-0.36853242,-0.51498914,-0.5791128,-0.5464989,-0.5498461,-0.6701983,-0.7315347,-0.73929316,-0.7882735,-0.8501576,-0.90368825,-0.9459014,-0.9642508,-0.9625276,-1.026208,-1.0768639,-1.0864314,-1.116561,-1.146841,-1.1972247,-1.1937261,-1.2547882,-1.322282,-1.3893597,-1.3895122,-1.349982,-1.407825,-1.4685669,-1.5108318,-1.5435705,-1.5836627,-1.5994503,-1.6224706,-1.6495935,-1.6685975,-1.4994755,-1.5130007,-1.5696464,-1.5824705,-1.6205335,-1.6743641,-1.6289883,-1.3823687,-1.2650799,-1.053726,-1.0092961,-1.0869241,-1.1769593,-1.2644451,-1.3240247,-1.3936965,-1.4740851,-1.5480207,-1.6044588,-1.6408663,-1.662669,-1.6776173,-1.7300818,-1.7564347,-1.8464131,-1.8378575,-1.8794916,-1.881641,-1.8280731,-1.8400352,-1.8751813,-1.8930764,-1.9217794,-1.9453266,-1.9668795,-2.0170825,-2.002885,-2.0435512,-2.102809,-2.0881612,-2.0969496,-2.1219304,-2.1505356,-2.191852,-2.202312,-2.2322705,-2.228529,-2.246636,-2.3097715,-2.2572813,-2.2515113,-2.2547274,-2.2899842,-2.2874613,-2.3414664,-2.2409425,-2.1351705,-2.0525906,-2.0477893,-2.0921028,-2.1254287,-2.1753414,-2.1946988,-2.2213469,-2.1867876,-2.202683,-2.242508,-2.2262435,-2.2397504,-2.2880263,-2.247273,-2.1565619,-1.334062,-0.7702568,-0.9681956,-1.0506833,-1.1341705,-1.2111086,-1.2846427,-1.3333148,-1.4287041,-1.4548314,-1.4542783,-1.1700085,-1.1364536,-1.1690233,-1.2584718,-1.3460164,-1.4121065,-1.4884295,-1.3819737,-0.9845586,-0.8830069,-0.9052275,-0.9817624,-1.0411501,-1.1115685,-1.1981626,-1.092669,-1.1259918,-1.1973938,-1.0935311,-1.1287246,-1.1936111,-1.1904037,-1.1511924,-1.1458399,-1.1511109,-1.1930897,-1.2844882,-1.2548691,-1.2512491,-1.3042006,-1.3715898,-1.3705999,-1.0736703,-0.9010659,-0.80162543,-0.81711835,-0.7715869,-0.7793388,-0.8274238,-0.90277886,-0.95207,-0.96602744,-0.97905767,-1.0168214,-0.96870553,-0.9429047,-0.873826,-0.7970025,-0.75821835,-0.78115714,-0.74533415,-0.7699958,-0.79147154,-0.798474,-0.7836603,-0.78357553,-0.8068399,-0.82351494,-0.80062395,-0.8224222,-0.8123405,-0.7928771,-0.7900339,-0.794271,-0.76630104,-0.59306264,-0.4364405,-0.3640797,-0.03492285,0.19642448,0.3644033,0.40813053,0.46503934,0.50780135,0.5562553,0.5296217,0.43028373,0.40444756,0.43880245,0.38165465,0.3936296,0.55448943,0.31561235,0.3414286,0.310261,0.4060455,0.55045784,0.60630107,0.42783344,0.40937093,0.42183232,0.6057651,0.8778192,0.58727884,0.45863545,0.44522727,0.5603312,0.64179623,0.54690754,0.54052514,0.59515285,0.8325452,0.6519592,0.5387352,0.63865983,0.51329064,0.5645926,0.56969213,0.53686184,0.6213005,0.5787964,0.7126373,0.63528913,0.57735646,0.58254945,0.6639131,1.2538017,1.2844055,1.5639958,1.3138901,1.3618343,1.3501585,1.2982954,1.2429798,1.1602579,1.1463368,1.1392449,1.1708411,1.1335293,1.1664269,1.2664368,1.3429923,1.2405176,1.1125466,1.0721109,1.0842658,1.1186574,1.1556059,1.1907728,1.2447994,1.1030684,1.1092378,1.1844482,1.2308679,1.2447791,1.3226109,1.4471145,1.3840423,1.4980543,1.813135,1.6371605,1.5021701,1.4186878,1.319103,1.321335,1.3421304,1.4174378,1.5400746,1.5161269,1.5251143,1.803169,1.9596667,1.8679413,1.5600464,1.4360447,1.4410274,1.4785731,1.4208245,1.4333514,1.4920952,1.611999,1.7757678,1.7836123,1.5933954,1.6226246,1.7047596,1.8403748,2.1321352,2.0427833,2.020609,2.1247115,2.1432524,2.2557747,2.3131263,2.3073459,2.2738452,1.9885154,1.9181982,1.897521,1.8190923,1.6726766,1.6630795,1.7979171,1.789145,1.8897319,1.9755316,2.014872,2.144187
+1.6865349,1.9209571,1.652586,1.1535358,0.59979403,0.40329003,0.3505925,0.20328642,0.64588046,0.4658907,0.3638506,0.31262445,0.309091,0.19410114,0.016167562,0.31043607,0.63298225,1.5632443,1.444014,1.0879828,0.88401115,0.73400056,0.4783622,0.32540396,0.23365031,0.10860257,0.092745766,0.00732762,0.3041851,0.5757692,1.080013,1.1947026,0.929194,0.738251,0.5376153,0.36047363,0.18878594,0.11455114,0.09611966,0.07152262,-0.00017430261,-0.0416548,-0.088266745,-0.16649851,-0.11307716,-0.15937749,-0.20183426,-0.020935815,0.06486444,-0.019580055,-0.1353314,-0.25690436,-0.32225743,-0.4116025,-0.46338838,-0.54543257,-0.53381413,-0.5570019,-0.6527103,-0.7197408,-0.6969003,-0.6987153,-0.7037736,-0.7366886,-0.7695465,-0.8123294,-0.85715747,-0.89692295,-0.93339205,-0.8888542,-0.93754244,-0.9814882,-0.96455044,-1.0086952,-1.0327877,-1.1265497,-1.1440587,-1.1387393,-1.2031116,-1.2206717,-1.165283,-1.1792543,-1.241168,-1.2594793,-1.2877176,-1.2979702,-1.2338021,-1.055201,-1.1056607,-1.0439208,-1.022246,-1.0166044,-0.7993937,-0.8893539,-0.82102484,-0.73896897,-0.83538616,-0.8836396,-0.9403702,-0.99187833,-1.0352644,-1.0742774,-1.1461146,-1.1897931,-1.2344749,-1.2864515,-1.2800541,-1.2732286,-1.321057,-1.3852887,-1.3258435,-1.3492069,-1.3534963,-1.3498701,-1.4093022,-1.4495703,-1.3270669,-1.1599134,-1.0366402,-0.9200056,-0.70174724,-0.40405595,-0.07404837,-0.04719838,-0.08430749,0.0026849248,0.1926654,0.21073517,0.09598808,-0.028221775,-0.059046883,-0.23084816,0.29680994,0.33847767,0.108970284,0.072055146,-0.09271054,-0.27828234,-0.30174977,-0.3801934,-0.27198812,-0.054557834,0.31714028,0.99354255,1.1895415,1.0576952,0.8540338,0.63853574,0.50458753,0.5019922,0.39094263,0.28319275,0.19084966,0.080636755,0.0027386136,0.30648053,0.3118314,0.04926314,-0.06291328,-0.13334437,-0.24542348,-0.38267332,-0.4692075,-0.5377031,-0.5689322,-0.5190035,-0.5823097,-0.6316999,-0.7061937,-0.75657433,-0.7378827,-0.83225346,-0.96121097,-0.7588641,0.2010556,0.5815599,0.48482817,0.29653746,0.1709187,0.013666209,-0.08345531,-0.2248382,-0.16359092,-0.16914625,-0.27538213,-0.34021226,-0.42097998,-0.5035683,-0.54141355,-0.596155,-0.6485238,-0.32534865,-0.22815698,-0.34191692,-0.44635385,-0.5737363,-0.62083435,-0.6946896,-0.7611481,-0.8160026,-0.8694385,-0.8777493,-0.8995842,-0.8967087,-0.92905027,-0.95672107,-1.0104339,-0.9126626,-0.82459474,-0.9012718,-0.9446262,-0.9539803,-1.0048295,-1.0332925,-1.0689731,-1.0598764,-1.0344388,-0.64150125,0.41377655,0.48045868,0.34498075,0.23945527,0.1287723,0.05116121,0.0008812584,-0.004292067,-0.001634296,-0.024526726,-0.06009352,-0.06740709,-0.06614596,0.0123473145,0.0686066,0.084652275,0.44889492,1.2449217,1.0080779,1.0862938,1.2014914,1.3751763,1.5235575,1.5082778,1.7514255,1.9693007,2.1392636,2.1988168,2.330316,2.4233124,2.4411914,2.5097785,2.4804115,2.6692452,2.6945438,2.7424283,2.784864,2.7661119,2.8459914,2.8865292,2.839796,2.9155734,3.1916783,3.1227074,3.1715245,3.174922,3.163627,3.463488,4.080993,3.9809384,3.976264,4.000448,3.9930763,3.9366775,4.0117874,3.9810352,4.0368237,4.165309,4.122641,4.0444603,3.9462433,4.0663543,4.168809,4.068845,4.002111,3.985756,4.0406437,3.949802,3.9002016,3.9413986,3.9081695,3.8656735,3.968227,3.9593735,4.0344915,4.0949974,4.162325,4.3392324,4.3651114,4.368903,4.415947,4.353006,4.2347536,4.2743883,4.3080044,4.3768997,4.410497,4.4227715,4.4079814,4.3168726,4.3198657,4.2877083,4.322714,4.26859,4.452391,4.469386,4.4659224,4.3338604,3.9940615,3.346655,3.1849265,3.145835,3.1722913,3.3231149,3.3577454,3.3414888,3.2605734,3.3156838,3.0657215,2.6917815,2.3589709,2.406682,2.4478152,2.5578775,2.640656,2.6470199,2.5659504,2.7056236,2.846612,2.8745697,2.7408884,2.4038467,2.3520076,2.4557345,2.377262,2.0328918,1.7618544,1.6837325,1.5233617,1.4233463,1.268519,1.1550999,1.1085787,1.0522126,0.92404944,0.84266543,0.78981864,0.7404497,0.67624426,1.630591,1.4020374,1.2351239,1.1159191,1.1807715,1.568218,1.2880106,1.1679121
+-1.8179727,-1.6242808,-1.6799463,-1.7350521,-1.8324442,-1.8874409,-1.9556681,-2.029273,-1.0712168,-1.0543579,-1.0215031,-0.7341708,-0.5946812,-0.9302217,-1.0968187,-1.2640939,-1.1300315,-1.1169713,-1.1124034,-1.2586021,-1.3684347,-1.517132,-1.5759304,-1.6412954,-1.7248368,-1.7940596,-1.8425474,-1.9313495,-2.0150967,-1.7751224,-1.5105124,-1.0337738,-1.0899892,-1.2369232,-1.3711429,-1.5338506,-1.680608,-1.7745358,-1.7892667,-1.8330388,-1.8785379,-1.9412831,-1.9797673,-2.1377883,-2.1293612,-2.1266255,-2.2138262,-1.3122356,-1.055899,-1.2234511,-1.3917886,-1.5239652,-1.6163142,-1.7204244,-1.7918506,-1.8645608,-1.9095945,-1.9706829,-2.050002,-2.0849023,-2.127768,-2.1759582,-1.9286301,-1.9163153,-1.96487,-2.0184324,-1.9642522,-1.8592889,-1.9273934,-2.0191207,-2.071354,-2.1212234,-2.182228,-2.1924393,-2.1967726,-2.2308269,-2.2481694,-2.272862,-2.3104143,-2.3304439,-2.3525038,-2.4148564,-2.4342299,-2.3963017,-2.1045043,-2.0416172,-2.1240978,-1.9602615,-1.8721056,-1.958306,-1.9307885,-1.6883574,-1.3707108,-1.5333264,-1.637543,-1.6890566,-1.7758787,-1.8301134,-1.8826956,-1.939063,-1.9842849,-2.0196035,-2.0617013,-2.100873,-2.1369224,-2.170656,-2.2009788,-2.26316,-2.2721562,-2.359438,-2.2339115,-2.0551786,-1.9500855,-1.9089944,-2.0103312,-2.0532598,-2.0367715,-1.9430599,-1.8911471,-1.7437778,-1.4005885,-1.3204306,-1.4025366,-1.5522828,-1.6662301,-1.3748227,-0.9487819,-0.819926,-0.91378176,-1.0463572,-1.0793658,-1.0613744,-0.91123754,-1.17807,-1.3211652,-1.4215658,-1.4906933,-1.4793276,-1.587466,-1.7154328,-1.4779327,-1.4995118,-1.4281865,-1.1252644,-1.1591262,-1.1694052,-1.3341454,-1.4581141,-1.5058753,-1.4789801,-1.5752506,-1.6481967,-1.7187693,-1.7920827,-1.8536489,-1.9140813,-2.0165172,-2.0929155,-2.1124701,-1.8899889,-1.3010674,-1.4842832,-1.5853119,-1.6849365,-1.5330759,-1.303333,-1.4324148,-0.8291099,-0.40340704,-0.75479025,-0.99580795,-1.1883619,-1.3233314,-1.4187092,-1.5094365,-1.4998797,-1.6078573,-1.6909837,-1.7400781,-1.7928345,-1.859138,-1.9140837,-1.8290427,-1.2838228,-1.1044285,-1.2460605,-1.4018531,-1.496906,-1.5701597,-1.6375875,-1.7621531,-0.6128303,-0.37375075,-0.67588055,-0.87545395,-1.0193505,-1.1805413,-1.2835008,-1.3668923,-1.4395223,-1.5165213,-1.5757153,-1.6106817,-1.6678531,-1.7131606,-1.7310078,-1.7752898,-1.81622,-1.8686004,-1.894568,-1.9312943,-1.9569092,-1.9902046,-2.0168815,-2.0454872,-2.0915139,-1.8089677,-0.5031532,-0.21261463,-0.27181005,-0.5020663,-0.73910093,-0.8433201,-0.8982875,-0.9395695,-0.9871985,-1.024534,-1.0793471,-1.1281836,-1.1815403,-1.208281,-1.2762816,-1.223906,-1.2463278,-1.0566944,-0.5172854,-0.57118386,-0.7536713,-0.81591487,-0.7979152,-0.8242153,-0.9229492,-0.93187183,-0.874296,-0.7938447,-0.8004642,-0.86447597,-0.90105057,-0.8318699,-0.8697213,-0.86974543,-0.8433498,-0.8044163,-0.8031532,-0.8410645,-0.8998873,-0.9039482,-0.9314471,-0.9568579,-0.96958756,-0.6532502,-0.6307075,-0.4997537,-0.4074116,-0.41348827,-0.35071447,-0.0026137494,-0.36256143,-0.4648264,-0.5739149,-0.4845027,-0.4878413,-0.5273984,-0.54442525,-0.54686964,-0.46954945,-0.5268263,-0.5424036,-0.5964303,-0.6805977,-0.64293265,-0.6556613,-0.51313704,-0.59951586,-0.66398394,-0.69366443,-0.7373201,-0.75219,-0.77955216,-0.12994872,0.2794483,0.015619267,-0.31473038,-0.41079617,-0.42950666,-0.25200006,-0.46941593,-0.39823353,-0.5508461,-0.61367047,-0.51366085,-0.41643602,-0.3448824,-0.3185637,-0.34751257,-0.4001934,-0.47667575,-0.5437981,-0.6111014,-0.65226066,-0.69199485,-0.72853744,-0.78050375,-0.8213156,-0.84270656,-0.8677957,-0.91053057,-0.96512973,-0.28821036,0.23751657,-0.3221658,-0.46936566,-0.5550802,-0.6001089,-0.6799584,-0.6930272,-0.769379,-0.81906295,-0.8600602,-0.9481528,-0.9303229,-0.97402585,-0.97706664,-1.0536208,-1.1846685,-1.1543379,-1.1188276,-1.1591585,-1.2084751,-1.232726,-1.2864628,-1.2923579,-1.3246174,-1.3564566,-1.3911531,-1.4185622,-1.4410782,-1.4548459,-1.4669633,-1.484199,-1.5186409,-1.5373049,-1.5512586,-1.5899163,-1.6101949,-1.6517541,-1.711302,-1.7461318,-1.7963231,-1.7679871,-1.8200002,-1.824831,-1.3278047,-1.3139429,-1.4349506
+-2.0255597,-1.8676994,-1.8953903,-1.9921832,-2.0653548,-2.1150522,-2.2202783,-2.2370439,-1.596285,-1.4344878,-1.5054069,-0.58309835,-0.13185063,-0.5429666,-0.77688444,-0.91914296,-1.0396229,-1.08207,-1.1937613,-1.3119311,-1.4134896,-1.4864571,-1.3744193,-1.3094065,-1.4090427,-1.5141813,-1.5946033,-1.6946063,-1.7542894,-1.807618,-1.9205612,-1.7842302,-1.8262613,-1.8743808,-1.9369814,-1.985368,-2.0618277,-2.1075952,-2.1070938,-2.1302292,-2.1471515,-2.1810129,-2.1795378,-2.2677116,-2.252993,-2.2728896,-1.82498,-0.7868021,-0.45332667,-0.7307341,-0.9845178,-1.1306556,-1.2667136,-1.40381,-1.5114895,-1.5937457,-1.666187,-1.7380106,-1.8618102,-1.9111458,-1.8384733,-1.8020681,-1.6799114,-1.7431142,-1.8173656,-1.8806041,-1.6474905,-1.483691,-1.551204,-1.7024739,-1.7785397,-1.8420544,-1.9128814,-1.9584816,-1.9925594,-2.0512266,-2.0866725,-2.1261697,-2.1775231,-2.212295,-2.2285619,-2.2824593,-2.30801,-2.3290243,-2.363387,-2.338305,-2.3553178,-2.3592129,-2.3656335,-2.329479,-2.3346426,-2.182026,-1.913467,-1.9246475,-1.9895892,-2.04409,-2.0615988,-2.1009524,-2.1392431,-2.173214,-2.1800098,-2.2053664,-2.227972,-2.2510438,-2.2779326,-2.305809,-2.331633,-2.1673446,-1.961466,-1.7931819,-0.6827425,-0.61775315,-0.8718719,-1.0126914,-1.1700456,-1.2956322,-1.203537,-1.1584526,-1.0949057,-1.1094744,-1.2381618,-0.66442466,-0.4474303,-0.53432757,-0.6048932,-0.7657301,-0.74524677,-0.1672464,-0.10684472,-0.46485883,-0.7047179,-0.834378,-0.47380346,-0.6701417,-0.59550095,-0.4267074,-0.647119,-0.804827,-0.938787,-1.0617447,-1.1701485,-1.2401344,-1.3658155,-0.468777,-0.35936427,-0.6142529,-0.75745237,-0.8373718,-0.96434057,-0.9401062,-0.9846832,-1.079329,-1.1499435,-1.1540518,-1.1014245,-1.1532836,-1.2842212,-1.4115047,-1.4637566,-0.4337744,0.56356305,-0.09069194,-0.43701482,-0.5695046,-0.6340655,-0.50055146,-0.6288661,-0.7596873,-0.87646484,-1.0022119,-1.1187184,-1.2552214,-1.3607771,-1.4365687,-1.544225,-1.6433711,-1.6867367,-1.7191585,-1.752549,-1.4221015,-1.4258296,-1.410459,-0.81493956,-0.5185544,-0.7190491,-0.8254745,-0.924118,-1.024121,-1.1207631,-1.202418,-1.276571,-1.0424614,-0.84546065,-0.91715896,-1.0055175,-1.0830517,-1.1810181,-1.2623146,-1.3342307,-1.4025011,-1.4653211,-1.501122,-1.5327804,-1.6019154,-1.6584986,-1.6616657,-1.6792653,-1.6995254,-1.7318151,-1.775114,-1.8151958,-1.8246684,-1.8475072,-1.8716565,-1.9059265,-1.9753976,-1.8084674,-0.09188461,0.8796154,0.16520366,-0.20749609,-0.33326375,-0.4296896,-0.4672828,-0.53196126,-0.5791813,-0.62963367,-0.6897932,-0.73310006,-0.79604334,-0.879334,-0.92648375,-0.9045788,-0.94946027,-1.0106581,-1.050508,-1.0514325,-1.0565484,-1.0689228,-1.090244,-1.1462402,-1.1849419,-1.205474,-1.1782968,-1.1035537,-1.1510923,-1.1862568,-1.1605254,-1.101732,-1.131158,-1.1535301,-1.1713448,-1.1156167,-1.1143086,-1.1480839,-1.1701539,-1.1809814,-1.1957911,-1.2026527,-1.2207052,-1.2648985,-1.2874186,-1.219913,-1.2059002,-1.2386456,-0.21305466,0.34751457,-0.07292674,-0.24346282,-0.41322732,-0.41180402,-0.46023488,-0.52116257,-0.5308505,-0.54821384,-0.36827272,-0.4357502,-0.50907,-0.5659015,-0.6695986,-0.6903145,-0.6743359,-0.6133973,-0.70270026,-0.77556616,-0.81949455,-0.8606549,-0.91002667,-0.9608318,0.4557587,0.6293458,0.39245257,0.18394229,-0.026956253,-0.117147505,0.029715452,-0.13538261,-0.17450361,-0.32400754,-0.44413888,-0.39165354,-0.35461208,-0.33394605,-0.30801556,-0.33959618,-0.402894,-0.46979544,-0.49389613,-0.5544696,-0.62715316,-0.6821581,-0.7445542,-0.81373036,-0.87175375,-0.90056014,-0.949309,-1.0050437,-1.0637007,-0.006751802,0.3096034,-0.12078695,-0.32169116,-0.42012277,-0.4817518,-0.56217957,-0.61726,-0.7005356,-0.75770795,-0.8322745,-0.9050746,-0.9257158,-0.9624936,-0.99570334,-1.1603544,-1.2153969,-1.2257068,-1.2439675,-1.292464,-1.371372,-1.4275646,-1.4779074,-1.5243382,-1.5757961,-1.6013991,-1.6384617,-1.6604158,-1.6836083,-1.7029527,-1.734092,-1.752459,-1.7760327,-1.8089433,-1.82888,-1.8678285,-1.8724921,-1.8952708,-1.9292558,-1.9393651,-1.9741603,-1.9615791,-1.9903344,-1.9096158,-1.5548353,-1.5417819,-1.5989182
+-2.2831202,-2.0646436,-2.016073,-2.0294003,-2.087718,-2.1682649,-2.2241602,-2.212503,-2.0154307,-1.99754,-2.100453,-2.056262,-1.9051402,-1.9435877,-1.9961133,-2.086546,-2.1428027,-2.1644425,-2.1688044,-2.1912255,-2.22154,-2.25389,-2.3562498,-2.3327093,-2.3702142,-2.4012835,-2.4216874,-2.440331,-2.456397,-2.4939642,-2.503949,-2.5442753,-2.5336144,-2.5175266,-2.5118723,-2.5316882,-2.5514865,-2.5760067,-2.5924096,-2.607943,-2.5952911,-2.580208,-2.6216564,-2.6186557,-2.6797018,-2.6494749,-2.566936,-2.2068403,-1.7935874,-1.8037504,-1.8405962,-1.9243741,-1.9881413,-2.0343401,-2.0988202,-2.16874,-2.1911688,-2.2173078,-2.2186463,-2.3396006,-2.3248987,-2.2799706,-2.383079,-2.3756285,-2.3690445,-2.4423814,-2.4931595,-2.4779534,-2.475196,-2.497573,-2.5563319,-2.5599897,-2.5810556,-2.5598707,-2.562107,-2.5579374,-2.5592823,-2.5551953,-2.5493965,-2.557366,-2.649608,-2.7441494,-2.7042267,-2.6438906,-2.665739,-2.6423655,-2.5355687,-2.3695126,-2.36104,-2.3499048,-2.3938992,-2.4602325,-2.2820005,-2.2448778,-2.2206912,-2.2287564,-2.2813864,-2.3527937,-2.4135463,-2.4052906,-2.3911302,-2.4173553,-2.4430149,-2.4413896,-2.4417353,-2.450579,-2.493227,-2.5559673,-2.613348,-2.5928752,-2.589789,-2.6367068,-2.6515093,-2.6404881,-2.6390734,-2.584486,-2.5269256,-2.1545715,-1.9117188,-1.9650545,-2.0691051,-2.1361752,-2.0683422,-1.9384049,-1.7661496,-1.6219896,-1.6907647,-1.7660545,-1.848798,-1.9040651,-1.8377082,-1.5771468,-1.4625459,-1.4106028,-1.0681231,-0.74741375,-1.030142,-1.1800821,-1.3145223,-1.4310645,-1.521976,-1.4972479,-1.0144234,-0.75437534,-0.9690822,-1.0682412,-1.1246722,-1.2668688,-1.3442494,-1.2557828,-1.2754788,-1.3925631,-1.368813,-1.3857045,-1.3882691,-1.3752012,-1.3996093,-1.5366869,-1.589884,-0.7003678,-0.6424823,-0.89618325,-1.0483581,-1.1713915,-1.2520931,-1.3403101,-1.4150763,-1.4912901,-1.5279653,-1.5701404,-1.6010687,-1.643328,-1.7292383,-1.836638,-1.9230274,-2.0029407,-2.0028281,-2.0316505,-1.9914764,-1.3440456,-1.4004782,-1.4559513,-0.85116005,-0.603453,-0.8412006,-0.9719083,-1.1234418,-1.2364988,-1.327529,-1.3810664,-1.4627004,-1.5319997,-1.5779183,-1.596549,-1.628021,-1.6558511,-1.6665308,-1.7118404,-1.7589083,-1.8050884,-1.8313131,-1.8691802,-1.9149723,-1.9672781,-2.0032873,-1.9973694,-1.9953113,-2.0003684,-2.060173,-2.0939066,-2.1273425,-2.1259606,-2.1377816,-2.173246,-2.1811652,-2.2307503,-2.2671852,-2.2742198,-1.6045202,-1.2398279,-1.3134422,-1.3561038,-1.3920032,-1.4293845,-1.4747593,-1.5141525,-1.5426652,-1.5427539,-1.5306995,-1.5630296,-1.5808468,-1.6295216,-1.6438951,-1.651006,-1.6699952,-1.7067645,-1.7203616,-1.7018497,-1.6975859,-1.7454827,-1.7538304,-1.7357624,-1.7301304,-1.7709224,-1.6939888,-1.7259057,-1.6754801,-1.5182793,-1.4826531,-1.4671053,-1.5122211,-1.5679047,-1.5299186,-1.5033689,-1.504103,-1.5198939,-1.5574749,-1.5952482,-1.6155586,-1.5669464,-1.5872179,-1.6340401,-1.5725864,-1.591219,-1.5910511,-1.0338691,-0.44478884,-0.7707115,-0.8246183,-0.95643497,-0.94542545,-0.9598757,-1.0128086,-0.9306158,-0.7900659,-0.4742192,-0.6004733,-0.7976339,-0.860941,-0.95636773,-0.9955773,-0.9862367,-0.96381986,-1.0205644,-1.0693295,-1.116327,-1.1402061,-1.1554601,-1.2213918,-0.2854301,-0.2511369,-0.59322137,-0.6699712,-0.7741194,-0.8485366,-0.61078393,-0.68462,-0.7698487,-0.8447689,-0.9245518,-0.89963007,-0.81794447,-0.80843383,-0.78358424,-0.79297066,-0.84123546,-0.8899269,-0.90758276,-0.9435946,-0.99540246,-1.0263623,-1.081951,-1.1404161,-1.2101946,-1.2303293,-1.2470465,-1.2698562,-1.3259807,-1.1133668,-0.95312315,-1.05171,-1.1068585,-1.1204695,-1.224891,-1.3184191,-1.3372873,-1.3834934,-1.4008901,-1.4306962,-1.4711688,-1.4966106,-1.4634945,-1.5556931,-1.6043183,-1.6823671,-1.6715236,-1.683007,-1.7173917,-1.757199,-1.8199319,-1.856911,-1.8738158,-1.8888909,-1.9389794,-1.9863126,-2.0579677,-2.073495,-2.11583,-2.1275516,-2.1662893,-2.2136846,-2.2477193,-2.2763038,-2.3115618,-2.3444948,-2.3810542,-2.410411,-2.4403787,-2.4784098,-2.4571328,-2.4905655,-2.497184,-2.5211549,-2.5296159,-2.5315123
+-1.6932464,-1.5070608,-1.5244372,-1.644234,-1.741287,-1.8768005,-1.957555,-1.7730188,-1.7222543,-1.7906762,-1.7954237,-1.8573202,-1.8372068,-1.8751585,-1.9756074,-2.0570502,-2.0691361,-2.0751262,-2.1138752,-2.156608,-2.2161007,-2.1937246,-2.0436873,-2.1620226,-2.2014916,-2.266552,-2.284076,-2.29469,-2.315489,-2.3128371,-2.3238611,-2.2883394,-2.2886424,-2.3022835,-2.3350887,-2.325502,-2.3369606,-2.3796482,-2.3902743,-2.4029028,-2.4170732,-2.4402287,-2.4123993,-2.288383,-2.1608872,-2.2183247,-2.269114,-2.2512183,-2.2590883,-2.3034396,-2.3417573,-2.3753405,-2.3994308,-2.3943815,-2.3975925,-2.404647,-2.4237082,-2.430481,-2.469319,-2.3166819,-1.5262591,-1.2369568,-1.2402556,-1.3256315,-1.4085596,-1.4874189,-1.567343,-1.6462805,-1.7388841,-1.8335824,-1.66113,-0.79961157,-0.3973435,-0.5781368,-0.716074,-0.8824847,-1.0307578,-1.1835626,-1.337705,-1.428206,-1.5034184,-1.5743626,-1.6680788,-1.8264124,-1.8784819,-1.473175,-1.3949537,-1.4470177,-1.1989905,-1.0653853,-1.0144044,-0.46765697,0.7532253,0.19477178,-0.10780999,-0.29041806,-0.32819796,0.04479279,0.49172664,0.086746484,-0.15220958,-0.2972045,-0.29732502,-0.4106678,-0.6165606,-0.7561795,-0.8600625,-0.84471333,-0.3001117,-0.30110326,-0.3986922,-0.5207973,-0.6499902,-0.77933,-0.8917049,-0.8129083,-0.60052204,-0.6599607,-0.7402612,-0.85687923,-0.94853765,-0.9354642,-0.77193373,-0.764143,-0.022170443,0.3718704,0.1941827,0.006121639,-0.15612331,-0.23501734,0.13643655,0.084727556,0.16778041,0.2789858,0.65633845,0.81959796,0.27973637,0.021710362,-0.11581586,-0.18889871,-0.25933754,-0.36788213,-0.38930804,-0.24127682,-0.15627684,0.9393171,0.7162953,0.37746656,0.19787894,0.12960072,0.19021387,0.10350776,0.2933504,0.45262456,0.22558443,0.23411037,0.10664396,-0.021108095,-0.12717074,1.4362614,0.8687197,0.54256546,0.37538052,0.2855696,0.183479,0.09427151,-0.0018005632,-0.07542196,-0.18846096,-0.2682664,-0.34281805,-0.40945548,-0.45752952,-0.5047228,-0.57375205,-0.58606315,-0.64665645,-0.41247308,0.7793865,0.7165041,0.30097273,0.21141389,0.82233226,0.77089137,0.2995149,0.17440629,0.038989294,-0.079971015,-0.15736647,-0.22544168,-0.0006735809,0.2720213,0.059325088,-0.08161667,-0.17686099,-0.24898146,-0.33531722,-0.38658315,-0.44645017,-0.5022196,-0.5616257,-0.6104804,-0.64376837,-0.6697444,-0.7057294,-0.7502372,-0.78911334,-0.8246919,-0.85765857,-0.8799952,-0.9066637,-0.9447577,-0.97717685,-1.0022107,-1.0280813,-1.0476562,-1.0586534,-1.0239389,-0.8777731,-0.91915,-0.9467264,-0.9986147,-1.0272301,-1.0508667,-1.0636446,-1.061518,-1.0731007,-1.0922048,-1.0988202,-1.1151388,-1.1580801,-1.1596422,-1.1702055,-1.1662242,-1.197782,-1.1952496,-1.1934214,-1.2004296,-1.2154787,-1.2247467,-1.2468343,-1.2345562,-1.258775,-1.2821128,-1.2499588,-1.2798457,-0.58373857,0.087573975,-0.048258778,-0.116841346,-0.1714542,-0.24754153,-0.31157783,-0.30906755,-0.3674581,-0.42041564,-0.45384964,-0.4761638,-0.49840066,-0.5384106,-0.5577208,-0.60140973,-0.6051506,-0.61864436,-0.64329433,-0.4139467,0.11610831,0.017087609,-0.1316332,-0.17391498,-0.21674885,-0.28276953,-0.35445336,-0.30603066,-0.32853746,-0.16248249,0.03184915,-0.07866809,-0.16201426,-0.2122899,-0.27490327,-0.31327817,-0.3246132,-0.37002522,-0.44037068,-0.4697562,-0.4920441,-0.52459294,-0.52877724,-0.301192,0.042210203,-0.053365696,-0.03618407,-0.13848875,-0.22239295,0.11984305,0.173571,0.06274013,-0.036826562,-0.15355578,-0.17351118,-0.17112139,-0.18803559,-0.19885713,-0.20613825,-0.25596884,-0.3119158,-0.33775756,-0.37331635,-0.4217006,-0.4860193,-0.52612984,-0.5729566,-0.5869067,-0.6045027,-0.64487565,-0.6982355,-0.7044168,-0.721013,-0.57243276,-0.53284985,-0.6061417,-0.65543205,-0.7173302,-0.75123054,-0.77866983,-0.81937236,-0.8529304,-0.9129777,-0.9439953,-0.9735661,-1.0327454,-1.0550094,-1.1271646,-1.1169037,-1.1491207,-1.1815963,-1.2187103,-1.2354844,-1.2662766,-1.2888634,-1.3242912,-1.372669,-1.4024065,-1.4156886,-1.4395078,-1.4664595,-1.4743242,-1.5340269,-1.5836856,-1.6002762,-1.6196797,-1.649588,-1.671176,-1.685317,-1.6959891,-1.7154366,-1.7309345,-1.736343,-1.7750976,-1.7767216,-1.7882127,-1.8222177,-1.8119774,-1.8192993
+-1.5963374,-1.5137832,-1.5761644,-1.6733611,-1.802808,-1.939681,-2.1167648,-2.0277038,-2.098085,-2.134472,-2.1644702,-2.1947122,-2.1913667,-2.2364154,-2.2661548,-2.2870605,-2.287609,-2.3018343,-2.3061178,-2.3290272,-2.359095,-2.4330673,-2.0315092,-1.970093,-2.0082855,-2.0617685,-2.094154,-2.1293247,-2.1439042,-2.1669364,-2.1917179,-2.1984134,-2.226575,-2.2637863,-2.3225255,-2.3857045,-2.4092393,-2.4449496,-2.4553926,-2.4648662,-2.4765587,-2.4970663,-2.5955558,-2.5255103,-2.4338527,-2.3542895,-2.3799865,-2.406827,-2.4170332,-2.4262567,-2.4414363,-2.471588,-2.4799223,-2.523555,-2.5389318,-2.5394974,-2.5283525,-2.528655,-2.6148796,-2.5253901,-1.9356655,-1.5677333,-1.5403962,-1.6892833,-1.784994,-1.8393195,-1.9447188,-2.0212965,-2.082046,-1.9168278,-1.7319663,-1.7920702,-1.682187,-1.6640763,-1.7759522,-1.8684388,-1.9438874,-1.9526477,-2.044845,-2.0840337,-2.1429033,-2.1839306,-2.2909877,-2.2026658,-2.1403923,-2.1002398,-2.0008807,-1.7582049,-1.5065885,-1.5289278,-1.519941,-1.4060307,-0.22738303,-0.06601603,-0.50620955,-0.6618957,-0.5038539,-0.5032695,-0.43882132,-0.46311086,-0.63267934,-0.7489542,-0.59258157,-0.5585308,-0.6442126,-0.6515171,-0.73622406,-0.9115243,-0.8605999,-0.50796205,-0.27442697,-0.4366545,-0.6773434,-0.9042376,-0.897632,-0.50031406,-0.56570566,-0.6556473,-0.7080621,-0.3835774,0.09816398,-0.07905378,-0.07778202,-0.19742145,0.48575544,0.29513672,0.44119582,0.15551342,-0.14255433,-0.19337983,-0.19696821,0.2857601,0.603157,0.6830548,0.9270601,1.2154856,0.77223885,0.25533748,0.05321333,-0.037763882,0.13537714,-0.20205365,-0.1766405,0.3642313,0.63025224,0.7160288,0.5964018,0.35952008,0.18746018,0.0903378,0.49632174,0.47119647,0.7193813,0.54471964,0.28560007,0.10459761,-0.072062284,-0.21375154,-0.11555767,1.2931921,0.51193863,0.2401046,0.04718213,-0.057662923,-0.11934355,-0.19569637,-0.31331152,-0.3529504,-0.4701764,-0.55536234,-0.5977513,-0.6710607,-0.73416466,-0.7608899,-0.8018051,-0.8161348,-0.8307326,-0.62522995,0.74315625,0.54504097,0.32046545,0.25906807,0.85832703,0.702361,0.20533045,-0.040551167,-0.18985371,-0.29958194,-0.3821406,-0.43340808,0.3192838,0.65915215,0.2557955,0.0054933764,-0.15979941,-0.27765495,-0.33586562,-0.40916812,-0.47031498,-0.5372661,-0.59232455,-0.6717348,-0.7095523,-0.73434997,-0.7866888,-0.84923595,-0.91773915,-0.96314555,-0.99564844,-1.013396,-1.0608296,-1.114687,-1.1469654,-1.1767892,-1.2193859,-1.2596745,-1.2753363,-1.2903652,-1.3710346,-1.3349333,-1.3579034,-1.3924795,-1.359937,-1.3182242,-1.2060375,-1.1706904,-1.1064346,-1.1252153,-1.1423129,-1.1517379,-1.2342527,-1.2411968,-1.212636,-1.2293305,-1.2815785,-1.3089147,-1.267916,-1.2912914,-1.2495127,-1.264529,-1.3083117,-1.3575238,-1.3669491,-1.3498418,-1.3119245,-1.3007584,-0.17788574,0.11611481,-0.0040784925,-0.23440726,-0.30669776,-0.35094917,-0.41591728,-0.424831,-0.47735283,-0.5293296,-0.5654814,-0.58614427,-0.6180773,-0.68256366,-0.7830571,-0.8148199,-0.82055473,-0.7821161,-0.83940923,-0.74184763,-0.6944363,-0.77236766,-0.816162,-0.8226468,-0.8162631,-0.85899967,-0.9088626,-0.6601575,-0.71639526,-0.65246296,-0.6157024,-0.65405035,-0.6749798,-0.7195437,-0.763831,-0.78981125,-0.7880366,-0.79694545,-0.8447883,-0.8849916,-0.9057822,-0.96577287,-0.98469853,-0.84878355,-0.78858256,-0.7776832,-0.7864517,-0.8649292,-0.8658687,-0.60878104,-0.43358916,-0.49974322,-0.60221136,-0.6795218,-0.69046646,-0.66721725,-0.7113106,-0.73669857,-0.6833918,-0.6436093,-0.69362664,-0.72430235,-0.7822623,-0.8478285,-0.874688,-0.9284537,-0.9860047,-1.0278331,-1.0804143,-1.1140144,-1.1701792,-1.238531,-1.3244119,-1.2802683,-1.3115712,-1.3167906,-1.3274333,-1.3602749,-1.4169369,-1.3570809,-1.2868537,-1.3111572,-1.3681993,-1.4074712,-1.4519548,-1.4635737,-1.5105846,-1.5766683,-1.5844647,-1.5969946,-1.6506473,-1.6245804,-1.5634357,-1.5849907,-1.5868948,-1.6544225,-1.7167655,-1.7204528,-1.7471794,-1.7727041,-1.7663822,-1.7953755,-1.8192552,-1.855704,-1.8780226,-1.8919699,-1.9226913,-1.968224,-1.9663608,-1.9684958,-2.0001547,-1.9709847,-1.9765034,-1.9908932,-2.009071,-2.016011,-2.0098965,-2.0100417,-2.0383966
+-0.57440275,-0.9461298,-0.970639,-1.0904057,-1.2410038,-1.4920528,-1.6525509,-1.6565834,-1.7142675,-1.7810085,-1.8120792,-1.8634895,-1.8706796,-1.8877134,-1.9297299,-1.9966744,-2.0183032,-2.0341616,-2.046844,-2.0744202,-2.1051867,-1.9827116,-1.4138519,-1.4552271,-1.5678842,-1.6511986,-1.7407498,-1.7962034,-1.8419346,-1.8801085,-1.9080337,-1.9263142,-1.9410039,-1.9433551,-1.9923303,-2.0408964,-2.087308,-2.1412308,-2.1674378,-2.1858442,-2.1916475,-2.1943603,-2.26981,-2.2260377,-2.2031586,-2.1156354,-2.0830722,-2.1038866,-2.1343355,-2.166185,-2.1868286,-2.2246513,-2.2416873,-2.2696142,-2.2827365,-2.304175,-2.2944856,-2.295517,-2.3616168,-2.2248576,-2.2404714,-2.2176633,-2.0455961,-2.0311277,-2.0874448,-2.1190991,-2.1638439,-2.1940885,-2.2071118,-2.0406065,-1.2360481,-0.8068054,-0.8634355,-0.97692573,-1.1187966,-1.1626971,-1.2185029,-1.2083029,-1.3482211,-1.4318976,-1.5656648,-1.4139695,-1.050016,-0.4602983,0.17649601,0.09225194,-0.17194991,-0.02858936,0.5315373,0.27489376,0.5323465,0.8225614,0.82412285,0.95913935,0.54070115,0.28743368,0.20529372,0.13303916,0.40329337,0.88838947,0.74589807,0.5550382,0.6838093,0.70386106,0.46674013,0.29370752,0.3791765,0.2869728,0.18137036,0.17663752,0.25129658,0.15694538,0.026768126,-0.11523025,-0.23765431,0.425527,0.88774055,0.632594,0.5245844,0.55087626,0.91867065,0.891537,0.9054902,0.61507136,0.8092997,0.99375975,0.55429506,0.33992925,0.365292,0.49863476,0.8546219,1.101891,1.3145149,1.4173064,1.1408734,1.6616888,1.1175357,0.75518036,0.7363355,0.67098737,1.3016037,0.8528787,1.0736744,1.620435,1.3709333,1.351441,1.0529617,1.3605416,1.2594788,0.95009685,1.3577247,1.0844543,0.9993024,0.9968411,0.8100842,0.62595713,0.54812336,0.41968453,1.0889208,1.0478873,0.62378705,0.41423473,0.36693722,0.37874168,0.39943165,0.2776364,0.28835076,0.2504571,0.117967054,0.010933097,-0.03849649,0.19105677,0.37406307,0.70652366,0.67225766,0.9208461,0.6138327,0.60631895,1.0373142,0.87769365,0.6961521,0.4823385,0.45292425,0.47050357,0.31077972,0.14156716,0.061162803,0.01947134,-0.03441321,-0.096795395,-0.07559468,0.6842778,0.7132386,0.43916383,0.26836717,0.13453622,0.03531992,-0.047407575,-0.0023583323,0.05810133,-0.07086651,-0.12577505,-0.17777057,-0.21173726,-0.25833872,-0.2634876,-0.2901158,-0.3006491,-0.27308056,-0.29435658,-0.34526163,-0.3942276,-0.42893207,-0.46300128,-0.4876153,-0.507539,-0.53688,-0.52856445,-0.5639348,-0.6227083,-0.64111656,-0.63629824,-0.5903548,-0.50864244,-0.32697332,-0.2674305,-0.25656527,-0.31722787,-0.33788532,-0.36908403,-0.44232258,-0.46455535,-0.40993118,-0.41763875,-0.47083378,-0.47401935,-0.42516723,-0.42241597,-0.43320683,-0.44906622,-0.4961493,-0.5503778,-0.5913653,-0.55908537,-0.5048796,0.056159455,0.72194386,0.6269144,0.49242413,0.31063443,0.21486802,0.12560669,0.122268364,0.08000234,0.007886875,-0.079278894,-0.15383637,-0.19422583,-0.22695725,-0.2945076,-0.38039643,-0.38360915,-0.35503724,-0.37509233,-0.41572106,-0.40950117,-0.22205135,-0.08148904,-0.1627968,-0.2314144,-0.28068984,-0.3732746,-0.324951,0.25751713,0.3625094,0.2160251,0.14474005,0.033292275,-0.07820399,-0.18079756,-0.23980685,-0.26324162,-0.2546018,-0.31583694,-0.38195485,-0.45970237,-0.49160868,-0.5251075,-0.558329,0.023450028,0.26004866,0.23914312,0.19320291,0.17144732,0.1110356,0.20469956,0.26229063,0.14228381,-0.03922624,-0.16397285,-0.17343861,-0.18303739,-0.20272402,-0.12663366,-0.040157285,-0.055527676,-0.18081222,-0.22014995,-0.26401153,-0.33571708,-0.4084988,-0.47832704,-0.54398054,-0.5924415,-0.607329,-0.6596571,-0.69659424,-0.75603664,-0.7984846,-0.82719684,-0.82565117,-0.78834206,-0.5541672,-0.51849115,0.07909277,0.23131613,0.034577657,-0.08633233,-0.22097354,-0.37834466,-0.48026693,-0.54327774,-0.63700145,-0.75287694,-0.8320602,-0.8573186,-0.8769464,-0.013550451,0.18652195,-0.05378919,-0.24110927,-0.27668947,-0.4080113,-0.3956915,-0.34891045,-0.44324747,-0.56296104,-0.6726713,-0.78115344,-0.89553595,-1.0132457,-1.0757154,-1.1310787,-1.1966727,-1.2821726,-1.3505931,-1.4578168,-1.5259614,-1.5529796,-1.5857729,-1.6287327,-1.6666234,-1.7057605,-1.7270253,-1.7683203
+-0.88144356,-0.92269367,-0.8619455,-0.9788044,-1.0978491,-1.2978711,-1.3789498,-1.4853889,-1.5664184,-1.5962915,-1.6242654,-1.6975198,-1.7204125,-1.7053272,-1.7848601,-1.8480484,-1.8657591,-1.8803341,-1.8815742,-1.8970463,-1.904664,-1.9091251,-1.7104185,-1.8449281,-1.9069617,-1.9572213,-1.9779863,-2.0054636,-2.034154,-2.0364149,-2.045748,-2.0553405,-2.0615847,-2.0431752,-2.0544944,-2.0959094,-2.1630378,-2.1984568,-2.2140062,-2.19897,-2.2001715,-2.2066438,-2.2747948,-2.164423,-2.1491683,-1.1071866,-0.64173555,-0.82564217,-1.0178133,-1.1398598,-1.2316887,-1.3233812,-1.4297493,-1.5017085,-1.5480062,-1.4065111,-1.5327291,-1.6032075,-1.6452752,-1.6945806,-1.613427,-1.285586,-1.2895994,-1.3826208,-1.4420078,-1.4905195,-1.5508016,-1.6226053,-1.4591589,0.052171562,0.48073673,0.08957571,-0.1972217,-0.3805267,-0.5262486,-0.63141906,-0.67923445,-0.7807999,-0.8742227,-0.95018286,-1.0354877,-1.0369669,-0.7182696,-0.395976,0.30745253,0.5088022,0.35877097,0.70505965,0.71048295,0.60258746,0.867141,0.7953591,0.7440983,0.6615907,0.80126804,0.6562589,0.41971824,0.41455972,0.94920975,0.9040657,0.6979653,0.6922064,0.57165277,0.48840302,0.448613,0.67758024,0.6854865,0.4467398,0.55883586,0.6536983,0.62279683,0.7241374,0.5677507,0.47256583,0.8633471,1.0255871,1.3021178,1.0815994,1.0044236,0.948388,0.92544025,1.2082993,1.2680407,1.070036,1.188142,1.062947,0.7805439,0.7186249,0.5621458,0.49564093,1.0812674,0.783338,1.068043,0.74164134,1.2191703,1.6603687,1.068024,0.8641333,1.1510649,1.2321635,1.6877726,1.4388993,1.2734916,1.0464145,1.0250816,1.3319173,1.5924486,1.5346477,1.0140702,1.11201,1.133311,1.0384917,0.82910347,0.7185137,0.5639444,0.42558742,0.3184283,0.30263257,1.0723691,0.8188069,0.5955106,0.46493003,0.6041949,0.8172771,0.79641986,0.6080356,0.49625647,0.49015903,0.37239945,0.2523864,0.5376796,1.1584023,1.1517378,0.8270301,0.61572146,0.5652797,0.87812674,1.0765977,0.7727896,0.5631962,0.48043764,0.95161724,1.163771,0.85903853,0.57577586,0.39303502,0.29171574,0.23716767,0.16773377,0.12030634,0.21035735,0.65238756,0.5356615,0.3419663,0.21399006,0.10492641,0.016138632,-0.028561931,-0.023536503,-0.06673598,-0.041795578,0.10544667,0.043273214,-0.011714574,0.27492124,0.48586345,0.26016966,0.112323165,0.04171105,-0.0057747215,-0.08025293,-0.12545633,-0.15945491,-0.20517011,-0.23326437,-0.2768558,-0.31993392,-0.33444083,-0.3675003,-0.4124784,-0.43726766,-0.41522077,-0.38904917,-0.38596886,-0.3616178,-0.3471167,-0.35302123,-0.3645525,-0.35757178,-0.36019588,-0.39497405,-0.39853337,-0.35799253,-0.37279284,-0.39694762,-0.42434937,-0.38834214,-0.39053473,-0.40115023,-0.42450395,-0.48815227,-0.5209024,-0.54115677,-0.5093699,-0.44694752,-0.42338407,0.45195055,1.1253899,1.0843108,0.94409007,0.86734843,0.72833025,0.61381656,0.4908644,0.37460893,0.31540155,0.23194407,0.18216349,0.13047825,0.022633936,-0.07810057,-0.12290947,-0.10171914,-0.14235981,-0.18258245,-0.20929955,0.14213079,0.32617572,0.1367638,0.08683321,0.048347045,-0.07276725,-0.110099345,-0.03036983,0.5172136,0.37198567,0.33575314,0.28044397,0.104112774,-0.040749043,-0.11690767,-0.08831066,-0.0524238,-0.0913388,-0.19389178,-0.27822036,-0.30430108,-0.29628327,-0.35862982,0.14984731,0.37299544,0.3095339,0.33408862,0.37124604,0.3438839,0.31733364,0.24446993,0.13447718,-0.04634558,-0.16775721,-0.18050613,-0.188547,-0.15039167,-0.026953515,0.07045716,-0.04824045,-0.18885864,-0.17975724,-0.19907063,-0.2742068,-0.33002952,-0.38501933,-0.4334147,-0.45539114,-0.11618674,0.23965572,-0.031624798,-0.18332449,-0.31690928,-0.40252715,-0.35062787,-0.13995494,-0.018361822,-0.13927537,0.74673295,0.63383037,0.50942856,0.35864112,0.11473073,-0.0562813,-0.1074111,-0.22452544,-0.32781187,-0.4244454,-0.4793496,-0.49702525,-0.5238748,-0.031355005,0.117075965,-0.10297449,-0.23192558,-0.2794148,-0.36698696,-0.4303705,-0.48937124,-0.47191572,-0.49648353,-0.58655804,-0.6642287,-0.7157235,-0.7903371,-0.84572804,-0.90140164,-0.996966,-1.0925386,-1.1408424,-1.2829626,-1.372532,-1.3774216,-1.4616532,-1.5044175,-1.5727779,-1.6269749,-1.617608,-1.6617197
+-0.6068669,-0.64829767,-0.73593986,-0.9644072,-1.1896777,-1.4553338,-1.5460227,-1.5688069,-1.5577877,-1.5281695,-1.5398415,-1.5858729,-1.6175317,-1.6370246,-1.6779273,-1.6966128,-1.7120478,-1.7250165,-1.748066,-1.7868438,-1.840417,-1.8840683,-1.944917,-1.9587371,-1.9585682,-1.9662102,-1.96189,-1.979027,-1.9733087,-1.9609275,-1.9740454,-1.9919915,-2.0425076,-2.0465002,-2.0913122,-2.1369562,-2.2085545,-2.071008,-1.8167679,-1.8645848,-1.9123023,-1.9441068,-2.0300286,-2.017409,-2.0195277,-1.9897416,-1.9904382,-1.9880075,-1.9963486,-2.0009599,-2.025837,-2.0629811,-2.0953703,-2.124958,-2.1652474,-2.1743898,-2.1839006,-2.1961527,-2.1971974,-2.222184,-2.0886202,-1.7977198,-1.8527555,-1.9031973,-1.948627,-1.9973962,-2.0102217,-2.0266378,-2.0397046,-2.034604,-2.0222142,-2.033889,-2.0572052,-2.0846696,-2.1072896,-2.1232853,-2.0254877,-1.8971435,-1.7799265,-1.7275646,-1.7639076,-1.7989249,-1.0825515,0.7422614,0.85889274,0.597456,0.9030131,1.0820442,1.3604125,1.3869953,1.3492877,1.2415977,1.0317609,1.1522002,0.9949622,0.85694164,0.9442277,0.8969145,0.7871734,0.758494,0.6238055,0.93801093,1.0432234,1.1167333,1.0983388,1.0614451,1.1678951,1.2281113,1.1445391,1.3052279,1.0987552,1.1190474,1.1165805,1.7593534,1.9093593,1.737902,1.3812072,1.4749027,1.8058069,1.5454485,1.5757109,1.2979054,1.4340909,1.5222472,1.1611112,1.0250701,0.893273,0.79908615,0.7571363,1.6549083,1.7332529,1.3274548,1.1522632,1.065662,1.1486235,1.0351257,1.0622203,1.2682985,1.3294985,1.696533,1.8022794,1.4745115,1.5205741,1.5771902,1.8800018,1.7276323,1.5504425,1.5020516,1.412617,1.4963431,1.2973462,1.5868626,1.308949,1.1441817,0.9943061,0.96712446,1.2772473,1.2383367,1.4452381,1.5940847,1.1429858,1.0493537,1.609391,1.4819323,1.2845125,1.135694,1.0118263,1.0160398,1.140024,1.042873,1.5138154,1.4466677,1.373588,1.1125262,1.1836745,1.2870183,1.3036308,1.5242031,1.2520301,1.065064,0.99646664,1.4151233,1.6102469,1.2629832,1.05526,1.1528392,1.1664307,0.98119366,0.87940365,0.8010826,0.736861,0.7394967,0.7794558,0.66658217,0.5793516,0.511539,0.45497248,0.44164637,0.44696465,0.40287834,0.50685954,0.67424965,0.6168008,0.5558701,0.54876447,0.753394,0.6320008,0.51023185,0.43587878,0.37058905,0.30797225,0.2652892,0.23548163,0.20987834,0.18976484,0.14456512,0.058666814,0.027702335,0.0023324825,0.00423095,-0.0026815794,-0.02980427,-0.033478674,0.18222627,0.37993592,0.26138896,0.20540331,0.1680192,0.12522176,0.07021706,0.024415169,0.019351903,-0.02569392,-0.02956162,-0.03843298,-0.037992444,-0.056274172,-0.0865418,-0.08767727,-0.10867043,-0.11112936,-0.112864405,-0.117008954,-0.09684527,-0.08705163,-0.05856016,0.8587372,1.2540903,1.0854352,1.0243859,0.9357811,0.84234935,0.69259894,0.5902776,0.53024983,0.43356088,0.3549053,0.25383386,0.2122105,0.1492075,0.10006842,0.05993246,0.0207914,-0.014141079,-0.047352176,-0.07039349,0.17864361,0.4339081,0.29291555,0.23329239,0.15861057,0.08213352,0.014119614,-0.021533173,0.32294273,0.5680423,0.42789653,0.32542342,0.24532084,0.15666376,0.074758425,-0.00086707994,-0.040839832,-0.095682904,-0.15156265,-0.19963074,-0.22290368,-0.25047776,-0.27547947,-0.1751325,0.023483608,-0.0024146251,-0.0115094595,-0.017148267,-0.05110499,-0.05835448,-0.08317806,-0.13613294,-0.17658491,-0.2109412,-0.22197172,-0.24679042,-0.28291735,-0.24770392,-0.22582985,-0.24242514,-0.14602752,-0.14828657,-0.19926782,-0.23220165,-0.2887398,-0.34057578,-0.4048514,-0.47562513,-0.5373209,-0.6132762,-0.6591482,-0.6878157,-0.7520734,-0.78609514,-0.7847748,-0.7557905,-0.68408203,-0.6612439,1.042858,1.1251676,0.76046395,0.58595777,0.45803103,0.333583,0.16747,0.04372691,-0.049011808,-0.1403734,-0.21907437,-0.32571274,-0.37075213,-0.2371505,-0.11736113,-0.2622567,-0.37661612,-0.43908817,-0.5236335,-0.6290655,-0.6810458,-0.74689287,-0.7850864,-0.85000515,-0.88413477,-0.94719887,-1.0051111,-1.0513655,-1.1046289,-1.159284,-1.2200483,-1.2720867,-1.3489875,-1.3895831,-1.4441339,-1.4533218,-1.5027366,-1.5271533,-1.5377042,-1.5525699,-1.5642557
+0.91997385,0.77364755,0.2992047,-0.015212465,0.20561947,0.33282876,0.15673846,-0.023205455,-0.106365606,-0.13137105,-0.19114937,-0.22874053,-0.2890867,-0.24235229,0.00260837,0.40713534,0.20515868,0.058988232,-0.037785042,-0.09238964,-0.16268142,-0.30081332,-0.37732184,-0.4125597,-0.507854,-0.42525226,-0.18086538,-0.2495247,-0.40560883,-0.46669972,-0.5284116,-0.5652182,-0.62712085,-0.74419856,-0.86519253,-0.8885481,-0.9887839,-1.0600874,-1.0116284,0.45318592,1.4839972,0.94222933,0.7203914,0.44301564,0.24030839,0.05616432,-0.15028173,-0.3283315,-0.4634154,-0.55761445,-0.6395078,-0.65501964,-0.57615006,-0.635581,-0.6462598,0.44806635,0.6679696,0.5295105,0.38756818,0.2953478,1.2649379,0.82555854,0.50183845,0.37593722,0.13220257,0.007798858,-0.10289368,-0.2675345,-0.39571893,-0.47632045,-0.46147776,-0.2915891,0.550656,0.16459255,-0.08870861,-0.20109956,0.7377094,0.4765587,0.19052197,0.826637,0.49746484,0.12191202,1.1583452,0.7100284,0.6457771,0.9182013,0.902035,0.8708967,0.5346986,0.3960819,0.3972997,0.26435056,0.24729012,0.25732055,0.19318491,0.36422056,0.1606494,0.28826874,0.041972112,0.1722596,0.18766864,0.6082667,1.4400082,1.1899853,0.95184493,0.76343066,0.61813664,0.5270452,0.30795088,0.11530748,-0.031801395,-0.19529362,-0.33219725,-0.38697153,-0.4557315,-0.5649575,-0.57881284,-0.45363122,-0.56774294,-0.6087785,-0.53703797,-0.47457814,-0.3860674,-0.56155574,-0.48689556,0.14620115,-0.1950791,-0.37197375,-0.48037025,-0.071714714,0.11113717,0.119978696,0.087836385,-0.16633882,-0.27427122,-0.33477297,-0.119830996,-0.25099516,-0.3461181,0.013209071,-0.18028979,-0.36660343,-0.5168902,-0.6411015,-0.701666,-0.4196196,-0.3204397,-0.23877375,-0.24999133,-0.3985209,-0.49266323,-0.58744895,-0.6562175,-0.7449433,-0.78352034,-0.83604383,-0.9330789,-0.54568535,0.10978545,0.18026026,0.20033787,0.5027152,0.15253277,-0.013754714,-0.010572504,-0.124829054,-0.284598,-0.41655123,-0.48858804,-0.5435922,-0.5165764,-0.6257175,-0.70526934,-0.6905074,-0.59272516,0.21335497,0.88789487,0.5761224,0.18343316,-0.033218358,-0.15851323,-0.2525382,-0.34468508,-0.4338761,-0.44742155,0.36134666,1.228406,1.4644495,1.2023551,1.0277884,0.99788237,1.0558987,1.16015,0.9305101,0.7851906,0.7437839,0.71831155,0.4310788,0.3315322,0.30924702,0.21288215,0.12269236,0.13764659,0.1405826,0.21298377,0.38673234,0.20334631,0.18105997,0.20518926,0.11814301,0.07794741,0.058609877,0.0070412196,0.27689397,0.5552363,0.33534616,0.23191904,0.10116254,0.023269001,-0.027238648,-0.08645433,-0.11341269,-0.1321472,-0.19349146,-0.23517324,-0.20891178,-0.22663428,-0.21796471,-0.14904217,-0.03723364,-0.15110914,-0.07510245,0.02002022,0.12298107,0.13682018,0.11558187,0.15237974,0.19405438,0.14099313,0.13795131,0.1375814,0.18863215,0.46264082,0.5155234,0.5002884,0.47042227,0.47407615,0.4858734,0.6817316,0.7660365,0.7866953,0.7496332,0.73292077,0.7392106,0.7484802,0.7893191,0.7972882,0.80342025,0.75798476,0.7802655,0.78794825,0.79115397,0.72809803,0.72315234,0.7642518,0.743302,0.74706745,0.8010429,0.7944668,0.8591733,0.8146863,0.7938132,0.8316738,0.8226941,0.8578849,0.8757191,0.9102732,0.91099435,0.9285256,0.92200744,0.91752744,0.9172001,0.9257631,0.9200623,0.9680271,0.9703901,0.9673146,0.96288896,0.9316581,0.9011611,0.87376493,0.8749896,0.8725322,0.90209293,0.9288683,1.0073717,1.0233186,1.0251501,1.0697954,1.0772755,1.0594125,1.0581548,1.0548339,1.0580727,1.1422791,1.1487039,1.1488,1.1060848,1.0597845,1.0293417,1.0268645,1.0054777,1.0576509,1.0982289,1.0834723,1.0926132,1.0839145,1.0985307,1.0957985,1.1059178,1.1204817,1.1836088,1.3074746,1.3059647,1.3443321,1.3430401,1.3733337,1.4470395,1.4457808,1.3845974,1.3659307,1.3403363,1.3490566,1.318419,1.3248154,1.3389664,1.3106992,1.3442383,1.4262087,1.4911855,1.572684,1.4590645,1.3854592,1.3392304,1.2818463,1.2184639,1.2803525,1.3154869,1.405702,1.5802678,1.8210659,1.858366,2.0694842,2.2682128,2.2052617,1.9137157,2.0616214,2.2678916,2.4460135,2.3870072,1.8933167,1.4558561,1.051295,0.5986924,0.5426327
+-0.37640798,-0.6609715,-0.9416495,-1.0911505,-1.0944813,-1.1132637,-1.133983,-1.0964155,-1.0561733,-1.1011376,-1.1101601,-1.0012375,-1.073441,-1.1152761,-0.06617378,0.36879006,0.03242111,-0.16269349,-0.23036455,-0.39274243,-0.5166323,-0.64654464,-0.7426417,-0.40187755,0.38902187,0.42158183,0.43083185,0.2723757,0.022542175,-0.049970794,-0.23280121,-0.39941984,-0.5763748,-0.72657317,-0.8752368,-1.0179564,-1.0686779,-1.1199875,-1.1514266,-0.10762553,0.52771175,0.1284111,0.0028736927,-0.15600055,-0.34655493,-0.4986223,-0.6242804,-0.72219944,-0.8071602,-0.88830256,-0.95345104,-0.97947925,-1.0178728,-1.1510144,-0.89609194,-0.76114035,-0.85670257,-0.7476678,-0.7925618,-0.32634145,0.4551671,0.09555344,-0.3001029,-0.5394083,-0.75839114,-0.9245993,-1.0190113,-1.102751,-1.1745355,-1.2498728,-1.3434441,-1.0892564,0.29525846,-0.06138886,-0.1669905,-0.39839628,0.44557747,0.08958314,-0.22501384,0.32744163,0.07026452,-0.3005787,-0.113178745,-0.26831782,-0.47515944,0.95755035,0.6700936,0.34038234,0.051374946,-0.20953979,-0.33686447,-0.37423873,-0.32955155,0.12362391,-0.12290561,-0.18031083,-0.3793463,-0.42333776,-0.652592,-0.62355494,-0.40775338,-0.08885655,-0.25006256,-0.48767072,-0.11612661,-0.19463252,0.15365557,0.49506438,0.031311836,-0.11766712,-0.37977403,-0.6194796,-0.84333384,-0.9360823,-1.0586382,-1.2306299,-1.3057028,-0.33406192,-0.2284924,-0.5502484,-0.7272223,-0.85227036,-0.9020591,-1.0507777,-1.172585,-1.2850994,-1.3901983,-1.452763,-1.4938502,-1.0024961,-0.8334,-0.9873966,-1.1331457,-1.2776582,-1.3156624,-1.4711852,-1.3034527,-1.1579621,-1.3045622,-1.4209862,-0.76390487,-0.7832171,-1.0124122,-1.1941288,-1.3532958,-1.4331126,-1.4305222,-1.5155549,-1.5643096,-1.6808839,-1.6957073,-1.723027,-1.7367249,-1.7500612,-1.7753482,-1.8511178,-1.8937907,-0.98618376,-0.4163,-0.32276496,-0.5142734,-0.6081177,-0.7016537,-0.88698494,-0.98380834,-1.0143814,-1.078367,-1.1448623,-1.1470742,-1.2646217,-1.3994732,-1.528089,-1.6278603,-0.8082305,0.09965262,0.5276866,0.44390488,0.17526357,-0.20299645,-0.41905332,-0.5645211,-0.6547515,-0.74370426,-0.85129565,-0.6568643,0.17396607,0.40223265,0.43816423,0.21583949,0.053522993,0.0074913464,-0.15748176,-0.33962727,-0.4339335,-0.47839,-0.45860282,-0.5124344,-0.6551736,-0.7353489,-0.7448065,-0.81575537,-0.8744163,-0.8674551,-0.8684355,-0.9328121,-0.96730304,-0.92453444,-0.8999697,-0.9525517,-0.95160306,-0.99360144,-1.0381856,-1.0096052,-0.37058517,-0.011270393,-0.3077448,-0.42656,-0.52011615,-0.57624716,-0.6079132,-0.6740329,-0.706492,-0.7163137,-0.79184794,-0.78136325,-0.7749753,-0.81074595,-0.8359281,-0.8306016,-0.8362838,-0.92352986,-0.90134114,-0.85535973,-0.8012368,-0.80465466,-0.8184186,-0.8034126,-0.72758895,-0.6944963,-0.64502096,-0.629063,-0.5894548,-0.52621794,-0.5071238,-0.5206421,-0.5211831,-0.49708623,-0.50544864,-0.21978208,-0.09002641,-0.0949835,-0.10733576,-0.090424955,-0.044964332,-0.05237968,-0.07246053,-0.14000805,-0.15360175,-0.15482731,-0.20984153,-0.18698485,-0.17918769,-0.25250757,-0.25197852,-0.21991347,-0.28019705,-0.27661052,-0.20608787,-0.228373,-0.16193475,-0.23062792,-0.26495096,-0.27370435,-0.25498772,-0.30288327,-0.26606515,-0.25198668,-0.23142283,-0.2511636,-0.25319138,-0.27374277,-0.2416239,-0.24445876,-0.25111738,-0.23505335,-0.1507333,-0.14874671,-0.121562734,-0.15684114,-0.18693513,-0.22993265,-0.25752187,-0.24792297,-0.27412128,-0.2927683,-0.30158415,-0.3164131,-0.32026023,-0.32744253,-0.3564035,-0.3230499,-0.34174407,-0.34047878,-0.31036168,-0.30431926,-0.30538708,-0.30160615,-0.26009744,-0.22724153,-0.28218544,-0.3291835,-0.3398488,-0.26268527,-0.24727258,-0.2877458,-0.2575688,-0.35980847,-0.34681758,-0.35236275,-0.3469701,-0.308146,-0.21318772,-0.18172614,-0.21992145,-0.19870438,-0.14950123,-0.093628466,-0.018196724,-0.09318222,-0.1252111,-0.0775713,-0.18312378,-0.2174754,-0.1525204,-0.21533391,-0.25289428,-0.21909484,-0.20292222,-0.09794465,0.069017276,0.024769265,-0.0715127,-0.13684285,-0.14463818,-0.17465875,-0.18627526,-0.16591068,-0.13732256,-0.055513393,0.1848497,0.23845498,0.5118002,0.5032982,0.29462832,0.22372232,0.27407452,-0.05951115,-0.539555,-0.6599077,-0.7503997,-0.76768184,-0.72952163,-0.7172661,-0.68967515,-0.66806203
+-0.019809343,-0.36445573,-0.4794177,-0.5833469,-0.16440468,0.16039859,0.016884822,-0.14699468,-0.27467218,-0.3467288,-0.47575593,-0.48413488,-0.56814957,-0.63736355,-0.43070593,0.072264016,-0.056494832,0.19480537,0.98353434,0.47121507,0.18450075,-0.016174465,-0.11920661,1.3128386,1.2459216,0.8204239,1.0249786,1.0683537,0.7533274,0.5393413,0.31148037,0.12739237,0.00035601854,-0.12880732,-0.25392717,-0.3373077,-0.46943307,-0.6241952,-0.6533525,0.15157782,1.3343476,0.6602221,0.71325886,0.42135936,0.17995855,0.035903063,-0.1325378,-0.29870528,-0.384169,-0.41402608,-0.44865733,-0.42831752,-0.45149422,-0.62095225,-0.060966015,0.3445021,0.013083395,-0.15869083,-0.31535265,-0.17311203,0.8466097,0.4904983,0.11876449,-0.042314112,-0.20229292,-0.3137977,-0.41770822,-0.5335862,-0.5876193,-0.6496822,-0.39092147,-0.13360558,0.11681245,0.17713541,0.7300025,0.262117,0.052542683,0.061628405,0.3216952,0.37620497,-0.036792014,-0.1884089,-0.34994686,-0.49841338,-0.5610429,-0.6977337,-0.8850892,-0.95639277,-1.0375013,-1.0988581,-1.1732283,-1.2614303,-1.1329465,-0.8386771,-0.9583769,-1.1435082,-1.2649567,-1.0312618,-1.1830472,-1.2299154,-1.1936092,-0.3613777,-0.25064433,-0.5743136,-0.70583,-0.7278227,0.092307016,0.09089859,-0.24444407,-0.40628308,-0.6598894,-0.75522804,-0.9044411,-0.97898793,-1.1227393,-1.1257149,-0.9985827,-0.48708412,-0.34071606,-0.5176146,-0.7112148,-0.82775605,-0.7337967,-0.68335783,-0.803856,-0.9902628,-1.122889,-1.1844783,-1.1836727,-1.0319543,-0.8788302,-0.9774611,-1.0476753,-1.2104537,-1.191597,-1.2842531,-1.2465357,-1.2154765,-1.2877687,-1.3013446,-0.03882992,0.08796093,-0.3207535,-0.5326685,-0.7035277,-0.77352655,-0.81609464,-0.92416614,-1.0327582,-1.0866482,-1.1066167,-1.1558793,-1.1849157,-1.2183028,-1.2359146,-1.2687973,0.21372253,0.8823041,0.25850296,0.15971005,0.0008042343,-0.09999856,-0.1556936,-0.3149067,-0.3303788,-0.4098869,-0.5049301,-0.5348191,-0.41339275,-0.548139,-0.71675456,-0.81362617,-0.8841226,-0.83102,-0.6983338,-0.03935318,1.0566196,0.98747396,0.55552804,0.24316142,0.024157021,-0.1378219,-0.23570095,-0.3295856,-0.39301285,-0.19426732,0.47249532,0.48395336,0.17010714,0.01764492,-0.10591504,-0.19768342,-0.28548968,-0.15937467,-0.22418611,-0.2589151,-0.32635027,-0.39387506,-0.44557905,-0.47557837,-0.30006915,0.07800324,0.121640116,-0.124301195,-0.25779438,-0.3362005,-0.36582512,-0.42542562,-0.48924437,-0.5205659,-0.5609479,-0.5081287,-0.53086454,-0.59411216,-0.625094,-0.67725825,-0.70403606,-0.72813255,-0.7439909,-0.75235784,-0.78048843,-0.804175,-0.83071405,-0.85449326,-0.82450354,-0.83865404,-0.8689467,-0.87816757,-0.89453363,-0.87834024,-0.87498605,-0.8712336,-0.8310696,-0.7954695,-0.7958261,-0.78641546,-0.8084667,-0.7811643,-0.7540879,-0.70951766,-0.7048258,-0.6786256,-0.29207858,-0.23788717,-0.28068954,-0.22289939,-0.23574479,-0.20806368,-0.18016529,-0.17409548,-0.12828502,-0.11539881,-0.095350906,-0.08086777,-0.11114319,-0.04793967,-0.07887268,-0.07851127,-0.070387974,-0.037763994,-0.018249314,-0.0650637,-0.08699466,-0.08548172,-0.07313539,-0.091466695,-0.076815456,-0.026734289,-0.06828493,-0.02495065,0.07120064,0.012087118,-0.027113866,0.01704562,-0.051945012,-0.02587397,0.026177142,-0.0073533766,-0.03812113,-0.05090907,-0.06553763,-0.032745253,-0.046026286,-0.032155182,-0.063019365,0.019520435,0.020439032,0.029202718,0.021312896,0.024650741,0.0103474,0.009372909,0.052757416,0.051024023,0.021125231,0.008059714,0.021985788,0.030869294,-0.018338796,-0.055329632,-0.04965585,-0.049406823,-0.044895675,-0.025068294,0.022236783,0.07460348,0.011676613,-0.022198971,0.00020158663,-0.054424044,-0.057531368,-0.038363393,-0.017966893,-0.06104536,-0.08861877,0.06006858,-0.014996152,0.00056645647,0.024525482,0.03192543,0.06441794,0.14878103,0.20636803,0.1657872,0.22234751,0.30582738,0.3250659,0.3707929,0.28455168,0.37088168,0.31932014,0.23262952,0.28679764,0.34065422,0.29760733,0.30140775,0.3986984,0.40917903,0.21068026,0.045764063,0.1922967,0.23894481,0.17925371,0.18450831,0.35219234,0.34264192,0.31096762,0.43725058,0.535465,0.46771973,0.24783693,0.1484218,-0.061671145,0.18623479,0.11921096,0.06089398,0.08878727,0.030113395,-0.00061732903,-0.05408891,-0.102509394,-0.122091934,-0.20656447,-0.18003921,-0.029650725
+0.15362303,0.012473453,-0.07197817,-0.10017197,0.0013513528,0.1240001,0.030756716,0.0018894933,-0.06588479,-0.13659406,-0.1268193,-0.15293641,-0.22697748,-0.30700016,-0.3058731,-0.25160697,-0.03211276,0.6212545,1.2228336,0.82765925,0.55560356,0.33200112,0.14708772,1.0885682,0.9993241,0.867519,0.9946134,1.002234,0.8006351,0.65514004,0.57698137,0.39749753,0.28735852,0.1490474,0.034215774,-0.07543864,-0.11833365,-0.16513067,-0.21133894,0.23401533,0.53370064,0.3338008,0.29072732,0.3641674,0.20538901,0.16226332,0.10213271,-0.04254987,-0.13570641,-0.25109112,-0.22898035,-0.21446924,-0.33352438,-0.41426244,-0.25244233,0.1654167,-0.01832534,-0.13071832,-0.08508958,0.029947389,0.061168525,0.010037456,-0.15035434,-0.24089424,-0.33716685,-0.4281307,-0.50429505,-0.59497565,-0.6270466,-0.7042242,-0.6152679,-0.56989765,-0.012059744,0.80310404,0.42968002,0.21011832,0.09555258,-0.010312956,0.18680313,0.15966354,-0.04998214,-0.13346203,-0.2922868,-0.39073965,-0.4747466,-0.61596483,-0.74065316,-0.7863303,-0.84150594,-0.92035687,-0.99745536,-1.067012,-1.0142832,-1.0082419,-1.0962433,-1.1068227,-1.2450862,-1.2566353,-1.2732632,-1.2833962,-1.3471336,-1.472753,-1.4726055,-1.4625369,-1.507658,-1.532003,-1.1996022,-0.8007278,-0.84617364,-0.8628999,-0.9921651,-1.0594764,-1.1458842,-1.1729653,-1.2330155,-1.2645516,-1.267266,-1.3176986,-0.87308085,-0.7371775,-0.83959067,-0.7602446,-0.73002905,-0.69327676,-0.6972269,-0.84879863,-0.9777932,-1.0501082,-1.0625116,-0.34941354,-0.06882839,-0.36443555,-0.52611566,-0.64505935,-0.7069628,-0.8076214,-0.8204398,-0.855693,-0.79150707,-0.70256597,0.44168508,0.26278263,-0.10862842,-0.3341334,-0.49361062,-0.5782624,-0.64735913,-0.7121991,-0.82225364,-0.787105,-0.8297873,-0.9033133,-0.9821797,-1.0320427,-0.9608597,-0.78584504,-0.68681514,-0.18739577,-0.3556466,-0.4680215,-0.5749719,-0.5190826,-0.43760607,-0.6075672,-0.59903955,-0.39932522,-0.306639,-0.42992246,-0.49275687,-0.6023667,-0.6813296,-0.73091435,-0.80481184,-0.8631006,-0.9057658,-0.57606065,1.1898901,0.9400768,0.38649848,0.1864719,0.034543496,-0.11515419,-0.18346931,-0.26579604,-0.32562295,-0.15058598,0.32355356,0.071766034,-0.05677071,-0.12384434,-0.18924181,-0.29476458,-0.36127692,-0.36573043,-0.3991559,-0.4348743,-0.49305606,-0.50267893,-0.57573164,-0.5665264,-0.5092605,-0.5470051,-0.5868193,-0.60119915,-0.6567179,-0.690536,-0.7283145,-0.7264391,-0.77549356,-0.80532074,-0.7794414,-0.56465673,-0.41441283,-0.49903923,-0.5450934,-0.5678471,-0.5876142,-0.6216104,-0.6527867,-0.6846576,-0.6937824,-0.7255135,-0.75409186,-0.75879776,-0.7939033,-0.7776738,-0.7718575,-0.7756566,-0.7741242,-0.78734195,-0.38589668,-0.18536827,-0.094043896,-0.0034375004,0.035380978,0.003318984,-0.1290317,-0.020925071,-0.063217655,-0.01881681,-0.033236247,0.018676985,0.08269504,0.033402596,0.089279264,0.17481473,0.157434,0.22063349,0.33685774,0.3505575,0.3742955,0.36119044,0.3671255,0.40448943,0.40554667,0.4370545,0.3683831,0.3598392,0.39041743,0.50841594,0.42590562,0.4057901,0.5263201,0.6528321,0.70362604,0.64393914,0.6482365,0.69117546,0.75186086,0.91779155,0.81224287,0.86281747,0.823616,0.94417375,0.87269187,0.88424236,0.9456146,0.78023005,0.73890245,0.71568495,0.6778203,0.7122337,0.73486304,0.84590954,0.83809,0.8862447,0.7414033,0.77295613,0.8389539,0.8581749,0.8833705,0.8775817,1.004808,1.0151242,1.0352504,1.0014399,0.93689245,0.95194,1.0038824,0.8952464,0.8648807,0.86397314,0.98516536,1.0802662,1.1255087,1.1187841,1.0858634,0.8119395,0.7297436,0.89858246,0.89697945,1.0284786,0.9490503,0.8746779,0.9076481,1.2551904,1.3855889,1.2477906,1.2008761,1.1813729,1.2330738,1.3625326,1.4445446,1.464221,1.5593145,1.6922822,1.5953836,1.3670912,1.1735697,1.0437896,1.0915651,1.063164,1.1209983,1.1968845,1.2226894,1.310538,1.31897,1.1486435,0.88915193,0.66812384,0.55240226,0.57055545,0.57659775,0.5420513,0.7104675,0.7902534,0.7392434,0.8980224,0.7326051,0.48764962,0.3098631,0.24550943,0.1577714,0.09780449,0.13756289,0.3351404,0.80145717,0.9163789,0.584764,0.6418463,0.54226935,0.36093622,0.2924627,0.20229842,0.14771396
+0.5326089,0.26116318,-0.061372887,-0.33594185,-0.46795812,-0.5803106,-0.6653987,-0.62920207,-0.6371278,-0.76603955,-0.6807529,-0.67949045,-0.72483,-0.81918293,-0.9027836,-0.90970147,-0.50320834,-0.36773503,-0.39589983,-0.4224577,-0.47103363,-0.5738541,-0.6905839,0.16742706,0.5394014,1.115425,0.8095348,0.6350034,0.487454,0.56125,0.42443585,0.1310214,-0.050525833,-0.19143511,-0.32381347,-0.46068814,0.44083807,0.78585273,0.41581905,0.2654975,0.050194893,-0.120798126,-0.24685161,-0.29039806,-0.31345358,0.45396107,0.5295956,0.09826726,-0.0991492,-0.25364193,-0.3410487,-0.36139622,-0.37925708,-0.5299609,-0.5752112,-0.5221173,-0.60956216,-0.69472754,-0.67225015,-0.7650701,-0.26066124,-0.3439079,-0.5175858,-0.6758174,-0.76919544,-0.8685714,-0.97998583,-1.0552382,-1.1364586,-1.2150238,-1.2750254,-1.3514979,-1.4181612,-1.1065596,-0.106048584,-0.43010333,-0.70760095,-0.8284576,-0.9822686,-1.0949082,-1.2115643,-1.2905968,-1.3730562,-1.5152419,-1.5836678,-1.6205258,-1.7489358,-1.8494582,-1.9151479,-1.9851897,-1.519334,-0.5574904,-0.7237502,-0.9074161,-1.0461671,-1.2196087,-1.2809737,-1.3314714,-1.4575853,-1.5504763,-1.6687999,-1.7139044,-1.7729933,-1.86714,-1.9300741,-2.0308342,-2.0575285,-2.0910895,-2.2477427,-2.1112828,-2.186165,-2.2266545,-2.3236492,-2.1442795,-2.1790292,-2.2284331,-2.2787461,-2.357081,-2.3711193,-2.2897336,-2.1679664,-2.0547333,-2.139233,-2.2797985,-2.2579303,-2.324737,-2.4288592,-2.5069766,-2.5341926,-2.4580483,-2.3556995,-2.3528008,-2.280723,-2.152099,-2.1273468,-2.1877654,-2.245494,-1.9609005,-1.8436894,-1.9541385,-1.2695928,-0.84897316,-1.0992997,-1.2649223,-1.387893,-1.5491041,-1.2200568,-1.043894,-1.184706,-1.2586807,-1.4201138,-1.3612038,-1.5333513,-1.6746361,-1.6878536,-1.7593448,-1.6268278,-1.3649198,-1.4280896,-1.4943992,-1.5474193,-1.5577735,-1.3777757,-1.4968274,-1.5530813,-1.0828513,-0.93879783,-0.93539274,-1.050426,-1.148856,-1.2552683,-1.3821036,-1.489275,-1.5551653,-1.5083773,-1.1931204,-0.04130579,-0.17257066,-0.48336512,-0.6189387,-0.796213,-0.9895998,-1.0347441,-1.1222062,-1.2096965,-1.3178897,-1.2020794,-1.2681828,-1.2455587,-1.0312876,-1.0701177,-1.1972082,-1.2041212,-1.2859257,-1.2185163,-1.1861445,-1.2900436,-1.2753097,-1.3794932,-1.2429776,-1.1959106,-1.2557817,-1.1312101,-1.1583652,-1.1910359,-1.2649634,-1.3188329,-1.3257709,-1.3319743,-1.3673544,-1.3649579,-1.4207909,-1.4123852,-1.391312,-1.2588814,-1.2938637,-1.1968737,-1.2193873,-1.1987666,-1.2295089,-1.2426736,-1.2117367,-1.2555054,-1.2796706,-1.2379732,-1.1899774,-1.1904155,-1.1819384,-1.2189016,-1.1452749,-1.1733195,-0.947189,-0.6557595,-0.56597143,-0.65801865,-0.4093411,-0.14966263,-0.070523575,-0.08750838,0.011823703,0.03808083,0.06844424,0.07297413,0.0631209,0.11344482,0.15858096,0.10475679,0.17417715,0.25161666,0.18756567,0.17233749,0.16630834,0.21474543,0.2960272,0.4218671,0.30598858,0.32330996,0.3327679,0.3492662,0.3434604,0.25065455,0.21465579,0.2817363,0.4582529,0.5243791,0.39859295,0.4528889,0.48967874,0.43244708,0.37831444,0.3521248,0.45739764,0.36998874,0.4899251,0.44708526,0.40690273,0.3764,0.24247028,0.26900938,0.19147514,0.17434289,0.22125356,0.334866,0.49538535,0.46944588,0.40768003,0.3557131,0.35416055,0.41161865,0.39259362,0.41221076,0.38384044,0.47628635,0.4821111,0.48071074,0.4259329,0.4568035,0.45728755,0.47524834,0.43163258,0.3243576,0.32473332,0.38640422,0.48749006,0.5568098,0.5507703,0.4640751,0.30542874,0.29043078,0.4438804,0.5179137,0.5554432,0.56236076,0.47759998,0.5088191,0.75241673,0.75268394,0.58097655,0.65093845,0.6791851,0.7010861,0.7715379,0.77658874,0.6899706,0.5575811,0.40480572,0.3427516,0.13218968,-0.05063271,0.07632707,0.14985119,0.1812428,0.2315345,0.2926012,0.23738806,0.33922482,0.37717348,0.42737845,0.4445562,0.38638103,0.22977154,0.33547953,0.4232723,0.31904083,0.27358925,0.27418837,0.17893891,0.1642649,0.02355947,-0.10991265,-0.27009153,-0.31829706,-0.33903915,-0.46458048,-0.5416273,-0.2924642,-0.30889842,-0.36816525,-0.39640906,-0.37159175,-0.20842692,-0.33872306,-0.273829,-0.2891095,0.5593732
+1.4786696,1.4781768,1.0901803,0.457877,-0.18252714,-0.526289,-0.41088158,-0.44016817,-0.5698086,-0.6616031,-0.46965706,-0.29134566,-0.4016387,-0.5145041,-0.60122705,-0.6506319,-0.09155612,0.075355485,0.05585021,0.052950528,0.04766791,-0.049884155,-0.30167788,0.07944901,0.29795426,0.7831428,0.72161764,0.91709733,1.2434876,1.2733014,1.3314927,1.345894,1.1703027,0.7851943,0.23432602,-0.13906185,0.51490706,1.1289757,0.94740933,0.5847486,0.29154453,0.05643772,-0.16680661,-0.19330923,-0.1000922,0.53446436,0.78257143,0.45256245,0.06213372,-0.17884795,-0.371346,-0.40213823,-0.44969094,-0.52317715,-0.6272097,-0.6349713,-0.54035574,-0.56198335,-0.6478944,-0.7082162,0.149535,0.08811015,-0.2273526,-0.48053727,-0.5748602,-0.634502,-0.58445513,-0.52590734,-0.56540364,-0.557091,-0.6662348,-0.8119464,-0.43507797,0.13874938,-0.030790461,-0.39294332,-0.58098006,-0.73699886,-0.80914986,-0.9280734,-1.0397749,-1.1016021,-1.183467,-1.221586,-1.0903133,-0.955763,-1.0693192,-1.1524868,-1.2282208,-1.2268374,-1.0588247,-0.84805954,-0.8525726,-0.9442112,-1.0540655,-1.0765498,-1.1161132,-1.236688,-1.2675033,-1.3408566,-1.4408982,-1.5467587,-1.6069418,-1.6738255,-1.7074769,-1.7576401,-1.7974893,-1.8400228,-1.7648525,-1.7428744,-1.819309,-1.8996369,-1.9557294,-1.9928448,-2.0447474,-2.0577562,-2.1097527,-2.1582882,-2.1366887,-2.092702,-2.0735564,-2.1242619,-2.180179,-2.1890175,-2.128564,-2.1927423,-2.1826189,-2.044818,-1.7374771,-1.4818668,-1.5203705,-1.6188613,-1.7184341,-1.7555513,-1.7529643,-1.7510159,-1.7821631,-1.5957367,-1.4922765,-1.4403961,-1.1341281,-1.1684949,-1.3065865,-1.4427192,-1.5871925,-1.5802598,-1.5212102,-1.5143179,-1.5642107,-1.6552883,-1.781296,-1.7995076,-1.8362207,-1.8828021,-1.9046261,-1.9069905,-1.6608415,-1.5574973,-1.6466491,-1.6605117,-1.7193112,-1.831908,-1.8231478,-1.8915932,-1.8388159,-1.6232464,-1.5749686,-1.4580705,-1.5001601,-1.5497584,-1.6427414,-1.7610288,-1.8430517,-1.9198748,-1.8255044,-1.5074286,-0.849993,-0.89745504,-1.0731833,-1.1810274,-1.2851584,-1.3602569,-1.3760986,-1.4073837,-1.4444568,-1.5089474,-1.5134443,-1.5548012,-1.4490886,-1.416377,-1.4060752,-1.4449875,-1.4954307,-1.5471833,-1.5756644,-1.5374402,-1.5956285,-1.6685667,-1.6955509,-1.6149728,-1.4788632,-1.2495774,-1.110283,-1.1197147,-1.1801779,-1.2464359,-1.2982213,-1.3603411,-1.3900554,-1.385395,-1.4140072,-1.4355056,-1.4367899,-1.4252689,-1.2722106,-1.0068246,-0.8872796,-0.9108341,-0.9785123,-1.0205867,-1.0414068,-1.0047104,-1.0155888,-1.0709004,-1.0190172,-1.0135884,-1.0279765,-1.0174646,-1.0258019,-1.0272498,-0.8955505,-0.60121465,-0.48082632,-0.4219055,-0.4449575,-0.28929383,0.08314864,0.22989441,0.25604713,0.28191778,0.29279464,0.29254517,0.3313243,0.29685572,0.24503429,0.24231468,0.20934983,0.21650557,0.3436368,0.21732502,0.16208243,0.134008,0.19884102,0.3725688,0.40921476,0.3048315,0.25415358,0.23747541,0.39401615,0.62328833,0.45648286,0.36267138,0.35032144,0.5128194,0.5631821,0.43962356,0.48703396,0.5488508,0.6259191,0.5116955,0.3997396,0.52136314,0.40616357,0.4929911,0.44441557,0.3792468,0.40302023,0.27465418,0.297178,0.38124812,0.3662887,0.40595463,0.5512813,0.8244207,0.7972338,0.88719976,0.84721804,0.79782796,0.8717681,0.8122138,0.790553,0.7104474,0.7659323,0.76148486,0.73056746,0.6545178,0.69177926,0.7109014,0.7724383,0.76497066,0.6696863,0.65015846,0.6974478,0.7844005,0.8225992,0.83855915,0.7865872,0.6375493,0.67291254,0.79752016,0.8108283,0.8582738,0.96736014,1.0760136,1.0975429,1.2322588,1.3942175,1.3973849,1.2529294,1.1541047,1.0635718,1.0622777,1.089695,1.1075275,1.197648,1.2317724,1.234812,1.2830448,1.4411911,1.4640121,1.2815425,1.1675063,1.13117,1.1987785,1.1220781,1.1051801,1.1386287,1.2146289,1.3376026,1.3261838,1.2024175,1.2029262,1.2883725,1.4708805,1.6944805,1.8144951,1.8243904,1.8258252,1.976284,2.0124726,2.0736153,2.0506165,1.4733922,0.5142467,0.1558152,0.27299166,-0.00013921782,-0.36047107,-0.17628802,-0.18133697,-0.020074595,0.30251837,0.42225873,0.42038256,0.44530594
+1.298733,0.8252503,0.21742897,-0.26379055,-0.6892184,-0.8899834,-0.8606566,-0.9321504,-0.9529215,-1.0104122,-0.80928326,-0.52243376,-0.54301476,-0.6677945,-0.713225,-0.27936214,0.14292814,0.4190985,0.5478603,0.5426408,0.48093152,0.34508866,0.16074665,-0.07287751,-0.17388555,-0.24629767,-0.24674182,-0.13672242,0.40577567,0.55417156,0.51646596,0.5179446,0.39526647,0.25779977,0.06638418,-0.19387577,-0.30382055,-0.3534452,-0.37178582,-0.37930408,-0.5178002,-0.5226811,-0.6075837,-0.62197584,-0.54898846,-0.22129701,0.30529308,0.48680395,0.42359233,0.15222855,-0.11455952,-0.32012296,-0.44767344,-0.47221962,-0.5671611,-0.4792642,-0.23892136,-0.13334459,-0.22240838,-0.37105334,-0.44672906,-0.322033,-0.13591895,-0.2645262,-0.3846984,-0.45079774,-0.40577605,-0.12894073,-0.16416816,-0.2509668,-0.28569132,-0.37697357,-0.38323122,-0.07431528,-0.0076889955,-0.25582975,-0.45867747,-0.5594413,-0.62917376,-0.6998236,-0.7640121,0.2109276,0.33114052,0.13107185,-0.0883459,-0.21023583,-0.16639219,-0.19039571,-0.31585202,-0.39615905,-0.46599698,-0.10950878,0.16253437,0.0947838,-0.14327787,-0.31697202,-0.46094915,-0.6022848,-0.6569376,-0.66886586,-0.7769843,-0.8958266,-0.97302735,-1.0210795,-1.060549,-1.1081173,-1.1362209,-1.1747956,-1.2202492,-1.153627,-1.058725,-0.93347716,-0.77092737,-0.7050874,-0.789309,-0.8647872,-0.96488714,-1.0401297,-1.1166643,-1.174554,-1.191529,-1.2092218,-1.2289398,-1.2626743,-1.2246642,-1.0999602,-0.664196,-0.4528992,-0.5525686,-0.36121297,-0.36720505,-0.5386143,-0.6486746,-0.7508571,-0.75586545,-0.74241227,-0.8242961,-0.9255469,-0.800347,-0.6058036,-0.68827355,-0.6433809,-0.70046663,-0.78184605,-0.74102885,-0.10299687,0.036759328,-0.22873227,-0.42269582,-0.55922174,0.29649618,0.33517998,-0.03006858,-0.21776973,-0.16741899,-0.25529748,-0.4084437,-0.56143045,-0.69052064,-0.7974657,-0.88263434,-0.9568413,-1.0179762,-1.073774,-1.1329834,-1.0754492,-1.0332518,-1.092329,-1.1591148,-1.1886923,-1.2398851,-1.2762055,-1.3240224,-1.372753,-1.4399076,-1.479431,-1.5647588,-1.585665,-1.5563478,-1.5604806,-1.5632648,-1.562035,-1.5315089,-1.202733,-0.95868766,-1.0350283,-1.3056197,-1.300849,-1.1699216,-1.2269533,-1.188378,-1.2159429,-1.2801393,-1.3127477,-1.3803996,-1.4015583,-1.4290422,-1.4664712,-1.5290359,-1.6085404,-1.6809487,-1.704134,-1.6779909,-1.613004,-1.6016049,-1.6086156,-1.6054125,-1.6112618,-1.6532456,-1.6546392,-1.6415331,-1.6814396,-1.7020099,-1.714028,-1.7324047,-1.749792,-1.7287556,-1.6815029,-1.6436644,-1.6585243,-1.6542372,-1.6239753,-1.5897915,-1.5738922,-1.574423,-1.5441518,-1.5293825,-1.4987175,-1.471436,-1.4469271,-1.4302878,-1.3348415,-1.2061083,-1.1332259,-1.1043185,-0.97811174,-0.85376465,-0.813562,-0.77494574,-0.7595866,-0.6860483,-0.705812,-0.63444734,-0.5913734,-0.5750565,-0.5389274,-0.5612333,-0.56236225,-0.5551369,-0.5887263,-0.53017914,-0.4441781,-0.48904604,-0.51512706,-0.48890534,-0.5458366,-0.5467081,-0.5453074,-0.5166848,-0.53297704,-0.5437006,-0.44416294,-0.4796849,-0.4738164,-0.4861735,-0.49997234,-0.48996627,-0.5589522,-0.540274,-0.56059563,-0.53066176,-0.55638576,-0.574561,-0.570879,-0.59044564,-0.59871924,-0.61273474,-0.6265019,-0.58666354,-0.45718822,-0.34310055,-0.41845936,-0.4547351,-0.34231493,-0.3567121,-0.39615226,-0.43067995,-0.41582468,-0.39466047,-0.39817154,-0.3194087,-0.36020875,-0.38194045,-0.37607986,-0.36308426,-0.4154305,-0.4100693,-0.4238824,-0.44943705,-0.409222,-0.36730754,-0.3725047,-0.3917665,-0.39263833,-0.40144837,-0.40056854,-0.41447914,-0.43025112,-0.4310206,-0.44246978,-0.4510618,-0.4709952,-0.4862593,-0.47910368,-0.5147067,-0.45680854,-0.49787694,-0.40827107,-0.38447073,-0.4017015,-0.41665554,-0.4420706,-0.45937052,-0.46545848,-0.48535556,-0.54001987,-0.53041184,-0.5511069,-0.6528716,-0.6760608,-0.57416165,-0.57134557,-0.58619225,-0.5918263,-0.6110872,-0.62624806,-0.6382803,-0.64254904,-0.6407175,-0.63191557,-0.65694416,-0.6367347,-0.65782076,-0.6810185,-0.68452734,-0.7646542,-0.7630368,-0.6759878,-0.7428278,-0.78159666,-0.7816863,-0.7788505,-0.8598137,-0.9069238,-0.91314566,-0.9186392,-0.8767902,-0.8827198,-0.7833534,-0.6932981,-0.78933084,-0.71435726,-0.6128694,-0.67265046,-0.61676216
+1.8247945,2.388974,2.4124842,1.7246661,0.99166393,0.5126845,0.22961931,0.025775518,-0.12617879,-0.23090272,-0.24443266,-0.22139747,-0.214599,-0.30301535,-0.43094587,0.3559876,0.78522635,1.2487773,1.3490137,1.2605337,1.1549678,0.8160533,0.40986747,0.08912809,-0.102521196,-0.16307373,-0.11455351,0.054554958,0.6781138,0.90041417,0.8875403,0.91292274,0.6781813,0.3713352,0.11295296,-0.12479152,-0.22796796,-0.32636163,-0.34285796,-0.43286687,-0.41252857,-0.38117915,-0.49367994,-0.59209716,-0.53262484,-0.42378598,-0.22300015,-0.05307858,-0.0633204,-0.22780146,-0.4428513,-0.6273208,-0.73639554,-0.8185613,-0.88821316,-0.95492005,-0.27345148,-0.029253572,-0.34466395,-0.53326386,-0.628712,-0.5677674,-0.3723736,-0.46993896,-0.57528114,-0.6694388,-0.69344854,-0.711909,-0.823513,-0.88023454,-0.94398,-1.0344405,-1.095896,-1.166137,-1.2108018,-1.283998,-1.3444177,-1.359674,-1.3924694,-1.4315087,-1.4605118,-1.4857862,-1.4180205,-1.2963847,-1.3133583,-1.2816572,-1.2542691,-1.3232847,-1.3703173,-1.4173226,-1.1743195,-0.48548254,-0.19847126,-0.02266572,-0.013698157,-0.25944108,-0.48116618,-0.6191012,-0.7537154,-0.8572002,-0.96583396,-1.047288,-1.1485336,-1.2113454,-1.281485,-1.3483628,-1.4078782,-1.4485109,-1.501611,-1.4091916,-1.3850212,-1.425575,-1.475701,-1.4966092,-1.5112593,-1.4992259,-1.5526655,-1.5365947,-1.5770657,-1.5745777,-1.4572496,-1.3952496,-1.1752229,-1.0163219,-0.98138297,-0.5032348,0.6163799,0.41884086,0.20379402,0.11727248,0.1386724,-0.068452716,-0.21387835,-0.3005411,-0.41887766,-0.5124782,-0.6485595,-0.7220163,-0.6622515,-0.7583994,-0.60432804,-0.44261256,-0.48741674,-0.6163631,-0.6842527,-0.3675969,-0.08960214,-0.36384037,-0.53943324,-0.6390728,-0.5827978,-0.37193078,-0.43680102,-0.54424924,-0.5416627,-0.4783436,-0.6203234,-0.7761672,-0.91564864,-1.0089229,-1.072984,-1.1216016,-1.1750269,-1.2424498,-1.2995225,-1.3139136,-1.1119776,-1.0422798,-1.1039653,-1.0789365,-1.111455,-1.1930363,-1.2926509,-1.3485997,-1.2451495,-1.215946,-1.1707683,-1.1885579,-1.2248013,-1.2915058,-1.3532825,-1.3997822,-1.3810472,-1.372479,-1.4160266,-1.4239719,-1.3930728,-1.4172689,-1.4137385,-1.3370297,-1.3070762,-1.3318695,-1.3419855,-1.3976632,-1.4521478,-1.474771,-1.4839019,-1.5093291,-1.543706,-1.5716484,-1.660822,-1.631492,-1.5704253,-1.5303564,-1.5253704,-1.5360856,-1.5539508,-1.5844215,-1.5751126,-1.5562773,-1.5688436,-1.5604134,-1.5748892,-1.5600827,-1.5563543,-1.5120717,-1.4679043,-1.4493971,-1.3109388,-1.0101075,-0.9973273,-0.99314106,-0.97258264,-0.9591086,-0.9503373,-0.9375715,-0.924549,-0.85386705,-0.838551,-0.8425915,-0.780843,-0.59371245,-0.4665213,-0.421845,-0.3644604,0.16134603,0.16571134,0.2612888,0.35953188,0.44361588,1.2357227,1.5093524,1.7355177,1.7409304,1.8653288,1.9627776,1.974756,2.0049477,1.9831758,1.9728065,1.932489,1.9637177,1.9543697,2.0640907,2.1081884,2.0510733,2.083022,2.0607302,2.093873,2.1332655,2.8043928,3.0516582,3.0193663,2.85425,2.9631262,3.1966052,3.3379648,3.178194,3.3072882,3.1958375,3.1605139,2.9719188,2.982843,2.977314,3.02147,3.138243,2.978125,2.9005303,2.8571434,2.8072639,3.0941408,3.0783424,3.0256238,2.992858,3.0873613,2.9454427,2.9116673,3.0210092,3.094996,3.2726183,3.4630075,3.5406282,3.4857607,3.5243702,3.5198443,3.41113,3.3908858,3.3195252,3.6100426,3.4819646,3.4171705,3.4939334,3.4414032,3.4632707,3.485721,3.490208,3.4952755,3.4831145,3.447194,3.3945706,3.4327188,3.4072661,3.356019,3.4232311,3.464024,3.4764242,3.4972506,3.64277,3.671907,3.7690365,3.6746247,3.6619344,3.6840997,3.7494123,3.7042918,3.7299757,3.7043972,3.6643028,3.5561619,3.4255059,3.3953023,3.3302798,3.2782564,3.3482223,3.414541,3.4145854,3.4269764,3.4452605,3.4830923,3.4367473,3.3199077,3.3337545,3.4423666,3.52685,3.5936322,3.5483665,3.5855803,3.5918546,3.5213256,3.4859529,3.4420342,3.2528179,2.9092205,2.2822063,1.7682059,1.3798943,1.0744636,1.6225302,1.5396421,1.7375463,1.761071,1.8690523,1.813038,1.6795489,1.8552706
+2.2289267,3.113439,3.3737388,3.2757902,2.5719259,2.1792235,1.8722175,1.8150252,1.5350144,0.97532797,0.9150444,0.7904545,0.6711857,0.43848628,0.30584696,0.7727176,1.2131989,1.5761015,1.8526267,1.8985695,1.8920503,1.4287604,0.8401575,0.41293755,0.2946839,0.25667247,0.27172384,0.34452733,0.7860886,0.9413048,1.1814157,1.3563559,1.2274036,0.9137165,0.551957,0.27666068,0.05489477,-0.017097067,-0.0163224,-0.06879488,-0.15340227,-0.19035286,-0.24924259,-0.24586545,0.085433304,0.6140932,0.55409014,0.4948972,0.37546638,0.192927,0.009121068,-0.15241018,-0.24699987,-0.31123814,-0.3803771,-0.38967678,-0.404611,-0.3732943,-0.35682875,-0.434402,-0.38142544,-0.22444575,-0.27431527,-0.3370245,-0.33615732,-0.31531227,-0.30503294,-0.31980073,-0.39724147,-0.4083382,-0.38813376,-0.3646865,-0.340376,-0.32786345,-0.36308223,-0.464839,-0.5561137,-0.5766593,-0.5590285,-0.53515875,-0.50202125,-0.49250698,-0.48596245,-0.44560713,-0.37815344,-0.32569724,-0.2259458,-0.041736413,-0.07421613,-0.13208726,-0.20361774,-0.03632478,0.39580077,0.27256882,0.055793535,-0.08292359,-0.20094202,-0.27674854,-0.29898828,-0.33622375,-0.4030623,-0.49915513,-0.54735696,-0.5869094,-0.56884444,-0.52156746,-0.52912545,-0.5920119,-0.5965979,-0.5566937,-0.5359558,-0.5490421,-0.58388686,-0.6162702,-0.6225858,-0.56096935,-0.5516724,-0.53677464,-0.55922925,-0.54347575,-0.4524958,-0.44979358,-0.4488503,-0.34710494,-0.110682905,0.06372568,0.4204707,0.64512646,0.617895,0.55212855,0.39935666,0.23716833,0.17815486,0.16569717,0.38024038,0.45431638,0.27263188,0.3522625,0.5236689,0.37708712,0.34357864,0.51022923,0.5645468,0.68664277,0.4776311,0.34996626,0.28276205,0.42013678,0.476152,0.29063243,0.2562406,0.31722212,0.34600782,0.33916736,0.2318988,0.13530049,0.033529464,-0.058193076,0.29912323,0.60907865,0.35716376,0.16149884,0.127458,0.015178006,-0.060405012,-0.08241086,-0.12742248,-0.1938577,-0.13711742,0.04927728,0.003970865,-0.0968876,-0.18070659,-0.26486367,-0.1419364,0.13764329,0.09146808,0.02838226,0.031021316,-0.028478395,-0.106027976,-0.13595934,-0.20004143,-0.21415234,-0.21661277,-0.18024532,-0.1610212,-0.1230218,-0.15104103,-0.08454782,-0.0056933723,0.10066697,0.053674582,-0.04286745,-0.110651314,-0.16284643,-0.2236903,-0.2866137,-0.34834546,-0.4906736,-0.4527669,-0.4254216,-0.29101872,-0.25928593,-0.28987727,-0.31635547,-0.29691967,-0.3553596,-0.31961158,-0.28477207,-0.3079366,-0.3568529,-0.32468814,-0.3357485,-0.31150496,-0.22124504,-0.16210435,-0.07518494,0.4224175,1.0743651,0.8348203,0.74701357,0.76121116,0.8170173,0.87366414,0.91866326,0.94550645,0.94630706,0.8685006,0.7828437,0.65994215,0.8122787,0.98229694,1.0381798,0.9780117,1.484633,1.863244,2.094669,2.3429084,2.5547333,2.7985187,3.1287787,3.4223638,3.697177,3.8724027,4.0179677,4.093005,4.112442,4.1118884,4.167203,4.155862,4.1954327,4.1734095,4.157887,4.1595836,4.1977224,4.1972547,4.2226934,4.1976705,4.1784925,4.2274184,4.2612324,4.203286,4.175237,4.1782146,4.2231035,4.2596154,4.2245026,4.1998806,4.187922,4.158987,4.2141395,4.241192,4.2223253,4.2762394,4.2868385,4.2905993,4.2981386,4.2853994,4.2539735,4.371819,4.3466425,4.295965,4.304535,4.3559184,4.340965,4.3155727,4.297836,4.3774695,4.475782,4.402204,4.341046,4.3147626,4.327934,4.302766,4.2998724,4.343588,4.3756747,4.2952785,4.2914047,4.300417,4.326413,4.2989235,4.2880173,4.282366,4.288349,4.2899523,4.2484245,4.2825212,4.257767,4.270582,4.2633414,4.3217936,4.3572416,4.3680677,4.390668,4.399745,4.5483932,4.443765,4.387031,4.3043265,4.2576356,4.252367,4.354759,4.4109697,4.398721,4.3379602,4.3821044,4.2756157,4.2695713,4.12778,4.149871,4.128754,4.063527,4.149172,4.1658883,4.141594,4.160025,4.176441,4.184003,4.0983753,4.1129155,4.115925,4.079178,4.075097,4.0551,4.012922,3.9506898,3.8036587,3.6750603,3.4238768,2.9743216,2.4121528,1.8704543,1.5055418,1.2193365,0.95416707,1.3888583,1.2458413,1.300802,1.365365,1.4371371,1.490032,1.4182936,1.522357
+-0.5196219,-0.44041574,-0.50218165,-0.5802555,-0.7184147,-0.8094383,-0.9286112,-0.6563896,0.45844227,-0.0221893,-0.009888478,-0.01930314,-0.17787552,-0.36376745,-0.521293,-0.62970716,-0.66257113,-0.41336083,-0.20580775,-0.39868897,-0.54265064,-0.6561565,-0.765494,-0.79047805,-0.8749958,-0.94465566,-0.9896933,-1.0951588,-0.93535006,-0.5322969,-0.34424764,0.05847263,-0.20157301,-0.423133,-0.60114825,-0.78817284,-0.90928394,-0.9986182,-1.024894,-1.0887,-1.145585,-1.2171593,-1.2891111,-1.3876345,-0.9560528,-0.77845883,-0.6719106,0.6283884,0.7931779,0.275643,-0.11955412,-0.3393713,-0.48114532,-0.6247048,-0.7350004,-0.8450688,-0.91662574,-0.9903437,-1.1401777,-1.2201066,-1.0561695,-0.78060263,-0.74913216,-0.8563343,-0.9697095,-1.0384871,-0.13583389,1.1378723,0.62829375,0.19647063,-0.034717258,-0.081042975,-0.03970303,-0.21032055,-0.38652048,-0.54713345,-0.66375506,-0.7980766,-0.96861863,-1.0636916,-1.098881,-1.1613925,-1.2046617,-1.1076992,-0.15391633,0.23278938,0.11871171,0.19482501,0.06394164,-0.08594109,-0.2770131,-0.3275233,-0.101266086,-0.28042358,-0.412108,-0.5264597,-0.6592074,-0.7744242,-0.8801061,-0.97671556,-1.0301931,-1.0899103,-1.1744108,-1.2473125,-1.3325496,-1.4236186,-1.439857,-1.4398673,-1.5232592,-1.5835907,-1.6044769,-1.6233779,-1.6492436,-1.552305,-1.0008236,-0.6422626,-0.61345917,-0.59428895,-0.32128826,-0.19115236,-0.0016723238,0.39296043,0.25599566,0.15635835,0.2502663,0.040604558,-0.09650539,0.4238614,0.59489995,0.39060822,0.10280354,0.018947143,-0.003441278,-0.10645105,-0.010353085,1.1055671,0.71762025,0.3528149,0.1560803,-0.0307311,-0.19315486,-0.28657877,-0.24929486,0.07304515,-0.05114426,-0.13650124,-0.21780765,-0.31195503,-0.24134219,-0.06925203,-0.110278696,-0.017389074,0.47042882,0.48256004,0.28119722,0.31181222,0.100535184,-0.09487136,0.5061601,0.79196566,0.78514767,0.40256867,0.19862787,0.056429755,-0.09552142,-0.13009109,-0.01348285,0.3049753,0.40529594,0.1593595,-0.09781633,-0.28721833,-0.3882051,-0.3934347,-0.052509498,-0.018726747,-0.23761995,-0.46739838,-0.5375215,-0.5311557,-0.58829755,-0.68990564,-0.649313,-0.7039183,-0.7500724,-0.8024652,-0.85740566,-0.93174213,-0.9819026,-1.1213907,-1.0852798,-0.37096763,0.10687706,-0.11376576,-0.28353336,-0.4019869,-0.5060838,-0.5893097,-0.66197723,-0.73422724,-0.80552566,-0.85028625,-0.94025,-0.88166976,-0.9352113,-0.9701469,-1.0355049,-1.001728,-1.0555747,-1.1112328,-1.1113796,-1.1104678,-1.1541452,-1.16303,-1.2049835,-1.2318559,-0.8925997,-0.28902674,0.8918848,0.9318819,0.52873397,0.24859728,0.1611858,0.20557164,0.06454697,0.026929203,-0.009695735,-0.107929155,-0.15426156,-0.21035303,-0.33268544,-0.31420124,-0.18840519,-0.22295396,-0.28013593,0.09025186,0.22484227,0.1718854,0.16434868,0.21808822,0.12507065,0.050936643,0.090542406,0.17690729,0.26488954,0.2888293,0.18124105,0.18123077,0.26321918,0.27459353,0.27307945,0.31888205,0.44386107,0.4070763,0.3214712,0.2387452,0.21589749,0.17798941,0.14433883,0.077712655,0.11247867,0.181943,0.33845076,0.39992133,0.38737896,0.51950794,0.97190404,0.7000951,0.6218844,0.579687,0.68151075,0.6401348,0.59038943,0.6527567,0.6200305,0.5733933,0.5511632,0.55227745,0.5319127,0.43675238,0.6326197,0.9314492,1.1338298,0.9789345,0.7404752,0.58139235,0.48899817,0.40736234,0.2821361,0.6108455,1.021799,0.93466294,0.7986476,0.74182606,0.82099825,0.78584504,0.63648856,0.7468487,0.7417611,0.6541263,0.81485605,1.032359,1.1107756,1.173298,1.1351151,1.0441417,0.8996893,0.80112904,0.69614404,0.61518353,0.5368712,0.5016054,0.43148777,0.34981567,0.30873483,0.23452856,0.1312995,0.033723388,0.2744181,0.5765788,0.45462307,0.5267469,0.47110122,0.3714223,0.2582525,0.1832443,0.10468218,0.05317979,-0.016884323,-0.019449826,0.031332467,0.06298445,0.022971679,-0.09666525,-0.1279073,-0.111053064,-0.09005134,-0.1242419,-0.18403031,-0.24942128,-0.28095308,-0.30980828,-0.39466128,-0.495076,-0.52696836,-0.5631356,-0.6007132,-0.5950561,-0.6637505,-0.7020245,-0.78613955,-0.8594628,-0.83092505,-0.8816488,-0.92003953,-1.0235462,-1.0282185,-0.9812428,-1.0601097,-1.0295324,-1.0688765,-0.5010479,0.043431703,-0.15140958,-0.28819352
+0.555299,0.6404699,0.4320815,0.1160904,-0.192663,-0.38817054,-0.47772238,-0.51408064,-0.13610017,-0.099618,-0.16343333,-0.040688876,0.047387596,-0.16268156,-0.35305873,-0.50176996,-0.20159258,-0.08107898,-0.224893,-0.37597063,-0.46905696,-0.5432849,-0.48086724,-0.5244952,-0.6814615,-0.79675776,-0.8615178,-0.8881902,-0.95208645,-0.9459893,-0.7994757,-0.554701,-0.5535474,-0.64349055,-0.7111081,-0.80504394,-0.9420768,-1.0571777,-1.0909283,-1.1119418,-1.1609043,-1.1854775,-1.2200499,-1.2970849,-1.1210052,-1.0821157,-1.1292863,-0.9028763,-0.46111917,-0.4929039,-0.6440134,-0.78450555,-0.900263,-1.0075065,-1.0911592,-1.1613963,-1.2340806,-1.2581655,-1.2972608,-1.3665543,-1.3603928,-1.318285,-1.3532432,-1.366014,-1.3139153,-1.3699436,-1.4310796,-1.461873,-1.5398915,-1.511846,-1.5709529,-1.4465017,-1.1101485,-1.1707704,-1.2683585,-1.3414438,-1.4040246,-1.4812341,-1.53969,-1.5643384,-1.6370301,-1.6939108,-1.7696935,-1.7210453,-1.1169623,-0.8096218,-0.85264826,-0.7107109,-0.69013655,-0.76517165,-0.8607993,-0.9462887,-1.0431435,-1.117712,-1.1707104,-1.2277709,-1.3025664,-1.3694862,-1.490236,-1.4776045,-1.5198736,-1.556921,-1.6090472,-1.66382,-1.7304118,-1.7624505,-1.8081999,-1.8485818,-1.8973367,-1.9272559,-1.9562608,-1.981447,-1.9949267,-1.9987993,-2.0376868,-2.016649,-2.0335445,-1.8674852,-1.8311573,-1.8623706,-1.8947763,-1.8829509,-1.629942,-1.3444879,-1.1940771,-1.2653027,-1.3283826,-1.2713284,-1.3194854,-1.372594,-1.4392842,-1.3137544,-1.2921927,-1.2127765,-1.0618968,-0.75074685,-0.834531,-0.9176381,-1.0045236,-1.113623,-0.9881334,-0.7197012,-0.76577085,-0.73277307,-0.8278187,-0.8891714,-0.96120465,-0.9819,-0.9115297,-0.78009063,-0.5283105,-0.30553675,-0.30030447,-0.30281496,-0.26868924,-0.3258261,-0.43923217,-0.55706036,-0.47393626,0.08180387,0.1388257,-0.07778038,-0.21023618,-0.32552043,-0.4154603,-0.45643783,-0.5032259,-0.5681932,-0.30640602,-0.293791,-0.45953113,-0.5815793,-0.6804558,-0.7917355,-0.8361218,-0.92317426,-0.9957496,-1.0611601,-1.0937678,-1.1223681,-1.1472776,-1.1617218,-1.1895264,-1.156303,-1.1903391,-1.232775,-1.2765157,-1.323745,-1.3681023,-1.4019018,-1.4327525,-1.2693387,-0.8639233,-0.7647293,-0.8399266,-0.88763785,-0.9215864,-0.9724296,-1.0281919,-1.081178,-1.1174679,-1.1744587,-1.236381,-1.2646368,-1.2787106,-1.2826154,-1.2779284,-1.2908356,-1.3482065,-1.3782507,-1.3920025,-1.3919873,-1.4218705,-1.4305775,-1.4518607,-1.433471,-1.4141536,-1.3560195,-0.64709866,-0.17774321,-0.2772633,-0.40450025,-0.49254295,-0.4726136,-0.4885996,-0.5138063,-0.5237503,-0.5443804,-0.5737846,-0.60273993,-0.6339089,-0.758406,-0.753073,-0.7202184,-0.7447182,-0.63165766,-0.59652984,-0.58673584,-0.5691892,-0.5423334,-0.5682324,-0.3562402,-0.18241163,-0.09410849,-0.023830932,0.024789128,0.13976751,0.08255695,0.08068764,0.13020305,0.09272106,0.1141011,0.11344038,0.124670506,0.074393526,-0.0135387,-0.073094174,-0.12879278,-0.17738236,-0.20565258,0.055187378,0.18806349,0.2957139,0.3140186,0.28826773,0.7864635,0.98079395,0.62519413,0.56961584,0.52868634,0.60300004,0.53978926,0.52943933,0.5149926,0.4586954,0.664938,0.6329495,0.64086205,0.6608128,0.5014967,0.5873447,0.76422846,0.94256914,0.8081671,0.540882,0.38761303,0.3024924,0.28009927,0.19389316,0.6939441,0.9147916,0.8088404,0.9916481,0.9976492,1.0623375,1.1710497,1.2379913,1.3375843,1.2655516,1.3442338,1.4026428,1.4986359,1.5419415,1.5563598,1.538559,1.501191,1.4251782,1.3387673,1.2681465,1.1488729,1.0415329,0.9102967,0.69995755,0.5134978,0.40166503,0.25776878,0.112773284,0.09639454,0.5704583,0.74484354,0.7295134,0.7967305,0.8196343,0.76622796,0.5506641,0.5688515,0.4778986,0.3147394,0.10139929,-0.029278632,0.08352235,0.18747921,0.12128501,-0.0062557347,-0.16671175,-0.10114293,-0.008066196,-0.036610954,-0.1928368,-0.31927416,-0.43036342,-0.40731215,-0.4362486,-0.5042788,-0.53660357,-0.5897751,-0.66187394,-0.668293,-0.7087656,-0.73256207,-0.7848449,-0.8043541,-0.8554995,-0.8901024,-0.9455455,-0.98187876,-1.0507469,-1.1386278,-1.1048067,-1.1370254,-1.1362278,-1.1592591,-1.1429672,-1.1796219,-1.1749618
+-1.5361196,-1.4147503,-1.5628729,-1.6834962,-1.8137021,-1.9048567,-2.0556464,-2.0273085,-1.2098515,-1.0272087,-1.0855197,-1.19834,-1.2347925,-1.3372098,-1.4519477,-1.556556,-1.6204143,-1.6779493,-1.7172669,-1.7930127,-1.8602195,-1.9462687,-1.86867,-1.9103928,-1.9558153,-2.0031445,-2.0422883,-2.0895805,-2.094739,-2.1055012,-2.152603,-2.137329,-2.174534,-2.18965,-2.2389069,-2.287858,-2.2165785,-2.2672653,-2.246647,-2.2626653,-2.282592,-2.3140957,-2.2922804,-2.3764637,-2.3086748,-2.3423433,-2.4317744,-2.342109,-2.3143177,-2.2157083,-2.236791,-2.2599826,-2.2881618,-2.3326108,-2.337797,-2.345365,-2.3797657,-2.4118686,-2.4517312,-2.3854055,-2.1095715,-1.619148,-1.194773,-1.2906008,-1.3540401,-1.4446024,-1.5032516,-1.5811018,-1.7131596,-1.6763201,-1.5812739,-1.5093449,-1.4609673,-1.5942475,-1.7208382,-1.829165,-1.9051442,-1.9913621,-2.0782676,-2.1142917,-2.1342382,-2.1919036,-2.2305188,-2.231763,-2.28123,-2.3013618,-1.7473445,-0.50606596,0.18817346,0.14914227,-0.24977465,-0.42302942,-0.5478327,-0.72401536,-0.8854271,-1.0817249,-1.2900915,-1.4112422,-1.0521846,-0.708331,-0.81733865,-1.0752987,-1.2643704,-1.4370586,-1.5817835,-1.6864386,-1.7703019,-1.7776098,-1.8582141,-1.912416,-1.9694369,-2.016548,-2.0554247,-2.0990036,-2.1322153,-2.158333,-1.9570867,-1.2590153,-1.1582477,-1.2676814,-1.3676994,-1.29812,-0.8789015,-1.0225524,-1.098798,-0.9345776,-1.0014865,-1.082647,-1.1558615,-1.1528035,-0.9640789,-0.9773786,-0.9706712,-0.8952979,-0.536394,0.08892664,-0.31797484,-0.5745263,-0.7206924,-0.81787705,-0.6765405,-0.46362805,0.3310216,0.41974953,0.13812758,0.7866719,0.31496963,0.08538063,0.061742242,0.16037448,0.53057873,0.87054825,0.9403436,0.8708768,0.6392971,0.26720357,0.020243775,-0.11563939,-0.2745616,0.1235228,0.38746235,0.015912581,-0.15235545,-0.2503323,-0.31826594,-0.41173002,-0.46518248,-0.040405836,0.21480675,-0.144785,-0.29032928,-0.44131202,-0.52064484,-0.58744955,-0.666995,-0.73442614,-0.7867714,-0.8367866,-0.59704506,-0.4135401,-0.55687726,-0.6318348,-0.28754693,0.046777908,-0.26429197,-0.2813516,-0.3034759,-0.46869344,-0.55652,-0.65090674,-0.6664144,-0.247855,-0.20374806,-0.35185635,-0.44562247,-0.48755476,-0.58529174,-0.66261166,-0.7244127,-0.7866914,-0.84850967,-0.9192282,-0.995434,-1.0514121,-1.0931089,-1.1199466,-1.1540853,-1.2041329,-1.2634777,-1.3074527,-1.3481479,-1.370415,-1.3981605,-1.4351113,-1.4654522,-1.4708555,-1.5248864,-1.0555489,-0.11812237,0.29475707,-0.013000887,-0.23059207,-0.36458677,-0.3783111,-0.19552396,0.08604881,-0.21577628,-0.30489898,-0.3688353,-0.41632575,-0.4703228,-0.54528576,-0.5653,-0.5739923,-0.5916178,-0.5953152,-0.6342302,-0.65104383,-0.6911335,-0.6315965,-0.6344085,-0.67764163,-0.69998205,-0.72027326,-0.68691266,-0.7098933,-0.4909222,0.04653308,-0.18445908,-0.28051063,-0.3239748,-0.35083005,-0.3949026,-0.3557034,-0.39339554,-0.42413282,-0.4517036,-0.48661643,-0.5155699,-0.52542096,-0.53501856,-0.58278203,-0.5557025,-0.569008,-0.58252865,-0.47454828,-0.23690134,-0.38083017,-0.41487005,-0.45806772,-0.45511237,-0.46669888,-0.4900902,-0.49548072,-0.42141658,-0.3706469,-0.3937099,-0.4356457,-0.443346,-0.4948514,-0.5037734,-0.5566149,-0.48507485,-0.49264017,-0.52237225,-0.5505564,-0.571623,-0.58720756,-0.61913514,-0.40916085,0.0571017,-0.24515814,-0.2168907,-0.29811266,-0.3502213,-0.24260327,-0.32125404,-0.3284544,-0.3904075,-0.45465595,-0.48388657,-0.4596279,-0.44208893,-0.43288153,-0.4384316,-0.45639944,-0.47112665,-0.48265576,-0.5024255,-0.5334227,-0.55954325,-0.5875507,-0.63266516,-0.64436865,-0.6647394,-0.681546,-0.71244717,-0.74701196,-0.6944182,-0.5168173,-0.5121378,-0.53911555,-0.5636623,-0.5919329,-0.667683,-0.69673705,-0.72051775,-0.7438849,-0.8140093,-0.8653283,-0.8638682,-0.90567935,-0.9323144,-1.0558616,-1.0391777,-1.0471534,-1.1011854,-1.1687453,-1.2123666,-1.2866428,-1.3029082,-1.3605483,-1.4070215,-1.4787817,-1.5233886,-1.5571063,-1.5784118,-1.5977049,-1.6528548,-1.7011406,-1.728812,-1.790977,-1.8408954,-1.8829323,-1.9168267,-1.9377139,-1.9823232,-1.9610202,-2.0029805,-2.0163705,-2.0239794,-2.042873,-2.0448365,-2.0503917,-2.0753772
+-1.6634626,-1.6315422,-1.759861,-1.8499912,-1.8823825,-1.9391363,-1.901159,-1.8480843,-1.8322958,-1.7845838,-1.9053044,-1.8816764,-1.8799002,-1.9490042,-1.9863713,-2.0595055,-2.053777,-2.0371742,-2.092855,-2.1195633,-2.1521025,-2.0782807,-2.074223,-2.0627902,-2.1217093,-2.181904,-2.2079792,-2.2258205,-2.2499828,-2.2528224,-2.2471492,-2.2198777,-2.2617936,-2.2679725,-2.263239,-2.2245016,-2.2971063,-2.3403978,-2.3667674,-2.3784125,-2.3769248,-2.3782372,-2.328242,-2.2884147,-1.6271913,-1.2906506,-1.333538,-1.3110511,-1.2998838,-1.4536021,-1.4655375,-1.5883654,-1.670466,-1.7089919,-1.7800205,-1.8679756,-1.9427222,-1.9887756,-1.9958059,-1.8748136,-1.0866741,-0.685399,-0.63655525,-0.9460073,-1.0824676,-1.1684927,-1.2645916,-1.3540643,-1.4529002,-1.5259387,-1.6207113,-1.7041843,-1.3515991,-1.2265716,-1.3044441,-1.3909501,-1.4978254,-1.6258329,-1.736807,-1.8054335,-1.9145932,-2.0138428,-2.074843,-2.0979075,-1.6897563,-1.3682882,-1.3013675,-1.2879009,-0.11817324,0.0065961666,-0.40894622,-0.279583,0.38867408,-0.21043521,-0.533036,-0.7004335,-0.85262144,-0.99135935,-0.9336808,-0.6702559,-0.6817015,-0.8537344,-0.9944407,-1.1332202,-1.2458081,-1.3612711,-1.4765925,-1.5091071,-1.5853856,-1.6677631,-1.7525675,-1.829745,-1.8876355,-1.9334412,-1.9749997,-1.938085,-1.8310927,-1.6862949,-1.6362554,-1.7015508,-1.8009002,-1.8803623,-1.2111123,-0.6743939,-0.68791795,-0.67095447,-0.6429881,-0.8209206,-1.0013893,-1.1348033,-1.1446477,-1.0032942,-0.7226454,-0.5892304,-0.5448129,-0.3812564,-0.533056,-0.74765885,-0.8955735,-0.9762094,-0.32135677,-0.20560516,-0.030337092,0.5934985,0.7137368,0.3956131,0.3165755,0.16129814,-0.040473115,0.733816,0.43107456,0.5868891,1.0374446,0.7781376,0.7126261,0.24784152,0.029812831,-0.17693125,-0.41287354,0.60029024,0.39042714,-0.026667502,-0.2434545,-0.3544045,-0.4972797,-0.54804075,-0.6230784,-0.67742807,-0.7446768,-0.62206614,-0.35489374,-0.4552339,-0.62628335,-0.75252676,-0.84528935,-0.94290745,-1.0281348,-0.9247028,-0.12769179,-0.10704894,-0.38508695,-0.53072876,-0.36230928,0.27217025,-0.17407499,-0.40022662,-0.5561398,-0.6899602,-0.7829411,-0.8618003,-0.22771819,0.5276203,0.052299242,-0.2015784,-0.34991628,-0.46608764,-0.5828669,-0.69929004,-0.7920476,-0.86109984,-0.93192554,-0.97456694,-1.0403047,-1.0760694,-1.153422,-1.1907873,-1.2346601,-1.2507291,-1.3205497,-1.3433094,-1.3600972,-1.3902339,-1.4217288,-1.4205576,-1.4450874,-1.454504,-1.4906944,-1.5584431,-1.498794,-1.1739011,-1.1876289,-1.2349284,-1.2693286,-1.2430227,-1.1913071,-1.115665,-1.1296334,-1.191776,-1.183339,-1.1847378,-1.1967065,-1.2360525,-1.1803312,-1.1770153,-1.2223072,-1.2769587,-1.2793124,-1.2672908,-1.2640533,-1.1011841,-1.1287773,-1.1907842,-1.1946629,-1.171031,-1.1444333,-1.1447374,-0.69138986,-0.15138647,-0.36736697,-0.4977531,-0.5287728,-0.51920134,-0.512696,-0.5375024,-0.610116,-0.65095687,-0.73311573,-0.78194004,-0.8013034,-0.8309052,-0.8365587,-0.78840804,-0.8046757,-0.7884243,-0.8527834,-0.9088987,-0.8044374,-0.8187016,-0.86482286,-0.8360433,-0.8614849,-0.89482915,-0.8190409,-0.39206207,-0.52899987,-0.62108,-0.38307106,-0.42276928,-0.53158915,-0.6067621,-0.66044474,-0.55431086,-0.5087622,-0.6056117,-0.70527,-0.7605227,-0.8073504,-0.80839336,-0.8538967,-0.574306,-0.10517049,-0.35730454,-0.46536914,-0.55254126,-0.647841,-0.462565,-0.38453755,-0.55489445,-0.73464453,-0.7881963,-0.6791841,-0.5746077,-0.56061995,-0.5421516,-0.54307157,-0.60859686,-0.7117972,-0.73628974,-0.76114404,-0.8298962,-0.90094054,-0.9480605,-1.0355592,-1.1195614,-1.1183063,-1.1271276,-1.1717427,-1.163732,-1.1610923,-1.1833345,-1.0733764,-1.0530647,-1.1525512,-1.2164898,-1.2133167,-1.3170323,-1.3915358,-1.4131718,-1.4407928,-1.5256078,-1.5222328,-1.5274578,-1.5595303,-1.5882348,-1.6382291,-1.6310133,-1.6034925,-1.634865,-1.6619594,-1.7259684,-1.7481132,-1.7382905,-1.770387,-1.7893146,-1.7890189,-1.808477,-1.8420696,-1.8613846,-1.8975731,-1.9111689,-1.9382553,-1.9715116,-1.993829,-2.0094736,-2.0393875,-2.0502334,-2.097549,-2.1427352,-2.1626499,-2.1723423,-2.1679282,-2.1802058,-2.1839209,-2.2007415,-2.239482
+-1.952446,-1.8539639,-1.8776845,-1.9453162,-2.0224986,-2.1572704,-2.2470143,-2.2227602,-2.2941213,-2.3485622,-2.327938,-2.4099858,-2.3913727,-2.443254,-2.4563572,-2.4865928,-2.5318105,-2.541464,-2.524179,-2.534525,-2.6017227,-2.4282722,-1.6164324,-1.5827467,-1.6779163,-1.7703948,-1.8560153,-1.9363135,-1.984794,-2.0333927,-2.0970743,-2.0967183,-2.154656,-2.2037637,-2.2411225,-2.2786963,-2.3208911,-2.3275504,-2.3726,-2.4094472,-2.4375882,-2.4771986,-2.483699,-1.7645,-1.067415,-0.8994075,-1.0043433,-1.0847027,-1.2566445,-1.4008555,-1.4841256,-1.6251308,-1.7480576,-1.8267772,-1.9405832,-2.0193198,-2.041657,-2.1249187,-2.193838,-2.2232125,-1.8828645,-0.7792176,-0.6740385,-0.8972737,-1.047161,-1.1989324,-1.3338801,-1.4584334,-1.5794225,-1.7181873,-1.7782383,-1.6256695,-1.4226723,-1.5101523,-1.5795292,-1.6448195,-1.2661414,-1.1934633,-1.3471626,-1.4495723,-1.576797,-1.6994424,-1.8093367,-1.8819556,-1.9654574,-1.9986082,-1.9548104,-1.7643433,-1.6130809,-1.4225742,-1.3764969,-0.80855155,-0.123334095,-0.40749258,-0.77490884,-0.89452416,-0.8515455,-1.0175898,-1.0397247,-1.1461514,-1.1604927,-1.2784729,-1.3842659,-1.4322953,-1.529284,-1.5514139,-1.4080467,-1.4389374,-1.5653645,-1.6207286,-1.7242349,-1.8180013,-1.892385,-1.9653702,-2.0296698,-1.989526,-1.8971329,-1.8781841,-1.8766309,-0.95975626,-0.10887328,-0.5390367,-0.5376365,-0.29021063,-0.4045868,-0.43275207,-0.5872986,-0.8071779,-0.94517803,-0.9211976,-0.97249097,0.060132194,0.850584,0.23804973,-0.22112426,0.54957426,0.35915217,-0.1679495,-0.32328352,-0.283433,0.23057766,0.49804652,0.23985709,0.3314038,-0.082929894,0.12863441,0.18610238,0.08748345,-0.006282119,0.10745175,0.22349136,0.14613615,0.35951698,0.051447365,-0.21102966,-0.34973007,-0.5096043,-0.6884393,-0.5669106,0.6456908,-0.12938261,-0.42160416,-0.5865531,-0.68150353,-0.85610735,-0.5622419,-0.6651794,-0.78009236,-0.9180544,-1.0367239,-1.1116428,-1.1815856,-1.2729182,-1.3486543,-1.4062481,-1.500327,-1.5515164,-1.0932505,0.5149761,0.24821894,-0.11885868,-0.31498456,-0.37134665,-0.08102444,-0.41862977,-0.6104954,-0.7456833,-0.8878316,-0.9861317,-1.0499032,-1.0750523,0.0743693,0.118561745,-0.24757901,-0.4322462,-0.5757879,-0.68609416,-0.7927524,-0.91482663,-0.99369293,-1.0721344,-1.1439185,-1.1917999,-1.1913078,-1.2615285,-1.314112,-1.3702548,-1.3879185,-1.444697,-1.4545224,-1.4775448,-1.5222733,-1.5568233,-1.5643189,-1.606374,-1.6307436,-1.6340544,-1.5915947,-1.3201411,-1.2349018,-1.351239,-1.399748,-1.4131923,-1.4000452,-1.1965581,-0.5896175,-0.38265592,-0.6893396,-0.81670916,-0.8757905,-0.94969547,-1.0277998,-1.0522481,-1.0802248,-1.1653099,-1.205264,-1.2281735,-1.2532673,-1.302497,-1.2876667,-1.353133,-1.3386279,-1.3647895,-1.3814334,-1.3677225,-1.4197625,-0.7197715,0.16034992,0.2970075,-0.2966658,-0.4819413,-0.5699209,-0.6252941,-0.6734357,-0.73885024,-0.8128023,-0.8660078,-0.90433097,-0.9369639,-0.98037016,-1.018838,-1.0418156,-1.0525649,-1.0524672,-1.1105967,-1.1224084,-1.1712172,-1.2019548,-1.2239897,-1.2226479,-1.2604959,-1.2893524,-1.3282747,-1.2868295,-1.3527256,-1.3760316,-1.3727794,-1.3816371,-1.4008952,-1.4339058,-1.4314926,-1.4076929,-1.3916278,-1.4042907,-1.4235654,-1.4451919,-1.4545625,-1.4689901,-1.4787607,-1.4516435,-1.3557147,-1.3256048,-1.3671875,-1.3770499,-1.40159,-1.4301789,-1.4252205,-1.4531006,-1.4700472,-1.4850528,-1.4890394,-1.4816642,-1.4959431,-1.4698069,-1.4338052,-1.4411895,-1.4337476,-1.4522369,-1.4690077,-1.4954615,-1.5256112,-1.5446231,-1.5714295,-1.5921614,-1.6159239,-1.646601,-1.681473,-1.7226264,-1.6938939,-1.7600491,-1.7687852,-1.7560408,-1.7529057,-1.777322,-1.8104807,-1.8156836,-1.8326244,-1.8404055,-1.8635057,-1.8904033,-1.944207,-1.972897,-1.9736929,-1.9861234,-2.016179,-2.0403562,-2.0785513,-2.0495782,-2.0110273,-2.023144,-2.0559297,-2.0858612,-2.0977376,-2.146739,-2.120566,-2.1507723,-2.1500936,-2.1680155,-2.2069068,-2.254781,-2.2721832,-2.306602,-2.3169403,-2.336828,-2.3529377,-2.3706827,-2.3975701,-2.391243,-2.4555743,-2.4628067,-2.469808,-2.5298536,-2.4348512,-2.4539275,-2.4884586
+-1.7984865,-1.9439969,-1.9634855,-2.0311913,-2.1183496,-2.2806244,-2.3911338,-2.361189,-2.3928819,-2.4228973,-2.441324,-2.4858024,-2.49753,-2.53217,-2.5281258,-2.5927782,-2.6154575,-2.6356058,-2.626855,-2.6221795,-2.6741014,-2.5010924,-1.4477148,-1.1800725,-1.3175344,-1.4699564,-1.6217153,-1.7278665,-1.8194246,-1.8806294,-1.9521846,-1.973929,-2.0233784,-2.0743608,-2.1163797,-2.1549234,-2.235722,-2.2942736,-2.349668,-2.3768911,-2.4113739,-2.446775,-2.4809701,-1.4810772,-1.0400686,-0.9718273,-1.1893458,-1.3484629,-1.4652952,-1.6037028,-1.6877964,-1.8030664,-1.9067175,-1.9871734,-2.0913258,-2.1567001,-2.185598,-2.2508068,-2.3268476,-2.3695683,-1.6996162,-0.93327844,-0.7804049,-1.0333105,-1.2194371,-1.3556931,-1.4823029,-1.5997837,-1.6836938,-1.7735679,-1.851792,-1.7730817,-1.8021029,-1.9131974,-1.8273779,-1.7296748,-1.3487935,-1.3702471,-1.5374818,-1.6505077,-1.7780216,-1.855356,-1.9312408,-1.8194947,-1.5871446,-1.4741013,-1.2836082,0.017474,-0.06993179,-0.14568663,-0.41423732,-0.64982754,0.27908605,-0.031540863,-0.35845244,-0.47212195,-0.6231538,-0.6394122,-0.637395,-0.7732681,-0.6015743,-0.7465885,-0.86342657,-0.9200458,-1.0352355,-1.0977423,-1.0661243,-1.1777446,-1.2857474,-1.3949659,-1.4949636,-1.5834988,-1.6751981,-1.7575939,-1.8234963,-1.8886056,-1.9303247,-1.9284127,-1.6939936,-1.2187625,-0.8626748,-0.8090569,-0.5179635,-0.29026783,-0.41555634,-0.4167976,-0.61122155,-0.8045303,-0.947091,-0.9545967,-0.90223765,-0.12845586,0.76185936,0.07298228,0.92053646,0.98401904,0.71007127,0.19368313,-0.048976686,0.6474834,0.8268512,0.4311406,0.46952498,0.35348827,0.039544065,0.28682172,0.16931212,-0.04771455,-0.16252865,-0.30820847,0.19568503,0.049118254,0.11500068,0.47088897,0.15069433,-0.15673232,-0.3057405,-0.4518354,-0.59812355,-0.06064937,-0.3638435,-0.53292465,-0.6364423,-0.6771629,-0.7825758,-0.8836057,-0.9486028,-0.9885232,-1.058082,-1.110112,-1.1659502,-1.1068754,-1.1089941,-1.1568489,-1.2323241,-1.3088415,-1.157817,-0.14571841,-0.08517234,0.09871803,-0.26934516,-0.46183616,-0.5435811,-0.12779467,-0.45990467,-0.6313876,-0.62457913,-0.72257686,-0.83848864,-0.903808,-0.9425111,-0.37575164,0.056756962,-0.3152116,-0.5243778,-0.6508513,-0.7542504,-0.8337927,-0.916836,-0.98751605,-1.0503585,-1.1185801,-1.1810426,-1.2077751,-1.2562714,-1.2909839,-1.3489131,-1.3700742,-1.4081848,-1.4348376,-1.4460067,-1.4820818,-1.5112497,-1.5200647,-1.5451851,-1.5721681,-1.592644,-1.5125169,-1.4283051,-1.454906,-1.5301485,-1.5796703,-1.5892076,-1.6068963,-1.0905231,-0.61441827,-0.73552704,-0.89774626,-0.9720618,-1.0146608,-1.072396,-1.1499815,-1.2034822,-1.2100742,-1.2758462,-1.2887087,-1.3436209,-1.3575324,-1.3756377,-1.3662407,-1.3833832,-1.4146837,-1.4566262,-1.4934258,-1.4921472,-1.5236253,-1.0086191,0.32369524,0.27452272,-0.22146936,-0.40096486,-0.520967,-0.57055026,-0.6441577,-0.71768486,-0.79891145,-0.869135,-0.92727375,-0.979828,-1.0181072,-1.0706677,-1.1457402,-1.1813943,-1.2179637,-1.2448673,-1.2659298,-1.2616444,-1.2673728,-1.3178359,-1.3696167,-1.3971941,-1.4238541,-1.4571311,-1.4355037,-1.3750739,-1.4270847,-1.4639127,-1.503361,-1.5287522,-1.5356188,-1.548213,-1.5731943,-1.5660356,-1.58412,-1.5853264,-1.6089779,-1.628675,-1.6626456,-1.6653643,-1.6740655,-1.7275102,-1.7456403,-1.7335796,-1.7318689,-1.7487471,-1.7178569,-1.7552571,-1.7609053,-1.762212,-1.7939961,-1.8226097,-1.8245585,-1.8737626,-1.8958178,-1.8788569,-1.8693974,-1.8438196,-1.8407936,-1.841312,-1.8539379,-1.8560015,-1.8834094,-1.9205961,-1.9329531,-1.924965,-1.9341816,-1.9583404,-1.9789475,-1.9825258,-2.00154,-2.0491385,-2.0464747,-2.0304368,-2.0656178,-2.0647974,-1.9920969,-2.0165317,-2.0235262,-2.0532575,-2.059802,-2.1250281,-2.1374035,-2.1379118,-2.156652,-2.1743627,-2.198142,-2.2093568,-1.906477,-1.8138465,-1.8221529,-1.9060097,-1.9378561,-1.9437616,-1.9662304,-1.9730215,-2.0165129,-2.0191994,-2.054244,-2.0823796,-2.1282444,-2.1663141,-2.2000494,-2.2194524,-2.2431102,-2.2693455,-2.2917204,-2.3237867,-2.376018,-2.41598,-2.4285827,-2.437557,-2.4369185,-2.445158,-2.4656906,-2.4883394
+-1.1134783,-1.1850314,-1.240917,-1.3491485,-1.4682889,-1.7187269,-1.8155246,-1.8264701,-1.8155472,-1.8887486,-1.945693,-1.9999027,-2.042951,-2.0633996,-2.1165464,-2.1719978,-2.2051606,-2.2339969,-2.2437668,-2.2557225,-2.2822075,-2.2942274,-0.9302487,-0.70758104,-0.93547404,-1.082875,-1.210748,-1.3198577,-1.4232292,-1.5015781,-1.5699698,-1.637717,-1.7002842,-1.7700369,-1.8390177,-1.8635399,-1.9180869,-1.97085,-2.0525908,-2.1023777,-2.118568,-2.1361437,-1.8408301,-1.157064,-0.5932747,-0.5520141,-0.84482384,-1.0263565,-1.1552658,-1.2772968,-1.374003,-1.4739764,-1.5794876,-1.6673214,-1.7686741,-1.8363659,-1.9079413,-1.9589529,-2.0056443,-2.043714,-1.8569536,-1.4678717,-1.417549,-1.5326363,-1.62465,-1.7133614,-1.801856,-1.8590893,-1.9370592,-1.9950316,-1.9661187,-1.8891459,-1.8564672,-1.9013195,-1.2183477,-0.2087137,-0.12036313,-0.41350532,-0.69217706,-0.88647926,-1.0443872,-1.180053,-1.2158424,-1.2904333,-1.2290773,-1.1777087,-1.243587,-0.00891814,0.8814459,0.8297502,0.9355962,0.76012534,0.84396696,0.7027612,0.40692097,0.39867318,0.13393582,-0.052961845,-0.1826963,0.054060694,0.16709472,-0.04710952,-0.27887556,-0.4462877,-0.5931839,-0.7250966,-0.8127878,-0.8727435,-0.98757887,-1.089205,-1.1907816,-1.2662153,-1.352649,-1.4351499,-1.4701287,-1.1814404,-0.6139712,-0.17272118,0.00939801,0.1480319,0.2648378,0.037821453,-0.047987163,-0.11587906,-0.24373749,0.01568466,-0.17711745,-0.3866516,-0.48755956,-0.2844747,-0.039827585,0.56149757,1.2194622,0.75295615,1.2542048,1.8485677,1.1927005,0.9244346,1.1330392,1.2788172,1.5857953,1.0582621,1.2805407,1.252809,0.96729517,1.2482123,0.944505,0.7566221,0.42010078,0.3982914,1.3059441,1.4381162,1.4657669,1.0687613,0.6744798,0.4183842,0.24142532,0.09958975,0.16971593,0.22000186,0.14416265,0.2068518,0.4028682,0.7975894,0.6049218,0.36320662,0.17666017,0.16117711,0.020737298,-0.105345815,-0.24312523,-0.20744385,-0.23429374,-0.34426543,-0.42863417,-0.43084234,0.1354211,1.0175692,1.0225719,0.8121149,0.5239681,0.38820976,0.6411763,0.6975196,0.26255634,0.0775782,0.25208306,0.12180109,-0.06658625,-0.16107103,-0.24598841,-0.15554261,-0.06966831,-0.2101932,-0.32111192,-0.409555,-0.4880488,-0.535179,-0.5948011,-0.65286195,-0.70112765,-0.66274637,-0.08297607,0.27225888,-0.058295984,0.072649434,-0.10592784,-0.26691315,-0.37305713,-0.44659466,-0.52690023,-0.6063855,-0.6721878,-0.73616254,-0.7970393,-0.8453253,-0.8861333,-0.86577827,-0.049928363,0.11185537,-0.21956478,-0.33925253,-0.41535896,-0.4426395,-0.3923574,-0.21948521,-0.043669697,-0.22122884,-0.37421554,-0.45489705,-0.5408745,-0.6130179,-0.640229,-0.6997266,-0.76181346,-0.77991927,-0.8399099,-0.8652085,-0.88629794,-0.91334236,-0.9521133,-0.9952718,-1.0533218,-1.078938,-1.1042105,-1.1119747,-0.53558123,0.65066314,0.48212576,0.013114698,-0.14823511,-0.24974914,-0.30501825,-0.38498735,-0.46534342,-0.5254474,-0.6098138,-0.65789545,-0.706187,-0.7653667,-0.8208895,-0.8735403,-0.8902818,-0.94192016,-0.9794178,-0.98671573,-0.9580879,-0.9040779,-0.99019456,-1.0262234,-1.0433266,-1.09937,-1.1011406,-1.1271158,-1.1356105,-1.1998816,-1.2418797,-1.264766,-1.2671745,-1.317749,-1.3421346,-1.3471651,-1.3660223,-1.3652004,-1.3785748,-1.397764,-1.4238322,-1.4214535,-1.4276415,-1.4582667,-1.494026,-1.506747,-1.5241044,-1.5591499,-1.581892,-1.5907843,-1.6383828,-1.6053013,-1.6114467,-1.6358124,-1.6609116,-1.6709173,-1.6454145,-1.6836303,-1.6062568,-1.5898366,-1.630544,-1.6584074,-1.664861,-1.6778826,-1.6857352,-1.7143633,-1.7330712,-1.7349727,-1.7277591,-1.7507601,-1.7650512,-1.7712007,-1.8004234,-1.8373337,-1.837354,-1.7537265,-1.7551866,-1.8055975,-1.6386281,-1.6561362,-1.713858,-1.7282189,-1.7643523,-1.8120699,-1.8415415,-1.8496476,-1.875445,-1.900188,-1.9161849,-1.9086497,-1.9242029,-1.4886019,-1.1384269,-1.195271,-1.2846557,-1.3481294,-1.3031583,-1.0896964,-1.013911,-1.0053791,-1.0764894,-1.1739355,-1.245868,-1.3079169,-1.365592,-1.4337765,-1.5019044,-1.5669731,-1.6208185,-1.6640043,-1.726095,-1.814931,-1.8568559,-1.8924222,-1.9335849,-1.9694765,-2.0293741,-2.051805,-2.0602064
+-1.4176193,-1.5608349,-1.487886,-1.5932848,-1.6945021,-1.8485851,-1.9143558,-2.002477,-2.1244059,-2.2149253,-2.2769523,-2.3181643,-2.3420744,-2.3044548,-2.3531518,-2.40297,-2.423409,-2.4412465,-2.4607916,-2.4773927,-2.4721298,-2.5049992,-2.275553,-2.2070634,-2.297678,-2.3458414,-2.385637,-2.3966405,-2.418859,-2.4235263,-2.437011,-2.4750242,-2.438838,-2.425696,-2.4586487,-2.4613519,-2.4927173,-2.5313625,-2.5680783,-2.5885108,-2.6077523,-2.603417,-2.622767,-2.5730486,-2.575531,-2.3643374,-2.3596973,-2.4371357,-2.4806352,-2.511978,-2.5199978,-2.5403466,-2.5418937,-2.5635138,-2.5773747,-2.5947356,-2.627174,-2.6555228,-2.638433,-2.6359148,-2.6887271,-2.5750318,-2.207994,-2.1464663,-2.1772585,-2.2041097,-2.2563233,-2.3031468,-2.3444746,-2.4056852,-2.41348,-2.3403375,-2.3798327,-2.405655,-2.376594,-1.9468997,-1.5514395,-1.4057347,-1.120062,-1.1643403,-1.3083975,-1.1363868,-0.72462034,-0.8693297,-1.0049145,-1.0709711,-1.1416843,-0.19941112,0.23342688,0.45224613,0.08299711,-0.09482059,-0.14558898,0.5177568,0.42284676,0.30409864,-0.05532908,0.14595182,0.14212148,0.32571012,0.092034355,-0.19441603,-0.3708967,-0.34877557,-0.4228961,-0.59201056,-0.6311015,-0.5973716,-0.6747848,-0.7313766,-0.7127362,-0.78810966,-0.9303031,-0.9462216,-0.6280168,-0.6315139,-0.63592243,-0.014680605,0.513216,0.495718,0.28834534,0.57521516,0.11559816,0.032521334,-0.031985108,-0.1788659,0.25509778,0.027634386,-0.11123265,-0.18700677,0.086077645,0.39307165,0.5377905,0.36352575,0.43653876,0.896961,1.233995,0.9623837,1.0805031,1.2055628,0.8459034,0.61178493,0.78449297,0.74280113,0.6400948,0.3969227,0.43949842,0.27505842,0.16263394,0.26766068,0.8590418,0.9149575,0.8780551,0.60546255,0.33503917,0.22287564,0.19857259,0.08118884,0.45077747,0.16827635,0.046607878,0.04417899,0.09031087,0.028563637,0.01312362,0.031676557,0.21029793,0.06412734,-0.12404466,-0.2318032,-0.26707515,-0.17250049,-0.18671499,-0.28151798,-0.3810542,-0.4367054,-0.13316454,0.1598443,0.19313027,0.21955271,0.014922526,-0.10782169,0.2810322,0.40014344,0.069617435,-0.08703327,-0.07116626,-0.19593246,-0.31895387,-0.3795113,-0.44574413,-0.5322562,-0.5842174,-0.62183297,-0.6721623,-0.72298473,-0.7699431,-0.7704684,-0.75637317,-0.8109834,-0.8223183,-0.4227479,0.112449124,0.15874444,-0.12709291,-0.24122606,-0.3588318,-0.45364577,-0.5151098,-0.57452935,-0.6420325,-0.7032844,-0.75774986,-0.8156395,-0.8723624,-0.94209635,-0.97215915,-0.99343795,-1.0205458,-0.9332117,-0.82190704,-0.79626685,-0.7443477,-0.42168602,-0.28920466,-0.41610456,-0.43379027,-0.47535306,-0.54909647,-0.60795355,-0.6937827,-0.72788745,-0.7588261,-0.80627155,-0.86570156,-0.9112885,-0.9119775,-0.9160476,-0.9521762,-0.964872,-1.0395576,-1.1314912,-1.2035047,-1.2387264,-1.2583382,-1.3014594,-0.9622435,-0.48379302,-0.5667464,-0.69028825,-0.76286167,-0.7945792,-0.7859709,-0.82434064,-0.88248503,-0.9120601,-0.9466529,-0.9672788,-0.99231863,-1.0545671,-1.1492642,-1.2029114,-1.2018046,-1.2181451,-1.2222155,-1.200449,-1.2400682,-1.2602994,-1.336426,-1.3653262,-1.3609887,-1.3597755,-1.3505144,-1.370615,-1.4290272,-1.4592123,-1.5018601,-1.537056,-1.5224304,-1.5572772,-1.5917304,-1.5572033,-1.5385611,-1.529329,-1.5379734,-1.5650486,-1.596358,-1.597902,-1.6270089,-1.6929625,-1.7381634,-1.7789166,-1.7706909,-1.7786291,-1.816329,-1.80203,-1.84379,-1.7973261,-1.828432,-1.8763409,-1.889307,-1.927675,-1.9157443,-1.8441212,-1.7737039,-1.7659805,-1.6945071,-1.7366412,-1.7368727,-1.7789466,-1.8369153,-1.8780584,-1.884382,-1.8730927,-1.8459766,-1.8598664,-1.8590308,-1.8834016,-1.9421186,-2.0141306,-1.9954851,-1.8323967,-1.7178222,-1.7604737,-1.3003763,-1.1019089,-1.1699871,-1.232441,-1.3071592,-1.411754,-1.4858605,-1.5429298,-1.6052394,-1.6633991,-1.7053633,-1.7124381,-1.7273045,-1.622046,-1.3531158,-1.3889724,-1.4580288,-1.4309623,-1.2755015,-1.1921712,-1.0939202,-0.9135491,-0.9170661,-1.0225916,-1.1073744,-1.1768808,-1.2426839,-1.3016405,-1.361565,-1.4421473,-1.5358398,-1.5728229,-1.6630938,-1.7552729,-1.809195,-1.835976,-1.9130949,-1.941664,-1.9969528,-2.0378673,-2.0459864
+0.8802567,0.69872546,0.5448241,0.24970157,0.31401289,0.5310279,0.40040424,0.1850344,0.03175846,0.15302314,-0.03991646,-0.081490725,-0.16177784,-0.22251776,0.47207284,1.0029253,0.71793497,0.5638865,0.419486,0.26076192,0.11708699,-0.05018979,-0.22535996,-0.3239147,-0.41594607,-0.3738013,-0.20543185,-0.30174646,-0.42698273,-0.50614464,-0.591403,-0.67680675,-0.7251551,-0.77817416,-0.8576219,-0.9474941,-1.03779,-1.0636108,-1.0330992,0.02028929,1.310822,0.9444217,0.65010047,0.41077483,0.18745877,-0.037220377,-0.21672167,-0.37084508,-0.51538116,-0.5929548,-0.6580595,-0.7112523,-0.6557095,-0.7571527,-0.7033318,1.1847602,1.2239821,0.9809878,0.8208755,0.67745763,1.8409896,1.4091985,1.0010006,0.8924432,0.6507581,0.45578977,0.3266996,0.17542093,0.040507127,0.10623795,0.15834244,-0.007355962,1.1721509,0.73306215,0.44785827,0.42285967,1.2936713,0.85401267,0.48319274,1.1894884,0.822107,0.43931067,1.2447603,0.8782487,0.60124695,1.0819128,1.16219,1.1941658,0.85493386,0.5707469,0.48597223,0.32199523,0.4692235,0.36773527,0.4375465,0.6037743,0.46256512,0.6297929,0.43010136,0.7739428,0.9820185,1.0664586,1.5352151,1.5929415,1.2338424,0.98792994,0.8014304,0.6552476,0.44597262,0.34696412,0.23613925,0.03024472,-0.11963703,-0.16562039,-0.13157701,-0.25485888,-0.3426971,-0.33852693,-0.3883349,-0.47528744,-0.5526056,-0.5505552,-0.43965638,-0.51481974,-0.5350152,-0.25744748,-0.41003162,-0.53140485,-0.62226737,-0.5169972,-0.30446208,0.15131722,0.42620564,0.21219909,0.005769018,-0.13323684,-0.07203144,-0.15316394,-0.27389213,0.35472012,0.23141073,0.041912336,-0.12672767,-0.2524848,-0.40214863,-0.47541046,-0.4969104,-0.45843136,-0.37067938,-0.3984528,-0.52932316,-0.5851143,-0.6743368,-0.7522887,-0.7845921,-0.76460713,-0.78758097,-0.16361146,0.7485791,0.5602299,0.6198468,0.8385538,0.5103591,0.32767245,0.28593034,0.2045987,0.039753277,-0.1136931,-0.20402686,-0.23611307,-0.13527913,-0.16690804,-0.28248408,-0.2985498,-0.28885615,0.21891068,1.0113171,0.9750407,0.55801284,0.35215905,0.20539828,0.11562088,0.01647203,-0.04017536,-0.057161506,0.7798237,1.5026119,1.3874665,1.314532,1.1536126,1.0181999,0.9299276,1.0751868,1.0216521,0.82468367,0.7285897,0.76696587,0.60002834,0.48703194,0.41632038,0.35478604,0.31545362,0.27310967,0.30775815,0.67368126,0.97168624,0.68511397,0.6165184,0.64423287,0.55914843,0.49418807,0.42584145,0.33774185,0.6256696,0.92938054,0.70106626,0.6140409,0.52400315,0.44523168,0.3899957,0.33357805,0.29488674,0.29750013,0.20868486,0.18527146,0.20979336,0.18496285,0.19199477,0.23325844,0.33388215,0.27017906,0.29145187,0.38469574,0.5064409,0.56415087,0.5953665,0.654117,0.6789355,0.64816546,0.65799487,0.68889,0.76268584,1.0816848,1.1074824,1.0928353,1.0844443,1.0944701,1.0829997,1.3393655,1.4666176,1.4807262,1.4409497,1.4046671,1.4106874,1.3833575,1.3970878,1.42467,1.4723699,1.3886368,1.3929219,1.3789039,1.386651,1.3662716,1.3972412,1.4352269,1.3844084,1.3877518,1.4023677,1.355,1.4761963,1.4306428,1.4386708,1.5196046,1.503124,1.4755378,1.4824269,1.4919407,1.4766376,1.4704533,1.4531224,1.4472814,1.4784875,1.4602854,1.4286702,1.4364505,1.4708616,1.4582682,1.54025,1.4358507,1.3992704,1.396249,1.4142578,1.4140325,1.4730487,1.5053667,1.528682,1.562922,1.5892813,1.6502554,1.6482046,1.6079415,1.6482254,1.65861,1.6686097,1.7928277,1.8739114,1.8516614,1.7714045,1.6718186,1.609459,1.5819151,1.5665374,1.6112648,1.6718211,1.6602871,1.5986488,1.604811,1.6573892,1.6900389,1.7431319,1.7413669,1.7794452,1.9030031,2.01581,2.0489151,2.0344415,2.0448012,2.1449187,2.1786935,2.0614243,1.9712939,1.9141543,1.8739606,1.8307546,1.8372159,1.8509753,1.8394134,1.78106,1.8828532,2.2968616,2.4966657,2.5671186,2.5453446,2.4987845,2.2858782,2.0914097,2.0985904,2.0712094,2.1088538,2.3185432,2.6663651,2.71055,2.9492593,3.2731223,3.2488918,3.0072217,2.9926057,3.1399531,3.2868094,3.5199084,3.7009673,3.8145258,3.8039699,3.9761314,4.040432
+-0.40165478,-0.6108617,-0.8124192,-0.8625221,-0.69402695,-0.576964,-0.63392305,-0.6855053,-0.7382021,-0.78505015,-0.8580676,-0.7559321,-0.81013346,-0.8531136,-0.18620361,0.29225615,0.055004653,-0.02929791,0.008409787,-0.19522505,-0.3175477,-0.4639813,-0.55315155,0.38463622,1.233263,1.0084519,0.93817407,0.62711185,0.30180955,0.16163962,-0.03729241,-0.18946768,-0.34707165,-0.45708078,-0.5634676,-0.68460834,-0.76717556,-0.8280409,-0.863304,-0.5516897,-0.05494603,-0.23747294,-0.38248694,-0.5312234,-0.6842556,-0.7314122,-0.8004192,-0.85584486,-0.8797832,-0.9162905,-0.9492729,-0.9825865,-1.0808451,-1.1507978,-0.29783463,0.23197843,-0.10195574,-0.027044952,-0.13375664,-0.21158697,1.0759269,0.6688911,0.2380773,0.0015754513,-0.21823375,-0.37171093,-0.4566772,-0.5252869,-0.6160884,-0.7126137,-0.67816436,-0.14121547,0.5912094,0.1358417,0.35749012,0.531007,0.33926994,-0.004259372,-0.2008917,0.18882819,-0.025570648,-0.32588515,-0.2418454,-0.30684718,-0.4800154,0.04754961,0.21575396,0.0005650036,-0.22989823,-0.4567992,-0.5343797,-0.59604734,-0.06583877,-0.28197482,-0.5653476,-0.07555111,0.064779416,0.12751655,-0.19035178,-0.36181986,-0.4735515,-0.46867278,-0.4548543,-0.50161874,-0.46463454,-0.32963073,-0.31266028,0.32543102,-0.012394153,-0.14781259,-0.4257928,-0.69483095,-0.8906213,-0.33719093,-0.30076402,-0.6511291,-0.8006374,-0.87663794,-0.9090328,-1.0348644,-1.1283996,-1.1716452,-0.8035837,-0.8742278,-1.0248597,-1.1454607,-1.269034,-1.309332,-1.3438065,-1.4027653,-1.4345331,-1.2825196,-1.2621233,-1.2965896,-1.173684,-1.2404413,-1.3172235,-1.4184271,-1.4837773,-1.5365446,-1.0415902,-0.95904636,-1.1094134,-1.2270412,-1.4186697,-1.5628192,-1.5537575,-1.6485205,-1.6375427,-1.6947162,-1.6992174,-1.7133796,-1.7120752,-1.7140083,-1.7467602,-1.7850704,-1.5671284,-0.8374789,-0.5164991,-0.21877481,-0.25997248,-0.54719245,-0.6645393,-0.7877983,-0.9321114,-0.9882685,-1.0353022,-0.51777726,-0.048743088,-0.4579805,-0.6741608,-0.8857651,-1.0103214,-0.4006682,0.15466923,0.7413033,0.67463,0.7215582,0.18098626,-0.06309144,-0.24125735,-0.3302669,-0.38941386,-0.47601736,-0.55492884,-0.3180116,0.017649975,-0.0315501,-0.22161473,-0.30822188,-0.32228532,-0.34296143,-0.47985473,-0.3435986,-0.4098671,-0.4653237,-0.46957982,-0.6085795,-0.65863913,-0.65377235,-0.6496728,-0.72248966,-0.7565332,-0.7850033,-0.85469997,-0.9153186,-0.866536,-0.8433391,-0.9089903,-0.89695936,-0.97389495,-0.9957674,-0.97174054,-0.34144488,0.18934144,-0.15280761,-0.31527454,-0.43723103,-0.5232156,-0.5729838,-0.6549016,-0.6703509,-0.67050356,-0.7630763,-0.7640462,-0.7382702,-0.77419305,-0.7589172,-0.8044935,-0.80825377,-0.8821745,-0.87767774,-0.82246494,-0.76954156,-0.7687191,-0.77245694,-0.75186217,-0.6823213,-0.6508233,-0.61259794,-0.56717837,-0.47451282,-0.3250293,-0.19668494,-0.16494825,-0.16829735,-0.17945458,-0.18024513,-0.021632206,-0.0065339394,-0.022836331,-0.049233545,-0.024590116,-0.018893253,-0.023344021,-0.032146182,-0.086441845,-0.09075034,-0.055898335,-0.12986194,-0.0840067,-0.056844976,-0.15083797,-0.2066016,-0.19141816,-0.17038402,-0.12169242,-0.08107227,-0.102972195,-0.009863887,-0.008934107,-0.07224877,-0.065946475,-0.06790449,-0.05953152,-0.08058207,-0.0316193,0.034878317,0.025381487,0.021113906,0.02057973,0.06685126,0.05163261,0.056792114,0.017026443,0.1392259,0.13426399,0.15763961,0.1300122,0.117276296,0.09767635,0.085750505,0.021730978,-0.0065246634,-0.019826483,-0.0055650584,0.00042166188,0.02169815,-0.0012733229,-0.014960717,0.03388008,0.040431198,-0.0089171715,-0.012864243,-0.0054586343,0.03667983,0.10694516,0.14088352,0.14953642,0.09858854,0.040309805,0.058152784,0.16059877,0.18522476,0.17857888,0.18264672,0.1443833,0.17940252,0.17708199,0.1657279,0.15471303,0.14750664,0.17496577,0.17254874,0.21621297,0.22849382,0.26552176,0.39217502,0.37735072,0.32036692,0.27291432,0.18382885,0.1987335,0.17700882,0.18296205,0.23616289,0.18137863,0.14759846,0.16873196,0.30852383,0.3113047,0.24837987,0.17371035,0.17116527,0.13841605,0.19502603,0.20450245,0.26844835,0.29241776,0.56786513,0.65306747,0.7590065,0.9465208,1.1244245,1.1861562,1.0961912,1.2390418,1.3776352,1.3686798,0.4504904,-0.022095952,-0.01747635,-0.025116052,-0.07335159,0.19755636
+-0.34178263,-0.66540754,-0.83062494,-0.8911934,-0.72831,-0.73142016,-0.83915365,-0.78126967,-0.7397026,-0.79865676,-0.85439265,-0.73268485,-0.66053,-0.55033135,-0.5588702,-0.43361253,-0.33527204,0.2568092,0.9498086,0.47522545,0.26139095,0.068559185,-0.040807467,0.5574992,0.6935496,0.40776372,0.85355186,0.96257794,0.7040558,0.4953214,0.29571745,0.14597312,0.020600159,-0.08023976,-0.16651635,-0.31167153,-0.36552858,-0.42468655,-0.51391315,0.037318293,0.87391496,0.44378167,0.5454676,0.40548027,0.23858647,0.09106009,-0.041527167,-0.16886774,-0.2756536,-0.4048123,-0.46855152,-0.49658674,-0.5377217,-0.642547,-0.6401649,-0.52131736,-0.54430234,-0.60690755,-0.67828465,-0.23052686,0.8500993,0.6643536,0.31516513,0.27636135,0.057217937,-0.10747281,-0.22033091,-0.31385478,-0.39076754,-0.46682203,-0.15682662,-0.10984033,0.037937384,0.070692495,0.255781,0.06729607,-0.122630015,0.05306666,0.24381487,0.07685697,-0.17172767,-0.35269758,-0.48958862,-0.6174837,-0.6732248,-0.81550777,-0.9582907,-1.0081311,-1.0793118,-1.0269107,-0.8622444,-1.0243565,-1.0520184,-0.68315804,-0.5461406,-0.78377175,-0.26936707,-0.05960599,-0.3689165,-0.5074453,0.35038954,0.43602657,0.17063406,-0.030840103,-0.009061117,0.18689953,0.4067703,0.31704867,0.01486427,-0.18911208,-0.36374626,-0.48313445,-0.67771053,-0.24807869,-0.1481017,-0.4133472,-0.3005257,-0.08839522,0.26242602,0.061895553,-0.20978628,-0.3855585,0.010312278,-0.096677884,-0.33267447,-0.51474506,-0.6718199,-0.7729236,-0.8606365,-0.9342984,-0.93313634,-0.90983593,-0.764585,-0.8571048,-0.8656298,-0.97717774,-0.81828105,-0.68127096,-0.8486271,-0.9495686,-0.17695904,0.0015032776,-0.35213476,-0.507677,-0.6690695,-0.8183136,-0.8918451,-0.95194364,-0.7846682,-0.815909,-0.9440155,-1.0433968,-1.0740997,-1.1883142,-1.2488525,-1.2875562,0.2402318,0.67217565,0.14909454,0.36060178,0.24176987,0.16307925,0.15728009,-0.08598344,-0.17733665,-0.25760198,-0.36291236,-0.31693786,0.060967263,-0.20545107,-0.3250283,-0.48874944,-0.479988,-0.3672605,-0.4863084,0.41510823,0.64546293,1.0219572,0.42292243,0.13942005,-0.021948215,-0.13498628,-0.20961373,-0.33814907,-0.33049485,0.16576256,0.26181594,0.14917164,-0.08796139,-0.19196899,-0.25051194,-0.3391478,-0.44123596,-0.4137864,-0.4567898,-0.47001082,-0.5127607,-0.6092671,-0.67497873,-0.60265017,-0.2309445,-0.16111113,-0.23658146,-0.35585243,-0.4625296,-0.5455538,-0.5457929,-0.56646013,-0.6622946,-0.6788377,-0.7227253,-0.6184459,-0.6099694,-0.67455316,-0.72768307,-0.81606597,-0.82384384,-0.8470617,-0.85632914,-0.86225975,-0.9248314,-0.9348331,-0.9263736,-0.98869777,-0.9479366,-0.93759906,-0.9749494,-0.997973,-1.010917,-1.0155807,-1.0170428,-0.9724858,-0.868608,-0.8373165,-0.8479031,-0.87026703,-0.87737894,-0.8129953,-0.78545344,-0.75319445,-0.7233938,-0.6778349,-0.5261856,-0.5559957,-0.5793475,-0.54140615,-0.49991757,-0.5155639,-0.47468266,-0.3606141,-0.26414785,-0.23958069,-0.20564279,-0.2679368,-0.3398931,-0.3822785,-0.3332287,-0.32958442,-0.3484483,-0.42748567,-0.37176573,-0.38899913,-0.52011824,-0.5514971,-0.5108228,-0.47830558,-0.4638855,-0.4128933,-0.48105627,-0.4643942,-0.50385153,-0.56234574,-0.5497339,-0.51483613,-0.5368539,-0.49729687,-0.5271209,-0.40494025,-0.39860415,-0.48119763,-0.46543384,-0.47220454,-0.4905969,-0.5165324,-0.5120868,-0.4091364,-0.42480618,-0.48283088,-0.5771355,-0.5987014,-0.63195384,-0.64672863,-0.6493037,-0.65561473,-0.6442498,-0.6114247,-0.58822036,-0.5556003,-0.6021776,-0.5945678,-0.6014135,-0.62935257,-0.61823875,-0.60444033,-0.59930456,-0.56198823,-0.53388894,-0.50028104,-0.4316296,-0.57597566,-0.5699233,-0.5993749,-0.5698156,-0.5575857,-0.6005863,-0.58138806,-0.6514534,-0.64761376,-0.62469286,-0.6208359,-0.61337805,-0.580516,-0.55003905,-0.550097,-0.4876775,-0.5108506,-0.5370629,-0.40500867,-0.3825212,-0.3669098,-0.44200298,-0.49020982,-0.43852374,-0.44140244,-0.52612257,-0.5348506,-0.4822804,-0.45093876,-0.39180487,-0.4670352,-0.5712239,-0.5821088,-0.58797777,-0.49869457,-0.46507594,-0.47937542,-0.42727557,-0.4465373,-0.46752605,-0.4552647,-0.5348544,-0.4721051,-0.55666894,-0.0057746135,0.115753114,0.15805139,0.2766068,0.07024494,-0.054517314,-0.0904198,-0.15226993,-0.19526319,-0.26301077,-0.25444698,-0.038358662
+0.87156045,1.1048012,1.0576501,1.1012671,1.0518681,0.9754065,0.7857106,0.729115,0.6176974,0.5938073,0.5611205,0.44750047,0.3342365,0.23616661,0.24933593,0.49148625,1.5624442,2.1742904,2.3220983,1.9657173,1.7135669,1.4653556,1.2498846,1.5287851,1.5645514,1.8507105,2.3842432,2.3555698,2.1693058,2.0307863,1.7935873,1.5650508,1.3911511,1.2083205,1.0223536,0.8441861,0.7105401,0.6825585,0.74689925,1.0661972,1.0892324,0.8771727,1.091335,1.0248147,0.8822155,0.7383065,0.56154895,0.39590222,0.25758284,0.19162463,0.5204311,0.61707145,0.49248737,0.37078732,0.7293495,1.1604836,1.0834057,1.2195873,1.1870985,1.126178,1.1317921,1.0118032,0.79287165,0.53029346,0.30834568,0.14573519,0.022183921,-0.07875857,-0.11905365,-0.16544594,-0.17679156,-0.20228747,-0.28275025,0.9274525,1.241109,1.0158417,0.84460276,0.63003314,1.3238106,1.3499839,1.0095172,0.9075897,0.76390576,0.55531716,0.40312147,0.1317414,-0.12228522,-0.2263395,-0.29598668,-0.36257327,-0.4396417,-0.53783303,-0.5978494,-0.64384085,-0.65126485,-0.6506503,0.80248135,1.6199186,1.2742739,1.0233518,0.7307651,0.40141514,0.080129206,-0.10902794,-0.25392365,-0.36078066,-0.31901738,1.1748096,1.38342,1.1935905,0.89446497,0.61015487,0.53157943,1.0615989,0.9279285,0.73179394,0.74780595,0.71396935,1.0099404,1.1448739,0.8686114,0.809255,0.7666118,0.56707335,0.6320751,0.5663852,0.38947988,0.23051502,0.07437885,0.67672,0.88019013,0.6828276,0.62504566,0.47628975,0.5242363,0.47860688,0.4530649,0.7007863,0.73050183,0.9610281,2.0344334,1.9460528,1.4671648,1.2030612,0.8799337,0.6565275,0.51536685,0.6467874,0.85237825,0.7583859,0.58449966,0.43043724,0.23816936,0.05432089,-0.028453529,-0.06524171,0.19766884,1.3500235,1.2600378,1.0543869,0.9035464,0.8770961,0.73936355,0.59925795,0.5256667,0.9492359,1.053009,1.0597775,1.4465113,1.1666813,0.9482603,0.7846581,0.6340583,0.4939549,0.39625105,0.33154678,1.3650353,1.6284151,1.2978271,1.1330931,1.0129254,0.85582197,0.75652075,0.6232277,0.5514821,0.62734294,0.9686854,0.86248803,0.7735466,0.699471,0.61947674,0.5212447,0.4418044,0.40168232,0.35860735,0.25643548,0.22852103,0.23370828,0.23603909,0.21273169,0.3355983,0.41664287,0.47366577,0.3813311,0.30322015,0.20657922,0.17211632,0.10442041,0.085852504,0.083927825,0.11313714,1.0840156,1.6534084,1.3511889,1.2198831,1.1095444,1.0529428,0.96238947,0.8815104,0.7922524,0.7233752,0.6812031,0.6047357,0.5685507,0.5409676,0.44385108,0.45009226,0.47867197,0.49940574,0.46051085,0.7852688,1.1640553,1.055383,1.0483538,1.0592711,1.0903594,1.0019572,0.9503629,0.8852941,0.8635337,0.8602493,0.83037156,1.5090115,1.5494671,1.3834517,1.4103765,1.357645,1.3911798,1.6733205,1.910954,1.8705052,1.8332624,1.7860098,1.7889,1.7532387,1.7760885,1.76981,1.7188804,1.7501844,1.7086034,1.7447541,1.6576124,1.704814,1.8478572,1.9879148,1.8888711,1.8403753,1.8869469,1.8832017,1.9275111,1.8156483,1.8976659,1.8835349,1.9621567,1.9587739,1.9427433,1.8656235,1.8673539,1.8048534,1.7891551,1.7506641,1.7774686,1.8045139,1.9024446,1.9319133,1.9009283,1.8594484,1.8259559,1.8254063,1.8172115,1.862279,1.8581704,1.9490353,2.0439186,2.1101704,2.2779098,2.2542672,2.2169573,2.141852,2.1391897,2.124992,2.1692271,2.3365173,2.4905148,2.5725307,2.5667624,2.4831977,2.2385697,2.0998561,2.1761937,2.2342913,2.3094604,2.3086948,2.1651611,2.1859355,2.396204,2.5940464,2.5272813,2.4438891,2.456728,2.5100946,2.6231894,2.6874132,2.7332232,2.571848,2.4427028,2.3231163,2.1690285,2.0917063,1.9966605,1.9360816,1.8285835,1.8651012,1.9276198,1.89885,1.9638273,2.0623698,2.025137,1.9110295,1.7990558,1.5839602,1.4405265,1.4804342,1.4642389,1.5263338,1.557323,1.6432703,1.7286714,1.879988,1.8873782,1.7636632,1.6092098,1.5163922,1.4181471,1.4713078,1.6100183,1.8249187,2.0256371,1.8120385,1.7813289,1.6577218,1.5194232,1.4425219,1.3324311,1.2375429
+0.90644544,1.1609995,1.2245215,1.1463327,0.88716656,0.5333482,0.42401245,0.36953682,0.2789029,0.2121432,0.1772363,0.12447019,-0.00049382076,-0.07456142,-0.008966949,0.73489696,1.664616,1.79007,1.6830784,1.4725597,1.3223217,1.1809602,0.958739,0.82734096,0.76098394,1.9421729,2.64886,2.4059896,2.2368884,2.1511853,1.9891677,1.7381351,1.5315728,1.2936599,1.1259319,0.94743425,1.5635462,1.9234118,2.0889783,1.8909658,1.6477764,1.4392208,1.2459452,1.1803697,1.0167425,1.6754131,1.8155351,1.5765765,1.4036052,1.3211633,1.2403041,1.2863982,1.3625528,1.4076729,1.8395264,1.5538045,1.4263666,1.4579606,1.322552,1.2329397,1.1491237,0.97876096,0.7788793,0.49089873,0.2647289,0.10213451,-0.030349012,-0.12961374,-0.01756296,0.025121056,0.19023596,0.16747104,0.007811919,1.4893919,1.8940284,1.5215551,1.2949595,1.0092906,0.86646783,0.64886665,0.47846872,0.3218602,0.09846789,-0.01873045,-0.12842214,-0.3075748,-0.5311076,-0.5657032,0.045255672,0.47951692,0.6548825,2.021264,2.2716641,1.942769,1.6099787,1.3580856,1.6254296,1.3230484,1.061773,0.8209403,0.5366932,0.27492934,-0.051700313,-0.28238717,-0.38108194,-0.45380476,-0.53955054,-0.592901,-0.33723968,-0.21151489,-0.25713298,-0.35131115,-0.17237386,0.16519101,0.01105259,-0.12649637,0.06273994,1.0353378,1.978643,1.911132,1.6075586,1.6699493,1.3201973,1.2554948,1.2672563,1.1645148,0.8562031,0.69185716,0.5925051,1.0771713,1.3503062,1.2642477,1.1509633,1.1304533,1.047148,1.0118415,1.0287077,1.3404107,1.0372373,1.092189,1.6349345,1.5489371,1.1643765,0.8884436,0.4976257,0.28831187,0.37084693,0.4138942,0.46843755,0.3848711,0.24101137,0.10502419,-0.042370405,-0.20200936,-0.28448105,-0.32771868,0.12625098,0.52333033,0.47031116,0.40320256,0.2337657,0.40298396,0.52480835,0.32002768,0.1839409,0.38287422,0.48254097,0.8388812,0.91301614,0.6956549,0.5240797,0.38419834,0.26005572,0.21609725,0.13920729,0.09907527,1.2527801,1.4387586,1.1673744,0.99199104,0.8397354,0.68540335,0.5683912,0.4458136,0.34933478,0.59036535,1.1236527,0.98677075,0.94025105,0.8493631,0.6784588,0.53807133,0.42973268,0.35964268,0.29113102,0.15312015,0.088366285,0.13249947,0.043410826,-0.012418779,-0.098429844,-0.16553365,-0.09954919,-0.16205536,-0.19721177,-0.24376799,-0.2733107,-0.25260034,-0.26939347,-0.28509584,-0.26173884,-0.24950805,-0.19410159,-0.20334397,-0.2145943,-0.24241063,-0.26088077,-0.30752146,-0.33797553,-0.3695066,-0.36510983,-0.359473,-0.38415232,-0.35798275,-0.33601767,-0.402061,-0.39065415,-0.3220244,-0.29405063,-0.31765103,-0.27628592,0.08542478,0.18276338,0.27502462,0.31130064,0.45916966,0.5707913,0.5695636,0.50469226,0.46112028,0.4641673,0.54080373,0.56495833,0.4829679,0.3645065,0.43849948,0.42672664,0.47452605,0.5385631,0.4439027,0.508426,0.58331597,0.5841061,0.57947767,0.5724562,0.56231314,0.55042124,0.5271092,0.55675673,0.7315481,0.88329905,0.9181857,0.9734659,1.1107055,1.2232635,1.15589,1.1444877,1.1725811,1.1582203,1.2979138,1.2542357,1.2864454,1.2310556,1.2689855,1.3094887,1.2656317,1.243355,1.2141235,1.1975298,1.1748452,1.1515814,1.1563377,1.199954,1.2938316,1.4023252,1.3583183,1.288156,1.2437525,1.2759727,1.2659202,1.2678831,1.2495427,1.3210478,1.360351,1.39526,1.499914,1.477752,1.5071964,1.5173099,1.6205292,1.5778754,1.5829097,1.669596,1.7380443,1.8033552,1.8348484,1.7607946,1.7065921,1.6537148,1.7511905,1.8144205,1.9487385,2.00554,1.9236145,1.9674425,2.15626,2.4816313,2.505283,2.3371077,2.2781527,2.288073,2.3672297,2.4356954,2.5472057,2.5887165,2.4810781,2.3673823,2.2793758,2.3409839,2.2898426,2.1206775,1.9956422,1.9314499,2.0359154,1.9732146,2.0078266,2.0948768,2.1401594,2.1294765,2.0608604,1.9476836,1.9501654,2.0087585,1.9320325,2.0352833,1.9846859,1.9581101,1.9010977,1.8576087,1.672397,1.5237997,1.4162171,1.3041732,1.2017944,1.1310067,1.1287879,1.0957382,1.0466964,1.0106127,0.9511423,1.0435655,1.6575736,2.1534743,1.8489312,2.0548754
+0.8346927,0.39127487,-0.22667897,-0.46061486,-0.5696779,-0.72525465,-0.6943118,-0.7321253,-0.68478936,-0.6731448,-0.55428064,-0.5533377,-0.65472484,-0.7334828,-0.5672815,0.51204085,0.976161,0.79517174,0.5201882,0.49153745,0.30113465,0.006520603,-0.19779894,-0.27450737,-0.29402304,0.746163,0.6986983,0.37392306,0.49275285,1.0940068,0.8885233,0.50381726,0.15533227,-0.105662495,-0.23805708,-0.3636019,0.07913965,0.8641103,0.7037436,0.40043843,0.09429856,-0.11045635,-0.28975672,-0.34445816,-0.36069107,0.24476539,0.58462316,0.1824541,-0.042962514,-0.19294953,-0.33473,-0.45468685,-0.19827761,-0.15686487,-0.29561767,-0.1425917,0.23488928,0.18322664,-0.14970106,-0.35955277,-0.38858822,-0.08476171,-0.1675302,-0.4456194,-0.60539097,-0.72041017,-0.8296576,-0.91180575,-0.983207,-1.0918648,-1.1573888,-1.1873814,-1.2475055,-0.5253962,-0.38015366,-0.6470729,-0.793107,-0.9426664,-1.0381619,-1.1167417,-1.2079992,-1.2701352,-1.3558059,-1.0670596,-0.7145536,-0.9166852,-1.0698853,-1.1730555,-1.2496281,-1.1609826,-1.0927638,-1.1374385,-1.1336738,-1.1768428,-1.3012065,-0.7896091,-0.36591804,-0.61322427,-0.8356178,-0.95948416,-1.0726768,-1.2069647,-1.3647994,-1.4767833,-1.5199201,-1.582118,-1.645929,-1.5895091,-1.5222852,-1.4705441,-1.5783557,-1.7066945,-1.806576,-1.862658,-1.9193449,-1.947609,-1.9878579,-1.8780252,-1.3818991,-0.9718712,-0.42064342,-0.5445876,-0.81548876,-0.74912184,-0.64382696,-0.8583286,-0.9867215,-0.9634389,-1.0396163,-0.6259712,-0.52385867,-0.79020053,-0.9942495,-0.64019763,-0.6520363,-0.8720964,-1.0262672,-1.13152,-1.2189784,-1.3197463,0.22340898,0.34520644,-0.18696785,-0.42152873,-0.6053668,-0.7539656,-0.8926362,-1.0311824,-1.1053483,-1.1706277,-1.2278519,-1.2912325,-1.3430268,-1.3831143,-1.4231241,-1.4521437,-1.4787226,-1.4979112,-1.4898121,-1.3970231,-1.4161934,-1.4784188,-1.541841,-1.5800418,-1.6329753,-1.5953106,-1.5102463,-0.75452226,-0.41497305,-0.6937462,-0.84659314,-0.9908205,-1.0898192,-1.1967969,-1.2914383,-1.3627952,-0.73663354,-0.6243452,-0.8333983,-0.98133075,-1.0472322,-1.1250598,-1.220116,-1.2821977,-1.344722,-1.3288153,-1.2518014,-1.3671595,-1.3958389,-1.3890256,-1.4304886,-1.4502907,-1.4864079,-1.5384454,-1.5839596,-1.6230701,-1.631028,-1.6725427,-1.6763082,-1.7595313,-1.7861218,-1.4815477,-0.97294647,-1.0637742,-1.1347435,-1.190631,-1.253504,-1.3390776,-1.3918618,-1.4332948,-1.4745216,-1.506759,-1.5562038,-1.6005789,-1.6155205,-1.5580482,-1.5144525,-1.500463,-1.5142283,-1.5518668,-1.5771141,-1.5657158,-1.5667048,-1.593396,-1.5710621,-1.5791924,-1.599757,-1.5963478,-1.611959,-1.5992771,-1.5327439,-1.169558,-0.87688935,-0.896715,-0.9003737,-0.67536366,-0.45435384,-0.44627658,-0.43551278,-0.4308637,-0.4073575,-0.4305206,-0.4481933,-0.47165167,-0.40903002,-0.36115175,-0.34325105,-0.35507172,-0.32757023,-0.23128821,-0.10517347,0.051483836,0.013080467,-0.053335723,-0.02444623,-0.10043259,-0.073578,-0.08294305,0.013428889,0.055927377,0.16240248,0.1561896,0.060054574,0.06374976,0.031696048,0.011787739,0.020228025,-0.010531481,0.10046317,0.19589095,0.2138968,0.23040526,0.21760242,0.23029144,0.24078481,0.2238475,0.23816411,0.22433524,0.25994346,0.38723242,0.37072998,0.31278616,0.2619574,0.31096524,0.23827796,0.2979681,0.3067329,0.25926626,0.23070596,0.22437938,0.24323662,0.23152496,0.21280517,0.20865306,0.24644719,0.25874093,0.27047896,0.30986303,0.40133893,0.51974654,0.54517764,0.5298322,0.49783254,0.5241885,0.5485326,0.592319,0.5841297,0.5313203,0.4739095,0.4234686,0.45883197,0.53558713,0.56711656,0.6082094,0.6274003,0.55927825,0.40493593,0.3425484,0.2783633,0.19601081,0.15012784,0.061380904,-0.10095021,-0.23117295,-0.39717728,-0.54284906,-0.59815526,-0.6781942,-0.14283612,0.4408626,0.6328355,0.70576596,0.75100124,0.81738126,0.786867,0.8096485,0.82088965,0.8486307,0.7667613,0.6179817,0.51463675,0.5125618,0.29498932,0.068116754,0.08404407,0.044429723,-0.16183828,-0.22823186,-0.41108027,-0.5329533,-0.66213185,-0.67430013,-0.6897987,-0.80699325,-0.8559615,-0.8984234,-0.901211,-0.8148517,-0.7796463,-0.80419064,-0.8607341,0.18840478,0.65326786,0.0959692,0.51521695
+-0.14023645,-0.92184275,-1.1975434,-1.1945403,-1.2625701,-1.318244,-1.3054628,-1.3278342,-1.3517507,-1.4563859,-1.4293201,-1.432102,-1.4825091,-1.5372782,-1.6221579,-0.15665133,0.5512419,0.23853566,-0.1943989,-0.175748,-0.32537225,-0.54158056,-0.7012973,-0.8766149,-0.95854926,-0.77684766,-0.44129112,-0.55780745,0.46842188,0.7585256,0.20604064,-0.11163181,-0.41887486,-0.6206736,-0.7170497,-0.81887054,-0.037434842,0.38981956,0.28526437,0.08522943,-0.069394305,-0.30179188,-0.5129672,-0.58095706,-0.6764761,-0.4866084,0.36905497,0.08391459,-0.2585413,-0.47953793,-0.6211242,-0.74006164,-0.67663306,-0.5668669,-0.59183335,-0.3092575,1.0021057,0.48394,0.0060564578,-0.1962428,-0.28172234,0.2734912,0.41615993,-0.0779324,-0.28645432,-0.4562961,-0.59073055,-0.7038431,-0.8160393,-0.9154278,-1.0442139,-1.16243,-1.2378714,-0.7740251,0.61935425,0.021490067,-0.29234493,-0.48833862,-0.5952655,-0.74525344,-0.89426064,-1.0043038,-1.1139934,-1.2077513,-1.2661718,-1.3196727,-1.3664131,-1.2746873,-1.2653,-1.1797103,-0.5155071,-0.020784456,0.016845588,-0.13244385,-0.47273445,-0.6922433,-0.8440886,-1.0032349,-1.1120305,-1.2267103,-1.3327467,-1.4064349,-1.4993999,-1.5436921,-1.6135688,-1.6648259,-1.7568737,-1.79023,-1.4884474,-0.49980012,-0.43645316,-0.7506043,-0.9917932,-1.1070962,-0.9979284,0.5140936,0.05055942,-0.3820436,-0.47980493,-0.48897105,-0.51406455,-0.70100236,-0.89979607,-1.0350444,-0.992647,-1.0451777,-1.2551031,-1.1919503,-1.3114763,-1.4079268,-1.4848967,-1.4594667,-1.4174138,-1.3194788,-1.330168,-1.3843272,-1.4308175,-1.2648776,-1.2601683,-1.3750787,-1.4357123,-1.5144463,-1.6287446,-1.6768794,-1.7734787,-1.925702,-1.9248686,-2.011742,-2.0331116,-2.0946822,-1.6988864,-0.94950354,-1.0294898,-1.1728244,-1.3081043,-1.269402,-0.5695591,-0.35502383,-0.6332289,-0.79675937,-0.9226146,-1.045064,-1.1252279,-1.2792847,-1.4132996,-1.4051583,-1.4828041,-1.4795235,-1.4420447,-1.5041971,-1.5824959,-1.6968586,-1.764158,-1.853719,-1.8811588,-1.9905891,-1.9815288,-2.0110657,-2.0661488,-2.1089525,-2.137496,-2.1539621,-2.2477283,-2.1722333,-2.2489116,-2.2790914,-2.2348728,-2.3036194,-1.8971155,-1.1434956,-1.2720363,-1.3666294,-1.42424,-1.5193169,-1.2221636,-1.0707746,-1.2322359,-1.350863,-1.4178017,-1.4678475,-1.5086119,-1.5665101,-1.5645032,-1.6355705,-1.7114505,-1.7642956,-1.7727232,-1.8525524,-1.8245089,-1.8851982,-1.9255397,-1.9572126,-1.9483176,-2.0229614,-2.0293326,-1.9996183,-1.9912546,-2.034642,-2.0721831,-2.085857,-2.049584,-2.023863,-2.0064826,-2.0338428,-2.0039997,-1.9670527,-1.9766241,-1.9744854,-2.0250483,-2.0902977,-1.9731295,-1.4823736,-1.0456244,-1.0340403,-1.2952219,-0.91665393,-0.51809675,-0.57415396,-0.54493093,-0.48932767,-0.48004535,-0.47821578,-0.51318884,-0.5075792,-0.44203752,-0.39318174,-0.37917444,-0.33436716,-0.24746169,-0.2985087,-0.23775168,-0.043209996,-0.007567089,0.050101522,0.1187661,0.066553175,0.11826478,0.09120059,0.06250332,0.14982441,-0.03906865,0.05083071,0.1528415,0.4367733,0.4316216,0.29108408,0.34161195,0.34051964,0.2761155,0.43907714,0.4693975,0.5747229,0.5173073,0.60874844,0.5818685,0.58528143,0.6220552,0.46128476,0.39335912,0.40491363,0.39173424,0.4361733,0.52093166,0.8157809,0.7887052,0.7973403,0.75701183,0.69849443,0.7576502,0.722019,0.8564683,0.86591226,0.9703591,1.0074396,0.9681721,0.915216,0.9818653,0.9512657,0.9349412,0.8504056,0.8249321,0.8280432,0.8166233,0.89177465,0.9076945,0.84152675,0.628116,0.5065332,0.5475973,0.7382418,0.689381,0.39761975,0.13374361,-0.06550561,-0.2315172,-0.40685683,-0.59750086,-0.69784564,-0.66312444,-0.61549693,-0.5376293,-0.5149238,-0.604773,-0.72569805,-0.8485854,-0.9576284,-1.0124545,-1.067804,-1.0641024,-0.9089474,-0.6059396,-0.31992438,-0.1037793,-0.08181162,-0.18878826,-0.15484582,-0.20583089,-0.37188423,-0.555873,-0.73185265,-0.8730783,-0.7363437,-0.855938,-0.9375216,-1.0204073,-1.0375719,-1.0522184,-1.1519212,-1.1979235,-1.2416404,-1.3059942,-1.3362951,-1.3649392,-1.4250392,-1.488522,-1.5199465,-1.5784887,-0.7589851,-0.21295592,-0.52998143,-0.65227926,-0.5918412,0.06966449,-0.28936434,-0.3718292
+-0.11363225,-0.3590864,-0.58467615,-0.8307749,-0.9581773,-1.1470163,-1.2416471,-1.2840106,-1.3285103,-1.3656669,-1.1284341,-0.70109266,-0.79809713,-0.8939047,-1.0099293,0.2886402,0.5953049,0.33941853,0.3233968,0.22295727,-0.046794955,-0.23228817,-0.47129488,-0.62663347,-0.753149,-0.8527007,-0.8753787,-0.89619184,0.78688407,0.8085273,0.45781642,0.22565739,-0.051301938,-0.1946582,-0.3144697,-0.50427866,-0.7035318,-0.71414685,-0.7675892,-0.8395699,-0.366499,-0.10768013,-0.3652297,-0.42536938,-0.49802545,-0.2122467,0.2958912,0.22420223,-0.09483504,-0.28600675,-0.49068353,-0.7570447,-0.82772017,-0.91262597,-0.9873432,-0.3344419,1.0253963,0.42220712,0.021806948,-0.20226806,-0.34085053,0.05540281,0.41446707,0.045979474,-0.17137478,-0.3195578,-0.32039183,0.5020911,0.15588506,-0.21216689,-0.45331737,-0.6715996,-0.78642577,-0.5859188,0.05250335,-0.42063004,-0.76339436,-0.97342414,-1.026917,-1.0987242,-1.2070007,-1.0881485,-1.1387403,-1.0570009,-0.914047,-0.60404736,-0.101069584,-0.42606536,-0.57641685,-0.432671,-0.48205563,-0.2566926,-0.17509572,-0.11594252,-0.3830526,-0.64823794,-0.86073947,-1.0277889,-0.8736545,-0.51263154,-0.7522269,-0.9779245,-1.1606258,-1.2210722,-1.3769777,-1.3022797,-1.3807579,-1.5035422,-1.2151358,-0.8899536,-1.0031229,-0.96094453,-1.0526114,-1.134146,-0.86271346,-0.83272254,-0.817602,-0.63321483,-0.8495071,-0.3812006,-0.27067417,-0.5994365,-0.7874663,-1.0142488,-1.1238836,-1.2651944,-1.3727341,-1.0396955,-0.56922823,-0.16131763,-0.24386473,-0.39958036,-0.5923042,-0.5915531,-0.4489421,-0.38842756,-0.60661626,-0.8346034,-0.47668546,-0.55772614,-0.7289668,-0.5220706,-0.64807,-0.8472885,-0.9857197,-1.1280961,-1.1498871,-1.2822541,-1.2970433,-1.3443804,-0.7853271,-0.31123015,-0.42079282,-0.5699223,-0.708018,-0.8124234,-0.98405397,-1.144085,-1.2350533,-1.2896764,-1.4280796,-1.5048659,-1.5248742,-1.5561002,-1.6373553,-1.5873318,-1.4831777,-1.5186131,-1.6316645,-1.6535487,-1.6836963,-1.7814082,-1.8234742,-1.7963321,-1.9254892,-2.0200896,-1.9844131,-2.0765977,-2.0812206,-2.1073139,-2.160801,-2.1971757,-2.192182,-2.2054272,-2.2043438,-2.127541,-2.0816648,-2.134801,-2.172831,-2.1084552,-2.0921848,-2.153246,-2.115405,-2.1186047,-2.1556365,-2.1239562,-2.1417112,-2.1124575,-2.174528,-2.1671858,-2.2264962,-2.219499,-2.168538,-2.1221328,-2.1603503,-2.1842957,-2.224475,-2.1899405,-2.2432117,-2.2692308,-2.2360098,-2.2592938,-2.3331513,-2.298057,-2.343449,-2.3109562,-2.278992,-2.2850804,-2.254349,-2.2221773,-2.2263741,-2.2007332,-2.0889497,-2.071406,-2.0992246,-2.0275073,-1.9932727,-1.9870185,-1.980965,-1.9991512,-1.9563555,-1.6072395,-1.3207254,-1.3953198,-1.5583661,-1.1415033,-0.9329521,-0.8746097,-0.8342899,-0.8051913,-0.82297194,-0.8263592,-0.79886246,-0.7388086,-0.6214657,-0.57976454,-0.58305556,-0.54390264,-0.47062853,-0.50337106,-0.38456684,-0.2877772,-0.22236878,-0.028830271,-0.058626723,-0.14050472,-0.18150508,-0.18696512,-0.2296535,-0.00887109,-0.2560747,-0.12953131,-0.020027589,0.21617816,0.24387784,0.044373024,0.14737669,0.14334486,0.10407938,0.100995824,0.22670864,0.33157068,0.24140652,0.3258981,0.25561294,0.21837328,0.252878,0.15016924,0.09629874,0.09975721,0.18063863,0.28387263,0.450051,0.6588281,0.6377456,0.65337455,0.56607074,0.43895224,0.49021435,0.3817333,0.54844266,0.6277974,0.68770623,0.75381577,0.6614045,0.60701424,0.6554084,0.6510416,0.6153151,0.48294163,0.43913597,0.48056304,0.56033766,0.68915904,0.734395,0.68676746,0.4923206,0.35052046,0.34741756,0.54238343,0.5449939,0.4260267,0.26028877,0.16766725,0.10888399,0.06297873,-0.12805481,-0.32653996,-0.38410607,-0.41702938,-0.37131354,-0.30054218,-0.37585336,-0.4630564,-0.6032697,-0.65445685,-0.6483149,-0.66991806,-0.689186,-0.42017314,-0.13796856,-0.009593543,0.036948938,0.03715079,-0.037573915,-0.008348238,-0.012821,-0.08109529,-0.20495795,-0.31904852,-0.49127334,-0.4283867,-0.5349967,-0.62808096,-0.7168647,-0.74439776,-0.79095113,-0.8322975,-0.8908994,-0.9664761,-1.0621816,-1.1165328,-1.1399097,-1.2285808,-1.2812221,-1.3408241,-1.4048244,0.31421953,0.40581667,0.00091568753,-0.14782357,-0.16788043,0.2503091,-0.0633301,-0.24223386
+-0.097412586,-0.2974408,-0.36074758,-0.45687884,-0.58575255,-0.7392355,-0.7595617,-0.76582533,-0.7847022,-0.8359246,-0.57844996,-0.19269152,-0.30159226,-0.40031415,-0.4976902,0.8426306,0.9114996,0.66945666,0.928364,0.65123993,0.42948365,0.26760158,0.119575754,-0.08768004,-0.24344678,-0.36294895,-0.42135155,-0.41696954,0.8469943,0.985008,0.8327339,0.7263941,0.4741606,0.28374603,0.112170145,-0.084206596,-0.26009464,-0.40755776,-0.4596554,-0.5058931,-0.36736822,-0.16595815,-0.32059115,-0.3900125,-0.421498,-0.3998026,-0.32690394,-0.17895569,-0.2929196,-0.38819638,-0.5113819,-0.6333809,-0.6847665,-0.7442647,-0.8575707,-0.9219579,-0.2531096,0.07856049,-0.15013558,-0.32559687,-0.4102341,0.9500214,0.693674,0.43371865,0.37656337,0.24888436,0.1697761,0.41748127,0.35017934,0.078131154,-0.054461155,-0.1848381,-0.031165447,0.4816059,0.28380767,-0.080540925,-0.37155458,-0.545606,-0.5966641,-0.6542165,-0.69474673,-0.78403383,-0.87332296,-0.9348372,-1.0020827,-1.0641991,-1.0913842,-1.1889071,-1.2184026,-1.1173065,-1.0258085,-1.0988402,-0.23366348,0.057791594,-0.105936795,-0.3135095,-0.52318805,-0.7008488,-0.7744552,-0.84925354,-0.9589035,-1.0731298,-1.1224709,-1.1809292,-1.2472777,-0.24790233,0.016218755,-0.36713088,-0.5165198,-0.6324123,-0.74387115,-0.69823444,-0.81168985,-0.9006109,-0.95225483,-0.998476,-1.0453459,-1.0842181,-1.1562036,-1.1989508,-1.2350733,-1.1157225,-1.1134913,-1.1696048,-1.0772717,-1.1446878,-0.725242,0.18804625,0.05280644,-0.21697187,-0.2917426,-0.35402852,-0.5072623,-0.57515025,-0.17134477,-0.065399915,-0.36333427,-0.5068013,-0.5708679,-0.43207172,-0.4802813,0.23800407,0.030199315,-0.2749564,-0.40127438,-0.44390413,0.14713874,-0.11776169,-0.33237958,-0.45358092,-0.54639095,-0.6158184,-0.24939154,-0.120080665,-0.33021975,-0.3764127,-0.49828103,-0.6870527,-0.7764999,-0.86755013,-0.9083213,-0.99208057,-1.0818392,-1.1612371,-1.196486,-1.066325,-0.7025604,-0.6996833,-0.8557795,-0.95291835,-1.0432459,-1.1243935,-1.1865387,-1.1902974,-1.2370651,-1.0329137,-1.0371253,-1.1575007,-1.2444321,-1.297908,-1.331188,-1.378838,-1.405748,-1.4295679,-1.456746,-1.4891481,-1.4996731,-1.5931389,-1.6058054,-1.6277404,-1.675785,-1.7097195,-1.6170158,-1.6632457,-1.685396,-1.7112548,-1.7495896,-1.7456638,-1.7757865,-1.7950966,-1.8237588,-1.8188205,-1.8260877,-1.8558301,-1.8941472,-1.8700078,-1.8899549,-1.8925618,-1.86875,-1.9270778,-1.9243517,-1.9042898,-1.9351243,-1.9466817,-1.935143,-1.9201114,-1.9226981,-1.9275718,-1.8933463,-1.6686387,-1.5795406,-1.5964136,-1.5684985,-1.5666642,-1.5636632,-1.5553664,-1.5428984,-1.5453503,-1.5505493,-1.5949955,-1.5772667,-1.427254,-1.314563,-1.3375242,-1.3930111,-0.9861343,-0.4906701,-0.5784056,-0.6360142,-0.63251996,-0.60205376,-0.6477089,-0.61816525,-0.58195406,-0.55038595,-0.5229632,-0.49514925,-0.47739244,-0.43360847,-0.4745215,-0.36788988,-0.22237821,-0.17891039,-0.13551384,-0.15512778,-0.26177368,-0.27968875,-0.2702877,-0.24692215,-0.08487928,-0.26548946,0.038149673,0.14405985,0.1827278,0.17609657,0.07305698,0.09915951,0.075235605,0.068170324,-0.12346031,-0.03319184,0.050086025,-0.035700213,-0.04141545,-0.06057618,-0.088785425,-0.0798735,-0.11495376,-0.08777402,-0.054763895,0.074750245,0.14088006,0.26443228,0.4366693,0.3174424,0.27953175,0.16445829,0.092106014,0.15638866,0.12797897,0.3581683,0.49089456,0.4554619,0.4592505,0.48516154,0.39731345,0.48472917,0.49453676,0.4738325,0.4352244,0.540462,0.5869164,0.61960423,0.68943256,0.65893435,0.624852,0.52921426,0.48230135,0.51387876,0.5547472,0.49458748,0.40928262,0.31161562,0.275935,0.20258977,0.17054461,0.1054779,0.056184668,0.011307333,0.15566424,0.098732665,0.13321647,0.11115095,0.070299506,0.0023419596,-0.059307348,-0.09007394,-0.11862278,-0.21934964,-0.26001742,-0.16899766,-0.13368878,-0.13355039,-0.15283416,-0.21706645,-0.19649048,-0.190931,-0.19413863,-0.23681577,-0.27691278,-0.4079435,-0.35487878,-0.39410675,-0.43054733,-0.45710623,-0.48469633,-0.50917995,-0.53878343,-0.5839811,-0.65774035,-0.72639894,-0.76025254,-0.79090273,-0.8973453,-0.95299613,-0.9894395,-1.0393143,0.36471942,0.6264004,0.32254234,0.2766222,0.12770179,0.7643422,0.548904,0.3164332
+-0.49412027,-0.26578823,-0.28119206,-0.43958804,-0.6200999,-0.74950373,-0.7804563,-0.7869702,-0.7554705,-0.84555924,-0.89359105,-0.7529739,-0.81494707,-0.857746,-0.94210625,-0.7820959,-0.34514248,-0.26120982,0.57058394,0.29059243,0.017306555,-0.15693921,-0.26568,-0.36775494,-0.5152031,-0.615489,-0.6804167,-0.740439,-0.07499361,0.25199345,0.4115885,0.46990597,0.08508162,-0.08638142,-0.25201622,-0.4382817,-0.55357015,-0.63856035,-0.6960282,-0.74185413,-0.7862653,-0.78613096,-0.8160403,-0.83756655,-0.86773336,-0.1085206,0.092978165,-0.008124303,0.004377369,-0.24341376,-0.41072422,-0.571362,-0.6186892,-0.7432414,-0.83026165,-0.95851326,-0.99371403,-1.0288091,-1.0847836,-1.0735323,-0.9442336,0.34146863,0.19428723,-0.093817726,-0.23162553,-0.35393354,-0.38628095,-0.25892168,-0.19608541,-0.2959675,-0.43461972,-0.52091473,-0.67116517,-0.4236594,-0.36231187,-0.61494786,-0.7276211,-0.903147,-1.0526962,-1.0890398,-1.1525713,-1.2199001,-1.2886249,-1.2898574,-0.35137427,0.27675188,0.23843421,-0.05389042,-0.29179227,-0.44417906,-0.6017016,-0.59382766,-0.5644709,-0.5289871,-0.6260823,-0.6596353,-0.79822314,-0.9230877,-1.0363778,-1.0717791,-1.0245155,-1.1181598,-1.2543107,-1.3355703,-1.4168234,-1.4744405,-1.4428039,-1.4838836,-1.5163077,-1.5497949,-1.5791476,-1.6048858,-1.6201243,-1.6380173,-1.6358819,-1.0441778,-0.5505723,-0.59100306,-0.59537554,0.5557971,0.18273783,-0.084117025,-0.25788063,-0.2742882,-0.21032633,-0.28428137,-0.22525784,0.4203894,0.71424854,0.6354948,0.32524228,0.014930207,-0.07473998,0.2631695,0.39775676,0.4109198,0.19604617,-0.10616402,-0.28976172,-0.3608336,-0.13521145,0.36765435,0.059761573,0.11859751,-0.005749915,-0.25526655,-0.11500931,0.030788425,-0.085135,-0.22412167,0.00022341684,-0.022211347,-0.14167906,0.5371715,1.0229034,0.5814563,0.2213522,0.11416678,0.5885778,0.41731554,0.1794274,0.019791964,0.052317042,-0.05839132,-0.2516587,-0.3371362,-0.10046463,0.17741604,-0.020741034,-0.11899808,-0.26660174,-0.43805754,-0.55557406,-0.60265005,-0.7004124,-0.5432683,-0.43573248,-0.6124959,-0.71525913,-0.79727244,-0.8566387,-0.903029,-0.9647397,-0.8388172,-0.72151786,-0.84112716,-0.90918416,-1.012875,-1.0688127,-1.100099,-1.1460041,-1.1818115,-1.0856247,-1.1498892,-1.1889806,-1.2075133,-1.2567952,-1.2640128,-1.287365,-1.3281834,-1.4034534,-1.4382747,-1.445908,-1.4542367,-1.4876931,-1.4684321,-1.4881659,-1.5149221,-1.5353913,-1.5716177,-1.58966,-1.5934473,-1.5967748,-1.6236466,-1.6189796,-1.6320028,-1.6234915,-1.6405022,-1.4479814,-0.6263756,-0.44995117,-0.57284623,-0.60936576,-0.6157155,-0.6805054,-0.67502755,-0.69710124,-0.7229483,-0.7611838,-0.8169924,-0.811923,-0.7688968,-0.69488525,-0.7552061,-0.8534239,-0.655162,-0.55071473,-0.54791903,-0.52608037,-0.49824142,-0.54641825,-0.48056373,-0.4231314,-0.3367496,-0.27434948,-0.19773488,-0.19261546,-0.1454429,-0.115707904,-0.12827042,-0.07983543,0.06576991,0.18364008,0.15885729,0.027257029,-0.060774308,-0.08617827,-0.107782364,-0.1113051,-0.078041255,-0.17464054,0.1640806,0.371016,0.40218538,0.3294445,0.23795061,0.36591005,0.30395073,0.26733536,0.119035855,0.2523285,0.22397433,0.13978554,0.14244933,0.17170039,0.15671617,0.12772036,0.10414004,0.13928998,0.12549926,0.4467438,0.87103194,1.0467039,1.18119,1.0676053,0.87297016,0.66044694,0.548526,0.5580846,0.9768287,1.124704,0.95990926,0.9186355,0.93790245,0.93750274,0.8731054,0.8146226,0.8484944,0.7722558,0.63998044,0.8266907,0.9550243,0.95490485,0.98981607,0.9043287,0.75656486,0.5897249,0.5784611,0.67335945,0.6549343,0.5300616,0.414734,0.3039925,0.20720793,0.14103344,0.06548111,-0.0076121427,-0.04465084,0.34129527,0.6148082,0.45673677,0.4427245,0.3647396,0.27275738,0.16946276,0.12569167,0.06778428,0.0085350275,-0.07557181,-0.116599336,-0.058282297,-0.04784267,-0.10722682,-0.18748805,-0.25905102,-0.26664048,-0.28332606,-0.34855863,-0.3987188,-0.43314105,-0.50303054,-0.5414846,-0.587652,-0.6349674,-0.64943945,-0.6507766,-0.6870575,-0.71250284,-0.76399314,-0.80446696,-0.88001674,-0.9037022,-0.94097555,-0.99693006,-1.0531971,-1.0839949,-1.1476834,-0.8033253,-0.6403464,-0.7256137,-0.7998407,-0.6061471,0.31929025,0.19303356,-0.03985356
+-0.8067971,-0.8628967,-0.9943949,-1.1025677,-1.2170396,-1.3585157,-1.422537,-1.5183922,-1.0514344,-1.0587689,-1.1274551,-1.154403,-1.160156,-1.2416856,-1.345515,-1.4912646,-1.5589638,-1.5582219,-0.9814023,-0.754112,-0.88245565,-0.9946051,-1.1400745,-1.2352004,-1.3405654,-1.4518211,-1.5372722,-1.6081626,-1.3389037,-0.98984057,-0.8689032,-0.56279266,-0.820702,-0.9467982,-1.0697598,-1.2165171,-1.3796457,-1.5342507,-1.6376468,-1.7203648,-1.7922841,-1.8412424,-1.9277644,-1.9452844,-1.7901138,-1.6657875,-1.6619458,-1.0877326,-0.13092431,-0.43559608,-0.7277549,-0.8727474,-0.9080063,-1.0830948,-1.247682,-1.4103389,-1.5605667,-1.6420941,-1.6931059,-1.5537058,-1.6012669,-0.009772416,0.31331763,-0.15836965,-0.32799286,-0.48258638,-0.4813705,-0.039004337,-0.085551724,-0.3779141,-0.4821487,-0.6725552,-0.8523438,-0.8970869,-0.68531036,-0.8122914,-0.9835221,-1.1730309,-1.3536341,-1.4808252,-1.5892648,-1.6830863,-1.75125,-1.8007421,-1.8693357,-1.7761359,-0.46326953,-0.31291306,-0.63422596,-0.82527244,-0.9816195,-1.1130226,-1.2572873,-1.3470492,-1.4058458,-1.498054,-1.6259542,-1.7407858,-1.8345273,-1.9440007,-1.9931095,-2.078906,-2.0489945,-2.109168,-2.1407447,-2.209887,-2.2710621,-2.2942562,-2.3176064,-2.346158,-2.370981,-2.3799965,-2.3819933,-2.3856583,-2.3907897,-2.4055274,-1.5776489,-1.2948065,-1.2735188,-1.270635,-1.3554964,-1.3067265,-1.2906488,-1.4040357,-1.5242544,-1.5836568,-1.6483517,-1.7094495,-1.6360819,-1.3991027,-1.006563,-0.84149086,-0.9750912,-0.80615366,-0.65300024,-0.8574097,-0.9799442,-1.1425383,-1.2669911,-1.3803517,-1.4179696,-0.9833939,-0.9346173,-0.91450566,-0.9787152,-0.9695394,-0.9770035,-1.0787947,-1.0293694,-0.9464468,-0.84765154,-0.39621896,0.07324155,-0.19469787,-0.09843019,-0.34201518,-0.62064195,-0.8203849,-0.6596894,-0.20582342,-0.3229761,-0.5373769,-0.52600527,-0.5889293,-0.7807398,-0.8780329,-0.73539567,0.32199937,0.254403,-0.034525987,-0.17657317,-0.38486776,-0.5887775,-0.71272475,-0.8620213,-1.004626,-1.1066067,-1.1154662,-1.1942406,-1.2929354,-1.363034,-1.4062719,-1.4974942,-1.5111393,-1.5751115,-1.615119,-1.6418557,-1.7267866,-1.7829667,-1.8113812,-1.8724451,-1.791182,-1.6339529,-1.6145958,-1.6488268,-1.681495,-1.7086574,-1.7062523,-1.7367506,-1.7959828,-1.8615314,-1.9106338,-1.9036555,-1.9300845,-1.9593112,-1.9469987,-1.9400287,-1.9971942,-1.9724647,-1.9964063,-2.0029964,-2.0223215,-2.0202897,-2.0434914,-2.045129,-2.0231395,-1.8502147,-1.8540399,-1.5439215,-0.21703286,-0.16839112,-0.45949215,-0.60149175,-0.6590996,-0.7017859,-0.7573344,-0.7962806,-0.8314973,-0.8836286,-0.9424801,-0.9968668,-1.0536476,-1.0478412,-1.0166628,-1.0368375,-0.9725369,-0.9402031,-0.92210275,-0.89074385,-0.92635584,-0.9529369,-0.9406776,-0.9192603,-0.8921363,-0.8440722,-0.7641438,-0.700366,-0.6219154,-0.61915624,-0.56532913,-0.61634785,-0.5772958,-0.5507681,-0.4430746,-0.4515323,-0.53475606,-0.58354676,-0.6235102,-0.6651795,-0.61306787,-0.6636734,-0.5729054,-0.47342476,-0.40349,-0.3242154,-0.44889858,-0.39380926,-0.4095104,-0.47107986,-0.56402105,-0.48804653,-0.4799179,-0.50497013,-0.55560225,-0.5221453,-0.5778457,-0.5945148,-0.57612973,-0.6006403,-0.64376473,-0.5465506,-0.15079513,-0.10598503,-0.03711493,-0.16614302,-0.29711848,-0.3747304,-0.4614848,-0.5127988,0.013709296,0.286627,-0.058936406,-0.0015053563,0.048824202,-0.1186873,-0.20889263,-0.3193771,-0.27526885,-0.31232324,-0.4440462,-0.40340602,-0.30940694,-0.27383548,-0.21431404,-0.2591867,-0.3225796,-0.37285465,-0.43592167,-0.44952896,-0.44274753,-0.4119569,-0.483374,-0.5808931,-0.6511853,-0.6576978,-0.71721923,-0.74874705,-0.76110554,-0.5748792,-0.1227286,-0.36853972,-0.3944803,-0.44505644,-0.5312693,-0.61247647,-0.6722202,-0.7374084,-0.8042796,-0.88314474,-0.9638695,-0.9870097,-0.93511975,-0.96598077,-1.009638,-1.0849073,-1.1147997,-1.1017313,-1.1128414,-1.144891,-1.204279,-1.2615067,-1.2919614,-1.3023007,-1.3116516,-1.3427703,-1.3794668,-1.3741963,-1.3982942,-1.3975792,-1.4002674,-1.410774,-1.4410903,-1.46701,-1.4778409,-1.5218859,-1.563461,-1.613826,-1.476595,-1.4919424,-1.4968665,-1.5390081,-1.4280754,0.48149788,0.23450376,-0.13769124
+-0.9838313,-0.83977854,-1.2471161,-1.4849894,-1.5841327,-1.7192935,-1.7803819,-1.7928822,-1.567534,-1.7641399,-1.8961842,-1.6508154,-1.5525134,-1.7530942,-1.8433619,-1.9406099,-1.9815705,-2.011965,-2.087285,-2.1427271,-2.2054927,-2.2182884,-2.2764332,-2.3673203,-2.3819933,-2.4228892,-2.4336805,-2.4333606,-2.4858384,-2.4870808,-2.4419048,-2.4689808,-2.506566,-2.4866028,-2.490172,-2.504737,-2.5861673,-2.6320689,-2.664171,-2.6696901,-2.6728418,-2.629887,-2.6622725,-2.6929011,-2.2032506,-2.18153,-2.1977267,-1.7658556,-0.969898,-1.4091431,-1.5906392,-1.7479479,-1.9028155,-1.9836738,-2.063848,-2.1641972,-2.2113736,-2.230336,-2.2382932,-2.2864065,-2.1089394,-1.9471874,-2.1177256,-2.1935632,-2.2602115,-2.2868476,-2.2334094,-2.2480807,-2.3187547,-2.3984604,-2.2094269,-2.2133992,-2.2265391,-2.2813008,-2.4115095,-2.2301598,-2.153319,-2.2826247,-2.3494916,-2.395035,-2.4711714,-2.532114,-2.571374,-2.5872219,-2.429195,-2.4240565,-2.337738,-2.4102228,-2.4778018,-2.5382323,-2.5514688,-2.569847,-2.6126597,-2.667608,-2.6826286,-2.6876907,-2.71562,-2.7431927,-2.645268,-2.4891615,-2.5775182,-2.6631937,-2.7110088,-2.7183676,-2.7131262,-2.7220438,-2.762752,-2.7836099,-2.7791238,-2.7904751,-2.8135831,-2.8145318,-2.8142881,-2.8238971,-2.8174913,-2.8384578,-2.3080301,-2.131156,-2.2019086,-2.330873,-2.4082403,-2.4697952,-2.5183516,-2.3063204,-1.1784544,-1.203793,-1.4060142,-1.6033604,-1.797821,-1.9325833,-1.8998522,-0.88861895,-0.8536382,-1.094388,-1.1350801,-1.4168389,-1.5353254,-1.6442437,-1.7568276,-1.8686957,-1.9857898,-2.0546181,-1.4480613,-1.1109734,-1.3924087,-1.0750777,-1.2315559,-1.4591181,-1.6067443,-1.2301707,-0.8513565,-0.42830688,-0.33851752,-0.7709835,-1.1179137,-1.2843754,-1.4730136,-1.5991473,-1.5689042,-1.1074018,-1.1995417,-1.4488015,-1.5654123,-1.6522801,-1.6917057,-1.7098343,-1.7944999,-1.3246047,-0.99086356,-1.2549983,-1.4874022,-1.5682536,-1.6318085,-1.7184408,-1.8058031,-1.8957832,-1.9597137,-2.0283818,-2.0437431,-2.0624275,-2.1248446,-2.157808,-2.2233648,-2.2583327,-2.3276353,-2.37742,-2.4216878,-2.415777,-2.4657335,-2.4710433,-2.4949794,-2.1450317,-1.6346955,-1.770047,-1.8746802,-1.7376692,-1.6417276,-1.7766144,-1.8207142,-1.8887391,-1.922832,-2.0094264,-2.068528,-2.1205559,-2.165544,-2.2116978,-2.2177675,-2.2504394,-2.3132215,-2.3323805,-2.3749714,-2.4030843,-2.4125872,-2.447201,-2.4752684,-2.3916721,-1.9936988,-2.026227,-1.6083729,-1.3132303,-1.552692,-1.6555572,-1.6881039,-1.6911132,-1.7114022,-1.763011,-1.7922511,-1.8081965,-1.8520117,-1.8804882,-1.9389946,-1.8539661,-1.743856,-1.8594997,-1.9430705,-2.0024972,-1.9883612,-1.9511657,-1.9165527,-2.0044606,-2.056143,-2.0100965,-1.9733672,-1.8434057,-1.747453,-1.8816524,-1.5898795,-1.2589538,-1.3826652,-1.4367392,-1.4409192,-1.408277,-1.2030594,-1.2525163,-1.4279177,-1.5023692,-1.5710659,-1.5983098,-1.5371614,-1.629554,-1.7051927,-1.252918,-1.1726611,-1.2528936,-1.4414303,-1.5542377,-1.569695,-1.6037893,-1.6673551,-1.5613055,-1.5889038,-1.619685,-1.5695236,-1.6028512,-1.6562569,-1.702266,-1.2218541,-1.1470062,-1.3220961,-1.3866806,-1.029402,-0.51775515,-0.6548172,-1.0865604,-1.3496596,-1.4091957,-1.460933,-1.515513,-1.5284138,-1.0675414,-0.91785693,-1.2186093,-0.9138547,-1.0890882,-1.2180085,-1.2676641,-1.3326147,-1.340869,-1.3943355,-1.3249178,-1.1503248,-1.0863752,-1.0614167,-1.1206594,-1.2325059,-1.3302251,-1.4030238,-1.3226836,-1.2509152,-1.3494495,-1.4828055,-1.5513191,-1.6214325,-1.6955695,-1.724369,-1.7866569,-1.8273885,-1.8618562,-1.6210251,-1.2220919,-1.4060577,-1.4596956,-1.557024,-1.637598,-1.7030112,-1.7631489,-1.7971224,-1.8526298,-1.9006293,-1.8843082,-1.7181836,-1.7905421,-1.8845874,-1.9942898,-2.0102625,-1.9103967,-1.9040978,-2.010443,-2.106308,-2.1833558,-2.1305487,-2.1567035,-2.178762,-2.1864367,-2.2635493,-2.2588482,-2.2890477,-2.3244364,-2.2781925,-2.333039,-2.3143687,-2.3255754,-2.3857508,-2.4072514,-2.4193933,-2.4325287,-2.4795737,-2.5247068,-2.4801688,-2.485584,-2.4609554,-2.4731429,-2.2181344,-2.0420144,-2.0174224
+-1.063611,-0.3050316,-0.82250476,-1.1228718,-1.230803,-1.4235775,-1.5662396,-1.654995,-1.4700202,-1.5333667,-1.6224504,-1.6753471,-1.5662028,-1.6672416,-1.7523868,-1.8706772,-1.9915981,-2.024772,-2.0201566,-2.0542228,-2.11916,-2.1171746,-2.153411,-2.1994936,-2.2383945,-2.283076,-2.3290672,-2.3569708,-2.3727722,-2.4121768,-2.4600658,-2.4223723,-2.4573922,-2.458156,-2.4603138,-2.4403331,-2.4662936,-2.4996204,-2.5084136,-2.521469,-2.5273542,-2.5422223,-2.499827,-2.5377896,-2.4621358,-2.455748,-2.5324445,-2.278727,-1.8396966,-1.824369,-1.890051,-2.0005832,-2.0754812,-2.1332579,-2.213325,-2.2700067,-2.3029032,-2.330288,-2.3794427,-2.3745775,-2.2752388,-2.0072947,-1.6137055,-1.5739205,-1.6577823,-1.7297658,-1.8180051,-1.8752656,-1.9524752,-2.0263696,-1.8451161,-1.3868861,-1.3215084,-1.3765167,-1.5671227,-1.6552186,-1.6123588,-1.7439044,-1.8804662,-1.9398323,-2.0058503,-2.076189,-2.120829,-2.1470869,-2.1984744,-2.226813,-2.2714067,-1.9244004,-0.98292273,-0.91213703,-1.1374308,-1.2824795,-1.3554711,-1.4820719,-1.6254077,-1.7395197,-1.8555727,-1.92658,-1.771194,-1.6356726,-1.6607492,-1.8101468,-1.9256351,-1.9951108,-2.053988,-2.1114974,-1.4477955,-1.0405326,-1.1846299,-1.3210567,-1.4553008,-1.5797684,-1.6793623,-1.7800099,-1.858172,-1.9343094,-1.8822596,-1.577663,-1.5715379,-1.6741742,-1.7860739,-1.8733885,-1.1096461,-0.83875287,-0.98753256,-1.1026111,-1.2489877,-1.3969227,-1.5329856,-1.6334906,-1.5813897,-1.2489629,-0.64534295,-0.60257125,-0.5054498,-0.50361145,-0.75876397,-0.90802574,-1.0424619,-1.152534,-1.2628608,-1.1938223,0.21093558,0.49351823,0.442367,0.9883671,0.80383724,0.52911687,0.14516519,-0.10365185,-0.19843334,0.4723118,0.9923357,0.66136444,0.27455977,0.092460915,-0.13177489,-0.29781643,-0.44204488,0.10829362,0.025224362,-0.24256174,-0.36260468,-0.47310033,-0.5586772,-0.6438861,-0.72462857,-0.5037627,-0.18287364,-0.38352275,-0.282481,-0.3260537,-0.52806157,-0.66004413,-0.7852984,-0.90410465,-1.0120742,-0.6641815,-0.044537764,-0.07722311,-0.38283283,-0.52110577,-0.60060334,-0.64360595,-0.7755091,-0.8786147,-0.99156415,-1.0837048,-1.1795795,-1.2482686,-0.74368596,-0.2590205,-0.4248031,-0.57143646,-0.6861135,-0.75254524,-0.8232488,-0.91834974,-1.018877,-1.1218145,-1.2186842,-1.2945262,-1.3567722,-1.4412425,-1.4685872,-1.4947528,-1.5220425,-1.5422232,-1.5718876,-1.5982149,-1.6387975,-1.6597894,-1.6900046,-1.7299609,-1.7496176,-1.7762876,-0.7859901,-0.19381239,-0.08482893,0.564587,0.119295046,-0.21945785,-0.3621373,-0.3587726,-0.41011322,-0.42692235,-0.5205312,-0.6102875,-0.68218225,-0.75514394,-0.84151405,-0.9442382,-0.99108094,-1.0185015,-1.0111094,-1.0094525,-1.074303,-1.1053488,-1.0994079,-0.9721304,-0.9497815,-1.0034008,-1.0815403,-1.1438102,-1.1555535,-1.161776,-0.25469673,0.20020522,-0.1908283,-0.40367037,-0.43626237,-0.50387615,-0.56634474,-0.54509896,-0.584417,-0.64655703,-0.70173717,-0.7355448,-0.7627934,-0.81347734,-0.8539915,-0.9514806,-0.9562963,-0.9824766,-0.99212885,-1.0161842,-1.0700998,-1.1034619,-1.0764728,-1.1189382,-1.1293262,-1.1337062,-1.1771069,-1.1929109,-1.2213252,-1.2242584,-0.80959284,-0.6011142,-0.717517,-0.83807814,-0.9182966,-0.8983423,-0.8435991,-0.88133276,-0.92025024,-0.97842026,-1.0487692,-1.0859845,-1.0525818,-0.42542803,-0.01028947,-0.3886708,-0.37836367,-0.532334,-0.64022255,-0.6993942,-0.84638155,-0.8617296,-0.9044157,-0.9889337,-1.0404534,-1.0645458,-1.0317531,-1.0725744,-1.0749534,-1.1080482,-1.1434642,-1.1458834,-1.165731,-1.1787637,-1.1923174,-1.2208607,-1.2680422,-1.3200308,-1.3357459,-1.363669,-1.3969071,-1.4542364,-1.3427594,-1.2768828,-1.300202,-1.3404427,-1.3512855,-1.4010403,-1.4420388,-1.488076,-1.5500052,-1.5699153,-1.5992385,-1.645138,-1.6980835,-1.7440088,-1.7718334,-1.8173376,-1.8601081,-1.891179,-1.9308624,-1.9487269,-1.9475756,-1.9462389,-2.0083861,-2.0297983,-2.0467758,-2.0823467,-2.0672214,-1.6361424,-1.4951468,-1.5011008,-1.5974562,-1.6428725,-1.7180114,-1.787419,-1.8529379,-1.8606532,-1.9246621,-1.9818854,-2.0168579,-2.0754895,-2.1644912,-2.1707811,-2.2007403,-2.2150254,-2.2627532,-2.2683997,-2.2759235
+-0.61839765,-0.5116351,-0.70512915,-0.8686297,-0.97626555,-1.1174946,-1.216469,-1.3026434,-1.2769835,-1.3543658,-1.4200151,-1.3286905,-1.0661755,-1.1467001,-1.2581985,-1.4317379,-1.4836202,-1.4965363,-1.5303695,-1.5658811,-1.6530006,-1.617132,-1.6817418,-1.7231932,-1.7873416,-1.8639834,-1.9123518,-1.9825513,-2.0323236,-2.053037,-2.0492644,-2.0499158,-2.0412521,-2.0403986,-2.0782573,-2.1152904,-2.221394,-2.2636764,-2.2151103,-2.2555974,-2.2790174,-2.2657442,-1.9719281,-0.78110397,-0.020894568,-0.14261156,-0.21911506,-0.2263081,0.15079714,-0.15413336,-0.35994816,-0.57943535,-0.80604506,-0.97830766,-1.226366,-1.3411648,-1.471051,-1.5467582,-1.6336962,-1.2523229,0.13703477,0.39391726,0.47093177,0.06313896,-0.17892484,-0.3157354,-0.45268565,-0.58740366,-0.7225876,-0.80837643,-0.73776424,-0.69532186,-0.4296042,-0.55227983,-0.7622191,-0.4765033,-0.24217544,-0.50010127,-0.72909564,-0.8673016,-0.93700725,-1.0383961,-1.1291718,-1.2037023,-1.2750778,-1.2980855,-1.0013385,-0.2672243,0.34949607,0.21397266,-0.14575146,-0.3216249,-0.45391816,-0.49751663,-0.6495931,-0.7746489,-0.74893636,-0.7507094,-0.44569683,-0.267588,-0.3236512,-0.5340186,-0.5322339,-0.31069,-0.33415878,-0.4024107,-0.56869006,-0.632987,-0.46632725,-0.4287906,-0.5712797,-0.73140156,-0.85319346,-0.9557934,-1.0437214,-1.1295373,-1.2194304,-1.2702701,-1.2884821,-1.278895,-1.070106,-0.38011622,-0.07170625,-0.19445077,-0.22152747,-0.41763136,-0.598676,-0.74093294,-0.64420295,-0.39374107,0.2607459,0.74277127,0.6413104,0.7148241,1.023106,0.6539011,0.28165168,0.081817895,-0.043167096,0.34975794,0.8544804,0.45458147,0.28454933,0.35165748,0.7246632,1.0890852,1.3019633,1.0692875,0.7313671,1.0044667,0.76575327,0.70489377,0.5684513,0.6925762,0.86619097,0.67466414,0.41506273,0.2079577,0.09382129,0.12520081,-0.024831798,-0.14926308,-0.12823088,0.049684633,-0.10352805,0.07474461,0.3731308,0.17871132,0.0029607676,0.060678978,0.11143215,0.043948073,-0.08433944,-0.23401955,-0.32444954,-0.39330375,-0.45022342,0.48854762,1.0058475,0.5826831,0.23665099,0.061190005,0.04418045,0.3029925,0.01754773,-0.08989647,-0.0773312,-0.15638766,-0.25338072,-0.36752045,-0.100782424,0.43495542,0.071723655,-0.090363614,-0.18507363,-0.25498366,-0.318879,-0.39603648,-0.4666819,-0.53433156,-0.6099879,-0.6746827,-0.7493043,-0.77022964,-0.81130564,-0.83108246,-0.85979164,-0.8186983,-0.6171911,-0.6032206,-0.65082574,-0.7049322,-0.7634333,-0.7991949,-0.845448,-0.8863565,-0.91456956,-0.7936377,-0.7147739,-0.68115675,-0.7358005,-0.7825101,-0.7529943,-0.64906114,-0.3491305,-0.014496546,-0.15116207,-0.30219555,-0.36533386,-0.40883774,-0.46737623,-0.54480714,-0.4975037,-0.51892805,-0.5716987,-0.62962633,-0.6267165,-0.6206359,-0.5444931,-0.28800213,-0.3673939,-0.5655364,-0.6457222,-0.62531567,-0.5887934,-0.54913914,-0.019789178,0.25495994,0.12716642,-0.11004169,-0.16499123,-0.2040732,-0.22221826,-0.178719,-0.23498227,-0.29826096,-0.36253035,-0.40728155,-0.40398937,-0.45171297,-0.53076535,-0.5176956,-0.5480212,-0.52846754,-0.5842098,-0.61032,-0.624304,-0.64792275,-0.647359,-0.6298884,-0.6416832,-0.6831677,-0.7132121,-0.3748543,-0.18734477,-0.21063848,0.11866495,-0.039279956,-0.15654548,-0.29998064,-0.28981885,-0.22309375,-0.18159483,-0.24841727,-0.3544066,-0.42541894,-0.46671763,-0.48021436,-0.49452028,0.0041905604,0.39100316,0.08716364,0.0015383326,-0.1473571,-0.26481596,-0.019229565,-0.027292755,-0.116103634,-0.218917,-0.31949034,-0.3122256,-0.23462678,-0.22994933,-0.23702754,-0.24844596,-0.30028468,-0.36444867,-0.37266433,-0.3806708,-0.4115364,-0.47257543,-0.54504275,-0.6568445,-0.67986244,-0.6935786,-0.7499731,-0.8326138,-0.8623827,-0.8417913,-0.8328259,-0.83147293,-0.79814583,-0.8846946,-0.92114747,-0.9754571,-1.0241418,-1.0543389,-1.086678,-1.1583805,-1.2256925,-1.2589545,-1.285089,-1.3099747,-1.3845433,-1.3521837,-1.3444967,-1.3465908,-1.3477253,-1.3706982,-1.4208058,-1.436856,-1.4153688,-1.434628,-1.4562317,-1.4513729,-1.4464514,-1.4274691,-1.424006,-1.5172651,-1.5272555,-1.6146417,-1.6437873,-1.6750958,-1.7167386,-1.7656412,-1.7968655,-1.8562243,-1.8234501,-1.6163001,-1.5287789,-1.5822847,-1.6642,-1.7441964,-1.7598383,-1.8672979
+-1.8067818,-1.7424188,-1.8489773,-1.9779152,-1.9819636,-2.0572426,-2.0262609,-1.992946,-2.0626254,-2.1610274,-2.2340474,-2.169023,-2.2559052,-2.2735963,-2.2674313,-2.3249478,-2.3017025,-2.201934,-2.1050577,-2.227066,-2.2474353,-2.175102,-2.2162726,-2.2997308,-2.3157556,-2.3354316,-2.3565068,-2.3373005,-2.3890343,-2.3801937,-2.3553705,-2.3176742,-2.388177,-2.4010239,-2.3909166,-2.3386798,-2.40065,-2.442183,-2.5117488,-2.5044184,-2.5088496,-2.4785824,-2.441233,-2.1911504,-1.6146541,-1.5030096,-1.454419,-1.3689574,-1.4954417,-1.6617668,-1.7267374,-1.8427324,-1.8596969,-1.9118357,-1.9751078,-2.0599754,-2.1035223,-1.8222969,-1.5080211,-1.3878478,-1.0275838,-0.87437946,-0.9772654,-1.1385882,-1.1881258,-1.3566065,-1.4777108,-1.5689718,-1.6298637,-1.6843845,-1.7517211,-1.8176572,-1.8434474,-1.9252565,-1.9681405,-1.9145808,-1.6754704,-1.7616279,-1.8536856,-1.9411627,-1.7958469,-1.7611663,-1.8352773,-1.9390454,-2.0172172,-2.0872715,-2.0513349,-1.7326924,-1.459595,-1.2168783,-1.3258655,-1.4399328,-1.312944,-1.2738332,-1.368927,-1.48988,-1.6059799,-1.6955616,-1.7675858,-1.7099533,-1.5785377,-1.6771784,-1.7869327,-1.880943,-1.9569356,-2.0264122,-2.039914,-2.119032,-2.1805055,-2.2287185,-2.2793398,-2.3201323,-2.341935,-2.3659499,-2.3924584,-2.4188461,-2.4353068,-2.4695888,-2.425154,-2.422886,-2.3704977,-2.4099379,-2.4607959,-2.4542549,-2.4857051,-2.491696,-2.5113897,-2.5359285,-2.5651689,-2.5957994,-2.5379982,-2.2865725,-2.1951234,-1.0792398,-0.6172172,-0.36780983,-0.51257515,-0.5765674,-0.77717024,-0.8815337,-0.46552813,-0.11407347,-0.45868495,-0.69939655,-0.7653788,-0.8948528,-0.87636983,-0.15243451,-0.5569321,-0.6523259,-0.43652296,-0.39248806,-0.64955133,-0.8271076,-0.9673823,-0.9095509,-1.0401284,-1.2524312,-1.4373314,-1.5142637,-1.6578987,-1.7218392,-1.7487576,-1.8168035,-1.8389945,-1.6544683,-1.7504246,-1.7563901,-1.8289847,-1.943553,-2.0370584,-2.1007724,-2.1099253,-2.1349852,-2.1552112,-2.1768608,-2.0722566,-0.840182,-0.41900796,-0.6789743,-0.89911824,-1.0489736,-1.1379056,-1.1742382,-1.3988136,-1.5421113,-1.6712936,-1.7673076,-1.8329141,-1.9184661,-1.9779558,-1.8661388,-1.8865843,-1.9927611,-2.0686533,-2.1131139,-2.151729,-2.2116656,-2.2555137,-2.3092995,-2.3483653,-2.2920032,-2.286498,-2.263762,-2.280173,-2.2761135,-2.2917187,-2.3153439,-2.3483286,-2.3526254,-2.3338478,-2.326311,-2.3184311,-2.317565,-2.3245547,-2.303547,-2.3281558,-2.1387463,-1.8998449,-1.8310804,-1.9124795,-1.9639332,-1.9419683,-1.7652504,-1.6665318,-1.6153646,-1.6910865,-1.8044901,-1.895083,-1.9394906,-1.9654694,-2.032462,-1.8868802,-1.9166098,-1.9792788,-2.0777104,-2.10052,-2.056105,-2.0687265,-2.0057907,-2.0778308,-2.2090952,-2.2247748,-2.1995916,-2.1483872,-2.0698395,-1.6084764,-1.3919497,-1.1187601,-1.2699435,-1.469178,-1.4578013,-1.3644912,-1.428127,-1.580084,-1.6692344,-1.7798355,-1.8310754,-1.8246801,-1.9193162,-2.016512,-1.9208033,-1.6004661,-1.5077238,-1.670354,-1.7099626,-1.7468902,-1.8029106,-1.8985097,-1.9205592,-1.9381526,-1.9941533,-1.9487109,-1.8394575,-1.8825991,-1.9684327,-2.062347,-2.0494318,-2.0501678,-2.1400146,-2.0977554,-1.7604527,-1.5909066,-1.7605232,-1.8901336,-1.9749742,-2.0218701,-1.9926805,-2.0045207,-1.9113305,-1.832546,-1.8298311,-1.7674184,-1.8626851,-1.9315294,-2.0345426,-2.1676295,-2.1062875,-2.1842012,-2.1855578,-2.0522065,-1.9411063,-1.9703205,-1.8615851,-1.8328838,-1.9068825,-2.0439763,-2.0501347,-2.0303617,-2.0605562,-2.1122844,-2.1677628,-2.2164538,-2.2719038,-2.2111237,-2.2093358,-2.2444572,-2.1537313,-2.1799023,-2.0646448,-1.7815778,-1.7413644,-1.9286523,-2.034676,-2.0201368,-1.820511,-2.0026686,-2.0994124,-2.168453,-2.2597394,-2.1716423,-2.1814585,-2.2188134,-2.2440991,-2.2692537,-2.1862683,-2.1364703,-2.0734677,-2.0094464,-2.1754396,-2.2095714,-2.205087,-2.2332282,-2.2652855,-2.268009,-2.2866836,-2.3477643,-2.3484282,-2.3754013,-2.326099,-2.3177192,-2.2581916,-2.258209,-2.2791395,-2.27335,-2.2407298,-2.2637756,-2.3418348,-2.3471932,-2.3576756,-2.3578186,-2.2337103,-2.0596936,-2.1106446,-2.1958284
+-1.9445753,-1.7843257,-1.6931994,-1.6998568,-1.722239,-1.801471,-1.8621018,-1.898258,-1.8715643,-1.9274616,-1.9261905,-2.0110369,-1.9955385,-2.0280104,-2.0394804,-2.0882177,-2.1323085,-2.1458983,-2.142169,-1.6250999,-0.80165434,-0.6920283,0.2885036,0.02144022,-0.34866825,-0.5831848,-0.7406218,-0.85410506,-0.9877821,-1.0786343,-1.1529427,-1.2340684,-1.3240132,-1.3909612,-1.4461987,-1.4589313,-1.5183258,-1.6479758,-1.7153203,-1.763087,-1.8348229,-1.8450376,-1.4203227,-0.5782011,-0.4153204,-0.5011413,-0.75493556,-0.90905136,-1.0328159,-1.1406636,-1.2064701,-1.2922237,-1.3508999,-1.4353089,-1.6134874,-1.7011505,-1.7073374,-1.8142717,-1.7811143,-1.6950427,-0.95193887,-0.5692093,-0.48481283,-0.66450346,-0.86298454,-0.9933926,-1.0965451,-1.1945691,-1.2636676,-1.342176,-1.4119564,-1.1286898,-1.0795825,-1.2025813,-1.3143706,-1.2632146,-0.7690871,-0.63654554,-0.7926793,-0.9716564,-0.99600106,-0.97185576,-1.0908477,-1.1883862,-1.2883482,-1.2805803,-0.64638,0.06490673,-0.043550733,-0.19724235,-0.44862473,-0.54603374,-0.28797287,-0.48783517,-0.6381061,-0.6500799,-0.49814564,-0.5369172,-0.7066636,-0.6626668,-0.5982386,-0.72422415,-0.86614436,-0.89854616,-0.8704003,-0.91381395,-0.8110573,-0.9598505,-1.0596735,-1.0289205,-1.1577691,-1.2715032,-1.3626528,-1.430336,-1.4903805,-1.5726662,-1.5889063,-1.6633068,-1.66778,-1.4868622,-1.4969912,-1.15024,-0.7716498,-0.8125211,-0.9553457,-1.0133281,-1.1360898,-1.2444193,-1.3417401,-1.3738062,-1.0222312,-0.4513691,-0.28213814,-0.28765312,0.31138402,1.0191956,0.7073811,0.14658,-0.08061354,0.6944243,0.96464884,0.6356237,0.509622,0.30953494,0.1786354,0.14601038,0.8153256,0.5737945,0.29405993,0.5529161,0.7314129,0.48186517,0.3062818,0.58008313,0.33301353,0.26648223,0.14199364,-0.1051085,-0.06324881,-0.017795462,-0.2805821,-0.33304513,0.42428526,0.3727623,0.0012060106,-0.037721533,-0.14306282,-0.30121517,-0.41515547,-0.5016343,-0.59742963,-0.6363479,-0.64151895,-0.7380238,-0.8313029,-0.9098715,-1.00901,-0.1519115,0.6832888,0.7209513,0.2779509,0.05356552,-0.000566829,0.63258797,0.16179638,-0.095174156,-0.15700844,-0.2895298,-0.3476091,-0.45530653,-0.55522573,-0.59000766,-0.5367171,-0.6272017,-0.7084601,-0.78926325,-0.85252786,-0.9183552,-0.98246235,-1.0422306,-1.0925195,-1.1345148,-1.179735,-1.1943955,-1.2447716,-1.2742467,-1.2929361,-1.3316731,-1.3386672,-1.3472714,-1.3650532,-1.4027786,-1.4107686,-1.4257429,-1.4637632,-1.4704324,-1.5038846,-0.26647007,0.1173874,-0.18554187,-0.37564933,-0.48214632,-0.54665744,-0.56654674,-0.4206604,-0.3495872,-0.39305976,-0.5298719,-0.60522926,-0.657306,-0.7265199,-0.803331,-0.8234947,-0.8586848,-0.9167825,-0.966341,-1.0008012,-1.0110224,-1.0479076,-1.0509753,-1.0891222,-1.114758,-1.1155007,-1.1329696,-1.1303346,-1.1798848,-0.83805114,-0.050109405,0.39846003,-0.08800143,-0.30081457,-0.41141084,-0.48814654,-0.5264293,-0.5766616,-0.64755726,-0.7006257,-0.74478316,-0.7842194,-0.8336607,-0.8757658,-0.9127417,-0.90950304,-0.9171468,-0.9692888,-0.99940807,-1.0281725,-1.0046871,-0.9243097,-0.9943067,-1.0456152,-1.0816133,-1.1149292,-1.0778425,-1.0863848,-1.0855165,-1.0974815,-1.1237018,-1.1495259,-1.1822419,-1.1910753,-1.1834062,-1.1697433,-1.1825256,-1.2030091,-1.2234614,-1.2383517,-1.2529471,-1.2477708,-1.2645038,-1.2279255,-1.219754,-1.2695097,-1.261441,-1.2684314,-1.273685,-1.2918532,-1.3014443,-1.3087816,-1.3335621,-1.3520973,-1.3548067,-1.3898535,-1.3853416,-1.3480422,-1.3523275,-1.3546848,-1.3773123,-1.380666,-1.4042883,-1.43176,-1.4477453,-1.4556656,-1.4713976,-1.4965022,-1.5193796,-1.5459564,-1.5652945,-1.5439581,-1.5596678,-1.5819638,-0.7878366,-0.10151552,-0.39587727,-0.36890888,-0.18191914,-0.42312527,-0.54649204,-0.6220738,-0.74005634,-0.84759945,-0.87955105,-0.9541416,-1.008875,-1.0769107,-1.1340624,-1.1881261,-0.65818596,-0.23912707,-0.48180276,-0.6453732,-0.6899562,-0.78867483,-0.78840387,-0.7978237,-0.9027574,-0.95874506,-1.015112,-1.0759104,-1.1109674,-1.1773678,-1.2361354,-1.2627723,-1.3200067,-1.3770666,-1.4118273,-1.454117,-1.5190896,-1.5915351,-1.6377871,-1.6958389,-1.6980647,-1.7392688,-1.7809815,-1.8184431
+-1.4708934,-1.4025956,-1.4210976,-1.4692686,-1.5283976,-1.6289136,-1.7058029,-1.7705286,-1.7897949,-1.8296098,-1.8203819,-1.854842,-1.8942852,-1.9405372,-1.9686524,-2.007591,-2.0347087,-2.04159,-2.0711405,-2.0456629,-1.3931465,-1.3379219,-0.46800393,0.0064617246,-0.35433465,-0.56318724,-0.7208448,-0.85267925,-0.9781426,-1.0837543,-1.184094,-1.2792085,-1.3930014,-1.4603271,-1.5110471,-1.5531638,-1.6042483,-1.6103324,-1.5142574,-1.5811536,-1.6721356,-1.7312752,-1.6861925,-0.8382096,-0.78870654,-0.90466356,-1.0212586,-1.1213152,-1.2427015,-1.3236246,-1.4011725,-1.4423153,-1.4853528,-1.5809674,-1.7573093,-1.8298601,-1.8609442,-1.894304,-1.94558,-1.7983191,-1.4811027,-1.042572,-0.45148432,-0.62404764,-0.78076994,-0.92130095,-1.0384333,-1.134337,-1.2203745,-1.3271254,-1.4061402,-1.3390645,-1.3889866,-1.4480972,-1.5288804,-1.6164746,-1.5958713,-1.1750455,-1.081522,-1.1832306,-1.3094894,-1.4293264,-1.5019132,-1.5449841,-1.6159887,-1.6738672,-1.6954105,-0.5145521,0.10740654,-0.040033747,-0.33959705,-0.18386357,0.17831714,0.56294346,0.06833553,0.095275775,-0.15404928,-0.3194161,-0.4598304,-0.5854072,-0.3627127,-0.2696407,-0.45202774,-0.5980186,-0.71366096,-0.82074076,-0.9277244,-1.0358888,-1.1366887,-1.2038729,-1.2835689,-1.3600464,-1.4162829,-1.4765185,-1.5188231,-1.5783577,-1.630755,-1.6883533,-1.5557071,-0.13945824,0.13040373,-0.12597024,-0.3638755,-0.52441543,-0.6448533,-0.75973606,-0.8626274,-0.9635055,-1.0361841,-0.80381745,-0.7632015,-0.3117749,0.35812253,0.2769914,0.7062845,0.912834,1.1108274,0.77280366,0.6000225,0.49840719,0.6592994,0.6399374,0.7558353,0.57492447,0.2114954,0.11151086,0.651503,0.49724782,0.18889076,0.44459546,0.73115146,0.7066413,0.50173247,0.2671991,0.124226496,-0.038075406,-0.15903585,-0.25414333,-0.10868229,0.0035779811,-0.17593232,-0.18638551,-0.08097651,0.4366886,0.090386316,-0.004558254,-0.15505724,-0.28091836,-0.35735118,-0.426028,-0.48371565,-0.54010767,-0.60202545,-0.66325366,-0.71375483,-0.75516534,-0.5546438,-0.3990223,0.47255898,0.8863065,0.54840124,0.16860452,0.10651639,0.6635442,0.25479126,0.04328895,-0.037031565,-0.15758853,-0.2535944,-0.35659808,-0.43625832,-0.50280714,-0.5587857,-0.60957664,-0.6592741,-0.70395267,-0.7318505,-0.7169428,-0.7750591,-0.81697834,-0.84684765,-0.8765772,-0.91738105,-0.9598719,-1.0074142,-0.9874456,-1.033641,-1.0674541,-1.0931185,-1.1252354,-1.1544155,-1.1751112,-1.1834596,-1.2126405,-1.2303009,-1.2431972,-1.2079961,-0.29836452,0.068544775,-0.0153967105,-0.2364556,-0.37352434,-0.45206815,-0.20126401,-0.11408405,-0.009711642,-0.10403155,-0.29591456,-0.38631457,-0.47717217,-0.53468454,-0.5816381,-0.62400305,-0.69722927,-0.73792195,-0.7413715,-0.7824954,-0.8380376,-0.86558723,-0.898738,-0.92203903,-0.92843807,-0.94703716,-0.96975815,-0.9992544,-1.0101539,-0.70048726,0.019195948,0.033311073,-0.2968344,-0.40951544,-0.48181903,-0.5505981,-0.60894704,-0.6645771,-0.70772636,-0.73903996,-0.7674835,-0.801969,-0.8365021,-0.85979766,-0.8710955,-0.89621806,-0.93011594,-0.9584583,-0.9788359,-1.0004302,-1.0088232,-1.0243595,-1.042088,-1.0433037,-1.0857096,-1.0933932,-1.1087692,-1.1127524,-1.1497815,-1.1665009,-1.1864027,-1.1932801,-1.2099242,-1.2199833,-1.2337613,-1.2489171,-1.2619795,-1.268498,-1.2715391,-1.2810631,-1.2956526,-1.326581,-1.3406477,-1.3364137,-1.3276733,-1.3612882,-1.3688974,-1.3707893,-1.3634865,-1.3902974,-1.3866434,-1.394532,-1.4122713,-1.4394789,-1.4626985,-1.4856241,-1.4839942,-1.4655629,-1.4571099,-1.4673526,-1.5069056,-1.5302384,-1.5649678,-1.5697378,-1.5565141,-1.5375068,-1.5529253,-1.5830171,-1.6016722,-1.6116313,-1.6152165,-1.6542437,-1.6601171,-1.6800241,-0.8928634,-0.34504235,-0.5257601,-0.42961276,-0.36352772,-0.5677557,-0.66011745,-0.7296128,-0.80071855,-0.88006216,-0.9318907,-0.9759774,-1.0240575,-1.0863307,-1.1600568,-1.2248276,-0.43598443,-0.25797588,-0.45539916,-0.5686115,-0.6425723,-0.052748274,0.21112938,0.08296272,-0.045939628,-0.23308723,-0.40111804,-0.51634836,-0.5964036,-0.6688726,-0.73744696,-0.8116521,-0.8827063,-0.9353881,-0.9862483,-1.0528928,-1.1242802,-1.1983368,-1.2490195,-1.3125005,-1.3608382,-1.422124,-1.4756441,-1.5047789
+-1.3403603,-1.3269846,-1.3796172,-1.4715965,-1.5844923,-1.704759,-1.7845187,-1.884038,-1.920651,-1.9984093,-2.0279212,-2.0872242,-2.1268103,-2.1494296,-2.1940541,-2.2225623,-2.2458777,-2.26261,-2.2706485,-2.2927766,-2.2967253,-2.3062377,-1.8568559,-1.7297055,-1.8339007,-1.9151485,-1.9877924,-2.0333714,-2.0888338,-2.1125023,-2.1524582,-2.1696236,-2.1991606,-2.2483068,-2.2826157,-2.2746544,-2.292467,-2.2795782,-2.2410946,-2.244739,-2.2651505,-2.2932122,-1.5561924,-0.52049506,-0.5064551,-0.6583983,-0.88481444,-1.0459131,-1.1652174,-1.2732899,-1.3758453,-1.4670469,-1.5555854,-1.6363618,-1.7538929,-1.8211837,-1.9004558,-1.9571993,-2.006183,-2.0730243,-2.1366048,-1.7892083,-1.2902725,-1.3095746,-1.426958,-1.5482779,-1.6472685,-1.7132974,-1.7755058,-1.863322,-1.9571078,-1.8986151,-1.9053363,-1.9508247,-1.9512657,-1.9136108,-1.9710344,-1.9774537,-1.9784054,-2.0221908,-2.0971656,-2.1624253,-2.2045543,-2.2037208,-2.2288127,-2.2479835,-2.0811772,-1.3977559,-0.9447688,-0.89056826,-1.0793159,-1.2159761,-1.230373,-0.36568797,-0.51802677,-0.7669604,-0.9352432,-1.092632,-1.2296984,-1.353326,-0.47997254,-0.12349635,-0.4907635,-0.72360367,-0.80751514,-0.71181524,-0.78085464,-0.9822064,-1.1395403,-1.2780347,-1.4107962,-1.5277843,-1.622861,-1.7180879,-1.784186,-1.8444121,-1.9137123,-1.4390826,-0.9275919,0.33080864,1.0093412,0.7640312,0.26001465,0.02047531,-0.17980514,-0.34860134,-0.45870435,-0.2732924,-0.37690195,-0.5554057,-0.61919487,0.02981503,0.23354961,0.8652955,0.31829032,1.3513333,1.2010372,1.2452769,0.8329571,1.1207073,0.6510564,0.6066045,0.66681916,0.6298058,0.26424035,0.08276875,0.67334515,0.64761055,0.60132325,0.89772666,0.47265506,1.0117118,0.78203464,0.4351885,0.2277538,0.15770043,0.10588375,-0.06424971,-0.034390476,-0.045432653,-0.23847368,-0.35282284,-0.47096533,-0.56789994,-0.65141463,-0.68108726,-0.77429366,-0.85075986,-0.91131204,-0.9171543,-0.8888974,-0.97678053,-1.0534368,-1.1214898,-1.1861986,-1.2457646,-0.93834865,-0.49094713,0.29804802,0.4549805,0.27347904,-0.08792904,0.22296612,0.97642994,0.24906196,0.0072323345,-0.14081031,-0.272984,-0.3814257,-0.47541887,-0.5739752,-0.6633989,-0.7419556,-0.8076235,-0.8654391,-0.9286628,-0.98658174,-1.0160761,-1.0735536,-1.1243773,-1.176836,-1.2189406,-1.2733347,-1.3183548,-1.3439541,-1.0382102,-1.0721968,-1.1398557,-1.2170932,-1.2681639,-1.3187401,-1.3641076,-1.3992996,-1.4371697,-1.4632349,-1.490911,-1.4974982,-1.5449125,-1.5786088,-1.459136,-1.3318894,-0.9653626,-0.7244842,-0.7144946,-0.81462586,-0.89683163,-0.8134863,-0.848583,-0.9241264,-0.96934927,-1.0220612,-1.0584657,-1.0927724,-1.1505849,-1.1958852,-1.1702061,-1.1674834,-1.2172565,-1.2596762,-1.2892318,-1.3326414,-1.3483958,-1.3916602,-1.4333535,-1.4528784,-1.4738498,-1.3544478,-1.17537,-1.2426429,-1.3627892,-1.3790739,-1.3822694,-1.3958539,-1.4214047,-1.4584894,-1.4566488,-1.4748693,-1.4683974,-1.4848758,-1.5191231,-1.534925,-1.5498662,-1.5442278,-1.5699707,-1.598207,-1.5988622,-1.6173022,-1.6176386,-1.6167477,-1.6384654,-1.6414266,-1.6705319,-1.6649778,-1.6735364,-1.7016213,-1.6693449,-1.7130039,-1.7124286,-1.6988089,-1.7100409,-1.7253947,-1.711662,-1.7065344,-1.7307289,-1.7272305,-1.7148144,-1.717381,-1.7050549,-1.7171855,-1.7417417,-1.7719879,-1.7532432,-1.7953756,-1.8254396,-1.8610947,-1.8636903,-1.9095489,-1.8766718,-1.880118,-1.8796172,-1.9048674,-1.8883722,-1.8814003,-1.8567657,-1.8168066,-1.8025179,-1.8427888,-1.8570176,-1.8593066,-1.8732159,-1.887855,-1.9014696,-1.9047607,-1.8952246,-1.8936077,-1.8998182,-1.9015689,-1.9014902,-1.9144118,-1.9549229,-1.9623466,-1.905504,-1.8291736,-1.8171939,-1.8001647,-1.8429692,-1.9016292,-1.9144745,-1.907656,-1.9289277,-1.9406658,-1.9445456,-1.9571531,-1.9641404,-1.980788,-1.9941132,-2.0307512,-1.3563839,-0.9352276,-1.0218482,-1.1178536,-1.2394437,-0.99759483,-0.5808341,-0.6712046,-0.6529796,-0.6864862,-0.8463636,-0.9397233,-1.0217249,-1.0915865,-1.1750827,-1.2593083,-1.3372006,-1.3962684,-1.4468718,-1.5046942,-1.5860047,-1.6628046,-1.7045627,-1.755461,-1.7974999,-1.8627868,-1.9138005,-1.9280638
+0.11228275,-0.17473568,-0.23152466,-0.28705472,-0.104202315,0.17629193,0.15764718,0.042866755,0.10744284,0.10010825,0.089931056,0.11707918,-0.12232432,-0.24998955,0.3230374,0.55805135,0.34934884,0.1755261,0.019700367,-0.064635515,-0.12068713,-0.24226923,-0.31181687,-0.41882354,-0.31440508,-0.35288328,-0.3703091,-0.39536864,-0.44480544,-0.4358708,-0.47113144,-0.6000544,-0.65957814,-0.7438687,-0.8401774,-0.8686333,-0.9435194,-1.0270827,-1.0132588,-0.6736188,0.08903961,0.12109995,-0.1444236,-0.37782246,-0.5191432,-0.60699797,-0.67362976,-0.774807,-0.81636107,-0.8627734,-0.9181793,-0.8090774,-0.6764444,-0.75687575,-0.32599777,1.1410463,1.1832349,0.68680173,0.49124467,0.22287016,1.4123567,1.0541773,0.54920703,0.721362,0.58443254,0.31304413,0.17346704,0.015441161,-0.11176933,-0.093697935,-0.010989321,-0.15238476,0.980041,0.6073285,0.41379172,0.37642792,0.377564,0.2648557,0.051305544,0.8753184,0.5290838,0.15898734,0.8217021,0.63041186,0.31364566,0.78259087,0.7720277,0.47452855,0.26208657,0.10084726,0.010374717,-0.14115196,0.076621145,0.34800306,0.37160283,0.23340462,0.05757429,0.23384233,0.20110615,0.3828388,0.41160613,0.3685899,0.6198704,0.7308028,0.4201006,0.22686397,0.073622644,-0.02982537,-0.16107026,-0.24777849,-0.30300945,-0.40292025,-0.4854895,0.28485397,0.3488836,0.0008738078,-0.13308555,-0.25474152,-0.33125943,-0.4148083,-0.49357015,-0.5271715,-0.25408816,-0.39454517,-0.541157,-0.52964175,-0.5735921,-0.6487478,-0.68724483,-0.59761536,-0.49045652,-0.34755486,-0.07163337,-0.24980398,-0.3541905,-0.48436967,-0.37885758,-0.3309263,-0.48727006,-0.27505177,-0.3577827,-0.46594098,-0.6306188,-0.7871362,-0.9576038,-0.6772732,-0.4330718,-0.7192267,-0.7867282,-0.92021877,-0.9335474,-1.0376335,-1.0767808,-1.1459926,-1.206002,-1.1318305,-1.0482862,-0.5401164,0.10012345,0.1011907,0.15199997,0.11601375,-0.16755636,-0.3570123,-0.40059236,-0.44918472,-0.5879075,-0.66341907,-0.7430423,-0.8389847,-0.86381346,-0.87327546,-0.97473526,-0.91402364,-0.89046514,-0.30833685,0.5508896,0.3939351,-0.13101614,-0.3756799,-0.4724855,-0.6025144,-0.65344083,-0.50245637,-0.38837272,0.33508384,1.0922625,0.72922087,0.5483734,0.4028943,0.3179558,0.18914725,0.2817213,0.25169745,0.1219614,0.039528403,0.051983427,-0.1310475,-0.17594697,0.026274722,-0.16163467,-0.27682775,-0.31486303,-0.19643883,0.052799705,0.3602039,0.16478844,0.05008479,0.0925145,-0.026718501,-0.1624691,-0.24281427,-0.2561881,0.18606214,0.45047194,0.1961949,0.01842748,-0.1231391,-0.23567581,-0.30382472,-0.3571091,-0.400059,-0.4132927,-0.48702902,-0.5053691,-0.47324285,-0.49638999,-0.5084253,-0.43823627,-0.34242278,-0.35999066,-0.32052112,-0.17543672,-0.008258268,0.093729064,0.12673433,0.15586849,0.16825001,0.17602547,0.19092584,0.17662103,0.32691473,0.5671698,0.56535465,0.5160969,0.4812351,0.4976691,0.48841614,0.582245,0.63835067,0.5899843,0.57111585,0.5775624,0.59261024,0.5323262,0.5226315,0.52250826,0.5520789,0.53011835,0.52474904,0.54299784,0.54065025,0.4584429,0.4776649,0.5031185,0.4665203,0.4732498,0.5026178,0.47258162,0.7204072,0.6194702,0.59450924,0.6193392,0.62589085,0.6333168,0.64244425,0.64315534,0.64203143,0.6522958,0.6402734,0.65144336,0.6941493,0.6636876,0.6696413,0.64229065,0.72305274,0.70667696,0.7473871,0.69003767,0.6529435,0.6341318,0.6340256,0.67076683,0.75413185,0.78290683,0.7792843,0.7667768,0.75753963,0.7772203,0.777401,0.7736957,0.77185124,0.76432127,0.7808755,0.94155025,0.95139205,0.92951787,0.8944029,0.8522327,0.79357827,0.79764354,0.7881682,0.8104779,0.8651426,0.8484246,0.7844665,0.79501224,0.7982168,0.79343903,0.81974524,0.8200256,0.87751925,0.9955654,1.0320973,1.0476942,1.0130644,1.0333048,1.0869012,1.0103178,0.9180367,0.869624,0.8457849,0.81811523,0.81184375,0.80938214,0.83501685,0.8250644,0.8303511,0.9374784,1.2160491,1.2036681,1.1405118,1.0841707,1.1278138,1.0461308,0.96320593,0.9564918,0.9106449,0.91437125,1.005252,1.1400567,1.0961314,1.1946827,1.3118086,1.272678,1.0804119,1.1198927,1.226073,1.2595263,1.420615,1.5834334,1.6060793,1.6194443,1.7355675,1.7998805
+0.39167318,0.034642804,-0.40345216,-0.48595577,-0.4076114,-0.36911863,-0.5272063,-0.6021696,-0.6065086,-0.6966241,-0.70271105,-0.63731676,-0.718307,-0.74228024,-0.355134,0.42693356,0.26058778,0.19301571,0.23931141,0.016926777,-0.15307583,-0.3178851,-0.399464,0.00475369,0.6262837,0.51535463,0.4980104,0.21203151,-0.004915882,-0.11602181,-0.23741107,-0.39499894,-0.51361895,-0.60126835,-0.68825257,-0.7829889,-0.85470223,-0.8896048,-0.8829974,-0.443205,0.116350085,-0.18300577,-0.38532275,-0.53865224,-0.640261,-0.72990847,-0.7878944,-0.84889495,-0.8915769,-0.9114743,-0.9309893,-0.9320782,-1.0416837,-1.0826316,-0.8196957,-0.1445967,-0.05562042,0.16949655,0.028056327,0.28178263,1.4289156,0.9730382,0.49814522,0.22777034,-0.013312947,-0.20137839,-0.3145006,-0.4052433,-0.48725605,-0.5605907,0.019929767,0.67367303,0.8562707,0.44491634,0.31837064,0.4115357,0.18833159,-0.091624275,-0.24408253,0.24644925,0.07837534,-0.21273123,0.26740193,0.24305539,-0.03493696,0.4255245,0.28887293,0.029535506,-0.1382398,-0.2925459,-0.29120672,-0.23454748,0.019567102,-0.059401635,-0.265119,0.19850385,0.070811346,0.087190464,-0.09174338,-0.2471257,-0.33901823,0.014157463,0.16197757,0.05188753,-0.23814815,-0.32700646,0.04338787,0.49544966,0.022150043,-0.14058763,-0.2916937,-0.5262744,-0.6845052,-0.15971586,0.01788028,-0.34575683,-0.5141901,-0.010756128,0.4657824,0.05572589,-0.23482008,-0.32305342,0.069149286,-0.11382003,-0.37237948,-0.6222786,-0.7103647,-0.7716925,-0.8239099,-0.89627093,-0.9647717,-0.8635764,-0.58092433,-0.7526948,-0.62626934,-0.720713,-0.77544415,-0.76667154,-0.8981489,-0.86348134,-0.5785303,-0.7456799,-0.88562405,-0.9829964,-1.1828771,-1.2323587,-1.2543483,-1.3228939,-1.2945726,-1.2143431,-1.277854,-1.3043013,-1.3275001,-1.3591355,-1.3924831,-1.4353359,-0.95314586,-0.2913856,-0.38628608,-0.36488408,-0.21300936,-0.3526057,-0.5557182,-0.7233398,-0.76432776,-0.8229562,-0.8892895,-0.6082376,0.49261093,-0.056645427,-0.41710716,-0.5982416,-0.72332096,-0.539559,-0.1359791,0.80135566,1.0050244,0.7139212,0.15753344,-0.062159676,-0.217809,-0.35034895,-0.35848302,-0.31813562,-0.48195422,-0.0077824183,1.1337929,0.5324253,0.21772315,0.063136935,0.23759614,0.38374236,0.08093856,0.20178922,0.114035115,0.0801225,-0.0025609434,-0.30353776,-0.29634082,-0.21665572,-0.4006961,-0.45028454,-0.43999004,-0.5020169,-0.5648308,-0.6160484,-0.5522624,-0.4916331,-0.5639492,-0.58544874,-0.66373944,-0.6810614,-0.6126609,-0.1611514,0.110253975,-0.17722453,-0.3228137,-0.41841418,-0.47249216,-0.5044318,-0.59439266,-0.59071004,-0.5901104,-0.6871512,-0.6361569,-0.60361886,-0.6874021,-0.70546424,-0.70408463,-0.6988989,-0.67721856,-0.61459965,-0.52109563,-0.4015764,-0.35592353,-0.34481135,-0.29552293,-0.21235277,-0.19863768,-0.18774557,-0.18594106,0.13957958,0.68391824,0.8512353,0.8162078,0.7688872,0.8661989,0.82169884,0.8677742,0.9274267,0.7877336,0.7631706,0.7648928,0.81721634,0.8793455,0.83154255,0.79705906,0.822552,0.81993484,0.84965354,0.8421463,0.8420435,0.8163867,0.8249738,0.9056257,0.8760741,0.87618935,0.9213279,0.93979436,0.86037743,0.8341638,0.839213,0.8836761,0.8693968,0.862227,0.89683986,0.9675343,0.9275348,0.875242,0.87680244,0.871134,0.8925197,0.88963795,0.9507372,0.8966073,0.89292324,0.88360053,0.910576,0.89038336,0.88887006,0.9075833,0.923878,0.98390174,1.0366715,1.0175468,1.0013283,0.974061,0.97063136,0.9733064,0.9767051,0.96640515,0.9859921,1.0180589,1.0805547,1.0385338,1.0641646,0.9827838,0.9391571,0.9191401,0.9898325,0.9707142,1.0203474,1.044733,1.0007993,0.97918737,1.1520363,1.1219704,1.1000836,1.0876813,1.1100048,1.1375159,1.1959423,1.2564557,1.3200114,1.3373587,1.342326,1.389224,1.467854,1.3697951,1.2070107,1.1640651,1.1967226,1.19653,1.1514428,1.2147509,1.2035199,1.2071143,1.2452606,1.3393077,1.4546399,1.281842,1.1436126,1.1055361,1.1092032,1.1014146,1.1223916,1.1334021,1.1786816,1.2086622,1.369442,1.4139804,1.4020662,1.5318285,1.6991162,1.6348144,1.4657857,1.5673087,1.7020434,1.8168443,2.0602927,1.8822683,1.4392898,1.1661484,0.6456716,0.56197214
+-0.15888834,-0.43579927,-0.68189955,-0.60470974,-0.598019,-0.73173857,-0.8609361,-0.78303134,-0.7523469,-0.8686801,-0.82472914,-0.6921526,-0.7476177,-0.83384156,-0.08703934,0.44407055,0.32430124,0.721969,1.2107586,0.6342559,0.31001902,0.19472499,0.050267767,0.2097121,0.7499747,0.6400174,1.1109741,0.91693485,0.5634081,0.38947487,0.18705583,0.0011341795,-0.083300784,-0.1860493,-0.2638602,-0.46336368,-0.5252074,-0.5386563,-0.50232154,0.004537776,-0.19684143,-0.3236937,-0.27829662,-0.38661277,-0.5161976,-0.57434344,-0.6502265,-0.7047292,-0.7164854,-0.72471553,-0.73054636,-0.74498767,-0.8861142,-0.900961,-0.82385993,-0.80269086,-0.8215321,-0.68528116,-0.64874786,-0.15131268,0.61442715,0.30367252,0.051883552,-0.10753432,-0.31890213,-0.44712922,-0.5203904,-0.49009728,-0.5186488,-0.57397985,-0.6488283,-0.6705618,0.08297084,0.055182,0.00041191652,-0.10384427,-0.24216561,-0.0277967,-0.08767588,-0.2753977,-0.5178235,-0.5787388,0.22722866,0.2076297,-0.009651795,-0.10436921,-0.37229759,-0.4576995,-0.5467412,-0.4797225,-0.341494,-0.44809073,-0.43859354,-0.5943099,-0.8348328,-1.0337808,-1.0652587,0.2336062,0.14303347,-0.020991098,-0.06836589,0.8467226,0.38591933,0.031987656,-0.16381592,-0.014883164,0.11843936,-0.09314797,-0.22925568,-0.4092121,-0.6494519,-0.9179501,-0.97432166,-0.8125988,-0.78182113,-0.8514303,-0.03589114,0.31133747,0.06883542,-0.12084329,-0.32037076,-0.4607308,-0.5067534,-0.57837456,-0.6560004,-0.932469,-0.99237156,-1.0070738,-1.0925212,-1.1611816,-1.2631619,-0.68525463,-0.30577683,-0.5135848,-0.6495187,-0.77198434,-0.8313602,-1.0093851,-1.0063499,-1.1730026,-0.4622385,0.009960558,-0.3565486,-0.528979,-0.7499002,-0.8923539,-1.0066329,-0.9320295,-0.7383051,-0.8219434,-0.98448694,-1.0132987,-1.0934892,-1.1820796,-1.264818,-1.3955052,-0.52169454,0.17250629,-0.20447138,0.29201034,0.22196664,0.0024372153,-0.15660009,-0.3598637,-0.5704062,-0.5333612,-0.58152056,-0.37913963,0.097645715,-0.25156716,-0.44994867,-0.6382071,-0.671485,-0.7010479,-0.8235053,-0.52370155,0.683579,0.5006721,-0.024858292,-0.21842708,-0.32119688,-0.3912518,-0.47035906,-0.59221566,-0.6739596,-0.19840187,0.54723895,0.12432277,-0.08443837,-0.16422755,-0.19323975,-0.28559488,-0.479716,-0.568328,-0.47884902,-0.4644175,-0.5071459,-0.6684233,-0.65480757,-0.64128375,-0.6101166,-0.69391304,-0.6696712,-0.721804,-0.77341795,-0.85924524,-0.76872736,-0.79217696,-0.8789318,-0.8376837,-0.9086143,-0.75131845,-0.63548577,-0.7050053,-0.78504646,-0.82331777,-0.84237325,-0.8579019,-0.8515637,-0.85542876,-0.9579036,-0.91479504,-0.895865,-0.9842318,-0.89710414,-0.8670987,-0.946108,-0.9520191,-0.9868803,-0.9418329,-0.9699725,-0.88241494,-0.78285855,-0.64653265,-0.6058079,-0.61664796,-0.619198,-0.53988457,-0.5092335,-0.48165262,-0.4755178,-0.259224,-0.10555814,-0.044850465,0.06942657,0.11888756,0.18503582,0.16723062,0.21457152,0.30832583,0.31447005,0.29608792,0.3030235,0.28462154,0.27304143,0.28002822,0.29171002,0.3110256,0.2610517,0.28355882,0.2667682,0.24365698,0.20673941,0.20474015,0.21327035,0.19146623,0.20722468,0.28387383,0.28864753,0.29032525,0.24359824,0.21187697,0.23371048,0.23281784,0.23155953,0.2714058,0.31010306,0.34156093,0.29814506,0.29484522,0.26766402,0.28734666,0.25442442,0.26161194,0.28521627,0.30568802,0.30663136,0.24933727,0.26041526,0.24903958,0.25877506,0.24490644,0.26961616,0.24835072,0.24900858,0.2800705,0.29955035,0.29478976,0.29906842,0.29500508,0.28937823,0.28453752,0.29208028,0.3196324,0.31542027,0.33968097,0.38569763,0.38360932,0.32406577,0.3113291,0.29195648,0.33518773,0.3899225,0.36387244,0.3130196,0.42146552,0.40693837,0.42119864,0.39528957,0.42126557,0.40349346,0.43037078,0.45633098,0.43137664,0.47329456,0.55416733,0.47932434,0.47835207,0.54303455,0.5666876,0.45306447,0.42674023,0.46807587,0.44778642,0.4287348,0.50117195,0.49578917,0.5409131,0.5733865,0.53679127,0.48486173,0.46960473,0.4083166,0.38315073,0.3331709,0.31878585,0.3632934,0.3939985,0.481583,0.711246,0.69236505,0.75232494,0.55865794,0.33161038,0.13474707,0.24408622,0.34230906,0.28805533,0.09590097,-0.09417489,-0.14899068,-0.21253546,-0.113540545,-0.12921995,-0.25032172
+0.235391,0.008190211,-0.28224558,-0.48449194,-0.48823062,-0.5844226,-0.6822309,-0.6248853,-0.611638,-0.58737814,-0.5235052,-0.5243447,-0.59598255,-0.6835614,-0.0712399,0.92783797,0.85078204,1.1985409,1.152387,0.6942351,0.36815858,0.16436352,0.019504756,-0.06416601,-0.13639483,0.3270006,1.1451101,1.0805283,0.8383863,0.5315926,0.31037384,0.08083169,0.016979199,-0.12520964,-0.20790237,-0.35429907,-0.430798,-0.4707531,-0.035846617,0.58549666,0.1268789,-0.029770609,0.1319764,0.11716841,-0.097318515,-0.22092839,-0.31772238,-0.38724947,-0.43206438,-0.3645109,-0.22234817,-0.40426847,-0.5050915,-0.56708145,-0.30036986,-0.15820186,-0.19793338,-0.154125,-0.28682446,-0.2992255,-0.4782278,-0.5249361,-0.44592002,0.086728215,-0.20254946,-0.40293518,-0.526503,-0.5865892,-0.6177369,-0.6757903,-0.64061075,-0.6367574,-0.72867805,-0.7939179,0.18166584,0.20875569,-0.15298425,-0.20882426,0.24177255,0.02354398,-0.30250064,-0.44722044,-0.5427801,-0.66196865,-0.7277,-0.61543167,-0.706894,-0.80560464,-0.89543253,-0.6326554,-0.254386,-0.5117422,-0.61202025,-0.7550452,-0.8742938,-0.64701676,0.6092632,0.5169994,0.026282724,-0.18801057,-0.42314,-0.58275604,-0.81734633,-0.93407726,-1.0160775,-1.0772141,-1.1117797,-0.48082775,-0.5221439,-0.33635503,-0.46106708,-0.6951157,-0.84065723,-0.9527712,-1.1042582,-1.171536,-1.2355756,-1.2769189,-0.9702822,-0.5175846,-0.7355276,-0.8841371,-0.4813317,-0.48829693,-0.19294648,-0.24400757,-0.5064645,-0.68084157,-0.78652704,-0.88800526,-0.5692934,-0.5755776,-0.7136329,-0.79247856,-0.8941028,-0.9783103,-0.8281675,-0.5224783,-0.66304946,-0.76769483,0.03267752,0.05174164,-0.33765268,-0.51870865,-0.6968366,-0.8196518,-0.9291221,-0.8107712,-0.17948233,-0.42485037,-0.6511806,-0.7834956,-0.93606836,-1.0642266,-1.150579,-1.1811895,-1.1282082,-0.48290616,-0.1439196,-0.15199444,-0.44813126,-0.5732367,-0.6619456,-0.79453963,-0.8831109,-0.736598,-0.6533089,-0.49010405,-0.28763428,-0.54508656,-0.6951855,-0.82389677,-0.9385515,-1.0193788,-1.0099189,-0.8453448,0.40173098,0.1254674,-0.21832559,-0.3719396,-0.5068863,-0.6436753,-0.70870936,-0.7759022,-0.8610534,-0.9322945,-0.5427449,-0.59602296,-0.72376645,-0.7482498,-0.81295156,-0.88531345,-0.9373239,-0.94134897,-0.9025582,-0.8959968,-0.9283947,-0.96839863,-1.0002525,-1.0419314,-0.7870662,-0.62545586,-0.7004881,-0.76333714,-0.8397883,-0.9001329,-0.9332732,-0.93572086,-0.99166477,-1.0033307,-1.0118228,-0.7985976,-0.59007543,-0.66528666,-0.7318393,-0.77154005,-0.8054976,-0.8524209,-0.88723046,-0.9285855,-0.9574126,-0.9468446,-0.9457544,-0.97943354,-0.9638431,-0.9394805,-0.9619616,-0.9627659,-0.96668744,-0.9787997,-0.8356514,-0.45283768,-0.22490641,-0.0053372495,0.10680471,0.14834173,0.07701741,0.10748933,0.015794042,0.00019124523,0.025079835,0.07234146,0.14299907,0.32915884,0.4055489,0.3219711,0.3656269,0.36807686,0.42834494,0.4774574,0.5569231,0.5699485,0.6062771,0.61482376,0.63547117,0.6714285,0.66183025,0.6755826,0.69412357,0.90716696,1.024003,0.99276567,1.0547926,1.1902831,1.2868631,1.2280257,1.21628,1.2937992,1.4612601,1.741488,1.6097203,1.674695,1.6729834,1.7332559,1.7241719,1.7373958,1.8190216,1.7682979,1.7094314,1.7319758,1.6354345,1.689177,1.6815543,1.7357684,1.7700944,1.7913822,1.6901462,1.6968024,1.6656603,1.680927,1.7314,1.7480696,1.8191656,1.8630857,1.9105713,1.9737186,1.9349113,1.9723811,2.0146186,2.039261,2.0434752,2.0586166,2.183506,2.2246199,2.1910732,2.2723837,2.2662363,2.1072345,1.8913448,1.8908614,1.9190336,1.9308097,1.9387014,1.8590374,1.8066459,1.9981692,2.2354934,2.1618166,2.1219835,2.1386337,2.1405454,2.187292,2.2649865,2.3703208,2.509243,2.5801213,2.543387,2.4339352,2.2407517,2.226099,2.1673656,2.096056,2.1703455,2.2332258,2.1836555,2.197085,2.2528098,2.1907372,1.817781,1.3889502,1.0112143,0.9514141,0.9952029,1.0955467,1.1724498,1.2492286,1.2501322,1.3055769,1.3818374,1.4155235,1.1629498,0.7449035,0.29774052,0.018124659,0.024501842,0.36316538,0.2875735,0.08802365,-0.050461426,0.069370836,0.18173121,0.037378814,0.45131618,0.26721522,0.09046887
+0.3285126,0.0066327453,-0.09600125,-0.12655504,-0.112541944,-0.18522198,-0.20050234,-0.25808987,-0.29231697,-0.22216652,-0.26754346,-0.26600775,-0.26170197,-0.31596747,0.51098317,1.8223042,1.6596534,1.3437684,1.025742,0.8128517,0.638704,0.49879998,0.36940947,0.39351392,0.63989216,1.1629355,1.3997674,1.1068956,0.9156326,0.996361,0.934099,0.7047865,0.63314295,0.5414834,0.41044956,0.29109251,0.39147207,0.63258266,0.9117262,0.84125763,0.5427911,0.4051291,0.31483084,0.27298927,0.15781277,0.6016615,0.59003145,0.3564343,0.23062359,0.13766433,0.123429105,0.041530583,-0.06472995,-0.17854655,0.47078985,0.4983456,0.29795024,0.33883494,0.24368696,0.20869555,0.15124205,0.08181843,-0.017512139,-0.098668754,-0.20794736,-0.28322113,-0.34571564,-0.42521346,-0.3948889,-0.4344441,-0.49678603,-0.58665335,-0.6652712,0.63300633,1.1242232,0.6168063,0.41466486,0.2997556,0.25358725,0.12871061,-0.018488381,-0.1286008,-0.2286665,-0.34277534,-0.39214313,-0.49891922,-0.64435315,-0.66814685,-0.54507756,-0.16570282,-0.08686562,0.48818904,1.2707176,0.62233794,0.71322656,0.56022435,0.8425609,0.6783626,0.67827106,0.54939914,0.33978266,0.2908001,-0.0055822246,-0.18137966,-0.25481755,0.51964533,0.5757257,0.48446333,0.34826234,0.14530139,-0.08100775,-0.25998122,-0.4005013,-0.45617133,-0.5334324,-0.6478425,-0.7161591,-0.44308102,-0.13845928,-0.25486645,-0.28326556,0.39251637,0.19926256,-0.04266293,-0.29077762,-0.16328745,-0.22211245,-0.40420264,-0.45702106,-0.42770272,0.4133497,0.26123056,0.34189728,0.37251753,0.24929418,-0.018081035,-0.19147761,-0.27138773,-0.41161355,-0.49937534,0.024965283,0.33220655,-0.03380477,-0.20605989,-0.36963254,-0.5011307,-0.546734,0.044507224,0.39542276,-0.017370123,-0.22700499,-0.33341002,-0.4807626,-0.6204779,-0.7318263,-0.801483,-0.7098427,0.68369466,0.34804568,0.10727091,-0.08293204,-0.13904734,-0.22696684,-0.37992373,-0.46516058,-0.4168473,-0.52245486,-0.49144173,-0.4596479,-0.56979054,-0.65530527,-0.7152343,-0.80060816,-0.84508383,-0.84243643,-0.8858639,-0.6749135,-0.5134153,-0.6493836,-0.7411766,-0.79109603,-0.87085676,-0.92778695,-0.9421698,-1.0314214,-0.97644436,-0.7204933,-0.8357593,-0.85768044,-0.8754362,-0.93572354,-1.0072736,-1.040098,-1.0550371,-1.0089544,-1.0474267,-1.1010758,-1.1184901,-1.1641792,-1.1879685,-1.2032838,-1.0454862,-0.46327445,-0.55109775,-0.6950252,-0.7667117,-0.81798816,-0.8587854,-0.91517323,-0.9500061,-0.9861023,-0.92200387,-0.7600614,-0.8102249,-0.8236785,-0.87493145,-0.8912002,-0.95955837,-1.0183359,-1.0499973,-1.0390611,-1.0219876,-1.0623696,-1.0356252,-1.0416957,-1.0303844,-1.0182537,-1.0185891,-1.0133418,-1.0169675,-0.93303907,-0.5183295,-0.24496935,-0.20934021,-0.20216544,-0.1479098,-0.1673157,-0.1338932,-0.12731521,-0.102735326,-0.09745507,-0.044734683,0.16406818,0.34116966,0.33164605,0.36065236,0.41227967,0.4450767,0.54679656,0.6672018,0.719851,0.68851113,0.6272298,0.6150303,0.6419034,0.6249641,0.59985596,0.5865971,0.7256996,1.466999,1.6612377,1.6226723,1.6703172,1.7672392,1.8709624,1.8262177,1.8202819,1.847955,1.9081899,2.03231,1.9383475,1.9363048,1.9253345,1.923841,1.9729872,1.9624776,2.013363,2.0287027,1.9581376,1.9271959,1.8037232,1.8355218,1.8449886,1.9310935,2.0070167,1.985434,1.9171911,1.8563368,1.8740096,1.871461,1.9153712,1.8903685,1.891006,1.8981335,1.9067339,2.0188038,2.0368996,2.0483162,2.2967064,2.3836932,2.3069534,2.2988844,2.3508816,2.3683357,2.3600245,2.454846,2.5444167,2.4723954,2.3578005,2.316245,2.3546062,2.3557003,2.4548335,2.4463823,2.4069915,2.511441,2.8356328,2.817779,2.7327716,2.7259688,2.6973474,2.7211332,2.786461,2.914217,2.8894036,2.4837902,2.0127182,1.5778513,1.3587447,1.331012,1.4191897,1.4737526,1.5502634,1.6845636,1.7136638,1.7722963,1.8008845,1.7730364,1.5781441,1.1729145,0.9921334,0.93147385,0.9226531,0.92514086,0.95099354,0.9547722,0.95308834,0.98007846,0.8390343,0.5872834,0.43813586,0.34927848,0.3504428,0.28467864,0.36685434,0.4928,0.458267,0.3988583,0.33146784,0.3225488,0.28558862,1.1474277,1.3851357,0.8252615,0.6733307
+-0.21450813,-1.5142295,-2.305756,-2.6213965,-2.7881038,-2.879161,-2.9017768,-2.8884969,-2.853459,-2.7473443,-2.5231745,-2.5596538,-2.6596267,-2.737077,-2.6746426,-1.427767,-1.1765747,-1.6248301,-1.8160484,-1.9905496,-2.0331116,-2.1536224,-2.2387848,-2.2017267,-2.1590114,-1.9755223,-1.7979369,-1.9376161,-1.7159066,-0.88609695,-1.2384921,-1.5604391,-1.8173603,-2.0192213,-2.1580014,-2.2601357,-2.2988915,-1.2927483,-1.764272,-1.9311347,-1.9883113,-2.0684955,-2.1913364,-2.195533,-2.1735365,-2.2109516,-2.0947306,-2.1800094,-2.3031547,-2.3824894,-2.3220215,-2.2529125,-2.3005762,-2.2377644,-1.6899751,-1.7821964,-1.449857,-1.475545,-1.6596869,-1.6130041,-1.4648051,-1.776423,-2.0113473,-2.133525,-2.2196255,-2.3044322,-2.3615336,-2.4312437,-2.491878,-2.5441442,-2.6003113,-2.6825318,-2.6953895,-2.0473113,-1.2338197,-1.8024051,-2.0579247,-2.1791754,-2.2689369,-2.3832433,-2.440177,-2.5098577,-2.55187,-2.618535,-2.3831944,-2.3446913,-2.473731,-2.0926287,-1.3415909,-1.2808347,-1.3640059,-1.7227634,-1.5731074,-1.8613279,-2.0736454,-2.214207,-2.1023264,-2.0738702,-2.2371118,-2.3390045,-2.4399846,-2.4689996,-2.5422544,-2.5811176,-2.6134045,-2.3391092,-2.3858488,-2.4915571,-2.5212898,-1.7501931,-1.8890357,-2.1341257,-1.9273427,-1.221106,-1.8511076,-2.0243032,-2.1808708,-2.2259805,-1.5609035,-1.7623762,-1.8853241,-2.024896,-2.1968393,-2.27698,-2.3440115,-2.3568208,-2.4498374,-2.3896933,-2.3099346,-2.2485592,-2.294072,-2.4362893,-2.2510126,-1.5035106,-1.8727176,-2.0828607,-2.2111263,-2.2602472,-2.3298306,-2.3730826,-1.4689022,-1.530602,-1.9611082,-2.1508455,-2.2786663,-2.3846743,-2.412219,-1.8959475,-1.6809156,-2.0240755,-2.061576,-2.0546505,-2.2076452,-2.3067517,-2.393072,-2.4587,-2.4133549,-1.9602743,-1.5800779,-1.5855405,-1.9355257,-2.0958643,-2.1559482,-2.2749848,-2.368353,-2.3685942,-2.3715513,-1.8825195,-1.6754894,-2.0011206,-2.1499484,-2.2751102,-2.353311,-2.3949194,-2.3835032,-2.441408,-2.2234359,-2.142305,-2.3047671,-2.3827667,-2.4243126,-2.4804506,-2.5095787,-2.5509675,-2.5657482,-2.5379338,-2.6213856,-2.6677728,-2.007022,-1.4562182,-1.8622026,-2.040095,-2.1092384,-2.1846626,-2.1253095,-2.13051,-2.2624316,-2.3864508,-2.4425945,-2.4427693,-2.4487474,-2.4540732,-1.9716983,-2.0754538,-2.252997,-2.315184,-2.3572202,-2.4037628,-2.402545,-2.4593768,-2.4996371,-2.5281267,-2.5259328,-2.5540621,-2.4870842,-2.5539122,-2.50642,-2.541227,-2.5791597,-2.6122644,-2.581937,-2.4968648,-2.4873757,-2.52184,-2.5081022,-2.3255363,-2.442244,-2.4873662,-2.5272279,-2.5545483,-2.516493,-1.7441586,-0.84225595,-0.44238636,-0.7094485,-1.2225003,-1.2309881,-1.0979844,-0.9126077,-0.85253024,-0.80286026,-1.2862585,-1.6907351,-1.823351,-1.4780957,-1.1568348,-0.8931637,-0.84094733,-0.935378,-0.66856456,-0.31693953,-0.07566349,0.013257075,0.10906209,0.18675184,0.2332751,0.3045818,0.35656095,0.32966453,0.30682966,0.2546124,0.21163698,0.26232955,0.4730029,0.4183095,0.36815256,0.47428262,0.47205,0.5089636,0.46390212,0.4619914,0.54893667,0.54864496,0.58505344,0.5437852,0.57649857,0.5971124,0.45685655,0.43688506,0.50764936,0.49034905,0.55324733,0.5938194,0.77035946,0.8206975,0.92124856,0.9320693,0.8673221,0.86309695,0.8534998,0.92462444,0.95243835,0.9597018,1.0104115,0.9456183,0.968802,0.8919146,0.8303545,0.940191,0.78443766,0.8578269,0.9098269,0.8939575,0.8524685,0.8610665,0.756224,0.7602965,0.8495867,0.9973444,1.0567971,0.9836116,0.8550699,0.5883527,0.8169146,0.7625679,0.35835978,-0.74295485,-0.96235406,-0.8443482,-0.90374625,-0.94908404,-1.4105659,-2.0031781,-2.4308746,-2.5520256,-2.6497664,-2.60988,-2.6571949,-2.2436838,-1.6492794,-1.0408833,-0.39694908,0.12859406,0.146724,0.23072742,0.37779757,0.46898323,0.19292656,-0.76317096,-1.7369231,-2.2159457,-2.1347556,-2.3369265,-2.11284,-2.139861,-2.3118384,-2.4295971,-2.4447029,-2.5148082,-2.586241,-2.640395,-2.629488,-2.6487834,-2.6330972,-2.6244953,-2.5639062,-2.5845187,-2.4014003,-2.2348762,-2.262574,-2.3119829,-1.7046964,-1.2979021,-1.7724011,-1.7518951
+0.3515152,-0.27053374,-0.59972703,-0.8389882,-1.0661292,-1.3201869,-1.2399232,-1.2649721,-1.2526507,-1.348986,-1.4540434,-1.4901767,-1.3755677,-1.3838129,-1.5466669,-0.05516362,-0.14018248,-0.5669538,-0.77103084,-0.89454937,-0.95663047,-1.0769017,-1.2637972,-1.4052192,-1.4233251,-1.2793403,-1.2658476,-1.1965365,-0.33659807,0.09371567,-0.35528296,-0.5724213,-0.69102,-0.929895,-1.0676453,-1.1997371,-1.147024,-0.64824104,-0.8651635,-1.0564201,-0.637094,-0.99229145,-1.2299371,-1.3857864,-1.3351637,-0.74030596,-0.16300772,-0.6196617,-0.938182,-1.0634005,-1.1122156,-1.2310808,-1.3014631,-0.76360065,-0.6325414,-0.71301186,-0.06487125,-0.37653828,-0.7953061,-0.9297638,-1.035955,-1.1981695,-0.4176594,-0.79696393,-1.055753,-1.2317932,-1.3165298,-1.3921238,-1.4682169,-1.3084095,-1.362664,-1.5411432,-1.2183905,-1.2037549,-0.41758108,-0.9169054,-1.2155037,-1.3407154,-1.3452309,-1.4687543,-1.4606593,-1.5269933,-1.6366563,-1.6571785,-0.85846853,-0.99269867,-1.2580152,-0.95167214,-0.77746534,-0.39807087,-0.71807796,-0.6092809,-0.40320972,-0.7716956,-1.0670706,-1.1748075,-1.2488866,-1.3638644,-1.3826356,-1.3136559,-1.446786,-1.5837994,-1.6801412,-1.4774916,-1.2827737,-1.4616433,-1.676527,-1.6392766,-1.5664107,-0.94008386,-0.9873462,-0.9495009,-1.1986494,-1.1822584,-1.261397,-0.7635359,-1.1046716,-1.2876782,-1.0661162,-1.1472487,-1.4138806,-1.4992303,-1.2411711,-1.2307466,-1.307847,-1.406268,-1.6639811,-1.6090338,-1.6071303,-1.7479322,-1.7700524,-1.6878505,-0.92270505,-0.8096565,-1.2813416,-1.5444326,-1.7128081,-1.7655618,-1.8099893,-1.9066516,-1.891335,-1.987076,-2.0136223,-2.0304208,-2.0544593,-2.129643,-2.1728764,-2.1806388,-2.1768794,-2.0598018,-1.9011328,-1.864011,-1.4611447,-1.6944563,-1.8249606,-1.480578,-1.3970454,-1.5694284,-1.7205708,-1.7620063,-1.8303559,-1.8818102,-2.0037282,-2.0636282,-2.0760832,-2.142764,-2.1561484,-2.1078882,-1.8884722,-1.579975,-1.3989602,-1.626235,-1.7654706,-1.7906053,-1.8953612,-1.944407,-1.9911904,-1.9860735,-2.1195745,-2.1580682,-2.1635633,-2.226231,-2.2446327,-2.2519612,-2.2652738,-2.2293444,-2.1184266,-2.292572,-1.7756414,-1.0772734,-1.4865751,-1.6596557,-1.7208881,-1.7278085,-1.5835178,-1.5387188,-1.68363,-1.7234375,-1.7956281,-1.8369133,-1.8989513,-1.9583502,-1.9957399,-1.9934179,-2.0399122,-2.0545058,-2.1273603,-2.1249037,-2.0915637,-2.127789,-2.1176934,-2.1270866,-2.1833336,-2.1891017,-2.1784532,-2.2225752,-2.1770272,-2.2402434,-2.2739305,-2.2711873,-2.2461343,-2.165266,-2.1752548,-2.1524892,-2.1851773,-2.0702198,-2.067957,-2.0210834,-2.00934,-2.0701473,-2.027436,-1.5239635,-1.2155652,-1.319168,-1.3326535,-1.3700054,-1.335401,-1.3258039,-1.2745486,-1.210603,-1.2124808,-1.1976733,-1.2245834,-1.1750622,-1.1087314,-1.0395719,-1.0115858,-0.9778446,-0.8628868,-0.8725097,-0.7634465,-0.61358964,-0.63818955,-0.64288217,-0.56601226,-0.5935911,-0.5677813,-0.6618514,-0.6299279,-0.6490958,-0.6106556,-0.50083643,-0.51989317,-0.4064268,-0.29832104,-0.3735261,-0.35796827,-0.39620405,-0.3440153,-0.4333049,-0.401299,-0.37992415,-0.406385,-0.37862158,-0.3792902,-0.36639142,-0.3586951,-0.4501565,-0.42701918,-0.38992703,-0.18169004,-0.24756937,-0.25778094,-0.071894705,-0.090887934,-0.08431487,-0.13028733,-0.1754574,-0.20303643,-0.18160394,0.23972599,0.3780784,0.43874145,0.4625252,0.45931107,0.47567284,0.48380077,0.49052656,0.41629243,0.40242887,0.3269035,0.26903436,0.2553287,0.32440808,0.34703034,0.30120176,0.08629908,-0.017997328,-0.079120085,-0.07228291,0.01496299,-0.16011238,-0.38759366,-0.61186504,-0.66164446,-0.6160169,-0.6944721,-0.93280786,-0.9820224,-1.0092396,-0.9389996,-0.8353847,-0.83224297,-0.9123184,-1.0064555,-1.113756,-1.140564,-1.11497,-1.2346828,-1.1604946,-1.0464196,-0.873399,-0.70758224,-0.64283466,-0.7122848,-0.63043356,-0.56122965,-0.49697214,-0.6135208,-0.74641365,-0.9406189,-0.78055847,-0.79960203,-0.9551004,-0.9916583,-0.9709251,-1.043982,-1.0042176,-1.0295523,-0.9841223,-1.1242268,-1.1720732,-1.1717471,-1.2288992,-1.2848771,-1.3746365,-1.3801805,-0.22106256,-0.15074064,-0.7271067,-0.9729169,-0.72507596,-0.32369134,-0.8154357,-1.0283145
+0.090850055,-0.2618864,-0.35093454,-0.5573725,-0.61717635,-0.7515468,-0.76543105,-0.76813,-0.7953037,-0.83513236,-0.42125988,-0.028412584,-0.19993322,-0.29877278,0.21809213,1.7910647,1.2387285,1.0584879,0.95747095,0.8038247,0.62725866,0.4836942,0.248866,0.06856249,-0.04691526,-0.077661216,0.10165702,0.042743605,1.1975496,1.2405763,0.8802509,0.8244233,0.6390848,0.5072704,0.4744376,0.33630916,0.26523614,0.18790168,0.016648572,-0.061663847,0.16280147,0.54286945,0.26219398,0.19618708,0.078198746,0.2730469,0.5459207,0.50510097,0.38579777,0.36918646,0.3138076,0.07885796,0.0033084229,0.0063213147,-0.22149433,-0.29602444,0.55762964,0.7929266,0.3484621,0.16958022,0.50787956,0.808178,0.48635715,0.28821117,0.15386944,0.004860554,-0.071798295,-0.10120851,-0.23504086,-0.3322003,-0.3489859,-0.4234668,-0.4612378,0.7891872,0.73874736,0.20958383,-0.11043911,-0.1845027,-0.20666848,-0.28969085,-0.31741285,-0.43847036,-0.5389985,-0.6008542,-0.6105846,-0.69380856,-0.68885034,-0.19553907,0.37039068,0.48215604,0.51040107,1.2662125,1.0400708,0.80597425,0.6676867,0.40244955,0.28531867,0.06908272,0.22324,0.1331589,-0.08001909,-0.2924443,-0.33504507,-0.34078673,0.10036215,0.47799516,0.21357888,0.02731501,0.012890283,-0.16953626,-0.352271,-0.45991832,-0.4072299,-0.4654281,-0.58137727,0.42974356,0.27606723,0.56741905,0.48227215,0.5726335,0.3798499,0.08784768,-0.06379637,-0.12760282,-0.23223412,-0.33492893,-0.47823918,-0.32670212,1.2049913,0.88931644,0.62768084,0.3809372,0.22386788,0.35741353,0.20020612,-0.00948203,-0.23248395,0.21997376,0.26208562,-0.066190764,-0.032067288,0.33128524,0.02418625,-0.21716724,-0.29896012,-0.5082128,-0.525991,-0.6073883,-0.6728424,-0.65336645,-0.61714643,-0.2927465,0.036459807,-0.04023503,-0.29177678,-0.055471014,0.13818972,-0.15503708,-0.2973185,-0.38777354,-0.4007182,-0.5075369,-0.6441115,-0.8176873,-0.8550602,-0.82268256,-0.8180678,-0.8716061,-0.9380064,-0.98201245,-0.96217865,-1.0621529,-1.1146016,-1.1748722,-1.2104778,-0.95910084,-0.19835947,-0.34648746,-0.5251382,-0.6430414,-0.7514405,-0.8145981,-0.880761,-0.9298506,-0.9753256,-1.0593723,-1.1334203,-1.2211387,-1.2358866,-1.2407538,-1.3156776,-1.3611615,-1.373966,-1.4183792,-1.3152674,-1.2304196,-1.3003763,-1.3682557,-1.4215097,-1.4708312,-1.492726,-1.5091543,-1.49803,-1.5286896,-1.6302171,-1.650358,-1.6174655,-1.6465164,-1.6194458,-1.676583,-1.7177811,-1.7082275,-1.68668,-1.7361588,-1.7665846,-1.7242982,-1.7123528,-1.7527579,-1.7514122,-1.6816077,-1.5907571,-1.5688398,-1.52767,-1.5113784,-1.5122175,-1.4408458,-1.4255903,-1.4203918,-1.4150903,-1.478709,-1.4114285,-0.94706964,-0.7747518,-0.78441477,-0.8741207,-0.7903507,-0.7662492,-0.78876865,-0.78173137,-0.7557756,-0.743248,-0.7409227,-0.69652414,-0.6766437,-0.63800645,-0.5841013,-0.5585576,-0.53977996,-0.4561043,-0.48380283,-0.40970823,-0.2522055,-0.15765937,-0.10528706,-0.032410275,-0.17952219,-0.14645155,-0.14019206,-0.13615417,0.016838837,-0.088369235,-0.024483781,0.016146455,0.131326,0.19502203,0.099011675,0.2574702,0.26231477,0.41534966,0.22213827,0.2576033,0.360706,0.2581606,0.268101,0.25576746,0.22773819,0.37456745,0.339842,0.35142583,0.3451087,0.33668977,0.36343852,0.4046116,0.63771653,0.59076506,0.5698024,0.4352317,0.35531315,0.4294136,0.50143415,1.0285238,1.1545031,1.1090108,1.185008,1.20678,1.2298813,1.3400571,1.2836442,1.3526287,1.3451858,1.2824664,1.2596738,1.2595956,1.2906785,1.2700626,1.1674805,0.9460316,0.9785726,0.913813,0.96276796,0.9387506,0.73852646,0.57268286,0.43264586,0.3447138,0.28657937,0.15218084,0.22109796,0.4783399,0.4505818,0.32135135,0.3388217,0.2605728,0.20033233,0.008233342,-0.060508322,-0.10259955,-0.15475234,-0.21090274,-0.3130236,-0.2557484,-0.16111557,-0.10964668,-0.08378382,-0.177427,-0.16385944,-0.14243355,-0.1360864,-0.21378776,-0.32619664,-0.47419107,-0.40204585,-0.47077745,-0.49414325,-0.48935252,-0.4781428,-0.48956764,-0.5218581,-0.56659865,-0.6475402,-0.74038297,-0.7662029,-0.80945027,-0.8823367,-0.89319134,-0.9097701,-1.002349,0.23708864,0.6319106,0.2482634,0.16660604,0.47537804,0.7987803,0.39589283,0.28441262
+-0.67652375,-0.56249493,-0.66416806,-0.88524044,-1.0400662,-1.1887538,-1.2827303,-1.3600333,-1.4636823,-1.4991314,-1.0622282,-0.25178286,-0.38995835,-0.49916828,-0.64528394,0.6370758,0.5287837,0.3693407,0.5158544,0.33004487,0.2610857,0.1114973,-0.12033059,-0.28594488,-0.40731782,-0.53605664,-0.56908566,-0.6555629,0.26150045,0.62103295,0.4182982,0.36661446,0.12638982,0.025685672,-0.106952175,-0.25359705,-0.38839477,-0.5795375,-0.69529235,-0.7763871,-0.74066913,-0.582259,-0.63400066,-0.6926826,-0.7558913,-0.6794491,-0.6398809,-0.68542564,-0.7007573,-0.71947193,-0.8031654,-0.8271949,-0.8755337,-0.965002,-1.1102993,-1.202917,-1.1354704,-1.1962397,-0.8603816,-0.31785256,0.311453,0.35593766,0.1337666,-0.03238712,-0.120874256,-0.2876441,-0.39606428,-0.3421467,-0.36955893,-0.48995614,-0.56137687,-0.63487613,-0.7037878,-0.6252091,-0.39167053,-0.6254618,-0.74502456,-0.8792609,-0.9008267,-0.9053469,-0.9304337,-1.0297147,-1.1024477,-0.8737822,-0.8073419,-0.91247725,-0.8866949,-0.88826925,0.07637799,0.42207077,0.40484262,0.8091219,1.1729494,0.79504776,0.52416646,0.22350876,0.008341778,-0.21421106,-0.18846716,-0.26008222,-0.39738286,-0.5773432,-0.60492194,-0.66424966,-0.68630093,-0.74273825,-0.70523834,-0.781081,-0.82293814,-0.8874434,-0.97393036,-1.0071089,-0.8597014,-0.8288289,-0.9116216,-0.9352484,-0.9251535,-0.7863785,-0.70408463,-0.70521194,-0.8029922,-0.8918422,-0.927868,-0.970131,-0.9848414,-0.5288407,0.5911174,0.9459331,0.98403525,0.6351459,0.42778528,0.2020456,0.06264593,0.013211269,-0.11022721,-0.27324358,-0.44030184,-0.50268537,-0.6252827,-0.71697044,-0.7378068,-0.53481394,-0.6177225,-0.74574035,-0.82830894,-0.8840931,-0.08495931,0.29328197,0.08333258,0.065019205,0.06631909,-0.094908446,-0.1744891,-0.2259646,-0.32846242,-0.41757655,-0.51845914,-0.6350833,-0.54324,-0.4759426,-0.54553396,-0.62740827,-0.7681302,-0.92375106,-0.9067329,-0.9036998,-0.979289,-1.0448256,-1.0624971,-1.117113,-1.1228001,-1.2064743,-1.183473,-1.1829435,-1.1978714,-1.1432118,-1.2547536,-1.353704,-1.4444304,-1.520685,-1.495925,-1.4853461,-1.5130936,-1.4582419,-1.3303409,-1.2985597,-1.4587295,-1.5698619,-1.5910814,-1.629576,-1.7391136,-1.7417393,-1.7229439,-1.7323995,-1.6813009,-1.7330062,-1.7748528,-1.7497581,-1.736579,-1.731364,-1.7604258,-1.8043158,-1.8288641,-1.9006774,-1.9526207,-1.8657243,-1.8781246,-1.8989,-1.8159249,-1.871908,-1.8820299,-1.8457842,-1.8464236,-1.9002156,-1.8634436,-1.8786943,-1.8856753,-1.9567888,-1.98871,-1.7933824,-1.6199696,-1.6773777,-1.69585,-1.7208496,-1.7415278,-1.7708144,-1.7722342,-1.7548513,-1.7545449,-1.8072262,-1.7993032,-1.6605132,-1.6756883,-1.6829994,-1.7775043,-1.5762625,-1.4887145,-1.4951842,-1.5097222,-1.4788458,-1.5164502,-1.4475708,-1.3740802,-1.3143208,-1.2851679,-1.1863351,-1.2259679,-1.1727624,-1.1949408,-1.109534,-0.886109,-0.62447196,-0.5140186,-0.6054599,-0.74161357,-0.8205968,-0.7885531,-0.70570403,-0.5736072,-0.5780189,-0.6197872,-0.25144008,-0.11057344,-0.05622747,-0.15887378,-0.3069752,-0.30178344,-0.42534706,-0.47444707,-0.62168777,-0.55391043,-0.49066383,-0.58593464,-0.5484588,-0.56756985,-0.58119214,-0.54475015,-0.6144705,-0.47991455,-0.2963797,-0.16256464,-0.039961528,0.03373507,0.029889945,-0.16025871,-0.27283552,-0.40857372,-0.4984994,-0.35311332,-0.21407638,0.17989211,0.2274705,0.07785195,0.051744174,0.007231105,-0.032617103,-0.0107937865,-0.07123193,-0.049519222,-0.20142783,-0.121585414,0.017461006,0.05812713,0.050561357,-0.030630808,-0.11455558,-0.2097001,-0.26854894,-0.07886331,0.0031918995,-0.13369861,-0.23853938,-0.31607264,-0.3811317,-0.42478192,-0.47290897,-0.5544661,-0.6045686,-0.56699353,-0.5351027,-0.5813911,-0.61155987,-0.65047073,-0.6811027,-0.74312353,-0.77732474,-0.82273066,-0.86568403,-0.8974114,-0.8401151,-0.75277126,-0.72251225,-0.7888767,-0.8599186,-0.89603865,-0.89549106,-0.9129802,-0.9491552,-1.0231054,-1.076242,-1.112054,-1.1315895,-1.1974638,-1.2082213,-1.2436187,-1.2665027,-1.2588346,-1.3006032,-1.3287065,-1.359933,-1.3949785,-1.4193639,-1.4552884,-1.4697142,-1.4797051,-1.5020659,-1.5433192,-1.4411857,-1.4378954,-1.5157121,-1.5278602,-0.45926735,0.29972324,0.0736471,-0.07988168
+-1.1316085,-1.3616649,-1.5594041,-1.7899169,-1.960394,-2.0283394,-2.1005287,-2.1262379,-2.2058992,-2.253872,-2.2307258,-2.1831522,-2.2374277,-2.302897,-1.4820695,0.22224022,-0.3064419,-0.45896757,0.079251155,0.056251828,-0.25877315,-0.5285447,-0.7164279,-0.88068724,-1.0595398,-1.1974764,-1.3009552,-1.142411,0.16025595,-0.22835758,-0.28819436,-0.4386775,-0.7170453,-0.88098276,-1.0534639,-1.2193853,-1.3823379,-1.5156542,-1.610564,-1.6909112,-1.7230239,-0.800901,-0.72911733,-0.9842768,-1.0592339,-0.08061673,-0.25763822,-0.5432844,-0.57987094,-0.81771576,-0.9386267,-0.19469972,-0.45921534,-0.7514235,-0.9726323,-1.1362145,-1.2827699,-1.35854,-1.4157063,-1.3848802,-1.3556517,-0.7784565,-0.7122482,-0.94318855,-1.1206551,-1.2658105,-1.3935118,-0.5238575,-0.60712963,-0.92016417,-1.0262892,-0.99475133,-1.0235105,-1.1083959,-0.74724996,-1.0393901,-1.2060947,-1.4352854,-1.6110182,-1.6445545,-1.7218251,-1.8145092,-1.8970361,-1.6428745,-1.3374734,-1.424871,-1.5569494,-1.667881,-1.7788818,-1.8676883,-1.5148998,-1.3522601,-1.4547663,-1.5389407,-1.0582807,-1.1516118,-1.3787985,-1.6000735,-1.7068975,-1.7751145,-1.8769134,-1.9933052,-2.1250782,-2.2136817,-2.2595582,-2.3185248,-2.359638,-2.3551884,-0.9653438,-0.6361678,-0.9935496,-1.1875362,-1.3398188,-1.485387,-1.5987422,-1.4238985,-1.3517028,-1.483356,-1.6217308,-1.7225182,-0.8561629,-0.55921036,-0.89312875,-1.1158705,-0.7462059,-0.6532657,-0.34040317,-0.41993132,-0.638216,-0.79969907,-0.37358773,-0.5033783,-0.7136153,-0.8243184,-0.984818,-1.1340597,-1.2219836,-1.3544627,-1.4663054,-1.5562649,-1.6420536,-0.49017733,-0.55925345,-0.86714303,-1.0518384,-0.99335015,-0.52324957,-0.71476865,-0.7918297,-0.5153459,-0.5881011,-0.6655787,-0.69091976,-0.87365127,-0.9927678,-1.1143776,-1.243592,-1.2893379,-1.1707151,0.36081338,-0.18359874,-0.46129015,-0.5673653,-0.6986679,-0.78906286,-0.84153944,-0.9199846,-0.9117246,-0.8874611,-0.87677866,-0.732098,-0.9483279,-1.0760987,-1.2006353,-1.3190774,-1.4114554,-1.2705241,-1.2987058,-1.420865,-1.514447,-1.5991296,-1.646426,-1.7068524,-1.7423577,-1.7831488,-1.8202186,-1.8839273,-1.9260575,-2.0191507,-2.0278401,-2.0835814,-2.1020143,-1.740655,-1.5969775,-1.6417193,-1.6830019,-1.7414811,-1.8165122,-1.8694702,-1.9608274,-2.0538633,-2.0961177,-2.11272,-2.1446974,-2.1781025,-2.1695814,-2.1884742,-2.2226853,-2.2138803,-2.2217274,-2.2428215,-2.2604842,-2.2677102,-2.2836208,-2.287326,-2.3165033,-2.3031592,-2.3137703,-2.3161325,-0.7927837,-0.26259205,-0.58103323,-0.6778148,-0.74428356,-0.8036314,-0.8455646,-0.8862132,-0.9449511,-1.0322186,-1.1404502,-1.2477565,-1.2084706,-1.0490307,-1.1451716,-1.2752299,-1.2939684,-1.2382587,-1.2137547,-1.1439211,-1.166327,-1.2311707,-1.2007277,-1.1067283,-0.98307097,-0.91252565,-0.86144435,-0.91575515,-0.8152665,-0.8489294,-0.8027909,-0.5425903,-0.35883182,-0.24093261,-0.28983462,-0.62904024,-0.6632961,-0.68139285,-0.6003103,-0.38195544,-0.5918537,-0.71335757,-0.13467826,0.059758518,0.05297834,-0.17433307,-0.3410061,-0.32258257,-0.5007625,-0.5896032,-0.6272371,-0.5554745,-0.6390018,-0.65147436,-0.6109636,-0.5940555,-0.60664415,-0.67808783,-0.6913477,-0.45327097,-0.22952142,0.05428793,0.17066197,0.22902535,0.15565635,-0.30239928,-0.6159948,-0.7761737,-0.7044408,-0.56321573,0.24434711,0.33272278,0.048110154,-0.04591955,-0.14274141,-0.29673755,-0.38824922,-0.28730088,-0.37518102,-0.45377588,-0.45319542,-0.14575072,-0.0153095685,0.006632719,-0.07619859,-0.34193006,-0.533428,-0.61555564,-0.4498006,-0.071235225,-0.07564512,-0.40083933,-0.72605705,-0.8566703,-0.9015255,-0.9829346,-1.0517207,-1.1241622,-1.1660379,-1.1046245,-1.0811404,-1.0571537,-1.1080244,-1.1673536,-1.1963072,-1.2735971,-1.2945787,-1.3433127,-1.4611193,-1.5726032,-1.4383057,-1.236267,-1.2878046,-1.433916,-1.5850134,-1.5552044,-1.5082295,-1.54508,-1.6674136,-1.7616442,-1.8514187,-1.7691363,-1.8298991,-1.8623712,-1.8893378,-1.8917592,-1.882499,-1.8681933,-1.9341139,-1.9568849,-1.9931613,-2.008508,-2.0707436,-2.120081,-2.1023855,-2.1662233,-2.1999404,-2.0466723,-1.5182455,-1.3585894,-1.4659997,-1.5680056,-0.7050667,-0.08276376,-0.48528624,-0.66450447
+-0.81176984,-0.7593984,-0.8362427,-0.9370669,-1.040163,-1.172461,-1.2028385,-1.218501,-1.2199619,-1.2605709,-1.0342343,-0.90952337,-0.29202867,-0.010915931,-0.22537667,-0.33514574,-0.44470638,-0.53122157,0.18771778,0.7386583,0.55901504,0.4450204,0.21639667,0.008713137,-0.28138193,-0.47054535,-0.6357016,-0.7501852,-0.22031505,0.22254471,0.13652883,0.15285595,-0.01935422,-0.22604184,-0.36604756,-0.5483624,-0.70340633,-0.8436439,-0.941733,-1.0098386,-1.0908513,-1.1636779,-1.164873,-1.227103,-1.1217221,-1.0021687,-1.0752108,-0.5400909,1.2602053,1.0460999,0.67847157,0.9191202,0.85481465,0.4623365,0.069974944,-0.1782115,-0.39532518,-0.53787476,-0.45035258,0.92790836,0.9452261,1.8040652,2.0259051,1.4494104,1.1615779,0.95484185,0.8630248,0.7864392,0.60651016,0.30995795,0.1207889,-0.06440291,-0.20304497,-0.3052945,-0.4137098,-0.54094684,-0.68480927,-0.8277172,-1.0414774,-1.1467456,-1.1745508,-1.1954623,-1.2172058,-1.2652975,-1.3052512,-1.3336316,-1.1474553,-0.74244153,-0.7764679,-0.8495586,-0.8078332,-0.3562138,-0.35120228,-0.5821526,-0.6964103,-0.67635715,-0.77887607,-0.9554735,-1.118257,-1.2286065,-1.2973762,-1.3639927,-1.4303436,-1.4944812,-1.5633106,-1.6315644,-1.3387687,-1.1271515,-1.2479184,-1.3325611,-1.3852401,-1.434989,-1.4846385,-1.5266331,-1.573936,-1.0536907,-0.37731668,-0.23100442,-0.18785179,-0.3758977,0.16395076,0.50531757,0.20615527,-0.018401187,0.5515901,0.8978287,0.48490453,0.20225549,-0.022514932,0.11794983,1.1678041,1.0311224,0.6524533,0.40084314,0.19374053,-0.01489893,-0.17520571,-0.3114438,-0.47503126,-0.55580133,-0.65011847,-0.69233286,-0.61106896,-0.69044375,-0.7816547,-0.8532187,-0.9368131,-1.0203168,-0.410317,0.6250669,0.9270431,1.9775915,2.2939835,1.8696092,1.4962251,1.3092867,1.0801262,0.87497723,0.84677684,2.148374,1.9861519,1.581536,1.2822247,1.1730912,1.034018,0.91838306,1.1472012,2.0010657,1.882398,1.605393,1.3555824,1.0841457,0.8845655,0.68848,0.5130276,0.34936824,0.2625229,0.062029984,-0.07439029,-0.1269778,-0.19920546,-0.31421262,-0.3371617,-0.3871538,-0.4496211,-0.50343585,-0.5121733,-0.6353327,-0.6927662,-0.8075242,-0.81575316,-0.6202407,-0.3907023,-0.4697927,-0.59627587,-0.51951224,-0.38187033,-0.45767426,-0.58702,-0.71553403,-0.8805355,-0.9434421,-0.982232,-0.97464883,-0.98101366,-1.0053146,-1.0561471,-1.0308774,-1.0526869,-1.0925249,-1.0610852,-1.0576187,-1.1125424,-1.1056983,-1.1013474,-0.9654969,-0.4608821,-0.5426393,0.5011532,1.6229584,1.3236864,1.0751653,0.9425189,0.90267503,0.8259662,0.74925005,0.731793,0.60105264,0.51819366,0.39399278,0.28968948,0.12336759,0.15668033,0.15152314,0.0807967,0.1757111,0.16040498,0.1601443,0.06832932,0.071146354,0.04239359,0.018182363,-0.00095972046,0.0026414953,0.095508695,0.10732834,0.3612424,0.6356226,0.6801013,0.6491274,0.737582,0.9611106,1.1507806,1.1767759,1.005418,0.84715855,0.81079787,0.81658065,0.90754557,0.8935473,0.81972206,1.3302926,1.4373999,1.4669905,1.2942404,1.0994456,1.162437,1.0076685,0.9050356,0.8679786,0.85082316,0.77757275,0.6777705,0.728425,0.7833705,0.74725246,0.7247219,0.67908156,0.7301086,0.88293904,1.4610521,1.6806176,1.7417979,1.7585666,1.2636436,0.94754064,0.75234723,0.71520567,1.1118233,2.1936746,2.3167827,1.9928949,2.0139463,1.7772896,1.644536,1.6298611,1.5110378,1.4286449,1.3426573,1.1742057,1.1567554,1.1713428,1.168745,1.1431453,1.0345062,0.95025074,0.8067531,0.74519414,0.88889456,0.9496512,0.83317256,0.6845642,0.61525995,0.5527556,0.4844541,0.42650032,0.3075227,0.10512589,0.87884074,1.5581872,1.3103442,1.2769179,1.1748968,1.0188446,0.9586489,0.8769648,0.6675813,0.56826997,0.42660233,0.24221604,0.21265636,0.24182998,0.10975397,-0.051460795,-0.16018067,-0.20822154,-0.24177073,-0.2796691,-0.32199928,-0.37428525,-0.48628175,-0.5133914,-0.56154907,-0.61752784,-0.6271043,-0.60792494,-0.6406637,-0.63684034,-0.67835295,-0.67438126,-0.7710284,-0.8189385,-0.80885816,-0.87416106,-0.96559435,-1.0445675,-1.0548112,-0.98892856,-1.0452905,-1.0517137,-1.0840576,-0.62254375,1.7553282,1.6035625,1.2593629
+-0.9923159,-0.9723127,-1.2253406,-1.4400623,-1.593565,-1.7210484,-1.7790413,-1.8833065,-1.6159651,-1.6668458,-1.8159101,-1.4200654,-1.1825528,-1.4747571,-1.6595011,-1.7638233,-1.8019073,-1.9045421,-1.8785434,-1.8924146,-1.6122725,-1.5929623,-1.755661,-1.8589766,-1.9014778,-1.9763912,-2.022794,-2.0707328,-2.1485438,-2.150907,-2.2385175,-2.2263339,-2.224886,-2.2526884,-2.2689161,-2.341358,-2.3965328,-2.427485,-2.4172578,-2.4523787,-2.4576283,-2.5428448,-2.596341,-2.0649514,-1.1571801,-1.3295876,-1.6030207,-0.9156203,-0.64570594,-1.2914305,-1.476694,-1.5945156,-1.6563444,-1.7411635,-1.7938638,-1.8944948,-1.966903,-2.0170846,-2.1703036,-2.262514,-2.051358,-1.1288755,-1.2522122,-1.5334833,-1.654774,-1.7679012,-1.8432856,-1.942801,-2.03098,-2.1239977,-1.7398521,-1.6920662,-1.0612528,-1.3395903,-1.5411564,-1.4949884,-1.1005349,-1.4111843,-1.6056929,-1.7659484,-1.8594997,-1.9340894,-2.003188,-2.080089,-2.1564593,-2.227777,-2.318277,-2.3848596,-2.172195,-2.1580572,-2.2436385,-2.2961206,-2.3571405,-2.3666782,-2.4090953,-2.4877548,-2.4598255,-2.503767,-2.5330412,-2.6149366,-2.6528378,-2.4789467,-2.3853369,-2.4579592,-2.4804296,-2.4895823,-2.549831,-2.5504594,-2.6110113,-2.6600099,-2.6876612,-2.6886835,-2.6860657,-2.700636,-2.739479,-2.7884326,-2.8350887,-2.8671525,-2.85396,-2.8350444,-2.8325646,-2.836699,-2.8550982,-2.8535132,-2.8717866,-2.8533673,-2.8747792,-2.8953123,-2.9049256,-2.9397593,-2.8077154,-2.7996314,-2.7736173,-2.3250332,-2.0376034,-2.1930308,-2.2673988,-2.333138,-2.4127235,-2.4985976,-2.5471478,-2.237024,-2.2243383,-2.304059,-2.3928323,-1.6588596,-1.5161932,-1.7308528,-1.8543766,-1.832097,-0.663525,-0.59221137,-0.892398,-1.024676,-1.0308017,-1.2786788,-1.4576118,-1.5693903,-1.671672,-1.6859136,-1.7303071,-1.8399085,-1.2610052,-1.2778156,-1.4936837,-1.5889204,-1.699878,-1.5751827,-1.0372934,-1.0889859,-1.4487717,-1.6096973,-1.7200644,-1.7980328,-1.8460482,-1.9214101,-1.9766859,-2.0159886,-1.9972538,-2.016273,-2.0382895,-2.1120062,-2.1518235,-2.2128773,-1.8374016,-1.7361975,-1.8887,-1.9366753,-2.0141106,-2.093945,-2.0635693,-1.6406733,-1.423177,-1.6969167,-1.8310726,-1.600086,-1.4675484,-1.6695638,-1.7869637,-1.8637669,-1.9253178,-1.975976,-2.0357654,-1.9947643,-2.0381832,-2.097045,-2.1674492,-2.2122712,-2.237371,-2.2900348,-2.2984734,-2.313953,-2.3536735,-2.3820233,-2.3973489,-2.4542568,-1.2921283,-1.2588197,-1.2636485,-1.1173267,-1.007963,-1.334472,-1.4663466,-1.4857396,-1.4794652,-1.5670311,-1.5640329,-1.6114485,-1.646481,-1.7071723,-1.7531574,-1.7493621,-1.5352728,-1.6035045,-1.7041936,-1.7828143,-1.7993631,-1.7659843,-1.7912891,-1.8405895,-1.8501402,-1.8528831,-1.797302,-1.7514987,-1.616468,-1.7269166,-1.1099857,-0.88552845,-1.1815643,-1.2289605,-1.1256709,-1.0448332,-0.7396505,-0.7865103,-1.0957619,-1.2471434,-1.3117877,-1.3172522,-1.1835023,-1.2880247,-1.4146553,-1.0506623,-0.69661,-0.8212341,-1.1468174,-1.3474772,-1.4491959,-1.4461924,-1.4840746,-1.460193,-1.4494432,-1.4771111,-1.4448367,-1.4056718,-1.4964087,-1.5506176,-1.0983253,-1.0503517,-1.1894512,-1.1292312,-0.72220266,-0.28273958,-0.31466883,-0.7339661,-1.1405177,-1.2624447,-1.3291318,-1.3820353,-1.2560165,-0.3278646,-0.85570884,-1.1270206,-1.1199294,-1.1467274,-1.1948566,-1.268678,-1.2657231,-1.2922798,-1.3155354,-1.2747362,-1.1414349,-1.0836201,-1.01643,-1.1256247,-1.233614,-1.3097596,-1.3863375,-1.350599,-1.175388,-1.2193137,-1.4206502,-1.4845555,-1.5381278,-1.6078748,-1.6533794,-1.7027724,-1.7418568,-1.7865705,-1.2543329,-0.70226395,-1.0956353,-1.1492593,-1.226085,-1.319741,-1.4231393,-1.4516505,-1.4887766,-1.5736,-1.6173356,-1.6263528,-1.4974656,-1.5892193,-1.6586856,-1.7531978,-1.7673326,-1.7009469,-1.7130084,-1.8197179,-1.8867143,-1.9381428,-1.8938065,-1.96088,-2.005488,-2.0174966,-2.0869308,-2.11068,-2.0929646,-2.096379,-2.1255193,-2.157716,-2.1202426,-2.2311902,-2.2540965,-2.25074,-2.253305,-2.3267355,-2.4013996,-2.3459015,-2.313444,-2.3171444,-2.318842,-2.404558,-2.3611746,-2.2766528,-2.2521448
+-0.6670112,0.026022676,-0.3375083,-0.60156006,-0.7935904,-0.9613373,-1.1666772,-1.2074231,-0.65896255,-0.5325723,-0.7970917,-0.74461675,-0.5894568,-0.812877,-0.953029,-1.1073893,-1.265752,-1.3909069,-1.4295238,-1.1197706,-1.0120907,-1.1380875,-1.2722139,-1.3891426,-1.5203357,-1.6347257,-1.7072399,-1.8278,-1.8419176,-1.8924631,-1.9061481,-1.815187,-1.8328271,-1.8382723,-1.9297322,-1.9735162,-1.9986821,-2.0512261,-2.0420299,-2.1256938,-2.1385417,-2.1420102,-2.1479912,-2.1394684,-2.1691384,-2.1760156,-2.1964374,-1.1291187,-0.56887496,-0.882483,-1.0569088,-1.0858157,-1.0705761,-1.2240467,-1.422647,-1.5731086,-1.6579545,-1.800741,-1.8399172,-1.8534398,-1.1394448,0.24682854,0.39114904,0.11472827,-0.2386947,-0.47115594,-0.683786,-0.86146647,-1.04865,-1.2113479,-1.2342393,-1.2168697,0.33375174,0.09407817,-0.31609038,-0.53332245,-0.3083694,-0.35663107,-0.65832204,-0.8582325,-1.0296781,-1.1890645,-1.3095918,-1.4143947,-1.5044835,-1.5869017,-1.4109746,-0.5792673,-0.59447086,-0.8408817,-1.018905,-1.1920922,-1.3411574,-1.3714074,-1.5083451,-1.6723882,-1.6744312,-1.6080406,-1.3925107,-1.361532,-1.5031796,-1.6090376,-1.6940445,-1.7692049,-1.8249555,-1.4749249,-1.2741073,-1.3981366,-1.5348315,-1.6412942,-1.7172685,-1.7662898,-1.8140919,-1.860588,-1.9014928,-1.9410453,-1.6099724,-1.051763,-1.1333773,-1.3196478,-1.3866258,-1.512586,-1.6109017,-1.6906871,-1.7014663,-1.672749,-1.7544234,-1.8156946,-1.857291,-1.8883474,-1.6786569,-1.3067822,-1.3081194,-0.748676,-0.3165335,-0.56904113,-0.81177557,-1.0082531,-1.1575894,-1.2795345,-1.355144,-1.4226238,-1.4862063,-1.5472331,-1.53251,-0.7473391,0.22581236,0.32703015,0.06702395,-0.2560945,0.48416412,0.5449525,0.303377,0.8441557,0.5699951,0.1388738,-0.17897192,-0.38824737,-0.5396761,-0.63995206,-0.007664662,-0.018411364,0.0038941316,0.062514335,-0.259813,-0.4321215,-0.5692667,-0.710135,-0.81126565,-0.57616866,0.28969336,0.013091516,-0.32058245,-0.50862575,-0.65765977,-0.814052,-0.93871766,-0.96746534,-0.79051685,-0.4587245,-0.618856,-0.7802731,-0.89660686,-0.992368,-1.0853231,-1.1707947,-1.2251809,-1.3061655,-1.3955684,-1.4137821,-0.8446646,-0.290175,-0.5325903,-0.71890676,-0.8302246,-0.9349824,-1.0444266,-1.1035153,-1.1670377,-1.2364397,-1.3165759,-1.377414,-1.4137655,-1.5229083,-1.5605277,-1.569021,-1.5934359,-1.5939826,-1.5703025,-1.5812955,-1.6322682,-1.6415396,-1.6682881,-1.6946719,-1.7138824,-1.7006907,-0.38794094,0.037425492,0.14108968,0.9226775,0.42878845,0.18657729,0.08121699,-0.0039096996,-0.119904265,-0.16490565,-0.27367985,-0.33892292,-0.42376268,-0.503067,-0.5847119,-0.62703717,-0.744348,-0.79093826,-0.8065922,-0.84987444,-0.90829796,-0.98863125,-0.92858124,-0.46950555,-0.25832283,-0.45334625,-0.60869855,-0.71922517,-0.8090184,-0.80538404,0.1527961,0.53213084,0.07423878,-0.14114659,-0.13974752,-0.0070243645,-0.20226507,-0.19260941,-0.2844227,-0.37164357,-0.44391456,-0.49754947,-0.5284257,-0.5961132,-0.65493107,-0.7551143,-0.6982079,-0.6649634,-0.6900877,-0.70383906,-0.81611216,-0.8312644,-0.86750925,-0.92676044,-0.94968474,-0.9988399,-0.9699365,-1.0575484,-1.0862603,-1.0897142,-0.6058451,-0.5521557,-0.67347044,-0.7733078,-0.7899461,-0.5976367,-0.57990503,-0.6313753,-0.7387978,-0.8248532,-0.91312927,-0.91911376,-0.88313437,0.36961186,0.36601213,0.10411404,0.052587036,-0.14864643,-0.29995486,-0.42039663,-0.51689774,-0.66242164,-0.7113074,-0.7786434,-0.8511359,-0.7725989,-0.8147506,-0.84200597,-0.8961142,-0.9656757,-1.0339608,-1.0676868,-1.0722746,-1.0815177,-1.1056292,-1.167481,-1.2338341,-1.3210044,-1.3625313,-1.4197387,-1.4553058,-1.4423056,-1.1005846,-0.39096737,-0.6024962,-0.7522281,-0.8336061,-0.92925453,-1.0166146,-1.0640137,-1.1289532,-1.2433268,-1.321897,-1.4105035,-1.4781237,-1.5386007,-1.5489196,-1.6443981,-1.6973469,-1.7390201,-1.7728882,-1.8339702,-1.8281118,-1.8340477,-1.8518488,-1.9324067,-1.9183819,-1.89592,-1.9255624,-1.1434,-0.7990277,-0.94848746,-1.0812905,-1.1961505,-1.2765746,-1.3840032,-1.4648814,-1.5242745,-1.5860692,-1.6323023,-1.6919817,-1.7082143,-1.7371464,-1.8043342,-1.8382008,-1.888034,-1.6282122,-1.6340635,-1.701822
+-0.8087512,-0.58741313,-0.767861,-0.80800647,-0.7971809,-0.8220279,-0.9408075,-1.0790627,-1.0675052,-1.1742667,-1.2557504,-1.2439259,-1.1418202,-1.1925064,-1.203646,-1.2576928,-1.2228055,-0.9217973,-0.7280549,-0.6508829,-0.73708487,-0.8600526,-0.8958986,-0.80781746,-0.9559305,-1.1013303,-1.2419981,-1.3426352,-1.447792,-1.5511429,-1.5256202,-1.6012306,-1.6389588,-1.7001843,-1.7481099,-1.7893844,-1.87535,-1.935637,-1.9395645,-1.9742639,-1.9591166,-2.0129676,-2.0425677,-2.0744202,-2.063526,-1.4422237,-0.92444515,-0.75006753,0.54724795,0.13469283,-0.17285192,-0.33784565,-0.43979633,-0.4483103,-0.6411526,-0.5966309,-0.7119168,-0.90559906,-1.0035849,-1.1295698,-0.9133718,-0.35045862,0.90947616,0.49972713,0.1415447,-0.059023436,-0.23353739,-0.38834646,-0.5062466,-0.6457791,-0.78492975,-0.0062751696,0.27510428,-0.09238228,-0.3246665,-0.49346206,0.010831207,0.03902616,-0.3204114,-0.54872763,-0.6327701,-0.80239415,-0.94445044,-1.0624677,-1.1658176,-1.2828348,-1.0716956,-0.08742823,-0.15859379,-0.43808413,-0.635016,-0.78573674,-0.6726026,-0.2204859,-0.49323267,-0.764542,-0.9758755,-0.7862442,-0.4684236,-0.638656,-0.8401902,-1.0093685,-1.000888,-1.1357334,-1.3009346,-1.4433928,-1.5536032,-1.6455368,-1.7188373,-1.7806005,-1.8369945,-1.873657,-1.907119,-1.9484205,-1.9885787,-2.0403357,-1.7567961,-0.7828803,-0.8321053,-1.0086752,-1.1679289,-1.3017111,-1.423233,-1.4670538,-1.36811,-1.4607123,-1.571169,-1.6716187,-1.7535568,-1.8104,-1.877745,-1.4626318,-1.0028366,-1.0748236,-0.26865202,-0.036679767,-0.33488435,-0.5431092,-0.6794893,-0.40040344,-0.16035141,-0.28115195,-0.5402777,-0.6661236,-0.41041762,-0.36442506,-0.28843665,0.4812441,0.50922114,0.17880869,0.52615964,0.5504137,0.5559393,0.3808005,0.0069157965,-0.15927042,-0.3513134,-0.50511485,-0.64936864,-0.7851434,-0.8919592,-0.96483815,-0.5341617,-0.063437656,0.094800994,0.23786978,-0.035758108,-0.2716022,-0.45701873,-0.56525,-0.66606164,-0.7967547,-0.90483755,-0.9974972,-1.0888292,-1.167855,-1.228221,-0.39212024,0.57003295,0.6764582,0.161626,-0.06736247,-0.20058978,-0.29283732,-0.4156999,-0.50392944,-0.38456598,-0.2967035,-0.46422184,-0.6061412,-0.42252246,-0.1995219,-0.36380702,-0.4808912,-0.5712061,-0.67034125,-0.783191,-0.84629714,-0.8994525,-0.9519184,-1.0019319,-1.0517727,-1.156448,-1.1546122,-1.2048613,-1.2352765,-1.2679625,-1.3251475,-1.3002855,-1.3092325,-1.3204131,-1.3281121,-1.3413981,-1.3536773,-1.3709545,-1.4068196,-1.4268245,-1.3846984,-1.3479875,-0.073125094,0.3966316,0.03195369,-0.003654223,0.11688386,-0.008540757,-0.13013144,-0.20488785,-0.2685858,-0.3446318,-0.40275618,-0.4556654,-0.5345781,-0.49993548,-0.55798185,-0.6169822,-0.6807537,-0.7162608,-0.7581459,-0.7458534,-0.5354301,-0.5491314,-0.6150212,-0.70710737,-0.72646403,-0.73447025,-0.76136696,-0.54795015,0.037268218,0.52184427,0.15321086,-0.029651338,-0.14423682,-0.18013231,-0.12458348,-0.17449306,-0.25542483,-0.33526495,-0.38321656,-0.37117407,-0.40952143,-0.49022493,-0.47343957,-0.50304425,-0.49956316,-0.59278953,-0.6455238,-0.68454534,-0.69725716,-0.6600268,-0.6846449,-0.75864553,-0.812926,-0.88063043,-0.8118971,-0.608917,-0.5217477,-0.06124572,-0.1735725,-0.34457013,-0.44019753,-0.41003022,-0.33023828,-0.29980463,-0.35611784,-0.45057702,-0.5088302,-0.556121,-0.5782515,-0.58488995,0.38007417,0.63447833,0.53164923,0.39146116,0.15280823,0.037271176,-0.06580702,-0.19946046,-0.25212163,-0.30655453,-0.3601693,-0.35782847,-0.363684,-0.38920614,-0.40718332,-0.45424417,-0.5098568,-0.5746106,-0.60320103,-0.6087773,-0.6415455,-0.68065274,-0.7271391,-0.78340244,-0.82733,-0.8600509,-0.919577,-0.9857149,-1.0029242,-1.0571959,-0.07270749,0.1506577,-0.082594275,-0.15776865,-0.24037041,-0.2685616,-0.14385013,-0.32672447,-0.42046916,-0.52974707,-0.6189362,-0.642068,-0.7557306,-0.831802,-0.92498785,-0.9494089,-0.96337795,-1.0156085,-1.0706729,-1.0616038,-1.1265286,-1.1567802,-1.1687906,-1.2212961,-1.2262139,-1.2405747,-1.2213248,-1.2298815,-1.219195,-1.2216346,-1.2541529,-1.3120332,-1.3140912,-1.354284,-1.3903797,-1.4399073,-1.4741659,-1.5170664,-1.5299997,-1.586415,-1.6137766,-1.654888,-1.6717782,-1.3563749,-1.032427,-1.0750215
+-1.4332905,-1.4493713,-1.5352867,-1.6133106,-1.6374202,-1.7199328,-1.8285539,-1.9171661,-1.9000441,-1.9998841,-2.04997,-2.0723581,-1.9982941,-2.0603142,-2.054309,-2.1020536,-2.0944114,-2.0250266,-1.9030651,-1.8783712,-1.9295098,-1.9451866,-1.9582217,-1.8807406,-1.9387063,-2.0322933,-2.1148,-2.167447,-2.209626,-2.2482479,-2.253487,-2.2477283,-2.2733297,-2.2787871,-2.28299,-2.2740543,-2.2892766,-2.3125618,-2.3264613,-2.368092,-2.349231,-2.362309,-2.3589377,-2.175183,-1.4949019,-0.9955451,-0.7996949,-0.47795698,0.12773834,-0.19565439,-0.48272213,-0.67803293,-0.82564235,-0.9839748,-1.2172999,-1.141731,-0.7680135,-1.0006465,-1.1290517,-0.9916107,-0.13919756,-0.077773616,0.013966467,-0.076702654,-0.41499478,-0.62158704,-0.78165096,-0.9274759,-1.0422963,-1.1641008,-1.2902619,-0.48880562,-0.19583987,-0.52748793,-0.68731046,-0.804688,-0.80691874,-0.88926214,-1.0285357,-1.016969,-0.70461464,-0.87708247,-1.0342984,-1.1519468,-1.262713,-1.283026,-0.19269593,0.3852018,0.18137276,-0.11949344,-0.3069474,-0.4905631,-0.5303705,-0.49351013,-0.6302463,-0.80689144,-0.9646841,-1.1035349,-1.2433811,-1.2069256,-1.1255476,-1.2300025,-1.3475397,-1.4399772,-1.5654507,-1.4986715,-1.5235426,-1.6163421,-1.6944267,-1.7656369,-1.829159,-1.8756576,-1.9114407,-1.9538412,-1.9847071,-2.0245776,-2.090748,-1.3329582,-1.0776227,-1.1925589,-1.3200343,-1.4160643,-1.5113373,-1.5981102,-1.6857307,-1.734544,-1.8018742,-1.8609749,-1.912884,-1.9541044,-1.2111769,-0.251672,-0.022546962,-0.16986333,0.37372723,0.49683368,0.21413961,-0.13521063,-0.13452303,0.40546533,1.005014,0.7770319,0.22040035,0.57382077,0.5780714,0.30067617,0.52467304,0.8229124,0.97174144,0.82356215,0.846751,0.7099547,0.36992288,0.15943603,0.15090507,0.5899694,0.53972983,0.20376065,-0.018918384,-0.092810534,-0.23263033,-0.27772456,0.013003092,0.18856229,0.0076541416,0.518694,0.21356623,-0.048048828,-0.21642879,-0.30648285,-0.36324877,-0.5149641,-0.6364903,-0.75186515,-0.86033756,-0.94772273,-0.97727805,0.11666222,0.6731364,0.6682875,0.2180243,-0.038355824,-0.21077801,-0.25707448,-0.34350097,-0.45936868,-0.3939362,-0.3185052,-0.4715531,-0.57466805,-0.60902166,-0.7229322,-0.8166237,-0.8987913,-0.9599199,-1.0151545,-1.0747527,-1.1250341,-1.1665522,-1.2140038,-1.2464032,-1.273554,-1.3314798,-1.3731959,-1.4325969,-1.4634058,-1.4762211,-1.475211,-1.2690613,-1.1441038,-1.2112329,-1.2651616,-1.3034345,-1.3533051,-1.3921921,-1.4025972,-1.4256864,-1.2038088,-0.946984,-0.92292994,-0.78772306,-0.71590054,-0.5610922,-0.3714825,-0.29061604,-0.3189324,-0.45795184,-0.58256125,-0.66739976,-0.7514168,-0.83071303,-0.8935943,-0.92973983,-0.99053615,-1.0524174,-1.1026955,-1.1296656,-1.1755874,-1.1719754,-1.1589391,-1.1677974,-1.1854858,-1.2523626,-1.298498,-1.3156941,-1.3345321,-1.275288,-0.18069813,0.7697263,0.25210476,0.018950954,-0.12659615,-0.19350865,-0.21571983,-0.3042308,-0.37649092,-0.48578334,-0.5600969,-0.6007637,-0.6501741,-0.73676753,-0.7611599,-0.7607802,-0.7779056,-0.85735464,-0.90596163,-0.9567343,-0.8488008,-0.6410605,-0.7380932,-0.83488655,-0.9111935,-0.95572245,-0.87606686,-0.72949654,-0.8008484,-0.8853668,-0.98673284,-1.0441506,-1.1145048,-1.1059728,-1.0979366,-1.0483812,-1.0763106,-1.1392511,-1.1839088,-1.2064018,-1.2111783,-1.1862513,-0.9515964,-0.5475563,-0.7282193,-0.78492343,-0.864066,-0.96394575,-1.0747325,-1.1143401,-1.2328146,-1.3139224,-1.3259267,-1.3724338,-1.3726046,-1.3904992,-1.4160717,-1.4149865,-1.4550247,-1.5059352,-1.5136187,-1.5156195,-1.5149649,-1.5273706,-1.5480781,-1.5910788,-1.6462665,-1.6441721,-1.688065,-1.7147228,-1.666988,-1.697401,-0.8837724,-0.35833284,-0.5637566,-0.6777272,-0.766846,-0.78143644,-0.17960528,-0.41155928,-0.6221589,-0.7396038,-0.86795336,-0.97076356,-1.0630589,-1.1575754,-1.2441704,-1.3076571,-1.3484073,-1.4113569,-1.4002506,-1.2475861,-1.3248882,-1.3578851,-1.4042155,-1.4818714,-1.5030422,-1.5530484,-1.5868964,-1.6286836,-1.6460086,-1.6784639,-1.6997619,-1.7324277,-1.738343,-1.7664574,-1.7983005,-1.8290119,-1.83868,-1.8506165,-1.91506,-1.9741604,-2.0053024,-2.0440145,-2.0624976,-2.0947948,-2.140719,-2.1690278
+-1.646625,-1.6300035,-1.6380992,-1.6551089,-1.6506333,-1.6831102,-1.7599871,-1.8306937,-1.6577536,-1.6653819,-1.6861323,-1.6979179,-1.5526009,-1.6033837,-1.6388589,-1.6595035,-1.6986811,-1.6739454,-1.6350005,-1.3566215,-0.99539024,-0.95891994,-0.26287726,0.09824492,-0.35095087,-0.5900275,-0.77531064,-0.84938157,-0.98557603,-1.0705876,-1.1168544,-1.2123083,-1.2721838,-1.3273529,-1.3969829,-1.4621077,-1.5060576,-1.4524978,-1.3871095,-1.4849603,-1.5380692,-1.5826781,-1.615688,-1.2815534,0.012455214,0.33656278,0.029956955,-0.15325266,-0.27331415,-0.4380789,-0.5596738,-0.6856688,-0.6026376,0.15800108,-0.14632764,-0.23216431,-0.36518344,-0.5857237,-0.6921606,-0.5384172,0.16983084,0.030717913,0.39180148,0.00033210218,-0.2447019,-0.41652,-0.55017096,-0.6836118,-0.7853392,-0.88588226,-0.9163201,-0.60066146,-0.44849524,-0.5931892,-0.67055863,-0.68318117,-0.6075847,-0.58565724,-0.71908987,-0.85949874,-0.75799024,-0.74617594,-0.8692198,-0.9725012,-1.0572634,-1.1224836,-0.68235874,0.11916049,0.16493924,0.017784562,-0.14466235,-0.24558952,-0.3169213,-0.48357916,-0.53821737,-0.63360816,-0.78069645,-0.8910246,-0.98484206,-0.8811264,-0.7450608,-0.84588873,-0.9617845,-1.0652363,-1.1458015,-1.1288327,-1.1416178,-1.227548,-1.3000041,-1.346206,-1.4222727,-1.4879003,-1.548816,-1.5940645,-1.6305208,-1.6715536,-1.5408541,-1.3973315,-1.3457457,-0.8682889,-0.42556286,-0.65277207,-0.81018007,-0.92795694,-1.027542,-1.1194044,-1.1981359,-1.273072,-1.3440188,-1.3861735,-1.1947976,-0.7150051,-0.10463451,0.12735353,0.07444623,0.7253741,0.6467675,0.25884736,-0.04816611,0.25915533,0.82074714,0.6208528,0.28890017,0.76694775,0.6541714,0.5220666,0.794965,0.70176864,0.73609483,0.81423205,0.8322973,0.65839756,0.3815398,0.3426923,0.3908987,0.6142629,0.68860984,0.23951913,0.19983767,0.13712554,-0.046364058,-0.11476329,0.043413807,0.8527132,0.42154428,0.54963297,0.24783601,0.050359998,-0.07059419,-0.17401564,-0.2722672,-0.37426427,-0.45543787,-0.54105294,-0.611287,-0.6679262,-0.65732825,0.5682863,1.1520574,0.8346615,0.5444281,0.3423527,0.16436286,0.56728333,0.4172023,0.15182362,0.13652605,0.0031130873,-0.12054874,-0.051959004,0.051507514,-0.15638626,-0.25765356,-0.3430062,-0.4127518,-0.48622307,-0.5474778,-0.606317,-0.6650542,-0.71147406,-0.7590735,-0.8066453,-0.8644004,-0.75606954,-0.7620326,-0.7827933,-0.85676277,-0.9169791,-0.85293776,-0.8561572,-0.91035426,-0.9497188,-0.9855609,-1.0245627,-1.0615383,-1.0600424,-0.9088342,0.30490208,0.26956576,0.10209496,-0.03588016,-0.0689438,-0.1351535,0.08515839,0.25617883,0.1374845,-0.027250808,-0.19337027,-0.29760107,-0.3558721,-0.41702032,-0.5116746,-0.56961274,-0.60865474,-0.6816561,-0.72719455,-0.7929972,-0.81155574,-0.8431528,-0.81276596,-0.8045016,-0.83034027,-0.88391984,-0.926273,-0.9297651,-0.93510973,-0.13950069,0.8202965,0.6905446,0.23790543,0.08685237,-0.034378108,-0.074428275,-0.12947044,-0.21811906,-0.29862893,-0.35808825,-0.41068602,-0.45861357,-0.5183851,-0.5672457,-0.6304542,-0.6235094,-0.63269055,-0.70118713,-0.7421649,-0.75807303,-0.6729492,-0.544491,-0.66942835,-0.7359745,-0.77706575,-0.833053,-0.7292823,-0.70359653,-0.7332078,-0.830789,-0.87318504,-0.89790726,-0.94527876,-0.96327376,-0.9706898,-0.939936,-0.94755363,-0.98664695,-1.0104107,-1.0367265,-1.0504811,-1.031399,-1.0309058,-0.9505892,-0.9670321,-1.0214591,-1.0633037,-1.0863532,-1.1253868,-1.1407851,-1.1578561,-1.2002683,-1.2286389,-1.2623696,-1.241304,-1.255985,-1.2878449,-1.2523863,-1.2488992,-1.2566278,-1.2810986,-1.274752,-1.298208,-1.3370973,-1.3411286,-1.3739662,-1.3671124,-1.3802632,-1.4125614,-1.4532515,-1.4563574,-1.2497821,-0.8057337,-0.88078654,-0.6076182,-0.30892697,-0.54840577,-0.6918773,-0.103424355,-0.36725223,-0.549754,-0.6513309,-0.7758943,-0.838906,-0.865971,-0.96345747,-1.0105203,-1.0791179,-1.1191267,-1.1572716,-0.633423,-0.1651233,-0.42303818,-0.5841769,-0.6349673,-0.7292733,-0.8031819,-0.85360587,-0.92930657,-0.96610576,-1.0067204,-1.0634098,-1.0879507,-1.1510476,-1.1819482,-1.2256551,-1.2627606,-1.3028831,-1.3237517,-1.3419619,-1.3801167,-1.4580469,-1.4528052,-1.5088634,-1.4810741,-1.5714693,-1.5986993,-1.6503174
+-1.6380327,-1.565981,-1.5725756,-1.6225204,-1.6462834,-1.691897,-1.7804983,-1.8725731,-1.6065925,-1.6122862,-1.6129177,-1.6826731,-1.723665,-1.7881007,-1.8245782,-1.845466,-1.8894335,-1.91737,-1.9912051,-1.8735476,-1.5476046,-1.6230365,-1.3319252,-0.10755201,-0.2974044,-0.5464691,-0.7156726,-0.83094627,-0.9532089,-1.0477265,-1.1400609,-1.2508141,-1.3651896,-1.4401,-1.5051422,-1.5735872,-1.636234,-1.6754954,-1.3159107,-1.2987742,-1.366192,-1.4888121,-1.6082947,-0.9426647,0.28678262,0.52671456,0.114068195,-0.1856227,-0.3407144,-0.50217277,-0.62864053,-0.7475827,-0.84384084,-0.9285641,-1.0448394,-1.1274008,-1.2114941,-1.2997384,-1.4057305,-1.468617,-1.3570447,-1.1633375,-0.8142706,-0.8729962,-1.0055441,-1.1174095,-1.2116156,-1.2973491,-1.3742244,-1.4676421,-1.5145472,-1.5163655,-1.5650139,-1.6343838,-1.697954,-1.7752993,-1.7879266,-1.6834241,-1.6732085,-1.7530278,-1.8397217,-1.915869,-1.9573764,-1.9818906,-2.0194385,-2.058255,-2.103835,-1.750063,-1.2183582,-1.3192074,-1.4132437,-1.4977204,-1.4878565,-1.4062848,-1.4825448,-1.5769519,-1.6685915,-1.7395909,-1.8016031,-1.4346974,-0.7524808,-0.7685022,-0.9272169,-1.0792731,-1.1980813,-1.3035502,-1.4108012,-1.5160927,-1.6082506,-1.670609,-1.7463366,-1.8102279,-1.8682411,-1.9115925,-1.9481626,-1.9825829,-2.0251703,-1.8035412,-1.7313443,-1.3714528,-1.0162151,-1.102912,-1.2227578,-1.3252053,-1.4209032,-1.5080314,-1.5875952,-1.6662787,-1.7437813,-1.7630287,-1.7789123,-1.7685847,-1.4246321,-0.1108416,-0.020143714,-0.072276235,0.3059019,0.2784909,-0.060810316,-0.15857507,-0.080007225,0.051235545,0.3563698,0.36149925,0.08934574,-0.041944917,-0.0015218332,0.3722158,0.043781694,-0.023325201,0.32739192,0.2715417,0.0630665,-0.11627686,0.094205245,-0.13357933,-0.31640494,-0.44024304,-0.31355196,-0.2699637,-0.44262308,-0.56042475,-0.5270517,-0.08909628,-0.34157014,-0.13662884,-0.23160142,-0.42468768,-0.5403631,-0.6431572,-0.734952,-0.8259405,-0.91790366,-1.0050105,-1.0840588,-1.1480875,-0.78241295,0.23245616,0.8007499,0.7300441,0.40617406,0.22360353,0.08233629,0.365411,0.31419945,-0.013087731,-0.13839237,-0.24625522,-0.3409378,-0.4252775,-0.4444967,-0.5374109,-0.61840254,-0.6854274,-0.74745667,-0.81202394,-0.8672706,-0.9196315,-0.9704342,-1.0069964,-1.044297,-1.0897954,-1.0914097,-0.6477277,-0.7329503,-0.72132933,-0.82943857,-0.9189291,-0.98801357,-1.0426905,-1.0882192,-1.1211892,-1.1572986,-1.1913459,-1.2259612,-1.2516094,-1.2874391,-0.8004,-0.5528786,-0.56591505,-0.6633264,-0.6185103,-0.47470582,-0.45495033,-0.009827308,-0.21950616,-0.40932587,-0.5036309,-0.5813204,-0.63997996,-0.69626415,-0.75498027,-0.8083514,-0.86029446,-0.91295993,-0.95170194,-0.99184537,-1.0504556,-1.0965066,-1.1245117,-1.1408617,-1.1407304,-1.1363955,-1.1788216,-1.2057042,-1.2488954,-0.8834294,0.48673284,0.6958128,0.16024958,-0.08150394,-0.21329479,-0.28622818,-0.3627199,-0.4234282,-0.48789623,-0.54143196,-0.61148536,-0.6722532,-0.70782775,-0.7384594,-0.79310906,-0.8503174,-0.8213327,-0.86346924,-0.9255481,-0.9581965,-0.9905052,-0.99637806,-1.0350413,-1.0653505,-1.100701,-1.1208211,-1.1155344,-1.139771,-1.1077626,-1.1492872,-1.1779118,-1.1975178,-1.2106972,-1.2356782,-1.2708201,-1.229426,-1.1862648,-1.2137957,-1.2276351,-1.2399012,-1.2805719,-1.318449,-1.3220845,-1.3394899,-1.3300611,-1.3570119,-1.3543236,-1.3553352,-1.354267,-1.3753085,-1.3916454,-1.4037395,-1.423377,-1.4792693,-1.4922166,-1.4962856,-1.4700806,-1.4639705,-1.4526359,-1.4455382,-1.490715,-1.5141246,-1.5539341,-1.5658805,-1.5631781,-1.5612831,-1.5607796,-1.5785208,-1.585727,-1.6123341,-1.6142004,-1.635252,-1.6553836,-1.6822982,-1.58046,-1.1757126,-1.1814327,-1.2120255,-1.1549057,-1.2692937,-1.309443,-1.3339233,-1.3752006,-1.4240985,-1.4304873,-1.4863365,-1.4932525,-1.5358196,-1.5867612,-1.6419586,-1.1293905,-0.7527463,-0.8748815,-0.9732122,-1.0458672,-1.0662963,-1.0547588,-1.1230738,-1.1902988,-1.215766,-1.279208,-1.3252409,-1.3529654,-1.410238,-1.4472604,-1.4951806,-1.5356817,-1.5656685,-1.5837644,-1.6224768,-1.6454281,-1.7024364,-1.6949403,-1.7376755,-1.7218571,-1.7871294,-1.8181826,-1.828273
+-1.2957603,-1.1867123,-1.1997198,-1.2413121,-1.2838908,-1.338182,-1.3944099,-1.4871708,-1.5058708,-1.5544882,-1.6110592,-1.6307392,-1.6517086,-1.6832111,-1.7137284,-1.7716938,-1.7980167,-1.796558,-1.8044932,-1.8277845,-1.770113,-1.2699509,-0.76319146,-0.74863875,-0.85022795,-0.9627843,-1.0862143,-1.1760037,-1.2947072,-1.357321,-1.4198639,-1.4634076,-1.5299501,-1.5971911,-1.6328114,-1.6635954,-1.6935046,-1.7153347,-1.6940007,-1.639291,-1.6759498,-1.7292738,-1.8008003,-0.34386712,0.35326827,0.60158974,0.128694,-0.10969798,-0.27356172,-0.4336383,-0.55462694,-0.6660235,-0.7756212,-0.89518344,-0.97893393,-1.0769641,-1.1415166,-1.2114973,-1.2770109,-1.3581548,-1.4195602,-1.4339923,-0.6147982,-0.51564735,-0.62983394,-0.7820616,-0.9089374,-1.0057476,-1.0881143,-1.1763434,-1.2699443,-1.0797598,-0.9546441,-1.052054,-1.1651605,-1.2679458,-1.3488493,-1.3900638,-1.3442123,-1.4117707,-1.4835843,-1.5524105,-1.5536201,-1.5878005,-1.6388452,-1.68154,-1.7019513,-1.6422256,-1.6984596,-1.7182181,-1.7825325,-1.4219245,-0.059623513,0.41061717,0.013592202,-0.18768859,-0.33230326,-0.47825712,-0.61883354,-0.7500833,0.08986111,0.30092195,-0.05945911,-0.24034175,-0.3831771,-0.52257717,-0.6453327,-0.7583138,-0.8689061,-0.9701403,-1.0585299,-1.132044,-1.210906,-1.2519274,-1.2462049,-1.3229927,-1.399774,-1.421938,-0.50660115,0.44539714,0.6671851,0.7695899,0.27629325,0.017372932,-0.16346641,-0.3085921,-0.42806795,-0.530851,-0.61362994,-0.47193983,-0.42717957,-0.3520996,0.41532815,0.95803994,0.44220924,0.571192,0.9264267,1.0635409,0.9254589,0.6494708,0.6531446,0.62579757,0.69419396,0.88123596,0.57728434,0.28840375,0.23244588,0.86667585,0.92036724,0.7282068,0.46771634,0.45501074,0.4305193,0.1341226,0.06820746,-0.08175774,-0.2105381,-0.30840027,0.09306224,0.2582669,-0.049941104,-0.21266842,-0.3244314,-0.39974394,-0.4794208,-0.5561904,-0.5907388,-0.57816005,-0.65980184,-0.7312235,-0.79194033,-0.8545135,-0.90598625,-0.9485698,-0.98970944,-1.028424,-0.4393096,0.004345786,0.5493128,0.7263239,0.51157516,0.18473732,0.1902916,0.4234699,0.3770076,0.076720476,-0.055998113,-0.18979801,-0.24880053,-0.26383224,-0.38732818,-0.46242535,-0.53146994,-0.5913882,-0.64812666,-0.7012614,-0.7506559,-0.7981322,-0.83997524,-0.8681744,-0.900473,-0.9364007,-0.7725981,-0.6268437,-0.70231557,-0.7612567,-0.8230017,-0.89025617,-0.9408609,-0.9801399,-1.0138038,-1.0394652,-1.0629315,-1.0868584,-1.1095376,-1.1295877,-1.1657603,-1.1936808,-1.2109699,-1.1950212,-1.1395729,-1.0617849,-0.97204953,-0.6818607,-0.49325484,-0.5357933,-0.38194925,-0.38412547,-0.5074716,-0.5864991,-0.6537698,-0.7150756,-0.7710382,-0.8248031,-0.8518744,-0.88793063,-0.9057946,-0.9413644,-0.97426456,-0.9963287,-1.0099263,-1.0234805,-1.0303953,-1.0259337,-1.050585,-1.088699,-1.0238836,-0.23366868,0.01890656,-0.20943162,-0.3215905,-0.42012507,-0.50053203,-0.54912525,-0.53318274,-0.5571944,-0.60646105,-0.64795095,-0.681654,-0.71795034,-0.7628148,-0.7757066,-0.81117284,-0.8298979,-0.8518075,-0.88066673,-0.89784276,-0.9186493,-0.92426914,-0.94108623,-0.9727656,-0.99829066,-1.0159525,-1.0345643,-1.0795485,-1.036933,-1.0452319,-1.0616621,-1.0726845,-1.0848644,-1.1000584,-1.1236402,-1.1442797,-1.1189743,-1.1260891,-1.1309752,-1.1407346,-1.160174,-1.196734,-1.212391,-1.2242067,-1.2457902,-1.2592514,-1.2627633,-1.2804961,-1.2938101,-1.2958412,-1.3153102,-1.3222361,-1.3345876,-1.3474851,-1.3755028,-1.3925245,-1.3779528,-1.378087,-1.3849607,-1.3720533,-1.3982067,-1.4170343,-1.4414309,-1.4531549,-1.4515756,-1.4566402,-1.4561712,-1.4668025,-1.478284,-1.4917523,-1.4953681,-1.508701,-1.538017,-1.5388305,-1.5278226,-1.4074286,-1.3498774,-1.3745362,-1.4101706,-1.4665036,-1.4814777,-1.488445,-1.5059862,-1.5256227,-1.5289102,-1.5620052,-1.5599775,-1.571223,-1.5938983,-1.6318202,-1.4319392,-1.1980268,-1.2569959,-1.3048934,-1.3805624,-0.87358314,-0.36613032,-0.48313314,-0.4789647,-0.5122092,-0.63228613,-0.7392632,-0.82452035,-0.89509857,-0.96452194,-1.0368757,-1.0999007,-1.1379629,-1.1683338,-1.2113385,-1.2625582,-1.3107847,-1.3432887,-1.3776593,-1.407716,-1.4738075,-1.4998479,-1.5249016
+0.5180313,0.14077117,0.3040431,0.43680054,0.50178754,0.71339214,0.8386704,0.81192803,0.76178306,0.8523068,0.8019425,0.72112566,0.6907895,0.1703246,0.7289218,0.7675746,0.5242792,0.3615455,0.15232374,-0.032356266,-0.16751224,-0.24706817,-0.2840398,-0.36296815,-0.3591618,-0.35702765,-0.41259068,-0.4913641,-0.5057227,-0.529259,-0.58650583,-0.67779016,-0.7575845,-0.7767524,-0.8304157,-0.9743339,-1.0432973,-1.0612793,-1.0335974,-0.9242167,-0.4563645,-0.30989307,-0.49136412,-0.5870205,-0.69514954,-0.74045694,-0.7708351,-0.7530954,-0.82824856,-0.86228085,-0.9000428,-0.7440601,-0.55807126,-0.7160567,-0.3530501,1.2113705,1.3157699,0.82969373,0.70540935,0.38813952,1.1395848,0.8716911,0.376101,0.5848982,0.42823398,0.18822032,0.08166489,-0.046880025,-0.12123425,-0.06855853,0.1531245,-0.02008932,0.874135,0.594709,0.3611688,0.32219732,0.11084215,-0.034730937,-0.20471935,0.6981491,0.5022894,0.18890187,0.8097708,0.6468979,0.30199718,0.80515563,0.6407273,0.39741254,0.2095433,0.040433425,-0.07803276,-0.19106907,-0.21751387,0.20052464,0.6359082,0.42103875,0.18879642,0.5895374,0.46452117,0.35805684,0.30533087,0.45688722,0.5321439,0.6501635,0.43186712,0.1823279,0.05044705,-0.051318374,-0.135562,-0.22840999,-0.13593265,-0.14433998,-0.28815982,0.5441655,0.63233,0.32716134,0.14101863,-0.0084954165,-0.11995441,-0.21416059,-0.2880618,-0.34446946,0.12599471,0.030296434,-0.20812173,-0.08985841,-0.21689324,-0.37796062,-0.44201246,-0.29675952,-0.23909621,-0.3015831,-0.28738168,-0.4028687,-0.44625592,-0.5360399,-0.36736518,-0.24939318,-0.40987283,-0.18416499,-0.27520993,-0.35577703,-0.4676873,-0.5591763,-0.60884327,-0.42223775,-0.28501844,-0.46336395,-0.56698817,-0.6424489,-0.58146477,-0.69303703,-0.76433027,-0.8256532,-0.8926053,-0.9333029,-0.92853,-0.8417098,-0.4213604,-0.13172184,0.29846153,0.16135308,-0.16710511,-0.33727938,-0.40783435,-0.4618837,-0.51454014,-0.56355125,-0.5848637,-0.6073992,-0.5805303,-0.6003869,-0.70966053,-0.73593384,-0.77839386,-0.37556666,0.5753112,0.75230885,0.13940327,-0.10143909,-0.23986192,-0.33007643,-0.380809,-0.3966332,-0.3500055,0.23633169,1.0315466,0.70459336,0.57646906,0.40997475,0.27056837,0.17871986,0.21116465,0.18593447,0.029339593,-0.044879925,0.03499778,-0.12706405,0.1251802,0.23510961,0.014081854,-0.10400665,-0.17217664,-0.05756353,0.107300416,0.736671,0.4515603,0.3122645,0.511801,0.30893952,0.14993432,0.043568645,-0.03210834,0.573848,0.75336266,0.4307806,0.29406604,0.18051739,0.0858451,0.040578607,-0.0628365,-0.10504863,-0.10035625,-0.182624,-0.22530122,-0.17816024,-0.19768755,-0.21618542,-0.16148512,-0.07230201,-0.15644425,-0.18838178,-0.04401229,0.17543374,0.25377542,0.27031088,0.28139526,0.31680417,0.29368454,0.31679615,0.32484263,0.45398396,0.6813899,0.63583624,0.5139648,0.5293622,0.53383887,0.5329063,0.5002209,0.71781623,0.73242235,0.6828352,0.6881839,0.68316734,0.6299894,0.6410792,0.6571814,0.7282508,0.6488157,0.6243267,0.631904,0.62192684,0.62336093,0.632953,0.6360036,0.6377422,0.63638014,0.61686426,0.5550502,0.8561822,0.7771772,0.7782389,0.8203956,0.7729917,0.7597667,0.77592874,0.7822892,0.800967,0.7741597,0.7681632,0.7716068,0.79584885,0.7651477,0.71071905,0.7309865,0.7476482,0.78251565,0.76242,0.7412778,0.7568586,0.76840985,0.8025727,0.8104604,0.83006585,0.82758975,0.839369,0.83133924,0.84869367,0.87366176,0.8484677,0.83747333,0.872864,0.87738365,0.85240126,0.9663453,0.9750984,0.9706217,0.96429634,0.921832,0.89559513,0.8868778,0.82981277,0.8330698,0.87601197,0.85691273,0.86411536,0.86169857,0.9139015,0.9443364,0.97357297,0.9666593,0.96611595,1.0119889,1.0377307,1.0550663,1.0573406,1.0324805,1.0715,1.0888338,1.0285189,1.0068989,0.9476971,0.9531928,0.936195,0.9709233,0.9837234,0.9296579,0.9317192,0.9924586,1.1104748,1.2331576,1.2477834,1.1717753,1.1326838,1.0555445,0.991122,0.9967449,0.9916215,0.99910116,1.0176913,1.1932986,1.1017873,1.19226,1.2617741,1.2385303,1.0534825,1.1022514,1.1671808,1.1506255,1.293246,1.3916936,1.403971,1.3800576,1.5221581,1.7956331
+0.68813366,0.33022708,0.07849048,-0.25767606,-0.34603283,-0.080413654,-0.19730707,-0.44979918,-0.555192,-0.56012344,-0.72725016,-0.631083,-0.6527933,-0.7224768,-0.046223182,0.9461009,0.6463735,0.46895278,0.4351014,0.13508455,-0.047763493,-0.209993,-0.32018358,0.3896497,0.9597337,0.5528854,0.29504383,0.052636143,-0.10142389,-0.21351625,-0.36578867,-0.5351534,-0.6349322,-0.73255646,-0.80328,-0.9091498,-1.0026214,-1.0319988,-1.0380875,-0.8805651,-0.47000277,-0.57960546,-0.7793892,-0.85591125,-0.9606427,-0.9992857,-1.0426981,-1.0451347,-1.1004274,-1.1262655,-1.1365765,-1.1212937,-0.9188567,-0.82980615,-0.48335826,0.52301437,0.44001517,0.058718678,-0.08138898,-0.12639536,0.81304514,0.48080176,0.041574072,0.09291004,-0.07142688,-0.24498616,-0.3449311,-0.4304053,-0.5142903,-0.5898981,0.48316258,0.5794247,0.7105707,0.29928276,0.11996736,0.034137268,-0.14553119,-0.100251496,-0.30257687,0.021231782,-0.07077768,-0.27571857,0.30769688,0.2803347,-0.0383493,0.095758125,-0.06834295,-0.22602645,-0.34526834,-0.45746505,-0.5271832,-0.6208556,0.047652993,0.025942877,-0.19914483,-0.031231418,-0.10597195,-0.12432329,-0.29761016,-0.44088587,-0.49283746,0.38032532,0.20022765,0.31475866,0.007348474,-0.16202986,0.5723384,0.6348599,0.21145721,0.018447708,-0.15993376,-0.26181775,-0.40627146,0.65369153,0.4209028,0.080775425,-0.053193692,-0.038035933,-0.1681973,-0.30186522,-0.28497902,-0.34550875,-0.41149098,-0.49857113,-0.6596125,-0.8220408,-0.9047535,-0.9865366,-1.0606897,-1.1508248,-1.2423136,-1.1313083,-0.60195327,-0.5263028,-0.62057835,-0.78271115,-0.9163818,-1.0527902,-1.174184,-0.20228799,-0.09915137,-0.34667027,-0.52807194,-0.6586485,-0.7935364,-0.88779604,-0.89981365,-1.0055876,-1.0579259,-1.1185657,-1.202719,-1.2960769,-1.260732,-1.1327342,-1.2468829,-1.3453004,-1.103437,-0.58675325,-0.7349677,-0.28787822,0.073115915,-0.21356073,-0.45209378,-0.6099938,-0.6609864,-0.74037397,-0.85386884,-0.48274785,0.7485825,0.06843451,-0.24921452,-0.4103723,-0.5726247,-0.3066398,-0.21032093,0.18074185,0.52631754,0.26220182,-0.13409106,-0.34936535,-0.46992558,-0.5532502,-0.62343186,-0.67834806,-0.75712025,-0.33759654,0.45638457,0.0642851,-0.22740968,-0.33538622,-0.3421294,-0.32895806,-0.47433907,-0.24956004,-0.11201559,-0.23141065,-0.26841876,-0.46325082,-0.5408511,-0.5460309,-0.6202651,-0.67101645,-0.65693027,-0.68415666,-0.7441484,-0.77565616,-0.76247,-0.7438623,-0.641068,-0.64745843,-0.7418344,-0.7803986,-0.7741432,-0.53295964,-0.20002297,-0.39863938,-0.51580733,-0.57694656,-0.6065656,-0.6163608,-0.68998075,-0.7134243,-0.6694435,-0.76380545,-0.73926866,-0.67816716,-0.75770086,-0.79193676,-0.77728456,-0.7919636,-0.8402688,-0.8244971,-0.7240075,-0.5973806,-0.5054739,-0.45805705,-0.41771483,-0.3313428,-0.30716613,-0.29813755,-0.2863519,0.5050637,1.2436178,1.1955695,1.1361461,1.0661602,1.044988,0.9968262,0.90632176,1.1001444,1.0210543,0.99040747,0.9761541,0.9570734,0.9325466,0.91590905,0.9276947,0.9772396,0.93967086,0.9131552,0.92768025,0.92605805,0.9321002,0.9705181,0.97967625,0.9710139,0.98098254,0.97520745,0.9329258,0.96155894,0.94104934,0.94272184,1.0131369,0.96393055,0.941411,0.955292,0.92648435,0.94846004,0.90804183,0.891443,0.8769764,0.90433264,0.85763884,0.84079194,0.8248935,0.86581314,0.8507254,0.8364132,0.8048415,0.80918634,0.8141587,0.83161235,0.86153895,0.88583004,0.8767984,0.86959934,0.8533623,0.86893344,0.865196,0.891738,0.90471995,0.93402696,0.9737072,0.92979383,0.9602329,1.0470331,0.98804665,0.9541189,0.8900087,0.84024817,0.82490253,0.84453195,0.82217526,0.86886823,0.83169514,0.8763784,0.90644157,0.946275,0.9499457,0.98723376,0.96149635,0.96634793,1.0566354,1.0773191,1.1405661,1.1514298,1.1898242,1.3091676,1.246897,1.1529032,1.0925224,1.0440048,1.0129399,1.0310813,1.0344179,1.0712484,1.009268,1.0189394,1.0889456,1.1312344,1.242986,1.2360277,1.1364083,1.0776318,0.9598874,0.92800784,0.94247484,0.9719393,0.9934552,1.077981,1.2637336,1.2288507,1.3364277,1.5367291,1.495249,1.2508146,1.3007066,1.4293829,1.4611161,1.7976542,1.9818134,2.2043254,2.1133857,1.258101,0.9433633
+0.49099004,-0.030131284,-0.4412834,-0.5061113,-0.52500075,-0.6255899,-0.64209056,-0.67092216,-0.7186911,-0.6870996,-0.80694306,-0.7263101,-0.7319616,-0.7945148,-0.49392945,0.8040553,0.7783433,0.70237577,1.056319,0.5304115,0.21746005,0.07348701,-0.05475911,0.00011720136,0.9236718,0.87490726,1.0741214,0.8297907,0.47416842,0.24275161,0.007949624,-0.057463106,-0.10978274,-0.25894904,-0.36809608,-0.5020545,-0.58428764,-0.63221943,-0.672148,-0.40395972,-0.48365062,-0.6007987,-0.067594744,-0.0708733,-0.3623193,-0.5403607,-0.6410124,-0.72466743,-0.7736791,-0.82025373,-0.8506911,-0.8893536,-0.8400012,-0.78773326,-0.61820394,-0.50866115,-0.6624508,-0.37443846,0.036635797,-0.0039248653,0.62835485,0.25304544,-0.06367093,-0.08155744,-0.15305871,-0.39113516,-0.5758632,-0.60393727,-0.6421429,-0.7075914,-0.7329342,-0.7956795,-0.8914361,-0.94842255,-0.530086,-0.2679,-0.4655094,0.35140547,0.53278595,0.16805018,-0.15134287,-0.3424987,-0.1930016,-0.24352671,-0.38085222,-0.53750634,-0.7378614,-0.85669273,-0.91655445,-0.861238,-0.82637113,-0.900203,-0.89627373,-0.9885945,-0.91800046,-0.9241483,-0.99329114,0.13688247,-0.021608647,0.110520735,0.23047446,1.1177309,0.536885,0.14926757,-0.041464023,-0.16015553,-0.08014986,-0.18013816,-0.3424511,-0.46289337,-0.6095823,-0.62385017,-0.63349867,0.78433645,0.36809403,0.087610066,0.23893906,0.6684215,0.4393425,0.15487061,0.27335805,0.12781341,-0.1389939,-0.3126751,-0.42856437,-0.3791772,-0.50410634,-0.6262205,-0.7139946,-0.8043084,-0.9331613,0.1549895,0.41862792,0.019450303,-0.20652767,-0.38756713,-0.48411345,-0.60755634,-0.6552633,-0.7979448,-0.46030065,-0.25105172,-0.47165796,-0.59684443,-0.7274321,-0.8507947,-0.9900059,-1.0435061,-1.109388,-1.1260111,-1.1972752,-1.2522166,-1.2850695,-1.3432487,-1.3765416,-1.4538777,-1.4510728,-1.2864168,-1.3300045,-0.1669216,0.3400051,-0.043048363,-0.21393798,-0.37098324,-0.54237527,-0.628823,-0.6699263,-0.54671407,-0.23333076,-0.29283786,-0.48226225,-0.6634655,-0.6458444,-0.65997934,-0.7961693,-0.6275557,-0.54580915,-0.6997007,-0.8316096,-0.92336184,-0.962211,-0.9813543,-1.0167432,-1.0448656,-1.105227,-0.9481716,-0.46333525,-0.57525945,-0.72678214,-0.8015644,-0.79991126,-0.82093394,-0.8934269,-0.94697165,-0.9285908,-0.92647594,-0.92921376,-0.9835136,-1.033008,-1.0271808,-1.001542,-1.091953,-1.1036825,-1.1341913,-1.1649456,-1.2331977,-1.1538547,-1.1637368,-1.2047362,-1.1888984,-1.2533927,-1.2545484,-1.2131355,-1.2418404,-1.2554841,-1.2817783,-1.2904515,-1.3035834,-1.3000329,-1.2942667,-1.361631,-1.3362329,-1.2964971,-1.342163,-1.2818993,-1.2206992,-1.2694445,-1.2950053,-1.3010224,-1.2813996,-1.2572153,-1.1590762,-1.0382888,-0.9240369,-0.80688435,-0.8580794,-0.8485645,-0.6091724,-0.5750333,-0.5804155,-0.54741466,0.4891035,1.0097742,0.9621455,1.0341914,1.1232362,1.278759,1.3119524,1.4828517,1.6650388,1.706937,1.7255161,1.6688962,1.6563064,1.6535349,1.6514472,1.5806704,1.5709317,1.5662376,1.5810843,1.5772959,1.5477084,1.5502001,1.556869,1.6302384,1.6367812,1.6378579,1.689242,1.7118955,1.7636478,1.671218,1.6756892,1.6825312,1.6948919,1.6615926,1.6979997,1.7097082,1.7573657,1.6586778,1.6436021,1.6203582,1.5886762,1.6011106,1.6121933,1.6274056,1.6276138,1.5820842,1.6011345,1.5829979,1.6090016,1.6423664,1.6859833,1.7778765,1.8581078,1.8761003,1.8831079,1.8831284,1.8928761,1.9254925,1.9695535,1.9560144,1.9466014,1.9850159,2.0556664,2.078441,2.114477,2.081563,1.9263941,1.8410218,1.8865906,1.924453,1.9616797,1.9471304,1.8756697,1.842132,1.9869714,2.1136782,2.1869898,2.1959875,2.2387147,2.2775369,2.3447113,2.4780526,2.537942,2.6302652,2.751056,2.709025,2.5692172,2.5834808,2.5472136,2.495533,2.4799461,2.5124822,2.496182,2.4607673,2.488557,2.4562883,2.4502559,2.547081,2.659705,2.580576,2.5272348,2.5578585,2.4914236,2.3500485,2.2931333,2.3304105,2.3174229,2.3346264,2.4353135,2.492277,2.6882741,2.7502468,2.4165254,2.1918812,2.188005,2.0275583,1.7558167,1.3448961,0.9186308,0.4310546,0.20666988,0.07264078,-0.028206881,-0.11102334
+0.019148108,0.27185458,0.35640842,0.37806135,0.2294613,-0.10304254,-0.30994666,-0.3865236,-0.45967084,-0.43757728,-0.50034314,-0.5156688,-0.53309375,-0.5323495,-0.31290022,2.271891,2.8182428,3.0434763,2.9861662,2.623992,2.3049061,2.0578947,1.7895035,1.6978965,1.7525475,1.839661,2.9282517,2.9242077,2.6498876,2.3595195,2.1508083,1.9700527,1.8724483,1.7029504,1.5026568,1.3122821,1.1556504,0.9802724,1.6172258,2.2006936,1.8754106,1.6996878,1.6549983,1.3595483,1.1410911,0.9125804,0.72175485,0.5150006,0.33248603,0.20703168,0.13872643,0.051508714,0.040913124,-0.043672238,1.186701,1.526463,1.3025521,1.1562217,1.0933372,1.1530733,1.2198066,1.026302,0.7907756,1.3181989,1.1577957,0.8696496,0.5959555,0.4292655,0.30650008,0.17983086,0.9038364,1.0416226,0.89800984,0.7421555,1.2944791,1.7065907,1.3381071,1.197361,2.2437425,2.2466197,1.851901,1.5237086,1.7223725,1.472652,1.2550001,1.0059237,0.6111847,0.38825548,0.22779454,0.2176338,0.84795034,0.7755637,0.6784331,0.4762349,0.27476195,0.3447268,0.6949966,1.5369627,1.3813416,1.1352911,0.9169438,0.8428261,0.4754402,0.18143061,-0.007712722,-0.009187903,0.36493903,0.8541222,0.6192888,0.42573205,0.22360463,0.06064206,-0.08227007,-0.10983114,-0.12844875,-0.24294196,-0.35044748,-0.24687009,0.55241346,1.24611,1.054283,1.174227,1.3511391,1.1544356,1.1729791,1.5612895,1.1729512,0.8881472,0.68141913,0.46942985,0.65586907,0.947544,1.2503967,1.4730712,1.2676411,1.0019715,1.4821872,1.9466698,1.521813,1.342047,1.4616399,1.3880309,1.1043515,0.87565494,0.7035185,0.4821614,0.30851132,0.59221625,1.1329774,0.86551225,0.71162593,0.53163564,0.34848663,0.15727253,-0.022892352,-0.1726859,-0.1968685,0.2188401,0.7815883,0.9662783,0.8956297,0.85775447,0.7339971,0.5486236,0.39123192,0.40967536,0.2751228,0.19522521,0.33645236,0.23554473,0.15989767,0.042385604,-0.10989568,-0.05685201,0.028743986,0.112672865,0.36083555,0.27810186,0.08258885,-0.025137994,-0.13863648,-0.25398883,-0.31009865,-0.3029628,-0.40049154,-0.43632212,1.1410507,1.7161317,1.4411349,1.2890086,1.141592,0.98352194,0.8742113,0.8551637,0.81168944,0.6754186,0.547281,0.5679039,0.4607455,0.4134609,0.4370649,0.5381176,0.751462,0.7920283,0.63205653,0.5199614,0.47510356,0.44605225,0.36535138,0.31610805,0.2987975,0.6352618,0.848142,0.74230146,0.6329406,0.5452939,0.45438415,0.35668564,0.25442442,0.19568518,0.16424535,0.12405661,0.114810675,0.073035285,0.07795316,0.088780016,0.023546655,0.065468356,0.094239265,0.048910033,0.14163071,0.41779754,0.46399188,0.5358987,0.6053386,0.657698,0.6420904,0.6780312,0.647544,0.64615804,0.6829133,1.0363132,1.2111758,1.340585,1.3906106,1.2954035,1.3064309,1.3242809,1.346406,1.4406757,1.4377799,1.416322,1.3410656,1.329253,1.3632605,1.2853951,1.2328618,1.1869456,1.1402395,1.3074979,1.3451009,1.2495856,1.2151092,1.5016888,1.7292441,1.6171093,1.5767436,1.5937768,1.6448056,1.8873322,1.7482991,1.9111314,1.9480987,1.9036165,1.9030674,1.8778212,1.8839322,1.9319714,1.7152979,1.7059966,1.6054132,1.5464823,1.4683386,1.4778157,1.5623884,1.5567174,1.4652776,1.3894632,1.3722029,1.3238045,1.3537564,1.3680146,1.4929287,1.5233004,1.559346,1.6346681,1.6517297,1.659007,1.7112706,1.8806223,1.9022866,2.030039,2.2970881,2.439545,2.5116477,2.5658836,2.470414,2.2153735,1.9518981,1.928818,1.8956362,1.8320628,1.8663366,1.7644114,1.6929187,1.9875019,2.3987324,2.4406695,2.3887482,2.4726453,2.4659119,2.586298,2.7382934,2.8507054,3.0434065,3.248657,3.0955648,2.8998911,2.7646856,2.6776495,2.494135,2.4137828,2.4306366,2.435291,2.4790287,2.4849155,2.451878,2.5031774,2.4820812,2.3431215,2.0021675,1.8490329,1.8246462,1.7743741,1.7383411,1.7043936,1.7549946,1.7593186,1.873222,2.1674798,2.417128,2.3490028,2.1364732,1.7959024,1.6333838,1.5709375,1.4824904,1.4418155,1.3313254,1.4507489,1.491066,1.515998,1.5150908,1.4964885,1.4206003
+0.038831998,-0.17376739,-0.3006307,-0.41159612,-0.45050478,-0.59467566,-0.7080339,-0.7175336,-0.7465496,-0.70255053,-0.70503014,-0.67123306,-0.65710485,-0.66980124,-0.67104036,1.2858336,1.3643153,1.131545,0.8462069,0.59021425,0.42786887,0.25029275,0.10936181,0.017514352,-0.016791712,0.3966865,1.2599695,0.8478929,0.69513965,1.0585699,1.082852,0.6605568,0.73228836,0.5742695,0.37448552,0.23359798,0.26227945,0.38015637,0.8840287,0.7675263,0.48036373,0.32868424,0.15277424,0.114629835,-0.02096147,0.26932195,0.27018982,0.07736628,-0.0692886,-0.21741702,-0.2775934,0.4249195,1.3326218,0.69345057,0.9363264,0.7769602,0.8636366,0.8491179,0.55383384,0.6875106,0.78531396,0.5488465,0.38859856,0.36484927,0.1439771,-0.009531636,-0.13099535,-0.2315644,-0.27763215,-0.3488359,-0.44636828,-0.54051036,-0.6211008,-0.6456988,1.0933511,0.7709005,0.48200732,0.35102466,0.3090945,0.16231537,-0.03935312,-0.14777906,-0.22810748,-0.34599933,-0.40138307,-0.49488917,-0.637944,-0.6924634,-0.7580025,-0.53240097,0.4247171,0.33658975,0.7554819,0.36343828,0.54640746,0.3334278,0.23932056,0.24034433,0.04581349,-0.044469766,-0.22716734,-0.32380694,-0.5479548,-0.6901972,-0.7806779,-0.14535345,-0.007401023,0.2996018,0.02298228,-0.19131903,-0.343696,-0.53269386,-0.69738376,-0.74101806,-0.8952663,-0.9773131,-1.0373757,0.43244854,0.38407058,0.36721995,0.22658195,0.653648,0.32752806,0.11959155,-0.14998344,-0.3069705,-0.46589252,-0.4880332,-0.27853438,-0.5084605,-0.2295409,-0.25757977,0.45257902,0.8029094,0.37235776,0.09254332,0.045152914,-0.06225388,-0.23718493,-0.36536783,-0.025100049,0.4046815,-0.017910112,-0.1999544,-0.36571026,-0.5378252,-0.61943334,-0.34309545,0.031520877,-0.28673458,-0.4469148,-0.54361653,-0.629476,-0.66030693,-0.8312523,-0.92709446,-0.9136803,-0.042050276,0.1489008,-0.115889326,-0.33568603,-0.39736295,-0.4186641,-0.5758488,-0.6877134,-0.66988295,-0.6903647,-0.6878394,-0.67544556,-0.75242054,-0.82457507,-0.88623816,-0.96871567,-1.0071875,-0.99112654,-0.9709187,-0.81232065,-0.83248204,-0.95479125,-1.0291536,-1.0851473,-1.1326373,-1.1754818,-1.1784205,-1.2558854,-1.2909145,-0.6569438,-0.22141413,0.07914741,0.19035205,-0.13855429,-0.31602144,-0.40071005,-0.44429606,-0.41085523,-0.54566985,-0.58816296,-0.64402556,-0.72246563,-0.7324054,-0.8172145,-0.7340466,-0.19993556,-0.24890418,-0.44557267,-0.535938,-0.62341994,-0.6273719,-0.72821695,-0.7504473,-0.76299906,-0.70963585,-0.56590605,-0.64431024,-0.70929515,-0.7311845,-0.78419983,-0.83701205,-0.88043714,-0.8922492,-0.94324183,-0.95175374,-0.95119536,-0.95664704,-0.9816567,-0.9311599,-0.937726,-0.9445896,-0.9275173,-0.9568231,-0.7580998,0.028290872,0.031413633,0.0917771,0.08793868,0.11673774,-0.014219161,-0.006592389,-0.064350545,-0.03969584,-0.06802243,0.02016304,0.03613062,0.28053123,0.2622361,0.18155093,0.25027645,0.2947532,0.36702025,0.536983,0.6984824,0.7430113,0.7044195,0.7999313,0.8576999,0.8233269,0.82353115,0.83242655,0.9110435,0.98129535,1.008728,0.94103694,0.91991615,0.9658443,1.0152197,0.96830785,0.9592794,0.9849689,1.5422397,1.7961761,1.7068704,1.7070479,1.7061652,1.6765468,1.702919,1.7253017,1.7538874,1.8003488,1.714417,1.7006875,1.6027036,1.6038711,1.5885844,1.6089696,1.6887672,1.734267,1.6743182,1.7146136,1.6741517,1.6826591,1.7240504,1.7277509,1.710566,1.7134354,1.6806554,1.7669283,1.7987977,1.8044531,2.2302313,2.5017123,2.4234104,2.3841639,2.4814925,2.5680013,2.6126037,2.7110777,2.7781935,2.6425145,2.4609737,2.439361,2.428102,2.452495,2.5161314,2.5373583,2.5265682,2.671736,2.9671104,2.9799361,2.9326558,2.928309,2.9433067,3.0412674,3.0840511,2.975886,2.3257377,1.5658233,1.0638967,0.680852,0.9332417,1.2665387,1.4790065,1.648215,1.793824,1.9803333,2.0314772,2.106845,2.1602974,2.0351458,1.3973782,0.7955746,0.5017664,0.43475297,0.5020677,0.6841499,0.8384979,0.8982192,1.0103537,1.1182475,1.111862,0.67955065,0.25816345,0.09832905,0.06789632,-0.0082788505,0.04044794,0.32839972,0.27339962,0.106707335,0.034341644,0.032652367,0.024688233,0.72022974,1.1027454,0.63824993,0.49935448
+-0.47284263,-1.8420572,-2.4176135,-2.5157588,-2.544366,-2.674706,-2.6833935,-2.6821496,-2.6041827,-2.5830612,-2.4687636,-2.4619908,-2.6021776,-2.6651773,-2.7038658,-1.1814736,-0.8330743,-1.5107415,-1.6578021,-1.647261,-1.7486012,-1.9070392,-2.0389066,-2.1486797,-2.180568,-2.0402806,-1.2017953,-1.6535912,-1.7638321,-1.0161605,-1.346889,-1.6660855,-1.7939639,-1.9357388,-2.034406,-2.1546206,-2.2398195,-1.6623864,-1.5967393,-1.4812638,-1.5996759,-1.8391677,-1.9911882,-2.0083318,-2.0188272,-2.0689507,-2.0052717,-2.105001,-2.2158482,-2.3066237,-2.3499527,-2.3799505,-2.1293993,-2.1139195,-1.6335323,-1.7047112,-1.1108301,-1.5675578,-1.616194,-1.6689004,-1.7110304,-1.8104929,-1.978589,-2.1052287,-2.2046645,-2.2502937,-2.2919827,-2.3170834,-2.3805027,-2.379828,-2.3651187,-2.4805818,-1.9790878,-1.441993,-0.9476309,-1.8463573,-1.9723485,-1.9983537,-1.4746432,-1.874089,-2.0245094,-2.1469884,-2.233295,-2.2997723,-2.3847551,-2.4463878,-2.4689302,-1.7732743,-1.8009933,-1.3886093,-1.2438965,-1.6432724,-1.5334734,-1.6649339,-1.9236652,-2.1039586,-2.163096,-1.4780729,-1.7058219,-1.9627316,-2.156163,-2.2482915,-2.3130262,-2.352889,-2.4053905,-1.8838216,-1.8506179,-2.076532,-2.1865087,-1.6429651,-1.8931367,-2.0693245,-1.958604,-1.2956276,-1.8693357,-2.0098517,-2.1924396,-1.7745188,-1.297326,-1.7409207,-1.964144,-1.9712662,-1.9296222,-1.9972506,-2.175176,-2.26666,-2.339578,-2.4054275,-2.172542,-2.1466408,-2.218483,-2.3764465,-2.4252925,-1.5570778,-1.8738647,-2.0229883,-2.159935,-2.182508,-2.1397054,-2.3193326,-2.0191154,-1.8499599,-2.0914068,-2.2888355,-2.3927548,-2.4342315,-2.4870794,-2.2993712,-2.0886455,-2.328584,-2.4211025,-2.4668531,-2.5237627,-2.5768306,-2.6272178,-2.6872325,-2.7139783,-2.135725,-1.624851,-1.7733678,-1.976547,-2.0867963,-2.1526215,-2.2955716,-2.3412924,-2.3160083,-2.324564,-2.1881046,-1.9032519,-2.0756836,-2.17661,-2.22666,-2.3614836,-2.4087496,-2.4018626,-2.4920769,-2.416055,-2.180983,-2.3209174,-2.4044518,-2.4259527,-2.4607081,-2.4676828,-2.515592,-2.5743394,-2.5974755,-1.2843256,-1.6360378,-1.4864386,-1.5201254,-1.7529879,-1.8687968,-1.9601502,-2.0461047,-2.0101302,-1.9515507,-2.1119561,-2.184401,-2.2217245,-2.2301636,-2.2518487,-2.1284645,-1.7844704,-1.9290634,-2.0730622,-2.1026042,-2.1223817,-2.1865444,-2.198869,-2.258985,-2.3095384,-2.2936425,-2.2884092,-2.3291276,-2.26845,-2.3269985,-2.282728,-2.3228023,-2.353145,-2.408175,-2.3857403,-2.276926,-2.224194,-2.2699318,-2.2420514,-1.9429338,-2.104282,-2.2031221,-2.2410734,-2.2741072,-2.2350287,-1.4949521,-0.83768153,-0.20646897,-0.03797717,-0.36202186,-0.6481883,-0.52848077,-0.3640665,-0.35201088,-0.41308773,-1.0351719,-1.3522063,-1.5200735,-1.3415993,-0.97136074,-0.42659074,-0.20120724,-0.34129524,0.07292332,0.6304364,0.88156396,0.95002747,0.9582692,0.91437876,0.9100495,0.98302674,0.9803721,0.98465264,0.95625216,0.98513913,0.96579134,0.9712281,1.0080278,0.8431484,0.8686337,0.9526554,0.8908041,1.1807494,1.3291061,1.383524,1.2832285,1.2353964,1.2872821,1.1684296,1.294429,1.3882883,1.4248153,1.7545925,1.8303518,1.9002666,1.985004,2.0065465,2.0382738,1.9317313,2.050151,2.3024545,2.3283496,2.222831,2.1463044,2.1032195,2.0875473,2.0687547,2.0616164,2.027248,1.8974159,1.6614201,1.7428076,1.8093414,2.215517,2.207778,2.142773,2.0111363,1.8677895,1.7576565,1.6948481,1.8452513,2.1022031,2.23215,2.195133,1.9905586,1.7453288,1.444485,2.1098175,2.1445904,1.5503693,0.41337478,0.10032904,0.29201666,0.1778254,0.11485295,-0.28156868,-0.79850155,-1.119602,-1.4126639,-1.6621966,-1.7253495,-1.89342,-2.0067637,-1.3368187,-0.38570106,0.44680336,1.0888588,1.1848361,1.2530613,1.2371453,1.1732965,0.6013721,-0.45968553,-1.2882711,-1.8002696,-1.8529748,-1.9054067,-1.5892546,-1.3557147,-1.5328493,-1.810807,-1.1912506,-1.3984492,-2.0621827,-2.193462,-2.1850004,-2.2308366,-2.2313528,-2.2726693,-2.152945,-2.1994753,-1.3808637,-1.6036935,-1.7279546,-1.8215334,-1.7521089,-1.3255078,-1.7240678,-1.8539832
+-0.22051014,-0.3686219,-0.25935385,-0.24066837,-0.23384295,-0.35613704,-0.43199876,-0.519483,-0.5774121,-0.55361795,-0.5259572,-0.69720006,-0.77504086,-0.80513656,-0.85804254,1.9467545,2.36466,1.8736677,1.3965715,1.0944818,0.8947556,0.66076654,0.50830626,0.3185804,0.17342989,0.13690744,1.0902581,0.97032213,0.9111625,1.5840886,1.3105505,1.002407,0.8914629,0.6667806,0.48830503,0.36178902,0.24289162,0.13449784,0.23957492,0.1727042,0.7003503,0.463414,0.23014079,0.16727419,0.06887257,0.36326683,0.62562925,0.33089298,0.18631639,0.12893295,0.11877127,0.083096504,0.2082773,0.14455871,0.18043076,0.20817424,1.379028,1.1017867,0.6673239,0.4826818,0.886223,0.60614085,0.40147144,0.25847322,0.12086938,-0.021350808,-0.11083442,-0.20580545,-0.28683013,-0.3615787,-0.42481685,-0.502937,-0.59187543,-0.2877697,-0.30566585,-0.48098117,-0.56073624,0.08455375,1.3673364,0.8517089,0.7407931,0.55461043,0.31561422,0.14211404,0.030418258,-0.091924295,-0.19892658,-0.30006912,-0.016646545,0.35441005,0.102895156,-0.13474813,0.1474363,0.05294742,-0.10115275,-0.2530884,-0.3708733,0.3922714,0.23036872,0.011916544,-0.1610258,-0.29092586,-0.44981906,-0.120317236,-0.13000683,-0.3118407,-0.402404,-0.47623128,-0.5280822,-0.38200688,-0.30296302,-0.4902576,-0.60837626,-0.43630058,-0.47654206,-0.55688226,-0.69703054,-0.78680104,0.2576864,0.5012834,0.087989315,-0.054888193,-0.20733829,-0.2939604,-0.41694212,-0.5128244,-0.6003031,-0.6477946,-0.2888497,-0.4276341,-0.5414955,-0.6449861,-0.72375333,-0.540113,-0.50868475,-0.464531,-0.62261903,-0.7711164,-0.8166074,-0.9449368,-0.7255063,-0.54555446,-0.7564755,-0.8693204,-0.80534434,-0.7837188,-0.8590815,-0.7395009,0.46537304,0.14038445,0.10121961,0.18422778,0.17821445,-0.0400952,-0.23982614,-0.35289246,0.8631047,0.47085947,0.29667187,0.21854948,0.07582611,-0.03150663,-0.21999414,-0.34807742,-0.4664487,-0.4830315,-0.51697105,-0.6067685,-0.2106164,0.17396183,0.39007974,0.05385633,-0.15773185,-0.31398913,-0.4240967,-0.51563776,-0.55870646,-0.60603917,-0.7326139,-0.8234376,-0.88844705,-0.95257545,-1.0387647,-1.0522841,-1.0972638,-1.1391594,-1.026121,-1.0716639,-1.1362077,-1.1194246,-1.219866,-1.2510915,-1.273486,-1.2972232,-1.0681217,-0.94779223,-1.0000259,-1.0652597,-1.0957289,-1.142242,-1.1522726,-1.1671739,-1.1794896,-1.2524688,-1.3053918,-1.317765,-1.3303331,-1.3860683,-1.3516095,-1.3855724,-1.4206417,-1.3994795,-1.4430324,-1.4746662,-1.4563024,-1.4685638,-1.4856744,-1.496233,-1.5077636,-1.4663211,-1.4103236,-1.4293988,-1.4222186,-1.4413037,-1.4445561,-1.3862991,-1.4195203,-1.4259278,-1.4033921,-1.40077,-1.3922621,-0.9083543,-0.7831021,-0.7040451,-0.6985505,-0.32102558,0.17961945,-0.07272436,-0.13236848,-0.15907781,-0.16881196,-0.18319188,-0.2545661,-0.21098529,-0.3025179,-0.29486364,-0.30339417,-0.32829076,-0.29702908,-0.33892033,-0.27422205,-0.045162197,-0.006240856,-0.0026867948,0.07150273,-0.048937213,-0.012266021,-0.095471084,-0.1162508,-0.112328276,-0.16533697,-0.17156383,-0.16360232,-0.03844292,0.10018076,-0.007878762,0.08282603,-0.020137306,0.32806098,0.610075,0.6150867,0.7397782,0.68153775,0.70301,0.7263051,0.67053014,0.6296169,0.5605255,0.3897068,0.32446295,0.28610635,0.27023873,0.23471971,0.3171188,0.56224185,0.534003,0.42560327,0.35388106,0.32666647,0.59549975,1.0281993,1.0404334,1.1136689,1.2196149,1.3272121,1.462575,1.5202218,1.5337758,1.4075139,1.4747349,1.3817945,1.3244276,1.4035459,1.5651454,1.6218064,1.4814985,1.2138813,0.99725366,0.8857111,0.85706234,0.96345437,0.853801,0.65886366,0.56042606,0.5388563,0.5351705,0.23439209,0.13752253,0.052400667,0.10471566,0.10270853,0.15849106,0.19923882,0.191334,0.040433902,-0.008367252,0.019564588,0.04009335,0.022925783,-0.029387515,-0.085863516,-0.04668511,-0.08291112,0.03992175,0.013735909,0.0008546598,-0.01480652,0.0655496,0.038508702,-0.02702282,-0.23789631,-0.186597,-0.108061805,-0.20899065,-0.2761707,-0.15046103,-0.12836607,-0.22179578,-0.20980822,-0.07548456,-0.075459555,-0.11997886,-0.15793683,-0.15926121,-0.21048345,-0.33777875,-0.3755039,1.2257334,1.8181255,1.1044167,0.8362414,1.3513782,1.6051695,1.0780947,0.82322156
+-0.38106617,-0.47985762,-0.43700105,-0.5325179,-0.62393725,-0.66789335,-0.7431299,-0.8107273,-0.84104276,-0.8478304,-0.75496435,-0.72830844,-0.75489366,-0.79132926,-0.8398491,1.135107,1.7527786,1.1422873,1.0590547,0.8374539,0.5611371,0.38703483,0.20379455,0.029390525,-0.10277659,-0.14593452,0.19207996,0.09495944,1.3931487,1.4138675,0.9293246,0.75349355,0.5525327,0.3806817,0.25501427,0.12789728,0.0046349205,0.074843064,0.10314162,-0.051494874,0.16220234,0.22511859,0.05426317,-0.11413814,-0.14698815,-0.041969124,0.53745985,0.4633159,0.25286222,0.2327862,0.17285337,0.53424156,0.62847066,0.4247383,0.23808952,0.013468403,0.63201666,1.2730029,0.7117016,0.7260792,0.9347321,0.5852156,0.37913644,0.20767032,0.041139666,-0.10681264,-0.20165218,-0.26238543,-0.3758027,-0.4513067,-0.42052054,-0.42226958,-0.49716794,0.9745879,0.9026835,0.38601783,0.17180873,0.04538164,0.28125668,0.16101082,0.025019538,-0.14355803,-0.2548281,-0.39249462,-0.42938432,-0.50275874,-0.5843917,-0.5478333,-0.44599843,0.43447465,0.18819596,0.8993723,1.0914099,0.7162361,0.4478744,0.14306717,0.3619114,0.31970024,0.78517854,0.4972703,0.16411564,-0.017600995,-0.02158169,0.008461159,-0.025036689,-0.16677822,-0.26477078,-0.34921744,-0.43513116,-0.52546453,-0.60416126,-0.6738432,-0.74859244,-0.817767,-0.78886265,0.6761205,0.3539935,0.20726584,0.73890704,0.7107606,0.285192,0.04122797,-0.13031447,-0.19505547,-0.10784885,-0.17866303,-0.13040005,-0.12874056,1.2289429,0.74869525,0.42992693,0.1885042,0.049800787,0.15966864,-0.05420838,-0.1859963,-0.27975798,-0.3772439,-0.48144406,-0.5722934,-0.35114545,-0.23544382,-0.47074997,-0.6017721,-0.65970874,-0.79962647,-0.22582348,-0.15563682,0.051280912,-0.06187806,-0.11333275,-0.009774718,0.010598805,-0.01035146,-0.26207298,0.6632247,0.8104912,1.1727693,0.6728477,0.7164129,0.5471644,0.28571504,0.013657514,-0.1286016,-0.17732267,0.17835143,0.13179754,-0.021945339,-0.037569042,-0.19929476,-0.04482877,-0.18786967,-0.33568174,-0.43191424,-0.51727825,-0.60590667,-0.4422969,-0.43168122,-0.5961393,-0.6915293,-0.7600881,-0.8227898,-0.86186063,-0.8833919,-0.92024374,-0.94468033,-0.97411704,-1.0240041,-1.083771,-1.0659924,-1.1171726,-1.1171312,-1.1069419,-1.1407373,-1.1252668,-1.1285851,-1.1590527,-1.1773906,-1.1919179,-1.2277561,-1.2577972,-1.2903599,-1.2880645,-1.3018932,-1.3351598,-1.338771,-1.350777,-1.3558979,-1.2941053,-1.3549795,-1.3454006,-1.3371136,-1.3808527,-1.3703451,-1.3585703,-1.3906016,-1.3855417,-1.3845732,-1.3775098,-1.295481,-1.2511941,-1.2023132,-1.1605318,-1.1504376,-1.1585932,-1.1088226,-1.1155906,-1.1081805,-1.0969235,-1.1631871,-1.1563907,-0.86773324,-0.83982205,-0.8572038,-0.8751531,-0.8720907,-0.7769209,-0.79996943,-0.7816915,-0.78906715,-0.8189354,-0.68566525,-0.68223214,-0.6544848,-0.64440095,-0.6462459,-0.6528023,-0.5926311,-0.5736017,-0.5289832,-0.47542465,-0.24215648,-0.010202851,0.10099159,0.13706933,0.096328124,0.12552385,0.1843992,0.19545268,0.24729721,0.37509322,0.45842797,0.5150175,0.64680755,0.72640705,0.6919973,0.6812351,0.5303899,0.59168774,0.5350809,0.5380798,0.62237203,0.5404729,0.5115029,0.5087509,0.44700634,0.511351,0.4517441,0.5203724,0.66295266,0.7340969,0.82326263,0.8541313,0.9792613,1.0426884,0.7727776,0.5906052,0.6166681,0.7007514,0.85396534,1.3870833,1.6597207,1.650409,1.7072979,1.414699,1.3439523,1.1024045,0.903045,0.90537894,0.7880318,0.8249402,0.87769216,0.8882915,0.79315263,0.7208144,0.61643475,0.4749223,0.39112458,0.46463978,0.58600104,0.57536405,0.44481558,0.46612662,0.3273398,0.25230026,0.42560408,0.29161066,0.20185931,0.19919907,0.33896017,0.25948846,0.24184681,0.19856982,0.1673642,0.07165812,0.04413225,0.080228224,0.057684366,-0.015587043,-0.08382985,-0.1366665,-0.08395229,-0.09961954,-0.024357658,-0.050862174,-0.09404571,-0.113758996,-0.12051737,-0.15531453,-0.16956662,-0.2313147,-0.28103143,-0.3099641,-0.33154362,-0.36385328,-0.36893135,-0.29090977,-0.36420608,-0.36684677,-0.32650828,-0.3750434,-0.44369367,-0.4989956,-0.52786356,-0.6070626,-0.6029579,-0.64296746,-0.13305123,0.27663076,0.11714697,0.25805762,1.1773397,1.5531129,0.7953889,0.61528355
+-0.75486714,-0.78401345,-0.81949323,-0.9548695,-1.030365,-1.1539395,-1.2253352,-1.2614403,-1.3429937,-1.3654734,-0.15066426,0.485573,0.052064795,-0.10719894,-0.21368021,1.4884467,1.4960992,1.0773768,1.2789141,1.0659666,0.7772852,0.5991346,0.40204826,0.21162955,0.031852055,-0.048714433,-0.1441136,-0.22690195,1.3434638,1.1370553,0.8342056,0.7351404,0.50146943,0.35166708,0.19147868,0.04784428,-0.10059701,-0.17540593,-0.24742354,-0.21929814,-0.2827853,-0.26111427,-0.309903,-0.37256926,-0.43968463,-0.20180161,0.46825176,0.41688228,0.17555021,0.052567054,-0.0777147,-0.18338495,-0.28280106,-0.3775727,-0.5103534,-0.59083134,-0.6639919,-0.7368705,-0.81618536,-0.8465629,0.4252944,0.47038412,0.21700056,0.058127288,-0.080826715,-0.21687117,-0.36605603,-0.385798,-0.43363002,-0.56412864,1.125236,0.65914637,0.42063767,1.3054199,1.4527934,0.817325,0.60058117,0.53178054,0.8856993,0.62316626,0.40625048,0.202588,0.027639601,-0.05697487,0.8438047,0.57509077,1.5236306,0.88152635,0.64281225,1.4104755,1.317095,1.6584357,1.8757755,1.6682615,1.1751953,0.8266243,0.5880271,0.3861093,0.29643628,0.20080224,0.05543304,-0.11123456,-0.2119421,-0.3299929,-0.37628904,0.2695463,0.9501009,0.4682911,0.17246021,-0.008464631,-0.18704164,-0.3312712,-0.42875063,-0.5011735,-0.5622919,0.79557204,0.42629516,0.19020855,0.22737293,0.9202074,0.5087573,0.19708155,-0.010847937,-0.16798879,-0.31380555,-0.370114,0.4563451,0.60930914,0.56625146,0.32981995,0.5300621,0.7491226,0.4836254,0.43648344,0.17051874,-0.029228684,-0.16767584,-0.30264288,-0.44040307,-0.55190563,-0.66924894,-0.7647127,-0.8714876,-0.92832273,-0.98745453,-1.0705075,0.17350647,0.17265965,-0.065182835,0.005819354,0.6625579,0.6468556,0.3514257,0.29455304,0.20972097,0.028898675,-0.13083354,-0.2951247,-0.44029027,-0.021239769,0.29381993,0.028116886,-0.17432825,-0.31807303,-0.40199322,-0.38037673,-0.40798843,-0.51858246,-0.60110486,-0.67885435,-0.7496183,-0.8275226,-0.87339365,-0.95532167,-1.0619168,-1.14009,-1.1959012,-1.25384,-1.332883,-1.4023366,-1.4157096,-1.4372883,-1.4795307,-1.4872963,-1.2752857,-0.9425005,-0.8149928,-0.9559813,-1.0628349,-1.1022389,-1.1937917,-1.0971098,-0.7906675,-0.7572874,-0.84188837,-0.9271969,-0.9489421,-0.99911165,-1.0235369,-1.0923154,-1.190976,-1.2499968,-1.2940547,-1.3380836,-1.35869,-1.3511615,-1.3552889,-1.3859224,-1.3827562,-1.3982159,-1.4099135,-1.4245253,-1.4294835,-1.4625515,-1.4500034,-1.4823722,-1.4822309,-1.4805055,-1.4880486,-1.4161737,-1.2049191,-1.1575037,-1.1530886,-1.1567316,-1.164939,-1.1449363,-1.1638855,-1.1860921,-1.1904215,-1.228678,-1.2451657,-1.1668327,-1.1234238,-1.1026133,-1.1474235,-1.1966646,-1.1441135,-1.1251432,-1.0876915,-1.0493287,-1.0943508,-1.0445523,-1.0046612,-0.9418469,-0.84646285,-0.70647097,-0.71778166,-0.56841767,-0.5061259,-0.45844913,-0.3950632,-0.29876426,-0.15593283,-0.05441312,-0.008718301,-0.12023802,-0.09856807,-0.05029152,0.093523085,0.16632403,0.11751109,0.4742849,0.59610724,0.6484785,0.70999396,0.6513505,0.55610543,0.4139911,0.5835612,0.36318618,0.3860806,0.49373543,0.3907749,0.3516773,0.37790683,0.34835148,0.3703834,0.2953129,0.3777081,0.581213,0.71317935,0.759359,0.79525304,0.88685656,0.73854953,0.5089968,0.401328,0.33969027,0.44918162,1.5941696,1.920516,1.7265596,1.3939657,1.1997097,0.9857218,0.8382317,1.0226443,0.85675144,0.7926411,0.6467898,0.69864184,0.83523655,0.9291462,0.85468775,0.65114415,0.51687557,0.45006213,0.47482377,0.7127301,0.7712642,0.61781305,0.40377003,0.29803872,0.24702154,0.1842083,0.1992313,0.13286221,0.10126893,0.0038932003,0.06296307,0.04657385,-0.01305471,-0.05047706,-0.10129851,-0.156703,-0.1965801,-0.23141922,-0.3072159,-0.34790576,-0.3125828,-0.29745594,-0.29009467,-0.32017222,-0.36257523,-0.41903022,-0.47142208,-0.49442244,-0.5604682,-0.6299501,-0.7091443,-0.79375947,-0.8426256,-0.82184863,-0.80815744,-0.7784821,-0.830862,-0.8066527,-0.86244804,-0.88229793,-0.87550354,-0.88702184,-0.91508013,-0.94612014,-0.9974856,-1.051027,-1.082443,-1.1008415,-0.32784408,0.30316153,0.01822123,-0.09535411,1.1424254,1.7069674,0.97334754,0.72586274
+-0.7430774,-0.9714299,-1.0437614,-1.1901598,-1.3002491,-1.401532,-1.4894135,-1.5162613,-1.5900774,-1.6226852,-1.6332076,-1.5969663,-1.5818194,-1.5912652,-1.6451387,-1.4927342,-0.07902408,-0.1353759,0.13651778,0.019769449,-0.3075122,-0.5092905,-0.65905106,-0.8095449,-0.95857775,-1.0827842,-1.0433471,-1.1527135,0.6585674,0.42567033,0.115067706,0.047034774,-0.1268789,-0.27940783,-0.43491283,-0.5514722,-0.68838465,-0.8254742,-0.9727757,-1.0771742,-1.1238053,-0.04211166,-0.16275547,0.40772593,0.17468733,0.7810996,0.76574385,0.37616375,0.23109923,0.0579629,-0.22737466,-0.30535272,-0.28655437,-0.46476668,-0.6543863,-0.8078641,-0.91020215,-0.9922241,-0.42833483,0.007124301,-0.1866731,0.12618266,0.18976444,-0.19888803,-0.43384176,-0.63933766,-0.7832731,-0.7664321,-0.8313194,-1.0330187,-0.34253022,-0.41571882,-0.681078,-0.6238723,0.41702133,-0.182463,-0.46724194,-0.66558355,-0.79899937,-0.88749015,-0.9952241,-1.1059785,-1.2141378,-1.3437742,-1.3797898,-1.405118,-1.5053308,-1.5741189,-1.5595977,-0.9856636,-0.21258554,0.040749807,-0.33833468,-0.5537917,-0.7549753,-0.8465492,-0.99573135,-1.2198265,-1.2217817,-1.0982677,-1.2699461,-1.4009135,-1.519509,-1.6223924,-1.7083917,-1.7560873,-0.37848926,-0.5570117,-0.8262869,-0.98882985,-1.1303399,-1.2703321,-1.4118228,-1.525823,-1.6192939,-1.296599,-1.221584,-1.3125544,-0.515931,-0.5513504,-0.782826,-0.97508216,-1.1660812,-1.2577386,-1.2072529,-1.2803757,-0.66825265,-0.66736495,-0.5457695,-0.1684674,-0.11162935,-0.42125076,-0.6238048,-0.20735028,-0.41226408,-0.70253026,-0.8506593,-1.0024912,-1.1299537,-1.2146184,-1.293938,-0.18926921,-0.4428216,-0.7137482,-0.87621135,-1.0076203,-1.0372674,-1.1489564,-0.738266,-0.07642609,0.575317,0.8095525,0.33652484,0.029753525,-0.17471872,-0.3413045,-0.5053515,-0.6415622,-0.7600986,-0.031180646,-0.08026838,-0.372906,-0.22805004,-0.43225497,-0.6185863,-0.7198186,-0.6032891,-0.49634245,-0.64043313,-0.7449954,-0.04958125,-0.257583,-0.54527056,-0.69500864,-0.8008448,-0.90257,-0.9520155,-0.9217345,-1.0034246,-1.1012361,-1.193963,-1.2339134,-1.2705125,-1.3101044,-1.3596349,-1.4077656,-1.4469194,-1.4812863,-1.5599293,-1.571387,-1.5969112,-1.604286,-1.2344991,-1.1781077,-1.286493,-1.2491983,-1.271452,-1.3216772,-1.3494219,-1.4196386,-1.5004184,-1.5569992,-1.5887922,-1.5776473,-1.6017869,-1.6318847,-1.667816,-1.6797657,-1.6963439,-1.680717,-1.6799648,-1.6810297,-1.727819,-1.7389535,-1.7319101,-1.7732954,-1.7475386,-1.7584553,-1.7795553,-1.616019,-1.1741614,-1.1587223,-1.152817,-1.1312176,-1.1734182,-1.1821787,-1.1752231,-1.2225738,-1.2338021,-1.2592208,-1.288842,-1.3593247,-1.3093626,-1.2579205,-1.2970464,-1.336118,-1.3135982,-1.2761805,-1.276227,-1.2318743,-1.2530376,-1.2373798,-1.2613683,-1.2071054,-1.1632853,-1.1291639,-0.8571441,-0.5336304,-0.5489385,-0.61482203,-0.5586771,-0.529961,-0.36117804,-0.2544937,-0.32482684,-0.40697065,-0.40189224,-0.33772546,-0.18760966,-0.14007862,-0.33487,-0.0089308135,0.10942973,0.14259598,0.115859345,0.05703396,0.05597681,-0.09796035,-0.18566372,-0.2020952,-0.22420086,-0.22422765,-0.30342808,-0.2634845,-0.26646954,-0.24465422,-0.27010614,-0.367867,-0.26645166,-0.18676014,0.08673236,0.32110536,0.3390658,0.365744,0.22979166,0.017819408,-0.17723496,-0.23266996,0.29004553,1.2600546,1.195782,0.97565293,0.91292214,0.6716189,0.47095644,0.45146334,0.89813405,0.5691829,0.43295342,0.19788603,0.23191746,0.33202356,0.3649395,0.35371155,0.20651253,0.046510328,-0.051602203,-0.06848355,0.15931508,0.25611395,0.106456354,-0.06339009,-0.1617104,-0.2757142,-0.28860706,-0.27454188,-0.37819847,-0.49112743,-0.31467584,0.14948624,-0.024384703,-0.06878321,-0.13883892,-0.25341308,-0.32005364,-0.38126305,-0.43251133,-0.47483152,-0.54078066,-0.6425077,-0.57907784,-0.48842502,-0.51205754,-0.5395176,-0.6473698,-0.6572662,-0.6502841,-0.67297393,-0.75536776,-0.8087909,-0.8864812,-0.8831978,-0.9300535,-0.96988094,-1.003598,-1.0286025,-1.0383885,-1.0515554,-1.0662744,-1.0907745,-1.1287564,-1.1865958,-1.2159859,-1.2191428,-1.2770987,-1.3379239,-1.3778605,-0.91287047,-0.47950298,-0.60723233,-0.71947265,0.4718203,1.1609008,0.4745286,0.16203372
+-1.2925496,-1.4239211,-1.5273006,-1.5812941,-1.6060512,-1.6746318,-1.7280858,-1.749621,-1.7820771,-1.8603624,-0.8958253,-0.3994541,-0.061099913,-0.24909675,-0.5031749,-0.077684954,0.14696161,-0.19260581,0.2662481,0.21940438,0.51379555,0.1569209,-0.11142078,-0.3184519,-0.5016586,-0.64630795,-0.76202786,-0.6340936,0.11793952,-0.1771366,-0.38636506,-0.41235912,-0.61369216,-0.73253417,-0.83696723,-0.95558167,-1.0591705,-1.1490471,-1.2292161,-1.3165324,-1.3896478,-1.3732057,-1.4431331,-1.3299053,-0.54611176,-0.15437093,0.49953598,0.4662493,0.970402,0.45373398,0.12725626,0.1366703,0.9699807,0.9981266,0.5836181,0.23011212,-0.0037950836,-0.20108752,0.4865719,1.2119422,0.5569831,0.825916,1.1157691,0.70718676,0.47753787,0.24903278,0.052477058,-0.15323517,-0.2907674,-0.4441476,-0.5255678,-0.5805305,-0.5939317,-0.6944354,-0.6261802,0.28596884,1.4370247,0.7862992,0.44638753,0.94674945,0.6624204,0.3601455,0.14732851,-0.04190938,-0.20980988,-0.35408065,-0.48237526,-0.58269125,-0.6845701,-0.34223112,0.084761545,-0.13272718,-0.391635,-0.5223097,-0.5547063,-0.4224655,-0.5505357,-0.25186116,-0.07635729,-0.30776057,-0.5493332,-0.74363613,-0.9099786,-1.055484,-0.6598939,-0.09986374,0.8975811,0.30316538,-0.0050425194,-0.20817424,-0.39106435,-0.5604912,-0.7231196,-0.8663058,-0.9902021,-0.70519376,-0.41334885,-0.6073172,-0.7745128,-0.9163432,-0.50508296,-0.36242193,-0.6263343,-0.823655,-0.98708075,-1.1268723,-1.2514868,-1.3557878,-1.4484282,-1.3670422,-0.51297194,-0.48540545,-0.6904249,-0.6350502,-0.63730574,-0.827443,-0.9389321,-1.0696518,-1.1829306,-1.2634628,-1.3379879,0.23890652,0.16890892,-0.136506,-0.34516513,-0.00743613,0.38233933,0.23007675,0.0029443689,-0.062558845,0.43919182,0.9144304,0.90918887,0.71903324,0.7639513,0.5087945,0.22377129,0.020840403,-0.14907447,0.14473611,0.20056196,-0.07118408,-0.24084224,-0.3732073,-0.4927122,-0.089481995,0.1423528,0.18471335,0.4940927,0.49641758,0.2676769,0.03202797,-0.12607513,-0.2817634,-0.3999896,-0.50579125,-0.56848776,-0.57827437,-0.6401378,-0.7636261,-0.85952014,-0.91488564,-0.97379524,-1.0296558,-1.0884697,-1.1412523,-1.1903507,-1.2197633,-1.2888639,-1.288138,-1.3338286,-1.3579974,-1.2891579,-1.3724487,-1.4042823,-0.63881767,-0.194667,-0.43930954,-0.5627751,-0.6766391,-0.7788366,-0.8604584,-0.92591417,-0.98149824,-1.0367211,-1.1008497,-1.1335528,-1.1641173,-1.1715014,-1.1932122,-1.215512,-1.2386522,-1.2740241,-1.2997364,-1.3194175,-1.3112726,-0.5894179,-0.47795284,-0.60382557,-0.4279604,0.5159134,0.22102584,-0.0046559535,-0.13352397,-0.24663673,-0.31141058,-0.38295808,-0.46983522,-0.5291723,-0.59958386,-0.6579491,-0.7095338,-0.68426806,-0.69258684,-0.7738379,-0.79985,-0.83702254,-0.8526211,-0.8416574,-0.8679557,-0.88241684,-0.894176,-0.9041513,-0.9120029,-0.8883318,-0.7227249,0.68866855,0.56188333,0.2447929,0.14816818,0.13238037,0.21686421,0.27504873,0.31867847,0.19305779,0.048600037,-0.006797526,0.00021317974,0.11468287,0.09596987,-0.07680221,0.23282035,0.56332606,0.60484356,0.44375482,0.26444936,0.13041146,-0.042100374,-0.12938468,-0.13867259,-0.15180038,-0.18481123,-0.17068869,-0.15095669,-0.18963663,-0.20399693,0.07522336,0.08500859,0.010196108,0.13707508,0.5450462,0.92326695,1.0823061,1.0742817,0.6831404,0.21440612,0.033613395,0.015210483,0.43809807,1.1873267,1.1295372,0.73353463,0.7231362,0.49246466,0.35198686,0.22641967,0.07422517,0.007011857,-0.03649879,-0.11238344,-0.096247554,-0.024105351,-0.014670048,-0.022768516,-0.10627428,-0.17217198,-0.21052752,-0.20904484,-0.0985463,-0.062685445,-0.13858908,-0.22038324,-0.28457952,-0.37411362,-0.36932746,-0.4150648,-0.48412332,-0.5789299,0.16810025,1.2085998,0.65364075,0.4761076,0.29788214,0.15066445,0.05453888,-0.046092946,-0.16906114,-0.2725414,-0.35718632,-0.41735095,-0.37993544,-0.35870555,-0.43388984,-0.5233502,-0.6213154,-0.62237954,-0.65249646,-0.7287673,-0.8187357,-0.8765466,-0.90675855,-0.9464724,-1.0224606,-1.0550699,-1.0457617,-0.9963576,-1.0316387,-1.0458548,-1.059222,-1.087635,-1.1422783,-1.1743352,-1.2107153,-1.2600462,-1.3189547,-1.3587699,-1.4018741,-1.3034372,-1.1485207,-1.2225063,-1.2722982,-0.48942593,1.4367094,0.7958871,0.53324044
+-0.5467229,-0.16702808,-0.4605478,-0.6692973,-0.8474963,-0.9583207,-1.0957091,-1.1842363,-0.547193,-0.11764932,-0.25516537,-0.17398892,-0.030932572,-0.24563166,-0.38575757,0.4716499,0.9577835,0.57466847,0.42427832,0.89863634,1.0670748,0.65656877,0.41479954,0.20473063,-0.03022131,-0.24911813,-0.46270847,-0.62479275,-0.72057986,-0.81204927,-0.90213615,-0.9202007,-1.0553951,-1.0830927,-1.1796046,-1.2775261,-1.3733839,-1.4674208,-1.5343001,-1.6367238,-1.6418045,-1.2048699,-1.1792777,0.23137714,0.67840385,0.48518538,0.37160003,1.3928727,1.4137027,0.8168331,0.59817815,0.6963693,0.8949709,0.67784655,0.31779525,0.059936564,-0.14379057,-0.38763976,0.20052887,1.2600399,0.68370306,0.758487,0.77358353,0.52109003,0.29967535,0.087429166,-0.11055146,-0.281867,-0.41480792,-0.56269026,-0.69532275,-0.82898664,-0.023304965,0.09049271,-0.18158118,-0.3978035,-0.49703825,-0.5841284,-0.7743306,0.0054845773,0.17580993,-0.1624353,-0.3694256,-0.5452194,-0.6934236,-0.83666146,-0.84759474,-0.6291145,-0.7752334,-0.9005647,-1.0395024,-1.1543233,-1.2425847,-1.2300065,-1.3824348,-1.5207536,-1.608091,-1.7055752,-1.8043989,-1.2090663,-0.949959,-1.099425,-1.2526537,-1.4028983,-1.527453,-1.650847,-1.3762426,-1.2752583,-1.399576,-1.5080713,-1.610976,-1.6932418,-1.7654068,-1.8470389,-1.9227357,-1.9901637,-1.9859793,-1.7565465,-1.7117363,-1.7064682,-1.7794914,-1.7292075,-1.6782312,-1.7568231,-1.8481443,-1.9236252,-1.9920282,-2.041434,-2.08349,-2.172882,-1.2748003,-0.6430436,-0.74469316,-0.8883668,-0.90562356,-1.0777016,-1.167124,-1.2813478,-1.3836042,-1.3832446,-1.0780936,0.2598881,0.1438049,-0.048192706,-0.21045285,-0.07544002,0.40997297,0.13655342,-0.032628756,0.14789027,0.25417835,0.14563441,0.22055699,0.3001917,0.38448995,0.16517003,-0.08314648,-0.30240867,-0.48299268,-0.6112661,0.22911687,0.32822824,0.35242236,0.22560857,-0.012276176,-0.013018195,0.46645814,0.3970884,1.0243411,1.4191012,1.0215416,0.6495439,0.39785945,0.21117523,0.055268366,-0.077949315,0.07965614,1.0098093,0.7134632,0.33479387,0.17873946,0.021345567,-0.0883819,-0.22139578,-0.34520036,-0.46458364,-0.58792436,-0.6947387,-0.8045767,-0.8803593,-0.9045775,-0.97677785,-0.9747447,-1.0584536,-1.1193957,-0.72254384,-0.053000387,-0.2058184,-0.35123098,-0.46177197,-0.56958246,-0.6816835,-0.77608824,-0.83021766,-0.902314,-0.9853618,-1.052422,-1.0958718,-1.1090581,-1.1778935,-1.1770287,-1.204776,-1.2484648,-1.2775286,-1.3077708,-0.16166373,1.434418,0.878211,0.6710004,1.1451664,1.3234951,0.93332386,0.74459946,0.58373654,0.5138376,0.44790864,0.39053625,0.31687856,0.23811208,0.15310575,0.08692321,-0.0032542087,-0.04658354,-0.054024823,-0.10922012,-0.14566797,-0.23796646,-0.26074937,-0.33184832,-0.3422615,-0.3520389,-0.35218272,-0.4141629,-0.49290037,-0.5028072,-0.4159603,1.1496215,1.2634131,0.8718718,0.7458692,0.68984765,0.63117796,0.6457741,0.7165289,0.65480626,0.5412402,0.4782096,0.45876783,0.44304505,0.47404718,0.36859605,0.27800053,0.55502075,0.63053685,0.51154673,0.31480464,0.22912197,0.170206,0.14811017,0.14096907,0.09071642,0.074945286,0.011600871,0.0019801743,-0.033779245,-0.08453716,0.08486967,0.14422937,0.06505212,0.06506698,0.19103192,0.5336312,0.72087914,0.6825801,0.40128353,0.18958165,0.086129636,0.07159473,0.09907268,1.2203836,1.5619355,1.2406291,1.2691842,0.96496284,0.83245695,0.6967826,0.5211705,0.4427319,0.39087653,0.29021674,0.19746196,0.20482981,0.22310384,0.19733593,0.12914737,0.05479997,-0.010774199,-0.05392349,-0.035290208,0.029665206,-0.017041009,-0.054594662,-0.12825835,-0.20952578,-0.27160522,-0.31567577,-0.36575118,-0.5062794,0.9511863,1.4924316,0.9988667,0.83249974,0.6758617,0.5434046,0.4543953,0.39590466,0.2287005,0.14607634,0.02658886,-0.103876635,-0.18591833,-0.20942435,-0.28275183,-0.40594316,-0.5156167,-0.5823239,-0.616035,-0.688251,-0.75977534,-0.83104014,-0.9102759,-0.95186085,-0.99962974,-1.066349,-1.0825706,-1.0349652,-1.0854801,-1.1305099,-1.1701648,-1.1907985,-1.2287768,-1.305752,-1.3220735,-1.4008546,-1.383898,-1.3251761,-1.3876467,-1.4280555,-1.4918382,-1.577043,-1.6097963,-0.39363897,1.2033018,0.7045718,0.4105466
+-1.1033204,-0.9395519,-1.1183184,-1.170359,-1.210737,-1.2574198,-1.3557594,-1.4234993,-0.48357064,-0.14584416,-0.370942,0.33317512,0.7552377,0.3047722,0.108963504,0.049160387,1.2726663,0.8768647,0.665395,1.1448681,0.97841334,0.74225396,0.5246101,0.3488737,0.15667707,-0.02645808,-0.28068268,-0.44672617,-0.5472976,-0.6295768,-0.7053424,0.530298,0.60337067,0.32188988,0.11288093,-0.09996204,-0.2915786,0.29399514,0.9862828,0.38420022,0.0928327,0.09055203,0.039311778,0.36560577,0.35699052,0.11808537,0.10876937,0.8879003,0.9596875,0.52198166,0.33462363,0.16665392,0.48925757,0.5046294,0.19327147,0.2385412,1.1033533,0.50184065,0.7222512,0.78397655,0.66259015,1.2509518,0.9619522,1.1393374,0.8085331,0.59812224,0.3617329,0.18773037,0.051669914,-0.07876356,-0.22178237,-0.33311865,0.95591605,0.7952292,0.47790337,0.2608029,0.2702989,0.24206428,-0.0016214512,0.5035105,0.59763944,0.27664047,0.067136124,-0.10323323,-0.24137239,-0.3808163,0.52924645,1.2135683,0.79892445,0.5275649,0.31090274,0.12631924,-0.06142186,-0.2739381,-0.45892668,-0.6494745,-0.75495344,-0.8552635,-1.01837,-1.0064871,-1.0111928,-1.1486049,-1.266983,-1.3958049,-1.4972193,-1.3835394,-1.3344105,-1.4504191,-1.5538023,-1.6332154,-1.6989088,-1.7533906,-1.808143,-1.862064,-1.9093001,-1.9468989,-1.9869511,-2.0103984,-1.996663,-1.910716,-1.8773711,-1.9122703,-1.9778724,-2.02402,-2.0718007,-2.096221,-2.1191666,-2.137632,-2.1579046,-2.1855316,-2.2135916,-1.0754793,0.29812002,0.23535292,0.15040849,0.44822454,0.20031308,-0.030370016,-0.022917677,0.031401303,-0.1844639,0.42951983,0.46715683,0.3409108,0.72903126,0.5019617,0.3357825,0.6258472,0.6784076,0.49977463,0.3432998,0.08441815,0.08044012,0.26019758,0.8417092,0.6028472,0.29268825,0.048379693,-0.16948234,-0.3394638,-0.51146483,-0.6815234,0.1975535,1.3019344,0.61969507,0.4072737,0.55318874,0.9829979,0.79148376,1.3397238,1.1907868,1.2888708,1.0354785,0.67633945,0.4609549,0.27990234,0.5413704,1.9761643,1.5970193,1.1696212,0.88309693,0.6888583,0.5334624,0.38246,0.2670635,0.16655043,0.09147389,0.018396396,-0.08579083,-0.027095359,0.33394057,0.2412488,0.06567711,-0.066195026,-0.17014019,-0.2559772,-0.1157804,0.0051323213,-0.14236666,-0.25658652,-0.3541088,-0.42664427,-0.4829918,-0.5258381,-0.59871316,-0.6602248,-0.7387027,-0.7697351,-0.7730452,-0.8063491,-0.8144145,-0.82444984,-0.85601425,-0.8828269,-0.8984354,-0.92368037,1.0840648,1.2580895,0.89504313,1.5513906,1.3633913,1.0896769,1.0013987,1.4011829,1.282171,1.0112786,0.84087497,0.7248162,0.6277015,0.51958406,0.45622456,0.3416407,0.33193535,0.2951429,0.2426611,0.2051344,0.134077,0.08784743,0.28946707,1.5097709,1.0737486,0.8855327,0.7195543,0.59118026,0.52895284,0.45874393,1.0748109,1.1270974,0.8934392,0.80272704,0.7534537,0.7244464,0.62274945,0.61822593,0.59300375,0.45959035,0.40911603,0.4000203,0.38790953,0.39558405,0.3546815,0.27249676,0.36548236,0.38612044,0.32911754,0.2136048,0.14152189,0.13673556,0.16319223,0.15902321,0.112150386,0.09491725,0.06597711,0.019131448,-0.06525916,-0.14799757,0.031235572,0.11074619,0.030304987,-0.015157232,0.03479187,0.2729336,0.34626466,0.33145905,0.15482955,0.02398124,-0.019424742,-0.02863514,0.045822594,1.0991719,1.207827,1.261724,1.3819923,0.98786473,0.8609216,0.74526036,0.6036563,0.5017239,0.44586825,0.38192165,0.29255083,0.30612585,0.34291166,0.28627154,0.19343923,0.09945132,0.031252112,-0.0340641,-0.020162055,-0.0017573684,-0.057560664,-0.09671405,-0.152133,-0.23965536,-0.30977738,-0.37436733,-0.4211641,-0.4663254,-0.34806943,1.6061668,1.1565663,0.9179277,0.74268293,0.59215564,0.48731536,0.47432947,0.370369,0.24297743,0.13378927,-0.019176017,-0.1465048,-0.19291763,-0.24976994,-0.3088207,-0.41516137,-0.52548516,-0.554126,-0.582597,-0.6285696,-0.6744869,-0.7169355,-0.75823736,-0.7895617,-0.8236487,-0.8304343,-0.84861636,-0.8700419,-0.88281155,-0.9116379,-0.9307723,-0.96823114,-1.0205436,-1.0612073,-1.1143858,-1.1567616,-1.0844682,-1.0116739,-1.138063,-1.2448392,-1.3069935,-1.3719283,-1.2674918,0.43936515,0.3568007,0.043130223
+-0.9986886,-0.80974245,-0.91666126,-0.9243712,-0.9562651,-0.96808094,-1.0340999,-1.1104224,-1.1204998,-0.96662843,-0.8656764,0.59596944,1.4485581,1.0152786,0.78351116,0.5752735,1.9520757,2.1552534,1.8158568,1.5191364,1.4072968,1.2170339,0.9828166,0.99757314,0.8979151,0.62722355,0.4652959,0.26186463,0.12552114,-0.011868056,-0.15336022,-0.13714528,-0.2753451,-0.41492912,-0.491288,-0.61937344,-0.74732494,-0.8468363,-0.9143404,-0.91927874,-1.0148638,-0.9589157,-0.21556506,0.12685797,0.051789347,-0.045591194,0.06941046,1.5378506,2.5418296,1.9373156,1.598076,1.3128215,1.0508524,0.8133269,0.5936905,0.45658427,0.4038066,0.13657261,0.14833014,1.5816121,1.5035341,1.3029625,1.5514593,1.6608812,1.3592587,1.1006329,0.8264262,0.617589,0.42843455,0.24735816,0.066689104,0.21835159,0.7157312,0.52340144,0.2514925,0.0120479725,-0.20380251,-0.3778796,-0.55111706,-0.14998806,0.33117747,0.12629609,-0.088371545,-0.28036812,-0.42347443,-0.5935739,-0.6355916,2.3804293,1.9711254,1.5598694,1.2540827,0.97337997,0.7317482,0.50446314,0.2867019,0.038524326,-0.17257836,-0.38058525,-0.5638915,-0.7240068,-0.8730689,-1.0006077,-1.1386484,-1.236615,-1.335573,-1.4478414,-1.5319109,-1.583142,-1.6399634,-1.6800649,-1.7113383,-1.7451397,-1.7845364,-1.818406,-1.8484651,-1.8584433,-1.8762853,-1.8203037,-1.4099079,-1.3419273,-1.4206302,-1.5098388,-1.590418,-1.6518812,-1.7022864,-1.7408385,-1.7636828,-1.7967591,-1.8301977,-1.8533309,-1.8805223,-1.900357,-1.9085853,-1.5693505,0.8452178,1.202353,0.87973034,0.65891206,1.2268336,1.35917,1.1307454,1.8760972,1.7322755,1.4324348,1.2033379,0.87583065,0.6205013,0.40694928,0.24530147,0.48518062,0.6473366,0.4947728,1.0111146,1.7265426,1.4956595,1.1465912,0.8881638,0.62793267,0.38610268,0.18893375,-0.018807445,-0.020452466,0.41659546,0.43832052,0.24700873,0.3567329,1.0374296,1.1557472,0.9109511,0.70185935,0.54872906,0.5001401,0.36537442,0.14826974,0.0023974292,-0.14009075,-0.28129998,1.8368526,2.5436864,1.9852364,1.5753245,1.3481119,1.1247351,0.9383364,0.78919756,0.65552384,0.52003586,0.41175616,0.29967332,0.28231746,0.3188544,0.18439446,0.034195293,-0.06579976,-0.1421089,-0.20170586,-0.24981388,-0.2895614,-0.34667826,-0.38761684,-0.42594728,-0.45580444,-0.44264805,-0.5076837,-0.58176374,-0.6255413,-0.67174214,-0.6770258,-0.6803987,-0.6945385,-0.69550216,-0.7020473,-0.71004915,-0.71836793,-0.726246,-0.7246077,-0.21316159,0.34439227,0.27578986,1.0149413,1.3288794,1.0925113,1.1157596,2.0173204,1.7842679,1.5106696,1.3132596,1.1854502,1.0590863,0.92732596,0.8117831,0.7292902,0.66521144,0.5758631,0.47883546,0.42448545,0.3730283,0.30118358,0.5469458,0.77912724,0.6762981,0.5874915,0.5127928,0.39345405,0.29479516,0.25106066,0.826415,1.2708194,2.1818595,1.8399657,1.6464648,1.5081606,1.3792617,1.3339934,1.2287469,1.0877079,0.9921098,0.91576314,0.8561896,0.8207895,0.8248177,0.8086288,0.67330253,0.6864196,0.6713768,0.60188216,0.5376872,0.55005425,0.54426414,0.5125351,0.49563813,0.4727707,0.42964563,0.38155895,0.29663804,0.39748722,0.9217925,0.9211694,0.78406435,0.65956986,0.59282744,0.63224673,0.6497253,0.7130454,0.63536507,0.54276705,0.5066835,0.50467217,0.51503634,1.384462,1.8447437,1.7821091,1.7505993,1.4833622,1.3640852,1.242684,1.0769424,0.9390099,0.80132747,0.72743034,0.61492723,0.5610968,0.5499767,0.4663453,0.3613783,0.23933785,0.14174213,0.07413225,0.017471965,-0.036711324,-0.042233918,-0.07611722,-0.10134426,-0.16327254,-0.26223758,-0.34140483,-0.38918728,-0.43216386,-0.077349305,2.2146459,1.7631681,1.5048904,1.4740393,1.2986232,1.1352279,1.1836667,1.0112158,0.8313716,0.6700356,0.47590786,0.3294786,0.18933903,0.10442671,0.025720835,-0.06059892,-0.16927208,-0.23041238,-0.29283723,-0.33633286,-0.4246422,-0.47898006,-0.51537275,-0.5603915,-0.5925553,-0.6172759,-0.6312153,-0.6592643,-0.66500807,-0.69301254,-0.70609903,-0.74967694,-0.8094374,-0.84552187,-0.88343275,-0.924246,-0.96263975,-0.98054147,-1.0484986,-1.0739653,-1.1537422,-1.1740631,-1.2799834,-0.12657538,0.57977235,0.3757225
+-2.0240788,-2.0694354,-2.1549442,-2.196117,-2.2399018,-2.2634466,-2.352214,-2.455112,-2.4437706,-2.421858,-2.2072768,-2.0588536,-1.4149721,-1.4002705,-1.5452334,-1.6294057,-1.5787146,-0.7418021,-0.9272424,-1.2155585,-1.3166459,-1.3823149,-1.4506353,-1.3894898,-1.309006,-1.4432712,-1.5498066,-1.6711075,-1.7537222,-1.7573993,-1.6401763,-1.2615795,-1.4386036,-1.5292678,-1.6396228,-1.7361429,-1.8428501,-1.8809118,-1.9252445,-2.023947,-2.082503,-2.1256685,-2.1740403,-2.227647,-2.2565343,-2.1226254,-2.1140196,-2.0749562,-1.7828898,-1.6866517,-1.8120613,-1.8951718,-1.9384282,-2.0004373,-2.0552578,-2.0644994,-2.08964,-2.179931,-2.226312,-2.244855,-2.304726,-2.2647805,-1.289979,-0.9727462,-1.2261226,-1.3700958,-1.4741665,-1.5840397,-1.6688565,-1.7412176,-1.8622903,-1.898284,-1.984216,-2.054008,-2.113172,-2.1748328,-2.230853,-2.2926223,-2.349421,-2.4124534,-2.4416914,-2.451332,-2.4897556,-2.5174682,-2.5467565,-2.5769067,-2.2528002,-2.0603528,-2.1209545,-2.192312,-2.2436056,-2.2735796,-2.3336542,-2.3953495,-2.4536886,-2.5000095,-2.5321956,-2.5678005,-2.5993934,-2.636176,-2.6678913,-2.6871629,-2.7049787,-2.718661,-2.7396932,-2.7625546,-2.7860856,-2.786341,-2.8023636,-2.817069,-2.8289788,-2.8423991,-2.857532,-2.8669252,-2.8782096,-2.888933,-2.8631804,-2.6879294,-2.6611362,-2.6710858,-2.691392,-2.7060242,-2.7191486,-2.7352529,-2.7623234,-2.7742295,-2.7877936,-2.8001058,-2.814233,-2.8291402,-2.844729,-2.8588455,-2.882444,-2.906968,-1.635355,-0.4843661,-0.9397053,-1.0945847,-0.9828636,-0.7690673,-0.5286465,0.43269712,-0.261735,-0.4848438,-0.7293577,-1.0008856,-1.1469505,-1.2560968,-1.3741953,-1.4906368,-1.3400571,-0.9537168,-1.0429878,-1.172627,-1.2894657,-1.3382652,-1.3759764,-1.4014542,-1.4779718,-1.5619094,-1.6218328,-1.6782756,-1.7785674,-1.7784691,-1.7906884,-0.94410765,-0.7846119,-1.0679933,-1.1887009,-1.2891837,-1.3531129,-1.406878,-1.4551808,-1.5155293,-1.5823057,-1.650281,-1.6947887,-0.7247696,-0.04304285,-0.6449603,-0.9207181,-1.1082478,-1.1939845,-1.2752726,-1.2978053,-1.3646029,-1.4064571,-1.4432824,-1.4762441,-1.4749485,-1.4032984,-1.4783847,-1.4903966,-1.5518055,-1.6017871,-1.6456159,-1.6651945,-1.6811094,-1.7035335,-1.7245429,-1.7454531,-1.758014,-1.761131,-1.7257293,-1.7780983,-1.8339186,-1.8565767,-1.8677952,-1.8812516,-1.909068,-1.9049716,-1.9076886,-1.9118065,-1.9415185,-1.9576138,-1.9576083,-1.9143124,-0.9825832,-0.8301552,-1.0442218,-1.1181148,-1.1897261,-1.0912147,-0.5894101,-0.8929281,-1.0359186,-1.1280152,-1.1873877,-1.2167192,-1.2526655,-1.288902,-1.3026478,-1.3024015,-1.3635001,-1.4040425,-1.4439821,-1.4441723,-1.4638529,-1.4942904,-1.4775882,-1.4759462,-1.5135252,-1.5155715,-1.5730479,-1.6212664,-1.6613514,-1.0513201,-0.77314067,-0.17719789,-0.76725966,-0.9631873,-1.0022613,-1.065643,-1.13643,-1.1630327,-1.2227795,-1.2544278,-1.2672588,-1.2845991,-1.2896843,-1.3020043,-1.304316,-1.4089429,-1.4346424,-1.474087,-1.5065092,-1.5227661,-1.5326328,-1.4858845,-1.484234,-1.4717476,-1.4776511,-1.4530097,-1.4839625,-1.5740647,-1.5927141,-1.6052871,-1.5945585,-1.6330198,-1.6618285,-1.6670585,-1.7144623,-1.632699,-1.6414195,-1.6562135,-1.6619198,-1.6716919,-1.6464446,-1.6101508,-1.6087651,-1.5523102,-1.462697,-1.456517,-1.5158231,-1.5204879,-1.5718633,-1.6018647,-1.6802615,-1.704581,-1.7204058,-1.7751281,-1.8098595,-1.8095341,-1.8502045,-1.8496943,-1.8545963,-1.867622,-1.8904301,-1.9402711,-1.9477165,-1.9577904,-1.9759208,-1.9411013,-1.9359574,-1.9742475,-2.0058382,-2.0407152,-2.0343165,-1.7915914,-1.16139,-1.2991868,-1.4177516,-1.4987309,-1.5601883,-1.639868,-1.4899063,-1.4887484,-1.5706427,-1.6606846,-1.7204297,-1.7868466,-1.8225294,-1.8778024,-1.9053209,-1.9022208,-1.9501828,-2.0015187,-1.9803454,-1.7500587,-1.833698,-1.8685886,-1.8913809,-1.9150324,-1.937445,-1.950839,-1.9750861,-1.9813664,-1.99678,-2.0149477,-2.0414848,-2.0596604,-2.0762248,-2.0926542,-2.1045396,-2.1281478,-2.152425,-2.1615686,-2.1593742,-2.2077985,-2.2282066,-2.2687652,-2.2926166,-1.907211,-1.6560116,-1.7788105
+-0.9010906,-1.199083,-1.279706,-1.2987385,-1.3014619,-1.3499084,-1.4355336,-1.5151109,-1.3267899,-1.2688458,-1.2588196,-1.28633,-0.3222967,-0.25872752,-0.4865225,-0.60879827,-0.7210554,-0.40100658,0.028133195,-0.21024738,-0.3976052,-0.5424081,-0.66707706,0.28425664,0.30247262,-0.04805476,-0.26378322,-0.39424634,-0.5094019,-0.6307109,-0.74367565,-0.7944376,-0.86316395,-0.98740363,-1.0641068,-1.1241262,-1.2288588,-1.3243663,-1.3499202,-1.4595401,-1.334636,-1.168411,-1.2852236,-1.2473207,-0.02345064,0.6795398,0.26602286,1.0049338,0.849439,0.45849687,0.22518347,0.04662134,-0.09463963,0.9939165,0.65848947,0.37489673,0.17638853,-0.033720832,-0.0822034,-0.101670206,0.097463086,-0.11809112,0.79402816,0.5273907,0.25065416,0.06896791,-0.08628996,-0.23099342,-0.35190728,-0.4569562,-0.5726173,-0.6804379,-0.7784847,-0.8754446,-0.96952647,-1.0720756,-1.1666477,-1.2615702,-1.344733,-1.4354471,-1.5387564,-1.4999923,-1.5695602,-1.6366296,-1.6934052,-1.7522779,-1.8243461,-1.8603783,-1.7261598,-1.1886795,-0.5216507,-0.62637955,-0.81010103,-0.95826113,-1.1043556,-1.2278361,-1.327435,-1.4165483,-1.5016719,-1.5858369,-1.663506,-1.692925,-1.7553233,-1.8069749,-1.8586146,-1.9080801,-1.9475851,-1.9847043,-2.0216148,-2.0555577,-2.086743,-2.1150723,-2.1416972,-2.1698666,-2.194026,-2.055128,-1.5353281,-0.24921302,0.0060159154,-0.1351074,0.23297478,-0.032741766,-0.32133895,-0.5095499,-0.6762805,-0.8270976,-0.9687573,-1.0975947,-1.212358,-1.3199757,-1.4257617,-1.5179645,-1.6096859,-1.7129314,-1.7132201,0.86093426,1.2524021,0.7758743,0.5556403,0.46961176,0.4229476,0.35586715,0.7865021,1.5701141,0.82298326,0.47186446,0.2426747,0.062060203,-0.106577545,-0.11553639,0.14144738,0.38747817,0.24381252,0.13084777,0.4822449,0.4829589,0.19948952,0.013907131,-0.14810336,-0.27555358,-0.40391606,-0.52652144,0.091722295,1.1774647,0.5656845,0.62520564,0.6923164,0.35317236,0.21080609,0.01604503,-0.112678796,-0.23208033,-0.34877527,-0.47002578,-0.5607608,-0.65040356,-0.73790634,0.12452313,1.6153847,1.3284875,0.94322634,0.674491,0.41221392,0.22621043,0.18717004,0.050527606,-0.04298811,-0.14399451,-0.22114475,0.34740135,0.8571508,0.35498562,0.15481178,0.019419964,-0.08829546,-0.18384442,-0.23114556,-0.3089579,-0.38877666,-0.45175284,-0.52402836,-0.5769421,-0.5492778,-0.52606434,-0.6119342,-0.6936705,-0.7400044,-0.7878245,-0.82714516,-0.87527496,-0.91104496,-0.9473032,-0.9847225,-1.0028876,-1.0373282,-1.0648242,0.27288553,1.4476149,0.8801818,0.67353934,0.48429173,0.4935441,0.47335458,0.6511147,0.76671755,0.54138285,0.34852493,0.17899401,0.058164325,-0.040420797,-0.11382705,-0.17857267,-0.25902492,-0.2990643,-0.38290358,-0.45179647,-0.5075808,-0.5343082,-0.4454636,-0.30060554,-0.30532566,-0.41541234,-0.52870625,-0.59897053,-0.6316757,-0.6987748,0.3450621,1.2668507,1.1801286,0.71911025,0.5497191,0.54750526,0.47863752,0.33980906,0.3377877,0.21923031,0.1317641,0.055797648,0.034749214,0.013664506,-0.08205682,-0.15727103,-0.1683703,-0.21789663,-0.30945268,-0.3703727,-0.38379636,-0.43414962,-0.45226496,-0.4773531,-0.44897357,-0.47263712,-0.53533405,-0.5986345,-0.65192294,-0.7256532,-0.7917149,-0.8066872,-0.83179295,-0.8614162,-0.8433239,-0.71321267,-0.59661937,-0.6133399,-0.6811505,-0.7490714,-0.8037844,-0.8100096,-0.8178215,-0.8497793,-0.9020327,-0.8989886,-0.8576292,-0.8789645,-0.9216697,-0.94314015,-1.0174388,-1.0340486,-1.0672476,-1.1083739,-1.0983517,-1.1161828,-1.0851157,-1.0903882,-1.113157,-1.1337564,-1.1669753,-1.2176415,-1.2315487,-1.2122611,-1.2533553,-1.2888489,-1.2905142,-1.2726579,-1.2970384,-1.3454385,-1.4111298,-1.4294113,-0.44167614,0.15394308,-0.13712755,-0.30108827,-0.4045332,-0.48667574,-0.58296955,0.05759346,0.11856319,-0.14780286,-0.27252185,-0.42171314,-0.5277963,-0.65299785,-0.7709084,-0.82884157,-0.85548586,-0.88515425,-0.91759056,-0.29090092,0.31429505,-0.06802952,-0.257045,-0.26071957,-0.32624117,-0.443477,-0.5215237,-0.5958046,-0.62559414,-0.71236515,-0.77216727,-0.83262897,-0.8917811,-0.95594937,-0.999652,-1.0562757,-1.1114447,-1.152817,-1.1914937,-1.2425902,-1.2697998,-1.3179313,-1.3773661,-1.4180219,-1.4519606,-1.4353429,-1.4556142
+-1.5648279,-1.6047074,-1.631303,-1.6398177,-1.6191348,-1.6417493,-1.6898799,-1.7333434,-1.5294979,-1.3157293,-1.3637565,-1.4706328,-1.2683318,-1.2370036,-1.3073698,-1.3651152,-1.4345226,-1.5045419,-1.5601248,-1.6169977,-1.5975448,-1.6345987,-1.5911603,-0.117123336,0.0015797429,-0.32388145,-0.54511935,-0.6744973,-0.79850256,-0.9227704,-1.010955,-1.1156542,-1.2192534,-1.3153939,-1.4054966,-1.4724119,-1.5481436,-1.5257492,-1.1094747,-1.1495543,-1.2896117,-1.4009447,-1.5002956,-1.6003339,-0.63615704,0.58996624,0.5483278,0.67619413,0.41442835,0.067940414,-0.10153629,-0.23347001,-0.36342707,-0.119693846,0.21837847,0.5616384,0.20984305,-0.14691131,-0.28512424,-0.44452316,0.16625169,0.28060228,1.0203829,0.80440736,0.39070997,0.38782406,0.14436074,-0.07679152,-0.2124226,-0.33685005,-0.4544183,-0.5703983,-0.6357277,-0.7409836,-0.8351549,-0.94294405,-1.0421444,-1.1433648,-1.2333817,-1.3197145,-1.1325059,-0.20894195,-0.42084253,-0.6586349,-0.8012369,-0.9298959,-1.0515754,-1.1593717,-0.75033,-0.5891885,-0.5989289,-0.6535423,-0.82114446,-0.9537108,-1.0767612,-1.1874812,-1.2887384,-1.373248,-1.4501935,-1.270752,-0.34570512,-0.1935796,-0.5146522,-0.72671366,-0.8848213,-1.0273849,-1.0912006,-1.1966764,-1.3027914,-1.3919631,-1.4868814,-1.5608292,-1.6358879,-1.6959352,-1.7463218,-1.7943895,-1.8088038,-1.2264329,-1.1671051,-1.0954536,-0.27867842,-0.07511914,-0.39905298,-0.643106,-0.81433636,-0.9530039,-1.0793539,-1.1930592,-1.2949286,-1.3869427,-1.475203,-1.5645869,-1.5874934,-1.625384,-1.5984198,-0.8584225,0.9952998,1.0657046,0.6210545,0.36679515,0.33834755,0.20822947,1.5410953,1.205735,0.5859308,0.33982864,0.13355564,-0.020551715,-0.1731704,-0.17084594,0.48461366,0.3728985,0.5767677,0.43082127,0.21332024,0.03982993,-0.10874358,-0.2533676,-0.40338266,-0.52206045,-0.6408994,-0.73787844,-0.767094,-0.5611074,-0.6058321,-0.6512025,-0.5809063,-0.69339126,-0.75314623,-0.8531648,-0.93238163,-1.0076118,-1.0785141,-1.1558772,-1.2240539,-1.2803476,-1.3322006,-0.073440894,1.2011557,1.2053955,0.8161255,0.6143848,0.50736856,0.55209184,0.59202206,0.2803309,0.14035048,0.008176323,-0.096822664,0.28917903,0.768168,0.3575146,0.18434365,0.03769407,-0.094192624,-0.18958263,-0.26070958,-0.35615903,-0.4493806,-0.5240294,-0.5964783,-0.64405113,-0.5237927,0.590218,0.3267007,0.034845,-0.075121194,-0.21590282,-0.3301394,-0.42146245,-0.50586545,-0.584904,-0.6543288,-0.70542395,-0.75435495,-0.7727688,-0.77796435,0.18217279,0.51996267,0.42339647,0.37732762,1.0866883,1.0450584,0.8643833,0.72348475,0.65652657,0.6445592,0.37096804,0.24143882,0.11565833,0.022215996,-0.049693916,-0.11970928,-0.20939758,-0.30396518,-0.35470113,-0.39543894,-0.4508385,-0.4878204,-0.5225843,-0.554561,-0.5924715,-0.6638445,-0.71198785,-0.75544465,-0.8035065,-0.5876559,1.0331143,1.0798886,0.5423374,0.37009695,0.5702058,0.74538636,0.42546427,0.3388948,0.24558143,0.10439934,0.016844135,-0.02486303,-0.036353845,-0.1391194,-0.22616868,-0.27573082,-0.36398578,-0.43054485,-0.48105952,-0.4892822,-0.4990688,-0.5057491,-0.5376917,-0.5429047,-0.55510646,-0.6003791,-0.6264617,-0.7056818,-0.67665607,-0.66574556,-0.74172854,-0.7932137,-0.83905077,-0.8478472,-0.85845536,-0.83461916,-0.8400009,-0.9024856,-0.9387084,-0.9754503,-0.9765687,-0.9539877,-0.97937775,-1.040174,-1.0566669,-1.0765878,-1.090436,-1.1318387,-1.1745305,-1.2337463,-1.3022754,-1.3392439,-1.3787181,-1.3931394,-1.4131894,-1.1806884,-0.8192398,-0.917957,-0.99535584,-1.0670252,-1.1356392,-1.1834242,-1.2105331,-1.2478204,-1.2734516,-1.3029141,-1.3308492,-1.3589622,-1.3848368,-1.4424593,-1.4410639,-1.4362692,-1.470633,-1.4713206,-1.5052596,-1.5514885,-1.5602283,-1.6190007,-1.5867528,-1.6791236,-1.7475014,-1.7748129,-1.8476675,-1.8471394,-1.8390946,-1.8891098,-1.8858019,-1.9008912,-1.923142,-1.9218605,-1.3185524,-0.4158934,-0.5931102,-0.7237793,-0.71685755,-0.7461322,-0.77191126,-0.8209106,-0.85723126,-0.8749431,-0.9584892,-1.0261582,-1.0817819,-1.1417367,-1.186899,-1.2391474,-1.301965,-1.351675,-1.3770294,-1.4067456,-1.4667892,-1.5171657,-1.5373886,-1.5796227,-1.5929582,-1.6478095,-1.7055743,-1.7272797
+-1.4130111,-1.3870568,-1.3244368,-1.2410511,-1.1936673,-1.2206422,-1.2640367,-1.0657403,-0.79177463,-0.83150804,-0.88730246,-0.968475,-1.0036687,-1.0482149,-1.099251,-1.1318069,-1.1751584,-1.1929698,-1.1837234,-0.9021384,-0.7751787,-0.6375099,-0.008300554,-0.001592014,-0.26768306,-0.4541692,-0.6131178,-0.68208057,-0.7709756,-0.8652508,-0.9283317,-0.9416821,-0.94515526,-0.9919755,-1.053874,-1.1156548,-1.1952162,-1.0187693,-0.55504155,-0.38242605,-0.5227473,-0.58502257,-0.7028427,-0.12856387,0.25711802,0.23214649,-0.08152826,-0.21756648,-0.32804003,-0.43944848,-0.5330747,-0.60578614,-0.6109035,-0.5168978,-0.4714542,-0.05144072,-0.11911638,-0.31377372,-0.46523136,-0.51620257,0.29105383,0.8113934,0.7904608,0.3947912,0.18744706,0.21948735,0.077484995,-0.10197385,-0.2247838,-0.31247926,-0.4011662,-0.37249467,0.026225332,-0.04330555,-0.10859616,-0.29223794,-0.4173392,-0.5205975,-0.6173515,-0.6974089,-0.6812494,-0.5601858,-0.65644276,-0.745602,-0.7757706,-0.5516889,-0.28532654,0.019748319,0.21117653,0.28126973,-0.046232585,-0.20243537,-0.21262972,-0.20248343,-0.3529775,-0.477514,-0.5795813,-0.63269484,-0.5922903,-0.57314014,-0.40782243,-0.20362985,-0.33266684,-0.4671271,-0.55284506,-0.6551739,-0.7438118,-0.723266,-0.3242892,-0.27156246,-0.4385664,-0.5670019,-0.65184456,-0.7230311,-0.7835756,-0.7719742,-0.81315327,-0.8158437,-0.38703734,0.64838874,0.7194334,0.93922985,0.6322341,0.32637537,0.23289435,0.26597792,0.12948607,0.023064714,0.08185129,0.08494228,-0.07463321,-0.14095898,-0.01329666,-0.09584604,-0.17789838,-0.01851755,0.47465825,0.9018936,1.040921,0.9625,0.7105785,0.8025366,1.0543398,0.99358106,0.51952744,0.34368122,0.18631087,0.06939785,-0.018864188,0.023654927,0.075030774,0.04655874,0.042959217,-0.010415267,-0.095583156,-0.16695924,-0.20829879,-0.2820441,-0.34872684,-0.4193465,-0.43831065,-0.36721927,-0.45374018,-0.52379817,-0.57455015,-0.5396089,-0.18507193,-0.21799706,-0.055400614,0.02680901,-0.20942831,-0.3392616,-0.43502694,-0.5138136,-0.56460416,-0.6076304,-0.43331403,0.41265392,0.5768955,0.5418426,0.42221177,0.19123052,0.072045326,-0.018368308,0.048936684,0.015723292,-0.13234091,-0.24224283,-0.32394284,-0.3984427,-0.38066408,-0.35952133,-0.4432652,-0.5061786,-0.57195103,-0.62747157,-0.66476095,-0.6983979,-0.73978955,-0.7789186,-0.81498796,-0.8539058,-0.86994314,-0.739795,-0.69065255,-0.7615081,-0.8073695,-0.85174274,-0.8887481,-0.92264706,-0.9510476,-0.9760351,-0.99484175,-1.009589,-1.0309465,-1.0497388,-0.81371844,-0.012626346,-0.001572188,-0.19132902,-0.29493973,-0.33221665,-0.3396705,0.21772344,0.273938,0.1909804,0.9997295,0.67375135,0.4091278,0.21176912,0.077993795,-0.027975503,-0.09167381,-0.16381411,-0.22495826,-0.28422233,-0.34152445,-0.38720104,-0.42182222,-0.45655015,-0.48788637,-0.54434085,-0.6089442,-0.64442647,-0.6807214,-0.70707047,-0.6539647,0.1973622,0.38813052,0.01669256,-0.15134333,-0.1424808,-0.027900722,-0.16215353,-0.17875557,-0.20556608,-0.30925062,-0.39219773,-0.4559739,-0.50831264,-0.55559844,-0.6034123,-0.62190247,-0.64166254,-0.6635225,-0.68494403,-0.7089235,-0.7292937,-0.7590909,-0.79588974,-0.82097566,-0.8397816,-0.87067324,-0.86219,-0.8927905,-0.87475073,-0.91090393,-0.9437541,-0.976969,-1.0018328,-1.0192276,-1.0044074,-1.0150174,-1.0013201,-1.0220681,-1.0471525,-1.0786684,-1.0968602,-1.1091818,-1.1119671,-1.1270812,-1.1481048,-1.1547282,-1.1344461,-1.1714319,-1.2424434,-1.2624578,-1.3010476,-1.3211281,-1.3232136,-1.3563259,-1.3678195,-1.2528741,-0.9552491,-0.96793175,-0.9871464,-1.0420479,-1.1051126,-1.1422627,-1.1636288,-1.1788762,-1.2004881,-1.2231419,-1.2516751,-1.3074857,-1.3306493,-1.3412712,-1.3602508,-1.3829223,-1.3899515,-1.3849578,-1.4106106,-1.4010488,-1.4227781,-1.429732,-1.4172813,-1.4696898,-1.5098498,-1.526382,-1.5462534,-1.5730717,-1.575551,-1.6032567,-1.6046015,-1.6054672,-1.6445284,-1.6951463,-0.96598846,-0.06344107,-0.24128352,-0.38989955,-0.3524924,-0.22218989,0.123523846,0.03302994,0.45040464,0.22116457,-0.01597463,-0.137992,-0.23464662,-0.34393686,-0.4275065,-0.49438876,-0.5629102,-0.63093215,-0.69558996,-0.7447522,-0.78482234,-0.8434348,-0.8774078,-0.92238796,-0.9540367,-1.0322613,-1.0536146,-1.127703
+0.25829685,0.047239978,0.24959217,0.44926924,0.5069251,0.7545599,0.8510287,0.85895777,0.8349585,0.86641073,0.8668667,0.85347545,0.94812024,0.5963184,0.5681478,0.85230994,0.6199867,0.4576055,0.15685336,-0.058221735,-0.2914853,-0.47443807,-0.4674828,-0.56349003,-0.5775456,-0.599229,-0.6602174,-0.7097603,-0.71950597,-0.7254967,-0.75819844,-0.802939,-0.83453,-0.8561988,-0.82684827,-0.87438554,-0.98394984,-1.0221187,-1.0227064,-0.95292264,-0.762643,-0.79640913,-0.83652174,-0.8092929,-0.8687289,-0.8614343,-0.88179886,-0.89634854,-0.9158995,-0.95536983,-0.99149036,-0.8385455,-0.5913595,-0.74423826,-0.5341605,0.97937083,1.0826263,0.70027035,0.49073327,0.21007198,0.6841364,0.87629116,0.35886794,0.66492265,0.65865856,0.31930643,0.21873747,0.008006681,-0.14232765,-0.21012177,0.049173314,0.006861139,0.87664014,0.6419341,0.22717603,0.21110505,0.03583656,-0.06836106,-0.26054782,0.66730106,0.5228416,0.20092745,0.57317936,0.6201473,0.23097871,0.72473574,0.53860456,0.34356263,0.11030932,-0.024967425,-0.121897995,-0.2819563,-0.3190781,0.040392566,0.70977926,0.5636122,0.36540627,0.5244232,0.48082042,0.29119068,0.229699,0.26689845,0.60274994,0.86759627,0.5446329,0.22375642,0.09829028,-0.0017376319,-0.103738606,-0.16422166,0.118550226,0.26335055,0.012774851,0.61036086,0.65333956,0.3058322,0.1356476,-0.049642976,-0.19712436,-0.2968663,-0.362835,-0.36186123,0.11811505,0.07917848,-0.036884125,0.31100953,0.070639506,-0.18469778,-0.3145998,-0.2950015,-0.14854287,-0.33105403,-0.41277838,-0.49233174,-0.5534786,-0.6118528,-0.1698758,0.03666583,-0.22276296,0.07941005,-0.070236474,-0.22626223,-0.39784577,-0.4808724,-0.50843686,-0.43582934,-0.06276913,-0.281941,-0.41691828,-0.4581449,-0.18359524,-0.4043604,-0.535814,-0.58906233,-0.65526724,-0.6733991,-0.622493,-0.4761484,-0.42483968,-0.4377541,0.20319891,0.20323305,-0.11897692,-0.28398347,-0.31381333,-0.3956379,-0.5233834,-0.5898876,-0.55509067,-0.5916521,-0.55429566,-0.5509254,-0.70474535,-0.7474638,-0.80563754,-0.71322095,0.0516365,0.80481076,0.2584754,-0.017949041,-0.16579226,-0.2788475,-0.36515546,-0.4065564,-0.50599897,-0.19556467,0.6535932,0.36726308,0.29471755,0.163514,-0.021954823,-0.11304207,-0.03028955,0.00075931475,-0.1476355,-0.23602799,-0.23781012,-0.28933346,-0.1754848,0.07155284,-0.16551411,-0.31538004,-0.3845322,-0.18600704,-0.060026757,0.60426784,0.3889802,0.13604566,0.2636358,0.14141847,-0.010100141,-0.0975887,-0.1489071,0.41673586,0.68244886,0.38539985,0.2153035,0.120055735,0.018932525,-0.05642744,-0.14570703,-0.19871478,-0.22729489,-0.30145627,-0.3692606,-0.33337912,-0.36871684,-0.40187314,-0.26803827,-0.17462942,-0.28074694,-0.35552752,-0.26979715,-0.07722688,0.078627646,0.1576185,0.2181273,0.21150787,0.20262378,0.2016087,0.2047687,0.41051823,0.6324683,0.59046185,0.5893785,0.61392987,0.6304796,0.6128885,0.6050935,0.96218276,0.9649684,0.86812055,0.82330495,0.84514076,0.813027,0.7891904,0.797106,0.8689618,0.8576994,0.8108094,0.8200675,0.845343,0.813169,0.88167495,0.899892,0.925212,0.92143345,0.8669584,0.7951828,1.097825,1.0232662,1.0270135,1.0722506,0.9762554,0.97585034,0.9992006,0.97129786,0.9446244,0.95327544,0.95079446,0.97458434,1.0134969,0.97870815,0.95951843,0.9551246,0.9995465,1.0444106,1.0693454,1.0564774,1.0723491,1.0882605,1.1224468,1.1831727,1.2474723,1.2257874,1.2284641,1.2211354,1.2835974,1.257499,1.2170719,1.2132163,1.2133759,1.1968479,1.1607541,1.2572477,1.2444823,1.206613,1.2098433,1.1789554,1.1026242,1.0978861,1.058133,1.0522609,1.130923,1.1498876,1.1188205,1.1282277,1.2471261,1.2871537,1.3293619,1.2712121,1.3122932,1.4394164,1.5328438,1.4442663,1.4294143,1.4658188,1.5155061,1.4902374,1.4108198,1.3550091,1.2871592,1.2948959,1.2708968,1.2817857,1.2732981,1.2587975,1.3098115,1.4246585,1.3991921,1.4592485,1.4727364,1.3887215,1.3852357,1.3153102,1.2445934,1.3063998,1.3055675,1.343956,1.3576636,1.4673569,1.4428706,1.619817,1.7169673,1.6217992,1.3679067,1.4722935,1.6022015,1.605401,1.8174334,2.0037496,1.9596697,1.9776766,2.1392848,2.2883863
+0.18792693,-0.3029473,-0.3790779,-0.41503805,-0.22366153,0.004321918,-0.026097205,-0.12564828,-0.17847896,-0.09102273,-0.21867959,-0.26714057,-0.31939745,-0.46155912,-0.44047832,0.4264942,0.60072505,0.502085,0.35642883,0.08339335,-0.05246767,-0.26739824,-0.356883,-0.2545351,-0.02330796,-0.069630414,-0.16310394,-0.30878454,-0.40979654,-0.47707772,-0.53463006,-0.6110492,-0.66505194,-0.73996896,-0.80770624,-0.8830263,-0.9383959,-1.0066445,-1.0328236,-1.0178095,-0.9190799,-0.832547,-0.99669266,-1.0378743,-1.0971951,-1.1284416,-1.1541358,-1.1725911,-1.197047,-1.2271527,-1.2437053,-1.2617881,-0.55427235,-0.39668941,-0.265033,0.09191416,-0.22190592,-0.37765926,-0.37383613,-0.16630368,0.8451265,1.0075846,0.38941213,0.6509571,0.6645254,0.22813196,0.039355446,-0.11060341,-0.25470677,-0.37640494,0.60687554,0.6603346,1.0896729,0.60116154,0.33824864,0.5949321,0.19383372,0.52914894,0.17808194,0.050122414,-0.09127103,-0.24628611,0.38424307,0.41089648,0.05555548,0.0373899,-0.07973407,-0.17399935,-0.2977523,-0.39231774,-0.37157643,-0.4747538,-0.45665705,-0.4504681,-0.37661105,-0.3782891,-0.48993734,0.05294702,0.29334706,0.044709902,0.12716275,0.6058161,0.6285336,0.3821463,0.13611154,-0.087916404,0.6848388,0.6967766,0.251526,0.069669574,-0.06860404,0.5499191,0.14417723,0.65951645,0.54325736,0.10943465,-0.022044849,-0.06379232,-0.20406653,-0.32976606,-0.3154301,0.043107282,-0.008756701,-0.09978557,-0.36444664,-0.40230197,-0.4693656,-0.5889847,-0.68344283,-0.80065656,-0.91941476,-0.77389026,0.6975855,0.30115706,0.04903311,-0.18197131,-0.34753594,-0.4213987,-0.56460506,0.2641939,0.1805096,-0.0638883,-0.27372983,-0.429515,-0.51652575,-0.6331224,-0.7019774,-0.8120982,-0.8579848,-0.94513613,-1.0145862,-1.1528083,-1.212776,-1.2654018,-1.3137646,-1.3582168,-0.46591935,0.18506859,-0.19862762,0.045548964,0.17398125,-0.16048025,-0.31277606,-0.4831542,-0.63183475,-0.6617,-0.74164945,-0.75537366,-0.37519026,-0.43629307,-0.6102549,-0.72842824,-0.8575648,-0.8755799,-0.9054595,-0.63338745,0.39041477,0.11904147,-0.082303256,-0.31146955,-0.45444167,-0.5490939,-0.624151,-0.68425703,-0.76890504,-0.81497204,-0.5563836,-0.33496407,-0.55893815,-0.65102965,-0.68134135,-0.69008553,-0.7335766,-0.7546567,-0.77757007,-0.78655547,-0.7605324,-0.84418476,-0.9303783,-0.93863714,-1.0042926,-1.0392143,-1.0397818,-1.0247027,-1.0524421,-1.0715346,-1.0596743,-1.0458097,-0.833328,-0.73616266,-0.79610777,-0.835423,-0.86454105,-0.7477241,-0.5316364,-0.6682592,-0.7530885,-0.8020458,-0.8473316,-0.86533046,-0.9033434,-0.94044447,-0.9303756,-0.99166965,-0.98052925,-0.9484111,-0.9880798,-1.0081204,-0.99602187,-1.0294331,-1.0354403,-1.0066952,-0.9066279,-0.7597412,-0.63755774,-0.5189125,-0.4888699,-0.45115596,-0.46733838,-0.4397714,-0.45376676,-0.22756408,0.22280012,0.15052347,0.13903089,0.08026534,0.06725928,0.03287499,0.04988997,0.37845922,0.33445004,0.28399235,0.28943208,0.32792252,0.28970477,0.29542598,0.2997677,0.34916812,0.35925555,0.3147856,0.35568714,0.405366,0.31416398,0.36547428,0.37939602,0.35561618,0.3586995,0.37730673,0.35868487,0.38110626,0.37804446,0.3474681,0.41613248,0.36274505,0.3724754,0.3814611,0.3727932,0.41798043,0.4246058,0.40240473,0.4087058,0.4659741,0.44034797,0.460238,0.4250605,0.4914633,0.4786942,0.4899403,0.4696052,0.44671068,0.43069154,0.41539824,0.3915684,0.38619655,0.3984676,0.41467702,0.42274767,0.4264391,0.4316823,0.4515463,0.45679367,0.48346484,0.4781373,0.43054128,0.45889166,0.5540287,0.5320935,0.5135869,0.49014294,0.43874925,0.4348791,0.42956367,0.4906391,0.5322318,0.51601994,0.45280856,0.46192014,0.48861396,0.4569103,0.4947697,0.46449655,0.44588208,0.5013994,0.5347508,0.4927783,0.62304187,0.6440798,0.70067066,0.6338066,0.60811985,0.5731026,0.55203056,0.52935237,0.52294457,0.52045834,0.5260173,0.53276634,0.50845444,0.5240212,0.62660694,0.74502563,0.71418107,0.61836755,0.6547861,0.5865324,0.58646655,0.5915954,0.5923796,0.5898899,0.60762334,0.764928,0.67786664,0.7311325,0.8452289,0.85391325,0.6855499,0.70178777,0.82759655,0.8279328,0.98652077,1.0921766,1.1907494,1.0656526,0.41717544,0.13306142
+-0.33705884,-0.6522865,-0.75225973,-0.789925,-0.8148155,-0.82798505,-0.7695472,-0.7720056,-0.7479447,-0.7875854,-0.84818715,-0.7755746,-0.8197504,-0.8964906,-0.9207097,0.2676943,0.40801957,0.20797671,0.42013434,0.1316862,-0.124246046,-0.2900064,-0.43150258,-0.18809555,0.8003387,0.33045715,0.12702249,0.044048596,-0.09943162,-0.27096206,-0.3837291,-0.38494968,-0.35314345,-0.53151125,-0.6152214,-0.7389041,-0.79280007,-0.7950758,-0.7682926,-0.44297832,-0.5540782,-0.7792946,-0.67811394,-0.7910069,-0.871249,-0.92014027,-0.92437685,-0.9219599,-0.93785155,-0.96308935,-0.9555507,-0.99135506,0.39277583,0.15033837,-0.07254349,0.3880552,0.024256822,-0.22117093,-0.3040133,-0.20593861,0.66751075,0.21675666,-0.053783856,0.31605452,0.15964356,-0.14883825,-0.3116879,-0.34247494,-0.4315409,-0.5213528,0.043274175,-0.071896814,0.002303727,-0.1005404,0.49714655,0.49175894,0.0917625,-0.07445167,-0.067314655,-0.20002893,-0.41128832,-0.5357419,0.4880463,0.25681257,-0.013819117,-0.18660612,-0.418473,-0.47229934,-0.5358383,-0.62983465,-0.67523426,-0.681677,-0.61382514,-0.7363959,-0.63469243,-0.7887841,-0.88453174,0.50698215,0.20951726,0.21001472,0.44610453,1.2660482,0.9195292,0.3417647,0.10814835,-0.047191795,-0.14955278,-0.2409411,-0.36113936,-0.44863492,-0.5652987,-0.68275005,-0.59617287,0.4010224,0.06812821,-0.26315838,0.29673368,0.53757083,0.10221255,-0.13872188,-0.28699937,-0.450849,-0.6821455,-0.7993078,-0.94529426,-0.7889818,-0.92487985,-1.0325735,-1.1126771,-1.1890342,-1.2905128,0.08835548,0.29155612,-0.0028869174,-0.31457794,-0.54736805,-0.6786747,-0.8090211,-0.9144776,-0.98809266,-0.9888176,-0.564169,-0.69810456,-0.86367536,-0.97771764,-1.0982682,-1.2213539,-1.2518957,-1.2555296,-1.3026198,-1.3563188,-1.4019275,-0.62415874,-0.32071072,-0.6568899,-0.75936615,-0.5598664,0.74181765,0.12550355,0.36834848,0.17356037,-0.13823712,-0.21454982,-0.50066745,-0.7092165,-0.77528197,-0.84704137,-0.8893553,-0.99029446,-0.9316496,-1.0247002,-1.1291387,-0.70299864,-0.54542726,-0.73693097,-0.06216846,0.02730615,-0.33638448,-0.616018,-0.7464894,-0.8277933,-0.88086003,-0.9565335,-1.0224129,-1.0701528,-1.1403149,-1.0173413,-1.047027,-1.0994824,-1.1752962,-1.162299,-1.1403666,-1.2098312,-1.2569771,-1.2587252,-1.2261732,-1.2614491,-1.3128388,-1.391885,-0.9765584,-0.6630164,-0.88366705,-0.95188653,-0.9976196,-1.0802891,-1.1633059,-1.1574931,-0.9221207,-0.72352034,-0.87865925,-0.9989456,-1.0377913,-1.0496377,-1.0727334,-1.1449051,-1.21278,-1.252681,-1.2928599,-1.3360538,-1.3569602,-1.3852128,-1.4178774,-1.3959782,-1.4273356,-1.3850336,-1.3360713,-1.3933198,-1.4491141,-1.4497778,-1.47254,-1.4527502,-1.371455,-1.2253122,-1.0186769,-0.9044259,-0.84211576,-0.87173164,-0.74782884,-0.73003066,-0.7312473,-0.7138877,0.14861724,0.35449806,0.1575085,0.105153814,0.01911937,0.0063299015,0.019287307,0.9747548,1.2342448,0.96333414,0.8723556,0.762584,0.6915593,0.6487237,0.58415926,0.5434165,0.5304879,0.51349086,0.5048307,0.49401605,0.4792596,0.42177576,0.4810785,0.52438414,0.4719088,0.43671006,0.43265188,0.5291245,0.59182084,0.4699502,0.48772943,0.50897336,0.45606413,0.42130324,0.40930158,0.504614,0.45004028,0.4340841,0.38402402,0.39039662,0.43342626,0.408516,0.44064957,0.42571414,0.437729,0.43438566,0.45376015,0.4116848,0.4040307,0.39680624,0.40358794,0.456366,0.50197065,0.5564514,0.56119967,0.50573975,0.46404177,0.48261583,0.51604915,0.49816155,0.4709792,0.509441,0.51069695,0.54863787,0.59537756,0.45634288,0.4135768,0.39963186,0.34501246,0.33712125,0.34461492,0.3523444,0.36828563,0.37473232,0.40406448,0.5059196,0.49873865,0.44939244,0.47635984,0.45971215,0.49405193,0.5755806,0.5931573,0.66807973,0.8667464,0.7521116,0.9473289,0.72749233,0.646579,0.56847095,0.5446765,0.5559192,0.52280265,0.5186525,0.5027547,0.4761188,0.52294815,0.6277457,0.8350406,0.7605833,0.60575277,0.5236524,0.41032246,0.46288598,0.4910701,0.44998288,0.43228692,0.46814513,0.58505696,0.7534975,0.70295453,0.8229726,0.8250812,0.8226877,0.73962957,0.8033707,0.8448066,0.6364989,0.48756218,0.36182147,0.10216215,-0.24065472,-0.37080362,-0.41566953
+0.14278252,-0.16905676,-0.33931005,-0.41619623,-0.360711,-0.3894723,-0.27829137,-0.288863,-0.41040617,-0.28965947,-0.46377948,-0.43215644,-0.45063248,-0.5446036,-0.48026466,0.8539485,1.1944588,1.5163764,1.2034469,0.7781575,0.5216372,0.31543946,0.1532569,0.13143523,0.1383775,0.08126564,1.014345,0.9277004,0.67541146,0.4340012,0.28942487,0.1624523,0.16022806,0.0008328073,-0.095312856,-0.18758178,-0.2590455,-0.35309356,0.5871382,0.9204629,0.41541016,0.23449571,0.12726098,0.007881638,-0.15129083,-0.22768939,-0.28733948,-0.3601802,-0.43372905,-0.535926,-0.5658225,-0.6183199,0.08901718,0.06872594,0.6879287,0.569077,0.40067077,0.39714915,0.23062475,0.034336183,0.6475047,0.3735849,0.092986256,0.7310611,0.5410752,0.21689798,0.037244234,-0.05128905,-0.12793791,-0.21813615,-0.30044433,-0.399525,-0.2726073,-0.15762393,0.9557389,0.72163534,0.3877794,0.25512213,0.5227822,0.3154711,0.06370619,-0.12833561,-0.018150568,-0.09251575,-0.22893444,-0.3695727,-0.5631467,-0.66199267,-0.71733284,-0.78911406,-0.8105897,-0.87639064,-0.913841,-0.95531553,-1.0285716,-0.8627105,-0.5860121,0.52642787,0.22872366,-0.07790622,-0.024846442,-0.02805461,-0.3513622,-0.6272172,-0.77863663,-0.6970192,-0.40697747,0.102381155,-0.26295555,-0.48072952,-0.6721074,-0.867559,-0.9657949,-0.7741331,-0.899716,-1.0674933,-1.0714803,-0.94013333,-1.0236144,-1.0752203,-1.1617078,-1.1629851,-0.94146574,-0.96488893,-0.1047515,0.4531392,-0.0886755,-0.35795426,-0.5045111,-0.6256149,-0.120981395,-0.11282849,0.88096464,0.92127824,0.36271966,0.12322427,0.4737087,0.6745566,0.3052136,0.1314202,0.2892578,0.29806665,0.010336388,-0.18283431,-0.33570945,-0.48619518,-0.594113,-0.4610442,-0.31048253,-0.5034405,-0.6291656,-0.7316632,-0.5257046,-0.41641718,-0.64085,-0.773635,-0.8672093,0.24561335,0.2682948,-0.017604623,-0.14149661,-0.29321113,-0.35779548,-0.48707956,-0.5961267,-0.6600909,-0.68263614,-0.76973784,-0.1545144,0.016521562,-0.29704124,-0.44598937,-0.5297814,-0.649132,-0.6632926,-0.32715428,-0.23055138,-0.50214076,-0.64373314,-0.7307942,-0.782846,-0.8336283,-0.8895925,-0.9227838,-0.97775805,-1.0347418,-0.33047032,0.02771255,-0.26888666,-0.40825278,-0.47476017,-0.55695117,-0.6186614,-0.6746694,-0.6926185,-0.73585355,-0.7570504,-0.83907557,-0.8800341,-0.9024786,-0.5562818,-0.61795926,-0.55268466,-0.62421656,-0.72048956,-0.8216619,-0.82323515,-0.71844774,-0.53202385,-0.6286836,-0.7401972,-0.44601184,-0.29089907,-0.41984764,-0.55860627,-0.6314365,-0.72090495,-0.7736352,-0.82577425,-0.854946,-0.9223294,-0.9695008,-0.94184387,-0.97886115,-0.9744588,-0.90496147,-0.92426896,-0.9763847,-0.99307394,-1.010333,-0.94356334,-0.58040756,-0.4728787,-0.30969784,-0.20709786,-0.109104514,-0.15247957,-0.040127706,0.007948209,0.030491192,0.13012482,0.8025387,0.84078646,0.6576355,0.6440356,0.6933499,0.831005,0.899027,1.0228553,1.105096,1.10999,1.1283445,1.0918171,1.1437743,1.2236834,1.1931326,1.143405,1.1356333,1.1337683,1.2828534,1.3650612,1.1699753,1.1716385,1.2387284,1.3583163,1.3417767,1.3978883,1.456715,1.9427248,2.1988509,2.0321116,2.0127907,1.9509839,1.9879112,1.9780345,2.0175312,2.167258,2.1491761,1.9592627,1.9341475,1.8233526,1.7660483,1.7647122,1.8499572,1.9537711,1.9196765,1.8002735,1.8047309,1.7750796,1.7815566,1.8234246,1.8379712,1.9354792,2.0040379,2.0736704,2.1179383,2.1176853,2.1669207,2.283453,2.3803458,2.3103614,2.2248487,2.263477,2.3725936,2.3760767,2.427195,2.4357162,2.235164,2.0830507,2.1167102,2.1154947,2.1448123,2.1614633,2.0438643,1.986547,2.128796,2.4534044,2.4628243,2.5500383,2.6011016,2.6907725,2.7783723,2.8880324,3.0386415,3.1979299,3.088748,2.3080325,1.7124546,1.2201498,1.3273094,1.5543312,1.765861,1.9324124,1.9422098,2.0143282,2.17388,2.191968,2.2134206,2.106715,1.2131658,0.6195675,0.5729185,0.7803018,1.1212541,1.260619,1.4165728,1.5485694,1.6017675,1.6606648,1.8015398,1.8520726,1.8518157,1.1623744,0.4122497,0.15605916,0.23558937,0.30352634,0.2075899,0.040118013,0.09362881,0.080072045,-0.044637557,-0.073961854,-0.14297037,-0.08037016
+0.70035774,0.81698704,0.81997615,0.6892977,0.52234006,0.25978458,0.13918723,0.04695804,-0.06679343,-0.030760866,-0.12601656,-0.17060421,-0.16604875,-0.14039795,-0.17972215,0.20703115,2.326014,2.5784452,2.091237,1.8982462,1.7168574,1.4827576,1.2296332,1.0569155,0.9021921,1.0765649,2.3189642,2.1392264,1.9095225,2.065054,2.1130905,2.132851,2.193828,1.7827334,1.4813118,1.2799298,1.1463563,1.1169226,1.7072021,2.0408723,1.7315538,1.4421993,1.2169645,1.0285068,0.8328804,0.7059458,0.57982177,0.46791482,0.38855076,0.3509825,0.31847364,0.2885621,1.9935236,1.7398765,2.1714287,1.8342826,1.9313657,1.9290751,1.6165328,1.4596866,1.4941399,1.2543232,1.0834227,1.16434,1.0259771,0.85262,0.6679627,0.5672947,0.5184922,0.4690417,0.41280434,0.3348897,0.7980038,1.2047386,1.8832812,1.765394,1.4354217,1.2403067,1.1920524,1.0011654,0.7539774,0.60262215,0.5386418,0.38893032,0.33134472,0.25380838,0.0784702,0.01918852,0.012656052,-0.072268024,0.4819045,0.6102245,0.9551835,1.1323074,0.8915585,0.7025043,0.5222158,0.9473951,0.85010374,0.680211,0.50151706,0.36149615,0.07505646,-0.10270542,-0.31882563,-0.11548975,0.067511946,0.408436,0.30980092,0.18886836,0.09183161,-0.094120115,-0.26146758,-0.056314435,0.012574285,-0.10148783,-0.3037247,0.75157195,1.7088622,1.8378719,2.0735133,1.9972563,1.893835,1.6226707,1.2599723,1.0760456,0.8677387,0.7065904,0.5988718,0.45471936,0.33299476,0.2116168,1.0298787,2.17841,1.7715232,1.3767431,1.5460162,1.4243758,1.1755725,0.99499273,1.7612569,1.950482,1.4563756,1.1776817,0.93702596,0.7357468,0.6035571,0.49163538,0.43907186,0.3758536,0.28617078,0.18024309,0.08825143,-0.019748125,-0.12758128,-0.23060673,-0.32599723,1.1892769,2.2637906,1.7758794,1.4617224,1.3951477,1.2120211,1.0357803,0.8945416,0.8802339,0.84065247,1.4867109,1.6982081,1.3434463,1.1233561,0.9821056,0.85398245,0.7694637,0.7371238,0.6620615,0.58587635,0.43305844,0.31791478,0.23975264,0.18682393,0.1641604,0.13685308,0.09487216,0.0482764,0.020401414,1.0889726,1.4122299,1.4625065,1.5790954,1.262176,1.0875524,0.9228313,0.8152874,0.77266526,0.7110833,0.6166532,0.55052423,0.5379473,0.4772935,0.41222098,0.44166297,0.52393365,0.47292697,0.38705313,0.2780471,0.29115215,0.23333932,0.1539144,0.18016544,0.16172168,0.15176232,0.1390234,0.10531078,0.07436371,0.100914806,0.08082403,0.049769174,0.066629246,0.064046904,-0.0135372095,-0.04407056,0.0020912848,-0.09408429,-0.06450018,0.0055202357,-0.085653275,-0.040729787,0.028668184,0.06736265,0.03120562,0.77769876,0.89486957,0.8690124,0.9157157,1.007618,1.0135527,1.0053397,0.9818349,0.9370662,0.8803682,1.3819426,1.509288,1.3844702,1.2995971,1.2538359,1.1887871,1.2308068,1.2629006,1.2912407,1.3864396,1.477686,1.478123,1.4465475,1.521383,1.5253911,1.4993317,1.4495654,1.4437549,1.3649032,1.5065696,1.3969935,1.3396347,1.4085895,1.5509799,1.6314874,1.6700094,1.7320812,1.8453138,2.184096,2.1404548,2.1705942,2.2014158,2.2196655,2.294587,2.3962626,2.468464,2.506042,2.3835971,2.3335114,2.19609,2.1543243,2.1077423,2.1504679,2.2129538,2.2703483,2.2171826,2.2351236,2.2101076,2.2594247,2.325203,2.3622339,2.3790674,2.5204096,2.6600168,2.7896466,2.8155406,2.8256488,2.9250817,3.0628247,3.0242617,2.9363952,2.8791394,2.9598594,3.0242138,3.1040182,3.1708493,3.0885005,3.0080614,3.0090473,3.0361617,3.0281968,3.045382,2.9208903,2.91186,2.902718,3.1677823,3.4019275,3.5601335,3.4878335,3.5593758,3.6464844,3.5915296,3.2493863,2.8423645,2.1240256,1.6928204,1.4488385,1.5589067,1.5920007,1.5055816,1.52258,1.5585365,1.6680816,1.7389834,1.7677484,1.7971289,1.8572559,1.7135522,1.4407191,1.1330471,0.9822557,0.8790107,0.78479046,0.7826569,0.8401064,0.94686973,1.0403231,1.1520298,1.1601316,1.0008456,0.92639005,0.87230563,0.759195,0.63744926,0.81971633,1.0082953,0.9541387,0.89581347,0.79183304,0.68529636,0.67580736,0.71850234,0.6233758,0.54581916
+-0.3698267,-0.7244834,-1.1867636,-1.4986544,-1.672271,-1.8193707,-1.8981086,-1.8405395,-1.6987886,-1.6845725,-1.683964,-1.742962,-1.8981152,-2.0203593,-2.061542,-1.3646683,-0.22361745,-0.43818635,-0.9308301,-1.0180715,-1.1842,-1.3285414,-1.4868698,-1.643835,-1.6772649,-1.5383623,-0.01703022,-0.8365196,-1.1992583,-0.4170962,-0.40439963,-0.9343424,-1.1152903,-1.3164291,-1.387739,-1.4768285,-1.5817033,-1.1432314,-0.6526394,-1.0431914,-0.6165365,-1.0032246,-1.2403111,-1.316105,-1.4454968,-1.2521958,-1.1377496,-1.3549495,-1.5220563,-1.6287212,-1.7114708,-1.7152016,-1.2685269,-1.3029797,-0.9301357,-1.1560384,-0.8154249,-0.5261555,-1.0394113,-1.1881394,-0.9328846,-1.157762,-1.3680611,-1.5379748,-1.594893,-1.6721475,-1.6801363,-1.7076882,-1.7871474,-1.4724023,-1.544158,-1.7535107,-1.8209195,-1.5567589,-1.0802965,-1.4250959,-1.6010749,-1.6995295,-1.4108937,-1.5776277,-1.6425657,-1.7280846,-1.8102552,-1.8761318,-1.9416184,-2.0308757,-2.0472667,-2.0549927,-1.8898841,-1.2763339,-1.1720055,-1.5332942,-1.0947242,-1.0256053,-1.398685,-1.6754482,-1.737494,-1.1788862,-1.430054,-1.586553,-1.7507629,-1.8552653,-1.9122124,-1.8326195,-1.8212686,-1.3370141,-1.348341,-1.5488884,-1.6995641,-1.3942517,-1.5405542,-1.7460873,-1.8669429,-1.5664488,-1.6432524,-1.7625539,-1.8927498,-1.3290615,-1.3513691,-1.0353737,-0.94379914,-0.9483072,-1.2412486,-1.2645273,-1.5603497,-1.6901608,-1.8133739,-1.90417,-1.4529991,-1.5481153,-1.7650001,-1.9279081,-1.8393922,-1.1862515,-1.6046302,-1.7388995,-1.8427676,-1.802978,-1.6548915,-1.8322948,-1.8149645,-1.7799475,-1.9630259,-2.0800128,-2.1363,-2.0667782,-2.1194513,-2.1386437,-2.12035,-2.2587795,-2.3699105,-2.293414,-2.1643035,-2.259654,-2.3277202,-2.4043407,-2.4782224,-2.041327,-1.1977324,-0.9851239,-1.427696,-1.512306,-1.5087044,-1.621206,-1.7180324,-1.691659,-1.6846433,-1.6881015,-1.4963559,-1.7118047,-1.8443182,-1.935647,-1.9663587,-2.036339,-2.0447497,-2.1133041,-2.1687353,-2.1614811,-2.1886034,-2.231238,-2.21741,-2.188191,-2.193719,-2.2534037,-2.279255,-2.31474,-2.1154041,-1.8447008,-1.6595886,-1.5262389,-1.719923,-1.7875996,-1.859067,-1.9481999,-1.889852,-1.7701168,-1.8641095,-1.9660937,-1.9850451,-2.0046055,-2.0039952,-1.9614911,-1.7011139,-1.7162087,-1.831032,-1.8835936,-1.8534627,-1.8945616,-1.9631181,-1.977731,-2.0156372,-2.050048,-2.0068388,-2.0057764,-2.0162215,-2.0562587,-2.0228443,-2.0619936,-2.0722928,-2.0978615,-1.4941115,-1.2149267,-1.3184116,-1.4280854,-1.4828829,-1.2622097,-1.2985713,-1.4850938,-1.5662308,-1.561554,-1.5914376,-1.3373382,-0.94788873,-0.4071618,-0.24822767,-0.28505003,-0.49519733,-0.40989238,-0.11514248,0.060346533,0.17847066,-0.26905757,-0.81105316,-0.9377299,-0.8262331,-0.40710354,0.014300961,0.33311546,0.43519092,0.7062506,0.9574599,1.1114845,1.0652945,1.1058381,1.1800492,1.2105868,1.2598574,1.2786486,1.160992,1.1428423,1.263498,1.1448647,1.1379559,1.2260566,1.3058248,1.3198936,1.398493,1.3949045,1.6657926,1.778051,1.7896134,1.8576307,1.8392063,1.8447579,1.9004526,1.8566934,1.9046237,1.870173,1.8458322,1.7870619,1.6806931,1.7041657,1.6593406,1.6820126,1.7959709,1.8733311,1.9564667,1.8719914,1.8809657,1.8835055,2.1072335,2.1449916,2.0756826,2.1428323,2.1996832,2.2864056,2.1621218,2.1424625,2.1801662,2.269463,2.2068665,2.2236786,2.224271,2.306139,2.3184528,2.2817917,2.297099,2.2276363,2.1875582,2.067645,2.1086884,2.1498208,2.2127125,2.3247867,2.174755,2.21537,2.1266117,2.0832903,2.1524785,2.0640702,2.1047406,1.8759997,1.0715182,0.4203009,-0.413163,-0.9038695,-1.1323998,-1.2120613,-1.4319866,-0.61130154,0.42324525,1.2438511,1.7138216,1.911464,2.070351,2.1437135,2.2417994,1.7577584,0.52148986,-0.5203063,-0.9003279,-0.9510365,-0.9439591,-0.8636347,-0.5078309,-0.31496215,-0.3082982,0.33596367,0.7535975,-0.019235957,-1.0328258,-1.2903126,-1.3609414,-1.3992624,-1.4518081,-1.447087,-1.4682343,-0.3765029,-0.6042526,-0.8647868,-1.1275114,-1.3275714,-1.2031491,-1.1785502,-1.3338816
+-0.33790216,-0.7178843,-0.72048795,-0.8089172,-0.8210963,-1.0240356,-1.0563295,-1.0814314,-1.0269928,-1.058947,-1.1114442,-1.0861776,-1.1134125,-1.0829245,-1.0652736,0.82267845,1.5752118,1.6460515,0.88178515,0.88128114,0.5344224,0.22878818,0.0048276335,-0.21286988,-0.40896368,-0.43462104,1.2145171,0.67789656,0.4180623,0.9647055,0.7374806,0.45679832,0.2782814,0.031223055,-0.15396254,-0.2659236,-0.40795356,-0.48197305,0.21942781,0.19828354,0.98913026,0.35884207,0.11377706,-0.0812487,-0.23602866,0.17969541,0.46659803,0.044135887,-0.14995849,-0.22755982,-0.33245435,-0.40122452,-0.073559925,-0.09603998,0.5378531,0.6235765,0.943014,1.1681548,0.8544381,0.5668317,0.85404956,0.5366495,0.3345163,0.14242871,-0.05629223,-0.22408924,-0.34689143,-0.42343396,-0.49224803,-0.59562343,-0.6822448,-0.7812305,-0.86265904,0.35121185,0.19134207,-0.16905908,-0.30598742,-0.42817092,0.51409996,0.27821937,0.047590945,-0.1230713,-0.315847,-0.46793646,-0.52639675,-0.64252883,-0.7723348,-0.60831,-0.5040043,0.3797318,0.82406557,0.34020567,0.28255528,0.07911733,-0.040220622,-0.115793124,-0.028018672,0.62519675,0.11395089,-0.033346962,-0.27002373,-0.43231624,-0.6083033,-0.566215,-0.43745682,0.4745015,0.3079777,0.26984122,0.16738041,-0.13128369,-0.35333633,-0.52518934,-0.6672211,-0.64285845,-0.81307185,-0.8605383,-0.98410475,-0.6772727,0.50167835,0.15517357,-0.15036745,0.18814136,-0.17498565,-0.3454277,-0.5365648,-0.6742534,-0.62568504,-0.51870215,-0.33001506,-0.42745408,-0.59415203,-0.74636054,-0.8703653,-0.1036233,-0.3592591,-0.49574035,-0.67288125,-0.79363906,-0.8972597,-1.0084256,-0.856123,-0.5779246,-0.7986536,-0.87551844,-0.37852052,-0.4431507,-0.6005546,-0.7467884,-0.20653921,-0.32837093,-0.2526192,-0.114033595,0.42483574,0.0503362,-0.3155432,-0.462135,0.49741244,0.042425442,-0.22821924,-0.14717624,-0.3196745,-0.2925138,-0.44017974,-0.59485286,-0.6885391,-0.6372712,-0.6796395,-0.7745315,0.19492121,-0.040728223,0.044142265,-0.2555552,-0.47204566,-0.6042756,-0.7103652,-0.8053851,-0.8879121,-0.9506568,-1.0372566,-1.0873326,-1.1490724,-1.1889815,-1.2262704,-1.244911,-1.2644165,-1.2785233,-1.3170531,-1.3853393,-1.4140636,-1.4102159,-1.4090841,-1.428649,-1.4194471,-1.4923948,-1.3987831,-1.3690165,-1.4006782,-1.4682411,-1.4656911,-1.4995923,-1.4935236,-1.4676485,-1.4017627,-1.3920588,-1.4299319,-1.4957113,-1.5044358,-1.5509001,-1.5667418,-1.5328181,-1.5337228,-1.5687222,-1.6314315,-1.5829663,-1.5977278,-1.6150074,-1.6513374,-1.605722,-1.5863156,-1.5837237,-0.40521136,-0.033248555,-0.39044735,-0.5271205,-0.64853805,-0.70354813,-0.7156148,-0.7879685,-0.83405966,-0.861135,-0.9386832,-0.56224585,-0.62615573,-0.5705222,-0.5592801,-0.38380092,-0.3927382,-0.5156439,-0.52807915,-0.53397584,-0.3957929,-0.35577762,-0.55635476,-0.5554722,-0.61348534,-0.59162694,-0.5394778,-0.46611643,-0.48562777,-0.53478754,-0.5010828,-0.28673697,-0.12931153,-0.041141834,-0.031114843,-0.061256137,-0.034509566,-0.09953624,-0.04033087,0.01315083,-0.050649535,0.12793814,0.09898169,0.06296663,0.081624225,0.013937224,0.17466328,0.13153115,0.39408055,0.45329067,0.4596693,0.45473886,0.37919313,0.41749164,0.42976594,0.39192867,0.4380885,0.34242883,0.37241054,0.49109542,0.5481481,0.53629565,0.50745046,0.48447382,0.66401047,0.57731295,0.52983016,0.4947343,0.45113516,0.47950083,1.4842601,1.4136,1.4625022,1.6287998,1.6453826,1.7068954,1.3925914,1.2795408,1.2434026,1.1179628,1.0577232,1.0041236,0.9574868,0.9628594,0.88826305,0.6222409,0.295213,0.29842344,0.48983586,0.5656721,0.5333787,0.46854466,0.15406947,0.19711654,0.33517912,0.20015077,-0.2469937,-0.4472469,-0.5530107,-0.532783,-0.51689625,-0.48420912,-0.524194,-0.5629094,-0.5304986,-0.64378536,-0.6416308,-0.6662182,-0.72999084,-0.7048445,-0.6297964,-0.5693915,-0.53599524,-0.57930857,-0.63755405,-0.6429559,-0.5761934,-0.5797176,-0.6062112,-0.636185,-0.84405667,-0.782048,-0.761605,-0.88118756,-0.82347894,-0.736207,-0.8371235,-0.7788201,-0.68613684,-0.6958926,-0.81206876,-0.794572,-0.80856997,-0.8659539,-0.8877742,-0.92055666,-0.86273456,-0.6601178,-0.36542457,-0.54024833,-0.5405867,-0.53192157,0.6518369,0.7865824,0.31781796
+-0.3667493,-0.4433605,-0.46674055,-0.620211,-0.67977667,-0.86237174,-0.9397526,-0.99171424,-1.0019624,-0.99031013,-1.0309248,-1.0539062,-1.0871608,-1.0995508,-1.1301056,0.7790012,2.0206625,2.0527253,1.4496275,1.2410413,0.92490757,0.7059645,0.47519386,0.28435197,0.17782862,0.1730451,0.7926131,0.6118494,1.2879982,1.5318949,0.94135594,0.7789963,0.592904,0.41987324,0.3042752,0.18265541,0.10875778,0.1961193,0.9526169,0.6352648,0.55599713,0.3606424,0.21055715,0.12714666,0.0363394,0.41234082,1.0930505,0.69476765,0.44317827,0.430981,0.30489305,0.20327435,0.16862804,0.88502526,1.2637463,0.96834946,1.003594,1.3149852,0.84805554,0.603899,0.804747,0.6832627,0.47415543,0.30917192,0.15085693,-0.0068701953,-0.14232622,-0.19333656,-0.31939936,-0.4608414,-0.55405843,-0.6348145,-0.6997704,-0.541175,-0.5301044,-0.64825714,-0.7159336,-0.6671905,0.78339684,0.42127612,0.17560633,-0.018849634,-0.18729755,-0.30824983,-0.3662317,-0.36017218,0.87605524,0.43080014,0.32519215,0.3104867,0.7309452,0.5875542,1.2908186,1.4823742,0.92172956,0.60440797,0.9207762,0.9067279,0.52649343,0.38220417,0.17611322,-0.025386784,0.4261812,1.0660231,0.7712228,0.3825388,0.35744214,0.21021794,0.051804658,-0.14316356,-0.30490136,-0.42880636,-0.53545856,-0.59467316,-0.6910803,0.4078599,0.22716497,0.41201398,0.5994417,0.6674441,0.37387025,0.26499155,0.013315719,-0.14276426,-0.26200482,-0.37207294,0.54003584,0.65551966,1.3541694,0.80208313,0.51873595,0.29144198,0.21684866,0.5121244,0.19028118,0.012192819,-0.14006115,-0.26551944,-0.3915972,-0.5122439,-0.4487161,-0.30705753,-0.48691982,-0.6165098,-0.7253413,-0.7353848,0.5418233,0.2777397,0.70414704,0.29817116,0.20911564,0.372385,0.48046958,0.45100605,0.12372516,0.025971573,0.68189514,0.3871241,0.11054589,0.35386172,0.39312208,0.1664053,0.06647204,-0.07537143,-0.18981637,-0.2184562,-0.2641848,-0.33492798,0.06933685,0.048454028,0.027062576,-0.14643107,-0.29735485,-0.43209696,-0.5596343,-0.67387855,-0.6041907,-0.40132326,-0.589835,-0.7053032,-0.80817986,-0.85557735,-0.90910244,-0.94714475,-0.8892436,-0.67473555,-0.6683248,-0.8476592,-0.8981346,-0.90939116,-0.94729793,-0.9987933,-0.9850353,-0.91395605,-0.9678875,-0.9852166,-1.0375472,-1.0683048,-1.0944581,-1.1293378,-1.1466388,-1.1872406,-1.2029216,-1.2032517,-1.2393588,-1.2690264,-1.2716706,-1.2869706,-1.013308,-0.7766855,-0.84505165,-0.9246457,-0.9869105,-0.9996814,-1.0567296,-0.9678186,-0.89033985,-0.9381418,-0.9699701,-0.9699626,0.20539953,0.4265963,0.04883689,-0.06907883,-0.17443146,-0.22869171,-0.2569984,-0.3379922,-0.3963895,-0.44512329,-0.49253505,-0.47746727,-0.4697867,-0.40616295,-0.3919639,-0.4585349,-0.48795992,-0.50105274,-0.49132758,-0.45839995,-0.3473915,-0.26997805,-0.3652773,-0.37179965,-0.38152295,-0.33162883,-0.19261892,0.09632954,0.024834078,-0.037634816,-0.0031782351,0.18681884,0.43478733,0.54975873,0.5610088,0.5352775,0.6350846,0.69938815,0.7406428,0.7662611,0.8497453,0.90977293,0.88053536,0.91088593,0.97618747,0.98023295,0.99832594,0.76560724,0.9296409,0.78528345,0.75767076,0.8255122,0.79982936,0.798008,0.8271004,0.8494566,0.887413,0.8865242,1.0025446,1.0952022,1.0959113,1.1467054,1.1742094,1.1678002,1.2105801,0.95445144,0.9403603,1.0196426,1.0366007,1.356147,1.9790504,2.144081,2.1166298,2.2710469,2.062612,1.731779,1.141217,0.8782714,0.9463283,0.8477837,0.9000993,1.0374314,1.0944555,0.9891255,0.7808582,0.55123574,0.5168878,0.5960238,0.8100442,0.8662776,0.7714751,0.5499984,0.40699416,0.38667294,0.5781871,0.5776421,0.33367026,0.2209218,0.26337215,0.28787154,0.22416727,0.21576901,0.15233031,0.119751066,0.082658306,0.055817563,0.04964057,0.028862465,0.002093386,0.03011119,0.08465569,0.15320502,0.13620377,0.13644643,0.056462694,0.031601604,0.032547083,-0.004229214,-0.07687099,-0.10611996,-0.18932877,-0.21408762,-0.23031968,-0.25106406,-0.21536149,-0.16353536,-0.14522582,-0.17166498,-0.14355956,-0.16116305,-0.2291698,-0.23036967,-0.27299803,-0.36958247,-0.39755148,-0.3923704,-0.422043,-0.4008472,-0.36706296,-0.28409058,-0.14656723,0.5931715,1.5333395,1.0472217,0.82574916
+-0.5289364,-0.6905159,-0.7221898,-0.8427514,-0.86815083,-1.0679166,-1.169786,-1.1912087,-1.1981921,-1.2200913,-0.011849511,0.58495533,0.3069621,0.24878006,0.12807103,0.81009597,1.8278294,1.4329847,1.1241782,1.069771,0.9585383,0.86583275,0.60224366,0.43365896,0.36160955,0.27598238,0.20282541,0.085126,1.8646655,1.4379668,1.1391075,0.9591756,0.8231754,0.70850563,0.53763175,0.3970564,0.25348145,0.32115343,0.28057718,0.14441831,0.08445412,0.015858296,-0.07816452,-0.1341109,-0.09311868,0.2803498,1.345639,1.0144455,0.90112597,0.97090006,0.732605,0.5381282,0.3603449,0.3366919,0.29008904,0.54892796,1.2364075,0.8586738,0.60277903,0.4199383,1.1846282,1.0776857,0.8042978,0.6477849,0.5227718,0.34946024,0.21966816,0.09142475,-0.013750274,-0.16093752,-0.17546104,-0.29800174,-0.3970739,0.4485696,0.9963982,0.6714738,0.37093413,0.14738046,1.08413,0.95869523,0.66369617,0.46534944,0.29465196,0.15673009,0.841076,0.7489322,0.7543591,0.60198796,0.38868356,0.33454368,0.22137795,1.1411858,1.2021164,1.5537977,0.99805534,0.74775475,0.53097606,0.3616563,0.57007086,0.6559541,0.31661028,0.03024054,-0.1218663,-0.2324126,0.5574841,0.64964795,1.0929189,0.6220103,0.31627196,0.15820712,-0.01542538,-0.18675129,-0.36840147,-0.569871,-0.7461022,0.26107424,0.3007431,0.07805863,0.059246678,0.9094373,0.7062043,0.38069004,0.10885164,0.18306643,0.19356814,-0.09423107,0.0151141845,0.54196894,0.5130392,0.30601364,0.11455618,0.18423137,0.31562135,0.9681468,0.62943554,0.3884463,0.2518979,0.10031925,-0.06184425,-0.2008812,-0.3038011,-0.39041963,-0.49618208,-0.6141734,-0.7237122,-0.811034,0.61790156,0.7517863,0.4768983,0.43664002,0.9609541,0.9712516,0.8293103,0.77989936,0.64503294,0.39578104,0.17245026,-0.014436733,-0.16263418,-0.2663756,-0.32791966,-0.08281124,0.56598675,0.3452969,0.09456302,0.029865105,0.09088196,0.042262632,-0.07308158,-0.17489682,-0.24542674,-0.33291048,-0.4455706,-0.5962036,-0.7248404,-0.8539696,-0.50568765,0.1874469,0.0015125312,-0.1223824,-0.2629697,-0.3520339,-0.41102964,-0.44544458,-0.2814337,-0.17709364,-0.23450406,-0.39036533,-0.46405637,-0.5089992,-0.515173,-0.5492263,-0.2787774,-0.2079383,-0.22259751,-0.14415754,-0.25393745,-0.33013776,-0.40629572,-0.48639464,-0.6666511,-0.71873736,-0.74908346,-0.74026537,-0.7760614,-0.8227156,-0.8521543,-0.88072735,-0.4956122,-0.20069586,-0.34243095,-0.44071192,-0.53038377,-0.5816957,-0.6335454,-0.6550141,-0.68016577,-0.69795084,-0.71830016,-0.46814534,0.37001485,0.339465,0.18940917,0.11048691,0.0067499615,-0.022122767,-0.045069575,-0.10981095,-0.16518481,-0.25698465,-0.31910765,-0.36356682,-0.3556711,-0.27818114,-0.31682009,-0.37637734,-0.34376383,-0.355834,-0.34251475,-0.28293455,-0.28111288,-0.20226185,-0.31565422,-0.3041722,-0.28488672,-0.21943817,-0.035961207,0.5223126,0.43199497,0.32813942,0.37877163,0.48623967,0.74593055,0.9477196,1.0265408,0.9524306,1.0115745,1.0478467,1.1162181,1.2244518,1.2115111,1.1966369,1.2224929,1.291293,1.362224,1.3674619,1.4186356,1.2684643,0.94641745,0.813422,0.78224564,0.8487685,0.7342124,0.762797,0.78410804,0.816791,0.7808145,0.6370859,0.8648263,1.1074134,1.1818855,1.1908555,1.2729552,1.3426745,1.3414023,0.8747413,0.7498313,0.8357087,1.0518849,2.1235359,2.3564024,2.3619804,2.3326108,2.1727767,1.8601186,1.5575507,1.4339793,1.2365837,1.1733829,0.8804667,0.84965223,1.0026445,1.0653726,0.89396864,0.643845,0.47645938,0.41672876,0.5282625,0.80181354,0.8937946,0.747375,0.50587356,0.39416167,0.32575315,0.42205992,0.45038497,0.28146392,0.17887042,0.20226285,0.26030278,0.16779701,0.17105855,0.13259095,0.11477296,0.1059103,0.12530927,0.118196025,0.092934,0.041588556,0.020399265,0.076428175,0.15694816,0.11972019,0.056079496,-0.13462193,-0.15705293,-0.17020305,-0.24521951,-0.3389305,-0.38733155,-0.5210978,-0.5523622,-0.5558046,-0.581445,-0.51425636,-0.46771878,-0.465046,-0.4156936,-0.4019649,-0.42788175,-0.5059753,-0.517372,-0.5536492,-0.6053399,-0.67205,-0.6709287,-0.7076391,-0.773453,-0.6854799,-0.6541697,-0.31893954,0.959046,1.789221,1.1618494,0.99553645
+-0.835484,-1.1330256,-1.2416434,-1.3971035,-1.5197074,-1.6874381,-1.8258123,-1.8804398,-1.9242997,-2.028411,-2.03052,-1.977029,-1.9093919,-1.8431206,-1.9165876,-1.8988736,0.13959144,-0.23504679,-0.3508097,-0.4348901,-0.6622931,-0.81224054,-0.9535966,-1.1036904,-1.2487954,-1.0927628,-1.0481524,-1.1638578,-0.53479844,-0.66850877,-0.92006916,-0.82533133,-0.991644,-1.0525169,-1.1127968,-1.1767443,-1.3012761,-1.3943722,-1.4768025,-1.538691,-1.6482372,-1.6115565,-1.6651564,-1.6833973,-1.6856432,-0.73320377,-0.060370576,-0.4998619,-0.5505589,-0.5452486,-0.7914495,-0.94740736,-0.9967351,-1.1278689,-1.2851231,-1.3437176,-0.48198673,-0.80674946,-0.99321395,-1.0089525,-1.1629093,-0.8344318,0.18040203,-0.17070253,-0.6035199,-0.7815626,-0.8778588,-0.9894706,-1.1154621,-1.2775567,-1.3464453,-1.4649155,-1.5220127,-0.23059033,-0.040556815,-0.5083821,-0.80842674,-1.0107934,-0.75753736,-0.8328723,-1.1019392,-1.2078509,-1.327728,-1.3761292,-1.1225355,-1.0554125,-1.2710578,-1.1693174,-1.0370734,-1.0111285,-0.8469668,-0.6381861,-0.77903694,-0.39581874,-0.7621218,-0.9193526,-1.0619568,-1.2220392,-1.2673787,-1.1094621,-1.3079484,-1.447747,-1.5797234,-1.6890459,-1.55774,-1.0482874,0.09384042,-0.5235789,-0.8594637,-1.0264072,-1.1626554,-1.2718006,-1.3775405,-1.4985592,-1.5938809,-1.6833196,-1.739203,-1.8228891,-1.8876446,-1.2982109,-0.8626783,-1.0761336,-1.310787,-1.4581054,-1.5872803,-1.636452,-1.5037401,-1.5637512,-1.3366497,-0.9968885,-0.989116,-1.2096059,-1.3553257,-1.1595432,-1.0722934,-1.2620473,-1.3068991,-1.445335,-1.5581287,-1.6777327,-1.6919749,-0.6067715,-0.947443,-1.1515732,-1.3162496,-1.0244547,-0.9212879,-1.0169984,-1.1328703,-0.6295772,-0.6229541,-0.58900607,-0.33700353,-0.46461505,-0.6631513,-0.7989023,-0.9891396,-1.1380532,-1.2726693,-1.2686694,-1.2566478,-1.3761052,-0.62026554,-0.85719836,-1.1236427,-1.1452904,-1.1083636,-1.196676,-1.2537024,-1.3020761,-0.92831683,-0.9758151,-1.1140894,-1.2226801,-1.3350549,-1.4113045,-0.6321254,-0.5277473,-0.86269605,-1.0253214,-1.1463764,-1.1834733,-1.2030809,-1.2391257,-1.3268938,-1.4015616,-1.4769936,-1.5975232,-1.518987,-0.8670563,-0.9218419,-1.0905641,-1.1548179,-1.2696877,-1.3991357,-1.2844166,-1.2937636,-1.4127264,-1.4642353,-1.4852445,-1.5977598,-1.6069059,-1.6304209,-1.6071407,-1.6225092,-1.6506382,-1.6870334,-1.7065673,-1.7517734,-1.7735633,-1.7603043,-1.7766777,-1.8458343,-1.8273144,-1.8406789,-1.8739768,-1.9054337,-1.9056895,-1.8223209,-1.5400887,-0.9590329,-0.94199103,-1.0992508,-1.1627421,-1.2563801,-1.2720658,-1.2538517,-1.3333882,-1.3833722,-1.3719121,-1.3880606,-1.5151736,-1.4418664,-1.2923104,-1.3311608,-1.3623677,-1.4589624,-1.4248424,-1.4376773,-1.3657981,-1.331202,-1.4375346,-1.4540354,-1.3644708,-1.2821486,-1.2303767,-0.6591502,-0.44324523,-0.7161193,-0.7986649,-0.6684091,-0.4747386,-0.16856442,0.09710014,0.08940494,-0.09381223,0.01917113,0.21197037,0.47375667,0.42807645,-0.060209196,0.2948791,0.5943239,0.64327294,0.59423894,0.42381123,0.27525306,-0.23051673,-0.37402928,-0.33205524,-0.38015231,-0.306966,-0.49775124,-0.35197312,-0.3432064,-0.37813517,-0.46838933,-0.7021576,-0.4244874,0.009611886,0.38389757,0.6529966,0.76551986,0.7488856,0.6347995,-0.04609312,-0.48446742,-0.4841064,0.1704732,0.93602103,1.0035374,0.6710999,0.4406566,0.14529587,-0.18048026,-0.344976,-0.44165516,-0.45442402,-0.52865463,-0.7195501,-0.59933925,-0.37960756,-0.30968145,-0.3968512,-0.5872878,-0.7311933,-0.76836866,-0.7153945,-0.35330218,-0.19423714,-0.42592582,-0.68043816,-0.79413193,-0.857074,-0.84662086,-0.7272736,-0.8957057,-1.033042,-0.66018355,0.07733607,-0.22391157,-0.37060413,-0.49987614,-0.635933,-0.74248064,-0.8086611,-0.9249306,-0.9421977,-1.002588,-1.066962,-1.0275184,-0.87618047,-0.8984626,-0.94798756,-1.1273499,-1.0908071,-1.0526762,-1.0802994,-1.1561108,-1.2277423,-1.319052,-1.2949486,-1.3664658,-1.3993795,-1.2970036,-1.2188102,-1.1417946,-1.1492867,-1.1406842,-1.1643203,-1.2886215,-1.3217219,-1.3782606,-1.4705138,-1.5534035,-1.5257514,-1.5667387,-1.6070783,-1.4207177,-1.4540887,-1.5148811,-0.56738836,0.3740011,-0.20620574,-0.5168
+-0.9171338,-0.8839398,-0.84805363,-0.81102157,-0.78043145,-0.75704885,-0.78312635,-0.81462324,-0.9151461,-0.7722964,1.2213616,1.4001021,1.5891364,1.4178543,1.1954048,0.982514,2.4877892,2.3399143,2.2918265,2.3698485,2.2456982,1.9308324,1.6322308,1.3869721,1.1971097,1.1060398,1.0817387,0.8700758,1.1256821,1.1803198,0.98146033,0.82491755,0.65712595,0.5012115,0.35028782,0.20877226,0.08054574,-0.045343418,-0.10185768,-0.28774908,-0.37007684,-0.35313,-0.083444685,0.18238784,0.93603987,1.5191364,2.3957963,2.1473413,2.0998216,1.9021907,1.5816011,1.3545973,2.6196628,2.5377212,2.027633,1.6411772,1.4970927,1.2187068,1.0692927,1.6506543,1.6947608,1.9736981,2.6226163,2.3327148,1.9230348,1.4794914,1.1861653,0.945523,0.76189196,0.5752109,0.391759,0.24183442,0.104037285,1.1665906,2.2924674,1.6981592,1.3508301,1.0338808,0.76391894,2.328423,2.197326,1.716991,1.3675919,1.0883123,0.8619089,0.65152687,0.67069495,0.80645585,0.5833383,1.1683044,1.2691579,0.94639325,0.6481121,0.8716523,0.8344805,0.9079461,0.71945924,1.0153261,1.1487486,2.0106258,1.6834157,1.2236683,0.84184754,0.5343494,0.27335322,0.283794,1.9424798,1.5841935,1.2172681,0.9012358,0.6381342,0.3888356,0.14437906,-0.06135286,-0.2247617,-0.37267688,-0.52497685,-0.5815923,-0.6839944,-0.79433674,-0.29741532,-0.18384118,-0.37671983,-0.5949724,-0.76869285,-0.92156,-1.0602678,-1.1684941,-1.2705028,-0.23103343,0.55906934,0.49032903,0.31874603,0.16426675,0.15037088,-0.07967803,-0.2637565,-0.3978343,-0.5035236,-0.5828202,-0.621827,1.6723518,1.5651264,1.2520822,1.0103929,0.9967772,1.4749488,1.3877517,1.0331577,0.76218754,0.5515907,1.2026701,1.955926,1.9279729,1.6623719,1.2969525,0.98868966,0.73962176,0.50586605,0.33868587,0.38367647,0.40339482,1.9566782,1.8555785,1.5050453,1.4677663,1.8093832,1.5615845,1.7054434,1.7197307,2.0488603,1.8801727,1.5039394,1.2381175,1.0288806,0.8431734,1.3926015,2.3740032,2.1289666,1.6999698,1.4592736,1.2834575,1.1351656,0.94437444,0.77753985,0.63061345,0.4823764,0.36432493,0.4537598,2.1414077,1.9141961,1.583642,1.3384085,1.1585617,1.0498707,1.4084711,1.4925983,1.276984,1.1122437,0.9478439,0.8523445,0.76202756,0.65305024,0.5906024,0.50633585,0.39707875,0.33846337,0.2901386,0.26895052,0.214597,0.17234565,0.11878924,0.09130344,0.038894575,0.0028394982,0.11067252,1.8419027,1.853643,1.6650126,1.8507674,2.2283893,1.9414783,1.7028675,1.5042255,1.4095113,1.3130168,1.220603,1.1376939,1.0525843,0.9660752,0.8936704,0.8312317,0.9101465,0.8796302,0.8246034,0.7494943,0.70216316,0.7030624,0.6542209,0.6704745,0.6050738,0.58241385,0.61904836,0.55171347,0.5681298,0.5763808,1.9118207,2.2022972,1.8709877,1.7696958,1.6584635,1.5416806,1.5127542,1.5315605,1.5401052,1.4859774,1.4404815,1.3849405,1.3823833,1.4105324,1.3578783,1.3065873,1.3948995,1.4861832,1.5036082,1.4028006,1.2330011,1.2106005,1.3139455,1.4310699,1.3649819,1.3042517,1.2674559,1.161454,1.1753647,1.1674169,1.1726466,1.2267699,1.1359353,1.1013522,1.2547863,1.5211011,1.6399647,1.70969,1.5359511,1.1890304,1.1579286,1.1369588,1.2189847,2.2311223,2.558083,2.299046,2.1422052,1.9780085,1.8410406,1.7082597,1.5667882,1.5050621,1.4155595,1.3416704,1.2508233,1.2263886,1.1945059,1.1668588,1.1047659,1.0454416,1.0001334,0.9402516,0.8830686,0.8929301,0.88800025,0.8485071,0.8010018,0.7274123,0.7286731,0.65497935,0.61378175,0.5584962,1.8799334,2.7344909,2.2582502,2.072539,1.8504441,1.6518219,1.5015054,1.5566571,1.4484943,1.275447,1.1153903,0.9923456,0.94173735,0.9090375,0.81933737,0.72177035,0.6017876,0.5236651,0.4287604,0.35663778,0.27700663,0.20794378,0.14587264,0.08337678,0.021305826,-0.0054509416,-0.0042075478,-0.011205599,0.009487141,-0.030971188,-0.054706454,-0.1453795,-0.18346708,-0.23642752,-0.3044858,-0.3699217,-0.4180671,-0.41990727,-0.5158982,-0.56442344,-0.546139,-0.62042236,-0.65220726,-0.5772748,2.1970167,2.1655111,1.8733053
+-0.75657475,-0.67222315,-0.74599636,-0.66717124,-0.63698214,-0.6412365,-0.67242014,-0.7310636,-0.65896285,-0.6025461,0.59207594,1.1082759,1.5455031,1.3514423,1.0774708,0.8456016,1.8892035,2.0719786,1.90282,2.0934963,2.132437,1.7714014,1.4486873,1.2010148,0.96392703,0.84635884,1.52154,1.398663,1.0985008,0.8616954,0.74552584,0.805792,0.8533541,0.8077389,0.59055185,0.41122502,0.24146594,0.11113836,0.30025405,0.11700834,-0.09036739,0.6547512,0.77917385,1.0473676,0.95897675,0.9430189,1.2785869,2.3213987,2.4584608,2.0463016,1.6191474,1.3147526,1.0881963,0.89883286,0.6785903,0.5536487,0.612,0.37876713,0.8182957,2.5003707,2.1482506,1.8257769,1.5967152,2.3231723,2.2476282,1.7550886,1.3598415,1.0951856,0.8912653,0.71657985,0.52267456,0.37159696,0.37798816,0.2306781,0.07725732,-0.09347312,-0.26477727,-0.41392705,-0.577929,-0.5168905,-0.45895255,-0.5869026,-0.7058339,-0.82509255,-0.92048556,-1.0161427,-0.7427964,-0.48260868,0.30405563,1.0081911,0.7307107,0.4709804,0.23120679,0.9090342,1.3824122,1.400842,1.1343395,0.6989382,0.37663162,0.9078733,0.99678016,0.60564744,0.2521271,-0.015166532,-0.24906412,0.43547112,1.5851892,1.1327422,0.7561291,0.4674908,0.21247633,-0.025911909,-0.24857098,-0.4422661,-0.6146798,-0.76931417,-0.9291105,-1.0203149,-1.0376177,-1.0620914,-1.1816177,-1.3003216,-1.4098868,-1.4856824,-1.572696,-1.6264799,-1.672909,-1.7042534,-1.73614,-1.6242152,0.21034428,0.69550455,0.30958277,0.051991846,0.019102465,-0.18622108,-0.34631932,-0.48149338,-0.5568833,1.4351758,2.3121574,2.4510565,1.8959181,1.525596,1.4107251,1.1527212,0.85053027,0.61518615,1.0894575,1.4489598,1.0000887,0.77392906,0.62598956,1.3197798,1.6029636,1.141769,0.8357762,0.56470406,0.33979926,0.15188403,-0.053631473,-0.2067825,1.5652921,1.7803175,1.3105149,1.0105461,2.1037884,2.3645768,2.2082636,1.8388804,1.482626,1.2195492,0.9491199,0.7107947,0.5291765,0.3739483,0.5353577,2.388276,2.2136292,1.6420912,1.3697575,1.1586418,0.99883723,0.84724736,0.71030104,0.5878273,0.44595557,0.42364398,0.58645415,1.5307581,1.7546644,1.3714933,1.0923845,0.87899375,0.7265237,0.7988422,0.85623085,0.73974884,0.57091665,0.4209019,0.30897927,0.22793515,0.9145024,1.2066623,0.9659083,0.76293576,0.61316526,0.5081028,0.4105329,0.31556487,0.23663269,0.14099343,0.055575702,-0.020472912,-0.09217547,-0.1307463,1.608874,1.8972572,1.910609,2.228504,2.3091218,1.9795556,1.7174298,1.4945718,1.3813351,1.2964821,1.2117583,1.1498578,1.0817397,0.9711759,0.8582345,0.77141523,0.78926164,0.7437656,0.6812612,0.62126476,0.5455158,0.52554905,0.43152523,0.4349782,0.39667377,0.3570348,0.3025666,0.17873575,0.17627363,0.27238703,1.4934659,1.7090404,1.4234619,1.3639308,1.2933488,1.1522169,1.1042073,1.1348131,1.1053758,1.0483458,1.0062944,1.0049846,0.99656236,0.9722848,0.94721794,0.91978925,0.99364495,1.0623358,1.0697966,0.9516852,0.8459701,0.836827,0.83216685,0.82184297,0.7601894,0.7101886,0.6346255,0.56564265,0.51923496,0.47609484,0.48971158,0.4954611,0.49594796,0.47866702,0.3973444,0.5866246,0.64819497,0.72353,0.68395185,0.586094,0.59889627,0.62800056,0.78103656,1.3790758,2.0081043,2.0699449,2.1115255,1.8054036,1.5795884,1.3900647,1.2408392,1.1530104,1.0961791,0.99459577,0.922879,0.89429605,0.86666733,0.8209411,0.7360655,0.6666495,0.6102675,0.58686733,0.576244,0.5694252,0.5421388,0.50226134,0.4267802,0.35125008,0.30921257,0.23011534,0.1719072,0.11092608,0.35398704,1.8651428,1.6826804,1.4621778,1.2645481,1.1082896,0.9952755,1.5394084,1.5853763,1.31196,1.1016383,0.9308522,0.8597466,0.75206685,0.68091667,0.5973306,0.4227203,0.31677672,0.23332249,0.13952579,0.07182485,-0.022077147,-0.10025419,-0.12811156,-0.19085912,-0.2635844,-0.28142485,-0.2204494,-0.26102614,-0.30620638,-0.33977804,-0.37509686,-0.4360037,-0.51410407,-0.5576316,-0.6169055,-0.6994719,-0.76834816,-0.80149746,-0.8738138,-0.91859514,-0.9881222,-0.9802756,-1.0051383,1.300854,1.5907314,1.2326682
+-0.72701967,-0.4305313,-0.45124054,-0.41050902,-0.46727282,-0.5141388,-0.6105079,-0.7258612,0.5365854,1.1205462,1.0084746,1.0098603,1.972928,1.679311,1.3863068,1.1862411,2.5984855,2.6763866,2.2366982,2.5854445,2.6195629,2.255077,1.8713909,1.6264826,1.4163957,1.2073531,1.586998,1.4989986,1.2644908,1.0476687,0.89948916,1.7292314,1.737537,1.4998751,1.2068402,0.9898436,0.7946937,0.65546155,1.924131,1.7475073,1.4765986,2.4668365,2.1727166,1.9965148,1.7990129,1.5553837,1.4314394,2.055504,2.4137712,1.9406891,1.6582686,1.4346619,1.2148546,1.0215366,0.84618664,0.8314498,2.608913,2.170757,1.8212049,2.7679892,2.4832973,2.4312184,2.3415933,2.7465658,2.3164318,2.1389046,1.8150643,1.5791299,1.357332,1.1688046,0.9818225,0.88082993,1.0264518,0.93917894,0.73182344,0.5334983,0.34334996,0.16883628,0.022679657,-0.13300003,-0.21683015,-0.34535637,-0.4684648,-0.5765012,-0.6701703,-0.7794477,-0.31675124,0.018221658,1.4515494,1.6159284,1.2396431,0.97589993,0.719934,0.45550594,0.21189328,0.075170234,-0.027800161,-0.23466872,-0.4066363,-0.545668,-0.6634112,-0.7641696,-0.90873635,-1.00335,-1.0971519,-1.1853111,-1.2643248,-1.3221406,-1.3686297,-1.4113569,-1.4475026,-1.4807968,-1.5332468,-1.5726185,-1.5991038,-1.6161356,-1.613766,-1.6440551,-1.2199297,-0.86684495,-0.9146925,-1.0295806,-1.1510265,-1.2492366,-1.3401909,-1.4062281,-1.4633939,-1.5032866,-1.552665,-1.5990452,-1.6509507,-1.6676633,-1.6855049,-0.9698782,1.3969945,1.3465178,1.4230038,1.5480635,1.7138627,2.0269802,1.9621105,1.9219615,1.6512219,1.6107113,1.6356137,1.2892416,1.0230117,0.8162236,0.8294177,0.9401053,0.7912147,0.669767,0.6290275,1.3479949,1.6056018,1.255386,0.9857974,0.73947114,0.5184354,0.3418706,0.15166627,-0.020159986,0.8687011,1.4976327,1.129956,0.88235533,0.9724002,1.3749704,2.0314567,2.046533,1.7005389,1.4070532,1.1556903,0.9242633,0.72502244,0.5480618,0.36443102,1.8414966,2.628256,1.9972246,1.640433,1.4011972,1.2465512,1.0737321,0.94752157,0.81476915,0.68285406,0.57651293,0.47909564,1.3831728,1.8014675,1.4236772,1.2115136,1.044868,0.9165442,0.8328414,1.0282385,1.0088859,0.8423325,0.7174029,0.6393554,0.56337285,0.5361907,0.436608,0.33156028,0.25304312,0.1652435,0.094538555,0.059826348,0.0034496784,-0.035871007,-0.08784939,-0.13001949,-0.1819519,-0.22577535,-0.24871553,2.3464854,2.3142672,1.9976435,2.309423,2.4374113,2.2001584,2.0500135,1.868306,1.7176601,1.6313701,1.5219553,1.4430859,1.3649467,1.239564,1.127037,1.0909817,1.0871587,1.016895,0.9838097,0.92430544,0.87825596,0.8289585,1.1336684,1.7874606,1.575181,1.4262822,1.3306916,1.2052274,1.1276412,1.1457407,1.9704351,1.9256054,1.7557144,1.7603694,1.6707342,1.5935094,1.4882476,1.4718764,1.4429712,1.3706503,1.3291557,1.3219371,1.2997847,1.2261975,1.1806307,1.1152191,1.1240925,1.2320173,1.2350936,1.148384,1.046572,1.0196347,0.9725013,0.9898796,0.9297045,0.8579769,0.79545623,0.8125235,0.7395273,0.6872313,1.5768363,1.8008162,1.5768371,1.471127,1.4340262,1.481384,1.6022252,1.7071481,1.4941635,1.3381176,1.2728019,1.2734668,1.921334,2.2052174,2.3635237,2.3685927,2.3954718,2.0081415,1.8244162,1.6682154,1.5085701,1.3698676,1.2889298,1.1877508,1.1010503,1.1144583,1.0816747,1.0129751,0.95543057,0.88007593,0.8336626,0.8139231,0.8258616,0.789338,0.7200889,0.68861145,0.6485709,0.56418777,0.48301762,0.40995535,0.37591368,0.3342045,0.455435,2.327757,2.140859,1.878175,1.6411414,1.4440777,1.4106269,2.489612,2.137659,1.774771,1.5183432,1.346676,1.2497745,1.1541927,1.0741478,0.97889555,0.82408863,0.68582714,0.61115277,0.59645,0.5767044,0.45381838,0.37557492,0.32520455,0.20345919,0.14358743,0.07863243,0.09171404,0.014610909,-0.039040405,-0.13429731,-0.19060908,-0.28686467,-0.355847,-0.41821706,-0.49033895,-0.5627904,-0.62514627,-0.6836382,-0.6720798,-0.5744816,-0.6621332,-0.7151412,-0.81366897,0.08879076,0.78942126,0.57307315
+-0.035840098,0.0075092576,-0.3111752,-0.46953258,-0.5861146,-0.68027437,-0.8237759,-1.0039465,-1.0667624,-1.1700072,-1.2328112,-0.8773558,1.0771874,0.5799727,0.3040831,0.08957139,1.1462833,1.4780875,1.1462524,1.2372551,1.8216915,1.3252842,0.928055,0.6639355,0.44518876,0.21646602,0.75293404,0.5872432,0.34895664,0.12877013,-0.028175447,0.15047856,0.036443267,-0.15068531,-0.3302884,-0.4542272,-0.5864877,-0.7092278,-0.8320147,-0.9371297,0.48391676,0.8264769,0.67385256,0.40925378,0.25884366,0.05548365,-0.10689984,1.537077,2.033012,1.4580455,1.08078,0.79898506,0.56808555,0.37391764,0.28515446,0.07781792,-0.14364196,-0.32478604,0.8920782,1.8619399,1.805613,1.8853141,1.695997,2.0423687,1.8686495,1.3394738,0.9236951,0.6764907,0.45434764,0.22328515,0.02991515,-0.10169086,0.027837921,0.064472705,-0.14421757,-0.32227007,-0.48023796,-0.62048703,-0.7440512,-0.8781183,-0.944139,-1.0455244,-1.1379691,-1.2165273,-1.2722036,-1.3652456,-1.3965352,-1.4463936,-0.98418236,-0.69382,-0.8070524,-0.91946125,-1.0656786,-1.1769048,-1.2929881,-1.4070439,-1.4917278,-1.5714711,-1.6393167,-1.6966692,-1.7596368,-1.8041935,-1.8573474,-1.8942364,-1.9362859,-1.9772817,-2.004287,-2.026709,-2.0528145,-2.0715122,-2.0830045,-2.097835,-2.1102214,-2.1273682,-2.1453843,-2.1563487,-2.018217,-1.5802891,-1.5213664,-1.3115244,-1.2101068,-1.3202804,-1.4286,-1.512888,-1.5990278,-1.679635,-1.7429758,-1.8019809,-1.8590326,-1.9121573,-1.9613053,-1.9955064,-2.0161936,-1.7124338,0.10853459,0.44331217,0.26133454,0.4909858,1.25073,1.3786545,1.0355189,1.7413673,1.5657578,1.288489,0.8884718,0.5178201,0.24969848,0.043933753,-0.10759397,-0.18722583,-0.3094919,-0.40031952,-0.48297977,0.0789548,0.8584236,0.69469315,0.5858014,0.31875217,0.07577972,-0.12133409,-0.31847492,-0.48032865,-0.5603733,-0.65716565,-0.7569593,-0.8648113,-0.9290805,-0.9883498,-1.0447502,-1.121639,-1.154948,-1.2338904,-1.2912171,-1.3373412,-1.3858202,-1.4273523,-1.4763589,0.89099914,1.9774914,1.4662218,1.0661204,0.7379149,0.5170156,0.34715325,0.1840138,0.045090694,-0.05454282,-0.13858661,-0.23316485,-0.13518625,-0.08914244,-0.22097573,-0.39839357,-0.52223456,-0.6037482,-0.11042735,0.26765656,0.07135196,-0.06693055,-0.17348878,-0.25764698,-0.33295465,-0.3349266,-0.47081363,-0.5899547,-0.6616725,-0.7284337,-0.7926988,-0.84418595,-0.8845123,-0.92169774,-0.96310955,-1.0006503,-1.0396941,-1.0793145,-1.0995871,-0.9960522,-0.7662484,-0.7647476,0.45506018,0.84014523,1.4602969,1.9287107,1.6670133,1.3822786,1.1808586,1.0052173,0.87012005,0.6910886,0.4986688,0.37056127,0.3520823,0.26789764,0.18326817,0.0882494,0.039587732,-0.017671462,-0.07892731,-0.064251706,0.5770869,0.64752674,0.4500214,0.27380732,0.12740459,0.051443715,0.32622856,1.6912156,1.430527,1.6867192,1.4259503,1.2334332,1.1362484,0.94009244,0.9030292,0.79416186,0.69684756,0.60204566,0.524727,0.46104228,0.4142382,0.35392416,0.2511853,0.23152812,0.23131658,0.10374923,0.01853891,-0.022702258,-0.03728311,-0.050751533,-0.0010974072,0.015549507,0.004926782,-0.067382425,-0.15038218,-0.29054397,-0.41284537,0.46479595,0.7121972,0.53933525,0.44138542,0.3769852,0.52214557,0.66289777,0.6866311,0.3685161,0.17571302,0.106388554,0.10667659,0.119499,0.13844961,1.0454297,1.1706103,1.4889824,1.0628831,0.81732816,0.61345637,0.3738224,0.23649894,0.13774805,0.035541963,-0.019943994,-0.019038644,-0.07636554,-0.15229644,-0.22020967,-0.28872487,-0.35859388,-0.43376565,-0.38883787,-0.41399866,-0.51602304,-0.5632702,-0.6088692,-0.6898779,-0.7566401,-0.8032981,-0.8488883,-0.87775505,-0.47049364,1.4245287,1.0244341,0.7661701,0.53683454,0.33680514,0.19735615,1.3421943,1.0455939,0.732077,0.5010611,0.32305616,0.22362469,0.13081723,0.01860531,-0.061519753,-0.17938747,-0.25065163,-0.30219293,-0.21042852,0.086807236,-0.07884283,-0.18419905,-0.3317015,-0.43195322,-0.50206035,-0.5378129,-0.46459895,-0.40550378,-0.48047045,-0.588161,-0.6734335,-0.772925,-0.8461462,-0.91749555,-0.983157,-1.0462598,-1.1045079,-1.1761459,-1.0690162,-0.9960305,-1.0706083,-1.1495416,-1.2455151,0.23579495,0.5335853,0.18752132
+-0.39226496,-0.033119272,-0.15864114,-0.16835658,-0.29282227,-0.36492437,-0.53832877,-0.810075,-0.91783565,-0.9616486,-0.75338167,-0.5950263,1.8139893,1.8091247,1.5785062,1.4105146,1.4021165,1.7709719,1.6659565,1.4441769,1.3222817,1.1799598,1.0037847,0.90536857,0.7729252,0.48775047,0.7949418,0.9101621,0.68114537,0.6939974,0.5588976,0.4639288,0.31109166,0.13996251,-0.21027884,-0.4196705,-0.5693072,-0.70062166,-0.68177307,-0.8239554,-0.8584373,-0.81171197,-0.91027653,0.23051505,1.711511,1.6402391,1.396913,1.8670706,2.6569076,2.438735,2.1859121,2.0089347,1.8300248,1.652617,1.5063134,1.3134174,1.1151764,0.83845377,2.5643325,2.6041198,2.6690722,2.6349206,3.0639684,2.8270106,2.5523047,2.2679622,1.9837387,1.7429936,1.5082148,1.2811537,1.0721104,0.84609425,0.62519646,0.4090441,0.2124399,-0.031530987,-0.23151663,-0.39448145,-0.5452299,-0.6922921,-0.75958645,-0.7809214,-0.89566696,-0.99045,-1.0741383,-0.73119867,-0.08422391,-0.15414669,-0.3329144,-0.43959072,-0.6363734,-0.825697,-0.96103,-1.0372828,-1.1277798,-1.2009814,-1.2508657,-1.2836075,-1.3154907,-1.3388642,-1.3658571,-1.3901625,-1.4044409,-1.4126456,-1.4264865,-1.4486125,-1.4534636,-1.4551189,-1.4767158,-1.489728,-1.4887681,-1.4873092,-1.4903941,-1.4988891,-1.5234846,-1.5351725,-0.7284267,1.2643328,1.3005064,1.1398842,0.864542,0.55314535,0.23842533,-0.008370191,-0.25236705,-0.47380757,-0.64832926,-0.8059414,-0.91547996,-1.0202119,-1.1096594,-1.1790559,-1.2274479,-1.2716476,-1.0178308,0.48197746,1.4121833,1.8866351,2.1807199,2.0222328,1.7587194,2.51581,2.850815,2.519447,2.2258162,1.8937984,1.6297216,1.4135616,1.195735,1.0034163,0.8293313,1.3790476,1.8156205,1.7385035,1.749123,1.6117791,1.4706593,1.4391712,1.2763567,1.047826,0.8329377,0.6450921,0.49696207,0.39113325,0.25273165,1.2665148,1.8224069,1.6349523,1.4612564,1.2408469,1.0713809,0.87638056,0.6550265,0.45470983,0.2904873,0.09522863,-0.105622604,1.014807,2.0431037,1.8603461,1.7122064,1.5210036,1.3315911,1.2549703,1.1042228,0.98515344,0.88179624,0.7301343,0.58703434,0.47371614,0.39533436,0.23640223,0.094737306,-0.019569766,-0.0857707,-0.06820747,0.065069735,-0.060385387,-0.14397219,-0.21254793,-0.28053126,-0.35670465,-0.38945487,-0.42289048,-0.54045105,-0.6087688,-0.6688303,-0.7203081,-0.7643394,-0.7811364,-0.8069352,-0.8366536,-0.8688316,-0.9076231,-0.94760525,-0.9945077,-0.14250623,1.0211519,1.0700741,0.943165,0.8637303,1.2162951,1.9782076,1.7855877,1.7162154,1.6273649,1.5527637,1.4406767,1.3869755,1.2879918,1.1730967,1.1810739,1.0456672,0.9163126,0.8331623,0.8326539,0.8022299,0.7399672,0.694599,0.6850637,0.5817594,0.5154904,0.37346494,0.1907828,0.0392642,0.6269891,2.7072332,2.7350452,2.989056,2.5978868,2.3716688,2.2912984,2.1532667,2.0616784,2.0523748,1.9648163,1.8784616,1.8139489,1.7735553,1.7172375,1.6523576,1.6181931,1.4024668,1.3130555,1.2705482,1.2555678,1.2631316,1.2759556,1.2366529,1.3806012,1.5227215,1.4977355,1.4129026,1.1470366,1.1148841,1.0584574,1.054172,0.98945403,0.8780276,0.8137673,0.81053704,0.7750921,0.8542423,0.87823296,0.82585824,0.8073207,0.79873425,0.80041057,0.7364627,0.7016815,2.13265,2.2700486,2.13275,1.9298704,1.8049753,1.6980002,1.4520842,1.3314335,1.2173016,1.1722062,1.0298338,0.90050316,0.9844394,0.9277166,0.779716,0.62618667,0.53210354,0.44600075,0.46763307,0.42157102,0.35162067,0.33438754,0.3363762,0.17872034,0.006654624,-0.08405705,-0.11406596,-0.17301747,-0.27046022,1.5010297,1.7765983,1.5241296,1.3705673,1.2551118,1.1462011,2.326684,2.094472,1.8353734,1.6254667,1.5073612,1.298133,1.2163594,1.1649182,1.1119018,1.0343124,0.7640627,0.6101008,1.5081992,2.3066888,1.8418458,1.760436,1.5875769,1.4677284,1.4252408,1.4612129,1.4241383,1.3385086,1.2074021,1.0887184,0.9785621,0.86074525,0.73118556,0.607525,0.49172115,0.38278636,0.27357426,0.12053184,0.04753195,-0.21930791,-0.34458566,-0.44946218,-0.58933306,1.1884371,1.6644453,1.2975347
+-1.838014,-1.736212,-1.7595797,-1.8160423,-1.9013405,-1.9597036,-2.0219285,-2.1639535,-2.0042412,-1.738875,-1.8281921,-1.9306917,-0.7044555,-0.38598,-0.60520273,-0.7716351,-0.8529097,0.41006488,0.49275255,0.11934683,-0.06905155,-0.29542926,-0.51875436,0.48778594,0.68685377,0.21778218,-0.065828174,-0.299676,-0.4399443,-0.68256223,-0.8606089,-1.0223768,-1.1930078,-1.2809371,-1.4200501,-1.5423955,-1.6354587,-1.7879022,-1.3199041,-1.1709738,-1.3073068,-1.4285811,-1.5455954,-0.3129831,0.6492105,0.49297947,0.27771032,0.67666864,1.312023,0.8236274,0.46955866,0.3078916,0.15823305,-0.013189118,-0.19414273,-0.37727866,-0.58349824,-0.8472732,-0.96530664,-1.0559716,-0.8854999,0.53601754,0.9284025,0.61449736,0.35844284,0.1663503,-0.06450422,-0.27153164,-0.36045337,-0.41794112,-0.6048298,-0.8000847,-0.98222435,-1.1348951,-1.2601063,-1.3997096,-1.5047681,-1.6010113,-1.6889547,-1.8010511,-1.859829,-1.724985,-1.7861981,-1.8631504,-1.9389703,-2.0037796,-1.983802,-1.8508794,-1.8316586,-1.9789798,-2.007449,-2.0646186,-2.1031404,-2.1298816,-2.1600876,-2.191317,-2.2147894,-2.2286668,-2.2498608,-2.269501,-2.2883034,-2.2944326,-2.3156352,-2.3227215,-2.3340788,-2.3462815,-2.358967,-2.3716686,-2.3795283,-2.4503863,-2.464831,-2.3947754,-2.416562,-2.424304,-2.4388592,-2.464784,-1.7813839,-0.94437826,-0.9533216,-0.7745724,0.13252519,-0.13324825,-0.45981967,-0.69734573,-0.9410106,-1.1498299,-1.3340427,-1.5014554,-1.6444738,-1.769875,-1.8744322,-1.9630207,-2.012487,-2.0784903,-2.2235737,-1.006854,0.83248353,1.0157979,0.691237,0.5444865,0.23936601,-0.006960448,1.1915984,1.1014743,0.6515598,0.29988486,0.09305169,-0.09432472,-0.29915708,-0.47227025,-0.623062,-0.56948256,-0.187265,-0.09054378,-0.030713338,-0.0021729134,-0.12323816,-0.31608078,-0.52716875,-0.70354986,-0.86883295,-1.010295,-1.101192,-1.0840099,-1.1861308,-1.3306215,-0.31632158,0.17294513,-0.09044464,-0.30092224,-0.46211362,-0.63183063,-0.8018373,-0.96523607,-1.0728846,-1.2066505,-1.296306,-1.113997,1.1089509,1.2376068,0.82475626,0.5247594,0.34874707,0.18244483,0.053068582,-0.11355227,-0.26568535,-0.42562783,-0.524396,-0.5888251,-0.6104323,-0.74555224,-0.92474174,-1.0464568,-1.1127918,-1.1696172,-1.2325907,-1.3066738,-1.35566,-1.392446,-1.4386766,-1.4604139,-1.4641511,-1.4206065,-1.5075545,-1.5640863,-1.5935442,-1.6332178,-1.664433,-1.6932766,-1.7068529,-1.7146475,-1.7663276,-1.7944075,-1.7899683,-1.7703747,-1.7572513,-1.0480063,-0.28116322,-0.43515402,-0.54311204,-0.18655698,0.5588824,0.34620714,0.22827275,0.089702085,0.033566047,-0.06275877,-0.16782902,-0.2928493,-0.36582506,-0.42241168,-0.67542744,-0.71824527,-0.7915511,-0.8140409,-0.86994743,-0.9468055,-0.9527552,-0.9401716,-0.97469914,-1.0705192,-1.1982136,-1.266546,-1.3128349,-1.2940996,0.45085898,1.427897,1.405689,0.8691913,0.66228473,0.57183236,0.44843718,0.30666554,0.27415255,0.20818661,0.12325093,0.055290777,0.035930324,-0.020027619,-0.117172584,-0.23332952,-0.3700345,-0.36533004,-0.507071,-0.54697317,-0.42566985,-0.46732983,-0.5115591,-0.55161685,-0.5295992,-0.55586433,-0.62862045,-0.89364696,-0.8629463,-0.92696476,-1.000414,-1.0854582,-1.1494937,-1.1308587,-1.1834326,-1.1746786,-1.0243328,-1.0471667,-1.0924773,-1.1329523,-1.1561527,-1.1150721,-1.1522771,-1.1906617,-1.2109245,-1.1817195,-1.2281361,-1.0806113,-1.0917597,-1.191422,-1.3111439,-1.3761256,-1.4232547,-1.4951081,-1.5304365,-1.5271351,-1.5670745,-1.5365615,-1.5810101,-1.5827432,-1.6309469,-1.7013218,-1.7140394,-1.7141443,-1.7125921,-1.7235591,-1.750957,-1.7745888,-1.8149216,-1.7799373,-1.8148032,-1.8446894,-1.878125,-1.799196,-1.7560506,-1.7599752,-1.7972302,-1.8195618,-1.9112704,-0.36600402,0.24532424,-0.10912247,-0.31325328,-0.50445515,-0.6600877,-0.74510556,-0.8247559,-0.9186983,-1.0305234,-1.1366688,-1.2159778,0.18481822,0.9244534,0.46619576,0.23051427,0.13675232,0.41872498,0.6304376,0.41896737,0.22450532,0.11526194,-0.048931133,-0.19706793,-0.3323182,-0.4665991,-0.5890604,-0.70202184,-0.81216013,-0.9044284,-0.98482996,-1.0587115,-1.1495311,-1.290654,-1.355944,-1.4272373,-1.4735295,-1.5383686,-1.630575,-1.6664066
+-0.8972447,-1.0472888,-1.1228464,-1.142377,-1.1851063,-1.235475,-1.3102922,-1.3904115,-1.4194136,-1.2508452,-1.3450772,-1.464276,-1.3374832,-1.3462056,-1.4372486,-1.4668996,-1.4973073,-1.4160357,-1.0599847,-1.0910794,0.58365947,1.2806058,1.7074969,2.0713153,1.6451781,1.2010227,0.97128654,0.63270783,0.36932704,0.12044124,-0.12292932,0.29552397,0.7047516,0.48563313,0.21868213,-0.059559193,-0.2721945,-0.42580578,-0.44781363,-0.43039992,-0.5906614,-0.7211012,-0.8229269,-0.35501143,0.25449985,0.86539364,0.6721852,1.3088626,1.6344326,1.3852,1.142,0.9166128,0.7224859,0.486143,0.1887121,0.5648202,1.0408208,0.57766086,0.26544175,0.044680927,-0.1872639,1.3834307,2.1970391,1.8161778,1.407252,1.6622584,1.3935096,0.99175537,0.7012826,0.48319387,0.24324377,-0.016247313,-0.22177929,-0.42546108,-0.59076947,-0.74981314,-0.8501253,-0.92093223,-0.9833698,-1.0374688,-1.0078442,-0.6507086,-0.8206727,-0.91965556,-0.9916979,-1.0412781,-1.0931439,-1.1219851,-1.1679566,-1.1888435,-1.0900412,-1.1744831,-1.2139844,-1.2503078,-1.3023367,-1.3332088,-1.34574,-1.3648818,-1.3869413,-1.4102294,-1.4291654,-1.4497306,-1.4593012,-1.4658813,-1.4842565,-1.5100095,-1.5133781,-1.5165218,-1.5336883,-1.5432522,-1.3390641,-1.1909758,-1.2851224,-1.3466642,-1.3776561,-1.3971378,-1.4403691,-1.3957288,-1.0868647,-1.0410235,-1.0235375,-0.8321153,-0.9780731,-1.080944,-1.1749333,-1.23632,-1.2874643,-1.3261471,-1.360191,-1.3899121,-1.4180905,-1.404224,-1.3139567,-1.3971343,-1.403565,0.18599801,0.9661372,1.8486786,1.5501335,1.3261452,0.9685128,0.62161165,1.4410467,1.734138,1.1509202,0.7450324,0.47413498,0.1952625,-0.07324098,-0.20033656,-0.15586224,-0.04434563,0.15543881,0.7908501,0.9252756,0.75419176,0.7261689,0.50687253,0.19401719,-0.0530097,-0.26083943,-0.43926388,-0.5829959,-0.042594265,0.2914037,0.0010795929,-0.0505954,0.0062827356,-0.10405116,-0.30304652,-0.4577965,-0.589335,-0.6983925,-0.7746241,-0.8147449,-0.9011303,-0.95147693,-0.97594035,1.1238973,2.2872052,1.9230027,1.6460526,1.4980385,1.3469436,1.3293098,1.2032661,0.9678962,0.7560516,0.59825975,0.5340161,0.6894362,0.5492292,0.39105633,0.20933057,0.07099199,-0.06715001,-0.19127226,-0.3186116,-0.39258745,-0.4531693,-0.52022845,-0.5702256,-0.55366194,-0.36840189,-0.39889744,-0.4966039,-0.57946265,-0.6575208,-0.7303437,-0.78174376,-0.7896575,-0.8130964,-0.86408025,-0.8987874,-0.8994244,-0.8990594,-0.8902844,0.49072623,1.1062038,1.1149411,1.0983483,1.0984418,1.2038771,1.1714516,1.1089686,1.0154055,1.0144062,1.0713205,0.92436975,0.83324707,0.73605347,0.6669165,0.45074946,0.31132567,0.2619186,0.2166803,0.18234687,0.1412519,0.08832149,0.076193705,0.017347533,-0.062152665,-0.17558777,-0.27836293,-0.3216464,-0.29050002,-0.28053227,0.7835971,1.2404404,1.0246992,0.9026412,0.9055592,0.95725954,0.89014393,0.8188505,0.75465643,0.74591017,0.68517697,0.6487613,0.6466635,0.56301874,0.49183375,0.2683907,0.14864422,0.13121808,0.099059105,0.09426913,0.08230518,0.016164128,-0.0023801737,-0.0033892207,-0.027170341,-0.035683762,-0.22552685,-0.22430192,-0.28560695,-0.3402849,-0.42564932,-0.47093672,-0.47107697,-0.46022674,-0.55683583,-0.5251232,-0.5011598,-0.5137954,-0.5404506,-0.5591154,-0.54457396,-0.567612,-0.5920245,-0.5937742,-0.57418424,-0.6105088,-0.6489318,-0.69053274,-0.72695804,-0.8119098,-0.84869695,-0.85768074,-0.89045227,-0.93140286,-0.8867471,-0.49003935,-0.17145345,-0.2825935,-0.35351425,-0.42200685,-0.49009782,-0.46851093,-0.4613263,-0.43714368,-0.5138557,-0.5604218,-0.62753975,-0.6821503,-0.70012134,-0.74333835,-0.77889085,-0.8016886,-0.7897368,-0.8535701,-0.8732548,-0.8700332,-0.9139568,-0.92652315,-0.9406114,-0.76171166,-0.8321899,-0.8755374,-0.91499853,-0.9582654,-0.9629531,-0.9811802,-1.0057536,-1.0237712,-1.026513,-0.9790832,0.64806104,1.4877499,1.179846,1.0911344,1.3359954,1.5183804,1.3191515,1.249981,1.1553516,1.1486392,1.0041696,0.8511852,0.64916754,0.4706077,0.31344903,0.14589028,-0.020288069,-0.14964479,-0.26248604,-0.3692079,-0.4305409,-0.5523181,-0.6450112,-0.71666574,-0.7851399,-0.8043338,-0.87625647,-0.9134691
+-1.3413808,-1.6752999,-1.8494253,-1.7949287,-1.8305986,-1.8539429,-1.877357,-1.9205503,-1.9644421,-2.0175495,-2.0371466,-2.0647457,-1.9800534,-1.9827077,-2.0407228,-2.0494733,-1.941442,-0.63423514,1.0175974,0.7946372,0.65747494,0.5264848,1.0367479,1.9114151,1.1028204,0.77524674,0.5803826,0.38506222,0.24559166,0.07379846,-0.13145213,0.5410774,0.8767456,0.6181839,0.36428845,0.14976355,-0.030656736,-0.13835542,-0.1900056,-0.27264845,-0.35418606,-0.51577824,-0.41255516,0.3761027,1.34008,1.3369472,0.82169056,1.3093147,1.2367861,1.1328509,0.93657994,0.73789746,0.6017345,0.42109734,0.27345777,0.29375017,0.47918367,0.42362398,0.6235264,0.64925206,0.4497586,1.2401307,1.4199963,1.3361753,1.2523247,1.5213289,1.0596774,0.75630504,0.5665799,0.44412392,0.30166253,0.23604243,0.087671086,-0.08493823,-0.25971076,-0.45358467,-0.61840117,-0.76400113,-0.8902227,-0.84266627,0.4339401,0.9905045,0.5321872,0.24613576,0.058150906,-0.11623138,-0.2749005,-0.3360499,-0.2840208,-0.36640614,-0.46738106,-0.60917586,-0.76507074,-0.92797834,-1.1019442,-1.2303483,-1.3332791,-1.418488,-1.5024145,-1.5783329,-1.6400938,-1.706702,-1.7563508,-1.7963164,-1.8328916,-1.875298,-1.8910437,-1.920214,-1.9451616,-1.9706396,-1.7065883,-1.2840819,-1.1384151,-1.2436073,-1.3540524,-1.4585629,-1.5528026,-0.4516929,0.51654744,0.3130754,0.19164355,-0.0024741925,-0.2411181,-0.43660825,-0.64159954,-0.8263104,-0.9950278,-1.063329,-1.0423529,-1.1916625,-1.323585,-1.1867499,-1.0810145,-1.2216727,-1.0512826,0.7380151,1.2408702,1.6216085,1.414371,1.1675107,0.7880862,0.6046137,0.9302823,1.9852004,1.0604609,0.7051611,0.47551525,0.30498832,0.16075654,0.005178448,0.55185306,1.2840875,1.4954815,1.4206337,1.0815883,1.0937108,1.1113095,0.9312799,0.6730891,0.4198146,0.23055123,0.074192315,-0.078879654,-0.05967288,-0.12854978,-0.07529245,0.34947932,0.41784915,0.4671781,0.34845558,0.15198599,0.04283573,-0.07498063,-0.21554813,-0.32402098,-0.43503824,-0.5429195,0.31116003,2.053086,1.9869285,1.7455465,1.5209297,1.3348863,1.2327592,1.1588395,0.9329443,0.69977343,0.5384845,0.41349527,0.36083037,1.3841958,1.4996176,1.0065501,0.743338,0.5898899,0.4726473,0.3580568,0.23321019,0.13548763,0.04740261,-0.056802567,-0.14523198,-0.1365369,1.1586177,1.2019141,0.8352417,0.7052945,0.6726179,0.5104386,0.3781706,0.29007283,0.15550803,0.04521824,-0.07276833,-0.14425983,-0.19254936,-0.031147126,1.7387193,1.8397446,1.3729627,1.1603873,1.5439963,1.5631856,1.3620331,1.3076206,1.4575183,1.5505712,1.3363361,1.0653224,0.9066936,0.7970737,0.74331075,0.7292212,0.49975175,0.35414594,0.3096185,0.27216563,0.22304057,0.15290473,0.16889344,0.12206085,0.06220871,-0.039988127,-0.13031696,-0.23421349,-0.26303977,-0.23726133,0.2879014,0.73282015,0.42676672,0.3015234,0.4362799,0.42374733,0.3165112,0.244274,0.18434824,0.16189665,0.14835934,0.23633806,0.24612756,0.17436396,0.14861812,-0.058166858,-0.19772682,-0.24463695,-0.24984632,-0.19439681,-0.115606755,-0.1478215,-0.1619861,-0.16656779,-0.20228635,-0.15309815,0.3881348,0.46921682,0.2920028,0.17074446,0.046142865,-0.0039485283,-0.0057049505,0.06511234,-5.8364123e-05,-0.13684756,-0.21359575,-0.29462603,-0.36742413,-0.39413095,-0.3884244,-0.42876208,-0.4913141,-0.5015661,-0.5172829,-0.5068152,-0.4903124,-0.44211242,-0.51725394,-0.61153775,-0.714914,-0.8143526,-0.87448376,-0.9212183,-0.93119967,0.23777886,0.7681488,0.37125283,0.17435478,0.038693707,-0.031425748,0.29606554,0.7689027,0.5336722,0.36768913,0.2615252,0.13346753,0.00083066896,-0.10020843,-0.19684163,-0.30376428,-0.3974396,-0.43542352,-0.49478596,-0.6085485,-0.6885867,-0.7824599,-0.8712933,-0.8728484,-0.90734196,-1.0156535,-1.0728817,-1.143112,-1.2285149,-1.3440701,-1.4183534,-1.4565275,-1.4555509,-1.3769808,-1.348033,-0.54197335,0.7893532,0.48235524,0.28378975,0.7905559,1.0046095,1.3562319,1.4924576,1.6926787,1.3916422,1.0242572,0.8379656,0.68786705,0.5410432,0.40944195,0.28699246,0.15104854,0.033806715,-0.08127743,-0.22299536,-0.31362486,-0.44743112,-0.5784499,-0.71009034,-0.8382733,-0.9078459,-0.9963473,-1.1033458
+0.5957152,0.73114556,0.82708997,0.9413273,0.8731293,1.0963969,1.205653,1.2046728,1.0788363,1.1921018,1.2513726,1.1857071,1.3299203,0.872494,0.64494324,1.1356258,0.903291,0.69443035,0.4192213,0.22002767,0.062329892,-0.114646435,-0.18387108,-0.31908467,-0.35890973,-0.3670744,-0.43911082,-0.47638303,-0.4735761,-0.48666662,-0.54943293,-0.62435853,-0.73142743,-0.72884154,-0.777639,-0.87967193,-0.9550941,-0.9595401,-0.99998283,-0.9511858,-0.8498155,-0.89336944,-0.78929925,-0.6667072,-0.7206814,-0.73134947,-0.7879096,-0.83094525,-0.82993704,-0.9125151,-0.95059174,-0.9000125,-0.19239926,-0.123927,-0.30744386,0.75068724,0.84350836,0.6275365,0.39587855,0.24500535,0.7089684,1.2129923,0.7867489,0.8378681,0.9913132,0.6484013,0.62722224,0.4623546,0.30660045,0.2149754,0.60745513,0.682925,1.4233842,1.4603491,1.1443771,1.1049091,0.9334047,1.2008629,1.0544542,1.673001,1.5137311,1.2497056,1.452918,1.5001665,1.1939728,1.6423419,1.5512836,1.3795292,1.1445384,1.1255805,1.0346837,0.8107009,0.7196049,0.62665105,0.99473226,1.3077431,1.2252586,1.3305609,1.5263789,1.1565031,1.0997119,1.1907591,1.6481647,1.9288591,1.6746714,1.3525045,1.2503755,1.2242223,1.0552025,1.1898718,1.5274307,1.7162628,1.4991302,1.3942738,1.5057737,1.2698998,1.1248677,0.95559955,0.8368685,0.7227582,0.65388244,0.55230725,0.8672205,1.1064644,0.80232555,1.5102344,1.4514508,1.1487073,0.9582606,0.81231636,1.0006503,0.8894068,0.72581196,0.71239287,0.7375483,0.5886005,0.92710626,1.3852468,1.1013497,1.2652522,1.2117159,1.003451,0.7792894,0.6556574,0.48818552,0.50696135,0.92454314,0.7876049,0.6216708,0.45248848,0.677253,0.73940694,0.5568982,0.4612679,0.3022042,0.20754822,0.55141175,1.0413082,0.90407026,0.6935388,0.8849158,0.984481,0.7320547,0.60103095,0.7112553,0.71858925,0.49175388,0.4371603,0.8604597,0.8482971,0.67891884,0.6991947,0.52491856,0.4829523,0.40302202,0.36749443,0.9105762,1.6704426,1.3264519,1.0234994,0.84944904,0.724761,0.63242275,0.6041624,0.51317215,0.4612196,0.516676,0.75668716,0.7186855,0.7611266,0.76019365,0.66434073,0.63945425,0.70285124,0.6791805,0.5677445,0.586322,0.56939286,0.65626234,0.9457467,0.77329296,0.66199964,0.56560755,0.6760184,0.7236913,1.3988042,1.233598,1.0787607,1.2130357,1.1071768,0.9809886,0.92104185,0.8363819,1.4327984,1.8437586,1.4025123,1.2439209,1.097879,0.96914756,0.8807801,0.75674033,0.68975866,0.71015,0.61969054,0.54738826,0.5935781,0.5871042,0.5736365,0.71081537,0.81733084,0.76367474,0.65912557,0.664065,0.8324176,0.99531984,1.199166,1.3184828,1.3188555,1.3123937,1.2235297,1.2271821,1.461801,1.9750226,1.9199002,1.7765598,1.7444179,1.8213174,1.8593535,1.8255068,2.368446,2.5736248,2.4622273,2.3628807,2.288996,2.2489247,2.2188025,2.1863062,2.2500389,2.1606388,2.153525,2.1331086,2.0804496,2.1365585,2.234738,2.2200205,2.191008,2.2206745,2.2898548,2.203335,2.3893528,2.354165,2.324667,2.3440692,2.2520766,2.123283,2.1150236,2.113159,2.0595427,1.9640487,1.918123,1.8751414,1.8859123,1.8256882,1.7644784,1.7505691,1.7224345,1.7250282,1.6508799,1.6352,1.6585411,1.6911132,1.709902,1.7544582,1.7908843,1.8050966,1.9497601,2.0154727,2.0583756,2.082156,2.087192,1.9955454,1.9746976,1.9586118,1.893935,1.8260849,1.8737006,1.8071578,1.7884123,1.7308891,1.6988351,1.706209,1.6665101,1.6692836,1.6507957,1.6303201,1.6498094,1.649096,1.7342582,1.7720213,1.9163449,1.8072207,1.7859447,1.8697827,2.0221267,2.0004957,1.9587936,1.9827983,2.087624,2.1115804,2.0062134,1.9157865,1.8886273,1.8262882,1.8182883,1.8191876,1.7929051,1.7126786,1.7727623,1.842008,1.8223345,1.8798082,1.8677281,1.782514,1.7187903,1.6596311,1.6137767,1.6226354,1.5911343,1.6194811,1.6298015,1.854028,1.6635251,1.7328932,1.8609098,1.8386426,1.5877657,1.6004138,1.7815342,1.8154879,2.0675967,2.3474276,2.3536065,2.3834515,2.480956,2.6899366
+0.5540204,0.2312436,0.35465747,0.67784715,0.75719506,0.9658052,1.1649414,1.201947,1.241917,1.4036939,1.4645541,1.6240054,1.508888,0.9381267,0.21803214,0.9238185,1.0353096,1.0466869,0.65717745,0.3301599,0.16744082,-0.039116416,-0.1380407,-0.17655148,0.006916184,0.047187645,-0.12204853,-0.252962,-0.31971395,-0.39720643,-0.4675592,-0.5532921,-0.6183572,-0.6849457,-0.7868175,-0.8414352,-0.92213535,-1.0043132,-1.0294914,-0.8814441,-0.4214395,-0.49574417,-0.6695872,-0.7263447,-0.7728418,-0.80547357,-0.85423255,-0.9220004,-0.9936987,-1.0414811,-1.0878928,-1.1081884,0.66412205,0.33463466,0.74882084,1.0632857,0.4791196,0.47313803,0.872422,0.81612885,0.9420343,0.9555253,0.59284353,0.37753162,0.30482006,0.12860069,0.47523868,0.24552612,0.056331683,-0.06296016,0.7888191,0.55454224,0.52250504,0.38952082,0.39320654,1.4771465,0.78777003,1.7177289,0.9626385,0.8531765,0.63013524,0.41303712,0.4975173,0.5264336,0.2806399,0.21304868,0.13589595,0.13469104,0.05435363,0.0027921423,0.31495407,0.16606219,0.19614123,0.26734993,0.19861056,0.16011314,0.070869386,0.60971105,0.64146924,0.41789174,0.7071202,1.1489859,1.2120755,1.0634468,1.0607098,0.7151199,0.5180732,0.593136,0.38582945,0.21026053,0.1553862,0.5431051,0.32271105,0.84221506,0.84058857,0.47335804,0.41320822,0.50427324,0.2728382,0.10839787,0.37613466,0.31331208,0.102149636,0.10158457,-0.12904413,0.71228325,0.53620183,0.26755118,0.10341537,-0.057284612,-0.10555887,0.3330469,1.2326727,0.7307236,0.45021898,0.2592712,0.098111734,0.097029716,-0.06369481,0.6414437,0.464826,0.28625566,0.095230564,-0.06241533,-0.13912815,-0.21845068,-0.29584947,-0.37403703,-0.3789643,-0.3941168,-0.44652924,-0.61060053,-0.76001817,-0.8717326,-0.9515973,-1.0030376,0.38898182,1.2977061,0.6176915,0.6224056,0.8876799,0.49343264,0.25256822,0.058434803,-0.08199692,-0.13977669,-0.2222564,-0.32619518,-0.26901907,-0.25039735,-0.4179727,-0.5050117,-0.6054101,-0.51345074,-0.4697138,-0.51666147,0.7400143,0.9482947,0.66456497,0.34115744,0.22012831,0.10025777,-0.049506556,-0.17963977,-0.28857157,-0.3253913,-0.06672038,0.3017872,0.089955956,-0.056848463,-0.12896024,-0.20422679,-0.2882569,-0.3416024,-0.34592664,-0.3730011,-0.33708286,-0.44370824,-0.5463373,-0.54071796,-0.6038704,-0.6354625,-0.6608961,-0.58194053,-0.61728334,-0.6516284,-0.64995575,-0.65078896,-0.25275233,-0.0271216,-0.154467,-0.2651792,-0.2998548,-0.22603592,-0.14824681,-0.2747845,-0.3285131,-0.35154775,-0.38273907,-0.3875083,-0.41986844,-0.41814205,-0.38691172,-0.4387151,-0.4310999,-0.33283654,-0.3657209,-0.37945184,-0.34845418,-0.38421196,-0.42616117,-0.4552564,-0.3841635,-0.24892722,-0.08528273,0.23146613,0.2748556,0.24077873,0.22945784,0.23316698,0.20340236,1.1036309,1.4751151,1.3346858,1.3042109,1.2779186,1.375477,1.3506546,1.3682383,1.9589086,1.8716017,1.8389314,1.7237008,1.6887188,1.6184046,1.5725744,1.5950332,1.6945682,1.6606264,1.5845845,1.5611098,1.5686861,1.575813,1.6785237,1.7231712,1.7485731,1.7384682,1.7004983,1.6452178,1.6109729,1.5595294,1.5857466,1.6878712,1.6294262,1.5852281,1.5876596,1.5807785,1.5945005,1.5392492,1.5163004,1.4881616,1.5342965,1.4888129,1.4618294,1.4557927,1.4713454,1.482461,1.4663372,1.4124956,1.4033983,1.4139382,1.4279649,1.4869938,1.5165663,1.5135521,1.5466729,1.5317357,1.5451432,1.5364536,1.5917226,1.6276054,1.7127205,1.7788916,1.7421515,1.7298551,1.855304,1.7796865,1.7583141,1.7104548,1.6520163,1.6384249,1.6200519,1.5688496,1.5650179,1.5355867,1.5518198,1.5425644,1.6655704,1.7220724,1.8375936,1.761729,1.7367619,1.7794018,1.9051769,1.8454885,1.88671,1.9264954,2.016858,1.9166238,1.8446507,1.7564927,1.7509729,1.6986088,1.703881,1.6655736,1.6815518,1.6144096,1.6459513,1.6703224,1.7523637,1.9018825,1.987793,1.9265621,1.9241545,1.8143523,1.7192051,1.7166317,1.690911,1.6861278,1.7349148,1.8982251,1.9010203,2.0091853,2.2087636,2.318581,2.0161223,1.9485717,2.1656153,2.30779,2.4812799,2.727837,2.6453652,1.5965788,0.7861273,0.26626548
+0.013773885,-0.5803318,-0.5801176,-0.695639,-0.6416042,-0.64968455,-0.57855576,-0.5696346,-0.5540566,-0.4368603,-0.6127198,-0.557632,-0.53604674,-0.6860275,-0.73428583,0.43245977,0.26781544,0.111570194,0.8107966,0.48074955,0.13436608,-0.035554837,-0.18546261,0.393962,1.296738,0.6972658,0.39232826,0.34451184,0.21953683,0.039256897,-0.1317197,-0.28195927,-0.34898552,-0.4556542,-0.5509213,-0.6140517,-0.71886337,-0.8253675,-0.7664393,-0.3908089,0.24940424,0.020957742,-0.1814274,-0.35076207,-0.5032702,-0.6160716,-0.70374316,-0.7899946,-0.8424504,-0.88294625,-0.92762196,-0.98311853,0.20201096,0.15335743,0.35459885,0.9679333,0.38834372,0.19385402,0.030718211,-0.18595342,0.58419853,0.44665116,0.102328494,0.26719126,0.23644666,-0.004234437,-0.12566657,-0.19371265,-0.315213,-0.3893755,-0.38361353,-0.4560812,-0.4036336,-0.25164133,0.8829677,1.4533446,0.69090414,0.46700543,0.85534817,0.62977135,0.35446668,0.1657872,0.5609769,0.42598557,0.15133388,0.026489679,-0.11574316,-0.13157964,-0.2159469,-0.32876733,0.08702259,0.0029232502,-0.21377036,-0.3637781,-0.41457796,-0.4291298,-0.5129173,-0.35089657,-0.25699216,-0.36140114,0.62202454,1.3323085,1.01007,0.57434547,0.37032986,0.25332883,0.09353417,0.045128275,-0.047710493,-0.14277954,-0.21354108,-0.29627246,-0.44070172,-0.5204919,-0.4829982,-0.59592116,0.05846895,0.53775144,0.13080673,-0.054566976,-0.21678995,-0.3285181,-0.46199024,0.28412202,0.075270146,0.5478183,0.23343845,-0.06501724,-0.27036607,-0.44420245,-0.6054854,0.94469666,1.3044364,0.6380296,0.3432925,0.17869797,0.07637076,-0.06256361,-0.16544141,0.597263,0.4949153,0.36325234,0.1130476,-0.062495943,-0.20735742,-0.3236339,-0.44846517,-0.52427274,-0.48690197,-0.5430963,-0.6566827,-0.8157325,-0.9400201,-1.023768,-1.0971236,-1.1636546,-1.2370708,-0.55419207,-0.03440709,0.4502631,0.30980608,-0.011837538,-0.052096438,-0.29013178,-0.41635382,-0.508907,-0.6064756,-0.68188274,-0.6363038,-0.62691396,-0.7825247,-0.8978686,-0.8548922,-0.77707475,-0.97691035,-0.33025002,0.008231681,-0.27571073,-0.4151984,-0.5123451,-0.57896745,-0.65677565,-0.72648925,-0.81046736,-0.84372973,-0.8951951,-0.3410309,0.0820913,-0.16795857,-0.3215117,-0.41128147,-0.42893866,-0.50552994,-0.5874097,-0.6432994,-0.62401295,-0.6021782,-0.697078,-0.8087483,-0.69618547,-0.48462814,-0.59697306,-0.66838735,-0.65674233,-0.7026506,-0.7555997,-0.78469515,-0.03984263,0.73506993,0.35933864,0.07852079,-0.10827394,-0.19501252,-0.2353893,-0.31119764,-0.3944895,-0.4550544,-0.51235515,-0.55376136,-0.56617117,-0.62648237,-0.66171694,-0.6277214,-0.6545651,-0.6708714,-0.5601578,-0.59228426,-0.6389725,-0.6560457,-0.6862628,-0.7035265,-0.6173171,-0.5583929,-0.392751,-0.2011132,0.27727917,0.27328885,0.2945546,0.26547065,0.27480188,0.24671082,1.2252328,1.261378,1.050803,1.0015614,0.93606764,0.90285647,0.8452647,0.84640855,0.98822343,0.97608376,1.0004379,0.988567,0.9926274,0.96156216,0.9296812,0.95732063,1.020912,1.0153742,0.98821235,1.0080965,1.0383618,1.0193021,1.0305072,1.0249608,1.0600462,1.0764682,1.0538055,1.1038305,1.2634906,1.1955099,1.1998783,1.2608781,1.2170004,1.1804644,1.1758901,2.0510912,1.8292024,1.6478387,1.4970522,1.4179673,1.4142604,1.3706558,1.3285958,1.3365216,1.3387913,1.3353596,1.3259304,1.2840124,1.2767806,1.2744675,1.2698251,1.3148764,1.329951,1.3324523,1.3677657,1.3289893,1.3284432,1.3082314,1.3438795,1.3431885,1.3815567,1.439257,1.4118543,1.4268003,1.5800537,1.5047921,1.4635952,1.4081798,1.3340776,1.3067982,1.3171966,1.2992445,1.2931931,1.3015069,1.3594047,1.3610327,1.4403795,1.4687763,1.5132629,1.4783702,1.4686172,1.5252573,1.5368152,1.6367987,1.765555,1.7729087,1.8942292,1.8760172,1.8005482,1.6718876,1.611011,1.6002225,1.5551531,1.4689381,1.4013119,1.363286,1.4347509,1.5952482,1.9264765,2.0441003,1.9653392,1.8019062,1.6743802,1.4945786,1.3944594,1.4378994,1.4261277,1.4844503,1.5884753,1.824374,1.9684527,2.168827,2.2573595,2.278933,1.9854207,1.8894806,2.134266,2.078082,1.672787,0.7176626,0.08144742,-0.18263198,-0.26576903,-0.267446
+0.35319054,0.049709868,0.001111541,-0.19048806,-0.23671009,-0.17809834,-0.13793896,-0.29086775,-0.39620993,-0.28186628,-0.5125077,-0.4700289,-0.39845273,-0.48957598,-0.4360625,0.15122987,0.973091,1.5717841,1.3709081,0.95990485,0.7783838,0.47296357,0.30917475,0.15995504,0.31036976,0.52644813,1.2441218,1.4597056,1.1035517,0.8030259,0.60420716,0.41839883,0.32167935,0.13774979,0.034744587,-0.057576906,-0.17215689,-0.2816676,-0.13338868,1.0108458,0.8569819,0.5907446,0.5229225,0.4287301,0.22219248,0.026850056,-0.129379,-0.26242217,-0.33273017,-0.42049176,-0.47389328,-0.41489932,0.8303349,0.5984268,1.1460029,1.171203,1.3801231,1.530729,1.2660162,0.90611774,0.92470217,0.76878285,0.5053072,1.1197398,1.3045917,0.952928,0.7020571,0.55253804,0.34539977,0.21714298,0.13750596,0.038419645,0.0024853982,0.008263681,0.44201553,0.8762864,0.4538327,0.4030947,0.34641996,0.2887275,0.11342025,-0.06063443,-0.031143155,-0.05381423,-0.19191727,-0.15418655,-0.2796365,-0.34024245,-0.42231202,-0.48811045,-0.55411696,-0.6093868,-0.63875616,-0.6639657,-0.6887454,-0.60378623,-0.54988974,0.53937334,0.772076,0.39423627,0.84329057,0.9286177,0.539268,0.26037747,0.10265207,-0.019009467,-0.14678006,0.6151479,0.44792593,0.2589436,0.16523679,-0.055740405,0.27182993,0.88781536,0.70555544,0.37563887,0.67845374,1.1951065,0.69136786,0.50838506,0.2377524,0.058546666,-0.1044606,-0.2253392,-0.36136848,0.3225323,0.43798178,0.12877795,-0.070338815,-0.19906314,-0.3290782,-0.44371164,1.0659404,1.8652338,1.1737101,0.7976861,0.807071,1.047961,0.71863157,0.5607349,0.77150613,1.0763125,0.6603083,0.42023963,0.2370234,0.09778473,-0.004395958,-0.11496198,-0.16713433,-0.25699055,-0.31411684,-0.46997696,0.52425206,0.83799964,0.4260913,0.23544084,0.09345327,0.68978643,1.124706,0.79636526,0.6645468,0.7643371,0.8435804,0.45713788,0.26106817,0.18929559,0.08918406,0.033919398,0.4599127,0.4608254,0.22542141,0.087120116,-0.03547729,-0.1699482,-0.18153353,-0.116688564,-0.03678028,-0.18894494,-0.29852575,-0.39233655,-0.4737561,-0.5102675,-0.56108236,-0.60023063,-0.6314415,-0.6374469,0.16349708,0.8388161,0.509937,0.3796869,0.20377353,0.094917506,0.016111378,-0.09990466,-0.11213958,-0.12791215,-0.13860613,-0.2332543,-0.2579309,-0.32860702,-0.23283231,-0.18768223,-0.262589,-0.27384004,-0.33453152,-0.42531615,-0.41101182,-0.13737679,0.5617555,0.35506177,0.17946808,0.35972145,0.4535542,0.34830394,0.16759521,0.117965475,-0.0018273555,-0.064600274,-0.088121384,-0.051125232,-0.023653451,-0.12946986,-0.09612325,-0.17016803,-0.19318488,-0.06704411,-0.08725485,-0.14923884,-0.15172817,-0.13914077,-0.19378322,0.55713147,0.6131784,0.65981966,0.76904655,0.9776542,0.9450468,0.9571837,0.98821664,1.0076216,1.0970188,1.9371781,1.8215725,1.559523,1.4926847,1.4867458,1.3657187,1.4037147,1.4632294,1.648025,1.6790843,1.7604437,1.6818726,1.6783152,1.8564745,1.880795,1.8489482,1.8527621,1.8285496,1.8522894,1.94781,1.8224579,1.7326808,1.7723681,1.8236064,1.8650028,1.915635,1.9457351,2.3207812,2.642271,2.5824785,2.6069257,2.5716338,2.5759838,2.5223777,2.520276,2.6162786,2.7078407,2.6172614,2.5571375,2.4791553,2.4489994,2.3916464,2.353279,2.367147,2.4475942,2.350977,2.3381557,2.2773411,2.262433,2.2615063,2.2736142,2.2807112,2.306172,2.3663678,2.4693973,2.5664055,2.5940866,2.642965,2.7482665,2.8106751,2.7693822,2.7683802,2.7407446,2.7325292,2.7831855,2.8498716,2.784284,2.6810417,2.6082897,2.6072736,2.6280904,2.6875,2.6671562,2.5818992,2.5920496,2.7586238,2.885014,2.9249125,3.0315228,3.075993,3.1861641,3.4056535,3.5938935,3.7295723,3.8735576,3.9107568,3.8325853,3.4255185,3.4420893,3.3102462,3.2866557,3.3561301,3.4303553,3.5735328,3.4227169,3.2238266,3.2870429,3.543141,3.3118153,2.581086,2.1113043,2.116599,2.2205107,2.089907,2.2477791,2.3281226,2.3365464,2.386406,2.585263,2.9595892,3.2329216,3.3393626,2.5890093,1.8382833,1.5249559,1.3846331,1.1403105,0.76003367,0.5314604,0.32457238,0.056838457,-0.015743282,-0.12113327,-0.09441295
+0.7001549,0.39763698,0.15385272,-0.046991203,-0.17808305,-0.38387468,-0.49285927,-0.5233739,-0.48360574,-0.44981566,-0.52889353,-0.52972394,-0.55414677,-0.49648285,-0.5558045,-0.527637,-0.17247535,1.4448266,1.062341,1.2824025,1.481286,0.92610115,0.60865396,0.3590365,0.2011137,0.15031202,1.4771461,1.7137325,1.2297094,1.6601667,1.6752903,1.1477206,0.93446374,0.7366692,0.5310185,0.355128,0.55813456,0.5127784,1.0022635,1.3262503,1.638144,1.0707871,0.7471287,0.57237583,0.472561,0.31192642,0.20300537,0.058898035,-0.0763626,-0.21191604,-0.21860133,-0.23207046,0.7862563,1.1037335,1.3701,1.2816622,1.2623918,1.9489822,1.4034674,1.5809778,1.6119921,1.2753994,1.0192434,1.0330479,0.9873867,0.76739407,0.61046886,0.50531155,0.31599247,0.20555353,0.07480763,-0.06537473,-0.2104859,0.10436045,0.7129802,0.9137727,0.4580025,0.36624533,0.92870796,0.8427763,0.5317437,0.25057268,0.15891464,0.032980148,-0.06753774,-0.19174436,-0.33739793,-0.42179137,-0.46130309,-0.46813834,-0.556693,-0.62611735,-0.49145514,-0.29855484,-0.3975982,-0.52118427,-0.61544,0.3204527,0.34896266,0.08316402,0.00083738565,-0.09598528,-0.32548353,-0.46452,-0.59381723,-0.625945,-0.6095509,0.61701214,0.2659666,0.12200029,-0.08862072,-0.3051431,-0.51521474,-0.185291,0.006530691,-0.24381934,-0.42862976,0.17484865,0.048543338,0.3462466,0.034012724,-0.16682246,-0.18359557,-0.23806669,-0.43859994,-0.57843935,-0.70006025,-0.77027094,-0.8542367,-0.89925057,-0.9970531,-1.004611,0.37485784,1.3413951,0.4708367,0.20063327,0.23451577,0.11024319,-0.106196895,-0.26082063,0.2267829,0.616609,0.105156556,-0.101747185,-0.32185742,-0.5125549,-0.5856434,-0.6794903,-0.7232019,-0.75843036,-0.8749801,-0.97833675,-1.0255783,-1.0645726,-1.1001195,-1.1297874,-1.2231166,0.3741338,0.84497523,0.93875587,0.487885,0.7489239,0.46244216,0.14994405,-0.027967524,-0.12900871,-0.21657208,1.4525492,1.0782456,0.6141925,0.34703836,0.14655487,0.03582986,-0.08228421,-0.10828763,-0.14178447,-0.08475529,0.051534574,-0.14215456,-0.2562015,-0.33664137,-0.38162524,-0.43102646,-0.50171435,-0.5468934,-0.5673592,0.48909485,0.7679635,0.90838695,0.94856226,0.45979655,0.23921399,0.07594322,-0.10402246,-0.16751857,-0.19978774,-0.231618,-0.36989194,-0.41758132,-0.48444414,-0.53907365,-0.016439717,0.37119323,0.10024163,-0.09501952,-0.24784064,-0.29014522,-0.33951682,-0.442014,-0.44367987,-0.47514084,-0.52233374,-0.55829024,-0.5318852,-0.65078133,-0.64186037,-0.70645285,-0.7236148,-0.71928,-0.732044,-0.6073843,-0.55375063,-0.54989946,-0.62904596,-0.6726362,-0.5575489,-0.6184268,-0.683087,-0.68606365,-0.65687937,-0.7261907,0.16276716,0.22356765,0.3684026,0.56152076,0.63406754,0.75578475,0.77237225,0.7611524,0.7282804,0.8249546,1.5642813,0.96923864,0.68316233,0.54824847,0.58944154,0.49983966,0.6762279,0.662061,0.6819217,0.8484849,0.9604383,0.9518492,1.016495,1.1076205,1.1428006,1.1618886,1.1711287,1.1533114,1.204577,1.4563222,1.4042745,1.3576422,1.3556889,1.3930699,1.4111142,1.4079881,1.4405669,1.7793143,2.1346257,2.077311,2.124052,2.219979,2.2151022,2.283707,2.3781266,2.4660628,2.627438,2.638587,2.646972,2.68299,2.7191877,2.686586,2.767846,2.8719835,2.946514,2.9728405,2.982842,2.9852877,2.9850674,3.0151644,3.042014,3.0006144,3.0423436,3.1807353,3.3578768,3.42917,3.3992686,3.366859,3.659651,3.5727744,3.5171065,3.446012,3.4895916,3.5490885,3.6248722,3.694013,3.7036834,3.6516192,3.6189227,3.6789567,3.6889794,3.7799506,3.792739,3.7104487,3.6889873,3.83833,3.862162,3.8549027,3.9138513,3.9263618,3.9942017,4.095698,4.025387,3.4003806,2.4043968,1.361462,0.81007797,0.6987941,0.8483547,1.0447332,1.2294974,1.4116571,1.5115366,1.5715379,1.642957,1.6818514,1.7720983,1.5743039,0.784127,0.37432915,0.21268189,0.22584073,0.45309785,0.56960034,0.7566199,0.8764181,0.92285293,1.0209097,1.0312153,0.8694876,0.50151783,0.12785189,-0.035812855,-0.112672746,-0.15203524,-0.051017407,0.20038871,0.20922844,0.07021132,-0.03752555,-0.15560731,-0.2189699,-0.27152815,-0.30732042
+1.0415759,1.0934072,0.7038417,0.29067582,0.19559143,-0.07603884,-0.2056169,-0.24416187,-0.16847117,-0.24586533,-0.3058527,-0.30273837,-0.37753516,-0.47192034,-0.5048196,-0.5049004,0.64662707,1.7684433,0.90244484,1.3626497,1.3401327,0.66490877,0.51204675,0.2994732,0.23810036,0.18794748,1.355363,1.1087923,0.7369847,1.5500745,1.5915825,0.9531598,0.66741633,0.4659508,0.3440999,0.21782659,0.08467603,0.022098903,0.5809559,0.78669983,1.9808078,0.9543101,0.639364,0.6330904,0.5089379,0.78495324,0.7882383,0.53645957,0.45851272,0.2698691,0.17999287,0.09817539,0.5476227,0.48216605,0.8183125,0.7060653,0.64309067,1.4803529,0.8440743,0.6558992,1.0414082,0.7258222,0.5933124,0.40379623,0.2698713,0.16873586,0.09120065,0.04732992,-0.043844756,-0.16529746,-0.27970076,-0.35548034,-0.45308292,-0.13220266,0.39726418,0.38101223,0.22306849,0.04483938,1.4181681,0.8733807,0.48017365,0.3497842,0.24172164,0.17062502,0.07012424,-0.11600828,-0.17057034,-0.20531435,-0.2527852,-0.26509735,-0.3105098,-0.35507715,1.2979198,1.1302843,0.676664,0.31726712,0.29615086,0.97478724,0.5554717,0.34415844,0.1414759,-0.055916663,-0.13349706,-0.13739292,-0.15727624,0.6741193,0.62425333,0.30899304,0.15178925,-0.020835351,-0.15558693,-0.29758176,-0.43085474,-0.32339904,-0.27847698,-0.37568474,-0.46773747,-0.26342323,0.0046941824,-0.057585564,0.23897986,0.8910424,0.43974963,1.3208253,0.7306415,0.43381628,0.36153138,0.2315199,0.12830098,-0.056821566,-0.24280876,-0.40279722,-0.20770578,0.8459368,0.31063575,0.12780614,0.00035795942,-0.06617083,-0.09759179,-0.27438298,-0.3297316,-0.33656755,-0.43882793,-0.5720315,-0.42011076,-0.09776969,-0.2414838,-0.32018867,-0.42025742,-0.50816935,-0.6094061,-0.13993345,0.06915201,-0.12739977,-0.2326654,-0.31097138,-0.43363708,-0.6080397,-0.17156045,0.17744169,-0.052859616,0.21104573,0.31650224,0.0638002,-0.07670286,0.103605315,0.04500146,-0.13810085,0.83027387,0.48349994,0.19312033,0.069726065,-0.027694087,-0.116780415,-0.19534598,-0.2256631,-0.18211658,0.116176456,-0.026061308,-0.096680835,-0.17179148,-0.21014266,-0.22665758,-0.25524703,-0.29066262,-0.35854116,0.047956977,0.536783,0.4660411,0.474334,0.23688726,0.1165458,0.042296056,-0.07879263,-0.0846446,-0.017155927,-0.12954147,-0.14863966,-0.18790017,-0.22866699,-0.2804294,-0.28533456,-0.32906294,-0.36263928,-0.41052547,-0.4502124,-0.43534306,-0.3960144,-0.43805176,-0.45188433,-0.50571555,-0.5513549,-0.5465556,-0.513825,-0.5559874,-0.5654844,-0.5892572,-0.6078195,-0.6427787,-0.6146301,0.007942278,0.31832376,0.1830511,0.099167675,0.060669582,0.20352234,0.16555016,0.05286326,-0.017500188,-0.0798516,-0.1164121,0.6941085,0.7769973,1.0238421,1.24808,1.3093721,1.1996669,1.2216707,1.3297392,1.3884089,1.4360993,1.6928582,1.3061686,1.1001699,0.9930427,1.088466,1.288327,1.428735,1.5268697,1.6067231,1.8427505,2.0648012,2.256078,2.3514194,2.4235313,2.5164602,2.594717,2.6412437,2.7137952,2.7492638,2.8676152,2.943246,2.994287,2.9919713,3.0058422,3.027705,3.122312,3.165513,3.164606,3.349885,3.354138,3.3246012,3.3061962,3.3079965,3.317118,3.3573813,3.428821,3.491261,3.4786448,3.4844413,3.5305781,3.5534115,3.5796926,3.5688047,3.5450664,3.5978003,3.7488647,3.7569327,3.6888323,3.663707,3.8845727,4.037712,3.9510074,3.961066,4.1218204,4.274251,4.2417736,4.1305065,4.0776634,4.379587,4.20526,4.18056,4.0831604,4.1570363,4.19402,4.2385144,4.2682905,4.220518,4.201687,4.142083,4.2148027,4.1915445,4.2988567,4.4398594,4.411408,4.3055224,4.3572507,4.2862935,4.157502,4.136479,4.124426,3.9159327,3.0305743,2.2804942,1.5463895,1.2245169,1.0293757,0.8893545,0.6247001,1.2118657,1.5879277,1.8021967,2.0071893,2.0622659,2.0934935,1.9942522,2.074637,1.8529472,1.2262092,0.7396852,0.43057227,0.30657643,0.22894894,0.22967039,0.34709483,0.53424835,0.50055766,0.87443566,1.1938525,1.1166507,0.6579908,0.37084362,0.19733016,0.024524976,0.0067202933,-0.071903124,-0.055314373,0.6042469,1.0875499,0.64380443,0.44356138,0.32258776,0.6783796,1.243418,0.77953285
+-0.11557776,-0.17003761,-0.13154398,-0.23688559,-0.30540228,-0.4991939,-0.57585996,-0.5961502,-0.62090725,-0.5692123,-0.6186307,-0.65299356,-0.63098115,-0.62120086,-0.58019835,-0.63098085,0.84399843,1.8570946,1.0332456,1.4640971,1.1376922,0.8410776,0.5556951,0.5967357,0.77856153,1.1221576,1.5473505,1.3340737,1.0916433,1.660138,1.4884684,1.2588677,1.0404298,0.84287155,0.6660802,0.48645836,0.36950508,0.4509986,1.4522182,1.1589595,1.5632209,1.1676891,0.9003443,0.8599555,0.73388386,1.2614057,1.3382853,0.9350387,0.7264,0.62873954,0.4974422,0.44666612,0.67305374,1.4442211,1.5710115,1.6196976,1.8944184,1.972841,1.4133025,1.3306445,1.6395319,1.3683925,1.1671373,1.1296194,1.0114912,0.88246226,0.7506962,0.6907271,0.59184146,0.49249148,0.40590602,0.32656908,0.25477844,0.17903453,0.14146335,0.02467588,-0.069999084,-0.1528811,-0.14787589,-0.19246729,-0.24514927,-0.3653389,-0.4506048,-0.5788643,-0.63161963,-0.35536873,-0.20799918,-0.39898533,0.57836974,0.5420892,0.22044249,0.0042192303,0.7740984,1.2657018,0.83791864,0.5618962,0.5653969,1.0983341,0.7425974,0.60007036,0.38514316,0.23037164,0.34108973,0.54266465,0.23776822,0.4207545,0.64548725,0.25877094,0.27666622,0.008222472,-0.19618537,-0.38340575,-0.5068507,-0.636023,-0.856778,-0.9203989,-0.99781007,-1.061183,-1.139332,-1.1110864,-0.07145639,0.0030972771,-0.33582717,-0.11157106,-0.24245849,-0.05242544,0.6788406,0.17578737,0.8174354,0.6682619,0.36270696,0.15623283,0.08154923,0.62424636,0.23085679,0.019210625,-0.17573728,-0.33795753,-0.49111027,-0.61918247,0.1720698,0.52249163,0.007037621,-0.20319198,-0.36323708,-0.20492695,0.02106021,-0.1894434,0.16207,-0.071992055,0.5052431,0.8460491,0.9853194,0.46766198,0.23293512,0.737788,1.2267228,0.596784,0.37915927,0.6500937,0.47135645,0.60872644,0.7160497,0.22862355,0.11344224,0.39906508,0.4020258,0.1576085,0.9009962,0.44034576,0.19882403,0.0013744496,-0.12311345,-0.27187368,-0.3543905,-0.48380667,-0.32740685,0.12008372,-0.21894167,-0.36708128,-0.47786504,-0.5498524,-0.6244465,-0.6930801,-0.73291236,-0.779091,0.4008996,0.6109797,0.50395495,0.45407325,0.07466565,-0.14817373,-0.19904992,-0.3297956,-0.3974722,-0.5156115,-0.53887755,-0.56369865,-0.6336596,-0.6862864,-0.75747716,-0.8002238,-0.79482,-0.827885,-0.8870926,-0.94299257,-0.9496863,-0.9674767,-1.0141296,-1.0120827,-0.97254133,-1.03807,-1.0815606,-1.0162592,-1.084134,-1.084398,-1.1228788,-1.1178927,-1.1159062,-1.1180902,-0.45572546,-0.0075970925,-0.2716186,-0.37424296,-0.49239498,-0.52432936,-0.5324005,-0.60746616,-0.6538156,-0.6979533,-0.7472762,-0.41309267,-0.4727543,-0.42331064,-0.43486202,-0.3300729,-0.2310971,-0.34147,-0.36409473,-0.37828803,-0.061260384,0.20628779,-0.10514079,-0.22791767,-0.2788924,-0.274062,-0.103364795,0.2451018,0.08673291,0.023076613,0.016283114,0.30246207,0.47238338,0.5389794,0.56605047,0.5340768,0.56896675,0.50394833,0.51948047,0.56818306,0.56839633,0.6673583,0.640375,0.61247355,0.61523616,0.61509633,0.749806,0.71862185,1.2006422,1.0404398,1.0227561,1.0734181,1.0093992,1.0535641,1.0881944,1.0025885,1.0807716,1.0172288,1.0548692,1.1229869,1.1227047,1.1061159,1.0858651,1.0899093,1.2077872,1.2125673,1.2560818,1.1455314,1.0996597,1.2227417,2.0942411,2.1447384,2.2157521,2.4354897,2.6684046,2.7031686,2.341114,2.2728975,2.1807504,1.9705634,1.9036518,1.8858137,1.8157842,1.8072197,1.7088671,1.2299106,0.8765533,0.93398994,0.9786966,1.0102162,0.94041765,0.8939225,0.6139623,0.6893705,0.801536,0.5998335,0.07346372,-0.11610873,-0.2620129,-0.23057981,-0.20011513,-0.23076566,-0.29420906,-0.36684287,-0.36833316,-0.398537,-0.51157594,-0.50797945,-0.5975079,0.04577146,0.2577661,0.34585625,0.34033498,0.16627204,-0.10819429,-0.15949167,-0.058294352,-0.17735374,-0.21061842,-0.22645086,-0.5058775,-0.5221661,-0.5557219,-0.61456805,-0.58065164,-0.43642476,-0.5094757,-0.34645227,-0.23853037,-0.2612932,-0.4134336,-0.49014485,-0.4629809,-0.5402497,-0.6409495,-0.7501172,-0.61651015,-0.5363234,-0.2648795,-0.2987504,-0.06045663,-0.23923169,0.86012644,0.93733466,0.6322267
+-0.011698816,-0.18317123,-0.2314006,-0.30633295,-0.34144902,-0.3749358,-0.42820042,-0.55978215,-0.5814286,-0.57335025,-0.6270867,-0.7133765,-0.7388392,-0.7286618,-0.7665074,-0.8540967,0.8935594,1.5406895,0.8828242,1.4390922,1.0822045,0.79587615,0.59227973,0.73128355,0.85308164,0.6556776,0.73109674,0.70970523,1.5950313,1.6004736,1.2401314,1.0117912,0.7160039,0.6026609,0.4485346,0.33531773,0.23974614,0.12767985,0.39512342,0.4979143,1.1480637,0.94170916,0.6295478,0.5345532,0.40910345,0.8372159,1.3744684,0.8904929,0.7564932,0.8190731,0.6252586,0.50506854,0.5037637,1.1778784,1.4086164,1.1917642,1.6437138,1.4226757,1.0890603,0.9485831,1.385473,1.1230521,0.7922652,0.6375252,0.5030349,0.37588868,0.20589823,0.1389344,0.08768959,-0.0519887,-0.15804239,-0.27473164,-0.3892583,-0.46507806,-0.5186015,-0.33922696,1.0167332,0.52309465,0.7018044,0.6126455,0.31681532,0.075804785,-0.06997514,-0.2760998,-0.35246807,-0.4234808,0.24726187,0.43676096,0.39002323,0.24783786,-0.033440847,-0.21136327,1.1587801,1.1494285,0.8500643,0.49866265,0.707215,0.58786714,0.27790636,0.1359056,-0.046321183,-0.23860954,0.9430811,1.1848454,0.847008,0.46126467,0.2950672,0.13127261,-0.0178429,-0.15559418,-0.28329307,-0.43612945,-0.6168152,-0.76605135,-0.8881477,-0.120815486,-0.15814789,-0.35021365,-0.49539447,0.05453175,0.020052683,0.37717366,0.15233737,0.36863825,0.2502885,-0.029172692,0.11504161,0.140426,0.72096133,0.48168254,0.14421158,-0.038226377,-0.1499111,0.44538146,0.12694196,-0.12094687,-0.27843043,-0.37566042,-0.47622713,-0.5715974,0.06758322,0.6085337,0.12448618,-0.08214998,-0.21593672,-0.32411757,0.3292328,0.46139973,0.82496274,0.43557262,0.4143857,1.2736611,1.5724719,1.2861779,0.89561534,0.6657503,0.6518589,0.5351434,0.33641917,0.21938463,0.21533488,0.38473922,0.22473864,0.058283273,-0.02644584,0.2852342,0.42243052,0.18050335,0.5642749,0.5434304,0.32157445,0.16180047,-0.02828757,-0.13456385,-0.21107534,-0.35485917,-0.13686842,0.5063945,0.10096654,-0.083225936,-0.2205465,-0.26803118,-0.34041804,-0.43518403,-0.4884823,-0.5602595,-0.08848816,0.4890359,0.19861211,0.03263064,-0.10069747,-0.2310523,0.11945845,0.2978508,0.06896238,-0.016560387,-0.10970639,-0.17495838,-0.2415355,-0.29823363,-0.45261818,-0.5137471,-0.5328975,-0.5658848,-0.6183829,-0.68654776,-0.71322924,-0.7429556,-0.4075783,-0.14688662,-0.29461884,-0.391323,-0.47818872,-0.5124883,-0.59959996,-0.5333939,-0.5475076,-0.6255653,-0.68399924,-0.7145593,0.03070629,0.49179298,0.11727528,-0.017797846,-0.11729653,-0.16039543,-0.17616373,-0.23616159,-0.32500497,-0.38814732,-0.41777825,-0.49820113,-0.4594414,-0.30891737,-0.30273396,-0.26214248,-0.2411945,-0.2876237,-0.30099428,-0.28927273,-0.20198084,-0.27394065,-0.35118136,-0.3973085,-0.3939281,-0.3268835,-0.11654693,0.52311605,0.5056653,0.3893874,0.38033512,0.5927184,0.8893807,1.0745417,1.1848965,1.1354861,1.2160271,1.1916826,1.2738011,1.4086006,1.319183,1.2111537,1.2192553,1.2824622,1.3745852,1.4538282,1.6449494,1.5568025,1.754697,1.500797,1.328426,1.3796041,1.3713645,1.321608,1.3919749,1.4038107,1.467065,1.434676,1.3239849,1.4046347,1.3225867,1.3529896,1.4490893,1.5132475,1.7086335,1.6581478,1.619056,1.5803987,1.6850603,1.7786844,2.010183,2.076446,1.9946804,1.9713092,1.7377968,1.5575249,1.2925001,1.0910211,1.1319339,1.0391604,0.90764743,0.9777473,1.0704457,1.0343806,0.85303533,0.6014329,0.5433216,0.570683,0.72818196,0.84219456,0.943106,0.863523,0.6366943,0.5471806,0.76674366,0.85556674,0.59364986,0.38574976,0.34419334,0.31933165,0.24926741,0.2450964,0.20958544,0.16596527,0.13644974,0.14725561,0.108363986,0.07689032,0.052217405,0.018566236,0.07809432,0.2062548,0.18774077,0.12176497,0.020528879,-0.047435146,-0.038176548,-0.056968275,-0.099133044,-0.15872622,-0.3863381,-0.40997502,-0.3757459,-0.43922582,-0.40278348,-0.30373296,-0.2625197,-0.27112004,-0.22015084,-0.19067173,-0.2756585,-0.33978337,-0.37004542,-0.43705705,-0.5019637,-0.54745525,-0.5926011,-0.6872519,-0.4501158,0.097059265,0.6326555,0.50545025,1.5198643,1.2504112,0.9096786
+-0.6067041,-0.7760724,-0.82122177,-0.89971775,-0.96146774,-1.080312,-1.1057358,-1.1915642,-1.2230449,-1.2979875,-0.6268677,-0.013581004,-0.30182928,-0.4333297,-0.57079595,-0.70402366,0.6849916,0.9884963,0.57221055,0.6350767,0.3632452,0.060950328,-0.14173289,-0.36009252,-0.50207305,-0.5316905,0.3162908,0.044420075,0.44562435,0.4262265,0.05121659,-0.07823151,-0.23072012,-0.41229188,-0.5325467,-0.5886961,-0.7018311,-0.60534614,0.22591905,0.048549984,-0.20922725,-0.39951074,-0.49210867,-0.5232247,-0.5921813,0.34679574,1.0295756,0.5762297,0.27101958,0.32408434,0.07209849,-0.09636946,0.059797112,0.18862173,0.49061447,0.2995751,0.5022018,0.19488572,-0.058451965,-0.22880684,0.10560407,0.10202867,-0.13081259,-0.30619222,-0.49469918,-0.6450286,-0.74855244,-0.8509855,-0.9363831,-1.0546091,-1.1719749,-1.2651457,-1.319612,-1.3756201,-1.4143546,-1.4719317,-1.5249561,-1.5786748,-0.12311742,0.2516445,-0.11462207,-0.35898063,-0.56459504,-0.6811937,0.036856074,-0.13603969,-0.033049908,0.11162101,-0.20861241,-0.41930366,-0.5904703,-0.5500513,0.27462026,1.0709052,0.4401671,0.16364662,-0.046853777,-0.25860682,-0.24014781,-0.088049755,-0.3802667,-0.59069014,-0.7572396,-0.88189757,-0.11215429,0.1964875,-0.16199228,-0.43290746,-0.64264053,-0.7761077,-0.89392227,-1.0115213,-1.1354787,-1.266935,-1.4242414,-0.73221844,-0.545698,-0.73202974,-0.87487173,0.25692114,0.46927285,0.061049942,-0.31691656,-0.53596014,-0.6917274,-0.85548043,-0.5350277,0.87033683,0.6173532,0.8260721,0.5039212,0.1490314,-0.12154892,0.3535788,0.20024581,-0.0718995,-0.24292557,-0.40447265,-0.56366247,-0.68972343,-0.7944683,-0.4228528,-0.41712773,-0.5890405,-0.7577542,-0.88154393,-0.3610236,-0.40465719,-0.5880615,-0.120914504,0.24918671,0.2967928,0.28153932,0.36469966,0.13872097,-0.11215231,-0.30312705,-0.5401772,-0.68395925,-0.78927726,-0.53148687,1.0029252,1.1323746,0.49636662,0.21897621,0.033982318,-0.05528107,-0.13530509,-0.07520828,0.010028612,-0.15200682,-0.29647028,-0.3958363,-0.50903875,-0.6173196,-0.6868536,-0.15416859,0.92145246,0.38818234,0.12452574,-0.08657889,-0.19882397,-0.284065,-0.36017072,-0.39500248,-0.3761931,-0.16124426,0.1081181,0.12738444,0.17431934,-0.0387311,-0.19800627,-0.089489475,-0.09910077,-0.058541488,-0.06139669,-0.2317095,-0.4071458,-0.48953366,-0.5566293,-0.6409527,-0.6473501,-0.69999135,-0.71353775,-0.7430095,-0.786358,-0.80995446,-0.8527432,-0.7863705,-0.72533727,-0.808274,-0.88335776,-0.9386903,-0.9231127,-0.98339236,-1.027474,-1.0247092,-0.9904593,-0.99569356,-1.0198171,-0.30342376,0.03633454,-0.19912766,-0.2758456,-0.36699682,-0.3754707,-0.3793444,-0.43752316,-0.4878093,-0.54688907,-0.6333386,-0.7238631,-0.6565242,-0.5071655,-0.48381102,-0.56508136,-0.548813,-0.5806187,-0.56289613,-0.5145885,-0.5260501,-0.5771985,-0.57951564,-0.579255,-0.5225781,-0.43946463,-0.33854952,0.083289206,0.0329195,-0.015617091,0.09274158,0.24800338,0.6092341,0.8094999,0.8573905,0.72425085,0.8094205,0.8528677,0.9427557,1.0228174,0.90179455,0.9154015,0.95244455,0.99097824,1.0632691,1.0488157,0.9512011,0.5973554,0.41187483,0.4585821,0.2846195,0.3978976,0.31060162,0.37608355,0.43574208,0.43497416,0.33324426,0.12501937,0.29687336,0.70174646,0.86247987,0.91404885,0.9783857,1.0197122,0.9345523,0.3331715,0.12701552,0.27616304,0.6532126,1.8603121,2.1835513,1.8201432,1.5826523,1.3952999,0.9503343,0.6254517,0.90506715,0.795382,0.69580746,0.4491604,0.45060274,0.67866373,0.8249508,0.6438595,0.32151285,0.09616105,0.025606897,0.07844445,0.37625426,0.5858931,0.51503205,0.11818348,-0.108178735,-0.20482966,-0.1482444,0.0058422424,-0.25228906,-0.31634682,-0.3119887,-0.24241632,-0.20724595,-0.22168808,-0.30042258,-0.37218967,-0.41581368,0.3025042,0.34064686,0.08853318,-0.048246536,-0.21778508,-0.25335023,-0.03500014,-0.07698078,-0.21581571,-0.3846715,-0.3992226,-0.39148122,-0.44158685,-0.5859151,-0.67024374,-0.75571275,-0.7396045,-0.8110083,-0.7966941,-0.7882655,-0.81776315,-0.77338266,-0.7403898,-0.67107695,-0.69680065,-0.8285464,-0.8291391,-0.88843703,-0.9593196,-0.95620704,-0.9610609,-1.0326471,-1.113205,-1.0631773,-0.8494606,0.016792465,0.2021631,1.1637282,0.5430267,0.3399884
+-0.5414984,-0.65068567,-0.7231731,-0.7755185,-0.81922203,-0.91541487,-0.98607445,-1.0659803,-1.124383,-1.2435409,-0.31015414,0.21800853,0.0857171,0.09214175,-0.13745847,-0.29588577,1.1707788,0.85100055,0.52559054,0.89428616,0.5482589,0.2683056,0.084193096,-0.066742286,-0.18525381,-0.27520955,0.23960312,0.19738637,0.22435294,0.22210734,-0.03267395,-0.09596495,-0.22264045,-0.3320059,-0.41232407,-0.44088906,-0.50467867,-0.5957313,-0.5799619,-0.5345364,-0.6206234,-0.6957704,-0.7677781,-0.51932365,-0.3449057,0.19281515,0.9823077,0.51468146,0.337512,0.4676761,0.21003708,0.034769382,-0.13295814,-0.1604341,-0.30667675,-0.42931792,-0.5109587,-0.61993265,-0.6854228,-0.7165205,0.17634282,0.9165391,0.8799177,0.6464,0.6013391,0.193299,-0.09441182,-0.27337095,-0.39095983,-0.50479144,-0.5969132,-0.69256586,-0.7636071,-0.8151857,-0.7572465,-0.77818406,-0.8689624,-0.9444654,-0.21942435,0.12462522,-0.21872468,-0.40613508,-0.5671614,-0.7134806,-0.83698,-0.92810005,-0.44269115,0.3689554,0.34042242,0.16473775,0.025160108,0.29079938,0.27299866,0.48503816,0.29409212,0.0014250018,-0.222451,-0.39644766,-0.38049778,0.036427055,-0.22002558,-0.47300917,-0.53625023,-0.70579803,-0.75465727,0.92713296,0.516463,0.16113567,-0.0740104,-0.21953599,-0.3469765,-0.4942656,-0.66310215,-0.8403425,-0.98861766,-1.1323376,-1.1349149,-1.0685472,-0.55980027,0.542047,0.85017955,0.38383025,-0.014013242,-0.2883334,-0.47215182,-0.40724033,-0.13753,-0.37113592,-0.4967844,0.06904462,0.29978102,-0.088212594,-0.3052497,-0.53788614,-0.50796217,-0.60784376,-0.7177495,-0.76339996,-0.86448014,-0.933258,-1.0208052,-0.71877456,-0.5572727,-0.71442056,-0.88385695,-0.9809102,-0.9828977,-1.0113398,-1.0271009,-1.0870972,-0.8557197,-0.5436407,-0.2575709,1.1387347,0.60654527,0.2972015,0.09061752,-0.109861225,-0.2464363,-0.35363308,-0.45209843,-0.54585344,0.5883934,0.45313072,0.1290719,-0.064621404,0.54384243,0.38032255,0.117275566,0.23742314,0.4785061,0.2716282,0.022908434,-0.1348643,-0.24592097,-0.32045254,-0.34150156,0.8706492,0.5972676,0.19685891,0.031114016,-0.074594796,-0.14435853,-0.19485539,-0.26644048,-0.32495558,-0.45214024,-0.23999326,0.1519009,0.6572727,0.24170788,0.01684583,-0.17224512,-0.31167635,-0.4055061,-0.3895224,-0.40580484,-0.50732684,-0.550635,-0.586859,-0.6543735,-0.63754594,-0.6670068,-0.6460311,-0.66932875,-0.71831197,-0.7503797,-0.7866373,-0.8007591,-0.81044734,-0.8152025,-0.84862304,-0.8772043,-0.86297953,-0.9046922,-0.9471959,-0.97647744,-0.90091604,-0.8786555,-0.76481646,0.06693207,0.25854284,0.13301192,-0.030652177,-0.16775255,-0.22589357,-0.2629858,-0.3379294,-0.38721937,-0.4305544,-0.49506187,-0.5909671,-0.50040376,-0.41238818,-0.42026636,-0.50038856,-0.5769981,-0.5603203,-0.5589475,-0.49208945,-0.54466605,-0.5878002,-0.5777209,-0.5396836,-0.47791085,-0.44724846,-0.10986221,0.32496834,0.14344709,0.10797219,0.15814851,0.25276092,0.48575187,0.6445786,0.51124597,0.33358023,0.35955784,0.4532387,0.72163117,0.6492022,0.22679906,0.42691147,0.8161197,0.9744526,1.0312715,0.940945,0.6662793,0.22893046,-0.07108791,-0.14441124,-0.19639897,-0.115828425,-0.17042512,-0.08816588,-0.036504563,-0.06472503,-0.113469034,-0.20241113,-0.06414874,0.29965705,0.6870069,0.907495,1.0212367,1.0684917,0.84154093,0.1176409,-0.085746855,-0.03821267,0.43381086,1.024365,1.3569077,1.0048814,0.80147874,0.66035724,0.5031589,0.34625638,0.39976534,0.37161452,0.2946645,0.10436039,0.11437981,0.26729107,0.33285847,0.23164026,0.07539542,-0.03837024,-0.083860055,-0.06723532,0.08315472,0.23798598,0.130727,-0.041685145,-0.13788354,-0.21307142,-0.16738231,-0.10316312,-0.24553785,-0.292081,-0.20689936,0.8690353,0.6501624,0.46795398,0.24612989,0.097099155,0.003628064,1.0109712,0.7072762,0.4077194,0.23964034,0.05696101,0.045806814,0.14374691,0.09412512,-0.035349593,-0.17956656,-0.18876308,-0.19604015,-0.26617214,-0.35838318,-0.4240812,-0.47679695,-0.46379074,-0.5051,-0.48844242,-0.1221295,0.26710242,0.07939257,-0.028927196,-0.028902952,-0.12026979,-0.25329527,-0.30492353,-0.35744274,-0.4236312,-0.4744395,-0.4613787,-0.5602368,-0.6775392,-0.5553882,-0.4395562,-0.5369971,-0.48176262,1.6720893,0.5792912,0.42939737
+-0.756643,-0.9687727,-1.1852201,-1.2923352,-1.3394018,-1.3867439,-1.4672453,-1.5529103,-1.5556518,-1.595758,-0.3230341,0.6194691,0.5465793,0.25424486,-0.0021430962,-0.16881357,1.0091655,1.3631606,1.2687029,1.2833786,0.7110222,0.40443408,0.1964895,0.023731846,-0.12015621,-0.24205197,0.22495206,0.19813137,0.5845866,0.50621057,0.22557084,0.25227803,0.095132604,-0.0351368,-0.18622303,-0.31931463,-0.4342482,-0.53309274,-0.22059622,-0.18531737,-0.383113,-0.130507,-0.1808247,0.1965283,0.14666055,0.008777458,0.96018827,0.5989414,0.5109215,0.37163883,0.13100962,-0.017618638,0.7819892,0.82284033,0.41814142,0.12172927,0.60695827,0.5200639,0.16089895,0.051086206,0.050279457,0.5341866,1.3088733,0.9275061,0.7540682,0.4967394,0.16599089,-0.03209267,-0.1999476,-0.3592927,-0.50634605,-0.38141483,1.4788904,1.3362417,1.2379122,0.5825722,0.3103056,0.0922717,-0.15222566,-0.09194602,-0.20113398,-0.39316016,-0.5533003,-0.6981628,-0.8393009,-0.9581557,-1.009393,-0.45182267,-0.33364582,-0.56898767,-0.74184173,-0.86069053,-0.95089746,-0.8609294,-0.6907039,-0.8416854,-1.0150471,-1.160851,-1.2882702,-0.40053084,-0.20298256,-0.5406048,-0.77635765,-0.955557,-1.114037,-1.0553463,0.10526748,-0.108385414,-0.43333113,-0.6625193,-0.83681655,-0.99501145,-1.1407185,-1.2829182,-1.4167752,-1.5069479,-1.4970763,-1.5085245,-1.5724186,-1.4683833,-1.4059125,-1.3076736,-1.343688,-1.5183594,-1.6706276,-1.8121098,-1.9296978,-2.0156236,-2.1105769,-2.1925302,-2.1138887,-2.0374382,-2.10643,-2.188031,-2.2218394,-2.2633672,-2.3058267,-2.3420703,-2.3894172,-2.4126368,-2.3244643,-0.34537467,-0.25655642,-0.52261907,-0.7254019,-0.85614955,-1.027139,-1.1782509,-1.0637546,-0.5863828,-0.6423218,-0.8671715,-0.8419491,-0.14771669,-0.19027579,-0.5056345,-0.7239273,-0.9075985,-1.0669469,-1.2077765,-1.3476228,-1.4579767,-0.08191748,0.1426214,-0.24077122,-0.46336168,0.028086115,0.35937077,0.2927661,0.2588958,0.7868039,0.46993613,0.114309326,-0.1342818,-0.3170211,-0.47492152,-0.52987564,1.0286407,0.6881815,0.33145112,0.115581766,-0.01986302,-0.10525195,-0.25009736,-0.36447424,-0.48603106,-0.601023,-0.65842634,-0.73075384,0.014232848,0.19974218,-0.13213207,-0.30600917,-0.45069224,-0.5416111,-0.38577372,-0.23612745,-0.35704657,-0.4658765,-0.5620332,-0.61837924,-0.6813904,0.18233313,0.34436703,0.037070204,-0.16251402,-0.28714353,-0.3620612,-0.43358934,-0.50614977,-0.57193565,-0.6522727,-0.7140041,-0.7786102,-0.823421,-0.83265686,0.00815605,0.35159272,0.06707667,0.24177216,0.7611104,0.61524653,0.309802,0.103843465,-0.013855558,-0.10034849,-0.16075112,-0.21113662,-0.26623973,-0.31633103,-0.3800039,-0.42644632,-0.40086743,-0.3700093,-0.41198492,-0.4925383,-0.56826806,-0.57024693,-0.5925478,-0.586259,-0.5607476,-0.5239891,-0.5952381,-0.65548944,-0.6335602,-0.67176193,0.026021648,0.5540912,0.20314866,0.08559038,-0.000444185,-0.08933444,-0.0059048943,0.059544016,-0.004158657,-0.11247696,-0.16965932,-0.18628445,-0.107051685,-0.07888521,-0.16893588,-0.13792966,0.4548893,0.61962247,0.527292,0.08375512,-0.06451818,-0.08635767,-0.07281725,-0.034834843,-0.16994537,-0.17460307,-0.2652377,-0.27564102,-0.257165,-0.3200256,-0.16854681,-0.12557721,-0.27201137,-0.13649967,0.8530065,1.6634276,2.044163,2.2707899,1.7542326,0.70409137,0.27371547,0.07540192,-0.019793075,0.57487077,1.2953007,0.8268224,0.7735604,0.54885685,0.35331094,0.19360135,0.066661075,0.01329698,-0.047846567,-0.1365634,-0.15561923,-0.12042807,-0.119352534,-0.20189898,-0.29440928,-0.3519703,-0.39901853,-0.43024296,-0.43720698,-0.38868338,-0.40630022,-0.45977068,-0.52425504,-0.5853505,-0.5697786,-0.5482389,-0.63754535,-0.70357287,-0.6008765,0.9815166,0.8356464,0.52507627,0.26815858,0.07890405,-0.048457395,0.7816761,0.6989356,0.35662723,0.13257965,0.0028534718,0.0073557086,-0.015435051,-0.14543043,-0.2566243,-0.4000728,-0.4405323,-0.48508823,-0.5498753,-0.6075259,-0.6521511,-0.7131853,-0.75452125,-0.80041647,-0.87979174,-0.88527334,-0.82399076,-0.78907907,-0.79143894,-0.80871445,-0.8874761,-0.9588197,-1.0423887,-1.089268,-1.1674666,-1.2119908,-1.2630812,-1.2991496,-1.3637794,-1.4155601,-1.4957331,-1.5056198,-1.5465261,0.7145544,0.57198876,0.27619356
+-1.0685145,-1.2230545,-1.3468363,-1.4549428,-1.4920652,-1.544099,-1.624367,-1.6982954,-1.6136549,-1.4532406,-0.89078206,-0.38222444,-0.14941786,-0.13903011,-0.360557,-0.4543983,1.4439831,1.3148363,0.6862455,1.2911923,1.0774565,0.60825396,0.3187327,0.095771074,-0.07052453,-0.20883714,0.3561153,0.26209143,0.17178108,0.1154394,-0.10617696,0.050098915,-0.07654536,-0.18545048,-0.32568356,-0.44270518,-0.5625597,-0.6573412,0.5592036,0.37333804,0.06352557,0.1308,-0.014871132,-0.16259135,-0.270674,-0.3302217,0.4311815,0.6980342,0.7294094,0.38437074,0.09725593,-0.0685737,0.3025591,0.30906388,0.04957499,-0.11722706,0.4532398,0.32772386,0.84046483,1.3889368,0.78789747,0.69910264,1.1949198,1.3635578,0.9739891,0.55853945,0.2725312,0.058195714,-0.12287597,-0.25585827,-0.40315205,-0.40836352,0.13477898,0.35260144,0.09868096,-0.13089006,-0.31541473,-0.4755839,-0.62333465,-0.7291924,-0.8247918,-0.9190017,-1.0052133,-1.0839161,-1.170602,-1.2441851,-1.3102913,-1.386966,-1.4393064,-1.4649397,-1.5315089,-1.5912673,-1.6623263,-1.7098999,-0.75155514,0.11498113,-0.081114665,-0.39484444,-0.6353425,-0.5422333,-0.42628205,-0.6289903,-0.85239816,-1.0256244,-1.1887205,-1.0931543,-1.0347905,-1.1873686,-1.3149092,-1.4286716,-1.5286944,-1.6347904,-1.735623,-1.8265479,-1.9086777,-1.9865777,-2.0328572,-1.5630941,-0.8521849,-0.83909816,-0.9890361,-1.1972413,-1.3890253,-1.5671383,-1.713429,-1.8455901,-1.9638968,-2.0766125,-2.1779568,-2.2763724,-2.3493347,-2.38471,-2.4370813,-2.29664,-0.48455438,-0.3634718,-0.61147946,-0.77746856,-0.8833222,-0.21394645,1.1912425,1.1177533,0.51333857,0.20492266,0.03489225,-0.23802023,-0.46440822,-0.64868,-0.77913153,-0.90649563,-0.96860605,-0.99349004,-1.1049265,-0.84796834,-0.16090219,-0.23627202,-0.51328886,-0.7265716,-0.89468646,-1.0371665,-1.1688206,-1.2792666,-0.3717516,0.14605641,-0.2306426,-0.41978955,-0.31697536,-0.15050022,-0.20872514,-0.3378068,-0.5308787,-0.6723617,-0.85448664,-0.9693588,-1.0799103,-1.1642114,-1.2289643,0.49706018,1.086072,0.44928017,0.13336359,-0.07882947,-0.20785175,-0.35919052,-0.47961587,-0.60446197,-0.6862407,-0.7450325,-0.86298245,0.71828103,0.65221786,0.29313642,0.06344132,-0.11831574,-0.25884163,-0.34873962,-0.39123565,-0.415783,-0.53236324,-0.6314294,-0.7312255,-0.7952186,-0.5799018,-0.49041563,-0.6423108,-0.75718546,-0.866119,-0.9116491,-0.96329087,-0.80257416,-0.59033036,-0.72828543,-0.8495525,-0.92953587,-0.97084975,-0.98112804,0.19232857,0.552706,0.2501151,0.23615323,0.9164498,0.776105,0.5085149,0.23886897,0.08488859,-0.018796694,-0.1133378,-0.1974568,-0.26668915,-0.35370216,-0.425476,-0.49967203,-0.5240044,-0.52898383,-0.5873534,-0.64275545,-0.6648765,-0.7110718,-0.7742382,-0.78637815,-0.78365105,-0.070134625,0.2527721,-0.114481375,-0.19811223,-0.29325384,0.20870265,0.33668995,0.09157108,-0.00086818263,-0.082376435,-0.21843652,-0.27633417,-0.21709323,-0.26634988,-0.34595793,-0.3980655,-0.42401075,-0.4299265,-0.41441166,-0.46018934,-0.51231354,-0.20099466,-0.13461776,-0.25796092,-0.4307497,-0.50542414,-0.519839,-0.42927796,-0.5091632,-0.6206137,-0.6594571,-0.7186579,-0.8147616,-0.8526108,-0.88792944,-0.6013978,-0.44052735,-0.56611353,-0.5319292,-0.41860414,-0.116502166,0.092948064,0.07587837,-0.26744342,-0.42935354,-0.48175123,-0.31548768,0.15177862,0.40734124,0.8641416,0.5733669,0.7254754,0.40800166,0.23029955,0.050543655,-0.11016764,-0.20487106,-0.26236653,-0.34355858,-0.38605452,-0.38528895,-0.40673995,-0.48452133,-0.5770784,-0.65060216,-0.7209487,-0.74358296,-0.7580489,-0.7416228,-0.78798914,-0.82800424,-0.9311878,-1.0063403,-1.0308772,-1.0255896,-1.081984,-1.136912,-1.1498942,0.29107273,0.36659685,0.11868845,-0.06031115,-0.2010323,-0.29140553,0.909487,0.5737654,0.26934674,0.067580655,-0.07444127,-0.1832299,-0.21470842,-0.32025242,-0.38826996,-0.53548485,-0.62542737,-0.69230664,-0.7351301,-0.7937565,-0.88061434,-0.9682554,-1.0187186,-1.055845,-1.1238899,-1.115037,-1.0841737,-1.0906581,-1.1333745,-1.1733156,-1.2379142,-1.2922609,-1.3526052,-1.3812668,-1.4302706,-1.4945441,-1.5376781,-1.5307055,-1.5170124,-1.5945272,-1.616038,-1.5809253,-1.6027668,-0.5115023,0.08005248,-0.2704287
+0.3427221,0.6513053,0.56375474,0.4490316,0.30348054,0.21555753,0.015859019,-0.11514908,0.03733414,0.349528,0.23476903,0.28564924,0.9293745,1.0639234,0.86699045,0.7318005,2.408861,2.7104821,2.266683,2.6158066,2.5655642,2.1479988,1.8228605,1.6216824,1.4631448,1.2854004,1.8663275,1.6791103,1.8297062,2.1594424,1.8514816,1.9707537,1.7401567,1.524486,1.3335198,1.1442924,1.0202088,0.91825455,0.7983046,0.76211184,1.7628572,2.1882422,1.866894,1.7637985,1.7339199,1.5405676,1.4323667,1.6042044,2.3106422,1.9142337,1.6302637,1.4814106,1.3499639,1.2094156,1.1417319,1.5904832,2.8448014,2.211194,1.8377069,2.0404234,2.3176098,2.178837,2.6566288,2.4804718,2.1305385,1.7877258,1.5729885,1.3968083,1.2131977,1.0733695,0.945421,0.85187685,0.7253684,0.8680151,0.9806603,0.7777518,0.60708237,0.42722243,0.28196242,0.15454729,0.051690344,-0.07491596,-0.20535703,-0.31149882,-0.41879317,-0.52736354,-0.597837,-0.68911266,0.81359446,1.7710412,1.27281,0.99615943,0.78968525,0.5554682,0.72834134,1.2989691,0.9931545,0.6635918,0.43762565,0.23899882,0.18129314,0.032037314,-0.24684991,-0.41163087,-0.59503055,-0.7328752,-0.8756828,-0.9719789,-1.04604,-1.1212709,-1.1704397,-1.219737,-1.2820473,-1.3409874,-1.386048,-1.4265924,-1.4272523,-1.4562871,-0.8007581,0.106029466,-0.0015189908,-0.2315129,-0.45710588,-0.6544591,-0.8385607,-0.9772099,-1.0922725,-1.1658947,-1.2419767,-1.3145097,-1.3597486,-1.4075847,-1.4321048,-0.7615331,0.70533526,0.85737914,0.9153639,1.7386913,2.6927106,2.5651815,2.300095,2.482404,2.2077658,2.010708,1.8828804,1.5579381,1.2890621,1.2040393,1.5039473,1.4540455,1.2163769,1.1897918,1.0685128,0.9215014,0.82987803,0.67605174,0.5257036,0.4356163,0.4852895,0.4732836,0.2747103,0.096512556,0.53143746,0.901184,0.650721,0.5143677,0.85147846,1.0842311,0.835019,0.7460186,0.6726622,0.5311946,0.3472072,0.1968463,0.055243548,-0.055804837,-0.19305499,1.6123776,2.6871352,2.1785417,1.81615,1.5995102,1.4234498,1.277083,1.1123432,0.95956385,0.870763,0.7672166,0.6553377,1.5766506,1.9980035,1.6020082,1.3901448,1.2196649,1.1259731,1.102694,1.7612536,1.8492388,1.5782464,1.4409752,1.3433944,1.2645321,1.2927744,1.2635617,1.0953606,0.97735023,0.90852505,0.851174,0.77146524,0.6958712,0.6128855,0.5160357,0.4228288,0.32983625,0.25510043,0.22513126,1.9035151,2.4205184,2.5127957,2.5472045,2.1984298,2.3229814,2.3906631,2.1046262,1.8948758,1.8220317,1.7304574,1.6036215,1.5287935,1.4275004,1.3118801,1.307786,1.2035956,1.0778508,1.0180315,1.0471687,1.068471,0.9630079,1.1908836,1.3995249,1.2780282,1.4286945,1.3258988,1.150394,0.996631,1.0406771,1.927078,1.8637389,1.9084662,1.7708027,1.6492153,1.5946366,1.3966961,1.3378677,1.3285716,1.3072017,1.2647266,1.237752,1.2104485,1.1462951,1.1408294,1.013889,0.9597465,0.9640002,0.9313358,0.93360436,0.9184327,0.9342703,0.89873564,0.99194384,0.9523242,0.8673546,0.7660812,0.6718936,0.52522916,0.6776027,1.6038277,1.5352235,1.385936,1.2473696,1.2378477,1.2407262,1.349249,1.4547765,1.2836142,1.1297923,1.0952575,1.1527498,1.2681385,1.3051747,2.1189647,2.0803823,2.3109298,1.9843397,1.788507,1.6610365,1.5591984,1.3961679,1.2843734,1.2451657,1.118613,1.047699,0.97406745,0.867229,0.7753897,0.64535654,0.555968,0.5531411,0.5603164,0.51420707,0.4240327,0.40939468,0.37770385,0.28406662,0.1690404,0.10627745,0.08315992,0.044576358,0.004084658,1.963598,1.9368409,1.6233627,1.4460806,1.3144665,1.2177086,1.9919088,1.8473665,1.5634148,1.3828926,1.2793572,1.136792,1.0442731,1.0205882,0.9945048,0.8983102,0.65455985,0.48065007,0.5355781,0.923445,0.9498069,0.8598429,0.74396485,0.63434696,0.5791069,0.54777026,0.8020611,0.9403613,0.7527995,0.6445191,0.53886324,0.41266686,0.30936748,0.20121975,0.0763946,-0.052392144,-0.12773176,-0.25831348,-0.14416507,0.21422563,0.08202401,0.08023232,0.05364872,1.236973,1.550117,1.1388649
+0.81065345,1.0973408,1.1010977,1.0275824,0.8398802,0.7134298,0.4479828,0.23424624,0.11461833,-0.01633853,-0.16210102,-0.2282769,1.9980655,2.067487,1.7689068,1.5876886,2.31056,2.9159365,2.4930553,2.3371997,2.4001603,2.2185264,1.8874962,1.7608496,1.6171468,1.4254565,2.1883073,2.0187469,1.7995669,1.7863652,1.6794547,1.7178017,1.4952888,1.3251064,1.1015781,0.9201331,0.7872021,0.761558,0.69097257,0.49214554,0.89142513,1.5005841,1.3223171,2.2822366,2.4144828,2.1939554,1.9939816,2.235156,3.011384,2.4661434,2.1318655,1.9249384,1.7637789,1.6030293,1.5451326,1.4665906,1.923128,2.1238964,2.0479455,2.4913564,2.4745402,2.4033585,2.82947,2.5221639,2.569181,2.25141,1.9035301,1.6860154,1.516773,1.3217003,1.1659456,1.0168717,0.8419707,0.6657535,0.49056727,0.3006593,0.11964895,-0.049332228,-0.20088772,-0.3457804,-0.3667038,-0.47901797,-0.6011673,-0.69740963,-0.80800366,-0.88443804,-0.89863706,-0.98121345,-0.826244,-0.39503098,-0.47049218,-0.58795416,-0.69611454,-0.8280916,-0.97974867,-1.0986986,-1.1566498,-1.2237676,-1.2655615,-1.3231611,-0.9966329,-0.7671455,-0.8564731,-0.9702224,-1.1041058,-1.207011,-1.3041859,-1.3434486,-1.397332,-1.4413191,-1.4751997,-1.5203733,-1.5696726,-1.6057816,-1.6405615,-1.6699809,-1.363653,-0.91942173,-0.84912384,-0.9303316,-1.0658278,-1.1927664,-1.2905025,-1.357566,-1.4370477,-1.4985132,-1.5363832,-1.5740551,-1.6210263,-1.6583403,-1.6903555,-1.7160003,-1.7316895,-1.762995,-0.42941725,0.89793724,1.855006,2.3906875,2.4695525,2.5258615,2.3244555,2.2901788,2.7059917,2.439573,2.1323738,1.8423856,1.6200802,1.5133681,2.1117325,2.0366664,1.9380896,1.9411598,1.8064877,1.5744693,1.8732355,1.9277127,1.7045047,1.6076725,1.4863372,1.2959346,1.0980991,0.9133996,1.0458436,0.96089435,0.72548443,0.60147923,0.7877347,0.79654664,0.65458053,0.48391616,0.35549212,0.13496545,-0.045093793,-0.16364224,-0.28714138,-0.4126041,-0.45456672,1.2246044,2.561429,2.2809758,1.9300389,1.6310823,1.4597368,1.3472332,1.1850071,1.01872,0.92155623,0.7979975,0.67175835,0.7067672,0.7539069,0.56184745,0.32858795,0.1835738,0.11083771,0.011459988,0.04629023,0.048624974,0.005993303,-0.061400317,-0.10358298,-0.17269892,-0.09736499,-0.13024649,-0.2827816,-0.3568797,-0.40890568,-0.45193842,-0.49316302,-0.5151945,-0.53384006,-0.58739185,-0.627288,-0.67792165,-0.69101626,-0.7039691,1.4150426,2.194735,1.9572463,2.6223722,2.4783878,2.7993975,2.8005896,2.4504023,2.2608654,2.1212573,2.0299435,1.9110645,1.8116829,1.6514341,1.5594223,1.6269915,1.5437552,1.391263,1.2888803,1.3186069,1.657054,1.632124,1.6324766,1.6570886,1.5174558,1.3911281,1.2574986,1.1389092,0.9624197,1.2264824,2.5648756,2.3651254,2.5496554,2.2810152,2.118734,2.0732908,1.8814169,1.8173668,1.7173694,1.70636,1.6746013,1.6617038,1.6354591,1.5222018,1.5169123,1.510833,1.3205736,1.3204651,1.2144324,1.2136562,1.1765096,1.2060905,1.1660748,1.2405069,1.3817352,1.4232734,1.3519709,1.2132825,1.0051253,0.92447853,1.6645919,1.8417678,1.7686632,1.6360526,1.5636423,1.4000537,1.3695946,1.4728732,1.3942485,1.3178387,1.2880129,1.6702415,1.9727492,1.8403823,2.280752,2.437036,2.8072689,2.3587756,2.1110759,1.9490234,1.7623571,1.5912654,1.4657183,1.4502466,1.3613365,1.3175584,1.1957341,1.0711386,0.9340868,0.7817391,0.6859803,0.669032,0.7762822,0.6712596,0.5312438,0.49704748,0.44373816,0.25987527,0.17825681,0.047336783,0.011961121,-0.007750619,-0.029344149,2.1720152,2.0901728,1.790555,1.6047422,1.4742265,1.3759592,2.420669,2.2427735,1.9162022,1.6856868,1.5894109,1.4576187,1.3570693,1.3334309,1.2970833,1.2132102,0.9894924,0.81657803,1.320755,2.0560288,1.7453518,1.6478734,1.5053653,1.360395,1.2944798,1.5637052,2.3183365,1.9994092,1.7571177,1.6242214,1.4865243,1.3583105,1.2436032,1.1206334,0.9585325,0.8061905,0.6883825,0.5132021,0.5267797,0.56035846,0.38400182,0.32083592,0.13422368,1.2625475,1.7037592,1.3837483
+-1.6006335,-1.7182026,-1.9009192,-2.0719683,-2.1959686,-2.277639,-2.3026128,-2.4233623,-2.4874618,-2.5461464,-2.381071,-2.2213612,-0.9174714,-1.0855068,-1.3610234,-1.4274025,-1.1996241,-0.6909843,-0.97871315,-1.1565278,-0.9146088,-0.9998777,-1.266417,-1.3978721,-1.5454797,-1.6093271,-1.038804,-1.1895838,-1.4078265,-0.9831768,-1.1189106,-1.3197482,-1.4470117,-1.600893,-1.7283697,-1.8327551,-1.9149458,-2.0013075,-2.014057,-2.1085382,-1.3156903,-1.0575005,-1.4356608,-1.3684272,-0.803139,-0.6948439,-1.0649955,-0.31794578,-0.17139666,-0.74440676,-1.0439526,-1.1502502,-1.258849,-1.3846527,-1.4667863,-1.566417,-1.6766412,-1.7753401,-1.2662529,-0.7036892,-0.23852794,-0.7095482,-0.50524765,-0.70434713,-0.823731,-0.9432614,-1.16294,-1.3176389,-1.350873,-1.3941481,-1.5773025,-1.7108632,-1.8152319,-1.8990576,-1.977999,-2.0585668,-2.13657,-2.2090788,-2.283381,-2.3455482,-1.8742205,-1.2963729,-1.6595492,-1.8559382,-1.9755527,-1.871247,-1.7119734,-1.9011015,-1.9744834,-1.4027743,-1.4962826,-1.7067116,-1.8720582,-1.9987776,-2.1116924,-2.2117774,-2.2963605,-2.3789444,-2.4583988,-2.5391407,-2.606557,-2.6720693,-2.73661,-2.8048072,-2.8435555,-2.8975072,-2.949832,-3.0062237,-3.0493383,-3.0778642,-3.0888166,-3.0913506,-3.134365,-3.1543682,-3.1807766,-3.2186136,-1.9104103,-0.7837869,-0.9346535,-1.1877482,-1.432728,-1.626451,-1.7947235,-1.9161184,-2.0231965,-2.116498,-2.201223,-2.2906682,-2.386886,-2.4766207,-2.5625312,-2.641408,-2.7035255,-2.7676868,-1.78602,-0.89010334,-0.2601272,-0.4648135,-0.6446615,-0.79814357,-0.9607664,-1.0101094,0.015719432,-0.7641762,-1.0170139,-1.209254,-1.3145576,-1.4104154,-1.5140696,-1.5217347,-0.96472234,-0.81058615,-0.8991231,-1.0126706,-1.0806472,-1.0693932,-1.077492,-1.079039,-1.1524454,-1.2496318,-1.4466789,-1.5883608,-1.6722007,-1.6584859,-1.7369812,-1.8338125,-1.8262055,-1.8393643,-1.9123611,-1.9613101,-2.0132759,-2.0718284,-2.1208637,-2.129764,-2.1505995,-2.1808343,-2.0075386,-1.124291,0.024315108,-0.80453277,-1.0191082,-1.2462865,-1.402952,-1.5139058,-1.619348,-1.6813378,-1.7185249,-1.7717323,-1.7976987,-1.7924123,-1.7866694,-1.9026046,-1.9553771,-2.0198433,-2.0643947,-2.0765762,-1.9908468,-1.8905398,-2.0008214,-2.0481706,-2.0907497,-2.1133628,-2.0833888,-2.1223767,-2.160603,-2.2137644,-2.2549915,-2.2304192,-2.2797518,-2.2729537,-2.2852883,-2.3248951,-2.3556309,-2.376116,-2.3929172,-2.322752,-1.7552373,-1.3680921,-1.5015817,-1.2443293,-0.9108765,-0.6849865,-0.71703374,-1.0020642,-1.1317618,-1.2241437,-1.2493124,-1.3465974,-1.4110287,-1.4503067,-1.5620332,-1.56414,-1.6217573,-1.618618,-1.6737483,-1.7137909,-1.7120413,-1.7019396,-1.7187638,-1.6983311,-1.7246938,-1.7913991,-1.8422048,-1.8618107,-1.8717546,-1.5638466,0.31911322,-0.2662552,0.11755444,-0.55164945,-0.78455305,-1.0203128,-1.1334524,-1.2026521,-1.2544583,-1.3075215,-1.3557334,-1.4052789,-1.4350249,-1.4860388,-1.5456877,-1.5683367,-1.5094833,-1.440438,-1.5806103,-1.6910051,-1.6825397,-1.6968279,-1.7223294,-1.7405409,-1.6328478,-1.666749,-1.7388954,-1.7380426,-1.7834781,-1.7761972,-1.7627512,-1.7091858,-1.7931478,-1.7856648,-1.8260922,-1.5612202,-1.3354602,-1.5901809,-1.7739713,-1.8489895,-1.8706968,-1.8470976,-1.7432127,-1.8071523,-1.1654527,-0.72620463,-0.5350798,-0.69727767,-0.9746013,-1.0927022,-1.2362741,-1.3415242,-1.4321933,-1.5099512,-1.5332541,-1.5687636,-1.6042098,-1.6220409,-1.6492,-1.7019179,-1.7668755,-1.8022063,-1.7833571,-1.7469616,-1.79054,-1.8391906,-1.8650346,-1.8960867,-1.9478424,-1.9564146,-1.9797388,-2.0085309,-1.9955132,-0.902597,-0.91717976,-1.1867802,-1.3435675,-1.4571745,-1.5401266,-0.5134671,-0.8060739,-1.1233459,-1.2686284,-1.3874544,-1.4518704,-1.4719368,-1.5125699,-1.579592,-1.6481702,-1.6638694,-1.6838918,-0.984228,-0.5225979,-1.1085852,-1.2673109,-1.3110777,-1.1183672,-0.18281753,-0.65711004,-0.7540933,-0.9843169,-1.1258475,-1.277553,-1.4130843,-1.5499563,-1.6273936,-1.694255,-1.7455208,-1.7856485,-1.8313923,-1.8627222,-1.9088235,-1.9390341,-1.9945965,-2.0413105,-2.0776432,-1.2874115,-0.9830843,-1.3391547
+-1.074999,-1.333504,-1.4161898,-1.4749177,-1.5504255,-1.621199,-1.701972,-1.7885498,-1.7041446,-1.6609201,-1.743669,-1.7819521,-1.4360455,-1.2467072,-1.3341277,-1.429847,-1.4949731,-0.54288805,0.3384208,-0.07842836,-0.24446665,-0.3699926,-0.5277514,-0.6270673,-0.660964,-0.8385912,-0.98139435,-1.0441988,-1.1435845,-1.2727603,-1.4068859,-1.4949687,-1.5905192,-1.6828687,-1.7924273,-1.8836137,-1.954142,-2.0457163,-1.6303846,-1.3388081,-1.4095998,-1.5368725,-1.6457984,-1.378897,0.121251285,1.0088965,0.35059196,0.23469864,0.84258366,0.794006,0.3896631,0.26901674,0.06452218,-0.16002326,-0.36513108,-0.56770456,-0.80152196,-0.985721,-1.1101215,-0.9935853,0.21835925,1.3027854,1.0054915,1.1391921,1.2195826,1.0847983,0.67138666,0.41700745,0.3429448,0.15700702,-0.027010199,-0.21310456,-0.39498815,-0.5967885,-0.78175724,-0.95565057,-1.098262,-1.205281,-1.335449,-1.0190465,-0.6177927,-0.7401475,-0.94605,-1.152864,-1.3124071,-1.2537376,-1.1132946,-1.2152139,-1.3431852,-1.2428623,-1.1786786,-1.3049234,-1.498639,-1.6659997,-1.8454818,-1.9789579,-2.0698996,-2.1522894,-2.2140105,-2.268599,-2.3111553,-2.3489246,-2.385357,-2.4248004,-2.4559972,-2.480273,-2.4806986,-2.495,-2.514429,-2.540522,-2.5383563,-2.5434818,-2.5694866,-2.5684376,-2.5826998,-2.6008317,-2.3490677,-0.44316974,-0.014306944,-0.29656047,-0.49629802,-0.6673313,-0.9085677,-1.1131742,-1.2896122,-1.4577832,-1.6021041,-1.6905321,-1.8071289,-1.9002374,-1.9830214,-2.0687108,-2.1245098,-2.2028818,-2.2052178,-0.13420847,1.4160342,1.5474961,1.1764615,0.8630636,0.6448205,0.44710684,1.1896875,1.5698193,0.9751606,0.628464,0.41275966,0.23452424,0.07386725,-0.0520796,-0.11986616,-0.041797284,0.08190681,0.47505313,0.5211878,0.48470277,0.48654044,0.4825114,0.21404274,0.045922425,-0.22237235,-0.42268527,-0.5799763,-0.56407076,-0.64330983,-0.8026941,-0.91112125,-1.0127577,-1.1312243,-1.2557042,-1.3397654,-1.4388846,-1.5133684,-1.5526693,-1.5715852,-1.6148679,-1.6504476,-1.6148448,0.65112084,1.1064634,0.83222735,0.49801022,0.2330644,0.0705442,-0.07657632,-0.21083628,-0.33997533,-0.4748358,-0.5568992,-0.14245117,0.6717166,0.24774627,0.0230075,-0.14039609,-0.27614966,-0.3739706,-0.4868337,-0.6175972,-0.7248703,-0.82235575,-0.90527946,-0.91682875,-0.9430708,-1.0423561,-1.1616502,-1.2430657,-1.2229145,-1.2068813,-1.2930611,-1.3424172,-1.3723612,-1.4469959,-1.5176632,-1.5438113,-1.5256459,-1.5135522,-1.4643445,-1.2834318,-1.2248579,-1.0850215,-0.7577485,0.23362614,0.4529657,0.26209843,0.115344554,-0.04345801,-0.053635087,-0.17671524,-0.31237432,-0.43308157,-0.49699998,-0.514211,-0.5695842,-0.685743,-0.7560343,-0.81929,-0.87673545,-0.9450601,-0.95701265,-0.88787,-0.9203235,-1.0712042,-1.1922886,-1.2832234,-1.3460182,-1.2286105,-0.839695,1.4021637,1.7452149,1.0511925,0.9122554,0.9927895,0.74922085,0.53824794,0.4632948,0.42729986,0.3916843,0.3679518,0.35835344,0.33578563,0.2620209,0.25850433,0.005558405,-0.24112897,-0.35394314,-0.30376855,-0.26977324,-0.25810173,-0.2654025,-0.24278463,-0.1401699,-0.24739347,-0.34619492,-0.6120243,-0.5825809,-0.56955755,-0.56101143,-0.7017432,-0.811009,-0.8153541,-0.81594825,-0.8012183,-0.7171179,-0.7862115,-0.88787717,-0.97794133,-1.0209073,-0.9676613,-0.9795589,-0.9089657,-0.9167145,-0.67538023,0.24394612,0.34394312,0.16800085,0.028124709,-0.2711807,-0.44309974,-0.5141873,-0.5926018,-0.7524004,-0.81959116,-0.87987137,-0.9414693,-1.1012772,-1.1297109,-1.1986711,-1.2500538,-1.238014,-0.98449475,-0.7464503,-0.8464515,-0.9363591,-1.0279058,-1.1595974,-1.2004747,-1.2839794,-1.3584337,-1.4089537,-0.92133474,-0.42687207,-0.6455282,-0.7138469,-0.8340302,-0.95560026,0.014049705,0.64984477,0.08276774,-0.1016476,-0.19540583,-0.3893416,-0.45828798,-0.6075804,-0.75755286,-0.859375,-1.0088739,-1.0613605,0.20800555,1.634329,0.93734646,0.70381445,0.5454653,0.7162578,1.449354,1.4609839,1.1048566,0.8017093,0.5858505,0.43180752,0.3083492,0.1405349,-0.009784665,-0.15470596,-0.2867273,-0.41876137,-0.5471091,-0.6612233,-0.8003124,-0.9035449,-1.0281622,-1.1196623,-1.2038336,-1.2374876,-1.2403114,-1.3485944
+-1.7048019,-2.4787872,-2.6435194,-2.7831545,-2.8295734,-2.8614128,-2.8954947,-2.9511533,-3.0205173,-3.0818465,-3.1193929,-3.1443717,-3.0909116,-3.081548,-3.1576152,-3.2101576,-3.2495275,-3.2318335,-2.9427142,-2.8404896,-2.7649522,-2.6408787,-2.7611382,-2.7356353,-1.9991938,-2.0319176,-2.1910486,-2.340047,-2.476272,-2.5293899,-2.634852,-2.6244922,-2.658269,-2.7134018,-2.7960725,-2.8795261,-2.966043,-3.0175893,-2.9982305,-3.0053644,-3.1241546,-3.1765366,-3.1985593,-1.2526299,-1.314816,-1.5216861,-1.7877632,-1.7411761,-1.7191714,-1.9307199,-1.8624072,-1.8253465,-1.9972427,-2.1753144,-2.2889252,-2.3837476,-2.499156,-2.593484,-2.6796355,-2.4652371,-2.142928,-0.72042507,-0.9512118,-1.3929291,-1.4496285,-1.1523298,-1.5247433,-1.7400259,-1.6554503,-1.6931801,-1.817522,-1.9658972,-2.1239724,-2.2701437,-2.3976536,-2.5040438,-2.5982618,-2.688211,-2.7780242,-2.3189151,-1.793472,-1.7942713,-2.031866,-2.2414174,-2.3652146,-2.2845173,-2.0897217,-2.255497,-2.375607,-2.4712324,-2.5607085,-2.674051,-2.783298,-2.8749087,-2.9605348,-3.0333128,-3.1054056,-3.158484,-3.2157173,-3.2880464,-3.3329244,-3.3731031,-3.404507,-3.4223871,-3.4570203,-3.5070162,-3.3456225,-3.26225,-3.3494077,-3.3585358,-3.3748274,-3.4071355,-3.0849423,-2.7953944,-2.9547331,-3.0454874,-3.1193042,-3.1909251,-3.2317846,-3.262382,-3.2917442,-3.3460205,-3.3984618,-3.409282,-3.4281697,-3.4546218,-3.4678512,-3.4991746,-3.522284,-3.5487676,-3.5598223,-3.5803242,-3.6049292,-3.6222906,-3.625246,-3.3907895,-2.9171298,-2.392248,-2.0035224,-2.1850345,-2.3769696,-2.518981,-2.4040542,-1.7257552,-2.05376,-2.2270927,-2.3478274,-2.460559,-2.5319777,-2.561728,-2.5884433,-2.2685456,-1.7337079,-1.8842521,-1.9674075,-1.6216232,-1.3472819,-1.6572081,-1.7677956,-1.8290143,-2.0919867,-2.2394495,-2.3025544,-2.279746,-2.3594291,-2.4733744,-2.5139663,-2.4686587,-2.055222,-1.7318902,-2.003119,-2.187216,-2.302307,-2.3548074,-2.3743558,-2.4046102,-2.4998846,-2.557168,-2.3814478,-2.1991496,-2.2448657,-2.300462,-2.3949215,-2.474966,-2.5062783,-2.5314264,-2.6056738,-2.6575117,-2.664893,-2.5146394,-2.3056245,-2.405458,-2.4912083,-2.5729182,-2.6246898,-2.66419,-2.701857,-2.769163,-2.8131843,-2.853643,-2.8798525,-2.8910115,-2.7380276,-2.266674,-2.3692422,-2.4811969,-2.5335047,-2.5569887,-2.617287,-2.6583521,-2.6717112,-2.716988,-2.7578473,-2.7798033,-2.8285222,-2.8420327,-2.8393552,-2.8043337,-2.6286373,-2.5519493,-2.3211646,-1.5278189,-1.2674768,-1.663197,-1.7779963,-1.8738022,-1.7818884,-1.8705618,-1.9962044,-2.1064856,-2.1838465,-2.222785,-1.5051589,-1.6752557,-1.8602636,-2.0105374,-2.0679662,-2.123683,-2.1498146,-2.0945215,-2.121543,-2.2305915,-2.2911584,-2.346449,-2.3678145,-2.2610633,-2.16406,-1.9801501,-1.6478792,-1.8760641,-2.0403252,-1.8208487,-1.923744,-1.9955379,-2.0459144,-2.1070254,-2.1532793,-2.1899018,-2.2152944,-2.2004056,-2.2404823,-2.2885518,-2.3260062,-2.3038793,-2.3804042,-2.3656068,-2.3980258,-2.2566254,-2.0748816,-2.1709318,-2.1972811,-2.2620358,-2.2847447,-2.346449,-2.3895497,-2.4066978,-2.417078,-2.486509,-2.5011916,-2.514877,-2.5217788,-2.4842453,-2.4251108,-2.481921,-2.537215,-2.5603712,-2.5608897,-2.5599546,-2.5474083,-2.4452567,-2.5096612,-2.5402775,-2.5499787,-2.3472204,-2.159963,-2.2100112,-2.3809721,-2.4113975,-2.4772453,-2.4947753,-2.5565705,-2.5366168,-2.5227747,-2.5455136,-2.5862045,-2.624332,-2.6982918,-2.7258897,-2.7215614,-2.0866492,-1.7258857,-2.036735,-2.1708865,-2.259553,-2.3306932,-2.376927,-2.4445214,-2.4978364,-2.545945,-2.5584023,-2.6265216,-2.620316,-2.5626612,-2.5305858,-2.614185,-2.0905268,-1.7299445,-2.0625122,-2.1733341,-2.2532892,-2.3435082,-2.3890862,-2.4571111,-2.5333533,-2.5585732,-2.610581,-2.597606,-1.9620832,-1.1322559,-1.7709001,-1.9644008,-1.8912673,-1.4342482,-1.2696085,-1.186614,-1.4919925,-1.7080674,-1.9074833,-2.0422702,-2.1636722,-2.2597015,-2.3189402,-2.3795524,-2.4399405,-2.488498,-2.529892,-2.5742002,-2.6217732,-2.6514854,-2.716565,-2.7574215,-2.8070602,-2.8317866,-2.861394,-2.9375906
+0.06304382,-0.34092182,-0.37874028,-0.37588575,-0.488562,-0.61114126,-0.74125373,-0.87281406,-1.0276847,-1.1721855,-1.2731513,-1.3794914,-1.3551579,-1.320147,-1.4498558,-1.6307609,-1.7438906,-1.4918818,0.47640163,0.4005258,0.20013104,0.2509249,0.23220901,1.2317448,0.82230854,0.47739846,0.36485416,0.20196268,0.01804854,-0.08725971,-0.22160031,-0.20786805,-0.13428043,-0.23058486,-0.4213023,-0.6095265,-0.8197454,-0.9738474,-1.0718374,-1.1380115,-1.244416,-1.3958211,-1.4814684,-1.6013646,0.0013456158,1.1708934,0.4651061,0.89246464,0.8032204,0.8438337,1.4098305,0.95875335,0.68970263,0.45061958,0.21127054,0.9226061,0.7127507,0.506297,0.31314945,0.26375145,0.18914832,1.5795411,1.3377861,1.5592752,1.5086575,1.6869963,1.3556805,1.1996634,1.1084309,0.9751662,0.8346414,0.62530184,0.45499545,0.28490916,0.06439473,-0.127502,-0.29337183,-0.39856395,-0.5202063,-0.6309425,0.06488845,0.8345484,0.42101014,0.10885057,-0.06384522,-0.15111455,0.035485793,-0.045999896,-0.110261545,-0.25770354,-0.45757696,-0.637555,-0.8344722,-1.0290762,-1.2021673,-1.3397672,-1.4565382,-1.5464258,-1.6352963,-1.7315582,-1.8214447,-1.8996581,-1.9698884,-2.030752,-2.104732,-2.167036,-2.1957955,-2.2391937,-2.2696948,-2.2921576,-2.125599,-1.8466797,-1.5090083,-1.5387404,-1.6787168,-1.802187,-1.9088479,-1.9190294,-1.921978,-1.9136131,-1.8424425,-1.9351709,-2.019627,-2.0884035,-2.1446505,-2.2181532,-2.2547464,-2.191698,-1.9717442,-2.003492,-2.1126456,-2.1886826,-2.2496438,-2.298376,-2.3200426,-2.1546826,-1.7283983,-0.7581209,-0.06862852,-0.15791942,-0.4524251,-0.67079854,-0.7293939,-0.32135522,-0.48628232,-0.65660834,-0.83019876,-0.9483148,-0.9940621,-0.9278999,-0.93090147,-0.81127954,0.20726375,0.6385349,0.33423206,0.3682307,0.5674757,0.6875359,0.4748389,0.21273537,-0.043035533,-0.21504687,-0.40271038,-0.46185774,-0.5797051,-0.7511986,-0.80136,-0.7341774,-0.6879948,-0.8316399,-1.0261991,-1.1777952,-1.2685406,-1.2958593,-1.1713303,-1.1363136,-1.273601,-1.366521,-0.54732955,0.48914623,0.5236743,0.7259917,0.93339556,0.7367616,0.74464244,0.6657852,0.4055251,0.20923674,0.13818206,0.35339463,0.6916497,0.57125175,0.4820153,0.32468355,0.15893245,0.020505853,-0.075021595,-0.22319071,-0.35100928,-0.4605137,-0.5738096,-0.66010433,-0.62135303,-0.14801095,-0.007607214,-0.14197966,-0.16210581,-0.1986372,-0.26097593,-0.3147458,-0.33776748,-0.38691193,-0.46058998,-0.54077524,-0.6041594,-0.6279367,-0.4563681,0.11488752,0.15761106,0.14658086,0.049500328,1.1331481,1.213083,1.0855262,1.137648,1.1120403,1.0830135,1.0915005,0.9592093,0.8470526,0.7235634,0.5780424,1.1801984,1.1134958,0.8410858,0.67151976,0.6315519,0.55655205,0.5484202,0.5268191,0.42586204,0.24002068,0.13998048,0.14017968,0.12115878,0.13015132,0.3621521,0.4276927,0.7655573,0.5936967,0.5261407,0.91886294,1.0135908,0.8196399,0.71513927,0.61177534,0.5660864,0.58629024,0.6279714,0.6194266,0.5028146,0.5794402,0.29676056,0.097526625,0.11859219,0.18673998,0.19880049,0.16772413,0.099799186,0.08978018,0.21059795,0.13582966,0.2051892,0.46663857,0.43898994,0.35790393,0.26844513,0.20799957,0.09443788,0.053558227,0.0900027,-0.04203665,-0.14639625,-0.18141864,-0.25043917,-0.28313744,-0.30649605,-0.32739288,-0.26413366,0.008812789,-0.11325836,-0.1707021,-0.12908265,0.21108764,0.35687584,0.23409955,0.11908144,-0.03574093,-0.19015165,-0.24588042,-0.2608259,-0.24412017,0.54395086,0.7704398,0.442657,0.29709354,0.1759742,0.09939127,0.11304416,1.2004697,1.2136245,0.77964514,0.6269988,0.51749766,0.41986144,0.31673628,0.14059447,0.020046677,-0.08623941,-0.10715574,-0.20789008,-0.2976683,-0.38987267,-0.5235501,-0.6399328,-0.28758174,0.016940836,-0.16146468,-0.32957667,-0.47483492,-0.55887914,-0.683025,-0.7847364,-0.86854625,-0.8847068,-0.47543782,-0.08649711,0.24885283,1.389728,0.9138713,0.63722444,0.9920609,1.2309605,1.315212,1.4645302,1.4365437,1.2542495,1.0223086,0.7450049,0.5603767,0.3533672,0.22787492,0.10394548,-0.06798361,-0.20416997,-0.3386303,-0.47766942,-0.5944189,-0.6920036,-0.8368882,-0.9367937,-1.0596507,-1.1449494,-1.13591,-1.1974962
+0.793569,0.9645255,1.2167816,1.470968,1.488245,1.5514092,1.6191727,1.5491068,1.7332084,2.0003102,2.0376697,2.1095507,1.999239,1.5601563,1.269021,1.7514085,1.9432093,1.6806195,1.2720361,1.0508944,0.8935277,0.597085,0.3377637,0.10670303,-0.016726892,-0.12751426,-0.20774592,-0.2505819,-0.26937187,-0.30221853,-0.32534233,-0.3646734,-0.37128413,-0.40258002,-0.40885153,-0.396829,-0.4524126,-0.5262257,-0.5830668,-0.59491813,-0.45412308,-0.29041612,-0.06579216,-0.10235876,-0.19377005,-0.28440288,-0.38994756,-0.46590078,-0.5170487,-0.546312,-0.5684218,-0.5469238,0.10941437,0.37659281,0.1980143,1.0572379,1.0759628,1.14324,1.3363562,1.1080472,1.3109773,1.6714754,1.4584588,1.1562355,1.1111059,1.0726451,1.0950258,0.90754724,0.7422472,0.6867534,0.77341926,0.7996732,1.3349023,1.7002945,1.337769,1.2985103,1.185768,1.554172,1.4586916,2.1938388,1.8719752,1.6935668,1.5206757,1.5245565,1.3071095,1.8859391,1.8770587,1.7276468,1.4568391,1.525773,1.484957,1.2347676,1.0705868,0.93377423,1.2751548,1.8397166,1.7035398,1.6394979,1.9529437,1.6374758,1.5716765,1.7143319,2.0099156,2.2011075,1.9383545,1.6577271,1.5202558,1.5427265,1.368077,1.2137802,1.4895762,1.759593,1.5340363,1.4906735,1.6412232,1.4591534,1.3282895,1.1675726,1.1043615,1.0281645,0.9584581,0.8599568,1.2093563,1.5346669,1.259882,1.824327,1.7690175,1.5603507,1.3569369,1.1771343,1.3485701,1.2644176,1.2053912,1.3506808,1.1985726,1.0708634,1.1186562,1.7637105,1.5309699,1.7242782,1.6473335,1.5000255,1.2639222,1.1477973,1.0047725,1.2251164,1.6359315,1.3814764,1.1971837,1.0226233,0.9742992,0.8710269,0.77777433,0.7311209,0.6667479,0.635565,1.4773942,2.0414944,1.7110211,1.4881978,1.5181234,1.5252272,1.3122039,1.1775417,1.4338496,1.4637184,1.2104359,1.0808163,1.4417076,1.5287526,1.3198977,1.2976592,1.0755544,0.9657674,0.85460263,0.7754473,1.2710316,1.9154744,1.9332793,1.5669807,1.4617641,1.2586331,1.1256076,1.0565662,0.95834124,0.90272474,0.94320893,1.2779646,1.1814886,1.1255832,1.0514958,1.0130746,0.9941379,1.0159323,1.1281726,1.0247982,0.9623388,0.98005056,1.0329542,1.4374549,1.3103957,1.1108629,1.0388124,1.0376377,1.0718356,1.3238807,1.3834083,1.2558157,1.3396852,1.4167752,1.2818449,1.1730622,1.1475669,1.4567844,1.9317634,1.6806793,1.6062264,1.4930432,1.388401,1.3170826,1.222312,1.127094,1.1211689,1.0151536,0.9647313,1.0077025,1.0007578,0.9889791,1.1434326,1.2048686,1.1031222,0.9325913,0.85542977,0.84168047,0.97278214,1.1843336,1.3880457,1.3965136,1.4883573,1.4601297,1.5465531,1.5426408,1.86517,1.8192644,1.800266,1.8386976,1.9282122,2.0381818,2.096993,2.326127,2.5858922,2.5784016,2.4970458,2.5034401,2.5346348,2.51649,2.5184145,2.601256,2.6559677,2.670834,2.6908965,2.7259536,2.7040832,2.7770143,2.8580427,2.8558464,2.8942666,2.9301734,2.9000735,3.096991,3.0948844,3.0725458,3.054852,3.067894,3.0318723,3.0025125,3.0225158,3.0429406,3.0074625,2.9918756,2.9728034,2.9749155,2.9972239,3.0022578,2.9899101,2.9688315,2.9881358,3.0297458,3.0042033,2.9751105,2.973724,2.9887528,3.0194607,3.0823016,3.1648097,3.28437,3.5491786,3.6331794,3.6052585,3.5113964,3.4564433,3.329483,3.2354198,3.1895835,3.16316,3.124016,3.1365492,3.1294966,3.079877,3.038044,3.0311797,3.0099053,2.9869344,2.9878125,2.9934933,2.9500198,2.9684756,2.9972363,2.9927287,3.0845523,3.0705245,3.0608974,3.150735,3.2849462,3.3450303,3.374963,3.4925976,3.5888932,3.6005437,3.4691556,3.2425585,3.1371155,3.0788767,3.1017718,3.1009183,3.1186948,3.0364888,3.0230582,3.091671,3.0891109,3.1348176,3.070781,3.1023393,3.1202025,3.0489225,2.964317,2.979735,2.9511037,2.9113212,2.902709,3.1324391,3.2402148,3.3680139,3.6326017,3.6453633,3.436642,3.3990726,3.7148786,3.843802,4.084565,4.1932845,4.113476,3.8802004,3.181642,2.6898723
+0.068958476,-0.35425836,-0.4675237,-0.41615558,-0.24647173,-0.12745151,-0.25422695,-0.14774667,-0.039776783,0.09347513,-0.100641534,-0.33146352,-0.44421154,-0.64536625,-0.91168046,-0.6551434,0.16362469,0.38955864,0.08964269,-0.15333739,-0.28860283,-0.5214607,-0.6322975,-0.58715594,0.45376664,0.31521058,-0.04578663,-0.28684282,-0.4078619,-0.5483658,-0.6553161,-0.7985132,-0.8539125,-0.92316455,-1.0370799,-1.0897673,-1.218708,-1.351912,-1.4066168,-1.4521364,-1.018369,-1.1250619,-1.2964368,-1.3326464,-1.3228437,-1.3059019,-1.3450236,-1.3935008,-1.4312656,-1.4897723,-1.5459759,-1.582505,-0.33615315,-0.21382584,0.18484811,0.2559371,-0.11949316,-0.1879253,-0.12898386,-0.4033153,0.41078433,0.78653395,0.41534317,0.537685,0.51271826,0.24213646,0.18130022,-0.03073312,-0.27043766,-0.394566,-0.19725578,-0.23317583,0.13378295,0.097982526,-0.26041678,0.48880404,0.22635145,0.584803,0.23856734,0.10321508,0.023163807,-0.18370111,-0.038452733,0.17244644,-0.18609707,-0.33447942,-0.42779016,-0.46696317,-0.5801268,-0.65682626,-0.6539068,-0.73638606,-0.89571416,-0.97902876,-1.0315337,-0.812568,-0.64113355,-0.24184388,0.83254695,0.31470263,0.5146959,0.7622396,0.92090607,0.80605483,0.66882443,0.32517913,0.06655003,0.2127383,0.076964244,-0.16390684,0.7003435,0.9037698,0.36941436,0.41694087,0.42857933,0.1157047,-0.031887613,0.105789945,-0.12444821,-0.37499735,-0.38503727,-0.4409731,-0.6442778,-0.102443054,-0.2985012,0.94541174,0.5366667,0.22040705,-0.02883996,-0.23772343,-0.39427155,-0.15490732,0.82628834,0.31696808,0.012146559,-0.15539996,-0.36878288,-0.41589248,-0.5443164,-0.36761138,-0.28982395,-0.47819626,-0.61888826,-0.75168383,-0.86053014,-0.9305373,-1.0898597,-1.1549895,-0.278789,-0.08815871,-0.22928944,-0.46194202,-0.61388165,-0.71955705,-0.82628906,-0.9419361,-0.1756881,0.99273336,0.35366172,0.22529353,0.5836438,0.2276666,-0.03488716,-0.25828522,-0.24957661,-0.34460917,-0.496371,-0.6168202,-0.48535675,-0.15198176,-0.44477427,-0.57807595,-0.7008357,-0.7106579,-0.7192906,-0.8063899,-0.31805146,-0.16303398,0.21217616,-0.21615753,-0.37622178,-0.48444548,-0.5720271,-0.6552466,-0.73180914,-0.77042353,-0.6109049,0.3326234,-0.021792341,-0.32567117,-0.40881038,-0.48175982,-0.5548304,-0.6299955,-0.71013755,-0.76395625,-0.7813219,-0.87776726,-0.93529403,-0.93930227,-1.0311822,-1.1481628,-1.2124343,-1.1576953,-1.1736588,-1.2222657,-1.2127917,-1.1975548,-0.8221524,-0.4528954,-0.6245309,-0.688009,-0.7334954,-0.70966834,-0.6819022,-0.74325615,-0.7685882,-0.79333866,-0.80953497,-0.81589663,-0.88162017,-0.9222586,-0.90333295,-0.922271,-0.943937,-0.89419466,-0.8850146,-0.8812417,-0.88650835,-0.90901077,-0.9439708,-0.9910015,-1.0061002,-0.900198,-0.72518694,-0.159476,0.003946867,-0.019489095,-0.013243128,0.073547125,0.19546182,0.58732605,0.73645747,0.480677,0.4280388,0.50794685,0.5973742,0.64415395,0.6877023,1.4085854,1.3941803,1.3785598,1.3102691,1.3894138,1.3524505,1.3568782,1.4017808,1.5034232,1.474854,1.4399147,1.4711487,1.4854579,1.5100754,1.5470636,1.5061634,1.5117936,1.5097108,1.5177343,1.4506495,1.5127883,1.4360853,1.4476991,1.5514183,1.4266691,1.4259005,1.4416524,1.4056532,1.5118697,1.4513645,1.4371743,1.4291439,1.4765329,1.4667124,1.4279907,1.4389527,1.444195,1.4549974,1.4734257,1.4603057,1.4628766,1.4615008,1.4540317,1.495801,1.4909854,1.5058583,1.5345922,1.5066831,1.5066607,1.3982997,1.4563687,1.4308455,1.3833375,1.425833,1.3894525,1.4445751,1.5004084,1.4702764,1.4736408,1.464227,1.4111379,1.4391063,1.4098818,1.4535805,1.4612311,1.4668667,1.5270149,1.4722264,1.5594559,1.5041106,1.6317815,1.4666886,1.4888598,1.5501186,1.6090457,1.6478324,1.7445228,1.7656885,1.7722892,1.758664,1.6299965,1.5418308,1.5212753,1.4693406,1.5337825,1.4830607,1.4912657,1.4834628,1.5795996,1.655246,1.8219254,1.7973506,1.7811562,1.6980476,1.7179464,1.659198,1.5626696,1.5756881,1.5853899,1.6094089,1.6497114,1.8873452,1.8578703,1.9741826,2.1339402,2.1389155,1.809897,1.8679619,2.0405064,2.202674,2.3918939,2.6144848,2.1788597,0.78358936,0.40280077,0.02749515
+0.044405814,-0.4765486,-0.6103418,-0.66639596,-0.7134642,-0.6748197,0.14955787,0.30421478,0.2996848,0.25409287,-0.0001010187,-0.13421497,-0.16214289,-0.23468539,-0.37126458,-0.36918855,0.11474748,0.23235936,1.0519989,0.9837172,0.6583928,0.5033228,0.30407122,0.6815139,1.9221113,1.422364,1.0407785,0.7657632,0.6355423,0.5046666,0.3619968,0.21940146,0.1245562,0.032926973,-0.107416704,-0.19222474,-0.2908376,-0.44749114,-0.51680964,-0.1999395,0.1810459,0.28398618,0.06757313,-0.059357803,-0.18088773,-0.27455264,-0.37099,-0.4978885,-0.60060656,-0.69269097,-0.7657528,-0.8582642,-0.885095,-0.8869483,-0.108627334,0.6952643,0.30738693,0.25973332,0.24332194,0.05602434,0.71330154,0.5131973,0.38750458,0.36419153,0.46952182,0.3272797,0.32609057,0.2457181,0.093055144,0.02210771,-0.055058938,-0.12283696,-0.108818874,0.13408324,0.2154858,0.8319755,0.4162966,0.2707317,0.43678164,0.4135114,0.26019734,0.12948404,0.1761439,0.31489384,0.07466647,-0.06764564,-0.24611288,-0.3253774,-0.4231932,-0.57851934,-0.5317756,-0.5748021,-0.7365294,-0.8445668,-0.9335467,-1.0111555,-1.0508585,-1.1001316,-0.96649075,-0.9969455,0.7545339,1.4171177,1.2677411,0.8665497,0.8580786,0.76014,0.52734137,0.68797785,0.6008537,0.42592958,0.36256677,0.75759417,0.5840434,0.3826302,0.55039716,0.3624137,0.35426494,0.8682883,0.5889684,0.39825547,0.28256828,0.14180066,-0.0032472983,-0.103073195,-0.26224297,0.086609006,0.24179058,0.045041513,-0.11923115,-0.2569134,-0.41651827,0.95235044,1.5919886,1.102711,0.9064756,0.71789265,0.5711246,0.4919883,0.34894907,0.52426517,0.6579838,0.47104603,0.3472524,0.19825903,0.06752424,0.00364675,-0.10816641,-0.19130646,0.2842239,0.42415547,0.21536766,0.083455,-0.08669603,-0.19916046,-0.3263472,-0.4299001,-0.5482853,0.07138325,0.7111448,0.8148087,0.9801893,0.6216503,0.5305102,0.3243426,0.24166201,0.14899729,0.060214233,0.29039007,1.2386272,1.0447735,0.6990037,0.5535788,0.46008036,0.39498848,0.27465856,0.45236585,0.6923624,0.74208117,0.54532266,0.39413792,0.33600348,0.24951153,0.16732983,0.08851357,0.020422194,-0.040016774,0.255314,1.3872278,1.0142078,0.7414423,0.60912496,0.56611097,0.47083366,0.37225354,0.29104084,0.20629309,0.21734713,0.1460738,0.061158817,0.07078092,0.17225361,0.23317777,0.1381415,0.1167112,0.09033324,0.035314914,0.00081462786,0.11322515,1.1891929,1.0230116,0.7483855,0.6167157,0.5354802,0.4697367,0.39759046,0.3438853,0.29907206,0.24869184,0.20462506,0.18113163,0.1346484,0.07499942,0.0783989,0.059268992,0.025515255,0.025150035,0.059447255,0.044444997,0.03565957,0.02286924,0.013343852,0.2712654,0.19411606,0.28773057,0.5440093,0.8911834,0.93846536,0.9121693,0.9338417,1.0377288,1.0940183,1.7072277,1.7773235,1.5614336,1.3275692,1.1915002,1.3351004,1.4144416,1.5212379,1.8189673,1.8699195,1.9767869,2.0757682,2.1479106,2.1917048,2.2056546,2.2440653,2.3011744,2.268372,2.2530215,2.2720757,2.2822366,2.2842593,2.3138063,2.29347,2.3060496,2.30536,2.3038483,2.3274083,2.455249,2.3658414,2.3599012,2.4282358,2.3598437,2.3541987,2.3551958,2.3372407,2.373413,2.3532996,2.3191552,2.301474,2.3328881,2.3836422,2.3460174,2.3148632,2.3196497,2.3261862,2.3721292,2.3579721,2.3624244,2.3560357,2.3481946,2.352853,2.3885872,2.4144578,2.456547,2.4952235,2.4712229,2.4246023,2.486347,2.4938579,2.4463363,2.4495423,2.4290843,2.4073434,2.5204103,2.468959,2.4318342,2.4130726,2.386924,2.3676305,2.3917773,2.3859932,2.3959203,2.3979445,2.4152174,2.4308493,2.5066204,2.461234,2.5352178,2.4735036,2.4900386,2.55656,2.636661,2.7319474,2.9440353,2.9723034,3.2394004,3.2382045,3.098452,2.9593349,2.8199852,2.7744753,2.7861652,2.74046,2.6536708,2.5754998,2.6476824,2.7967553,3.0603933,3.0088267,2.8282285,2.7480516,2.7021134,2.503375,2.465993,2.4808016,2.4943962,2.5027194,2.6162066,2.746852,2.9547825,3.0968838,2.9495063,2.4392428,2.3888607,2.4105854,2.3059497,1.8105994,1.4536937,1.0688773,0.7143292,0.5220934,0.38331944,0.37338203
+0.19433014,-0.12234296,-0.094537556,-0.11366558,-0.10657774,0.03059927,0.03166615,-0.066359594,-0.047465574,0.09303647,-0.05942313,-0.08603282,-0.024458777,-0.13451312,-0.28544247,-0.22352508,-0.13888405,0.65613073,1.7373897,1.1800272,0.9733944,0.7763011,0.5643787,0.49744672,1.6699994,1.4318495,1.566728,1.8902593,1.4507751,1.1018665,0.89485395,0.76391387,0.6503976,0.44474897,0.34585533,0.26341984,0.16411662,0.014765378,-0.024588782,0.53678036,1.316503,1.028156,1.0595148,0.86155486,0.6425053,0.48045188,0.33274794,0.19644164,0.058826182,-0.053210925,-0.09722756,-0.21219012,0.04730152,0.24688144,0.32372493,0.6983384,0.6835842,1.1224728,0.96847594,0.60595405,1.1833575,1.0253656,0.7504092,1.4130533,1.3570458,1.0411249,0.8752011,0.8137114,0.6594624,0.6429588,0.56872046,0.47640872,0.37383157,0.48848552,0.7365167,0.93408835,0.61422753,0.7984427,0.9217842,0.6431177,0.5769818,0.37188688,0.33734292,0.34265333,0.19874004,0.17644419,0.11978562,0.0046561025,-0.08855255,-0.15643829,-0.23634711,-0.3609533,-0.4161582,-0.46122548,-0.5059876,0.23723297,0.81389904,1.1516608,1.0690281,0.70246124,1.4548831,1.8703179,1.4961394,1.1406891,1.0011482,0.9407898,0.8145553,1.3116196,1.0821593,0.8878279,0.79267657,0.7400013,0.6421188,1.4619414,1.4271654,1.0916636,0.9382804,1.0794562,0.90054345,0.81536734,0.67296124,0.5439912,0.4343493,0.3929547,0.24972485,0.82290953,0.871976,0.59656346,0.4528681,0.33080226,0.23501535,0.16102101,1.3284988,2.0816345,1.4809918,1.1649122,0.9935427,1.4658831,1.3349493,1.3116128,2.0004787,1.8720446,1.2786225,1.024683,0.84750634,0.81091183,0.73080504,0.62987316,0.61981297,0.9128858,0.88527596,0.75654453,0.55905116,0.45189482,0.30797815,0.19368197,0.102612406,1.0242364,1.8133836,1.5058188,1.2161064,1.5752571,1.4491899,1.0970957,0.96218103,0.89844036,0.77783793,1.0112069,1.38741,1.138716,0.89119256,0.8023772,0.65644693,0.5814582,0.733158,1.2844843,1.360179,1.2557429,0.98107994,0.8024043,0.7296466,0.63826346,0.5164628,0.44210076,0.39371526,0.33292574,0.76736253,1.8432235,1.6401136,1.7095197,1.3519065,1.1589317,0.9416597,0.8382732,0.8347893,0.6914508,0.6623566,0.61084193,0.43859145,0.40979546,0.43277055,0.37779742,0.30488676,0.3204351,0.29397166,0.24940075,0.20235772,0.23508196,0.9926169,0.9876003,0.779979,0.9797262,0.93911964,0.8490659,0.70804536,0.6304456,0.53835016,0.4519272,0.3796556,0.34765512,0.35030273,0.24328844,0.25178704,0.24183239,0.1750413,0.23752455,0.27376723,0.24054526,0.23667158,0.19608115,0.16153687,1.1712651,1.1260262,1.3004524,1.4747199,1.7771153,1.8227105,1.8109885,1.859177,1.8371825,1.858747,2.3225315,2.2068942,2.0996947,2.0848713,2.0570514,2.0138078,2.1798983,2.1922536,2.25522,2.3066711,2.3513849,2.2920983,2.278492,2.30867,2.3685215,2.3859453,2.3926704,2.357214,2.338014,2.319337,2.2871969,2.2867427,2.3202806,2.3912287,2.4191968,2.469935,2.4527516,2.412737,2.5614333,2.5247898,2.5555463,2.5571034,2.5041552,2.459698,2.4270759,2.3998997,2.4056697,2.3455946,2.2780876,2.2429376,2.2429168,2.2167966,2.1707737,2.1937451,2.2083998,2.2196655,2.197524,2.2003121,2.2218218,2.2563403,2.2798674,2.3192768,2.374062,2.460206,2.588801,2.6920633,2.6621037,2.6189628,2.6825438,2.6331823,2.5645595,2.558134,2.527237,2.5234704,2.6944776,2.6428359,2.4785116,2.3752804,2.3475282,2.323939,2.3300161,2.3953764,2.330439,2.2878318,2.364634,2.5108867,2.7202754,2.7707791,2.8515463,2.8626082,2.9111836,3.0603237,3.1747842,3.208948,2.5837035,1.9473628,1.4798567,1.2860594,1.3412297,1.4074349,1.5649295,1.6784824,1.7600901,1.9189918,1.8835675,1.9098525,1.9469151,2.0654948,1.29052,0.92539823,0.8017525,0.7500075,1.1676149,1.2070036,1.5574603,1.738412,1.7822706,1.852255,1.9762657,2.268005,2.4007306,2.475442,2.304049,1.9735851,1.9260029,2.0779705,1.8360503,1.2799487,1.0529387,0.78469163,0.54408574,0.34699818,0.3509553,0.33797744
+1.3213046,1.6055226,1.5491328,1.2119521,1.0814071,0.9988619,0.87790865,0.73180866,0.72919714,0.73295414,0.626725,0.6002617,0.55754465,0.527226,0.48457986,0.47411162,0.43795443,1.6202946,1.9391713,2.1200092,2.447143,1.9199431,1.672046,1.593257,1.9502736,1.7219151,2.559077,2.702369,2.2208085,2.332285,2.3220031,1.9918609,1.8338449,1.6198617,1.5005097,1.3936628,1.4492631,1.6034758,1.9534439,2.1036162,2.5248764,2.1275778,1.8684015,1.6838709,1.5284379,1.3721421,1.2364031,1.1558383,1.1014386,1.0036471,0.896502,0.8481487,1.7587361,1.8743155,1.8290762,2.1230867,1.9456921,2.5975225,2.3802192,2.021572,2.1704063,1.963321,1.8080175,1.8680522,1.9854605,1.7564924,1.615973,1.5417475,1.4737576,1.3253407,1.1617185,0.95445204,0.8500108,1.0299335,1.6655123,1.8036206,1.3457816,1.1430098,1.8308647,1.668674,1.3741529,1.2810979,1.4796969,1.3177817,1.2033463,1.1608764,1.1055505,1.0319057,0.9512539,1.5588753,1.4793516,1.2509587,1.2145995,1.1066916,1.0387346,0.8523427,0.7733707,1.5730703,1.7060783,1.4073759,1.3725841,1.1214216,1.0198019,1.1086004,1.0092225,0.96883476,0.89901656,1.3303808,1.0820453,1.7092993,1.793277,1.4333901,1.1587987,1.1036067,1.0175796,0.94839793,0.8481954,0.6721531,0.5528606,0.3946892,0.34685606,0.38020384,1.2300289,1.3663832,0.9691262,0.86311334,0.7374344,0.5463797,0.40239727,0.2949235,0.16479893,0.032242794,1.1708198,2.1027994,1.620296,1.3223894,1.5016458,1.7249014,1.473553,1.2724869,1.1589389,1.2880974,1.1301893,1.0106032,0.9313783,1.2199749,1.0050837,0.8756886,1.1222187,1.0263987,0.8335413,0.6796964,0.46841943,0.38967407,0.29087144,0.20370826,0.47136652,2.05719,2.0509417,2.1649518,1.7459546,2.0424418,1.9116535,1.5820248,1.419259,1.3608174,1.3223708,2.6519842,2.4239926,1.9034915,1.7180463,1.5547822,1.4348931,1.4088032,1.5124378,1.571986,1.7687376,1.9594092,1.6616529,1.4867742,1.3552582,1.3023229,1.1648964,1.0962338,1.037479,0.942314,1.3011718,2.267325,2.1111746,2.250202,1.7919784,1.5984985,1.5054116,1.3911588,1.3878487,1.3567646,1.2600949,1.1947365,1.0243998,1.0677677,1.0098304,0.9961976,0.9920409,0.9851706,0.8904327,0.8182516,0.7729575,0.80730927,0.83549285,0.85824966,0.8381813,0.7377967,0.7779384,0.856645,0.7741398,0.6635259,0.611798,0.54245347,0.5321608,0.54355294,0.615015,0.5301609,0.57043755,0.51939416,0.4529708,0.60502857,0.577217,0.49243146,0.5383186,0.5271431,0.4743374,1.4658239,1.5414171,1.7001117,1.9181275,2.2292628,2.4607458,2.416415,2.564394,2.6906242,2.675711,2.8238893,2.137897,1.8217597,1.7032329,1.6957626,1.6714067,1.790466,1.8317648,1.8605917,2.0957034,2.2468724,2.3828464,2.3653703,2.450541,2.5954075,2.6828232,2.7299056,2.811985,2.7167087,2.8995726,3.0597384,3.0820463,3.099228,3.1354556,3.1998467,3.2768395,3.313568,3.5801425,3.952691,3.9502668,3.9667368,3.9734344,4.100533,4.161462,4.2602315,4.3171716,4.367713,4.340178,4.2879324,4.3166933,4.3105516,4.288444,4.2974405,4.314819,4.368472,4.3660817,4.372454,4.357809,4.342229,4.3367734,4.4253063,4.394468,4.376603,4.4752793,4.6538982,4.6616926,4.6631927,4.618362,4.7080255,4.659617,4.613241,4.5329256,4.5825534,4.5950384,4.5916405,4.601183,4.5734386,4.5632257,4.509892,4.547227,4.5579786,4.5694675,4.610241,4.5720916,4.537575,4.598179,4.651861,4.626927,4.644398,4.6636705,4.680241,4.7300844,4.575883,4.254679,3.5318992,2.557625,1.9737139,1.6481769,1.8390987,2.1763701,2.279605,2.4933362,2.5689025,2.6582599,2.7214115,2.9456782,3.0453858,2.9725225,1.9544544,1.3652864,1.0932043,0.94050014,1.0557027,1.2111251,1.4280026,1.6352289,1.980068,2.1533432,2.1514485,2.1778278,1.8716841,1.4117628,0.96540236,0.8127117,0.79549277,0.98967135,1.6685256,1.5516464,1.4324267,1.2750483,1.1282167,1.104759,1.3652225,1.3296689
+1.2125524,1.5306355,1.4904681,1.3030896,1.2100656,1.120909,1.0454992,0.9923961,0.9366061,0.90114856,0.83811146,0.7730987,0.7583059,0.72878397,0.7248795,0.70310736,0.6549528,1.7055407,2.1562643,3.083897,2.831849,2.2465162,1.9938655,1.9479035,2.0738716,1.9019808,2.8801773,2.7945776,2.3764856,2.816152,2.6519902,2.32095,2.0816622,1.9492061,1.8270743,1.7068326,1.6052927,1.4783092,2.1054213,2.3477132,2.9094834,2.3066363,2.0764058,2.0206738,1.853472,2.02527,1.9866018,1.8157256,1.7410157,1.629976,1.5289856,1.4146757,1.916565,2.477004,2.0935006,1.8831772,1.7853178,2.2427127,1.9946444,1.7787614,1.7547538,1.6003644,1.4970356,1.6044447,1.6687934,1.5127264,1.432383,1.4081304,1.3151671,1.2464192,1.1399406,1.0456954,0.9526034,0.94714004,1.721395,1.6396774,1.3745302,1.205908,2.5489736,2.296194,2.130803,2.0044882,1.8577466,1.7583271,1.6485083,1.5107288,1.4104164,1.370225,1.3184228,1.5621324,1.7599602,1.5359929,2.3093925,2.4055963,2.1187577,1.875873,1.9858255,2.3673754,2.0655289,1.8649844,1.7026837,1.495964,2.4693418,2.2710524,1.9432818,2.008589,1.9174422,1.9773054,2.3123891,1.9748483,1.8141812,1.6445692,1.5314801,1.3922889,1.3282672,1.2947468,1.2526646,1.1945245,1.1631669,1.0952587,1.064822,1.0680435,1.3787391,2.1254764,1.6944588,1.549435,1.4164584,1.2114987,1.1358354,1.0082114,0.8945402,0.73531103,1.3129684,2.2231338,1.8212898,1.5739839,1.4509511,1.848274,1.7812808,1.6165569,1.6434155,1.9120727,1.6111987,1.4581218,1.2206477,2.0466962,1.9577718,1.7140636,1.6900414,1.530421,1.4078736,1.8617673,1.7350245,1.5442824,1.4516046,1.273122,1.225522,1.1783772,0.96775377,1.0003417,1.0354444,1.4780767,1.6617892,1.4053564,1.2818463,1.7739674,1.8243275,2.0307693,2.8408027,2.307195,2.006812,1.8538476,1.7166033,1.5373759,1.8138813,1.719765,1.6647618,2.1240146,1.8476539,1.6980559,1.6115408,1.5541776,1.4357735,1.3659862,1.3180668,1.1804903,1.5442113,2.2036667,2.0570054,2.142175,1.8216879,1.6812645,1.6390541,1.5078139,1.4760486,1.4200454,1.3250395,1.2472945,1.155594,1.1029787,1.0444217,0.95051384,1.0065786,0.95889294,0.924194,0.86747956,0.8356073,0.8227188,0.8015006,0.7744641,0.7440553,0.6775366,0.6699474,0.68447006,0.6094015,0.5478866,0.54496914,0.5365149,0.555072,0.56801295,0.608728,0.5597172,0.5792038,0.57804537,0.49803627,0.61935335,0.6227319,0.5854005,0.58246297,0.5771885,0.5966573,1.3798646,1.3723705,1.4177573,1.5082905,1.9113013,2.1669858,1.866057,1.9147861,1.9015557,1.8682213,2.092744,1.897024,1.7577956,1.690732,1.6991543,1.6384128,1.8457849,1.8847345,1.8954676,1.9549208,2.109177,2.3106236,2.4471684,2.5228057,2.5567539,2.6341343,2.6702561,2.7157958,2.754365,2.7432086,2.7850764,2.85601,2.8563075,2.8487084,2.8362815,2.9384646,2.94167,3.288202,3.479234,3.4709196,3.566071,3.6034756,3.6686373,3.7318373,3.7906277,3.924288,3.95267,3.9709063,3.9557302,3.9645996,3.9737873,3.9936223,4.014453,4.000721,4.0847573,4.1819744,4.1981006,4.1601725,4.1201267,4.316203,4.4148474,4.3638067,4.474971,4.6833487,4.885111,4.864949,4.699956,4.591683,4.648692,4.512843,4.459442,4.4546742,4.509615,4.528994,4.5971527,4.5939445,4.4872103,4.448737,4.3463516,4.485113,4.4657664,4.6191854,4.5593824,4.509864,4.4239917,4.5956674,4.707516,4.584611,4.6357794,4.6373787,4.568663,4.199728,3.5203109,2.8076322,2.1278949,1.9230363,1.7603829,1.6019037,1.9220729,2.057857,2.1584694,2.2653146,2.3642664,2.3059382,2.1831074,2.3200333,2.3075974,1.8848954,1.5834842,1.351159,1.1996276,1.1535598,1.1698282,1.1607875,1.23107,1.3122857,1.4818356,1.5608544,1.520328,1.3336184,1.1726964,1.0656654,1.0459075,0.9577689,1.0052645,1.1439635,1.7772945,2.3873315,2.0318651,1.8744881,1.6943965,2.0869749,2.262456,2.0210505
+0.76199687,0.8995162,0.7514845,0.64544725,0.521495,0.5664394,0.52117836,0.4687268,0.38102895,0.37639192,0.33877337,0.2605493,0.20658301,0.17697331,0.13292235,0.07687175,0.21026202,2.1537485,2.175395,2.5821655,2.2491693,1.8649834,1.6432035,1.5099771,1.7355335,2.160307,2.6252627,2.3015041,2.0368924,2.436677,2.2761326,2.0806122,1.8665715,1.6913393,1.5845242,1.4463577,1.3652257,1.1977634,2.1625485,2.5508728,2.5096383,2.180962,1.9127582,1.8116205,1.6645534,2.1490414,2.328814,1.8806883,1.728234,1.6639013,1.5930319,1.4596982,1.6409483,2.2098558,2.5047452,2.435933,2.6915007,2.6195476,2.1906345,2.0469227,1.9299233,1.7342848,1.5819218,1.4607286,1.671371,1.5333053,1.3464236,1.2550831,1.1141841,0.9879775,0.89849246,0.8116325,0.71653646,0.65015954,0.6077622,0.51860434,0.41460305,0.3101853,1.3449336,1.6031903,1.3152828,1.1605777,1.0350816,0.89378476,0.80484337,0.7369331,0.95204,0.8318053,0.7687469,0.73622876,0.65073544,0.5356018,1.279806,2.0248008,1.7717829,1.4501555,1.310302,1.8419586,1.6624932,1.4583752,1.2696956,1.0698858,1.2335603,1.367751,1.1312962,1.0696809,1.0485833,0.8961749,1.2972217,1.0242661,0.8655797,0.6974933,0.4969524,0.43540248,0.22923781,0.14839639,-0.0117334835,-0.15113783,-0.27118713,-0.2900632,0.53709984,1.0800512,0.72036475,1.4354482,1.2555888,0.8984432,1.0658263,0.8910749,1.1370549,1.4503572,1.1160386,0.9406668,0.6508584,1.3862505,1.2950002,0.99310184,0.7700217,0.6225033,0.43360215,0.39601815,1.5134766,2.1624339,1.4391978,1.1914661,1.0082316,1.3533695,1.5519776,1.3604076,1.5080688,1.4771237,2.2340279,2.381923,2.0921042,1.6742536,1.6135893,1.3941886,1.2075865,1.0949472,0.95240754,1.0688539,1.0443237,1.0934603,1.2823807,0.9596254,0.81275046,1.6257727,2.0737667,1.57743,1.7137108,1.5409923,1.333343,1.1801733,1.0356059,0.861639,0.7773169,0.6206084,1.1892179,2.2282352,1.4962826,1.2792705,1.1028726,1.0644622,0.93301904,0.85577524,0.7613558,0.6285503,0.8343641,1.4674494,1.666913,1.7556427,1.4524002,1.1862483,1.5290015,1.4930973,1.3720943,1.243617,1.1310108,0.99008167,0.91142017,0.8063188,0.69250566,0.5513201,0.6751455,0.5865836,0.5088344,0.41315272,0.34134954,0.30103442,0.2678014,0.21574609,0.21119055,0.15677287,0.09013532,0.10793279,0.019094784,0.044850115,-0.0043565743,-0.034686875,-0.07457869,-0.12346561,-0.025153529,-0.026431706,-0.042895686,0.016945291,-0.08390418,0.031238694,0.086625084,0.019190077,-0.014985632,-0.076726064,-0.055372667,-0.028489988,0.031050865,0.09020938,0.1390777,0.8975737,1.7229458,1.3719717,1.3964571,1.3705502,1.3890522,1.3726574,1.2944034,1.2107332,1.0935357,1.1220778,1.2190827,1.7723218,1.6351252,1.6732328,1.6944203,1.8908467,2.1107965,2.1926408,2.2773564,2.2498693,2.355605,2.3498473,2.321239,2.3076332,2.4677422,2.4360409,2.392973,2.390654,2.4008412,2.429388,2.549415,2.591341,2.963279,3.0225086,3.015444,3.0424385,3.039826,3.0314436,3.0876534,3.0745962,3.2474275,3.4036765,3.3857136,3.4019742,3.3106613,3.327852,3.3464723,3.3996782,3.5718398,3.7090669,3.9437063,3.8688347,3.864192,3.9160523,4.3899055,4.52867,4.4672155,4.7132955,4.920721,4.704936,4.214121,4.0823803,4.068429,4.10187,3.8741112,3.757319,3.7494912,3.7509797,3.7053313,3.5073202,3.4688978,3.3852663,3.2666297,3.0584483,3.111584,3.1329284,3.1613994,3.1529317,3.0662985,2.8722506,2.5901608,2.1015294,1.768019,1.7942201,1.760762,1.5699764,1.366563,1.2398573,1.1602672,1.3288047,1.2560635,1.1651256,1.1295706,1.5344855,1.5826277,1.5622988,1.5427091,1.5566577,1.4140123,1.2396818,1.1899849,1.1555868,1.0533923,1.1037011,1.0259807,0.8230559,0.73557013,0.62700593,0.48218,0.50637114,0.5705644,0.6443764,0.7232494,0.7077572,0.6942848,0.4998002,0.3708595,0.38478032,0.31379443,0.09972292,0.0049147345,0.014642913,1.3382841,1.5150363,1.4519352,1.2271265,2.4318595,2.8252344,2.215701
+0.098495424,0.21615769,0.40439558,0.50418985,0.47703815,0.6316289,0.56527096,0.41757852,0.3136929,0.29390714,0.25466907,0.14074773,0.09624727,0.09830533,0.053391356,-0.016890626,0.5338394,2.1500583,1.7400748,2.6240568,2.2753806,2.0184994,1.7921543,1.6296735,2.1442275,2.584678,2.7892115,2.4600742,2.481965,2.6754904,2.3374827,2.1942172,1.9769404,1.8372232,1.6727672,1.5510244,1.4597985,1.5501797,1.9519356,1.8798879,1.8162792,1.7064782,1.598366,1.5232544,1.4472604,1.9979467,2.4732108,2.0309134,1.8538607,1.8986992,1.799531,1.6637874,1.7636292,2.352125,2.4352236,2.561149,3.132599,2.9505606,2.460722,2.212275,2.0797415,1.9894276,1.7996063,1.6874804,1.7823589,1.6746336,1.5148685,1.4054015,1.3114383,1.1909933,1.0874776,1.0100796,0.9353075,0.89149714,0.83258677,0.77497375,0.91685295,0.9777608,0.9287863,0.8848526,0.82516587,0.74091053,0.65336436,0.5360079,0.5615524,0.5585197,0.82641596,0.9250356,1.8768331,1.84254,1.5778929,1.4198239,2.2981796,2.8271432,2.595477,2.1482103,1.9613929,1.8602898,1.8041989,1.6916449,1.5279936,1.3487549,1.8019061,2.1078308,1.9865055,1.6781867,1.5224135,1.3758614,1.2103615,1.0756738,0.94932276,0.79905695,0.6384008,0.56778234,0.7176509,2.4284625,2.1860256,1.7993617,1.6408763,2.0710425,1.866185,2.1317356,1.9569752,1.679779,1.5007437,1.3285389,2.012591,2.1835377,2.314186,2.2402105,1.9223862,1.7132459,1.5492396,2.177104,2.0726774,1.7637184,1.5718099,1.423826,1.2827421,1.1382535,1.5587859,2.49381,1.8878713,1.6355903,1.4522517,1.4215581,2.1719556,2.0169473,2.2171826,2.0203373,1.838138,1.7692397,2.0533786,1.9374796,1.6711655,1.4950254,1.370483,1.2152302,1.0972433,1.0103376,1.5666499,1.9791245,2.340909,1.9302685,1.6390867,2.449152,2.8029253,2.3281465,2.4107955,2.4272213,2.0752544,1.9379611,1.8248678,1.730632,1.6188244,1.4427803,1.987773,2.9520388,2.4315355,2.07728,1.8822796,1.8121116,1.6912675,1.5928743,1.4785229,1.3533385,1.2349684,1.8939059,2.151072,2.3562944,2.0212913,1.7563156,1.9684076,1.9187799,1.8271601,1.752914,1.6605296,1.5775986,1.5451524,1.4565959,1.3854843,1.3124546,1.2908194,1.1772319,1.0692996,0.98159266,0.9000478,0.8319923,1.5782318,1.8735943,1.5984352,1.4449835,1.394218,1.2826997,1.1789134,1.178896,1.1496646,1.0355525,0.9235213,0.82194996,0.8614143,0.98549616,0.9499771,0.8712841,0.81817555,0.8110502,0.7632861,0.75088644,0.7179564,0.6649819,0.5732538,0.54151773,0.5376008,0.4695785,0.5266667,0.6356978,0.88388854,0.85640395,0.84488565,0.7788675,0.7480478,0.7896874,0.7172122,0.6781749,0.62661994,0.61491823,0.6634088,1.4008868,1.4290555,1.3611977,1.2702441,1.1841892,1.153877,1.2385249,1.3499892,1.3066936,1.3512952,1.2752413,1.2361057,1.2713003,1.2805889,1.353712,1.2813461,1.2425835,1.2961707,1.402185,1.6253228,1.7833099,2.1154099,2.0836892,1.9103587,1.9558867,2.0002635,1.7928379,1.8086002,1.7916517,1.9437773,2.129403,1.7372262,1.65621,1.5463785,1.5096695,1.5206671,1.5103841,1.738211,1.8836098,1.8632871,1.6761411,1.6260731,1.8979082,2.8635817,3.0854275,3.2982106,3.520216,3.1628394,2.7035527,2.4146528,2.2510552,2.2297034,2.028658,1.8461558,1.7638366,1.7664608,1.8008294,1.7605069,1.7217532,1.6447527,1.5297527,1.4246967,1.2665069,1.410765,1.488333,1.5270407,1.377495,1.2690655,1.2258008,1.2962766,1.3270434,1.2080138,1.215567,1.140213,1.1005923,1.0696582,1.0875261,1.0895582,1.7667426,2.1063313,1.8511702,1.7052143,1.5810004,1.4785689,1.4662406,1.4763352,1.4534079,1.3460242,1.17275,1.0380782,0.92668533,0.7974168,0.74156845,0.78561825,0.73016894,0.7444251,0.6612613,0.5705266,0.5923418,0.7076009,0.5726784,0.5749371,0.6725646,0.7531542,0.70086986,0.60189277,0.6204541,0.6223593,0.47498715,0.3452931,0.32532695,2.0211337,2.0209277,2.4115942,2.188235,2.9876711,2.8883832,2.502262
+0.0430131,0.21732889,0.42545542,0.5465926,0.5567957,0.5179359,0.32637572,0.16760701,0.08715591,0.046745326,1.5781821,1.9105135,1.6177089,1.5288146,1.411783,1.3025856,1.99424,2.8837857,2.3122065,2.3970556,2.302121,2.0978074,1.8508277,1.6798086,1.5785394,1.4989629,2.6495776,2.3789735,2.5986269,2.613507,2.2901964,2.1740494,1.9174635,1.7836266,1.6121725,1.4817268,1.3820857,1.5374624,1.6186589,2.158755,2.0856955,1.8748232,1.6566914,1.8175967,1.7345512,2.4462163,3.2080755,2.6927054,2.332833,2.270486,2.128776,1.9721918,2.322465,2.5076485,3.0088525,2.6179419,2.6186943,2.799232,2.6891413,2.4418173,2.3876524,2.3563538,2.2059197,2.0443068,2.0080607,1.8925383,1.7213073,1.6033833,1.5175941,1.4469094,1.3644252,1.2867918,1.2347305,1.2442739,1.1543492,1.0988688,1.3081017,1.3325162,1.7491174,2.060241,1.7813002,1.5969007,1.4359386,1.9247148,2.3157496,1.9861956,1.8023274,2.3405695,2.1066756,1.83743,1.8692033,1.98547,2.0806599,2.9984484,2.7236247,2.2700887,2.4784427,2.3358822,2.1196275,2.0202425,1.8276429,1.6516428,1.7778716,1.7740735,2.1069074,2.1942737,1.8881754,1.716078,1.5392032,1.3814375,1.2321043,1.0697446,0.8887771,0.6932452,0.5923419,2.0955577,2.219322,1.8938959,1.8619895,2.1470723,1.9055042,1.6905856,1.4919245,1.2733421,1.0400296,0.809333,1.148772,2.1118357,1.8819444,2.445394,2.226329,1.9905236,1.7058774,2.0124047,2.101741,1.7919661,1.705457,1.523135,1.3610581,1.2069695,1.0918847,2.4457293,2.1901608,1.8737907,1.7666993,1.7018166,2.6342387,2.539259,2.1389444,2.0602303,2.0011325,1.8815373,2.310687,2.289027,2.01476,1.8401396,1.6929328,1.5167812,1.3779461,1.2424643,1.7133491,2.8942785,3.0434613,2.5928802,2.2248268,2.0733151,2.0508213,1.930263,2.6698418,2.59186,2.2597585,2.0928419,1.9725854,1.8695086,1.7412133,1.5796728,1.5273185,2.9256134,2.7361655,2.3140056,2.0749352,1.9655066,1.8462464,1.748461,1.6352487,1.5026308,1.3740301,1.8238482,2.7566752,3.003703,2.538977,2.231599,2.0758536,1.8943471,2.262193,2.2421365,2.047318,1.9606934,1.8876623,1.7822511,1.7122177,1.6643243,1.6193838,1.4931188,1.3807423,1.2982302,1.225874,1.1765162,1.6693704,1.8361549,1.6940029,1.6106653,1.5432196,1.469532,1.4030757,1.3756378,1.3698928,1.2885065,1.1988492,1.0762465,1.1559116,1.294999,1.2232802,1.1575406,1.1549413,1.1132579,1.06082,1.0713346,1.0408449,0.97791517,0.91919994,0.9050479,0.8416685,0.7590791,0.7454634,0.7581048,0.9603126,0.89872843,0.9246664,0.8816207,0.8697684,0.9559039,0.9245475,0.9185195,0.82315373,0.77481973,0.84686947,1.5602889,1.6119502,1.5810639,1.4551387,1.314446,1.364084,1.496789,1.5879552,1.5201426,1.5519456,1.5339444,1.6258892,1.7481073,1.7618,1.7719656,1.7713983,1.8103731,1.9619215,2.0871425,2.1151729,1.9601755,1.9149506,1.8599029,1.6387843,1.6713598,1.5769823,1.3802652,1.4090325,1.3879657,1.4568461,1.5331284,1.1989169,1.2496161,1.449197,1.5809515,1.6767516,1.7341764,1.8894473,1.6142627,1.5402257,1.3954413,1.5087705,2.7464132,3.0281405,2.7509153,2.6194682,2.4873688,2.309333,2.184733,2.283093,2.0805857,2.0262415,2.003116,1.8289666,1.7735643,1.8419167,1.8879566,1.8094649,1.6865265,1.5566041,1.3952541,1.3730154,1.3783741,1.5067065,1.5410836,1.5534011,1.4621072,1.2088327,1.284108,1.3522396,1.3499942,1.1414206,1.2278821,1.1598486,1.0394515,0.9813397,0.963868,0.92589045,1.9974649,2.3669086,2.0302536,1.863348,1.8511097,1.6520376,1.5853679,1.5887575,1.5604769,1.5888199,1.3880117,1.2073566,1.089464,0.9666208,0.892632,0.8818692,0.6742562,0.6963524,0.6176063,0.51925045,0.50223446,0.7060919,0.5908319,0.6023302,0.6212323,0.5787672,0.47481674,0.39846003,0.36966056,0.28040397,0.16572294,0.05411243,0.114617854,1.3286562,1.3897859,1.9781561,1.849139,2.8244033,2.8060079,2.3985696
+-0.2856347,-0.74107885,-1.1560698,-1.2029104,-1.1585737,-1.207658,-1.305083,-1.4057148,-1.3989964,-1.4528217,-0.064361095,0.058558214,0.042249594,-0.022526782,-0.2728762,-0.4385951,0.2581864,1.2966378,0.645455,0.81592035,0.20463978,-0.06337029,-0.22850053,-0.3642847,-0.48561284,-0.42874828,0.2566572,-0.066493645,-0.14296974,-0.16805772,-0.34453702,-0.44320118,-0.50596285,-0.5773088,-0.64400494,-0.7030598,-0.7647767,-0.8350369,-0.85467374,-0.8487793,-0.89676696,-0.8051954,-0.8561493,-0.8502339,-0.90361446,-0.0881954,0.47146517,-0.044362556,-0.18500398,0.030749429,-0.21786729,-0.37475365,-0.16486138,0.6737596,0.8658806,0.33310366,-0.01589119,-0.2013235,-0.34555662,-0.4304697,-0.06548165,0.029203136,-0.0012772642,-0.03491814,-0.20766884,-0.3784581,-0.47448418,-0.55876684,-0.6468179,-0.7402455,-0.8213911,-0.88981414,-0.93613225,-0.9172367,-0.9941654,-1.027215,-1.073989,-1.1176329,-1.0977774,-1.0605454,-1.1311501,-1.2188951,-1.2970673,-1.3581533,-1.4256594,-1.4888386,-1.518064,-0.9134381,-0.37547636,-0.62144697,-0.7979474,-0.5971462,-0.4452356,0.1267958,0.6470542,-0.061231654,-0.3055461,-0.49395233,-0.20448832,0.06478523,-0.31374818,-0.5098619,-0.6679565,-0.8000336,0.18259214,0.6283744,-0.047646757,-0.28179866,-0.46670985,-0.60649425,-0.73236805,-0.84955215,-0.95575494,-1.0700074,-1.2064177,-1.3493769,-0.8700225,0.4397151,0.13074775,-0.087423384,0.025200833,-0.19657706,-0.46354857,-0.6511036,-0.8039241,-0.9282472,-0.9446726,-0.3059047,-0.305887,-0.5467563,-0.7190846,-0.83241117,-0.9901107,-1.0985153,-0.9338869,-1.0805175,-1.1779659,-1.2469181,-1.3590616,-1.4613407,-1.564672,-1.5257701,-1.4963119,-1.5687548,-1.6485951,-1.6179211,-1.7385212,-0.5598977,0.33621714,-0.08550349,-0.29258883,-0.4293735,-0.0366476,0.2598604,-0.18697819,-0.41187283,-0.56978095,-0.7259218,-0.86980104,-1.0040151,-1.1311226,-1.0251799,0.07456221,-0.2562074,-0.5166803,-0.6788996,-0.7903119,-0.8729723,-0.789575,-0.67420125,-0.5877123,-0.5606753,-0.74593914,-0.867587,-0.9767324,-1.0818142,-1.1770802,-0.5695753,-0.0507345,-0.4614647,-0.6439478,-0.7446655,-0.81333005,-0.9176128,-0.9810113,-1.0534265,-1.1388519,-0.82850564,-0.20365311,0.6064823,0.053483684,-0.25569522,-0.4318575,-0.56162626,-0.57961553,-0.62833905,-0.6512172,-0.71949387,-0.80900216,-0.8906424,-0.9367279,-0.99935365,-1.0322186,-1.0252773,-1.065221,-1.1195787,-1.169042,-1.1872505,-0.68414474,-0.3116899,-0.5505855,-0.69055605,-0.7661005,-0.82248735,-0.8952807,-0.93916243,-0.8211607,-0.7990211,-0.8966669,-0.9690784,-0.90673316,-0.0024234764,-0.18109085,-0.39042085,-0.51319337,-0.5694579,-0.6299749,-0.6883776,-0.7367357,-0.7940679,-0.8388001,-0.9135338,-0.85232556,-0.8047738,-0.84942055,-0.89727485,-0.7614333,-0.79121923,-0.8401611,-0.8191476,-0.84191054,-0.8751049,-0.94881856,-0.9733381,-0.9407471,-0.96332276,-0.911844,-0.6323569,-0.6356436,-0.70572877,-0.7666309,-0.6953648,-0.28704134,-0.29717997,-0.48496607,-0.6321443,-0.65010303,-0.65797144,-0.44906098,-0.43373615,-0.60393894,-0.41621542,0.2496206,0.33316576,0.30543715,0.13162123,-0.07892911,-0.30955637,-0.30868748,-0.24600968,-0.39005274,-0.39989722,-0.49102208,-0.44908702,-0.42402756,-0.53882957,-0.545522,-0.60907996,-0.6245198,-0.36707824,-0.117229775,0.3408927,0.50145864,0.5268465,0.28621262,-0.39746764,-0.5044849,-0.620917,-0.13578705,0.48996508,0.89138645,0.44654635,0.21279258,0.04596639,-0.09101722,-0.19881348,0.08630119,0.05320092,-0.0968692,-0.24050893,-0.2643505,-0.14374882,-0.13081698,-0.26988852,-0.4220153,-0.50228417,-0.5511935,-0.59599864,-0.53264993,-0.3577096,-0.43088406,-0.5767114,-0.62346566,-0.69051635,-0.62677264,-0.56171346,-0.7350042,-0.8126335,-0.9052849,0.10525866,0.30502754,0.0076934434,-0.17846334,-0.32896653,-0.4311875,0.07865161,0.15671691,-0.16521941,-0.3299662,-0.41874462,-0.44120362,-0.37695268,-0.48880434,-0.6111414,-0.69865733,-0.728285,-0.77393603,-0.85272753,-0.98001254,-1.0467949,-0.6901039,-0.6081022,-0.7245724,-0.8467587,-0.52282137,-0.13085155,-0.3537811,-0.4750196,-0.44958997,-0.54135567,-0.6865616,-0.7669493,-0.85457265,-0.9311363,-1.0018722,-1.1280761,-1.1323413,-1.2211117,-1.1482935,-1.1533298,-1.1038247,-1.1277835,0.9366815,0.23682351,-0.023332711
+-0.13607788,-0.15097049,-0.20017543,-0.21019879,-0.23668818,-0.29177684,-0.38018155,-0.49246064,-0.0014530122,1.487447,1.5451593,1.2878342,1.0630534,0.87473994,0.6286477,0.4541342,1.4662969,1.6725907,1.1960897,1.5522668,1.0006497,0.75531745,0.5933893,0.48051625,0.38556957,0.2921769,1.0369232,0.797121,1.3767663,1.5687772,0.9952154,0.9167186,0.74304575,0.60358113,0.5249192,0.4347903,0.3505895,0.25853038,1.3690909,1.0382746,0.7634107,1.2605395,0.8671682,0.6595551,0.5054881,0.48736382,1.3125598,0.9591905,0.7620497,0.6539284,0.5272416,0.41374665,0.8880442,1.0458312,1.2188374,0.93465865,0.76374793,0.9236651,0.8410522,1.2014222,1.3422225,1.057924,1.705308,1.4164786,1.0920455,0.85173297,0.6840789,0.5671291,0.4507243,0.3521363,0.2527042,0.15775155,1.2425774,1.3815935,1.0014942,0.81598556,0.6670389,0.55923295,0.42971987,0.44722316,0.3498658,0.2285008,0.12088953,0.04244611,-0.05786535,-0.15888827,-0.23429544,-0.2301557,-0.27462468,-0.38484064,-0.46196085,-0.5665817,-0.67529464,-0.40664318,0.7208507,0.3545755,0.09228127,-0.07862155,-0.21034554,0.4374562,0.6289648,0.27470452,0.067475304,-0.089768,-0.18374331,0.76579106,0.47415352,0.22225948,0.03590474,-0.124149665,-0.26149717,-0.3973263,-0.5365486,-0.6785538,-0.7964528,-0.92761564,-0.91570157,-0.36977774,-0.34855217,-0.47519666,-0.6236223,-0.52211565,-0.57860255,-0.7467129,-0.88277686,-1.0458734,-1.2270076,-1.3021078,-1.3222176,-0.47322553,0.030448105,-0.22573604,-0.4630608,-0.6773234,-0.64471966,-0.7824557,-0.87567997,-0.9618944,-1.0898716,-1.1845342,-1.1172397,-0.3594055,-0.2822978,-0.46387756,-0.5729866,-0.75294846,-0.9077122,-1.0220209,-0.9308691,-1.0350087,-0.9708928,-0.7493069,-0.64151764,-0.43368295,-0.35135663,-0.5061289,-0.628392,-0.76702476,-0.9191941,-1.0565192,-1.1963415,-1.3241606,-0.82001865,-0.3881448,-0.55654407,-0.7163738,-0.74153256,-0.16380829,0.23925947,0.14496416,1.1462808,0.68463886,0.34584755,0.11908536,-0.054071765,-0.19644478,-0.3287722,1.0773369,1.1453604,0.57295346,0.34629542,0.2216414,0.12544273,0.0064864643,-0.09880018,-0.2077925,-0.32536945,-0.43450874,-0.5362731,0.5810317,0.65308726,0.2993262,0.120729595,-0.00724547,-0.119967654,-0.20854299,-0.081964925,-0.13026872,-0.27115077,-0.3822224,-0.44073167,-0.5139019,0.8578449,0.7604512,0.42494503,0.23486288,0.10373908,-0.0016999803,0.3382941,0.5486466,0.25761703,0.08124067,-0.027989961,-0.12785475,-0.23247673,-0.31185296,0.08590196,0.19741067,-0.017561529,-0.13291283,-0.014999811,0.50159955,0.23480378,0.05753422,-0.03836753,-0.10901371,-0.19089343,-0.25826135,-0.31315923,-0.36244452,-0.433865,-0.48627508,-0.45605576,-0.4413664,-0.494138,-0.55939746,-0.13320771,-0.08867903,-0.20902081,-0.24476539,-0.27706113,0.3904183,0.54039323,0.27139744,0.1884843,0.10433371,0.5779497,0.8589762,0.48807657,0.3578592,0.28401822,0.24022593,0.2562434,0.25387913,0.15763025,0.0756951,0.019547157,-0.003090229,-0.02048045,-0.038727473,-0.06887718,-0.058666136,0.36262256,0.47273755,0.5587177,0.41844523,0.25373852,0.25227243,0.13473977,0.22511496,0.148703,0.053893376,-0.007157773,-0.06617515,-0.103068486,-0.17643937,0.21852337,0.39019614,0.20713352,0.21276955,0.83308613,1.3013874,1.5632815,1.8573782,1.6440263,0.81900704,0.58764535,0.69682145,1.0953246,1.2899113,1.7469857,1.2928227,1.0075084,0.7994563,0.6420724,0.51551867,0.45233566,0.36386687,0.31869906,0.2620354,0.22272395,0.24971272,0.23566376,0.17515495,0.09823109,0.03827301,-0.023893815,-2.2817403e-05,-0.11505854,-0.11842106,-0.13573386,-0.1765052,-0.19228782,-0.24344358,-0.29933083,-0.30541432,-0.36506474,-0.3821426,-0.37621337,1.5965562,1.2822702,0.86968446,0.61580086,0.4494713,0.33386302,0.7487972,0.7709094,0.49302304,0.34640127,0.2675137,0.2185344,0.19874446,0.10183118,0.031807926,0.14625295,0.0626135,-0.06648213,-0.1691231,-0.26631132,-0.34196812,-0.1164303,-0.18787777,-0.31234652,-0.38083285,-0.4547878,-0.42875555,-0.26467395,-0.22879764,-0.31373975,-0.40917826,-0.51375496,-0.6130582,-0.6714865,-0.7640077,-0.82089865,-0.9143415,-0.97779095,-1.0527891,-1.0518513,-1.1181412,-0.02576954,0.3581035,0.6726083,0.63231945,0.28525412
+1.4922279,1.7168746,1.5652952,1.4784317,1.3306813,1.2135897,1.0252656,0.9589375,0.8491712,0.9919009,2.3552768,2.8063354,2.6944418,2.768746,2.433044,2.2614021,3.1094692,3.2762747,3.0364618,3.057578,2.9983451,2.8505948,2.6597455,2.4819403,2.3907971,2.2186255,2.99606,2.9303107,2.6929574,2.930183,2.6010416,2.657642,2.7405663,2.4489553,2.3306122,2.2204502,2.1265132,2.0134215,2.4507787,2.6563451,2.3543117,2.3149195,2.1723914,2.1791422,2.1633477,2.0839968,1.9995241,2.0586152,2.315176,2.4790516,2.2042878,2.121355,2.300328,2.5439768,2.2953112,2.1794944,2.5118804,2.7066665,2.373269,2.6895444,3.2439847,3.2482333,3.1871004,3.3540494,3.1712513,2.734116,2.5561104,2.44689,2.3469357,2.3151257,2.2438827,2.11819,2.6939077,2.9905057,2.875301,2.5210986,2.343426,2.2217681,2.124814,1.9988589,1.8109585,1.6181095,1.4631342,1.369751,1.2279348,1.0781488,0.94534385,0.70054626,0.51373345,0.41953564,0.33514023,0.16931449,-0.0010058396,-0.06957199,0.30912253,0.97115254,0.9484863,0.7928678,0.6370726,1.3077776,1.9154062,1.5999777,1.2668538,1.0656655,0.7618834,1.3668088,1.8767759,1.5208693,1.3117741,1.0010169,0.6715153,0.28281575,-0.10173999,-0.36393166,-0.4931702,-0.4956656,1.0111067,1.5468352,1.4092319,1.186839,0.8101305,0.35908407,-0.056711625,-0.4200602,-0.60786057,-0.73550665,-0.82871974,-0.90623456,-0.94504184,-0.98892164,-0.99530697,-1.0265453,-1.05965,-1.1810001,-0.9481026,-0.77251214,-0.87587,-0.441478,-0.60672504,-0.6684487,1.5509558,2.5232205,2.3506317,1.9949441,2.0941892,1.795753,1.5694182,1.5379314,1.9540304,1.7124465,1.6673758,1.8745257,1.8044016,1.8700618,2.1282032,1.8907703,1.6633648,1.4468789,1.3175635,1.2055026,1.0214635,0.80620146,1.3498595,1.6935738,1.4719102,1.2905254,1.0723283,1.0978279,1.2146533,0.9680021,1.0872216,1.2410747,0.95512486,0.7970276,0.6347621,0.48110068,0.38055086,1.5542046,2.5515742,2.5019035,2.0733814,1.9712386,1.9155294,1.6887445,1.5023232,1.3147229,1.2014756,1.0586904,0.94825274,1.6066735,2.0389986,1.7978774,1.5415845,1.4063499,1.316611,1.1890119,1.1230255,1.0619228,0.993165,0.9329015,0.8529399,1.117271,2.1257148,2.0959516,1.8308834,1.7995913,1.7422334,1.6571031,1.6133556,1.5125686,1.3801006,1.2323494,1.1013284,0.9752234,0.88408744,0.8307347,1.6878024,2.124977,1.867678,1.7806125,2.5794973,2.6567311,2.5747862,2.3292778,2.2042449,2.0953877,1.9951339,1.8809934,1.7653799,1.6856686,1.687019,1.6932652,1.6339908,1.6456621,1.6895508,1.7119411,1.6790323,1.7406052,1.6819918,1.6370184,1.7132101,1.8766387,2.0992799,1.8461542,1.818428,1.832977,2.043991,2.301044,2.1108923,2.221542,2.0756319,1.9986043,1.9294118,1.9114916,1.9243577,1.8160868,1.7643974,1.753088,1.7575463,1.7606463,1.6121747,1.600585,1.5540187,1.6381854,1.6212459,1.5512855,1.6680346,1.6912022,1.6700321,1.6762633,1.4541957,1.4449983,1.2965808,1.2906282,1.3421788,1.3394272,1.5557482,1.7962891,1.7493985,1.7269063,1.6815287,1.6791441,1.7380595,1.8044429,1.7129138,1.6561255,1.6056283,1.7437298,1.9861181,1.8943347,2.6849334,2.8315828,2.8359847,2.7692676,2.5267603,2.477878,2.377637,2.3648353,2.2454333,2.162138,2.0443487,1.9824922,1.9401939,1.913413,1.8692256,1.8128107,1.7929134,1.7594446,1.7752848,1.791211,1.8232657,1.6887898,1.6083466,1.4322346,1.4522579,1.5102935,1.4131948,1.4102924,1.1708214,2.5383797,2.7628434,2.4653697,2.4118195,2.3536983,2.2298474,2.5434246,2.7362618,2.3881793,2.269848,2.1391423,2.0207467,2.0549521,2.3117385,2.5584822,2.3052833,2.1102638,1.9828224,2.0193424,2.099349,2.1860895,2.0379746,2.0213442,1.9820726,1.8326418,1.7761148,1.7888064,1.7467055,1.6501155,1.6586123,1.7035363,1.542855,1.5075192,1.3365469,1.1784136,1.0156624,0.91918945,0.7961815,1.3430218,1.8244984,1.6808529,1.8575377,2.1067803,2.1836293,2.340669,2.1082487
+0.456128,0.511037,0.20351447,0.058663603,-0.11995031,-0.22344582,-0.39850435,-0.59710574,-0.6768073,-0.5860386,-0.73770124,-0.70502853,-0.26268244,0.012385566,-0.12615117,-0.28846323,1.072091,1.8705877,1.0113212,1.3073564,1.1895078,0.8305408,0.5420295,0.3522353,0.19101389,0.052761223,0.7753597,0.6552278,0.55366266,1.0532358,0.7102673,0.62272966,0.43138418,0.24696426,0.08085081,-0.061102953,-0.16822614,-0.201066,-0.045128834,-0.28758705,0.6015737,0.76745665,0.45348498,0.29845756,0.33683014,0.4501411,0.41829446,0.26710936,1.2565167,0.8371781,0.5072018,0.39225543,0.19836386,0.07110573,-0.0063749515,0.4018705,1.4233073,0.7779933,0.4680367,0.5368047,0.4835378,0.7232851,1.4833544,1.0023872,0.76521444,0.5099916,0.34843355,0.21210471,0.046428006,-0.06640755,-0.17073806,-0.28272784,-0.36426342,1.551579,0.8382194,0.53385466,0.40277007,0.2653488,0.16952707,0.071640566,-0.039637905,-0.14469063,-0.23293242,-0.34694356,-0.48163867,-0.584366,-0.69672465,-0.82563925,-0.9431013,-0.77441573,-0.93721676,-1.0620196,-1.1399117,-1.188176,0.76553094,0.67238003,0.3333522,0.14151528,-0.016673345,-0.18500611,-0.28519267,-0.31720755,-0.5332675,-0.66274416,-0.8269404,-0.94988954,-1.1004089,-1.178791,-1.2501285,-1.3365273,-1.419389,-1.5330801,-1.6367404,-1.7154536,-1.7796805,-1.6834973,-1.2745594,-1.3858647,-1.4335594,-0.82698643,-0.87747884,-1.0784274,-1.2512693,-1.4088478,-1.5346851,-1.6454235,-1.7431464,-1.8326359,-1.9231578,-1.9914837,-2.0484471,-2.098132,-2.1520326,-2.2480268,-1.6973605,-0.44258362,0.8174459,1.3941629,1.618711,1.3265234,1.1539655,1.0022218,0.83486164,0.728953,0.5139413,0.23082028,0.045854423,0.078946486,0.19815503,-0.015023667,0.10415204,0.45003402,0.24302585,-0.042305406,-0.14951459,-0.2645977,-0.48139304,-0.589414,-0.6447909,-0.7494346,-0.88953775,-1.0017381,-1.0991079,-1.1172225,-1.2480682,-1.2532203,-1.2855165,-1.3048872,-1.3578537,-1.4108248,-1.4127742,-1.4455334,-1.5027659,-1.5387031,-1.5857301,-1.5574563,-1.5635328,-0.56817067,0.3954981,0.009641517,-0.27667338,-0.45034915,-0.5445827,-0.68485713,-0.81431425,-0.957656,-1.0157202,-1.0483758,-1.0849402,-1.1446882,-1.1818452,-1.2971559,-1.4103415,-1.4253373,-1.4217782,-1.4100344,-0.6531168,-0.045878705,-0.34225413,-0.4505674,-0.52796483,-0.6119609,-0.37939012,-0.0044935234,-0.35697934,-0.4696416,-0.5349326,-0.62009954,-0.71985173,-0.80668914,-0.8992739,-0.9852767,-1.0609723,-1.1266888,-1.1303737,-1.142131,-0.20521684,0.54948103,0.50699604,0.63843834,0.43516403,0.5207819,0.48491907,0.26929268,0.10336459,-0.01090337,-0.17534609,-0.31278577,-0.39452577,-0.498193,-0.5750916,-0.5745115,-0.66988415,-0.736817,-0.6870986,-0.6975869,-0.25277698,-0.049587753,-0.18526244,-0.21788485,-0.33039868,-0.13681042,-0.072885066,-0.34839097,-0.45374492,-0.49554387,0.5947003,0.87310153,0.6386527,0.6016753,0.38804305,0.22319596,-0.04325537,-0.07281193,-0.13610198,-0.19227381,-0.19426213,-0.23534521,-0.2900996,-0.41097513,-0.46007556,-0.5758095,-0.65527177,-0.564438,-0.5096492,-0.57417417,-0.5409451,-0.26415396,-0.15063886,-0.26800838,-0.21076536,-0.28487206,-0.4815278,-0.61090827,-0.6425834,-0.6814619,-0.19808975,0.11285871,-0.1827579,-0.239112,-0.36933073,-0.3883136,-0.2632125,-0.12134221,-0.19668724,-0.29234976,-0.3206233,-0.31240284,-0.20301077,-0.30260855,0.61627984,0.8964011,1.8466455,1.0304196,0.65680707,0.5282305,0.52105373,0.31645074,0.22369023,0.17596014,0.05810641,0.013669219,0.008726288,-0.063441515,-0.11484745,-0.24211775,-0.3399507,-0.40201956,-0.47638807,-0.55947983,-0.59234685,-0.64056766,-0.70081526,-0.8585185,-0.97895896,-0.92263865,-0.9288299,-1.0009611,-1.1859776,0.35159197,0.768309,0.29362822,0.18851848,0.07250713,-0.08552542,0.88070464,0.8930755,0.5000111,0.2749709,0.17126079,0.010962311,0.0499898,-0.032327626,-0.08766,-0.23637171,-0.4364199,-0.5090107,-0.4994983,0.31123418,0.3541286,0.078289196,-0.14803219,-0.2285028,-0.3618662,-0.41598344,0.75886565,0.70810235,0.2856631,0.1439148,0.0026113577,-0.14830606,-0.30799058,-0.45952624,-0.596874,-0.7259456,-0.8271083,-0.8973831,-0.41131693,0.2882624,-0.17224927,0.01314472,0.202977,0.70331335,0.70714664,0.20458148
+-0.22724272,-0.21042243,-0.37894315,-0.43188807,-0.53781605,-0.5686793,-0.6551472,-0.78278166,-0.82002145,-0.82045,-0.86376435,-0.8291484,0.57593024,0.5111536,0.23165797,0.085618615,0.0956185,1.557061,0.9637497,1.1516285,1.0801282,0.667868,0.37472725,0.28267843,0.20475282,0.03175139,0.49287462,0.4558131,0.16762954,0.62216747,0.45324543,0.44398353,0.2850731,0.099418476,-0.020573113,-0.108677626,-0.18522991,-0.2841849,-0.35545164,-0.483378,-0.3008171,-0.18419811,-0.38316625,0.26468673,0.65436643,0.62759197,0.38307548,0.41086167,1.5222752,0.8720953,0.9533496,0.75656855,0.38633892,0.23910625,0.09503868,1.5125122,1.6125467,0.9217533,0.50310147,0.33695868,0.2515378,0.6894591,0.9986627,0.79638803,0.7928394,0.7011878,0.3883201,0.20248057,0.08413643,-0.011658039,-0.09294686,-0.20317629,-0.19761644,-0.1541577,-0.30297852,-0.41287118,-0.5091393,-0.59635544,-0.6777832,-0.7294383,-0.63016665,-0.6368631,-0.7536512,-0.8528925,-0.95236295,-0.980456,-1.0107183,-1.1330383,-0.0013941564,0.43059325,0.013602611,-0.17791022,-0.3180771,-0.43209887,-0.57503116,-0.7166022,-0.8220186,-0.9249227,-1.0182989,-1.124187,-1.231931,-1.3465157,-1.438801,-1.5170507,-1.595835,-1.682056,-1.7571266,-1.8229301,-1.8819735,-1.9294915,-1.967799,-2.0023913,-2.058524,-2.10857,-2.1537528,-2.1417553,-2.0652978,-1.4434415,-0.88293827,-0.9862095,-1.1684716,-1.3156703,-1.4486488,-1.559531,-1.6679958,-1.762682,-1.8474336,-1.9080546,-1.9936109,-2.090105,-2.1476734,-2.2081087,-2.2337642,-2.280467,-1.673703,0.7135703,0.952501,1.0915954,1.3712709,0.9896916,0.65416396,0.5650052,1.5862758,1.2902104,0.7391803,0.3910457,0.21632965,0.10187654,-0.013206121,0.14984424,0.48704195,0.35409272,0.4778694,0.21610598,-0.021534618,-0.15986209,-0.2965983,0.080622435,0.2834682,0.057374027,-0.12281841,-0.26916918,-0.36733615,-0.42167836,-0.5838122,-0.6426914,-0.6421824,-0.66967213,-0.7264858,-0.8109163,-0.89040816,-0.97327983,-1.0395263,-1.0822906,-1.1325688,-1.1586891,-1.0564759,0.135673,0.8110573,0.2393413,-0.013802979,-0.21289273,-0.29941744,-0.41805518,-0.48072153,-0.5771637,-0.64445,-0.7139553,-0.7642743,-0.77495193,-0.8261794,-0.88116014,-0.954589,-1.004248,-1.0578035,-0.53184974,0.9306977,0.46599048,0.19450611,0.064481005,-0.044409763,-0.10119301,-0.13722551,-0.22730115,-0.31929362,-0.37646383,-0.45150495,-0.5305821,-0.61220247,-0.66871953,-0.7353097,-0.7985616,-0.84091794,-0.88856256,-0.890733,-0.81097203,-0.790478,-0.4643865,-0.034727644,0.6397212,0.69459283,0.61533326,0.41479534,0.17968895,-0.0050785653,-0.07654521,-0.18954973,-0.23620926,-0.2955163,-0.37268627,-0.4182664,-0.41298258,-0.4731782,-0.4688594,-0.4375489,-0.49602154,0.021080498,0.29518026,0.12107207,0.067878485,-0.1277792,-0.26225913,-0.20675306,-0.29195017,-0.3703213,-0.38802,1.221652,1.1200678,1.5604417,0.96435994,0.65387845,0.42972973,0.25028998,0.22505955,0.17238815,0.12219952,0.09137131,0.060412686,0.025989946,-0.05418091,-0.1552285,-0.098703,-0.23873658,-0.10428634,-0.2308199,-0.24292853,-0.15219535,-0.048700307,-0.10156371,-0.0778788,-0.022071104,-0.15053724,-0.21055816,-0.3635624,-0.37562814,-0.3314532,0.41208673,0.6086565,0.24814449,0.22476374,0.048055697,0.0019497909,0.2295696,0.29236484,0.031087708,-0.07343905,-0.13587265,-0.13057885,-0.08522084,0.028462816,1.0552571,1.1689813,1.7044103,0.99234796,0.60402447,0.4131088,0.24298231,0.21540742,0.15654607,0.118989736,0.042465266,-0.016766023,-0.09625797,-0.14829706,-0.17794609,-0.2350505,-0.2699443,-0.30339247,-0.31345826,-0.34849098,-0.25452346,-0.24857853,-0.35699335,-0.43208694,-0.48690528,-0.46634194,-0.533378,-0.57096314,-0.56610644,0.55580276,0.36585432,0.14866419,0.07434121,0.008258786,-0.10357909,1.3781178,0.8395874,0.50873303,0.31619886,0.24710862,0.17490417,0.15510577,0.1134461,-0.022719692,-0.028151851,-0.12101559,-0.15377055,-0.0737683,0.80853206,0.60834104,0.30213112,0.2343583,0.258034,0.16693473,0.20246102,0.3163167,0.16145185,0.06793766,-0.009145144,-0.12180446,-0.25271162,-0.3051198,-0.3956464,-0.4765296,-0.5324014,-0.58875865,-0.66535294,-0.40404642,0.16591653,-0.17359565,-0.08489403,-0.080203146,0.41190732,0.47377163,0.1289272
+-1.1402829,-1.3698198,-1.535373,-1.6002606,-1.6937524,-1.7431074,-1.8168993,-1.9381659,-2.0306578,-2.0854144,-2.1275363,-1.6120209,0.04084899,-0.33481392,-0.61519265,-0.7183388,-0.752529,0.4155404,0.38972965,0.17166995,0.28274897,0.04395761,-0.32146478,-0.17601179,-0.12893648,-0.5255267,-0.4679575,-0.5877767,-0.62866956,-0.47771358,-0.67731214,-0.5300247,-0.5605345,-0.80021715,-0.94242114,-1.0615568,-1.156424,-1.2468975,-1.1201301,-1.1335573,-1.1740088,-1.2541907,-1.3817625,-1.4093386,-0.7439946,0.32879,-0.18905883,0.37759227,0.69365275,0.21554695,-0.028204244,-0.10527529,-0.37563878,-0.5972414,-0.7636225,-0.83587956,-0.45695627,0.24327438,-0.30590177,-0.39483938,-0.43286335,0.18891712,0.34303182,0.4214049,0.44794065,0.07101174,-0.26847187,-0.20125398,-0.1935993,0.04647054,-0.20306475,-0.49624145,-0.14280517,-0.11444114,-0.54384965,-0.7090173,-0.8439952,-0.9653474,-1.0778663,-0.6185694,-0.07935272,-0.50744975,-0.6545093,-0.79940665,-0.9665392,-0.90816987,-0.8273236,-0.972674,-0.44781756,-0.082741365,-0.16013053,-0.46803316,-0.7485003,-0.9230182,-1.0638223,-1.1627376,-1.2409015,-1.3233935,-1.4284109,-1.5474386,-1.6656328,-1.800045,-1.8816543,-1.9599773,-2.040279,-2.141643,-2.218647,-2.2743611,-2.1471026,-1.6864147,-1.1945412,-1.099217,-1.4255149,-1.6244425,-1.7836032,-1.6087317,0.027549494,-0.2544197,-0.60921645,-0.78265506,-0.9557929,-1.0535475,-1.2002556,-1.3415847,-1.4776363,-1.621091,-1.641619,-1.623204,-1.8207018,-1.9205222,-2.0012631,-2.069509,-2.143096,-2.2385538,-1.4499687,0.4945261,0.57019496,0.25072202,0.20645161,0.26595882,0.033677716,-0.2981058,0.025423575,0.19516502,-0.24699752,-0.5206843,-0.6422781,-0.67817146,-0.74058354,-0.732389,-0.50117046,-0.38017228,0.017659206,-0.24346603,-0.54194754,-0.20959972,0.14886253,0.10946809,-0.207047,-0.4182304,-0.59625703,-0.67347574,-0.67210406,-0.74779755,-0.8993681,-0.97757906,-0.6785521,-0.44800633,-0.67648494,-0.7886517,-0.90631104,-1.0232792,-1.0904365,-1.0290014,-0.9630733,-0.5771569,-0.48341188,-0.59628075,-0.688141,-0.8222409,-0.9345726,-1.0774273,-1.1586924,-1.2260311,-1.3165272,-1.3951883,-1.4315532,-1.4679573,-1.093189,-0.60381275,-0.914698,-1.0837226,-1.1509798,-1.2392817,-1.3296922,-1.2894797,-1.0293295,-1.1348393,-1.2372541,-1.2925309,-1.3438911,-1.3573949,-1.3869197,-1.4258274,-1.4578221,-1.5145777,-1.5699286,-1.6099191,-1.6669307,-1.7055268,-1.7400551,-1.7698948,-1.8118446,-1.837491,-1.3918288,-0.71979713,-0.91644764,-0.3336435,-0.2806441,-0.11952217,0.19807826,0.061557192,-0.087582394,-0.3488878,-0.5265424,-0.60865486,-0.6854285,-0.74141395,-0.8544152,-0.92924094,-0.9830879,-0.5227938,-0.2557842,-0.5316308,-0.5503398,-0.69924116,-0.6503912,-0.5997263,-0.7178479,-0.7226131,-0.8025376,-0.95363677,-0.96856517,-1.0282362,-1.0385573,-1.0575222,-0.21999647,0.9976852,0.6746871,0.07565831,-0.24144371,-0.34562522,-0.5019292,-0.51319444,-0.63306683,-0.7024786,-0.73823303,-0.7319164,-0.7238556,-0.7801146,-0.93280274,-0.7519522,-0.8598132,-0.8400263,-0.9882083,-1.0385287,-1.0060647,-0.9894384,-1.0052801,-1.0128587,-0.9236911,-1.0201734,-1.0491807,-1.1307684,-0.86321735,-0.7132294,-0.8056553,-0.85740405,-0.93302315,-0.90301406,-0.92226297,-0.84069884,-0.61477923,-0.70460695,-0.952387,-1.0262877,-1.0532337,-1.0235939,-1.0348085,-1.0166277,-0.48666638,-0.054962765,0.92771614,0.610279,0.5680195,0.4351653,-0.027274024,-0.25535318,-0.4449264,-0.5110542,-0.6303723,-0.68915933,-0.6994747,-0.7690645,-0.8119995,-0.8823819,-0.94731367,-0.9919953,-0.99112636,-0.9653395,-0.95969534,-0.9981224,-1.0835959,-1.1447886,-1.1830268,-1.17485,-1.269543,-1.2995902,-1.3340089,0.16268094,-0.10060297,-0.37160707,-0.32927626,-0.39006922,-0.6362263,0.39307222,0.087271705,-0.26748216,-0.4889922,-0.55030054,-0.6457951,-0.66913,-0.7963832,-0.91009736,-0.9222311,-1.0337524,-1.0327349,-1.0087876,0.25030938,0.04587196,0.27706808,0.052058656,-0.27804175,-0.38477564,0.096181855,0.23956819,-0.10690929,-0.35038123,-0.45989805,-0.60194904,-0.7682935,-0.8075019,-0.87759805,-0.94673234,-1.0105388,-1.0582192,-1.1346753,-1.0462258,-0.62361646,-0.8503567,-0.9967621,-1.1025586,-0.3959772,-0.0013592057,-0.46020183
+-0.6868024,-1.2379615,-1.4076653,-1.352779,-1.3579655,-1.2478988,-1.4200101,-1.4163618,-1.193105,-1.087608,-1.2378633,-1.2672223,-1.2605119,-1.6004369,-1.675195,-1.6762761,-1.6416485,-1.6714352,-1.4462472,-1.1896491,-1.3148925,-1.4194069,-1.3684294,-0.1259555,0.5194273,-0.1481388,-0.59111315,-0.8141935,-0.9630354,-1.0687941,-1.2398345,-1.3187526,-1.377388,-1.452661,-1.4660002,-1.4961725,-1.5365632,-1.5609885,-1.5304965,-1.2525438,-0.7822293,-0.97106993,-1.1476047,-1.1924298,-1.3458043,-1.3981827,-1.4770997,-1.5396643,-1.5520835,-1.5748541,-1.5872519,-1.5786606,-1.5479743,-1.2867033,-1.0359726,-1.0059079,-1.0547605,-1.0418459,-1.0809083,-1.2639878,-0.6319656,-0.6465593,-0.826847,-0.78989446,-0.65546644,-0.91538644,-0.95046306,-1.0942404,-1.1970308,-1.2392116,-1.2780926,-1.3286381,-1.3116732,-1.2425423,-0.99219036,-0.6651203,-0.8922796,-0.31093213,-0.46717378,-0.78238004,-0.89009356,-1.0413318,-1.124125,-1.1830207,-1.2666395,-1.2716632,-1.3443623,-1.3735754,-1.3737314,-1.4283651,-1.3306121,-1.3955188,-1.4266015,-1.421453,-1.4708912,-1.3532691,-1.0858546,-1.0541042,-0.8027912,-1.016434,-0.10732046,0.61612475,0.395234,-0.28547066,-0.0870945,-0.31598526,-0.6119466,0.12694788,-0.33301955,-0.6112776,-0.7503844,-0.18695559,-0.5615356,-0.43415108,0.15573126,-0.48776695,-0.6281169,-0.25660905,-0.50745964,-0.7129716,-0.9056756,-1.0083072,-1.0907556,-1.1324621,-1.2071707,-0.75433636,-0.82999754,-0.97573924,-1.0728105,-1.1462953,-1.2076633,0.0850061,0.29224917,-0.29435688,-0.6131698,-0.8032881,-0.90199304,-0.96082556,-1.1143644,-0.91100186,-0.9273226,-0.84723574,-0.9947625,-1.1028872,-1.1647003,-1.2385755,-1.2850223,-1.3014109,-1.3076661,-1.3597558,-0.35698465,-0.4426925,-0.791022,-0.945925,-1.0730016,-1.1464398,-1.1976836,-0.6179771,-0.33448273,-0.58788645,-0.024514157,-0.5036234,-0.7470215,-0.9050055,-1.008042,-1.0779032,-1.1570747,-1.0408595,-0.9431514,-1.0715914,-1.1719518,-1.2440553,-1.2576725,-1.243139,-1.2750249,-1.2100439,-1.2467229,-1.0506849,-0.94862187,-1.1374524,-1.1430881,-1.1923894,-1.2920921,-1.3493248,-1.3668048,-1.3935001,-1.2560742,-0.35718492,-0.617595,-0.57554823,-0.79512763,-0.9442813,-1.0533147,-1.0814728,-1.1583606,-1.2260923,-1.262778,-1.2674031,-1.3024771,-1.3352493,-1.3464067,-1.1104292,-1.1465259,-1.1547762,-1.2032322,-1.2518549,-1.2624909,-1.243035,-0.6802561,-0.5079061,-0.77519816,-0.8543439,-0.91591555,-0.9414855,-0.986618,-1.0453653,-1.0931195,-1.1397985,-1.1774638,-1.196679,-1.224417,-1.2927217,-1.2738167,-1.2935417,-1.2809315,-1.1402674,-1.166481,-1.2260076,-1.1985509,-1.2292216,-1.2367603,-0.2619192,-0.31117508,-0.23725216,0.121410415,0.40985993,0.5623053,0.5111331,0.54978526,0.68242145,0.81499296,1.0918868,0.82973105,0.42924887,0.27780777,0.45089865,0.88224334,1.1091851,1.3334578,1.5958011,1.8640311,1.9977694,2.0734406,2.111363,2.0576077,2.1059353,2.1262448,2.1530137,2.2078059,2.1345205,2.205055,2.2234569,2.1364164,2.0799782,2.0605004,2.0640497,2.038343,2.0607836,1.9368949,2.171766,2.2242188,2.1747265,2.1769464,2.1673574,2.1671715,2.1493337,2.0714016,2.1128414,2.2519076,2.2067692,2.1967437,2.22948,2.2720408,2.195825,2.1050537,2.231915,2.2779312,2.3140843,2.2455578,2.2159185,2.175919,2.1889138,2.203767,2.1933067,2.2013586,2.200858,2.2121525,2.2649937,2.2893481,2.3031406,2.3012886,2.3295794,2.3240213,2.3098834,2.210137,2.1898246,2.3121724,2.3954856,2.370964,2.2596703,2.264802,2.2364419,2.2223983,2.364709,2.3679602,2.2432961,2.189986,2.1900663,2.2140718,2.245785,2.2598119,2.200663,2.1359131,2.12666,2.1945417,2.3698936,2.3583884,2.0604086,1.9929767,2.2190566,2.3009682,2.2814898,2.2373824,2.2091537,2.3050766,2.365067,2.2984695,2.0991426,2.0976534,2.2050767,2.1988137,2.170978,2.3041754,2.544488,2.3565092,2.2227688,2.24407,2.2120092,2.1545339,2.0057592,2.1109998,2.2427988,2.1207113,1.2388277,0.6948812,0.960886,0.74449503,0.15920316,-0.37817153,-0.7752137,-0.86491764,-0.95703673,-0.9922669,-1.0916111,-1.1398573
+0.7994659,0.8723779,0.8066797,0.7346203,0.67730665,0.6970864,0.94743717,0.9986397,1.0481707,0.9825127,0.7044277,0.63296247,0.50403315,0.3295805,0.18156554,0.15605505,0.08422549,0.0488617,0.33574775,0.28062725,0.88122135,1.1144892,0.74341404,0.6004771,1.7177486,1.8751734,1.8233023,2.2839174,1.8329835,1.4156055,1.199099,0.97227025,0.78053355,0.62449676,0.44141817,0.34876466,0.20652461,0.0058710016,0.06530093,1.7112443,2.0569632,1.8030226,1.5409923,1.3138045,0.9912952,0.8020082,0.635395,0.47364384,0.30596107,0.17186181,0.07020752,-0.08744402,0.09066452,1.1669089,1.1115597,1.1698507,0.79165745,1.614239,1.6390753,1.0708675,1.4598391,1.393601,1.0276608,0.88257694,1.3811584,1.1131301,0.8492732,0.7428828,0.55150455,0.68199015,0.7028095,0.5040306,0.3137348,0.85460484,1.6812984,1.7210857,1.2100694,2.0634992,2.2853036,1.845985,1.8969288,1.5599885,1.2321358,1.1312314,0.94564587,0.8931807,0.92696106,0.6961937,0.60760945,0.48005927,0.5410888,0.6427904,0.44479614,0.3432825,0.2552789,1.1770813,2.0920644,1.806962,1.6954126,1.3347752,2.002713,2.0854557,1.87567,1.390765,1.1554537,1.0896019,0.904068,2.137997,1.8991294,1.4591898,1.2952678,1.1453006,0.97369194,1.4742045,1.8512609,1.3671409,1.1411319,0.9902859,0.88856155,0.7743449,0.6415333,0.5469554,0.4690115,0.40774325,0.2798767,0.8756304,1.2319115,0.829458,0.67008924,0.53674674,0.42925593,0.5499018,2.360445,2.2643473,1.7934161,1.3852987,1.151718,1.2523323,1.1401267,1.1271069,1.9593917,2.1725945,1.6107941,1.2821666,1.0708542,1.4491062,1.2976422,1.0366105,1.3410323,1.6769946,1.3940794,1.4795375,1.2847841,1.0143166,0.883161,0.7269791,0.65787923,1.6878914,2.125905,1.9277153,1.525572,1.522526,1.4082074,1.1115243,0.9542217,0.8728263,0.7209861,1.29728,1.6842431,1.342446,1.0792453,0.9454354,0.7970166,0.74742657,0.8577708,1.2452958,1.7133814,2.0610175,1.6272129,1.2337885,1.157486,1.0187302,0.85935044,0.799455,0.71420825,0.6107505,0.5795465,1.7078707,1.6132997,2.115182,1.6415849,1.3710504,1.1231462,1.0163417,0.94121665,0.7612709,0.6792421,0.6393908,0.4766602,0.45934886,0.45286486,0.3552665,0.2985254,0.27554646,0.24898224,0.21932061,0.19787896,0.2291996,1.4025333,1.4816954,1.1551715,1.1038389,0.9959154,0.9295358,0.82196575,0.76686317,0.669142,0.5885895,0.51606095,0.46433222,0.44252497,0.34151253,0.33842447,0.30773598,0.27543086,0.34884453,0.3524076,0.33789408,0.3427356,0.31920046,0.31579146,1.1402367,1.0871049,1.187057,1.4624767,1.7851064,2.119115,2.1429038,2.2930853,2.389508,2.520552,2.7718315,2.4872332,2.3168244,2.107737,2.006344,2.2178965,2.4076424,2.5043185,2.6030827,2.6943965,2.664114,2.616488,2.6178324,2.668941,2.753241,2.8172414,2.8150396,2.861537,2.8855243,2.8930917,3.0019212,2.9664,2.8637314,2.8594089,2.894545,2.888565,2.955666,2.9462545,3.1244228,3.110263,3.1099386,3.1089118,3.1512837,3.1678388,3.1946926,3.2327824,3.2621045,3.2872205,3.2989964,3.3269186,3.3339179,3.4252915,3.3784456,3.384139,3.4326062,3.4065757,3.4617455,3.4298325,3.3884673,3.361889,3.399737,3.3879964,3.4317985,3.5480223,3.638233,3.7106316,3.724102,3.6890898,3.6539483,3.6217275,3.5760462,3.5147274,3.4876285,3.4452214,3.5173569,3.633584,3.5417335,3.4540868,3.4398694,3.4286547,3.5008836,3.4645019,3.483584,3.4409018,3.4572735,3.5939007,3.716711,3.8162875,3.840237,3.855688,3.861005,4.0045514,4.1126842,4.0342283,3.2734919,1.9987693,1.2020171,0.92241186,0.821543,0.9568357,1.1693168,1.2917242,1.3823023,1.4953845,1.5895803,1.7070727,1.7093761,1.7447665,1.4606705,1.3212819,0.98933387,1.0143497,1.4988356,1.6392331,1.7712165,1.922265,2.0083013,2.0694485,2.1147995,2.225055,2.3751888,2.3176374,2.1890354,1.8742191,1.8292162,1.8103004,1.462317,1.1273553,0.9612271,0.8604145,0.6778641,0.57092,0.73925185,0.66515976
+1.2990248,1.0634536,0.6064758,0.05120041,0.14597426,0.17365147,0.011401746,-0.12592109,-0.023527686,-0.006584484,-0.16024391,-0.19003934,-0.25022763,-0.45989352,-0.608554,-0.6460494,-0.69067395,-0.44113266,0.7382768,0.9655483,0.8341607,0.43506706,0.18257682,0.18050916,1.4157578,0.63965034,1.3498209,1.3736161,0.9257585,1.2928616,1.066931,0.692919,0.44395614,0.20758574,0.05095995,-0.0674009,-0.004171852,-0.015398771,0.53720903,1.2573595,1.0663313,0.7528261,0.55888486,0.41085666,0.19864084,0.027494323,-0.10403238,-0.19286941,-0.30914065,-0.37310982,-0.44964075,-0.5330816,-0.42440057,0.47528195,0.26105356,0.71453935,0.42334247,1.1224464,1.2121997,0.7789742,1.1578622,0.72078884,0.41089714,0.3043157,0.38018,0.19233906,0.021516629,-0.06523822,-0.18249254,-0.2637869,-0.36364794,0.70686936,0.33571354,0.09868649,1.3300254,0.90239626,0.5399585,0.36773863,0.6818522,0.40774634,0.16555731,0.049549434,0.7324219,0.49329162,0.21986203,0.043306287,-0.0681722,-0.1675749,-0.1980261,-0.12681928,-0.01248597,-0.06709927,-0.21823944,-0.28932485,-0.35785708,-0.46979123,-0.48268685,0.7310606,0.4668519,0.17002536,0.7939602,0.5282846,0.803419,0.605029,0.35063627,0.20146812,0.062001456,0.9274882,0.5240273,0.77567255,0.7480956,0.4362332,0.3121221,0.4284371,0.41792673,0.23323302,0.079585835,-0.034537688,-0.077540345,-0.11518736,-0.19151397,-0.26311517,-0.18479352,-0.031740587,-0.15822424,-0.23823477,-0.27079985,-0.34476835,-0.40884635,-0.4583273,-0.53226143,-0.6078771,0.37539938,1.0357826,0.47641408,0.2561794,0.12618424,0.05507874,-0.061499473,-0.17482665,-0.2538409,-0.1013044,-0.21626784,-0.38711852,0.004496973,0.53647983,0.16865852,-0.011276223,0.14791918,-0.022647068,-0.16192238,-0.20590977,-0.26624674,-0.38341326,-0.48289585,-0.6300435,-0.7015827,0.69946945,0.884456,1.2781563,0.6133622,1.0248352,0.7548075,0.4340849,0.26067963,0.22029983,0.14359467,1.3570011,1.4735494,0.75256956,0.46818948,0.34276533,0.21819024,0.117538705,0.072634354,0.64611834,0.6481956,0.8990903,0.6044104,0.92553234,0.646077,0.4385646,0.31773043,0.27728277,0.17728145,0.04547034,0.13539481,1.5479271,0.84052026,1.1841818,0.63516617,0.4485568,0.27417,0.13370892,0.093718484,-0.044456303,-0.11763321,-0.17038363,-0.1902578,-0.21117504,-0.22170375,-0.27497053,-0.34630737,-0.38978302,-0.4090038,-0.4210581,-0.41663322,-0.42409915,0.71684223,0.6027367,0.26463425,0.19851886,0.1734304,0.04824317,0.025017064,-0.03129838,-0.129191,-0.20817743,-0.26986042,-0.33539823,-0.3663009,-0.3856181,-0.37963507,-0.40282768,-0.37307373,-0.34591043,-0.32030278,-0.32689542,-0.35086203,-0.37599182,-0.34297317,0.05943348,0.038831044,0.12654544,0.36370134,0.9689667,1.3892703,1.3412572,1.4745271,1.5811479,1.830008,2.1027863,1.1244674,0.79720813,0.63260186,0.61120677,0.7122069,0.9789498,1.1134343,1.2670679,1.5820758,1.8037618,1.9753809,2.1809824,2.4140189,2.6337435,2.8355436,3.03791,3.261053,3.4163237,3.6175785,3.6673985,3.7535124,3.8085146,3.8138115,3.8632345,3.9272666,3.9697957,4.044323,4.236085,4.178773,4.118761,4.0828285,4.1377044,4.1369286,4.143603,4.1357527,4.197504,4.1830835,4.1411333,4.162635,4.163312,4.1696978,4.1595697,4.1778526,4.217743,4.207882,4.2038603,4.174528,4.1534033,4.1827536,4.248398,4.2121277,4.1669917,4.243911,4.305146,4.3012676,4.302582,4.258962,4.3345327,4.3030257,4.2641563,4.219881,4.2176228,4.2023087,4.1697626,4.250532,4.2347655,4.2066727,4.2154922,4.215932,4.1975613,4.2239027,4.2831993,4.2260523,4.2238584,4.224544,4.3380966,4.2900343,4.2777095,4.308222,4.27731,4.3249826,4.270304,3.5731664,2.240044,1.3542016,0.7321087,0.42846975,1.172796,1.4600724,1.9787505,2.4380229,2.8171034,3.214311,3.5221622,3.778429,3.911571,4.0942173,3.6061902,2.0629344,1.1125766,0.71563995,1.0318847,1.4054992,2.172185,2.5458188,2.8918319,3.1602185,3.4095602,3.6078753,3.834889,3.8316302,2.8362303,1.8563023,1.6927601,1.82172,1.637679,1.0377753,0.8614578,0.6363335,0.37101567,0.5893868,0.93907785,0.64539695
+1.6228838,1.7271489,1.6745614,1.4981645,1.5026975,1.4068241,1.3329644,1.2012109,1.0771985,1.0320538,0.92530984,0.82502764,0.7887915,0.7130293,0.6883031,0.6835164,0.6864872,1.6040237,1.9472963,2.5483785,2.498825,2.1092894,1.9242375,1.8000765,2.0292842,1.8739676,2.3660026,2.7066045,2.309111,2.9732807,2.6941047,2.4073305,2.1250196,2.016945,1.8983264,1.778517,1.7090175,1.6328137,2.2759051,3.0526319,2.7795296,2.3959842,2.143229,2.104151,1.9095682,1.8989218,1.8014554,1.6860435,1.6414876,1.5862069,1.4604423,1.3522251,1.8376632,2.5947833,2.317635,2.671953,2.6480517,2.4300902,2.2113905,2.0679731,2.3028564,2.220326,2.0175223,1.893414,1.8776854,1.78408,1.6888604,1.677609,1.5920141,1.5054524,1.3830304,1.3086804,1.2225945,1.7482687,2.225158,1.9348392,1.7458725,1.590374,1.4652467,1.4013954,1.4811184,1.4908102,1.4468186,1.4574893,1.393333,1.3044052,1.2717245,1.2447003,1.2368084,1.3509634,1.990735,1.6999435,2.0180376,2.184805,1.9223702,1.7634127,1.8620206,2.2942195,2.0242329,1.8319314,1.6955237,1.4753172,2.4234061,2.1505504,1.9116452,1.8635175,1.7719202,1.8766328,2.4193242,2.4096582,2.3239884,2.031925,1.9137276,1.7712468,1.692281,1.6121252,1.5339521,1.6513945,1.7351259,1.654908,1.613725,1.5250803,2.363285,2.7190669,2.2244544,2.0717912,1.9992113,1.8623452,1.8154467,1.7292359,1.6106098,1.4962425,1.6935525,2.6467645,2.264052,2.0234609,1.9155382,1.842689,1.781881,1.6386554,1.9587991,2.4680703,2.0006528,1.8248596,1.6400989,1.827383,1.8120682,1.7545044,1.8671906,1.6748474,1.8683997,1.9663043,1.7998307,1.6994779,1.6302634,1.5060205,1.6053877,1.596151,1.3540803,1.7993549,1.9724059,2.575722,2.539153,2.1109736,1.9658086,2.3504062,2.3547795,2.1157308,3.0725546,2.561679,2.2380319,2.1405456,2.0211954,1.9487973,1.8539516,1.7904606,2.0354342,2.6855757,2.2512922,2.0640163,2.004012,1.9191085,1.8065369,1.8431191,1.795256,1.6427491,1.928592,2.709425,2.572688,2.6205726,2.2854798,2.101579,2.1162698,1.9629029,1.924289,1.8672765,1.7581928,1.6711328,1.6028488,1.5827198,1.5638473,1.5056554,1.4420367,1.4176867,1.3712547,1.328139,1.3013637,1.296066,1.2565176,1.251225,1.2295406,1.1918933,1.1925788,1.1964989,1.1236295,1.063067,1.0751061,1.0515848,1.0630857,1.0399717,1.0713689,1.0060098,1.0220537,1.0483656,0.96826375,1.0876904,1.1380043,1.1028075,1.080907,1.0596912,1.0959496,1.1692712,1.1391643,1.1649039,1.2287321,1.8484994,2.4552877,2.1518402,2.1701021,2.112731,2.0800471,2.208068,2.0564182,1.9480916,1.844038,1.8207662,1.7368748,2.0538323,2.1283693,2.1244297,2.1187596,2.2702236,2.3994644,2.4955006,2.5716648,2.6193447,2.679915,2.7478237,2.7839909,2.8988144,2.9159284,2.9984665,3.0912628,3.1087408,3.1249037,3.1580873,3.3640752,3.4622035,3.5010266,3.932602,3.8679795,3.8713531,3.939552,3.9200592,3.9965506,4.0249076,4.138709,4.224841,4.215027,4.1926956,4.206762,4.222945,4.2512884,4.233356,4.313754,4.3565288,4.3884697,4.3933907,4.3618035,4.3251686,4.501486,4.598028,4.4925227,4.5604386,4.7462425,4.6894946,4.7006383,4.6085835,4.4397626,4.489847,4.3913975,4.3412666,4.365744,4.393731,4.3931136,4.4246984,4.4406157,4.3385806,4.319612,4.26276,4.36728,4.359606,4.510538,4.4307,4.403023,4.3559217,4.557906,4.509509,4.365439,4.3821793,4.3733397,4.268793,3.8009605,2.9481602,2.3863347,2.1575377,2.2657866,2.0800858,2.0016308,2.3773284,2.4115062,2.5459948,2.591654,2.620032,2.365827,2.133092,2.2916086,2.2871501,1.949004,1.8978834,1.7162608,1.3809218,1.2272236,1.2105091,1.373426,1.500214,1.6641498,1.9605103,2.1853065,2.1508641,1.8410585,1.4505714,1.2062509,1.1353467,1.076695,1.2546346,1.2958918,1.452621,2.5505445,2.2306356,1.9993131,1.8304524,2.681501,2.5384614,2.268823
+0.768744,0.9048136,0.9979217,0.983287,1.0654286,1.3458668,1.2801111,1.2547541,1.153479,1.0958564,0.9734528,0.84857625,0.766051,0.7108217,0.6956345,0.6484535,0.6176397,1.5365491,1.8788427,2.459978,2.227807,1.9585998,1.769266,1.5992743,1.8700898,2.3751469,3.3280978,2.6484742,2.2993336,2.7731628,2.5109098,2.3362257,2.0216215,1.9340568,1.8436239,1.7232311,1.6447841,1.5472648,1.7771788,2.542955,2.554103,2.1878219,2.331441,2.2765038,1.9604567,2.3254325,2.375682,2.0307152,1.9204452,1.9155147,1.7821605,1.617744,1.6128118,1.7827326,1.7440137,2.1276093,2.761791,2.6264029,2.2288446,2.0694432,2.032168,1.886753,1.7428405,1.6407856,1.7738992,1.6314015,1.5229797,1.50843,1.4066156,1.3125228,1.2005603,1.1126536,1.0152807,0.94248587,0.8614163,0.79802215,0.64546466,0.47746837,0.3511641,0.31855142,0.35478014,1.7304666,1.6596639,1.4797049,1.3760505,1.3540274,2.2262878,1.8960763,1.711604,1.6536939,1.6080084,1.5094953,1.8333378,2.567291,2.1799395,1.8628378,1.7168988,2.1868248,1.9256902,1.6972517,1.5578969,1.2993889,2.1413388,2.1979594,1.9153628,1.7453089,1.6569309,1.5198481,1.9221611,1.9128711,1.6343919,1.4685891,1.3236468,1.1750802,1.1006651,1.0643272,0.9516174,0.8258324,0.7493605,0.71163684,0.645696,0.55611855,0.66782695,0.71271896,0.48196608,0.25320703,0.6815543,0.825321,0.7738686,0.80894387,0.6620222,0.4438716,0.24472211,1.4375306,1.7131937,1.3599176,1.2816141,1.201615,1.070392,0.8931755,0.78136456,1.3394302,1.1355369,1.0246228,0.8636983,1.6765547,1.9101146,1.7724154,1.8016939,1.5253444,1.5073001,1.6281812,1.5370059,1.3846759,1.3406405,1.2651285,1.1190686,0.94494414,0.74066144,0.71218675,1.0400621,0.9386468,1.1886591,1.0502018,0.98256385,1.6256807,2.4606113,1.8372885,1.7262373,1.6001863,1.4839635,1.3714007,1.225504,1.1115052,1.0149506,0.90103275,1.0933295,2.2513885,1.8784039,1.6428168,1.5442034,1.5055933,1.4159509,1.356613,1.3373647,1.1986873,1.2186753,2.0587914,2.059167,2.0043912,1.7283318,1.5788262,1.7236154,1.9498857,1.8173776,1.6945568,1.6480118,1.5016732,1.4057393,1.3198262,1.2255118,1.1575834,1.1218551,1.0717413,1.041963,0.9818636,0.92477405,0.90786844,1.2279645,1.4306183,1.3320168,1.2528073,1.1763396,1.1761235,1.0649102,1.0330884,0.985546,0.91900307,0.9202621,0.8860506,0.9310743,0.8533961,0.8438001,0.8988256,0.8057985,0.89299893,0.9684682,0.9005252,0.8388208,0.8000817,0.83822656,0.8688408,0.864817,0.9393047,0.98309636,1.1291467,1.8448637,1.7394592,1.7095543,1.6854727,1.6657693,1.7358255,1.6410544,1.5573068,1.424082,1.4205623,1.4383602,2.0237875,2.0654244,1.994529,1.9203715,2.0125132,2.2243361,2.3558085,2.3972268,2.3851175,2.4507825,2.4929657,2.528847,2.6253948,2.5883121,2.660869,2.734943,2.7361436,2.7377224,2.7332675,2.837199,2.8425639,2.8691046,2.9973726,2.9340281,2.897077,2.9057565,2.8549337,2.8760042,2.8587582,2.906168,3.067499,2.9973292,3.0406954,3.0690403,3.1065266,3.1694553,3.245054,3.3305597,3.4708858,3.6092594,3.5663514,3.6109984,3.570027,3.9950128,4.1844997,4.1893926,4.447073,4.5123615,3.8756285,3.0151372,2.8031874,2.7594366,2.7743583,2.591167,2.4861596,2.5920112,2.6572156,2.6609476,2.6524944,2.5760796,2.4263415,2.4392066,2.4857745,2.582775,2.6118197,2.5584753,2.4303005,2.4934587,2.432729,2.2806704,1.8979716,1.6611656,1.6365136,1.5215361,1.4069701,1.2753766,1.1646016,1.0858313,1.3276775,1.4377742,1.3685982,1.3487022,1.3559587,1.298516,1.295737,1.3021319,1.3332515,1.176625,1.0603561,1.0075018,0.97469056,0.9874052,0.9370744,1.126814,1.0282183,0.9685693,0.90339655,0.7383772,0.7556416,0.8382462,0.8541956,0.8748123,0.8744013,0.8326278,0.729134,0.6212814,0.654365,0.60502183,0.59723425,0.52705044,1.036293,2.5949206,2.1624439,2.0335817,1.8688372,2.4718082,2.7932277,2.2679524
+0.14288706,0.13476995,0.15209498,0.14354344,0.11682166,0.2557039,0.25163284,0.18299805,0.14586066,0.22321491,0.24500082,0.12913577,0.13722555,0.12043722,0.108015776,0.06603159,0.021640766,0.7897744,1.1101133,1.3302104,0.9719492,0.82520264,0.6523018,0.5120779,0.75561965,1.0055609,2.192143,1.4308289,1.3383296,1.4038177,1.1669877,1.0962472,0.94141066,0.8209814,0.70640326,0.6016425,0.5432636,0.9663998,1.4283903,1.2391675,1.6937814,1.2603449,1.1543977,1.058529,0.88740706,1.3270493,1.5455377,1.208497,1.0290848,1.0180502,0.93139577,0.83423865,1.0706685,1.3927732,1.4001034,1.5996001,2.4127154,1.827744,1.4313309,1.2106228,1.0670612,0.9576956,0.8072442,0.67800725,0.9562736,0.8548713,0.65110004,0.57303035,0.46717173,0.40683126,0.35306484,0.28224322,0.19087957,0.38409296,0.55283576,0.39760214,0.76064503,0.7141754,0.47997874,0.3666936,0.27781978,0.1904748,0.08344291,0.030396786,-0.06277825,-0.11463535,0.4593283,0.6075825,0.34405237,0.56786454,0.7560687,0.456075,1.5747141,2.0261374,1.4087715,1.1067526,1.0190909,1.588561,1.337061,1.0994325,1.1547611,0.9777372,1.3358816,1.5024945,1.2080324,0.94483614,0.81466955,0.6476164,0.5210594,0.4146795,0.3244437,0.22244142,0.10049413,-0.038506694,-0.16447999,0.3899516,0.4408446,0.1821171,0.06447379,0.40740198,0.4925512,0.38783032,0.27162418,0.085062966,-0.08446544,-0.2476647,-0.36446735,-0.3736476,0.14515424,0.5026806,0.2230886,0.014735173,-0.13289054,0.5361743,0.4860834,0.20699814,0.0677194,-0.05903018,-0.18801558,-0.3176397,-0.4083929,0.8069348,0.51484525,0.24856894,0.12958755,0.1258703,1.5438758,0.97120047,1.0871925,0.9380349,0.7759807,1.1115807,1.3420643,1.0440094,0.8186786,0.6985179,0.54294074,0.40648276,0.26778543,0.15962374,0.78706414,1.4968259,1.9839354,1.089375,0.89489746,0.8442081,1.4332144,1.0055048,1.2522209,1.1382546,0.8486903,0.73032796,0.6124258,0.49305904,0.38484037,0.2687316,0.19935504,0.9711647,0.9894831,0.66860604,0.5387285,0.4805796,0.39339763,0.3094458,0.23070146,0.11546217,0.03796852,0.59085345,0.90010846,1.1077551,0.69327545,0.52056324,0.4618927,0.36539876,0.5036195,0.59361666,0.41984588,0.29652694,0.2174897,0.115661964,0.043433722,-0.019098122,0.0016855262,-0.062750086,-0.112341166,-0.1560572,-0.2125147,-0.25945985,-0.09843594,0.12781198,-0.04161343,-0.12894726,-0.17438902,-0.23235314,-0.29271013,-0.33394986,0.16187184,0.30315343,0.08867571,-0.009285882,-0.051475473,0.07138528,-0.0028584674,-0.05058482,-0.11892995,-0.11369912,-0.09709103,-0.13475749,-0.19760722,-0.24600331,-0.28945583,-0.34094492,-0.28756055,-0.21954912,-0.17287506,-0.16345255,-0.07759924,-0.10868396,-0.11901738,-0.05204582,-0.029793572,0.08349988,-0.03129464,-0.13233088,-0.15472129,-0.116380945,-0.113858685,0.6423434,0.7456858,0.62808394,0.5418295,0.6947435,1.0053148,1.1700933,1.2139685,1.1472596,1.2362392,1.3489985,1.4415283,1.520968,1.550749,1.5974551,1.6138227,1.6623847,1.7380252,1.8396161,1.9003718,1.9355572,1.8441044,1.4780955,1.1517693,1.2038544,1.1494106,1.1356167,1.2089634,1.2016691,1.2135456,1.0377873,0.90994525,1.3857993,1.6842453,1.8452113,1.9485512,2.018879,2.1584902,1.8895782,1.6675572,1.6385397,1.709687,1.733845,2.3311174,1.8276721,1.4828476,1.2892375,1.1454835,1.0210506,0.9721732,0.89042103,0.8828092,0.83788955,0.6966585,0.7477015,0.87009835,0.89792097,0.82350093,0.74353397,0.65218204,0.59276724,0.7114164,0.86272943,1.0402808,0.9310438,0.77886844,0.6105536,0.6919744,0.83220834,0.71269447,0.65162635,0.50658876,0.5062297,0.4853753,0.49488682,0.44934374,0.41634274,0.39526656,0.3676046,0.33982432,0.311409,0.25340495,0.26543903,0.27945453,0.36707017,0.36199582,0.3209824,0.23700939,0.18942739,0.18727922,0.17944822,0.118289575,0.08290899,0.56723964,0.65477616,0.5056789,0.4625054,0.32027003,0.3660428,0.40153113,0.3742602,0.49775523,0.51059115,0.3833366,0.28920335,0.21535574,0.1783355,0.18900304,0.039196674,0.015569452,-0.06905384,0.36486515,0.43028432,1.0119736,1.0943763,1.8507451,1.6389437,1.3240117
+-0.025234688,0.010035116,0.25863478,0.4748112,0.52493745,0.6220601,0.54073924,0.41911793,0.3374951,0.2554775,1.8136775,1.6908615,1.3270303,1.1446651,1.0348566,0.91937137,1.0975955,1.9371746,1.9581856,2.0610118,1.7828144,1.5223421,1.3474991,1.2185488,1.0975235,1.0010738,1.9928293,1.6992413,1.6750736,2.0978746,1.7605921,1.6928486,1.4576542,1.3156707,1.208113,1.1138389,1.0550469,1.0125313,1.0308559,1.3791976,1.2878013,1.1375821,0.99563813,1.0455769,0.9561862,1.544909,2.851613,2.046052,1.6720728,1.6579443,1.5475539,1.3874885,1.3218446,1.5360826,1.6517687,1.5137506,1.6231525,1.8730582,1.5684578,1.5536721,1.590802,1.613001,1.5032539,1.3881371,1.8035647,1.5472724,1.3313656,1.1946344,1.0696356,0.97022545,0.8510207,0.7298183,0.8879046,0.9886322,0.81106544,0.71787405,0.615631,0.5498336,0.39039207,0.31628245,0.23552968,0.16268197,0.07245271,0.059492234,0.9840715,0.98965573,0.7767735,1.0956123,0.81814027,0.5947882,0.7841536,0.74179554,0.64549136,1.6068845,1.9824648,1.3471909,1.5767057,1.5061612,1.7821553,1.4686861,1.2252452,1.0111922,1.093451,1.1787428,1.5474358,1.4476104,1.1140534,0.9241656,0.7704276,0.6101432,0.4695862,0.32979646,0.18364266,0.013818633,-0.12735419,1.1536566,1.1777242,0.8893602,0.8161279,0.64501214,0.45309183,0.30462557,0.16748337,0.008439299,-0.1699977,-0.31874985,-0.39433038,1.2471279,1.4407452,1.5754337,1.1842663,1.0455573,0.8572076,0.8260621,0.79556966,0.5494377,0.40094352,0.28136575,0.15291682,0.028802183,-0.09910214,1.2801552,1.0891932,0.807198,0.60431683,0.40976787,0.29600212,0.6121179,0.6580621,0.42336667,0.22817965,0.11551654,0.87159353,0.8562308,0.54695106,0.33718497,0.17879345,0.036977623,-0.1327093,-0.30007532,0.034590404,1.6563425,2.1296353,1.3966786,1.099043,0.9242295,1.1551824,1.0854744,1.909503,1.8089671,1.409994,1.1963598,1.0630274,0.9376279,0.8099369,0.64645123,0.50522745,0.8188406,0.9830452,0.7231468,0.57960975,0.49435925,0.39815927,0.31583112,0.22010921,0.122713774,-0.015822008,0.31632012,2.2974777,2.5858138,1.7291327,1.374292,1.1555924,0.9846163,1.3826154,1.5394738,1.5312086,1.4405618,1.2394993,1.0581558,1.0345746,1.0540069,1.073498,0.907353,0.81420326,0.72914827,0.6387651,0.5394536,0.7378855,0.8550325,0.68907064,0.5490771,0.49683344,0.40381837,0.28587356,0.24226458,0.41746375,0.40069947,0.27488852,0.15310173,0.46766543,1.4295369,1.0791724,0.8654506,0.75436777,0.67090356,0.60548264,0.5515139,0.4820102,0.41746417,0.30356073,0.31744093,0.33138737,0.29108006,0.29558253,0.27630585,0.45273805,0.41748518,0.41363752,0.40144283,0.3613289,0.32363018,0.30874383,0.37347943,0.3392748,0.3123048,0.3382851,0.9120095,1.0363553,0.9738877,0.87162894,0.7904239,0.90033925,0.97268856,1.10677,1.0597751,1.0761845,0.99586535,1.0272144,1.0632738,1.115655,1.094197,1.089483,0.9803667,1.0005312,1.0760144,1.2077746,1.3856711,1.2139065,1.2872903,1.3037105,1.3214407,1.2288454,1.1176696,1.1269611,1.0453155,1.0363579,1.0719879,0.8406857,0.8734089,1.0007544,1.0330822,1.0058475,0.9872136,1.1871855,0.86551917,0.85499763,0.7835138,1.0392222,1.9303715,2.4011412,2.029624,1.8806119,1.686157,1.5192115,1.4221156,1.9324497,1.9379919,1.6841575,1.5400953,1.4523706,1.4469856,1.4804081,1.4151955,1.2828496,1.1665834,1.097675,0.99623346,0.9258108,0.9341074,1.0478842,0.9332739,0.91831136,0.9338139,0.79884607,0.7966336,0.75501126,0.7963505,0.6974684,0.7206006,0.72337365,0.6487721,0.56101817,0.4993015,0.43659094,0.7886255,1.1386364,0.9360005,0.79782426,0.79082775,0.79111683,0.7655376,0.6826673,0.56131625,0.7692942,0.71863186,0.5858743,0.41688883,0.27550933,0.16464607,1.0684011,1.1078283,0.95024735,0.8457812,0.7489065,0.642535,0.82945514,0.83745587,0.75928575,0.69837815,0.62002236,0.56526417,0.4257108,0.34453,0.29234558,0.14460231,-0.004117351,-0.06318326,0.44463235,0.4105612,1.1299748,1.1813016,1.7872777,1.7484677,1.4752395
+-0.1494354,0.24868648,0.5236099,0.6136309,0.56377244,0.5164742,0.4578891,0.4114589,0.4058585,0.37429318,0.8421252,0.88620067,0.80939424,0.80179846,0.75014746,0.6818379,1.1242678,1.8148941,1.4711523,1.386508,1.152428,1.0144117,0.9477085,0.8894418,0.85672545,0.8381865,1.6400607,1.3219159,1.5639293,2.2584767,1.5213714,1.3845658,1.2477511,1.125729,1.0325872,0.9784107,0.95163286,0.8770522,1.159025,1.2322471,1.1605792,1.6809967,1.2735944,1.1101185,0.9978142,1.0090157,1.087477,0.9947665,0.88778186,1.0131052,0.92888236,0.9089224,0.8541616,0.90219676,2.2400234,1.79769,1.5454257,1.3687823,1.2193236,1.2198073,1.169126,1.111332,1.2547015,1.6701202,1.6295698,1.3117762,1.1827592,1.0902712,1.0194832,0.9906286,0.95121884,0.9133214,1.3668253,1.467056,1.2875849,1.150279,1.0848649,1.031452,0.97831094,0.9295596,0.887868,0.8538157,0.8271545,0.79355294,0.7530185,0.7261974,0.68542415,0.6037171,0.5971968,0.52520645,0.5193527,0.43238884,0.5770992,1.2417871,1.7588139,1.2594874,1.0619028,0.9609357,0.9069012,1.0036466,0.9144398,0.8311708,0.7661922,0.69432837,1.3030115,1.5357664,1.2035382,1.0647936,0.98722374,0.8952322,0.8593129,0.7684552,0.6817583,0.5718124,0.47204167,0.3749114,0.4864239,0.6440365,0.70298684,0.73990345,1.2965603,1.0632694,0.85909766,0.71989775,0.5809607,0.48669744,0.3730174,1.1636108,0.8778388,0.72104037,0.71948755,0.7841728,0.66185516,0.48847365,0.5530405,0.33411646,0.2178251,0.2609334,0.21529876,0.20611022,0.23618545,0.31945226,0.36604398,0.14714867,0.13060047,0.09994654,0.010107242,0.0841413,0.30300534,0.12661819,0.005947087,0.0067065395,0.29955113,0.7982657,0.63711166,0.36304513,0.26067978,0.21959,0.18227772,0.11583607,0.016904421,0.1796213,1.150279,0.64256,0.4348982,0.3505398,0.31879944,0.7930399,0.9457971,0.72158086,0.5893745,0.47116846,0.36573994,0.2495207,0.15225132,0.069157064,-0.0022340603,0.12769143,0.6106064,0.27986383,0.13232426,0.054156307,-0.01686604,-0.089091696,-0.17053561,-0.24979798,-0.30908403,0.54052067,0.8423253,1.5323961,1.0641592,0.74372786,0.54398453,0.4351088,0.68608326,0.80250704,0.88186276,0.7460357,0.61220753,0.4940883,0.42553788,0.47358555,1.0906608,0.80492854,0.5717143,0.43704015,0.36157855,0.2885701,0.36554968,0.4471426,0.30069077,0.2277865,0.17794539,0.113042176,0.077855274,0.048452284,-0.032279264,-0.12768379,-0.19824977,-0.24418992,-0.32323468,0.1531518,0.37037903,0.1665522,0.09836437,0.041857373,-0.0006654896,-0.047731776,-0.08447568,-0.11147912,-0.14505094,-0.17388551,-0.12189278,-0.15532334,-0.22391802,-0.1982939,0.24592067,0.1951666,0.09557161,0.08497441,0.10449527,0.2780226,0.24146895,0.15780379,0.14082967,0.06093851,0.04877164,0.57455564,0.47391152,0.34585285,0.21533318,0.22076939,0.4297216,0.5086694,0.4292025,0.27839565,0.20547774,0.16719858,0.26781085,0.385983,0.2937416,0.28985864,0.6519222,0.8229663,0.9577414,0.9269937,0.95994425,0.8772249,0.67754364,1.2456737,1.0747273,0.8910983,0.756104,0.7322879,0.72648,0.56578815,0.54523295,0.5525436,0.4460585,0.5157902,0.6625732,0.9620136,1.1956916,1.4055307,1.4732955,0.7811402,0.5795095,0.4632544,1.676646,1.7571391,1.6861749,1.3513978,1.1023116,1.0041659,0.93035775,0.8111299,1.1624688,1.1459957,0.986822,0.8695809,0.80825865,0.8884107,0.92593944,0.8073746,0.6423372,0.55467683,0.4751227,0.38300946,0.30814254,0.40110195,0.44987598,0.35439932,0.33092028,0.27344286,0.25555867,0.3088173,0.23325746,0.20052172,0.06149381,1.3695743,1.6425891,1.2628477,1.0324545,0.8211357,0.7048142,1.0141487,1.1797563,0.94435626,0.79459894,0.6995593,0.590116,0.5516186,0.50361717,0.47648764,0.41859007,0.3228389,0.24283238,0.20032817,0.12587723,0.13887341,0.66744524,0.6142029,0.47370285,0.5931459,1.1233823,1.2947294,1.059367,0.8268426,0.7891701,0.68527853,0.5495048,0.48450541,0.40298352,0.35553014,0.35983813,0.30235773,0.22233762,0.66251385,1.166774,0.8692135,1.0382749,0.91122806,0.87610304,0.74455607,0.68792224
+-0.20492736,-0.021010634,-0.053806182,-0.06969187,-0.105590045,-0.11540128,-0.2126091,-0.28004983,-0.3586241,-0.32006705,0.86738765,1.1905396,0.8356006,0.9107524,0.77057207,0.5911551,1.2582587,1.8951393,1.3238249,1.3859444,1.037893,0.83987796,0.75902313,0.7000233,0.6335059,0.5749864,1.3437816,1.1599643,1.9299635,2.0311046,1.341557,1.1553793,0.97117937,0.79278445,0.72550154,0.6643786,0.62480307,0.5736824,1.4188201,1.5178541,1.1204199,1.1712263,0.99640167,0.8660543,0.7651313,0.84510607,1.2374947,0.9957576,0.80797595,0.8142199,0.7205331,0.622141,0.83039767,1.0643224,1.918047,1.3199807,1.1072733,0.9508225,0.8128613,0.9527935,1.4905465,1.2279272,1.2231005,1.3180094,1.0926979,0.8908654,0.76941776,0.6791487,0.60728765,0.55050397,0.5011372,0.44381112,0.5917665,0.8418607,0.6384853,0.5187961,0.47427732,0.42034382,0.37667796,0.35453647,0.29200134,0.25843564,0.22495688,0.19697069,0.16020451,0.123938665,0.083768904,0.0067888536,-0.045399684,-0.12296112,-0.13205539,-0.12601084,-0.12543242,-0.11848053,1.3447132,1.0520802,0.7917262,0.68414986,0.59081495,0.49228907,0.5141112,0.40229484,0.31803906,0.2531568,1.1951524,1.0925734,0.89613104,0.7463262,0.6007498,0.5092876,0.41529334,0.31361067,0.2086717,0.12642746,0.113819405,0.09159866,0.19084786,0.15557364,0.11033054,0.071220204,0.43689483,0.59428704,0.30230045,0.16014221,0.048497144,-0.0351904,-0.14317077,-0.19053426,0.37748694,0.6759772,0.9143894,0.8680473,0.55214036,0.38771856,1.2267185,0.95116115,0.7591035,0.72079897,0.56855094,0.7265865,1.016771,1.3536253,1.0675148,0.7651653,0.67345035,0.5368322,0.43716812,0.7355631,1.1841354,0.8374486,0.6223068,0.52005434,0.4544668,0.84310776,0.9461217,0.60957605,0.46561003,0.37849835,0.3138743,0.25227213,0.1907695,0.12586825,0.031630713,-0.009098481,-0.08048749,-0.11797558,-0.16949679,-0.21472485,-0.002813574,0.5580939,1.4359694,0.97916853,0.71249986,0.55647266,0.41078144,0.32315072,0.25781363,0.16991298,0.3512395,0.31238714,0.074682236,0.019253876,-0.06896958,-0.19738941,-0.24996015,-0.29526332,-0.34552598,-0.34518877,-0.34015113,-0.17842388,0.043198783,-0.20624809,-0.3173531,-0.34854114,-0.36376518,-0.38430443,-0.2812996,-0.19305122,-0.26571018,-0.29960057,-0.33458585,-0.41038394,0.1881601,0.33366323,0.05816244,-0.032277804,-0.094921395,-0.15576498,0.16125356,0.5595176,0.23912923,0.106555626,0.018370409,-0.099607185,-0.13680498,-0.16012378,-0.2006725,-0.17841339,-0.32438004,-0.39542988,-0.4400363,-0.28669143,-0.2794026,-0.37387422,-0.42656153,-0.42279017,-0.43062186,-0.4611202,-0.50359446,-0.50521284,-0.4854436,-0.35884735,-0.07315825,-0.14277498,-0.19382314,-0.22133023,0.7235438,0.622509,0.33245224,0.26472625,0.24026982,1.0587007,0.9656272,0.65191555,0.58503044,0.515929,0.7556098,1.0359068,0.726755,0.8407508,0.77634895,0.70034873,0.7692468,0.8369552,0.692533,0.5453356,0.47163117,0.44362754,0.44327387,0.45204628,0.3859765,0.40851194,0.69795287,0.90910995,1.0006087,0.7540386,0.5452745,0.59858114,0.5624924,0.6366328,0.5247557,0.4053538,0.3419141,0.32859626,0.28368878,0.20932642,0.31649348,0.4261885,0.3755857,0.42252177,0.5506917,0.84154725,1.0616946,1.2208297,0.9447092,0.46228558,0.36783153,0.33957097,0.9553803,1.1111678,1.4910858,1.2260754,1.1565512,0.9907422,0.8395478,0.7156898,0.66632587,0.6374448,0.56785494,0.49746454,0.47286367,0.51660913,0.532642,0.46479458,0.30079827,0.15810293,0.09929165,0.103691,0.055666972,0.14296927,0.16115093,0.07560241,0.039422486,-0.029802542,0.014427964,0.042000387,-0.03552046,-0.070461825,-0.15953055,1.7873698,1.510309,1.0718296,0.9149158,0.7769432,0.67618823,1.0000788,1.1888385,0.8721606,0.71514153,0.59492505,0.5378087,0.5374328,0.5271292,0.47234398,0.39983547,0.32040408,0.22354989,0.13061251,0.1957937,0.44509667,1.2415848,0.8759312,0.7255604,0.61221784,0.47414184,0.49737602,0.7524391,0.62032765,0.53388405,0.43671757,0.3611334,0.25818035,0.19100235,0.10739875,0.019860435,-0.033351358,-0.0905257,0.752387,1.3183548,0.9025675,1.0921998,0.93744016,0.97502375,0.8666992,0.7196958
+-0.14252353,-0.120652065,-0.0290366,-0.011856418,-0.046000283,-0.089889005,-0.18294187,-0.20812428,-0.35042632,-0.38880348,0.0043394305,0.67811394,0.77934057,0.91842496,0.57319534,0.28343982,0.67326266,1.4229774,0.89751613,1.4688141,0.8972423,0.6064309,0.44512603,0.30793443,0.18708062,0.09912713,0.853039,0.7240487,1.3116071,1.6327311,0.9726641,0.9266993,0.74697036,0.47207844,0.31579554,0.22292612,0.13027316,0.0033650436,0.31561247,0.8833748,0.583061,0.35651356,0.21094592,0.09460722,-0.013131987,-0.10831793,-0.044886094,-0.054315012,0.49008715,0.58673483,0.27585435,0.09988539,0.28628135,0.36486065,0.15885448,0.13568233,0.54614186,0.4036028,0.19590296,0.32790846,0.8127879,1.3347404,0.9957744,0.97687733,0.89395225,0.63673687,0.40997955,0.25214007,0.124376506,0.040428597,-0.055170875,-0.1428375,-0.20792274,0.89741045,0.83127606,0.45696726,0.2934807,0.1638224,0.15646721,0.13554858,-0.014703404,-0.06908931,-0.123989776,-0.18862635,-0.30043238,-0.38404372,-0.4707739,-0.5236259,-0.5051615,-0.6155865,-0.68994087,-0.8156972,-0.9246676,-0.96049666,-1.0082036,-1.1035722,-1.1244991,-1.1775987,-1.239014,-1.351957,-1.3455507,-1.3563979,-1.4404783,-1.4820163,-1.6021326,-1.3332342,-1.0179018,-1.1745716,-1.3071487,-1.4248897,-1.5485221,-1.6633462,-1.7769496,-1.8617054,-1.3347731,-0.8765372,-0.90405995,-0.9785942,-0.91535413,-0.9960159,-1.1317196,-1.1389322,-1.3257433,-1.4847901,-1.6011726,-1.6955708,-1.7980686,-1.898036,-1.8097835,-1.3907721,-1.3068975,-1.4688201,-1.5601859,-1.4267142,-1.0529886,-0.76249635,0.38131732,0.7263743,0.39630905,0.64293325,0.6677928,0.99815106,0.63621444,0.7944253,0.6608502,0.30442968,0.0785719,-0.036494415,-0.09324981,0.040524956,0.13305518,-0.08028069,-0.2533949,-0.2759156,-0.13914448,-0.35876358,-0.51280594,-0.5641266,-0.6068652,-0.68476135,-0.78641796,-0.87681496,-0.98366565,-1.0626192,-1.1543213,-1.2250614,-1.2994065,-1.375026,-1.3932973,-1.4148548,-0.59028125,-0.027471777,-0.3877141,-0.59972596,-0.75623035,-0.8104812,-0.8620454,-0.9614013,-1.0863249,-1.1849589,-1.2911221,-1.35429,-1.4061726,-1.5229831,-1.5745946,-1.6243811,-1.6568944,-1.6716328,-1.6847732,-1.741955,-1.7396958,-1.7967492,-1.8845763,-1.8743091,-1.9139853,-1.9827186,-1.8505536,-1.7131088,-1.7608867,-1.7796553,-1.8343339,-1.894552,-1.6046103,-1.1774669,-1.3057771,-1.3778956,-1.4721379,-1.4933813,-1.5084058,-1.4864538,-1.4542658,-1.528685,-1.5834056,-1.643125,-1.652567,-1.6576294,-1.6504761,-1.5330172,-1.6146278,-1.6668754,-1.7149949,-1.6425719,-1.6094104,-1.6038675,-1.6775198,-1.749174,-1.7033122,-1.7623156,-1.780443,-1.811378,-1.7776623,-1.0476692,-0.17246614,-0.40620694,-0.46118885,-0.56517994,0.5449287,0.44195777,0.091308,-0.027897384,-0.1202652,0.7730995,0.5555487,0.21800701,0.114188105,0.024226014,0.5807084,0.6315905,0.3879164,0.37190714,0.25668958,0.090647906,0.003141109,0.008025575,-0.09197275,-0.16224374,-0.16246323,-0.22934501,-0.32859278,-0.3630549,-0.40190166,-0.3804289,-0.24958977,-0.07838026,-0.06778087,-0.2939237,-0.3535327,1.2883899,0.78073734,0.77159035,0.69157195,0.43516618,0.2940228,0.18505023,0.091224685,-0.0015534125,0.39493328,0.50137115,0.28149143,0.21727525,0.15444225,0.23867325,0.3855576,0.53432906,0.15016095,-0.13599856,-0.21352525,-0.20800985,0.050440703,0.17552318,1.0216944,0.98463726,1.6346844,0.9289134,0.61401755,0.42809042,0.3282023,0.24176638,0.14256662,0.10678811,0.036849234,0.040647034,0.03318965,-9.443611e-06,-0.11724447,-0.24324298,-0.32101285,-0.33722147,-0.3944922,-0.36264685,-0.29911906,-0.37325132,-0.4699544,-0.5065399,-0.52946055,-0.49166948,-0.56187594,-0.55897236,-0.7881291,0.20931748,0.63639504,0.22394411,0.10407947,-0.0046601854,-0.13818765,0.55298483,0.73971087,0.44065994,0.23831342,0.12278883,0.014929611,-0.009242605,0.57605904,0.5634696,0.37421313,0.15320817,0.043192957,-0.050809424,0.22249524,0.30913797,0.36472663,0.24636246,0.027714726,-0.09228167,-0.2546466,-0.2872409,-0.0006869845,-0.041771036,-0.14930755,-0.23140742,-0.3203522,-0.4052826,-0.47211763,-0.5481142,-0.6142174,-0.6695394,-0.73599476,-0.20648022,0.7708385,0.26282945,0.15599822,0.06369889,0.283808,0.47166193,0.1661093
+-0.36519265,-0.19518612,-0.45938706,-0.6657266,-0.87850356,-0.99053556,-1.1718937,-1.3445953,-1.4935439,-1.4013855,-1.1290172,0.27249134,-0.06622264,-0.35955217,-0.48662037,-0.6282003,-0.7655639,1.1249802,0.511173,0.8981719,0.6460765,0.28492388,0.023656998,-0.14969563,-0.29777867,-0.41914067,0.534166,0.29591215,-0.007550653,1.480108,0.49436015,0.73928475,0.3882298,0.06700802,-0.11455786,-0.23832284,-0.33445072,-0.46594697,-0.5291175,-0.60006046,-0.68232554,-0.7092649,-0.8174753,-0.9006562,-0.88657874,-0.6192423,-0.5647633,-0.33878994,0.6440129,0.45322746,0.028468762,-0.21132058,-0.36411658,-0.48768365,-0.58562106,0.3308608,1.1665491,0.71306133,0.24541993,0.059271682,-0.11869642,0.06699668,0.72858006,0.94800043,0.49272692,0.16774993,-0.04093517,-0.18082951,-0.3205637,-0.41802973,-0.5324957,-0.530536,-0.12322816,1.0223291,0.50818694,0.15805723,-0.027428415,-0.16870145,-0.29960984,-0.38411722,-0.4781939,-0.5504845,-0.6100274,-0.6653699,-0.7518244,-0.8517333,-0.9405228,-1.0552294,-0.9224177,-0.80904365,-0.9639222,-1.102318,-1.2280242,-1.2897599,-1.3472215,-1.3043089,-1.370024,-1.432264,-1.4977609,-1.5790461,-1.322181,-0.91468483,-1.1124258,-1.2587634,-1.3673997,-1.4843147,-1.6102573,-1.700815,-1.7728453,-1.8443836,-1.9050094,-1.9674792,-2.0196857,-2.0687666,-1.9886689,-1.509155,-0.7262107,-0.5999409,-0.75293076,-0.51961356,-0.7552571,-0.97539794,-1.1568155,-1.3031234,-1.4312586,-1.5383773,-1.6357667,-1.7263219,-1.8142188,-1.6263814,-1.2823946,-1.4618115,-1.5792542,-1.6838214,-1.3373599,-0.09814583,0.4381051,0.80250204,1.0523977,0.99268055,0.5531785,0.40014696,0.7689407,0.67385733,0.38790426,0.064794615,-0.16117199,-0.21068569,0.007099066,0.30204046,0.52645963,0.6378682,0.25797004,-0.05202998,-0.21751806,-0.36239412,-0.4859404,-0.10883017,0.38858625,0.10977833,-0.15315363,-0.35164225,-0.41393596,-0.4921741,-0.60685045,-0.6885121,-0.7892509,-0.8559097,-0.91692257,-0.97837543,-1.0172001,-0.79165465,-0.7284614,-0.92169607,-1.0145526,-1.047297,-0.90012264,-0.6309182,0.57124346,0.045033652,-0.3066252,-0.5080085,-0.6228795,-0.7734341,-0.86850727,-0.97856593,-1.0323626,-1.0918105,-1.1648943,-1.253875,-1.3323534,-1.3863846,-1.4586425,-1.4670011,-1.4892249,-1.5290418,-0.8542783,-0.2481687,-0.59523624,-0.7522102,-0.83666253,-0.9314363,-0.80253863,-0.5969951,-0.81079984,-0.90541947,-0.986552,-1.0522258,-1.1410046,-1.2045147,-1.2697855,-1.3132657,-1.3611093,-1.4246445,-1.4306743,-1.4423232,-1.4668086,-1.4609478,-0.9968392,-0.72267836,-0.65108365,-0.47365862,-0.63099587,-0.6705164,-0.83713436,-0.9230511,-1.0351104,-1.0617461,-1.1370553,-1.2132843,-1.2098777,-1.172259,-0.94326496,-0.93856025,-0.9536618,-1.033172,0.5242268,0.3390963,0.030821424,-0.13311554,-0.21649437,0.04475956,0.1371756,-0.25144047,-0.3526191,-0.40924254,1.2208683,0.5685635,0.40958124,0.34176695,0.13541001,-0.07776795,-0.19233818,-0.20490028,-0.2426868,-0.38743067,-0.42599404,-0.4489806,-0.51973516,-0.5439708,-0.6333282,-0.49271148,-0.46187592,-0.3375733,-0.4478802,-0.61377394,-0.5347219,-0.4043781,-0.44446376,-0.06263745,0.36970708,0.048591863,-0.15248308,-0.31504703,-0.33964399,-0.31188703,0.21625529,0.16030018,-0.1277723,-0.18529007,-0.2618881,-0.2658805,-0.1045876,0.012948241,-0.25196823,-0.43330452,-0.51519006,-0.5042566,-0.109938666,0.019178588,0.87180996,1.1403072,1.2468014,0.6210047,0.26604244,0.061488334,-0.101947784,-0.26572162,-0.34342986,-0.41329828,-0.4377584,-0.40617698,-0.4003709,-0.46892846,-0.5710569,-0.6891152,-0.75967383,-0.771494,-0.8167663,-0.79268956,-0.50646037,-0.46230215,-0.6486827,-0.78144544,-0.8255245,-0.8191323,-0.9019681,-0.94257134,-1.2606308,0.03488407,0.28722945,-0.13644451,-0.26794434,-0.30744433,-0.46928054,0.5250787,0.59886575,0.15869892,-0.0760804,-0.23824276,-0.34828442,-0.363752,-0.31878775,-0.513372,-0.56228423,-0.6546388,-0.7034203,-0.57755816,0.29105282,0.10762821,0.09619896,-0.12085369,-0.29637173,-0.10815066,0.42274567,0.6501344,0.16983593,-0.10271661,-0.2384516,-0.3562147,-0.49750626,-0.5897169,-0.6880295,-0.80177176,-0.87383544,-0.9276215,-1.0161092,-0.377665,1.0501226,0.19823909,-0.09760797,-0.29647994,0.1096572,0.32190645,-0.09595989
+-0.62355757,-0.6510592,-0.83470523,-0.99907607,-1.1411557,-1.168217,-1.2798059,-1.4215666,-1.4793811,-1.4919653,-1.3381333,-0.9671036,0.32463935,0.3009747,0.062350336,-0.13040975,-0.17993978,1.6230631,0.6112336,0.58155185,0.66280127,0.3886529,0.12516223,-0.043989975,-0.0978912,-0.20554914,0.3791939,0.34396812,0.08985712,1.1556292,0.5282864,0.7899183,0.43413153,0.14654368,-0.021225553,-0.16432117,-0.308405,-0.36752802,-0.4205626,-0.47820386,-0.5321169,-0.5610361,-0.60409355,-0.34835932,0.56682485,0.57410014,0.33983487,0.12658131,0.42949274,0.40853027,0.124457195,-0.008780841,-0.078321755,-0.18841627,-0.26422104,0.21931787,1.6555672,0.7434809,0.3568133,0.18385832,0.05469503,0.4981054,0.9272395,0.75232565,0.6836816,0.7029519,0.5800456,0.29630506,0.04224244,-0.08889195,-0.1825311,-0.24313998,-0.061346285,0.06266406,-0.10890125,-0.23381077,-0.3314722,-0.41638198,-0.48466945,-0.5384433,-0.37720054,-0.27009207,-0.40371767,-0.49792022,-0.5823988,-0.63515747,-0.6868899,-0.7682855,-0.34673405,-0.14948907,-0.37807536,-0.5160365,-0.6129638,-0.6960658,-0.77525234,-0.829939,-0.8696765,-0.91119564,-0.94346064,-0.8696475,-0.8287401,-0.96196365,-1.0296673,-1.0585046,-1.1018085,-1.1631604,-1.2080033,-1.2498281,-1.290195,-1.0526264,-0.99032634,-1.1461555,-1.230113,-1.2819891,-1.3221835,-0.8646383,0.06989066,0.94512135,0.6774695,0.39741975,0.10892771,-0.052979633,-0.18016219,-0.2948531,-0.41311353,-0.51517594,-0.6041493,-0.69623685,-0.794648,-0.8679723,-0.9398932,-1.0006168,-1.053181,-1.126838,0.1374544,0.94900084,0.8021683,0.8765523,0.66014755,0.9353669,0.63023746,0.5844917,0.83630466,0.5674185,0.5597194,0.45839208,0.20414701,0.21287878,0.29154307,0.0972911,0.02276707,0.1722347,0.030758198,-0.121228844,-0.21301787,-0.25158948,-0.09735793,0.27906728,0.1344057,-0.07573958,-0.20795465,0.13144808,0.25744537,0.0067020543,-0.18969284,-0.2862199,-0.35922423,-0.43222803,-0.4917014,-0.5433028,-0.5945487,-0.6687724,-0.70872664,-0.7687007,-0.83315814,-0.6527343,0.16516916,0.5190941,0.4547181,0.3106382,0.061677206,-0.15405394,-0.26949197,-0.40068704,-0.5059456,-0.5893352,-0.6287222,-0.66568464,-0.7062698,-0.7248071,-0.77170646,-0.8671529,-0.93132186,-0.8309505,-0.61512375,-0.7273919,-0.7931701,-0.82413757,-0.8583405,-0.8797685,-0.9029018,-0.9282776,-0.8882085,-0.7845268,-0.9132433,-0.96812737,-0.98685527,-1.0226574,-1.0720667,-1.1019409,-1.1305908,-1.1512749,-1.1707089,-1.204119,-1.2123812,-1.0185546,-1.079025,-1.0991387,-1.1623654,-1.2246861,0.33934864,0.35975724,0.14803447,0.039366838,-0.10592221,-0.21594776,-0.3632223,-0.3994872,-0.43388423,-0.5243587,-0.54644656,-0.5509596,-0.4982162,-0.49472272,-0.47168976,-0.53472996,0.2466837,0.31544024,0.086855635,-0.0135207735,-0.14470237,0.08448489,0.20590577,0.040223885,-0.100349784,-0.16837929,1.0649546,1.035243,1.0344298,0.58691657,0.3282802,0.17492893,0.10018644,-0.030412842,-0.12989289,-0.18309084,-0.14442036,-0.18039483,-0.25088271,-0.30008394,-0.33595747,-0.2433973,-0.41816926,-0.31056166,-0.31747216,-0.38969857,-0.44438177,-0.409197,-0.47689053,-0.099842176,0.04930942,-0.120148525,-0.17157462,-0.24871263,-0.15180324,-0.11415091,0.3936061,0.4006373,0.22690879,0.11585635,0.001509171,-0.08400619,0.04112524,0.18399952,-0.002141755,-0.17755446,-0.26106694,-0.18444373,-0.06270528,-0.035664637,0.43455833,0.7720999,1.1577132,0.7798357,0.45792532,0.63668346,0.44802997,0.2484874,0.10873632,0.03805535,-0.033344608,-0.096103445,-0.123238936,-0.21552388,-0.26354098,-0.33090442,-0.35818535,-0.32775444,-0.33079135,-0.39173102,-0.38145876,-0.33038574,-0.3918658,-0.435125,-0.46004617,-0.4949026,-0.52041465,-0.5150714,-0.5647453,0.41787577,0.4022823,0.17840414,0.15191574,0.1398833,-0.055279117,0.70616657,0.5775945,0.29729646,0.086641,0.0017286576,-0.060974438,-0.139259,-0.19816864,-0.26262805,-0.2536927,-0.3413415,-0.38842112,-0.2740541,0.08031422,0.6529195,0.7246083,0.5237855,0.57155496,0.37003535,0.34321362,0.3363039,0.120694384,-0.04033236,-0.14760485,-0.23551093,-0.2834902,-0.31589964,-0.36791795,-0.43606994,-0.4905686,-0.52377534,-0.595788,-0.67093754,0.54581153,0.37129152,0.15854754,0.011377383,0.16764982,0.31355977,0.024479616
+1.0095743,1.1538656,1.4371285,1.7355359,2.1017094,2.5160336,2.7282138,2.8280802,2.9452147,3.0998821,3.0080795,2.9307995,2.8537486,2.4831161,1.7194227,1.0024712,0.9524108,1.4100415,1.2633892,1.1043282,0.93811655,0.7604946,0.69838876,0.81926763,1.3296794,1.2195966,0.8552004,0.67282164,0.6394595,0.5786973,0.4358017,0.37411374,0.37977844,0.37053692,0.36599588,0.5434945,0.38181418,0.295703,0.34940833,0.32170075,0.46417183,0.5488796,0.5012263,0.29933134,0.15350781,0.310624,0.25807756,0.21647371,0.2558505,0.3156367,0.32981855,0.32904065,0.60540885,0.9011237,0.8048023,0.72513473,0.6100602,0.7243066,0.7622754,0.8163538,1.9883351,2.3126974,1.8109765,1.4459536,1.7086277,1.6650958,1.5618026,1.3757966,1.1786846,1.2565777,1.2618399,1.3009101,1.7178063,2.6386144,1.9660983,2.2394776,1.9978008,2.0149198,1.9330933,1.9413414,1.8869238,1.7123806,1.6057471,1.5669003,1.5404866,2.2104726,2.0272465,1.9146249,1.7169514,1.5867875,1.5815846,1.4798869,1.375924,1.3956643,1.3586421,1.3250492,1.3490391,1.2292116,2.309961,1.9314624,1.7056137,1.9685624,1.9138716,1.8350817,1.8838354,1.7169392,1.5820606,1.4975623,1.6178733,1.4965258,1.5308663,2.277944,1.9390736,1.7200445,1.6834421,1.6069553,1.5388002,1.4726204,1.4780552,1.4591962,1.4096582,1.3964828,1.3478351,2.3336425,1.9578322,2.3770895,2.093299,1.8546937,1.711963,1.6283569,1.5332944,1.7746308,1.7568471,1.7385914,2.0808501,1.8721724,1.6801084,1.6345903,1.5954678,1.5714993,1.5281823,1.7616959,1.7578621,1.5719633,1.5244073,1.4881223,1.4988518,1.4300845,1.6379658,1.721943,2.5217845,2.0493383,1.8191005,1.7039571,1.5996332,1.5536375,1.5272479,1.7682796,1.7635586,1.6411762,2.0711133,1.874546,1.7431477,1.6087049,1.5852423,1.5383978,1.2499549,1.3317394,1.673373,1.758188,1.6353102,1.4439393,1.3717203,1.332947,1.3021508,1.2217491,1.2530439,1.3973511,2.067247,1.996716,1.8089154,1.6940625,1.5074024,1.4278436,1.4542484,1.3989315,1.3758882,1.517169,1.4821819,1.2219164,1.2013483,1.0825561,1.0804896,1.543704,1.6914794,1.417431,1.3778878,1.4174337,1.0808461,1.2858078,1.4639906,1.3270445,1.167489,1.0590734,0.98670375,0.85327244,0.9258476,0.92584175,0.966519,1.1005371,1.1049299,1.063459,0.8740865,0.92494905,0.98074055,0.9255733,0.84579486,0.87849545,0.88279927,0.97877276,1.0231954,0.8170499,0.77530485,0.781555,0.6816934,0.7030634,0.7697241,0.7494033,0.78376186,0.8246026,0.79598016,1.4634686,1.5854703,1.6523004,1.9559069,2.2233462,2.383872,2.5022507,2.4876544,2.5861106,2.7017856,3.0102525,3.0267,2.9175134,2.8395684,2.852417,2.9686491,3.0214233,3.17791,3.2878838,3.46978,3.4979906,3.6940665,3.7792737,3.81123,3.8778605,3.9160993,3.9354236,3.9317493,3.9401753,3.9773345,3.9513412,3.9377878,3.8508406,3.850719,3.910596,3.9138377,3.9165523,3.900234,3.8141184,3.901389,3.883175,3.8674474,3.9095607,3.9762917,3.9773836,3.9552374,3.9657936,4.102322,4.1091733,4.1086974,4.110285,4.092431,4.035734,4.004056,4.1394234,4.1353683,4.118719,4.1105843,4.0944204,4.080524,4.067128,4.0443697,3.9969425,3.9361074,4.005299,3.9987855,4.040265,4.061914,4.0436244,4.0394278,4.0746374,4.111068,4.152837,4.0772953,4.0414004,4.1726856,4.2162337,4.2286215,4.1703405,4.1896315,4.150601,4.1584578,4.2647543,4.2599306,4.1613207,4.209484,4.136654,4.157134,4.024423,4.1447783,4.1422544,4.0736017,3.9874005,4.006214,4.045722,3.947154,4.024545,3.9636502,4.0727353,4.088947,4.0793977,4.1497416,4.086933,4.105342,4.092245,4.1871014,4.1472254,4.03978,3.9978275,3.9606726,4.02344,4.097398,4.1905813,4.2123413,4.2171745,4.1972265,4.1747084,4.1293154,4.0742116,4.0120096,3.9658813,3.9065049,3.875887,3.9043221,4.068336,3.907867,3.9143991,3.8897529,3.911973,3.8135,3.7117069,3.679793,3.4878619,3.2762725
+0.41878098,0.078114346,-0.032309297,-0.11445445,0.08041453,0.23776554,0.009261724,-0.047202747,0.0643231,0.17595954,-0.09887956,-0.09545122,-0.1514282,-0.2685674,-0.3429584,-0.31614006,-0.35577852,-0.37749332,-0.29390544,0.16379976,0.67398673,0.6466627,0.35485396,0.43977898,1.1537242,0.7518308,0.69217235,0.9144115,1.0522937,0.65403813,0.48091626,0.3430218,0.21158294,0.04981688,-0.015512217,-0.074359685,-0.15139383,-0.24275276,-0.14866358,0.9936981,0.7675669,0.64397866,0.656763,0.44400924,0.26374337,0.14717847,-0.012067907,-0.10073772,-0.16443875,-0.20778671,-0.2638133,-0.29552275,-0.2812384,-0.031133551,0.16136219,0.5316023,0.44617566,0.7983482,0.606862,0.33232918,0.18227305,0.11103992,-0.0011646412,0.009288017,0.2566901,0.11156626,-0.026263919,-0.09476897,-0.1748669,1.0700762,0.9558952,0.59761673,0.45409983,0.9443662,1.1925279,1.1867962,0.77962524,0.5940937,0.5048688,0.39579928,0.49778706,0.33978826,0.16846088,0.30560932,0.21027622,0.14437191,0.033020373,-0.06682642,-0.123739496,-0.15422194,-0.21232449,-0.20386814,-0.24176568,-0.26546618,-0.27761456,-0.0070291795,1.1403459,0.7585088,0.56450176,0.3653745,0.86750734,0.77702886,0.64701134,0.43708912,0.2815128,0.5913663,0.4277953,0.7637563,0.5834595,0.38097215,0.3183586,0.38357586,0.26638415,1.0211048,1.0284846,0.6810026,0.496948,0.59322435,0.66763103,0.4664086,0.33418366,0.2730677,0.21208099,0.1532033,0.09378894,0.60116017,0.6701135,0.40178293,0.24197851,0.16179062,0.13200615,0.14260213,1.5828481,1.2453091,1.0452883,0.8581928,0.5880418,1.1340764,0.92137206,0.70996135,1.2107692,1.4061028,0.90035266,0.6471339,0.50031084,0.99044466,0.75777495,0.5452082,0.5049787,0.49859697,0.39705282,0.9891815,0.7216056,0.5251797,0.40353507,0.29888034,0.24898307,0.7604282,1.2730972,0.98808503,0.6982813,0.7940458,0.7139767,0.5083099,0.39023337,0.28721577,0.20033567,0.576455,0.8629205,0.6114992,0.416656,0.32182464,0.2283556,0.23201115,1.195938,1.2497128,0.9992089,0.906933,0.70058256,0.48238295,0.44317263,0.30910978,0.23811565,0.21577604,0.14751647,0.09947775,0.08786313,0.77682376,0.68954384,1.182951,0.813996,0.6366556,0.4803,0.3913716,0.28329304,0.20340452,0.18407378,0.18682171,0.08594085,0.4170979,0.9875282,0.60161865,0.42657322,0.34801978,0.26501706,0.18945242,0.15399644,0.11276935,0.85738814,0.85792416,0.64266497,0.57342887,0.49364775,0.40017432,0.30737644,0.22967292,0.19159749,0.14641458,0.11548568,0.09161499,0.059743915,-0.005304057,0.044497345,0.018216819,-0.014070962,0.11196037,0.1587207,0.061333258,0.05229922,0.021921981,0.027343836,0.6438669,0.6382008,0.5793709,0.80934787,1.14992,1.5724075,1.6380844,1.7124192,1.7375953,1.7485169,1.4082254,1.0152237,0.81414175,0.7293837,0.72357035,0.9204649,1.2118788,1.364331,1.4932357,1.6669686,1.6562114,1.7125856,1.8116797,1.9079194,2.0240664,2.1625793,2.2214303,2.2831552,2.262708,2.330665,2.3488607,2.450809,2.525741,2.5335104,2.5590734,2.5322642,2.5118346,2.586843,2.8422594,2.818142,2.7941234,2.7965782,2.80474,2.7896495,2.8118153,2.7536874,2.8134604,2.85137,2.7759318,2.78945,2.811193,2.8624277,2.8615394,2.9115033,2.9839802,2.8733745,2.8946726,2.8948452,2.919302,2.8903148,2.927652,2.9501648,2.9021418,2.9051845,2.9233062,2.9389396,2.9527106,2.9148173,2.9802828,2.890956,2.883843,2.8630147,2.8245628,2.816748,2.8579147,2.9245424,2.9092855,2.8393912,2.8497539,2.8410718,2.85846,2.8608792,2.9453063,2.8866563,2.922339,2.909102,3.0806675,3.0390327,3.023446,2.967435,2.917294,2.9784298,3.048496,2.958674,2.2572017,1.2409229,0.8496219,0.69054794,0.55428183,0.64507365,0.86683166,1.0058069,1.0235984,0.9417195,1.0385135,1.3210105,1.4172926,1.4547207,0.65808237,0.42361778,0.21137744,0.22716187,0.6340254,0.9601431,1.2210233,1.3629053,1.4659469,1.5733352,1.6015527,1.6818616,1.5020347,1.1709442,0.6353626,0.369906,0.43282127,0.5187477,0.40599442,0.34809136,0.29776716,0.25062522,0.089337274,-0.033883896,-0.047402844,-0.021795813
+1.5753174,1.3670142,0.89971846,0.36906135,0.46483517,0.4218503,0.208627,0.03597838,0.105691925,0.12072834,-0.044379596,-0.0960301,-0.15276633,-0.3218162,-0.40579095,-0.44714358,-0.479078,-0.51606786,-0.381868,0.3844279,0.5957429,0.24862291,0.13775757,0.12612881,0.26879954,0.143559,0.6976003,0.92507887,0.6369425,1.0511446,1.097182,0.7358141,0.44894677,0.25545922,0.14649105,0.035389375,-0.09180473,-0.15115833,0.30044043,1.0071431,0.7624354,0.585703,0.5739764,0.48084515,0.25452873,0.11559881,0.06223334,0.010144804,-0.092261404,-0.14114381,-0.24459857,-0.30943376,-0.08060795,0.4741938,0.2460473,0.8933474,0.7243433,1.1105177,1.2460458,0.71029735,1.1619807,0.9235989,0.5793716,0.42501822,0.896983,0.67579484,0.3993003,0.32080644,0.20505138,0.58476806,0.6132693,1.1124952,0.7172711,0.89141923,1.521235,1.2913227,0.98027265,0.71353716,0.5705399,0.4295587,0.31261384,0.22953205,1.146617,0.91991776,0.6128931,0.46703422,0.9268601,0.6175189,0.42319018,0.3089821,0.3985283,0.44405508,0.2212026,0.13398688,0.04720525,-0.05200116,0.34922725,0.938198,0.8386384,0.53097385,0.9509661,0.95540947,1.2250372,0.8513332,0.58249223,0.45903766,0.3096792,1.8829865,1.0892661,1.0834663,0.997326,0.7699038,0.7702303,1.09918,0.99164677,0.71272165,0.53255796,0.41581148,0.6660906,0.6187251,0.7949563,0.857013,0.58555675,0.5210029,0.40594068,0.7377378,0.7685274,0.4800334,0.3583078,0.29646623,0.20576014,0.1366296,0.63828266,1.2416835,0.9293187,0.6454371,0.4786532,0.39529675,0.97854674,0.750703,0.94039476,1.4158356,0.8653034,0.602991,0.9828644,1.6845512,1.0546514,0.7308761,0.8054203,0.5763905,0.49624467,0.47872502,0.4018932,0.30737376,0.22095083,0.13984534,0.0720454,0.42044094,0.5999918,1.6040192,1.0420814,1.3817042,1.1874521,0.78181416,0.56256324,1.087461,0.8917788,1.0190482,1.8441985,1.0990709,0.7740933,0.6008497,0.5349583,0.77349347,1.8328857,1.4291241,1.096869,1.4107395,1.0552063,0.71004,0.6736946,0.54618156,0.48159957,0.4917438,0.4253275,0.30972132,0.26472318,0.70962524,0.7946144,1.2509335,0.8089823,0.6106435,0.48013455,0.4215506,0.45895532,0.39529902,0.28438774,0.2420445,0.17170654,0.15895306,0.15717144,0.12646116,0.04821107,0.012390684,-0.014239665,-0.045401398,-0.04959443,-0.048685204,1.5319543,1.080531,0.7676525,0.6000555,0.5745295,0.48936248,0.3996405,0.372419,0.31545004,0.2572042,0.21954165,0.17409416,0.1521999,0.12179014,0.10628392,0.091705665,0.06892608,0.07722741,0.13372804,0.12930553,0.10310921,0.08952202,0.07414082,0.12945749,0.010036338,0.13984942,0.32101348,0.70056397,1.4536624,1.3327386,1.3233752,1.2656331,1.4329069,1.3293893,0.9389017,0.7141808,0.6634437,0.6566827,0.721379,1.1129239,1.2816256,1.5018885,1.8796251,2.1762109,2.339015,2.5498004,2.773931,2.9334886,3.0955691,3.2094986,3.3662925,3.5433965,3.6310258,3.759727,3.7769518,3.7721972,3.756381,3.753613,3.8282394,3.932063,3.907795,4.00707,3.9338417,3.8893394,3.788459,3.8757248,3.861226,3.9148438,3.9180117,3.9632618,3.931665,3.919758,3.9621356,3.966176,4.013248,3.9935727,4.0205946,4.0702887,4.0398498,4.0515566,4.0396156,4.005909,3.9729872,4.025648,3.9998875,3.9820824,4.064251,4.1088457,4.1689625,4.1427984,4.13515,4.275095,4.19871,4.091138,4.0476823,4.0193458,3.9907455,3.930869,4.0204935,3.9856768,3.934663,3.9677243,3.9649127,4.012889,3.9834557,4.0504293,3.987959,4.0203977,4.001278,4.087375,4.117179,4.1058235,4.134944,4.1159534,4.19075,4.2887163,4.159251,3.2198036,1.881844,1.1248776,0.83668184,1.5047219,1.5413368,1.8803568,2.2453642,2.5621154,2.841782,3.02661,3.3095503,3.503941,3.706848,2.7667181,1.9973531,1.0466653,0.79207146,1.0535293,1.3436617,1.7127386,2.0147448,2.3063264,2.5289707,2.6906857,2.7779531,2.9875069,2.9926999,2.5641794,1.5712101,1.2987342,1.4716395,1.3843799,1.0463213,0.8424178,0.6117083,0.3811834,0.7862265,1.1139152,0.80110794
+1.4485819,0.7243279,0.4465287,0.23428155,0.1894566,0.8060028,0.67648053,0.37539077,0.27561566,0.36272076,0.22895227,0.09786679,0.086296454,0.015786152,-0.021768007,-0.054391336,-0.108029425,-0.10052425,0.15424679,0.7127,0.84115803,0.5360409,0.39475697,0.27691278,0.24690269,0.27466333,0.63510585,1.1852858,0.8662713,1.2424604,1.1742266,0.8551576,0.6309954,0.44042042,0.328076,0.23806576,0.16187777,0.10711567,0.4219265,0.6379185,0.472615,0.46706188,0.4490229,0.3416916,0.20530552,0.15327148,0.16375415,0.22023396,0.11982401,0.08596252,0.014041349,-0.057587247,-0.116621494,-0.08312999,0.23056869,0.8664849,0.9545244,0.93767047,0.707319,0.52692515,0.75723207,0.76779634,0.47288215,0.3449243,0.29460973,0.22061734,0.12629907,0.08504036,0.022840116,-0.04777319,-0.13428718,0.5179406,0.5277395,0.33686703,0.2929118,0.80702305,0.47230375,0.3363018,0.21485454,0.11798328,-0.0024137907,0.012946729,0.02699681,0.11204,0.02231155,-0.092578396,0.50290424,0.45095912,0.2613598,0.19128989,0.6745484,0.56103265,0.3362705,0.31512156,0.19840167,0.093615964,0.38103002,1.0288541,0.6025541,0.4153624,0.41623163,0.33279395,1.0614214,0.8115858,0.59727204,0.45359272,0.34669578,0.6926491,1.3893234,1.6296406,1.2393843,0.90046203,0.7122423,0.600808,0.49181455,0.40098745,0.3258975,0.25714585,0.18389384,0.14491974,0.11254181,0.045929816,-0.025726926,0.811104,0.5705948,0.37563926,0.53697336,0.32136637,0.2356184,0.16668582,0.058220323,0.31204873,0.9799733,1.5362813,1.0230076,0.7711053,0.6399467,0.51636964,0.63532245,0.47490066,0.35247254,1.2302117,0.7750881,0.5545919,0.4275408,0.48588783,0.7293223,0.56679595,0.607329,0.38783455,0.9454129,0.7221068,0.54078484,0.45112073,0.38550925,0.29674286,0.19903938,0.07331136,-0.038019028,0.42515555,1.0251954,0.84045124,0.8351766,0.53594744,0.4226843,0.61637497,0.61473477,0.45523134,1.5118454,0.9741266,0.7301909,0.5951774,0.46631616,0.3766662,0.31595764,0.76111805,0.59186554,1.0896237,0.78079224,0.5565765,0.4831187,0.3937952,0.32641613,0.3242173,0.25247204,0.18976252,0.104099914,0.115205094,0.17928761,0.3177595,0.24204408,0.15387374,0.14796618,0.47894013,0.5339253,0.41613615,0.32292283,0.23757176,0.20426963,0.16919939,0.12624748,0.104119524,0.00598583,-0.026756894,-0.02766243,-0.04218423,-0.06895597,-0.053875547,0.14326718,0.22048746,0.12039067,0.066536695,0.061099816,0.04102776,0.008641642,0.72289574,0.6699431,0.46530998,0.38237944,0.32449657,0.28636283,0.22954707,0.16424446,0.14301665,0.12409167,0.07927543,0.12098621,0.1377884,0.1067882,0.079989925,0.0670487,0.060740728,-0.07119592,0.0063928477,0.16486686,0.36532295,1.0135711,0.7718428,0.6591686,0.5743433,0.8463976,0.9872469,0.7134115,0.5554606,0.48718202,0.50168735,0.46910584,0.93691117,0.8987941,0.7970396,0.7460673,0.8966202,1.1692932,1.3973058,1.5421857,1.565524,1.6660831,1.7588948,1.8638291,2.0221086,2.0198636,2.1007907,2.3342714,2.4586678,2.5441053,2.5789373,2.780027,2.8160224,2.9371839,3.1681387,3.183835,3.269538,3.269375,3.3674397,3.4398215,3.540638,3.6256175,3.7477214,3.780951,3.7480483,3.7645369,3.7772312,3.8160534,3.8013477,4.0177903,3.9901419,4.062179,4.0302687,3.9923282,3.9627194,4.162709,4.2007446,4.058307,4.0866127,4.1912117,4.066956,3.7239246,3.432159,3.1947002,2.980325,2.577609,2.4668705,2.4607813,2.60848,2.7860432,2.79358,2.8277507,2.8925633,2.9415064,2.9999685,3.055811,3.134409,3.1945765,3.4349847,3.4591746,3.5371447,3.5364704,3.4414432,3.1877406,2.983803,2.8293815,2.5876555,1.8538108,0.9507254,0.65288246,0.8126547,0.83959824,0.5946872,0.5321743,0.83135116,0.7468609,0.87304413,0.9041066,0.8026204,0.5118164,0.3783871,0.54772025,0.6486166,0.54167515,0.34893435,0.7556095,0.503122,0.35028982,0.2739467,0.4249552,0.5623783,0.8146015,1.0957767,1.4164755,1.574583,1.3525672,0.67417026,0.4983418,0.42627218,0.31563234,0.226992,0.29086587,0.38815188,1.3666849,1.0730047,0.7764428,0.59532475,1.1898987,1.5762752,0.98554385
+0.85975266,0.6134993,0.5518012,0.4286542,0.32094342,0.90881836,0.9369684,0.76183385,0.63501334,0.7712025,0.8013551,0.63951176,0.55176306,0.45495093,0.3813385,0.2943499,0.2516326,0.55433995,1.0312815,1.1108532,1.1652062,1.0450916,0.88176954,0.7599459,0.83812165,1.3044986,1.5508714,1.5928717,1.3450522,1.4925213,1.4768636,1.3590255,1.1582435,1.0467283,0.94723105,0.8697108,0.80518484,0.7669432,0.8356267,1.0422337,1.4070377,1.2626618,1.1442587,1.069443,0.9355751,1.2283735,1.4351099,1.1813982,1.0109165,0.9378599,0.8115716,0.67834646,0.61382157,0.57281756,0.50921476,0.6562091,1.5737851,2.0350103,1.4988493,1.2637613,1.0951982,1.0372266,0.90279204,0.79128516,1.4785466,1.2947129,1.0955806,1.0007026,0.8633281,0.78396857,0.7157289,0.66939193,0.63903236,0.5778566,0.52261686,0.52587086,0.47890967,0.42677903,0.37826306,0.36006844,0.99443245,2.1285787,1.5092312,1.2793434,1.150171,1.0163918,1.148462,0.990479,0.87166035,0.8180789,1.52285,1.2965713,1.1262821,1.6282456,1.4021419,1.1569471,1.0429347,1.3974023,1.2056639,1.031765,0.91597575,0.758239,1.5724224,1.4258444,1.1792712,1.0499799,0.9244371,0.7919587,0.9819437,1.584422,1.3081222,1.0897262,0.9667704,0.8324672,1.1440085,1.0060521,0.8487357,0.71719813,0.6367005,0.56406254,0.51768965,0.43860918,1.0968206,1.5624876,1.1517782,0.97856855,1.9999359,1.5243888,1.3105953,1.2185793,1.1026155,0.96916115,1.1841104,1.8108511,1.4272218,1.1935022,1.0916109,0.9972886,0.8930789,0.7981408,0.7068816,1.4167889,1.2077358,0.98226285,0.84590256,1.2104195,1.4624729,1.3502045,1.5617926,1.3244076,1.43446,1.4057343,1.2593989,1.103718,1.0289997,0.9292444,0.8258897,0.69462824,0.6073166,0.70229566,1.7210088,1.3711615,1.8142278,1.4098577,1.2036378,1.4468912,1.9437256,1.5044177,1.3599046,1.2341173,1.1196358,1.0102156,1.3927524,1.3167312,1.1590817,1.0524966,1.0098546,1.0854783,1.0215464,0.90354234,0.8226326,0.7533178,0.6833246,0.670431,0.63483393,0.562495,0.43552405,0.51607263,1.2561772,1.8302283,1.3889718,1.1861582,1.1362495,1.0622365,1.0145948,0.938821,0.8534079,0.75930256,0.6959215,0.64680535,0.5903812,0.53080547,0.4388572,0.3907545,0.37732142,0.3319081,0.25966442,0.26459968,0.43356156,0.5472892,0.48434842,0.43855995,0.36236304,0.3453109,0.32746416,0.5312107,0.6535151,0.509338,0.45888495,0.38832906,0.35418272,0.32388347,0.26470926,0.27594697,0.22336097,0.2649412,0.32254046,0.28279176,0.23809849,0.2134698,0.23818828,0.22837268,0.15567718,0.23035483,0.31647474,0.35476977,0.60748833,0.5849892,0.5778656,0.62075853,0.72729033,0.9747473,0.8577969,0.7525377,0.6923665,0.6515578,0.6279539,1.2332762,1.2723069,1.2037842,1.1604798,1.2144487,1.4408133,1.7733837,1.9028199,1.7607013,1.8102369,1.810282,1.8067617,1.9861908,1.9516057,1.92154,2.0282488,2.1127114,2.2158043,2.3630204,2.5153556,2.5480027,2.6146417,2.4903638,1.9454958,1.9010861,1.88529,1.848447,1.9335344,1.925643,2.1568415,1.9871678,1.5817863,1.843381,1.9728448,2.0863245,2.1672175,2.3266013,2.601233,2.7243147,2.6423597,2.589049,2.6595821,2.596163,3.1068597,3.2731156,3.3113089,3.5069335,3.218075,2.2860484,1.6879019,1.4656098,1.3766638,1.3672148,1.2356864,1.2273443,1.2757049,1.4056706,1.4660422,1.3714309,1.1420045,0.95011294,1.050511,1.2863305,1.5007603,1.4857998,1.1747606,0.8619682,1.0286566,1.3848579,1.2071126,0.95621705,0.8368124,0.86885446,0.7770469,0.80488133,0.76291203,0.67516154,0.60766214,0.65868217,0.8520324,0.74377143,0.6345717,0.66484463,0.5382031,0.6330786,0.7693163,0.64174,0.54793704,0.4671439,0.46671766,0.57173413,0.51201135,0.42578015,1.2269775,1.0819871,0.8783495,0.6904155,0.52844393,0.5054511,0.5148041,0.40204656,0.45122498,0.5243544,0.4695989,0.36862904,0.30447766,0.3106748,0.27648583,0.17424208,0.17912534,0.9445652,1.8129905,1.5597221,1.4037421,1.2908573,1.443696,1.7797668,1.5215164
+0.5494306,0.70422006,0.70148015,0.7226525,0.58769333,0.7242954,0.6882817,0.66992337,0.6053251,0.73784333,0.8734148,0.74283886,0.68785167,0.62681866,0.60002506,0.51559186,0.4324848,0.7874948,1.6000847,1.5594931,1.2425213,1.1271943,0.9344875,0.8007716,0.7963733,1.5605667,2.099243,1.6790409,1.45466,1.7576094,1.4315476,1.3376006,1.1915634,1.1207542,1.0593152,0.9605401,0.95089245,1.211866,1.7583413,1.6147958,1.3957224,1.2532887,1.132339,1.1620767,1.0372064,1.4785228,1.8925374,1.506642,1.2757065,1.2587516,1.1635479,1.042831,0.98605037,1.1256033,1.146512,1.588449,2.1280766,1.7845168,1.486876,1.3709207,1.3774849,1.2408296,1.0472157,0.93311405,1.37477,1.1702704,0.96604586,0.89134103,0.80025315,0.77484083,0.705071,0.6175354,0.5063852,0.56789815,0.49169195,0.37544227,0.20212251,0.12649949,0.017764393,-0.06371148,-0.110148564,0.24149014,0.25130993,0.09073432,-0.07499787,-0.14387156,0.70301384,1.0418487,0.5223613,0.31808442,0.31940132,0.36944258,1.4046148,2.498965,1.776819,1.4069874,1.2897758,1.5007393,1.384784,1.0535127,0.9763758,0.867804,1.4839429,1.994988,1.582409,1.2366056,1.0944772,0.9864427,0.8685516,0.74010444,0.660162,0.5833591,0.46138453,0.34951597,0.2099689,1.1037483,0.79783094,0.5639533,0.41334468,0.32182857,0.21099435,0.32646218,2.1630068,1.5671973,1.1846609,0.9221396,0.73761237,0.5248508,0.4333406,0.3431533,0.30611813,0.18838371,0.122651294,0.22845219,0.32059056,0.07973319,-0.0981296,-0.12757777,-0.2089114,-0.2834712,-0.35706326,0.45982438,0.30375725,0.02475711,-0.13166107,-0.045613278,1.0927362,0.6528288,0.45075274,0.19539092,0.07215376,0.091389775,0.64359915,0.6644913,0.33522758,0.1371057,-0.013132926,-0.12897685,-0.23547004,-0.3297463,0.3352435,1.1679935,2.148931,1.2944709,0.9656471,0.78439224,0.90921116,0.69060814,0.7834568,0.82653666,0.53341377,0.4214443,0.3790902,0.27540186,0.15873417,0.039364766,-0.037944876,-0.0914375,-0.009365525,-0.13872536,-0.23356687,-0.29625657,-0.3676428,-0.45824516,-0.5169283,-0.5855324,-0.67213666,-0.6460962,0.5003234,1.6541064,0.8712344,0.54883134,0.3301016,0.2021842,0.26968277,0.36142838,0.20613936,0.08713776,-0.0007157102,-0.07081984,-0.107241094,-0.21157917,-0.29829967,-0.3187906,-0.35974336,-0.42758614,-0.4995138,-0.55060166,-0.48346287,-0.37671936,-0.46216774,-0.532389,-0.6159528,-0.6560131,-0.715183,-0.7073421,0.17584948,0.20067635,-0.018135436,-0.16325536,-0.21807691,0.5587988,0.4280186,0.25682834,0.10907428,0.13353145,0.14964202,0.047190372,-0.0649028,-0.11873822,-0.21009322,-0.29926693,-0.25948587,-0.16264954,-0.10408211,-0.19182636,-0.22430526,-0.168916,-0.13421424,-0.05874658,-0.065610155,0.06824122,-0.0009804629,-0.11865945,0.02269328,0.08113265,0.05585366,0.6775067,0.7703198,0.7803405,0.79059184,1.0151263,1.4182217,1.4731567,1.6683507,1.7257004,1.8002329,1.8551664,1.841193,1.7730627,1.873899,2.045055,2.0168843,2.0520515,2.1486022,2.3558002,2.4388132,2.6092823,2.504178,1.9132415,1.4789615,1.3946753,1.2888136,1.2918739,1.3541403,1.3886086,1.2867253,1.0444758,0.9588274,1.3029995,1.608017,1.7989361,1.8337536,1.8806498,2.0724072,1.8190049,1.3619783,1.0844964,1.2223835,1.3756691,1.9059174,1.6416972,1.421684,1.254395,1.0663211,0.9253352,1.160904,1.0589063,0.9447439,0.9409238,0.8347679,0.823562,0.9662652,1.0471305,0.998199,0.8903592,0.7528815,0.7062883,0.8258809,1.0128222,1.2316302,1.1033925,0.8335721,0.73054683,0.7813756,0.80580634,0.72012544,0.6293783,0.37817892,0.33903992,0.32864246,0.30839705,0.21545781,0.13708653,0.08555141,0.09369926,0.16811071,0.04778673,-0.06282231,0.06148805,0.07617295,0.035155166,-0.022249255,-0.12621099,0.8008955,0.72640985,0.6421929,0.46106938,0.22260563,0.17145531,0.92902493,0.7454649,0.5884594,0.5020651,0.34746945,0.28165203,0.3358324,0.29297054,0.26201752,0.1932533,0.09245288,-0.0449009,-0.22726394,-0.19015442,-0.20462683,-0.35998598,-0.53420496,0.038289953,1.3687695,1.2130778,1.2379322,1.0665634,1.5217104,1.7186837,1.4498384
+0.47284997,0.81951165,0.82644093,0.7749658,0.73304737,0.90477777,0.84255064,0.7536435,0.6918568,0.69169086,1.5593624,1.5399321,1.3249658,1.1542573,1.0974433,1.0122149,0.9823569,0.8933437,0.9453685,0.91449255,0.839645,0.79270095,0.7650051,0.7458012,0.7470915,0.7094954,1.2634503,1.2825053,1.0343394,2.1996813,1.582166,1.3740473,1.3157722,1.1881325,1.1140287,1.0595667,1.0135503,0.9363363,0.8894764,0.9716693,1.0093198,1.0779576,0.9644639,0.8323086,0.6907221,1.3711643,2.437511,1.8258314,1.5124874,1.3885236,1.3903356,1.274312,1.2340088,1.4876556,1.656856,1.4925785,1.3376877,1.2742939,1.1350539,0.9896989,0.9650475,1.0752301,1.0646884,0.9317577,0.9310943,0.84609985,0.8071673,0.7630212,0.7265025,0.72268057,0.70569015,0.6751677,0.62834847,0.6814127,0.6544075,0.6843715,0.6579666,0.59699166,0.5540563,0.5360403,0.5534521,0.532645,0.51912653,0.47336853,1.4519922,1.4948981,1.147046,1.1105983,0.9724215,0.8777906,0.91941845,1.3676469,1.275481,1.82633,2.1705008,1.5914959,1.4850914,1.4560556,1.3909205,1.3337145,1.2638409,1.1434528,1.1161301,1.2842817,1.209029,1.0647335,0.9744532,0.9233523,0.84718883,0.78050303,0.719407,0.7055801,0.6495069,0.5996827,0.5493728,0.61564577,0.9611852,1.1018667,1.0607092,0.89754605,0.8130181,0.7614071,0.8931638,0.7498145,0.6466917,0.60123026,0.51973534,0.55699146,0.84040576,1.482382,1.2968942,1.058215,0.93515986,1.1700985,1.4255807,1.0480809,0.9268606,0.92219675,0.8312643,0.77248174,0.6747074,0.6313462,0.5858638,0.52428555,0.58253664,0.6960339,0.5750306,0.48451674,0.49212694,0.4265235,0.40838096,0.38659078,0.8482685,1.0342268,0.76789474,0.6996355,0.6034162,0.57143533,0.5444902,0.4944365,0.5788856,1.4718695,1.9750566,1.372886,1.1858094,1.0521443,0.9639541,1.0071045,2.2011654,1.7479893,1.4292519,1.3000569,1.1711602,1.0648963,0.97892547,0.88680965,0.8150054,0.9285859,1.3704793,1.0829262,0.9160944,0.81306505,0.72894204,0.6605906,0.59382176,0.53295654,0.4963675,0.8708012,1.2007957,1.2614479,1.0348473,0.82614684,0.7041398,0.63345516,1.3464489,1.4878781,1.4321724,1.2453597,1.0792608,0.9232609,0.79676753,1.3878198,1.7638239,1.3381348,1.1704371,0.99797475,0.8514385,0.81197715,0.740718,0.65818834,0.6427292,0.57985365,0.5168679,0.4929518,0.44610855,0.41521126,1.045952,1.1159317,0.8599991,0.7662072,0.79244673,1.3163956,1.0973595,0.91150296,0.83009994,0.8041694,0.7871883,0.71572065,0.6021267,0.54170114,0.46898407,0.40279812,0.41397366,0.45875356,0.4847632,0.4503417,0.4215536,0.42119896,0.4213683,0.4165079,0.4462656,0.46561724,0.367315,0.32051474,0.34604815,0.3468616,0.3198685,0.7075588,0.7282557,0.67575514,0.6158531,0.6555128,0.8992884,1.0979165,1.068466,0.74671423,0.7845392,0.7698104,0.92811286,1.1403759,1.0126798,1.1532617,1.4440782,1.5281711,1.6220112,1.5206089,1.6607621,1.3106737,0.9851968,1.2503369,1.1103188,1.0836891,0.95722616,0.97534835,0.9760964,0.8034442,0.80604494,0.70907855,0.6641312,0.90934086,1.234561,1.412782,1.512936,1.6955049,1.82416,1.0517582,0.76269454,1.4905044,1.9537946,2.2481575,2.1886134,1.6947654,1.5227463,1.4499295,1.3146164,1.1652062,1.6206214,1.649687,1.5330763,1.3386745,1.1793778,1.1594088,1.2194703,1.1566789,1.0015028,0.89444613,0.7964485,0.80119175,0.92423993,1.1140006,1.1837943,0.89292234,0.7431186,0.6602251,0.7338507,0.86529374,0.6598259,0.545401,0.47852057,0.6541478,0.6110928,0.5944766,0.50253254,0.44921407,0.42613387,0.42628384,0.4821332,0.48358077,0.4239131,0.37854695,0.31544548,0.43943477,0.5064628,0.41668436,0.5576649,0.48210645,0.40130925,0.3557362,0.26332554,0.28723887,0.99414206,0.82050323,0.6599656,0.6861669,0.71818054,0.7520461,0.8936144,0.78804356,0.80767137,0.79334193,0.6320343,0.50970966,0.43461615,0.39670402,0.51919204,0.53850603,0.47681618,0.7843404,2.1581864,1.5983472,1.9457948,1.7135187,1.4561116,1.3079435,1.3326967
+-0.021582555,0.06665531,-0.0035508238,-0.082273275,-0.1811789,-0.23872931,-0.21959628,-0.26170588,-0.307417,-0.34982368,-0.024408218,0.11995736,-0.0898388,-0.12546884,-0.17972472,-0.2410555,-0.29772288,-0.23821197,-0.051010866,-0.1433124,-0.20662291,-0.27997506,-0.3308873,-0.35794032,-0.37671003,-0.39568046,0.18876348,0.3453159,0.9682125,1.4482889,0.69302016,0.43471405,0.33635324,0.17972568,0.106202036,0.03429671,-0.032490823,-0.12273513,0.7444181,1.0084602,0.54958284,1.0458298,0.6397604,0.42176008,0.28633118,0.3598582,0.5730915,0.37605622,0.17938761,0.4294359,0.3246856,0.15614392,0.06760053,0.56388235,1.4454951,1.0612657,0.73102725,0.4671147,0.2827987,0.22270237,0.29558724,0.11551905,0.040928643,0.057780396,0.37597454,0.2575877,0.09457162,0.0019703098,-0.06376219,-0.11768031,-0.15912028,-0.20702563,-0.16798253,-0.11110994,-0.18774723,-0.23602651,-0.2652409,-0.29717615,-0.31421024,-0.3416028,-0.3519689,-0.35964257,-0.36934894,-0.38415515,-0.39897192,-0.37883618,-0.42356408,-0.33704555,-0.24597068,-0.34747693,-0.34023887,-0.16895519,-0.14677835,0.15281816,1.1457665,0.4921353,0.24729015,0.06569293,0.0316958,0.8921129,0.59605736,0.3695148,0.18167038,0.06731513,0.055417415,0.47984684,0.39630574,0.17366089,0.064187974,-0.019786991,-0.08326109,-0.12634227,-0.17759068,-0.2231018,-0.20062141,0.031377856,0.34574443,0.23204349,0.11327626,0.15453738,0.2618314,0.28039598,0.09026417,-0.038038913,-0.113964826,-0.17579435,-0.23483662,0.540755,0.91827893,1.0031178,0.6949018,0.4063121,0.22477885,0.26743868,0.7701145,0.7211944,0.7646705,0.5466556,0.2727825,0.5051144,0.8876969,0.7546661,0.48434997,0.22221766,0.11857115,-0.016736891,-0.07974321,-0.14658634,-0.08893202,-0.0681151,-0.033081744,0.106566995,-0.06330627,-0.1451054,-0.26310688,-0.3626117,-0.4228378,-0.44078034,-0.45020804,-0.4778948,-0.48641244,-0.18276207,0.13473393,-0.03241737,-0.18215911,-0.26832458,-0.16045196,0.37652838,0.8068247,1.2388263,0.7022078,0.44034997,0.24453394,0.0887665,-0.027259015,-0.11651908,-0.19349475,-0.26675355,-0.12818319,-0.21096383,-0.3409613,-0.40365133,-0.4720072,-0.5153881,-0.5656477,-0.5865053,-0.6045947,0.028360333,0.34013534,0.08870718,-0.09865841,-0.22213946,-0.29871407,-0.3806831,0.02829628,1.1064701,0.7756959,0.33714977,0.09325884,-0.075369045,-0.1518096,-0.1990322,0.3070473,0.28429317,0.032436226,-0.13040534,-0.23458232,-0.26573822,-0.2966874,-0.3228551,-0.36091268,-0.40704855,-0.465721,-0.4978301,-0.50295955,-0.51689166,-0.579069,-0.6340549,-0.66652435,-0.68499494,-0.45424643,0.10707505,-0.17119275,-0.30130222,-0.36219102,-0.38234636,-0.36914545,-0.40358713,-0.5019573,-0.51992184,-0.5371796,-0.49625304,-0.3476667,-0.29006055,-0.34160653,-0.39892855,0.4440896,0.42792034,0.12205069,0.055701513,0.025051389,0.73566526,0.41427273,0.21083157,0.17123981,0.10538904,0.13459341,0.43117076,0.22863923,0.43914446,0.2886176,0.22444235,0.4562636,0.7213316,0.5165856,0.07372162,0.0325202,0.009798493,0.11600934,0.3600927,0.16669118,0.11015077,0.51213133,0.76442814,0.7825788,0.52234155,0.5454421,0.3654155,0.09800218,0.4278614,0.3328063,0.16612153,0.04989825,0.11142051,0.059664417,-0.12645152,-0.05683014,-0.014140446,-0.073415294,0.10932486,0.38573903,0.67626095,0.90727854,1.052555,0.87762946,0.055881646,-0.092495725,-0.13069516,0.6800879,0.7890934,0.8373649,0.57275295,0.34677443,0.27390265,0.16916396,0.043681134,0.66432023,0.68273264,0.41803044,0.2990505,0.2605539,0.37695247,0.4574636,0.32579625,0.11777049,-0.03129511,-0.15359348,-0.16267626,-0.18107812,-0.008399632,0.02155492,-0.20642,-0.31566584,-0.3858734,-0.27276272,-0.1516118,-0.36710948,-0.48092607,-0.47855633,0.83365333,0.8791146,0.50381243,0.33254075,0.12584221,0.015380364,-0.045003254,0.40424487,0.32038677,0.08928737,-0.0281411,-0.059444446,0.04447509,-0.07036549,-0.22692493,-0.1978199,-0.16301624,-0.1685858,-0.2665449,-0.4320557,-0.444381,0.6751751,0.35247013,0.08289829,0.4782653,0.85570616,0.93083704,0.9273155,0.6538436,0.7126156,0.5029783,0.115177765,-0.016612101,-0.11615324,-0.26328883,-0.3574162,-0.38154992,-0.323752,0.13304709,1.3647158,0.63245225,1.1733327,0.67725015,0.8014142,0.85740125,0.5706393
+-0.34312195,-0.15268037,-0.10567695,-0.16244413,-0.297753,-0.31669575,-0.42784625,-0.55132437,-0.6432226,-0.7024646,0.66567767,0.99173653,0.50566196,0.6839628,0.5393419,0.3434896,0.2726649,0.9599614,1.2114469,1.1680863,0.90516305,0.6037065,0.4343826,0.32478368,0.2585283,0.19711576,0.43498853,0.53542125,1.5661783,1.9990275,1.3500494,1.1490339,0.82525015,0.63695323,0.520656,0.4226606,0.34784853,0.2749029,0.45140657,0.93414676,0.611545,0.8094499,0.64436984,0.46194717,0.3220538,0.26152366,0.44327426,0.30610567,0.3338337,0.6068186,0.44240233,0.29740605,0.20155248,0.14414598,0.36254734,0.8052471,0.6145241,0.44193923,0.7935123,1.1306767,0.7817817,0.62444335,0.6451162,0.7737712,1.2711115,0.881263,0.61240256,0.47873664,0.37603056,0.27378428,0.22128038,0.13456042,0.24600174,0.74540734,0.7021042,0.42218912,0.33431014,0.23103215,0.21064189,0.090504274,0.050067384,0.009356562,-0.027101886,-0.06448361,-0.13688836,-0.2095599,0.037129957,1.5545809,0.9466914,0.60989845,0.4821242,0.5305123,0.6677724,0.47872126,0.68825996,0.70024395,0.45586544,0.36101443,0.27943757,0.31410065,0.5066906,0.34018093,0.1695713,0.08690505,0.8837594,1.153909,0.70115066,0.48981023,0.39752233,0.32782137,0.21248381,0.11435214,0.006427437,-0.10208133,-0.18028991,-0.03707354,0.34062088,0.06580716,0.030835707,-0.06593715,1.2485244,1.0666491,0.6728134,0.48365736,0.31991795,0.1904162,0.07054716,-0.050091382,0.034019005,1.32693,1.2802701,0.9247136,0.6223763,0.4797511,1.29725,1.5130475,1.6780545,1.4949253,1.1236289,1.2460277,1.2432325,2.1426191,1.3283453,0.8522178,0.69729376,0.5613348,0.46947783,0.38104266,0.34729353,0.31108242,0.24131887,0.5622972,0.7503465,0.66617656,0.6461886,0.38942868,0.2639005,0.17423834,0.1239066,0.06673038,0.019898329,-0.028635178,-0.078911915,-0.17038552,-0.2647957,-0.285856,-0.23709126,0.042662602,0.11971837,0.15695158,1.1638069,0.8672987,0.53289735,0.35980016,0.2024705,0.101573706,0.03480876,-0.044018116,-0.16103013,-0.2731621,-0.408608,-0.48828158,-0.5714865,-0.729857,-0.8130226,-0.8825227,-0.9127824,-0.89173776,-0.89118207,-0.95783913,-1.0007452,-1.0858954,-1.170142,-1.1661717,-1.1380856,-1.0142372,-0.21351938,-0.06394467,-0.2662416,-0.36752623,-0.44154984,-0.51970947,-0.22478297,0.07714668,-0.19627279,-0.3170905,-0.42358208,-0.5028779,-0.5452641,-0.5965668,-0.5920086,-0.6424706,-0.6955481,-0.7651533,-0.77609074,-0.8163851,-0.31636375,0.2730067,-0.12361033,-0.27093577,0.21231358,0.50783074,0.13118005,-0.03715111,-0.1377599,-0.28936434,-0.26239255,-0.33412206,-0.42887574,-0.51035094,-0.543452,0.69844526,0.96714354,0.6589782,0.59722674,0.7818924,1.6896852,1.0649071,0.7839657,0.60116124,0.49673152,1.3762171,1.0604846,0.74728143,0.63952494,0.5872383,1.035374,1.2365654,0.7969084,1.0210668,0.71923494,0.5910394,0.64992076,0.8367541,0.74061537,0.8536325,0.73087466,0.5178914,0.47864485,0.53123415,0.5072428,0.45754677,0.70107925,0.9840181,1.0453,0.66290975,0.5365493,1.2971436,1.1551871,1.3783464,1.1739872,0.77969116,0.6032115,0.57555467,0.5596173,0.37981892,0.7761073,0.84612995,0.5811229,0.5884099,0.669113,0.90749073,1.2073855,1.4313133,1.0956044,0.46142742,0.29950625,0.1924332,0.16697635,0.14586563,0.8728851,0.9353362,0.84116095,0.7041818,0.5457982,0.41383415,1.1349509,0.98303866,0.67381823,0.60304976,0.5017272,0.55642325,0.6033664,0.5418305,0.35972354,0.17850836,0.05175701,-0.040809076,-0.066069126,0.019187782,0.09853552,-0.055860084,0.40373,0.41462064,0.2405458,0.24645846,0.14611816,0.04496211,-0.09316558,1.1912122,1.3471217,0.8567471,0.6870714,0.81098735,0.6673138,0.46502337,1.388435,1.0275669,0.6979526,0.5604602,0.43605152,0.4703037,0.649275,0.5270944,0.47159308,0.31884277,0.21614341,0.067988515,0.22519962,0.71707773,1.258806,0.8400097,0.5748458,0.3637094,0.39429003,0.5271409,0.93383485,0.61649984,0.46353167,0.38922352,0.22868781,0.09295733,-0.06570925,-0.10840745,-0.17886586,-0.31041434,-0.33826393,-0.03143839,1.5428741,0.97733593,1.1876171,0.93764776,0.9464402,1.5047039,0.9707265
+0.29534036,0.37082562,0.4451812,0.4442746,0.46362,0.49852026,0.4518479,0.41303924,0.34547555,0.29092184,1.2029918,1.4015712,1.1613907,1.0599536,0.9268635,0.78881943,0.66049457,1.8884914,1.8153496,1.7193332,1.3222328,1.1044383,0.92588794,0.81148237,0.7427285,0.66992307,1.0181645,1.0938462,1.2764608,2.3822844,1.6552792,1.4428136,1.1837947,0.9660485,0.8543386,0.75547993,0.67590964,0.65224063,0.6518769,1.2797647,1.08947,0.9366693,0.7921344,0.69464976,0.6161769,0.67157865,0.749063,0.61934376,1.1100485,1.1313335,0.87149096,0.73260736,0.639843,0.5913788,0.5138092,1.1004789,1.4810859,1.1784499,0.87350404,0.88534844,1.7085085,1.822463,1.5187613,1.4563913,1.7311032,1.4505403,1.0846057,0.8799354,0.7726483,0.6981228,0.6393634,0.52971745,0.5180269,1.140276,1.3067474,0.97214234,0.787059,0.6517744,0.5853426,0.50485986,0.42357862,0.34974808,0.301507,0.23146121,0.13604058,0.04960647,-0.0167098,0.05521701,0.2255861,0.039819967,-0.052670043,-0.14024448,-0.21051751,-0.25020036,-0.30326056,-0.34961045,-0.37215453,-0.40483806,-0.43369934,-0.49882045,-0.519046,-0.20302965,-0.16110285,-0.28778017,-0.37854183,-0.26617694,0.08071278,0.02133809,-0.18329836,-0.3123156,-0.4355086,-0.5266247,-0.6164677,0.0071694963,0.61120224,0.33938313,0.1668397,0.19801791,1.4828722,1.023303,0.73059505,0.60410345,0.41288537,0.26311153,0.11504422,-0.013775725,-0.1392374,0.54688513,0.626445,0.4999879,0.41054687,0.1727243,0.017627839,0.035851885,0.5133763,0.9971361,1.098584,1.6024675,1.366032,1.6060879,1.4491916,1.2597678,1.2331963,1.1466496,1.0961041,0.8579648,0.6212773,0.5287484,0.4202386,0.5859376,0.63811135,0.40487173,0.25229988,0.25860846,0.30871105,0.14107873,0.025649477,-0.058887977,0.5556557,0.66092443,0.387053,0.23691018,0.12733877,0.054696444,-0.057171103,-0.15904683,-0.26351562,-0.37765023,-0.42987406,-0.42638838,0.024573755,0.31323767,0.029447291,-0.13658519,-0.2621682,-0.33661568,-0.38380188,-0.45754898,-0.5260717,-0.5840857,-0.7035452,-0.722158,-0.80474776,-0.91155875,-0.9689595,-0.9925475,-1.0363905,-1.0233866,-1.0307586,-1.0626532,-1.0833004,-1.1565328,-1.2393852,-1.2984629,-1.2475547,-0.2947455,0.9057442,0.49533463,0.28864065,0.17952608,0.10629581,0.019838069,-0.014782134,0.0149936415,-0.115312666,-0.20853311,-0.26455343,-0.3462109,-0.4362986,-0.51137096,-0.5807257,-0.6143311,-0.6597023,-0.7411492,-0.7459163,-0.7706441,-0.7467924,-0.61141527,-0.7104452,-0.8167069,-0.4575951,0.17873108,-0.11533435,-0.22186394,-0.3506449,-0.44932806,-0.46139556,-0.5569061,-0.5990156,-0.6807396,-0.68106866,-0.33014202,0.2667695,0.10183497,0.05818527,-0.007431481,1.2904282,1.1305668,0.8193442,0.6886308,0.5963789,1.4707994,1.2375649,0.91205996,0.75217694,0.6751069,1.3541079,1.4369814,1.165429,1.5358722,1.1955833,0.95243716,0.80169207,0.7956834,0.6440508,0.59527594,0.60216725,0.55424714,0.48247218,0.41371205,0.41971242,0.4882226,0.48441243,0.6681174,0.5004167,0.30635506,0.4177987,1.7605064,1.2950933,1.183736,1.61471,1.2011389,0.9707284,0.8061507,0.71175903,0.64991903,1.0284035,1.088506,0.87305343,0.76075494,0.73839843,0.8203864,1.0320997,1.223632,0.7642877,0.51931673,0.46852612,0.43758708,0.45636618,0.43086013,0.9598906,1.6558766,2.1227496,1.4880149,1.1346805,0.94819164,1.4987814,1.3199996,0.99525285,0.91714233,0.78941786,0.72274125,0.68561494,0.6301255,0.53417695,0.4603029,0.42620865,0.63012946,0.64173645,0.50788176,0.8731094,0.8011436,0.63360786,0.54543483,0.48753595,0.43988615,0.41387498,0.3771083,0.24892347,0.973699,1.0492939,0.7793317,0.67526436,0.63446736,0.5581393,0.5911585,1.3403547,1.1459043,0.8563025,0.7530117,0.63960755,0.55089295,1.5593755,1.2608968,1.0088706,0.80704767,0.6717635,0.5669382,0.6818509,1.0442142,1.1469584,0.86488676,0.66397417,0.5664866,0.84210724,0.96945775,1.0666862,0.8644402,0.6859485,0.59925056,0.5683342,0.49406886,0.44093573,0.36843103,0.32342005,0.29337883,0.23628213,0.31044227,1.5156679,1.1736767,1.000769,0.8323318,0.9238646,1.0164266,0.78407806
+-0.23701607,-0.30501515,-0.4752204,-0.62670016,-0.79293764,-0.8430617,-0.8875537,-0.98627704,-1.145506,-1.2665287,-0.8895209,0.55190355,0.014622342,0.16775721,0.035458263,-0.25606441,-0.40004027,0.5722201,0.6760716,0.672434,0.43394357,0.2090687,-0.11415808,-0.31972268,-0.45298505,-0.57446855,-0.069823846,0.20676957,0.0767654,0.9042872,0.48372447,0.4168452,0.20103511,-0.07658224,-0.21125452,-0.32690787,-0.45617968,-0.57035357,-0.66136146,-0.72801536,-0.829375,-0.87557006,-0.96514064,-1.0558549,-1.1487013,-1.17664,-1.1324452,-1.243372,-1.1392834,-1.0737028,-1.1558986,-1.2777797,-1.3336028,-1.3982229,-1.4022896,-1.3190104,0.46983665,0.6567817,0.032012757,-0.22304124,-0.407497,-0.022724073,0.5110224,0.6202955,0.2645627,0.0005376078,-0.18302345,-0.34479934,-0.5230812,-0.65099,-0.77155346,-0.8508866,-0.6108552,-0.20002656,0.29748964,-0.1500353,-0.39636397,-0.5431905,-0.14078557,-0.020301085,-0.2702467,-0.38346517,-0.48550808,-0.6109464,-0.73838675,-0.857098,-0.91480696,-0.8796519,-0.14469643,-0.3574097,-0.5894943,-0.76600444,-0.9188,-1.0035843,-1.0810148,-1.1605325,-1.137673,-1.2331839,-1.3010104,-1.3962895,-1.4950837,-1.5330117,-1.6024671,-1.6240838,-1.6789796,-1.778389,-0.9955376,-0.6122563,-0.8857747,-1.0485344,-1.1822232,-1.343882,-1.4702042,-1.5474312,-1.5712517,-1.0880852,-0.68774474,0.59570706,0.7531452,0.31167823,0.030047122,-0.21135403,-0.41472015,-0.5963702,-0.7512863,-0.8844636,-1.020448,-0.98301363,-0.81322676,-0.10390456,-0.22622146,-0.5354548,-0.3236218,0.0055016465,-0.24477394,0.22174938,0.8069085,0.78219235,0.8812865,0.5114718,0.630253,0.42606047,0.1923161,0.13942619,0.113683686,-0.0948838,-0.261747,-0.39062196,0.013202969,0.75320816,0.26680055,-0.033435,-0.2523764,-0.43115836,-0.52727664,-0.63463295,-0.746147,-0.578712,-0.06990242,-0.25322223,-0.4511747,-0.5748463,-0.39727223,0.658361,0.060290728,-0.20201524,-0.39701003,-0.546502,-0.64576286,-0.70389736,-0.7709802,-0.8606714,-0.93999267,-1.0303417,-1.1081425,-1.1540539,-1.2131339,-1.2755371,-1.3185046,-1.3444097,-1.4375246,-1.5158994,-1.554157,-1.6883047,-1.7637146,-1.819982,-1.8585258,-1.8476541,-1.8751603,-1.9271278,-1.9719114,-1.9947729,-2.0609112,-2.1007352,-2.0742488,-2.0476184,-1.4655983,-0.86875236,-1.0676441,-1.1937289,-1.2582153,-1.3208585,-1.3256292,-1.1079159,-1.1731571,-1.2762442,-1.3590124,-1.4325624,-1.4956968,-1.5471172,-1.5959988,-1.6272112,-1.6543748,-1.7083831,-1.7290959,-1.7223914,-1.7412906,-1.770856,-1.844326,-1.8539451,-1.5533352,-0.980523,-1.1283405,-1.1750628,-1.29918,-1.3764534,-1.3799723,-1.4289216,-1.478312,-1.5581392,-1.5721071,-1.3621209,-0.6953395,-0.8735604,-0.9288587,-1.0262986,-0.036367025,0.121380076,-0.2878819,-0.41817805,-0.5167108,0.03265283,0.34643006,0.01206677,-0.26380116,-0.35527152,1.3555304,0.70145553,0.6953652,0.36697716,0.029478718,-0.09859154,-0.2145319,-0.1809133,-0.25782314,-0.38908234,-0.43465373,-0.46091703,-0.524509,-0.54647386,-0.61508954,-0.39514744,-0.37019864,-0.19920248,-0.37716258,-0.6091081,-0.62714833,-0.69360614,-0.7694804,-0.7882184,-0.77493304,-0.78866494,-0.8367299,-0.7918045,-0.6741371,-0.55758256,0.09302203,0.19953294,-0.11735262,-0.18302022,-0.14261119,-0.041677948,0.1400056,0.2019958,-0.20992601,-0.43420607,-0.53029114,-0.6017611,-0.63401353,-0.6591161,-0.5341817,0.15930878,1.0885068,0.7583329,0.24834426,0.16857418,-0.009507995,-0.26255986,-0.32930797,-0.34467095,-0.4102387,-0.42515096,-0.39681327,-0.4437132,-0.5429024,-0.6587013,-0.73861533,-0.7641983,-0.7779833,-0.72389823,-0.62025595,-0.6982249,-0.84925115,-0.9251057,-0.95222914,-0.9256519,-0.98034126,-1.045426,-1.309156,-0.43206,0.021511335,-0.35467488,-0.4927535,-0.5940919,-0.7360672,-0.55456173,0.34102362,-0.14021453,-0.42435735,-0.56678915,-0.6529614,-0.70164543,-0.7650989,-0.8477308,-0.9373336,-1.0012988,-1.0386181,-0.99473333,-0.58880633,-0.116773784,0.389472,0.016665328,-0.2981759,-0.49154222,-0.59049904,-0.2810448,-0.2911628,-0.40435773,-0.52872396,-0.5840064,-0.6890013,-0.81540376,-0.9371495,-1.0176708,-1.0799305,-1.1549312,-1.2471653,-1.3158643,0.10036406,0.058736864,-0.28697,-0.46290818,-0.4525093,-0.124181494,-0.43144163
+-0.059364792,0.31953532,0.41273394,0.44541314,0.43058702,0.40633655,0.34956095,0.2549954,0.15561372,0.11099449,0.13098489,0.15169378,0.8917923,1.340841,0.9826797,0.82675934,0.7383807,1.9500704,1.6579838,1.8943003,1.9272938,1.4236507,1.1588826,1.01528,0.93217814,0.8871,1.1199455,1.1866024,0.99642015,2.2075257,2.00105,2.2631805,1.4590572,1.2128263,1.0807455,0.97476137,0.88841885,0.8249451,0.79273695,0.77563405,0.7243984,0.70125353,0.7543304,0.7436688,1.0057083,1.3105519,1.1215951,0.92365575,1.0390378,1.4280413,1.0888999,1.3169909,1.1809213,0.98329544,0.8729993,0.8542243,1.914591,1.6950624,1.247443,1.0209562,0.90875363,1.0275801,2.106787,1.997427,1.9131792,1.4840286,1.753552,1.542866,1.2100838,1.0476341,1.0603316,1.2598267,1.44701,1.7686086,1.3983213,1.1005687,0.96120954,0.86857903,0.9576585,1.1112815,1.066261,0.9773557,0.89667356,0.82540697,0.78471625,0.93174595,0.8888056,0.7300391,0.73396695,0.75079536,0.69789296,0.563902,0.48107493,0.45487696,0.40851426,0.36622548,0.35910946,0.32698235,0.297229,0.31400725,0.5932021,0.86094093,0.59156966,0.5089572,0.46555954,0.37187243,0.5568122,0.68354654,0.7862633,0.88921535,0.61485815,0.4388789,0.33115786,0.26197428,0.21286018,0.5290374,0.98502445,1.0857242,1.2405999,0.9528036,0.66816103,0.51750654,0.42680305,0.33079046,0.23630516,0.16347279,0.10443644,0.08250217,0.32087794,0.5891513,0.3833527,0.43893763,0.51077324,0.42747867,1.9181402,1.9518595,1.7292554,1.940284,1.8051196,1.7437847,1.590512,1.3912866,1.2888916,1.6021986,1.6659021,1.2459943,1.0138245,0.9256356,1.2498312,1.6657369,1.5385098,1.1906722,0.97463584,0.81555617,0.6823528,0.5612442,0.65936077,1.2012863,1.2759686,0.9772948,0.84999835,0.7966125,0.7117105,0.59517515,0.5290441,0.48434973,0.40155032,0.33787146,0.37917775,0.4397227,0.34931195,0.26225266,0.2241178,0.1606452,0.11074297,0.09832169,0.08500068,0.06993291,0.2042454,0.3480588,0.29582953,0.14325516,0.062383655,-0.049530987,-0.1364679,-0.17006369,-0.21100004,0.039672945,0.06769079,-0.079512164,-0.14804058,-0.19199646,-0.24477474,-0.2997571,-0.2748422,-0.29143798,-0.30701727,-0.321822,-0.33749235,-0.3330524,-0.33879313,-0.3434702,-0.31215253,-0.15661152,-0.2672249,-0.30756974,-0.35111195,-0.36930063,-0.37515268,-0.4046058,-0.4228779,-0.41638464,-0.43610945,-0.46124658,-0.4405441,-0.44763988,-0.46129942,-0.5001342,-0.5389619,-0.5393564,0.08768262,0.5306354,0.2108148,0.09779498,-0.01686034,-0.09001337,-0.13455875,-0.16331433,-0.20946877,-0.23249574,-0.23274978,-0.19867265,0.26804554,0.17628734,0.06619318,-0.0077985786,0.5867009,0.7685611,0.43874404,0.34185436,0.28738853,0.54502666,0.76712644,1.1306218,0.8497141,0.70826167,2.4715104,2.0236106,2.108923,1.4480968,1.1546423,1.2705231,1.0981345,0.9676994,0.8925116,0.90600395,1.0937378,1.0535558,0.92703336,0.8186621,0.82069236,0.9474718,0.7517994,0.7679492,0.70259875,0.6580338,0.6564639,0.65003276,0.6500616,0.6449956,0.64810693,0.59387517,0.5981374,0.5417545,1.3170357,1.3277516,1.5810003,1.3547308,1.0796139,0.9864011,1.2461975,1.1611323,1.2872584,1.2329458,0.910679,0.81213003,0.7702395,0.7432234,0.72741276,0.70431364,0.8226016,1.5249163,1.5857772,1.9062628,1.4265993,1.5347817,1.4900005,1.0545363,0.9500392,0.90520996,0.8452805,0.75449574,0.7161432,0.64331377,0.6255199,0.5861527,0.59124786,0.70077014,0.9222567,0.7925978,0.70729613,0.67558765,0.65735006,0.63020086,0.629454,0.5588491,0.581532,0.5794292,0.5775827,0.9698801,1.1855417,0.9180883,0.9593062,1.0748355,0.9068101,1.1599517,1.532141,1.1042421,0.9386368,0.84820193,0.7722837,0.6714577,0.6702815,0.6530929,0.6326606,0.6002183,0.52007216,0.48883992,0.6687772,0.74605626,1.1845227,1.1981215,1.0352511,0.9982636,1.1570978,1.1494923,0.95104676,0.84560335,0.7509828,0.69328946,0.67887795,0.63426197,0.58344245,0.5363605,0.50958025,0.49814045,0.47053546,0.45290267,1.6396487,1.3464304,1.0928771,0.97516775,1.8165187,2.0171022,1.3574874
+0.11190081,0.42316756,1.1646295,1.362577,1.6242226,2.0611176,1.9365249,2.0127254,2.0144768,1.9425495,1.8009365,1.7763176,1.6381826,1.3416507,0.5310366,-0.21859254,-0.5786821,0.13677412,0.004569683,-0.16461399,-0.10063115,-0.30662823,-0.19807164,-0.11256948,0.54675436,0.22878985,0.008501146,-0.1092964,-0.2271977,-0.3872411,-0.49022278,-0.5517118,-0.5680611,-0.6680935,-0.67309344,-0.69945407,-0.7509204,-0.7981542,-0.8295815,-0.8366852,-0.750618,-0.57128567,-0.65935314,-0.7273977,-0.5289581,-0.4351739,-0.5599204,-0.66678923,-0.7626854,-0.791092,-0.7969475,-0.8509066,-0.87085295,-0.6798377,-0.602907,-0.6774478,-0.46753117,-0.007190559,0.33928362,0.09579846,0.11894244,0.36813176,0.16085778,-0.04191668,0.37605408,0.5203898,0.5213407,0.22080998,0.030034129,-0.1035907,0.20665976,0.23344935,0.1409796,0.85616106,0.34820592,0.5436432,0.34375155,0.12019658,-0.011645261,-0.010970298,0.5331551,0.209325,0.03596952,-0.020523775,-0.17161559,0.48965514,0.7784724,0.40725833,0.15911715,0.16213511,0.37078828,0.15211622,-0.029892113,-0.15332752,-0.27301687,-0.15554434,0.04879913,0.1645355,0.8653151,0.454526,0.15226649,0.28670934,0.37433285,0.42939526,0.40061685,0.18272747,-0.009400006,0.093490675,0.07421924,-0.09733321,-0.19531776,0.4704466,0.32672957,0.08646576,0.29167867,0.17558576,0.56300694,0.42255265,0.19305854,0.032677736,-0.1243518,-0.23486812,-0.3330997,0.5236254,0.35496506,0.674645,0.4656139,0.20456393,0.029133793,-0.1309895,-0.1479364,0.09339057,0.1242194,0.030114967,0.17986909,0.058283594,-0.11822192,-0.2164974,-0.3021636,-0.3954131,-0.42206037,-0.285873,-0.20220914,-0.37799937,-0.45860156,-0.28044683,-0.21122158,-0.35354793,-0.4781697,0.017022353,1.1006306,0.5246696,0.28508347,0.099617854,-0.07199776,-0.22698422,-0.32997566,0.51131505,0.6235805,0.27219513,0.8016381,0.57350296,0.3096112,0.075944334,-0.038759436,-0.11065304,-0.23745112,-0.33545962,-0.20745496,0.01642676,0.010660227,-0.05767176,-0.19804446,-0.25943884,-0.29727829,-0.38700926,-0.36549032,0.3769193,1.2613702,1.3076231,0.53267217,0.31498802,0.106906995,-0.019682381,-0.10487847,-0.22808634,-0.33694425,-0.23556565,-0.26305598,0.46599883,0.42299166,0.100549474,-0.053296175,-0.15642077,0.164508,-0.019710924,-0.1504832,-0.19406377,-0.11450297,0.35456204,0.2656077,-0.015819084,-0.18365031,-0.2603693,-0.27408051,-0.18524086,-0.20143461,-0.22188365,-0.15395391,-0.17249662,-0.22908482,-0.25875682,-0.26765645,-0.16202076,-0.01895643,-0.17126401,0.009174358,-0.015683759,-0.10191052,-0.1762553,-0.26734874,-0.33658442,-0.36472476,-0.3477425,-0.45124468,-0.3701985,-0.349388,-0.30173737,-0.15072308,-0.06794822,-0.114048585,1.1218543,1.0594027,1.2223549,1.7323053,2.289298,2.8386073,2.9212632,2.9980068,3.1405106,3.2834334,3.461483,3.5581837,3.4712718,3.3387682,3.433226,3.471209,3.5990849,3.6161914,3.7489038,3.8207815,3.8099124,3.9108434,3.8633595,3.8481638,3.8768644,3.8847814,3.8763616,3.8322253,3.8513613,3.9055696,3.896129,3.8900874,3.91706,3.9081364,3.8632643,3.8575885,3.9309952,3.9322836,3.924533,3.9567943,3.9089768,3.9189262,3.9345276,3.9077845,3.917302,3.9490924,3.9639783,3.9827008,3.9731374,3.9648466,3.96873,3.9438438,3.935967,3.9615402,3.9640598,3.9438753,3.9311755,3.9230733,3.905987,3.8915896,3.8961835,3.87954,3.8766897,3.90732,3.954875,3.9702473,3.9582844,3.8879485,3.9525175,3.9335456,3.9076958,3.9394748,3.9172373,3.8973196,3.8993883,3.896283,3.849123,3.8385317,3.8828454,3.860559,3.9519887,3.949584,3.903788,3.8776777,3.905221,3.8639665,3.8423264,3.8378105,3.8331687,3.9278293,3.88373,3.8665607,3.8569784,3.8958273,3.8961575,3.859858,3.8534772,3.817883,3.9055016,3.8795352,3.9031549,3.874377,3.8611448,3.8877106,3.8825583,3.8168602,3.7928371,3.8009753,3.8476536,3.9140673,3.83559,3.8400974,3.8042397,3.8014843,3.8258672,3.8179624,3.797091,3.7776928,3.7666032,3.832541,3.778833,3.8012826,3.7531035,3.7783685,3.7782183,3.8111334,3.7735229,3.7020612,3.7438731,3.6527774,3.5541105,3.385482,3.244384,2.9704866
+1.4940485,1.8518353,1.8585691,1.7148322,1.5576097,1.7288427,1.2552469,0.9272494,1.1034517,1.0553551,0.6213147,0.4597627,0.31223416,0.15750091,0.11282873,0.09740947,0.09758489,0.10236801,0.11405383,0.32106242,0.4223288,0.42710513,0.3185587,0.48061693,0.9457629,0.84299594,0.6511967,1.082845,1.2688017,0.839241,0.6448605,0.5428885,0.46458977,0.34935477,0.3143645,0.32000437,0.28603113,0.2056876,0.12361325,0.5713798,1.1388462,0.9265309,0.92132205,0.7401302,0.5881388,0.52108115,0.37577322,0.30683059,0.24969147,0.2268308,0.21531315,0.2184966,0.17476563,0.26702297,0.54985005,1.1288695,1.0628943,1.316081,1.0455136,0.853078,1.0936443,1.1806859,0.9175039,0.8004898,1.523891,1.1946625,1.1124063,0.9863746,0.8110937,0.7697185,0.9703928,0.96641827,0.91172576,1.6731393,1.3132757,1.5329044,1.2483335,1.0490227,0.9649645,0.8368058,0.8801981,0.7653949,0.71578455,0.84135795,0.735651,0.69773656,0.860675,0.76815856,0.688161,0.63137853,0.8253921,0.9923676,0.7766099,0.7331512,0.67205095,0.67133534,1.5753398,1.390581,1.1476876,1.0267925,1.0150204,1.0223043,1.232429,1.1173819,0.9729972,1.0376598,0.8803408,1.224791,1.078846,0.9566929,0.93402624,1.1119695,1.0436854,1.1620295,1.4517461,1.1636162,1.0431175,1.1223978,1.3382604,1.1321888,0.9876429,0.953317,0.90318435,0.85708827,0.8247764,1.0847175,1.2067914,0.9942869,0.925672,0.8758426,0.8278488,0.822925,1.7483015,1.537682,1.2919691,1.1275914,1.0388112,0.97227263,1.2642493,1.1203,1.7689941,2.0604153,1.5490615,1.2504603,1.1261954,1.5287758,1.2453705,1.1065954,1.1360412,1.072059,0.99762154,1.0307708,0.9130312,0.8507457,0.78436446,0.72431713,0.7063337,0.91437745,1.677372,1.7610121,1.3052137,1.3030877,1.2402139,1.0721481,0.97108006,0.9720079,0.9007597,0.84762573,1.3293093,1.2227068,1.0320623,1.0174482,0.9826585,1.5672398,1.9781687,1.5761552,1.360843,1.2779951,1.1461422,1.1256735,1.106332,1.016161,0.95244384,0.9112705,0.8241345,0.75757605,0.73144656,0.84585994,0.8367466,1.3654959,1.1493969,1.0007665,0.87806165,0.88303053,0.8342668,0.73160774,0.67763793,0.65938234,0.6261211,0.88000095,1.4521871,1.0973756,0.9699627,0.91963047,0.85003483,0.7981415,0.77398455,0.73631203,1.4507495,1.4164197,1.128126,1.1015433,1.1062242,0.9873173,0.90745926,0.8626363,0.82213724,0.79492915,0.7685358,0.73266363,0.6912737,0.672143,0.6739423,0.663455,0.64662784,0.726713,0.7856905,0.7280658,0.6952032,0.6946573,0.6764134,0.9241444,0.7680441,0.78381956,1.0831345,1.3015785,1.749543,1.7145798,1.5318837,1.4791135,1.5853004,1.5626764,1.5405353,1.2264392,1.0714283,1.0778226,1.2356324,1.4978116,1.7954828,2.0404897,2.1732397,2.2848926,2.3471344,2.4459748,2.6774616,3.0105343,3.3091908,3.5076644,3.6363053,3.72298,3.7600195,3.8923101,3.879051,3.8367596,3.834258,3.8305192,3.866969,3.9318392,3.8818145,4.0791802,4.0932055,4.028872,3.9900088,4.0327864,4.04214,4.0466924,4.017269,4.073468,4.096013,4.0530076,4.0501413,4.0320187,4.0725026,4.0274234,4.026289,4.052766,4.03728,4.072343,4.0492954,4.0664325,4.0536423,4.1684113,4.0867095,4.101177,4.162806,4.1934805,4.337607,4.379247,4.3560166,4.250063,4.2956147,4.2394066,4.2046537,4.174161,4.126679,4.120336,4.1592216,4.1881013,4.1632605,4.1271753,4.1059895,4.1511,4.1528006,4.1833496,4.177082,4.1469574,4.168435,4.241691,4.2364197,4.3240056,4.276891,4.2260537,4.275382,4.3964596,4.470208,4.2527122,3.084425,1.5856857,1.0060234,1.2113235,1.6021392,1.9729836,2.4409106,2.7993484,2.9983828,3.0829072,3.5098953,3.759392,3.9147463,2.9088268,2.0536318,1.0186367,1.0425563,1.5973885,2.0609694,2.3102555,2.4127526,2.5881336,2.7045574,2.8257115,2.916843,2.9267793,2.4576712,1.6031308,1.2235181,1.2944018,1.064411,0.8854388,0.9003886,0.6602381,0.6370634,0.5777436,0.37625754,0.2874617,0.3804278
+1.6735055,1.5619438,1.3285143,0.9300349,0.8308934,1.0187436,0.7070986,0.54983324,0.6309757,0.6606579,0.45372713,0.3439886,0.32202822,0.141124,0.043125797,-0.0004057102,-0.028687667,-0.0480677,0.38121325,1.0256767,0.8120776,0.6417724,0.4671384,0.44491804,0.43374717,0.36028135,0.6143382,0.89387375,0.7446031,1.040029,1.2686383,0.9650586,0.6944798,0.5633796,0.5102714,0.3999736,0.344481,0.31599116,0.3258292,1.2117392,0.89363545,0.75039274,0.8958069,0.7843939,0.56851625,0.46507496,0.42303365,0.3856158,0.29431728,0.28262174,0.1981449,0.15614636,0.13369136,0.38236794,0.42440128,1.2380394,0.9939574,1.1337388,1.0905405,0.6923412,1.0193915,1.276017,0.86577207,0.68162435,1.4449973,1.2329987,0.86884606,0.8091054,0.67773783,0.9264332,0.9525273,1.148164,1.3491337,1.1157372,1.2949605,2.0901961,1.4279485,1.2032155,1.027523,0.8712253,0.73160976,0.6684693,0.68222195,0.97545314,0.7259645,0.63469636,1.1347259,0.92857176,0.7919514,0.72693205,0.75249636,0.815588,0.6056294,0.51925725,0.4681151,0.38688222,1.1887257,1.4476606,1.1877358,0.9890444,1.0777669,1.1896676,1.3420982,1.1016164,0.87783194,0.8446474,0.7083694,1.9845605,1.3359046,1.2410852,1.2448671,1.0682673,1.0445495,2.1050584,1.6904012,1.4622704,1.2775662,1.0865102,1.048978,1.4598248,1.2196492,1.0775096,0.84591514,0.8567902,0.75366306,1.0650016,1.6198987,1.2567745,1.0526114,0.9447641,0.8582383,0.69725716,1.2059666,1.5572174,1.479003,1.1666927,0.99706006,0.9013386,1.2395678,1.1087573,1.3411119,1.8587575,1.273421,1.0998318,0.93531764,2.494575,1.6440221,1.3371432,1.3407646,1.1222566,1.030991,0.9796051,0.91822183,0.8369292,0.7295281,0.6088604,0.5530495,0.4774136,0.5992388,2.0751653,1.3873317,2.2215242,1.7995871,1.3489332,1.0722909,1.3686988,1.2654827,1.0144249,1.8650023,1.4224998,1.1509115,1.0114143,0.9142997,0.8341895,2.266563,1.6205183,1.277675,1.244739,1.1903161,0.9711592,0.9956701,0.867378,0.86683756,0.91211337,0.7765671,0.6464961,0.5914203,0.50762475,0.419963,0.57863855,0.48462063,0.40220615,0.3364639,0.49909365,0.73804486,0.63868123,0.4782772,0.447307,0.32785922,0.35393715,0.31577274,0.32540932,0.28361425,0.26629665,0.24020971,0.19472918,0.22533141,0.22011547,2.007009,1.4959025,1.0883641,0.9013735,0.93433654,0.78228056,0.6944133,0.72316957,0.6395261,0.5868155,0.56261885,0.49528146,0.45425907,0.44645756,0.4525402,0.45565078,0.44550124,0.50725657,0.5602901,0.5277208,0.49861228,0.487467,0.46372557,0.46436366,0.37325686,0.45504484,0.69146526,0.8151098,1.5288763,1.5239294,1.4266114,1.3310134,1.3207018,1.5543653,1.5527993,1.1929036,1.0407093,1.0133827,1.094387,1.4080039,1.5712357,1.7554922,2.0904827,2.3381548,2.4935813,2.6271253,2.8293002,3.0029604,3.152067,3.2483172,3.3320365,3.4931037,3.6297433,3.6870723,3.6356907,3.6605735,3.6903524,3.795081,3.9079897,4.099206,4.100926,4.312922,4.339888,4.2719707,4.240607,4.317973,4.313738,4.376256,4.40182,4.47622,4.4705095,4.402027,4.4178944,4.3885136,4.3497496,4.3948383,4.479274,4.572827,4.5643826,4.5769024,4.521948,4.4884224,4.4387236,4.557239,4.4709826,4.484299,4.6287622,4.6058865,4.625028,4.699692,4.622182,4.5418415,4.629443,4.5576596,4.587038,4.5722065,4.5109296,4.4567795,4.5608997,4.594572,4.513055,4.452533,4.4639864,4.505331,4.5138187,4.6312284,4.5590873,4.4995823,4.5581484,4.6408234,4.526138,4.557156,4.576872,4.529331,4.6029015,4.681628,4.4737654,3.318745,1.9893332,1.2357137,1.0188568,1.3700087,1.5755315,1.883007,2.2199848,2.5885825,2.568997,2.7705665,3.1444044,3.4158106,3.7044415,2.2723856,1.5957823,1.0058954,0.8721375,1.1815829,1.4708432,1.6704425,1.9058739,2.185522,2.3998184,2.5003498,2.6314313,2.6439133,2.2389443,1.5663325,0.97806525,0.91352534,1.1442856,1.1635659,1.3536243,1.5246118,1.2055572,0.96017945,0.9791212,1.4080808,1.1773119
+1.3332003,1.343648,1.2352414,1.0713305,0.96901524,1.9843321,1.8286192,1.6697687,1.498054,1.4246231,1.4159188,1.2253861,1.0629714,0.8869882,0.77480876,0.70424414,0.6642483,0.62358177,0.991475,1.3555257,1.4599695,1.3355632,1.2630721,1.1675673,1.09344,1.0320257,1.1596825,1.9035984,1.8361281,2.0586805,2.5039363,2.244889,1.8962575,1.7469611,1.6374274,1.5074139,1.4458598,1.3752229,1.8934915,2.5688405,2.1214654,1.9546266,2.0026054,1.8989121,1.7351947,1.6207843,1.5440149,1.4120117,1.3279675,1.2623423,1.1612902,1.0771846,1.0082166,1.0531919,1.186958,1.5085486,1.5464016,2.2806458,2.0370407,1.7840922,1.6273214,1.9433069,1.7208537,1.5805756,1.8514726,1.7613446,1.547782,1.4677215,1.3666196,1.3415158,1.2554083,1.5068454,1.3782752,1.2697527,1.3018854,2.0329232,1.6047224,1.426074,1.2421904,1.1680858,1.1099038,1.0810012,1.7904265,1.9196495,1.661446,1.5298166,2.0188081,1.8455813,1.6503118,1.5635345,2.2482693,2.2357948,1.8847691,1.7414162,1.6851509,1.618218,1.9246612,2.111855,1.7920756,1.6581904,1.8761927,1.9800181,2.2319746,2.2739158,2.0776374,1.8367082,1.6978201,1.9317551,2.2217424,2.1472535,2.1409268,1.8719505,2.122895,1.9821064,1.8203714,1.6470507,1.5805126,1.4865248,1.4417107,1.5390437,1.4830706,1.3499882,1.1967729,1.282781,1.2324861,1.0993091,2.0982924,1.8887424,1.6735597,1.6159577,1.54727,1.3824368,1.6856036,2.8410106,2.4123526,2.0703049,1.9063561,1.8354673,1.8940605,1.7709887,1.6792034,1.9102707,1.8026346,1.6420666,1.482372,1.6179184,2.1845818,1.9599214,2.131995,2.058944,2.1186867,2.0856574,1.8327862,1.6898775,1.578079,1.4901993,1.4297824,1.3114316,1.1771108,1.6148033,2.4140494,2.1204503,2.2139382,1.8481718,1.6607001,1.7783648,1.7596189,1.607184,2.1005068,2.0364928,1.8101842,1.6842378,1.484082,1.4125766,1.4258671,2.289348,2.1047897,1.871124,1.7352955,1.6446035,1.6100491,1.5382969,1.4855406,1.4890511,1.4666873,1.3622577,1.2116789,1.2007526,1.1382576,1.2958736,1.2450708,1.1464453,1.0859108,1.5067539,1.516123,1.4736758,1.341582,1.2908443,1.4305804,1.417573,1.2968259,1.1856322,1.1316158,1.0835406,1.058128,0.98904896,0.9273909,0.89237314,2.0007043,2.027547,1.7389868,1.5964018,1.5498123,1.4700458,1.395349,1.8028461,1.7868922,1.583086,1.5363263,1.4322077,1.3476547,1.3103352,1.258907,1.3101718,1.2074726,1.2929063,1.32349,1.2913696,1.2192101,1.1716207,1.1578019,1.2106712,1.1372423,1.1235578,1.1849823,1.1751823,1.4848006,1.5306376,1.5526857,1.5472522,1.5744245,1.8841606,1.9030724,1.7476912,1.7008333,1.6741014,1.6095455,1.7933433,2.012509,1.9959702,1.9390378,2.0594554,2.1965575,2.2666178,2.3512638,2.4470897,2.537792,2.5709875,2.6073496,2.6214705,2.67155,2.7230315,2.6758728,2.703494,2.7442038,2.7717783,2.8123517,2.8732421,2.8973033,3.328855,3.308121,3.369823,3.4617968,3.4782948,3.5470245,3.6076705,3.68689,3.984013,4.050906,3.9873295,4.006964,3.9970007,4.011087,3.971137,4.083149,4.2265286,4.3752565,4.3925104,4.366537,4.3148775,4.436316,4.642785,4.540209,4.596495,4.8390894,4.758492,4.5856323,4.43495,4.2456255,4.110426,3.8552322,3.698982,3.7037039,3.758741,3.760881,3.8178911,3.84269,3.9333637,3.90731,3.8244927,3.895395,3.9899693,4.250858,4.251206,4.1506042,4.10915,4.2894993,4.383933,4.172516,4.1300287,4.045764,3.8341615,3.4002008,2.5123594,1.8706392,1.6998715,1.7332997,1.5906113,1.561398,1.5620505,1.4412055,1.3943008,1.3695633,1.3972379,1.4537108,1.3433182,1.3745824,1.2985995,1.2344141,1.1782023,1.7358721,1.4703302,1.2713944,1.2067869,1.1394285,1.1698647,1.4186578,1.7106042,1.9686828,1.9829884,1.9542363,1.599293,1.2721994,1.1438084,1.0681101,0.947893,0.8597671,1.1475924,1.6745154,1.6856751,1.6573068,1.5921113,1.7325532,2.2618055,2.0477538
+0.7934575,0.42441675,0.22524814,0.08075327,-0.108545184,0.47322118,0.6514144,0.4369254,0.28748918,0.53302,0.4905069,0.32197946,0.2422022,0.1186858,0.013503354,-0.08280927,-0.14207847,-0.20263562,0.4090451,0.5699991,0.78949785,0.60631305,0.34739265,0.1932773,0.079410285,0.6583087,0.726802,1.1680367,0.73244035,1.0314589,0.937337,0.7211919,0.5711845,0.45075816,0.3724855,0.26572075,0.46074933,0.5383761,1.1448898,1.087935,0.885692,0.7387515,0.7890022,0.7144723,0.53328955,0.54274005,0.81710804,0.64260656,0.45027167,0.478606,0.41436222,0.25073355,0.14722708,0.07063681,-0.015489459,0.3520064,0.669547,1.2880158,0.7021309,0.4689728,0.2735453,0.24765606,0.10253233,-0.011368979,0.39872026,0.29240578,0.075113475,0.019569013,-0.08762023,-0.16504554,-0.25333124,-0.32161158,-0.44018894,-0.561482,-0.7385643,-0.4108925,-0.56328046,-0.6461642,-0.73400617,-0.8073266,-0.9041851,-0.15719497,0.1320992,-0.09816086,-0.21462448,-0.35159427,-0.47588575,-0.6176961,-0.71486884,-0.8774738,-0.69737554,-0.078538075,-0.24228059,0.6788286,0.35138255,0.12132506,0.16340761,0.86942875,0.44414613,0.23508866,0.26605374,0.14381136,0.732008,0.6929271,0.3851511,0.23947184,0.13072063,0.009263281,-0.114350125,0.6228991,0.79196495,0.39591148,0.75605416,0.49728167,0.2789396,0.4151558,0.19674245,0.03401271,0.007835109,-0.1613254,-0.2489891,-0.38834426,-0.4797144,0.9241272,0.61197704,0.31460956,1.1816351,0.5568567,0.31942666,0.2255492,0.096946985,-0.033572417,-0.13609889,0.5915373,0.5220189,0.21524851,0.033885326,-0.005959127,-0.13116616,-0.24848585,-0.35950783,0.30009484,0.14678885,-0.1014947,-0.26392305,0.05750672,0.88302505,0.6805527,0.7416444,0.5497458,0.34633902,0.44023642,0.4341533,0.18211086,0.07264289,-0.09278272,-0.25444376,-0.41254508,-0.5112355,-0.42995158,0.5197602,0.3989775,1.0544302,0.42980546,0.22624831,0.12740384,0.26958415,0.0806116,0.24593307,0.22875158,-0.010261644,-0.15306167,-0.26580054,-0.3611801,-0.48204094,-0.58641404,-0.67215145,-0.75565386,-0.81290376,-0.89864385,-0.98501545,-1.0176381,-1.0933975,-1.1051347,-1.0919011,-1.1257669,-1.2016726,-0.9012804,0.30883446,0.82999766,0.266782,0.05673417,-0.06520553,-0.19019373,0.027718533,0.12009412,-0.059555758,-0.20098718,-0.31984022,-0.40048754,-0.51292145,-0.6282101,-0.76573515,-0.78303665,-0.8231157,-0.8931888,-0.9574687,-0.9545008,-0.6941906,-0.4259215,-0.56681526,-0.67165196,-0.7543146,-0.76259804,-0.8329387,-0.22874404,0.0649766,-0.16117261,-0.25788605,-0.34029955,-0.37479264,-0.10337509,-0.12579153,-0.2243332,-0.33573672,-0.30295,-0.24399506,-0.31769824,-0.4043634,-0.4458343,-0.4999941,-0.5585021,-0.663499,-0.50830144,-0.31444466,-0.24330412,-0.27219313,-0.3076488,-0.32978556,-0.27575907,-0.0254124,0.32808727,0.12828787,-0.029241543,-0.09034535,-0.13845886,-0.16291894,0.37440598,0.49698967,0.5338101,0.5330031,0.7589953,1.1446233,1.2720273,1.4002175,1.4707301,1.5030302,1.6182164,1.7823405,1.841932,1.9424362,2.2008352,2.3959165,2.506937,2.5578275,2.6328769,2.6490874,2.6991606,2.6627643,2.5679042,1.6004992,1.401015,1.309597,1.2395072,1.433464,1.4739797,1.6238971,1.1299627,1.0871637,1.501302,1.7550267,2.0083444,2.1477337,2.1795902,2.3951817,2.2930412,2.2255464,2.0327873,2.0161965,2.001242,2.4718318,3.0430768,2.809242,2.9492235,2.2511315,1.0522953,0.6065773,0.43147114,0.3355146,0.4927181,0.31766838,0.2380404,0.39135087,0.58411896,0.72414464,0.6611906,0.36511052,0.15442185,0.40649006,0.7740071,1.0827501,1.002319,0.5067023,0.3686009,0.7629281,1.0785968,1.0256937,0.4340825,0.16570891,0.23735563,0.18169653,0.19894426,0.12221825,0.0037523955,-0.078622825,-0.16979691,-0.13919275,-0.1838521,-0.19869016,-0.16655578,-0.3350588,-0.2130997,-0.0877375,-0.22387724,0.0989985,-0.03440809,-0.0077404045,0.087859035,-0.084243864,-0.16299024,0.6810148,0.43513772,0.28131014,0.11362009,-0.06305629,-0.052053545,0.020820457,0.0028721727,0.2703435,0.32410848,0.169458,-0.018830929,-0.14510714,0.018588815,-0.11751826,-0.30998635,-0.36121383,0.2593015,1.2049968,1.1823301,1.0189962,0.71121085,1.0423923,1.4286244,1.1069399
+0.44368976,0.5407648,0.62522733,0.6221013,0.4818945,0.62030685,0.8670483,0.7696992,0.69968146,0.6471228,1.1926992,1.0381392,0.837501,0.6614222,0.5661334,0.46907908,0.45208815,0.36684668,0.7872857,0.95182174,0.8339083,0.8146216,0.6668049,0.56365,0.53170913,1.0661368,1.3104836,1.0574672,0.9360825,1.4940592,1.2487886,1.1640775,1.0586157,0.94398737,0.88214743,0.7873628,0.7367909,0.6892941,0.64786005,0.9106623,0.79906225,0.77971566,0.6318786,0.68486613,0.5948103,0.749974,1.7449028,1.2109128,0.9597112,0.9396636,0.93455046,0.74612665,0.65158963,0.79452723,1.0690678,0.996191,1.872195,1.610126,1.2291783,1.0474238,0.9819329,1.0187916,0.8903855,0.70075804,0.82646906,0.6829792,0.54107034,0.44915098,0.31440982,0.2885536,0.2486675,0.19672254,0.07529186,-0.07497159,-0.16909102,-0.229026,-0.3926773,-0.46224672,-0.5236563,-0.5616225,-0.5997798,0.26006827,0.49042785,0.25363168,0.062742546,-0.047493752,0.30418164,0.5392039,0.13794553,0.00093338266,0.1107713,0.25184938,0.74188673,2.4251215,1.640894,1.2040694,1.1296521,1.429172,1.9087434,1.1653174,1.0309758,0.9058229,1.0170369,1.6361121,1.3375773,0.96957874,1.0993894,1.0337155,0.8861996,0.72685933,0.6251352,0.5315869,0.68738025,0.65709597,0.46532124,1.4867331,1.109874,0.839272,0.76317835,0.57730055,0.4094291,0.39589068,1.8381472,1.9864922,1.8035626,1.2844145,1.2738717,1.0809284,0.8339831,0.7073829,0.7263986,1.1825478,1.2006216,1.2976193,1.5363834,1.0312936,0.98015714,0.89840657,0.7365344,0.616439,0.5240462,0.70546204,0.6083449,0.34610805,0.33048052,0.39623496,0.28220946,0.16378598,0.11622833,0.019202191,-0.0017670654,0.026510958,0.4647622,0.3554274,0.13730523,-0.018070232,-0.14773798,-0.19220813,-0.21017294,-0.23447455,1.3448613,1.9797981,2.6019611,1.562931,1.1159395,0.97572947,1.0765877,1.1086829,1.514454,1.3870937,0.9425422,0.81324565,0.74990153,0.67262775,0.5289365,0.3807284,0.255691,0.14386882,0.16603787,-0.017748784,-0.1279417,-0.21852247,-0.34416375,-0.41404152,-0.45267785,-0.5137896,-0.5413907,-0.27098548,0.21283118,0.16288014,-0.082364395,-0.26572308,-0.37682167,-0.42888242,-0.4957971,-0.47611907,-0.5954342,-0.59243155,-0.6219085,-0.6454743,-0.761757,-0.37560496,0.7768225,0.34107405,0.1432733,0.00020043924,-0.11031599,-0.18269593,-0.22906107,-0.28044012,-0.34567097,-0.40882614,-0.49254793,-0.5535176,-0.61451256,-0.6094123,0.52688104,0.43066704,0.15597911,0.016532365,-0.056120407,0.23068564,0.20337553,0.08673775,0.019259531,0.036836315,0.06469427,-0.00613543,-0.07612178,-0.1506954,-0.21822515,-0.27682218,-0.22877124,-0.15955761,-0.059223723,-0.028580341,0.0128509365,0.0043950193,0.044288423,0.1147982,0.050331276,-0.01720867,-0.13939875,-0.13237971,-0.101757914,-0.047104996,-0.053010102,0.46200943,0.6359438,0.63463634,0.55912787,0.7338965,1.0522058,1.2501211,1.3277512,1.2370204,1.204762,1.2212732,1.4011905,1.4204209,1.7107973,1.6423277,1.7305613,1.8163807,1.9477708,2.0593352,2.2063012,2.0736961,1.5594797,1.3928556,1.1522733,1.1165595,1.090331,1.0650773,1.1811349,1.1859918,1.1531069,0.9443765,0.9317347,1.3004242,1.6897407,1.8166609,1.8687679,1.917528,2.0870788,1.389018,1.1581122,0.88494253,1.149057,1.3720881,1.6350327,1.4709097,1.1987944,1.218849,1.1082549,0.90338063,1.0598052,1.060323,0.9361065,0.9582075,0.8773432,0.83356774,0.97043824,1.1488918,1.1445026,1.015278,0.8294985,0.77902746,0.9867213,1.2100441,1.4796034,1.1822157,0.82464385,0.75230145,0.82588416,0.99247336,0.8211875,0.66641355,0.45055732,0.45485657,0.35600302,0.35506988,0.26237786,0.17948727,0.1345434,0.07088868,0.49761766,0.5378682,0.37221798,0.30572885,0.32090104,0.2921076,0.26370984,0.12958571,1.1095042,0.8756323,0.9108244,0.80144167,0.52025163,0.43085283,1.129034,0.7655078,0.91250837,0.8275044,0.6287856,0.65792465,0.74058187,0.7683222,0.84313965,0.7810456,0.62171984,0.41790366,0.26377457,0.3952253,0.3133165,0.2056504,0.11270596,0.08077647,1.1538196,1.2961729,1.4207182,1.2378793,1.1095116,1.6022806,1.38082
+1.1752189,1.0441474,0.96805394,0.89552337,0.81009185,0.9062783,0.9626524,0.879107,0.8128998,0.7900944,1.8323548,1.4739087,1.2920805,1.1348016,1.0331339,0.9719181,0.9831314,0.9076638,0.8914477,1.00688,1.0544276,1.0007081,0.9469342,0.9150787,0.8872924,0.9973706,1.5132875,1.3311255,1.184109,1.947432,1.6749005,1.3502376,1.2762859,1.1816599,1.118787,1.0793477,1.0425107,0.97826576,0.95066,1.7087427,1.3961496,1.8640215,1.5031776,1.3386834,1.1286349,1.6483938,2.5268865,1.860873,1.5170479,1.4608495,1.4624285,1.3150735,1.2194961,1.372043,1.5479972,1.4630439,1.857354,1.5839612,1.4416888,1.3443506,1.3373834,1.3233714,1.7806883,1.6158749,1.6614654,1.4480071,1.3102809,1.2450168,1.1503651,1.1120751,1.0418934,0.99716127,1.1457984,1.4418776,1.2606896,1.1856939,1.1385852,1.1278389,1.0698743,1.0058379,0.96760285,0.92007047,0.88963556,0.8620272,1.6324382,1.3986471,1.2982945,1.3850081,1.185786,1.0671979,1.0920202,1.5030491,1.3942107,1.7934918,2.4416142,1.6941333,1.4920151,1.5388803,1.6258788,1.4305947,1.4051175,1.3492771,1.2440646,1.2593641,1.3488421,1.2799098,1.198028,1.1380917,1.0809653,1.0224878,1.0132046,0.9903854,0.9324267,0.903739,0.88500696,1.4861168,1.5879343,1.4088018,1.3021716,1.5509946,1.4202197,1.4183877,1.6010468,1.3745588,1.6750157,1.4721626,1.2765625,1.7120856,1.4653168,1.3340565,1.3436184,1.5204296,1.4262121,1.4910562,1.7809436,1.6512303,1.6688657,1.5586373,1.3476405,1.2505233,1.1976227,1.2236357,1.113718,0.9970728,1.0483816,1.1511935,1.0518153,1.0900837,1.2521805,1.1061828,1.0043079,0.99009514,1.0489542,1.0150821,0.8786444,0.82379746,0.7640927,0.72469455,0.7298294,0.7133509,0.97417784,1.3516572,1.608715,1.2550282,1.051645,0.96005905,0.94413733,1.1536975,1.7577947,2.0129437,1.6451291,1.416733,1.2434179,1.1388239,1.0357324,0.9636829,0.8985507,1.0053463,1.5392473,1.1810213,1.0078938,0.9236799,0.853796,0.77126944,0.71765506,0.6666076,0.5818876,0.8466791,0.9467157,0.7657701,0.65338504,0.534956,0.44276,0.41508198,1.1788683,1.468425,1.4149749,1.184014,0.98061824,0.8566991,0.8167591,1.2406073,1.6896878,1.3069046,1.0960091,0.93824005,0.8183538,0.75810826,0.7251785,0.6823026,0.6317248,0.58095837,0.52726513,0.5019562,0.45453912,0.42724591,0.75194925,0.76688015,0.58096886,0.48118585,0.46061826,0.5473467,0.50699675,0.46599042,0.42957726,0.4903335,0.53237045,0.4619332,0.3819626,0.34775022,0.33404806,0.36695167,0.46212238,0.511268,0.5902277,0.566847,0.73458713,0.7202942,0.65980625,0.67133236,0.6826231,0.90770084,0.90715784,0.7832225,0.7722313,0.76038074,0.7187649,0.8744864,0.86708117,0.8548863,0.8071937,0.8089596,0.97919106,1.2751421,1.3167229,0.9267467,0.8740869,0.8567883,0.99303675,1.3187487,1.3053054,1.0356389,1.369087,1.6280917,1.8304601,1.641918,1.7623456,1.3975585,1.0665319,1.4774573,1.3701444,1.2283199,1.1736865,1.1690437,1.2117391,1.0384443,0.9968555,0.986886,0.8881039,1.0603535,1.3974739,1.6207311,1.7897457,2.0075328,2.1278272,1.1654061,0.91376317,1.3388664,1.9881039,2.0766659,1.8748217,1.5407614,1.3516653,1.3659451,1.2912215,1.1367266,1.646789,1.4768853,1.3270113,1.2701577,1.122165,1.0867949,1.1556473,1.1839025,1.1038117,1.0439279,0.917996,0.8768283,0.9580713,1.1503057,1.3119159,0.9574675,0.86100316,0.79440224,0.7672554,0.9836403,0.81457746,0.74569297,0.68090004,0.7989527,0.7945596,0.80014426,0.7786316,0.7350037,0.79214096,0.7491125,1.5247691,1.4131677,1.1858354,1.0983129,0.9507583,0.9861082,1.0226984,0.9748869,1.4877181,1.1953759,1.1008613,1.0617104,0.9155365,0.891084,1.6991565,1.380165,1.4142702,1.6440625,1.4027665,1.3836563,1.5656983,1.3471992,1.293934,1.2899826,1.0758014,0.97666955,0.86816704,0.8422726,0.89347315,0.9776871,0.93191266,0.8238062,1.7994504,1.6160693,1.7593346,1.5389447,1.4139097,1.9967844,1.6931508
+-0.14149652,-0.09007986,-0.08880828,-0.15200749,-0.19353339,-0.2419274,-0.24542658,-0.3006716,-0.32675037,-0.33228907,0.0857804,0.21275426,-0.014678251,-0.088063106,-0.16524579,-0.21845935,-0.26843712,-0.35499653,-0.33530927,-0.12326339,-0.15496251,-0.24992414,-0.33637822,-0.36850238,-0.39087355,-0.39714295,0.072833285,0.41289502,0.6122477,1.378516,1.2125173,0.66110754,0.5128897,0.30377024,0.20583253,0.12941457,0.041044664,-0.015745569,0.18562107,1.6302903,0.83896995,1.1664069,0.82700795,0.5771055,0.46794242,0.3064207,0.76276696,0.6497147,0.41756928,0.6118313,0.5009023,0.3436401,0.2293383,0.8487544,1.2346604,0.84352624,0.9716412,0.8438722,0.5775406,0.55767804,0.9154018,0.6547162,0.52178776,0.9550334,1.2215891,0.7829604,0.5592092,0.40282506,0.3216711,0.24183135,0.17792448,0.09402029,0.43359926,0.6168159,0.3476113,0.20600317,0.13643976,0.09457119,0.0634584,-0.05522417,-0.07360934,-0.12503582,-0.15083821,-0.19121495,-0.05449379,-0.028242987,-0.06660044,0.77809435,0.6609166,0.28414857,0.2776916,1.2332387,0.6427973,0.4528464,0.6177815,0.60140926,0.349292,0.2461767,0.19765717,0.62679857,0.571473,0.32726714,0.18861642,0.07123692,0.58491296,0.53014,0.28298977,0.16352564,0.053154383,-0.025420237,-0.106186315,-0.15673263,-0.21408333,-0.24837857,-0.26552576,-0.3070175,0.067859456,0.46495885,0.30339646,0.5892782,0.6502484,0.5635303,0.7532303,0.46939498,0.22555329,0.11530273,0.0045441575,0.70443857,0.90286446,0.73016405,0.4989493,0.2963399,0.17726606,0.0888605,0.3983183,1.1992913,1.6572636,1.1604041,0.8575183,0.6345497,0.5300342,0.7394364,0.71172523,0.43086755,0.32242393,0.2046297,0.11050005,0.012163561,0.01962592,-0.026700344,0.12518448,0.20439719,0.0063206367,-0.113967404,-0.20174544,-0.29643613,-0.35309568,-0.35830605,-0.34902287,-0.28787106,-0.3652777,-0.3444506,-0.43087178,-0.48577198,-0.5610904,-0.59588706,-0.031875115,0.35830984,0.16289857,1.0361183,0.6019956,0.39395785,0.20221391,0.064670295,-0.034774538,-0.12043792,-0.18909878,-0.26762202,-0.3823631,-0.47218955,-0.56260914,-0.5854782,-0.67298436,-0.7522048,-0.81955206,-0.82928777,-0.8432165,-0.6127442,-0.14953911,-0.40930295,-0.52180994,-0.63567847,-0.71321416,-0.7459649,-0.7758842,0.1498966,0.45836353,0.13217475,-0.07241215,-0.208322,-0.276919,-0.33618,-0.2867061,-0.17122702,-0.34002364,-0.41825563,-0.51488256,-0.5542778,-0.6142682,-0.66058314,-0.66992116,-0.69927156,-0.73931843,-0.761605,-0.7612807,-0.7641461,-0.81186485,-0.8505954,-0.903206,-0.952713,-0.95456725,-0.8621936,-0.9349833,-0.9479591,-0.96343356,-0.9285675,-0.8927689,-0.9771915,-1.027669,-0.9625118,-0.93346536,-0.31056407,0.2622689,0.0136777125,-0.05406004,-0.12088919,1.3358226,0.72192204,0.4549231,0.3503644,0.30508342,0.74327374,0.6139324,0.37399012,0.30107057,0.23543002,0.18738541,0.3634466,0.3152472,0.5475111,0.38374063,0.24834655,0.34871083,0.52382344,0.41492644,0.14635101,0.091939464,0.05843549,0.11887795,0.26175398,0.18623309,0.019257288,0.31472996,0.5876366,0.7052826,0.5068432,0.30992496,0.55484444,0.34570596,0.22053932,0.13274075,0.054880265,0.013217945,0.027197454,0.015486676,-0.08281542,0.30708995,0.4421372,0.23030339,0.2751414,0.3780386,0.6462343,0.91657406,1.0853947,0.9522532,0.15519363,0.04105567,0.049772445,0.5741064,0.54859257,0.4985608,0.37818328,0.2554943,0.25810376,0.20232384,0.11214906,0.1957197,0.20790377,0.10027416,0.06919789,-0.011839423,-0.021777961,0.024936732,-0.00916357,-0.12031582,-0.18132465,-0.2553844,-0.2950157,-0.3396865,-0.2526723,-0.21902546,-0.37779415,0.15485738,0.3403161,0.15514645,0.16874875,0.028015185,-0.12041637,-0.1806126,0.4523615,0.7210386,0.3465135,0.20175613,0.035283107,-0.06146774,-0.11844376,0.45041525,0.56451535,0.2484472,0.091844425,0.03524204,0.0014840625,-0.05867986,-0.18508656,0.048659,0.0908767,-0.02276605,-0.11319406,-0.20903303,-0.17544211,0.4998408,0.31253278,0.07629138,0.32154873,0.33286816,0.4990176,0.5950748,0.38473415,0.27416974,0.16337505,-0.026151095,-0.15832955,-0.25264633,-0.31167227,-0.37869447,0.2850076,0.17551668,-0.08910337,0.9917898,0.7096832,1.1966012,0.8709677,0.61694723,0.6193732,0.48206574
+0.22231637,0.6346164,0.8548044,0.8982186,0.86009204,0.87462044,0.8451889,0.8018965,0.7730396,0.8362538,1.7030382,1.7984968,1.5399412,1.5418224,1.4505885,1.3481126,1.2058994,1.0819224,1.4036036,1.7807916,1.5205244,1.3183804,1.1620266,1.0381405,0.98915744,0.9432556,0.91327834,0.88350236,2.2363992,2.7795134,2.1471813,2.0726361,1.7662243,1.5339097,1.3750772,1.2851561,1.2076516,1.1292242,1.1228725,1.8963581,1.7299445,1.4877838,1.3457432,1.2253757,1.1046782,1.1584808,1.3039205,1.0951176,0.91157037,1.0613954,1.0392199,0.87280756,0.72324187,0.664331,0.72462106,1.034071,1.1099179,1.1743329,1.1588916,1.225292,1.9553701,2.2577052,1.9190309,1.9596221,2.1330657,1.7440491,1.3924015,1.1956902,1.056879,0.9112433,0.80223405,0.683493,0.60030836,1.0280645,1.3829741,1.139045,0.95951086,0.8253248,0.6448044,0.5068674,0.43805605,0.37500137,0.3168137,0.25890684,0.118851766,0.007394988,-0.14507641,-0.043794032,0.66898924,0.356652,0.07873604,0.13227496,0.45292994,0.24075277,0.10713279,0.038876515,0.0563705,-0.009588148,-0.10306169,-0.16336407,0.99590325,1.0816813,0.87609315,0.72796667,0.58969307,1.4700305,2.2659993,1.62345,1.2580628,1.008472,0.7926918,0.72820544,0.63497597,0.4269263,0.35256463,0.21798997,0.039105896,-0.02283835,0.27306727,0.32374224,0.4888286,0.6687907,0.512411,0.25482032,-0.01724923,-0.20077255,-0.3592466,-0.21777882,1.2027516,1.4635645,0.9077529,0.5628415,0.3767546,0.24400438,0.67236024,1.3575311,1.6900996,2.1727514,1.6548074,1.3639083,1.12975,1.6136727,1.3976645,1.0852427,0.96905017,0.87300086,0.7751942,0.66530883,0.5458339,0.40309903,0.23699974,0.13186495,-0.0044530667,-0.16181578,-0.25772345,-0.36133718,-0.47555307,-0.4237815,-0.41171235,-0.45618895,-0.47630817,-0.51180464,-0.60187703,-0.7593154,-0.87927586,-0.9197155,-1.0158774,-1.0817916,-1.0008358,-1.0172787,0.19367513,0.46345198,0.06197029,-0.13936856,-0.28842434,-0.39503765,-0.4639795,-0.58009154,-0.6853239,-0.7739398,-0.89583695,-0.9484604,-1.065027,-1.1241223,-1.184323,-1.2336348,-1.2733507,-1.2452049,-1.2674878,-1.3319042,-1.4012095,-1.4661896,-1.5517755,-1.5793537,-1.5194248,-0.77013886,0.8513011,0.47092795,0.23817198,0.14508833,0.097151175,0.0028261356,0.086040854,0.31097353,0.04358131,-0.11308847,-0.1994188,-0.3092819,-0.406187,-0.4859308,-0.54247993,-0.56599486,-0.56023943,-0.61283207,-0.62073886,-0.62516844,-0.6832397,-0.8307624,-0.86967534,-0.9547409,-0.97425103,-0.95096946,-1.0296462,-1.0517899,-1.1255727,-1.120821,-1.0684408,-1.187007,-1.2021009,-1.200515,-1.1532087,-0.8411357,-0.17860335,-0.34922528,-0.44966134,-0.45194316,0.5397567,0.57430834,0.2935567,0.18665665,0.16266577,1.6950371,1.6374921,1.1960242,1.0217471,0.8707853,1.1930465,1.6816154,1.3718494,1.5338392,1.2956473,1.1853957,1.1637108,1.2087989,1.1038585,1.3677385,1.365402,1.2111516,1.0968803,1.0770042,1.0784318,1.3143483,1.415556,1.569521,1.5418112,1.2153397,1.0390509,2.2446694,2.0487528,1.7293046,1.7657133,1.5052317,1.4131485,1.2878628,1.2701012,1.2639005,1.5053291,1.4974554,1.3634772,1.2211941,1.2965744,1.4342248,1.6127851,1.8069712,1.4773533,1.1080861,1.0460238,0.9833708,1.0506957,1.028353,1.0938208,1.712327,1.6531398,1.6600475,1.4709325,1.2970456,1.5835788,1.5540257,1.3030097,1.2423207,1.2203062,1.1647159,1.1346024,1.0767765,0.9994929,0.95968294,0.9323118,0.8889871,0.74694705,0.7143595,0.747796,0.76240396,1.212944,1.3285058,1.172271,1.0840482,1.0511597,1.0021365,0.882768,1.1939751,1.7285333,1.4245968,1.2633768,1.147481,1.0719409,1.0713869,2.2689767,1.8879766,1.552232,1.3855975,1.3043892,1.1497822,1.4997387,1.4728799,1.5220668,1.3680253,1.1884937,1.0905418,1.3296682,1.791233,2.3707433,1.7698282,1.4714661,1.3927085,1.3520169,1.3449361,1.5024949,1.4358498,1.2619776,1.1413152,1.118777,1.0228945,0.8965859,0.8387917,0.7905189,0.6749252,0.55737764,0.5653166,1.3883774,1.4868119,1.4706746,1.321013,1.1088824,1.019598,0.97326577
+0.8312501,0.7142321,0.6884439,0.6574546,0.6790443,0.67504495,0.634114,0.6007515,0.58711004,0.57638943,1.4736698,1.8286426,1.3975161,1.3792789,1.4726627,1.4465723,1.1969985,1.0967612,1.7710128,1.85166,1.5675259,1.496921,1.2493063,1.122386,1.049223,1.0009512,1.270705,1.3016088,1.3972969,1.8145869,1.4973985,1.7215176,1.5096844,1.2277102,1.1145458,1.0372944,0.9824785,0.95219254,0.94149375,0.91452485,0.86574507,0.9003097,0.8531814,0.8038746,0.7434174,0.8106761,0.87208986,0.8020909,0.75549686,0.7640213,0.7471537,0.70006216,0.6762003,0.66752833,0.648664,0.65940005,1.0267811,1.4125654,1.2157388,1.1583526,1.3997098,1.3124821,1.211277,1.5733795,1.4721531,1.2248973,1.0929673,1.0040705,0.9386256,0.8884342,0.8620813,0.7931447,0.9999728,1.3146125,2.0938292,1.5579809,1.2881149,1.1416696,1.1707923,1.0506456,0.9852208,0.944834,0.90523916,0.85396665,0.7825861,0.7530715,0.7076913,0.67793417,0.77226675,0.7497492,0.7004969,0.655638,0.6255873,0.58094776,0.5273765,1.0555567,1.051717,0.90123314,0.82128173,0.77228516,1.0586879,1.4543724,1.185209,1.0060788,0.88915265,0.92765415,1.0348648,0.9272275,0.835338,0.7922822,0.6814277,0.5947629,0.5134267,0.4632772,0.9017353,0.9980798,0.85223246,1.4129333,1.9164536,1.435796,1.3253205,1.7236183,1.3693936,1.1566527,1.0005293,0.8871701,0.7980065,1.203551,1.1679022,1.3966784,1.2356701,1.0224684,0.9256523,0.88159317,0.929442,1.727266,1.9138497,2.2191598,1.9010993,1.6783845,1.6402822,1.5045767,1.3069333,1.4552456,1.3240017,1.1422782,1.0292666,0.9739685,0.9288727,0.8808546,0.8247614,0.83831507,0.8314041,0.75607896,0.70048904,0.6582321,0.64010835,0.61886346,0.67106247,0.63840246,0.6342235,0.62134355,0.81279045,1.0888027,0.88949835,0.77357197,0.651935,0.57545745,0.5395344,0.561459,0.60250235,0.67737925,0.54739237,0.45387402,0.39041212,0.31817144,0.27451324,0.22571988,0.18037117,0.14201076,0.08153446,0.06657246,0.017402913,-0.066065624,-0.10489394,-0.1589307,-0.18883757,-0.15406658,-0.17509143,-0.2363589,-0.37002337,-0.48357698,-0.54202175,-0.584537,-0.53517365,-0.5099553,0.6175913,1.0522194,0.79185224,0.6692643,0.61816996,0.57493484,0.5323783,0.5288064,0.45486566,0.3900432,0.3806841,0.33177167,0.27162296,0.2577983,0.22268467,0.21628706,0.20701163,0.15461893,0.14577183,0.14876565,0.12130152,0.028730411,-0.06631574,-0.11044958,-0.14725153,-0.026798356,-0.019905645,-0.058961768,-0.13241234,-0.16259138,-0.1378708,-0.1600707,-0.16692837,-0.20708911,-0.17302884,0.39390212,1.004384,0.7889277,0.6854845,0.6071313,1.3823528,1.3364336,1.1115662,1.0095565,0.9225985,1.7580411,1.6252357,1.4190986,1.188024,1.0532587,1.6978995,1.8938605,1.6007943,1.8255737,1.4294286,1.2416854,1.2086914,1.2567875,1.0568254,1.1370025,1.0639538,0.9709219,0.8851671,0.8514477,0.87672687,1.4299037,1.420862,1.5569245,1.1967354,1.0054,0.9593053,1.0222479,0.98599315,0.89576715,1.4903247,1.3975625,1.3830845,1.2316586,1.2217276,1.1727065,1.528244,1.6231936,1.3181844,1.1879795,1.152335,1.2657106,1.4992454,1.5598062,1.1216109,0.9160373,0.8490135,0.8325273,0.8148274,0.7901099,0.8174216,1.5492606,1.9222195,1.9064891,1.5572057,1.3552666,1.7423377,1.5817056,1.2692683,1.169931,1.1045694,1.0392042,0.97152567,0.88020885,0.8335906,0.788369,0.78221536,1.2878608,1.1903844,1.0575163,1.3216372,1.2619917,1.0953443,1.0000049,0.932015,0.87331927,0.8622339,0.8339221,0.74392825,1.0238891,1.3161539,1.0692067,0.94271785,0.9026952,0.84763,0.8218961,1.8676491,1.5218854,1.2771022,1.1709083,1.0784394,0.9729502,1.6658388,1.458811,1.2609736,1.126791,1.0143073,0.92544377,1.0300353,1.116462,1.5613885,1.3615067,1.1384587,1.1927793,1.2415831,1.341349,1.3422029,1.1492672,1.0142406,0.91033316,0.860639,0.8333052,0.77772474,0.7669521,0.7141559,0.7014301,0.6663193,0.63875175,1.3464352,1.2843924,1.1150935,1.0292802,0.9237958,1.1087407,0.99138427
+0.89177215,0.76199937,0.5884688,0.4958306,0.49867058,0.5059875,0.42025715,0.3680779,0.32648727,0.2506194,0.50441563,1.4353166,1.0774575,1.1219726,1.314495,1.1238964,0.9036063,0.8242022,0.80326945,1.4410005,1.4659991,1.2554744,1.0136464,0.872092,0.78658587,0.74410594,0.9530032,1.0597177,0.8802202,1.2472045,1.3848507,1.4521451,1.2139051,0.9254656,0.79131734,0.6930043,0.6372396,0.5894818,0.56373566,0.55240846,0.5465493,0.9500044,0.84069014,0.6757997,0.5702663,0.6398315,1.1200037,0.9398266,0.7964267,0.8067769,0.7066705,0.5900791,0.49602628,0.42573172,0.38417655,0.3645159,1.0307385,1.492657,1.0485871,0.8685403,0.734326,0.62412804,0.85330474,1.23729,1.3968241,1.130006,0.9044324,0.74704957,0.6236783,0.51937187,0.40719062,0.43249145,0.69755477,1.140182,1.2212287,0.9361901,0.7258104,0.5742984,0.7469777,1.3500481,1.2857565,1.0512533,0.86470056,0.734118,0.58432966,0.4823634,0.4184757,0.66784096,1.08353,1.503606,1.0335386,0.77789104,0.5707028,0.4703995,0.49463588,0.7107465,0.6592291,0.5152606,0.40617537,0.5651202,0.5885376,0.441801,0.3489195,0.49729836,0.56793296,0.6197448,0.5393331,0.39881694,0.2727313,0.18498252,0.06910586,-0.05286999,0.048197184,0.18601905,0.34897143,0.5112531,0.5833541,1.4937114,1.9201056,1.335005,1.0158038,1.0470967,0.962698,0.75249577,0.5769166,0.45055008,0.38379556,0.56326544,0.5674297,1.3415573,1.01824,0.8559716,0.7915336,0.99551654,1.3006966,1.7954,1.517796,1.8549566,1.8683946,1.6151943,1.7157843,1.4214061,1.3388513,1.2358977,1.1726656,0.992553,0.85538965,0.7804066,0.7360449,0.98789454,1.1191773,0.93957037,0.77624965,0.6653384,0.58381623,0.50114274,0.42104697,0.9909799,1.5240968,1.1249328,1.0763593,0.9391767,0.7942405,0.72366595,0.7060226,0.6173338,0.46943516,0.3754931,0.39920503,0.73258895,0.7911644,0.5914167,0.4200377,0.26528442,0.15963675,0.1140718,0.06741732,0.013231818,-0.06504811,-0.14157963,-0.28218096,-0.2865916,-0.33791083,-0.44772595,-0.5070623,-0.53601635,-0.56892204,-0.511946,-0.5274633,-0.59175247,-0.6594429,-0.7147015,-0.80738616,-0.83370936,-0.7829769,-0.74125504,-0.73740774,-0.7773874,-0.7086012,-0.6941408,-0.64459157,-0.6481874,-0.4670264,-0.03884663,-0.29211715,-0.41017538,-0.44158918,-0.5289838,-0.55788684,-0.6191077,-0.65635943,-0.66476357,-0.69567525,-0.7523448,-0.7386595,-0.7051579,-0.7035807,-0.7884276,-0.7647892,-0.83476424,-0.7914541,-0.51896286,-0.53325033,-0.5657973,-0.6853751,-0.73270607,-0.7374928,-0.7875334,-0.78387606,-0.82436496,-0.7948879,-0.7220644,-0.5358172,-0.47405845,-0.54577655,-0.57450646,0.22847639,0.80548704,0.34971166,0.22932501,0.14864725,1.0010952,1.3488746,1.5893435,1.0981181,0.7961453,2.1688857,2.0362654,2.0692153,1.6773415,1.302851,1.1961787,1.02191,1.0231385,0.8830362,0.88032067,1.144835,1.1595849,0.93341076,0.81880826,0.8178611,1.6791071,1.3600385,1.3721701,1.0929896,0.92691135,0.86278355,0.8061132,0.7400929,0.7103654,0.83225507,0.83197635,0.77982175,0.64998347,1.1008308,1.1569784,1.5876265,1.3570422,1.1071649,0.9634247,1.1514517,1.1368308,1.3260498,1.3538249,0.9677377,0.80528355,0.7003556,0.6421591,0.6180675,0.5667245,0.6246941,1.340569,1.8515072,2.0927575,1.5629718,1.6971972,1.770272,1.3037512,1.0301135,0.9383335,0.8334561,0.70600283,0.6607791,0.59182304,0.54364395,0.49059957,0.47554892,0.5402232,0.53338647,0.47316295,0.5994127,0.5628967,0.51403356,0.4739107,0.42677096,0.397955,0.41748133,0.41032505,0.3222505,0.42446297,0.6565102,0.4905262,0.4235713,0.4297371,0.381066,0.39195845,1.5257714,1.3143309,1.0293317,0.8624302,0.72718686,0.59704745,0.837307,0.8857825,0.92924553,0.7292858,0.5726141,0.48540586,0.5952862,0.63257015,1.1303163,1.065146,0.81790185,0.80034053,0.7443937,0.998852,0.9631684,0.8088406,0.6517825,0.6053529,0.53922766,0.4919814,0.4779197,0.40853497,0.35655484,0.36158466,0.3250901,0.2949625,1.4698536,1.2691568,1.0310534,0.9112576,0.8120614,1.5411882,1.231211
+1.5025315,1.8834999,1.951159,1.9239042,1.8782537,1.8616261,1.7887782,1.7130991,1.629571,1.5690882,1.5979213,1.6682959,2.427081,2.6607778,2.9065404,2.578997,2.3778439,2.3348417,2.3234513,2.6120887,2.8788207,2.5317605,2.3297758,2.1943145,2.179615,2.0919518,2.3062105,2.4345932,2.3474038,2.6618047,3.4220123,2.9038548,2.5784764,2.4321897,2.318061,2.2068748,2.082539,2.0159445,1.9773574,1.89658,1.8206097,1.719379,1.548382,1.3902516,1.3124043,1.6510545,2.5410314,2.1681285,2.0947628,2.6954143,2.3919437,2.1720364,1.9923453,1.8589088,1.7409633,1.6217079,1.5557833,2.251317,2.1887493,1.8855362,1.7114824,1.8634019,2.28212,2.6568499,3.1063719,2.8177385,2.5268877,2.3254323,2.0960958,1.9184544,1.9808221,2.2375836,2.223699,2.5861936,2.5138664,2.22532,2.028758,1.8424488,1.9279759,2.0462503,1.928347,1.7994139,1.5863822,1.3926386,1.207143,1.01421,0.8403718,0.85459995,1.8931456,1.7087109,1.3771057,1.1208893,0.9029133,0.7721332,0.7000931,0.66048217,0.66412216,0.6192079,0.56686056,0.62951565,0.5333852,0.63833714,0.775185,0.7251244,0.5357716,0.491513,1.3652493,1.4497955,1.9078019,2.0729914,1.5938096,1.2877343,1.0600457,1.0401639,1.0289328,1.3683536,2.0800786,2.3955426,2.3925402,2.3587046,2.0425973,1.758074,1.5387346,1.2872285,1.069396,0.8868164,0.8801501,0.7888173,0.7235724,0.82239485,0.7533151,1.0946268,1.6316637,2.9687314,3.4413748,2.991914,2.6611485,2.6556954,2.7039373,2.7389967,2.7410686,2.496738,2.3718622,2.250136,2.098107,2.044928,1.9152619,1.8093032,2.017563,2.0666723,2.130639,2.0124698,1.6998713,1.43768,1.208028,0.97156775,1.4142025,2.3880253,2.487918,2.3325574,2.5692596,2.3232665,2.1201012,2.161827,2.0902958,2.2880015,2.2312918,2.0974479,2.3557215,2.6780117,2.4534898,2.1913958,1.9221425,1.726156,1.6221728,1.5069994,1.3276308,1.1247723,0.9932058,0.8871517,0.7149024,0.52607334,0.42113805,0.28244308,0.16987245,0.10491313,0.12779157,0.23577587,0.07823537,-0.0023517124,-0.06499566,-0.12781452,-0.20638384,-0.26885957,-0.2727665,-0.28861153,-0.30827472,-0.31821007,-0.31938642,-0.30926284,-0.28482148,-0.26499984,-0.05618502,0.054885913,-0.100120485,-0.20841868,-0.22170767,-0.23707862,-0.26679143,-0.27929884,-0.31203493,-0.34712747,-0.3793502,-0.4072104,-0.39916572,-0.37262484,-0.3898738,-0.37877154,-0.44711757,-0.48104867,-0.17330448,0.41597673,0.24459507,0.14042969,0.006946925,-0.04445992,-0.06947224,-0.103391305,-0.11524865,-0.1467983,-0.1558816,-0.118720114,-0.041369896,-0.009010252,-0.16577552,-0.19828807,0.36986765,0.90903294,0.5483514,0.41486028,0.34779435,0.4003102,0.63717276,1.4275415,1.2701324,0.9786781,2.1508865,3.074844,2.9201398,2.5282774,2.2235107,2.1931243,2.0634487,2.0152738,1.9554005,2.3365192,2.6599963,2.419436,2.2175312,2.1270714,2.1248145,2.3406875,2.201844,2.1215842,2.0397658,2.0518332,2.0375817,2.0427372,2.0250082,2.0325646,1.9672225,1.902959,1.8211298,1.781348,2.9159708,3.180763,2.8986144,2.5534186,2.362658,2.2887778,2.4992566,2.3670065,2.2698755,2.1982508,2.0509443,2.046999,2.044005,2.0612235,2.0248752,1.9748297,1.9760547,1.9986405,2.0264823,2.640081,2.5835516,2.666112,2.5703845,2.2860923,2.216658,2.1924987,2.1939392,2.0881286,2.003016,1.962572,1.9408524,1.9255909,1.9256616,1.9105185,2.0792813,1.965086,1.927113,1.9418697,2.0228047,1.9739311,1.8782042,1.8643547,1.9026756,1.865832,1.7763255,1.8235419,2.0147786,1.862453,1.8633659,1.9142199,1.8537984,1.966187,2.756665,2.5621817,2.3108315,2.183857,2.1181822,2.0519116,2.0520906,2.0586727,2.139733,2.0821455,1.9406803,1.8167777,1.9421945,1.9538648,2.422896,2.753214,2.462184,2.3324413,2.3132691,2.3579516,2.2026691,2.13272,2.0655844,2.002761,1.9519622,1.9140434,1.8463463,1.8026104,1.7791746,1.7532835,1.720071,1.7095249,2.2524772,2.4018788,2.185682,2.0845966,1.9969702,3.0829322,2.6140027
+1.1372654,1.4813365,2.4188054,2.7366114,2.938956,3.3742414,3.51045,3.6767197,3.7120905,3.7480643,3.7163215,3.659367,3.6241603,3.2821333,2.4802299,1.6192462,0.844979,1.0306576,0.41166717,0.20372637,0.056671564,-0.2094828,-0.202928,-0.15110837,0.42976254,0.26650935,0.18958206,0.0853768,-0.15245275,-0.45473307,-0.5973711,-0.63115263,-0.67036396,-0.7876718,-0.7815367,-0.7784092,-0.85793114,-0.93286985,-0.94082844,-0.9581612,-0.8813343,-0.49441618,-0.48045254,-0.7562289,-0.70274395,-0.718802,-0.76127195,-0.833073,-0.8846595,-0.90777934,-0.88705003,-0.928428,-0.9537333,-0.287341,-0.07641147,-0.2202397,-0.28096798,0.49118394,0.92821795,0.34012717,0.27985665,0.2975299,0.22151618,-0.02983534,0.5507234,0.88093626,0.4020744,0.112747684,-0.114510834,-0.27311903,0.10663091,0.18598081,-0.05490387,0.56915987,0.22557162,0.40831554,0.40229857,0.087298736,-0.022593725,0.06415421,0.9347085,0.33903196,0.08834064,-0.022185382,-0.18410623,0.4072668,0.571622,0.40620387,0.17063989,0.26358575,0.5533358,0.2400177,0.025593888,-0.100566566,-0.21654432,-0.21973811,-0.22566293,-0.27858642,0.3156138,0.3144459,0.031712946,0.17930098,0.78646356,0.41556346,0.29307193,0.0878928,-0.1047582,0.3696117,0.40996635,0.07540004,-0.077073365,0.5490183,0.3355387,0.07883467,0.042796034,-0.01707993,-0.106042564,-0.1846225,-0.25871447,-0.31941685,-0.4198005,-0.4841656,-0.5042558,0.20062084,0.19243811,0.17654364,0.16903777,-0.009931978,-0.14147806,-0.28588688,-0.3700736,-0.20474543,0.14421336,0.019265,-0.0030920915,-0.06411758,-0.23309429,-0.194793,-0.16818027,-0.3080509,-0.35344386,0.23544888,0.26959014,0.13061236,0.009518802,-0.12472144,-0.19915988,-0.31666923,-0.4099322,-0.34214997,0.054589834,0.11565326,-0.08230365,-0.20699401,-0.32251436,-0.40839988,-0.47673517,0.26593342,0.533515,0.18884473,0.37846646,0.31114522,0.2853503,0.043153685,0.031450514,0.13992696,-0.013682026,-0.16063553,0.025289893,0.6800979,0.2592012,0.1856415,0.053501967,-0.08898535,-0.031050395,-0.15741497,-0.1831928,0.38952982,0.96199703,0.63856053,0.19977666,0.018743474,-0.12100986,-0.19303295,-0.22773334,-0.31597522,-0.39341342,-0.09050724,0.036433596,0.49268556,0.24904428,-0.049924124,-0.16293646,-0.24093007,-0.19866443,-0.33854645,-0.41748703,-0.2598018,-0.17635982,0.15141281,0.1977491,-0.052946966,-0.26590332,-0.39212897,-0.36633983,-0.062265165,-0.087443024,-0.22897466,-0.13818902,-0.13422306,-0.13655986,-0.14391938,-0.25366297,-0.19908585,-0.06629735,-0.20178376,-0.10382624,-0.12731303,-0.19050924,-0.2524938,-0.33979875,-0.4201988,-0.42867538,-0.37963685,-0.5888233,-0.46937895,-0.42616582,-0.41677544,-0.27154943,-0.10947336,-0.12417431,0.7277605,0.8302419,0.8759481,1.2979349,1.5856805,2.024278,2.087625,2.0171175,2.099216,2.3788347,3.0319066,3.470824,3.3347082,3.3211985,3.2804403,3.308943,3.5908718,3.724535,3.844809,3.9227176,3.9359808,4.017,3.9419656,3.8898427,3.9575982,3.9934707,3.99119,3.9423277,3.9492426,4.004227,3.971704,3.95897,3.972682,3.9597616,3.9155104,3.905575,3.9666991,3.9716582,3.9901824,4.041266,3.9654856,3.9901876,3.982461,3.9916286,3.9659328,4.002736,4.0091133,4.0452642,4.029746,4.028875,4.0337977,4.019956,4.0090804,4.022709,4.036648,3.9968548,3.990746,4.00179,3.9713144,3.9473548,3.9533038,3.9581642,3.9664226,3.9823513,4.027429,4.0414534,4.0436635,3.99508,4.0167465,4.0074825,3.9818745,4.000323,3.9853249,3.9539573,3.9735556,3.9380653,3.9064398,3.8886542,3.9322238,3.927346,3.9833078,3.992384,3.9535573,3.9346452,3.974803,3.9426856,3.9377952,3.9033267,3.9279144,3.9858046,3.942336,3.9468527,3.897221,3.9568815,3.9506702,3.9635162,3.9568644,3.9843988,4.015999,3.984046,3.9775515,3.9557493,3.960782,3.9709482,3.9585776,3.9062724,3.8791294,3.9388757,3.9977422,3.9712353,3.9633253,3.928195,3.8827145,3.8641534,3.8651814,3.881792,3.8626404,3.8373399,3.8197978,3.889112,3.941134,3.9406204,3.8849192,3.8451507,3.827018,3.8728738,3.9585938,3.838457,3.8698936,3.8840077,3.807495,3.800997,3.8078926,3.7821054
+1.6677213,2.348761,2.8031669,2.916922,2.776742,2.8353608,2.1719623,1.7926688,1.8838243,1.6266458,1.0568016,0.7033684,0.6192084,0.56493056,0.52101976,0.5218622,0.54857904,0.57226026,0.5595244,0.5653833,0.66631323,0.719201,0.5858735,1.2213452,1.562886,1.2578537,0.9601315,1.0675294,1.2633675,0.9885193,0.8712811,0.7865499,0.74522966,0.6743517,0.67084897,0.6505226,0.6480608,0.61600155,0.5423272,0.87736446,1.4535377,1.3190227,1.2722182,1.066992,0.9157721,0.8335588,0.71617186,0.6575725,0.5565745,0.5547314,0.58286184,0.5830527,0.57149804,0.69916725,1.36223,1.8881606,1.4848943,1.5676365,1.6827824,1.4178035,1.2488501,1.6706156,1.4460495,1.3775473,1.9875956,1.6576309,1.431284,1.3566369,1.1823349,1.0869203,1.0518664,1.2010244,1.1298203,1.4788748,1.484139,1.7555748,1.6844991,1.3734818,1.3173971,1.2338464,1.3231101,1.1933708,1.1749064,1.4668291,1.5195627,1.2790158,1.5630603,1.4134098,1.3059666,1.1869172,1.2591565,1.3473214,1.1158106,1.0550792,0.99161947,0.96765625,1.4461205,1.4787289,1.3396839,1.2612698,1.1524482,1.154034,1.5893451,1.4561069,1.3252909,1.5096223,1.2522426,1.4808619,1.3956237,1.2816523,1.3374306,1.8505447,1.6799207,1.5624504,1.6368761,1.477495,1.402108,1.4990885,2.3336225,1.8553382,1.6226263,1.4895331,1.3934858,1.4564085,1.4076269,1.5263586,1.6694659,1.4520531,1.4123012,1.3425992,1.3019583,1.285852,1.919136,1.8087552,2.046187,1.7042743,1.5363362,1.4426563,1.7980523,1.6342683,1.6432589,1.9973528,1.7658001,1.5307779,1.4357183,1.641293,1.5902056,1.4582405,1.4141188,1.3566139,1.3174224,1.3222352,1.3220716,1.2964265,1.2585242,1.243991,1.2695647,1.264463,1.4086925,2.123198,1.7359186,1.7974198,1.9153017,1.6526785,1.4945824,1.516153,1.4295102,1.3227444,1.4428042,1.4892741,1.354608,1.3438709,1.3078018,2.1205847,2.3699708,1.9197413,1.5982091,1.5483142,1.4479276,1.5351967,1.5216318,1.396715,1.3576727,1.353617,1.3000648,1.2386266,1.2187659,1.3592694,1.3710251,1.5712209,1.4508127,1.2607541,1.1854935,1.2367902,1.3709891,1.2889931,1.1480303,1.1933943,1.1521604,1.218328,1.4275383,1.26258,1.1634357,1.1073936,1.0734974,1.0552037,1.0174763,0.97483206,1.40944,1.6300108,1.3526998,1.3146205,1.3708853,1.3005681,1.2610643,1.2229252,1.1822935,1.1467755,1.1452844,1.1352901,1.1254661,1.1194139,1.0752214,1.0844312,1.048046,1.0289903,1.1538819,1.13658,1.0821171,1.0877773,1.067041,1.061377,0.87445205,0.86894894,1.0782624,1.3566666,1.8462274,1.8824561,1.6506268,1.6045601,1.7038513,1.918995,1.8713734,1.600632,1.488501,1.4441924,1.5214671,1.7013456,1.9454005,2.1525507,2.3343463,2.518771,2.5881739,2.6400664,2.6344523,2.8777304,2.9725928,3.1760385,3.3780618,3.5381243,3.601612,3.771932,3.7608724,3.6740828,3.6899076,3.7022533,3.7429204,3.7570167,3.6617374,4.028227,4.014407,4.036048,4.0238643,4.05067,4.1180325,4.0502024,4.0479045,4.095949,4.1985016,4.2351694,4.236598,4.2127666,4.1814632,4.185196,4.17176,4.2780123,4.160329,4.1636086,4.124456,4.122028,4.087814,4.1904917,3.9918232,4.044558,4.1750445,4.1333942,4.2035623,4.326478,4.2436476,4.142433,4.2383504,4.1532116,4.138391,4.181467,4.2751846,4.1141105,4.192605,4.273506,4.2104406,4.194377,4.0997424,4.12056,4.0938454,4.1028314,4.2336016,4.2022767,4.068966,4.145196,4.1108828,4.1984043,4.174995,4.1642866,4.133259,4.219137,4.309249,4.1696043,3.8682966,2.738542,1.7759432,1.4519911,1.7140648,2.1356177,2.5636299,2.9529772,2.8937361,3.0474286,3.4317522,3.519195,3.7335193,3.614386,2.0801377,1.1888229,1.2814178,1.9854245,2.3750587,2.4542894,2.383977,2.5860682,2.680695,2.695773,2.7610717,3.0104032,2.9848938,2.6845791,1.8457674,1.6926908,1.6014687,1.7171811,1.5422643,1.357782,1.3471556,1.075682,0.909141,0.8460605,0.8863287
+1.4343877,1.3437774,1.2239814,1.1075536,1.0250775,1.3614368,0.9999622,0.7897376,0.7602886,0.7842978,0.6251168,0.55430084,0.48179293,0.45123607,0.42472777,0.42115766,0.42764977,0.41937542,0.3680418,0.4456221,0.44604188,0.39328957,0.3484003,0.3615785,0.45918328,0.39473447,0.28076267,0.35944024,0.44548115,0.8872123,1.1700175,0.9985794,0.8635459,0.9746647,0.9335265,0.8177226,0.79360795,0.70064247,0.6074686,1.154582,1.3219376,1.0320156,1.1357744,0.94740415,0.81050944,0.729352,0.6972374,0.6039802,0.5513729,0.5490371,0.55908954,0.5742825,0.55176044,0.5626729,0.72705066,1.1047506,1.1944788,1.7003179,1.426803,1.1414821,1.1090215,1.8014212,1.2970352,1.1292238,1.2141149,1.3839152,1.0756006,1.0301001,0.9681728,1.3346441,1.4540944,1.5117294,1.5595093,1.298305,1.2168813,1.6778866,1.3388526,1.2235835,1.1435139,1.0638944,0.9962113,0.92629564,0.94239223,0.947091,0.90727115,0.90672964,1.4942818,1.2690094,1.14906,1.0654273,1.2296524,1.1992899,1.0643148,1.0086777,0.97330034,0.93969226,1.54794,1.74969,1.3459885,1.2404437,1.1786258,1.1547177,1.2398499,1.1167588,1.0272455,1.0118469,0.9496071,1.8013754,1.4279977,1.2698116,1.3503237,1.3055148,1.8513914,1.983604,1.8633837,1.4732207,1.4045813,1.289212,1.5682623,1.649734,1.3993449,1.27931,1.1889331,1.1411271,1.0697923,1.5348029,1.7415913,1.317236,1.227822,1.1711376,1.1012009,1.0447457,1.3256686,1.5969775,1.562283,1.2402198,1.1973524,1.1216261,1.3759187,1.2921215,1.5915074,2.005996,1.5419464,1.3419839,1.2505772,2.287243,1.742063,1.4877088,1.781558,1.5033895,1.3734725,1.2768083,1.1883464,1.1361105,1.0535067,0.9821098,0.9552927,0.933577,0.9106909,1.9173572,1.7202759,1.73928,1.7262112,1.408047,1.2791467,1.7276149,1.485145,1.3089743,1.7437012,1.4975312,1.3236423,1.3392847,1.3549286,1.9768825,2.6364996,1.9099578,1.6729071,1.5174007,1.3485686,1.257149,1.2441652,1.2048926,1.1510156,1.1578213,1.1116023,1.063772,1.0251178,1.0844703,1.0462443,1.0156415,0.92413706,0.9027637,0.8736004,0.9010849,0.9596538,0.94855475,0.87031597,0.8583188,0.83659506,0.8330381,0.7588978,0.7028593,0.67088574,0.6420487,0.67958975,0.6496383,0.62030494,0.60706437,1.8678038,1.7212574,1.4491667,1.300377,1.2067754,1.1232792,1.0818969,1.0202625,0.96639276,0.9436712,0.92183805,0.8885361,0.8590762,0.8630412,0.8363529,0.8229493,0.79325485,0.84964377,0.9355422,0.9004034,0.8419044,0.82583904,0.7911042,0.7357582,0.546412,0.6146663,0.84870994,1.0726407,1.5934124,1.5393741,1.2851813,1.2625449,1.3085918,1.9080557,1.6736766,1.3922682,1.3021045,1.2396243,1.2606874,1.5713549,1.7168095,1.758136,1.7994052,2.04052,2.2470186,2.417952,2.5830526,2.6892042,2.7931354,2.9632661,3.0855217,3.2472332,3.356354,3.557944,3.7238889,3.8165631,3.8596091,3.8557942,3.9643285,3.9854145,3.9805288,4.2443686,4.2077665,4.147333,4.154974,4.186924,4.228175,4.1814537,4.2425313,4.269445,4.2333345,4.157668,4.1085243,4.0878873,4.094758,4.095991,4.30966,4.2283506,4.1955996,4.167892,4.1410646,4.155574,4.178046,4.350562,4.252676,4.3317447,4.4129214,4.424737,4.52777,4.5447206,4.5226994,4.376458,4.1992464,4.195958,4.2049794,4.21711,4.2027035,4.2867155,4.3340893,4.3268023,4.2900734,4.2278814,4.230175,4.2507133,4.3417125,4.294484,4.293714,4.252596,4.371769,4.4271536,4.416461,4.4874682,4.4329624,4.377983,4.460048,4.4537787,4.178723,3.1438308,2.00519,1.3537464,1.191921,1.5204933,1.6699836,1.9004419,2.231987,2.5905156,2.32611,2.0043068,2.2371013,2.6165838,2.8289394,1.7733209,1.534684,1.2757307,1.0739071,1.2260134,1.535445,1.9031651,2.1756334,2.4594712,2.566842,2.709135,2.821876,2.771187,2.5288796,1.8778988,1.2921084,1.1785963,1.1157235,1.2176445,1.1914341,1.3389024,1.2230562,1.1146178,0.9853991,1.2758436,1.2632079
+1.1221722,1.2447495,1.1258222,1.0127051,0.871781,1.6969633,1.6110063,1.46806,1.329534,1.3021584,1.3212092,1.1278113,0.95970637,0.803746,0.69132715,0.6415743,0.60569745,0.57989013,1.208546,1.6408553,1.9422492,1.7683253,1.5626655,1.4605577,1.3347108,1.2607331,1.3243363,1.813683,1.7373936,2.0782864,2.4193282,2.3534806,1.9621459,1.941617,1.7849313,1.6026475,1.5079274,1.426049,1.4576399,2.1558576,1.9838681,2.0239325,2.081486,2.083702,1.844739,1.666652,1.583762,1.4309893,1.3250539,1.2417334,1.1492714,1.0688412,0.97151005,0.91935706,0.95750785,1.5240533,1.5518384,2.0239255,1.7225161,1.5076844,1.3853663,2.14052,1.7089169,1.5364144,1.4924799,1.5379629,1.3354411,1.283144,1.1990027,1.6105429,1.6390581,1.4267311,1.6455446,1.4846845,1.3835084,2.2096329,1.7827836,1.5787017,1.3938607,1.3144009,1.2298992,1.1671258,1.982049,2.3119955,1.9118085,1.7201365,2.329606,2.0597858,1.8571975,1.7690299,1.6625648,1.5896066,1.4895698,1.375868,1.3322389,1.301448,2.6987374,2.462019,2.1015544,1.9401389,1.8824148,1.8022903,2.0864744,2.2439876,2.0409384,1.8329178,1.7061057,2.0089262,1.9501073,1.7898952,2.1313367,2.1527958,2.2917635,2.0853806,2.1136398,1.9145391,1.7619348,1.6271762,1.5708108,1.5643216,1.5308223,1.4265895,1.2750717,1.3330723,1.2151668,1.1185362,1.9550873,1.8322726,1.6294318,1.5751051,1.485477,1.3684406,1.6361722,2.7138205,2.3546596,2.019653,1.843674,1.825624,1.7444782,1.8302077,1.7618474,2.1604695,1.9983933,1.7567574,1.6245321,2.091955,2.398982,2.0865364,2.1207247,2.0348802,2.4060087,2.5560808,2.3130188,2.0283146,1.8389646,1.7125942,1.6768534,1.573198,1.449389,1.8972454,2.8649154,2.2535756,2.1954865,1.9358087,1.7788556,1.7430458,1.7020918,1.6098224,1.6487341,1.5879923,1.499954,1.4231938,1.2974848,1.282902,1.2863746,1.7445476,1.7059102,1.5327513,1.4600999,1.3903934,1.3698801,1.3009168,1.2637905,1.2860548,1.2442416,1.1512406,1.0983825,1.0457696,1.1376246,2.2034674,1.9144629,1.6694117,1.541045,1.5393803,1.4691044,1.4453028,1.3237712,1.3106184,1.3385761,1.2853874,1.1983202,1.1407977,1.0970232,1.0769274,1.0323292,0.9965248,0.94008356,0.94048715,2.0321689,2.1305842,1.8010337,1.6487229,1.7558335,1.6836162,1.589346,1.7949307,1.7570095,1.5956279,1.5732269,1.4935082,1.4260603,1.4020321,1.3440162,1.3981893,1.2964069,1.3618367,1.4085426,1.3804139,1.3070157,1.2680788,1.267755,1.3147726,1.1766934,1.1858113,1.2503912,1.2129624,1.5336235,1.6534333,1.6100281,1.6076893,1.6200268,2.1919568,2.1441748,1.9540869,1.8825228,1.8111022,1.7424176,1.9603957,2.20662,2.1578434,2.2280645,2.3777707,2.5089836,2.5950613,2.6747608,2.801943,2.918056,3.0017583,3.0685296,3.130891,3.1181,3.3187592,3.2807312,3.342069,3.3839774,3.4115338,3.5040379,3.5816026,3.654411,3.997716,4.1040187,4.1293254,4.1412754,4.168753,4.1733484,4.248105,4.3003345,4.3878613,4.371524,4.29096,4.277036,4.229942,4.232582,4.213538,4.238433,4.292378,4.4135237,4.4589224,4.4146957,4.3641696,4.5166616,4.6734266,4.5568857,4.5710244,4.775579,4.581964,4.3037634,4.089098,3.7774243,3.2772942,2.8258445,2.4023314,2.4070663,2.5470357,2.6308193,2.7091575,2.7461078,2.8819969,2.9071808,2.8705633,2.8978045,2.9636912,3.093865,3.0302758,3.0610523,3.0902784,3.1637902,3.2762775,3.0318384,3.0124855,2.990636,2.8650053,2.6197207,1.9906867,1.4878558,1.3482563,1.6601868,1.583432,1.5626405,1.7804141,1.6475956,1.6286421,1.6429279,1.8302548,2.1548715,1.8757429,1.883832,1.8145751,1.6645408,1.5386859,1.9104605,1.6512444,1.4421871,1.3731492,1.2807043,1.3279812,1.7010539,1.9539655,2.276334,2.376658,2.3401074,1.855623,1.4870697,1.3950211,1.3366401,1.1820693,1.1128381,1.0998108,1.6809092,1.8924552,1.7063488,1.6736995,1.765184,2.6947412,2.3237972
+1.0492575,1.0173774,0.8011937,0.6896888,0.5022721,0.7120972,0.75509155,0.6798203,0.5638397,0.7749617,0.9464356,0.74176073,0.6053498,0.4824381,0.3929286,0.3026852,0.2530678,0.1899216,0.59103024,0.9729929,1.173191,1.0939744,0.8655536,0.74359775,0.6199721,0.91408694,1.2382123,1.580548,1.2146194,1.3585601,1.4293575,1.2520163,1.0866907,1.0288491,0.9825072,0.8793494,0.80704457,0.8082611,1.8395238,1.935637,1.481635,1.4633087,1.3209996,1.6014011,1.315367,1.1590153,1.2573748,1.1261022,0.9689027,0.8730503,0.8296699,0.78476787,0.68607986,0.6615175,0.6553855,1.2386725,1.73971,1.7844272,1.5371192,1.2654023,1.0753977,1.4983566,1.221803,1.0206175,0.95603466,0.92112947,0.8570314,0.8416272,0.8030247,0.7172112,0.668442,0.6424505,0.98014295,1.1041299,0.79086417,1.114855,0.8395787,0.7624204,0.63158333,0.58317196,0.5364813,0.8092926,0.96127594,0.8805705,0.76997197,0.59511006,0.5819681,0.4997747,0.4841386,0.4094143,0.33628923,0.95702803,0.6158928,1.2727308,1.1876682,0.96018374,1.3449237,1.5821502,1.2843586,1.0976686,1.361788,1.3996722,1.3290099,1.5423408,1.3636794,1.149797,1.0459085,1.1194944,1.3233397,1.8048912,1.9561443,1.6320841,2.0051084,1.6495714,1.4331205,1.4058626,1.2590991,1.1139824,1.3137189,1.1957909,1.0515476,0.9302592,0.77504474,0.7441232,0.61304134,0.4879185,1.5517352,1.4000463,1.1473931,1.0157402,0.85184306,0.73408484,0.6734801,1.1222856,1.6650218,1.0984939,1.0259616,1.1732346,0.9171341,0.7992853,0.68076426,0.9383329,0.8998588,0.6473381,0.5162892,0.47296482,1.3816134,1.5320022,1.799673,1.6169915,1.5629623,1.6361585,1.5075802,1.2130716,1.0465152,0.912575,0.84820384,0.7016853,0.62820673,1.250771,2.0666692,1.624199,1.8786519,1.3752011,1.1353414,1.0360017,1.1165828,1.0266805,1.1305466,1.4227915,1.0749525,0.91534317,0.84271693,0.76460373,0.65969723,0.5606111,0.45245528,0.40524444,0.3252862,0.22591643,0.15351664,0.1294645,0.08563574,0.16932729,0.27771738,0.19952685,0.10582256,-0.015113827,0.55874026,0.9412136,0.60355586,0.45854175,0.35006267,0.31005538,0.5573728,0.69972116,0.42316025,0.3360486,0.5872345,0.6083708,0.45757437,0.34596094,0.29766035,0.19667365,0.12992886,0.06913808,0.0092253275,-0.03246362,0.24503483,0.47531366,0.31573725,0.23203863,0.17591064,0.13176925,0.07833651,0.80284464,1.0779524,0.7454746,0.6191875,0.48036903,0.3783946,0.47094774,0.4301153,0.38037652,0.29953328,0.3268482,0.35687408,0.331084,0.28670216,0.26906928,0.21896367,0.2177779,0.13264355,0.2093667,0.36149257,0.3077206,0.70122814,0.8031311,0.67541933,0.66483474,0.6840517,1.1558008,1.0605489,0.9079511,0.8343481,0.7634882,0.6865753,0.8424904,1.1428415,1.1706719,1.1020665,1.2148867,1.4411287,1.6185846,1.7134807,1.7838793,1.9085015,2.0331483,2.1296635,2.159327,2.1853964,2.2921848,2.3292503,2.3834763,2.43604,2.5047042,2.5647717,2.6907465,2.6189256,2.4897647,1.8748629,1.7789991,1.7970314,1.764235,1.8748142,1.959835,2.0751257,1.9445994,1.7937657,2.0227962,2.1600635,2.2835994,2.3548753,2.4026566,2.5526645,2.3494766,2.2939222,2.081665,2.1031542,2.0901785,2.5933156,2.8915071,2.2527106,2.1890922,1.8057034,1.2521713,1.1473197,1.0803612,0.96737933,0.9660976,0.90555537,0.8585422,0.9227843,1.0704008,1.1182424,1.1972327,1.0799584,0.9652556,1.0804673,1.2878382,1.4256942,1.342113,1.1524329,1.0724452,1.3183316,1.5264729,1.5772215,1.2935487,1.0423391,1.023396,0.9194201,0.8197464,0.76073974,0.6189432,0.5558689,0.47688514,0.98771846,1.0222238,0.9007727,0.8813864,0.78033125,0.7154094,0.748474,0.6397178,1.3337183,1.165456,1.1604544,1.0468799,0.80267656,0.70210654,1.2731181,1.0629866,0.8366646,0.7538619,0.62450683,0.61471725,0.7276933,1.0101588,1.2218451,1.2568195,1.1546952,0.87099695,0.6495147,0.62093294,0.58759797,0.43884373,0.3855245,0.51506877,0.94586796,1.2447991,1.2901437,1.2027293,1.2260429,2.074691,1.8880597
+0.5606164,0.89815265,0.9982301,1.0617783,1.0194135,1.4330783,1.6092668,1.4050627,1.319998,1.5480863,2.3889017,2.0034294,1.8072834,1.6322948,1.5209653,1.3992203,1.303726,1.1984646,1.1559926,1.4464722,1.5339065,1.4064417,1.2974331,1.2103586,1.1046667,1.7548687,1.8987131,1.7678133,1.595799,2.1926947,2.2330275,1.9472852,1.8374316,1.6932296,1.5908043,1.4750538,1.4058111,1.3809774,1.3311907,1.5569676,1.9401585,2.277299,1.8850086,1.8016173,1.6285721,1.5750711,2.1483746,2.015141,1.7488439,1.611308,1.5538235,1.4107628,1.2886211,1.218054,1.1284128,1.5438957,2.1145606,1.9322381,1.6371162,1.5763772,1.4444414,1.5725331,1.5746763,1.2460128,1.3875892,1.2885854,1.1185083,1.0068505,0.9391276,0.87352973,0.799604,0.7141515,0.5492648,0.44820833,0.43895525,0.44861576,0.32031575,0.27917436,0.25562528,0.26397195,0.2549724,0.16586705,0.1856835,0.0960571,0.055797566,0.3525986,0.9843602,0.72868407,0.5116995,0.4265488,0.5170141,1.3725556,1.0977162,2.2947967,1.9837797,1.6636041,1.9181712,2.0496364,1.8724715,1.5784594,1.4156568,1.3610778,1.3001628,1.9983263,1.8131077,1.5357237,1.4002811,1.2504796,1.0593663,0.8730552,1.5595534,1.5609915,1.4744049,1.2982955,1.0813763,1.9901509,1.8352201,1.5722742,1.3738924,1.1581092,1.0187584,0.8694616,1.3165369,1.6678841,2.0434585,1.7595185,2.1896873,1.9022615,1.58335,1.3820828,1.2074156,1.0345588,0.91121316,0.8631832,1.8005942,1.7664862,2.2838953,2.0752485,1.7418805,1.5326854,1.3707445,1.22826,1.1125917,0.945349,0.8652178,0.85484564,0.68269366,0.5187855,0.43909496,0.69908905,0.71523917,1.2792442,1.3084065,1.1349357,0.9549185,0.8061365,0.64388746,0.5398983,0.44411197,0.39247406,0.7424979,2.123491,2.4825368,1.9108641,1.622499,1.4177486,1.2000067,1.2862804,1.9399531,2.2759476,1.7607911,1.5239104,1.3475351,1.1882961,1.0430644,0.8838132,0.7517721,0.6264631,0.7523947,0.6026842,0.4746065,0.3264856,0.19765402,0.15518533,0.15102108,0.086606175,0.04774693,0.04183394,0.017762166,-0.07454674,-0.109096214,-0.22107567,-0.31357878,-0.29587334,-0.29906029,-0.12172124,-0.19333197,-0.1711136,-0.17947415,-0.1742244,-0.27048486,0.012356702,1.8708513,1.4092004,1.1724931,0.9649381,0.8228644,0.7362126,0.69250256,0.6271154,0.5489601,0.4590721,0.32638076,0.25135425,0.14843172,0.08183427,1.8340046,1.492945,1.2024785,0.964885,0.8542503,0.91903764,0.9050528,0.8631093,0.761763,0.76656055,0.81368303,0.76366806,0.6831275,0.62870836,0.5269592,0.5069816,0.5592018,0.53823,0.56796265,0.5761877,0.7405038,0.85117126,0.7969779,0.8301835,0.8273227,1.1767695,1.2779915,1.1039212,1.0283229,1.0071619,1.0044968,1.2945576,1.4467516,1.4263196,1.3017372,1.2887894,1.3900326,1.4951202,1.4694513,1.4269711,1.3789909,1.4166754,1.5318842,1.5878974,1.7493706,1.770808,1.8404105,1.8506196,1.9595042,2.0805416,2.1637728,2.2308445,1.9664848,1.9221889,1.7997034,1.7077262,1.670673,1.6337494,1.6299584,1.6149668,1.7992842,1.7912579,1.5673198,1.6344271,1.7984402,1.9722776,2.0594735,2.17797,2.234387,1.7113674,1.4902077,1.2955276,1.7155138,2.0012054,2.1885967,1.9507194,1.7645181,1.6677939,1.679039,1.5351937,1.4876747,1.4323142,1.3172958,1.3398339,1.2475085,1.1364326,1.1102021,1.1890955,1.1718011,1.1488873,1.0606408,0.98265624,1.0247564,1.1068428,1.2736707,1.1297048,1.0065622,1.0071771,0.9732027,0.99791265,1.0025692,0.8998508,0.8114329,0.7644592,0.7106744,0.73238564,0.7276151,0.6516241,0.65590924,0.58182883,0.9052737,1.0260363,0.8718704,0.82504046,0.74316,0.6500432,0.6519689,0.6447238,1.5813822,1.3982067,1.3563104,1.2878549,1.1041143,1.002094,1.5814536,1.4320625,1.3422017,1.2547443,1.1158733,1.0665543,1.3143475,1.3584332,1.3295176,1.373264,1.1864595,1.0336128,0.9727534,0.9130622,0.8249867,0.7247683,0.8891679,0.92348915,1.5885224,1.9704418,1.9830787,1.8587575,1.602039,2.2432127,2.1251507
+0.66004336,0.7685374,0.8484045,0.7915696,0.7656122,1.0148861,1.0858086,0.9546031,0.86757857,0.8996668,1.8521665,1.4490877,1.2301818,1.0940007,1.0046961,0.94610643,0.9454591,0.9025483,0.841234,1.4805173,1.4488692,1.2308551,1.1107936,1.0453986,0.99348176,1.3246524,1.5478277,1.4572129,1.2992876,1.8207009,1.6183779,1.3516889,1.282654,1.1542206,1.0747703,1.0220151,0.9700209,0.9305896,0.99398994,2.2728574,1.6828891,2.4027805,1.8244374,1.5336908,1.3713348,1.3801466,2.0442762,1.7499056,1.4413553,1.4186473,1.4385724,1.2745132,1.19362,1.2925794,1.3352077,1.7613666,2.354458,1.9094417,1.6034534,1.4197319,1.2933881,1.508932,1.4342203,1.3246038,1.6964397,1.5488186,1.3228363,1.2248302,1.1568584,1.0982985,1.0539387,1.0152637,0.97113574,0.93732584,0.90029895,0.8853018,0.84451044,0.8392568,0.83373284,0.7958857,0.7964577,0.77653694,0.7654767,0.75516653,0.6966491,0.6453098,0.6486751,1.2951509,1.2102976,1.032994,0.93716884,1.0310488,1.0069897,1.2283626,2.0365703,1.6852716,1.6628182,1.9112828,2.026421,1.6950665,1.4835488,1.3391216,1.2462248,1.2028568,1.1230446,1.2017565,1.2033831,1.0828192,1.0268322,0.9760835,0.90727097,0.8700555,0.85300994,0.8209634,0.80705535,0.75132865,1.4683928,1.6617886,1.5221491,1.4889343,1.4468236,1.3850849,1.440646,1.3284229,1.1734262,1.2226326,1.2269773,1.4526374,1.1839888,1.0506899,1.0138447,0.9547823,0.9505096,0.90513766,2.1429563,2.3620229,2.7092595,2.3116338,1.7927716,1.5635238,1.5058155,1.5112693,1.3963143,1.2583482,1.1933508,1.1462468,1.1031541,1.0551684,1.0145068,0.95731187,0.89922225,0.89175725,0.84855485,0.8301375,0.7670667,0.7221267,0.70899063,0.7144686,0.72098666,0.70522153,1.5610962,1.6397171,1.380943,1.2252867,1.0867414,1.0092909,0.9514047,1.0435619,1.1595345,2.2406998,1.6722004,1.4317232,1.2650619,1.1547608,1.0619291,0.9841738,0.9271355,0.87279034,0.89784014,0.7908505,0.7283566,0.68474054,0.6311251,0.5997038,0.5815815,0.5314594,0.48595876,0.5407334,0.55054194,0.45371354,0.37257752,0.31108278,0.273555,0.2661494,0.31211036,0.88414353,0.7696619,0.70696586,0.66726756,0.6072608,0.5607165,0.4942031,1.3501456,1.1612005,0.8956345,0.80854523,0.68545365,0.62522364,0.67814356,0.6986293,0.64500386,0.60808396,0.5261047,0.492594,0.48136425,0.44891417,0.39250132,0.32568517,0.26700413,0.23297648,0.2249109,0.2678042,0.18859725,0.17926446,0.16009595,0.17371014,0.23389016,0.21494377,0.16573577,0.19809164,0.21125546,0.3623296,0.5893127,0.49945974,0.5694705,0.5742801,1.4787226,1.256,1.0411565,0.9433541,0.9168656,2.1386237,1.6219888,1.4245529,1.2326097,1.1567419,1.1008232,1.1505804,1.1192743,1.2562537,1.1363869,1.0302675,1.1348914,1.3975272,1.4903004,1.2137005,0.99948263,0.9367358,1.1301587,1.4057775,1.5100398,1.1895037,1.4253564,1.6530204,1.8434533,1.8849959,1.8681614,1.7083817,1.214701,1.0864222,1.0200963,0.8568408,0.967386,0.88533986,0.9591432,0.95966375,1.2594898,1.3193916,1.0532501,1.136834,1.3528068,1.5967807,1.7732041,1.9577938,1.9452975,1.2110815,1.0330696,1.2345864,1.831671,1.7554773,1.6578838,1.7317712,1.4736964,1.5137113,1.7397859,1.5266881,1.4046957,1.3155664,1.0995247,1.1470594,1.0454096,0.984787,0.93234426,0.98376215,0.9180963,0.92951995,0.7976665,0.76548195,0.8107957,0.99934936,1.1714455,0.86721635,0.84884036,0.8458483,0.7279533,0.8782251,0.8759421,0.73250896,0.6280324,0.67347234,0.6288071,0.61559546,0.60081905,0.796044,0.9255104,0.8093326,0.86262214,0.875649,0.79495925,0.7390047,0.61346126,0.6246942,0.7339985,0.63606083,1.1438329,1.006639,0.89203346,0.86672413,0.7342235,0.7759861,1.8213952,1.3553109,1.1671169,1.2944379,1.1700784,1.0816872,1.2478764,1.2022153,1.0705307,1.1305925,0.9524981,0.79786,0.6703035,0.67581415,0.7150968,0.8541769,0.79252845,0.7335229,1.4365623,1.4880785,1.5893133,1.4253893,1.1565526,1.3170754,1.3439155
+0.31926787,0.8218337,1.1543086,1.1371366,1.1068249,1.1874051,1.1858876,1.1249739,1.1080365,1.0068693,1.2105546,1.2620509,1.1685655,1.1328595,1.3336188,1.4844795,1.3296657,1.171736,1.2237282,1.6755776,1.5671351,1.3718174,1.249227,1.159268,1.1023705,1.0537076,1.1414611,1.1662931,1.7413471,2.5435739,2.046396,1.7599425,1.6106527,1.4471387,1.3715249,1.3004038,1.202102,1.1370738,1.1097628,1.6239212,1.4701414,1.7434201,1.598582,1.4355916,1.339634,1.1623969,1.171804,1.1962222,1.1093259,1.366778,1.3681977,1.2208171,1.078754,2.5350778,2.5886712,2.0985084,2.410761,2.0549798,1.7314067,1.5093434,1.4536102,1.370837,1.5533552,2.027278,2.0259056,1.6735835,1.4780436,1.3190517,1.227445,1.1307341,1.0318512,0.93002236,0.78251576,0.6806717,0.6106052,0.50440454,0.4238318,0.32897812,0.23050897,0.12654999,0.046998683,-0.04651169,-0.064807236,-0.12358664,-0.3007372,-0.34966865,-0.3407889,0.31070232,0.5621051,0.3870525,0.18937896,0.18285713,0.053082537,0.094710976,0.03863575,-0.031140279,-0.061182674,-0.07188772,0.28675205,0.6293374,0.39609176,0.2610531,0.34009916,0.33360973,0.90904856,0.8597847,0.60591775,0.4983555,0.3681699,0.2931589,0.18786815,0.35214075,0.8172847,0.9494455,0.93629926,0.74734294,0.6004397,0.67231,1.0661116,1.33706,1.0151418,0.81650484,0.8891343,0.87622964,0.5430716,0.42385995,0.28130543,0.13199961,-0.054141667,-0.21097241,-0.230728,-0.36092633,-0.42132378,-0.46547696,-0.08827092,1.3384092,1.5384738,1.9680824,1.650691,1.5793571,2.1210334,2.0631094,1.6369197,1.329221,1.3893939,1.3139987,1.0604315,0.97371125,0.85514903,0.6900117,0.5086056,0.37588406,0.2504022,0.09544875,0.045138832,-0.030264486,-0.0846082,-0.056991603,-0.045092385,-0.13151975,-0.18777598,-0.23844227,-0.2807429,-0.3081317,-0.45594007,-0.25732827,-0.016191017,-0.2177824,0.0836788,1.5679232,1.195513,1.0763462,0.71615577,0.4322819,0.25299597,0.09301078,-0.030410182,-0.16543293,-0.24909064,-0.27734026,-0.3910836,-0.4609309,-0.55261874,-0.63618094,-0.72277665,-0.7760093,-0.8289764,-0.7301379,-0.48676676,-0.68839544,-0.77669734,-0.8513236,-0.9114048,-0.9409808,-0.96909654,-0.5245825,0.6901777,0.51965076,0.24894221,0.1106454,0.014196988,-0.1426551,-0.19642751,-0.2438973,-0.35385507,-0.41990942,-0.4975747,-0.57824874,-0.6556015,-0.38041088,-0.14771105,-0.31946927,-0.4098286,-0.51893497,-0.6166613,-0.6781788,-0.70532954,-0.79536486,-0.85489845,-0.90577567,-0.9296094,-0.93981326,-0.85194343,-0.89872515,-0.90774846,-0.9262289,-0.91484094,-0.9660939,-0.99334323,-1.0195179,-1.0388877,-0.8885544,-0.5202496,-0.5621641,-0.6398311,-0.6823257,0.39943302,0.56474483,0.30040687,0.199947,0.18680945,1.8931912,1.4846624,1.0362056,0.90042424,0.78877485,0.73229396,0.9661294,0.96178734,1.4522316,1.1902096,0.99304783,1.0315132,1.2209076,1.2167343,1.1115463,1.0310854,0.93283105,0.97602725,1.0555215,1.3072733,1.571932,1.6008823,1.8801551,2.103167,2.002274,1.4607167,1.673361,1.5907885,1.8345847,2.0251145,1.6658008,1.466143,1.328579,1.4727515,1.535799,1.777071,1.8472445,1.5735334,1.4119697,1.4068094,1.5479581,1.7826725,1.9626006,1.7107192,1.1308088,1.1272808,1.1401902,1.4281054,1.422509,1.3316658,1.8824954,1.778089,1.8835092,1.7278178,1.5219034,1.5657172,1.5509312,1.3473985,1.2846419,1.19433,1.1068487,1.012289,1.0299741,0.93972987,0.9186381,0.8676211,0.8914304,0.7436292,0.712814,0.75525147,0.6584611,1.0368465,1.0743821,1.0470397,0.9557669,0.90153074,0.7792883,0.7070849,0.8942217,1.2293048,1.0520906,0.97796154,1.1018639,1.1377474,0.9769175,1.3220332,1.5431943,1.3163651,1.2213159,1.0881913,0.9522408,1.0752919,1.1630667,1.6754491,1.4275949,1.2667662,1.1262624,1.0651224,1.4092338,2.4242892,1.7533454,1.4980519,1.8071771,1.7419578,1.654844,1.6553755,1.623257,1.4217844,1.2409406,1.1822484,1.4494541,1.3506901,1.2587099,1.1817636,1.6483445,1.4906934,1.3045101,1.964554,1.7948204,1.9244621,1.8036723,1.5813531,1.5044656,1.3696276
+0.25335264,0.75125015,1.077605,1.1430285,1.1415763,1.2420976,1.2462616,1.1862329,1.1121886,1.0511239,1.8692923,1.9885104,1.7488174,1.6811633,1.9822772,1.9044778,1.7223407,1.5581846,1.5517523,1.998713,2.3555207,1.9049468,1.6734278,1.5420698,1.446206,1.3472592,1.3048043,1.2418711,1.8130746,2.4768186,2.0315356,2.1501327,1.9318283,1.7107744,1.5558864,1.4609354,1.3647883,1.2665025,1.2226422,1.4267502,1.4012885,1.2519138,1.2028072,1.0965006,1.0060645,0.9386022,0.89749,0.69161284,0.58894956,1.2692817,1.303837,1.1146362,0.958266,0.8885885,1.6480422,1.8217325,2.0043106,1.964175,1.5969427,1.2838628,1.3662423,1.4246128,1.1948687,1.2972846,1.4314306,1.1909709,0.9666121,0.77253705,0.67694527,0.5528641,0.45187655,0.31903923,0.24928318,0.19169326,0.35660955,0.6062824,0.5915256,0.7072798,0.73261297,0.5525335,0.4515463,0.3154391,0.189913,0.07462807,-0.076336905,-0.17191504,-0.13538782,0.64496106,0.6148503,0.36761966,0.22201444,0.052802462,-0.09582162,-0.14658509,0.27769193,1.4353217,1.1729326,0.8990143,0.6710953,0.44417787,1.2084304,1.5175755,1.2681065,0.9620951,0.97619593,0.9932983,0.764551,0.63441896,0.4547984,0.4763142,0.6000736,0.3224216,0.2052995,0.4464193,1.827059,1.5152745,1.2289484,1.7229488,2.3475735,1.9707615,1.7804203,1.761341,1.5239902,1.2256445,0.9605285,0.74794537,0.6355289,0.6018071,0.46647072,0.36261952,0.2395776,0.18020546,0.1536809,0.20536213,0.27793872,0.41360107,0.5387557,1.4858589,1.7981439,1.441891,1.1975133,1.4657677,1.4551343,1.3915298,1.2660098,1.0478895,0.8506525,0.9051802,0.9596794,0.69672143,0.48193693,0.3083201,0.15878907,0.0037064292,-0.13494796,-0.21382554,-0.28182995,-0.27190304,-0.34594375,-0.41985112,-0.312304,0.12848178,-0.052222278,-0.1515912,-0.3101471,-0.43342888,-0.57235396,-0.6771685,-0.6969843,-0.6453798,-0.27680895,-0.21648705,-0.4162217,-0.5523724,-0.65265864,-0.7295743,-0.8284146,-0.8935987,-0.97911984,-1.0384717,-1.1832573,-1.2052791,-1.2938597,-1.4023533,-1.5270109,-1.5035918,-1.4974186,-1.424242,-1.4128833,-1.4653771,-1.5780623,-1.6135876,-1.6413112,-1.6457596,-1.6030781,-1.529582,0.32039502,0.8565862,0.54736376,0.40775666,0.3093056,0.20208699,0.0848428,0.056155633,-0.16583936,-0.31733876,-0.38840634,-0.4702366,-0.5582053,-0.6184801,-0.6615968,-0.65559405,-0.6839114,-0.74669254,-0.773818,-0.7665872,-0.8559487,-0.9938352,-1.0301569,-1.1289911,-1.1303372,-0.94890344,-0.7196667,-0.8244049,-0.9246871,-0.9718534,-0.9851941,-1.0659804,-1.0590615,-1.0721483,-1.0617316,-0.5749335,0.5434945,0.2816098,0.021100368,-0.11591938,0.3781958,0.6624516,0.36538178,0.23320289,0.15599366,1.6422851,1.5764086,1.5585557,1.2757002,1.0335974,1.2961607,1.7432396,1.4915488,2.129603,1.6717672,1.4938471,1.3476961,1.3832558,1.2985165,1.7056768,1.6829624,1.5048969,1.3445797,1.2732143,1.2533792,2.0627136,1.8291132,1.8551539,1.8095548,1.574995,1.3887739,2.1018224,1.9625968,1.6867722,1.6749277,1.626405,1.5739605,1.3766251,1.5804226,1.6539922,1.9907725,1.8793586,1.690685,1.4870832,1.4536922,1.5097198,1.6285055,1.7532423,1.7616665,1.65171,1.5587407,1.4299133,1.4405738,1.4014913,1.3557208,1.9468191,1.8637985,2.0897853,1.8905771,1.6589513,2.033822,1.9893167,1.644983,1.5468102,1.4710283,1.3509598,1.2524699,1.2311847,1.1437087,1.112097,1.0963823,1.2410749,1.2162945,0.98783064,1.2476487,1.5537701,1.5903504,1.4327737,1.3610348,1.2209777,1.2210755,1.1838702,1.0913639,1.0312989,1.4848747,1.4400208,1.3421466,1.336622,1.2786198,1.1669612,1.4442891,1.5669162,1.4138951,1.3096156,1.2445375,1.0493295,1.5333474,1.7174046,1.877038,1.6548984,1.4317746,1.283391,1.2733036,1.3776026,2.1457276,1.8919743,1.6538906,1.8047656,1.7261467,1.6393616,1.7079177,1.694176,1.5164304,1.3313985,1.2968142,1.2496897,1.1876115,1.1113068,1.0141969,1.0862311,1.0475385,1.0047214,1.7143928,1.8387794,1.6299548,1.4440113,1.2841542,1.3010067,1.2778295
+1.222408,1.8982253,2.0912838,2.0555613,1.9547827,1.8653626,1.8429185,1.8070827,1.7686739,1.6521938,2.3051333,3.3930287,2.8309846,2.6302862,2.6911669,2.5634036,2.4185038,2.2558308,2.1579273,2.4046993,2.512171,2.3372188,2.1904707,2.0036187,1.8444264,1.6709921,1.9615239,2.4273107,2.2890885,2.829037,3.173795,2.9693108,2.708055,2.5005245,2.3494232,2.2093973,2.0558324,1.9525645,1.7993283,1.6978315,1.5433152,1.5263234,1.5713995,1.4180517,1.3301172,1.0979937,1.0826988,1.0740777,0.9209548,0.7515188,0.6229437,0.5366384,0.438153,0.3512118,0.26623628,0.2281579,0.37374592,0.9539291,0.80160046,0.5552813,0.5442431,0.61183304,1.2038401,2.3266664,2.625825,2.5437257,2.2270832,1.9115151,1.5962722,1.3295044,1.0831679,0.81482786,0.9592592,0.92607796,1.7669067,2.086199,1.7510531,1.4761088,2.1833909,2.1868958,1.8831047,1.6366599,1.3820667,1.1642712,0.9797442,0.8044584,0.60939467,0.43043596,0.26061273,0.31524792,0.21077673,0.03528117,-0.115408614,-0.19341044,-0.24343397,0.6740098,1.4496242,1.1334741,0.91055024,0.677453,1.3404995,1.5969275,1.3554584,1.1260856,0.94751877,0.9647001,0.9959893,0.74893045,0.58371127,0.4449663,0.4405045,0.22995101,0.08053295,0.08884506,0.95684826,1.7551304,1.5099897,2.2624953,3.0491261,2.6357336,2.3342323,2.5722606,2.39448,2.021286,1.7001889,1.4001923,1.2149804,1.4376466,1.6939764,1.8253745,1.5768013,1.4180205,1.6109917,1.8328596,1.9088222,1.9085675,1.8142171,2.328484,2.8249712,2.5278795,2.4448886,2.3882074,2.1883047,2.7269633,2.8388255,2.483162,2.1619399,2.0475626,1.8506308,1.5118619,1.2026454,1.0580599,0.8738977,0.7007257,0.54966974,0.41297808,0.28977937,0.2872606,0.40919816,0.28540295,0.18633492,0.16081561,0.024290789,0.040115613,0.081619486,-0.09844111,-0.20759998,-0.29745528,-0.3504343,-0.32260156,0.27922988,1.0137312,0.579102,0.37030834,0.21892552,0.11009057,-0.011465799,-0.008032989,0.14866444,0.123355,-0.039344024,-0.14542685,-0.2654541,-0.40757263,-0.4936886,-0.5448059,-0.588591,-0.5970845,-0.61287576,-0.67445654,-0.7504683,-0.804896,-0.803545,-0.8031886,-0.78085244,-0.76720977,-0.7852054,-0.4833881,-0.47887045,-0.47432098,-0.495511,-0.55524486,-0.64756644,-0.18346344,-0.27072167,-0.33900914,-0.38078874,-0.48584968,-0.55705017,-0.60670984,-0.65374714,-0.672914,-0.69724333,-0.75099957,-0.7578671,-0.7556628,-0.79415894,-0.9113368,-0.9490962,-0.977772,-0.9458827,-0.78348887,-0.4650352,-0.5739509,-0.6532149,-0.6670851,-0.6627412,-0.71095175,-0.73658454,-0.56957465,-0.5996418,-0.5770405,0.060702894,0.8371058,0.550973,0.43368405,0.5084581,1.0759888,0.83457893,0.75714517,0.6857404,2.1883557,2.5923042,2.8012528,2.5685387,2.219401,2.5429873,2.9904134,2.9079766,2.9310863,2.7128305,2.593026,2.4281645,2.4277873,2.2892842,2.294004,2.268105,2.189099,2.0731955,2.0309,1.9943523,2.9272697,2.7903805,2.779582,2.6103587,2.4242964,2.3113549,2.1795342,2.1058588,2.0388575,2.1445508,2.1256435,2.5151186,2.560684,2.5843098,2.7538595,3.029071,2.9701254,2.731299,2.5592556,2.4576783,2.3828137,2.490351,2.6808083,2.3184013,2.083675,1.9941297,1.9659009,1.9669466,1.9566295,1.996501,2.7653313,3.0173452,3.3113909,3.060543,2.940663,3.1057024,3.0780659,2.7239938,2.5991325,2.5872946,2.4598126,2.4005384,2.367811,2.302818,2.2503536,2.1977239,2.4033527,2.4643006,2.2207766,2.887402,3.1937783,2.7779903,2.572726,2.5169125,2.4100733,2.325205,2.246989,2.1859527,2.1517487,2.341726,2.2673287,2.2022982,2.1511462,2.094673,1.9926081,2.6296923,2.7526882,2.4832208,2.3482058,2.3612885,2.2052886,2.8232012,3.0005088,2.8790498,2.6754396,2.4447918,2.3039255,2.2590475,2.2406437,2.952662,2.9466279,2.6135511,2.6068797,2.680615,2.8549604,2.7499886,2.660027,2.4351473,2.289787,2.2144816,2.180565,2.1180682,2.0498571,1.9872055,1.9110587,1.8154664,1.6629788,2.402917,2.7152557,2.3763845,2.2263584,1.9494904,2.3869743,2.6654186
+0.9341875,1.1343623,0.987012,0.90629804,0.8382945,0.7767486,0.7170583,0.6792931,0.6125624,0.5239098,0.9581255,2.5275817,1.7876316,1.8287165,2.0103512,1.5890514,1.2815292,1.1517874,1.0309252,1.0754213,1.4002464,1.4710135,1.2221272,1.0811198,0.99400973,0.91312206,1.0115674,1.1279719,0.9661925,1.1045669,1.6655107,1.3213439,1.1037238,1.005261,0.94087476,0.8878604,0.8217478,0.7767234,0.735414,0.72649646,0.6920124,0.66793275,0.6231987,0.59495056,0.5721966,0.5161574,1.0349925,1.1488245,0.9271701,0.9594596,0.8841457,0.8077899,0.75452995,0.69322735,0.6387943,0.8328315,0.8643532,1.042182,1.060638,0.8016703,0.65330213,0.5863761,0.7606437,0.9652127,1.2019765,1.0098021,0.83062476,0.69658256,0.58719885,0.50010246,0.42425108,0.29224652,0.22355826,0.44468707,0.91597426,0.8897013,0.61276597,0.46873993,1.0792055,1.3448029,1.1434693,0.90531826,0.69184345,0.6140977,0.47735524,0.31055167,0.14599763,0.20745027,1.2104889,1.1023048,0.7676294,0.58900255,0.4087714,0.30632597,0.25345206,0.4822877,0.65859956,0.43242747,0.27004057,0.23168688,0.69347787,1.26576,0.8104198,0.61089045,0.78546035,1.0875509,0.7220703,0.63940525,0.72575384,0.52175486,0.34746572,0.24467008,1.011796,1.0514127,2.0402641,1.4605064,1.3080914,1.7263169,1.9528782,1.5171075,1.1668913,1.5554786,1.3791361,1.0397539,0.84215695,0.6762848,0.8586534,1.4826322,1.4096165,1.0660025,0.9263243,1.235635,1.5860744,1.9894347,1.7986455,1.5544958,1.5120282,1.5875187,1.5244291,1.56901,1.7204759,1.5479715,1.6881499,1.5833776,1.4790854,1.4820156,1.3140738,1.2951343,1.2531273,1.0080893,0.8400132,0.72445077,0.62921876,0.4771027,0.35702592,0.255455,0.1779774,0.37249833,0.55029523,0.59203553,0.6008793,0.3988889,0.24918355,0.3839535,0.58865625,0.3324427,0.16582784,0.028254878,0.08966145,0.7699263,0.74429,0.45779407,0.26192665,0.1118118,0.02017999,-0.06838849,-0.11713949,-0.14304101,-0.16053689,-0.20555602,-0.32417738,-0.3198406,-0.35145384,-0.48205507,-0.52672493,-0.52874136,-0.56852645,-0.5751319,-0.5979125,-0.6420888,-0.65640277,-0.6596149,-0.69478285,-0.7203013,-0.7186383,-0.7234843,-0.74473214,-0.757185,-0.7562804,-0.7530982,-0.73232716,-0.70753586,-0.32130602,-0.1035852,-0.32931772,-0.4456511,-0.4869191,-0.54870486,-0.5872514,-0.64798725,-0.67134225,-0.68588495,-0.71360886,-0.75001585,-0.75840306,-0.75306576,-0.76988566,-0.81839633,-0.81094,-0.86531425,-0.8606121,0.20395833,0.46474254,0.14624561,-0.03903592,-0.12267484,-0.17619656,-0.2558412,-0.3319796,-0.36924124,-0.42745203,-0.42602885,-0.10570006,0.060621966,-0.06650819,-0.12834388,0.2164538,0.6251247,0.29960683,0.16107602,0.14743859,0.601257,1.4571695,1.825029,1.2616067,0.9443197,1.3720589,1.7978487,2.007489,1.7220014,1.3093827,1.1508441,1.0678816,1.1007615,1.0213923,1.136188,1.4622824,1.2367215,1.0505825,0.9670048,0.91000843,1.4800527,1.373038,1.3721924,1.1518569,0.9976362,0.9114207,0.8451712,0.81974727,0.79763734,0.8339187,0.80862355,1.1655371,1.1418321,1.3810037,1.6465638,2.2230449,1.6023347,1.293712,1.1484053,1.4198204,1.4042933,1.4912555,1.6392164,1.2266566,1.0063367,0.8905755,0.8213327,0.7955099,0.76355666,0.7399022,0.7354491,0.7110733,2.1587188,1.5600617,1.795331,1.8676803,1.5313354,1.2139649,1.2581911,1.2929374,1.0507381,0.98861694,0.91213095,0.84774077,0.7661334,0.71749973,0.69316167,0.7433552,0.6481994,0.6629427,0.6500626,0.8918167,1.0585917,0.95974314,0.84677154,0.8102787,0.74617445,0.69785684,0.6484349,0.7745428,0.7210395,0.6523897,0.64391446,0.61453474,0.5701848,1.2822475,1.2978563,1.055778,0.9374223,0.9488847,0.82239735,1.2160493,1.3158336,1.1065018,1.0067706,0.8740531,0.7920908,0.779425,0.9494401,1.3852477,1.308981,1.070797,1.0454524,0.9744344,1.318603,1.2523357,1.1178268,0.97051454,0.8967047,0.8456793,0.7476523,0.73255086,0.66611844,0.6029878,0.60793877,0.57625,0.55324364,1.1106272,1.3096215,1.0934017,1.0689704,0.9248783,1.6991606,1.5252235
+0.6749433,0.744409,0.82765406,0.79987764,0.74638116,0.6968303,0.64110434,0.59404737,0.54189575,0.48375374,0.4893093,0.8164226,1.8177509,1.5179974,1.33339,1.2011788,1.0527874,0.9603914,0.8808447,0.8284106,0.8967442,1.1746234,1.0161448,0.8804515,0.8066271,0.7646278,0.8540815,1.3591859,1.1138994,1.6003896,2.003673,1.5312331,1.2560711,1.0934522,0.97636056,0.89558315,0.82188606,0.76068735,0.7475208,0.7376058,0.70988667,0.67311656,0.6255077,0.56815493,0.50645304,0.44560915,1.2081279,1.2876374,1.075129,1.962085,1.4858309,1.2311031,1.1060647,1.022651,0.9558985,0.8911968,0.84483063,0.8241053,0.8251654,0.81194884,0.96857953,0.8828149,1.0643852,1.5505943,1.6378014,1.6436932,1.7051572,1.2742882,1.0903898,0.960271,0.8699702,0.8043044,0.757101,0.6842055,0.902634,0.95752394,0.7892517,0.69306237,0.79256064,0.9437717,0.84786236,0.73537874,0.60148466,0.53869164,0.4351592,0.31173053,0.1976014,0.1281602,0.7642819,1.2558556,0.99714303,0.72379684,0.51397717,0.5622146,0.63111484,0.4745444,0.41588855,0.29264084,0.25302213,0.18107006,0.11075038,0.12165667,0.05910029,0.06658302,0.8318793,1.3686895,1.031777,1.1210177,1.2060624,0.9652748,0.713079,0.60166943,0.6708393,0.6822214,0.8240303,1.1337187,1.4803921,1.6439385,1.2134686,1.0429978,0.84744906,1.0190506,1.0704947,0.83505243,0.80130804,1.1066728,1.3700205,1.0120878,1.5282907,1.6673183,1.3772664,1.4841936,1.9422472,2.8108306,2.6240795,1.9772575,1.591789,1.3374137,1.2816668,1.2167525,1.3000977,1.404295,1.6842606,1.4548073,1.2232397,1.2805477,1.2433045,1.0950819,0.9862381,1.280266,1.3176806,1.1230248,0.9965985,0.89593446,0.79551804,0.7089948,0.8860224,1.2866594,1.1800644,1.0471599,0.91996783,0.89651585,0.9080382,0.9796095,1.0679903,1.2002994,1.148887,0.978402,1.0483377,1.5738075,1.3373057,1.105768,0.950148,0.84918356,0.7713623,0.6895254,0.61403024,0.54356444,0.48378885,0.4929908,0.33433828,0.23807527,0.15444684,0.04694893,-0.031963054,-0.10012448,-0.15849899,-0.20077457,-0.2565274,-0.30909702,-0.33858556,-0.3884101,-0.44871414,-0.48858726,-0.50013447,-0.5302673,-0.55202305,-0.5501738,-0.56063837,-0.5728235,-0.5479835,-0.55485284,-0.54066175,-0.29789704,-0.1766513,-0.31163067,-0.38107333,-0.4318222,-0.4757726,-0.52524185,-0.56795245,-0.6007458,-0.6302611,-0.65479636,-0.6604579,-0.6782459,-0.68276596,-0.67154616,-0.6993935,-0.7549348,-0.72027844,0.82343185,1.1343285,0.6792788,0.482718,0.3775199,0.2995335,0.2060178,0.1310706,0.06968576,0.004698403,-0.014070611,-0.022497784,-0.022216123,-0.072638184,-0.13689676,-0.15031044,-0.027386717,-0.12688479,-0.18693802,-0.20415206,-0.22761792,0.41354442,1.3621366,0.99063396,0.7018466,0.85750735,1.506237,2.1374395,1.7705042,1.3140745,1.1761475,1.0496192,0.9884486,0.9143425,0.91499037,1.7249675,1.6327232,1.2583485,1.0763093,1.0378971,1.3390691,1.2522452,1.0965967,0.98237824,0.93055755,0.92583656,0.8845768,0.8299197,0.85521144,0.8541182,0.80030596,0.7669886,0.68423057,1.2034338,2.333673,2.0863154,1.5967975,1.27454,1.1109741,1.5340142,1.4874824,1.550816,1.5543872,1.1274602,0.9717512,0.9250425,0.8748664,0.8068916,0.75702524,0.73497504,0.7628666,0.7874388,1.8448755,1.6494616,1.9710035,1.8124311,1.3077321,1.1213566,1.0177221,0.9924505,0.895311,0.7981949,0.7288072,0.670848,0.6283052,0.6241789,0.6380067,0.6527795,0.5971254,0.56097484,0.569365,1.1015065,1.352546,1.0990517,0.9483615,0.8891375,0.83145285,0.7922442,0.73242044,0.8721652,0.7961992,0.6981352,0.9692128,0.9718019,0.8413247,1.3530535,1.2965341,1.0755537,0.9547427,0.877653,0.7813672,0.98524666,1.131338,0.9664917,0.98931897,0.86108357,0.7713278,0.7227794,0.6960275,1.2419213,1.7246935,1.2756646,1.3189359,1.2649125,1.5634243,1.3642527,1.1306183,1.0165951,0.9032469,0.8387871,0.779046,0.7391999,0.6783617,0.64620686,0.62802863,0.615047,0.6018406,1.2327328,1.4220421,1.1243294,1.005435,0.9136116,1.3782387,1.4167588
+1.0104146,1.1002102,1.3473098,1.4331925,1.4417114,1.8900286,1.5781021,1.4887292,1.6438944,1.5849292,0.9824934,0.49325198,0.2804348,-0.021090183,-0.38352746,-0.47886753,-0.5136425,-0.53632283,-0.589949,-0.6312394,-0.682081,0.00041339174,-0.09891702,0.07163301,0.3818068,0.11362536,-0.13879785,-0.21979147,-0.22929789,-0.35947973,-0.40041387,-0.466474,-0.53327477,-0.5020417,-0.4926918,-0.5201379,-0.5589415,-0.6120409,-0.7098064,-0.5785567,-0.14025919,0.09548727,-0.025252642,-0.26153374,-0.3279739,-0.4145487,-0.5617727,-0.5839827,-0.63041437,-0.6570111,-0.6461619,-0.64204943,-0.67644596,-0.7094451,-0.27385134,0.38390958,0.13927008,0.4254748,0.52991146,0.22745334,-0.047957193,0.35576564,0.17757325,-0.038617976,0.73518777,0.6559565,0.37867427,0.21252649,0.011724371,-0.12561436,-0.19564809,0.30961978,0.11983447,0.45589232,0.3055782,0.76492673,0.6314293,0.30047446,0.12803225,0.00050152093,-0.08813067,-0.16544145,-0.25164196,0.05088942,0.17433248,-0.05615573,0.77371144,0.32019392,0.12430866,0.0038069822,0.11375956,0.3782913,0.07151967,-0.055893023,-0.16134778,-0.22241838,0.12687056,0.08273865,0.20546041,0.092675805,-0.020503718,-0.03316292,0.39248082,0.18434666,-0.034815744,0.105875105,-0.020128533,0.3473935,0.22741877,0.017505828,-0.06363243,0.31159735,0.21019597,0.0523437,0.44161144,0.2017925,0.022285871,0.12551923,0.83228874,0.42006555,0.16776769,0.01035808,-0.10638487,-0.10331488,-0.1402347,-0.02758186,0.021367837,-0.116890594,-0.19426766,-0.26624098,-0.34352142,-0.3848449,0.000622157,0.111044064,0.47338784,0.13445699,-0.0446156,-0.14925337,0.22399668,0.05302972,0.18364461,0.57154596,0.27322096,0.019480642,-0.104694664,0.39383972,0.25332066,0.021693155,0.09384805,0.08198932,-0.092720315,-0.16846715,-0.23651312,-0.28488144,-0.35686666,-0.41915917,-0.45509315,-0.48902494,-0.20390633,0.7446348,0.33373165,0.24006192,0.39028108,0.1374246,-0.059380397,0.25587848,0.1705456,-0.05252969,0.24174215,0.27746975,0.01719676,-0.09741467,-0.18578753,0.2096604,0.9025939,0.4061594,0.17488359,0.34034,0.3809392,0.22152908,0.13075341,-0.022689875,-0.08443624,-0.08721752,-0.1270872,-0.24704099,-0.3075037,-0.10650918,0.026583951,0.04296979,-0.09538728,-0.22973748,-0.3018211,-0.34565637,0.2043949,0.23176925,-0.08313435,-0.14836442,-0.19718106,-0.17085095,-0.1574509,-0.27586907,-0.31390572,-0.36479604,-0.41830853,-0.44067892,-0.4520719,-0.4383433,0.16054796,0.31808698,-0.020281266,-0.073228255,0.27924195,0.12477797,-0.057230227,-0.16444339,-0.19911893,-0.22984879,-0.2804336,-0.31031936,-0.3479939,-0.3666588,-0.35099924,-0.39546955,-0.40866596,-0.33290574,-0.17397131,-0.3101452,-0.34441215,-0.35063574,-0.35022184,-0.37824327,-0.53419715,-0.46562743,-0.22074975,0.046069194,0.40711164,0.38656807,0.07480644,0.15038489,0.40274975,0.79122925,0.91628283,0.3944879,0.29175413,0.16946094,0.13357966,0.34395304,0.6939048,0.9614395,1.1450449,1.2495565,1.3457007,1.405673,1.5640477,1.7900176,1.8971701,1.9760935,2.0607963,2.1566172,2.329129,2.733302,2.8443818,2.810594,2.836102,2.8699355,2.8755517,2.9771383,3.0701752,3.1915956,3.2290368,3.2303133,3.0931172,3.1674333,3.148643,3.1934185,3.2410307,3.2390153,3.294855,3.2135043,3.241314,3.2457623,3.3465676,3.3292823,3.4113286,3.486834,3.4203222,3.5189557,3.4637895,3.4761174,3.4358706,3.3848717,3.3966026,3.3801203,3.3863497,3.552802,3.537145,3.5738888,3.5429673,3.4988503,3.4689493,3.331023,3.3251252,3.3387094,3.4207563,3.278086,3.2829323,3.3512995,3.3271246,3.3467557,3.2509487,3.4286149,3.369022,3.3917918,3.3974926,3.363836,3.3158038,3.3125484,3.3330355,3.240695,3.325118,3.3705926,3.404475,3.3529077,3.4719858,3.4546208,3.3462834,1.9901454,0.8442204,0.7201416,1.1189795,1.4796972,1.8710767,2.1590996,2.4867308,2.619071,2.8939865,3.0716324,3.1306214,2.9790547,1.520795,0.37529218,0.34479192,0.82736385,1.2315867,1.4690548,1.5815082,1.7044457,1.7496946,1.805973,1.9261715,2.101454,2.0517788,1.7981476,1.2651366,1.1460433,1.264853,1.3822984,0.8559329,0.703104,0.7083305,0.28198233,0.034282964,0.021098912,0.06718865
+1.1028744,1.4807367,1.2619414,1.0682563,0.9090396,1.4619558,1.2352304,1.0528173,1.1045636,1.2793901,0.95171213,0.6117747,0.5648358,0.46881247,0.37592512,0.353231,0.34222448,0.34487545,0.47077465,0.75266427,0.63524127,0.55719733,0.34267744,0.35763967,0.39656532,0.40305668,0.3132484,0.80351746,1.0631132,1.1227578,1.4156276,1.1352403,0.8596163,0.7928177,0.6801878,0.5622218,0.5268774,0.46677935,0.46152917,1.2161297,1.5349145,1.2170057,1.261756,1.1932446,0.9397627,0.7847509,0.67917264,0.54063785,0.42433238,0.3917353,0.4032866,0.41734028,0.4064112,0.41480434,0.49380225,0.85157007,1.0564771,1.070183,1.1017069,0.95912516,0.84638786,1.4958229,1.117128,0.9193684,0.8913844,1.0014353,1.0620308,0.96841204,0.7867459,0.77149594,1.3570564,1.437067,1.2469199,1.0637869,0.9589191,1.721874,1.4675417,1.231482,1.070673,0.9789946,0.8593453,0.841702,0.82809997,0.8976768,0.81674767,0.7637683,1.7044749,1.3087475,1.1862807,1.075802,1.1112009,1.3658841,1.1120745,0.9517497,0.916694,0.8204528,1.1909988,1.6271545,1.255333,1.091767,0.99222136,0.9613817,0.92371166,0.8410322,0.7440813,0.851337,0.79244494,0.9954959,0.9220246,0.85393745,0.7861976,1.1634685,1.6692882,1.6352637,1.8478916,1.4057889,1.2418659,1.1368523,1.1237192,1.1484479,1.0601422,0.9893621,0.927853,1.311474,1.3308887,1.104593,1.6618521,1.3383,1.1782998,1.1101378,1.0045502,0.93886155,0.99683714,1.2255449,1.6233566,1.1798484,1.0672531,0.97900414,1.1759994,1.0545357,1.4776683,1.9621778,1.4830287,1.2216501,1.1210092,1.3650842,1.3842566,1.1697849,1.5955666,1.3753712,1.1976113,1.1097747,1.0885599,1.0436925,0.97721446,0.89763474,0.8746762,0.8299897,0.80481327,1.8772185,1.4968395,1.2484734,1.1766967,1.0682619,0.98909104,1.1450591,1.1424528,0.99125206,1.0765909,1.0642538,0.9270431,1.0579761,1.4688797,1.921376,1.8907487,1.6070086,1.369637,1.2862318,1.1797909,1.0933449,1.1900696,1.1973827,1.135002,1.1819489,1.1481395,1.0207518,0.9834244,0.9732232,0.9090451,1.141514,1.0840646,0.9497521,0.846194,0.8771978,1.026947,1.0451707,0.8644569,0.8673209,1.3078843,1.3915365,1.2841567,1.0967178,1.0522659,0.95135915,0.86251587,0.8048837,0.81656474,0.779265,2.0010922,1.6573261,1.2739422,1.1335266,1.1536559,1.0354941,1.0138729,1.1824733,1.1837219,1.0170398,0.9364424,0.8824504,0.8467878,0.83290774,0.79546195,0.76892674,0.78525186,0.68241,0.7505031,0.7350391,0.7014109,0.6842624,0.72245085,0.77640545,0.5938186,0.584444,0.6369376,0.7367548,0.9506102,1.0308015,0.8905231,0.9072912,0.9375715,1.5808034,1.760011,1.3844248,1.2864537,1.2021852,1.2038336,1.3641436,1.536412,1.6270555,1.8394691,2.0916383,2.2605453,2.393419,2.6401687,2.807763,2.960565,3.1209424,3.299782,3.494611,3.6580539,3.9432685,3.824719,3.8085222,3.8309267,3.9199042,4.087032,4.1347704,4.1494493,4.2877235,4.0905223,4.149221,4.1493707,4.228382,4.216462,4.225798,4.2981944,4.43119,4.389705,4.3864217,4.3568068,4.3448796,4.3359404,4.314858,4.4784813,4.401909,4.4694157,4.40113,4.336027,4.3426256,4.3963556,4.4863744,4.2377834,4.27093,4.434299,4.3371325,4.2591295,4.178081,3.9542344,3.5346198,3.1342535,2.8019938,3.1014302,3.4014947,3.6291857,3.8195877,3.9018881,4.1321163,4.199997,4.1375484,4.1051855,4.1875124,4.2801104,4.275426,4.3713136,4.277566,4.272725,4.306897,4.1933618,4.2142363,4.2654634,4.22875,4.2002115,3.8081398,2.544855,1.3405796,1.3016846,1.2714944,1.1156604,1.5155332,1.5082754,1.6628822,1.9382851,2.0467293,1.9170574,1.5302256,1.7238381,2.0767126,2.31956,1.536732,1.1397219,0.8094441,0.78999054,0.91855633,1.2945318,1.5234195,1.7095816,1.9635885,2.117523,2.1665788,2.1941009,2.2577622,1.9001727,1.2985266,0.7771488,0.6103275,0.8143692,1.216397,1.2973013,1.4131256,1.3540438,1.0781627,0.8706384,1.3511064,1.4508165
+1.4807487,1.1237848,0.9680189,0.7167965,0.6531967,1.5559969,1.2241893,0.97200024,0.8785008,1.0729169,1.0281813,0.7996708,0.69019735,0.5655847,0.45843095,0.39910352,0.32013643,0.24284746,0.27294475,0.6332914,1.1113212,1.0560242,0.8111308,0.69403887,0.56960887,0.52505994,0.9741602,1.4904141,1.2205873,1.4154197,1.5513852,1.6967059,1.357156,1.3770748,1.2756817,1.0253948,0.89908206,0.82721144,0.72527057,1.5382544,1.747409,2.0453162,1.6669611,1.7812319,1.4192315,1.2186794,1.1511526,1.0449377,0.9061572,0.78284824,0.7574242,0.68819165,0.5843157,0.5160879,0.66427636,0.9104197,0.748719,0.84937614,1.3003445,0.9486537,1.4309999,1.6280787,1.2388742,1.0692554,1.0924265,1.1414673,0.9100058,0.84068066,0.8018988,0.908632,1.2472208,0.8866432,0.8278175,0.7554721,1.3138295,2.1876106,1.5931072,1.3776592,1.1455184,1.0295649,0.8467778,0.8119853,1.3839927,1.9983385,1.5555806,1.2854841,1.1493056,1.0154845,0.93825215,0.84953654,0.73239493,0.71383315,0.65087456,0.54038006,0.4882819,0.47108984,1.6683173,1.5154399,1.2683365,1.1377105,0.9875084,0.88357747,0.78723145,1.0439535,1.1348277,0.8983334,0.8592868,1.010406,1.1716652,0.91554105,0.81223875,0.76210237,1.5088508,1.42233,1.7519498,1.4463615,1.2501397,1.0450214,1.176476,1.4576046,1.3135872,1.157857,0.9626187,0.86978143,0.7669219,0.65897554,1.2110834,1.067075,0.82884,0.78564394,0.65456706,0.55225694,0.5530157,1.4339342,1.448278,1.1573517,0.9552361,0.9536356,0.8344701,1.7616749,1.7429092,1.740627,1.47244,1.2129848,1.0355905,1.5510881,1.774296,1.401737,1.6807405,1.5105245,1.5520246,2.1612966,1.6433468,1.4391336,1.282736,1.1176944,1.0441942,0.88089794,0.77574605,1.0522186,1.7904041,1.3778838,1.3173373,1.1120981,0.9364362,0.8320806,0.80036044,0.66657686,0.58072114,0.56331253,0.47196996,0.38830045,0.33619207,1.0023892,1.1342115,0.95166564,0.8211857,0.70530856,0.70055103,0.60610604,0.55467397,0.49481106,0.4518014,0.82471335,0.79506093,0.6540778,0.59186023,0.48316324,0.94840705,1.0277706,0.8256521,0.6982291,0.5895044,0.53723896,0.68627894,0.7747084,0.5937451,0.5492077,0.6782725,0.6688578,0.53796923,0.476995,0.45165455,0.3898751,0.33110434,0.2751981,0.24145268,0.23103686,1.1861342,1.2313212,0.96887827,0.8028571,0.88685197,0.829371,0.73748106,1.0875719,1.0426848,0.8422521,0.769891,0.6756777,0.5998289,0.5704729,0.48313695,0.45557174,0.4142401,0.39459795,0.40930277,0.42179945,0.38760114,0.3676559,0.36281234,0.38233662,0.2036806,0.13448785,0.23231958,0.3370161,1.1156359,1.1803885,0.9282363,0.9002239,0.9339204,1.6975472,1.690523,1.3400915,1.1855122,1.0777884,0.96878755,1.2770725,1.4556806,1.3550903,1.4689416,1.7429523,1.9400873,2.0972412,2.3250542,2.4025087,2.4442587,2.5643072,2.6490078,2.7805665,2.755165,2.8695335,2.8545299,2.9018712,2.9034834,2.8745818,2.9385433,3.0349216,3.097608,3.5044327,3.426654,3.3198082,3.3258562,3.2898035,3.256534,3.2586284,3.3361,3.5598526,3.3882551,3.2288756,3.1929247,3.0974805,3.0304236,3.0597608,3.2991219,3.4787514,3.6318998,3.5608723,3.4870677,3.3955503,3.7655563,4.124531,3.9596233,4.0824013,4.4715858,4.0377946,3.0619445,2.3299146,1.8899715,1.4666786,1.237434,1.0354066,1.0771365,1.3299708,1.5638069,1.7492917,1.734303,1.8529077,1.9511025,2.0065331,2.0909007,2.1052642,2.4818745,2.1795595,2.1971645,2.4165776,2.491048,2.5521195,2.3911605,2.3918288,2.4055493,2.4073532,2.3380814,1.528628,1.0019293,0.8335727,0.8944071,0.8084384,0.7899655,1.0165457,0.82236934,0.81962913,0.9047587,1.0277616,1.8585947,1.3442762,1.2753971,1.4400883,1.4595046,1.2346606,1.4303858,1.1192882,0.9089698,0.8366157,0.91522115,1.0269971,1.2770834,1.5195473,1.7096059,1.7750366,1.6739912,1.3310121,1.0436349,1.2852253,1.2050309,0.96510553,0.95976716,0.9498763,1.3700395,1.536543,1.263984,1.1549555,1.0445616,2.4075036,1.7744173
+1.0210607,0.75317615,0.58619094,0.46534467,0.37003726,1.0732312,1.0131181,0.79974407,0.71790874,1.0594736,1.2042665,0.8803621,0.76136416,0.63459975,0.536797,0.45594245,0.36898172,0.2917049,0.19129536,0.20328486,1.0547794,0.9797909,0.7190428,0.59104365,0.48259175,0.41318673,0.5212575,1.231451,0.9265456,1.3555585,1.3847941,1.028982,0.97387457,0.9931934,0.8719863,0.7050635,0.58190805,0.72815585,1.6999052,2.0063462,1.645037,1.6040566,1.3558795,1.5371096,1.3364701,1.1052763,1.0640411,1.0135853,0.86370605,0.73939216,0.70854247,0.61729795,0.5216886,0.46090156,0.34973314,0.69423246,0.70078546,0.69646776,1.2798028,0.91484207,0.74569124,1.2109808,0.9670973,0.757733,0.7147958,0.6966734,0.5691473,0.48909384,0.47477525,0.50505525,0.64397913,0.4460525,0.40576425,0.33537826,0.26160234,1.1973338,0.7616704,0.6515073,0.5236485,0.4424365,0.32533756,0.860474,1.4838074,1.3328903,1.1283125,0.94325,0.89336896,0.79088604,0.71189755,0.6416012,0.57505465,0.8741119,0.56325173,1.1535153,1.0485374,0.89495826,1.439385,1.5136656,1.313258,1.1387141,0.9809897,0.8709329,0.7014688,1.3105614,1.3411264,1.0955341,0.98266125,1.2751988,1.5256616,1.4622464,1.4425325,1.28765,1.659421,1.4474734,1.2310401,1.9788318,1.5663363,1.3907337,1.530375,1.4145457,1.2033881,1.0994385,0.9364968,1.100949,1.1144224,0.8914878,1.1685126,1.0367582,0.8273074,0.7644712,0.64699805,0.54024357,0.42879444,0.8327788,1.5426915,1.0845485,1.5264567,1.8408012,1.3813335,1.1876729,1.0347841,1.216536,1.2110323,0.95304334,0.8165437,1.0372075,1.4992672,1.2023783,1.5270772,1.3859336,1.1418867,1.3702899,1.2503362,1.0768278,0.9474953,0.8418347,0.75162345,0.57907367,0.4469843,0.35458174,1.4789048,1.4140319,1.5464234,1.2019957,1.0106516,0.8903209,1.1971772,1.1228763,1.113924,1.5711249,1.1503141,0.93267244,0.84651595,0.7032641,0.5875957,0.49394584,0.40176225,0.33852008,0.5242326,0.38257697,0.30252475,0.44195622,0.59381557,0.78645957,0.7029506,0.5644632,0.45115018,0.3105543,0.6303098,0.7924927,0.6247104,0.5102383,0.41206926,0.36029306,0.45998973,0.6152688,0.4148219,0.35968336,0.66400564,0.77500796,0.59755903,0.5117674,0.7263793,0.6308334,0.5256468,0.4453414,0.36585167,0.33677435,0.63041615,0.7528787,0.6003537,0.49892956,0.41456085,0.38240135,0.33556747,0.78409517,1.2073424,0.88505113,0.76108027,0.6441296,0.55201,0.6535957,0.6322639,0.54328305,0.4812116,0.45078263,0.4196273,0.42713326,0.37699717,0.34214205,0.30965358,0.32107902,0.20363775,0.12697253,0.21847732,0.29066154,1.1194417,1.0896143,0.8411601,0.7808633,0.81253195,1.4778123,1.3273125,1.0615525,0.9375751,0.85490036,0.76048654,0.917554,1.214017,1.1382048,1.0778341,1.1512538,1.2931855,1.4577371,1.6519432,1.7011577,1.7590075,1.866541,1.9631205,2.111157,2.098648,2.1434674,2.2536893,2.3434944,2.3587513,2.3361092,2.419089,2.4859166,2.363436,2.3685546,1.661887,1.6015773,1.6482347,1.5848033,1.6674378,1.6870878,1.9190066,2.0040884,1.6524067,1.9772353,2.1603327,2.234663,2.2862902,2.4519296,2.615618,2.4187462,2.5533342,2.303188,2.3226442,2.346393,2.5695665,2.8430762,2.4891057,2.4477513,2.1543763,1.3079745,1.1668363,0.9763042,0.844587,0.854617,0.76429015,0.63449574,0.6356859,0.7469298,0.7860752,0.8823519,0.80823195,0.7285913,0.85011685,1.0846627,1.1817728,1.1647757,1.0603229,1.0827954,1.1933146,1.5018867,1.525171,1.2029014,0.9724252,0.9757298,0.9155591,0.95417655,0.8762288,0.6830413,0.5875411,0.5413245,0.6445992,0.632554,0.5533327,0.51959664,0.34003186,0.29758385,0.41364583,0.50093186,1.3031104,0.9614166,0.8853835,0.88840306,0.7989794,0.78717875,1.3031199,1.0312815,0.82972366,0.65540075,0.4791106,0.50418556,0.9313822,1.1780587,1.454474,1.5725114,1.5300001,1.1139146,0.8328397,0.7173259,0.6510282,0.513101,0.55067915,0.6649332,1.1037822,1.3825765,1.2927392,1.1776623,1.0512415,2.1740286,1.6490031
+0.5470699,0.85247236,0.98191833,0.9383614,0.8542147,1.1872787,1.3431597,1.1590803,1.0404495,1.1858714,2.2843947,1.7767836,1.4655497,1.293412,1.2130604,1.1206553,1.0433705,0.9789269,0.9364921,1.2903161,1.9285674,1.5461211,1.3699777,1.271313,1.1761789,1.659411,1.8162072,1.7796451,1.5587655,1.859389,2.0233603,1.767753,1.5752549,1.466053,1.354209,1.2599027,1.3960171,1.4805632,1.4785769,1.8762693,1.8349814,1.8125185,1.5931795,1.5958669,1.4201488,1.2978834,1.6160407,1.6431057,1.3945454,1.2991565,1.2324314,1.1591604,1.0883653,1.0648316,1.033032,1.4155283,1.838745,1.764384,1.4746656,1.3114964,1.3355258,1.4536092,1.260232,1.1057602,1.521435,1.5605862,1.3003627,1.1620084,1.0827599,0.99785066,0.9028609,0.79537886,0.7142484,0.65736455,1.189294,1.5323031,1.1167072,0.997942,0.88510484,0.75993395,0.6144153,0.45619133,0.34008813,0.2051239,0.1360538,0.08602382,0.034141947,0.57865417,0.5003291,0.3764518,0.28898445,0.6109679,0.37538585,1.9612107,1.7682308,1.3040135,1.3113561,1.4605335,1.3684237,1.0983278,1.0068711,0.90013033,0.7569294,0.7622593,1.1909592,0.86197025,0.76051795,0.8616989,1.0081542,0.7819469,1.0612628,1.0777445,0.9245063,0.781829,0.65125334,0.7746228,1.4672766,0.94046223,1.0651296,0.96207917,0.795226,0.6468304,0.9158548,1.0331097,1.2930964,1.1063893,0.9131922,0.76048356,0.56253004,0.45855427,0.3509536,0.3003894,0.26110485,0.19574012,0.88364345,1.7830966,2.4616928,2.1540732,1.6220421,1.415843,1.2555188,1.1403422,1.0201228,0.9270636,0.84746486,0.76794803,0.6311949,0.6690715,0.6476691,0.4987793,0.3591762,0.22967456,0.3010302,0.2799292,0.18613093,0.08234714,0.036249954,-0.0025080256,-0.031083208,-0.08464165,-0.074343756,0.89655405,2.1596484,1.3239688,1.0359311,0.9115093,0.7805358,0.6869112,1.0920619,2.1043828,1.3279407,1.0833647,0.95190895,0.80594003,0.6436055,0.5254712,0.40904257,0.41098273,1.1094799,0.7875487,0.5978565,0.5322506,0.67323077,1.2340407,0.9608042,0.73173535,0.5694122,0.47703302,0.37579817,0.22874875,0.1668287,0.07369757,0.005652193,-0.031084921,-0.09234828,-0.104542345,-0.15972169,-0.14998077,-0.122051835,-0.12228979,-0.21325338,0.14951055,2.0819724,1.3901951,1.0911877,0.96506107,0.81199956,0.7281128,0.71393704,0.73352385,0.62913966,0.5621655,0.4576323,0.40447384,0.2993,0.23243918,0.7210551,0.71193266,0.47201532,0.30352527,0.22763033,0.30731425,0.3252633,0.30696586,0.21928583,0.25591248,0.323652,0.30792835,0.20824917,0.15748318,0.12335442,0.43910345,0.6728021,0.59316444,0.70734435,0.7115446,1.227776,1.1860781,0.93327296,0.93821025,0.9667735,1.8998995,1.5945483,1.327223,1.2095095,1.1200256,1.098309,1.1846023,1.2873061,1.2294443,1.096894,1.0182672,1.1703675,1.3618942,1.5412385,1.4140195,1.3445976,1.422106,1.6976054,1.7876618,1.9385581,1.749223,1.9193287,1.9717517,2.0370412,2.0401254,2.0782356,1.9709268,1.3762666,1.3979182,1.3680212,1.2657633,1.2205068,1.1861867,1.3062613,1.2207679,1.2796011,1.2773968,1.140704,1.3129754,1.6529022,1.8546801,1.9328866,2.0732908,2.1181927,1.3415062,1.1343583,0.9633429,1.3778023,1.6172103,1.6867094,1.7972584,1.5456998,1.4063923,1.6384947,1.5141418,1.3615531,1.2545028,1.1768187,1.2172303,0.9962796,0.87072515,0.91661465,0.991838,1.007021,1.0552158,0.8964415,0.7816307,0.96524084,1.2691275,1.4531686,1.1101142,0.89884007,0.88745564,0.88052946,1.1441184,1.1017618,0.8264487,0.73801625,0.7581187,0.70223564,0.81001675,0.8011645,0.7091876,0.6651062,0.61811996,0.6709202,0.8069905,0.7233335,0.75037944,0.596749,0.6734408,0.7471945,0.7422319,1.7087784,1.4447275,1.3126781,1.227374,1.0394857,0.9830246,1.4993471,1.3800371,1.1914792,1.073384,0.9017528,0.8450078,1.0051947,1.2308466,1.3791008,1.5229857,1.3655928,1.0448487,0.90314114,0.8388063,0.7426481,0.66177475,0.8169401,1.1368454,1.006488,1.1375817,1.321501,1.3462428,1.1433064,1.5507667,1.7309475
+1.563086,1.7423253,1.7233548,1.7005204,1.5889474,1.775701,1.9197071,1.8516666,1.7215412,1.6854185,2.235817,2.1264608,1.9880877,1.9062824,1.8440613,1.7578102,1.709204,1.6415925,1.5589757,1.7999275,2.8051505,2.409639,2.1706028,2.0625834,1.9997292,2.1040502,2.2375906,2.257408,2.0828938,2.5738368,2.406311,2.2193978,2.1275165,2.0457244,1.9537172,1.8862658,1.852236,1.8632338,1.827902,2.468311,2.4028678,2.6985102,2.3874023,2.2331452,2.1262803,2.0298069,2.413241,2.4855907,2.1941938,2.1430326,2.093322,1.9527344,1.8810121,1.890315,1.9777646,2.6955085,2.6735399,2.4025826,2.206943,2.069179,1.9629679,1.9965835,1.9885368,1.9539225,2.1169853,2.0368166,1.865571,1.8234272,1.7108694,1.6494046,1.6061208,1.5649185,1.498987,1.4258552,1.4322538,1.6701883,1.589248,1.4541261,1.3706316,1.353541,1.324934,1.2838075,1.2819238,1.2572801,1.1478844,1.2412477,1.2564089,1.1997356,1.1060201,1.0464578,0.97196484,1.0785995,1.0322101,2.0371945,2.9053037,2.413825,2.4263778,2.7924747,2.398209,2.253539,2.1102638,2.0003862,2.0004601,2.0104759,1.9088995,1.7748132,1.7130529,1.6870646,1.6729041,1.6130763,1.6228133,1.533319,1.5394797,1.5080171,1.4322755,1.4781332,1.9486727,2.0515301,2.4002564,2.4159355,2.4469798,2.1486988,2.1839292,2.1539347,2.074985,2.2017026,2.357189,2.2606962,2.0145867,1.8791058,1.7729995,1.824007,1.7369609,1.6228204,2.4039025,2.698973,2.8108776,2.6651692,2.3902397,2.191595,2.140285,2.3242147,2.1693065,2.0110826,1.9372478,1.9290267,1.8153794,1.8048937,1.8940942,1.7451413,1.5846708,1.4809248,1.3758361,1.289244,1.1944312,1.1466829,1.0900432,1.2373352,1.2463181,1.1750417,1.6809255,2.1578078,1.8574598,1.6570781,1.5013922,1.3868055,1.290509,1.3938384,1.6015639,2.310103,1.9308116,1.6956754,1.5035242,1.3426825,1.215985,1.1268976,1.0308208,0.939854,1.1233122,1.1488485,1.0319915,0.9540361,0.96925473,1.0517659,0.93797517,0.8291469,0.7124515,0.6977599,0.6490638,0.5376057,0.43987912,0.35456002,0.27122158,0.28090045,0.27227083,0.53760606,0.66306967,0.7273726,0.64235526,0.59244627,0.5846582,0.47032124,0.876069,1.2303085,1.0263605,0.8895403,0.79253757,0.6824662,0.6108499,0.9470259,0.9470513,0.81775254,0.7523475,0.66176295,0.53351766,0.47105253,0.4559435,0.33874264,0.2740704,0.1890052,0.1568251,0.2004282,0.23910831,0.26145703,0.25646392,0.17294015,0.1804202,0.12934604,0.1890554,0.19556436,0.11709729,0.36276308,0.86738056,0.7572832,0.67811203,0.5743908,1.842663,1.7557932,1.5085759,1.4259975,1.4010499,2.8895621,2.341948,2.0370276,1.9306043,1.8414152,1.8076656,1.8584557,1.8874533,2.280973,2.0923114,1.9561151,1.9936876,2.1385956,2.3200607,2.4669127,2.1213617,1.9690509,2.0105212,2.1870763,2.5637379,2.2670121,2.3072066,2.5638027,2.7971334,2.8668947,2.8216395,2.6879828,2.148222,2.7198927,2.4796567,2.173791,2.0863051,2.0110555,2.0272398,1.9784794,1.9514008,2.0981326,1.9214382,1.8631072,1.9568255,2.1452112,2.348946,2.5495312,2.6293087,2.0251613,1.9279196,2.388242,2.6926208,2.3510377,2.2223144,2.1613536,2.0677323,2.0421505,2.0372858,1.9252397,1.8667238,1.8195891,1.7409548,1.7652986,1.7101597,1.6781847,1.6088063,1.6504033,1.6764172,1.6017015,1.5524592,1.4853735,1.4959965,1.6096854,1.7428231,1.5683534,1.9102316,1.9804158,1.7668469,1.8030887,1.7862339,1.6869884,1.5629988,1.614525,1.6130593,1.5438393,1.510072,1.7552749,1.9332097,1.7546103,1.6944128,1.7045796,1.649534,1.6733063,1.6266735,1.4510185,1.5517533,1.6130463,2.206846,1.9947319,1.845994,1.7330959,1.6229043,1.9602501,2.9221797,2.368131,2.1588948,2.1786284,1.9236865,1.814843,1.9135873,1.9212542,1.7998885,1.8097446,1.8013834,1.7365923,1.64938,1.7509214,1.7374284,1.6394845,1.6779666,1.8207092,1.8442553,2.1479113,2.153133,2.1068373,1.9700842,2.0482416,2.0764976
+0.23903064,0.6202094,0.9694817,1.0731156,1.1317511,1.3147237,1.3039744,1.2211344,1.177153,1.0529284,1.2254963,1.295183,1.1969934,1.1202409,1.0829611,1.0310668,0.9919584,0.974375,0.95338076,0.9366783,1.7555997,1.8334017,1.4640708,1.362824,1.2781861,1.2109609,1.3483269,1.3110545,1.5653622,2.1015024,1.7572284,1.7012267,1.5807259,1.4438827,1.3902975,1.3280919,1.2455596,1.1865621,1.2176459,1.6811018,1.463856,1.5538044,1.5258954,1.3777927,1.3351679,1.2015173,1.2780756,1.308636,1.2194697,1.769151,1.6464304,1.467492,1.3490698,1.2811091,1.8193955,2.1110616,2.0788841,1.7812899,1.5290966,1.3719392,1.2661777,1.6025653,1.8155558,1.8295845,2.031505,1.7302308,1.480751,1.3781561,1.3283451,1.2545941,1.1655283,1.0822306,0.946807,0.90008295,0.79862094,1.1374258,1.5270956,1.2431417,1.0522742,0.9065777,0.7716948,0.74024665,0.7084704,0.58312243,0.47450393,0.32462114,0.13269433,1.1835115,1.5008303,1.0615045,0.83949673,0.68952286,0.46254736,0.37483644,0.4396755,0.36078894,0.18020882,0.11486617,0.015053477,0.019345019,-0.009827521,-0.15109855,-0.26503628,-0.3782853,0.6363118,0.7946156,0.4429847,0.29720753,0.091126576,-0.13379247,-0.34348944,-0.57260793,-0.6048396,-0.5992563,-0.74259573,-0.8800693,-0.7747838,-0.4514694,1.0794072,0.5473676,0.25078505,0.0074156113,0.20778672,0.35545993,0.030473951,0.04460446,-0.108276665,-0.09030877,-0.20038459,-0.39403796,-0.5396448,-0.66968155,-0.7802774,-0.852172,-0.92997277,-0.6699799,-0.06890181,0.48013198,0.6233171,0.5639813,0.9485131,1.2071524,1.073612,0.5635647,0.54982734,0.40911493,0.14874975,0.4804532,0.73742646,0.29845038,-0.04531565,-0.24665828,-0.42314065,-0.5470397,-0.6522987,-0.761431,-0.870587,-0.94460356,-1.0382209,-1.148419,-1.2379482,-1.2974306,-1.303803,-1.3574426,-1.4315667,-1.5256617,-1.6001539,-1.6481773,-1.6708729,-0.34837636,0.10261351,-0.3048099,-0.4979787,-0.6440499,-0.75853086,-0.85894907,-0.954026,-1.0579579,-0.7121538,-0.3669731,-0.62797314,-0.83649874,-0.9151641,-0.9815903,-1.088748,-1.1702449,-1.2272048,-1.2876387,-1.3499842,-1.4386331,-1.4817598,-1.4820371,-1.5225706,-1.5315026,-1.5611994,-1.6214175,-1.0035783,-0.44567055,-0.70460594,-0.8490171,-0.9558524,-1.0538437,-1.0812436,-1.099735,-1.1358279,-1.2124705,-1.299201,-1.3795104,-1.4113336,-1.414289,-1.4749373,-1.4955393,-1.5260499,-1.5819025,-1.5951078,-1.6253319,-1.6574471,-1.7045041,-1.6907448,-1.7067137,-1.7068923,-1.6159561,-1.475904,-1.4991837,-1.5517298,-1.581274,-1.5440876,-1.5927775,-1.5724926,-1.5915043,-1.6313546,-1.5286856,0.09221552,0.14690317,-0.035165492,-0.14283086,0.18226278,0.25811267,-0.016690183,-0.06128377,-0.03233852,1.0488086,1.2420366,0.80936146,0.6597545,0.57979894,0.49153644,0.83409804,0.8637041,1.8815099,1.3812175,1.198649,1.2688761,1.4355056,1.4214429,1.4592373,1.3016214,1.2079134,1.2743262,1.327076,1.0893058,2.3125958,1.763581,1.8614974,1.9531672,1.7975461,1.4154673,1.8425205,1.7289212,1.5431254,2.3894863,1.9542788,1.6567436,1.4143862,1.6359357,1.502935,1.4132252,1.6486413,1.5203402,1.3572617,1.4100263,1.5588148,1.7654622,1.9018376,1.7632551,1.3197371,1.2088114,1.2074449,1.4830294,1.5004241,1.2641226,1.896201,1.6590283,1.9315255,1.787662,1.5013584,1.6170323,1.6951697,1.3856983,1.2828009,1.2143288,1.1270299,1.0062276,1.008464,0.95072156,0.89166147,0.8709395,0.89461803,0.79681647,0.80163467,0.8155309,0.7729362,1.4654007,1.4701728,1.308769,1.238551,1.1430893,1.0039086,0.97465706,1.1014708,1.6774049,1.417491,1.2527544,1.310455,1.3412993,1.1444426,1.2267505,1.3898852,1.2103928,1.1253474,1.0850712,0.91646624,1.1137493,1.0851704,1.3891771,1.3266928,1.1884176,1.1013957,1.0237298,1.2629454,1.9782946,1.6625432,1.4230845,2.0297337,1.7430304,1.7239137,1.6744361,1.5105441,1.2992398,1.1903267,1.1229571,1.7066574,1.5511293,1.4197375,1.3965364,1.6213365,1.4518282,1.3085759,1.5676937,1.8893117,1.927953,1.7598013,1.4980865,1.6010928,1.5176067
+0.44567937,0.44195807,0.3701955,0.2648979,0.18203197,0.31079733,0.43485278,0.25479856,0.15066855,0.05574501,1.3558271,1.1165404,0.7366069,0.5632309,0.96437657,0.9001476,0.5872433,0.38161057,0.23826276,0.11322053,0.5785864,0.72032225,0.43481827,0.26963887,0.16489767,0.10573381,0.31875026,0.5471017,1.0195668,0.9667083,0.697073,1.0212233,0.83110976,0.56193364,0.42796764,0.3233445,0.2121384,0.13029785,0.052804906,0.41099858,0.46417075,0.4625671,0.48370582,0.28882962,0.21783419,0.06256683,-0.0110194795,-0.05843876,-0.119639084,-0.006645303,0.16102712,0.03296939,-0.05832852,-0.15572768,0.25750142,0.7990068,0.64682424,0.610232,0.3826046,0.18780367,0.23710637,0.3059154,0.11301415,0.65150064,1.0814624,1.0602126,0.6592616,0.39946285,0.2661627,0.14154108,0.05525114,0.031463858,0.0755541,0.030222017,0.052961323,0.18467724,0.6369326,0.87959707,0.71914274,0.43472397,0.2408403,0.12875764,0.054863986,-0.015714187,-0.100527525,-0.16942523,-0.28155345,0.31739616,0.78324956,0.32208455,0.15127313,0.024084967,-0.04879752,-0.1400729,-0.13938275,0.6824367,0.53935665,0.35327542,0.20586666,0.05692028,0.80954504,1.0432047,0.6713331,0.46187872,0.30520105,0.29836076,0.29458192,0.36470443,0.20537673,0.15598115,0.054262165,-0.070440456,-0.14302363,0.558848,0.8853622,0.535976,0.3346974,0.4260423,1.2815343,0.8778776,0.7467065,0.6057719,0.37818387,0.3352596,0.3869021,0.5038691,0.5750597,0.50069094,0.3353219,0.16679235,0.028171647,-0.022701424,-0.08679846,-0.07105565,-0.017244574,0.66065,0.91013736,1.0017232,0.9766133,0.7075076,0.72332907,0.63495445,0.64698136,0.5439458,0.31717837,0.17381771,0.056705523,0.3372421,0.52660155,0.16661766,0.007275451,-0.1279699,-0.22633408,-0.29870623,-0.38566834,-0.45797765,-0.48083848,-0.46688354,-0.5022627,-0.5417808,-0.5824808,-0.6165762,-0.6376672,-0.6278541,-0.7280382,-0.76940703,-0.8130237,-0.83890134,-0.8538958,-0.6319482,0.23288433,0.19513847,-0.16264613,-0.3229279,-0.42481574,-0.5026053,-0.56518734,-0.64369357,-0.6982899,-0.77422047,-0.86208916,-0.8934867,-0.98931277,-1.0485258,-1.0904719,-1.0890653,-1.1204443,-1.1170495,-1.145732,-1.1488581,-1.1927931,-1.2487521,-1.2997304,-1.3489082,-1.3464063,-1.3352845,0.13333757,0.65181625,0.20455565,0.027020376,-0.08469203,-0.18722303,-0.16136421,-0.12777103,-0.28098828,-0.4195372,-0.51112455,-0.57701147,-0.66979444,-0.73273396,-0.7721625,-0.79852337,-0.84799206,-0.8919581,-0.90757334,-0.8932089,-0.96331906,-0.7569937,-0.43868536,-0.6778641,-0.7538113,-0.75845945,-0.652082,-0.7363192,-0.8015659,-0.8711705,-0.908031,-0.95249766,-0.7660526,-0.46348095,-0.66095215,-0.7063034,-0.15574029,0.03046896,-0.12173517,-0.2590935,-0.36029688,-0.15285204,-0.31198302,-0.33821762,-0.32121494,0.3904017,1.089907,1.6994884,0.92821074,0.66684365,0.86291057,1.5296264,1.1746523,1.4781766,0.8993201,0.6036123,0.57208574,0.7619196,0.8646753,0.9311238,0.73502797,0.5065857,0.48952806,0.62286407,0.48239136,1.4016086,1.0482584,1.2167023,1.1382468,0.6314007,0.38805878,0.4327383,0.45155302,0.31829408,0.5293907,0.43979746,0.48736376,0.4003621,0.68163747,0.8666847,0.9810339,1.1943991,0.7135103,0.5319649,0.61968577,0.7550907,1.0340042,1.2633314,1.1137965,0.45200562,0.36843085,0.20151521,0.111684516,0.030558098,0.10757436,0.7414066,0.62335414,1.3191473,1.2042134,0.8487712,1.170569,1.0779028,0.648503,0.5108744,0.33981073,0.21997039,0.15647742,0.22100197,0.11186652,0.012329686,-0.06416005,-0.092479706,-0.045356076,-0.087426305,0.33735672,0.936725,0.8471886,0.56398165,0.72156334,0.62988204,0.4710701,0.23991705,0.1112784,0.031158853,0.23177652,0.22997771,0.13223864,0.0073533244,-0.04707266,-0.16721937,0.07282925,0.9845172,0.5218047,0.29270506,0.15667005,0.10855977,0.83485806,1.1566476,0.88318104,0.5206653,0.34453797,0.22665142,0.18608813,0.2495165,1.0357177,0.7790066,0.48415107,0.73515487,0.5963044,0.55654633,0.49443722,0.47297382,0.31283832,0.2914496,0.15585905,0.24268691,0.17546712,0.008851577,-0.124130875,-0.09375499,-0.06842098,-0.17431994,0.30318952,0.5157074,0.35811293,0.4187488,0.19841544,0.082028404,0.05749252
+0.689372,0.72459465,0.43738967,0.30348706,0.24669085,0.17475374,0.2992514,0.2212689,0.13638096,0.013262812,1.21053,1.9915829,0.9959426,0.78420246,0.8640972,0.81082225,0.5657557,0.39599365,0.29871076,0.22233595,0.14812605,0.21949796,0.15996873,0.0698884,0.024349961,-0.009562518,0.28202873,0.44342798,0.28244472,0.17393836,1.4433446,1.1406281,0.8318823,0.58920956,0.4731729,0.37928742,0.2949453,0.2163588,0.15640064,0.11095275,0.06376016,0.45409673,0.99159527,0.5760742,0.4150138,0.27611753,0.19623855,0.1508012,0.06298295,-0.006659802,-0.055973213,-0.10229471,-0.1335537,-0.18710676,-0.22457834,-0.24636166,-0.28444302,-0.30359825,-0.34204078,-0.393098,-0.47377867,-0.4990793,-0.1864344,0.56104684,0.82821167,1.1158842,0.8480017,0.54019773,0.34983283,0.24880247,0.16834113,0.0648354,-0.023218151,-0.12901586,0.11277498,0.3781526,0.12586153,0.3611411,0.60300475,0.37307045,0.21497484,0.076017275,-0.029329788,-0.12103993,-0.20282468,-0.29535773,-0.20301656,-0.094988585,-0.2092074,-0.31586152,-0.40695876,-0.50383884,-0.59120744,-0.34995297,-0.27300692,-0.20186949,0.02990194,-0.15385824,-0.2793182,0.56456697,1.1479958,0.9661896,0.63852686,0.5212486,0.35699788,0.22591962,0.107608005,0.034516204,-0.057508644,-0.16603553,-0.2778137,-0.38013607,-0.43587378,0.16161874,0.4034564,0.11475851,-0.058877368,0.048802663,0.37116992,0.16795483,0.28363204,0.25366664,0.02362873,-0.12890638,-0.24007024,-0.22138397,0.579688,1.1600595,0.7277769,0.50926614,0.65004086,0.74592423,0.80406916,0.803264,0.5852947,0.70360875,0.73251086,0.6301873,0.6356741,0.5777053,0.8890201,0.8316781,0.555002,0.36035693,0.217405,0.06293546,-0.07352802,-0.20041497,-0.28763616,-0.39863387,-0.48836914,-0.57728344,-0.64140093,-0.6885655,-0.72499484,-0.7723914,-0.79888195,-0.8068516,-0.83450764,-0.88227046,-0.9168695,-0.9353236,-0.9751875,-0.94385594,-0.9840758,-0.82405305,-0.5066923,-0.69490904,-0.8183805,-0.8649507,-0.33334818,0.21248083,-0.15764739,-0.34373328,-0.4771992,-0.6227958,-0.7079787,-0.80549985,-0.86616427,-0.9083629,-1.026755,-1.0385486,-1.1313334,-1.2202752,-1.272874,-1.287099,-1.3446449,-1.3497924,-1.3756866,-1.3930924,-1.4047134,-1.4548628,-1.4854908,-1.5252842,-1.5125282,-1.5194474,-1.5381494,-1.5230044,-1.5268538,-1.5058625,-1.4608377,-1.4717052,-1.3478987,-1.1339087,-1.2909287,-1.350747,-1.4089012,-1.4427848,-1.4744717,-1.5041946,-1.5236022,-1.5162172,-1.5307975,-1.552211,-1.5498279,-1.5406425,-1.5637171,-1.5612336,-1.5555528,-1.5835518,-1.5749959,-1.5664628,-1.5034426,-1.518988,-1.545531,-1.5381925,-1.5389938,-1.5653284,-1.1114161,-0.681022,-0.8698808,-0.94966066,-0.9603398,-0.86691004,-0.88335705,-0.95423716,-1.0641865,-1.1328409,-1.1545495,-1.156832,-1.0925674,0.02251606,1.0336608,1.2897005,0.80137783,0.55811435,0.86602515,1.1541619,1.3730106,1.5333786,0.92867476,0.6427687,0.56166446,0.7293705,0.8185949,0.71258223,0.54720205,0.4410169,0.29395056,0.36602283,0.32390425,1.1222043,0.85475516,0.9647237,0.84671926,0.52680874,0.35555133,0.25490022,0.16947146,0.1185313,0.08535543,0.07314433,0.27432653,0.3037346,0.57670575,1.1008266,1.3165264,0.9658811,0.67182565,0.5273427,0.546275,0.55551636,0.8297602,1.0792673,0.8709122,0.4295293,0.27959782,0.18460633,0.12869214,0.055852104,-0.0024636798,-0.039037373,0.062446285,0.90373737,1.0210133,1.1233584,1.2557033,1.1565193,0.7676235,0.85862064,0.7688617,0.54571044,0.5732242,0.5119511,0.36264983,0.21967517,0.12396692,0.1857334,0.28176695,0.15280843,0.9435266,1.4461548,1.0616711,0.8237551,0.54157495,0.4075098,0.3525628,0.24514033,0.14561002,0.084193796,0.10569775,0.05682944,0.021665964,-0.035640594,-0.061090436,-0.12776458,0.24998133,0.6253228,0.35772938,0.19183005,0.13739194,0.053901438,0.7509724,0.8109951,0.7102487,0.5301504,0.35841188,0.24354167,0.17216401,0.058728177,1.0989608,0.91662586,0.5952246,0.74095774,1.0068502,1.198769,0.9686973,0.7509283,0.48175085,0.4094046,0.3072154,0.18760689,0.093609944,0.0065545924,-0.075119585,-0.10346533,-0.17884664,-0.2280089,0.5274807,0.92651296,0.64529413,0.4539411,0.26496783,0.45586008,0.6713588
+0.69806474,0.088604346,-0.20808057,-0.3635359,-0.4792103,-0.6092453,-0.70453155,-0.78320897,-0.8175403,-0.96210444,-0.86123717,1.0731277,0.31105688,0.8827316,0.5875387,0.26943147,-0.07469304,-0.28762105,-0.45048705,-0.5445742,-0.5167586,0.3534422,0.05542301,-0.29161376,-0.467138,-0.60963964,-0.5325102,-0.33714166,-0.5434692,-0.2574865,0.4534772,0.21438457,-0.017150234,-0.24658845,-0.43704385,-0.5219176,-0.6024195,-0.70110536,-0.84767914,-0.8899408,-0.9729781,-1.0282097,-1.0436534,-1.0853109,-1.1479399,-1.2300057,-0.13654761,0.15080376,-0.34331918,0.37366897,0.031192813,-0.24993159,-0.40144598,-0.55100286,-0.6748254,-0.7813076,-0.9040724,-0.9438467,-1.000535,-1.0900726,-1.1398658,0.1506358,0.3106221,0.28254688,0.1504483,0.21505852,-0.10669516,-0.24055065,-0.49362916,-0.6388365,-0.7431909,-0.8567698,-0.92021143,-0.9901512,-0.013346713,0.38317958,-0.222746,-0.2933787,-0.32633907,-0.1059373,-0.3209113,-0.58921176,-0.7399335,-0.81495464,-0.9226999,-1.039526,-1.0647218,-1.0107026,-0.9382396,-0.35063073,-0.6287848,-0.86005473,-1.0339862,-1.1536208,-1.0669299,-0.65440345,-0.5168882,-0.3915814,-0.7165581,-0.64603794,-0.27455997,0.13407873,0.3916245,0.2549792,0.18773085,0.12009865,-0.22557096,-0.42025977,-0.53751856,-0.67690337,-0.6835167,-0.6398363,-0.23342937,0.043714035,-0.40901905,-0.16627166,-0.1603476,-0.15676093,0.07742621,-0.089604184,-0.317187,-0.25817484,-0.3644415,-0.6274915,-0.5772321,0.044073854,0.064355016,-0.06481469,-0.22530718,-0.27869168,0.1476093,0.5506765,0.9332894,0.5136901,0.25613695,0.14682041,0.2811683,0.18039818,-0.17304642,-0.016266953,0.11282338,0.26271084,0.0934259,-0.08789225,-0.1291652,-0.33531448,-0.5045425,-0.59842825,-0.67929703,-0.81557316,-0.8356631,-0.85273993,-0.99853325,-1.0980365,-1.1475265,-0.9719994,-0.1136647,0.012881849,-0.2795235,-0.56598413,-0.7313128,-0.8495667,-0.92989624,-0.7822112,-0.49406096,-0.76399034,-0.8980101,-1.0195824,-0.8955581,0.051826585,-0.09710397,-0.46097764,-0.64633924,-0.79211396,-0.9117643,-0.9752933,-1.0205735,-1.0688496,-0.99206054,-0.945129,-1.0125505,-1.1121318,-1.2146573,-1.3185879,-1.3876908,-1.43803,-1.5111151,-1.5500851,-1.5617437,-1.6005918,-1.6243182,-1.646082,-1.6930339,-1.733176,-1.7473025,-1.7584639,-1.768567,-1.7788036,-1.7863767,-1.7844359,-1.7482274,-1.7433549,-1.5626236,-0.9500648,-1.1638327,-1.2716203,-1.3616277,-1.4383281,-1.5111477,-1.564876,-1.5935,-1.6138215,-1.6337912,-1.6608168,-1.6884065,-1.6970695,-1.6991105,-1.7161682,-1.7149694,-1.7619023,-1.7762549,-1.5963383,-1.1005458,-1.280303,-1.3610592,-1.4499607,-1.496473,-1.511971,-1.5283682,-1.5010649,-1.5536047,-1.5795053,-1.5917249,-1.5465729,-1.5021174,-1.5003409,-1.5568737,-1.5950185,-1.5956482,-1.5921818,-1.5342579,-1.5494885,0.15812711,0.78556585,0.14161076,-0.19036196,-0.118307754,0.39012492,0.6809598,0.3927319,0.009350363,-0.2239087,-0.26113355,-0.1033252,-0.047000926,0.04836792,1.1344451,0.23217542,-0.067449585,-0.16236919,-0.29279208,0.3302223,0.22192125,0.15682513,0.006489832,-0.31244242,-0.43390453,-0.5690564,-0.6371276,-0.65809274,-0.6456715,-0.6822497,-0.24972321,-0.18787067,0.08598794,0.84510547,1.0018522,0.31318498,0.026108246,-0.16788954,0.28111905,0.44153285,0.64016634,0.9495572,0.68719715,-0.06801526,-0.2498765,-0.35268658,-0.49405536,-0.5814382,-0.66607755,-0.7112915,-0.74330854,0.3766853,0.36112654,1.0120524,0.6719001,0.3585114,-0.036572825,-0.24136652,0.047449786,-0.10208501,-0.15992469,-0.20444404,-0.35909393,-0.51991856,-0.65809155,-0.7254605,-0.70086074,-0.65117174,-0.65351725,-0.7712471,-0.1472918,0.32280988,-0.14091806,-0.3299968,-0.45982984,-0.575452,-0.6115526,-0.7156741,-0.59871703,-0.55154705,-0.6362097,-0.6087849,-0.6414281,-0.7787593,-0.22767484,0.070183486,-0.33442467,-0.5195077,-0.60164565,-0.6391184,0.14349607,0.17571127,-0.036748033,-0.095304444,-0.38696688,-0.46997482,-0.5792695,-0.6719907,0.2604403,0.5598084,-0.07669841,0.034614127,-0.12806089,0.30293345,0.22217225,0.062047902,-0.25932217,-0.37451896,-0.49954343,-0.66799796,-0.67693937,-0.78250676,-0.8822781,-0.95210433,-1.0119888,-1.1008911,-0.16273327,0.19264574,-0.0130683,0.55076134,0.076802865,0.25775868,0.20370875
+1.2776704,1.0528278,0.2995425,0.044644725,-0.10670355,-0.25015354,-0.34919977,-0.47007102,-0.5451981,-0.663655,-0.7425921,0.008559946,0.95266163,0.8305949,0.40317756,0.15220514,-0.057970967,-0.1933877,-0.30766135,-0.40285763,-0.4775167,-0.48695964,-0.55805916,-0.6708395,-0.7376232,-0.7901972,-0.4286549,1.5945992,0.7236676,0.7714696,0.9377393,0.75662184,0.4381264,0.18420072,-0.012667041,-0.13731855,-0.2348679,-0.34971267,-0.46244216,-0.51049244,-0.5859946,-0.6168179,-0.63332856,-0.7313291,-0.7955067,-0.8719217,0.70806587,0.64000106,0.30529732,0.71416116,0.5171381,0.2292064,0.034594107,-0.119217515,-0.24500202,-0.34785917,-0.45485696,-0.43987235,-0.45187068,-0.32413125,-0.06315139,-0.26840496,-0.07878384,0.02250648,1.0874159,1.0329878,0.63787484,0.37166893,0.09604241,-0.092184514,-0.2197752,-0.21378967,-0.10122721,0.23133095,0.44299233,0.22655807,0.0071065687,-0.15431789,-0.058400605,0.64056796,0.44468316,0.16579087,-0.04909375,-0.2062298,-0.3291669,-0.42381036,-0.5071437,0.31493473,0.7449426,0.8683892,0.5747818,0.23925106,-0.013362799,-0.17910208,-0.2880581,-0.38626003,-0.44464374,-0.51335204,-0.46914932,-0.415518,-0.44565737,0.00024320558,0.44342336,0.5616894,0.51158965,0.4911846,0.27041677,0.05581205,0.23901622,0.31975955,0.26436228,0.23461105,0.37280014,0.32013798,0.33576697,0.3777778,0.6665127,0.7357278,0.38148296,0.29231724,0.29417184,0.3485173,0.29380846,0.07464637,0.282992,0.7955958,0.5719103,0.36917162,0.34473044,0.19107094,0.2558999,0.7407646,1.4020007,1.2524264,0.788359,0.5817473,0.3452521,0.22225676,0.0892598,0.1547027,0.49598497,0.49816012,0.24922924,0.0725548,-0.0014776103,0.04182056,-0.00077814236,-0.13137768,-0.1822782,0.11503482,0.28391385,0.03609388,-0.14233373,-0.274558,-0.39427727,-0.37087488,0.04639605,0.37484136,0.35163504,0.11800027,-0.052720126,-0.1560692,-0.22657812,-0.26680115,0.51471794,0.5086357,0.2531562,0.08218214,0.039639916,0.6450987,0.5831916,0.39229172,0.13440847,-0.0568082,-0.16947925,-0.20863897,-0.3099331,-0.394285,-0.15396804,0.7388092,0.419905,0.146121,-0.038095128,-0.16353233,-0.27378085,-0.40968463,-0.54041946,-0.61587274,-0.67175233,-0.7213618,-0.8015674,-0.8649024,-0.92249715,-0.98704493,-1.0162368,-1.0429437,-1.0694253,-1.0679152,-1.0560843,-1.0670865,-0.8638203,-0.9355158,-0.9418563,-0.8607905,-0.8914851,-0.93939483,-0.99810934,-1.0663791,-1.1250808,-1.1227005,-1.1280642,-1.1681625,-1.1955605,-1.2173073,-1.2244556,-1.215751,-1.187237,-1.1506414,-1.1649803,-1.219084,-0.34930074,0.8474412,0.76082945,0.34979767,0.1000773,-0.04581147,-0.14244142,-0.22924554,-0.3250116,-0.39529547,-0.49716175,-0.5643433,-0.52672637,-0.5726306,-0.54672706,-0.6052416,-0.6815009,-0.68237686,-0.6810839,-0.71407497,-0.70701504,-0.7724787,-0.46169937,0.4780689,0.20788829,0.011719156,-0.090575814,0.56906396,1.2548399,0.9963565,0.48467785,0.23561142,0.079512805,0.0054274686,0.006334845,-0.11607395,0.53199214,0.7466259,0.35704207,0.17272441,0.030322898,0.5693599,0.97835803,0.43013868,0.26344565,0.11508374,0.0396549,-0.09417929,-0.18539692,-0.2513075,-0.25622207,-0.18846272,-0.11721186,-0.2593737,0.0016057082,1.6722336,1.5224576,0.8031179,0.39962724,0.24519323,1.0239416,0.64994967,0.6573964,0.59501463,0.24157067,0.051758092,-0.027213011,-0.09804997,-0.15930411,-0.23545736,-0.30484742,-0.3347214,-0.38930902,0.21253972,0.4364369,0.53846925,0.8103417,0.36879414,0.11274217,-0.03330982,0.021218944,-0.15058331,-0.21114133,-0.30431968,-0.35301203,-0.42994386,-0.4921986,-0.48959756,-0.42564183,-0.46953672,-0.5038063,-0.570968,0.40788087,0.45838428,0.23825662,0.058054853,-0.050919484,-0.14540415,-0.14316334,-0.269067,-0.26335987,-0.3331957,-0.18676357,0.43230817,0.2122025,-0.016905915,0.2844302,0.32065043,0.07507607,-0.112272635,-0.17113383,-0.2935965,-0.22504206,-0.15834117,-0.2942185,-0.08830109,-0.22103311,-0.3338058,-0.42244288,-0.53743047,-0.518424,0.49282336,0.40613204,0.1610388,-0.0016018264,0.30203262,0.28497538,0.17338891,-0.02061328,-0.10023707,-0.21309462,-0.3150918,-0.38688707,-0.49142444,-0.5772309,-0.62607765,-0.71108955,-0.79966223,-0.051500652,0.4475221,0.10684332,-0.042684834,-0.1909888,0.15451103,0.37129885
+1.0769958,0.80732304,0.65068924,0.52090734,0.40632427,1.2924997,1.3634446,1.103269,0.9917691,1.4066497,1.5945655,1.148067,0.9498636,0.78175485,0.6624583,0.5539701,0.42772785,0.34138823,0.22303341,0.37956154,1.2056333,1.299236,0.96308124,0.73981774,0.6313195,0.5551741,0.79806757,1.4843206,1.0742514,1.4668694,1.4552777,1.3397692,1.2507118,1.2340475,1.1851581,0.91132736,0.87267333,1.1374791,1.5433227,1.6819544,1.5776625,1.3672936,1.1448841,1.3380052,1.2001238,0.9697472,0.90040326,0.87226355,0.7443209,0.60693127,0.6675545,0.5721791,0.47588938,0.40568817,0.36385494,0.66767484,1.0268997,1.188833,1.1436704,0.8419126,0.60647947,0.8876474,1.0312111,0.6946074,1.4097173,1.3405885,1.0481794,0.887761,0.80920714,0.5683087,0.5848583,0.450953,0.42669055,0.37141752,0.4445414,1.2247586,0.88329124,0.7651681,0.5737568,0.4712516,0.37371227,0.87495065,1.3622615,1.571332,1.2442148,1.0140829,1.3973209,1.2650717,1.0336908,0.905518,0.7277349,0.81387794,0.5979423,0.88852274,0.96111894,0.78390753,1.1659944,1.0558767,0.93487036,0.7772571,0.6657243,0.5932063,0.833325,1.3675406,1.5736085,1.2349982,1.0770556,1.0336454,1.7548306,1.3681409,1.1927384,1.0821278,1.17434,0.99903405,0.8343245,1.196743,1.039973,0.83739066,0.8104287,0.72788215,0.66072017,0.66148865,0.53469425,0.48622352,0.42282754,0.36136946,0.29331663,0.30265096,0.22149135,0.2104193,0.15779205,0.06764585,0.0057330616,-0.0420566,0.18027581,0.31073698,1.2563338,1.7897694,1.1521541,0.9860413,1.1003656,1.2704194,1.1743498,0.87704146,0.7249793,1.128759,1.4492495,1.1634059,1.0900909,0.97174096,0.8946003,0.7763207,0.6919669,0.6429408,0.5875698,0.5159949,0.39247078,0.30359063,0.20907499,0.1390393,0.77361876,1.1096534,1.8667082,1.2963665,0.9463883,0.79948366,0.8435804,0.7960564,0.64617884,0.97108364,0.8160749,0.59909916,0.49866557,0.38313264,0.26920575,0.17890614,0.1114046,0.109819725,0.6116015,0.5113476,0.358795,0.3761611,0.82159007,0.8659593,0.6722384,0.5513358,0.4186207,0.24556531,0.134584,0.050555397,0.014767837,-0.048270974,-0.12068458,-0.14674719,-0.01628546,0.2116253,-0.0038032643,-0.043712486,0.13180931,0.24640517,0.082331255,0.047448453,0.9045162,0.75065327,0.5077089,0.40492547,0.29915065,0.29288885,0.43406105,0.55621207,0.38368237,0.24435036,0.16080843,0.14343755,0.08089951,0.46966827,1.0790415,0.7497783,0.5671154,0.44359043,0.34887132,0.5942925,0.63559896,0.5075171,0.41002452,0.38550243,0.36411393,0.36460936,0.29403397,0.23922686,0.18764892,0.549151,0.8808704,0.5535637,0.63973975,0.712808,1.3087816,1.3721635,0.98245037,0.91383535,0.85892975,1.4494653,1.4608331,1.1858928,0.954172,0.83131754,0.73129445,0.8348936,1.1668532,1.1395848,1.0730344,1.1796141,1.3571169,1.5484333,1.7980162,1.9617754,2.078401,2.2194376,2.3684604,2.513432,2.5341105,2.6332898,2.711675,2.7889347,2.8179102,2.847962,2.9115546,3.1423311,3.168285,3.0527644,2.0192819,1.928904,1.9280262,1.9287115,1.9752867,2.027666,2.1198072,2.0743308,1.6773236,2.0489311,2.288735,2.420055,2.5230172,2.645037,2.8395216,2.6917198,2.6074452,2.00531,2.0600424,2.099828,2.2132654,2.2166915,1.5080707,1.425777,2.0565162,1.4277372,1.284642,1.091336,0.9155607,0.9041587,0.7968601,0.70361805,0.7109244,0.82327795,0.88339674,0.9587997,0.90242445,0.86225593,1.0278292,1.2637824,1.3286698,1.2446615,1.5216794,1.4442681,1.2609057,1.6502542,1.6675291,1.2944025,1.0189655,1.012363,0.95640504,1.0126412,0.93896425,0.72707677,0.61019874,0.50908476,0.53976464,0.49391454,0.41315174,0.4488186,0.39234957,0.33154535,0.4303184,0.6891112,1.3608263,0.9863212,0.87469685,0.8355777,0.6845031,0.69281626,1.3132622,1.0457969,0.8098313,0.6888327,0.6131384,0.68720156,0.78363776,0.9607291,1.0947462,1.1589303,1.1774986,0.9420104,0.7353274,1.5435771,1.3069941,1.0024538,0.90917957,0.8579224,0.6687425,1.0018687,1.0566343,0.9331297,0.78828657,1.497642,1.4736891
+0.51478255,0.8912815,0.95068276,0.8668307,0.8455028,1.0315483,1.1311104,1.0958385,1.0814253,1.2333758,2.4492183,1.868824,1.5266635,1.3397887,1.2173166,1.1215144,1.0400634,0.9641309,0.86272204,0.8076065,1.3662214,2.1380312,1.5941281,1.3827839,1.2423084,1.5510254,1.7324703,1.8265617,1.4430747,1.6495714,1.6646154,1.5334373,1.4282361,1.4794602,1.4194231,1.2524964,1.1375129,1.5435798,1.6106573,1.7616067,2.0699863,2.1141677,1.7355313,1.6146795,1.4536618,1.3105927,1.536274,1.6950748,1.360889,1.470812,1.6224805,1.3133569,1.1979098,1.1498193,1.0940866,1.3007762,1.3137162,1.1515048,1.0546355,0.92542136,0.78680325,0.7436373,0.7652477,0.63352,1.2941754,1.4715086,1.1185863,0.97001624,0.90171134,0.81341106,0.76427436,0.667792,0.55378044,0.49481034,0.5652211,1.4281372,1.1078994,0.90296036,0.761402,0.6227887,0.5136726,0.37136543,0.2504841,0.19025202,0.14160006,0.062184174,-0.08783884,0.8268591,0.611237,0.4650076,0.32953593,0.27344632,0.08696067,1.8773401,2.0052142,1.7033433,1.638273,1.4446335,1.2799934,1.0781243,0.9785702,0.8899836,0.884755,0.9627981,1.5160315,1.231939,1.0644662,0.9354075,1.0327601,1.0872275,1.0760558,1.1091967,1.2720115,1.1352183,0.9733453,0.7390259,0.9469505,0.80052555,0.64731693,0.8811285,0.6445327,0.54852295,1.1050197,1.1375198,0.79550576,0.6519537,0.50701976,0.43335256,0.28585044,0.22736438,0.14679195,0.056066614,0.043747004,0.017588716,0.8899609,2.2763803,2.1287994,2.1202345,1.7164752,1.4248503,1.2233636,1.1742568,1.1381054,0.97551894,0.86037594,0.84562266,0.7302163,0.6639548,0.78038645,0.6363071,0.96509254,0.75475085,0.53601265,0.43549988,0.34980094,0.19735713,0.11599994,0.044242095,-0.020485613,-0.09214695,-0.12962972,0.29468474,0.6756983,0.4163058,0.21865173,0.09693688,0.02674516,-0.03303444,0.4451555,1.5935848,0.9814184,0.6920177,0.49988818,0.35380188,0.21141171,0.102617845,-0.022081446,-0.11325824,0.6450573,0.6084162,0.4104988,0.408949,0.7111461,0.5381304,0.2894165,0.17149128,0.06806216,-0.049689736,-0.13768889,-0.25208524,-0.3072242,-0.35516137,-0.39205295,-0.459233,-0.4864306,-0.3315791,-0.39178103,-0.4758435,-0.51824665,-0.5148447,-0.55561435,-0.02901319,1.8191544,1.0782294,0.7490375,0.59469485,0.4079597,0.33505097,0.23756228,0.1211116,0.0566098,-0.0076538213,-0.12213498,-0.19712074,-0.2867808,-0.33799505,-0.35656768,-0.4000191,-0.44917488,-0.50697845,-0.54642725,-0.43840414,-0.29163477,-0.31007895,-0.4053285,-0.4276785,-0.40882945,-0.39492425,-0.471241,-0.5277167,-0.5208556,0.061842922,1.0226347,0.61854637,0.69704884,0.7088676,1.390717,1.2857081,0.91627014,0.87788427,0.921029,1.56055,1.6886423,1.2820327,1.0520551,0.91668355,0.85442346,0.9228885,1.0587846,1.209323,1.078647,0.99741864,1.0491459,1.1421534,1.3279591,1.5564479,1.5199907,1.6145902,1.8533772,1.8700266,2.2221189,2.0817266,2.1818347,2.1562266,2.207789,2.2919576,2.3872247,2.503069,1.8055341,1.4692994,1.4193907,1.1826017,1.1423059,1.0493882,1.1617173,1.1806405,1.1448528,1.1437793,1.0652035,1.1955957,1.4636987,1.6836761,1.8072488,1.8283331,1.9743679,1.4708805,1.3851213,1.373461,1.6931449,1.6611307,1.6775424,1.7693727,1.4462352,1.3462281,2.083364,1.7088025,1.4390914,1.3214097,1.1671724,1.1385448,1.0342293,0.94810766,0.9235333,0.9469779,0.9206821,0.9224027,0.832255,0.7834419,0.86162186,1.0133474,1.1323669,0.9199985,0.9691262,0.9775698,0.9002944,0.9819776,0.96791446,0.7393025,0.66132313,0.65263677,0.57507,0.6297983,0.6565483,0.57784414,0.51265377,0.46181655,0.58440745,0.69735,0.58424866,0.6026014,0.8732362,0.7367425,0.7120886,1.1120149,1.8932588,1.399286,1.344821,1.2462327,1.0550791,1.1925408,2.0077105,1.4832042,1.248563,1.2051665,1.0461621,1.0050449,0.99653625,1.0795292,1.0580907,1.1233265,1.1861483,1.0128353,0.9376444,0.86914754,0.75929624,0.7132267,0.6962211,0.71306545,0.6625689,0.967224,1.0978695,1.0120741,0.8882755,1.263308,1.4003685
+1.3851006,1.44588,1.4585142,1.3432248,1.3006891,1.2093108,1.2272809,1.2757921,1.2717501,1.1544025,1.7267321,1.7162719,1.5364039,1.4486524,1.3460383,1.2450424,1.2004737,1.1382437,1.0514822,1.0315564,1.4822408,2.0113306,1.5842547,1.44339,1.3522494,1.2958317,2.0915916,2.3375049,1.8876209,2.1297464,2.0540307,1.82929,1.6959517,1.6505556,1.5645854,1.4685514,1.3687843,1.3531427,1.3068893,1.8574605,2.0008473,2.306569,1.9765234,1.768828,1.6560136,1.5542812,1.8388147,2.182678,1.7808442,2.0094805,1.8712091,1.6702577,1.5216796,1.4370525,1.6974777,2.1456165,1.870497,1.6958218,1.5536441,1.3845477,1.30384,1.2223172,1.4310342,1.4309069,1.6176205,1.7653902,1.4609287,1.4004581,1.3221308,1.2300634,1.1673268,1.0996935,1.0057123,0.9304242,0.89890593,1.2481165,1.2359943,1.0153542,0.93764967,0.84435976,0.79201424,0.7599131,0.7572225,0.67806506,1.023213,1.0362314,0.85951495,0.99033356,0.97467434,0.8138792,0.75593257,0.77894413,0.78947365,1.0751624,2.3370028,1.7699875,1.9642262,2.985684,2.1193266,1.7132304,1.5189093,1.4235431,1.9113016,1.724865,1.922885,1.840024,1.6393023,1.4760548,1.3405735,1.2322752,1.080663,0.9769163,1.0444793,1.0982473,0.95345664,0.8746767,0.79849917,0.94858515,2.123684,1.9374725,1.6043606,1.4158037,1.3452274,1.2566812,1.1852031,1.099298,1.2573986,1.2717807,1.0123663,0.9081173,0.7693383,0.83657366,0.89022386,0.7806009,0.9709767,1.2945268,1.7331367,1.6714568,1.6741381,1.3892751,1.2605698,1.348578,1.7644107,1.3225746,1.1684678,1.1039174,0.9976691,0.9066268,1.2875183,1.2095047,0.9495155,0.78652334,0.62929875,0.561747,0.49199104,0.43781865,0.39898893,0.39868164,0.36621308,0.333946,0.3081892,1.4715848,2.2007346,1.6621145,1.3053752,1.0889785,1.4404044,1.5314848,1.2661157,1.3998346,1.3235313,1.0756558,0.8711494,0.7138454,0.59179705,0.50103766,0.41928148,0.34853333,0.4083481,0.42040056,0.30775648,0.24101143,1.1223936,1.3116481,0.96881855,0.77038765,0.6174738,0.4985879,0.37627372,0.27196294,0.2032592,0.14904791,0.0534303,0.0093094,-0.047621083,0.44710654,0.4891935,0.34057522,0.26082343,0.2349719,0.22090788,0.11799443,0.15419643,0.2127633,0.14050023,0.018279161,-0.014237817,-0.047446173,-0.12606645,-0.14169207,-0.16496606,-0.19415064,-0.22136699,-0.27824593,-0.31819394,-0.27742603,-0.10306774,-0.21514636,-0.28708392,-0.4030148,-0.4596513,-0.45233694,-0.22431405,-0.14642663,-0.20713457,-0.28920308,-0.2532113,-0.35226965,-0.36338267,-0.34625974,-0.40296966,-0.38114625,0.91490275,0.908731,0.849281,0.7550174,1.1935283,1.2210275,0.9719157,0.89003634,0.8583358,1.761945,1.9921093,1.5448766,1.3043479,1.2369671,1.2069292,1.78723,1.7589192,2.395214,1.9100088,1.6782609,1.7174968,1.8640474,1.989624,1.9066609,1.5916551,1.4754567,1.5982099,1.7432904,2.4056466,2.7969174,2.1791215,2.3894048,2.6861439,2.7872868,2.6080997,2.2254324,1.839066,2.0309603,2.5748215,2.1568177,2.013941,1.7791169,1.7610626,1.6439619,1.5856235,1.9439504,1.7843206,1.663477,1.7011635,1.9356475,2.1813223,2.375821,2.3804584,1.6908507,1.620919,2.417347,2.0521655,1.7988741,1.6742921,1.9858363,1.8450116,1.9833646,2.1190434,1.8378564,1.7208029,1.5883682,1.4858959,1.441046,1.3637334,1.2978158,1.2065601,1.2287183,1.1961238,1.1132684,1.0896263,1.0500362,1.0576041,1.1903468,1.3059177,1.0068871,1.6620283,1.8331198,1.5568752,1.5174117,1.4336941,1.2526066,1.1815096,1.1807283,1.1523756,1.104682,1.0735035,1.1309645,1.3215158,1.1613103,1.1258636,1.1436262,1.0804133,1.0564027,1.0065491,0.88214636,1.0059456,2.0268707,2.359591,1.8248804,1.649071,1.4714781,1.3351877,1.4649594,2.3026114,1.888839,1.635632,1.6974936,1.5130684,1.4195166,1.4859619,1.544487,1.3864083,1.3575807,1.420219,1.3907688,1.3024923,1.2566162,1.1960304,1.1586008,1.184619,1.280777,1.1921635,1.4774445,1.7856289,1.6384778,1.4698787,1.4564766,1.9754009
+1.0133823,1.0852181,1.1199064,1.0668321,1.0269482,1.0351062,1.1427464,1.093802,1.028151,0.9679053,1.0887035,1.2931175,1.1410184,1.0926129,1.0670164,0.96998346,0.9319113,0.88626444,0.78953874,0.7413335,1.1971741,1.3539293,1.1445129,1.0633305,1.011423,0.9563724,1.5432792,1.6050355,1.4011159,1.5280428,1.5046227,1.866905,1.6835227,1.4847653,1.3661163,1.280237,1.2092737,1.1414026,1.025252,1.2034463,1.1909535,1.2482258,1.3670464,1.1673391,1.1269914,0.99672174,1.1347125,1.2409981,1.1190631,1.9017696,1.601125,1.398181,1.2684946,1.1588428,1.1535906,1.6921636,1.6126974,1.3839211,1.2884119,1.1729732,1.0920656,1.11215,1.184541,1.104853,1.5785553,1.6198485,1.3258097,1.1960189,1.1435859,1.0747601,1.0181965,0.9685987,0.9016204,0.84852463,0.9410656,1.5288444,1.3267548,1.136472,1.0439695,0.9519459,0.8877651,0.7921609,0.8093561,0.7987283,1.5019249,1.2677104,1.039771,1.4124577,1.4227965,1.168345,1.0898551,1.0848005,1.089699,0.9312197,1.0279216,1.5005229,1.3493931,1.4576108,1.2450941,1.9058036,1.4804817,1.3254383,1.2272191,1.1364998,1.5148113,1.5665352,1.8417094,1.563887,1.3196523,1.1619868,1.1035073,1.0172272,1.1074951,1.1749078,1.0634143,1.0540546,1.1136084,1.0549686,1.8432132,1.6297143,1.4763222,1.3643711,1.6119637,2.0531058,1.7347623,1.5869646,1.5819567,1.626835,1.6560705,1.4424337,1.262286,1.13007,1.0978734,1.0566552,0.99245405,1.0493407,1.2412617,1.3459692,1.4655706,1.5083455,1.7603109,1.9584255,2.0067244,1.5673089,1.4423991,1.3060479,1.1840758,1.119581,1.8204556,1.5096473,1.2863634,1.1664896,1.0681838,0.9726287,0.9290021,0.88691604,0.84580195,0.80100286,0.7409009,0.6766911,0.64860916,0.6160014,0.76768935,0.944294,0.74548876,0.71602446,0.71948695,0.63355064,0.5318408,1.1706953,1.6756313,1.178932,0.95028263,0.83027005,0.73636264,0.6451813,0.56628966,0.49073178,0.44513324,0.49204546,0.38063818,0.3222515,0.29935426,0.26873392,0.2082721,0.15991528,0.121050805,0.091412336,0.036535766,-0.016985092,-0.082470775,-0.13921697,-0.14392269,-0.14046971,-0.12161818,-0.13805388,0.08135176,0.48011947,0.28971112,0.2399938,0.20395769,0.15370645,0.13934802,0.32438433,0.19771458,0.1454044,0.101680785,0.048231337,0.023472566,0.0023708604,-0.02457824,-0.0345446,-0.055719513,-0.08813207,-0.08840142,-0.09302083,-0.11215536,-0.20797028,-0.2553653,-0.26925465,-0.2718904,-0.24595831,-0.19165562,-0.21419436,-0.20761074,-0.26028144,-0.23398782,-0.24341278,-0.25161406,-0.23989917,-0.24275567,-0.21134992,-0.12612684,0.047162835,0.059230078,0.007178325,-0.005060684,0.16859601,0.097938895,0.079932526,0.10147089,0.44637567,1.2969291,1.5096958,1.210011,0.988901,0.88528025,1.158375,1.1659263,1.6302505,1.3329923,1.1382034,1.1975601,1.4049847,1.5854757,1.8169844,1.5927925,1.3456233,1.3285358,1.5101633,1.3505073,2.0339086,1.58116,1.7787446,1.9539641,1.763631,1.3905184,2.3096735,1.8427455,1.5712423,1.8731027,1.6276326,1.7034806,1.4594562,1.575541,1.7101054,1.493736,1.9890757,1.7291502,1.4575976,1.4994693,1.6007698,1.8355849,2.095119,2.056318,1.5725247,1.4485295,1.2912099,1.2634633,1.2425873,1.1325434,1.6021521,1.5394597,1.6943094,1.7501459,1.5118278,1.3535805,1.3105862,1.1859741,1.1131988,1.1113122,1.0490347,0.98191,0.9929575,1.057186,0.9806801,0.9112367,0.8670904,0.8060193,0.80927193,0.90552306,0.91387665,1.5205796,1.429712,1.2746224,1.1977507,1.1524398,1.046685,0.93347436,0.9622879,1.4806248,1.334556,1.2390552,1.2215848,1.2825543,1.0746745,1.0184393,1.0870638,0.9945841,0.9239618,0.84436816,0.77569574,1.0235736,1.1532182,1.7153409,1.5428042,1.3227302,1.2070074,1.0843209,0.9816426,1.7474768,1.6714714,1.3508265,1.7150133,1.5011318,1.4594572,1.4049946,1.3642579,1.1527598,1.1671875,1.1846709,1.8858473,1.519428,1.2879997,1.5019712,1.5902479,1.2905529,1.1735901,1.1027648,1.1716986,1.286629,1.3471562,1.18781,1.053374,1.4310207
+1.3878154,1.305721,1.2136344,1.0740649,0.9795697,0.87313664,1.0657022,0.990345,0.89360523,0.7871258,1.7850449,1.847214,1.4764998,1.8023584,1.6144996,1.3666126,1.2388145,1.0880036,0.95010966,0.80969846,0.78985626,0.7899163,0.78206444,0.7068346,0.6743082,0.6450416,0.63440907,0.71309686,1.0649283,1.5369993,1.3151034,1.0877466,1.0224473,0.9248711,0.85531974,0.7820588,0.73014665,0.6819205,0.5920465,0.8885681,0.9275125,0.89573836,1.1164267,0.85531116,0.7962563,0.64236593,0.55083597,0.5930929,0.5113657,0.43377733,0.40443984,0.3491581,0.29005376,0.17655449,0.11324875,0.11723487,0.030081708,-0.042278152,-0.065391675,-0.14601271,-0.2211613,-0.2201779,-0.09886493,0.65552586,0.86710757,1.4917258,1.0352969,0.74452955,0.5556628,0.41700384,0.31534767,0.22214575,0.23383011,0.36104226,0.43750584,0.7447043,1.2572305,0.91103333,0.70239514,0.55850375,0.4234983,0.26302096,0.19345291,0.10538122,0.13878325,0.3251515,0.26518315,1.104244,1.0182707,0.6549228,0.4838962,0.35586464,0.25558466,0.15647869,0.060172368,0.53078413,0.68532073,0.45354068,0.2829167,0.16032876,0.46279138,1.0901271,0.7938188,0.558635,0.8527559,1.0919234,1.6329794,1.3062003,0.972878,0.7916173,0.63027406,0.4863453,0.5572896,0.62462103,1.0071864,1.0458734,0.7347916,0.5721047,0.9753032,1.3446708,1.3172112,1.1088235,0.8056097,1.3002839,1.2392983,0.8695899,0.68752503,1.1231301,0.97544265,0.8052012,1.0578547,1.0090895,0.80731344,0.711164,0.7013285,0.8958807,0.7333784,0.5532019,0.39368838,0.78308725,1.0271837,1.3803949,1.5457734,1.0726922,0.8191341,0.6148849,0.46526402,0.60470045,0.7799084,0.4300552,0.28434163,0.16283387,0.049042467,-0.051583495,-0.13406666,-0.21067218,-0.1902019,-0.20799151,-0.27548543,-0.3402363,-0.38837034,-0.42070532,-0.50735533,-0.453808,-0.4015243,-0.50807047,-0.43506178,-0.53390616,-0.54207575,-0.5490061,-0.13942188,-0.15268622,-0.3206963,-0.42026138,-0.4730441,-0.53764427,-0.59620786,-0.64471793,-0.6818651,-0.7030914,-0.77197397,-0.7857791,-0.8157151,-0.9089234,-0.96370804,-0.9563725,-0.9485549,-0.9498124,-0.9779833,-1.0025598,-1.023628,-1.0760908,-1.0829171,-1.1037194,-1.1054025,-1.1328233,-1.1527367,-1.0573971,-1.0791743,-1.0627441,-1.0508615,-1.0887735,-1.0592686,-0.7452667,-0.907952,-1.0036067,-1.0339825,-1.039026,-1.0819547,-1.1002142,-1.1172509,-1.1255288,-1.1581464,-1.193435,-1.1992376,-1.2014503,-1.2373235,-1.2509639,-1.2381408,-1.2908597,-1.2861191,-1.2862407,-1.2667284,-1.2563835,-1.32656,-1.3087747,-1.2969271,-1.325514,-1.3264949,-1.3083696,-1.3576262,-1.3016777,-1.2131809,-0.9617797,-1.0552628,-1.1944666,-1.2000148,-1.1401075,-1.1426967,-1.1284957,-1.1595001,-0.92932636,0.4483835,1.941559,1.3144735,1.00402,1.0104773,1.8433572,1.6386275,2.0201776,1.4695191,1.1563948,1.1924912,1.3432431,1.429109,1.3920159,1.3790469,1.1541677,1.1137652,1.2279493,1.0975552,1.745784,1.5616891,1.627705,1.4475679,1.1617761,1.0543084,1.0145739,0.9509913,0.86022645,1.1077704,1.1428611,1.2846334,1.200415,1.1898451,1.379609,1.4956982,1.9477365,1.5014305,1.296636,1.2250668,1.2454188,1.4711884,1.6932955,1.4945347,1.1504257,1.077899,0.95137143,0.86532396,0.795089,0.72989017,0.8503245,0.98734605,1.5849812,1.7852409,1.5314772,2.0591211,2.2238014,1.5831175,1.4248483,1.3365068,1.1811299,1.0795898,1.0492388,1.0207689,0.9027628,0.83724576,0.8233537,0.81805545,0.7326903,1.106238,1.3967472,1.4514465,1.3098266,1.2425839,1.1660172,1.0583601,0.967036,0.8780197,0.78698295,1.1681659,1.1328546,0.9878175,0.8741724,0.8149807,0.6903587,0.6495258,0.7536182,0.6830685,0.6270472,0.64526397,0.62681204,1.011137,1.534879,1.439384,1.1924217,1.0210918,0.89930636,0.8128333,0.7212582,1.6919496,1.5553763,1.2274207,2.0405562,1.5771263,1.4659636,1.489833,1.4387535,1.2338934,1.1585116,1.1071749,1.5366471,1.4009002,1.1970148,1.0163062,0.9352782,0.87248033,0.7858975,0.75163287,1.0057344,1.4481707,2.195691,1.5738319,1.2862468,1.3429842
+1.60341,0.58892834,0.44620702,0.28909838,0.20523703,0.14502463,0.29581094,0.17834823,0.077605724,-0.002651181,0.38132805,1.758195,0.74431986,0.66782963,0.45176616,0.40312237,0.30500403,0.16191089,0.059163842,-0.07342063,-0.09630519,0.053966496,0.03734735,-0.09046994,-0.17268717,-0.22372378,-0.27141792,-0.28906032,-0.24406043,0.09102121,0.38479096,0.28340352,0.18738227,0.005578,-0.11109623,-0.17635593,-0.24800028,-0.32379425,-0.39925405,-0.41090983,-0.4606762,-0.51080763,0.281113,0.121956915,-0.04861669,-0.19533445,-0.29390565,-0.26362166,-0.259202,-0.36607313,-0.366246,-0.44942015,-0.5164456,-0.6051171,-0.6387683,-0.67270404,-0.699751,-0.71038306,-0.7601534,-0.8143641,-0.8872336,-0.9059177,-0.9374742,-0.87970835,-0.60423434,0.038378958,0.8289904,0.3617419,0.07977775,-0.0708794,-0.21639599,0.06166671,0.40064284,-0.007764738,0.37374485,1.4007193,1.0848178,1.2008048,0.6611693,0.47509217,0.27697724,0.093620166,-0.030470293,-0.11074166,-0.21783952,-0.35377783,-0.48349142,-0.5459066,-0.6047438,-0.59871733,-0.6472993,-0.7382313,-0.8238864,-0.69665694,-0.5114518,-0.526991,-0.23427247,-0.28675064,-0.4580516,-0.6103314,-0.63632196,-0.040730108,0.18161485,-0.09100765,-0.25335354,0.8437295,0.4047165,0.66016537,0.7667887,0.32005557,0.1726034,-0.022646349,0.1648245,0.25508437,-0.022832181,-0.18835539,-0.28006506,-0.22773443,-0.06817946,-0.2817799,-0.2678596,-0.2760809,-0.48352474,-0.29321337,-0.092724085,-0.35994935,-0.33414432,-0.111160636,0.2817679,0.6538725,0.5724938,0.4562083,0.4544446,0.51119727,0.55532396,0.6268818,0.40646672,0.21516328,0.044819023,0.2268294,1.1640518,1.0647402,0.9715953,0.673032,0.39341456,0.14383955,-0.009968024,-0.11527966,-0.247295,-0.3510261,-0.44263667,-0.54638267,-0.6184958,-0.6445507,-0.5673609,-0.6298593,-0.6483214,-0.7082006,-0.77750385,-0.8345187,-0.88471603,-0.91767275,-0.95887923,-1.0019848,-1.0656669,-1.0336517,-0.9303651,-1.0159215,-1.0424714,-0.6699413,0.006629724,-0.28735667,-0.46010637,-0.59452325,-0.68716305,-0.7635547,-0.82969046,-0.907357,-0.92398345,-0.8578509,-0.94724935,-0.9933782,-1.0940275,-1.1627545,-1.2396338,-1.2369047,-1.2621168,-1.2582293,-1.2567476,-1.2669964,-1.293697,-1.3530439,-1.3917274,-1.4149444,-1.409106,-1.4237958,-1.4281199,-1.4019016,-1.3981158,-1.3668542,-1.3482409,-1.3331558,-1.3247302,-1.37557,-1.4441938,-1.5342163,-1.5772069,-1.5847663,-1.5821795,-1.5977634,-1.5821921,-1.5723693,-1.5853972,-1.6124718,-1.5999299,-1.5837667,-1.6114652,-1.611141,-1.6169014,-1.6708251,-1.6654032,-1.6458144,-1.6552341,-1.6697365,-1.7288907,-1.7351146,-1.7152016,-1.7618288,-1.7079909,-1.5564125,-1.5851836,-1.5464481,-1.5816877,-1.509914,-1.5411488,-1.5857177,-1.5695097,-1.5941553,-1.5746138,-1.5476247,-1.4962935,-1.4640367,0.31705844,1.2107427,0.66979706,0.38771057,0.43139094,0.8390645,1.3571723,1.1492181,0.69040084,0.4326301,0.41465294,0.51739305,0.55146885,0.47083735,0.3188895,0.19307251,0.1316784,0.14379789,0.09801695,0.64147025,0.60285074,0.5599979,0.45429313,0.1971872,0.109312996,0.025296297,-0.01850697,-0.061080944,-0.073365435,-0.10950683,0.058989223,0.08652727,0.15275516,0.8424373,1.7868087,1.1956575,0.7882998,0.5233328,0.61631376,0.6209996,0.87927246,1.1218097,1.0953069,0.37116653,0.2027119,0.14506455,0.082137585,0.011868004,-0.04105906,-0.08369796,-0.10891561,0.8130405,0.960521,1.1665659,1.4603231,1.2512145,0.72694236,0.5446655,0.89184743,0.56706256,0.44363174,0.44862503,0.32391223,0.146095,0.04357073,0.0028440394,-0.040992226,-0.08387607,0.5466125,1.1670732,1.445609,1.0270371,0.91376793,0.5751446,0.4708414,0.31815517,0.25042015,0.11536001,0.116816565,0.07195814,0.03594703,-0.051421653,-0.11444099,-0.19371675,0.11230253,0.5641748,0.22900681,0.07689375,-0.009980287,-0.07421696,0.39650697,0.44378686,0.24200608,0.08464447,-0.036066692,-0.10472368,-0.14529209,-0.26049575,0.89887285,0.99129367,0.51843345,0.51882243,0.8742447,1.3254186,1.005193,0.92484754,0.49794644,0.36107612,0.30336177,0.15038486,0.038065184,-0.09895405,-0.20204833,-0.27818134,-0.3300687,-0.41104773,-0.04414324,0.4706409,0.1285742,0.19827731,0.043226395,-0.09867327,-0.17017259
+0.93258613,0.91235536,0.2666978,0.066780806,-0.068428144,-0.20279115,-0.015923243,-0.11047581,-0.23919134,-0.37181884,-0.143682,1.2184908,0.8365084,0.8097347,0.51454175,0.30599463,0.073314786,-0.120832875,-0.23690785,-0.3420979,-0.2627256,0.33488214,0.485386,0.0750906,-0.12971342,-0.25944,0.06266433,0.38313088,0.1298473,-0.09584166,0.21627031,0.5898997,0.4008252,0.081659645,-0.106068596,-0.19832467,-0.26453725,-0.33717826,-0.4315775,-0.24303842,-0.29469442,-0.43979663,0.1951874,0.073210225,-0.16197178,-0.29877678,0.072367966,0.7210196,0.1870629,0.52659154,0.33198407,0.0051215105,-0.135442,-0.2451395,-0.3482725,-0.4345854,-0.5352022,-0.5472325,-0.6208997,-0.6705972,-0.56191695,-0.42088214,-0.6224609,-0.69992185,-0.11834565,0.40852934,0.14555696,-0.07711597,-0.32335284,-0.45876396,-0.5603149,-0.66230106,-0.71010965,-0.5489419,0.35935166,0.62384915,0.1988237,0.4071868,0.34340674,0.1277308,-0.10920592,-0.28946337,-0.43195918,-0.49450186,-0.5980292,-0.6875701,-0.7396718,-0.36834037,1.1068215,0.40140736,0.31155497,0.10618435,-0.160346,-0.30752903,-0.40509832,0.04455312,0.23160718,-0.08232242,-0.26870817,-0.0685907,0.7373774,0.96381104,0.6032442,0.80479586,0.90352976,0.6965393,0.71892047,0.97446966,0.48659378,0.17388462,-0.044789325,-0.16704346,-0.050228786,0.04121351,-0.18879306,-0.32360774,-0.340663,-0.1932113,-0.36440325,-0.46588528,-0.5890698,-0.43565497,0.32372454,0.43703142,0.21418385,0.86991537,0.55403346,0.27786666,0.23877336,0.8481549,0.7300681,0.80072,0.8148086,0.75074697,0.72912526,0.70950353,0.4882779,0.23189043,0.08458644,-1.2692064e-05,0.02165291,0.29970124,0.31654924,0.30900663,0.1831348,0.17934169,0.6998976,0.46796632,0.07349898,-0.06498228,-0.2207586,-0.36533526,-0.47194865,-0.5074259,-0.51655835,-0.5799712,-0.5690936,-0.6484418,-0.7260089,-0.790139,-0.8498286,-0.9073628,-0.9571469,-0.822677,0.19638024,0.47712457,0.10417692,-0.19461118,-0.33768192,-0.1186908,1.1281699,0.50579524,0.20949228,-0.03739017,-0.19589648,-0.3011962,-0.1339311,0.015215185,-0.10451351,-0.18595172,-0.39953518,-0.5181085,-0.608622,-0.7071302,-0.80194104,-0.86969507,-0.9310808,-0.96118736,-1.0040036,-1.047249,-1.0732627,-1.1272001,-1.1853942,-1.2436267,-1.2680702,-1.2947143,-1.3228554,-1.3386397,-1.3344545,-1.3109876,-1.2960446,-1.2875953,-1.2998104,-1.3145189,-1.3544021,-1.4096284,-1.4450521,-1.5097773,-1.536963,-1.5644897,-1.5566168,-1.5523685,-1.5618137,-1.5826569,-1.6051931,-1.6013151,-1.6140202,-1.6171232,-1.595876,-1.66276,-1.6595286,-1.6400509,-1.6469674,-1.618253,-1.6633246,-1.6803744,-1.6729224,-1.6960454,-1.6494694,-1.4862618,-1.5526319,-1.5554295,-1.5778244,-1.4561248,-1.4211699,-1.4729825,-1.5344062,-1.5668931,-1.5592432,-1.5208753,-1.4337704,-1.4829237,0.14465927,1.1191356,0.44383487,0.12622963,0.047458705,0.5887704,1.3377726,0.74095845,0.33741045,0.11157055,0.045250762,0.16761415,0.24506824,0.37296325,1.2049643,0.5559749,0.20168704,0.082344875,0.012296837,0.40505707,0.9456735,0.41690195,0.29261345,0.07677437,-0.07326236,-0.18923512,-0.2978579,-0.3486882,-0.32971615,-0.23718718,-0.11656225,-0.22656618,0.326922,1.4251821,1.7031066,1.1116294,0.48332542,0.22042422,0.8763766,0.6334247,0.78128016,1.0442357,0.9387058,0.2685628,0.049821604,-0.04271866,-0.13933547,-0.25116923,-0.34037742,-0.41197935,-0.41725615,0.14647816,0.96715856,1.0273341,1.1650851,0.6783288,0.273382,0.095241696,0.4601215,0.21683867,0.19002402,0.16914047,0.044420455,-0.13017024,-0.28919336,-0.35576534,-0.38203767,-0.39376163,-0.038997512,0.011901725,0.48121953,0.4599576,0.11534692,-0.052796926,-0.13701466,-0.27935946,-0.33076477,-0.4179302,-0.32742685,-0.34413508,-0.34494773,-0.40835893,-0.4172758,-0.5380267,0.24944086,0.51790947,0.18190603,-0.051390048,-0.18635024,-0.29448912,0.32494795,0.5311677,0.11049184,0.24206714,0.033263247,-0.100290656,-0.19859977,-0.31125116,-0.41485962,0.71758336,0.34610283,0.42082983,0.17888145,0.48193073,0.31131476,0.57074666,0.13396284,-0.05244163,-0.1117861,-0.22567968,-0.31405836,-0.42139873,-0.50264,-0.5587765,-0.61588055,-0.7076368,-0.19344348,0.4332647,0.016824562,-0.09005168,-0.26347876,0.047878,0.19516951
+1.5090313,1.7173848,0.12321791,-0.4638914,-0.71313334,-0.8619963,-0.96620977,-1.0360028,-1.0796235,-1.1762097,-1.2567043,-0.8800959,0.021397281,0.18544342,-0.230909,-0.5063648,-0.72062606,-0.89695144,-1.0227636,-1.1394737,-1.2194593,-0.7740935,-0.50162524,-0.8019672,-0.99261534,-1.1160834,-1.1555002,-0.96224856,-0.99894416,-1.1330668,-0.7138987,-0.427703,-0.45197558,-0.5377488,-0.84045833,-0.95781744,-1.0281465,-1.1218226,-1.2510203,-1.2093083,-1.2254161,-1.3263069,-1.2708963,-1.3452249,-1.3968178,-1.4689056,-1.1844211,-0.49455363,-0.7575664,-0.074328855,-0.24746273,-0.60370374,-0.79302365,-0.946862,-1.0832484,-1.176508,-1.2622113,-1.2962779,-1.3592542,-1.3352919,-1.3290685,-1.3468094,-1.4110382,-1.4587557,-0.43820456,0.20277269,-0.23562314,-0.51941943,-0.7868923,-0.9318993,-1.0849688,-0.897943,-0.6730672,-0.61171764,-0.4278382,-0.44251847,-0.7098952,-0.9281329,-0.59404206,-0.1851514,-0.4413579,-0.7731845,-0.9639899,-1.0813948,-1.1481478,-1.2425826,-1.2875679,-0.6967935,-0.36833546,-0.63289845,-0.40221828,-0.17400047,-0.6105838,-0.87950826,-1.019593,-1.1130055,-0.9164301,-0.79718167,-1.0154816,-1.1128529,-1.1091006,-0.90192556,-0.04603408,-0.17039801,-0.35412812,-0.46668202,-0.18938419,0.062413026,-0.14008279,-0.4652587,-0.20353888,-0.15768,-0.21152802,-0.39337528,-0.36788404,-0.34185112,-0.2867448,-0.2967221,-0.6888674,-0.7593997,-0.74256635,-0.92663765,-1.0226182,-0.54402655,-0.28931817,-0.28330904,-0.3853582,-0.6154868,-0.79214317,-0.83824265,-0.8702913,0.07753685,0.11745101,0.24441616,0.09662558,-0.2946812,-0.5722662,-0.7891778,-0.92893803,-1.0334518,-0.738199,-0.5822261,-0.8086588,-0.8366081,-0.66914195,-0.50718623,-0.5740502,-0.7760885,-0.87045705,-0.60499406,-0.44439957,-0.6983224,-0.8599814,-0.98428863,-1.066252,-0.97382015,-0.3086224,-0.16837333,-0.40237296,-0.6848831,-0.8954505,-1.0174618,-1.0990431,-1.0975568,-1.0101081,-0.7680636,-0.8747561,-0.934217,-0.8204475,-0.096257046,-0.045395475,-0.34141067,-0.6210642,-0.8323979,-0.94156486,-0.9802012,-1.0802774,-1.1743757,-1.1705204,-1.1462197,-1.1935267,-1.255027,-1.27298,-1.3453342,-1.4134071,-1.4951112,-1.5445085,-1.5691171,-1.5581757,-1.5876695,-1.6237373,-1.6458907,-1.6850685,-1.740781,-1.7662115,-1.7911923,-1.806303,-1.8119018,-1.7913947,-1.795479,-1.7916547,-1.7833085,-1.7665036,-1.7341852,-1.7053595,-1.717168,-1.7737958,-1.8308244,-1.8866746,-1.9025776,-1.8897413,-1.8931041,-1.8966086,-1.9027028,-1.9097232,-1.9007182,-1.889999,-1.8757963,-1.8502264,-1.8929926,-1.915563,-1.9156152,-0.9805081,-0.74814826,-0.98031163,-1.1093652,-1.194818,-1.2888864,-1.3353732,-1.3881028,-1.4367177,-1.4810255,-1.4550923,-1.3910924,-1.3610077,-1.390916,-1.4927874,-1.5489179,-1.5360675,-1.4957151,-1.4799545,-1.5732336,-1.4226947,-0.7876152,-0.747085,-0.9229564,-1.0725325,0.4667735,0.88299936,0.44652826,-0.27637932,-0.52689034,-0.68045443,-0.69261765,-0.743055,-0.847233,-0.52140844,0.22594927,-0.25815943,-0.47957665,-0.62241125,-0.3576718,0.9844415,-0.1489129,-0.44673803,-0.55293834,-0.65996253,-0.7904244,-0.8754858,-0.9237629,-0.9650961,-0.9903134,-1.0443194,-1.0310107,-0.9959881,0.75897735,0.57055193,0.6717761,-0.15512286,-0.41671216,0.117724195,0.15964232,0.018750805,-0.019080054,-0.36013305,-0.4759868,-0.49725103,-0.6708798,-0.77058923,-0.8559538,-0.92790407,-0.97599816,-1.0102872,-1.0196859,-0.45786393,0.1525564,0.13368465,-0.29368556,-0.5708793,-0.70035166,-0.7435428,-0.8653134,-0.92587745,-0.96846765,-1.0130732,-1.0636165,-1.1311139,-1.1594175,-1.155406,-1.144366,-1.1867698,-1.2337251,-0.37398064,-0.19367632,-0.53572214,-0.67860126,-0.79831123,-0.90183765,-0.9486541,-1.0333438,-1.0338309,-1.0382972,-1.0951811,-0.86557704,-0.7242878,-0.89801,-0.2574737,-0.10891312,-0.47075254,-0.6945763,-0.81378907,-0.9021402,-0.9888844,-1.036359,-1.0980121,-0.9891699,-0.9918797,-1.0678984,-1.1370906,-1.2247564,-1.2949195,-0.37446478,-0.32338604,-0.6532134,-0.8057807,-0.84973824,-0.8081146,-0.7447071,-0.9068463,-0.9637328,-1.0326787,-1.1252613,-1.1971372,-1.2828798,-1.3297187,-1.3670892,-1.4179658,-1.4835907,-1.510504,-0.94307303,-0.8480496,-1.0300931,-1.150678,-0.76936066,-0.21773273
+-0.81030726,-1.0458233,-0.90818673,-1.1606089,-0.8655677,0.075765565,-0.85140043,-0.86401486,-0.88653886,0.039454956,0.5869036,0.05742543,-0.5130657,-1.010612,-1.3921839,-1.5835408,-1.6887834,-1.7747631,-1.8336136,-1.8067999,-1.5639048,-1.4785239,-1.6202548,-1.6448181,-1.6884304,-1.2935417,-1.3862001,-0.9595771,-1.2063656,-1.2974403,-1.0642878,-1.2955728,-1.4368367,-0.9466364,-0.94281065,-1.2836981,-1.500057,-1.5637176,-1.5835705,-1.1007357,-1.1951923,-1.3113151,-1.3468871,-0.9585557,-1.1519723,-1.3548067,-1.5213953,-1.5713409,-1.583733,-1.6543081,-1.7153692,-1.7679328,-1.7864125,-1.8057361,-1.8735788,-1.4463577,-1.3728256,-1.3709911,-1.4776255,-1.661852,-1.7459702,-1.6997211,-1.6833118,-1.8076917,-1.6790372,-1.407831,-1.4407883,-1.6522603,-1.6678431,-1.7676965,-1.8040818,-1.8763177,-1.9025191,-1.9077705,-1.5881437,-1.1221161,-1.0455642,-1.3750949,-1.5675936,-1.6608992,-1.7523131,-1.814562,-1.879451,-1.8011924,-1.876879,-1.9140863,-1.4311318,-1.3955749,-1.6720564,-1.7120379,-1.7620577,-1.303829,-1.5101929,-1.6334667,-1.730164,-1.7977036,-1.8466858,-1.8526305,-1.6753986,-1.6852095,-1.8118323,-1.3392026,-1.273552,-1.5718231,-1.6671963,-1.778848,-1.8287165,-1.8979833,-1.9383221,-1.983461,-2.01191,-1.7812396,-1.5399207,-1.8054571,-0.9247271,-1.0809324,-1.385458,-1.5372815,-1.1009567,-0.8384971,-1.1216576,-1.3971556,-1.5371513,-1.6496655,-1.743103,-1.8113782,-1.8707261,-1.9117732,-1.9538267,-1.9750279,-2.0153568,-2.0513442,-2.0934165,-1.4011979,-0.91596293,-1.2936728,-1.5304794,-1.3617607,-1.5274003,-1.6679356,-1.7707894,-1.2467769,-1.0813735,-1.4726131,-1.6340731,-1.6855669,-1.0641016,-1.2869371,-1.2711203,-1.2720449,-1.5393183,-1.647017,-1.7083426,-1.8178129,-1.8359275,-1.8929018,-1.9397459,-1.9939573,-2.0432549,-1.18243,-0.6789791,-1.2579153,-1.2661273,-1.2400211,-1.5223475,-1.6178623,-1.6958209,-1.789587,-1.8465612,-1.341989,-1.3468769,-1.6231143,-1.6333618,-1.3428977,-1.397475,-1.5921704,-1.6931901,-1.7683883,-1.3204956,-1.3785088,-1.3177924,-1.4845049,-1.4423109,-1.0361397,-1.1370083,-1.4555612,-1.5939333,-1.4419838,-1.3946366,-1.404291,-1.51283,-1.6791795,-1.7036339,-1.7385793,-1.502717,-1.3112547,-1.5398531,-1.6277885,-0.88421226,-1.2131102,-1.4008243,-1.5214064,-1.6258101,-1.7153839,-1.76034,-1.7846465,-1.8398073,-1.8369639,-0.9984589,-0.8436482,-1.2602327,-1.4655379,-1.5641172,-1.609907,-1.6584624,-1.2014195,-1.128388,-1.4122815,-1.5267596,-1.5802068,-1.6294563,-1.6936752,-1.7602944,-1.777091,-1.8299613,-1.778532,-1.7976298,-1.8021647,-1.8225057,-1.8502724,-1.8091784,-1.7282594,-1.2524239,-1.4455276,-1.4299594,-1.1896312,-0.7970808,-0.91948026,-1.050453,-1.2245506,-1.2166278,-0.9857238,-0.6789427,-1.1717396,-1.2415223,-1.3596244,-1.4633617,-1.1864638,-0.97456384,-0.76281667,-0.79697835,-0.88623476,-0.90786445,-0.54613125,0.5578192,1.1473157,1.9585556,2.6025708,2.7405043,2.9341583,3.0103004,2.9879684,3.1894088,3.0415025,3.0011106,2.752554,2.8813336,2.870654,2.9577322,2.7905111,2.5989447,2.9015965,2.6192055,2.6075625,2.753733,2.798616,2.857497,2.53596,2.5606642,3.0993395,3.1331286,3.1207647,3.079959,3.1305585,3.1569793,3.016475,2.9928336,3.1600938,3.1654317,3.0594063,3.104799,3.0398507,2.7313685,2.7676497,2.6873507,2.2285156,1.3034334,0.24290426,-0.94481826,-1.1537066,-1.1771182,-1.4176803,-1.2469621,-0.96738404,-0.4787367,0.5520162,0.39717495,1.2833443,2.1323187,2.6054854,2.6152017,2.846772,2.7331653,2.430417,2.8551037,3.0689597,2.7276678,2.5021348,2.4338734,2.44867,2.0118985,1.9726477,1.8903563,0.5400085,-0.92579865,-1.1266458,-1.2249207,-1.3705282,-1.5485778,-0.8212018,-0.9908947,-0.9411253,-0.49200958,-0.5886333,-0.7621107,-0.931473,-0.7735615,0.26940513,1.276648,-0.48063785,-1.2074941,-1.411778,-1.3606977,-1.2549012,-1.0761849,-0.8567122,-0.12898861,0.15026383,0.18254714,0.4493336,1.0910808,0.979545,0.17838399,-0.14622767,-0.89371485,-0.8258699,-0.46304816,-0.32918185,-1.192856,-1.0452077,-1.1349442,-1.3801061,-1.4542712,-0.7390936,-1.10186
+0.34991434,0.13659684,-0.10952714,-0.43427435,-0.6009606,0.2030756,0.5388104,0.04967885,0.14910527,0.5917368,0.5240232,-0.08299036,-0.3696002,-0.520526,-0.7065041,-0.8546755,-1.0042039,-1.120394,-1.1867849,-1.2830095,-0.36658433,0.07134949,-0.39774802,-0.65069443,-0.7947639,-0.16866937,-0.36391404,-0.3441118,-0.37156147,-0.13288584,0.2815101,-0.02577798,-0.21983755,-0.055258255,0.3051592,-0.23941664,-0.47092497,-0.61964214,-0.7638978,-0.08968173,0.31098217,-0.09815566,-0.3879658,0.06901577,-0.14450648,-0.38401246,-0.5725136,-0.69461215,-0.82824445,-0.97611994,-1.0279952,-1.0770862,-1.1532562,-1.2075686,-1.2668295,-1.2109574,-1.2620741,-1.3258696,-1.3881073,-1.4611442,-1.5364002,-1.5369855,-1.472537,-1.5277436,-1.6079608,-1.4865706,-1.2831216,-1.2488786,-1.322218,-1.5063298,-1.4436407,-1.5144136,-1.5465087,-1.5853145,-1.6913671,-0.8656349,-0.8396472,-1.0096319,-1.1430163,-1.2565582,-0.47915953,-0.49918044,-0.78989077,0.24588929,-0.3273415,-0.6202246,-0.39781004,-0.53773344,-0.7562758,-0.8567251,-0.9941928,-1.0303448,-1.1005313,-1.2194347,-1.3039378,-1.3366758,-1.0296314,-0.79213786,-1.0166922,-1.1316919,-1.2121629,-1.2979707,-1.3370787,-1.1862473,-0.6295527,-0.8780542,-1.0205578,-1.1584234,-0.85851544,-0.98415744,-1.147155,-0.7887013,-0.48290747,-0.83397275,-0.090452656,0.04374828,-0.5180504,-0.7320324,-0.7700579,-0.7250338,-0.56141907,-0.77840483,-0.9801115,-1.1065269,-1.2410269,-1.3653857,-1.5007584,-1.5668449,-1.6396081,-1.6513369,-1.7033733,-1.7692534,-1.8298829,-1.8826182,-0.7984812,-0.58967066,-0.07733373,1.3733809,0.13759626,-0.07997021,-0.06712456,0.07983154,-0.061216116,-0.40069216,-0.59202015,-0.6465417,-0.4251948,-0.67956746,0.0009527318,-0.088069305,-0.44717854,-0.09019989,-0.17042983,-0.52386266,-0.63302684,-0.7656641,-0.8982202,-1.011276,-1.0713907,-1.1164522,-0.8927063,-0.90217793,0.09093805,-0.04609082,-0.4713324,-0.68397444,-0.82383215,-0.9044288,-1.0140651,-0.07103192,-0.32967597,-0.64035475,-0.80868965,-0.92564285,-1.044014,-1.1468652,-1.1924546,-1.2565751,-0.810212,-0.71633875,-0.895414,-0.33462977,0.09830128,0.44163758,0.044773165,-0.33198428,-0.5159131,-0.5227598,-0.39038724,-0.59388995,-0.81251,-0.92659676,-1.0111734,-1.0881834,-0.5572103,0.050467547,-0.45781982,-0.6275002,-0.052764352,-0.2033671,-0.4908833,-0.6806989,-0.34678817,-0.43045115,-0.59791124,-0.72010165,-0.86668193,-0.92055017,-0.5899911,0.14402233,-0.30485487,-0.577042,-0.18861169,-0.23692174,-0.50070494,-0.6693449,-0.07851598,-0.21250694,-0.46003115,-0.61231816,-0.7016804,-0.662295,-0.74782205,-0.8171022,-0.91319776,-0.8588513,-0.7619856,-0.7797085,-0.89725304,-0.96380496,-0.9874013,-0.73656875,0.08955747,-0.4036577,-0.45255667,-0.39500314,0.11416446,0.4304784,-0.11099568,-0.25834823,-0.23880298,-0.066165365,0.32878894,-0.055719327,-0.26123485,-0.40689546,-0.45593292,-0.2074578,0.14512777,0.066678,0.1941133,0.36387104,0.71918494,0.98829865,1.4695632,1.931783,2.1430945,2.2612414,2.4226701,2.728515,2.8969946,3.1599555,3.3676567,3.3958967,3.4336247,3.393683,3.5361528,3.6229277,3.5667443,3.7004569,3.54151,3.594552,3.7604847,4.015465,3.973939,3.8352084,3.8682892,3.9738178,3.6775177,3.979374,4.0550504,4.029258,3.986617,3.9885035,4.140522,4.155959,4.182928,3.8026347,3.8688295,3.7865744,3.8995728,3.9392877,2.9982104,2.1350589,1.7056043,0.6093037,0.19541289,0.011081032,-0.12354541,-0.15528342,-0.034692433,-0.037895683,0.095180765,0.27942804,0.6407064,1.0314515,1.0346162,1.2153587,1.396224,1.5427644,1.6166155,1.5318115,1.846067,0.5657717,0.4514988,1.0138335,1.1450891,0.7307342,0.48923814,0.5947888,0.32206222,0.2831127,0.18087243,-0.2934569,-0.4827363,-0.5754156,-0.53328985,-0.5411101,-0.7255447,-0.331941,-0.09363927,-0.28781235,-0.29440102,-0.34329158,0.9583111,0.20779367,0.02582727,0.26965615,0.55639845,-0.14912409,-0.09855063,-0.29675514,-0.541746,-0.5779538,-0.4387102,-0.29266065,0.01700604,0.41884935,0.5827245,0.7372448,0.814299,1.0063436,0.6823602,0.19823201,-0.23639998,-0.27340856,-0.14231008,-0.056776635,0.024607811,0.5838094,0.21908636,-0.15078628,-0.37323305,0.31789064,0.13185614
+0.73763126,1.031827,1.0697308,1.0404354,0.90189564,1.1304777,1.8281102,1.8126203,1.6381816,1.6643026,2.397142,1.8264173,1.5423708,1.3360554,1.1855705,1.0842094,0.94303995,0.87064356,0.7812777,0.7703792,1.5456896,2.398486,1.8202373,1.5199537,1.3882529,1.3094532,1.2723732,1.9387943,1.75788,2.0081646,1.9620483,2.2495048,2.1728525,2.0517948,2.0406914,1.7210679,1.586923,1.4957864,1.7924373,1.9455498,1.7981149,1.8808494,1.7858529,1.8155735,1.7099932,1.5162296,1.4361475,1.5553718,1.3508999,1.1811872,1.8880782,1.601807,1.4000466,1.3104522,1.2531308,1.2405231,1.1640699,1.0583861,0.99070644,0.84741455,0.71016467,0.87217355,0.8301159,0.7251248,1.7378553,1.8704515,1.4772536,1.3098979,2.842082,1.7577974,1.7006426,1.5397787,1.4431362,1.3495547,1.6677296,2.1563735,1.8063884,1.6766852,1.4486356,1.3577356,1.3393505,2.2762923,2.0577662,2.3754475,2.0439382,1.6816168,1.6450734,1.8659716,1.6829891,1.5522757,1.402142,1.4276558,1.3006082,1.6301734,1.8510736,1.6297076,1.5858636,1.6435919,1.9244003,1.69546,1.5298288,1.4233311,1.3438694,1.7482712,2.070814,1.7625859,1.583432,1.427851,2.0857136,2.0247827,1.6563911,1.5534078,1.4569917,1.3558904,1.295691,1.2100573,1.0260012,1.0042251,0.9255518,1.1428638,1.4906366,1.286105,1.0825164,0.9993812,0.9036009,0.93726975,0.8669956,0.7878396,0.70046926,0.6235051,0.5302397,0.43874058,0.5108887,0.3888787,0.48607045,0.8342954,1.6584599,1.9491204,1.6000015,1.340923,1.2178055,1.7226763,1.6516247,1.326189,1.1440203,1.5432726,2.0834818,1.7836478,1.6573803,1.6184466,1.5370593,1.5614154,1.9366188,1.5700995,1.3617266,1.2152979,1.0308772,0.9102385,0.85569614,0.7711922,0.8646991,0.94440746,1.8421173,1.5344536,1.1355852,1.0008875,0.867308,0.7770661,1.192891,2.1237967,1.7209872,1.2730193,1.0672411,0.8905157,0.75967616,0.6370734,0.5054058,0.427626,0.97101235,0.97989845,1.0999895,1.1414984,1.7362871,1.7447717,1.4884624,1.2248256,0.9559498,0.7518573,0.6547067,0.53573453,0.44623494,0.37885088,0.3276689,0.26240107,0.37432832,0.94620216,0.71856046,0.57285416,0.73358,0.8076617,0.60593224,0.60567904,2.0730007,1.7741836,1.3307146,1.1785948,0.97953475,0.9242901,0.8945292,0.8997782,0.84318626,0.7930731,0.6081408,0.5376546,0.5303055,0.51043534,0.4615537,0.3465628,0.27800384,0.20011245,0.12975486,0.52465165,0.64121604,0.5378668,0.41053352,0.41205126,0.44283012,0.4758609,0.39692304,0.30238682,0.2782184,0.5141943,1.5676823,1.2351391,1.2054284,1.2377365,1.7553675,1.8687627,1.4620954,1.4110911,1.3503122,1.6639116,1.9433527,1.5802851,1.4004892,1.2545619,1.1814947,1.2449225,1.4861796,1.4336767,1.3886669,1.4570152,1.5986102,1.715748,1.875289,2.110557,2.2495263,2.4316244,2.5918305,2.6108153,2.844862,2.9762104,3.016193,2.9676127,2.9062877,2.951983,3.0520391,3.30449,3.1219993,2.503477,1.8643799,1.6579521,1.7696664,1.75583,1.7809784,1.7334137,1.8226764,2.137148,1.8523499,2.0518112,2.413989,2.6488216,2.781805,2.8511658,3.142618,2.782929,2.467349,1.9071674,1.8905482,1.9223566,2.0252917,2.283679,1.8525198,1.644522,2.3291998,1.9579875,1.7182957,1.6350839,1.4786955,1.4622648,1.3743973,1.3430953,1.3503821,1.4291952,1.47312,1.5216268,1.4466215,1.4201478,1.4732001,1.560473,1.6320016,1.4619219,1.7033727,1.7686884,1.5980096,1.9288921,1.905192,1.7110503,1.4889733,1.5148622,1.4952102,1.522778,1.4377749,1.2313913,1.070884,0.95144963,1.0097772,1.0045805,0.9093552,1.0989311,1.529866,1.3642495,1.3717835,1.3821886,1.887511,1.550494,1.4426484,1.4626232,1.4886093,1.4802887,1.9682634,1.5779665,1.3213383,1.1832898,1.1763939,1.2421107,1.2563509,1.3488812,1.3867962,1.4469783,1.4987783,1.462347,1.2013576,1.8116183,1.8258091,1.4139127,1.3999262,1.3611419,1.1538038,1.9644886,2.0008311,1.822087,1.5401614,1.9169323,2.349587
+1.6493597,1.2695946,1.2392857,1.163104,1.0917242,1.1459715,1.5701163,1.444969,1.3808813,1.3943336,2.4413648,1.8423426,1.559584,1.4161763,1.3031087,1.1824363,1.0890241,0.9884646,0.8597344,0.787924,1.0615342,1.8693386,1.4929667,1.3081379,1.21265,1.1465259,1.563932,2.1790316,1.6768253,1.6850346,1.7967286,1.7558168,1.643854,1.6573205,1.6151313,1.4302464,1.4158111,1.5731883,1.6096287,1.7314917,1.7583497,1.8178809,1.7936425,1.7212429,1.5611093,1.3900771,1.5063496,1.7425869,1.469236,1.3987553,1.4481525,1.328387,1.2340622,1.177887,1.1185956,1.2590107,1.2793694,1.078125,1.1083485,1.0268097,0.88491005,0.86838126,1.3515059,1.4850432,1.356345,1.4912975,1.2708449,1.1609764,1.0914239,0.9789202,0.98157907,0.94074136,0.9516244,0.8701471,1.5018715,1.8141854,1.5132403,1.3215107,1.1451994,1.069399,1.0236425,0.9288946,1.4633049,1.6287065,1.3492362,1.1520977,1.0078819,1.2231303,1.0467669,1.0033714,0.9143304,0.889096,0.7005695,1.6310344,2.1321235,1.7345362,1.6672097,1.5398746,1.5361626,1.5163813,1.321986,1.1874774,1.1178446,1.1055753,1.1760166,1.1132817,1.0103841,0.9520285,1.31792,1.4202192,1.1760131,1.1016526,1.0741568,1.0106366,0.94742256,0.84245086,0.99136686,1.0486429,1.5682573,1.5464015,1.251598,1.1267052,1.1080859,1.129123,0.9378595,0.90400225,1.1684875,1.0613897,0.8883859,0.74323165,0.68910027,1.2118201,1.2035763,0.97163916,1.618499,2.0873334,1.9707294,2.0376463,2.1165195,1.5967844,1.4217259,1.5186808,1.6162219,1.3041635,1.1365812,1.0955023,1.0407138,0.998183,1.3287199,1.2187889,0.9990115,0.83888614,0.86645055,0.8074194,0.6603609,0.5187552,0.4275054,0.4364608,0.45189416,0.4132583,0.39756322,0.926401,1.173506,0.8650521,0.6396227,0.50580263,0.4044587,0.32245028,0.37666732,0.9266084,0.82896996,0.5463806,0.36683235,0.22745691,0.114874735,0.054467056,-0.0074072443,-0.04942138,0.50297993,0.73956096,0.8451586,0.88202214,1.1030633,0.8695958,0.75949657,0.5792988,0.4333977,0.338166,0.25492427,0.11237727,0.02376641,-0.042018887,-0.10585274,-0.14609857,-0.15198594,0.031171102,-0.099254146,-0.14296894,-0.1680574,-0.13031772,-0.14619641,0.5817753,1.8577539,1.3216583,1.009116,0.8858323,0.7509491,0.6430906,0.54061806,0.47940123,0.41608244,0.3760007,0.32587597,0.25771487,0.17840959,0.12673755,0.09046881,0.017586444,-0.033935715,-0.10347231,-0.12574121,-0.04870696,0.13339898,0.10847542,0.053979296,-0.009203147,0.060547296,0.054501895,-0.024914894,-0.034812067,-0.082966894,-0.08709206,1.0203066,0.9011605,0.93071806,0.94721276,1.1692585,1.3116865,0.9571796,0.93682975,0.952863,1.5003985,1.6721618,1.2849193,1.1546589,1.0466614,0.9653218,0.99490666,1.0905669,1.5634494,1.3678312,1.284083,1.3454578,1.4704043,1.6799508,1.8873552,1.8198984,1.9048553,2.042396,2.255876,2.6218057,2.6156936,2.2140665,2.4277596,2.5724237,2.6097896,2.6998656,2.6121325,1.6376106,1.60166,1.7309443,1.3376873,1.4148078,1.2804195,1.3757677,1.4554408,1.329516,1.597183,1.3941627,1.4827149,1.8329313,2.025229,2.138844,2.3109493,2.5844917,2.1429465,1.6851856,1.4016348,1.8254077,1.751022,1.6467818,1.6637473,1.4234576,1.3154511,2.0090885,1.5916297,1.3758692,1.2863812,1.1410216,1.0908097,1.0478003,0.9742557,0.9732114,0.977497,0.96120244,1.0240057,0.96688604,0.8746016,0.9798956,1.242222,1.4885659,1.0817841,1.4266773,1.3585896,1.1227977,1.2762053,1.2853149,1.0638696,0.91745174,0.9565264,0.8476582,0.89800036,0.9437883,0.80333376,0.7851933,0.6825185,0.7992289,1.0336392,0.8985,0.9597374,0.9766787,0.78992903,0.8921416,1.6717684,2.443398,1.6239711,1.4328434,1.369104,1.178928,1.4690382,2.0853703,1.6027677,1.3998964,1.3076389,1.1260574,1.1019101,1.1532354,1.1278028,1.0685866,1.1879109,1.4160712,1.2456276,1.0623527,0.9173429,0.8679636,0.78047526,0.7261147,0.75449073,0.77886415,1.5989645,1.6096643,1.6476882,1.3968201,1.4148673,1.726058
+1.8839314,1.4897878,1.466051,1.3093214,1.2538729,1.1606025,1.2130822,1.0763714,1.0220509,0.94147974,1.35869,1.6813078,1.4060898,1.3109117,1.1929651,1.0521936,0.96226645,0.8887287,0.8146241,0.7619723,1.0892403,1.876234,1.4197075,1.2464594,1.1234949,1.0317148,2.023587,2.3577921,1.744646,1.7115259,1.8822643,1.7223029,1.5496144,1.6888009,1.7607484,1.5164363,1.371951,1.3023313,1.278837,1.6999637,1.7433279,2.530886,1.904717,1.6237426,1.5158415,1.3836532,1.8517332,2.2636395,1.774653,2.3234215,2.071927,1.7043495,1.5319216,1.4159492,1.5466664,2.2909708,1.8733089,1.6334732,1.5389531,1.3750005,1.2395864,1.1978687,1.4226642,1.4391323,1.5330195,1.7876403,1.4956214,1.344672,1.2247286,1.132678,1.0644214,1.0176256,0.97093034,0.932375,1.6349293,1.809132,1.5275156,1.3660991,1.2571001,1.178652,1.1000636,1.1671058,1.1510525,1.2735896,2.7049801,1.8508875,1.585708,1.8256854,1.6061972,1.406854,1.2915697,1.1984153,1.1087365,1.0690103,2.55796,2.3804004,2.254037,2.534936,2.3903868,1.9649839,1.6760907,1.5232675,1.9168359,1.7866814,1.7691416,1.7449411,1.5627787,1.4443917,1.3451227,1.2464597,1.1788001,1.1077033,1.0337546,1.0084443,0.9851117,0.92908156,0.8717785,0.94874406,2.3144906,1.9252826,1.6810461,1.6566887,1.5357046,1.5113568,1.3849661,1.2848608,1.7625583,1.5924419,1.3790233,1.3962868,1.4251015,1.4145408,1.3034542,1.2003376,1.1185223,1.3812656,1.9702234,1.6777867,2.2253666,2.127027,1.738893,1.8332124,2.6747746,1.8478479,1.5953534,1.4701219,1.3678834,1.2837193,1.1837568,1.1597732,1.1275237,1.0256904,1.1242363,1.1604896,0.97008014,0.9042969,0.86474025,0.8397443,0.7921847,0.75593626,0.72738594,1.0452648,1.8999015,1.5262109,1.2463851,1.0933318,0.9801936,0.8884574,0.98118067,1.8228699,1.6472981,1.3329911,1.165415,1.0316441,0.9283345,0.85576963,0.78434825,0.7265862,0.7173991,0.7414706,0.8347123,0.97251606,1.4596813,1.4303174,1.2027926,1.0549552,0.949841,0.84058344,0.74005854,0.64791065,0.56317306,0.50582165,0.45504636,0.4243384,0.3973156,0.70038986,0.80215394,0.75694203,0.6954155,0.62479985,0.58283675,0.53425694,1.1230593,1.5188286,1.1432848,0.99279916,0.8661766,0.80569106,0.7340151,0.76882637,0.691801,0.62163293,0.56130224,0.52223885,0.4687416,0.40823033,0.37689093,0.30247602,0.26077864,0.21551375,0.19715701,0.2017468,0.3792363,0.39671773,0.35356867,0.29148775,0.32608926,0.29443136,0.27090693,0.24109302,0.23047878,0.21861921,0.8087393,0.8827798,0.8676759,0.8928592,0.9883385,1.2548473,1.0056063,0.95102775,0.9896766,1.6652145,2.193083,1.8751776,1.5044231,1.4107871,1.3798709,1.3923357,1.4076719,2.2382941,1.8520037,1.6445974,1.7102365,1.9039907,2.070229,2.629284,1.9368474,1.7049253,1.7405736,1.991533,1.7822835,3.169001,2.0778203,2.1892328,2.4126077,2.430327,2.3478162,2.3547456,1.9594394,1.7176393,2.4225786,1.9736905,2.1867785,1.7536075,1.9428759,1.9157152,1.688652,2.1561193,1.8253753,1.6876516,1.8515389,2.110359,2.3508172,2.6350853,2.6120648,2.0369053,1.8745501,2.7561216,2.439311,2.1494539,1.844315,2.3881621,1.9212857,1.9220076,2.3139632,1.9003668,1.6845297,1.5471915,1.4275877,1.4027473,1.2981164,1.2401772,1.2239656,1.1799566,1.1775494,1.1506233,1.1201057,1.0567741,1.0877733,1.2496922,1.3950291,1.0937874,2.4807377,2.1924255,1.8337591,1.8053765,1.595381,1.3717418,1.2728527,1.2993817,1.2613366,1.2508144,1.2328259,1.136936,1.2135968,1.1063069,1.0354333,1.3583896,1.3725922,1.2309983,1.2005326,1.1032927,1.3051822,1.5364802,2.3392282,1.7965243,1.601963,1.5119128,1.3658559,1.4188371,2.2343729,1.8189408,1.5867488,1.7197032,1.5066206,1.4652479,1.4769113,1.3475356,1.2136621,1.2994778,1.600687,1.6502502,1.4047904,1.2903589,1.1856005,1.103235,1.0522635,1.0745568,1.0643082,1.8130493,2.1238766,1.7947435,1.5403596,1.3953009,1.7888532
+2.0277085,1.6590381,1.6398575,1.5848098,1.4848745,1.6175723,2.0092201,1.7970893,1.6515158,1.5478451,1.5738099,1.5447277,1.4369876,1.3961053,1.3236239,1.2674291,1.2161824,1.1700565,1.106659,1.0910487,1.1876597,1.6806347,1.5095377,1.3725694,1.3317449,1.2705281,1.2154922,1.2006924,1.1006393,1.1677318,1.3423551,1.3596928,1.3185711,1.5220615,1.4368752,1.3360908,1.317903,1.2784641,1.1520982,1.2284465,1.5212018,1.650456,1.5691185,1.3397791,1.3082278,1.176166,1.3596271,1.3946407,1.3141727,1.6661366,1.7067511,1.4779224,1.3679724,1.3153468,1.208065,1.3384929,1.3614559,1.2528682,1.421599,1.2419363,1.1396062,1.3839836,1.9442651,1.9637418,2.0941715,2.2884064,1.9120772,1.6383066,1.5041077,1.4095078,1.3107691,1.2322774,1.1920106,1.2115757,1.3821187,1.7577633,1.7415171,1.4570153,1.3345149,1.2548151,1.1572428,1.0706222,1.0685284,1.046552,2.1404788,1.9163018,1.6217442,1.9069293,1.84933,1.603785,1.4936556,1.3623165,1.3428384,1.3879409,1.3674947,1.8261356,2.1765237,2.3217373,1.9601634,1.940891,1.729658,1.6241648,1.5623834,1.4793442,1.7742612,1.8569738,1.5647584,1.5170126,1.406682,1.2764119,1.1775384,1.0818002,1.0351747,0.9600495,0.9703499,0.99287844,0.962445,1.0358474,1.2435914,2.0445437,1.9113867,1.7044457,1.508361,1.4233956,1.4708165,1.3920219,2.0327916,1.745601,1.8348098,1.6735216,1.4872415,1.3337169,1.2725238,1.1895857,1.122319,1.0363157,0.9820627,0.91775584,0.85908705,1.3967795,1.7642083,1.918206,2.2071586,1.7631638,1.508884,1.4112194,1.2904809,1.1776257,1.3706639,1.5922084,1.36608,1.2079341,1.1202073,1.0285571,0.950072,0.8916199,0.8770522,0.84758604,0.7862823,0.7400963,0.7229699,0.70492136,0.73018306,0.98113286,0.93047786,1.081881,1.2158201,0.987587,0.89042526,0.8492935,2.2449117,1.8076568,1.5031044,1.36358,1.250037,1.1457152,1.0528531,0.9709414,0.89637667,0.8480274,0.7779926,0.77778137,0.76355183,0.7357011,0.66729736,0.60460013,0.5614895,0.51005447,0.45499703,0.41987646,0.39962763,0.32904458,0.302719,0.29551533,0.26083717,0.25337085,0.2536503,0.2884443,0.27982152,0.2824269,0.29506382,0.29379255,0.9136343,1.5141118,1.1740918,1.0305564,0.9449316,0.8574843,0.7920803,0.76959866,0.7063004,0.6468097,0.6179018,0.5744063,0.50585365,0.4423787,0.41759866,0.37242988,0.29338002,0.25352782,0.2188466,0.19410086,0.21128768,0.21105994,0.21023141,0.16710651,0.1676151,0.14814495,0.14921623,0.13835897,0.099495664,0.084681615,0.46907687,0.6507313,0.67943287,0.6194308,0.48531753,0.44003475,0.43496054,0.46766722,0.48957002,0.4395205,1.6408236,2.5948553,2.015048,1.7445753,1.6250038,2.08783,1.963363,2.414806,1.9748762,1.7822518,1.8049921,2.010291,2.2144659,2.7568374,2.172989,1.8760412,1.8216481,1.9661183,1.863357,2.773539,2.1729689,2.250901,2.352096,2.1094885,1.847152,2.6515868,2.1984272,1.903111,2.48344,2.0560093,2.2157311,1.8996158,1.9759021,2.1642976,1.9954205,2.33072,2.0255733,1.8132861,1.7683983,1.8681926,2.163575,2.5398102,2.3814716,2.3306756,1.9896944,1.7547451,1.6827953,1.6359602,1.5677109,1.9074659,1.8674928,2.1558583,2.4268045,2.0333982,1.8410262,2.1360993,1.8757031,1.8472652,1.7040167,1.6341715,1.5548424,1.5361233,1.5933489,1.4669759,1.4101092,1.3734936,1.3383446,1.2945997,1.4334383,1.4337192,1.9867289,1.8680027,1.8656459,1.772188,1.6389964,1.531749,1.4024158,1.4008565,1.8425053,1.6783485,1.5982739,1.564662,1.5952091,1.4433601,1.3912644,1.4524245,1.3903053,1.3038975,1.7910368,1.616114,1.5219672,1.8321359,2.4368296,1.9796443,1.7587395,1.6973457,1.5738196,1.4757857,2.115038,1.9140403,1.7009354,2.286656,1.9877212,1.8689144,1.89554,1.7902052,1.6604189,1.7441561,1.7419815,2.1829967,1.8478708,1.7121184,2.1692615,2.0067945,1.761244,1.6864364,1.7692779,2.1088533,2.0044184,2.1299891,1.8506594,1.688319,1.8466333
+0.51663154,0.2509157,0.075473785,-0.035511326,-0.13111964,-0.19421339,0.3621844,0.14372636,-0.03816014,-0.106332466,0.4028579,0.8737655,0.38697305,0.32311645,0.23072313,0.04404581,-0.073427364,-0.19278795,-0.30447817,-0.40652817,-0.43824327,-0.403819,-0.40955046,-0.5054016,-0.5120285,-0.54238415,-0.56020623,-0.5931667,-0.6748044,-0.5656212,-0.28960288,-0.123579934,0.1591591,0.040638927,-0.07922951,-0.22758661,-0.32201785,-0.3962974,-0.48924083,-0.48122126,-0.503203,-0.37856597,0.48638618,0.15815435,-0.05274804,-0.21626744,-0.2968994,-0.33612067,-0.4101147,-0.43750834,-0.24713576,-0.38457662,-0.49441797,-0.56945956,-0.6148357,-0.61657983,-0.65190494,-0.71109164,-0.60104847,-0.70957613,-0.74485946,-0.70497644,0.0746678,0.23839302,-0.027749773,0.5203501,0.41477385,0.06720598,-0.11769746,-0.24059449,-0.33032984,-0.39691836,-0.4145996,-0.41692388,-0.5062962,-0.46734387,0.37287205,0.16731781,-0.08550327,-0.19093867,-0.29811624,-0.39862522,-0.44416338,-0.4965955,-0.539454,-0.55787206,-0.5254104,-0.20614187,0.0005821809,-0.2053896,-0.3333901,-0.43166137,-0.4894017,-0.57167786,-0.56709903,0.33533573,0.6201333,0.25529584,0.04048832,-0.09294464,0.24911205,0.48255372,0.2350968,-0.0070121773,-0.10750599,-0.18386649,-0.29712817,-0.32452035,-0.36514276,-0.37950498,-0.43117577,-0.52329755,-0.29471368,-0.06160078,-0.14337485,-0.17948087,-0.29283756,-0.35272658,-0.025484081,0.25980014,0.42313814,0.36230832,0.026040692,0.40741074,0.41019017,0.08206302,-0.053880464,-0.20661396,-0.26258594,-0.2734367,-0.14536902,-0.13375357,-0.24498956,-0.30933613,-0.3926845,-0.450468,-0.50044936,-0.5636478,-0.63686156,-0.37401465,-0.0030242763,0.07560812,0.24164106,-0.00694653,-0.19320692,-0.2345147,-0.19578622,-0.27907392,-0.1889982,-0.27817377,-0.3124478,-0.43130726,-0.5251307,-0.5867287,-0.5755384,-0.67556155,-0.69380295,-0.72080714,-0.78274393,-0.83580995,-0.88027054,-0.9265182,-0.9675997,-0.53812987,-0.24573332,-0.4455783,-0.5047302,-0.6164966,-0.6991724,-0.78072584,-0.54924494,-0.14097899,-0.37244046,-0.4748555,-0.56351346,-0.64315635,-0.7165147,-0.8114492,-0.87631106,-0.8937934,-0.98790413,-1.0184553,-1.0720512,-1.1278836,-1.1915382,-1.2185401,-1.2278805,-1.2391732,-1.2575616,-1.2607143,-1.2646426,-1.350753,-1.3937862,-1.4390192,-1.4504569,-1.4385831,-1.4356159,-1.4218867,-1.3911058,-1.4018028,-1.3880064,-1.3826698,-1.425849,-1.1940317,-1.3009112,-1.3898708,-1.4242616,-1.4506761,-1.4828074,-1.4634005,-1.4805768,-1.4965287,-1.5022275,-1.5250818,-1.5382688,-1.5428765,-1.5443046,-1.5469891,-1.5845765,-1.6155806,-1.6332829,-1.6243985,-1.6181064,-1.5935888,-1.6226609,-1.6415155,-1.6466134,-1.6522696,-1.6592274,-1.6542847,-1.6830797,-1.6773646,-1.6268835,-1.3974509,-1.3724358,-1.5076504,-1.5962555,-1.595072,-1.4980586,-1.4564953,-1.4386319,-1.5376403,-0.41292667,1.6744452,0.9626287,0.53433156,0.4064287,1.0192829,1.1063842,1.2284403,0.706664,0.42826515,0.44210887,0.62899375,0.73120904,0.62146753,0.5356865,0.3378182,0.27925563,0.45183384,0.23119904,0.9721812,0.71766067,0.70489085,0.52074313,0.26830882,0.109703824,0.040526066,-0.014143955,-0.096708715,0.26455176,0.33179453,0.8190286,0.52200866,0.51209307,0.8451065,1.1256999,0.8947562,0.52521974,0.29936066,0.1849769,0.24982487,0.55496365,0.70297253,0.6322392,0.28345597,0.209505,0.07646048,-0.035964355,-0.11669238,-0.17364267,-0.2022608,-0.17061742,0.19523802,1.181939,1.0257317,1.3263178,1.9749484,0.8610935,0.5579272,0.80151594,0.4849174,0.3741644,0.35606712,0.2268954,0.08900684,-0.008510407,-0.058688138,-0.1516933,-0.07257572,0.22546183,0.21583943,0.40529966,0.4512268,0.79555905,0.5492292,0.3035954,0.31834346,0.19276552,0.022328582,0.28256765,0.2110275,0.108322844,0.091704264,0.07604611,-0.05549333,-0.020305108,0.2537483,0.11167148,-0.03851362,0.2705038,0.20882426,0.28178746,1.0441879,0.97770214,0.5001154,0.2204815,0.118654355,0.04058585,-0.022484634,0.5341895,0.696198,0.28562462,0.90099263,0.51550704,0.36937192,0.41634136,0.5017275,0.21637018,0.25716668,0.0789105,0.78694284,0.4013817,0.19964905,0.13411903,0.3023687,0.18786216,0.016158748,0.015279088,0.8993762,0.8453235,1.4577022,0.686113,0.3813636,0.2694852
+1.6981925,1.6947606,1.205331,1.047061,0.9818802,0.88179183,1.2266095,1.0124028,0.8825452,0.7911529,1.1029993,2.076212,1.5095806,1.5649107,1.3083298,1.1904341,1.0818205,0.96112853,0.8908746,0.7725737,0.75325537,0.9483011,0.88728935,0.80494,0.7412802,0.71608347,0.68475556,0.7018201,0.66628623,0.95022595,1.6806211,1.3420731,1.347163,1.1028085,1.0568342,0.90250933,0.8011381,0.73399305,0.6675243,0.6248059,0.60729027,0.5523839,0.8470727,0.6845263,0.5958637,0.52219677,0.5163593,0.7368706,0.7175623,0.80917037,0.8273155,0.66842663,0.58004946,0.5073039,0.46096468,0.41767818,0.36022547,0.26466447,0.26685303,0.20478901,0.13683113,0.5857494,0.82375747,0.5828415,0.49394858,0.79243016,0.7896312,0.5902903,0.4698289,0.38914943,0.3204551,0.21376437,0.12600632,0.105168864,0.5886196,0.7640865,1.2318668,1.0450821,0.7929318,0.6856604,0.5852288,0.48031402,0.4016821,0.34497583,0.26096666,0.163885,0.6303086,0.9322103,0.6697586,0.5161017,0.39767647,0.3104005,0.19355619,0.16793351,0.17189261,0.12215203,0.28899613,0.38402623,0.21591543,0.2060101,0.36095396,0.61920005,1.1884146,1.3038356,1.0524268,0.87530696,0.74214375,0.67248017,0.5128968,0.43531245,0.3852826,0.3650116,1.5533237,1.1562665,0.89017946,0.733613,0.61138785,0.49538124,0.52732015,0.5328084,0.44254297,0.40616053,0.34824258,1.1697001,1.0357195,0.7339472,0.59593356,0.5370091,0.41135117,0.93336296,1.0157225,0.7542451,0.85045326,0.8092884,0.8607522,0.7354288,0.54741937,0.41267467,0.58358127,0.9350644,0.9000269,0.90902925,1.0277061,0.93210804,0.6566148,0.4454532,0.7566899,0.76230407,0.50266635,0.35992944,0.22980796,0.10397518,0.018649522,0.037647154,0.507288,0.746662,0.76225907,0.4739939,0.33235848,0.22284023,0.13108417,0.06011076,-0.03216743,-0.12290606,-0.10859306,-0.16278599,-0.24866618,-0.33203042,-0.38336307,-0.42919016,-0.15480354,-0.07052384,-0.18574418,-0.31604487,-0.38151732,-0.44520164,-0.50433564,-0.56042653,-0.59906816,-0.5932209,-0.5777055,-0.5929519,-0.61093515,-0.6670835,-0.78338444,-0.79202956,-0.8181217,-0.8404858,-0.8673451,-0.8866931,-0.9018222,-0.8961215,-0.944666,-0.9631397,-0.96227753,-0.97779316,-0.98548204,-0.95260775,-0.9736371,-0.9347959,-0.9381455,-0.9179013,-0.925288,-0.913193,-0.9309993,-1.004317,-1.05782,-1.0596583,-1.0508513,-1.0806015,-1.0708282,-1.0822113,-1.0914438,-1.1094134,-1.1063458,-1.0913029,-1.1183132,-1.1050627,-1.1014988,-1.1397436,-1.1417356,-1.0872004,-1.1365347,-1.1050599,-1.1611283,-1.1568385,-1.1409875,-1.1379268,-1.1210337,-1.1217022,-1.1547396,-1.1317494,-1.0718113,-0.9364943,-0.956511,-1.0326725,-1.0159367,-1.0360566,-1.0301449,-0.97482514,-0.93459034,-0.9606905,1.3037627,1.7032117,1.3325304,1.0160215,0.95838547,1.1338209,1.5624318,1.627837,1.2344263,0.9991915,0.9878819,1.1267885,1.2092378,1.0882535,0.8528018,0.8409535,0.75335777,0.781107,0.7921234,0.95988,1.1065786,0.9440131,0.8921701,0.7226776,0.6327349,0.5767451,0.5320787,0.49843174,0.4740606,0.46078163,0.92291427,0.92086905,1.012474,1.594078,2.458665,2.1432905,1.521893,1.3091979,1.3611414,1.4052942,1.6422296,1.8990552,2.0260282,1.5099691,1.0551136,0.89163136,0.8026874,0.7445402,0.69191104,0.6605137,0.6802572,0.7208891,1.6861528,2.041417,2.1266608,1.9227195,1.4567667,1.2897968,1.4006228,1.208505,1.1256921,1.1307373,1.0438657,0.9072783,0.8284347,0.8156232,1.013478,0.90572065,1.183928,1.2823933,1.7162434,1.5678225,1.3945876,1.1975384,1.0906032,0.97406137,0.9238835,0.83465785,1.4269583,1.2770352,1.1374385,1.0318286,0.95784247,0.84196854,1.0862931,1.4511362,1.1406455,0.9945183,0.997681,0.8628453,1.1125543,1.1867814,0.9877198,1.1361432,0.9594128,0.8607601,0.789447,0.7189226,1.1490314,1.7926611,1.2306243,1.3296807,1.3323877,1.6258519,1.3168511,1.4995595,1.1673905,1.1240034,0.9770919,1.2217829,1.0865796,0.91841125,0.8300176,0.74297947,0.68407875,0.6059262,0.8678173,1.6382095,1.3641739,1.338783,1.1303492,1.1087791,1.1431422
+1.0069355,0.8283748,-0.053802736,-0.27256504,-0.3991747,-0.53852904,-0.3721129,-0.40387732,-0.5356301,-0.6376875,-0.6058983,0.56726116,0.37335235,0.69610816,0.30545312,0.099789694,-0.06885722,-0.34219575,-0.49471506,-0.6386663,-0.7033763,0.079331726,0.04215226,-0.2977103,-0.4701389,-0.6104578,-0.23474352,0.45303845,0.07309373,-0.20524906,0.112790406,0.2908965,0.09534107,-0.23817272,-0.41111773,-0.5123042,-0.5799396,-0.663977,-0.7805632,-0.85170215,-0.88686925,-0.9603299,-0.7616823,-0.72329104,-0.82713354,-0.94017154,-1.025355,-0.547004,-0.29221508,0.22426294,0.22156481,-0.19135131,-0.41472262,-0.55650103,-0.6922634,-0.81037533,-0.9099548,-1.0002638,-1.0209088,-1.0899472,-1.1647829,-1.0442889,-1.0772214,-1.196593,-0.54908484,0.4904908,0.18422076,-0.09520453,-0.44325286,-0.58054733,-0.70490575,-0.8336097,-0.31620535,-0.1445219,-0.30005556,0.37253863,0.90656656,0.2987403,0.11434904,0.002525974,-0.27582312,-0.46497053,-0.5900905,-0.70299274,-0.7860197,-0.8717526,-0.48045102,-0.11419329,-0.3228643,-0.4276423,0.35116994,0.2895161,-0.19329497,-0.3688191,-0.5290373,-0.336248,0.38568214,0.060290594,-0.26264143,-0.0013589226,0.76737195,0.55714893,0.6367005,0.58829737,0.4939084,0.31889874,0.012122501,-0.16918017,-0.32308465,-0.37114096,-0.37403944,-0.2756897,0.22418527,0.04839735,-0.28368223,-0.4557834,-0.33043936,0.27099463,-0.13029632,-0.37011743,-0.53152204,-0.5429533,-0.3823153,0.027477805,0.23702614,-0.1230893,-0.118554994,-0.07847272,-0.3652099,-0.049878877,0.28270376,0.08696452,0.328896,0.40484148,0.5803538,0.43708867,0.18885101,-0.08941433,-0.3046126,-0.41549084,-0.54583806,-0.6305161,-0.6651106,-0.64941466,-0.52733034,-0.58955413,0.32068494,0.02670588,-0.306262,-0.4700882,-0.59003884,-0.66761374,-0.7453488,-0.855557,-0.91797876,-0.9736786,-0.76444566,-0.41946533,-0.7163005,-0.8564786,-0.96196795,-1.0472693,-1.1296854,-1.1604426,-0.8970777,-0.46934095,-0.66426176,-0.8435699,-0.95263326,-0.4839407,0.6177403,0.17452928,-0.17214845,-0.40934587,-0.57575893,-0.68875563,-0.7945648,-0.87836754,-0.93476367,-0.99535173,-1.0702618,-1.1196383,-1.147284,-1.2168273,-1.2902644,-1.3638272,-1.4125935,-1.4500701,-1.4999584,-1.5264572,-1.5314124,-1.589296,-1.6582699,-1.688753,-1.7216861,-1.7416499,-1.7699397,-1.7834736,-1.7439167,-1.6669086,-1.7472401,-1.7324119,-1.7350422,-1.7182728,-1.7348956,-1.778362,-1.8131247,-1.8571371,-1.891756,-1.9157869,-1.9165673,-1.9183769,-1.9213595,-1.9180872,-1.9483831,-1.9507499,-1.9659882,-1.9500003,-1.962707,-1.9986986,-2.0137925,-1.9883999,-2.004079,-1.9684628,-1.9621094,-1.9844614,-1.992691,-2.0410469,-2.0116947,-2.0003793,-2.0251083,-2.0233212,-1.9616008,-1.794033,-1.7640461,-1.830846,-1.8642689,-1.9390472,-1.9517689,-1.878407,-1.7786556,-1.8443577,-0.71205616,0.635539,0.07682456,-0.26598567,-0.3617251,0.25209722,0.8955565,0.7737548,0.14624168,-0.14750269,-0.14834629,-0.009794425,0.029961515,-0.1877533,0.42696577,0.5598394,0.015283767,-0.09446278,-0.18304709,-0.31923723,0.98159647,0.2216263,-0.0179529,-0.15480807,-0.3326931,-0.41165614,-0.5027828,-0.5487463,-0.6010091,-0.62268305,-0.6310897,-0.61973673,-0.45156956,1.2449356,1.6726403,1.1402129,0.23421098,-0.034867804,0.70170295,0.70515287,0.58687484,0.82088184,0.8738077,0.29258445,-0.21857367,-0.41716713,-0.52561116,-0.6063037,-0.66723895,-0.72136474,-0.7369849,-0.5605914,0.28024226,0.80328673,0.8120593,0.24522851,-0.14177515,-0.2909489,-0.24890512,-0.37381807,-0.3203054,-0.30079275,-0.3534542,-0.46839073,-0.6236608,-0.69418824,-0.57892644,-0.49412906,-0.41475564,-0.27952093,0.40906435,0.6926441,0.07354289,-0.16479115,-0.2737087,-0.45551273,-0.53560793,-0.63138473,-0.31950992,-0.31811833,-0.42310646,-0.43764034,-0.45152146,-0.6233748,0.04089724,0.7985617,0.16407706,-0.19343995,-0.37481785,-0.4692932,0.2599153,0.5435085,0.028139163,0.3020293,-0.040887576,-0.18590237,-0.27143922,-0.39089608,-0.5608706,0.1306878,-0.070778385,0.118667245,-0.100213334,-0.05996893,-0.15869513,0.02341995,-0.24634545,-0.33728892,-0.37729037,-0.55165964,-0.63094485,-0.7133178,-0.78365636,-0.831359,-0.8790432,-0.96151745,-1.0358112,-0.18122353,-0.0225504,-0.35964975,-0.50530726,-0.61057085,0.000280533
+1.2034191,0.69930035,-1.132314,-1.5417455,-1.7468385,-1.8357925,-1.8970041,-1.9688027,-2.011982,-2.051703,-2.1263313,-1.9359713,-1.0085292,-0.7941654,-1.2916992,-1.4976155,-1.676291,-1.8631498,-1.9491113,-2.0176117,-2.100058,-1.4946764,-1.3057088,-1.6956397,-1.8161124,-1.9308707,-1.9662445,-1.9703438,-2.0898216,-2.1598506,-2.2164888,-2.2619495,-1.919659,-1.2916056,-1.6909547,-1.8719039,-1.9332397,-2.0000885,-2.0634265,-2.0688756,-2.0045161,-2.122473,-2.1252146,-2.2325053,-2.2915578,-2.3588293,-2.0679295,-1.6000159,-1.7656605,-1.1758696,-1.2459866,-1.6405057,-1.8262321,-1.9208598,-2.0171115,-2.105249,-2.1828406,-2.2301989,-2.256166,-2.3105986,-2.34689,-2.367116,-2.4120052,-2.4601421,-1.881739,-0.92946327,-1.0467302,-1.30172,-1.6849396,-1.8378644,-1.9489298,-2.0286732,-2.0903847,-1.8377408,-1.6195592,-1.44957,-1.0586628,-1.4698076,-1.5054848,-1.449533,-1.7378037,-1.8952341,-1.994159,-2.0799649,-2.1261718,-2.1808002,-2.224756,-2.2699652,-2.303511,-2.254705,-1.76391,-1.4535828,-1.7670505,-1.9386092,-1.9450088,-1.8773236,-2.0028684,-2.0615733,-2.1159673,-2.1114295,-1.9201522,-1.683141,-1.6015564,-1.1485622,-1.3975959,-1.6840638,-1.8275616,-1.4934835,-1.2512016,-1.563874,-1.788488,-1.8659472,-1.5730058,-1.2247626,-1.2644613,-1.2598373,-1.2634902,-1.2961168,-1.6746802,-1.8137602,-1.812788,-1.57641,-1.0728962,-1.1188656,-1.3392959,-1.131008,-1.210678,-1.3516786,-1.4417202,-1.1222303,-1.0990217,-1.0540162,-0.8667523,-0.932032,-1.1481013,-1.2670375,-1.1697928,-1.219382,-1.2300029,-1.3375546,-1.6483486,-1.7533879,-1.5192192,-1.4287307,-1.4684818,-1.3030148,-1.0188911,-1.3624352,-1.6492487,-1.6592429,-1.3868489,-1.6165516,-1.7811496,-1.7599713,-1.6116313,-1.5481601,-0.9445125,-1.2772746,-1.5144935,-1.6935959,-1.8853364,-1.9812176,-2.0504522,-2.0979965,-1.9379982,-1.6753496,-1.8820285,-1.9908184,-1.9849361,-1.67401,-1.3011154,-1.361097,-1.3944758,-1.5521646,-1.7536423,-1.820003,-1.9061235,-1.9153004,-1.7427648,-1.7432482,-1.8589388,-1.924764,-2.0072098,-2.0564256,-2.1035595,-2.162051,-2.2283146,-2.2955332,-2.29488,-2.3412204,-2.3652096,-2.431541,-2.487215,-2.5354826,-2.5720563,-2.5869508,-2.607168,-2.6233377,-2.6293907,-2.6456828,-2.6548202,-2.648549,-2.643417,-2.6131148,-2.605338,-2.6031032,-2.6277676,-2.6754904,-2.7205863,-2.7339838,-2.7555234,-2.7663937,-2.773878,-2.7671895,-2.783268,-2.773222,-2.764059,-2.7548745,-2.7846484,-2.7823577,-2.7427163,-2.5396311,-2.5379,-2.5035257,-2.499473,-2.5308743,-2.579494,-2.637539,-2.6192217,-2.6414905,-2.6551642,-2.6677303,-2.6428075,-2.4932084,-2.3589063,-2.3711705,-2.4924383,-2.5793,-2.6069975,-2.5718997,-2.4838195,-2.534215,-2.5391276,-1.8567041,-1.5766358,-1.7759014,-1.8349336,-1.6626163,0.057335604,0.08622371,-1.35432,-1.5532948,-1.5849643,-1.4032943,-1.408737,-1.4820659,-1.3945456,-0.88894403,-1.3501531,-1.490154,-1.6170647,-1.6018478,-0.81436765,-1.3418803,-1.5347004,-1.6196313,-1.7200999,-1.8297793,-1.9005519,-1.9513271,-1.9900172,-2.0058737,-1.9541961,-1.8735253,-1.6414675,-0.7044878,-0.85033816,-0.17648421,-1.3616617,-1.4957286,-1.2800391,-0.7031897,-0.81435764,-0.71171224,-0.9290117,-1.4038593,-1.5992453,-1.7172532,-1.7985045,-1.8657467,-1.9306383,-1.9732509,-2.010473,-2.0411282,-1.3511385,-0.6872111,-0.6973589,-1.3412774,-1.5744762,-1.6312431,-1.6885451,-1.7335992,-1.728138,-1.7605314,-1.8160357,-1.8756123,-1.9746616,-2.032333,-2.0615363,-2.0255384,-2.0044873,-2.086547,-1.5253757,-0.98555636,-1.4478967,-1.6065726,-1.6960847,-1.8248036,-1.8858695,-1.9379402,-1.9675788,-1.9900045,-1.973063,-1.854065,-1.815033,-1.8342344,-0.8799807,-0.6578306,-1.3152661,-1.5868226,-1.7501988,-1.8139156,-1.8101012,-1.6816736,-1.7323619,-1.6711252,-1.7543981,-1.788205,-1.8483071,-1.955586,-2.054256,-1.5646801,-1.5460346,-1.7074856,-1.8557736,-1.7780823,-1.3611169,-1.3461925,-1.6798306,-1.6022787,-1.6728809,-1.7936106,-1.9014246,-1.958741,-2.015051,-2.103012,-2.1997194,-2.2629418,-2.2882586,-1.7096517,-1.5295563,-1.7568375,-1.9251609,-1.9179536,-1.1217196
+2.2233524,4.0038853,4.2568526,4.231249,4.1923647,4.190688,4.274246,4.2345924,4.220627,4.143588,4.238251,4.264436,4.2733326,4.227949,4.15597,3.9646995,3.7479248,3.861419,3.3578074,2.8062572,1.9734926,2.241686,2.2393293,2.2207952,2.2586746,2.3200152,2.1822557,2.1445508,2.0158288,1.742039,1.4535621,1.173203,0.8052952,0.7579539,0.5189505,0.109590426,-0.13169174,-0.1853372,-0.16900192,-0.22268476,-0.31526852,-0.41174296,-0.2620111,0.34072793,0.26616955,0.2626722,-0.0029440187,-0.22080548,-0.39618587,-0.4971416,-0.5315359,-0.507201,-0.60057944,-0.39579844,-0.13697247,-0.32178828,-0.25014043,0.00028634444,0.33026153,0.36789933,0.27510056,0.18972376,0.32950336,0.21833901,0.31059718,1.0039204,1.1094301,0.4286353,0.29377204,0.028652567,-0.10564673,0.024446,0.070247635,-0.16250941,-0.19319464,-0.28541458,-0.30930588,-0.3561192,-0.37356603,-0.22321177,0.27588725,0.18379615,0.0028800704,-0.098036766,-0.24528216,-0.16853751,0.46879977,0.5029986,0.29327,0.04694939,0.66559064,0.53196174,0.12826766,-0.032908257,0.14870098,0.4775254,0.37478858,0.4872772,0.29866803,0.10627915,-0.045012947,-0.16858275,0.5839768,0.3547339,0.44292778,0.3341335,0.06799723,0.18318368,0.7018117,0.2533313,0.03530245,0.11404212,0.24030231,0.087808564,-0.02633005,0.3375137,0.170731,-0.042190384,-0.16144542,-0.18640451,-0.2416798,-0.29325077,-0.31057608,-0.24797039,-0.08390395,-0.21382922,0.14791618,0.08356774,-0.08106348,-0.21220964,-0.31866622,-0.034086015,-0.17221527,-0.22939296,-0.18494143,0.24990384,0.26632082,0.08599618,-0.009309676,-0.10735081,-0.15361089,0.29015875,1.2874293,0.482557,0.4712239,0.29264417,0.423127,0.6737211,0.27598554,0.7527029,0.51407367,0.34511343,0.22678582,0.17358008,-0.002012279,-0.12373854,-0.21951263,-0.24526255,-0.05920663,-0.011512142,0.4036646,0.39151978,0.24964921,0.11801337,0.50291383,0.699646,0.32770437,0.08593845,0.13980466,0.55322146,0.37789655,0.15751089,0.0057896636,-0.1481621,-0.20481549,-0.2659052,-0.27729094,-0.30929762,0.23584597,0.50936353,0.1759775,-0.0032431,-0.13822356,-0.21170305,-0.27493992,-0.3186442,-0.37800416,-0.41619575,-0.37565103,-0.088290796,0.09611122,-0.055633154,-0.13254026,0.11071402,0.5058508,0.22321598,0.07854122,0.18083191,0.31265426,0.3470195,0.4239899,0.2482252,0.1186703,0.019260231,-0.019241523,-0.023798924,-0.07861228,-0.15749742,-0.059446555,0.12997474,0.6691915,1.0089527,0.4679212,0.3411178,0.84012586,0.48758173,0.256608,0.2115948,0.22412874,0.14191157,0.026878025,-0.039152395,-0.041252818,-0.03771944,-0.11443736,-0.118778676,-0.07909989,-0.08043988,6.99237e-06,0.02477445,-0.028781217,0.5480982,1.0539657,1.0557998,1.3883433,1.75995,2.1036034,2.155839,2.2246459,2.2401576,2.2983375,2.4067783,2.6863906,2.703066,2.560658,2.3749213,2.6514463,2.885312,2.9677434,3.238254,3.3816133,3.5629938,3.736485,3.8509684,3.975319,4.0577283,4.1099415,4.1575384,4.1745105,4.158486,4.218512,4.199398,4.19374,4.118617,4.146232,4.1327543,4.077871,4.160078,4.203598,4.2011175,4.1992707,4.2189875,4.1542315,4.223951,4.2357802,4.2140636,4.2054825,4.2405148,4.2639074,4.2377377,4.222239,4.233581,4.235089,4.232729,4.231621,4.195944,4.2204895,4.22758,4.2200174,4.216341,4.107106,4.1552305,4.0894494,4.129382,4.0817204,4.12725,4.1422396,4.132895,4.146098,4.139225,4.1941013,4.20119,4.2134633,4.254485,4.218325,4.1974845,4.234269,4.253582,4.2112722,4.2054796,4.2574167,4.20939,4.2551823,4.245951,4.1959953,4.2354503,4.162342,4.148664,4.139493,4.1009183,4.2412066,4.195321,4.1631804,4.119386,4.1414037,4.190551,4.0909686,4.100178,4.150071,4.248493,4.244266,4.1740227,4.176922,4.146901,4.2264547,4.209627,4.2305894,4.204392,4.1319156,4.1304026,4.136615,4.1190157,4.2069964,4.2288556,4.2357893,4.2059608,4.2001176,4.214697,4.197066,4.176223,4.144492,4.11043,4.1437054,4.127507,4.1774387,4.1833963,4.1223283,4.1452456,4.2081914,4.120789,4.1468153,4.1133933,4.1999264,4.094216,4.0831366
+0.16925977,0.36158192,1.6376495,2.6902773,3.224216,3.2010436,3.3792276,3.5717363,3.7225637,3.4619248,3.4755592,3.3249907,3.3406804,3.0880628,1.854711,0.1706612,-0.86800724,-1.6242626,-1.6913311,-1.6643484,-1.7329234,-1.5308964,-1.5699068,-1.6545987,-1.0027153,-0.84561074,-0.9228375,-0.980876,-1.3504773,-1.4893804,-1.6382663,-1.6921146,-1.7332923,-1.0290334,-1.2037351,-1.4684272,-1.6250858,-1.594307,-1.5206413,-1.5453899,-1.7693416,-1.7278664,-1.6180085,-1.5221021,-1.3712511,-1.4107344,-1.5009307,-1.5052022,-1.6369756,-1.8157827,-1.9124113,-1.9443703,-1.9955547,-2.076993,-1.4694695,-1.333778,-1.5764017,-1.7074895,-1.7253768,-1.7867354,-1.8511031,-1.826235,-1.6486844,-1.8132792,-1.8912475,-1.3924229,-1.3136427,-1.5414143,-1.5835295,-1.6656508,-1.699409,-1.2052164,-1.4727058,-1.6835706,-1.7223554,-1.3394115,-0.9960034,-1.4239502,-1.6276755,-1.7393584,-1.8328702,-1.8574641,-1.832924,-1.8533503,-1.9086238,-1.9907067,-1.8729179,-1.7219782,-1.8206799,-1.8311465,-1.933284,-1.3612306,-1.4845728,-1.6984121,-1.7976224,-1.871182,-1.9413354,-1.82858,-1.157192,-1.3193982,-1.5121675,-1.6826351,-1.6152174,-1.6174951,-1.7710029,-1.6252499,-1.6423337,-1.5465157,-1.4242508,-1.6524091,-1.768927,-1.593637,-1.5384455,-1.7062998,-1.839425,-1.7971648,-1.8539417,-1.8986608,-1.9348227,-1.9108522,-1.9818871,-1.9699752,-1.9890964,-2.069384,-2.13302,-2.182128,-2.2027206,-2.1782541,-2.2034185,-2.2384458,-2.2685697,-2.29459,-2.347007,-2.2060544,-1.4122823,-1.4172057,-1.6940535,-1.7603338,-1.4039425,-1.4571078,-1.2538208,-1.072777,-1.2041034,-1.4808238,-1.6136768,-1.658423,-1.6732922,-1.7653121,-1.7102643,-1.4724947,-1.6733177,-1.6425264,-1.5782573,-1.7269008,-1.7880841,-1.8385999,-1.9051776,-1.973263,-1.7413709,-1.4972713,-1.1123087,-1.4764813,-1.3318689,-1.1938566,-1.5798069,-1.5922382,-1.565249,-1.7119327,-1.7873056,-1.6859913,-1.6350062,-1.6535728,-1.6025656,-1.7449293,-1.7845238,-1.3759392,-1.5210645,-1.6541207,-1.374494,-1.1190593,-1.3945373,-1.5674497,-1.6287346,-1.5400398,-1.2948431,-1.5276248,-1.6631233,-1.5902872,-1.3819991,-1.5870055,-1.6466134,-1.7171247,-1.7196522,-1.7807469,-1.4710386,-1.2038205,-1.4941646,-1.6847926,-1.327657,-1.3352962,-1.5256288,-1.6443753,-1.6840049,-1.7136552,-1.6780306,-1.7251707,-1.7142224,-1.6816132,-1.4253638,-1.0885669,-1.2739221,-1.5560406,-1.6414486,-1.6291568,-1.7266854,-1.7712603,-1.7707119,-1.7650046,-1.7784649,-1.7831552,-1.8175924,-1.6812074,-1.6569903,-1.7301542,-1.7673869,-1.5682038,-1.612103,-1.7458165,-1.7832884,-1.720891,-1.694289,-1.7939858,-1.419272,-1.2381477,-1.0544124,-0.45540863,0.21032058,0.6099624,0.31285658,-0.2653063,-0.27302223,-0.050229546,-0.80202615,-1.4274869,-1.3422799,-1.4154496,-1.4249613,-1.1686826,-0.84516084,-0.37383422,0.17507337,0.9936273,1.7945495,2.4601445,2.9421911,3.0230398,3.1936274,3.2844546,3.3876872,3.5109243,3.5495155,3.606636,3.5538566,3.4515674,3.3643057,3.3895767,3.3969393,3.3210852,3.478661,3.322352,3.41055,3.4751723,3.4025772,3.3470554,3.360844,3.4911735,3.5410028,3.525887,3.4029233,3.5945458,3.628712,3.6443858,3.689643,3.628953,3.5729382,3.509288,3.537849,3.6435354,3.6193974,3.596483,3.551767,3.4975204,3.5315335,3.495767,3.5416088,3.4544172,3.2982488,3.226849,2.958345,2.974503,2.8988972,3.0721087,3.2764518,3.4973505,3.580882,3.5120227,3.4155984,3.501798,3.5373266,3.5118272,3.526791,3.5902627,3.4551556,3.5306373,3.5726488,3.5648856,3.4965339,3.4058256,3.512074,3.4825032,3.4794712,3.628364,3.590712,3.4105048,3.3342462,3.3506205,3.0245311,1.4761654,-0.021361332,0.5446292,1.1173284,2.134594,2.555993,2.6623454,2.6487002,3.221303,3.4427722,3.5906477,3.5416362,3.4013228,1.9655242,0.7284902,0.92407334,1.7747338,2.3990812,2.6881318,2.8344927,3.1249452,3.217927,3.2301037,3.2716699,3.2900376,3.1019354,2.1331663,1.3618094,1.8095394,1.9472015,2.0293145,2.2227907,2.6626763,2.2920835,1.1371678,0.60569745,0.670347,0.77586824
+0.4782803,0.9389032,0.8078928,0.7015494,0.7823194,1.3659853,1.494811,1.5599487,1.6842357,1.9440831,2.2965715,1.6624235,1.1876738,0.6908716,0.28857455,0.16890688,0.05435576,-0.06176967,-0.083520725,-0.15102202,0.026681665,0.11446838,-0.009532589,-0.07111657,-0.09193627,0.97665167,0.74267733,0.56040686,0.55787194,0.49549,0.80498075,0.7706777,0.44668028,0.9398784,1.0135672,0.573271,0.43180573,0.27399045,0.18719004,0.33694103,0.7553267,1.0770718,0.7808482,1.1560979,0.79940194,0.5140429,0.5491891,0.41768342,0.23643781,0.11099796,0.0278184,-0.051267214,-0.12251359,-0.20067401,-0.214927,0.059288707,0.11694099,0.084621534,0.122760326,-0.009760305,-0.11054219,-0.12860674,-0.12386586,-0.24885817,-0.3168274,0.17243055,0.14317243,-0.089265466,-0.19271672,-0.29252997,-0.32613435,-0.39771366,-0.41195494,-0.4869014,-0.51686686,-0.41145375,0.09665011,0.14408328,-0.111534074,-0.2303708,-0.25261915,-0.29702222,-0.4152947,-0.49416828,-0.52145797,-0.57015646,-0.61362135,-0.6041158,-0.74426544,-0.7204754,-0.75636816,-0.22805177,-0.043543827,-0.1961692,-0.3382724,-0.39923805,-0.5594576,-0.53016907,0.3651561,0.3784828,0.12386376,-0.04405816,0.20276357,0.464656,0.2513631,-0.03838173,-0.10478252,-0.24485067,-0.34673268,-0.44572276,-0.51937664,-0.35828635,-0.1795655,-0.35649878,-0.063560195,0.3987115,0.011954505,0.056697648,-0.100310415,-0.20048952,0.043841783,0.1839384,-0.053143512,-0.2132607,-0.33205166,-0.446227,-0.5853833,-0.6652079,-0.74505186,-0.81791073,-0.8920504,-0.92757154,-1.0038747,-0.55962765,0.58867306,0.26479357,0.07002041,1.5554677,0.95199656,0.56170046,0.35876802,0.7424041,0.78039056,0.45853433,0.27944303,0.14047068,0.16596322,0.031141598,0.5245758,0.6333164,0.27306673,0.17614917,0.123741254,-0.06760051,-0.14714722,-0.22599496,-0.3074475,-0.3881113,-0.4575013,-0.42718896,0.35366464,0.19252734,0.065200225,-0.027410802,-0.17827132,-0.28388223,-0.37651733,-0.42388204,-0.49499443,-0.018048968,0.1651112,-0.10001516,-0.24042659,-0.042445283,0.083435506,-0.10636078,-0.22681674,-0.2887364,-0.18189666,-0.13104442,-0.15010904,0.27720928,0.90199435,0.9378216,0.879709,0.48981452,0.29506084,0.39520586,0.41854995,0.5826643,0.4435532,0.18475252,0.06815912,-0.03477707,0.10391213,0.35944152,0.121579364,-0.019747224,0.54788893,0.49125034,0.21877722,0.046377774,-0.018900352,-0.11547504,-0.18078141,-0.22824347,-0.29732412,-0.31474996,0.26694018,1.0074581,0.56851643,0.24723874,0.12659563,0.06922212,-0.024332553,0.441001,0.82492864,0.44733787,0.23495309,0.106635794,0.046332043,-0.03427405,-0.12404764,-0.14842664,-0.2138973,-0.15223026,-0.0853173,-0.08669245,-0.13556421,-0.18709834,-0.19026597,-0.21279198,0.22818603,0.058377538,0.011898119,0.16437851,0.5348252,0.98416173,0.7819916,0.54949844,0.47751868,0.58222014,0.93392646,0.6926944,0.48606014,0.368974,0.31457427,0.3712312,0.5762047,0.6285329,0.6756295,0.71298873,0.7782787,0.9249516,1.2701991,1.514818,1.7197659,1.9789863,2.0898113,2.2604918,2.413697,2.5343235,2.7910237,2.9065537,2.996759,3.087592,3.327678,3.4947388,3.7184024,3.8519912,3.8272576,3.9194512,3.93191,3.9531486,4.0041275,4.0009937,4.0725193,4.2817025,4.1176047,4.0968356,4.076284,4.0297565,4.017687,4.040454,4.1607227,4.235957,4.333353,4.2735586,4.2653713,4.190037,4.2115827,4.311082,4.3338647,4.2392454,4.330927,4.210493,3.621225,2.91,2.292746,1.3468573,1.0005531,0.6847141,0.6673505,0.78474903,1.0051312,1.2489954,1.3809814,1.561341,1.7463892,1.9215121,1.9959002,2.1620152,2.4887807,2.6709232,2.9184256,3.0782018,3.2470913,3.6022844,3.6877162,3.784947,3.8043582,3.8515925,3.837461,3.5529506,2.1938248,1.0550096,0.6170594,0.4813714,0.3373412,0.8084574,0.90302336,0.6336037,0.68175495,0.693555,1.3208195,0.9681256,0.91938573,1.2863643,1.6149874,1.7026696,0.9853864,0.4778545,0.27891713,0.3372184,0.5698288,0.7665162,1.0530076,1.3197691,1.4506288,1.4812579,1.491539,1.6645979,1.4918326,0.9675375,0.40998128,0.23227935,0.45695287,0.639856,0.6586511,0.9177596,0.5874531,0.37718964,0.25034964,0.82811856,1.0209001
+1.1166837,1.1042373,0.86309665,0.64057195,0.3957904,0.6086217,1.2171385,0.9754238,1.046323,1.3321044,1.7069297,0.9954252,0.6666604,0.5036986,0.34134442,0.20556253,0.09075923,0.01892579,-0.0060852207,-0.06607558,0.03548978,1.1956295,0.7603488,0.4680556,0.34442922,1.0262033,0.76913977,0.77836484,0.89312184,0.9839444,1.3970189,1.2451696,1.073357,0.9322644,0.90362585,0.65393686,0.5268507,0.38149744,0.24113093,0.5681497,1.0789111,0.930819,0.98985946,1.0671163,0.8820844,0.6316019,0.55461776,0.5371876,0.36669803,0.24242051,0.18719731,0.17407005,0.086868465,0.060819995,0.053098682,0.06554097,0.052525412,0.038292635,-0.027330521,-0.05725229,-0.06519355,-0.09855457,-0.111629575,-0.11827475,0.1941274,1.1194892,0.5953188,0.37572116,0.3341936,0.21341486,0.2525534,0.17960264,0.19423412,0.108652994,0.05119886,0.33001584,0.8696103,0.5577793,0.3441556,0.27934095,0.2004481,0.3139763,0.115376174,1.241884,0.82712084,0.553782,0.7504836,0.895977,0.5481227,0.5193753,0.38655522,0.5568357,0.40935105,0.3181532,0.24679764,0.243861,0.14114936,0.16714951,0.75764084,0.73333764,0.4649803,0.31127226,0.26684374,0.4985919,0.8164903,0.43641156,0.40325716,0.27205116,0.65240765,0.52339065,0.3423169,0.39452702,0.48201865,0.35420913,0.53013796,1.0703993,0.58046025,0.455202,0.33698305,0.4269875,1.070291,0.9480639,0.58368075,0.45757863,0.35889965,0.27852604,0.2383066,0.21232598,0.1092145,0.02776647,-0.06171755,0.13132061,0.092149764,0.17669187,0.84000254,1.0825917,0.7891984,1.5719332,1.2142937,0.8761165,0.7112794,0.6762575,0.6649498,0.520736,0.40337372,0.41276038,0.6058321,0.4831226,0.5557431,0.681126,0.46812075,0.46875608,0.97566843,0.5565792,0.41632333,0.3085309,0.20559737,0.11010398,0.042121146,0.004570324,0.08257514,0.10518916,1.0267622,0.77624106,0.47626263,0.33078745,0.27657947,0.18388478,0.097078815,0.46501145,0.657359,0.3518477,0.23458008,0.14632978,0.065515,-0.0119606,-0.052253474,-0.11721985,0.115770206,0.15529649,0.109036505,1.1178386,1.1566043,1.1441276,0.79906785,0.58031905,0.47182238,0.29784453,0.17135428,0.047520358,-0.035406407,-0.06308536,-0.10501768,-0.13236739,-0.06252231,0.30785012,0.09892018,-0.007386271,0.45105797,0.57027256,0.27552995,0.1758548,1.0788729,1.0795652,0.6419414,0.4967239,0.38856256,0.3801638,0.5326188,1.1837628,0.7549981,0.5160531,0.6291224,0.56152976,0.4308952,0.314631,0.8331429,0.7509476,0.52234197,0.41823602,0.33324295,0.28593296,0.20190597,0.15592669,0.11315438,0.15659699,0.26068193,0.27732682,0.18734771,0.1293989,0.082775146,0.03893004,0.40511,0.21741848,0.2881428,0.52635926,0.8750799,1.3221629,0.85166204,0.64936763,0.61298263,0.86196613,1.1796882,0.8767032,0.6408075,0.50315124,0.44468856,0.51097107,0.7342237,0.8290334,1.0440738,1.1407893,1.3122928,1.4937785,1.958159,2.483222,2.7302272,3.075027,3.3201075,3.552575,3.6218748,3.7489977,3.8456206,3.8216796,3.8181314,3.809709,3.9133413,4.0278873,4.0094175,4.224556,4.01701,4.0293193,4.1595535,4.191261,4.1435766,4.117854,4.1521597,4.084094,3.655929,3.8464737,4.0002146,4.005374,3.9931173,4.0254703,4.1553993,4.3266296,4.1614933,3.56184,3.6685867,3.6101546,3.7407227,3.7838473,2.5602694,1.9357252,1.7280362,1.1056147,0.881747,0.8636283,0.98900366,0.89045006,0.6607677,0.5388425,0.6235045,0.7736195,1.0185633,1.3655784,1.5349255,1.6351781,1.8255045,1.9988022,2.1144097,2.1384854,2.9412591,2.001516,1.6964757,2.166778,2.3701584,2.2879677,2.1004338,2.2255225,2.027251,1.8856771,1.7444359,0.9360648,0.5697919,0.46431318,0.3906346,0.4007358,0.33218184,0.49750942,0.9427439,0.68486935,0.73851895,0.7369467,1.6818144,0.91127443,0.8244726,1.1431055,1.4748566,1.0727856,0.72434676,0.48978537,0.3484716,0.28454053,0.4335569,0.61014885,0.85458076,1.2828255,1.4285902,1.5212545,1.5074844,1.7745216,1.4994302,1.0139422,0.71032274,0.5021056,0.5859833,0.79311407,0.5975673,0.69366807,1.0702504,0.79962397,0.5497808,1.4056008,1.4252858
+1.3969854,1.4499698,1.4522458,1.2650759,1.0893986,1.1631722,1.8787304,1.7680063,1.6364836,1.5277138,2.296445,1.8769944,1.540648,1.3351576,1.1648781,1.0195346,0.8829029,0.79501915,0.7166147,0.6991261,0.8677647,1.17279,1.0554936,0.9737911,0.9247211,0.87700593,0.8750229,1.4856985,1.3821707,1.5061591,1.7268716,1.8166294,1.5686479,1.4473834,1.3620121,1.2485914,1.1419481,1.0730612,1.1338062,1.535231,1.3293241,1.2974249,1.8438367,1.6932575,1.5638974,1.3867533,1.2129163,1.4966638,1.2506044,1.0858157,1.4172001,1.2512666,1.1372373,1.078467,0.9596299,0.98986816,0.9144696,1.211148,1.3921177,1.1069901,0.8973757,0.88498163,0.83466053,0.7353194,0.72025084,1.2692137,0.9401015,0.7750696,0.7795477,0.61886156,1.2752895,1.1887809,0.91916996,0.8159516,0.6399276,1.4135813,1.4358118,1.1548114,0.96442515,0.8808843,0.8044443,0.99913883,0.9046266,1.5595446,1.2336252,0.9375788,0.8265156,1.2022105,0.9959383,0.91887057,0.7871812,0.89183104,0.6652198,0.5972628,0.920725,1.0153341,0.833676,0.8276832,0.7122997,0.5551884,0.571511,0.49680817,0.49370247,0.60243094,1.2603127,1.0672045,0.88776326,0.7823619,1.4872122,1.3142774,0.9503611,0.95966667,1.0729764,0.9082402,0.74890304,0.63199854,0.42784485,0.38195002,0.17927213,0.37540877,0.54908407,0.35612285,0.15825205,-0.0043393783,-0.1752405,-0.3223056,-0.3926404,-0.5035204,-0.6160028,-0.81533384,-0.92492586,0.098763734,0.5676174,0.22152488,0.620832,1.411706,1.7298732,1.9061011,1.612769,1.1803505,1.2482963,1.5229657,1.4420955,1.11656,0.91313255,0.86025923,1.6813631,1.3354661,1.2775829,1.2695236,1.245549,0.9659256,1.5039862,1.2549192,0.96627533,0.79615945,0.6315742,0.547145,0.442406,0.3661826,0.39798266,0.72021616,1.1108432,0.9194821,0.6068274,0.46538508,0.31250313,0.22276379,0.19583954,1.0042875,1.0588897,0.6221343,0.43330306,0.26465428,0.14136176,0.025827754,-0.09039861,-0.1574415,0.28690624,0.4520641,0.7811061,1.1234171,1.1291953,1.1546526,1.0919275,0.76718307,0.56116694,0.38554057,0.30247453,0.16899903,0.029141549,-0.016911056,-0.090383455,-0.1813294,-0.21050231,-0.100441724,-0.18565172,-0.24887305,-0.20946638,-0.17463104,-0.28986144,-0.3167521,1.429969,1.7276033,1.0466384,0.8138294,0.5977802,0.5317714,0.5100518,0.6123055,0.47173762,0.38319457,0.2106022,0.15134545,0.13493542,0.0013244562,-0.14138341,-0.20984961,-0.22251938,-0.2691862,-0.3102094,-0.120492905,-0.071602836,-0.12241252,-0.21037613,-0.2057694,-0.14333645,-0.08785367,-0.13053705,-0.20107348,-0.1906103,-0.17588831,0.46347374,0.43100935,0.34432435,0.4026897,0.68021226,1.1057744,0.88881266,0.8315648,0.79557335,1.099642,1.5419604,1.2231395,1.0289319,0.869571,0.7941113,0.8083787,1.1552653,1.3199232,1.3463805,1.3332318,1.4268676,1.5323536,1.7630327,2.0744882,2.2363734,2.4370759,2.6730428,2.6776977,3.0105195,3.4489756,3.5087805,3.4134507,3.2731876,3.30977,3.441607,3.8041773,3.5558486,3.278537,2.4404893,2.0479333,2.1583776,2.050375,2.0150056,1.9209557,1.958086,2.136195,1.8598744,2.0102642,2.3256037,2.5249097,2.6582353,2.7252574,2.9390445,2.9567857,2.87783,1.9823487,1.8657115,1.7861097,1.8816777,2.2025034,1.6563175,1.4319588,2.1848264,1.7455789,1.4024684,1.4667466,1.4224811,1.3376863,1.2691908,1.2187316,1.1722877,1.2173167,1.2302604,1.2465229,1.1541587,1.0951056,1.1534457,1.3086113,1.3957477,1.1503775,1.5921544,1.5826166,1.3972981,1.6452062,1.6574461,1.587075,1.3306394,1.3611912,1.2762009,1.2871246,1.2397794,1.0538406,0.91856563,0.7986115,0.7984131,0.77016425,0.7155342,0.9611189,1.4315706,1.2121861,1.1219716,1.1429634,1.9588447,1.5352511,1.3966664,1.342209,1.3983912,1.5930743,1.9878459,1.5545391,1.2372401,1.1771517,1.1522295,1.2170123,1.1849644,1.2566702,1.2374195,1.2407811,1.2124933,1.2170732,1.0607932,1.893599,1.9928823,1.5097761,1.4731555,1.3076546,1.0441855,1.3397636,1.5129623,1.7400198,1.4399583,1.6704723,1.8773154
+2.3159194,1.9979393,1.9672132,1.8590298,1.7928982,1.7508271,1.9743326,2.0275693,1.9241697,1.8509634,2.5968719,2.6359253,2.2536707,2.049602,1.9091842,1.7633835,1.6266053,1.5356507,1.456324,1.3949809,1.468472,1.8922254,1.8510964,1.6741627,1.593112,1.813177,2.687844,2.8228567,2.3660812,2.4327784,2.7659185,2.430613,2.2648501,2.2862518,2.1361008,2.0101337,1.9308732,2.1663136,2.2520163,2.5392125,2.6639326,2.5041487,2.517386,2.4176917,2.2145362,2.0906036,2.1860058,2.5063586,2.1933627,2.383068,2.3732462,2.1828878,2.0561955,1.9586642,1.8849835,1.9913905,2.0292416,1.9296365,1.8487542,1.7600979,1.6609036,1.6319748,1.6683018,1.6579506,1.8215466,2.060772,1.8715048,1.775279,1.6907966,1.5974876,1.7100288,1.8344562,1.7290621,1.6111201,1.5151327,1.6526676,2.123366,1.898998,1.7104397,1.6365478,1.6023357,1.5561756,1.8301746,2.3686295,2.05899,1.8567116,1.7283022,1.6646734,1.5807105,1.5385709,1.4784099,1.4789217,1.4252088,1.6558225,2.593705,2.450525,2.1367092,1.9892321,2.1070976,2.0755744,1.9289519,1.8092371,1.8215022,1.8430891,1.9384408,2.0605392,1.8798475,1.7617928,1.816914,1.8453951,1.654944,1.5976661,1.5534022,1.5000575,1.4425478,1.4030678,1.5140848,1.6522505,2.3806024,2.3299336,2.380846,2.114503,2.232912,2.2574406,1.9980268,1.8724779,1.7640536,1.672353,1.5893898,1.4434247,1.5806518,1.7673889,1.6170933,1.5331942,1.5412565,1.5725077,2.2813606,2.441366,2.7307982,2.3538888,2.0937145,2.135695,2.4560719,2.1309152,1.9517477,1.8510399,1.7837592,1.6853588,1.6518674,1.7969918,2.3380637,2.002658,1.7944341,1.7052851,1.5478511,1.4470059,1.3356348,1.3193138,1.3014519,1.2749724,1.2770367,1.4384596,1.9393595,1.8381698,1.5723643,1.4735439,1.4130487,1.3328395,1.3207445,1.3851255,1.4205678,1.2835071,1.1796949,1.0287694,0.9360782,0.87559295,0.81422746,0.7436752,0.95110285,1.2838035,1.6433544,1.9237052,1.914309,1.8205948,1.5925863,1.4701688,1.3269804,1.2183138,1.123805,1.0261874,1.0019183,0.9432682,0.8496197,0.783207,0.78909695,0.851606,0.77417886,0.7225254,0.73368907,0.747398,0.747296,0.79586315,1.9504368,2.4366126,1.9038087,1.7741129,1.6109802,1.4847231,1.4253206,1.3801837,1.3191006,1.2864628,1.2590003,1.2139769,1.1367557,1.0565407,1.066572,1.0398556,0.9593682,0.8676096,0.8192896,0.8446631,1.3210776,1.284761,1.1902382,1.1040261,1.1163752,1.1149251,1.0792841,1.0465183,0.98935723,0.97438395,1.4544446,1.5050335,1.478924,1.5401553,1.5452394,1.8118541,1.658267,1.6011302,1.5522537,1.908225,2.3834105,2.1863518,1.9401684,1.797687,1.749656,1.7101629,1.8331962,2.3934221,2.257298,2.0999365,2.0685651,2.1284215,2.2673612,2.6055567,2.356426,2.2467546,2.2726178,2.455605,3.219017,3.7290888,2.8170552,2.8002217,3.0299468,3.22549,3.3522215,3.4480267,2.5424037,2.3648922,2.5504677,2.26293,2.3205917,2.1170564,2.1209455,2.25799,2.147122,2.4852529,2.4133322,2.2246914,2.318521,2.5297031,2.6676497,2.8259683,3.3366466,3.3363674,2.6667013,2.4534822,2.716662,2.5887537,2.478838,2.6885865,2.3304977,2.213141,2.6284285,2.3448682,2.174458,2.260046,2.2010412,2.0514379,1.9719958,1.9386413,1.8844908,1.8887997,1.8115342,1.8620099,1.8606741,1.7594582,1.796663,1.8735682,2.2140484,2.0542743,2.381113,2.291097,2.1274507,2.0847595,2.2184079,2.224362,2.0029712,1.9856911,1.89376,1.8465943,1.879156,1.8383384,1.9568241,1.8091493,1.7882785,2.0941346,2.0394812,1.8947861,2.2034054,1.971806,2.0601075,2.6977549,3.2168918,2.4200041,2.1240768,2.1317778,2.1530194,2.0525482,2.5120804,2.278213,2.0919023,2.0305247,1.835599,1.8346889,1.9219128,1.9230236,1.7767949,1.7824383,1.9846973,2.0982647,1.937197,2.1516714,2.2809834,1.9791975,1.8713839,1.856277,1.7358506,2.2268708,2.3741705,2.3603816,2.2245073,2.0975618,2.6047597
+1.8019037,1.3958863,1.4397967,1.3105608,1.2695069,1.2834986,1.8803139,1.6345296,1.4995975,1.325032,1.3307157,1.4774172,1.2773151,1.1888273,1.0788172,0.965549,0.88470757,0.8105236,0.729969,0.6863953,0.66612005,1.059959,1.082912,0.95672715,0.9260672,0.88083404,1.6800432,2.376484,1.648581,1.7058781,2.1872544,2.212103,1.8180089,1.8925571,1.7742069,1.5631049,1.6227899,1.549989,1.4000288,1.3785079,2.299353,2.3304586,1.9200437,1.6110811,1.528497,1.3460819,1.5797873,1.9080751,1.6440212,2.1882205,1.9605076,1.6513662,1.4965513,1.3801048,1.231632,1.7547889,1.7427553,1.456076,1.310137,1.2028537,1.0709167,1.079499,1.2109591,1.2733437,1.3123893,1.797267,1.4609544,1.3143411,1.2064192,1.1011192,0.99962354,0.9335524,0.8911151,0.8293846,0.8580622,0.9202753,0.941255,0.7865815,0.7583069,0.7281721,0.6925728,0.79686534,1.0888791,1.0692505,1.4673162,1.1506233,1.0068448,1.20912,1.0992045,0.946859,0.8765209,0.7651402,0.7242818,0.67424595,2.070785,1.969502,1.6664097,2.2917056,2.1929154,1.6779125,1.4685327,1.283444,1.3645024,1.4114707,1.3370962,1.3301418,1.1116381,1.0328634,0.9905995,0.9203807,0.81230223,0.7390313,0.71246684,1.1890705,1.0661507,1.1325066,1.415125,1.3969113,2.3392684,2.0294003,1.6692055,1.5661874,1.598291,2.1597311,1.5720042,1.6516016,1.5344204,1.4444945,1.4978018,1.2596271,1.1577896,1.1797283,1.0860734,0.9654386,0.9017721,0.8840564,0.9134528,0.9636588,1.2815318,1.2504077,1.1671284,1.3437512,2.0358148,1.4529881,1.1735153,1.0377135,0.95179844,0.8620225,0.7428212,1.1478474,1.329173,1.0114379,0.8404223,0.71466947,0.6175109,0.5343713,0.45836455,0.40788114,0.34381354,0.27307272,0.27302793,0.21614723,0.3483491,0.50706124,0.40984038,0.2838419,0.19248359,0.11358033,0.07118717,0.28899753,1.5299988,1.0813398,0.8269745,0.67431295,0.5573182,0.47724652,0.39768088,0.3359627,0.26368666,0.24551798,0.36732608,0.7003672,0.75448,0.6396175,0.57233405,0.48720127,0.3952551,0.28060755,0.18042178,0.10614902,0.028694723,-0.037264924,-0.056060072,-0.06525524,-0.095246434,-0.11092083,-0.13404836,-0.1348422,-0.15623635,-0.16328405,-0.17688219,-0.19085672,0.07011992,1.3070378,0.9662981,0.77798074,0.6311386,0.53624797,0.4837848,0.44979113,0.35920265,0.3016525,0.24829198,0.2102496,0.13702731,0.06394425,0.05374511,0.047755387,0.010874074,-0.072814,-0.098137334,-0.092709646,0.15843524,0.19152637,0.1685568,0.071916476,0.09330408,0.091033906,0.07414515,0.05671547,0.0015794225,-0.052997638,0.23023872,0.37559676,0.45099443,0.45738167,0.28505617,0.5712158,0.57795376,0.5394811,0.55865383,0.50843585,1.1117831,1.8386953,1.4543302,1.2435403,1.1896819,1.2566414,1.277154,1.7240748,1.472137,1.4001162,1.4393439,1.5678304,1.7641088,2.4548326,1.7679,1.5682683,1.5476356,1.8080697,1.8731883,2.4824438,1.8233819,1.8770046,2.0519845,2.0269399,1.8736246,2.2167811,1.9480603,1.6221118,2.0631638,1.6916926,1.981077,1.6827103,1.7959206,1.8718963,1.6377933,1.8708754,1.7425262,1.5848466,1.6807165,1.9187425,2.1596622,2.382258,2.7644928,2.510038,1.8278513,1.9772041,1.8356924,1.6319823,1.48745,2.0206192,1.6755892,1.5210397,1.9196464,1.552963,1.3848461,1.9322485,1.6847693,1.4775233,1.3900759,1.3288627,1.3125846,1.2501438,1.2558348,1.2450635,1.1595149,1.1350641,1.1371317,1.1950883,1.4468265,1.2279246,1.5263989,1.6029142,1.5301881,1.4664108,1.3889478,1.2166573,1.1474704,1.1334757,1.1811521,1.1433053,1.15769,1.0230978,1.0343227,0.91294664,0.86586976,1.2265882,1.238349,1.1000745,1.7249842,1.4445273,1.3550336,1.4686248,2.0364583,1.7137356,1.5224829,1.4358695,1.3130848,1.1254377,1.5742836,1.6926414,1.4177444,1.5125152,1.3178053,1.3250005,1.3548238,1.4241332,1.3541564,1.4217281,2.1309016,2.3470633,1.7321422,1.5030324,1.3877244,1.2618808,1.1795349,1.1495649,1.0304824,1.5537326,1.7531604,1.7688208,1.4846842,1.3499887,1.7200655
+1.5225803,1.1035907,0.86797166,0.778018,0.68103147,0.65975994,1.2946179,1.0209223,0.79512227,0.698719,0.68086374,0.65108943,0.58570576,0.5358931,0.44831446,0.38573343,0.3377267,0.28891554,0.22526501,0.15543889,0.13394521,0.8976238,0.93127644,0.72945404,0.62613726,0.5291873,0.49095452,0.5969012,0.5498525,0.6940404,1.0984616,1.2633586,1.0383853,0.9503864,1.0031077,0.82262903,0.6771898,0.5823025,0.5055308,0.46924013,0.9215946,1.291146,1.0822763,0.783629,0.6845768,0.59256494,0.5966706,0.57111967,0.5114206,0.6495358,0.74289554,0.6074116,0.5216849,0.4790392,0.40586278,0.4471178,0.49906504,0.4330545,0.35222346,0.28516662,0.24579819,0.32763198,0.42413563,0.46472797,0.58633655,1.5062631,1.1595633,0.8410078,0.72230387,0.64247906,0.5537047,0.4782892,0.39988804,0.3626999,0.3483921,0.32361332,0.3152076,0.28684086,0.23805575,0.17812605,0.18376456,0.1343826,0.16958262,0.15493006,0.80719733,0.7075968,0.5305139,0.76114374,1.0279238,0.6913452,0.5768696,0.47545153,0.4047617,0.5811182,0.53565955,1.0739896,1.0807434,1.2221135,1.2295132,1.0065749,0.79616654,0.6278479,0.71518517,0.72147584,0.63024396,0.56001914,0.56425095,0.60667515,0.54953396,0.4873247,0.41148087,0.3227623,0.2619726,0.64673805,0.6665673,0.4599862,0.35279477,0.35758293,0.7889477,0.95286036,0.80068064,0.803009,0.6430273,0.48703468,0.433699,0.60338634,1.1113688,0.7354473,0.8985015,0.7552541,0.5721946,0.44465014,0.3686117,0.304383,0.24483858,0.16065109,0.121989965,0.14360295,0.41119444,1.0579295,0.9482515,0.8716832,1.1718616,0.930778,0.69057405,0.5633184,0.4624583,0.410663,0.31129074,0.27993545,0.3231151,0.26126504,0.28189573,0.22406738,0.12325616,0.03376488,-0.0032841377,-0.009057805,-0.030042943,-0.06317015,-0.08170186,-0.111376256,-0.13897604,-0.06657043,-0.06975287,-0.15974976,-0.1671892,-0.19799994,-0.2705029,-0.28007337,0.49429214,0.8445982,0.44900656,0.29125962,0.18129776,0.11481649,0.052410264,-0.010812134,-0.041359942,-0.027850367,-0.10773936,-0.14530288,-0.19108002,-0.25641555,-0.3550894,-0.4301409,-0.49438018,-0.51627433,-0.5623422,-0.5971954,-0.6104809,-0.64429516,-0.7018785,-0.7322742,-0.72193265,-0.75554335,-0.74878275,-0.75819343,-0.718211,-0.72073674,-0.7059376,-0.71248305,-0.6732084,-0.16822706,-0.18281434,-0.2709494,-0.32406974,-0.38006854,-0.44073075,-0.45366967,-0.48194492,-0.5193217,-0.53063256,-0.567469,-0.5630096,-0.56572574,-0.600415,-0.65278995,-0.68555963,-0.7379993,-0.7809143,-0.8348154,-0.8895279,-0.8409307,-0.8260544,-0.8334515,-0.8434914,-0.85934114,-0.84869194,-0.87456375,-0.87007093,-0.86068565,-0.5840118,-0.22048612,-0.18768705,-0.21312867,-0.3393008,-0.4494438,-0.4497384,-0.40377787,-0.33378398,-0.36001927,0.36748728,2.250535,1.4191469,1.0690633,0.9845629,1.5529957,1.329619,2.1665637,1.4594309,1.1582055,1.1929855,1.4612687,1.6961309,1.9092591,1.2784624,1.0622885,1.0474946,1.2776306,1.293076,1.6205606,1.2902211,1.3581326,1.362014,1.090611,0.81723505,1.1269946,1.2783911,1.004545,1.355504,1.1013341,1.4746583,1.1007484,1.2136836,1.2851684,1.4773049,1.3850719,1.2052083,1.0044383,1.1167532,1.3210101,1.6766691,1.9040601,2.0225935,1.9109249,1.2616146,1.0729043,0.9480779,0.8936662,0.78342557,0.9067252,1.0216417,0.83707035,1.2199364,1.0948358,1.1886268,1.7072148,1.2551125,1.0265689,1.000495,0.8353319,0.751225,0.7352191,0.7488116,0.675388,0.5960313,0.5478451,0.51010644,0.54685843,0.64225245,0.5752964,0.9404433,0.92368704,1.0539987,0.87611055,0.86310685,0.6763197,0.5725694,0.56217873,0.946925,0.8185388,0.7809818,0.86899173,0.8594418,0.6437757,0.5845523,0.767307,0.78012395,0.63559896,1.1733474,0.94606835,0.8877983,1.3034326,1.6788276,1.2361728,0.9679768,0.9391347,0.8356352,0.6529931,1.1296729,1.183928,0.8759565,1.3063829,1.0687646,1.0274667,1.0339037,1.2720002,1.0230298,1.1523647,1.2171254,1.8026128,1.155931,0.9399184,0.83118176,0.8082154,0.67368495,0.5925945,0.49386185,0.8411222,0.8886133,1.5132328,1.1317874,0.9049907,1.2104254
+0.9217256,0.50146085,0.3138374,0.23605762,0.17399232,0.12796628,0.84279156,0.42411348,0.22212295,0.16841315,0.25323707,0.29361647,0.10330044,0.32491216,0.31883356,0.109616816,-0.008086663,-0.07621692,-0.13976492,-0.20767412,-0.27652287,0.17930792,0.76242477,0.36700928,0.17466784,0.058376748,-0.0346391,-0.08853333,-0.104221895,-0.1321114,0.54629356,0.67426836,0.8036526,0.4675057,0.6132606,0.40074718,0.20437351,0.103335395,0.08325279,0.10418716,0.059304837,0.16361454,0.39933074,0.14428477,0.044731904,-0.0481279,0.057813313,0.16573948,0.06481734,0.05536196,0.36587936,0.13485573,-0.004701238,-0.071550205,-0.13026561,-0.1711968,-0.22863396,-0.23607685,-0.28983295,-0.31487,-0.34312224,-0.2516232,0.23839588,0.24011128,0.03320163,0.64545465,0.61579305,0.2805889,0.13939963,0.032840874,-0.05038443,-0.11604193,-0.16412649,-0.20724367,0.19622806,0.38874292,0.37716088,0.1975414,0.020245645,-0.10123712,-0.15515165,-0.21579333,-0.24097045,-0.2832821,-0.25676674,-0.24806409,-0.3082778,-0.026585322,0.061026577,-0.08511405,-0.22106247,-0.2841306,-0.3733313,-0.42807853,-0.4857531,-0.43794873,0.027207654,0.34454584,0.062874794,-0.02919912,-0.124559924,-0.27986777,-0.29058927,-0.31851584,-0.4054075,-0.43870628,-0.28385296,0.082383305,0.08283737,-0.095599204,-0.23495324,-0.07220392,0.16580571,-0.06833008,-0.16724119,-0.29377732,-0.2025723,-0.24765892,-0.3584978,-0.19048211,-0.24356945,-0.32382166,-0.4029195,-0.3253008,-0.23675601,-0.038089845,0.432774,0.14931367,0.082353756,-0.02997509,-0.11869533,-0.19667785,-0.06373942,-0.052548293,-0.1768923,-0.31126565,-0.38347661,-0.4134533,-0.43311614,-0.28482586,-0.079790995,0.118885696,0.1737227,0.17334886,-0.09311372,-0.20425017,-0.25420442,-0.36052454,-0.17488576,-0.019193683,-0.22785269,-0.36453217,-0.45466453,-0.50584024,-0.49837053,-0.5912175,-0.63671535,-0.69636977,-0.744336,-0.80621463,-0.86456424,-0.9159024,-0.9767523,-0.97036695,-0.8944931,-0.9142006,-0.82533836,-0.9361056,-0.9428191,-0.9634923,0.20386241,0.56782365,0.12504452,-0.037019957,-0.16267738,-0.24654062,-0.34134477,-0.4212193,-0.35649267,-0.15198706,-0.3657645,-0.44591635,-0.5484261,-0.6698117,-0.8089688,-0.86332893,-0.9178258,-0.9398405,-0.9819176,-1.0325935,-1.0291227,-1.11093,-1.1403317,-1.1731607,-1.1769545,-1.2045269,-1.2088671,-1.1781373,-1.1447762,-1.182649,-1.1869488,-1.1913719,-1.1931086,-1.1991026,-1.1446779,-1.2219162,-1.3236477,-1.3204145,-1.3169432,-1.3402616,-1.3305299,-1.3325499,-1.3475857,-1.3668995,-1.2980955,-1.276949,-1.3333793,-1.3322269,-1.3216172,-1.3655479,-1.3621994,-1.342771,-1.4333967,-1.366495,-1.4126192,-1.4124352,-1.39501,-1.4126561,-1.4331396,-1.4668932,-1.474909,-1.474733,-1.3966379,-1.1942339,-1.1219313,-1.1507785,-1.2050215,-1.3097842,-1.3155329,-1.2002325,-1.0530871,-1.080334,0.20712788,1.1792222,0.73245114,0.4756909,0.44045103,1.012328,1.0844404,1.0597985,0.8088205,0.54705644,0.60134166,0.8851471,1.1171907,1.1120522,0.61474776,0.44997853,0.4018734,0.5965549,0.6722611,0.6813284,0.6551971,0.56414723,0.5376421,0.3393529,0.16686864,0.15690012,0.108256266,0.03228337,0.31256187,0.29132524,0.97623193,0.61390066,0.78322875,1.1689597,1.2433566,1.1397904,0.7755624,0.5811285,0.60637045,0.6665886,1.0656216,1.4441954,1.639436,1.337074,0.5761745,0.3210972,0.20608896,0.1455125,0.09470032,0.069269136,0.069262266,0.010735679,0.4851367,1.0852981,1.1991206,1.3754947,0.9506553,0.64746726,0.8691634,0.5818695,0.47824937,0.6040259,0.48879373,0.28061676,0.18484636,0.07942155,0.023524288,0.03918979,0.26572818,0.38322717,0.6757531,0.62936735,0.8679756,0.5976214,0.5638507,0.3295687,0.1993813,0.12709305,0.65045345,0.5103935,0.44551635,0.4840716,0.4331139,0.21669377,0.13421196,0.24465688,0.21362908,0.06734501,0.28598744,0.20682172,0.3224918,0.9078636,1.1590929,0.64591116,0.40207928,0.42357352,0.36546987,0.17431065,0.5216236,0.9197995,0.46914637,0.8581733,0.61395705,0.7527226,0.59270287,1.0142921,0.55477667,0.6972727,0.6720921,0.7246887,0.41943672,0.26440495,0.20059516,0.7614013,0.46718693,0.24631463,0.11567275,0.5169269,0.6699182,1.1510891,0.75929725,0.43904796,0.6536255
+1.5878576,0.9198649,0.30455795,0.103745386,-0.05131116,-0.17161304,0.34627777,0.07156636,-0.11675078,-0.17907713,-0.21033494,0.5848087,0.19983242,0.1618978,0.18438949,0.19471455,0.018685225,-0.14936642,-0.2564858,-0.3822008,-0.48085657,-0.03677116,0.16784436,-0.14228968,-0.29806405,-0.41296482,-0.51213413,-0.3049646,-0.1496228,-0.3107015,-0.27575853,-0.28475344,-0.28082487,-0.38059607,-0.3672299,-0.35784507,-0.45215073,-0.5014173,-0.5334024,-0.4935044,-0.47315353,-0.43306655,-0.17997794,-0.31768364,-0.44597334,-0.5747083,0.004042972,0.26339436,0.45959163,0.10618575,-0.09559502,-0.22751476,-0.36807072,-0.49715889,-0.62027276,-0.7379861,-0.8318751,-0.9067242,-0.94644094,-1.0020598,-1.0588309,-1.116665,-1.0312293,-0.97873497,-1.008521,-0.94006234,-0.7502061,-0.6288108,-0.67236114,-0.8297875,-0.9577792,-1.0662615,-1.0262684,-0.9374058,-1.010017,-0.82362497,-0.7588735,-0.6942796,-0.69176024,-0.8781425,-0.9905311,-1.0767329,-1.1311566,-1.1648344,-1.1958365,-1.2393233,-0.43920538,0.058345575,-0.16420266,-0.23916505,-0.5024388,-0.62871414,-0.7969127,-0.9014821,-0.97343934,-0.43388855,0.23224,0.054988254,-0.282492,-0.41637233,-0.55414563,-0.4272188,-0.12506889,-0.27871844,-0.46178156,-0.66160274,-0.7454037,-0.71869004,-0.89256775,-0.876638,-0.62591606,-0.68223476,-0.70173824,-0.8826568,-1.0101547,-1.0394324,-0.9795675,-1.0913723,-1.1534923,-1.2056248,-0.88549316,0.24397255,0.1399721,0.10934451,-0.10227671,-0.13017826,-0.018564727,-0.014598172,-0.11768961,-0.30978858,-0.33897698,-0.16618912,-0.101171836,-0.3309161,-0.4524037,-0.58113676,-0.7065668,-0.72544086,-0.5299941,-0.338279,0.017053265,0.00575665,0.022047374,-0.03581288,-0.36583298,-0.45977235,0.3100758,0.15183415,-0.24761376,-0.42996618,-0.566667,-0.67122805,-0.74742305,-0.85780007,-0.90390754,-0.90554965,-0.9553863,-1.056114,-1.1022432,-1.1459404,-1.1962154,-1.2452004,-1.3025959,-1.3144567,-1.2173805,-1.1619444,-1.2464274,-1.3059423,-1.3416569,-1.3388007,-0.3245035,1.1023866,0.1841228,-0.093343675,-0.27449703,-0.4026727,-0.5395253,-0.66440994,-0.7407078,-0.809316,-0.8316797,-0.8289755,-0.9194406,-0.9972747,-1.0802181,-1.1455045,-1.2181395,-1.2464622,-1.274518,-1.280901,-1.2780308,-1.2836103,-1.3290951,-1.3571564,-1.3769376,-1.3837886,-1.4021957,-1.399518,-1.4072067,-1.2217052,-1.3263683,-1.3226471,-1.3548627,-1.3408475,-1.3373616,-1.3799989,-1.4360952,-1.4610808,-1.4790518,-1.5087787,-1.4879882,-1.4965453,-1.5083771,-1.5048599,-1.5338029,-1.5176014,-1.5471165,-1.510468,-1.5463158,-1.5743625,-1.6008089,-1.5711141,-1.5764796,-1.5337029,-1.5355103,-1.5877771,-1.6057122,-1.5727416,-1.5829314,-1.5818379,-1.5948089,-1.6128273,-1.5486808,-1.393445,-1.4108796,-1.4581895,-1.4741384,-1.5808804,-1.5763335,-1.5014805,-1.4283714,-1.5283424,0.68553936,1.1235154,0.3880989,0.14706887,0.15941349,0.8602339,1.1584158,1.108069,0.50334615,0.20939972,0.24736218,0.41779828,0.516963,0.26992282,0.42101842,0.5926759,0.22604342,0.24441357,0.29112265,0.15657118,0.7464497,0.31308842,0.21862163,0.05292428,-0.07799503,-0.10806702,-0.18749309,-0.16754343,-0.22477661,-0.27581117,0.13171704,0.11932467,0.23108362,1.0117936,1.3874236,1.4814432,0.5336844,0.32443872,0.66075224,0.7749514,0.7613061,1.0473132,1.2552524,0.72577995,0.055521566,-0.106400326,-0.19826135,-0.26837292,-0.31243902,-0.36277625,-0.35377336,-0.36149645,-0.061640006,1.0876861,1.099754,0.8187547,0.26878434,0.11120802,0.49076325,0.25007874,0.26792496,0.33018982,0.1658614,-0.06347956,-0.23468289,-0.31764635,-0.105316475,-0.13179143,0.12463881,0.05284776,0.6312941,0.641945,0.54059255,0.25513396,0.20333244,-0.035839614,-0.1196987,-0.1896936,0.50226545,0.257779,0.1353482,0.050869156,-0.07090382,-0.23080745,-0.1502791,0.7908591,0.3919235,0.05773558,-0.021946352,-0.089309916,0.038326148,0.09753321,-0.16298218,0.30481702,0.10536873,0.04908136,0.012968082,-0.12094252,-0.26237017,0.4244368,0.09904322,0.019800622,-0.10738814,0.48945475,0.2493151,0.5470334,0.103661895,0.13227503,0.14788324,0.13232343,-0.026707184,-0.16396864,-0.34979916,-0.446707,-0.5443113,-0.598176,-0.6747215,-0.4303308,-0.30120385,0.10994752,0.036067132,-0.25481528,-0.034163322
+1.197861,0.9730911,-0.35513777,-0.7079526,-0.8957206,-1.0242491,-0.50548303,-0.6925391,-0.95034075,-1.1288255,-1.2074103,-0.82931423,-0.72181344,-0.17742763,0.018951852,-0.45857054,-0.7557944,-0.9638225,-1.0880755,-1.2136431,-1.2929308,-0.58008593,-0.4234742,-0.8275865,-1.0363971,-1.1832969,-1.3057413,-1.111944,-0.97351825,-1.2190895,-1.3537058,-1.4076953,-1.3455445,-1.2913944,-1.3509712,-1.515806,-1.6258994,-1.6975552,-1.7511193,-1.7616327,-1.8568305,-1.9361918,-1.9622453,-2.013024,-2.0711873,-2.133955,-1.9543276,-0.5600962,0.3179404,-0.047154557,-0.35317332,-0.6148829,-0.89167404,-1.0710062,-1.2131591,-1.3509513,-1.5141393,-1.6232105,-1.6961188,-1.758227,-1.838235,-1.4889648,-1.119026,-1.3479161,-1.534769,-1.6107202,-1.167709,-0.5747232,-0.99822056,-1.214723,-1.3522208,-1.4962981,-1.6001804,-1.6555381,-1.7299085,-1.3840501,-0.9178363,-0.87740886,-0.7262907,-0.7979961,-1.0906897,-1.2839003,-1.4115955,-1.5453714,-1.6571218,-1.4815037,-0.51237035,-0.37387505,-0.7167952,-0.44834775,-0.54944444,-0.69651854,-1.0060786,-1.2113838,-1.2888899,-1.045745,-0.7240542,-0.7797922,-1.0795224,-1.2615334,-0.56325114,-0.17621173,-0.36896175,-0.706392,-0.9714492,-1.1495936,-1.2962933,-1.3381886,-1.3414519,-0.47130144,-0.5473321,-0.32189098,0.028060991,-0.5140925,-0.8339116,-1.0649171,-1.2004001,-1.0463777,-1.2658846,-1.4515762,-1.5889375,-1.5716324,-0.5744498,-0.38494968,-0.1319298,-0.24692982,-0.22795923,-0.49861872,-0.44919518,-0.41099426,-0.49209413,-0.45321557,-0.5088118,-0.5478494,-0.53453916,-0.828624,-0.909301,-0.9638033,-0.9757888,-0.8153264,-1.0169792,-1.1007965,-1.0190864,-0.8477289,-1.0505977,-1.2006817,-0.9929776,-0.19035156,-0.64533544,-0.98271465,-1.1611043,-1.2917573,-1.3641102,-1.4417108,-1.3994327,-1.3492236,-1.4536251,-1.5750133,-1.6691643,-1.7364749,-1.7945873,-1.8448669,-1.904574,-1.926008,-0.9059896,-0.58176917,-0.8951925,-1.096729,-1.250848,-1.331352,-1.213309,-0.61118793,-0.75705767,-1.0419056,-1.2304065,-1.3413479,-1.4455783,-1.3255345,-0.8464786,-0.8783336,-0.98222363,-1.1640784,-1.323696,-1.4308473,-1.5274507,-1.5981197,-1.6873958,-1.76541,-1.8396375,-1.8805826,-1.8807642,-1.9581225,-1.9969178,-2.016782,-2.0661168,-2.089099,-2.1176538,-2.1342833,-2.1730735,-2.1943367,-2.2152977,-2.2227583,-2.2397845,-2.215994,-2.2484083,-2.289567,-2.3074877,-2.330326,-2.3514276,-2.386366,-2.3812008,-2.3971496,-2.4016151,-2.3927946,-2.4238882,-2.428776,-2.4295208,-2.4205043,-2.4541187,-2.4512799,-2.463903,-2.4492517,-2.4428885,-2.435032,-2.4279194,-2.4214625,-2.4457936,-2.4505234,-2.4531415,-2.4339616,-2.447286,-2.464926,-2.436722,-2.3717837,-2.3747315,-2.38132,-2.3984365,-2.4167368,-2.3783526,-2.4064445,-2.3957622,-2.4213128,-2.198866,-0.68825376,-0.35190758,-0.84136117,-1.0521084,-0.72204167,0.8135204,1.0720589,-0.14270991,-0.47702235,-0.58681655,-0.45403454,-0.48623645,-0.63199246,-0.47035372,0.07271065,-0.34252757,-0.56614953,-0.6734539,-0.7420612,0.49413097,-0.23947369,-0.5667305,-0.7241361,-0.88867515,-0.9612373,-1.0431478,-1.076982,-1.139109,-1.1416619,-0.97454846,-0.90180135,-0.83002865,0.53291315,0.84276986,0.62401944,-0.24166273,-0.5129962,-0.30453163,0.17269447,0.0068910606,0.25139293,0.30162895,-0.084508285,-0.65085185,-0.8596946,-0.9573901,-1.0182856,-1.0823992,-1.1302536,-1.1664122,-1.2158325,-0.7911662,0.4106376,0.9962044,-0.2267855,-0.5005825,-0.6818967,-0.62237465,-0.6399919,-0.7049883,-0.73149306,-0.8320192,-0.9351795,-1.0534061,-1.1260478,-1.0329257,-0.9595611,-0.9917583,-1.0592695,-0.63634205,0.12990786,-0.40071535,-0.6487903,-0.78346795,-0.94556564,-1.0379311,-1.1208888,-0.92506176,-0.86724555,-0.9821261,-1.0866295,-1.1523867,-1.2893137,-1.0456319,0.009860206,-0.37764555,-0.73857915,-0.8852653,-1.0055177,-1.0735317,-0.28470248,-0.393645,-0.3213112,-0.61927545,-0.81152713,-0.9381856,-1.042563,-1.184743,-1.0529422,-1.0296499,-0.9649137,-1.0011768,-0.9798499,-0.6565081,-0.42124963,-0.7678079,-0.8395471,-0.94835186,-1.1468261,-1.2470356,-1.3398088,-1.4237773,-1.4970655,-1.600132,-1.6782063,-1.7544698,-1.7522943,-1.7526112,-1.8202852,-1.8598135,-1.9279892,-0.8577012
+0.67928,1.7622275,-0.46310133,-0.758587,-0.90787584,-0.98386776,-1.0199032,-1.0582567,-1.1636084,-1.2584976,-1.3423315,-1.4553688,-0.6832814,0.17060228,-0.37702602,-0.6576764,-0.83577275,-1.0237681,-1.173784,-1.3138721,-1.4113209,-1.2018076,-0.9246337,-1.1881888,-0.5562916,-0.40371606,-0.22807357,0.33143005,-0.2991007,-0.7091237,-0.9371078,-1.1067475,-1.1984605,-1.1992687,-1.2503332,-1.3458754,-1.457982,-1.5681678,-1.6636665,-1.7554455,-1.7983614,-1.8819864,-1.9088988,-1.9743497,-2.0266013,-2.0957327,-1.4917758,-0.46427187,-0.65442055,-0.09693326,-0.26585096,-0.5548264,-0.885539,-1.0909951,-1.242563,-1.3851594,-1.5134149,-1.6012664,-1.6898869,-1.7629197,-1.8495651,-1.9052124,-1.9712125,-2.0321774,-2.0730803,-1.9670234,0.33964342,-0.49139887,-0.79236835,-0.9619678,-1.1105822,-1.2479012,-1.1962125,-0.47583103,-0.7567387,-1.0327876,-0.7325743,-0.3918268,-0.8427722,-0.99358106,-1.1319153,-1.2786088,-1.4216435,-1.5504107,-1.6293818,-1.7196038,-1.1775215,-0.6395773,-0.72316164,-0.25639713,-0.29247594,-0.5051814,-0.8432079,-0.49391758,-0.527348,-0.586032,-0.116379455,-0.54535794,-0.90627754,-1.098363,-0.88115686,-0.38883343,-0.3885525,-0.6414281,-0.7015732,-0.119631305,-0.086586446,-0.059402328,-0.14129604,-0.452087,-0.81224984,-0.7432955,-0.43499452,-0.72710866,-0.96100307,-1.0591605,-0.88351303,-0.5335419,-0.7483308,-0.7846743,-0.9975534,-0.74377525,-0.35055494,-0.531646,-0.916101,-0.8692546,-0.21700813,-0.36916196,-0.42278713,-0.26222715,-0.26649415,0.14802624,-0.17456399,-0.41295418,-0.45307767,-0.6863337,-0.76599747,-0.9632433,-1.1087515,-0.7857424,-0.86247015,-0.7762925,-0.38995767,-0.6910385,-0.7982216,-0.22460203,-0.52083313,-0.23423131,-0.39437205,-0.5952972,-0.5661832,-0.90202975,-1.0283332,-0.6543252,0.43360662,0.32545644,-0.14586568,-0.3208337,-0.5889683,-0.86699605,-1.0230374,-1.1583385,-1.2868133,-1.3998272,-0.9897233,-0.38498518,-0.53778523,-0.90863395,-1.0806495,-1.1843503,-0.48304075,-0.26598653,-0.58370686,-0.9178656,-1.0783081,-1.1996272,-1.3088182,-1.3717539,-1.2957038,-1.3318057,-1.4382665,-1.5324748,-1.6167817,-1.6931142,-1.7796258,-1.8519535,-1.8897135,-1.916617,-1.9474148,-1.9890621,-2.002215,-2.074549,-2.118532,-2.1406143,-2.17523,-2.1981645,-2.230772,-2.236016,-2.1596158,-1.9283412,-2.045473,-2.101942,-2.1354284,-2.1273599,-2.1330795,-2.1543705,-2.2132504,-2.2528367,-2.281384,-2.3069177,-2.3283558,-2.345821,-2.3549204,-2.359407,-2.3795793,-2.3772237,-2.2947736,-2.338586,-2.369192,-2.3654418,-2.3783221,-2.3924575,-2.3849607,-2.3898191,-2.381225,-2.3939056,-2.4179902,-2.435098,-2.4258072,-2.428406,-2.4580722,-2.4668403,-2.424429,-2.3136282,-2.2937279,-2.3506799,-2.40418,-2.429922,-2.4427574,-2.4178228,-2.3807964,-2.440386,-2.4240003,-2.100126,-1.1530787,-1.0149931,-1.2238612,-1.3154452,-0.21834336,0.5106853,-0.33201241,-0.711656,-0.8531122,-0.7684743,-0.7293421,-0.85726327,-0.5970948,0.08886491,-0.44628736,-0.6985755,-0.81526065,-0.8965238,-0.25434142,-0.4468223,-0.77219117,-0.8785707,-0.9837593,-1.0799924,-1.1433647,-1.1863918,-1.2476797,-1.1793314,-0.69816875,-0.80350155,-0.77873254,-0.52665925,-0.5111743,0.27080235,-0.35947728,-0.7072109,-0.81091994,0.020080138,-0.21533832,-0.057986688,-0.11918764,-0.5212651,-0.8607086,-0.9996934,-1.0849769,-1.1633666,-1.2345129,-1.2953086,-1.2665702,-1.2366196,-0.9329545,0.086662516,0.33126816,-0.3190179,-0.72733074,-0.8648677,-0.8474742,-0.8759951,-0.9624065,-1.0303743,-1.1123875,-1.158341,-1.2613087,-1.3250242,-1.3562604,-1.4058914,-1.4139464,-1.4745665,-1.5288682,-0.2960845,-0.49809295,-0.785735,-0.9185082,-1.0570388,-1.1537557,-1.2247622,-1.2822301,-1.341804,-1.356576,-1.3917385,-1.3537894,-1.4774911,-1.5675213,-0.38850147,-0.40625376,-0.75959694,-0.9539223,-1.0629047,-1.1266615,-1.2368789,-1.3375771,-1.0216309,-0.88466907,-0.9973178,-1.122596,-1.2600493,-1.4023229,-1.4944108,-1.4741458,-1.4903512,-1.594765,-1.6642746,-1.0203311,-0.2833252,-0.8310314,-0.9284689,-1.002704,-1.1695945,-1.3098674,-1.4051899,-1.5004748,-1.6040239,-1.6857538,-1.7667648,-1.8485343,-1.8633552,-1.6997745,-1.7033427,-1.808988,-1.9015366,-1.6550819
+3.5886889,4.4605594,4.6148624,4.6584435,4.6632586,4.692395,4.761546,4.775825,4.7324324,4.7247667,4.757395,4.7550597,4.8232803,4.831488,4.892199,4.7120194,4.876981,4.7917957,4.6872044,4.186467,4.0601697,3.8423786,3.8277314,3.7432795,3.7318869,3.7127833,3.672965,3.7100072,3.7568796,3.6927261,3.5994248,3.5290508,3.4586601,3.4545317,3.1424918,2.650963,2.7080965,2.693596,2.496344,2.2756093,2.0658045,2.0272508,2.778616,3.1232476,2.9780114,2.758871,2.5282106,2.2742424,2.068366,1.91959,1.9331392,1.902663,1.7991068,2.3385773,2.5328884,2.4596586,2.4669933,2.8084903,3.1155615,3.1387415,2.9028764,2.7974582,2.9259565,2.9570184,2.8025625,3.2249203,3.5725026,3.2656305,3.0267854,2.7434475,2.5751727,2.8301218,2.7914777,2.612496,2.4927325,2.3297367,2.2524033,2.1832108,2.134165,2.5678945,2.980576,2.9588323,2.8376942,2.630393,2.4383335,2.473468,3.0006905,3.1763873,2.9070146,2.6710496,3.1315336,3.1838164,2.8648925,2.707403,2.8664844,3.1205964,3.0458574,3.0789576,2.9342875,2.7582018,2.6041527,2.5297093,3.129407,3.0309443,3.2298112,3.0973802,2.8276024,2.7968488,3.2888432,3.0176616,2.754909,2.8823,3.2690647,3.0877178,2.9515896,3.1861806,2.9642463,2.825704,2.784881,2.6788487,2.5354178,2.4479308,2.3933172,2.5714712,2.7108135,2.6208136,3.019422,3.0129201,2.8047647,2.6097026,2.5887213,2.8322272,2.7822626,2.684074,2.6280656,2.650751,2.8588953,2.762169,2.7500315,2.7210333,2.7135558,3.3146448,3.9056056,3.3601136,3.2497818,3.0570636,3.0700274,3.2649887,2.9921951,3.256322,3.1598034,3.0925994,3.1666658,2.9676304,2.842457,2.7081351,2.602706,2.619709,2.86122,2.9684381,3.136467,3.1114197,3.1682165,3.2308683,3.2460403,3.3790102,3.2264411,2.9852479,2.8900723,3.203895,3.1212196,2.9619608,2.849274,2.7350442,2.6566162,2.5785446,2.488202,2.40687,2.786227,2.9986005,2.8525004,2.6832616,2.5821633,2.5062177,2.4442198,2.4470763,2.4186585,2.3799522,2.4034305,2.578196,2.8347478,2.7247028,2.6179123,2.7071462,3.0454044,2.9112353,2.8646004,2.8862429,3.1144753,2.9575894,3.2591448,3.1350298,3.0341868,2.8817828,2.7161193,2.6584947,2.543649,2.456512,2.3764083,2.4244578,3.015339,3.5336182,3.3313224,3.1682677,3.327036,3.1722155,2.9200974,2.8158689,2.8346412,2.7202454,2.5861154,2.5372057,2.5158467,2.5827072,2.4607768,2.5025506,2.509806,2.427581,2.4203534,2.5386925,2.5007305,2.914554,3.331414,3.2480512,3.2375927,3.293462,3.434276,3.6020553,3.7264123,3.8269453,3.8577204,3.858776,3.930466,3.9616165,4.0626564,4.026369,3.9804,4.020287,4.060072,4.0759177,4.184771,4.234067,4.291522,4.360335,4.413997,4.4036875,4.3608627,4.4566083,4.4986687,4.579013,4.5993633,4.62714,4.5488553,4.567623,4.55091,4.557553,4.5807323,4.5663385,4.6542454,4.663704,4.591732,4.6463504,4.5368032,4.550167,4.6552672,4.609951,4.6143246,4.575963,4.5997977,4.647757,4.7502027,4.7711887,4.779499,4.7109094,4.7266006,4.7028003,4.8197227,4.7930284,4.7882404,4.8022604,4.7242327,4.790257,4.7349195,4.7907057,4.8094673,4.836629,4.860834,4.8313293,4.8463507,4.829271,4.871295,4.802314,4.8164997,4.8302245,4.8574333,4.7999363,4.7744174,4.8716164,4.8692846,4.856744,4.7967877,4.8490534,4.8370132,4.7794576,4.8574376,4.8231544,4.803659,4.7599096,4.7461357,4.742992,4.788621,4.8274803,4.7992597,4.8213916,4.8655205,4.8974724,4.864278,4.8519373,4.881997,4.902112,4.837602,4.776215,4.7926807,4.7784863,4.8813114,4.8964643,4.871067,4.8774786,4.7845736,4.736234,4.7973404,4.7794056,4.7915506,4.896692,4.8430815,4.8634586,4.878845,4.844488,4.836127,4.8150673,4.7888126,4.7838173,4.775968,4.7265587,4.7901225,4.7932124,4.807844,4.8234034,4.857295,4.7983103,4.8130207,4.917018,4.8796754,4.8815603,4.8777094
+2.3691037,3.7697732,4.1327677,4.2618933,4.2088027,4.243885,4.32347,4.310067,4.3076735,4.17769,4.231149,4.3027325,4.281684,4.289882,4.080141,3.2777412,2.3325422,1.9144827,1.8993033,1.753687,1.0269294,1.5033386,1.775702,1.7833089,1.7262839,1.8996987,1.8280311,1.8542128,1.7341177,1.339437,0.9216954,0.5571106,0.59236073,0.87554723,0.39105633,0.07566537,0.3010226,0.15609919,0.04055879,-0.019067671,-0.16373976,-0.26506075,0.22021864,0.18623479,0.10183017,0.032175694,-0.16214319,-0.24520035,-0.3584994,-0.46420416,-0.48505667,-0.4435981,-0.517384,-0.062461462,0.44182628,0.41286594,0.4570611,0.67313725,0.5821794,0.3729583,0.21126916,0.13917375,0.38752168,0.22993954,0.15822627,0.9507303,1.3628061,0.71153045,0.34156424,0.09451513,-0.081251934,0.28755993,0.22709022,0.005737912,-0.08773126,-0.18466629,-0.25467423,-0.31790388,-0.38299996,-0.34614617,-0.30893213,-0.41453958,-0.42779678,-0.4135861,-0.47867948,-0.532063,0.17536221,0.52220774,0.18636452,-0.0038494878,0.227684,0.9912317,0.345272,0.12459509,-0.06592463,-0.13550422,0.5021749,0.41398048,0.93001705,1.1806349,0.43586114,0.18743993,0.46007687,0.36990792,0.6245511,0.7151085,0.29540864,0.14477389,0.2646146,0.11104362,-0.044372108,-0.034684274,-0.017039288,-0.10757211,-0.1792842,-0.008562472,-0.11369318,-0.20203122,-0.2793926,-0.3466379,-0.38721758,-0.44285443,-0.45426026,-0.5015936,-0.5116391,-0.5398694,0.127555,0.22963415,-0.011732679,-0.168889,-0.26457825,-0.31327417,0.17622079,0.94318485,0.64124525,0.5257546,0.2208276,0.03772304,-0.021541875,-0.077448055,-0.009514015,0.96277624,1.3019905,0.573159,0.3089363,0.25851932,0.2682613,0.1310513,0.01047622,0.14750037,0.2823188,0.39262074,0.36548993,0.14551659,-0.0081424825,-0.104939446,-0.18639325,-0.25654906,-0.20303462,0.02878369,0.62069243,0.4170607,0.9121674,0.8093245,0.32580823,0.3555525,0.3139158,0.09637855,-0.027792599,-0.094658524,0.07171796,0.029544849,-0.12157638,-0.22231488,-0.24668767,-0.24384543,-0.30490926,-0.3516851,0.18872388,0.6379758,0.25880468,0.05567563,-0.053282958,-0.1292223,-0.025928672,0.0063511916,-0.13985308,-0.19080772,-0.17081372,0.10133736,0.22133537,0.0105396025,-0.07590552,-0.050832402,0.78373814,0.79314893,0.39008802,0.17763248,0.20846675,0.6660721,1.1513586,0.5040773,0.3085427,0.120343134,-0.011855271,0.0020655356,-0.054618616,-0.18453436,-0.091697276,0.17225109,0.49636573,0.8657052,0.40093285,0.21956293,0.35924864,0.25626954,0.09156899,0.06287809,0.06371288,-0.007263962,-0.07293475,-0.17127408,-0.16244645,-0.110184506,-0.27051738,-0.1647945,-0.09118718,-0.12659416,-0.12121345,-0.17281725,-0.19281144,-0.17263372,0.2493292,0.3405503,0.67946386,1.0487337,1.3358583,1.5151622,1.579389,1.6116451,1.6543132,1.7581342,2.258285,2.4517412,2.538561,2.6289601,2.8237696,3.1233888,3.3935544,3.6039414,3.7875369,3.98309,4.0714455,4.092934,4.110789,4.1453257,4.116932,4.1562147,4.130618,4.1432667,4.2098155,4.1607175,4.1261973,4.0692067,4.1529303,4.0841966,4.027275,4.1000223,4.164029,4.160994,4.158399,4.153927,4.1307116,4.1938086,4.1758757,4.1268187,4.1903563,4.200227,4.222911,4.1699295,4.158955,4.199822,4.173501,4.1598196,4.19201,4.1334257,4.187273,4.1524796,4.150552,4.1529512,4.07986,4.1412354,4.102126,4.1254835,4.1149807,4.147334,4.23697,4.2576704,4.2549887,4.2540674,4.2291,4.194437,4.1967072,4.2066436,4.191309,4.1707854,4.1851435,4.189434,4.1690693,4.1595263,4.1974015,4.207139,4.24003,4.224345,4.1753664,4.2221193,4.1945496,4.1780148,4.1682644,4.143336,4.2423406,4.2228146,4.1906567,4.1572475,4.202732,4.2126455,4.158031,4.2050376,4.258831,4.25397,4.234679,4.1491876,4.162769,4.142705,4.273399,4.2115946,4.203057,4.1955667,4.1579275,4.2062197,4.2422895,4.1376276,4.18897,4.181711,4.182557,4.192341,4.2037497,4.224873,4.215621,4.197446,4.1782255,4.168326,4.255246,4.1767454,4.197446,4.221301,4.1215754,4.1879673,4.2739267,4.1567984,4.2423296,4.277524,4.3045425,4.2616496,4.30764
+0.88133395,1.137821,1.0228665,1.0978671,1.349819,1.7309802,2.047941,1.9258156,1.89715,2.1736717,2.6317697,1.6096945,0.96791005,0.59370565,0.30466297,0.15883033,0.034219537,-0.07464266,-0.09151589,-0.1070205,-0.0518029,0.14128348,0.03218418,-0.03955885,-0.09948398,0.6194313,0.54145545,0.26722875,0.18626703,0.13266544,0.56346244,0.7821121,0.41298884,0.37855035,0.3133399,0.14673556,0.059528176,0.013363339,-0.026041627,-0.079628825,-0.031244595,0.05317865,0.8509996,1.2429447,0.7458678,0.5355891,0.44030476,0.2821259,0.15391922,0.034570094,-0.045864105,-0.08309445,-0.14162616,-0.2173136,-0.2344084,-0.23565741,-0.15035908,-0.13934283,0.027940799,-0.07009919,-0.17275582,-0.19848935,-0.26458824,-0.3313464,-0.35144338,0.74061847,0.6446538,0.24026336,0.13828443,0.070640445,-0.014668696,-0.10434362,-0.07462957,-0.18891354,-0.21321355,-0.116234615,0.99899817,0.49278122,0.2509743,0.14993927,0.020577092,-0.09546435,-0.17468014,-0.21481979,-0.23190823,-0.266603,-0.34835815,-0.3476654,-0.51525944,-0.45634654,-0.47818828,-0.037174832,0.08032279,-0.1088033,-0.1914556,-0.2480227,-0.37333542,-0.33309335,0.8200748,0.5291947,0.37088,0.19144677,0.1296748,0.34137052,0.85910374,0.3878784,0.38062418,0.14945944,0.03790028,-0.054044634,-0.14325975,-0.13850297,-0.16532053,-0.24288476,-0.24635732,0.0074110813,-0.14500676,-0.058510993,-0.11010757,-0.23535009,0.11388375,0.7665173,0.37415624,0.14421748,0.011519369,-0.121209815,-0.29105228,-0.34027416,-0.438237,-0.5007709,-0.59291387,-0.64936703,-0.72159123,-0.22367083,0.8437681,0.7177267,0.4411675,1.4024769,1.0395594,0.9521519,0.67500746,0.5820332,0.56147957,0.473516,0.29623106,0.2350085,0.37276447,0.1947277,0.32876903,0.50603044,0.22358157,0.10741289,0.11885005,-0.052285984,-0.10286318,-0.1684444,-0.22979681,-0.31640995,-0.38226545,-0.44825655,0.12737833,0.2954912,0.52525175,0.4526919,0.1740782,0.033983003,-0.060254414,-0.11852637,-0.19370377,0.5559505,0.6315187,0.26506597,0.13337985,-0.0068168677,-0.08251846,-0.164907,-0.23886539,-0.28234243,-0.17678265,0.039571557,-0.036103234,0.23150943,0.72170305,0.9065783,0.5765891,0.3062863,0.21943282,0.0570284,0.26073962,0.25109172,0.2549796,0.041248653,0.0010505728,-0.038209762,-0.09260981,0.7678,0.44274423,0.2013761,0.65284646,0.53489184,0.2825969,0.15655674,0.54404366,0.5802866,0.24205552,0.2432829,0.25095838,0.11883381,0.3623589,0.9813422,0.6929374,0.38064355,0.23248152,0.20330401,0.13220404,0.33173376,0.8888454,0.53121257,0.35892442,0.2535628,0.21025898,0.18075356,0.18589535,0.1257941,-0.031463113,0.03368974,0.10572849,0.09794603,0.06940456,0.014996093,0.0045904033,-0.00015299395,0.32939118,0.1766489,-0.011069339,0.15422189,0.3633209,0.81385773,0.64030284,0.55416065,0.44761908,0.49754834,0.7047509,0.59846413,0.44886515,0.32052773,0.25396198,0.31759772,0.51263434,0.49712896,0.5319533,0.42721236,0.4493852,0.60219586,1.2436643,1.6513431,1.9484255,2.3399692,2.5392113,2.7881322,3.0385754,3.2568188,3.3991885,3.5108566,3.5761533,3.6194115,3.7124343,3.8442955,3.8890576,3.9450004,3.9379692,3.952097,4.0016255,3.9680252,3.9070141,3.8554373,3.8690507,4.042187,3.8199582,3.7951672,3.8965425,3.949184,3.9323294,3.9756212,4.120036,4.199777,4.3533297,4.127986,4.113023,4.093897,4.089366,4.26949,4.230112,4.07138,4.1650453,4.108654,3.511075,2.7498,1.8129212,1.1487415,1.0862715,0.8487203,0.76081735,0.79208666,1.0344963,1.362216,1.6150243,1.8449475,2.1485996,2.3921728,2.6687622,2.8050592,3.217057,3.5475576,3.6414099,3.7948635,3.8720403,4.058582,3.9496474,3.770356,3.701272,3.4989119,3.3696513,3.099038,2.103625,1.1720186,0.797001,0.5805074,0.41967863,0.5360315,0.88840926,0.5156063,0.529381,0.5252029,1.2357457,0.7628408,0.7756139,1.2103381,1.6878576,1.8846363,0.8977188,0.42958403,0.110115096,0.030423436,0.16756147,0.3923131,0.72603273,1.021244,1.1356041,1.1601503,1.1668882,1.4737107,1.2555615,0.76953334,0.3085569,0.047895666,0.28048235,0.41011545,0.7475271,1.0181599,0.69117796,0.4781509,0.2794665,0.9778633,1.0010202
+1.3309174,1.4588375,1.4697428,1.3022829,1.2156749,1.1801803,1.5738418,1.5448421,1.4499673,1.3380084,2.0341928,1.7565799,1.5383593,1.3732803,1.1837993,0.99287164,0.82106,0.6767987,0.6079484,0.5800689,0.56991094,1.0047116,0.9407241,0.83713907,0.753654,0.98521614,1.1651284,1.1670102,1.0635052,1.0913063,1.6386845,1.6430182,1.3408527,1.2482233,1.2090938,1.1122456,1.0017399,0.9591036,0.8761315,1.2659141,1.3933622,1.1689069,1.4810419,1.5306863,1.3955415,1.3155499,1.1038858,1.3682306,1.2317481,1.0695487,1.3545706,1.3090541,1.1742837,1.0265313,0.8644066,0.902173,0.8222245,0.98570657,1.4095836,1.3502932,1.0173565,0.95463085,0.8613936,0.71729904,0.62513006,1.5534576,1.1683134,0.99302256,0.90258014,0.74156225,0.7218832,0.60077024,0.47108287,0.48279846,0.31259277,0.52928406,1.0868592,0.8048037,0.6053002,0.5070977,0.40252995,0.2640613,0.14147456,1.5988806,1.2974551,0.9951632,0.8415163,1.0053993,0.8026538,0.71412563,0.57535815,0.47747564,0.35778263,0.12341106,0.11686914,0.18888992,0.14744423,0.08200602,-0.026788171,-0.17723434,-0.23177297,-0.2709924,-0.28708172,-0.35792676,-0.1715699,-0.0653674,-0.22715735,-0.29877073,0.07335396,0.15657939,-0.09573047,-0.19870347,-0.19765137,-0.2302532,-0.40179896,-0.51702577,-0.6211853,-0.6998414,-0.8414739,-0.6397267,-0.34329817,0.32419637,0.061281998,-0.10477713,-0.27925023,-0.40102333,-0.515489,-0.69700813,-0.83760047,-0.9280517,-0.9342319,-0.6819174,-0.56202996,-0.6918719,-0.18675962,0.9326388,1.1722759,1.0542066,1.3429017,0.9003144,0.7146687,0.9086784,0.93773615,0.6095755,0.37436646,0.26824862,0.66128486,0.5269703,0.37938035,0.17633483,-0.04215322,-0.27230448,-0.40357646,-0.402645,-0.50585026,-0.59383786,-0.687639,-0.7612439,-0.86159945,-0.94674504,-0.9939407,-0.28570303,0.7785497,0.7717489,0.2556832,0.0084000565,-0.108157516,-0.19484584,-0.32441324,-0.15387048,0.40746215,0.14200117,-0.17403977,-0.37384054,-0.5034219,-0.62457275,-0.6986927,-0.73880535,-0.6287495,-0.3846497,0.52409333,1.1180727,1.3634305,1.2103996,1.0587215,0.72087944,0.4510254,0.22702725,0.005398836,-0.13582413,-0.23808877,-0.27126697,-0.35782707,-0.47341746,-0.5311941,-0.5247083,-0.5558929,-0.63650995,-0.6816716,-0.65159047,-0.6421607,-0.77000844,0.34603772,1.2890706,0.70490986,0.4873395,0.30694324,0.26609975,0.22377242,0.28483325,0.25373095,0.08558658,-0.021050658,-0.019615505,-0.1532785,-0.3058681,-0.40541622,-0.4285218,-0.45933574,-0.52248067,-0.55012834,-0.50647014,-0.1999434,-0.2056892,-0.33329347,-0.24043027,-0.12997141,-0.08877079,-0.22197966,-0.2970322,-0.33369908,-0.37668526,0.030022908,0.19433402,0.18099941,0.31956178,0.2864412,0.27243823,0.2742551,0.18048781,0.17617361,0.16708545,0.72291887,0.91596115,0.8093344,0.5426265,0.46924257,0.4603938,0.7282382,1.1415865,1.198008,1.1390696,1.2824085,1.4425734,1.6692955,2.030126,2.073244,2.2141664,2.3338456,2.3883905,3.0277789,3.356186,3.0173616,3.1445575,3.1898093,3.2478979,3.2918136,3.4936256,3.0438366,2.4404044,1.9144908,1.5988545,1.8055273,1.7107337,1.7946558,1.8459059,1.8116975,1.7428075,1.8463097,1.774659,2.1218262,2.2841034,2.3752224,2.4877632,2.7570474,2.947095,2.481915,1.7804316,1.727175,1.6485313,1.7293547,1.6572025,1.3633211,1.2798743,1.7033501,1.459687,1.3348889,1.4774513,1.5331403,1.4042063,1.3061857,1.2121747,1.1977007,1.1803783,1.1911819,1.2663223,1.1568621,1.1013533,1.2489703,1.5353339,1.6455098,1.5725384,1.8706381,1.602127,1.3918636,1.5926919,1.6991001,1.676778,1.3819833,1.3951478,1.2818282,1.2202252,1.1843348,0.9988905,0.874329,0.77955806,0.71014696,0.6864574,0.67323184,0.66091,1.2762551,1.2310388,1.1349332,1.0957915,1.9812417,1.6614457,1.4012884,1.5321726,1.7392831,1.69518,1.9983518,1.59076,1.3184726,1.3649144,1.4260739,1.5892601,1.7307832,1.7655783,1.6748617,1.6653478,1.6896579,1.8796318,1.5847749,1.3701172,1.3418094,1.2154648,1.2117987,1.195493,0.9498522,1.0606275,1.653923,1.6415772,1.4241152,1.2708278,1.8391652
+0.43144616,0.8459048,0.8742422,0.7962486,0.72515327,0.79433477,1.422708,1.3653877,1.3232293,1.1188065,1.231397,1.5427871,1.2316195,1.1039642,0.9561425,0.83772504,0.74102914,0.66538703,0.596198,0.56638134,0.5164093,0.5167971,0.594436,0.5770885,0.5449996,0.6191304,1.4908252,1.4769073,1.192112,1.1877184,1.3156126,1.1664875,1.0302339,0.9627772,0.9053225,0.87037045,0.7912353,0.84960914,0.8924688,1.0447274,1.5806204,1.3523983,1.4691434,1.3423398,1.1296949,1.0174677,1.1330117,1.7409239,1.3485972,1.2745787,1.4200828,1.2553337,1.1366534,1.051646,0.9860071,0.9339903,0.9019781,0.89761317,0.8661136,1.097557,0.9918783,0.9073778,0.96004754,1.1523166,1.1386089,1.398071,1.1292624,1.0104421,0.938167,0.8606669,0.77577317,0.7418555,0.7006022,0.7022778,0.61007506,0.6276758,0.7517973,0.6527157,0.607057,0.5445615,0.51091087,0.6418684,0.8898873,1.4972479,1.4098798,1.1422429,0.9834094,0.9940357,0.92189324,0.8711555,0.81262493,0.73717415,0.70855343,0.86868423,1.6103055,1.469194,1.3781797,1.340724,1.275147,1.1585265,1.0321281,0.939618,0.95178056,0.9793577,0.9476646,1.0877627,1.0184115,0.89498806,0.8452641,0.811149,0.7016187,0.61073494,0.6975174,0.750913,0.62044466,0.5910849,0.7667476,0.74313104,1.4481137,1.3543456,1.0998745,0.95153207,0.8529573,0.79337347,0.70303416,0.6314193,0.5722396,0.5123402,0.4248504,0.33718807,0.34567365,0.6554218,0.66105175,0.49162304,0.4057514,0.4389453,0.5923139,0.84762657,1.4889792,1.1223227,0.91999286,0.9791925,1.2670845,0.979295,0.76970655,0.6567688,0.60639596,0.5317651,0.41975358,0.31555474,0.27571607,0.15134694,0.06192169,0.12346597,0.05024131,-0.087935954,-0.15340509,-0.1841601,-0.19197051,-0.1925806,-0.20916344,-0.20682967,-0.11012903,0.057186034,-0.05221913,-0.1560904,-0.20978819,-0.26546404,-0.30511636,-0.25082693,0.06400165,0.03471755,-0.10965645,-0.21881868,-0.2911398,-0.3370304,-0.38774338,-0.43689954,-0.42865324,-0.31514573,0.058296103,1.009532,1.017507,0.7703304,0.6119767,0.4749124,0.29670945,0.1545154,0.051904727,-0.027944207,-0.08902381,-0.13059033,-0.18686499,-0.2345125,-0.2620142,-0.28356045,-0.27822462,-0.33105776,-0.33033675,-0.34637713,-0.34373903,-0.35967505,0.007352669,1.5066068,0.95663327,0.71445847,0.56631154,0.49398023,0.35751197,0.26065803,0.2030022,0.17485687,0.1680252,0.17636204,0.10248801,0.03847247,0.1776347,0.42030284,0.2708194,0.1504103,0.06552018,0.014962841,0.37615383,0.40887383,0.27407178,0.24685906,0.2192301,0.20151113,0.12778716,0.08646476,0.06339197,0.034335632,0.21754949,0.28487074,0.2598927,0.3630611,0.35136625,0.2858331,0.299229,0.28942853,0.2576597,0.22737817,0.4743322,0.9236443,0.8417814,0.6451993,0.5430326,0.47332114,0.4902234,1.148676,1.1142788,0.9563918,1.0284503,1.1333892,1.2261927,1.6132082,1.3451209,1.3371239,1.5720123,1.834401,2.1352346,2.7963195,1.8498151,1.896895,2.1078215,2.245821,2.24886,2.0806894,1.3781226,1.1172974,1.4724603,1.2512583,1.3449302,1.1169679,1.1679659,1.1882727,0.9783695,1.4405609,1.4483514,1.2454942,1.5217576,1.7914665,1.9423883,2.0620115,2.288652,2.3590894,1.6161872,1.504097,1.7589087,1.5765896,1.3708131,1.6055744,1.3547384,1.1539344,1.4019501,1.2484417,1.0650405,1.4842691,1.4510298,1.174484,1.0641212,0.96667147,0.9398629,0.88952535,0.8487555,0.94695956,0.89098054,0.80499655,0.9090432,1.1284871,1.3714513,1.114506,1.2199329,1.2003043,1.2935377,1.327043,1.3000654,1.1060005,0.9356716,0.9194474,0.83945644,0.8249695,0.80847085,0.70902586,0.6885549,0.60600495,0.55320245,0.91378844,0.9854089,0.84262145,1.4453056,1.1649342,1.1530485,1.6857982,2.2699304,1.6320359,1.321186,1.3227679,1.3179886,1.1514875,1.3020144,1.2768717,1.048333,1.1024977,0.9955139,1.1214429,1.2363604,1.2805619,1.1880261,1.2989454,1.5181729,1.6037813,1.1090546,0.9765086,1.1644249,0.98380244,0.89826876,0.8356705,0.68883675,0.9135096,1.1522104,1.2477293,1.1554433,1.0089862,1.8988125
+1.2412301,1.0264146,0.9056804,0.89358425,0.87742615,0.8126117,1.2449015,1.3430803,1.3135707,1.1539562,1.0898062,1.2158694,1.0825483,1.0116916,0.9023947,0.81625646,0.7481697,0.6989852,0.6604923,0.61010206,0.60122365,1.1286702,1.2587531,1.0700214,0.9828861,0.91089404,1.1522449,1.8049036,1.4252598,1.3716278,2.179708,2.2181134,1.8015497,1.5964286,1.4966519,1.3208742,1.1917458,1.5132952,1.3912442,1.2454014,1.8098876,1.683142,1.6305999,1.4790881,1.3098661,1.2113827,1.4174029,1.6214225,1.4064188,1.5945413,1.8280636,1.5731417,1.3620784,1.2457614,1.1672244,1.3158426,1.5253823,1.6266303,1.4289994,1.2895608,1.2073255,1.1312976,1.074008,1.1273394,1.1718932,1.6481652,1.4549695,1.2408482,1.1471796,1.0785114,1.0356047,0.98384976,0.9121845,0.92784965,0.87896234,0.85187113,0.8759549,0.818524,0.78814423,0.75196195,0.7371738,1.2215956,1.682096,1.3721716,1.6941888,1.3901156,1.2033246,1.6610447,1.5954044,1.3376558,1.2463105,1.1455135,1.1102219,1.036525,1.5840144,1.8856728,1.7895709,2.029293,2.3348181,1.7202804,1.4512656,1.3120384,1.360673,1.3053446,1.2782965,1.2104452,1.1027982,1.0694373,1.0317208,1.0070584,0.96366346,0.93152547,0.90026075,0.88611823,0.8478673,1.190356,1.2115562,1.0725889,1.8150855,1.7965391,1.478987,1.3011014,1.4620978,1.563076,1.3464521,1.4244289,1.5338445,1.5239304,1.3639349,1.2552067,1.141671,1.1711489,1.1110411,1.1663231,1.086928,0.99741495,1.150784,1.3413644,1.7415242,1.6818202,1.4236279,1.4660323,1.8060414,1.4397904,1.2409828,1.1519078,1.0677915,1.0135945,0.9444235,0.9144715,0.9706471,0.99672127,0.8845151,0.78943217,0.7243236,0.6555004,0.60175455,0.58083564,0.5574364,0.5296846,0.52132565,0.49962997,0.48617804,0.66477716,0.6189701,0.5196777,0.4548657,0.39463276,0.36403227,0.36103606,1.2174013,1.3363376,1.0269239,0.8766581,0.7590277,0.69546473,0.6218772,0.5714129,0.5633859,0.5589042,0.5277013,0.70314324,0.81600434,0.71198916,0.65792906,0.59985214,0.49707723,0.40379503,0.32921964,0.2805935,0.26817828,0.2706961,0.23934935,0.2078611,0.1835124,0.2506565,0.32704818,0.27583656,0.22474514,0.20087105,0.17306207,0.13184439,0.12202662,1.3099904,1.1911814,0.9166635,0.8180134,0.74771154,0.6652777,0.6330236,0.5312657,0.50147384,0.4502058,0.42439935,0.37003395,0.31723055,0.2574389,0.30706915,0.3593138,0.2816826,0.22080638,0.20421772,0.35661516,0.43468425,0.3778518,0.34435502,0.32701918,0.29794303,0.25325,0.21323153,0.18495992,0.17370804,0.38122928,0.5604638,0.5809213,0.6237928,0.5004746,0.36108744,0.30643013,0.29509765,0.3340896,0.31065047,0.74428415,2.1872783,1.7797086,1.4051592,1.3128356,1.284822,1.3105229,1.7081091,1.5082395,1.3261029,1.3449919,1.4478334,1.6004766,2.0956883,1.5633512,1.4636226,1.3263702,1.601198,1.6534895,2.1412194,1.7019787,1.653414,1.8158896,1.7646034,1.5539128,1.8483725,1.6571856,1.401474,1.8250145,1.5552714,1.8393803,1.5191693,1.5151865,1.6816025,1.5966249,1.6349422,1.6338629,1.377775,1.5148728,1.6908221,1.9379909,2.1559048,2.4517593,2.4123352,1.6035709,1.7193637,1.6768503,1.5276151,1.3745859,1.4975913,1.4904966,1.3085139,1.4347992,1.3110156,1.225878,1.8780599,1.8376236,1.4917345,1.3361187,1.2435735,1.2090526,1.2056334,1.2397519,1.2510685,1.1626695,1.07222,0.9958869,1.0542471,1.2304518,1.107458,1.1106533,1.0847181,1.4626107,1.3405226,1.3663993,1.1218053,0.99153376,0.9939692,1.0256109,0.9072418,0.93895817,0.88154465,0.86170137,0.7842618,0.7385328,1.0435975,1.1306622,1.0181932,1.4723674,1.3146186,1.1730523,1.259027,1.8932476,1.6461878,1.3146262,1.2600609,1.2256615,1.0801845,1.2377901,1.3021073,1.0940969,1.2323381,1.0739762,1.0505481,1.084568,1.3346441,1.1421626,1.2163811,1.3985536,1.6147332,1.2241775,1.0969253,1.0338606,0.9452274,0.7965362,0.8339089,0.777754,1.075643,1.3855777,1.6406393,1.3729119,1.1627998,1.5198293
+1.733139,1.2256806,1.1210938,1.093394,1.073965,1.0430554,1.5277197,1.4260098,1.2090309,1.0966799,1.0545521,1.2548087,1.2821283,1.1501153,1.0140073,0.93377125,0.8502152,0.7538117,0.6625731,0.5278599,0.44605225,1.3715513,1.4014834,1.1266336,0.99920535,0.9154441,0.8528461,1.2268417,1.1091576,1.0097439,1.2322364,1.3286941,1.6324904,1.2991681,1.4792525,1.3473239,1.1745819,1.0644274,0.95272756,0.87498784,1.4025106,1.8564606,1.6657424,1.2569313,1.1922662,1.0648167,1.0398638,0.982759,0.89916587,0.84431934,1.4503157,1.2399772,1.0786074,1.0125604,0.90445495,0.8011238,0.76521933,0.7143619,0.61332613,0.5839881,0.55835354,0.5088391,0.43456417,0.48671556,0.98305,1.7455078,1.4087784,1.1129224,0.9724058,0.86251354,0.754138,0.6748134,0.5759908,0.4944508,0.47194362,1.1929667,1.0816417,0.7817566,0.67274183,0.5377995,0.48391652,0.4022245,0.41815084,0.40961426,0.82942295,0.8085574,0.57516587,0.58280134,0.6597264,0.47159076,0.4312763,0.38721728,0.3359002,0.26159197,0.29683518,0.91688883,1.0421101,1.3878534,1.4863727,1.0761755,0.8802626,0.7025815,0.6808032,0.6467379,0.7785857,0.8236907,1.1965005,1.0779691,0.8158045,0.64772224,0.550551,0.46726465,0.4078031,0.3543661,0.299677,0.23297776,0.17745318,0.12272273,0.16689624,0.7812772,0.90539247,0.6899861,0.5300707,0.5048185,0.4995774,0.75051886,0.95523083,0.7297959,1.058969,1.0019041,0.7162224,0.55293727,0.4520672,0.42752486,0.38491544,0.42130843,0.40490562,0.3997649,0.6497675,1.0583566,0.92389405,0.7844342,1.5048525,1.2415953,0.92086095,0.75881803,0.62197876,0.51346385,0.40035856,0.3175599,0.2321816,0.14428434,0.083033875,0.3206411,0.52479607,0.28640586,0.17219102,0.10522564,0.056535546,0.009505641,-0.018493097,-0.04862767,-0.0902863,-0.04003613,-0.091775015,-0.16928357,-0.21258546,-0.2823886,-0.3301192,-0.34284508,0.058598105,0.5619375,0.24751161,0.09073821,-0.0075345077,-0.064823866,-0.12117869,-0.1666161,-0.056676637,0.46514884,0.23965602,0.0923551,0.021859128,-0.040989306,-0.117883906,-0.19706014,-0.2845726,-0.34748355,-0.39112008,-0.37803102,-0.07968354,-0.123035744,-0.26568455,-0.35642582,-0.42458993,-0.47882676,-0.4989556,-0.50182635,-0.5222363,-0.5288619,-0.5169389,-0.5123674,-0.5339523,0.25454488,0.5119307,0.23668806,0.090491995,-0.013948206,-0.11778298,-0.13289481,-0.17629762,-0.27124316,-0.30977318,-0.3403347,-0.37342662,-0.41117078,-0.4412474,-0.46373665,-0.48476112,-0.5624625,-0.59007263,-0.61404705,-0.6303923,-0.6293434,-0.58948463,-0.64785767,-0.62219226,-0.65547615,-0.6285334,-0.64893186,-0.6693202,-0.7028266,-0.57198495,-0.39123034,-0.29210353,-0.32787737,-0.53575784,-0.5355991,-0.5026975,-0.52083987,-0.4242943,-0.59955645,0.093828544,1.8966172,1.3026725,1.106667,1.0795553,1.5459502,1.5002779,1.8071764,1.4792728,1.1950235,1.2176014,1.474235,1.7260146,2.054909,1.5602531,1.418557,1.2632997,1.484895,1.5905981,1.6659385,1.3683193,1.3103778,1.3211523,1.1474607,1.0187031,1.2975335,1.4241825,1.2445738,1.3951474,1.2431436,1.7863889,1.2361529,1.3167305,1.3324047,1.2915239,1.2330196,1.1576301,1.0698335,1.0887141,1.2108022,1.532254,1.7932261,2.1027591,2.122343,1.3470688,1.1328623,1.0586605,1.170245,1.1439929,1.0893228,1.116334,0.9860586,1.1703897,1.1867917,1.0857958,2.258944,1.5620508,1.2842089,1.5467204,1.2170035,1.133693,1.0977064,1.1329124,1.1705604,1.0234308,0.97615075,0.92245364,0.9415386,1.0522349,0.89453495,1.0061553,1.0293013,1.4410386,1.2255177,1.1496572,1.0297172,0.93442965,0.8553405,1.3810644,1.1707995,1.124769,0.98416126,0.92714995,0.8459357,0.75538146,0.87897074,1.0053046,0.87199247,1.2476692,1.0850191,0.9602457,1.0683913,1.7228816,1.3471401,1.1836753,1.164355,1.0355545,0.8461815,1.0449841,1.2978247,1.0498204,1.5250453,1.2572072,1.3038862,1.3689725,1.5208225,1.2826711,1.4324274,1.6809745,2.4551706,1.5325606,1.3411314,1.209193,1.517529,1.3718402,1.192394,1.0568323,1.1422619,1.1221796,1.4816806,1.3294367,1.1097054,1.4922237
+0.6040731,0.62365276,0.21972607,0.046840187,-0.13152479,-0.24546154,0.56673014,0.25420076,-0.011931982,-0.16478218,-0.18794933,-0.08635527,-0.11539312,-0.30816835,-0.47657347,-0.5489716,-0.61678284,-0.6258428,-0.63833326,-0.6999932,-0.7497333,-0.32633328,0.08468835,-0.23918843,-0.39524853,-0.48209405,-0.5665275,-0.6116594,-0.67299044,-0.7080164,0.4041906,0.41542208,0.2869556,0.042871285,-0.10284084,-0.23008089,-0.29986376,-0.39868647,-0.49905628,-0.52120554,-0.56028104,0.06290221,0.22241332,-0.13400161,-0.24844891,-0.37619847,-0.026343133,0.16132693,0.2924144,0.3876337,0.43099737,0.048154328,-0.16031091,-0.27930248,-0.37970465,-0.48946106,-0.50775224,-0.5710981,-0.6769491,-0.21342127,0.16020162,0.1396512,-0.021310557,-0.21541062,-0.3298158,-0.35432693,-0.18222134,-0.07186884,-0.33047813,-0.4823406,-0.5784956,-0.65979034,-0.6992567,-0.73414457,-0.5922859,-0.6499745,-0.71053857,-0.8110541,-0.91774356,-0.96066445,-0.9957245,-1.0194168,-1.0737361,-1.1005273,-1.1379097,-1.1730142,-1.2023413,-1.0548446,-0.46215802,-0.4858882,-0.46142757,-0.22309236,-0.4689038,-0.6246361,-0.7541166,-0.73880184,-0.78910714,-0.85925144,-0.8935308,-0.7134801,-0.6998217,-0.86230147,-0.5337267,-0.009326626,-0.14330837,-0.3840366,-0.074105516,0.26626548,0.21607886,0.053248856,-0.21726294,-0.36069447,-0.2786596,0.007459674,-0.013703626,-0.29137492,-0.3022805,-0.36043936,-0.5187006,-0.59862804,-0.5641429,-0.516979,-0.1452332,0.43991655,0.139065,0.9766686,0.84250337,0.5966456,0.3482051,0.82737565,0.83565986,0.66983646,0.398457,0.39882216,0.41608772,0.10955417,-0.071079135,-0.16837038,-0.29517895,-0.2508883,0.53530514,0.6122781,0.6880318,0.28112358,-0.027929764,-0.044505227,0.034841847,-0.19055925,-0.16339214,-0.21434635,-0.38110185,-0.5113327,-0.60149205,-0.52597994,-0.08878444,-0.10729876,-0.3618043,-0.48349556,-0.5633316,-0.63556075,-0.71164656,-0.78281504,-0.8618113,-0.94987774,-0.8563414,-0.7651031,-0.51740783,-0.6985042,-0.75317967,-0.7887877,-0.82937425,-0.61986464,-0.6764957,-0.78383136,-0.82469314,-0.85726726,-0.90780735,-0.9425033,-0.9670522,-0.8398658,-0.5840535,-0.7398163,-0.8191148,-0.891243,-0.9746263,-1.0606942,-1.1388886,-1.1768206,-1.2019643,-0.49578136,0.06534463,-0.36647564,-0.5493555,-0.6517068,-0.7185328,-0.76159984,-0.83618444,-0.86478335,-0.8847141,-0.9033955,-0.9162412,-0.9520654,-0.99949807,-1.0082182,-1.0586468,-1.1473043,-1.2016329,-1.2986243,-1.3130587,-1.2920456,-1.2974995,-1.3403876,-1.3337086,-1.3702352,-1.394295,-1.3676996,-1.3634918,-1.3986175,-1.4537301,-1.502054,-1.5408261,-1.5348685,-1.5497012,-1.5458753,-1.5849857,-1.6277215,-1.5105119,-1.2894204,-1.359324,-1.3910065,-1.4418207,-1.4714081,-1.4334306,-1.2903923,-1.3271871,-1.3888407,-1.4444737,-1.4923729,-1.4836683,-1.4930043,-1.4447957,-1.4844859,0.26117522,1.2859863,0.4693581,0.2112387,0.1460254,0.7828762,1.0544358,1.1335986,0.5837407,0.28787893,0.18204378,0.3511572,0.4797765,0.32851678,0.02131525,-0.027305592,-0.07672028,-0.051376432,0.24294724,0.2186035,0.06573507,-0.041275073,-0.07970649,-0.13740948,-0.3173712,-0.28827813,-0.3414887,-0.38743657,-0.25363824,-0.34477732,0.3962553,0.2902633,0.33343345,0.67247933,1.1019084,1.2981713,0.5402033,0.27109385,0.29712898,0.6077706,0.6032687,0.89052963,1.0923147,0.9523328,0.21903838,-0.062212292,-0.17917036,-0.21450546,-0.27722582,-0.27511013,-0.30883318,-0.39384693,-0.04814822,0.91159713,0.9447346,0.9707422,0.42553446,0.1868806,0.18952218,0.02463242,0.010015186,0.024068132,-0.04038801,-0.18517913,-0.27408436,-0.35317823,-0.38604486,-0.43938738,-0.2999171,-0.3630345,-0.101521075,0.44081706,0.6677169,0.2858818,0.22398423,0.01891898,-0.22138862,-0.3130456,0.3425602,0.20918654,0.07390861,-0.024933558,-0.1321272,-0.32805753,-0.4309589,-0.28709066,-0.14574362,-0.3244269,-0.3859023,-0.4676853,-0.44952258,-0.5070538,-0.1788318,0.5342627,0.12561126,0.026413191,-0.030725796,-0.19726072,-0.21302679,0.035476197,-0.16172913,0.19487907,0.046815466,0.44028682,0.27611,0.4800322,0.11688912,0.23431064,0.21454784,-0.15598783,-0.41341084,-0.4338445,-0.5138108,-0.112974405,-0.20710966,-0.3336925,-0.45643306,-0.2413278,-0.07862808,0.4147618,0.17966653,-0.12011962,0.897665
+1.7827425,0.85023177,0.17420675,-0.0023909807,-0.20308514,-0.34501886,0.07541883,-0.082287386,-0.31071293,-0.44498956,-0.48232445,-0.26324528,-0.16587953,-0.35975593,-0.24535744,-0.035645094,-0.3584901,-0.50118923,-0.58487135,-0.68420136,-0.7966878,-0.5929792,-0.3518084,-0.6282999,-0.7522408,-0.81061864,-0.887833,-0.96032596,-0.9760983,-1.0444522,-0.8348098,-0.4129487,-0.37445262,-0.4597504,-0.50476456,-0.5249032,-0.6396108,-0.738362,-0.8157829,-0.82048935,-0.9380296,-1.011553,-1.0316209,-1.0776716,-1.1226778,-1.1997628,0.27540952,0.3307676,0.6043176,0.42666855,0.16445953,-0.14080851,-0.32823163,-0.45760152,-0.5874392,-0.69428366,-0.780689,-0.8837342,-0.9178959,-0.9650372,-1.042153,-1.0868509,-0.35071477,0.32988024,-0.13259281,-0.3076984,0.021742065,0.028442707,-0.33948654,-0.5206705,-0.6406605,-0.74193096,-0.8102686,-0.917129,-0.9973396,-1.000371,-1.0341805,-0.887048,-0.5860257,-0.82969916,-0.94261414,-1.0267324,-1.1009463,-1.1717509,-1.2191507,-1.2681763,-1.3563999,-1.2747421,-0.86128134,-0.11514391,-0.15591604,0.05851618,-0.32908458,-0.5377749,-0.6638822,-0.47595042,0.30798477,-0.05320408,-0.35364532,-0.43502545,-0.5021615,-0.6497266,-0.68991786,-0.726699,-0.90871876,-1.0266635,-1.0610754,-0.031633552,-0.060916547,-0.37475276,-0.5933882,-0.7541079,-0.8021208,-0.91420656,-1.0108652,-1.0743444,-1.1437168,-1.216032,-1.3037841,-1.401236,-1.4208863,-1.3059651,-1.2902129,-0.30000627,-0.07286775,-0.39875686,-0.5464573,-0.64461505,0.057122786,0.15001939,-0.034513097,-0.06686114,-0.29356983,-0.33752063,-0.2983163,-0.31497025,0.41318217,0.05172045,-0.060100224,0.1555782,0.12878874,0.11136533,0.036252778,-0.28999934,-0.48242608,-0.5918478,-0.12627676,0.11916296,-0.32674497,-0.51710165,-0.6311046,-0.6084461,-0.45002964,-0.66970384,-0.13311373,0.14838678,-0.29417083,-0.48705748,-0.6167289,-0.74025106,-0.858422,-0.97753525,-1.081368,-1.1209985,-0.86001766,-0.689455,-0.6561222,-0.85283774,-0.97403145,-1.0286835,-1.0484838,-1.0560284,-1.097368,-1.169037,-1.2153459,-1.2570206,-1.3033514,-1.3394936,-1.3613522,-1.1558061,-1.1906104,-1.2568071,-1.3181775,-1.3855133,-1.4592165,-1.5019344,-1.5491966,-1.5570625,-1.5552967,-1.5560933,-1.5422851,-1.5037253,-1.5374165,-1.5808455,-1.6146989,-1.6241043,-1.6396284,-1.6446289,-1.5398499,-1.582221,-1.5892079,-1.6007755,-1.6147432,-1.5932988,-1.5987182,-1.6485243,-1.6782908,-1.7241824,-1.7207978,-1.7349074,-1.7289612,-1.73492,-1.7375984,-1.7334299,-1.7407025,-1.7275095,-1.7400976,-1.7452074,-1.7491288,-1.7646413,-1.7842972,-1.780355,-1.8066834,-1.811611,-1.8214446,-1.8524171,-1.8952296,-1.8135642,-1.853926,-1.852303,-1.8601763,-1.8563429,-1.8488337,-1.7432047,-1.7398565,-1.7565601,-1.7633255,-1.8415673,-1.8321252,-1.8211563,-1.7443311,-1.7593915,-0.41865218,0.60980594,0.2047633,-0.07934852,-0.21079837,0.16193387,0.5834682,1.1670371,0.46872246,0.13205282,0.012395684,0.10957624,0.19423188,0.061668303,0.48865902,0.65106636,0.12651779,-0.013483893,0.022622954,-0.057133246,0.7560582,0.29215145,0.040005106,-0.05751666,-0.293501,-0.32282344,-0.43908492,-0.4755663,-0.49583718,-0.53653544,0.013618436,-0.018853512,0.06929365,0.6489332,1.3508093,1.1567059,0.4061021,0.094028205,0.39007145,0.8397739,0.46612418,0.6570225,0.7045405,0.37663937,-0.11981487,-0.28496954,-0.4129644,-0.47153512,-0.5276225,-0.5646192,-0.59701085,-0.64607954,-0.6820309,0.6451745,1.1941226,0.7036185,0.20859742,0.003860388,0.24957262,0.03877167,-0.018911812,-0.026717376,-0.13814932,-0.325131,-0.4277646,-0.52650243,-0.48460567,-0.57316715,-0.5802856,-0.60618037,-0.67529523,-0.20343499,0.12192236,-0.18964152,-0.21158566,-0.41070357,-0.5649743,-0.6356219,-0.25953194,-0.23213325,-0.36605754,-0.2737333,-0.3102276,-0.5490664,-0.6405982,-0.68952763,-0.73698545,-0.81218076,-0.8303883,-0.88395244,-0.8255999,-0.68348056,-0.7837142,-0.52588785,-0.47165257,-0.6104151,-0.6471305,-0.72781706,-0.82590216,-0.7897296,-0.751819,-0.8307817,-0.8906312,-0.38845885,-0.0064909123,0.023610491,-0.3478356,-0.33834338,-0.28315762,-0.4105307,-0.5771391,-0.693254,-0.7880894,-0.7997929,-0.7232354,-0.82544684,-0.9519291,-0.9983897,-1.0331296,-1.097957,-1.1477002,-1.2025301,-1.1315486
+0.49570787,1.104734,-0.4983502,-0.8198282,-0.9951152,-1.0913835,-1.008536,-1.1010865,-1.2744577,-1.3340622,-1.3727316,-1.1020385,-0.8383779,-0.67168045,-0.17008395,-0.3748176,-0.77530944,-1.0306367,-1.1378624,-1.22538,-1.3292522,-0.6790699,-0.5459523,-0.94514555,-1.0981688,-1.1894233,-1.3102084,-1.2412447,-1.0132365,-0.979525,-0.66112345,-0.2507562,-0.15618919,-0.43223995,-0.83389145,-1.042409,-1.196408,-1.3005884,-1.4058688,-1.5060039,-1.5786859,-1.6748364,-1.7513764,-1.8837056,-1.9755517,-2.0581312,-1.3186591,-0.5554468,-0.16599704,-0.22472708,-0.5824438,-0.60653853,-0.92699397,-1.1201739,-1.2413639,-1.3584819,-1.5060949,-1.6289849,-1.6895646,-1.7754259,-1.7966182,-1.6832209,-1.7536311,-1.1462685,-0.76579237,-0.670318,0.2516731,-0.20876087,-0.670477,-0.95021397,-1.0658162,-1.1833242,-1.2770103,-1.3962322,-1.508934,-1.5827482,-1.6290698,-1.5868883,-0.31797948,-0.5266114,-0.88918674,-1.059161,-1.1937459,-1.3406527,-1.4753914,-1.5953577,-1.4279828,-0.9051847,-1.0279663,-1.1231017,-1.0723073,-0.90646094,-0.9672055,-1.0910624,-1.0532229,-0.9643902,-0.91686237,-0.98297226,-1.2311187,-1.3698703,-1.4997834,-1.6687763,-1.7850552,-1.6423821,-1.5249078,-1.6665986,-1.812119,-1.906595,-1.7152345,-1.2631572,-1.1982659,-1.3648353,-1.3569993,-1.3031106,-0.7041684,-0.80616593,-1.09343,-1.3293798,-1.5923351,-1.8079379,-1.9703147,-2.0566185,-1.6917981,-1.0420992,-1.0278575,-1.1073927,-0.74019766,-0.6708755,-0.98015475,-1.1464674,-0.8439586,-0.6900086,-0.78606606,-0.97402376,-0.4988992,0.067138,-0.4024241,-0.71752214,-0.93014425,-0.55525094,0.23175849,-0.33545113,-0.6893454,-0.9010751,-1.0304043,-1.1074172,-1.282517,-0.5588174,-0.632107,-0.94616514,-1.1066723,-1.2285144,-1.206797,-1.0950524,0.49030328,-0.33446938,-0.5892433,-0.76202714,-0.93104744,-1.0438,-1.152005,-1.2470908,-1.340989,-1.4078072,-1.2644781,-0.332612,-0.45301545,-0.79563886,-1.0098964,-1.1383467,-1.1981053,-1.1949396,-1.1323924,-1.2669837,-1.369227,-1.4422481,-1.5128337,-1.5822688,-1.6580753,-1.6935495,-1.7399291,-1.7777697,-1.8415606,-1.9223386,-2.0050623,-1.2791896,-0.6453781,-0.98633313,-1.1607225,-1.1049538,-0.42111036,-0.792488,-1.073789,-1.2114344,-1.298657,-1.3549882,-1.4221427,-1.4926931,-1.5529683,-1.6059464,-1.6563009,-1.704347,-1.7549479,-1.7941594,-1.8716531,-1.9162961,-1.9600112,-2.0235295,-2.0296311,-2.0991826,-2.1161861,-2.1405516,-2.1627707,-2.2041068,-2.2247355,-2.25212,-2.2767792,-2.310954,-2.3360934,-2.3641076,-2.4106984,-2.3793097,-2.401542,-2.3790011,-2.3964672,-2.438181,-2.4807105,-2.4469433,-2.4374003,-2.4644473,-2.459801,-2.4617107,-2.4363215,-2.32857,-2.313654,-2.407517,-2.4318125,-2.4609451,-2.431119,-2.4384942,-2.4027886,-2.4724586,-2.4426415,-2.3771071,-1.1839529,-0.66340834,-0.9988447,-1.0793959,-0.0806355,1.3058641,-0.3323901,-0.6015843,-0.69304824,-0.6094596,-0.59561175,-0.7140933,-0.6584626,-0.23265646,-0.4584598,-0.6726341,-0.7624453,-0.6202139,0.21296532,-0.19564264,-0.6010009,-0.7377602,-0.9024564,-0.97058004,-1.0588534,-1.086732,-1.1213402,-1.1801131,-1.0178994,-0.8813968,-0.80748415,-0.22164534,0.092994615,0.26724556,-0.36577362,-0.6241422,-0.6926886,-0.10379778,-0.22269191,-0.07044022,-0.06454159,-0.440007,-0.8179688,-0.94704056,-1.0311675,-1.0932858,-1.1664914,-1.2236347,-1.2709937,-1.320039,-1.3743196,-0.19624062,0.79043984,-0.16616395,-0.56404626,-0.69881445,-0.75444406,-0.83432496,-0.89048904,-0.92678356,-1.0168928,-1.0570358,-1.129457,-1.1950119,-1.2435272,-1.3384469,-1.3114263,-1.3479009,-1.449243,-0.29566634,-0.43075836,-0.70398414,-0.8203854,-0.9615409,-1.0772179,-1.1596522,-1.200165,-1.2531357,-1.2843392,-1.2893661,-1.3436264,-1.4694469,-1.5401279,-1.5692961,-1.4333676,-1.3814089,-1.4565139,-1.5371426,-1.5585883,-0.6533175,-0.60697913,-0.43197078,-0.7032379,-0.91684806,-1.027654,-1.0874732,-1.1998222,-1.2591294,-1.3254168,-1.3729608,-1.4460068,-1.436866,-0.41631535,-0.085387096,-0.6871064,-0.76182574,-0.8471976,-1.0018232,-1.1506367,-1.2459624,-1.3324392,-1.4588385,-1.5410519,-1.6040058,-1.6884,-1.7634461,-1.8406353,-1.8909469,-1.9510782,-2.029184,-2.0231936
+-0.516873,1.1065415,-1.1183233,-1.5763423,-1.7054579,-1.7683653,-1.7802792,-1.8522576,-1.9257288,-1.9614735,-2.0360532,-1.9581318,-1.7342507,-1.4817884,-1.5270827,-1.7012582,-1.7899452,-1.909246,-1.9860219,-2.0751843,-2.1419556,-1.7308836,-1.4493471,-1.8250208,-1.9160222,-1.9270531,-2.002304,-2.125751,-2.1834836,-2.07297,-1.8057314,-1.9429986,-1.7388535,-1.6800947,-1.8071195,-1.9026034,-1.9772389,-2.055533,-2.127055,-2.222879,-2.2686214,-2.3383923,-2.3770733,-2.4289532,-2.4530878,-2.4782257,-2.1304598,-1.022025,-1.3124713,-1.379517,-1.4168589,-1.6850498,-1.8398402,-1.9403704,-2.0122578,-2.095395,-2.1941624,-2.2637465,-2.315778,-2.3581233,-1.8017731,-1.5708585,-1.8298278,-1.9300177,-2.016846,-1.9296477,-0.7522764,-1.2592567,-1.6379813,-1.7896211,-1.8657811,-1.9252803,-2.0278785,-2.1051793,-2.1538925,-2.1140654,-1.923776,-1.8804516,-1.5162618,-1.3712828,-1.7010354,-1.8563502,-1.9664228,-2.0614936,-2.1380334,-2.2063065,-2.2688036,-2.2797644,-2.2662158,-2.2382207,-1.9546573,-1.5551922,-1.6366588,-1.898487,-1.9616244,-2.043607,-2.1092637,-2.177711,-2.234571,-2.2818048,-2.3253033,-2.3526504,-1.2932249,-1.4038807,-1.6409189,-1.7099459,-1.5527437,-1.4881965,-1.3052566,-1.344216,-1.4340675,-1.3368057,-1.3483902,-1.4753416,-1.6393896,-1.7416675,-1.7733876,-1.8616467,-2.0041523,-2.083818,-2.1559992,-2.1990285,-1.8832345,-1.5861301,-1.8593607,-1.611767,-1.4191896,-1.516487,-1.6612923,-1.367209,-1.0982664,-1.0678358,-1.2210375,-1.3327525,-1.3665464,-1.5786576,-1.2387944,-1.4557264,-1.6360283,-1.7439003,-1.820158,-1.9360186,-2.0309231,-1.8520837,-1.3125879,-1.515691,-1.7636843,-1.4384958,-1.5141871,-1.7062194,-1.7718143,-1.8826543,-1.8571358,-1.4032971,-0.19985284,-1.3780115,-1.2124614,-1.2575614,-1.6158957,-1.7864585,-1.8855509,-1.98401,-2.0684686,-2.1115825,-2.1510653,-1.9667671,-1.8226802,-1.9954575,-2.0507581,-2.1026955,-2.0851636,-1.8754121,-1.953304,-2.0219772,-2.0944688,-2.170307,-2.1990669,-2.2138321,-2.0469205,-1.8275572,-1.9716785,-1.9882579,-2.076658,-2.1604218,-2.2389839,-2.2116804,-1.7403173,-1.7781975,-1.9300766,-1.852005,-1.498297,-1.8301892,-1.9540023,-2.0089214,-2.0705981,-2.1247945,-2.1716385,-2.074945,-1.275505,-1.506973,-1.7583995,-1.8539495,-1.9189355,-2.0044541,-2.0587118,-2.0724459,-2.142087,-2.216676,-2.2764025,-2.3052456,-2.3664606,-2.3934813,-2.4179878,-2.4448311,-2.4681687,-2.4637501,-2.4700537,-2.4916935,-2.5527833,-2.522838,-2.5565386,-2.55796,-2.5555768,-2.543902,-2.517469,-2.534482,-2.592548,-2.5866992,-2.5637236,-2.5853999,-2.5989304,-2.6170075,-2.612193,-2.3617356,-2.2156365,-2.329949,-2.506484,-2.5876741,-2.605275,-2.5928938,-2.5362046,-2.5842047,-2.6336079,-2.6529474,-1.8159771,-1.5952917,-1.8469994,-1.8993871,-1.448779,-0.6884344,-1.4417977,-1.5952258,-1.6401918,-1.4347281,-1.558743,-1.7346883,-1.7884241,-1.6704473,-1.6909009,-1.7167809,-1.8058252,-1.8918064,-1.4464489,-1.3854742,-1.5943482,-1.6787814,-1.7788658,-1.842934,-1.8812373,-1.895112,-1.9712499,-2.0219378,-1.8800205,-1.6479404,-1.5419842,-1.7798657,-1.9213425,-1.1448945,-1.4064581,-1.5697973,-1.6228821,-0.6973393,-0.8726342,-0.5378461,-0.7439476,-1.3368442,-1.6744715,-1.7597351,-1.8026108,-1.8562512,-1.9008889,-1.9429214,-1.9963999,-2.0204117,-1.9764864,-1.0390726,-0.11491682,-1.4870832,-1.5832242,-1.548677,-1.6366658,-1.6216681,-1.651493,-1.642623,-1.6427624,-1.6791954,-1.8280966,-1.9038972,-1.963651,-2.0134745,-2.0047028,-2.0580053,-2.0824199,-1.4796658,-1.45765,-1.5839993,-1.627971,-1.7575231,-1.87031,-1.889545,-1.9839098,-1.9509039,-1.9057393,-1.9186441,-1.9602816,-2.088843,-2.1550016,-2.1980968,-2.2391307,-2.2853527,-2.2935858,-2.2415934,-2.2601085,-2.3403788,-2.38264,-1.9196095,-1.6848459,-1.8275204,-1.945588,-2.0372386,-2.0989754,-2.177201,-2.2403247,-2.274488,-2.2940736,-2.3307433,-2.017159,-1.1618186,-1.6348022,-1.4052244,-1.484761,-1.7692968,-1.9409578,-1.9699831,-2.0567796,-2.161087,-2.2268262,-2.2798257,-2.3326385,-2.3854127,-2.4371133,-2.4805098,-2.519002,-2.5574124,-2.585299
+3.2728615,4.4664507,4.5976954,4.6297255,4.664002,4.722855,4.8280363,4.766811,4.7166796,4.6963387,4.692128,4.8190937,4.7901034,4.862187,4.829122,4.610937,3.7543306,3.5255647,3.380632,2.9176168,2.8740842,3.004826,3.0906315,3.10611,3.297748,3.3983915,3.4958153,3.4569468,3.3737884,3.2792377,3.0647638,2.8612032,2.7322679,2.8883438,2.6840882,2.4642925,2.4222815,2.4211206,2.098091,1.9150484,1.7885956,1.7449069,2.8071249,3.3140097,2.843616,2.5386167,2.4275599,2.3170586,2.1158733,1.9590416,1.8174603,1.8084673,1.6966176,1.9670875,2.267644,2.0925863,2.306727,2.7695026,3.1770313,3.1109333,2.8570132,2.618104,3.0041966,3.0661292,2.8840313,3.0873885,3.671986,3.419426,3.165491,2.9637966,2.7074146,2.8480322,2.8285117,2.5404756,2.4529142,2.3166575,2.2299385,2.1555445,2.13348,2.0804,2.6655264,2.9040647,2.7460773,2.6423936,2.46675,2.3716588,2.7003508,3.1704607,2.8084102,2.569859,2.8838704,3.2434142,2.8482633,2.6843305,2.8107395,3.193625,3.0684092,3.010805,3.0351975,2.8477988,2.7001107,2.6409914,3.030782,3.106079,3.0766022,3.0686626,2.840642,2.700304,3.0566354,3.0080304,2.7815475,2.7959225,3.220479,3.1791356,2.9341173,3.130222,2.9902873,2.939885,2.8472557,2.8480632,2.7977526,2.7066984,2.6662533,2.5359132,2.550138,2.5178814,3.1485963,3.2793841,2.9694173,2.850346,2.756083,2.8711276,2.864882,2.8092887,2.7610292,2.8057375,2.723498,2.6954656,2.8035793,2.801671,2.7360797,3.3331723,3.9491043,3.3336673,3.1279595,3.027214,2.9666297,3.1269767,3.0101504,3.271318,3.1908574,3.0599713,3.1736875,2.9759681,2.8765578,2.7878973,2.6740818,2.6769166,2.7057333,2.8911638,3.0174022,3.02848,3.2865558,3.5293467,3.2229705,3.3816407,3.168055,3.0004258,2.8579526,2.9732296,3.0357056,2.888564,2.8135576,2.751712,2.6855955,2.7512188,2.6073415,2.5311875,2.7485132,2.983701,2.8383243,2.7520072,2.6968791,2.6386833,2.6374123,2.612546,2.6026042,2.6071267,2.4895344,2.555026,2.8492875,2.7552686,2.6349125,2.709455,3.1864233,3.24731,3.0345006,2.9673145,3.1752071,3.0211947,3.3673234,3.2602715,3.0412798,2.9776309,2.8049917,2.6917586,2.6883163,2.6376204,2.5379193,2.5674815,2.8346786,3.4337363,3.2810943,3.009603,3.223197,3.1403153,2.8565946,2.7154255,2.7793527,2.7158608,2.6557813,2.6996818,2.567341,2.6860292,2.540636,2.4862556,2.5797408,2.530559,2.4957542,2.6172304,2.5190525,2.8658025,3.2633564,3.2201853,3.029719,2.9168262,3.143953,3.304474,3.5325565,3.6961179,3.8994799,4.0202246,4.252356,4.4643455,4.4656296,4.36522,4.2732124,4.318991,4.3759885,4.563804,4.517274,4.61628,4.525956,4.5029135,4.521722,4.559376,4.570425,4.6160936,4.6231155,4.6508846,4.6464005,4.662876,4.667153,4.739935,4.7850685,4.745672,4.732886,4.7493596,4.7804794,4.8267136,4.8808665,4.8083744,4.75885,4.755029,4.74587,4.7097664,4.7557974,4.7555866,4.746734,4.711047,4.7324553,4.743041,4.7414703,4.71376,4.7399664,4.7653823,4.775141,4.682219,4.6794558,4.698761,4.752349,4.7507124,4.682945,4.751078,4.741481,4.7982965,4.842879,4.811326,4.86605,4.8579326,4.8891344,4.7857695,4.7609944,4.720481,4.7473955,4.727627,4.721551,4.710472,4.697168,4.6956754,4.733014,4.7359324,4.72695,4.7312875,4.731306,4.716695,4.7389746,4.7516546,4.737456,4.732333,4.791336,4.798933,4.773549,4.7249374,4.7740297,4.799878,4.721181,4.8738723,4.830976,4.805582,4.7743945,4.7523947,4.723687,4.7410665,4.8036747,4.7420382,4.686697,4.7072487,4.686557,4.7190814,4.7674284,4.7865357,4.7752953,4.699609,4.690913,4.7165346,4.730241,4.758066,4.7443104,4.7345243,4.7254524,4.738339,4.748899,4.751222,4.761977,4.759175,4.7067604,4.712908,4.8002977,4.7061224,4.7393627,4.8434253,4.895917,4.8536677,4.8817334
+0.04952034,0.083389536,0.0591365,0.07977958,0.21310769,0.37906975,0.5727774,0.3270055,0.1349874,0.36711788,0.6296529,0.32435727,0.13823834,0.111499384,-0.08124618,-0.20567422,-0.33429515,-0.39579153,-0.48254207,-0.5002396,-0.5115236,-0.42337632,-0.46923918,-0.5339941,-0.53759754,-0.06251745,0.3423974,-0.006367717,-0.10913961,-0.114553034,-0.13709058,0.10169658,0.051291544,-0.11200033,-0.20610367,-0.2744468,-0.35144955,-0.366174,-0.41270873,-0.47322786,-0.49061063,-0.43673855,0.15124227,0.6407652,0.38582754,0.20037854,0.011530686,-0.11574659,-0.17756753,-0.27948508,-0.37173277,-0.42010248,-0.47155756,-0.52908266,-0.5643455,-0.6204863,-0.56842077,-0.6524539,-0.43837208,0.092723,-0.1092419,-0.27142182,-0.36839232,-0.48358417,-0.538177,0.056233738,0.36466378,0.14167054,0.013240162,-0.17780001,-0.29992092,-0.27375317,-0.2994238,-0.39418966,-0.4075107,-0.4483186,0.19511344,0.23133682,-0.041093227,-0.23064177,-0.38482386,-0.430074,-0.51458204,-0.63008463,-0.71717715,-0.79768646,-0.73387825,-0.46643645,-0.5791319,-0.6340434,-0.7556396,-0.5393294,-0.43052062,-0.60753846,-0.73405397,-0.87627804,-0.9112827,-0.97771895,0.17774273,0.8673243,0.3490596,0.017961048,-0.06977713,-0.19062625,0.61416507,0.42983034,0.22291295,0.009481136,-0.1266575,-0.27988333,-0.37733063,-0.41298085,-0.4094681,-0.5464295,-0.56692755,0.13278352,0.11907531,-0.09823963,0.011493761,-0.05517878,-0.07069363,0.19724719,0.2907467,-0.011011552,-0.19332786,-0.33266705,-0.41323936,-0.51180196,-0.62077993,-0.68921083,-0.74758387,-0.87381774,-0.89261186,-0.8027736,0.15285827,0.47568226,0.104464725,0.7641088,0.7937045,0.5684843,0.367091,0.5281613,0.5251057,0.38576904,0.14273529,0.009476665,0.15685613,0.093588874,0.06950465,0.140628,-0.081826374,-0.18539818,-0.22805913,-0.31572223,-0.38674688,-0.4592401,-0.51571226,-0.5883666,-0.6427705,-0.5953456,0.17635313,0.18659867,0.30084902,0.26627833,-0.0054394715,-0.15934396,-0.25956175,-0.32289582,-0.41745448,-0.11324005,0.23655199,-0.0824064,-0.24012777,-0.35889423,-0.40482923,-0.44181126,-0.56381,-0.60648304,-0.4204523,-0.16891421,-0.4062785,-0.45536655,-0.45273045,-0.3571701,-0.13881353,-0.27426848,-0.3887437,-0.4835957,-0.5363427,-0.56502795,-0.5522777,-0.6466423,-0.666672,-0.6784815,-0.6647805,-0.6516052,-0.58385813,-0.67065144,-0.40591958,-0.06760463,-0.295617,-0.41830647,-0.0050481856,0.31657386,0.08378732,-0.12684499,-0.23187281,-0.30718756,-0.29286718,-0.18230152,-0.12262635,-0.25270507,-0.28174603,-0.32294202,-0.38260004,-0.32672578,0.0949516,0.08119495,-0.066336915,-0.1940471,-0.20224716,-0.19264387,-0.3251713,-0.3399561,-0.45180207,-0.4023469,-0.29758006,-0.29935777,-0.37129405,-0.38707602,-0.34783262,-0.3994114,-0.15333426,-0.074970245,-0.25851226,-0.2876232,-0.16840883,-0.01073556,-0.08313756,-0.17507254,-0.08579753,-0.015149377,0.00543667,0.06677121,0.124227166,-0.007227499,-0.14547078,-0.16353197,0.0790655,0.20117937,0.20347272,0.1136622,0.15954183,0.27641708,0.5379454,0.71020615,0.8004037,0.9194019,0.8818252,0.98084116,1.0498773,1.0411174,1.1198819,1.2097981,1.2005289,1.1695735,1.2315195,1.2151635,1.201343,1.2371511,1.1929398,1.1891394,1.2631092,1.2591472,1.2871306,1.2496837,1.2196722,1.2686679,1.2222731,1.2206903,1.2266622,1.2133449,1.2041619,1.2645863,1.3466742,1.4465073,1.4960096,1.4504452,1.4116001,1.4395728,1.4279542,1.432194,1.416036,1.4512482,1.4902856,1.4819081,1.3950114,1.2565686,1.0954341,1.0181462,0.8467695,0.5580387,0.4791333,0.42670488,0.53884983,0.79225534,0.8883521,0.8578329,0.95079017,1.0390913,1.0845214,1.1021473,1.0810153,1.1055689,1.0631988,1.1668398,1.2016656,1.2353826,1.1230733,1.085441,1.0343227,0.9689908,1.0465095,1.0741842,0.9352069,0.8758515,0.9087679,0.69408536,0.27588412,0.26129386,0.4173082,0.2242106,0.27367526,0.17247519,0.53438807,0.33682021,0.20362835,0.28399956,0.43808854,0.6189366,0.37860838,0.18231736,-0.0073254816,-0.007775206,0.01612011,0.06529255,0.20921277,0.2916339,0.37412372,0.36958873,0.3789008,0.4033682,0.40144843,0.24330474,0.13784258,0.054334316,0.18414877,0.22259755,0.1279523,0.20668916,0.17306189,0.08342767,-0.05761876,0.1399828,0.44401693
+1.646206,1.3475981,1.2831507,1.2180921,1.1141233,1.1929718,1.7825918,1.3875413,1.4044822,1.292368,1.8910573,1.9818585,1.470764,1.2513696,1.0410058,0.9063635,0.8249908,0.77322894,0.7220112,0.65957934,0.61004394,1.1172637,1.2203865,0.98507285,0.8970229,1.3305688,1.2814997,1.2414035,1.1624686,1.1654257,1.4815346,1.4253047,1.2107495,1.1584771,1.2513438,1.137711,1.0220087,1.0139718,0.9462262,1.4189022,1.4780185,1.2468891,1.3566983,1.4027157,1.2644956,1.1422886,0.9795463,1.2250543,1.122087,0.99742687,1.5252368,1.4891598,1.2913215,1.1888547,1.0649754,1.0106199,0.98888385,0.92854726,0.8668168,0.8713943,0.82056457,0.8159293,0.7800443,0.85468495,0.7216339,1.0303384,1.3744277,1.4415238,1.2069483,1.0590479,0.96176785,0.9773166,0.92533326,0.8671371,0.82782626,0.83772135,1.1760037,1.0785966,0.91673505,0.85252976,0.84587353,0.7966524,0.7099871,1.5132418,1.4596136,1.1993154,1.1010036,1.2486867,1.11576,1.0173277,0.9237138,0.87376416,0.82489425,0.71447647,0.7784289,0.94953376,0.93138367,0.8879297,0.8351731,0.7770797,0.72351146,0.6475122,0.6445241,0.6348826,0.85483646,1.0504687,0.82121134,0.77486867,0.82253623,0.8000916,0.65848553,0.58871037,0.5890645,0.5888703,0.5481826,0.5323917,0.4110381,0.37023902,0.655313,0.954419,0.9454042,1.0294483,0.82123655,0.8051801,0.6702339,0.5246057,0.50792897,0.6281797,0.51160777,0.31463653,0.2672587,0.56264985,0.7520592,0.66389155,0.68518245,1.326848,1.62279,1.4416026,1.6414325,1.3405268,1.1163361,1.0034943,1.0724953,0.9296168,0.7233015,0.61626863,1.0119176,0.937878,0.63842905,0.52410585,0.35357955,0.19985971,0.34235686,0.8003838,0.4668926,0.31565928,0.19550651,0.103283584,0.054239277,0.016400281,-0.030132484,0.3506479,0.6976857,0.9290051,0.59070116,0.40752658,0.31639844,0.24651448,0.1701754,0.22279505,0.5144402,0.3432395,0.18471026,0.053872872,-0.04276212,-0.105947524,-0.19164765,-0.25932232,-0.26472628,-0.15721238,-0.18339448,0.7184041,1.2641307,1.0631688,0.8224715,0.65021074,0.4965703,0.3811824,0.2814489,0.20744638,0.1788356,0.13259181,0.08951436,0.015055258,-0.020550195,0.0071157776,-0.043532368,-0.060141455,-0.042328235,0.08703616,0.21520542,0.13115275,0.9104613,1.9880025,1.4743893,1.1497554,0.97532356,0.9153408,0.8274335,1.0298276,0.9486473,0.84886146,0.9840615,0.9049648,0.7969681,0.7172876,0.730099,0.66576135,0.59753907,0.5576777,0.46482557,0.44502366,0.85470796,0.7797803,0.6935718,0.6687086,0.6990403,0.7219398,0.6398274,0.57690907,0.52722603,0.50048095,0.7698838,0.7631198,0.66644293,0.76422083,0.861404,0.86963105,0.771613,0.70935,0.6648215,0.6386336,0.80630624,1.1277047,1.2752743,1.0106509,0.91069037,0.8099896,0.99269855,1.3193197,1.3156774,1.2042854,1.2628198,1.3932828,1.6218313,2.2610683,2.1245472,2.251237,2.3553326,2.399812,2.9975722,3.6692357,3.0915236,3.2409732,3.3394625,3.5177839,3.533661,3.6997275,3.3773937,3.1847858,2.5670946,1.8530295,2.0787241,2.0255919,2.0417519,2.262461,2.038784,1.9651213,1.8317035,1.5371572,1.946862,2.206448,2.3479576,2.4667292,2.6769245,3.0328727,2.7920027,1.6917356,1.5450462,1.5577468,1.6063085,1.5297863,1.2604051,1.1336753,1.5484965,1.3955762,1.264285,1.3793187,1.3530345,1.2874187,1.2096789,1.1157792,1.0748976,1.0410957,1.0802867,1.2334715,1.3096218,1.2422975,1.3123665,1.5951037,1.911122,1.8736556,2.004111,1.5535128,1.2498784,1.375428,1.691609,1.5634123,1.2195508,1.1878297,1.2132665,1.1802921,1.2028424,1.0485425,0.92717326,0.8355986,0.7743332,0.7354868,0.74645907,0.83758026,1.5830734,1.2518979,1.1916401,1.132446,2.075496,1.4981122,1.2812601,1.3754574,1.5684278,1.609767,1.7067982,1.6051269,1.2603288,1.5262403,1.4871764,1.6812708,1.9135736,2.021576,1.9394925,2.0588477,2.1068668,2.3185267,2.0227666,1.394435,1.1131339,0.91278505,0.90086275,0.92163706,0.85146314,0.78117037,1.3364278,1.2107499,1.0669982,1.04653,2.0154583
+0.75902903,1.5248699,2.0380714,2.3240318,2.2721376,1.8781481,2.405693,2.5465865,2.552245,2.3648417,2.386644,2.721979,2.5039036,2.3389335,2.1506186,1.9880114,1.8364747,1.6947142,1.5991058,1.5761566,1.4938781,1.606565,2.1869655,2.1435277,2.0215824,2.3719935,2.8627272,2.938642,2.9079804,2.7190025,3.0124733,2.9265537,2.7460942,2.600102,2.6859808,2.666658,2.4585328,2.3586407,2.3738594,2.3466082,2.5705009,2.5233154,2.7431812,2.8587942,2.6913943,2.4751487,2.4127998,2.830923,2.718116,2.5528495,2.978077,2.8704746,2.6923537,2.4999628,2.384797,2.3191283,2.258202,2.198908,2.1851096,2.1550457,2.1181483,2.1122692,2.3978407,2.4762092,2.4203234,2.8243294,2.6718702,2.504394,2.3442779,2.2555459,2.1509824,2.1158624,2.0861726,2.0868223,2.0287845,2.0638466,2.1748025,2.140248,2.0422761,1.9992814,1.9562383,2.082335,2.101213,3.544555,3.3124065,2.7991998,2.628958,2.5190356,2.4031456,2.3606274,2.3051624,2.2625103,2.2409897,2.1882997,2.7595143,3.0423293,2.7532406,2.755538,2.6103663,2.4743152,2.342155,2.2620893,2.3785622,2.443014,2.4149075,2.4365149,2.4286022,2.345461,2.4717748,2.4414468,2.2782252,2.168172,2.1341987,2.093733,2.030612,2.0063834,2.6917126,2.655045,3.015415,2.9440336,2.6377177,2.4830446,2.3383079,2.2293446,2.1444993,2.1089013,2.101727,2.1029425,2.0087335,1.9588882,1.9431735,1.8855298,1.8042245,1.796355,1.8267703,1.8780305,1.8927746,2.3438444,2.9429626,2.728937,2.4620385,2.3635077,2.6973972,2.490596,2.2506213,2.0905983,2.0609527,1.9937184,1.8575989,1.7190757,1.8025585,1.7407911,1.5848129,1.6057134,1.5923932,1.4723669,1.3799162,1.3442214,1.3080182,1.2872432,1.2620618,1.3021573,1.2759283,1.440769,1.4112388,1.3117403,1.2014287,1.1033313,1.0451,0.9679756,1.1212726,1.5537617,1.4630835,1.2330031,1.0525253,0.9228221,0.7642808,0.6538391,0.66489077,0.8154162,0.7502535,1.6343056,2.310226,2.2573545,2.0769992,1.9050403,1.6651647,1.5374377,1.4546872,1.4425527,2.234085,2.2756581,2.0861197,1.8887802,1.7534379,1.8208139,1.8232037,1.710951,1.6538726,1.5397211,1.4745617,1.4645884,1.8150322,3.3726249,3.0379114,2.6245995,2.380991,2.2364278,2.1034074,1.998446,1.9549258,1.864089,1.8577842,2.0685618,1.9757795,1.8470548,2.154403,2.3292904,2.1025257,1.9253044,1.7773386,1.6925373,2.1772935,2.1478035,2.0666518,1.9714041,1.8636,1.7812743,1.6916647,1.6547922,1.6009126,1.5529349,1.8570793,2.0036166,1.8721654,1.8171694,1.8183684,1.9083942,1.9732032,1.9838767,1.8725646,1.7632387,2.0792933,2.7386801,2.9040785,2.5865202,2.4251027,2.256474,2.352254,2.5216434,2.6462448,2.4546683,2.354127,2.3398974,2.3557916,2.8964179,2.7110145,2.6784947,2.4941413,2.6125386,3.1056945,3.6379156,2.9328184,2.7670844,2.7475626,2.852998,2.9000342,3.0027447,2.7023144,2.5717382,2.8863592,2.6434228,2.8137321,2.6522005,2.5180306,2.6852605,2.540832,2.7588496,3.06392,2.661493,2.755865,2.8242455,2.9223347,2.9197686,3.094685,3.5273113,3.076406,3.07201,3.161527,3.056172,2.8422146,2.9700134,2.8229902,2.5777082,2.6735222,2.5792685,2.46733,2.8039584,2.8705568,2.6174886,2.6500633,2.5140157,2.3913982,2.3105793,2.2462163,2.2622585,2.3689785,2.3215547,2.219255,2.1392665,2.4143589,2.3415604,2.450964,2.462503,2.8941143,2.677925,2.754334,2.8912382,2.7201645,2.5127501,2.3957658,2.2651858,2.1196086,2.0947332,2.1066375,2.0310454,1.9805512,2.0595026,2.1307435,2.0234823,2.612568,2.4772317,2.420329,2.685142,3.1157744,2.9427981,2.5628047,2.4411545,2.4303966,2.3115819,2.5256355,2.5635285,2.3262181,2.578396,2.4129386,2.3400543,2.294496,2.3144243,1.9815392,1.9730818,2.061003,2.5558543,2.485208,2.297581,2.3068671,2.2212524,1.9970565,1.8950665,1.8196142,2.1661224,2.472995,2.7202518,2.62534,2.4302359,2.8910272
+0.9268573,0.5888051,0.31167838,0.23273866,0.25022686,0.16114019,0.3817462,0.3410735,0.49089128,0.4663416,0.33680004,0.54026484,0.47006524,0.33201027,0.21507935,0.14681213,0.07824157,-5.9049577e-05,-0.08059402,-0.14991264,-0.1844118,0.27648485,0.5488865,0.2962234,0.18183386,0.07315114,0.30555773,0.6810845,0.47459126,0.32707587,1.0156987,1.3944664,1.1385825,0.80231166,0.93081826,1.0005984,0.6879714,0.72078586,0.6062421,0.47869778,1.1485437,1.0658187,1.15037,0.9083122,0.6912873,0.55069494,0.6588791,0.78985053,0.6494067,0.5032987,0.9228466,1.0521946,0.75180537,0.5734594,0.4591648,0.38465446,0.34833324,0.3155551,0.2182856,0.21070881,0.1594546,0.12428303,0.10286154,0.13202228,0.52680063,1.0651976,0.7719457,0.4923722,0.4095238,0.32086077,0.2412057,0.18044476,0.09546091,0.11341512,0.055666033,0.3469334,1.1186159,0.9562058,0.85206425,0.5400564,0.41145825,0.6864077,0.8298858,0.5891607,1.0809543,0.8093283,0.58524245,0.59575224,0.5891522,0.4506391,0.39517254,0.34221458,0.29907882,0.21177068,0.69385517,1.4283426,1.0979819,0.92100406,1.0164026,0.99062705,0.7278402,0.5712806,0.54457307,0.6695977,0.7308339,0.66515315,0.4896528,0.42796552,0.33191103,0.282729,0.24741499,0.18469182,0.13020064,0.09568374,0.04323047,-0.020477306,-0.054843847,0.097344086,0.836977,1.0811167,0.7210764,0.59225965,0.45369053,0.36557615,0.44687685,0.40927297,0.57786906,0.63789237,0.46685517,0.36553964,0.2877847,0.20728837,0.1545432,0.10284276,0.08003692,0.025427226,0.17636703,0.2505501,0.33184344,0.3675592,0.43462902,0.45365474,0.5882291,0.61362374,0.3546695,0.2463225,0.14569412,0.108114436,0.037490983,-0.0319192,0.05295481,0.102189526,-0.022279385,-0.07117401,-0.088390425,-0.17587663,-0.23893626,-0.29120043,-0.34164447,-0.38553354,-0.40988716,-0.44666868,-0.44958478,-0.49758518,-0.4624819,-0.5177642,-0.5622767,-0.5892112,-0.608898,-0.6148703,-0.22387256,0.77779686,0.37952325,0.15600558,0.03231668,-0.062152993,-0.15159911,-0.21550657,-0.2649053,-0.25216106,-0.273605,0.10347898,0.50732017,0.23595206,0.09307468,-0.0057025664,-0.11989179,-0.2070216,-0.26992923,-0.28694513,0.33649927,0.40434724,0.15600085,0.03522041,-0.053687286,-0.11684702,-0.15721586,-0.21864124,-0.28268638,-0.32892948,-0.3609447,-0.4225456,-0.44530573,0.5107376,0.7521417,0.33814505,0.20069951,0.15369846,0.06744945,-0.0007910393,-0.0818229,-0.14902651,-0.23570074,-0.29586232,-0.34366634,-0.4018249,-0.49541384,-0.21816611,-0.007527318,-0.12529282,-0.20643933,-0.29186234,-0.3192314,-0.2586051,-0.27684322,-0.2665266,-0.17605714,-0.19857061,-0.2606251,-0.36645663,-0.3966011,-0.42629212,-0.32891682,-0.1628205,-0.12767506,0.025557745,-0.0026360713,-0.16618456,-0.3169329,-0.39625487,-0.29930347,-0.28703022,0.16112126,1.4354779,1.1985143,0.7863399,0.68433595,0.6763473,0.8314595,1.2325008,0.9973402,0.7682181,0.85033596,1.123348,1.4230993,1.7783341,1.2351265,1.0661631,0.96006817,1.3568037,1.6225832,1.6243556,1.3438939,1.4534847,1.6420233,1.6006652,1.3596954,1.6294304,1.151238,0.9119023,1.187024,0.98624074,1.397644,1.0254314,1.0422058,1.2498684,0.92572147,0.9843129,1.2405536,0.88076454,1.0979164,1.3661313,1.6405473,1.791973,2.0251899,2.310805,1.6856472,1.2272356,1.0714104,1.0974599,0.9473839,1.0152541,1.1672945,0.8963776,0.9459019,0.7948612,0.70081663,1.4220843,1.4427955,0.96869123,0.8123673,0.6512852,0.6060486,0.64856833,0.75155556,0.9159518,0.90192497,0.68613255,0.6245392,0.87295353,1.132769,1.0062582,0.6727996,0.49088615,0.90516025,0.8707721,0.9210265,0.6990777,0.50045234,0.4695146,0.6883395,0.4920671,0.5122741,0.46657658,0.35094988,0.28262413,0.20664386,0.39071548,0.4404206,0.28169078,0.5703068,0.4914071,0.4378739,0.6016754,1.2355466,1.084238,0.6768675,0.6969706,0.8078183,0.66347325,0.6222999,0.54885983,0.3730759,0.5732329,0.49006736,0.61349463,0.73833764,0.9169078,0.81229794,0.9575684,1.1420586,1.6552206,1.0347061,0.7410873,0.570716,0.46600938,0.37381434,0.37558606,0.25216752,0.41060936,0.5225985,0.75588894,0.651743,0.41754743,0.89125365
+1.3858933,0.956141,0.44045657,0.18399212,0.025498461,-0.008752961,0.45780092,0.2089997,0.013687912,0.0015959069,-0.085878685,-0.20748816,-0.15248232,-0.23388773,-0.26259974,-0.26771072,-0.32308686,-0.3943429,-0.46191454,-0.56644106,-0.5968479,-0.3394887,0.017375473,-0.2178584,-0.3208872,-0.40877968,-0.45872232,-0.30699426,-0.25241774,-0.4018669,0.8716663,0.60486436,0.9776207,0.4558988,0.22018956,0.40625468,0.13240631,-0.056698825,-0.18040244,-0.26286718,-0.13402137,0.3995866,0.26806048,-0.020403545,-0.14109161,-0.252474,-0.18394023,0.08513299,0.07264078,0.07979751,0.9136205,0.38234589,0.16778265,0.005378213,-0.14058438,-0.22485842,-0.26046553,-0.3021949,-0.3998637,-0.24574749,0.24227448,0.81747234,0.7341183,0.55798805,0.30435693,0.45867163,0.39307904,0.13333377,-0.040012177,-0.158345,-0.24563189,-0.32671228,-0.39242724,-0.43938273,-0.49648106,-0.27563944,0.008074421,-0.17341027,-0.26968294,-0.39126217,-0.44395953,-0.49885225,-0.46688026,-0.4253304,-0.39838585,-0.3054185,-0.26654842,0.13195102,0.40852624,0.1617683,0.011449423,0.91641647,0.5027329,0.37479913,0.8012402,0.62104464,0.540403,0.33867902,0.18564309,0.046310585,-0.07484533,0.068586856,0.14262876,-0.018223923,-0.07509878,-0.10756369,0.0735763,0.3718531,0.17737141,0.008635368,-0.12157297,-0.22087206,-0.2896155,-0.32565483,-0.4100427,-0.3945608,-0.10524993,0.25704014,0.2798978,0.020281319,0.013906337,0.046479914,-0.021341357,0.39317733,0.48581445,0.9816823,0.98170376,0.5236879,0.49849004,1.104829,0.9018687,0.90450513,0.74826413,0.42470062,0.20597446,0.118212044,0.02102505,-0.113648176,-0.031034347,0.19276153,0.44659317,0.38003677,0.51849914,0.33647382,0.079704046,-0.044924762,-0.14976698,-0.21559797,-0.27143386,-0.30705833,-0.40194702,-0.48271155,-0.38792723,-0.026490483,-0.14688303,-0.3098276,-0.40931267,-0.4605183,-0.5030763,-0.5302966,-0.56408083,-0.59223163,-0.6289978,-0.6530385,-0.6709126,-0.71858174,-0.6987655,-0.7220002,-0.42168596,-0.07313077,-0.2698846,-0.28249836,-0.3267553,-0.4485491,-0.5234219,-0.5674388,-0.60128486,-0.6351571,0.07495803,0.63363934,0.35975808,0.46511322,0.47719753,0.26742443,0.036659006,-0.102283865,-0.20102765,-0.29596484,-0.38205284,0.2391815,1.125436,0.40209126,0.11193217,-0.02868453,-0.12907116,-0.21192713,-0.2721364,-0.317265,-0.3649932,-0.41142875,-0.46026474,-0.4987563,-0.51801145,-0.5195092,-0.46375442,-0.5186065,-0.5780841,-0.61864436,-0.6433985,-0.65853924,-0.66751266,-0.6892828,-0.71420276,-0.7266331,-0.7315831,-0.74083257,-0.7449605,-0.67478037,-0.5343595,-0.60048467,-0.62652117,-0.6730785,-0.7562973,-0.72305274,-0.75141335,-0.73446786,-0.58760095,-0.6207839,-0.6683939,-0.71594435,-0.7478224,-0.78603923,-0.76003516,-0.664055,-0.5754127,-0.46027008,-0.51589006,-0.6808112,-0.75306433,-0.7403829,-0.5399144,-0.49780318,0.7412807,1.2068249,0.5641022,0.31532055,0.3399076,0.88974875,1.0966234,1.1879244,0.85349804,0.46119097,0.47532678,0.9271122,1.260371,1.3572251,0.8285762,0.54388446,0.4046088,0.85404307,1.0964597,0.51180786,0.34122658,0.382603,0.5172577,0.36781213,0.22103716,0.2695654,0.3885783,0.30348492,0.1747789,0.11168592,0.54521346,0.23407795,0.37698555,0.4069212,0.7635645,1.040015,0.6777285,0.39644533,0.5638216,0.9188602,1.3652383,1.7949724,2.1562312,2.3680074,1.58177,0.5359396,0.25593805,0.20150931,0.14899515,0.046905164,0.010462884,-0.08517662,0.24613951,0.34580246,0.2975732,1.2586403,0.8613269,0.41837403,0.20444421,0.08163118,0.15513751,0.2210864,0.33031434,0.40369838,0.2476909,-0.011117104,-0.09789732,0.12188734,0.37609997,0.20061757,-0.09163891,-0.21020553,0.44950348,0.335204,0.37132394,0.006140109,-0.079592675,-0.08207479,0.38414487,0.20020339,0.23086117,0.05505464,-0.1178437,-0.25118265,-0.3180734,-0.20324676,-0.06274332,-0.22059739,-0.23116764,-0.17632474,-0.12134546,-0.20024048,0.5142411,0.31884333,0.06603557,0.20636317,0.32052842,0.20013262,-0.013950188,-0.14032818,-0.27088654,-0.04026139,0.038605038,0.21458007,0.38314542,0.76734257,0.4349923,0.7075491,0.97411656,1.3790195,0.42126793,0.16605155,-0.0174652,-0.14093229,-0.12602781,-0.15413262,-0.33699843,-0.052030873,0.54007334,0.5368663,0.26418597,0.016655996,1.2513394
+0.7361783,0.5576059,0.2034321,0.013193291,-0.11938518,-0.19294609,0.0707784,-0.083981186,-0.22775501,-0.31865543,-0.33287305,-0.34746805,-0.000934612,-0.2680078,-0.41555893,-0.4829089,-0.5413047,-0.58171177,-0.63651025,-0.72676086,-0.7564123,-0.7546576,-0.7284911,-0.7987539,-0.82146734,-0.87404907,-0.93059003,-0.9667266,-0.97886574,-0.9914582,0.06438534,0.70501477,0.791489,0.2527877,0.0010842569,-0.052055445,-0.19803435,-0.34467542,-0.46911043,-0.5687143,-0.621588,-0.66423345,-0.035240795,-0.07989964,-0.289559,-0.40683472,-0.45062256,-0.40875286,0.73358154,0.7073138,0.4261049,0.05985908,-0.13267387,-0.2435867,-0.36174548,-0.48084742,-0.5781587,-0.6400969,-0.2136606,0.3436105,-0.05877159,-0.23309854,-0.35250005,-0.4243958,-0.5392031,-0.2420444,0.1482973,0.006048057,-0.31286275,-0.45304692,-0.57876086,-0.6718215,-0.74854386,-0.868489,-0.84614635,-0.90201765,-0.92155427,-1.0754617,-1.1042347,-1.1644155,-1.2078786,-1.2650596,-1.3097847,-1.3040458,-1.3310469,-1.3648233,-1.3477545,-1.3049656,-0.8275448,-0.59211916,-0.5861604,-0.45029178,-0.75408447,-0.9154736,-1.0143473,-1.0841814,-1.1668872,-1.1234878,-0.7668679,-0.5303111,-0.74074805,-0.7135259,-0.5558524,-0.8210795,-0.9519458,-0.70968497,0.18628204,0.1232793,-0.057627056,-0.20601875,-0.47180492,-0.32678074,-0.113652855,0.031615634,0.081520975,-0.28694713,-0.4041006,-0.58290833,-0.72216785,-0.8575323,-0.8153808,-0.6221615,-0.496872,-0.16740745,-0.4562403,-0.012189548,0.3459133,-0.04080626,-0.2674097,-0.31611997,-0.30162978,0.33767772,0.4726764,0.11812867,-0.09140998,-0.30863503,-0.46375647,-0.55030257,-0.30188757,0.07440041,-0.03052574,0.22713597,0.1675237,-0.2113631,-0.44019884,-0.5045371,-0.6094777,-0.6108458,-0.5138046,-0.6040353,-0.7376969,-0.85881853,-0.93312997,-0.9262551,0.83335537,0.44769222,0.044077057,-0.14489673,-0.30781552,-0.4588896,-0.582513,-0.6944261,-0.80702806,-0.9024514,-0.9098712,-0.81061697,-0.9325218,-0.9836442,-1.0284249,-1.0834094,-1.0856422,-1.0692638,-0.39989114,-0.24092674,-0.43339983,-0.546738,-0.662222,-0.7905134,-0.85171026,-0.71967167,-0.16277336,-0.188464,-0.52427226,-0.687253,-0.82658815,-0.93508345,-0.97462606,-1.0403838,-1.0711923,-0.66763353,1.0294784,0.44416353,-0.027275745,-0.19367516,-0.30498713,-0.4100369,-0.53848886,-0.6082135,-0.651957,-0.7313646,-0.788818,-0.85457706,-0.9023565,-0.9267274,-0.92839164,-0.97787184,-1.066082,-1.0862656,-1.1050597,-1.1528349,-1.2087414,-1.1932317,-1.2363502,-1.2537799,-1.2243931,-1.223037,-1.2539895,-1.2512677,-1.2257804,-1.2490467,-1.2529128,-1.2647266,-1.3779652,-1.3150164,-1.3398912,-1.358985,-0.76804936,-0.28173757,-0.532396,-0.67159307,-0.7598478,-0.83467984,-0.8814737,-0.7214086,-0.7199651,-0.71437156,-0.8012485,-0.9795082,-1.0776644,-1.0692008,-0.9098539,-0.9612963,-0.30567312,0.8839626,0.43050328,0.10927111,-0.023012478,0.24503656,0.8272728,0.9401963,0.46344057,0.1842415,0.2073585,0.3976555,0.5193753,0.30786875,0.07792564,0.10962176,-0.005016815,0.061207224,0.11567159,-0.096460536,0.50943637,0.3052714,0.13181,0.06351298,-0.07574059,-0.113338605,-0.23272578,-0.28595936,-0.33575296,-0.40848738,0.02346893,0.07032566,0.14917867,0.30815306,0.925935,1.042645,0.55171406,0.34395847,0.40010142,0.7603015,0.7841556,1.1297827,1.3417442,1.1094636,0.3103963,-0.063133344,-0.16659139,-0.21980025,-0.25984117,-0.29615203,-0.3605057,-0.43384138,-0.47371277,0.2384154,0.7822472,0.8284985,0.3552311,0.062207844,-0.06446621,-0.1427531,-0.10265604,-0.054755073,-0.06836307,-0.20962061,-0.30149502,-0.40738162,-0.42196947,-0.3501954,-0.2421765,-0.37592143,-0.48121363,-0.16500364,0.70798683,0.28782523,0.21037097,-0.0890246,-0.24832943,-0.3239079,0.32459274,0.2614768,0.04894874,-0.067562714,-0.18983383,-0.32940918,-0.44542694,-0.50137395,-0.5252818,-0.597293,-0.63555336,-0.6397203,-0.6108085,-0.651014,-0.73546845,0.3341971,0.18923871,0.10212758,0.10742675,-0.10492526,-0.2764188,-0.27518165,-0.36081672,-0.08427578,-0.12745139,0.4577214,0.539557,0.7318561,0.21205638,0.28588074,0.37890834,-0.007360805,-0.3105957,-0.4006552,-0.48512256,0.08733037,0.048383143,-0.1575876,-0.34589028,-0.44466895,-0.49688917,-0.57526237,-0.62402195,-0.65332884,-0.12691148
+1.5143014,-0.10928501,-1.3163153,-1.5516069,-1.6868972,-1.6742339,-1.3779691,-1.5505666,-1.7262293,-1.660535,-1.7445145,-1.6305234,-1.6116797,-1.8224566,-1.8664479,-1.9280589,-2.0174174,-2.0566258,-2.1156843,-2.1673045,-2.199448,-2.059454,-1.853632,-2.0626736,-2.1060586,-2.1471136,-2.1774158,-2.2252445,-2.2828443,-2.336392,-2.2129436,-1.3706037,-1.2140785,-1.5225358,-1.744221,-1.7923547,-1.8864086,-1.9800125,-2.0407045,-2.0859365,-2.1343112,-2.191225,-1.7351546,-1.6039797,-1.8219961,-1.9193853,-1.4840271,-1.2985642,-1.4871912,-1.2140436,-1.2949804,-1.4981874,-1.7166475,-1.8052104,-1.877636,-1.9309703,-2.025891,-2.0791285,-0.42207694,-1.2526865,-1.4688638,-1.3582611,-1.3218931,-1.4436176,-1.6726413,-1.4451925,-0.9668873,-1.1045274,-1.5385964,-1.7172356,-1.7946453,-1.87306,-1.9054241,-2.0263894,-2.080056,-1.8233769,-1.5657121,-1.6270913,-1.4801341,-1.740129,-1.8629582,-1.955241,-2.0248353,-2.0929854,-2.1486971,-2.1656356,-2.2558792,-2.2861686,-2.2297778,-1.789515,-1.7998412,-1.9145443,-1.9882329,-2.0818672,-2.1256318,-1.8833513,-1.6543834,-1.7636156,-1.9147348,-1.9838157,-1.9777195,-2.087144,-2.105744,-2.2195807,-2.253179,-2.327455,-1.2383187,-0.8884933,-1.4268785,-1.5113813,-1.500066,-1.6321557,-1.7511735,-1.84697,-1.9431214,-2.0169616,-2.091038,-2.1559925,-2.2227423,-2.306643,-2.3666377,-2.255888,-2.0799167,-1.7259579,-1.4000468,-1.2035435,-1.2142746,-1.4578302,-1.6507425,-1.7801054,-1.7284173,-1.6742823,-1.5392318,-1.4556415,-1.684891,-1.8107182,-1.9161286,-1.9939365,-2.040857,-1.8011968,-1.2762275,-1.2245528,-1.4007032,-1.6916335,-1.8033922,-1.7811079,-1.6598192,-1.2705247,-1.4834223,-1.708564,-1.7449493,-1.526774,-1.5444334,-1.7210263,-0.35781968,-1.2727286,-1.4764031,-1.6165866,-1.7158754,-1.7944784,-1.8588233,-1.9271939,-1.9874535,-1.9730481,-1.6682405,-1.4287783,-1.4379817,-1.6708636,-1.8118986,-1.8852754,-1.9339368,-1.9593302,-2.0517168,-1.9463708,-1.8240414,-1.9287179,-2.0166483,-2.0889173,-2.1367102,-2.1360486,-2.187591,-2.1981616,-2.2246394,-2.2784665,-2.3302338,-2.374341,-2.4008222,-2.4076903,-2.4388719,-2.064993,-0.0018754415,-1.3724858,-1.5364456,-1.6214473,-1.6892627,-1.7576747,-1.8456876,-1.9000573,-1.928869,-1.9820716,-2.0119112,-2.0392828,-2.0718734,-2.0746498,-2.088278,-2.0752525,-2.1139703,-2.1849103,-2.1872773,-2.226146,-2.2334757,-2.2558212,-2.2653291,-2.2773097,-2.3182716,-2.3190415,-2.3207436,-2.3213193,-2.3128514,-2.2921646,-2.3173988,-2.286892,-2.3640776,-2.334227,-2.299265,-2.3784401,-2.1949842,-1.7672518,-1.9215763,-1.9919955,-2.0615196,-2.1104112,-2.1452467,-1.94691,-1.8755103,-1.919276,-2.059952,-2.2105799,-2.2543824,-2.2464373,-2.097042,-2.1686513,-2.2597904,-2.1995134,-1.726487,-1.4285197,-1.6025646,-1.5210655,-0.95191413,-0.35841894,-1.2583901,-1.4458408,-1.2191755,-0.7683502,-0.73864025,-1.1464505,-1.1036415,-0.9822654,-1.3923882,-1.1721509,-1.3412858,-1.5996196,-0.9482695,-1.1854128,-1.2794485,-1.3911126,-1.5536196,-1.6266409,-1.7330625,-1.7516668,-1.7839429,-1.8495317,-1.7073629,-1.4373901,-1.1545196,-0.985335,-0.488984,-0.561802,-1.3288472,-1.422446,-1.2356757,-0.78644514,-0.6820615,-0.21566512,-0.22074844,-0.9917354,-1.5473425,-1.6460404,-1.6803453,-1.7183108,-1.7592069,-1.7881503,-1.8372236,-1.8583901,-1.8897824,-1.2634369,-0.5225376,-0.8787291,-1.4321611,-1.474716,-1.2921908,-1.2978617,-1.1269764,-0.99193746,-1.2174542,-1.2624276,-1.5049675,-1.6780331,-1.6931745,-1.7431867,-1.7139231,-1.7326741,-1.8332934,-1.3326082,-1.2040038,-1.2576458,-1.3236161,-1.6057496,-1.7421529,-1.7191398,-1.2604028,-1.4001336,-1.4485635,-1.5600498,-1.669586,-1.7910211,-1.845797,-1.7624376,-1.7066183,-1.8559968,-1.9047275,-1.8780373,-1.9162055,-1.9249998,-1.947732,-1.839178,-1.723954,-1.6864879,-1.7696726,-1.9022616,-1.9593011,-2.060666,-2.0990016,-2.116315,-2.1116185,-1.9061428,-1.1604902,-1.064557,-1.3798066,-0.9745851,-0.85666627,-1.24423,-1.6680175,-1.724089,-1.8204873,-1.5676949,-1.590278,-1.7168798,-1.8316348,-1.9181654,-1.9464092,-2.0199919,-2.0894814,-2.1599233,-1.9429712
+0.042353366,0.7323455,-0.33217326,-0.6615251,-0.78840566,-0.8936569,-0.98046887,-1.0829413,-1.1869117,-1.2125957,-1.1946111,-1.1225098,-0.88773894,-0.91830623,-0.38927466,-0.4628332,-0.78954595,-0.9487822,-1.0624782,-1.1633824,-1.2429154,-0.9049258,-0.42675495,-0.81980395,-0.99460864,-1.0848858,-1.152289,-1.2404472,-1.2998512,-1.4077924,-1.0672406,0.0073763914,-0.21521479,-0.06175665,-0.3623234,-0.695133,-0.8687048,-0.99866396,-1.0758597,-1.1252913,-1.1655704,-1.2280812,-1.2537224,-0.9900676,-0.99686676,-1.1803658,-0.5208374,-0.037537288,0.19263507,0.041464467,-0.17345284,-0.42212912,-0.6912454,-0.86735517,-0.9873481,-1.0604928,-1.1992574,-1.2649825,-0.77809614,-0.37432444,-0.65908444,-0.72663665,-0.2501397,-0.06491627,-0.06954934,0.21591283,0.7726975,0.11539893,-0.34819582,-0.5704211,-0.7165661,-0.82640207,-0.9101071,-0.96656775,-0.318921,-0.07916115,-0.41229904,-0.45292145,-0.06889133,-0.32947674,-0.63922673,-0.8129383,-0.9291819,-1.0192915,-1.0883152,-1.1417768,-0.7668263,-0.12883072,-0.53375256,-0.34440106,0.118346974,-0.107613936,-0.37208158,-0.6117805,-0.72284764,-0.85550714,-0.9114946,-0.9077572,-1.0411072,-1.120194,-1.1545076,-1.2588055,-1.3196613,-1.3648689,-1.4138777,-1.4396849,-1.5026152,-1.3586923,-0.96379215,-1.1381936,-0.43148834,-0.44330373,-0.6740386,-0.7822441,-0.5222195,-0.34274766,-0.7062807,-0.85594165,-1.0078452,-1.1257443,-1.2282752,-1.2664325,-0.7632847,-0.6424161,-0.8415706,-0.59622544,-0.22788273,-0.54361457,-0.8121557,-0.8346855,-0.34861523,-0.58511823,-0.660552,-0.59515053,-0.83337414,-0.976523,-1.1059235,-1.1839105,-1.2390206,-1.3183672,-1.3772444,-1.0139424,-0.6496693,-0.9116788,-0.64163876,-0.19575597,-0.54694766,-0.15705587,-0.35318872,-0.62434685,-0.68702257,-0.74647456,-0.5675947,-0.14178438,0.46026665,0.042326648,-0.3215268,-0.52377766,-0.70107204,-0.8270487,-0.9283596,-1.0192591,-1.0998529,-1.1494062,-1.2099493,-0.87274486,-0.31975454,-0.5573038,-0.7835847,-0.93330073,-0.99823326,-1.042159,-0.988522,-0.56991434,-0.7919347,-0.90236706,-1.002342,-1.1210699,-1.241607,-1.1922803,-1.2874776,-1.3276169,-1.4054555,-1.3538686,-1.4685324,-1.4968928,-1.5400718,-1.5522773,-1.6038984,-0.2062478,0.8703514,-0.27499598,-0.5044166,-0.60509354,-0.69913065,-0.7825313,-0.88864154,-0.9040783,-0.78726566,-0.9274614,-1.0214624,-1.0766709,-1.1334293,-1.1392543,-1.2010796,-1.2659458,-1.3015213,-1.3407184,-1.359046,-1.3626151,-1.3872766,-1.403925,-1.4166837,-1.4221976,-1.4584827,-1.4600406,-1.4644108,-1.4683735,-1.5400269,-1.5452942,-1.5739349,-1.583187,-1.5739563,-1.5821049,-1.595377,-1.6200664,-1.6203156,-1.6339836,-1.6595879,-1.6680967,-1.6972902,-1.710623,-1.6845264,-1.5554613,-1.5326016,-1.5787857,-1.6477302,-1.6558353,-1.6863177,-1.7222778,-1.6803553,-1.708689,-1.7262707,-1.6953102,-1.464481,-1.0598079,-1.2059468,-1.2903292,-1.2325312,0.7938738,-0.15862943,-0.42398673,-0.5197506,-0.46363854,-0.5196995,-0.6209911,-0.47053528,0.07274367,-0.20121874,-0.4795617,-0.5715531,-0.73183376,-0.24210827,-0.15336318,-0.46902055,-0.5947671,-0.68657714,-0.7704391,-0.85459995,-0.88119036,-0.92590535,-0.9730394,-0.7994977,-0.60986966,-0.6001056,-0.68245804,-0.79667467,-0.49983555,-0.29581487,-0.5324341,-0.67112255,0.10451363,0.024437357,0.00428601,-0.25530595,-0.55245984,-0.690695,-0.77028596,-0.8333292,-0.8928737,-0.9502067,-0.99116886,-1.0160658,-1.040347,-1.0799555,-0.47477314,0.6975128,0.1277035,-0.3873251,-0.5479876,-0.6346861,-0.7735643,-0.8731118,-0.9491559,-1.0140258,-1.0262768,-1.0609926,-1.083108,-1.088275,-1.0905119,-1.076811,-1.1374391,-1.0906444,-0.37266234,-0.2942513,-0.5560194,-0.7193075,-0.8390863,-0.9196949,-1.017858,-1.0560902,-1.1201607,-1.165623,-1.1627684,-1.1814005,-1.2594489,-1.2967756,-0.6531412,0.06790961,-0.43961537,-0.640771,-0.80386966,-0.9113445,-0.8180617,-0.7369152,-0.56677544,-0.5566344,-0.7593281,-0.854905,-0.90978044,-1.0119205,-1.0817415,-1.2011844,-1.2457486,-1.31736,-1.275605,-1.1341836,-0.36348894,-0.6082263,-0.6851251,-0.73648787,-0.9151797,-1.0501872,-1.1409364,-1.2030201,-1.2613429,-1.3025866,-1.3489159,-1.430714,-1.4549621,-1.4766517,-1.4954424,-1.5272322,-1.5085131,-1.1784294
+-1.5018617,-1.7177494,-1.5519532,-1.8115524,-1.9145348,-2.0532222,-1.8268828,-1.7665484,-1.9731084,-2.065519,-2.127633,-2.1795883,-2.2910168,-2.3110104,-1.7017053,-1.6857474,-1.8900009,-1.9857272,-2.062897,-2.1369698,-2.2235913,-2.2626345,-2.3112895,-2.457654,-2.5152278,-2.5279994,-2.5950818,-2.6374776,-2.7027483,-2.7488215,-2.7626498,-2.8145933,-2.7168932,-1.1947081,-1.0493982,-1.5565152,-1.7050893,-1.8141643,-1.8841281,-1.961779,-2.0455017,-2.1551845,-2.2138708,-2.3325367,-2.4208539,-2.4493396,-1.2212992,-0.5069263,-1.2691267,-1.3381631,-1.3314964,-1.5386407,-1.7110295,-1.8159449,-1.9016737,-2.0115354,-2.0757132,-2.1468148,-2.1027386,-1.6339755,-1.7125738,-1.5748413,-1.6342766,-1.8760437,-1.9657896,-1.8721601,-1.2163137,-0.8140147,-0.8175401,-0.93101543,-1.0526643,-1.3260353,-1.5568521,-1.680746,-1.7629781,-1.756844,-1.3817797,-1.4508691,-1.3452847,-1.2610433,-1.5211363,-1.6949263,-1.7978927,-1.8849387,-1.9586548,-1.9378498,-1.6010776,-1.6504104,-1.5651115,-1.2038708,-1.3375354,-1.3354069,-1.3313237,-1.3482523,-1.6203623,-1.7419181,-1.8467758,-1.9298117,-2.006125,-2.0617428,-2.1485715,-2.2235754,-2.043696,-1.4504111,-1.357447,-1.3865316,-1.4913157,-1.6271467,-1.6115705,-1.1512685,-1.2947463,-1.2612032,-0.99360645,-1.2315495,-1.1965278,-1.3789623,-1.5423152,-1.6599678,-1.7974777,-1.592315,-1.344477,-1.6494172,-1.7737149,-1.8983431,-1.9347868,-1.8078485,-1.4182677,-1.6371269,-1.6080393,-1.5151613,-1.4883643,-1.2604048,-1.3670547,-1.0721862,-1.2671703,-1.5293144,-1.6689248,-1.6059889,-1.4756862,-1.6882813,-1.7411242,-1.8851612,-1.9550996,-2.0031042,-2.070434,-2.0940964,-1.4529382,-1.4015086,-1.5826187,-1.5958811,-1.5348533,-1.1231163,-0.96026546,-0.87554795,-0.94295406,-1.1944625,-1.2232705,-1.220115,-1.3590842,-1.6140214,-1.7349448,-1.8037379,-1.8355513,-1.8784525,-1.8835089,-1.5730319,-1.6452992,-1.7972188,-1.9051285,-1.5922449,-1.6383915,-1.4433881,-1.1287245,-1.3607659,-1.5239109,-1.6923611,-1.6649998,-1.547199,-1.4984747,-1.3867508,-1.4708514,-1.560709,-1.5103706,-1.6528764,-1.647101,-1.6601768,-1.647351,-1.6000079,-1.282525,-1.0628576,-1.4282402,-1.6680274,-1.7698137,-1.8519416,-1.8839195,-1.8374088,-1.8974929,-1.9136211,-1.8393381,-1.9550831,-2.011939,-1.9987241,-2.0591083,-2.0745897,-2.12844,-2.1544845,-2.1957698,-2.2489595,-2.3146777,-2.330071,-2.3580058,-2.396028,-2.3946846,-2.3972583,-2.4387558,-2.4662704,-2.4760904,-2.4437094,-2.5418346,-2.545096,-2.535778,-2.5546331,-2.5423267,-2.569037,-2.5652032,-2.5866446,-2.6282558,-2.606206,-2.6066895,-2.6372666,-2.6347628,-2.6469972,-2.659946,-2.6552942,-2.6024764,-2.6097429,-2.6602745,-2.728942,-2.7310472,-2.746537,-2.754651,-2.7233639,-2.705975,-2.723412,-2.654407,-2.7189784,-2.7213683,-2.749032,-2.7124732,-2.1586013,-1.5087538,-1.8384731,-1.9136711,-1.9665732,-2.0688107,-2.0184488,-2.1060123,-2.132766,-2.16834,-2.1845467,-2.210043,-2.254476,-2.0550544,-1.7769232,-1.7886056,-1.9456193,-2.000736,-2.0552158,-2.0995917,-2.1539803,-2.1357756,-2.1582148,-2.198809,-2.244466,-2.16256,-2.2390146,-2.3248096,-2.3142862,-2.2199564,-2.0380883,-2.165343,-1.7358637,-1.5794408,-1.7914021,-1.8834167,-1.9049753,-1.9751337,-2.0430608,-2.0664697,-2.090112,-2.1210184,-2.1442332,-2.1805568,-2.223174,-2.2463908,-2.2837481,-2.3375418,-1.7547934,-1.624804,-1.7870605,-1.928159,-1.970168,-2.042973,-1.8142412,-1.8203504,-1.9140084,-1.9769435,-2.074662,-2.1428742,-2.1810646,-2.2129533,-2.253747,-2.2740316,-1.6987828,-1.5874417,-1.845624,-1.876901,-1.9531279,-2.0625095,-2.0547485,-2.042128,-2.075615,-2.1385145,-2.117282,-2.180893,-2.2417805,-2.315525,-2.1354709,-1.6037955,-1.877448,-1.9698871,-2.055852,-2.121334,-2.185659,-2.2349734,-2.3036246,-2.4838667,-2.5224028,-2.5453918,-2.570216,-2.6159182,-2.6027775,-2.7012374,-2.7227235,-2.8281546,-2.461521,-1.942878,-1.5471544,-1.6409698,-1.799425,-1.8765606,-1.9238706,-2.0230007,-2.1289742,-2.1393437,-2.239171,-2.3855953,-2.394987,-2.4655943,-2.5270844,-2.6240592,-2.6709483,-2.7566118,-2.7846098,-2.799295
+-1.8520564,-2.148831,-2.0179937,-1.9827105,-2.1683688,-2.2328997,-2.2925215,-2.385667,-2.4567196,-2.5153656,-2.5436974,-2.5835383,-2.617038,-2.4685254,-2.0084178,-2.1221142,-2.249133,-2.3733592,-2.4712696,-2.5408113,-2.5827193,-2.5077927,-2.1795473,-2.3835058,-2.4548304,-2.229052,-1.987591,-2.2187471,-2.2983036,-2.166645,-2.147067,-2.277958,-2.1842816,-1.564456,-1.4618769,-1.8406343,-2.0099885,-2.1253686,-2.2320724,-2.320401,-2.401228,-2.4652011,-2.5202672,-2.5708873,-2.6322148,-2.6735823,-2.334315,-1.2530313,-1.2063928,-1.4976602,-1.5205152,-1.7899194,-1.928196,-2.0428138,-2.1543708,-2.2527435,-2.3444278,-2.2549636,-1.7403822,-1.4025706,-1.6767507,-1.8051503,-1.6847806,-1.6985356,-1.3602542,-1.4097366,-1.0562819,-1.4430631,-1.4712592,-0.8207476,-0.8720963,-1.2468888,-1.4731708,-1.3011196,-1.3762448,-1.7026148,-1.420543,-1.1961613,-1.5913011,-1.6656965,-1.7300245,-1.8765476,-1.8753521,-1.6632985,-1.3845927,-1.6074492,-1.3187809,-1.2605212,-1.3945551,-1.2779431,-1.1217297,-1.4010826,-1.3630967,-1.4479177,-1.4811645,-1.6927037,-1.8363526,-1.7323115,-1.5305338,-1.6438367,-1.8338227,-1.9282858,-1.4037629,-1.4525976,-1.3532093,-1.6617908,-1.450286,-1.4257052,-1.5996484,-1.3241115,-1.6526216,-1.6030036,-1.0762815,-1.4136674,-1.194049,-1.430345,-1.6453651,-1.787308,-1.8654091,-1.8151989,-1.6275699,-1.1258132,-1.4134734,-1.0641999,-1.1708572,-1.2378448,-1.6462262,-1.81549,-1.6872118,-1.4504168,-1.6234418,-1.6574867,-1.7250233,-1.3130625,-1.4594736,-1.5616872,-1.6205773,-1.6842805,-1.4159966,-1.5290668,-1.6804805,-1.7882357,-1.6232034,-1.7148466,-1.8768082,-1.960352,-1.7696257,-1.2661268,-1.521488,-1.644978,-1.6500077,-1.5970955,-1.6222087,-1.1673753,-1.0077294,-1.5945826,-1.8055966,-1.3212241,-1.291744,-1.4590349,-1.69538,-1.8262844,-1.7963698,-1.6817367,-1.8023643,-1.4262694,-1.5054008,-1.7800043,-1.6206908,-1.6385131,-1.7693006,-1.8434229,-1.9420311,-2.0010688,-2.0140393,-1.7269925,-1.4794164,-1.3106703,-1.3884482,-1.136865,-1.520673,-1.4740894,-1.4752133,-1.5430707,-1.5273492,-0.9726578,-1.2800733,-1.5813679,-1.5835893,-1.7087858,-1.9268937,-1.9777906,-2.0302458,-2.0861497,-2.0882916,-2.131897,-2.1763773,-2.2116406,-2.247289,-2.291728,-2.3296692,-2.3398087,-2.3676257,-2.415314,-2.4543972,-2.5046408,-2.50764,-2.5282347,-2.5394208,-2.542828,-2.5609381,-2.575815,-2.5882208,-2.6051745,-2.6228492,-2.616836,-2.630221,-2.658149,-2.6609201,-2.6702235,-2.6657043,-2.6692562,-2.68324,-2.6900916,-2.714612,-2.7192872,-2.7135015,-2.7076259,-2.6721597,-2.7356815,-2.7563972,-2.7471466,-2.7482367,-2.7656302,-2.771998,-2.7710357,-2.7585788,-2.74778,-2.7470317,-2.7163851,-2.7449157,-2.7402825,-2.7386732,-2.7614865,-2.6507318,-2.599585,-2.6448257,-2.6763835,-2.7198043,-2.594664,-2.3208857,-2.4452224,-2.4569054,-2.5204892,-2.5417838,-2.368763,-2.1911073,-2.3384175,-2.3907237,-2.4277914,-2.4441311,-2.4642253,-2.4740052,-2.4881406,-2.50296,-2.5616968,-2.5660431,-2.5798516,-2.5843606,-2.5859723,-2.6109877,-2.6092067,-2.6306767,-2.6538072,-2.6657782,-2.6617517,-2.6708767,-2.5699096,-2.45872,-2.2234163,-2.3300154,-2.1526053,-1.8791628,-2.0308652,-2.0939226,-2.1961017,-2.2702892,-2.3213558,-2.373889,-2.4181361,-2.4465146,-2.4705362,-2.5126953,-2.5394688,-2.5607464,-2.5695486,-2.5857317,-2.22092,-1.9977806,-2.1839638,-2.2575207,-2.2860942,-2.334107,-2.0103672,-1.8287029,-2.0465608,-2.1382883,-2.2071676,-2.2738369,-2.3389347,-2.3801208,-2.423167,-2.4501295,-2.4684474,-2.489534,-2.529811,-2.534243,-2.5580027,-2.568703,-2.564057,-2.48134,-2.2330945,-2.356904,-2.397239,-2.4397023,-2.4780328,-2.5033278,-2.2251964,-1.5826559,-1.949899,-2.0789998,-2.1618237,-2.2173834,-2.2755907,-2.3346672,-2.4000177,-2.4502814,-2.5124686,-2.5347888,-2.56401,-2.5941675,-2.6330085,-2.6525435,-2.679872,-2.721928,-2.7331645,-2.7208686,-2.254436,-1.9194541,-2.1668549,-2.222872,-2.282162,-2.3670743,-2.4478679,-2.4850683,-2.5314548,-2.545097,-2.4009178,-2.515434,-2.5720134,-2.636682,-2.6966772,-2.7384303,-2.7678294,-2.766911
+2.5359893,3.6734018,3.9654322,4.0982056,4.1634064,4.1654763,4.2555895,4.24324,4.22563,4.205155,4.1774626,4.2147245,4.2046533,4.22459,4.2421656,3.9497292,3.4927301,3.132362,2.864601,2.564444,1.9936357,2.274148,2.4049199,2.5190914,2.625414,2.6483068,2.7427902,2.6888614,2.5796742,2.5119317,2.3790615,2.1679668,1.7331679,1.3852919,0.83838344,0.32898718,0.69088364,0.5141481,0.5295395,0.5233201,0.18077937,-0.40244085,-0.14238216,0.5508186,0.27031237,0.3363555,0.21173087,-0.030629225,-0.3184536,-0.49422318,-0.5515207,-0.5629355,-0.6234228,-0.64034456,-0.15800975,-0.31872475,-0.08529958,0.31876683,0.6250502,0.7343802,0.5677407,0.121487066,0.4722358,0.5541804,0.2250507,0.48312068,1.2741363,1.148697,0.8496297,0.4643187,0.114734694,0.4054822,0.46010947,0.087489665,-0.08624649,-0.21291585,-0.29102707,-0.38520885,-0.5029307,-0.54787564,0.053763334,0.31654066,0.11065395,-0.01657777,-0.23018868,-0.38565028,0.12278953,0.868337,0.35117275,0.04209276,0.23175149,0.67815375,0.27074507,0.12772019,0.5012401,1.0420961,0.63983095,0.41983652,0.2024185,0.07707086,-0.06637369,-0.20297511,0.3189323,0.41246945,0.5004792,0.5553767,0.13027094,-0.064323395,0.1550527,0.18228543,-0.0602062,0.025402714,0.6859851,0.9771867,0.45991004,0.66549253,0.7183528,0.26637578,0.13500531,0.04974922,-0.0818773,-0.19914685,-0.29971406,-0.38818493,-0.48016486,-0.4902752,0.55234945,0.74807644,0.41939995,0.12421322,-0.06099838,0.019546982,0.020249706,-0.06140099,-0.17761272,-0.2600518,-0.33492684,-0.24444877,0.1618686,0.11146875,-0.010772597,0.7890363,1.5627227,0.68577117,0.63189554,0.31540507,0.20633611,0.69560796,0.29764932,0.9395608,0.556625,0.4707597,0.70208395,0.4192438,0.16367894,0.009560719,-0.11988324,-0.23674898,-0.17692651,-0.0032500662,0.24668206,0.2397307,0.8149424,1.4155533,0.7926074,1.074621,0.74032176,0.30191618,0.12940238,0.14746301,0.47000903,0.35028538,0.1262197,0.021203894,-0.009992961,-0.03992982,-0.16036607,-0.22098984,-0.08947277,0.21244608,-0.0027865358,-0.13002688,-0.20477812,-0.26335746,-0.3107825,-0.353315,-0.42943567,-0.4893465,-0.53996885,-0.45951268,-0.14016797,-0.18070728,-0.2925004,-0.3289558,0.28156453,0.96060026,0.43024766,0.30984026,0.7170497,0.49369752,1.1367007,0.8058946,0.4931984,0.26880258,0.12876165,0.057695795,0.06524761,0.016118925,0.0089751445,0.1768624,0.49951816,1.1004031,0.8731514,0.57223845,0.88069385,0.6754428,0.2361397,0.19862257,0.26990062,0.21118306,0.10229549,-0.020642538,-0.05287307,-0.017926674,-0.07542859,-0.09321046,-0.020757351,-0.042401757,0.067243695,0.08093041,-0.010459568,0.29307663,0.9432107,1.0828094,1.1259742,1.0155144,1.1712526,1.4590548,1.7191285,1.9513781,2.0924876,2.2650537,2.6894841,2.9836938,3.1659827,3.1922975,3.1704917,3.2939398,3.493718,3.599054,3.6236525,3.7348042,3.7769036,3.7917242,3.8359756,3.9060082,3.9345863,4.029854,4.047699,4.0708456,4.1438065,4.1396885,4.1084213,4.0775356,4.137802,4.108859,3.9947605,4.041437,4.1067038,4.209385,4.141516,4.1096106,4.1030564,4.142069,4.0966005,4.1040683,4.1377206,4.162534,4.171229,4.134635,4.1302896,4.1587777,4.1692657,4.136565,4.149723,4.1082783,4.1438937,4.1402235,4.1424756,4.151568,4.0863776,4.1129827,4.0431657,4.0355363,4.0317073,4.0654645,4.185936,4.1248446,4.136183,4.12659,4.115747,4.112754,4.099847,4.108835,4.111877,4.083936,4.0835247,4.1051817,4.0888987,4.083346,4.1410656,4.126299,4.1319513,4.1568737,4.1273146,4.1195984,4.1524906,4.127826,4.1251254,4.0743923,4.11623,4.1509457,4.1142516,4.0562725,4.0952044,4.0924945,4.0468035,4.0802307,4.13759,4.1328077,4.1255674,4.0646076,4.0891514,4.063531,4.16838,4.1110024,4.1059003,4.0973225,4.0922823,4.108821,4.100265,4.074926,4.1155987,4.1086636,4.128929,4.1348896,4.122944,4.185767,4.165002,4.127634,4.099986,4.1045246,4.1222973,4.075975,4.1224794,4.103919,4.1008744,4.096403,4.150559,4.135045,4.120866,4.1769085,4.1889806,4.1429014,4.141711
+2.420353,3.4570937,3.9143863,4.120312,4.149813,4.1568923,4.202117,4.2427835,4.226576,4.1725826,4.173334,4.1731386,4.2097783,4.1971493,4.211067,4.136688,3.6521654,3.2768874,2.8241425,2.6338573,1.9987769,2.0941525,2.3460426,2.3511925,2.491524,2.5332298,2.4838932,2.4353807,2.3478658,2.1848311,1.9001894,1.370113,1.0401316,1.0311701,0.8017123,0.35973167,0.5760547,0.38563764,0.13320272,0.06860635,0.0007112436,-0.1789454,0.13661218,0.3660777,0.13543211,0.09156029,-0.062004257,-0.092538506,-0.21704476,-0.34258142,-0.38044882,-0.37200606,-0.3987309,-0.4016907,0.30156443,0.15824334,0.10750072,0.21241967,0.7691345,0.37325376,0.2485136,0.073786914,0.07468197,0.17229931,0.037240762,0.514241,1.2029063,0.93812096,0.6571785,0.36373413,0.10057923,0.30402446,0.39906463,0.11012469,0.003238026,-0.07837601,-0.1386973,-0.199639,-0.27705196,-0.32772726,-0.36918464,-0.42018864,-0.36370546,-0.33891582,-0.39370108,-0.41673148,-0.34131634,0.0107457675,-0.062312614,-0.19575408,-0.29788595,0.66121995,0.5355121,0.20078807,0.065319195,-0.024797339,0.58527327,0.5738286,0.658674,1.2571628,0.6425433,0.34364322,0.32204264,0.4563053,0.51762307,0.7751905,0.3669293,0.1964765,0.5123612,0.41636273,0.19051413,0.29101998,0.48883867,0.50914943,0.21555267,0.24524872,0.23856018,0.087935284,-0.0052048527,-0.061748188,-0.111692846,-0.15916444,-0.20181994,-0.24495792,-0.29295728,-0.32778877,-0.22724827,0.018547732,-0.11442971,-0.21204413,-0.2711688,-0.28204137,-0.091498494,0.7021674,0.5164488,0.49762952,0.26463997,0.089324445,0.053570975,0.025339149,0.1489725,0.7301284,1.1928122,0.6853155,0.46369657,0.28516227,0.20637894,0.10528138,0.02710542,0.3923141,0.35080752,0.21411754,0.31702188,0.21926068,0.038580168,-0.04568131,-0.0883335,-0.14825676,-0.10740143,0.13132904,0.6491045,0.4448498,0.4406364,0.7851474,0.3216591,0.6481935,0.70805335,0.29496604,0.15937936,0.18743129,0.64225477,0.46675086,0.33908492,0.1776336,0.3602241,0.41993153,0.18570486,0.045969952,0.13235806,0.47423702,0.28918087,0.111407265,0.021273043,-0.036208104,-0.0017975084,0.030650865,-0.07757278,-0.1413545,-0.19461174,-0.050625872,0.102313325,-0.04024866,-0.15669324,-0.15976723,-0.08607493,0.86528033,0.43995205,0.20292358,0.26340085,0.53808707,1.0645988,0.589146,0.3519648,0.22288577,0.049408864,-0.06633648,-0.017310273,-0.019958925,-0.07076749,0.099779144,0.35857752,0.9713433,0.62463,0.2838887,0.5174694,0.42886066,0.18940152,0.1320375,0.1917522,0.12756644,0.108737335,0.13230854,0.107983276,0.05089144,-0.043431748,-0.039933573,0.08895342,0.021249432,-0.00825746,-0.077827856,-0.103158355,-0.04212341,0.47328722,0.86956203,0.74311125,0.6816095,0.98209023,1.2853003,1.4435744,1.5184265,1.5720061,1.7064575,2.1382248,2.4165745,2.6985998,2.7268367,2.7227278,2.9538522,3.2768226,3.4062853,3.5257106,3.6674464,3.7623599,3.7890627,3.8621097,3.954382,3.9411178,4.0065937,4.0213184,4.0536265,4.1232467,4.1210375,4.065474,4.0555873,4.095302,4.09284,4.0005913,4.0541096,4.114734,4.174155,4.0856385,4.1256294,4.123583,4.134674,4.1289616,4.106527,4.146661,4.1489677,4.1620436,4.1207056,4.108247,4.129398,4.1410394,4.123402,4.1458974,4.082155,4.177691,4.110186,4.1099176,4.11397,4.07777,4.1181517,4.0963182,4.0724854,4.0842824,4.0901575,4.1658287,4.1699553,4.1505246,4.1160817,4.0940843,4.093688,4.0957775,4.1178317,4.118245,4.122362,4.125963,4.125758,4.1173162,4.1112995,4.133631,4.136551,4.171215,4.1703157,4.119156,4.142001,4.1619396,4.142846,4.128906,4.1121464,4.1502795,4.154934,4.1213264,4.103653,4.0866623,4.11773,4.105209,4.0989923,4.1336327,4.195152,4.1426554,4.1006174,4.091673,4.090775,4.169203,4.1647067,4.1405544,4.144119,4.140849,4.1746883,4.1668425,4.0949383,4.117197,4.1373167,4.127141,4.1315813,4.136544,4.182357,4.160893,4.116417,4.1338773,4.132492,4.128496,4.1077185,4.122504,4.1576777,4.0970163,4.1128364,4.208051,4.143235,4.1516857,4.1820393,4.149045,4.179737,4.2068934
+0.12274255,-0.33564508,-0.44985563,-0.47481984,-0.33599424,-0.3316322,-0.42250255,-0.5982682,-0.70881486,-0.60768116,-0.24020997,-0.4469524,-0.6488337,-0.6020635,-0.7138177,-0.8144558,-0.9149885,-0.9768658,-0.99157256,-1.0393646,-1.0851487,-0.96399295,-1.0270114,-1.09426,-1.121552,-0.3593868,-0.096453294,-0.40868175,-0.5456626,-0.64341426,-0.6324937,-0.26013008,-0.37237197,-0.57594496,-0.6319479,-0.6971312,-0.8059169,-0.8471779,-0.86744803,-0.91280663,-0.91787434,-0.95354915,-0.55155885,-0.11347039,-0.3325328,-0.523805,-0.6507703,-0.7197164,-0.79388344,-0.86313975,-0.8734528,-0.9067575,-0.9400641,-0.9887643,-1.0141925,-1.0053507,-0.9810874,-1.0185552,-1.0347216,-1.0185938,-1.045247,-1.0609977,-1.0950718,-1.1070255,-1.1149172,-0.6937486,-0.32986212,-0.52376324,-0.66512966,-0.77465606,-0.83873653,-0.8756371,-0.8845946,-0.94602627,-1.0037022,-0.9751703,-0.77876574,-0.9086318,-1.0487542,-1.0913627,-1.0849417,-1.1556852,-1.2113063,-1.2578242,-1.3065648,-1.3516703,-1.3081012,-1.1336697,-1.1211942,-1.2265165,-1.3091621,-1.1771979,-1.0292544,-1.1621625,-1.2114334,-1.2269928,-1.2493775,-1.3002629,-0.84113336,-0.13415428,-0.41722322,-0.6141318,-0.75053185,-0.86378574,-0.30566818,-0.21651196,-0.5005273,-0.6435288,-0.7244777,-0.84976196,-0.9570426,-0.9964092,-1.0370638,-1.090133,-1.1271795,0.53376615,-0.019656356,-0.2856689,-0.38099217,-0.40569404,-0.33517012,-0.101801634,-0.2889996,-0.4889789,-0.61181384,-0.71825075,-0.7826443,-0.8564462,-0.9412791,-0.99422604,-1.0260881,-1.0754955,-1.0372226,-0.8747809,-0.11513442,0.20960946,-0.26117554,-0.08914024,-0.00092641637,-0.27236655,-0.45080596,-0.29953048,-0.05085806,-0.42442358,-0.5752028,-0.6584037,-0.039903324,0.07296443,-0.33726084,-0.33355927,-0.48852074,-0.62812245,-0.65751547,-0.7042851,-0.78557396,-0.8567096,-0.90638804,-0.92954046,-0.9618084,-0.9777063,-0.47458664,-0.3513633,-0.3952375,-0.07147339,-0.4610241,-0.5803795,-0.6331302,-0.7337288,-0.8124957,-0.48457557,-0.10293548,-0.4731461,-0.58939695,-0.67542326,-0.7434582,-0.7906893,-0.86828566,-0.95900285,-0.79802585,-0.6525336,-0.7947572,-0.78084004,-0.8134775,-0.71616435,-0.08239496,-0.22362831,-0.49637252,-0.62088525,-0.6748322,-0.7508491,-0.8230579,-0.87713766,-0.9616418,-0.9803933,-0.9567171,-0.9878044,-1.00047,-1.0191445,-0.7068364,-0.5594372,-0.7229015,-0.83172774,-0.53630483,0.23834191,-0.18182194,-0.45247716,-0.5683429,-0.64335394,-0.7290177,-0.6256275,-0.6662874,-0.76621234,-0.76143265,-0.7888316,-0.8013829,-0.6620921,0.030830402,-0.1858593,-0.44015953,-0.550538,-0.6060487,-0.6398153,-0.6945244,-0.7387171,-0.8019306,-0.8064809,-0.79770625,-0.8172795,-0.83194584,-0.84018505,-0.85340106,-0.824224,-0.6632438,-0.7163596,-0.82735616,-0.84547985,-0.745414,-0.6981292,-0.7456734,-0.8164678,-0.8319372,-0.78181887,-0.44097552,-0.39546034,-0.1638496,-0.3448942,-0.53027093,-0.59790295,-0.32003665,-0.21291025,-0.3645776,-0.49261189,-0.52871627,-0.4516905,-0.3236454,-0.30757385,-0.30084914,-0.13383685,-0.043257188,0.03383645,0.16060676,0.1416917,0.14217104,0.3400766,0.36383653,0.31903315,0.28357095,0.28429502,0.18032233,0.28478432,0.24607359,-0.015916165,0.038941983,-0.03101034,-0.0630313,-0.17039211,-0.08905892,0.0033297054,-0.26007554,-0.3324909,-0.13092071,0.021509726,0.072338805,0.22913007,0.4132465,0.45002723,0.10789648,-0.026974287,0.078895554,0.18035561,0.226234,0.3991738,0.25797737,0.03261276,0.12050724,-0.006995864,-0.2741041,-0.38446513,-0.48319146,-0.56585217,-0.6306281,-0.6888658,-0.6797528,-0.6877401,-0.6483929,-0.5274652,-0.541204,-0.6370665,-0.5501767,-0.3717004,-0.2477599,-0.34979457,-0.12460111,-0.2463321,-0.45718744,-0.25507137,-0.1971727,-0.22059245,-0.40920436,-0.3919956,-0.43312308,-0.5443911,-0.4704222,-0.39405453,-0.51519084,-0.5172077,-0.52807176,-0.6059044,-0.66942877,-0.5364332,0.88262033,0.15572955,-0.104540125,-0.24717854,0.052793805,-0.12653264,-0.30347627,-0.2803667,-0.106411174,-0.11147098,-0.036558907,-0.21629706,-0.45341152,-0.47902805,-0.45334673,-0.4049906,-0.35209703,-0.27562883,-0.23484011,-0.2258672,-0.15607978,-0.09828107,-0.19266605,-0.42609328,-0.5037962,-0.57346165,-0.48470443,-0.49762592,-0.37507063,-0.3459,-0.41777134,-0.47749284,-0.5947539,-0.2986917,0.2547245
+1.415404,1.1674383,1.2403728,1.5169684,1.5693067,1.8270731,2.030686,1.6035291,1.4946334,1.6893853,2.3077497,1.9284742,1.5039766,1.2439182,1.0523429,0.91726094,0.8149345,0.728186,0.66784185,0.6256068,0.61270297,0.745531,0.76696175,0.6368885,0.60500526,0.94995457,0.96602774,0.95533395,1.0408627,0.91411763,1.4037324,1.7257228,1.4368562,1.2161301,1.1171105,1.0092348,0.92622256,0.8631928,0.77016556,0.7892039,0.82341623,0.98382807,1.5248332,1.3847361,1.4817942,1.2477511,1.1062151,0.9829148,0.8792244,0.8078772,1.0859706,1.2030358,1.0420647,0.97030413,0.92636216,0.88971883,0.8636085,0.80521667,0.79315966,0.7688004,0.7236752,0.703877,0.8126151,0.872118,0.74377483,1.4531806,1.4078327,1.4355246,1.3557136,1.1620302,1.0832106,1.0485737,0.9819037,0.88226944,0.86827016,0.8123973,1.2967079,1.47294,1.1566646,1.0583326,1.0246038,1.0767648,1.0018578,0.9724722,0.9850267,0.8953681,0.86156625,1.0067899,0.9500891,0.85044986,0.803026,0.82706356,0.8403492,0.7755225,0.73810005,0.8599552,0.9142772,1.8601199,1.8696104,1.8681124,1.5787432,1.3664706,1.2678797,1.2148635,1.2951798,1.2539271,1.1103004,1.0788369,1.3336365,1.3391922,1.1631124,1.1011832,1.638123,1.4707,1.2112955,1.2047615,1.146404,1.0536189,0.9839661,1.0411537,1.3602216,1.3526909,1.2392931,1.0978366,0.99378514,0.92617863,1.1885277,1.2157557,1.0262786,0.9458261,0.8696853,1.1247238,1.6052661,1.5885937,1.626508,1.6587329,1.428399,1.4092498,1.4353085,1.245872,1.1517832,1.1166303,1.067369,1.0714787,0.97517025,0.914732,1.0833772,1.0604942,0.92041016,0.87341714,0.8121105,0.7476129,1.0168884,1.1176827,0.9469905,0.85675776,0.7907373,0.7378241,0.70649517,0.71411026,1.5735501,1.4679161,1.2627807,1.8359548,1.3600708,1.1918409,1.0757048,0.9835706,0.92774284,1.4170762,1.9243989,1.5494897,1.2721496,1.1160359,1.029906,0.9626695,0.90716124,0.8260296,0.99562883,1.1558664,0.9788952,0.9186897,1.5993519,1.7134995,1.5882146,1.4156107,1.2098489,1.1134214,1.0452683,0.97218263,0.9332936,0.84968054,0.7843411,0.78389496,0.7797644,0.94398236,0.91985905,0.8616359,0.8487526,0.85677207,0.8360363,0.9067726,1.8295965,2.3291957,1.8379228,1.5419884,1.5294096,1.4758792,1.375555,1.8758665,1.7264776,1.5108366,1.6242495,1.5263835,1.4003838,1.2851825,1.4931021,1.4049187,1.2806004,1.1933291,1.1312003,1.103792,1.3961399,1.3260317,1.1894004,1.1168993,1.0856395,1.0506936,1.0057706,0.9493311,0.90072656,0.9054804,1.1732893,1.3426139,1.1048651,1.0437691,1.1047928,1.2196231,1.2099028,1.3274562,1.2771006,1.1885432,1.1477158,1.1840624,1.6456842,1.545507,1.4156637,1.3143857,1.2733433,1.3391438,1.5077548,1.3558311,1.408067,1.6028183,1.8531454,2.3284903,2.3808877,2.5245547,2.652782,2.7962837,2.9085124,3.3505485,3.4487138,3.4849277,3.502978,3.659512,3.7017224,3.8303728,3.7459588,3.6546762,2.915125,2.2363482,2.2374768,2.307404,2.3673637,2.4168973,2.4394104,2.523665,2.3155546,2.1839285,2.3972363,2.6497443,2.7147465,2.8239555,2.8732831,3.180495,2.838383,1.9206516,1.8818102,1.9320323,2.2318285,2.3715248,1.9161465,1.6086199,1.6487308,1.6091719,1.4272552,1.3571815,1.4145924,1.388588,1.3681645,1.3306245,1.3814634,1.4985936,1.6906817,2.0483565,2.362741,2.4802804,2.5725,2.6782606,2.8460064,2.915397,3.2605681,3.0351493,2.6089623,2.663888,2.9465709,2.817349,2.416154,2.323496,2.4029388,2.324214,2.4481645,2.5580883,1.940539,1.5034444,1.26466,1.0966274,1.046616,0.9674262,1.5370938,1.3803983,1.3577048,1.2802069,1.4238343,1.4973879,1.4384569,1.6471593,1.9891162,2.2223506,2.1044354,1.7995362,1.3981082,1.3414626,1.3770945,1.6310544,1.9292407,2.1696115,2.2007225,2.2927623,2.3391395,2.524676,2.498402,2.25632,1.7979196,1.4406853,1.5592234,1.4836872,1.025186,0.88047147,0.89643824,0.9373063,0.8538387,1.2278854,2.0188894
+0.7061951,1.228684,1.1413076,1.2902071,1.1474361,1.098789,1.5534358,1.322578,1.2290456,1.2206782,1.4246296,1.8049457,1.3357,1.2152264,1.0515257,0.93433934,0.822464,0.74237424,0.6968332,0.66727835,0.637335,0.71397144,0.8436514,0.7443694,0.68815213,0.7660632,0.85285515,1.1184049,1.1122987,1.0258057,1.4412552,1.3396462,1.2342424,1.2371452,1.371869,1.2379799,1.1351573,1.0835133,0.9703312,1.0546691,1.4892958,1.351981,1.3655156,1.4436322,1.29684,1.1390215,1.0103852,1.2813079,1.2589772,1.0871552,1.833502,1.8247116,1.5306851,1.3367336,1.1678808,1.0702004,1.0157027,0.9318539,0.84637177,0.83010054,0.77081966,0.7340704,0.68692684,0.74396425,0.6664338,1.0606459,1.2451773,1.6799518,1.3362188,1.1408463,0.9913906,0.90812856,0.8042843,0.7699786,0.71295595,0.61458397,1.5965707,1.9248405,1.3903723,1.186379,1.0408932,0.8923104,0.78487587,1.3267941,1.3860004,1.096746,0.9461128,0.86763155,0.8069724,0.70924896,0.61999583,0.5371051,0.5970211,0.5131018,0.49227977,0.7105215,0.61410546,1.0857108,1.0628498,0.8736217,0.713544,0.5642878,0.482015,0.43067196,0.38742056,0.5087462,0.40851796,0.31954217,0.26961976,0.21834107,0.14696886,0.051229525,0.03098784,0.1740487,0.24646436,0.5315519,0.4676835,0.25186858,0.40703085,0.69880044,0.8584779,1.2538493,0.91059303,0.7593864,0.6198958,0.4246024,0.35157776,0.50678074,0.63341904,0.31218475,0.17962831,0.13024612,0.11417858,0.1160658,0.053420726,0.7551136,1.0654848,1.0737646,1.471056,1.2058434,0.9092697,0.76385725,0.6830534,0.5668373,0.3069513,0.13676669,0.124910176,0.057546865,-0.15712792,-0.29051536,-0.21857819,-0.21552335,-0.3950041,-0.38728082,-0.40416998,-0.5312267,-0.6204591,-0.6928276,-0.75733924,-0.810464,-0.72237504,-0.40808505,0.24101283,0.25629407,0.061616596,-0.10456231,-0.21321142,-0.31964847,-0.41558006,-0.375581,-0.36141124,-0.30643582,-0.45311898,-0.59807974,-0.7022499,-0.7755687,-0.8193618,-0.8347945,-0.8740467,-0.6914274,-0.8233869,-0.5259894,1.4229525,1.174725,0.93541086,0.8160998,0.60416925,0.46776366,0.35383588,0.354732,0.88611364,0.78689355,0.5611489,0.42302743,0.30825248,0.36375868,0.3356706,0.23948376,0.18014564,0.82578176,1.068139,0.83143795,1.0684249,2.2536187,1.868175,1.4226295,1.1794108,1.0919428,1.0132687,1.0662124,1.043231,0.9218427,0.9924191,0.9675573,0.8579234,0.74634314,0.7887566,0.73769975,0.6559654,0.61030746,0.5294549,0.49062848,0.70227075,0.7175641,0.6358013,0.6205691,0.6878885,0.7143036,0.6459535,0.57692707,0.5393981,0.5247629,0.844067,0.9126689,0.77582395,0.81767106,0.8651988,0.9265207,0.8372886,0.8269417,0.7765072,0.7868694,0.91308165,1.2092254,1.4321754,1.14274,1.0312846,0.96758795,1.0585538,1.3026695,1.4548995,1.2837209,1.2299201,1.2937877,1.4954982,2.0897002,2.081492,2.2379994,2.4268923,2.5844016,3.2282586,3.849199,3.057755,3.2411575,3.4111683,3.5908828,3.59345,3.6349647,3.1901963,3.0011387,2.246108,1.7639706,1.9305356,1.9253168,2.0719037,2.209619,2.1023626,2.2319112,1.9455001,1.659729,1.8877839,2.1355615,2.302177,2.4501374,2.6500227,2.8942297,2.6198206,1.8556855,1.6930237,1.6058776,1.6164837,1.5506135,1.3686812,1.2259877,1.3033793,1.3009834,1.2116315,1.8715464,1.807896,1.5699126,1.5559626,1.3607326,1.2905452,1.2564409,1.307057,1.4756215,1.6045777,1.53824,1.5272651,1.8058698,2.0688715,2.114655,2.1050138,1.6405678,1.5078399,1.5434798,1.7932353,1.7255152,1.3737941,1.3579922,1.3539113,1.308453,1.3679459,1.2501264,1.0231265,0.9350822,0.89001507,0.85252064,0.8204452,0.7851571,1.1889756,1.1446874,1.0710073,1.0851176,2.0900505,1.6862681,1.3458409,1.3539398,1.4895871,1.6932664,1.6783502,1.4998507,1.1721079,1.566192,1.538898,1.6053336,1.8133783,1.8609786,1.6575406,1.7181941,1.8318064,1.9074516,1.4730968,1.202565,1.0706015,0.93427324,0.9008584,1.1532422,0.99710226,1.0164512,1.6591294,1.4339795,1.2873391,1.1917899,1.9572446
+0.557454,0.711495,0.8081007,1.1413383,1.139325,1.0572088,1.5711824,1.686189,1.6272752,1.5374763,1.4425784,1.455292,1.2388047,1.11685,0.98548007,0.8953419,0.8288154,0.7901951,0.7379073,0.7030064,0.7066265,0.8564431,1.2085197,1.0502527,0.9428558,1.3819392,1.7879332,1.6235363,1.5632875,1.3754417,1.8367058,1.661895,1.5138652,1.4072329,1.902691,1.8359698,1.5074779,1.349455,1.3722371,1.31094,1.2847483,1.2047328,1.1888499,1.5104218,1.5264621,1.2949398,1.2895141,1.5759103,1.5409352,1.2590859,1.7589285,1.8153447,1.5891204,1.3646088,1.2344885,1.1729759,1.1271187,1.0847428,1.0235229,1.0157067,1.0039009,0.98256385,0.9720818,0.9732022,0.981135,1.5514586,1.6386442,1.3427688,1.1930165,1.0924277,1.0349255,0.96591663,0.84909296,0.8886334,0.8999474,0.883046,1.4686728,1.5694537,1.26261,1.1658669,1.0598238,1.2232043,1.1532917,2.4096484,1.9150708,1.6438191,1.401234,1.440552,1.371856,1.276269,1.1966107,1.1340168,1.0996939,1.0586683,1.4872934,1.9856877,1.4835913,1.4452231,1.2844989,1.1572312,1.1093762,1.0605896,1.0449271,1.0304832,1.1063503,1.0382807,1.0830951,1.014576,1.0823768,1.0918715,0.99405456,0.9191325,0.8594429,0.8223729,0.78643596,0.8670317,0.9267913,0.8523056,1.3267856,1.6724914,1.2802764,1.1537799,1.0478142,0.9756279,0.9912708,0.91655064,1.1985408,1.3260713,1.1261429,0.9707942,0.91052544,0.8745842,0.8202413,0.7819881,0.7629297,0.73264927,0.88554394,1.0327832,1.5438411,1.4906044,1.1577729,1.0650308,1.3086189,1.260746,1.037513,0.97106326,0.8967279,0.8473496,0.7968388,0.90329796,0.90871006,0.7813779,0.7123095,0.70372206,0.6587056,0.5688678,0.51043534,0.48236102,0.4488479,0.40717167,0.38130137,0.36189985,0.42002136,0.3801673,0.3583273,0.34682918,0.31176507,0.2828021,0.3224002,0.34250572,0.4119298,0.7189162,0.55139166,0.41215944,0.34000176,0.3089427,0.258978,0.23708464,0.39016545,0.5809602,0.46645296,0.63224876,2.2302127,1.7237155,1.3524332,1.2445191,1.0906599,0.9756459,0.88573086,0.9053492,1.9451853,1.5637403,1.3091044,1.1549464,1.0572964,1.0764068,1.0166578,0.94476914,0.90682256,0.83030045,0.7824269,0.69456923,0.6902945,1.8086431,2.0348785,1.3464128,1.153791,1.1102507,1.0596219,1.055372,1.0519681,0.94242775,0.9504074,1.268558,1.1645685,1.0053436,1.2330813,1.4387584,1.1923047,1.0802479,0.94506466,0.8658466,1.5478442,1.3990376,1.1857179,1.1176819,1.1287916,1.105749,1.0367076,0.93150353,0.86156917,0.8138452,1.025949,1.0065727,0.909243,1.001861,1.1272701,1.1674347,1.0714002,0.9838855,0.95104754,0.93390346,1.2306573,1.7830858,1.7110056,1.3218868,1.2637354,1.2381608,1.4687182,1.6176176,1.7066474,1.4125679,1.5317116,1.7039058,1.9485431,2.404039,1.9944272,2.0456257,2.0760367,2.145896,2.570101,2.5328524,1.7921141,1.918222,2.16967,2.3083382,2.2648997,2.442007,1.6787633,1.4286958,1.5657663,1.315309,1.7535877,1.5303856,1.6028306,1.9129393,1.7945753,1.8714478,2.1060295,1.6210382,1.881774,2.1529336,2.3354034,2.41008,2.6307664,3.0006645,2.0885208,1.7527342,2.1188993,1.9567432,1.6258388,1.6778846,1.5555022,1.3533614,1.4080813,1.3027017,1.2580051,1.5648301,1.6875618,1.491001,1.2726965,1.1925921,1.2511475,1.3684175,1.495148,1.752942,1.8866502,1.7943925,1.8068328,1.9150612,2.2251246,2.258698,1.7643206,1.3733218,1.4854257,1.5085354,1.7113105,1.7628443,1.3804505,1.3470116,1.3292615,1.1891036,1.2571914,1.2087424,1.1259371,1.0418859,0.9633307,0.89964306,0.91183263,0.8838426,1.2454324,1.2019639,1.1889937,1.4345753,1.6769959,1.3314576,1.1041856,1.1853163,1.3425549,1.3439677,1.4235792,1.4604092,1.1450789,1.2387042,1.092854,1.2601187,1.5162961,1.8188611,1.671004,1.7997918,1.9474968,2.5690694,2.0984635,1.8137136,1.5138018,1.2295312,1.1075621,1.1806653,0.9794309,0.985301,1.5306544,1.7762363,1.5011137,1.2550812,1.6108954
+0.67653835,0.5572048,0.43507433,0.39730152,0.35952795,0.33939213,0.54644966,0.51006746,0.48913443,0.5393234,0.45846894,0.30444673,0.26396108,0.24733408,0.22250827,0.19331326,0.13440047,0.046772804,-0.07007922,-0.09825668,-0.04171068,0.44811684,0.830513,0.58373827,0.46522468,0.33372122,0.49877328,0.60794455,0.81085956,0.6855894,1.4330754,1.5173999,1.3202732,1.0362295,1.4632921,1.2083676,0.92245543,0.7408109,0.6805086,0.74537665,1.405647,1.4039336,1.1626738,0.96529436,0.73238516,0.6075275,0.77207357,0.84525263,0.7833867,0.6708548,1.3925946,1.1856451,1.0068965,0.7812888,0.64316654,0.59621865,0.55424106,0.5011979,0.41699165,0.68222725,0.5824677,0.4948908,0.66734636,0.73269254,0.6862428,1.063618,0.9597641,0.6786108,0.5184096,0.41889513,0.3439378,0.29522222,0.23930986,0.21048233,0.18480451,0.9080869,0.9523525,1.1636599,1.0068383,0.7414098,0.5991856,0.575776,0.5373768,1.275079,1.9426713,1.174567,0.9943259,1.1210206,1.1355045,0.8441776,0.725145,0.64712507,0.84105945,0.75660956,1.3249729,1.5151627,1.0459642,0.8623259,0.9435706,0.75954825,0.64681274,0.5631291,0.9616685,1.0634048,0.8779044,0.7266145,0.6082979,0.54429567,0.43158507,0.33718008,0.29447603,0.24600302,0.18624313,0.17151918,0.12796699,0.14154038,0.31362906,0.6541531,1.1123943,1.3447857,1.0135689,1.0282116,0.98174214,0.8600861,1.295671,1.7917101,1.4306788,1.1279778,0.8932408,0.88255936,0.9085835,1.0011673,0.8173698,0.66423416,0.58767253,0.5778949,0.765105,0.6929053,0.6507369,0.5959962,0.50968826,0.44295874,0.6688682,0.6938325,0.476687,0.4111152,0.32606715,0.25316212,0.1865127,0.16078088,0.082249105,0.017523479,0.013368372,0.43119586,0.5535771,0.2748726,0.17118362,0.12268473,0.047419105,-0.012399636,-0.051912863,-0.09095302,-0.12994464,-0.17383727,-0.22608493,-0.22898601,-0.24816383,-0.30325535,-0.29563743,-0.2856121,-0.2868358,0.021593787,0.44761628,0.16049875,0.034579184,-0.036043875,-0.11920698,-0.1144598,0.30012828,1.2079854,1.0693386,1.5369394,1.924044,1.2912555,0.9703951,0.7779863,0.6260487,0.5414971,0.46024084,1.1726305,2.00587,1.4720573,1.0371872,0.85882866,0.74257886,0.64359444,0.6105278,0.5429832,0.50172126,0.4296982,0.393046,0.3334177,0.32102832,0.44209623,0.4021179,0.28236356,0.21112444,0.19326665,0.16281627,0.16734938,0.10505965,0.06277014,-0.00045354292,-0.004257079,0.020492334,-0.02839024,-0.10772665,-0.10963628,-0.061991148,-0.11373977,-0.15034449,-0.18731946,-0.25466594,-0.20076118,-0.230692,-0.18135308,-0.08706695,-0.051687896,-0.09512292,-0.18617144,-0.2062353,-0.24153692,-0.2192117,-0.1725509,-0.12487461,0.005090885,0.014778461,-0.050321218,-0.1361161,-0.1218179,-0.0028602593,0.06761265,0.564549,1.3651202,1.1111,0.8190708,0.80792356,0.8442647,1.0362866,1.6735893,1.349382,1.010604,1.059239,1.3772632,1.6794305,1.7929528,1.4772532,1.1036947,0.9049077,1.3113663,1.5790787,1.4134203,1.1840432,1.3965718,1.6108074,1.6503162,1.5042925,1.6994791,1.1813337,0.91779,0.8095948,0.6910391,0.9906151,0.8224932,0.9440907,0.9817064,0.816844,1.2724222,1.0575272,0.8981306,1.056464,1.4851118,1.9051672,2.1686506,2.3634315,2.6012447,2.3750093,1.4310874,1.0716336,0.99628556,0.9822514,1.0179195,1.0003206,0.7885325,0.9719573,0.91399515,1.075288,2.044699,1.5034592,1.1243534,0.9359077,0.79363847,0.73801243,0.77174044,0.86088735,0.96550226,0.9830488,0.73977864,0.63123107,0.73337364,0.98411465,0.9829451,0.6609687,0.40823805,0.8455771,0.85780114,0.90035045,0.5902636,0.39079866,0.38332465,0.6158645,0.49516368,0.48041058,0.41962016,0.25525507,0.18521835,0.152252,0.39497408,0.49904287,0.37827885,0.3251185,0.28325602,0.31658593,0.3352891,0.95359206,0.7719381,0.55227923,0.6153456,0.77958226,0.8641372,0.64624906,0.52438384,0.31151825,0.19052608,0.1316026,0.3035719,0.58677125,1.0859578,1.029323,1.1899644,1.3830876,1.7922761,1.0047997,0.688755,0.5454948,0.39307973,0.38637292,0.413944,0.21480641,0.17953342,0.21559553,0.47997463,0.5425186,0.38898343,1.2252326
+0.14151607,0.06682165,-0.09787856,-0.19480957,-0.25038046,-0.16692832,0.28624284,0.11743733,-0.054367866,-0.108569264,-0.16944043,-0.1851355,-0.032661196,-0.13136987,-0.17518228,-0.21129896,-0.26968935,-0.35413438,-0.45808458,-0.5516191,-0.60934144,-0.28262532,0.049240295,-0.1943161,-0.32564014,-0.4339878,-0.52501833,-0.01592755,0.1411702,-0.16337602,0.5624496,0.51353645,1.2840016,0.64717853,0.90106136,1.0011642,0.47456592,0.21896164,0.058368955,-0.08236581,-0.1776769,0.3404,0.7776894,0.2534858,0.09600614,-0.032944407,0.4277485,0.4415734,0.23494689,0.29295206,1.2986689,0.5427378,0.30086863,0.11727409,-0.04464039,-0.21066621,-0.36686456,-0.45722342,-0.58631927,-0.5435785,-0.6566272,-0.74720794,-0.5318219,-0.41363358,-0.5945734,0.09351456,0.5166056,0.22733073,-0.11527385,-0.3058898,-0.47240153,-0.61827314,-0.7417362,-0.83617646,-0.9408222,-1.0232848,-0.7964671,-0.8219851,-0.9363276,-1.0285689,-1.1166632,-1.1829021,-1.2464681,-1.2738209,-0.6272805,-0.32932705,-0.5870403,-0.7480693,-0.7396724,-0.4965459,-0.6474754,-0.13910589,-0.07513106,0.3750441,0.85787594,0.37681434,0.14730284,0.22526564,0.02134842,0.34762263,0.008063618,-0.20196319,-0.32470152,-0.5116215,-0.6779001,-0.8093264,-0.7511698,-0.4641278,-0.6789807,-0.83466935,-0.95211077,-1.0271053,-1.0933719,-0.6380363,-0.41001827,-0.6713009,-0.8234093,-0.91442263,-0.46237007,-0.49627352,-0.74645424,-0.8544444,0.9647665,0.9611823,0.60183275,0.5906851,0.7057377,0.83050567,0.69270194,0.7789128,0.9560354,0.8935736,0.5732397,0.2546308,0.053037036,-0.09221247,-0.2826387,-0.3822005,-0.25380743,-0.12100136,-0.30685568,-0.3992617,0.023347128,0.010952372,-0.33441976,-0.4846852,-0.61135495,-0.73230785,-0.70056456,-0.47129473,-0.68443274,-0.8227069,-0.9319904,-0.40386295,-0.07313126,-0.39536372,-0.58145124,-0.69542336,-0.79864156,-0.9085431,-0.9981014,-1.0712544,-1.1426625,-1.1960037,-1.2457745,-1.2746518,-1.3019125,-1.3445172,-1.3545567,-1.3853856,-1.4180943,-1.331191,-1.117073,-1.2049531,-1.0636232,-0.86360145,-0.9976265,-1.0701904,-0.9777035,0.5309229,0.55782,0.6359725,0.43656462,0.11389373,-0.10083221,-0.27292636,-0.40346482,-0.5085169,-0.6092051,-0.22736543,1.6815761,0.962214,0.41313893,0.2540741,0.13956831,0.024888832,-0.06015336,-0.15833971,-0.22450833,-0.30029014,-0.3846674,-0.45476595,-0.5141748,-0.56627035,-0.6015579,-0.65917426,-0.7484033,-0.7956266,-0.84230447,-0.88982534,-0.9192732,-0.94374245,-0.983005,-1.0186481,-1.0578815,-1.0645009,-1.0975236,-1.1199497,-1.1295292,-1.1590776,-1.1917738,-1.198053,-1.2903776,-1.263391,-1.2896667,-1.3297721,-1.2321877,-1.3210955,-1.2903249,-1.3121712,-1.3400822,-1.3499103,-1.3415604,-1.2865751,-1.2423252,-1.2388662,-1.3056116,-1.337735,-1.239001,-1.2646172,-1.16294,-1.1976135,-0.74956334,0.08363749,0.3243618,0.09007391,-0.08480048,0.19037385,0.62701106,0.9934597,0.5661808,0.25428566,0.2454872,0.39115983,0.5466184,0.4680575,0.23215888,0.10894585,0.043937173,0.13050191,0.3004268,0.27383265,0.31084776,0.1205741,0.21972002,0.16283362,0.04257514,0.104226306,0.07366507,0.016057048,-0.09699342,-0.17030992,-0.012499612,-0.012901168,-0.021646585,0.09384076,1.0422742,1.2828217,0.6195959,0.4222895,0.4429283,0.45615613,0.83053935,1.1757462,1.4303057,1.6284338,0.93445003,0.33072376,0.26595783,0.17231205,0.17006336,0.20637716,0.11701761,-0.0034754835,0.4483752,0.803193,0.86593527,1.4056249,0.9077321,0.5170332,0.30355263,0.20788202,0.1730001,0.13752513,0.15597714,0.091522336,0.04759271,-0.043821346,-0.07012832,-0.062309768,0.16430724,0.069800705,-0.13541104,-0.23257032,0.16251962,0.13954113,0.22845022,-0.05095006,-0.18417403,-0.20130005,0.13982703,0.14165919,0.05297828,-0.078061834,-0.19300897,-0.28910148,-0.34634614,-0.27112857,-0.2290668,-0.35632426,-0.43081993,-0.41205716,-0.41902286,-0.5173343,-0.16561823,0.94593644,0.33133876,0.25382394,0.2845842,0.19579478,-0.034217637,-0.20502894,-0.28268465,-0.3445652,-0.28339523,-0.28079116,-0.19712338,0.62387574,0.2833437,0.32839215,0.36881745,0.4493724,0.11703622,-0.018036406,-0.14250343,-0.2757477,-0.29765663,-0.27156234,-0.4558481,-0.5118457,-0.26632527,0.23431997,0.056254324,-0.15997697,0.6421944
+0.61610556,-0.51097834,-1.1614424,-1.359452,-1.5373031,-1.5088836,-1.4548109,-1.5908964,-1.7518075,-1.6536348,-1.6761118,-1.659136,-1.6229587,-1.814008,-1.881358,-1.9396842,-1.9934845,-2.0255668,-2.100528,-2.1295638,-2.1618798,-1.633234,-1.0112243,-1.5156994,-1.626474,-1.7345076,-1.8197813,-1.8827703,-1.9955497,-2.0536237,-1.2592638,-0.82994986,-0.8398322,-1.1480494,-1.3403058,-1.372646,-1.6188374,-1.7306683,-1.8006389,-1.853326,-1.9330547,-1.7535009,-0.7788542,-1.35282,-1.616089,-1.6819596,-1.4659302,-1.0371127,-0.90064967,-0.85400444,-0.9410455,-1.2765028,-1.4798703,-1.5830941,-1.6847779,-1.7770389,-1.8590034,-1.9755161,-1.3007674,-0.6372608,-1.2105298,-1.3592402,-1.239616,-1.195101,-1.3786467,-1.0103053,-0.65697145,-0.9425239,-1.4369024,-1.5952176,-1.6834581,-1.7662551,-1.8924528,-2.007265,-1.5286996,-1.0565491,-1.3109379,-1.5728788,-1.7111337,-1.8254766,-1.8884695,-1.9683902,-2.0468445,-2.1287756,-2.175559,-2.1704018,-2.1683583,-2.2662401,-1.709511,-1.1077745,-1.503473,-1.6099902,-1.6775718,-1.5680679,-1.2002699,-1.1466185,-1.2835947,-1.4422655,-1.6503391,-1.3590862,-1.4516582,-1.290761,-1.1651635,-1.54916,-1.6763568,-1.6067319,-0.8859447,-0.81942374,-0.9119518,-1.1519954,-1.018998,-1.2574737,-1.4653234,-1.5953872,-1.6983644,-1.8193042,-1.9250851,-1.9690907,-2.0754445,-2.1579618,-2.0824723,-1.6209388,-1.0615951,-0.8093366,-0.9299752,-1.0966748,-1.1309345,-0.8810004,-1.1489352,-1.2160228,-1.0253825,-0.94646204,-1.138515,-1.3654326,-1.4708357,-1.6177866,-1.7339962,-1.8195943,-1.878019,-1.7809333,-1.1808549,-1.2677648,-1.4966109,-1.6958072,-1.7804399,-1.8399532,-1.9439445,-1.9858038,-2.015541,-2.0895934,-2.1662374,-2.2625587,-2.2319639,-2.0522618,-0.14770849,-0.9424069,-1.3167087,-1.4588271,-1.5905302,-1.6949533,-1.7915448,-1.8762476,-1.9568291,-2.0021286,-1.849949,-1.4095519,-1.2180251,-1.2706189,-1.5482283,-1.6602741,-1.6861641,-1.7207447,-1.618845,-1.1265094,-0.84161365,-1.1516407,-1.3783553,-1.5367556,-1.5649047,-1.6391122,-1.5737425,-0.8730558,-1.1090112,-1.4287132,-1.5650108,-1.6710256,-1.759823,-1.8042326,-1.8050511,-1.2907954,0.43686652,-1.2260308,-1.3800001,-1.4220158,-1.4788712,-1.5368301,-1.5978276,-1.6688657,-1.7185414,-1.7669666,-1.8141809,-1.8683114,-1.9077098,-1.9379077,-1.9527233,-1.9168704,-1.9398794,-2.0298202,-1.9961523,-1.9988099,-2.0721326,-2.103025,-2.1172667,-2.1673572,-2.1626506,-2.1698852,-2.1786208,-2.2259123,-2.2158706,-2.157913,-2.1903071,-2.11615,-2.1660433,-2.1791253,-2.1227782,-2.2285137,-1.6779536,-1.165808,-1.4825405,-1.6241412,-1.72346,-1.7750765,-1.8077364,-1.6729362,-1.5413456,-1.4439893,-1.5031183,-1.7299166,-1.855545,-1.9611278,-1.7591791,-1.7408152,-1.5173786,-0.99724305,-0.9358543,-1.1937816,-1.3010877,-1.2759873,-0.8327427,-0.6883894,-1.0949401,-1.291754,-1.0949544,-0.60982513,-0.40289176,-0.7953886,-0.846745,-0.9370893,-1.1849899,-0.7007854,-0.83212256,-1.225626,-0.5007172,-1.0094134,-1.0238097,-1.1009521,-1.2109691,-1.2600548,-1.4097519,-1.4150709,-1.4518902,-1.539628,-1.1602007,-1.1049532,-0.8563002,-1.0351447,-0.6385095,-0.5744121,-1.1491462,-1.2026353,-1.0905955,-0.32094377,-0.05933742,0.45838138,0.6818253,0.116846815,-0.98873454,-1.4584957,-1.4711887,-1.4766299,-1.4782803,-1.5344179,-1.6384187,-1.7059542,-1.6593329,-1.1592284,-0.6888132,-0.70548385,-1.1683142,-1.3382349,-1.320594,-1.3067598,-1.2683003,-1.1545143,-1.2224995,-1.2696792,-1.4858115,-1.6052643,-1.4637756,-1.2102847,-1.1651752,-1.3895315,-1.5422529,-1.1780034,-0.78935885,-0.9257956,-1.0730962,-1.4152157,-1.5662215,-1.490749,-0.9662737,-1.0757462,-1.2177165,-1.3694307,-1.5008324,-1.6060874,-1.6580446,-1.6928134,-1.7579283,-1.838884,-1.8768902,-1.8566781,-1.7741303,-1.8751566,-2.0058155,-1.4450445,-1.3074908,-1.1916785,-1.1797767,-1.3832413,-1.6197112,-1.7295876,-1.7909044,-1.7041233,-1.6575154,-1.3377866,-0.9452188,-0.6034358,-0.99922615,-0.66509384,-0.59487164,-0.9597541,-1.4310821,-1.4991888,-1.6086826,-1.4476126,-1.2950859,-1.3806437,-1.5796685,-1.6942393,-1.7244368,-1.7301631,-1.8559742,-1.7202427,-1.0284239
+-0.7622188,-0.7913774,-1.0137215,-1.2106054,-1.3108412,-1.3531449,-1.213322,-1.2615287,-1.3207991,-1.304507,-1.4596598,-1.5029011,-1.4701829,-1.5236101,-1.5688822,-1.5176654,-1.5574481,-1.5908732,-1.6483414,-1.6853483,-1.7041605,-1.6309824,-1.3683784,-1.4512554,-1.5446873,-1.6027414,-1.6497309,-1.6724067,-1.673743,-1.7074344,-1.5114951,-1.3952875,-1.5141718,-1.5683204,-1.6029701,-1.6246016,-1.682462,-1.7290912,-1.7698774,-1.7831317,-1.7959898,-1.8114034,-1.7871394,-1.7389815,-1.7649515,-1.7931149,-1.0789461,-0.95908725,-1.1943407,-1.3066782,-1.2003908,-1.2554903,-1.3971753,-1.525799,-1.6107415,-1.6730586,-1.7073375,-0.95773685,-0.07868253,-0.40729886,-0.6248076,-0.93902737,-1.1812177,-1.3198404,-1.4425013,-1.2242948,-0.51884234,-0.3527504,-0.8958417,-1.2047487,-1.3692168,-1.461043,-1.5368512,-1.6045494,-1.6412411,-1.6255143,-1.5961698,-1.1756026,-1.1501774,-1.3086755,-1.433887,-1.5373721,-1.6129391,-1.664433,-1.6832125,-1.2896549,-1.2045676,-1.37759,-1.243544,-1.1615121,-1.3253582,-1.28288,-1.2533114,-1.3939172,-1.4815328,-1.5637181,-1.3782381,-1.1906307,-1.3320773,-1.2028167,-1.1895902,-1.3727133,-1.4998956,-1.573225,-1.6266445,-0.7512145,-0.8987279,-0.8196745,-0.99936366,-1.197439,-1.2465192,-1.3016381,-1.2108899,-1.2427759,-1.3754654,-1.4726613,-1.5583789,-1.6242536,-1.6785499,-1.709615,-1.746003,-1.3680111,-1.1420647,-1.1954263,-1.0962797,-0.93313426,-0.5545929,-0.8291031,-1.1023834,-1.2719283,-1.3290572,-0.7378932,-0.8483186,-1.1145198,-1.2411113,-1.3740228,-1.4729916,-1.5381618,-1.5720403,-0.8407332,-0.53769565,-0.94254017,-1.2031988,-1.3835865,-1.4858618,-1.5383365,-0.93681353,-0.9362344,-1.2007682,-1.3341072,-1.3874407,-1.4791996,-1.5199323,-1.4147549,-0.20612764,-0.61958706,-1.007951,-1.1666625,-1.2888951,-1.3854396,-1.4619477,-1.5126206,-1.5588852,-1.5968583,-1.2999333,-0.960448,-0.62954015,-0.8009124,-1.0540644,-1.2056277,-1.3000739,-1.1079688,-1.043528,-1.160628,-1.216058,-1.009994,-1.0528357,-1.2320306,-1.2255597,-1.1592613,-1.2713505,-1.367068,-1.3897741,-1.3885777,-1.4729393,-1.5347073,-1.5721792,-1.5804541,-1.6009357,-1.2815793,0.9906235,-0.4519688,-0.8113594,-0.96174556,-1.0758849,-1.152113,-1.2221733,-1.2840863,-1.3055708,-1.3335121,-1.3528005,-1.3782322,-1.4069021,-1.4086503,-1.3531172,-1.3438013,-1.3794354,-1.4188457,-1.4284365,-1.4570687,-1.4605877,-1.4803236,-1.4785984,-1.4917395,-1.5116131,-1.5039527,-1.4975495,-1.5063473,-1.4733088,-1.4571676,-1.4616581,-1.4435241,-1.4712856,-1.4607491,-1.4431715,-1.4880757,-1.3932763,-1.2738334,-1.3484409,-1.3783569,-1.4073,-1.4361916,-1.4504087,-1.3857085,-1.3486965,-1.3346695,-1.387324,-1.4781085,-1.5000889,-1.5027177,-1.425802,-1.4540703,-1.534202,-1.5012658,-1.3949374,-1.2526112,-1.2905221,-1.3683928,-1.2725861,-0.05668028,-0.6967397,-0.9139481,-0.87999535,-0.7523009,-0.79005927,-0.8082835,-0.7265793,-0.6061002,-0.7979576,-0.7988068,-0.9581398,-1.0815488,-1.1449206,-0.9751282,-0.9284152,-1.0166584,-1.0551633,-1.1622338,-1.2175348,-1.2913189,-1.334747,-1.3667562,-1.405271,-1.2470872,-1.1851207,-1.224483,-1.2517592,-1.0147063,-0.946608,-1.0642805,-1.1644411,-0.53784233,-0.44804585,-0.46407253,-0.5883632,-0.87497663,-1.0354257,-1.1111194,-1.1778986,-1.2180078,-1.2917624,-1.3456776,-1.382578,-1.4068236,-1.4393809,-1.2368989,-0.53542066,-0.41662908,-0.7751566,-0.9687302,-1.1218075,-1.108951,-1.0767212,-1.0883301,-1.098885,-1.1551949,-1.2774534,-1.3599738,-1.4142078,-1.392786,-1.4078553,-1.3996342,-1.4772522,-1.2429438,-1.0665069,-1.0103196,-1.1250757,-1.2761303,-1.3141066,-1.3117095,-1.3138325,-1.2143836,-1.2574548,-1.346714,-1.4350678,-1.4670346,-1.4974313,-1.5346049,-1.5517063,-1.5648603,-1.5768648,-1.5285585,-1.5581112,-1.6165072,-1.643944,-1.6422265,-1.5629189,-1.5217297,-1.5405279,-1.6148267,-1.6634954,-1.6905577,-1.689395,-1.6926935,-1.6656218,-1.6804588,-1.3450893,-0.96298325,-1.0231669,-1.0123683,-1.0570662,-1.1859789,-1.2536967,-1.3088906,-1.4296203,-1.3259702,-1.2489998,-1.358074,-1.4442129,-1.5086269,-1.5515877,-1.5786157,-1.6167767,-1.6410292,-1.567948
+1.6062299,1.1193514,1.1637026,1.2831492,1.5377052,1.6319293,1.7967316,1.6085511,1.553119,1.6692163,2.3180525,2.1880348,1.6934944,1.465374,1.1605432,0.76823676,0.51278615,0.4287638,0.39758098,0.3482718,0.39107662,0.5913869,0.7081213,0.5541413,0.51996255,0.7108944,0.7561359,0.7435106,0.8550266,0.7577125,1.1154686,1.3198764,0.9705341,0.7919253,0.71142566,0.7166264,0.6675327,0.6136842,0.5335116,0.5650376,0.61872303,0.5791907,0.9567981,0.99187064,1.0506709,0.8359926,0.6568812,0.58333904,0.53767234,0.48259044,0.7038058,1.4180759,1.0002468,0.77435887,0.66202986,0.60664797,0.58172256,0.56232244,0.554422,0.54805243,0.53811264,0.51690257,0.95882696,1.3801666,0.9281598,1.2876631,1.081486,1.1876445,1.2415514,0.946522,0.79225695,0.7135731,0.6488571,0.61551464,0.59332603,0.56190366,0.55519724,0.573723,0.52893263,0.5054196,0.49256158,0.49830127,0.50060344,0.4670211,0.48318386,0.47887605,0.470986,0.53372514,0.5361209,0.48309076,0.47946107,0.47661966,0.507474,0.46280137,0.43317384,0.5096759,0.53151846,0.5208171,0.93090713,1.3125278,0.9480613,0.75983095,0.6720564,0.6315628,0.721321,0.690634,0.6080711,0.58146346,1.1028888,1.0124854,0.7742475,0.6861853,0.9344112,0.8590626,0.70966583,1.10744,1.0232525,0.7914683,0.7224821,0.77175957,1.0503795,1.1295955,0.8939086,0.76271313,0.70174265,0.66048765,0.6155793,1.1566107,0.933683,0.7548492,0.669346,1.5852312,1.8007767,1.5341269,1.4092171,1.5994627,1.2756774,1.2074348,1.1640525,0.99775946,0.8996115,0.880981,1.4448154,1.2481859,0.9676076,0.8568674,0.8610326,0.81578267,0.72579646,0.795637,0.8022956,0.7006137,0.79880023,0.92051005,0.7936933,0.6849928,0.6172185,0.5655879,0.53029525,0.5088449,1.0318038,1.0907521,0.85563445,0.8912385,0.77131534,0.66990936,0.6096447,0.56990325,0.53093743,0.5846869,1.2254444,1.1843946,0.8979253,0.751302,0.6493925,0.6017914,0.5614095,0.49436957,0.5818678,0.682577,0.5693354,0.93297446,1.0134504,1.2518797,1.2058252,1.0187072,0.81623536,0.6970511,0.61976814,0.5570967,0.7880046,0.8393694,0.71515626,0.6433275,0.58132076,0.70006686,0.7110506,0.6259334,0.6256777,0.7740022,0.7587664,0.69626415,1.3435585,2.3344324,1.4653258,1.0892036,1.3685305,1.1645427,0.9964119,1.6980803,1.37521,1.0699875,1.4057903,1.2167388,1.037811,0.9512423,1.0800018,1.0232751,0.8734069,0.8435915,0.78244716,0.74654436,1.06616,0.94428086,0.86407155,0.73492754,0.8680519,0.91480285,0.9431048,0.825284,0.7162788,0.68137753,0.7788614,0.8852308,0.7767082,0.7110639,0.8035916,1.1021698,1.0665239,0.9978579,0.9607773,1.0044987,1.1038194,0.9154823,1.3509772,1.1308777,1.1860638,1.0452538,1.2638011,1.2895868,1.5289264,1.5012774,1.5148686,1.6809578,1.7728992,2.14362,2.117306,2.2474837,2.3282804,2.3818161,2.5000477,3.0321302,2.9935699,3.1053061,3.1461973,3.1837463,3.20477,3.2789874,3.2966762,3.279345,3.4351025,3.217387,3.117447,3.1144876,3.1000657,3.0595412,3.1333337,3.1680613,3.2218497,3.1470706,3.1065917,3.132142,3.106705,3.1349137,3.2040167,3.247179,3.4045439,2.3348763,2.316782,2.2826896,2.3683171,2.6733384,2.428412,2.208293,2.302387,2.2715855,1.7360764,1.3162351,1.6870817,1.6151636,1.6490943,1.5745101,1.6508269,1.7608285,1.8589664,2.047601,2.2906322,2.3406725,2.3887453,2.4560986,2.545529,2.5750165,2.9782019,3.1392953,2.7002394,2.694912,2.8109252,2.975357,2.8740652,2.8395228,2.904795,2.9048343,2.8705938,2.98837,2.8413646,2.7350168,2.588885,2.0419765,1.3109994,0.9378715,1.071163,0.98115754,0.9701934,1.0513554,1.0892978,1.1812268,0.98111403,1.2132626,1.5291891,1.7623506,2.073473,1.6174712,1.1005119,1.1732227,1.4695613,1.6940023,1.9070866,1.9902523,2.1850417,2.2836359,2.395432,2.4798598,2.5854099,2.5992506,2.6833773,2.6324692,2.6177204,2.5636034,1.9278171,1.1602895,0.9987402,1.0325835,0.8662387,0.9793532,1.7086043
+1.0686103,0.88911825,0.957928,1.2472943,1.186631,1.2717401,1.4805734,1.4382187,1.3325979,1.4556439,1.5161629,1.3582041,1.0877321,0.9455825,0.7672988,0.63396716,0.5460735,0.4760568,0.41882908,0.37148213,0.32389188,0.34259635,0.52276003,0.45860916,0.39975327,0.32731926,0.3944728,0.657215,0.938632,0.7434499,1.2622627,1.2170211,1.0106008,0.919197,1.0238575,1.2240673,1.1138145,0.99871826,0.8026705,0.72707206,0.76430845,0.76970935,1.1076307,1.206464,1.2155439,0.9766989,0.77204984,1.027772,1.1060746,0.8653413,1.1906435,1.7075723,1.327983,1.0535251,0.8991765,0.81533587,0.7538077,0.70317173,0.69205236,0.77250135,0.6964715,0.6328659,0.6362377,1.0123589,0.94765854,1.3778348,1.3408011,1.3908687,1.3053794,1.0118535,0.8639169,0.7989248,0.7238375,0.6563436,0.62819016,0.56388605,1.394788,1.3165498,1.0180427,0.88943213,0.8122368,0.7933563,0.7520704,0.9733666,1.0901861,0.89650047,0.8116123,0.75061566,0.7014482,0.6598895,0.6478722,0.6355448,0.64361185,0.62597895,0.60129046,0.8615272,0.74116397,0.67238,0.7051041,0.6790515,0.6060449,0.5653212,0.5528572,0.5280223,0.675323,0.7502954,0.6207992,0.5713165,0.5547659,0.56295705,0.49828088,0.46737283,0.45899248,0.46396175,0.46397638,0.5176394,0.47903228,0.40005714,0.53738576,0.8837697,1.3027008,1.3408055,1.030002,0.90215904,0.8013061,0.71697754,0.6752079,0.7799215,0.73947966,0.6023925,0.53346956,0.5349265,0.6322221,0.91182333,0.9226854,1.1756155,1.1485764,1.0261207,1.3394976,1.1890264,0.94087285,0.8356614,1.0171628,1.0607038,0.81715673,0.7197875,0.6756898,0.6183811,0.520527,0.50835264,1.024897,0.79680693,0.61508197,0.73199123,0.60955256,0.48762137,0.43119782,0.40025288,0.35818154,0.6523856,0.7507818,0.56485236,0.48886424,0.4238068,0.32619438,0.3235133,0.28374434,0.18908185,0.1957772,0.18024932,0.46855676,0.95284367,0.657312,0.46018776,0.37265998,0.32048756,0.23586626,0.16336372,0.20021568,0.33346322,0.22171517,0.7751285,1.2365358,1.0230517,0.8186325,0.7476058,0.57579255,0.4954096,0.44081813,0.41930768,1.1737999,0.9765191,0.73503643,0.64177215,0.59356344,0.63854885,0.6193174,0.55545485,0.5073795,0.46996546,0.454347,0.41272604,0.36735973,1.0348487,1.1407077,0.8276356,0.72737026,0.66312337,0.6318005,0.7372618,0.8745151,0.7176541,0.78286827,0.7333815,0.6550185,0.5916421,0.7000865,0.69527745,0.6125722,0.56688416,0.4992997,0.46038723,0.649685,0.64432776,0.55237913,0.5239897,0.6336943,0.69553304,0.5787424,0.46689123,0.44684336,0.4337861,0.46384102,0.5184369,0.46049938,0.4770397,0.58693117,0.64359444,0.5796264,0.55922437,0.5820245,0.63071084,0.739938,1.2566783,1.3924059,1.064136,0.95906675,0.90081733,1.1712872,1.5227036,1.7693162,1.5541432,1.600317,1.7204779,1.8996167,2.3681126,2.4196076,2.522462,2.598652,2.5703607,3.0158205,3.5239882,3.072113,3.192009,3.1909933,3.3155737,3.3507452,3.4737966,3.3396578,3.3510752,2.8461032,2.2915087,2.4080148,2.3552833,2.317478,2.4517288,2.4816222,2.6567187,2.3206043,1.7200189,1.9627309,2.1825364,2.2745523,2.3239217,2.435467,2.5910187,2.6828213,1.9659977,1.6301066,1.7554003,1.8904351,2.080359,1.6457613,1.3743387,1.4667358,1.4602573,1.162485,1.5632288,1.5168208,1.4898793,1.4430242,1.2074647,1.2600687,1.4507287,1.6044942,1.8938526,2.1815548,2.2088423,2.1454003,2.1784375,2.3275166,2.429827,2.5534506,1.9017437,1.6230528,1.7198033,2.1255589,2.217605,1.6577258,1.71016,1.897084,1.8708535,1.9404163,2.0138025,1.5157454,1.190955,0.94633114,0.7617891,0.6712163,0.6369259,0.85453236,0.89217734,0.9350566,1.0343275,1.689112,1.2885922,1.1802902,1.3940343,1.7369993,2.0313954,2.1612153,1.6053658,1.1340806,1.3054018,1.4834659,1.7719152,1.9961755,2.2534204,2.4217637,2.560462,2.6703172,2.883809,3.0260549,2.7241664,2.1662576,1.560112,1.5317285,1.7675062,1.2108138,0.80925447,1.2768141,1.3850416,1.2435794,1.0594658,1.4667056
+-0.04188799,0.050066944,0.38305146,0.46764153,0.49924642,0.53780854,0.7644434,0.74886405,0.59434223,0.632872,0.5298848,0.36834282,0.32678926,0.3877472,0.39102826,0.37737232,0.31824338,0.22084408,0.13683954,0.101223126,0.12430073,0.12933905,0.77652097,0.73607934,0.57176536,0.4458032,0.40199214,0.795732,0.93900394,0.7541681,1.1954805,1.6047261,1.6158757,1.3524253,1.491094,1.681125,1.3998969,1.2427988,1.1410483,1.062407,1.1719944,1.1287026,1.0388253,1.1136574,0.9762418,0.80508125,0.8592792,1.056567,0.97539556,0.78670806,1.2748519,1.516822,1.3819745,1.1822755,0.95367503,0.83684504,1.0983579,1.0133936,0.8152576,0.83689857,1.14569,0.9661069,1.1664023,1.2489634,1.1830875,1.2551959,1.1436224,0.9112433,0.77353346,0.698925,0.60528255,0.58163285,0.51553583,0.49227864,0.46768808,0.43860155,0.8073542,1.5369254,1.1523826,0.932969,0.7971086,0.989239,1.0461091,1.677958,1.7946422,1.3418784,1.1249571,1.0796162,0.96369755,0.85382885,0.78316873,0.7479274,0.68185717,0.5966121,1.0859805,1.4255037,1.0956609,1.0814955,1.1013231,0.9051441,0.75457686,0.67135435,0.6192937,0.6331365,0.6639079,0.5935747,0.6123061,0.6206269,0.7200556,0.9192601,0.6847439,0.5543282,0.501092,0.44227195,0.43048596,0.582002,0.6848879,1.0271368,1.3897395,1.3049979,1.1464036,1.4176432,1.0785565,0.8933044,0.82668734,0.75021416,0.71269846,0.8786917,0.7645068,0.5467236,0.48230845,0.46006724,0.4214137,0.754777,1.0437782,0.7522558,0.9393448,1.0143785,1.1256782,1.2537426,0.89218795,0.72156537,0.67980456,0.6969053,0.46234196,0.36431223,0.31358016,0.2803323,0.20301779,0.1465916,0.086079866,0.0325193,0.0011921413,-0.049009483,-0.07891446,-0.1823707,-0.21681274,-0.22226186,-0.23598707,0.12103312,0.3898137,0.19688836,0.107049316,0.03079613,-0.06506206,-0.08339201,-0.08576907,-0.18177961,-0.18407078,-0.18561418,-0.19890998,0.40468475,0.6338769,0.2976343,0.17132844,0.09836994,0.016313683,-0.018308412,0.2007836,0.63127995,0.4435448,1.5882938,1.7441366,1.476649,1.1074088,0.91474366,0.7545176,0.6379118,0.56191784,0.576728,1.1944252,1.055295,0.79320085,0.691705,0.63877666,0.5758626,0.5609645,0.52264225,0.47320294,0.4042643,0.37541047,0.33230335,0.3307627,0.43770933,0.5157418,0.3629888,0.29825684,0.2665195,0.28614968,0.31184232,0.2506462,0.21985595,0.20796125,0.2817425,0.28796375,0.23144595,0.18449533,0.44851744,0.48161918,0.35463035,0.28662413,0.24064295,0.28788692,0.29607767,0.23903067,0.2312664,0.29728177,0.38357648,0.5894074,0.44931364,0.33942577,0.2833228,0.23657076,0.1868803,0.18561055,0.3331896,0.45027995,0.35733697,0.25016397,0.2441461,0.24788864,0.28834665,0.5117034,1.2036539,1.1736331,0.874928,0.74292403,0.71660423,0.8303465,1.271333,1.2279178,0.98872554,1.0134482,1.245805,1.5608646,1.7957909,1.6449177,1.4906558,1.3523967,1.5950856,1.8692088,1.8993722,1.5815248,1.742178,1.9043683,1.9586127,1.8737582,1.8454224,1.4533819,1.1468914,0.8263593,0.7292229,0.9116409,0.79550683,0.9368557,0.9913255,0.90151453,1.4317303,1.3027534,1.0683422,1.3209565,1.5886805,1.7743058,1.8489162,2.0198593,2.281,1.8089399,0.9489395,0.8939098,0.9853978,0.9100991,1.0550387,0.938782,0.83041,0.8105079,0.80555475,0.7388466,1.617095,1.3509368,1.0758474,0.91113603,0.7570837,0.72051525,0.7309948,0.81517816,0.9740714,0.98899543,0.8219235,0.774127,0.9681066,1.2301546,1.2448227,0.86195076,0.53170204,0.8977259,0.9441329,1.0365871,0.94041336,0.76483727,0.72047776,0.7403486,0.6120258,0.70950305,0.70637685,0.5197216,0.43472886,0.4090421,0.375488,0.36600852,0.34818855,0.31885692,0.28785503,0.32162502,0.5394184,0.8265075,0.64848053,0.47527415,0.5532372,0.80290323,1.063126,0.9140367,0.8087444,0.5627954,0.5243887,0.556589,0.75862926,1.0616353,1.7217354,1.8510364,2.0365689,2.1486845,2.4278522,2.030083,1.4528046,0.9463385,0.70173055,0.70731103,0.7967993,0.5478288,0.4260378,0.49440944,0.75550866,0.77627176,0.59604186,1.2868042
+0.6814845,0.55219674,0.52807915,0.2899536,0.19787888,0.14660607,0.79997146,0.8221646,0.6233758,0.51822937,0.3031207,0.12793642,0.119493544,0.07554023,0.05925784,0.03615587,-0.021681871,-0.07878293,-0.1356456,-0.21262836,-0.253226,-0.15162471,0.11463879,0.024592075,-0.079729214,-0.1578684,-0.20013008,-0.124770045,0.328839,0.22539018,0.9946327,1.4523993,1.6960132,1.1596911,1.6436684,1.761895,1.0472552,0.75336707,0.52812123,0.49190545,0.71385634,0.54788554,0.45372733,0.3902043,0.2889048,0.15509085,0.8279636,0.9071797,0.5943426,0.42752692,1.4101062,1.1312053,1.0099733,0.7945433,0.56668025,0.4288582,0.32816875,0.26824808,0.3597864,0.60889596,0.54669636,0.40963197,0.35308304,1.0382246,0.991236,1.4540689,0.9603272,0.6807761,0.5371201,0.4254271,0.30427325,0.24489583,0.1775152,0.1357662,0.0766073,0.05353676,0.053035695,0.33745798,0.56222546,0.3285383,0.24080221,0.17135088,0.1959974,0.85325265,1.1751585,0.80302906,0.5550357,0.44543082,0.6891044,0.6991782,0.41027007,0.55444694,0.5186687,0.48476636,0.85081625,0.7075366,0.66883886,0.6533753,0.5367676,0.37019414,0.2548097,0.1647229,0.21150409,0.5910047,0.56741005,0.32389092,0.4065614,0.5532516,0.37487167,0.23835306,0.25368038,0.17018035,0.095571324,0.03499758,-0.009229254,-0.045774873,-0.072769344,0.62467194,0.5551165,1.0069983,0.9512977,0.9739659,0.75724083,0.4745717,0.35041645,0.2925135,0.23215558,0.49474025,0.9087143,0.788326,0.6072407,0.51748866,0.35963088,0.23809437,0.16185604,0.09626147,0.082812235,0.35294268,0.3950721,0.24487852,0.1763235,0.14652584,0.083821505,0.082584664,-0.043856245,-0.09233104,-0.1319355,-0.15049806,-0.19244042,-0.23910339,-0.30446196,-0.34060287,-0.3389613,-0.35517377,-0.43956888,-0.52678055,-0.56409377,-0.55076694,-0.55144775,-0.5243026,-0.5305774,-0.5224653,-0.54377306,-0.57307386,-0.6273972,-0.6263584,-0.6200195,-0.67081213,-0.68843555,-0.68795377,-0.6510489,0.9881307,0.8753027,0.7365504,0.6185107,0.42445904,0.2800538,0.22922964,0.17435151,0.60660756,0.7229196,0.76632214,1.3721919,1.3201437,0.8017517,0.54816073,0.3801644,0.25548083,0.16775191,0.57409275,1.6082137,1.8589242,0.9489884,0.6412914,0.4859578,0.41885012,0.36440066,0.25410664,0.16934742,0.10047153,0.057113502,0.011085432,-0.009989094,-0.029963862,-0.07224199,-0.111396834,-0.15894827,-0.18024948,-0.22653104,-0.21364771,-0.27081323,-0.26802185,-0.3047792,-0.3454768,-0.34423146,-0.36160126,-0.37768996,-0.3010881,-0.15284377,-0.26188314,-0.33360144,-0.3420509,-0.3689999,-0.28672293,-0.31940633,-0.38063943,-0.2594299,-0.25940332,-0.23485975,-0.2508198,-0.310055,-0.3465953,-0.346549,-0.33853948,-0.30679935,-0.21209058,-0.24219744,-0.2971412,-0.34035075,-0.36649805,-0.29015177,-0.28157037,-0.14452001,0.18702297,0.74712384,0.46390307,0.28060326,0.20950417,0.6904464,1.4445236,0.94578075,0.6780075,0.66361606,0.8881636,1.111613,1.2725868,0.8073451,0.61655414,0.5202856,0.7753609,1.0868461,0.7125431,0.42380533,0.49097055,0.7092573,0.72461534,0.58272576,1.1992756,0.8549195,0.66156244,0.5318662,0.43876153,0.6294737,0.53679705,0.5518639,0.5129092,0.88383216,1.4448426,0.83995587,0.6601145,0.70585924,1.0709612,1.4436921,1.777782,2.067759,2.2563703,1.8733141,0.7676077,0.5016325,0.45304912,0.5746534,0.6612727,0.51034594,0.358364,0.6187797,0.60711205,0.86270547,1.6436143,0.97022474,0.6863199,0.5330106,0.39397883,0.32061562,0.30147877,0.3122502,0.25544456,0.26177886,0.16499262,0.07880041,0.16051127,0.35941273,0.33420587,0.11984539,-0.003368806,-0.055365186,0.037779953,0.13469572,-0.04643051,-0.098703966,-0.13690078,0.30328733,0.29111308,0.22482751,0.12544416,-0.040737566,-0.14263497,-0.19855963,-0.09250702,0.0014756061,-0.12360324,-0.20123072,-0.13993485,-0.18339287,-0.2540341,0.16417949,0.4909488,0.23670714,0.23652689,0.3656738,0.38147688,0.07999094,-0.099521846,-0.18493238,-0.23426704,-0.23966222,-0.15254882,0.007840831,1.112949,0.97655916,1.0361913,1.1360769,1.2742741,0.6347492,0.36906496,0.21118297,0.10665792,0.11459093,0.0857649,-0.113172114,-0.20332746,-0.11077085,0.39879265,0.32494184,0.12050928,1.1722116
+0.0954479,0.19519018,0.1891511,0.032650467,-0.008217063,0.0031373985,0.018154819,-0.030466672,-0.15678455,-0.19900118,-0.20847116,0.39209673,0.5955732,0.28637907,0.16095234,0.07710895,-0.017106127,-0.10993852,-0.2240138,-0.35049874,-0.35581776,0.10586743,0.615224,0.23426817,0.05933601,-0.07019833,-0.15371409,0.25139555,0.8314453,0.36911383,0.28440267,0.3477311,0.6422701,0.6528147,0.8557769,1.1927836,0.6420045,0.35299456,0.36621982,0.3128473,0.16551934,0.048689116,0.30405647,0.29702032,0.14678599,0.06328727,0.41906,1.1698592,0.67215383,0.44236556,1.2500064,1.0183566,0.8333857,0.5215095,0.31556606,0.1726967,0.03318091,-0.026561376,0.462316,1.0408695,0.5944815,0.36191216,0.22135375,0.07851596,0.38769698,1.0479913,0.8805604,0.8281658,0.42713875,0.23662876,0.0900086,-0.026473593,-0.12795211,-0.21506062,-0.31867445,-0.36745057,0.23700581,0.50038445,0.21684639,0.028466862,-0.100280344,-0.2172717,-0.32790205,-0.20656686,1.0088241,0.5345785,0.2848112,0.14032154,0.55038464,0.66132647,0.6975467,0.727906,1.0006382,1.4205315,0.7568361,0.7631568,0.6490793,0.41961557,0.3592723,0.54173505,0.33080226,0.10926339,0.043150675,0.4719131,0.25688595,0.22298159,0.4680792,1.253657,0.6385779,0.38259053,0.25623345,0.1036724,0.005729858,-0.082880184,-0.16594747,-0.22770126,-0.31045344,-0.30024704,-0.28962192,-0.3936772,-0.51849294,-0.53694355,-0.38872868,-0.2731186,-0.21525793,-0.19244315,0.4499708,0.68034863,0.41384375,0.54376996,0.4542216,0.2172188,0.06624913,-0.024496805,-0.10341035,-0.2267779,-0.35466954,-0.40283865,-0.4689662,-0.5256808,-0.5384661,-0.41093734,-0.51645696,-0.5709373,-0.6793297,-0.74087405,-0.7681545,-0.8033587,-0.8017931,-0.73671377,-0.82561123,-0.87773126,-0.90947205,-0.91898596,-0.38274038,1.0685115,0.39133805,0.14636506,-0.04956012,-0.19774611,-0.32810536,-0.43867958,-0.51462406,-0.57095677,-0.62306875,-0.65639794,-0.68841517,-0.7345241,-0.7648215,-0.79038763,-0.8061376,0.80530214,0.82485294,0.95653665,0.97238684,0.58914,0.3488232,0.22834702,0.15963633,0.09907012,0.063617766,0.57651025,0.7431625,0.44728574,0.25378004,0.103850186,-0.025619414,-0.10345933,-0.1429317,0.064340055,1.9770708,1.7356988,0.71610415,0.5013457,0.3674819,0.27151826,0.17827486,0.09537834,0.044156376,-0.004672166,-0.051139813,-0.08593622,-0.12074834,-0.13135822,-0.14851446,-0.21576391,-0.29239884,-0.33197945,-0.387696,-0.41359878,-0.40149775,-0.3570748,-0.4162311,-0.4532284,-0.5097866,-0.5277576,-0.55717075,-0.57159925,-0.49141282,-0.55671084,-0.5878585,-0.5753958,-0.63162845,-0.63540274,-0.6696181,-0.69577307,-0.58203256,-0.40939215,-0.12861001,-0.26138365,-0.35052472,-0.41940174,-0.4338653,-0.42636198,-0.38113534,-0.32391462,-0.34168625,-0.37807918,-0.35122037,-0.4014479,-0.3395242,-0.35295355,-0.38719496,-0.29907745,-0.2645889,-0.20117916,-0.2418812,-0.2304955,0.66860616,0.9672862,0.58745986,0.36677033,0.337915,0.4797408,0.65632474,0.549682,0.27164304,0.2060486,0.14253062,0.21489389,0.381419,0.27003247,0.47917712,0.37508017,0.3290104,0.33316815,0.23099612,0.2305737,0.18003936,0.1169786,0.087512106,0.048063267,0.3550558,0.33838838,0.28657013,0.71715826,1.4453821,1.1993473,0.73650587,0.55165046,0.58182055,1.0019851,1.4491594,1.9220612,2.2509022,2.3049362,1.3751564,0.49784833,0.3629774,0.29930586,0.24462502,0.20852612,0.15967397,0.052453388,0.07081775,0.24990271,0.55979496,0.8937897,0.52637863,0.32313952,0.2453159,0.19245754,0.13774091,0.09303309,0.13197477,0.0220155,-0.010366704,-0.07994276,-0.075895175,-0.0035299473,0.18788995,0.15222172,-0.06087264,-0.13028897,0.24435686,0.2345496,0.23083206,-0.04641698,-0.1477104,-0.14861701,0.40194207,0.37151605,0.26606604,0.14025287,-0.036342558,-0.17697196,-0.2288559,-0.22299653,-0.24568172,-0.3470479,-0.38441554,-0.34659624,-0.38850766,-0.45695153,-0.54435384,0.5611582,0.43780965,0.36063254,0.39441675,0.30684915,0.06821136,-0.13875823,-0.23661433,-0.31225923,-0.32129502,-0.27449995,-0.122216076,0.86805457,0.5299271,0.56879246,0.64680165,0.71910167,0.5387488,0.28218073,0.07460359,-0.014559206,0.052281458,0.055552635,-0.1908406,-0.30626827,-0.33557346,-0.35414302,-0.3411983,-0.4415105,0.36137018
+-0.38903442,-0.7848646,-1.0591352,-1.1454839,-1.2393781,-1.1612889,-0.88566107,-0.8053794,-1.0821543,-1.0345917,-1.1384956,-0.9453908,-0.90559906,-1.1548419,-1.2658485,-1.3418595,-1.4010283,-1.444487,-1.5545367,-1.6444012,-1.229243,-0.56861377,-0.3489552,-0.89368767,-1.0609789,-1.2047834,-1.3368292,-1.434173,-1.4728084,-1.5365708,-1.2458172,-0.5604866,-0.31102037,-0.66060436,-0.90254724,-1.0431385,-1.2176743,-1.3397311,-1.4417673,-1.5068424,-1.5672277,-1.3471475,-0.9270457,-1.1865865,-1.3716867,-1.4250112,-1.0836248,-0.7226908,-1.0183823,-1.1234031,-1.080181,-0.897158,-1.0085781,-1.2494308,-1.3912258,-1.4943289,-1.5817935,-1.6622789,-1.0776634,-0.5490397,-0.87907827,-1.0988227,-1.2932875,-1.4389156,-1.4981989,-1.5127184,-1.1683714,-0.364096,-0.92622435,-1.2068045,-1.345285,-1.4646286,-1.5662956,-1.6631321,-1.4527926,-0.7933821,-0.8238517,-1.1373855,-1.352812,-1.4763732,-1.6022259,-1.6875076,-1.7452567,-1.8012247,-1.6454573,-0.74181414,-1.0120379,-1.3013166,-1.4211962,-1.4774873,-1.6198299,-1.6834058,-1.7224137,-0.93995917,-0.8664628,-1.0008259,-0.91414523,-1.0392318,-1.2284105,-1.0543361,-1.0970063,-0.83695155,-0.4656702,-0.8788341,-1.1762476,-0.7838186,-0.78186953,-0.67197293,-0.88460433,-0.8545649,-0.56029093,-0.8789135,-1.1294994,-0.92284167,-0.74482363,-1.0755895,-1.2677876,-1.3704716,-1.4676471,-1.5986342,-1.7015047,-1.4619608,-0.917712,-0.8199881,0.18076049,-0.5995281,-0.5055464,-0.69083714,-0.9492699,-0.8809909,-0.91187876,-1.095905,-1.2052815,-1.3110442,-1.3751342,-1.4671867,-1.5926585,-1.6564965,-1.713327,-1.5258882,-1.1381445,-0.9610929,-0.8190999,-1.1196134,-1.316908,-1.4633071,-1.3068287,-1.0225968,-1.2331388,-1.352768,-1.447141,-1.4404588,-1.4027821,-1.492015,0.13692369,0.063045934,-0.83014965,-1.0617785,-1.2034738,-1.3360214,-1.4453775,-1.5340934,-1.5988963,-1.6232364,-1.1143687,-0.89526725,-1.1448188,-1.2940643,-1.4370317,-1.5390751,-1.2416668,-0.4454506,-0.7001194,-0.75394464,-0.5522696,-0.43949515,-0.7751935,-0.9924717,-1.0231318,-0.670625,-0.49267912,0.042898823,-0.2848359,-0.7057216,-0.9654423,-1.1204484,-1.1636811,-1.2164284,-1.2586875,-1.0582461,0.80524415,-0.6978789,-0.9630361,-0.9942921,-1.0753632,-1.1575117,-1.2449886,-1.3052537,-1.3574169,-1.3992683,-1.4380751,-1.4687004,-1.4830809,-1.4934875,-1.430028,-1.4912784,-1.5155013,-1.5539588,-1.5659542,-1.5909874,-1.6293117,-1.659417,-1.6961861,-1.6935326,-1.6877601,-1.7401717,-1.7627342,-1.7526069,-1.7642486,-1.7291055,-1.7510115,-1.6870384,-1.7193601,-1.7286121,-1.7382302,-1.8060889,-1.5493307,-0.6851816,-0.9041954,-1.1413589,-1.2487605,-1.328141,-1.3877074,-1.3100575,-1.1522782,-1.0106914,-1.0600588,-1.3249507,-1.4489195,-1.5400634,-1.3574088,-1.3820409,-1.5272249,-1.5643274,-1.5038518,-1.4008682,-1.3300647,-1.2703246,-0.28359473,-0.10903536,-0.707128,-0.91750306,-0.72894436,-0.35892874,-0.2041331,-0.4178105,-0.31471342,-0.5955782,-0.8445841,-0.50514704,-0.69347453,-0.98009294,-0.39293587,-0.5260698,-0.6503607,-0.77097154,-0.7863682,-0.9628467,-1.0561072,-1.0995347,-1.1844399,-1.2227756,-0.81715465,-0.64401406,-0.57945645,-0.8252069,-0.5775986,-0.30859128,-0.72682744,-0.85000736,-0.9384264,-0.3437916,0.13098638,0.7080299,0.89496017,-0.11775057,-1.1021141,-1.1556616,-1.1389554,-1.1960171,-1.1993372,-1.2656169,-1.3170633,-1.3604655,-1.3589933,-1.376383,-1.0734141,-0.4679496,-0.78482866,-1.0008204,-1.1268611,-1.1042295,-1.0539615,-0.92250776,-0.88579535,-0.94809866,-1.197027,-1.3104515,-1.2786156,-1.0714123,-1.0650362,-1.2050874,-1.3640193,-1.1134393,-0.5495967,-0.560288,-0.7669601,-1.1091948,-1.2367152,-1.1739824,-0.6203251,-0.6778545,-0.78739417,-0.98405683,-1.1205208,-1.2266603,-1.2983606,-1.3481498,-1.39233,-1.4631689,-1.4945383,-1.4675727,-1.452076,-1.522286,-1.5978324,-1.2526262,-1.0726126,-0.9039069,-0.8280538,-1.046115,-1.323658,-1.4665251,-1.4944413,-1.4519037,-1.3176596,-0.9149256,-0.5483948,-0.12319921,-0.65532887,-0.33110976,-0.14220124,-0.38851404,-0.5327955,-0.8018698,-1.0188178,-0.73057914,-0.68613636,-0.8397067,-1.080773,-1.2198565,-1.2802215,-1.0195439,-1.0423864,-1.2264773,-0.7326173
+2.5746827,3.675354,4.1597447,4.3087683,4.3823223,4.402412,4.384271,4.381389,4.4024253,4.3906713,4.354557,4.329792,4.3139133,4.305526,4.321132,4.1568804,4.2365484,4.090769,3.9320714,3.7556849,3.746543,3.694479,3.5138683,3.772108,3.8455253,3.9094067,4.042145,4.0248556,4.0413103,4.085246,3.8341117,3.4612908,3.131066,2.6071808,2.2773252,1.9610087,1.8644814,1.5592338,1.5954567,1.1881639,0.78435296,0.43861136,0.81015617,1.1166966,1.5383313,1.3086792,0.88362443,0.6012285,0.30909812,0.032552797,-0.056435373,-0.16382386,-0.22678645,-0.23717105,0.053907204,-0.16842933,0.3495949,0.21342967,0.6431219,0.9397198,0.77674955,0.26579142,0.47318256,0.72145635,0.3958204,0.38046914,1.1638877,1.2706201,1.110974,0.85628396,0.4294896,0.46659696,1.0533488,0.4893008,0.26167303,0.070882544,-0.091009215,-0.1706858,-0.2617849,-0.22300017,0.4620561,0.64866865,0.3837319,0.22611602,0.06279352,-0.0494258,0.18415968,0.8470992,0.50632495,0.21160507,0.024284158,0.7524775,0.8198123,0.51989543,0.558209,1.2905631,0.9805901,0.6815343,0.37595868,0.2494329,0.0980681,-0.053758092,0.06605631,0.99837255,0.959108,0.9824184,0.41344497,0.19179155,0.49075186,0.39211106,0.14737573,0.720924,1.0269727,0.52634144,0.25201207,0.57285595,0.8661602,0.6252395,0.47790736,0.33054012,0.15695943,0.006961908,-0.10537107,-0.19403024,0.12771192,0.43099394,0.83188665,1.0413328,0.8210827,0.45273584,0.2059774,0.16008957,0.026735049,-0.07186763,-0.14973795,-0.0697474,0.01728766,0.12984073,0.6562369,0.44484317,0.54539055,1.3294568,1.375439,0.8965137,0.7272829,0.5526833,0.3911,1.0679648,0.5718827,1.0177516,0.9102561,0.57828236,0.7643609,0.5463475,0.27458173,0.11316089,-0.011390541,-0.102406755,-0.025816422,0.33450508,0.33766782,0.31105357,0.33568838,1.3285463,0.84583724,1.205159,0.9822893,0.4215005,0.27592084,0.27435982,0.66132224,0.4038406,0.7139603,0.5846484,0.38798305,0.20951857,0.0636034,-0.015560221,-0.11965473,0.272457,0.23996188,0.05153336,-0.061516184,-0.14098468,-0.18662564,-0.23926724,-0.28706363,-0.3257848,-0.35970753,-0.39573884,-0.1955909,-0.21906577,-0.27697274,-0.2604037,-0.3019527,0.6204194,0.3710019,0.3357255,0.82085323,0.50467664,0.982164,0.7437917,0.4985335,0.25896463,0.19241421,0.16082217,0.41525465,0.26500148,0.08861469,0.17506708,0.2706874,0.73586655,0.5294072,0.3875679,0.74361455,0.58159465,0.34408796,0.31236404,0.29548252,0.31089592,0.2654457,0.24821176,0.26718888,0.39471593,0.34245384,0.23281379,0.2674621,0.26177627,0.29984254,0.22642098,0.18630458,0.17975454,0.19716781,1.0161641,1.519892,1.0712209,0.944322,1.1463094,1.4658734,1.7459471,2.0425386,2.3901439,2.7617,2.9400573,3.2924495,3.365832,3.4579563,3.6505132,3.7724574,3.8198361,3.865753,3.9066763,3.9589286,3.9977007,4.0327115,4.077256,4.081205,4.146709,4.1396117,4.169243,4.2136316,4.208825,4.170333,4.1251173,4.1418533,4.1618485,4.079732,4.0951157,4.1859126,4.2254,4.1473227,4.22346,4.23503,4.2376122,4.2585907,4.286423,4.2604485,4.284462,4.254455,4.258149,4.2541795,4.3002214,4.3347735,4.314154,4.3024454,4.2295837,4.3126006,4.3005886,4.3237176,4.307477,4.2649956,4.290744,4.2477083,4.1999044,4.2056036,4.221263,4.2404013,4.2567525,4.2686634,4.242278,4.2149153,4.232212,4.242321,4.274479,4.2893047,4.300208,4.279961,4.3216615,4.3336873,4.3112736,4.319373,4.3250647,4.3628983,4.374608,4.3487926,4.3545203,4.349857,4.30367,4.2914276,4.2290506,4.218477,4.2768755,4.275115,4.21408,4.206916,4.290861,4.225547,4.1701694,4.189432,4.2665706,4.221901,4.1950626,4.2106533,4.161223,4.2331295,4.2608886,4.288082,4.2876444,4.259003,4.2191052,4.1463857,4.1369386,4.219112,4.2556443,4.2684703,4.265747,4.289404,4.3260474,4.323179,4.283703,4.284691,4.253045,4.2079954,4.1346216,4.226163,4.2428656,4.2110744,4.15096,4.233442,4.24339,4.1723595,4.197542,4.1448107,4.1805735,4.1673164
+1.5241532,1.1605899,1.3767302,1.5490949,1.7079526,1.993418,2.2724252,2.1695805,1.9872689,2.0075092,2.1288176,2.0854983,1.508201,1.2511452,1.0680381,0.8631183,0.73929936,0.6762385,0.6164739,0.57527107,0.53508306,0.5203532,0.49424976,0.46741855,0.4452559,0.7027564,0.8118583,0.72461563,1.0714989,1.3113166,1.4085084,1.7710876,1.5356876,1.4565804,1.3811916,1.3774321,1.3637908,1.2678757,1.0789621,0.9274626,0.8595558,0.8134395,1.143495,1.4225454,1.3217576,1.1048486,0.9841695,0.86289567,0.7998327,0.7316635,0.84649813,1.5665324,1.3412642,1.1352338,1.0358784,0.95785487,0.9118728,0.92643774,0.90059286,0.9681001,0.9638494,0.88127196,1.0107857,1.2161427,1.070931,1.431684,1.5915759,1.3494782,1.6076882,1.3679485,1.2055707,1.136273,1.0586956,0.98943853,0.92750233,0.88702023,1.1667705,1.2399787,1.0414627,0.9714134,0.92052555,1.5706214,1.4030664,1.1998065,1.1043353,1.0454291,0.9929092,0.95491135,1.0021689,1.000076,0.9312349,0.9054858,0.8840133,0.8551928,0.82821065,0.872432,0.93911284,0.881464,0.87993854,0.908981,0.8883276,0.8770339,0.8387231,1.0360041,1.2952423,1.1163198,1.0419729,1.0779617,1.1059862,1.0996422,0.9772471,0.91742635,0.8904852,0.8516406,0.8228586,1.0415404,1.243331,1.0268846,0.9421535,0.8884079,1.2741694,1.5480653,1.4045889,1.3682588,1.1677382,1.094788,1.0246079,1.0634224,0.99667084,0.919896,0.85172594,1.3471681,1.8094796,1.8415275,1.671694,1.6107385,1.4165574,1.3241591,1.6355627,1.5826689,1.4262671,1.2630862,1.3320253,1.4194038,1.2187123,1.1340214,1.0936474,1.046299,0.98190725,0.9432254,0.8936868,0.8409525,0.8047933,0.7738279,0.7267163,0.6960592,0.6609957,0.63726187,0.5999671,0.60724986,0.7373196,1.1682818,1.2211092,1.0449713,0.9117109,0.8339104,0.7861438,0.7520989,0.731097,0.7187525,1.04545,1.4847435,1.2120401,1.0148666,0.8877663,0.83133674,0.75761914,0.6672886,0.6820693,0.6937456,0.67484844,0.810105,1.370645,1.7021705,1.5869379,1.4162426,1.2466562,1.1219453,1.0429933,0.9826777,1.2296282,1.3137751,1.0851105,1.022788,0.962617,0.97923946,0.9501089,0.89133215,0.8780692,1.1235143,1.1840045,1.0765626,1.2169975,2.5558794,2.0139453,1.4884024,1.685271,1.615589,1.4001397,1.790456,1.7873861,1.4447875,1.6947545,1.6269779,1.3755015,1.326431,1.3042809,1.2595413,1.1755635,1.1434393,1.101823,1.0491266,1.1931901,1.1649663,1.0732499,0.98884726,1.0787394,1.0971575,1.0253873,0.91616267,0.90140164,0.8957106,0.8717586,1.2673943,1.1106479,1.0607017,1.2698383,1.6329665,1.637488,1.3797293,1.2908074,1.2439156,1.1966751,1.1842344,1.6799874,1.3868582,1.2873514,1.2392308,1.394096,1.5586336,1.8513052,1.6903105,1.6599512,1.7887642,2.0038836,2.3147407,2.451861,2.5256062,2.6049685,2.6473145,2.8171473,3.4850004,3.5282388,3.596568,3.660029,3.8504593,3.9340525,4.0677013,4.0482445,3.9760237,4.1240253,4.012894,3.8686419,3.9803724,3.8325593,3.8665173,3.8380303,3.8126476,3.6684017,3.2172685,3.2547867,3.2935677,3.2690835,3.3082764,3.3987067,3.4866245,3.4967165,2.5955925,2.4877005,2.5997667,2.7969413,3.056222,3.1046135,2.7029548,2.5918076,2.316352,1.6162074,1.4050585,2.0023007,2.1157045,2.1774874,1.9261672,1.9521644,2.2035842,2.3516226,2.5692346,2.8866687,3.0458653,3.0786412,3.125566,3.3208604,3.5456462,3.836908,4.0435295,3.6735868,3.7115133,3.7740471,4.0224476,4.1086044,4.0194283,4.186146,4.2596846,4.1820345,4.195396,3.6646924,3.1375415,2.864182,2.0546691,1.4258642,1.2794733,1.3899965,1.3283234,1.2828679,1.2468538,1.1161962,1.2055606,1.1093109,1.3241235,1.6849957,1.9876907,2.388605,2.032329,1.3990328,1.2970333,1.514106,1.7956437,1.9858923,2.3505483,2.587819,2.7306123,2.8919964,3.06501,3.3406594,3.4853687,3.672594,3.568695,3.6115232,3.6943274,3.3456745,2.0402842,1.5174558,1.3430523,1.2213857,1.1979971,2.0108752
+0.75165063,0.70510185,0.73435104,0.93164897,0.89644635,0.94174707,1.5575963,1.3180693,1.2188357,1.1883693,1.1990503,1.1023686,0.92763615,0.8292794,0.7607926,0.7057346,0.6491473,0.5950265,0.55397964,0.51345575,0.52202547,0.54611474,0.8372488,0.7861092,0.6853919,0.65034777,0.69287324,0.96943617,1.3008853,1.1607859,1.3806024,1.464447,1.4736497,1.4920032,1.3142755,1.5061748,1.5922418,1.4087944,1.1767339,1.0746987,1.0432522,0.98630655,0.9870485,1.0570583,0.94419205,0.8243948,0.7719439,0.8120876,0.85005176,0.75379,1.0910523,1.6656464,1.4430255,1.2067413,1.062495,0.953137,0.9085152,0.8593935,0.79986346,1.0851119,1.2402256,1.0515945,0.93821967,1.0611115,1.2420139,1.5679245,1.4289918,1.2580954,1.2672231,1.0993928,0.99835753,0.94698066,0.8722091,0.8099586,0.7813787,0.70942295,1.204793,1.3184674,1.0688064,0.9538426,0.8598815,0.8166181,0.80667377,0.98428273,1.162266,1.1506335,1.0608263,0.95824015,1.4528084,1.2744771,1.0693917,1.0066657,0.92351544,0.8142327,0.7777796,1.2755321,1.0856324,0.9155787,1.1733634,1.1788609,0.9414816,0.8153353,0.7152742,0.74664307,0.7666881,0.6294095,0.53794533,0.5115745,0.48282754,0.48897207,0.41356516,0.33841866,0.34252432,0.30097052,0.2263516,0.73864853,1.055929,0.6993191,0.57036316,0.8533966,1.1499426,1.1182286,1.0929655,1.4751557,1.1170542,0.96385264,0.8334095,0.83504725,0.733215,0.48543203,0.36969888,0.3805799,0.58550507,0.996603,0.86337197,0.93880296,0.9418305,0.9235469,1.1553084,0.9599185,0.7275684,0.5358937,0.9020997,1.1011858,0.7282767,0.58733135,0.5297564,0.4372242,0.29175025,0.21015146,0.13123228,0.037768174,-0.029104684,-0.015359942,-0.10732378,-0.20842388,-0.24870224,-0.27640623,-0.32979068,-0.26554167,0.39913073,0.3062389,0.4984157,0.6004223,0.28715152,0.19821696,0.12476398,-0.025865104,-0.0911344,-0.12516278,-0.12899095,0.42249826,0.61525774,0.27026045,0.12609461,0.060634125,-0.022722404,-0.10574515,-0.13402523,0.12279187,0.4204328,1.1340073,1.4461057,1.3991947,1.2135491,1.068603,0.8863754,0.76007235,0.6599895,0.56699234,0.66645277,0.6643929,0.48941803,0.42939568,0.42307782,0.44323677,0.40537372,0.3356346,0.3379171,0.3221329,0.2695371,0.22312821,0.16094638,0.18125029,0.14245962,0.05894008,0.0029858314,0.0014752038,-0.052081656,0.114196405,0.29388624,0.173651,0.3488994,0.523512,0.38261282,0.32802433,0.304955,0.2544276,0.2397268,0.17589806,0.14672045,0.11425568,0.34354654,0.50124776,0.34370476,0.32993436,0.38085964,0.34911504,0.23129056,0.23209377,0.23048018,0.19913353,0.22311501,0.35423398,0.26451406,0.23249905,0.29966962,0.38580364,0.37659022,0.3708644,0.37740013,0.38947085,1.1365811,1.6705153,1.5809906,1.2259194,1.056315,0.9486997,1.1065108,1.4115767,1.5191045,1.2009115,1.1053663,1.1510867,1.3101287,1.7359962,1.8822043,1.9950066,1.9753697,2.0658612,2.4694514,2.9590616,2.7731032,2.8609705,2.909327,3.1462054,3.136873,3.2403097,3.1004212,3.089376,2.7555466,2.1828494,2.1060705,2.128003,2.1046917,2.0207434,1.8211083,2.073684,1.5964843,1.3024411,1.5444226,1.7929883,1.937515,2.056201,2.2000904,2.4155562,2.6279187,1.8990772,1.4749844,1.5172801,1.6004547,1.889875,1.6911485,1.3330226,1.3147106,1.3642322,1.1318073,1.6606386,1.6435527,1.3193383,1.220869,1.0557628,0.97033334,0.97301006,0.98859286,1.153932,1.3367904,1.2119966,1.1725576,1.3451109,1.6203156,1.6530313,1.5544937,1.2370611,1.2853055,1.315451,1.5849462,1.5581999,1.2484518,1.1852496,1.338403,1.2680875,1.2981907,1.329067,0.9966161,0.85977745,0.7681736,0.8035492,0.77802217,0.7597938,0.88087475,0.8514393,0.76851195,0.85230124,1.3523704,1.3095913,0.9731996,1.0055244,1.2391205,1.5474322,1.8553442,1.5125684,1.1034236,1.092268,1.043895,1.2300398,1.4883357,2.3136315,2.4331527,2.7979317,3.1351457,3.421352,3.6451726,3.6386626,3.1447716,2.0924087,1.9211538,2.1521077,1.2459383,0.99550486,1.1767007,1.2709851,1.1823655,1.0048237,1.4612813
+-0.4910739,-0.56130326,-0.53153276,-0.29426092,-0.20300978,-0.14868325,0.821769,0.85720533,0.62625515,0.6671848,0.48285258,0.3089039,0.24694808,0.2145648,0.16418187,0.12715392,0.051489938,-0.0688166,-0.2388787,-0.22488101,-0.2479522,-0.35355365,-0.20455603,-0.059511613,-0.20673849,-0.4415295,-0.40742576,0.0588034,0.55619955,0.32701892,0.7479352,1.2564809,1.5100561,1.3674467,1.0345016,1.5431298,1.2996931,0.88855124,0.646508,0.58183646,0.78442794,0.77947414,0.5416712,0.60929316,0.5045366,0.36852673,0.5305186,0.7203913,0.50645536,0.34494117,0.60111916,1.3753148,1.4299417,0.8853531,0.47161633,0.30440378,0.102165535,-0.051045764,-0.03968604,0.46446967,0.16327925,-0.02541779,-0.15945503,0.393229,0.6138773,0.459187,0.46527612,0.12103602,-0.09327711,-0.22098483,-0.47314686,-0.71902263,-0.99647695,-1.1004771,-1.2440828,-1.2478406,-1.2361817,0.52957815,0.8018941,0.31776822,0.008343682,0.7182159,0.64646244,0.8920705,0.68208694,0.37636733,0.15034863,0.006555196,0.36109722,1.2358721,0.5689802,0.36868688,0.15718894,0.01540127,0.28891617,1.235647,0.5269746,0.21592973,0.1663175,0.13820322,-0.05580086,-0.29947406,-0.43024123,-0.5914264,-0.770939,-1.0362971,-0.7548015,-0.5992782,-0.2499253,-0.17218284,-0.12681878,-0.24568999,-0.5666089,-0.8451005,-1.0633535,-1.2357394,-1.3784838,-1.4835829,-1.3966408,0.16906412,0.29457462,0.6138177,0.25505048,-0.048629474,-0.24079739,-0.44242626,-0.61662805,-0.7362895,-0.86316824,-1.0763314,-1.156239,-1.3155798,-1.4468007,-1.5149491,-1.56413,-1.6511505,-1.607564,0.0584671,0.11867125,0.67906255,0.43633592,0.033933435,0.27249008,0.8666393,0.30010593,0.024459515,-0.20901434,-0.47720376,-0.76556396,-0.93234074,-1.105915,-1.2365756,-1.3492502,-1.3155438,-1.0313405,-1.0646809,-1.143712,-1.097477,-1.2612429,-0.8735332,-0.32590884,-0.60289645,-0.8705245,-1.0872712,-1.2014611,-1.2690581,-1.393785,-1.427108,-1.4462695,-1.5212028,-1.5674155,-0.93001145,-0.1741243,-0.42238474,-0.58881056,-0.7656548,-0.883479,-0.9570357,-0.97703385,-0.6400685,0.64296997,1.4946152,1.4399397,1.2729106,0.87659705,0.49846053,0.36364797,0.25347736,0.17136653,0.058790762,0.08160195,0.5948773,0.3057545,0.25688642,0.19854115,0.10864048,0.06840989,0.065947086,-0.003918942,-0.1279972,-0.24589191,-0.38239235,-0.46568763,-0.2898671,-0.10056819,-0.098019525,-0.20608671,-0.20642431,-0.17979515,-0.14139315,-0.17252384,-0.21710718,-0.38606593,-0.42629075,-0.3393607,-0.44149417,-0.5262776,-0.58971596,-0.522702,-0.55480474,-0.524747,-0.51223946,-0.3911485,-0.18685363,-0.27734798,-0.28342235,-0.2034593,-0.21619612,-0.32950872,-0.3456105,-0.36925942,-0.3725895,-0.41727862,-0.47315907,-0.4990219,-0.48301172,-0.39681694,-0.4125112,-0.47781622,-0.5034623,-0.49092245,-0.40110043,-0.22229372,0.5144336,0.93717355,0.546986,0.3432772,0.30025256,0.50939995,1.2244236,1.1027262,0.8483508,0.7599853,0.8292645,0.9297746,1.0224837,0.8720741,0.70005625,0.60731065,0.7525867,1.080308,1.0124046,0.6762797,0.8327012,0.9775958,1.088597,1.0055679,1.1502031,0.9379525,0.83653307,0.57620335,0.37173235,0.56019473,0.6300988,0.7015035,0.6049799,0.5652014,1.378918,1.053024,0.8347316,0.8749887,0.8407286,0.9429782,1.2745312,1.6038029,1.8893514,1.2155142,0.72121984,0.58458394,0.80507636,0.81775504,0.81695175,0.6706507,0.46371588,0.53426385,0.59035367,0.53306425,1.133337,1.0556248,0.80449,0.6529869,0.50159734,0.47885007,0.4666263,0.5417324,0.6316441,0.4974444,0.35677817,0.28639618,0.43948504,0.5906348,0.49960458,0.33704934,0.2079977,0.27648175,0.4752949,0.5286185,0.36908448,0.16984405,0.22762017,0.26232666,0.14230636,0.20897104,0.152816,-0.047851067,-0.053353976,-0.004263591,0.01083586,-0.049182232,-0.10250917,0.095672145,0.24593352,0.2130287,0.21125148,0.6247386,0.5120096,0.368397,0.3171901,0.38379523,0.531222,0.32404184,0.1772859,0.09527689,0.02038877,0.059933443,0.13561685,0.29419184,1.2500281,1.2231135,1.1858366,1.273526,1.172248,1.3063028,1.0123852,0.71463394,0.5103943,0.44664302,0.64168763,0.38903612,0.2433346,0.1683339,0.20409669,0.2627945,0.17004485,1.0604486
+0.00018594787,0.3420648,0.094698355,-0.13480198,-0.018315937,-0.06048357,-0.05649722,-0.15805443,-0.32756582,-0.3916921,-0.44937503,-0.061979342,0.0026588254,-0.18272594,-0.29866946,-0.3817055,-0.46414113,-0.5219027,-0.594256,-0.6641165,-0.687162,-0.37008214,0.2918802,-0.041557115,-0.24012187,-0.42777744,-0.43764672,-0.17106204,0.30451038,0.03422909,0.4987362,0.6419834,1.0204768,0.7193508,0.663279,1.415778,0.5440424,0.23947312,0.0063547604,-0.033103514,0.03662813,-0.12381701,-0.24500309,-0.30775332,-0.4038451,-0.48800504,0.43962193,0.5136264,0.1540843,-0.055095013,0.5728634,0.6275318,0.83765936,0.3407147,0.051400673,-0.134522,-0.29756442,-0.4001305,0.042447943,0.8037375,0.35546902,0.090630814,-0.101593435,0.05872326,1.0947734,0.89617383,0.5963527,0.23939307,-0.020347234,-0.19302788,-0.31921715,-0.39486146,-0.4959725,-0.55510366,-0.58621055,-0.6565772,-0.55391246,0.684289,0.42990464,0.1133327,-0.10846874,-0.27170485,-0.35881293,0.1625658,0.47279084,1.0944598,0.4751258,0.18641962,0.28983307,0.3241166,0.03528974,0.23034771,0.3671779,0.39272976,0.6199526,0.32951346,0.10718888,0.027522366,0.0319996,-0.12638678,-0.27325064,-0.38039398,-0.49368566,-0.5081167,-0.5718446,-0.63259727,-0.0401596,0.8017734,0.24469648,0.7354026,0.44833404,0.1543959,-0.08568245,-0.24462608,-0.36124924,-0.46512556,-0.52944237,-0.33395058,0.0820449,0.26220724,0.25472745,0.13827299,0.002988752,0.07798675,0.035386186,-0.1740107,-0.28075853,-0.34859926,-0.32179868,-0.28253,0.10273975,0.12406798,-0.14371964,-0.3017581,-0.4090609,-0.49176246,-0.36303782,-0.18372191,-0.27751452,-0.42771766,-0.49766892,-0.54940444,-0.65873015,-0.62208384,-0.6947771,-0.7594023,-0.8131905,-0.8474524,-0.8747733,-0.9291046,-0.9530544,-0.97779703,-1.0130492,-1.0478237,-1.0028446,-0.2353831,0.07183468,-0.19463526,-0.3767426,-0.08387075,0.38488197,0.06057776,-0.18055595,-0.2847319,-0.35939,-0.48411638,-0.5616889,-0.6258731,-0.6862216,-0.7250117,-0.7754284,0.38037357,0.7650202,0.8852544,0.8201591,0.4006256,0.12131666,-0.022473786,-0.13840187,0.18747498,0.82549477,1.5752193,1.1038524,0.6757222,0.32035896,0.107116744,-0.058987383,-0.18966173,-0.25463444,-0.2078395,0.82329375,1.6787953,0.46492657,0.20762686,0.040037777,-0.08962691,-0.21783037,-0.3245271,-0.39926606,-0.46013921,-0.50602216,-0.54103464,-0.56466633,-0.50999486,-0.39155358,-0.5021998,-0.5605248,-0.60269964,-0.626716,-0.6096927,-0.6079436,-0.63796467,-0.66592443,-0.6889839,-0.68003047,-0.6764677,-0.7145958,-0.28419873,-0.18709674,-0.35130143,-0.46879616,-0.48645055,-0.4317426,-0.44857657,-0.52133024,-0.5844018,-0.50043976,-0.20247327,0.058940616,-0.16237903,-0.3018278,-0.3933037,-0.45944327,-0.5264132,-0.51367205,-0.41731805,-0.34845656,-0.36955822,-0.39621264,-0.47609,-0.5042088,-0.44735768,-0.21617134,0.14802659,0.2233871,0.008837011,-0.11646284,-0.21145464,0.23794179,1.0011024,0.6483983,0.24017407,0.19431888,0.361177,0.5094801,0.6198275,0.2998408,0.08083518,-0.049919877,0.23473327,0.36741647,0.0042694844,-0.20597133,-0.108483344,0.08109777,0.11478855,0.13921995,0.47593063,0.23469637,0.020702314,-0.08511534,-0.22490305,0.012584422,-0.016447034,0.05982251,-0.059618976,0.59820205,1.0873526,0.40773517,0.1717592,0.070568204,0.6529446,1.0156554,1.5060862,1.8132386,1.9070208,0.825668,0.116594896,-0.054761805,-0.05776271,0.07727362,-0.009332571,-0.1571793,-0.2876841,-0.22158761,-0.21389586,0.54619443,1.0061028,0.4147398,0.111082226,-0.026459929,-0.19591413,-0.25784582,-0.24411948,-0.22222193,-0.20164396,-0.24944301,-0.34357315,-0.4304106,-0.29381454,-0.12361571,-0.13336757,-0.3112337,-0.4238182,-0.30709818,-0.2187233,-0.27637243,-0.39172167,-0.47632635,-0.4822641,0.13872762,-0.005133044,-0.03592695,-0.1148971,-0.27993113,-0.40858066,-0.46501833,-0.46529943,-0.45847964,-0.5344869,-0.4812938,-0.41908348,-0.4996924,-0.5315844,-0.54849935,-0.3452512,-0.37839836,-0.35697347,-0.23722754,-0.1391464,-0.35126996,-0.49580476,-0.58780694,-0.6158631,-0.63003904,-0.58859575,-0.40061277,1.0745624,0.3371389,0.3035847,0.3183151,0.23319535,0.3125735,0.061247174,-0.12994389,-0.27652305,-0.29150516,-0.28662974,-0.43380147,-0.5382318,-0.5742156,-0.5248377,-0.46535018,-0.5734975,0.50632507
+-0.014341634,0.06590021,-0.0382861,-0.2687342,-0.4324178,-0.4845581,-0.39832968,-0.3565768,-0.52312714,-0.57212126,-0.63128936,0.19869262,0.37360686,-0.048757177,-0.20942925,-0.33388877,-0.44933772,-0.51689625,-0.6034686,-0.7044628,-0.7583361,-0.45044008,0.48912358,0.07013835,-0.19139902,-0.350234,-0.48861852,0.4540801,0.9221765,0.22159426,0.012619812,-0.092803106,0.47306806,0.5409209,0.8547281,0.7439195,0.31983203,0.012857217,-0.056565147,-0.16422214,-0.08768846,0.15541606,0.27766693,0.07460317,-0.1724066,-0.32468086,0.52789795,0.7584705,0.35944697,0.063464046,0.1748303,0.18433738,0.020398457,-0.16956048,-0.30971014,-0.4165535,-0.54103816,-0.6397902,-0.19385286,0.45299485,0.28930914,0.4290934,0.225771,0.4951653,0.6976119,0.31036913,0.19654997,0.63158,0.17084615,-0.09680842,-0.25992656,-0.38758275,-0.49705988,-0.5790195,-0.6837843,-0.37717825,0.04648911,0.23846994,0.06397678,-0.24156387,-0.37887043,-0.5089316,-0.61582685,-0.2821687,0.55819386,0.4406825,0.08155812,-0.17203344,-0.09038408,0.08376211,0.3665939,0.17217723,0.2084047,0.7914944,0.29276857,0.22958331,0.5239389,0.22315668,0.4065241,0.7740919,0.248291,-0.025690567,-0.11195992,0.13691095,-0.00038073584,-0.20438163,0.31386572,0.8726591,0.23287855,0.18294144,0.26550013,0.115339965,-0.1607727,-0.33110934,-0.4322272,-0.51508594,-0.5899806,-0.5876076,-0.6568912,-0.7354177,-0.6478804,-0.24704696,-0.2806831,0.5764873,0.36970955,0.04608469,-0.13543649,-0.29444152,-0.40615222,0.2732612,0.67528355,0.23702674,-0.03552402,-0.22441652,-0.3690108,-0.48789918,-0.58264893,-0.65969086,-0.71570355,-0.6386289,0.006476987,0.14254741,-0.19139923,-0.20611475,-0.363795,-0.5110599,-0.6227883,-0.69030595,-0.728139,-0.76313895,-0.8372624,-0.8923133,-0.92453337,-0.052956562,0.97562575,1.4963334,0.46194917,0.14499237,-0.02183209,-0.08980496,-0.06537531,-0.08684982,-0.27749008,-0.34756386,-0.26920596,-0.4097653,-0.5329189,-0.58534133,-0.6420144,-0.7404822,-0.7568762,0.97443664,0.978426,1.6044183,1.0996059,0.9208164,0.4054986,0.17178018,0.039053608,0.17392127,0.23704751,0.32550648,0.3062449,0.0578388,-0.09488343,-0.19190885,-0.30117005,-0.3607357,-0.37062007,0.11138111,1.5586703,1.9400554,0.4324727,0.1467362,0.036433656,-0.06470539,-0.17184992,-0.2695204,-0.33080631,-0.3826487,-0.4344114,-0.47185504,-0.50178236,-0.47536662,-0.41403496,-0.47488326,-0.51779157,-0.5731977,-0.6156051,-0.6388967,-0.66000926,-0.71297467,-0.71221876,-0.75429106,-0.76172376,-0.7919787,-0.81806946,-0.64845705,-0.39802814,-0.51973873,-0.5915333,-0.60655636,-0.5235225,-0.43672287,-0.48646256,-0.58014053,-0.5328016,-0.48541868,-0.5010771,-0.55293584,-0.59026736,-0.6336913,-0.6553098,-0.6112942,-0.5468798,-0.41757783,-0.38699013,-0.4655515,-0.52036446,-0.24552374,-0.13959964,-0.24731193,-0.30863357,-0.30268824,0.074374855,0.019436914,-0.13402915,-0.1921057,0.4887064,0.5657184,0.2514918,0.07034686,0.029012535,0.12604545,0.26244566,0.28018194,0.21584414,0.114516124,-0.04954895,0.01903345,0.050502557,-0.08999784,0.43956557,0.37975258,0.18675688,0.09750031,0.04103305,0.0029195882,-0.04623158,-0.114193425,-0.21172424,-0.32023257,0.1025026,0.13984123,0.05651777,0.23342897,0.96159625,0.6865924,0.2920423,0.11137092,0.0484131,0.3596681,0.46770984,0.85723776,1.1421714,1.0478683,0.1892542,-0.104151174,-0.17031036,-0.20187126,-0.2372454,-0.26786128,-0.25601727,-0.33204138,-0.32336727,-0.3108727,-0.32040125,-0.10106556,-0.12243836,-0.2597278,-0.29657802,-0.34107682,-0.3781332,-0.36608297,-0.35731357,-0.38452306,-0.4183745,-0.4497918,-0.39545023,-0.33241695,-0.2529959,-0.32403365,-0.42200723,-0.45423105,0.12830701,0.12945274,0.0040489472,-0.21547955,-0.35536242,-0.35521245,0.2740711,0.18730724,0.061449695,-0.073407516,-0.20965202,-0.3610667,-0.44686592,-0.46856794,-0.50237495,-0.60004705,-0.6300862,-0.66743207,-0.69290864,-0.677627,-0.7198872,0.27521044,0.12702191,0.0034012832,0.030528206,-0.077096656,-0.30045703,-0.44484222,-0.5428947,-0.61470544,-0.6410794,-0.6606023,-0.57870793,0.86092514,0.22067995,0.31940618,0.41950363,0.61012256,0.5588529,0.15699667,-0.0028886609,0.27617413,0.12936819,-0.06052075,-0.2362711,-0.38418844,-0.4619282,-0.48998597,-0.5325498,-0.64202106,0.32829738
+0.53051054,0.1139074,-0.031566937,0.23461185,0.46664667,1.0421034,1.439673,1.3421339,1.0820006,1.0645018,1.6031561,1.6489227,1.2892162,0.88833004,0.411602,0.0040629916,-0.22317065,-0.40752023,-0.39915606,-0.40781656,-0.4826503,-0.4288374,-0.4162407,-0.43745786,-0.42049602,-0.3827954,-0.34670222,-0.35587284,-0.35692662,-0.37113988,-0.29865563,-0.08577953,-0.15859605,-0.26019725,-0.30193812,-0.34932017,-0.4334072,-0.22314896,-0.25322142,-0.34019265,-0.3665089,-0.42801833,-0.30586976,-0.1893895,-0.34424156,-0.42404687,-0.4299665,-0.45090592,-0.46257627,-0.48515213,-0.564132,-0.5370282,-0.50621647,-0.54225993,-0.5876296,-0.5275566,-0.5169117,-0.5095596,-0.50692457,-0.49200958,-0.57887083,-0.5786092,-0.54180825,-0.42257443,-0.5124899,0.6705061,0.74634886,0.5599009,0.35717714,0.2398629,0.15197542,0.16687869,0.14927067,0.058317643,0.0020080395,-0.03803228,-0.066991895,-0.11487624,-0.20768245,-0.23706444,-0.25774968,-0.14279065,-0.09572386,-0.13037755,-0.19570719,-0.22766875,-0.23857309,0.06466146,0.22465648,0.29046988,0.19984092,0.17936209,0.17347108,0.03894827,-0.03093214,-0.107761085,-0.14440554,-0.15142548,-0.1322568,0.39790815,0.5259774,0.3311219,0.18435235,0.19673763,0.15664579,0.10955249,0.08078234,0.012198564,0.014762498,-0.014853634,-0.08290459,-0.15296167,-0.23565991,-0.2182207,-0.21717428,-0.14610876,0.036776397,-0.11192478,-0.21919076,-0.2568863,-0.30833748,-0.37966067,-0.44343752,-0.42532176,-0.46365154,-0.4784545,-0.5225481,-0.46023804,-0.47376248,-0.5196202,-0.5598715,-0.5540741,-0.59759635,-0.5964819,-0.04959845,0.060641985,-0.061052464,0.19136064,0.47279763,0.18663557,0.11910026,0.049274404,0.4609534,0.57374316,0.27613083,0.17654951,0.13703367,0.21051328,0.13291459,0.19976406,0.2274632,0.07671511,0.4993388,0.45720315,0.3614522,0.19317253,0.06328659,-0.012320604,-0.05168641,-0.034573823,0.12908767,0.20054315,0.04421589,0.18345211,0.07868847,-0.032242935,-0.07521189,-0.08785702,-0.034355827,0.1456633,0.15805173,0.041175727,-0.04634263,-0.09892589,-0.16344602,-0.15414849,-0.12102683,-0.20380828,-0.2525468,-0.242878,-0.3068575,-0.34513336,-0.44678044,-0.5124663,-0.4181989,-0.28517112,-0.34009004,-0.38449925,-0.43008038,-0.4619992,-0.13271545,0.0490433,-0.1659123,-0.21875761,-0.25993785,-0.21104662,-0.19138952,-0.27634785,-0.02717856,0.22039352,0.18888752,0.12933913,0.66180515,1.4438249,1.0418403,0.6078997,0.515224,0.40492684,0.3594067,0.40340197,0.43040377,0.43703735,0.36877477,0.21640866,0.16235003,0.14451353,0.3423435,0.29566088,0.18567541,0.17140949,0.116046116,0.2197182,0.2971022,0.16209172,0.12435241,0.05500989,0.12204917,0.13822185,0.07636455,0.20838334,0.16697918,0.074191526,0.04638141,0.4647045,0.38388923,0.3915956,0.55766547,0.79303753,0.8884436,0.7383424,0.524356,0.38170597,0.48443186,0.61437434,0.76852626,0.47698534,0.288316,0.25480783,0.5603323,0.8084688,0.9020345,0.9747484,0.91950274,1.0572879,1.2200089,1.3854959,1.4912596,1.5365828,1.5180573,1.6048439,1.706667,1.7756332,1.8601272,1.9645526,2.1002893,2.1410847,2.1378775,2.2367804,2.2152333,2.185892,2.323718,2.3827534,2.3936207,2.405983,2.354688,2.4646568,2.4299154,2.444057,2.4653764,2.4619694,2.493535,2.4504147,2.4242077,2.3424718,2.3781486,2.4635267,2.5672963,2.582479,2.4979353,2.4301503,2.376049,2.423332,2.556386,2.6084056,2.6029396,2.6725383,2.7587261,2.7617412,2.6947083,2.6445398,2.6762953,2.6306365,2.641117,2.627629,2.5904558,2.5210009,2.5261118,2.4899898,2.5245485,2.4893403,2.5553575,2.511588,2.532487,2.5609505,2.5582542,2.4604955,2.4724116,2.4349294,2.5430293,2.5352573,2.5483837,2.626441,2.6056185,2.6703074,2.7843566,2.7918463,2.736503,2.7930183,2.809702,2.8904147,2.7629693,2.7307131,2.7251568,2.6784108,2.6289637,2.2773466,2.3224277,2.425468,2.4674911,2.5238283,2.6238706,2.652368,2.6593559,2.6221006,2.550982,2.4227762,2.3805003,2.4089227,2.440536,2.4892004,2.6114943,2.6762626,2.7217512,2.730877,2.816948,2.7999654,2.728166,2.7056632,2.7948847,2.750152,2.8076005,2.8845758,2.8823197,2.8714056,2.6880517
+0.35143888,0.42748302,0.58246374,1.219075,1.8823576,2.3938541,2.9039965,2.4295962,2.126186,2.1249876,2.4828756,2.1709046,1.1652439,0.93008363,0.79727656,0.469966,0.14193693,-0.019641887,-0.14951366,-0.19871125,-0.2399763,-0.28562748,-0.35268283,-0.3757838,-0.33849275,0.25040817,0.41569436,0.23659454,0.15986213,0.07458593,0.30571458,1.3372593,0.7494205,0.53751564,0.43114272,0.42740738,0.47038144,0.45164815,0.28020707,0.14247514,0.10503997,0.03307276,0.20121394,0.56018627,0.3670388,0.19279848,0.11651999,0.03652485,0.011677865,-0.04955135,-0.116511196,-0.11706175,-0.07862143,-0.13327764,-0.13788064,-0.09356609,-0.17465381,-0.17715779,0.7132844,0.8396911,0.5390893,0.4074697,0.3859888,0.45751202,0.32420516,1.0075471,0.89543843,0.74435866,0.68825686,0.5064832,0.3708991,0.84042835,0.70054734,0.5211729,0.4084813,0.31694758,0.23988263,0.17449257,0.08986688,0.03583016,-0.025132101,0.6782415,0.70973724,0.47652113,0.34018973,0.2554413,0.16427757,0.2129903,0.54705465,0.34681097,0.26027736,0.25000122,0.37171796,0.22638892,0.1372129,0.08600612,0.02831627,-0.046873424,0.44894308,1.171369,1.2348459,0.7446549,0.5361735,0.7800365,0.9563752,0.90210676,0.6661452,0.54657304,0.48935115,0.47920758,0.34335122,0.24659927,0.21524002,0.24919663,0.2097293,0.37441516,0.7233856,0.42818666,0.28389555,0.20049295,0.10548735,0.1643056,0.8661947,0.5980167,0.38846377,0.2798195,0.17824402,0.3398975,0.3240292,0.19069238,0.09472835,0.747837,0.70338154,0.5473025,1.2178845,0.98390007,0.64476746,0.50950503,1.1059692,0.6566015,0.5085742,0.3626138,0.8710538,0.90300626,0.55838,0.4368534,0.29978308,0.3335762,0.25346696,0.23250692,0.30627534,0.1729077,0.07329954,0.033913124,-0.029852849,-0.11237098,-0.17410302,-0.21630444,-0.27544564,-0.30473483,0.5575746,1.0629373,0.50667775,0.6375078,0.44890562,0.30345136,0.20257208,0.14934814,0.070523754,0.03988671,0.8808938,1.1372447,0.612185,0.42168665,0.28705674,0.20744555,0.117255434,0.025038544,-0.013701063,0.06090993,0.12883566,0.026416007,-0.008365195,-0.017563771,0.6349113,1.1077021,0.59329176,0.3972687,0.27579296,0.18671551,0.5805976,0.6971782,0.39626396,0.27747172,0.2344326,0.30475712,0.39824736,0.24086587,0.29341576,0.48122048,0.5793233,0.84719455,1.0449942,2.0409675,1.7783215,1.0251412,0.8490654,0.6791861,0.45792267,0.8563412,1.0827157,0.825557,0.77549636,0.5629836,0.4443467,0.4132561,1.1533587,0.86376715,0.60566664,0.5043337,0.44419456,0.42003506,0.5338277,0.46343356,0.41122016,0.30293936,0.34247693,0.35808232,0.33991408,0.58523715,0.5016606,0.37739092,0.31169537,0.9851316,1.053092,0.8294728,0.8274243,1.0876827,1.1393132,0.95225054,0.7754781,0.6681242,0.61666036,0.54359996,1.0919852,0.83173084,0.73106074,0.5814299,0.81390584,0.8353057,0.99034405,0.906531,0.8572198,1.051335,1.3560748,1.8921816,2.0190644,2.2040153,2.6651316,2.9980485,3.3541822,3.8696866,3.8236313,3.9436922,3.9929228,4.0945306,4.061432,4.1109223,4.1223288,4.0566845,4.1537995,4.133245,4.1105804,4.195447,4.11921,4.1131535,4.113241,4.194119,4.229389,4.1179714,4.121612,4.1390805,4.114479,4.06609,4.0651164,4.1162744,4.2528386,4.0177684,4.183939,4.0976133,4.0557237,4.1586957,4.264114,4.1979885,4.1789875,4.242276,3.5602703,2.7031322,3.1145039,2.5735323,2.4258695,2.1409657,1.9082632,1.9305838,2.0894601,2.4071286,2.569064,2.6945782,2.8862476,3.0173573,3.1816564,3.2433882,3.4873633,3.895019,3.9259014,4.0211473,4.0542774,4.1413584,4.2303495,4.175125,4.207911,4.199999,4.2073307,4.144752,4.115686,4.190749,4.1495523,4.1609774,3.4509473,2.61161,1.6676564,0.99118197,0.6354551,0.39122647,0.4816407,0.58525527,0.6622081,1.185385,1.7350144,1.9960408,2.2323346,1.7830195,0.75057626,0.66529745,1.1006501,1.6245567,1.9230602,2.7494655,3.2107723,3.4855468,3.7609677,3.9100053,4.047412,4.008003,4.040698,4.053627,4.0509434,4.0015182,4.1120863,4.0751667,4.029455,3.693555,2.9777873,2.7318234,3.0678132
+1.0926917,0.9599075,1.3764532,1.4837675,1.6519388,1.840287,2.7514517,2.2917738,1.8431057,1.7452745,1.8779125,1.8637805,1.4079909,1.1651366,0.983564,0.79103756,0.6713631,0.6094533,0.5522449,0.50833553,0.49651343,0.4456308,0.44617942,0.4024923,0.39964053,0.77061725,0.9670695,0.74209356,0.7509953,1.0315623,1.4204537,1.9183769,1.7181249,1.5806956,1.481079,1.6990178,1.6333168,1.4948369,1.2708893,1.0837765,0.9724109,0.88785046,1.2375431,1.5850022,1.5135573,1.2871664,1.0931466,0.9702771,0.8854177,0.8024687,0.755104,0.8448895,0.89126927,0.81230414,0.7716914,0.73632336,0.8057421,1.1605608,1.0796742,1.0698605,1.0764983,0.9692385,0.8966849,1.1283072,1.5871009,2.0680003,1.6766093,1.5458138,1.7775512,1.5038979,1.3231261,1.2197968,1.1562984,1.0897686,1.014421,0.9699253,1.0645757,1.1396809,1.0098531,0.9475105,0.906629,1.1208932,1.0835205,0.97515666,0.92603755,0.8982109,0.8650305,1.113275,1.3850956,1.2426646,1.1280912,1.2076323,1.3659801,1.1689885,1.0809083,1.1043754,1.1257613,1.2244349,1.3620772,1.4762056,1.501659,1.2972958,1.1763401,1.1072996,1.2225041,1.2341933,1.1710978,1.4980612,1.4171255,1.4021932,1.2249495,1.1144722,1.0535685,0.99525404,0.96674454,1.4834348,1.5295403,1.248605,1.2132218,1.2812517,1.871807,2.286429,1.8198752,1.7229075,1.4904082,1.3436977,1.2431309,1.2380404,1.1938648,1.1164153,1.0478358,1.3604372,1.5607951,1.7836794,1.7875639,1.9102323,1.6132989,1.5131447,1.5781324,1.4582548,1.349899,1.2180668,1.6502255,1.7201434,1.3959935,1.2637253,1.1793671,1.127899,1.0723999,1.0278089,0.9691316,0.9376993,0.8974667,1.0572373,1.0150355,0.9312307,0.8730641,0.83475566,0.794881,0.787001,0.8235011,1.0815446,1.1240859,1.0972269,0.96742225,0.89686805,0.88278085,0.90148693,0.8412564,0.80595386,0.91810226,2.046307,1.6281891,1.3071649,1.1431372,1.0491012,0.9868494,0.9032715,0.8718628,0.9457449,0.96739185,0.98599374,1.7499311,1.5851709,1.6679547,1.5327518,1.2898343,1.160801,1.0648348,0.98484457,0.9968209,1.0111187,0.89319986,0.85304654,0.83478045,0.84967154,0.83065045,0.8018422,0.79785717,0.952017,1.039294,0.9010536,1.0259705,1.372242,1.930786,1.4058735,1.6108108,1.5061216,1.2875,1.6803033,1.8118111,1.4231434,1.6023986,1.4694748,1.2682732,1.2526498,1.2173436,1.1670777,1.0892372,1.0492731,1.004096,0.9999974,1.137789,1.121524,1.0359533,0.91679287,1.0163555,1.0640807,1.0935062,1.218708,1.0788656,1.0158918,0.9397354,1.3972373,1.4052117,1.3390478,1.384734,1.777156,1.9178416,1.6257707,1.3764648,1.2989328,1.257664,1.5773857,1.791992,1.4452581,1.2903011,1.1613765,1.2994423,1.4263259,1.8139513,1.7461085,1.5546736,1.6127002,1.8401356,2.208208,2.4008982,2.4283137,2.5626426,2.545509,2.726068,3.4851537,3.4201512,3.4664016,3.483002,3.6012495,3.6469681,3.7737856,3.756339,3.7294917,3.8490353,3.750283,3.664259,3.70547,3.610957,3.64188,3.6246798,3.7529278,3.772314,3.4855392,3.425796,3.4676719,3.420437,3.4204917,3.4974554,3.5148993,3.7523491,3.1954956,3.028514,3.0025969,3.1082785,3.2592235,3.484243,3.4625611,3.4183347,3.293766,2.5148265,1.9135547,2.393754,2.1214504,2.092267,1.7558919,1.539639,1.573456,1.6167006,1.92816,2.2933173,2.4028902,2.4946678,2.5803773,2.6460567,2.844651,3.015498,3.3173769,3.1894374,3.2361355,3.3312087,3.6420946,3.8171577,3.721133,3.7787867,3.8334036,3.7579546,3.842625,3.921447,3.857136,3.7201521,3.474196,2.4088674,1.4408177,1.5965348,1.4163129,1.2786407,1.2637469,1.1111773,1.0166689,0.8212135,0.99550235,1.3683107,1.6799189,2.3447104,2.199049,1.5279083,1.3606515,1.6159623,1.9080367,2.03342,2.9241288,3.1214976,3.3169994,3.5562801,3.6881266,3.9084446,3.9181123,4.0590014,3.9984808,4.0089064,3.9420896,4.192761,3.9611802,3.5958738,2.5678713,1.5262463,1.2334423,1.9747446
+1.4658734,1.3736258,1.2612646,1.3643701,1.2556329,1.1924399,1.6652927,1.4357231,1.5046675,1.38255,1.2729825,1.4698935,1.2952083,1.1597188,1.0250866,0.91386807,0.8263321,0.7688011,0.7258698,0.6454721,0.60034454,0.6466258,0.71136487,0.6621018,0.6212135,0.67324126,0.7781992,0.8687756,1.0042605,0.9467651,1.1678128,1.387683,1.7761115,1.7938893,1.5664756,2.0409167,2.0020733,1.6798089,1.3914635,1.2812138,1.2407455,1.1416507,1.1964743,1.3223586,1.151133,1.0060006,0.96988237,1.0032316,0.9550111,0.8522546,0.85815275,1.4950986,1.5505655,1.284996,1.132851,1.0358841,0.97790504,0.9163296,0.87215054,1.6798673,1.517153,1.276874,1.1810391,1.2849461,1.2888396,1.6131972,1.5078056,1.4178251,1.7424548,1.4241984,1.2593505,1.1872237,1.0906315,1.0208219,0.9693606,0.9133798,1.0897768,1.2043152,1.0543753,0.9661815,0.914784,0.8708986,0.8686549,0.9180204,1.2146132,1.0650389,0.9371129,0.9586447,1.2063091,1.4850179,1.2183496,1.1720912,1.1835682,1.0116302,0.9546609,1.5561738,1.3164968,1.1003567,1.2668886,1.3660192,1.5979269,1.3055102,1.1352812,1.2872776,1.5864887,1.2669885,1.160743,1.0775913,1.0410628,1.1910868,1.0220149,0.92701805,0.8660563,0.8125868,0.7667137,1.3087448,1.5964663,1.2043096,1.2193273,1.633562,1.6775165,1.873328,1.5953294,1.5894645,1.4074879,1.2755663,1.1752858,1.3381608,1.4047378,1.1403861,1.0430045,1.0474048,1.0342568,1.2613705,1.2837272,1.1737376,1.2324922,1.1535516,1.1546099,1.2379708,1.4116718,1.1777366,1.3938153,1.5253114,1.1859231,1.1108612,1.0229007,0.9582361,0.82701087,0.73547554,0.6915884,0.5999992,0.56712353,0.74018365,0.90903366,0.69475305,0.60676,0.5512767,0.48776853,0.44430536,0.4030438,0.3420967,0.40014732,0.5192863,0.37653574,0.31992245,0.29303783,0.23934518,0.18040033,0.15823804,0.14593436,1.2952063,1.343419,1.0303355,0.87141144,0.78726864,0.75039375,0.63850206,0.55678177,0.6596658,0.72284293,0.92189324,2.1364012,1.6390431,1.4638329,1.3462043,1.1650217,1.052823,0.9500394,0.8631356,0.8495519,1.087537,0.89618033,0.79513896,0.75779414,0.73164815,0.723421,0.6522213,0.63947797,0.63003564,0.59883726,0.56495607,0.51171994,0.49501884,0.8242047,0.778314,0.6437115,0.5874426,0.5544567,0.81382215,1.3155773,1.0241841,1.2496207,1.1359266,0.93803746,0.92100024,0.8791281,0.82888067,0.7854986,0.7347451,0.68919104,0.69328964,1.0866929,1.128853,0.93234384,0.8633786,0.8800946,0.8597737,0.814293,0.7797466,0.7306686,0.7054311,0.6758994,0.9429312,0.8229085,0.7161925,0.7241188,0.81537133,0.7706418,0.7246612,0.6941036,0.681007,1.7165768,1.9725218,2.1030374,1.5066106,1.3023331,1.2122774,1.365979,1.6853251,1.8615942,1.4722334,1.3023202,1.3151529,1.43535,2.1303248,2.018627,2.0772038,2.0372286,2.272853,2.8752038,3.444563,3.0568123,3.220367,3.2905717,3.5632663,3.5128992,3.6598337,3.0396893,2.8108635,2.2220974,1.5769536,1.632935,1.6866863,1.6827009,1.6829973,1.5616636,1.9493062,1.6120994,1.3048768,1.5373023,1.7961203,2.0159144,2.1613135,2.3387318,2.9334168,2.7990675,1.7484095,1.4326315,1.546917,1.6896683,2.090405,2.0019646,1.5903559,1.5339557,1.5282335,1.3603511,1.686395,1.8672763,1.4990833,1.3324442,1.1848466,1.0734408,1.0944263,1.070878,1.1305699,1.1981411,1.065062,0.9988954,1.1364069,1.3743536,1.4671912,1.4146785,1.2757198,1.4761977,1.4442228,1.6798763,1.6543119,1.3653102,1.3060412,1.4570936,1.3994323,1.4334782,1.4843764,1.1447817,0.99421585,0.95487523,0.97342694,0.9052279,0.85860705,1.2265601,1.2794695,1.078254,1.1113911,1.2294476,1.1896306,0.9541116,1.0077869,1.2307339,1.4924965,1.7175999,1.3065985,0.9879607,1.1690632,1.1851741,1.3858354,1.6235647,2.56215,2.5477114,2.8728957,3.1816707,3.291071,3.284515,2.9915562,2.6689734,1.9608423,1.8945407,2.0105407,1.3211701,1.0817883,1.2313244,1.690792,1.5245109,1.2938423,2.3317292
+1.1367317,1.0683401,0.4336903,-0.10836829,0.1215585,-0.008226316,0.063706115,0.024483327,0.3056986,0.14235431,-0.14932032,0.17040955,0.0768504,-0.15694216,-0.27591696,-0.36376083,-0.4510196,-0.5304544,-0.6032549,-0.70337415,-0.7738886,-0.8264511,-0.5667254,-0.5007123,-0.6669934,-0.7888031,-0.7077038,0.058354158,-0.104224935,-0.2904383,0.17833567,0.2663868,0.6216349,0.9263964,0.25451076,0.8829806,0.43183154,0.019941289,-0.15997544,-0.24270031,0.18742275,0.06704989,-0.13384047,0.004869748,-0.1339467,-0.2888208,-0.1492681,-0.038405385,-0.24859363,-0.39560625,0.23142834,0.5708721,0.23650546,-0.03621177,-0.27873594,-0.42995077,-0.58353645,-0.7233305,-0.6263989,0.123000786,0.12479885,-0.21599409,-0.37480554,-0.5073905,-0.625703,-0.6673676,-0.5818576,-0.7037457,-0.8499827,-0.9473989,-1.0358641,-1.1656804,-1.2415301,-1.2321262,-1.2881979,-1.3604674,-0.34057692,0.22347839,-0.15746593,-0.46686357,-0.6286758,-0.5703287,-0.19998184,-0.29191554,0.16550964,-0.034404468,-0.37710625,-0.55878896,0.10084358,0.6059586,-0.058272075,-0.2458561,-0.017631453,-0.064725325,-0.04705594,-0.05724154,-0.31714284,-0.502792,-0.5961436,-0.6591324,-0.7569803,-0.89302796,-1.0196816,-0.94033015,-0.64134735,-0.86865115,-0.98260534,-1.0373918,-0.6917196,-0.4683795,-0.48397225,-0.5434705,-0.775385,-0.8959218,-0.9730949,-1.0741887,-0.7557982,-0.5303229,0.37493038,0.97372246,0.09497705,0.11223164,0.585908,0.44930878,-0.014321726,-0.2127247,-0.3859163,-0.054233264,-0.12613584,-0.4139424,-0.53142166,-0.6228129,-0.7714488,-0.86268884,-0.94305235,-1.0270885,-1.0814542,-0.5242906,-0.34763074,0.08196217,-0.08089949,-0.39959165,0.12737979,0.32801288,-0.16877331,-0.3729177,-0.5274517,-0.634316,-0.7686739,-0.88124335,-0.9687289,-1.0534767,-1.1210028,-0.6030892,-0.2484462,-0.3521867,-0.2497095,-0.49681634,-0.6170117,-0.7232779,-0.8133622,-0.9130292,-0.99390274,-1.0268627,-1.0993898,-1.1655964,-1.2085185,-1.2407851,-1.2872237,-1.3278837,-1.3564528,-0.08079548,0.23706411,-0.09699866,-0.2755238,-0.4042355,-0.49896947,-0.58526367,-0.67950284,0.10477404,0.51386946,1.5459489,1.4697361,0.584785,0.15570055,-0.04405598,-0.17839299,-0.28890616,-0.37967014,-0.46100512,0.057182197,1.3741701,0.15868078,-0.09545252,-0.2027851,-0.2848882,-0.36013865,-0.43497777,-0.5111936,-0.5734945,-0.6581243,-0.7143106,-0.77191466,-0.82893234,-0.36822212,-0.32839882,-0.4956657,-0.5886105,-0.64743286,-0.5422718,-0.42360306,-0.54573166,-0.6658593,-0.7605604,-0.74794614,-0.8047534,-0.8598273,-0.8714314,-0.8365696,-0.8694155,-0.91983557,-0.8771614,-0.66873395,-0.54750437,-0.6395669,-0.7217623,-0.67733705,-0.66032904,-0.6331246,-0.64807075,-0.7285464,-0.74310833,-0.7565928,-0.7689689,-0.8779646,-0.91626346,-0.84526384,-0.8114711,-0.8587506,-0.94018114,-0.9505964,-0.89294136,-0.79682934,-0.63089645,-0.29371572,-0.371054,-0.53644085,-0.59737194,-0.088327274,0.539243,0.8357847,0.28112298,0.057156134,0.14935881,0.4171431,0.6041069,0.2823878,0.09484832,0.09959625,0.4352994,1.213918,0.42145246,-0.046993356,0.14672098,0.45012766,0.5371289,0.38591093,0.5781039,0.30475456,0.17351583,-0.008851271,-0.11298624,0.014390636,0.018010143,0.04531588,-0.06146918,0.41269648,0.87961715,0.25922507,0.04858457,0.096757725,0.39176324,0.67639273,1.2068675,1.8863783,2.1508312,0.53380144,0.03682666,-0.06996806,0.11586082,0.106426,0.05154519,-0.09165929,-0.15656702,-0.1789846,-0.17131871,-0.06917913,0.8718535,0.25509754,-0.00495274,-0.06657483,-0.15076093,-0.20930938,-0.19156395,-0.14946418,-0.08609192,-0.130968,-0.25020903,-0.29815567,-0.2140469,0.03495205,-0.115560815,-0.3655394,-0.48675063,-0.08380109,-0.05289356,-0.050535526,-0.14870116,-0.20703235,-0.22556913,0.023898948,-0.110250995,-0.10786857,-0.09657739,-0.33964333,-0.46521488,-0.45798352,-0.4374695,-0.5198358,-0.6107295,-0.29439786,-0.15571322,-0.27407455,-0.36260527,0.06362973,0.043477062,-0.17254557,-0.25610995,0.0028311498,0.3092366,-0.052204084,-0.43926796,-0.56154054,-0.51590586,-0.5603027,-0.37725472,-0.09368302,1.5620773,0.50855803,0.31431383,0.4083007,0.31320596,0.5218073,0.23023199,-0.07564692,-0.25616625,-0.21321669,-0.10776709,-0.40416867,-0.47492254,-0.5481318,-0.6338266,-0.6626507,-0.74796873,0.29462212
+0.28919274,0.045464087,-0.14842723,0.31253177,1.097485,1.8413568,2.6069012,2.5984704,2.5330296,2.772647,3.616778,3.8130486,3.6003275,2.944131,1.7615502,0.68030715,0.18975781,0.0141602345,-0.08018191,-0.19827332,-0.29661858,0.21067946,0.3677647,-0.0012760572,-0.13053188,-0.006023269,-0.08700018,-0.22222541,-0.26966327,-0.34108526,-0.104444325,0.47924763,0.20238821,0.046693478,-0.07758851,-0.17566843,-0.22197142,0.20536931,0.090639055,-0.0596341,-0.18360785,-0.24774872,-0.20596093,-0.1523618,-0.22347529,-0.2611174,-0.3241198,-0.36761558,-0.3372184,-0.3795117,-0.4113174,-0.3969464,-0.4199009,-0.43280202,-0.48507342,-0.4401247,-0.45551845,-0.4311002,0.07042292,0.39602157,0.10654652,-0.03210118,-0.078394115,-0.07999642,-0.17850904,0.80409086,0.795318,0.379812,0.21737425,0.011993337,-0.06541385,-0.14232855,-0.05806538,-0.113858774,-0.20817374,-0.23350471,-0.26548856,-0.31107724,-0.34081843,-0.3739835,-0.3898777,-0.2947654,-0.022574391,-0.09375383,-0.19828588,-0.2508598,-0.29925215,-0.081000805,0.3902971,0.90936476,0.4846406,0.24230038,0.10697478,-0.041481074,-0.13846558,-0.20545393,-0.2339477,-0.27639216,-0.28154978,0.7938508,0.9993701,0.4972465,0.18141803,0.091997996,0.05644918,-0.050908413,-0.12840946,-0.17868425,-0.093244046,-0.03481565,-0.14133923,-0.20965268,-0.17694552,0.72301173,0.3868967,0.10624963,0.11115028,0.0079278685,-0.09006211,-0.14413263,-0.23004515,-0.27925977,-0.3452291,-0.30636424,-0.37358552,-0.39253962,-0.42275488,0.07718584,0.13826548,-0.01887789,-0.12107007,-0.21290256,-0.26571974,0.105013594,0.65797687,0.6574249,0.3693074,0.4877876,0.7766143,0.29876158,0.127236,-0.011283632,0.21485607,0.40549794,0.099225,-0.021027323,-0.11603007,-0.15983273,-0.21301708,-0.22494613,-0.17833877,-0.2774392,0.44627535,0.4400499,0.14362161,0.014266659,-0.081683666,-0.15145338,-0.21298617,-0.26808658,-0.023617033,0.17967823,-0.0057419054,0.33180246,0.24970548,0.040780406,0.06957713,0.04194853,-0.07885495,-0.1303264,-0.07716167,-0.05696742,-0.16521692,-0.22088031,-0.26053622,0.61579907,0.4375353,0.15448536,0.033415023,-0.05022947,-0.13442826,-0.20324463,-0.22772355,-0.27549276,-0.29889655,-0.16312923,-0.20113887,-0.25683886,-0.30838534,-0.3384042,0.22796156,0.43796444,0.13597041,0.016785976,-0.05685966,-0.04215784,0.030464243,-0.07172692,-0.043397922,-0.013967495,0.038557846,0.36241353,0.7818564,1.644727,1.4718536,0.93265545,0.38126558,0.25333446,0.20588519,0.4288004,0.5788069,0.65004134,0.4636132,0.24794729,0.17419627,0.13304171,0.7755997,0.8079858,0.4450618,0.38899225,0.2708423,0.17104678,0.08755095,-0.019327734,0.104486406,-0.021445636,-0.06646301,-0.08089274,-0.07343052,0.35577378,0.3688325,0.1843556,0.1172421,0.8518259,0.77448225,0.46186334,0.43623102,0.6965298,0.7974664,0.6516658,0.49995947,0.48637664,0.63304317,0.5185707,0.75228834,0.67197263,0.41361633,0.34882015,0.7222698,0.87623644,1.0659413,1.1622539,1.1770097,1.4437238,1.8673868,2.2382452,2.2389917,2.42383,2.7535458,3.0771503,3.342661,3.4842312,3.5928416,3.6788652,3.7601871,3.8498259,3.8215628,3.8836923,3.862616,3.8626244,3.9442713,3.9953918,4.0254583,4.0860972,4.0627136,4.0846415,4.0983815,4.1222677,4.1539264,4.048175,4.088459,4.047842,4.01966,3.9386578,3.9785943,4.073061,4.1447544,4.1922646,4.177533,4.126158,4.1273575,4.1715674,4.2258525,4.2186794,4.2435904,4.2904944,4.349404,4.4191117,4.3232765,4.312522,4.305853,4.302718,4.2958565,4.253156,4.2276273,4.1671977,4.160951,4.12129,4.131448,4.115982,4.1626954,4.1352654,4.182143,4.154332,4.1803694,4.089513,4.137673,4.153275,4.1812763,4.204391,4.235811,4.23565,4.1902485,4.2312455,4.1249676,4.3046517,4.3256187,4.276926,4.1930094,4.20562,3.383954,2.6944196,2.7719889,3.1009536,2.7557733,2.2603235,3.08712,3.6382208,3.8537147,4.0483313,4.1364675,3.919056,3.6457343,4.001265,4.0747666,4.0067754,4.0299087,4.108413,4.130109,4.083309,4.153041,4.164482,4.174848,4.19961,4.211392,4.2164545,4.183171,4.136282,4.160347,4.181673,4.207408,4.221604,4.222048,4.2775965,4.2765155
+0.16659161,1.0201733,1.5096073,1.7086427,1.8981473,2.0636027,2.4831064,1.679126,1.2678044,1.1207975,1.1746309,1.5222387,1.2681655,1.0616972,0.8757838,0.7376866,0.61259174,0.50567406,0.44441152,0.37396255,0.36817867,0.3153078,0.35433578,0.36291358,0.3851089,0.82108223,1.1048411,0.8349434,0.75037813,1.1036074,1.3382053,1.6350515,1.8128092,1.827617,1.5276077,1.7147824,1.6430877,1.4940028,1.2663841,1.0420058,0.9123492,0.80120033,1.1234492,1.3345406,1.1095293,0.94217145,0.82185256,0.7105166,0.6833553,0.5368647,0.52080595,0.5268116,0.4909879,0.5837922,0.64733666,0.53117377,0.52175784,0.53912234,0.49002504,1.0012095,1.13538,0.9626441,0.83901745,0.89556986,0.95892763,1.7401847,1.7293124,1.5543517,1.4711246,1.2846724,1.0832751,1.0412227,1.0400584,0.91514516,0.8056304,0.7366986,0.7188029,0.6966361,0.65731615,0.6333102,0.63581336,0.58950317,0.5888831,0.5669366,0.5825377,0.5682994,0.5471717,0.95627254,1.2707078,1.8793321,1.4293041,1.4888779,1.6485257,1.2949631,1.1673594,1.1959617,1.1223767,1.1102941,1.6093206,2.0495024,2.0085719,1.5262386,1.3321847,1.2225709,1.2245693,1.1643555,1.0494083,1.2328224,1.3763891,1.4500811,1.2255998,1.0712368,1.0200382,0.99946404,0.9353863,1.1755586,1.3514678,1.110651,1.0238259,1.0432069,1.3763045,2.187652,1.9442543,1.9738009,1.585041,1.3974302,1.2532105,1.1618663,1.0875952,1.0059199,0.9324107,1.4699411,1.533641,1.5594174,1.5779586,1.7726287,1.4757392,1.3258246,1.2408662,1.2457638,1.1837546,1.0671885,1.1797739,1.514694,1.2158703,1.0936344,1.0328486,0.9815141,0.9037235,0.8390679,0.80196095,0.75153315,0.72881734,0.75585514,0.75969803,0.68716407,0.6422841,0.6057129,0.5775753,0.5556256,0.53693175,0.56705016,0.61813384,0.67958283,0.61140436,0.55913293,0.5533689,0.5439022,0.48332024,0.4829406,0.4994836,0.84192336,1.1193824,0.83016014,0.70077956,0.64554155,0.6219809,0.5569575,0.48565185,0.7828659,0.8870734,0.7285197,0.71702254,0.7488102,0.6880096,0.7328326,0.69541496,0.611988,0.55024326,0.5108252,0.51984036,0.5359201,0.46871287,0.38519704,0.38624513,0.4662485,0.5157287,0.43740183,0.44388318,0.457489,0.44583386,0.40582415,0.3970971,0.44144914,1.4315975,1.1655372,1.0695488,1.0603015,0.93333447,1.488425,1.8702524,1.4264975,1.4607483,1.3969527,1.1504058,1.1391356,1.0850644,1.0442204,1.0177248,0.9814304,0.9286157,0.90114856,0.943357,0.93927515,0.8976181,0.8396855,0.868904,0.80379206,1.9277611,1.7857932,1.4058161,1.3007336,1.1569545,1.9112983,1.6688516,1.5086169,1.5273532,1.6994157,1.5541689,1.3271301,1.2486489,1.1999344,1.8202188,2.0864305,2.276004,1.7225342,1.5093875,1.3699417,1.5199441,1.5485102,1.7352599,1.5775061,1.378283,1.4962797,1.7184808,2.3623023,2.513709,2.7309217,2.9235535,2.9716353,3.365898,3.845131,3.574109,3.6268563,3.5880814,3.8337965,3.7695227,3.94192,3.7312398,3.8144069,3.7105694,3.4156697,3.5396123,3.2423778,3.0798705,2.9168954,2.6760998,2.8771667,2.3843458,1.9997835,2.1913123,2.3335536,2.4283743,2.4781752,2.619842,2.809606,2.8592105,1.7844218,1.668973,1.9185644,2.173171,2.5121655,2.6135216,2.1959531,2.008012,1.8120911,1.3421744,1.2851082,1.9952197,1.973295,1.762567,1.4176886,1.3130302,1.3666767,1.4480554,1.7842786,2.2244866,2.3406549,2.4925756,2.6240592,2.7809303,2.9347339,3.0905652,3.049712,3.0440688,3.0300684,3.0879261,3.5290544,3.6698966,3.6842268,3.859637,3.8186724,3.8416862,3.8641534,3.78216,3.6314185,3.515268,3.3336432,2.1618242,1.3520856,1.2342515,1.6452091,1.3471751,1.2325459,1.1230668,1.017393,0.8616644,1.0275508,1.28984,1.5673363,1.8732954,1.5247078,0.9910259,1.080411,1.419256,1.6685759,1.8199466,2.921707,3.2229893,3.505239,3.7495918,3.884913,4.0476456,3.936666,4.0676894,3.8144903,3.8219304,3.8890958,3.7327862,3.246828,3.031065,2.2121575,1.4627578,1.1892011,1.7300992
+0.21050371,0.19195063,-0.13841099,0.3728071,1.0395632,1.5056419,2.3805184,1.9153214,1.4213268,1.2424936,1.3280646,1.3894799,0.5336231,0.25913817,0.1579614,0.06579521,-0.11528619,-0.3045277,-0.35834327,-0.40247625,-0.44662344,-0.5121001,-0.55297464,-0.5622233,-0.5552933,-0.18636344,0.02402049,-0.06147487,-0.11800179,-0.2560003,-0.30089816,0.39067724,0.16906697,0.06888488,0.06708133,-0.09162156,0.17422347,0.23876117,0.011726748,-0.1458614,-0.21887116,-0.30361426,-0.15236965,0.08415268,0.38340235,0.13964029,-0.042525556,-0.18789463,-0.20932724,-0.20306455,-0.3421682,-0.3809623,-0.37215123,0.046389017,0.17604782,-0.08725244,-0.20290834,-0.24145563,-0.30644104,-0.26810923,-0.22043562,-0.36871257,-0.40074062,-0.39392617,-0.36744004,0.28600085,0.91783416,0.23368557,0.15135537,-0.026208494,-0.15560263,-0.12561207,-0.009797674,-0.15253033,-0.1990896,-0.26034915,-0.3219627,-0.3349374,-0.3836785,-0.41528976,-0.40892553,-0.25062174,-0.074857146,-0.1815237,-0.308103,-0.3673239,-0.39064074,-0.44413415,-0.24268092,0.54286736,0.24201916,0.14535248,0.7113688,0.21005012,-0.0012034886,-0.12217596,-0.12679996,-0.21591215,-0.0060939305,0.6653886,0.7224305,0.398849,0.074295044,-0.036250424,0.12662084,0.15632729,-0.009949882,0.29485336,0.28316405,0.15074441,-0.033772472,-0.16859744,-0.21495245,0.17084783,0.16791981,-0.08452037,-0.10410723,-0.1962366,-0.15180829,-0.108196735,-0.20519027,0.11448036,0.55090815,0.77836716,0.27799833,0.061344553,-0.06009331,-0.079918966,-0.057786565,-0.19211839,-0.26575136,-0.042282734,0.20436664,-0.022218142,0.41147828,0.86654985,0.32694566,0.12427913,0.13500363,-0.024569761,-0.08655241,-0.19129467,-0.23953189,0.83076125,0.2711565,0.029112775,-0.08565262,-0.06793223,-0.092810035,-0.22250481,-0.21083765,-0.2532013,-0.32253912,-0.31742138,-0.3510249,-0.39170182,-0.41122648,-0.42546773,-0.42912498,-0.4277652,-0.4393893,-0.3349909,-0.3468864,-0.050895777,-0.0029687993,-0.22763832,-0.25275066,-0.25557038,-0.37696958,-0.3840881,-0.32557887,0.6865562,0.36481655,0.082642466,-0.056877706,-0.0042886995,0.09794013,-0.11548945,-0.24061596,-0.1113663,-0.02318051,-0.15494852,-0.19855957,-0.08948104,-0.023402926,-0.051508572,-0.092543215,-0.1827159,-0.25091916,-0.27827328,-0.29907143,-0.27878264,-0.31190893,-0.38814706,-0.34897864,-0.3643272,-0.3032918,-0.37448213,-0.33386645,-0.3453326,-0.15985274,0.042105507,0.1837346,0.7419586,0.72242785,0.60221446,0.2336127,0.1009395,-0.05250292,0.071629584,0.96285033,0.65146744,0.36147857,0.17326605,0.079953596,0.0935777,0.5152847,0.4119107,0.12322584,0.20357926,0.10749015,0.10348168,0.022245418,-0.0673189,-0.07840881,-0.20025785,-0.11327562,-0.095566735,0.32507694,0.56009513,0.28433067,0.06466736,0.054152858,0.5225619,0.3374614,0.2159455,0.26350063,0.5521544,0.75896794,0.690763,0.5064992,0.52342904,1.0837404,1.0421245,1.0778172,0.5062393,0.28847307,0.15961282,0.5162862,0.84514666,1.0687802,1.1970191,1.1550587,1.3788612,1.731637,2.1523967,2.262736,2.4141955,2.5920749,2.8756123,3.0067027,3.443147,3.5098267,3.6849334,3.757842,3.7319663,3.766618,3.7961073,3.6785564,3.8008447,3.8160462,3.6619859,3.634238,3.7228568,3.7599216,3.743844,3.7556446,3.7504225,3.7971542,3.803133,3.8263268,3.851605,3.9108763,3.9177032,3.937512,3.881707,3.8896222,3.6605844,3.8203619,3.786362,3.816441,3.7680864,3.7920349,3.8568957,3.8270478,3.8656666,3.793304,3.762204,3.8486357,3.8857312,3.823931,3.8075733,3.7648969,3.7440376,3.751418,3.8022385,3.7447698,3.7794309,3.800894,3.8115194,3.8086896,3.7628284,3.7317102,3.8322315,3.8381536,3.9598243,3.9016747,3.8860676,3.9010196,3.9455335,3.8542228,3.9073944,3.8518147,3.9083018,3.7903314,3.789874,3.897278,3.867426,3.8023129,3.573756,2.5949726,2.1460223,1.5874233,1.6093074,1.3633527,1.0625523,1.2046291,1.9754403,2.4856386,2.7453935,2.8521714,2.601345,2.1309292,2.038212,2.5601902,2.8635147,3.0418649,3.3688545,3.5022478,3.603097,3.6494317,3.7643955,3.7985044,3.8385205,3.7943416,3.835254,3.9481697,3.8454502,3.8440971,3.7826128,3.8469696,3.8830388,3.7290668,3.596428,3.6157336
+-0.34672722,0.25188318,0.9611639,1.0238744,1.1947656,1.5779612,1.835901,0.54849464,0.13039641,-0.06268719,-0.09671682,0.3361532,0.1971796,-0.06186201,-0.20066285,-0.29018345,-0.35512692,-0.49627006,-0.58929145,-0.64842397,-0.69480956,-0.5914651,-0.13799286,-0.22874756,-0.412553,-0.18817382,0.010616239,-0.24205403,-0.2893256,-0.32429424,-0.3097891,0.48081458,0.7407241,0.3655683,0.2141348,0.23630236,0.4139042,0.28185228,-0.0835302,-0.2520099,-0.3509149,-0.45134732,-0.392349,-0.19806091,-0.31765085,-0.52647525,-0.64943767,-0.66328055,-0.6847974,-0.77990645,-0.8277824,-0.7889606,-0.86643654,-0.53663635,-0.32673094,-0.6097218,-0.74435014,-0.8893198,-0.9678087,0.04318997,0.108236924,-0.22352129,-0.3420213,-0.48709664,-0.59798425,-0.1474546,0.98372996,0.07675198,-0.010572337,-0.34736,-0.48792693,-0.13977179,0.026423413,-0.2657923,-0.4005785,-0.5328997,-0.64290315,-0.7361814,-0.84729344,-0.9221148,-0.99504364,-1.0304533,-1.107478,-1.1615373,-1.208298,-1.2538695,-1.3201268,-1.3416326,-1.254576,-0.8332892,-0.9525873,-0.83906144,0.3907264,-0.21036915,-0.4152627,-0.056249242,-0.08777852,0.07493298,0.051617604,-0.09660725,-0.0117717795,-0.12438029,-0.3897837,-0.5766989,-0.21484354,-0.076316476,-0.40209877,-0.61487687,-0.44432932,-0.34688795,-0.5765941,-0.74656945,-0.9055464,-0.7982399,-0.81485045,-0.98702127,-0.9805844,-1.0729909,-1.213515,-1.0944734,-0.55742395,-0.23332298,0.7031701,0.72187316,0.18710057,-0.10644762,-0.30169338,-0.39310047,-0.51986235,-0.6958847,-0.83820546,-0.21733911,0.4489952,0.13014929,0.046457436,0.36599055,-0.011623543,-0.14905329,-0.20116828,-0.3974493,-0.59783334,-0.74003524,-0.85276914,0.5517831,0.16400985,-0.060654264,-0.27747008,-0.43250114,-0.60026383,-0.7281164,-0.899969,-0.9895144,-1.0596972,-0.9848791,-0.85997045,-1.0252582,-1.1396782,-1.2421395,-1.2899675,-1.2588964,-1.2054112,-1.2176098,-1.0836465,-0.83091074,-0.7091895,-0.87745345,-0.9965684,-1.0510554,-1.1513197,-1.247694,-1.3040487,-0.8492961,-0.3687852,-0.6395954,-0.7914974,-0.9410267,-0.82462335,-0.5647616,-0.6887474,-0.31680202,-0.11141029,-0.33004844,-0.32891828,-0.15331812,-0.21463077,-0.39576888,-0.41711438,-0.5333186,-0.6488996,-0.72874296,-0.7738328,0.16150767,0.18135442,-0.072446644,-0.20916714,-0.31996462,-0.38061112,-0.40737247,-0.47529414,-0.56111795,-0.64904237,-0.7662728,-0.7614221,-0.6500082,0.16600326,-0.109060705,-0.23162408,-0.37309122,-0.45239177,0.11261819,0.9597361,0.2051921,0.26176125,0.22899853,-0.01938742,-0.13207014,-0.26176307,-0.3730505,-0.39984623,-0.4378173,-0.43901154,-0.43747044,-0.42788166,-0.4726046,-0.5411976,-0.56330556,-0.5464203,-0.52563,0.26062182,0.51771104,0.086857244,-0.050616577,-0.09982611,0.5163374,0.2759363,0.02386159,0.028172877,0.25675654,0.17001042,-0.013104312,-0.14658383,-0.17799658,0.6061107,0.8551438,1.025697,0.42235482,0.1318701,0.0065945126,0.1901991,0.18427442,0.38171476,0.2771201,0.053403553,0.030237671,0.22923864,0.8427677,0.7513542,0.72419655,0.77740794,1.237149,1.9707348,2.2758374,2.3225744,2.740178,2.847733,2.9137526,2.9746833,3.2852273,2.9184198,3.1074004,2.825078,2.2349896,2.2902327,1.7838552,1.8986459,1.9781828,1.8751404,1.7552818,1.224336,0.7697996,1.2583658,1.788434,2.0785713,2.424315,2.6714332,2.8325367,2.677792,1.1878517,1.3889937,1.5466864,1.7574244,2.0139065,1.9588187,1.4568228,1.3666949,1.1177411,0.3482217,0.15257423,0.9581882,0.9260388,0.47572136,0.20005243,0.06298424,0.08715144,0.13216552,0.5632025,0.82226145,0.83649075,1.021659,1.2014396,1.4118607,1.3883725,1.5264561,1.1927711,1.5350814,1.8450016,2.3887124,2.9126856,3.1437368,3.4577057,3.6431618,3.639884,3.7019353,3.788521,3.5583026,3.4679813,3.5717666,3.4291933,2.697798,1.4064066,0.6150382,0.7434267,0.34220093,0.17296533,0.14798634,-0.08989503,-0.23166437,0.029672358,0.5493072,0.7827554,0.9460766,0.5617844,-0.06425362,0.08996448,0.4113508,1.0107553,1.2892299,2.1160522,2.6697235,3.1404068,3.41968,3.5599504,3.478588,3.3873935,3.244875,3.0903718,3.2173264,3.3626528,3.1443758,2.7739704,2.5342817,1.3151815,0.8560814,0.2352718,0.6090981
+1.6218957,2.4922423,3.323923,3.6604953,3.877507,3.94441,4.0354643,4.056349,4.0779266,4.06004,4.0469294,4.074094,4.153057,4.140643,4.146374,4.109119,4.093762,3.9944992,3.9641562,3.998683,3.8392982,3.7159162,3.5285282,3.2214842,3.3513436,3.3742514,3.4472373,3.6316552,3.7196536,3.6899557,3.5007129,3.2678556,2.6631148,1.8761313,1.5436714,1.3641,1.1318263,1.0899152,0.9637364,0.4750896,0.18085034,0.01787122,-0.19677886,-0.20532894,0.25617257,0.8972743,0.32532862,0.02571278,-0.16559015,-0.29082152,-0.3256905,-0.2540801,-0.31369132,-0.39337233,0.06652549,0.19979715,0.0556467,0.23006259,0.50832283,1.000831,0.5321946,0.19231255,0.03041156,0.54781586,0.32807726,0.09092943,0.8728712,0.61222047,0.47075045,0.606866,0.35598898,0.0792584,0.6511546,0.708312,0.31503314,0.082986966,-0.05448852,-0.17338736,-0.27512062,-0.22621968,-0.12734614,0.13271146,0.06821573,-6.438419e-05,-0.12130262,-0.19022639,-0.19664429,0.28848043,0.5726506,0.7645456,0.6746918,0.16538641,0.7015044,0.47945267,0.23639794,0.434114,0.5694805,0.5547166,0.39697614,0.088628605,0.12804137,0.07830411,-0.09439367,-0.18799685,0.1708696,0.45239285,0.13536222,-0.068145365,0.07128759,0.28255713,0.02687908,0.14855017,0.9364741,0.41750914,0.13462418,-0.062418457,0.48301876,0.2989025,0.2540306,0.108205855,-0.025229063,-0.12707232,-0.17727317,-0.22751261,-0.31605044,-0.18827008,-0.0931212,0.5860312,0.66176176,0.2678059,-0.017744098,-0.14714392,-0.117636874,-0.008172672,-0.14829727,0.010390077,0.14463286,-0.071008086,0.4948753,0.478311,0.07352874,-0.06822164,-0.113232836,0.56433004,0.22444116,0.061586145,0.027091626,0.052608613,-0.06382349,-0.12134607,0.20486209,-0.104206234,-0.14243177,0.2617983,0.14233863,-0.07565996,-0.20911263,-0.27431098,-0.31405395,-0.33430398,0.64143974,0.42264774,0.049069244,0.35503817,0.19895516,-0.07823625,0.4380803,0.23625772,-0.00853971,0.021055188,0.7594862,0.48952258,0.28360498,0.060052034,-0.008844946,0.10306658,-0.015871678,-0.11416492,-0.23323199,-0.23404424,-0.08285375,-0.09673643,-0.21908788,-0.27574286,-0.3167923,-0.36234277,-0.4114405,-0.42756212,-0.4700002,-0.48866653,-0.30477834,0.20795663,-0.052048434,-0.20159699,-0.22863208,0.040647592,0.19420734,0.020116407,0.04434671,0.06766385,0.21258281,0.3603636,0.10772811,0.7902624,1.3965315,1.6395667,0.8751905,0.69174594,0.5027919,0.5029728,0.6565559,0.90353346,0.6595712,0.35016274,0.48854578,0.6348097,0.29709315,0.09350826,0.18589962,0.29736543,0.37964952,0.45174485,0.21653946,0.18085575,0.5838333,0.3150072,0.3992288,0.29573566,0.17786162,0.75470746,0.6198391,0.23308851,0.26590705,0.317007,0.42065802,0.55022645,0.2771967,0.44014996,0.82790625,1.0854686,1.207555,1.2437623,1.4914908,1.7341266,2.2640417,2.5595798,2.7066321,2.9518614,3.1643004,3.3428838,3.492467,3.6049252,3.7555232,3.8331244,3.8733704,3.9507236,3.9177465,3.9451015,3.933494,3.9478486,3.9600892,4.0282135,3.9540231,3.9419127,3.9872274,4.0105977,3.98462,3.964551,4.039317,4.03156,4.055482,4.0573635,4.0263653,4.060979,3.9934978,4.0190682,4.024232,4.031204,4.119152,4.0206637,3.995431,4.007269,4.0373755,4.004321,4.0192823,3.983183,4.0478134,4.0699067,3.9783878,4.0137606,3.9887223,4.013559,4.0110126,4.0316677,4.0344286,4.0263124,4.088642,4.051289,4.043654,4.1391416,4.0551815,4.039728,4.046488,4.037472,4.0280323,4.0367174,4.032566,4.041088,4.0286927,4.0288005,4.0301576,4.0378437,4.0140457,4.1031256,4.034999,4.0480995,4.0288496,4.0310173,4.07496,4.0615153,4.0572166,4.0570297,4.0470695,4.0356092,4.0623736,4.067242,4.0182624,4.00826,4.02394,4.0734777,4.062989,4.017846,3.954852,4.0015182,4.041128,4.119922,4.007964,4.055567,4.030477,4.049978,4.0725017,4.042966,3.9995246,4.0215225,4.021679,4.026924,4.023876,4.037657,4.135371,4.074227,4.064055,4.0622387,4.045727,4.053998,4.077547,4.0512786,4.024496,3.988844,4.020589,4.0479774,4.052129,4.054775,4.0377235,4.0975323,4.101351
+1.921957,1.8033376,2.327337,3.514697,3.9255178,4.0872154,4.234393,4.3141336,4.337782,4.359858,4.28373,4.3554573,4.3456445,4.3362403,4.2601876,4.0200787,3.4590733,2.426123,1.7627324,1.5531232,1.0823712,0.7376519,0.4429779,0.37146366,0.31651556,0.2780147,0.2929555,0.35638475,0.4144448,0.44258127,0.33297646,0.3957774,0.3329784,0.26908112,0.23987229,0.16145048,0.13645075,0.82738674,0.6236232,0.41734147,0.32091862,0.2667972,0.23508154,0.3430056,1.1037394,1.139622,0.7682732,0.5489883,0.57819176,0.49508202,0.39100605,0.36323163,0.3164084,0.25226733,0.52782804,0.57251936,0.61911917,0.6220294,1.1287578,1.5141517,1.0399244,0.7938482,0.7094172,0.78390515,0.76180243,1.0577052,1.2602744,1.0267217,1.1680174,1.010679,0.8903397,0.7484448,1.0668491,1.112229,0.8328378,0.684556,0.53670174,0.43743277,0.388807,0.42462558,0.4182153,0.712456,0.91708887,0.747223,0.5850718,0.49643975,0.46600413,0.5570904,0.95759225,1.5652734,1.1207662,0.8420961,1.211786,0.9909111,0.86118686,0.7174207,0.824476,1.4291117,1.0746691,0.9667077,1.1598246,0.944752,0.7852034,0.6882654,1.0373247,1.0686078,0.95925367,0.8905195,0.85204595,0.8692899,0.7214124,0.61993194,1.0282798,1.1949831,1.0667052,0.86625373,1.0914899,0.8929496,0.7749419,0.67488635,0.59280795,0.5071143,0.4639504,0.4015867,0.3590871,0.3218453,0.4008103,0.74700266,0.9757035,0.72791564,0.55776435,0.50069153,0.51565075,0.66500366,0.68633854,0.98381233,1.0977703,0.9259865,1.0864052,0.9628992,0.75626564,0.62112516,0.5740696,0.98408747,0.8077517,0.6676642,0.6040279,0.5941791,0.547581,0.49706703,0.62445796,0.5497241,0.5332779,0.5477866,0.4786201,0.41088444,0.39021993,0.3487903,0.31578863,0.32642788,0.7342135,0.9745358,0.66697246,1.1050408,0.85010374,0.63786197,0.63326144,0.5616051,0.4747972,0.41304183,0.545211,0.6403241,0.5468279,0.4882831,0.46264145,0.9135862,0.7025928,0.6048794,0.4929356,0.45350116,0.51304024,0.428924,0.37954083,0.3994251,0.3983506,0.37810862,0.3870427,0.3703155,0.3460812,0.27275476,0.381125,0.4958614,0.3869856,0.28247106,0.32027513,0.487104,0.55592644,0.38068873,0.66414213,0.7381047,0.7497738,0.8644712,0.65392244,1.5008657,1.8135939,1.8335009,1.228924,1.0220987,0.93644583,0.81767297,0.97409844,1.045891,0.9073936,0.8353058,0.7254768,0.8440921,1.151673,0.8929312,0.7525877,0.7534058,0.628914,0.66161525,0.6666127,0.54458445,0.75733066,0.63670135,0.6147327,0.59325004,0.5568799,1.3924968,1.1125889,0.8322229,0.7414913,0.9963983,1.0297707,0.9443345,0.8877628,0.9247067,1.08043,1.2033551,1.1526909,1.1787207,1.4546288,1.6058962,1.8459301,1.718427,1.4674672,1.5021039,1.8283222,2.0000257,2.1115308,2.2515934,2.386108,2.6559417,2.8713362,3.1038096,3.3294222,3.4628825,3.611953,3.7710896,3.870987,3.9208367,3.9789944,4.066322,4.0947123,4.11109,4.1155634,4.104312,4.12084,4.141612,4.1424255,4.1687055,4.145659,4.158263,4.136593,4.144658,4.1353197,4.166916,4.175494,4.1743345,4.1664433,4.180752,4.186988,4.1760426,4.218766,4.198783,4.228694,4.223376,4.19503,4.2167664,4.218078,4.2254357,4.2707267,4.226234,4.2400365,4.2397013,4.2848206,4.262319,4.225397,4.2655244,4.2635126,4.250208,4.24065,4.2444525,4.247467,4.2350326,4.2511463,4.2216673,4.2298956,4.213321,4.2186413,4.2122293,4.235671,4.206601,4.238702,4.2153544,4.2475595,4.2463374,4.2383876,4.238802,4.2529955,4.251727,4.2204514,4.2625475,4.26863,4.230314,4.269706,4.2264214,4.229656,4.265547,4.2566442,4.304619,4.271699,4.265026,4.2659698,4.2998214,4.2290354,4.2237005,4.217353,4.2190638,4.2340484,4.219544,4.2415557,4.2485876,4.2239122,4.2060366,4.186087,4.224365,4.217251,4.2480392,4.222674,4.252081,4.248254,4.2507343,4.271935,4.2680044,4.228507,4.215543,4.216944,4.2389836,4.208436,4.281296,4.2769346,4.2901764,4.295593
+1.2067863,1.10186,1.0162606,1.2673184,1.5077376,1.5998151,2.4755654,2.796313,2.047711,1.6182866,1.7390006,2.1979575,1.2124577,0.88581574,0.7697718,0.72059405,0.6054689,0.43704933,0.92349255,0.8374214,0.6251138,0.5325941,0.5414329,0.5351542,0.41585723,0.37592041,0.3617051,0.29083875,0.31805626,0.30610985,0.23606558,0.99527204,1.2298579,0.9245347,1.1743023,1.112891,0.8889897,0.9874685,0.9149201,0.70593363,0.59289944,0.49752676,0.56811124,1.2341888,1.1379774,0.9304358,0.7374872,0.6264364,0.5621925,0.46558952,0.42445213,0.40132418,0.44925684,0.39034677,0.3967542,0.39952332,0.36947522,0.4413232,0.48084605,0.4271915,0.7693889,0.759838,0.6286462,0.56808436,0.5573406,0.6306181,1.7739949,1.406385,1.8539562,1.2852911,1.0838039,0.92398614,0.8870814,0.9260144,0.8476475,0.7506191,0.6918011,0.6340011,0.578941,0.53087807,0.5165612,0.50417995,0.6178653,0.72709125,0.6546796,0.6097201,0.57777673,0.5509364,0.55937445,1.5844901,1.428697,1.0697007,1.1318598,1.0325637,0.8808433,0.83235157,0.8269439,0.8689707,0.92451733,0.87672395,1.5701666,1.4523964,1.0781248,0.97560406,0.90829706,1.0181947,1.0312366,1.4687015,1.5323253,1.3042917,1.0929447,0.94815636,0.9097403,0.97824454,0.9741707,0.8636624,0.86157227,0.86420196,0.807479,0.8403021,0.8293506,0.7568974,0.7034216,0.73766655,0.67248845,0.6407103,0.6279583,0.62003267,0.6448325,0.58860964,0.57152706,0.55704355,0.5934831,1.0315442,1.7411525,1.34805,1.1591958,0.9831294,1.6239047,1.314032,1.1176867,0.97927094,0.8921237,1.7192122,1.2947489,1.0762362,0.98819923,0.9590986,0.9180151,0.8723995,1.0070877,0.9949353,0.8872791,0.89994776,0.86502,0.7535304,0.69402647,0.63112664,0.6644976,0.6462812,0.6563264,0.64476657,0.6182648,0.9429146,1.0338583,0.8203519,0.7896931,0.7594416,0.6422442,0.60701436,0.827586,1.0746312,0.9563123,0.8276822,0.750978,1.0602179,1.1123987,0.90671325,0.75596756,0.7934329,0.9209769,0.7977711,0.7125435,0.67055327,0.6349171,0.7196826,0.6460867,0.57519287,0.5230569,0.5394902,0.5169993,0.87555194,0.9899256,0.7468381,0.7013343,0.690483,0.91024595,0.7706946,0.6951639,0.6788059,0.6720802,0.6291686,0.6218428,0.7398453,2.2109735,1.8497974,1.2779179,1.1004355,1.0185075,0.9157885,1.7122396,1.6917775,1.2972848,1.1397512,0.9808289,0.93783647,1.4987028,1.3868659,1.0826181,1.0652983,0.91616535,0.88381475,0.86860394,0.76514864,0.74478424,0.63572705,0.66696566,0.6335686,0.6644805,1.720602,1.5542266,1.2322972,1.1255304,1.2754304,1.3384717,1.1937689,1.0512779,1.0859694,1.2795222,1.1913453,1.0253005,0.9620118,1.5131183,2.1165223,2.2768984,1.7520287,1.3572502,1.2518446,1.617604,1.8907781,2.1452522,2.3266175,2.4101548,2.7389617,3.0445738,3.4929028,3.8401344,4.0046215,4.1891794,4.318488,4.402585,4.510313,4.6888742,4.65088,4.6552753,4.632434,4.707736,4.6673675,4.709043,4.7004337,4.6467247,4.770008,4.65283,4.8826466,4.804556,4.64885,4.7596326,4.709694,4.722219,4.6949415,4.760584,4.743158,4.703024,4.6843834,4.6803894,4.568571,4.687581,4.6998334,4.7345467,4.7131658,4.686785,4.71505,4.644904,4.627636,4.734983,4.7050095,4.7565703,4.7799616,4.840538,4.9201326,4.8361626,4.7893896,4.8295135,4.7968707,4.807209,4.8087406,4.687516,4.7590084,4.7425117,4.75812,4.7250376,4.734468,4.719077,4.722555,4.764002,4.8042417,4.7036266,4.730955,4.930713,4.83148,4.778763,4.7449102,4.8249826,4.8066993,4.7735353,4.8128605,4.8278885,4.79996,4.766263,4.6929154,4.7289076,4.722563,4.7656646,4.6967745,4.625616,4.5767403,4.7078795,4.716734,4.7253942,4.7187567,4.6117954,4.6279726,4.640164,4.736291,4.688394,4.6846046,4.70317,4.6731334,4.704069,4.8024797,4.7751117,4.777707,4.776551,4.7870274,4.746754,4.7226295,4.7891407,4.5875688,4.6372204,4.710445,4.630036,4.811002,4.706099,4.6830516,4.655983
+2.1413407,1.5926399,1.5428647,2.559536,3.3498545,3.7108116,4.1490602,4.4793715,4.2027206,3.9177585,4.0434065,4.3160195,3.4158943,2.848604,2.6212769,2.5107696,2.111695,1.6067526,1.238292,0.90814376,0.70485586,0.5158725,0.49202418,0.38173598,0.43831423,0.44111413,0.45520473,0.47185338,0.50303674,0.55875206,0.4958365,0.42218083,0.951493,0.79865545,0.72988826,0.7296336,0.59589636,0.80490243,1.076693,0.81290084,0.63128555,0.51644206,0.43826416,1.0053283,1.2887981,1.5415668,1.1298368,0.85896957,0.72916067,0.6034748,0.5045252,0.47701037,0.47259218,0.41669375,0.4208728,0.49332637,0.61313295,1.0398524,0.9073974,0.96502745,1.0556417,0.92980945,0.7689539,0.83509463,0.9603374,0.83625233,1.402307,1.2778642,1.2837704,1.1898234,1.0214543,0.8834468,1.3806512,1.4715368,1.2081662,1.0402386,0.8848359,0.76286566,0.6583156,0.611619,0.5974061,0.5759894,0.57972586,0.55801344,0.5213429,0.4649153,0.49968016,0.51544696,0.6404333,1.300431,1.2443511,0.9749521,1.2649366,1.1756691,0.9332997,0.90789163,1.0810571,1.9824805,1.507519,1.1543149,1.3949132,1.2517905,1.0378734,0.94644547,0.9691942,1.6151657,1.3049253,1.2319368,1.1354268,1.0364453,0.9268031,0.8567622,0.88247526,1.426374,1.2396258,1.0324979,1.4212668,1.2659657,1.195543,1.156549,1.0249846,0.93094563,0.8752765,0.8311372,0.77990854,1.0037521,1.1155217,1.2471762,1.3693726,1.0823977,0.9433715,0.8755467,1.1863337,1.4627361,1.2023668,2.175959,1.6139185,1.2427332,1.8966806,1.477191,1.2043192,1.0650461,0.9827788,1.7542381,1.3919818,1.1564817,1.076884,1.0488694,1.009716,0.946645,1.0580325,1.0082526,0.95407283,0.96750283,0.9639151,0.8627414,0.8017496,0.7768143,0.77275187,0.7731328,0.7919675,0.94704086,0.9488859,1.1716399,1.1912507,0.97800386,0.9716685,1.0476694,0.92527926,0.8919269,0.89501464,1.0637528,1.1269348,1.0016605,0.9111867,1.2771119,1.1839831,1.0305626,0.9161719,0.87752813,0.87875056,0.80200243,0.74909323,0.7221724,0.69579434,0.6952491,0.63820314,0.6316312,0.6294785,0.6485599,0.6344584,0.67859685,0.7604543,0.67019033,0.63491213,0.64184874,0.7092397,0.67393184,0.80450916,1.2203493,1.1025271,1.0057018,0.93089557,0.9710252,2.0439732,1.8154407,1.2866774,1.1103905,1.0515299,0.963488,0.9261685,0.9179852,1.0648959,1.0325606,0.87060523,0.9117104,1.1229136,1.1382215,0.97098565,0.92929065,0.8691535,0.89919496,0.8356106,0.74727845,0.9063399,0.9154148,0.83500636,0.783504,0.78604037,1.4200104,1.3878505,1.1487715,1.0413389,1.1211998,1.1531337,1.2367631,1.0827229,1.1092556,1.3800347,1.9351395,2.0441184,2.001409,2.3267908,2.949702,3.3404107,3.411116,3.5326693,3.8112547,4.0814857,4.1802845,4.3213463,4.4177,4.469334,4.546022,4.5500946,4.5498266,4.622658,4.611951,4.641534,4.6366835,4.5873885,4.5961437,4.6898203,4.625197,4.6397038,4.653432,4.7233677,4.6045527,4.6863294,4.6714354,4.6667085,4.805891,4.6623793,4.776144,4.800267,4.651618,4.754549,4.699149,4.684201,4.6835947,4.6984205,4.662938,4.66953,4.647312,4.645856,4.5591726,4.655806,4.679593,4.6849837,4.676879,4.6478252,4.6871486,4.6617703,4.5825167,4.7369833,4.718642,4.775296,4.756234,4.6874413,4.816724,4.7473946,4.78368,4.7607565,4.7328024,4.751423,4.7495384,4.67679,4.687443,4.705578,4.707342,4.675759,4.6473594,4.692848,4.617877,4.6602755,4.646967,4.6645184,4.7065544,4.7290754,4.759037,4.6523275,4.8037524,4.783396,4.772504,4.7364044,4.797922,4.7868137,4.7547407,4.743038,4.6848793,4.6905837,4.733783,4.8027296,4.800332,4.688258,4.743019,4.8308578,4.766441,4.7801857,4.7401543,4.6172814,4.6474175,4.745687,4.8081374,4.7394867,4.7236075,4.741028,4.617998,4.6299887,4.7220373,4.779382,4.7748604,4.747738,4.775229,4.7740855,4.7813673,4.828983,4.7466583,4.7559156,4.774015,4.618293,4.661197,4.686927,4.7820187,4.7850866
diff --git a/example/output/CONUSv4f1_multi/master.json b/example/output/CONUSv4f1_multi/master.json
new file mode 100644
index 0000000..c567a75
--- /dev/null
+++ b/example/output/CONUSv4f1_multi/master.json
@@ -0,0 +1,67 @@
+{
+ "out": "/home/kxf227/work/GitHUB/pyRnnSMAP/example/output/CONUSv4f1_multi",
+ "data": {
+ "name": "hydroDL.data.dbCsv.DataframeCsv",
+ "rootDB": "/mnt/sdc/rnnSMAP/Database_SMAPgrid/Daily_L3_NA",
+ "subset": "CONUSv4f1",
+ "varT": [
+ "APCP_FORA",
+ "DLWRF_FORA",
+ "DSWRF_FORA",
+ "TMP_2_FORA",
+ "SPFH_2_FORA",
+ "VGRD_10_FORA",
+ "UGRD_10_FORA"
+ ],
+ "varC": [
+ "Bulk",
+ "Capa",
+ "Clay",
+ "NDVI",
+ "Sand",
+ "Silt",
+ "flag_albedo",
+ "flag_extraOrd",
+ "flag_landcover",
+ "flag_roughness",
+ "flag_vegDense",
+ "flag_waterbody"
+ ],
+ "target": [
+ "SMAP_AM",
+ "SOILM_0-10_NOAH"
+ ],
+ "tRange": [
+ 20150401,
+ 20160401
+ ],
+ "doNorm": [
+ true,
+ true
+ ],
+ "rmNan": [
+ true,
+ false
+ ],
+ "daObs": 0
+ },
+ "model": {
+ "name": "hydroDL.model.rnn.CudnnLstmModel",
+ "nx": 19,
+ "ny": 4,
+ "hiddenSize": 256,
+ "doReLU": true
+ },
+ "loss": {
+ "name": "hydroDL.model.crit.SigmaLoss",
+ "prior": "gauss"
+ },
+ "train": {
+ "miniBatch": [
+ 100,
+ 30
+ ],
+ "nEpoch": 100,
+ "saveEpoch": 100
+ }
+}
\ No newline at end of file
diff --git a/example/output/CONUSv4f1_multi/model_Ep100.pt b/example/output/CONUSv4f1_multi/model_Ep100.pt
new file mode 100644
index 0000000..91822f4
Binary files /dev/null and b/example/output/CONUSv4f1_multi/model_Ep100.pt differ
diff --git a/example/output/CONUSv4f1_multi/run.csv b/example/output/CONUSv4f1_multi/run.csv
new file mode 100644
index 0000000..e03d900
--- /dev/null
+++ b/example/output/CONUSv4f1_multi/run.csv
@@ -0,0 +1,130 @@
+Epoch 1 Loss 0.095 time 3.33
+Epoch 2 Loss -0.111 time 2.95
+Epoch 3 Loss -0.179 time 3.40
+Epoch 4 Loss -0.233 time 3.64
+Epoch 5 Loss -0.270 time 4.05
+Epoch 1 Loss 0.440 time 4.94
+Epoch 2 Loss 0.019 time 3.44
+Epoch 3 Loss -0.142 time 3.73
+Epoch 4 Loss -0.270 time 3.69
+Epoch 5 Loss -0.343 time 4.36
+Epoch 1 Loss 0.457 time 4.89
+Epoch 2 Loss 0.037 time 4.03
+Epoch 3 Loss -0.118 time 4.31
+Epoch 4 Loss -0.246 time 3.57
+Epoch 5 Loss -0.341 time 3.57
+Epoch 1 Loss 0.438 time 4.95
+Epoch 2 Loss 0.023 time 4.61
+Epoch 3 Loss -0.124 time 3.96
+Epoch 4 Loss -0.233 time 4.61
+Epoch 5 Loss -0.352 time 4.65
+Epoch 1 Loss 0.435 time 4.30
+Epoch 2 Loss 0.036 time 4.52
+Epoch 3 Loss -0.139 time 4.55
+Epoch 4 Loss -0.252 time 4.52
+Epoch 5 Loss -0.351 time 4.40
+Epoch 1 Loss 0.438 time 4.33
+Epoch 2 Loss 0.029 time 3.30
+Epoch 3 Loss -0.145 time 3.85
+Epoch 4 Loss -0.256 time 3.27
+Epoch 5 Loss -0.357 time 3.62
+Epoch 1 Loss 0.443 time 4.91
+Epoch 2 Loss 0.035 time 4.22
+Epoch 3 Loss -0.132 time 4.33
+Epoch 4 Loss -0.261 time 4.03
+Epoch 5 Loss -0.342 time 3.23
+Epoch 6 Loss -0.430 time 3.87
+Epoch 7 Loss -0.500 time 3.18
+Epoch 8 Loss -0.554 time 3.17
+Epoch 9 Loss -0.615 time 4.61
+Epoch 10 Loss -0.669 time 3.92
+Epoch 11 Loss -0.696 time 3.92
+Epoch 12 Loss -0.746 time 3.20
+Epoch 13 Loss -0.765 time 3.18
+Epoch 14 Loss -0.815 time 3.18
+Epoch 15 Loss -0.848 time 3.18
+Epoch 16 Loss -0.876 time 3.18
+Epoch 17 Loss -0.906 time 3.94
+Epoch 18 Loss -0.919 time 4.23
+Epoch 19 Loss -0.964 time 3.33
+Epoch 20 Loss -0.975 time 3.17
+Epoch 21 Loss -1.000 time 3.16
+Epoch 22 Loss -1.013 time 3.18
+Epoch 23 Loss -1.038 time 3.18
+Epoch 24 Loss -1.061 time 3.37
+Epoch 25 Loss -1.070 time 3.95
+Epoch 26 Loss -1.077 time 3.39
+Epoch 27 Loss -1.109 time 3.20
+Epoch 28 Loss -1.122 time 3.21
+Epoch 29 Loss -1.137 time 3.35
+Epoch 30 Loss -1.162 time 3.81
+Epoch 31 Loss -1.166 time 3.20
+Epoch 32 Loss -1.187 time 3.30
+Epoch 33 Loss -1.195 time 3.21
+Epoch 34 Loss -1.204 time 3.29
+Epoch 35 Loss -1.220 time 3.96
+Epoch 36 Loss -1.231 time 4.44
+Epoch 37 Loss -1.246 time 3.19
+Epoch 38 Loss -1.252 time 3.72
+Epoch 39 Loss -1.277 time 3.21
+Epoch 40 Loss -1.258 time 3.51
+Epoch 41 Loss -1.271 time 3.20
+Epoch 42 Loss -1.300 time 3.19
+Epoch 43 Loss -1.304 time 3.19
+Epoch 44 Loss -1.307 time 4.40
+Epoch 45 Loss -1.320 time 4.65
+Epoch 46 Loss -1.331 time 4.63
+Epoch 47 Loss -1.337 time 3.85
+Epoch 48 Loss -1.355 time 3.29
+Epoch 49 Loss -1.349 time 3.20
+Epoch 50 Loss -1.353 time 3.19
+Epoch 51 Loss -1.362 time 3.20
+Epoch 52 Loss -1.378 time 4.50
+Epoch 53 Loss -1.371 time 4.56
+Epoch 54 Loss -1.382 time 4.60
+Epoch 55 Loss -1.397 time 4.63
+Epoch 56 Loss -1.393 time 4.17
+Epoch 57 Loss -1.403 time 4.53
+Epoch 58 Loss -1.408 time 4.13
+Epoch 59 Loss -1.421 time 4.27
+Epoch 60 Loss -1.416 time 3.20
+Epoch 61 Loss -1.427 time 3.19
+Epoch 62 Loss -1.430 time 3.19
+Epoch 63 Loss -1.439 time 3.51
+Epoch 64 Loss -1.444 time 4.04
+Epoch 65 Loss -1.447 time 3.51
+Epoch 66 Loss -1.451 time 3.21
+Epoch 67 Loss -1.463 time 3.32
+Epoch 68 Loss -1.468 time 3.19
+Epoch 69 Loss -1.456 time 3.18
+Epoch 70 Loss -1.473 time 3.19
+Epoch 71 Loss -1.477 time 3.50
+Epoch 72 Loss -1.478 time 4.53
+Epoch 73 Loss -1.488 time 4.00
+Epoch 74 Loss -1.486 time 3.29
+Epoch 75 Loss -1.495 time 3.21
+Epoch 76 Loss -1.511 time 3.21
+Epoch 77 Loss -1.510 time 3.60
+Epoch 78 Loss -1.521 time 4.34
+Epoch 79 Loss -1.490 time 3.58
+Epoch 80 Loss -1.513 time 3.22
+Epoch 81 Loss -1.517 time 3.20
+Epoch 82 Loss -1.524 time 3.19
+Epoch 83 Loss -1.529 time 3.19
+Epoch 84 Loss -1.534 time 3.19
+Epoch 85 Loss -1.534 time 3.36
+Epoch 86 Loss -1.537 time 4.21
+Epoch 87 Loss -1.556 time 3.47
+Epoch 88 Loss -1.536 time 3.21
+Epoch 89 Loss -1.539 time 3.47
+Epoch 90 Loss -1.553 time 3.27
+Epoch 91 Loss -1.559 time 3.21
+Epoch 92 Loss -1.556 time 3.20
+Epoch 93 Loss -1.559 time 3.70
+Epoch 94 Loss -1.564 time 3.20
+Epoch 95 Loss -1.545 time 3.19
+Epoch 96 Loss -1.575 time 3.44
+Epoch 97 Loss -1.574 time 3.21
+Epoch 98 Loss -1.582 time 3.24
+Epoch 99 Loss -1.576 time 3.28
+Epoch 100 Loss -1.588 time 3.93
diff --git a/example/output/CONUSv4f1_sigma/CONUSv4f1_20160401_20170401.csv b/example/output/CONUSv4f1_sigma/CONUSv4f1_20160401_20170401.csv
new file mode 100644
index 0000000..e69de29
diff --git a/example/output/CONUSv4f1_sigma/master.json b/example/output/CONUSv4f1_sigma/master.json
index 740d0b1..49378bd 100644
--- a/example/output/CONUSv4f1_sigma/master.json
+++ b/example/output/CONUSv4f1_sigma/master.json
@@ -2,7 +2,7 @@
"out": "/home/kxf227/work/GitHUB/pyRnnSMAP/example/output/CONUSv4f1_sigma",
"data": {
"name": "hydroDL.data.dbCsv.DataframeCsv",
- "path": "/home/kxf227/work/GitHUB/pyRnnSMAP/example/data",
+ "rootDB": "/home/kxf227/work/GitHUB/pyRnnSMAP/example/data",
"subset": "CONUSv4f1",
"varT": [
"APCP_FORA",
@@ -30,7 +30,7 @@
"target": "SMAP_AM",
"tRange": [
20150401,
- 20160331
+ 20160401
],
"doNorm": [
true,
@@ -39,7 +39,8 @@
"rmNan": [
true,
false
- ]
+ ],
+ "daObs": 0
},
"model": {
"name": "hydroDL.model.rnn.CudnnLstmModel",
@@ -57,7 +58,7 @@
100,
30
],
- "nEpoch": 500,
- "saveEpoch": 100
+ "nEpoch": 5,
+ "saveEpoch": 5
}
}
\ No newline at end of file
diff --git a/example/output/CONUSv4f1_sigma/model_Ep100.pt b/example/output/CONUSv4f1_sigma/model_Ep100.pt
deleted file mode 100644
index f54b85b..0000000
Binary files a/example/output/CONUSv4f1_sigma/model_Ep100.pt and /dev/null differ
diff --git a/example/output/CONUSv4f1_sigma/model_Ep200.pt b/example/output/CONUSv4f1_sigma/model_Ep200.pt
deleted file mode 100644
index 10f1ac7..0000000
Binary files a/example/output/CONUSv4f1_sigma/model_Ep200.pt and /dev/null differ
diff --git a/example/output/CONUSv4f1_sigma/model_Ep300.pt b/example/output/CONUSv4f1_sigma/model_Ep300.pt
deleted file mode 100644
index 98edf1f..0000000
Binary files a/example/output/CONUSv4f1_sigma/model_Ep300.pt and /dev/null differ
diff --git a/example/output/CONUSv4f1_sigma/model_Ep400.pt b/example/output/CONUSv4f1_sigma/model_Ep400.pt
deleted file mode 100644
index 96d9b82..0000000
Binary files a/example/output/CONUSv4f1_sigma/model_Ep400.pt and /dev/null differ
diff --git a/example/output/CONUSv4f1_sigma/model_Ep5.pt b/example/output/CONUSv4f1_sigma/model_Ep5.pt
new file mode 100644
index 0000000..a6d2670
Binary files /dev/null and b/example/output/CONUSv4f1_sigma/model_Ep5.pt differ
diff --git a/example/output/CONUSv4f1_sigma/model_Ep500.pt b/example/output/CONUSv4f1_sigma/model_Ep500.pt
deleted file mode 100644
index d7d65e6..0000000
Binary files a/example/output/CONUSv4f1_sigma/model_Ep500.pt and /dev/null differ
diff --git a/example/output/CONUSv4f1_sigma/run.csv b/example/output/CONUSv4f1_sigma/run.csv
index 66bae19..412415d 100644
--- a/example/output/CONUSv4f1_sigma/run.csv
+++ b/example/output/CONUSv4f1_sigma/run.csv
@@ -1,500 +1,9 @@
-Epoch 1 Loss 0.084 time 3.44
-Epoch 2 Loss -0.104 time 3.25
-Epoch 3 Loss -0.175 time 3.27
-Epoch 4 Loss -0.233 time 3.25
-Epoch 5 Loss -0.272 time 3.26
-Epoch 6 Loss -0.298 time 3.23
-Epoch 7 Loss -0.332 time 3.26
-Epoch 8 Loss -0.357 time 3.24
-Epoch 9 Loss -0.384 time 3.24
-Epoch 10 Loss -0.393 time 3.23
-Epoch 11 Loss -0.413 time 3.23
-Epoch 12 Loss -0.440 time 3.23
-Epoch 13 Loss -0.457 time 3.24
-Epoch 14 Loss -0.465 time 3.23
-Epoch 15 Loss -0.477 time 3.24
-Epoch 16 Loss -0.499 time 3.23
-Epoch 17 Loss -0.501 time 3.24
-Epoch 18 Loss -0.519 time 3.23
-Epoch 19 Loss -0.523 time 3.23
-Epoch 20 Loss -0.539 time 3.23
-Epoch 21 Loss -0.547 time 3.23
-Epoch 22 Loss -0.558 time 3.22
-Epoch 23 Loss -0.563 time 3.22
-Epoch 24 Loss -0.571 time 3.22
-Epoch 25 Loss -0.584 time 3.23
-Epoch 26 Loss -0.588 time 3.21
-Epoch 27 Loss -0.593 time 3.23
-Epoch 28 Loss -0.602 time 3.21
-Epoch 29 Loss -0.608 time 3.21
-Epoch 30 Loss -0.622 time 3.23
-Epoch 31 Loss -0.629 time 3.23
-Epoch 32 Loss -0.632 time 3.23
-Epoch 33 Loss -0.641 time 3.23
-Epoch 34 Loss -0.644 time 2.59
-Epoch 35 Loss -0.651 time 2.58
-Epoch 36 Loss -0.645 time 2.59
-Epoch 37 Loss -0.660 time 2.58
-Epoch 38 Loss -0.667 time 2.58
-Epoch 39 Loss -0.664 time 2.58
-Epoch 40 Loss -0.668 time 2.61
-Epoch 41 Loss -0.674 time 2.62
-Epoch 42 Loss -0.678 time 2.62
-Epoch 43 Loss -0.695 time 2.63
-Epoch 44 Loss -0.688 time 3.03
-Epoch 45 Loss -0.694 time 3.23
-Epoch 46 Loss -0.694 time 3.25
-Epoch 47 Loss -0.702 time 3.33
-Epoch 48 Loss -0.703 time 3.27
-Epoch 49 Loss -0.696 time 3.27
-Epoch 50 Loss -0.711 time 3.27
-Epoch 51 Loss -0.720 time 3.27
-Epoch 52 Loss -0.714 time 3.34
-Epoch 53 Loss -0.714 time 3.31
-Epoch 54 Loss -0.736 time 3.32
-Epoch 55 Loss -0.721 time 3.31
-Epoch 56 Loss -0.741 time 3.27
-Epoch 57 Loss -0.737 time 3.28
-Epoch 58 Loss -0.741 time 3.28
-Epoch 59 Loss -0.738 time 3.28
-Epoch 60 Loss -0.747 time 3.28
-Epoch 61 Loss -0.748 time 3.26
-Epoch 62 Loss -0.744 time 3.28
-Epoch 63 Loss -0.760 time 3.27
-Epoch 64 Loss -0.754 time 3.29
-Epoch 65 Loss -0.767 time 3.28
-Epoch 66 Loss -0.765 time 3.28
-Epoch 67 Loss -0.765 time 3.28
-Epoch 68 Loss -0.766 time 3.28
-Epoch 69 Loss -0.765 time 3.29
-Epoch 70 Loss -0.773 time 3.28
-Epoch 71 Loss -0.768 time 3.28
-Epoch 72 Loss -0.778 time 3.28
-Epoch 73 Loss -0.773 time 3.28
-Epoch 74 Loss -0.784 time 3.29
-Epoch 75 Loss -0.783 time 3.29
-Epoch 76 Loss -0.781 time 3.29
-Epoch 77 Loss -0.782 time 3.31
-Epoch 78 Loss -0.794 time 3.30
-Epoch 79 Loss -0.793 time 3.30
-Epoch 80 Loss -0.794 time 3.29
-Epoch 81 Loss -0.794 time 3.28
-Epoch 82 Loss -0.796 time 3.28
-Epoch 83 Loss -0.802 time 3.29
-Epoch 84 Loss -0.806 time 3.29
-Epoch 85 Loss -0.806 time 3.29
-Epoch 86 Loss -0.809 time 3.29
-Epoch 87 Loss -0.805 time 3.30
-Epoch 88 Loss -0.813 time 3.28
-Epoch 89 Loss -0.814 time 3.23
-Epoch 90 Loss -0.820 time 3.29
-Epoch 91 Loss -0.820 time 3.27
-Epoch 92 Loss -0.809 time 3.29
-Epoch 93 Loss -0.815 time 3.29
-Epoch 94 Loss -0.815 time 3.29
-Epoch 95 Loss -0.816 time 3.29
-Epoch 96 Loss -0.809 time 3.29
-Epoch 97 Loss -0.832 time 3.29
-Epoch 98 Loss -0.823 time 3.29
-Epoch 99 Loss -0.830 time 3.30
-Epoch 100 Loss -0.832 time 3.29
-Epoch 101 Loss -0.825 time 3.30
-Epoch 102 Loss -0.829 time 3.28
-Epoch 103 Loss -0.841 time 3.28
-Epoch 104 Loss -0.833 time 3.28
-Epoch 105 Loss -0.835 time 3.29
-Epoch 106 Loss -0.831 time 3.29
-Epoch 107 Loss -0.841 time 3.29
-Epoch 108 Loss -0.840 time 3.29
-Epoch 109 Loss -0.833 time 3.29
-Epoch 110 Loss -0.839 time 3.29
-Epoch 111 Loss -0.845 time 3.27
-Epoch 112 Loss -0.850 time 3.27
-Epoch 113 Loss -0.846 time 3.27
-Epoch 114 Loss -0.845 time 3.29
-Epoch 115 Loss -0.848 time 3.29
-Epoch 116 Loss -0.854 time 3.29
-Epoch 117 Loss -0.852 time 3.29
-Epoch 118 Loss -0.849 time 3.29
-Epoch 119 Loss -0.863 time 3.30
-Epoch 120 Loss -0.859 time 3.31
-Epoch 121 Loss -0.856 time 3.30
-Epoch 122 Loss -0.871 time 3.30
-Epoch 123 Loss -0.862 time 3.31
-Epoch 124 Loss -0.860 time 3.29
-Epoch 125 Loss -0.860 time 3.31
-Epoch 126 Loss -0.864 time 3.28
-Epoch 127 Loss -0.865 time 3.29
-Epoch 128 Loss -0.867 time 3.29
-Epoch 129 Loss -0.861 time 3.30
-Epoch 130 Loss -0.873 time 3.30
-Epoch 131 Loss -0.872 time 3.30
-Epoch 132 Loss -0.872 time 3.28
-Epoch 133 Loss -0.873 time 3.32
-Epoch 134 Loss -0.874 time 3.34
-Epoch 135 Loss -0.878 time 3.24
-Epoch 136 Loss -0.876 time 3.25
-Epoch 137 Loss -0.880 time 3.23
-Epoch 138 Loss -0.875 time 3.25
-Epoch 139 Loss -0.881 time 3.24
-Epoch 140 Loss -0.872 time 3.24
-Epoch 141 Loss -0.880 time 3.24
-Epoch 142 Loss -0.880 time 3.30
-Epoch 143 Loss -0.872 time 3.23
-Epoch 144 Loss -0.887 time 3.22
-Epoch 145 Loss -0.886 time 3.27
-Epoch 146 Loss -0.883 time 3.31
-Epoch 147 Loss -0.880 time 3.26
-Epoch 148 Loss -0.890 time 3.28
-Epoch 149 Loss -0.888 time 3.25
-Epoch 150 Loss -0.887 time 3.26
-Epoch 151 Loss -0.886 time 3.26
-Epoch 152 Loss -0.892 time 3.25
-Epoch 153 Loss -0.890 time 3.27
-Epoch 154 Loss -0.901 time 3.26
-Epoch 155 Loss -0.897 time 3.26
-Epoch 156 Loss -0.893 time 3.27
-Epoch 157 Loss -0.896 time 3.27
-Epoch 158 Loss -0.895 time 3.25
-Epoch 159 Loss -0.906 time 3.25
-Epoch 160 Loss -0.898 time 3.25
-Epoch 161 Loss -0.902 time 3.24
-Epoch 162 Loss -0.895 time 3.25
-Epoch 163 Loss -0.902 time 3.25
-Epoch 164 Loss -0.897 time 3.25
-Epoch 165 Loss -0.905 time 3.25
-Epoch 166 Loss -0.902 time 3.25
-Epoch 167 Loss -0.914 time 3.24
-Epoch 168 Loss -0.902 time 3.25
-Epoch 169 Loss -0.901 time 3.24
-Epoch 170 Loss -0.904 time 3.24
-Epoch 171 Loss -0.907 time 3.26
-Epoch 172 Loss -0.905 time 3.25
-Epoch 173 Loss -0.904 time 3.25
-Epoch 174 Loss -0.900 time 3.25
-Epoch 175 Loss -0.910 time 3.26
-Epoch 176 Loss -0.914 time 3.26
-Epoch 177 Loss -0.911 time 3.27
-Epoch 178 Loss -0.906 time 3.25
-Epoch 179 Loss -0.917 time 3.26
-Epoch 180 Loss -0.909 time 3.26
-Epoch 181 Loss -0.918 time 3.26
-Epoch 182 Loss -0.916 time 3.26
-Epoch 183 Loss -0.911 time 3.27
-Epoch 184 Loss -0.918 time 3.25
-Epoch 185 Loss -0.920 time 3.25
-Epoch 186 Loss -0.917 time 3.26
-Epoch 187 Loss -0.917 time 3.26
-Epoch 188 Loss -0.921 time 3.26
-Epoch 189 Loss -0.928 time 3.26
-Epoch 190 Loss -0.914 time 3.26
-Epoch 191 Loss -0.922 time 3.26
-Epoch 192 Loss -0.917 time 3.26
-Epoch 193 Loss -0.926 time 3.26
-Epoch 194 Loss -0.927 time 3.26
-Epoch 195 Loss -0.927 time 3.25
-Epoch 196 Loss -0.928 time 3.24
-Epoch 197 Loss -0.927 time 3.25
-Epoch 198 Loss -0.925 time 3.25
-Epoch 199 Loss -0.919 time 3.24
-Epoch 200 Loss -0.931 time 3.24
-Epoch 201 Loss -0.925 time 3.25
-Epoch 202 Loss -0.934 time 3.25
-Epoch 203 Loss -0.925 time 3.26
-Epoch 204 Loss -0.924 time 3.25
-Epoch 205 Loss -0.936 time 3.33
-Epoch 206 Loss -0.932 time 3.24
-Epoch 207 Loss -0.929 time 3.29
-Epoch 208 Loss -0.931 time 3.28
-Epoch 209 Loss -0.929 time 3.28
-Epoch 210 Loss -0.936 time 3.28
-Epoch 211 Loss -0.941 time 3.28
-Epoch 212 Loss -0.934 time 3.28
-Epoch 213 Loss -0.939 time 3.28
-Epoch 214 Loss -0.934 time 3.28
-Epoch 215 Loss -0.935 time 3.28
-Epoch 216 Loss -0.932 time 3.28
-Epoch 217 Loss -0.943 time 3.29
-Epoch 218 Loss -0.948 time 3.28
-Epoch 219 Loss -0.946 time 3.28
-Epoch 220 Loss -0.928 time 3.28
-Epoch 221 Loss -0.936 time 3.27
-Epoch 222 Loss -0.948 time 3.28
-Epoch 223 Loss -0.934 time 3.29
-Epoch 224 Loss -0.936 time 3.28
-Epoch 225 Loss -0.946 time 3.28
-Epoch 226 Loss -0.944 time 3.26
-Epoch 227 Loss -0.945 time 3.27
-Epoch 228 Loss -0.944 time 3.27
-Epoch 229 Loss -0.949 time 3.28
-Epoch 230 Loss -0.948 time 3.27
-Epoch 231 Loss -0.946 time 3.29
-Epoch 232 Loss -0.949 time 3.29
-Epoch 233 Loss -0.952 time 3.27
-Epoch 234 Loss -0.949 time 3.29
-Epoch 235 Loss -0.948 time 3.30
-Epoch 236 Loss -0.949 time 3.30
-Epoch 237 Loss -0.949 time 3.30
-Epoch 238 Loss -0.950 time 3.29
-Epoch 239 Loss -0.949 time 3.31
-Epoch 240 Loss -0.946 time 3.28
-Epoch 241 Loss -0.959 time 3.36
-Epoch 242 Loss -0.953 time 3.34
-Epoch 243 Loss -0.951 time 3.33
-Epoch 244 Loss -0.960 time 3.32
-Epoch 245 Loss -0.959 time 3.32
-Epoch 246 Loss -0.947 time 3.32
-Epoch 247 Loss -0.958 time 3.32
-Epoch 248 Loss -0.951 time 3.31
-Epoch 249 Loss -0.963 time 3.32
-Epoch 250 Loss -0.958 time 3.31
-Epoch 251 Loss -0.968 time 3.32
-Epoch 252 Loss -0.957 time 3.32
-Epoch 253 Loss -0.962 time 3.34
-Epoch 254 Loss -0.959 time 3.31
-Epoch 255 Loss -0.958 time 3.32
-Epoch 256 Loss -0.963 time 3.29
-Epoch 257 Loss -0.960 time 3.30
-Epoch 258 Loss -0.964 time 3.30
-Epoch 259 Loss -0.954 time 3.36
-Epoch 260 Loss -0.963 time 3.36
-Epoch 261 Loss -0.964 time 3.29
-Epoch 262 Loss -0.963 time 3.30
-Epoch 263 Loss -0.954 time 3.30
-Epoch 264 Loss -0.966 time 3.30
-Epoch 265 Loss -0.971 time 3.29
-Epoch 266 Loss -0.971 time 3.30
-Epoch 267 Loss -0.963 time 3.30
-Epoch 268 Loss -0.967 time 3.30
-Epoch 269 Loss -0.966 time 3.30
-Epoch 270 Loss -0.974 time 3.29
-Epoch 271 Loss -0.972 time 3.40
-Epoch 272 Loss -0.971 time 3.29
-Epoch 273 Loss -0.970 time 3.28
-Epoch 274 Loss -0.966 time 3.28
-Epoch 275 Loss -0.971 time 3.26
-Epoch 276 Loss -0.975 time 3.26
-Epoch 277 Loss -0.968 time 3.26
-Epoch 278 Loss -0.962 time 3.26
-Epoch 279 Loss -0.974 time 3.26
-Epoch 280 Loss -0.972 time 3.25
-Epoch 281 Loss -0.968 time 3.25
-Epoch 282 Loss -0.975 time 3.32
-Epoch 283 Loss -0.973 time 3.29
-Epoch 284 Loss -0.964 time 3.26
-Epoch 285 Loss -0.976 time 3.24
-Epoch 286 Loss -0.974 time 3.23
-Epoch 287 Loss -0.973 time 3.23
-Epoch 288 Loss -0.974 time 3.24
-Epoch 289 Loss -0.976 time 3.24
-Epoch 290 Loss -0.966 time 3.24
-Epoch 291 Loss -0.978 time 3.24
-Epoch 292 Loss -0.976 time 3.25
-Epoch 293 Loss -0.980 time 3.24
-Epoch 294 Loss -0.971 time 3.23
-Epoch 295 Loss -0.971 time 3.25
-Epoch 296 Loss -0.987 time 3.25
-Epoch 297 Loss -0.975 time 3.23
-Epoch 298 Loss -0.974 time 3.22
-Epoch 299 Loss -0.977 time 3.22
-Epoch 300 Loss -0.976 time 3.22
-Epoch 301 Loss -0.978 time 3.30
-Epoch 302 Loss -0.971 time 3.29
-Epoch 303 Loss -0.980 time 3.25
-Epoch 304 Loss -0.984 time 3.23
-Epoch 305 Loss -0.985 time 3.25
-Epoch 306 Loss -0.980 time 3.23
-Epoch 307 Loss -0.985 time 3.23
-Epoch 308 Loss -0.984 time 3.38
-Epoch 309 Loss -0.985 time 3.39
-Epoch 310 Loss -0.984 time 3.31
-Epoch 311 Loss -0.990 time 3.29
-Epoch 312 Loss -0.979 time 3.30
-Epoch 313 Loss -0.983 time 3.29
-Epoch 314 Loss -0.984 time 3.29
-Epoch 315 Loss -0.981 time 3.33
-Epoch 316 Loss -0.988 time 3.28
-Epoch 317 Loss -0.981 time 3.27
-Epoch 318 Loss -0.980 time 3.28
-Epoch 319 Loss -0.990 time 3.29
-Epoch 320 Loss -0.987 time 3.28
-Epoch 321 Loss -0.981 time 3.28
-Epoch 322 Loss -0.985 time 3.27
-Epoch 323 Loss -0.985 time 3.28
-Epoch 324 Loss -0.997 time 3.27
-Epoch 325 Loss -0.987 time 3.28
-Epoch 326 Loss -0.978 time 3.27
-Epoch 327 Loss -0.994 time 3.28
-Epoch 328 Loss -0.992 time 3.28
-Epoch 329 Loss -0.991 time 3.34
-Epoch 330 Loss -0.983 time 3.29
-Epoch 331 Loss -0.986 time 3.29
-Epoch 332 Loss -0.988 time 3.29
-Epoch 333 Loss -0.992 time 3.30
-Epoch 334 Loss -0.992 time 3.30
-Epoch 335 Loss -0.983 time 3.28
-Epoch 336 Loss -0.991 time 3.29
-Epoch 337 Loss -0.993 time 3.30
-Epoch 338 Loss -0.990 time 3.29
-Epoch 339 Loss -0.996 time 3.29
-Epoch 340 Loss -0.995 time 2.99
-Epoch 341 Loss -0.992 time 2.67
-Epoch 342 Loss -0.994 time 2.66
-Epoch 343 Loss -0.997 time 2.67
-Epoch 344 Loss -0.993 time 2.67
-Epoch 345 Loss -0.994 time 2.67
-Epoch 346 Loss -0.995 time 2.67
-Epoch 347 Loss -0.995 time 2.68
-Epoch 348 Loss -0.998 time 2.67
-Epoch 349 Loss -1.003 time 2.69
-Epoch 350 Loss -0.995 time 2.67
-Epoch 351 Loss -0.994 time 2.68
-Epoch 352 Loss -0.993 time 2.67
-Epoch 353 Loss -0.993 time 2.67
-Epoch 354 Loss -0.995 time 2.67
-Epoch 355 Loss -0.997 time 2.67
-Epoch 356 Loss -1.000 time 2.67
-Epoch 357 Loss -1.001 time 2.67
-Epoch 358 Loss -0.991 time 2.67
-Epoch 359 Loss -0.994 time 2.68
-Epoch 360 Loss -1.002 time 2.66
-Epoch 361 Loss -0.999 time 2.68
-Epoch 362 Loss -0.997 time 3.33
-Epoch 363 Loss -1.003 time 3.29
-Epoch 364 Loss -0.999 time 3.30
-Epoch 365 Loss -1.005 time 3.34
-Epoch 366 Loss -0.998 time 3.28
-Epoch 367 Loss -1.003 time 3.27
-Epoch 368 Loss -1.000 time 3.26
-Epoch 369 Loss -0.999 time 3.27
-Epoch 370 Loss -0.995 time 3.26
-Epoch 371 Loss -0.995 time 3.27
-Epoch 372 Loss -1.003 time 3.26
-Epoch 373 Loss -0.997 time 3.26
-Epoch 374 Loss -1.008 time 3.26
-Epoch 375 Loss -0.997 time 3.27
-Epoch 376 Loss -1.001 time 3.26
-Epoch 377 Loss -1.004 time 3.26
-Epoch 378 Loss -1.006 time 3.24
-Epoch 379 Loss -1.011 time 3.24
-Epoch 380 Loss -1.009 time 3.24
-Epoch 381 Loss -1.008 time 3.24
-Epoch 382 Loss -1.006 time 3.25
-Epoch 383 Loss -1.007 time 3.25
-Epoch 384 Loss -1.001 time 3.26
-Epoch 385 Loss -1.008 time 3.26
-Epoch 386 Loss -1.001 time 3.26
-Epoch 387 Loss -1.012 time 3.26
-Epoch 388 Loss -1.011 time 3.27
-Epoch 389 Loss -1.001 time 3.26
-Epoch 390 Loss -1.006 time 3.27
-Epoch 391 Loss -1.010 time 3.26
-Epoch 392 Loss -1.009 time 3.26
-Epoch 393 Loss -1.006 time 3.26
-Epoch 394 Loss -1.005 time 3.27
-Epoch 395 Loss -1.014 time 3.27
-Epoch 396 Loss -1.010 time 3.27
-Epoch 397 Loss -1.005 time 3.27
-Epoch 398 Loss -1.005 time 3.27
-Epoch 399 Loss -1.004 time 3.26
-Epoch 400 Loss -1.016 time 3.27
-Epoch 401 Loss -1.005 time 3.28
-Epoch 402 Loss -1.007 time 3.27
-Epoch 403 Loss -1.008 time 3.28
-Epoch 404 Loss -1.011 time 3.26
-Epoch 405 Loss -1.008 time 3.33
-Epoch 406 Loss -1.010 time 3.29
-Epoch 407 Loss -1.011 time 3.30
-Epoch 408 Loss -1.013 time 3.27
-Epoch 409 Loss -1.017 time 3.24
-Epoch 410 Loss -1.011 time 3.24
-Epoch 411 Loss -1.012 time 3.23
-Epoch 412 Loss -1.015 time 3.24
-Epoch 413 Loss -1.015 time 3.24
-Epoch 414 Loss -1.010 time 3.24
-Epoch 415 Loss -1.012 time 3.23
-Epoch 416 Loss -1.015 time 3.24
-Epoch 417 Loss -1.007 time 3.24
-Epoch 418 Loss -1.023 time 3.24
-Epoch 419 Loss -1.014 time 3.24
-Epoch 420 Loss -1.011 time 3.24
-Epoch 421 Loss -1.011 time 3.25
-Epoch 422 Loss -1.019 time 3.24
-Epoch 423 Loss -1.015 time 3.23
-Epoch 424 Loss -1.013 time 3.23
-Epoch 425 Loss -1.005 time 3.24
-Epoch 426 Loss -1.016 time 3.23
-Epoch 427 Loss -1.023 time 3.23
-Epoch 428 Loss -1.016 time 3.33
-Epoch 429 Loss -1.027 time 3.25
-Epoch 430 Loss -1.015 time 3.24
-Epoch 431 Loss -1.023 time 3.25
-Epoch 432 Loss -1.018 time 3.24
-Epoch 433 Loss -1.019 time 3.26
-Epoch 434 Loss -1.020 time 3.24
-Epoch 435 Loss -1.025 time 3.25
-Epoch 436 Loss -1.025 time 3.26
-Epoch 437 Loss -1.012 time 3.26
-Epoch 438 Loss -1.025 time 3.26
-Epoch 439 Loss -1.015 time 3.25
-Epoch 440 Loss -1.018 time 3.25
-Epoch 441 Loss -1.020 time 3.26
-Epoch 442 Loss -1.022 time 3.25
-Epoch 443 Loss -1.014 time 3.25
-Epoch 444 Loss -1.026 time 3.25
-Epoch 445 Loss -1.020 time 3.24
-Epoch 446 Loss -1.016 time 3.26
-Epoch 447 Loss -1.015 time 3.25
-Epoch 448 Loss -1.024 time 3.25
-Epoch 449 Loss -1.022 time 3.24
-Epoch 450 Loss -1.020 time 3.26
-Epoch 451 Loss -1.016 time 3.25
-Epoch 452 Loss -1.016 time 3.24
-Epoch 453 Loss -1.017 time 3.24
-Epoch 454 Loss -1.023 time 3.24
-Epoch 455 Loss -1.018 time 3.26
-Epoch 456 Loss -1.025 time 3.25
-Epoch 457 Loss -1.028 time 3.25
-Epoch 458 Loss -1.025 time 3.23
-Epoch 459 Loss -1.032 time 3.27
-Epoch 460 Loss -1.032 time 3.34
-Epoch 461 Loss -1.020 time 3.23
-Epoch 462 Loss -1.028 time 3.24
-Epoch 463 Loss -1.024 time 3.24
-Epoch 464 Loss -1.030 time 3.26
-Epoch 465 Loss -1.030 time 3.17
-Epoch 466 Loss -1.022 time 3.25
-Epoch 467 Loss -1.024 time 3.24
-Epoch 468 Loss -1.024 time 3.25
-Epoch 469 Loss -1.028 time 3.17
-Epoch 470 Loss -1.020 time 3.24
-Epoch 471 Loss -1.023 time 3.25
-Epoch 472 Loss -1.029 time 3.24
-Epoch 473 Loss -1.026 time 3.24
-Epoch 474 Loss -1.024 time 3.24
-Epoch 475 Loss -1.023 time 3.27
-Epoch 476 Loss -1.017 time 3.22
-Epoch 477 Loss -1.024 time 3.23
-Epoch 478 Loss -1.027 time 3.24
-Epoch 479 Loss -1.027 time 3.23
-Epoch 480 Loss -1.022 time 3.23
-Epoch 481 Loss -1.031 time 3.28
-Epoch 482 Loss -1.025 time 3.27
-Epoch 483 Loss -1.031 time 3.28
-Epoch 484 Loss -1.029 time 3.28
-Epoch 485 Loss -1.020 time 3.27
-Epoch 486 Loss -1.030 time 3.28
-Epoch 487 Loss -1.029 time 3.28
-Epoch 488 Loss -1.030 time 3.28
-Epoch 489 Loss -1.028 time 3.28
-Epoch 490 Loss -1.026 time 3.30
-Epoch 491 Loss -1.034 time 3.30
-Epoch 492 Loss -1.034 time 3.30
-Epoch 493 Loss -1.033 time 3.30
-Epoch 494 Loss -1.029 time 3.30
-Epoch 495 Loss -1.026 time 3.30
-Epoch 496 Loss -1.029 time 3.30
-Epoch 497 Loss -1.028 time 3.30
-Epoch 498 Loss -1.028 time 3.30
-Epoch 499 Loss -1.038 time 3.31
-Epoch 500 Loss -1.032 time 3.30
+Epoch 1 Loss 0.094 time 3.19
+Epoch 2 Loss -0.107 time 2.71
+Epoch 3 Loss -0.188 time 2.71
+Epoch 4 Loss -0.225 time 2.96
+Epoch 1 Loss 0.090 time 3.68
+Epoch 2 Loss -0.098 time 2.99
+Epoch 3 Loss -0.180 time 3.50
+Epoch 4 Loss -0.223 time 2.93
+Epoch 5 Loss -0.272 time 2.93
diff --git a/example/plot-pred-timeseries.py b/example/plot-pred-timeseries.py
deleted file mode 100644
index 1650d6e..0000000
--- a/example/plot-pred-timeseries.py
+++ /dev/null
@@ -1,43 +0,0 @@
-import os
-from hydroDL.data import dbCsv
-from hydroDL.post import plot, stat
-from hydroDL import master
-
-cDir = os.path.dirname(os.path.abspath(__file__))
-cDir = r'/home/kxf227/work/GitHUB/pyRnnSMAP/example/'
-
-rootDB = os.path.join(cDir, 'data')
-nEpoch = 500
-out = os.path.join(cDir, 'output', 'CONUSv4f1')
-tRange = [20160401, 20170401]
-
-# load data
-df = dbCsv.DataframeCsv(
- rootDB=rootDB, subset='CONUSv4f1', tRange=tRange)
-yt = df.getData(varT='SMAP_AM', doNorm=False, rmNan=False)
-yt = yt.squeeze()
-
-yp = master.test(
- out, tRange=[20160401, 20170401], subset='CONUSv4f1', epoch=500)
-yp = yp.squeeze()
-
-# calculate stat
-statErr = stat.statError(yp, yt)
-dataGrid = [statErr['RMSE'], statErr['Corr']]
-dataTs = [yp, yt]
-t = df.getT()
-crd = df.getGeo()
-mapNameLst = ['RMSE', 'Correlation']
-tsNameLst = ['LSTM', 'SMAP']
-colorMap = None
-colorTs = None
-
-# plot map and time series
-plot.plotTsMap(
- dataGrid,
- dataTs,
- crd,
- t,
- colorMap=colorMap,
- mapNameLst=mapNameLst,
- tsNameLst=tsNameLst)
diff --git a/example/screen-lstm.py b/example/screen-lstm.py
deleted file mode 100644
index 61d3b52..0000000
--- a/example/screen-lstm.py
+++ /dev/null
@@ -1,21 +0,0 @@
-from hydroDL import pathSMAP, master
-import os
-
-# define training options
-out = os.path.join(pathSMAP['Out_L3_NA'], 'RegTest', 'CONUSv4f1_sigma')
-
-optData = master.default.update(
- master.default.optDataCsv,
- rootDB=pathSMAP['DB_L3_NA'],
- subset='CONUSv4f1',
- tRange=[20150401, 20160401],
-)
-optModel = master.default.optLstm
-optLoss = master.default.update(
- master.default.optLoss, name='hydroDL.model.crit.SigmaLoss')
-optTrain = master.default.optTrain
-
-masterDict = master.wrapMaster(out, optData, optModel, optLoss, optTrain)
-
-# train
-master.runTrain(masterDict, cudaID=0, screenName='sigmaTest')
diff --git a/example/test-lstm.py b/example/test-lstm.py
deleted file mode 100644
index e4f2abb..0000000
--- a/example/test-lstm.py
+++ /dev/null
@@ -1,37 +0,0 @@
-import os
-from hydroDL.data import dbCsv
-from hydroDL.post import plot, stat
-from hydroDL import master
-
-cDir = os.path.dirname(os.path.abspath(__file__))
-
-out = os.path.join(cDir, 'output', 'CONUSv4f1')
-rootDB = os.path.join(cDir, 'data')
-nEpoch = 100
-tRange = [20160401, 20170401]
-
-# load data
-df, yp, yt = master.test(
- out, tRange=[20160401, 20170401], subset='CONUSv4f1', epoch=100, reTest=True)
-yp = yp.squeeze()
-yt = yt.squeeze()
-
-# calculate stat
-statErr = stat.statError(yp, yt)
-dataGrid = [statErr['RMSE'], statErr['Corr']]
-dataTs = [yp, yt]
-t = df.getT()
-crd = df.getGeo()
-mapNameLst = ['RMSE', 'Correlation']
-tsNameLst = ['LSTM', 'SMAP']
-
-# plot map and time series
-plot.plotTsMap(
- dataGrid,
- dataTs,
- lat=crd[0],
- lon=crd[1],
- t=t,
- mapNameLst=mapNameLst,
- tsNameLst=tsNameLst,
- isGrid=True)
diff --git a/example/train-lstm-mca.py b/example/train-lstm-mca.py
index d9185a0..55d5802 100644
--- a/example/train-lstm-mca.py
+++ b/example/train-lstm-mca.py
@@ -1,26 +1,26 @@
from hydroDL import pathSMAP, master
import os
+from hydroDL.master import default
cDir = os.path.dirname(os.path.abspath(__file__))
cDir = r'/home/kxf227/work/GitHUB/pyRnnSMAP/example/'
# define training options
-optData = master.updateOpt(
- master.default.optDataCsv,
- path=os.path.join(cDir, 'data'),
+optData = default.update(
+ default.optDataSMAP,
+ rootDB=os.path.join(cDir, 'data'),
subset='CONUSv4f1',
tRange=[20150401, 20160401],
)
-optModel = master.default.optLstm
-optLoss = master.updateOpt(
- master.default.optLoss, name='hydroDL.model.crit.SigmaLoss')
-optTrain = master.default.optTrainSMAP
+optModel = default.optLstm
+optLoss = default.optLossSigma
+optTrain = default.update(master.default.optTrainSMAP, nEpoch=5, saveEpoch=5)
out = os.path.join(cDir, 'output', 'CONUSv4f1_sigma')
masterDict = master.wrapMaster(out, optData, optModel, optLoss, optTrain)
# train
-master.train(masterDict, overwrite=True)
+master.train(masterDict)
# test
pred = master.test(
- out, tRange=[20160401, 20170401], subset='CONUSv4f1', epoch=500)
+ out, tRange=[20160401, 20170401], subset='CONUSv4f1')
diff --git a/hydroDL/__init__.py b/hydroDL/__init__.py
index 746f38a..8a562ea 100644
--- a/hydroDL/__init__.py
+++ b/hydroDL/__init__.py
@@ -29,12 +29,17 @@ def initPath():
dirResult=dirResult)
pathCamels = collections.OrderedDict(
- DB=os.path.join(os.path.sep, 'mnt', 'sdb', 'Data', 'Camels'),
- Out=os.path.join(os.path.sep, 'mnt', 'sdb', 'rnnStreamflow'))
- return pathSMAP, pathCamels
+ DB=os.path.join(os.path.sep, 'scratch', 'Camels'),
+ Out=os.path.join(os.path.sep, 'data', 'rnnStreamflow'))
+ pathGAGES = collections.OrderedDict(
+ DB=os.path.join(os.path.sep, 'scratch', 'GAGES'),
+ Out=os.path.join(os.path.sep, 'data', 'rnnStreamflow', 'GAGES'))
-pathSMAP, pathCamels = initPath()
+ return pathSMAP, pathCamels, pathGAGES
+
+
+pathSMAP, pathCamels, pathGAGES = initPath()
from . import utils
from . import data
diff --git a/hydroDL/data/camels.py b/hydroDL/data/camels.py
new file mode 100644
index 0000000..cee4f39
--- /dev/null
+++ b/hydroDL/data/camels.py
@@ -0,0 +1,620 @@
+# read camels dataset
+import os
+import pandas as pd
+import numpy as np
+import datetime as dt
+from hydroDL import utils, pathCamels
+from pandas.api.types import is_numeric_dtype, is_string_dtype
+import time
+import json
+from . import Dataframe
+
+# module variable
+tRange = [19800101, 20150101]
+tRangeobs = [19790101, 20150101] # streamflow observations
+tLst = utils.time.tRange2Array(tRange)
+tLstobs = utils.time.tRange2Array(tRangeobs)
+nt = len(tLst)
+ntobs = len(tLstobs)
+# forcingLst = ['dayl', 'prcp', 'srad', 'swe', 'tmax', 'tmin', 'vp']
+forcingLst = ['dayl', 'prcp', 'srad', 'tmax', 'tmin', 'vp']
+attrLstSel = [
+ 'elev_mean', 'slope_mean', 'area_gages2', 'frac_forest', 'lai_max',
+ 'lai_diff', 'dom_land_cover_frac', 'dom_land_cover', 'root_depth_50',
+ 'soil_depth_statsgo', 'soil_porosity', 'soil_conductivity',
+ 'max_water_content', 'geol_1st_class', 'geol_2nd_class', 'geol_porostiy',
+ 'geol_permeability'
+]
+
+def readGageInfo(dirDB):
+ gageFile = os.path.join(dirDB, 'basin_timeseries_v1p2_metForcing_obsFlow',
+ 'basin_dataset_public_v1p2', 'basin_metadata',
+ 'gauge_information.txt')
+
+ data = pd.read_csv(gageFile, sep='\t', header=None, skiprows=1)
+ # header gives some troubles. Skip and hardcode
+ fieldLst = ['huc', 'id', 'name', 'lat', 'lon', 'area']
+ out = dict()
+ for s in fieldLst:
+ if s is 'name':
+ out[s] = data[fieldLst.index(s)].values.tolist()
+ else:
+ out[s] = data[fieldLst.index(s)].values
+ return out
+
+def readUsgsGage(usgsId, *, readQc=False):
+ ind = np.argwhere(gageDict['id'] == usgsId)[0][0]
+ huc = gageDict['huc'][ind]
+ usgsFile = os.path.join(dirDB, 'basin_timeseries_v1p2_metForcing_obsFlow',
+ 'basin_dataset_public_v1p2', 'usgs_streamflow',
+ str(huc).zfill(2),
+ '%08d_streamflow_qc.txt' % (usgsId))
+ dataTemp = pd.read_csv(usgsFile, sep=r'\s+', header=None)
+ obs = dataTemp[4].values
+ obs[obs < 0] = np.nan
+ if readQc is True:
+ qcDict = {'A': 1, 'A:e': 2, 'M': 3}
+ qc = np.array([qcDict[x] for x in dataTemp[5]])
+ if len(obs) != ntobs:
+ out = np.full([ntobs], np.nan)
+ dfDate = dataTemp[[1, 2, 3]]
+ dfDate.columns = ['year', 'month', 'day']
+ date = pd.to_datetime(dfDate).values.astype('datetime64[D]')
+ [C, ind1, ind2] = np.intersect1d(date, tLstobs, return_indices=True)
+ out[ind2] = obs
+ if readQc is True:
+ outQc = np.full([ntobs], np.nan)
+ outQc[ind2] = qc
+ else:
+ out = obs
+ if readQc is True:
+ outQc = qc
+
+ if readQc is True:
+ return out, outQc
+ else:
+ return out
+
+
+def readUsgs(usgsIdLst):
+ t0 = time.time()
+ y = np.empty([len(usgsIdLst), ntobs])
+ for k in range(len(usgsIdLst)):
+ dataObs = readUsgsGage(usgsIdLst[k])
+ y[k, :] = dataObs
+ print("read usgs streamflow", time.time() - t0)
+ return y
+
+
+def readForcingGage(usgsId, varLst=forcingLst, *, dataset='nldas'):
+ # dataset = daymet or maurer or nldas or nldas_extedned with tmaxtmin
+ forcingLst = ['dayl', 'prcp', 'srad', 'swe', 'tmax', 'tmin', 'vp']
+ ind = np.argwhere(gageDict['id'] == usgsId)[0][0]
+ huc = gageDict['huc'][ind]
+
+ dataFolder = os.path.join(
+ dirDB, 'basin_timeseries_v1p2_metForcing_obsFlow',
+ 'basin_dataset_public_v1p2', 'basin_mean_forcing')
+ if dataset is 'daymet':
+ tempS = 'cida'
+ elif dataset is 'nldas_extended':
+ tempS = 'nldas'
+ else:
+ tempS = dataset
+ dataFile = os.path.join(dataFolder, dataset,
+ str(huc).zfill(2),
+ '%08d_lump_%s_forcing_leap.txt' % (usgsId, tempS))
+ dataTemp = pd.read_csv(dataFile, sep=r'\s+', header=None, skiprows=4)
+ nf = len(varLst)
+ out = np.empty([nt, nf])
+ for k in range(nf):
+ # assume all files are of same columns. May check later.
+ ind = forcingLst.index(varLst[k])
+ out[:, k] = dataTemp[ind + 4].values
+ return out
+
+
+def readForcing(usgsIdLst, varLst):
+ t0 = time.time()
+ x = np.empty([len(usgsIdLst), nt, len(varLst)])
+ for k in range(len(usgsIdLst)):
+ data = readForcingGage(usgsIdLst[k], varLst)
+ x[k, :, :] = data
+ print("read usgs streamflow", time.time() - t0)
+ return x
+
+
+def readAttrAll(*, saveDict=False):
+ dataFolder = os.path.join(dirDB, 'camels_attributes_v2.0',
+ 'camels_attributes_v2.0')
+ fDict = dict() # factorize dict
+ varDict = dict()
+ varLst = list()
+ outLst = list()
+ keyLst = ['topo', 'clim', 'hydro', 'vege', 'soil', 'geol']
+
+ for key in keyLst:
+ dataFile = os.path.join(dataFolder, 'camels_' + key + '.txt')
+ dataTemp = pd.read_csv(dataFile, sep=';')
+ varLstTemp = list(dataTemp.columns[1:])
+ varDict[key] = varLstTemp
+ varLst.extend(varLstTemp)
+ k = 0
+ nGage = len(gageDict['id'])
+ outTemp = np.full([nGage, len(varLstTemp)], np.nan)
+ for field in varLstTemp:
+ if is_string_dtype(dataTemp[field]):
+ value, ref = pd.factorize(dataTemp[field], sort=True)
+ outTemp[:, k] = value
+ fDict[field] = ref.tolist()
+ elif is_numeric_dtype(dataTemp[field]):
+ outTemp[:, k] = dataTemp[field].values
+ k = k + 1
+ outLst.append(outTemp)
+ out = np.concatenate(outLst, 1)
+ if saveDict is True:
+ fileName = os.path.join(dataFolder, 'dictFactorize.json')
+ with open(fileName, 'w') as fp:
+ json.dump(fDict, fp, indent=4)
+ fileName = os.path.join(dataFolder, 'dictAttribute.json')
+ with open(fileName, 'w') as fp:
+ json.dump(varDict, fp, indent=4)
+ return out, varLst
+
+
+def readAttr(usgsIdLst, varLst):
+ attrAll, varLstAll = readAttrAll()
+ indVar = list()
+ for var in varLst:
+ indVar.append(varLstAll.index(var))
+ idLstAll = gageDict['id']
+ indGrid = np.full(usgsIdLst.size, np.nan).astype(int)
+ for ii in range(usgsIdLst.size):
+ tempind = np.where(idLstAll==usgsIdLst[ii])
+ indGrid[ii] = tempind[0][0]
+ temp = attrAll[indGrid, :]
+ out = temp[:, indVar]
+ # previous code depreciated potential bug exists for repeated gages
+ # C, indGrid, ind2 = np.intersect1d(idLstAll, usgsIdLst, return_indices=True)
+ # # make sure the extracted data have the same sequence as usgsIdLst
+ # if usgsIdLst.size != ind2.size:
+ # raise Exception('Subset not fully included in all gages')
+ # argSort = np.argsort(usgsIdLst)
+ # temp = attrAll[indGrid, :]
+ # tempTrans = np.full(temp.shape, np.nan)
+ # tempTrans[argSort, :] = temp
+ # out = tempTrans[:, indVar]
+ return out
+
+def readSAC(tRangeLst):
+ outpathSAC = pathCamels['Out'] + '/trend/SAC'
+ tSACRange = [19801001, 20150101]
+ tSACLst = utils.time.tRange2Array(tSACRange)
+ ## load SAC-SMA prediction
+ fname_predSAC = outpathSAC + '/predSAC.npy'
+ predSAC = np.load(fname_predSAC, allow_pickle=True)
+ C, ind1, ind2 = np.intersect1d(tRangeLst, tSACLst, return_indices=True)
+ dataPred = predSAC[:, ind2]
+ dataPred = np.expand_dims(dataPred, 2)
+ return dataPred # Ngage*Ntime*Nvar
+
+def readLstm(tRangeLst):
+ tLstmRange = [19801001, 20150101]
+ tLstmLst = utils.time.tRange2Array(tLstmRange)
+ lstmDir = 'EnsemRun/DI_N/PNorm/SAC-LSTM/epochs300_batch100_rho365_hiddensize256_Tstart19801001_Tend19951001'
+ outpathLstm = os.path.join(pathCamels['Out'], lstmDir, 'All-90-95', str(tLstmRange[0]) + '_' + str(tLstmRange[1]))
+ ## load Lstm prediction
+ fname_predLstm = outpathLstm + '/pred.npy'
+ predLstm = np.load(fname_predLstm, allow_pickle=True)
+ predLstm = np.nanmean(predLstm, axis=0)
+ C, ind1, ind2 = np.intersect1d(tRangeLst, tLstmLst, return_indices=True)
+ dataPred = predLstm[:, ind2,:]
+ return dataPred # Ngage*Ntime*Nvar
+
+def readcsvGage(dataDir, usgsId, varLst, ntime):
+ dataFile = os.path.join(dataDir, str(usgsId)+'.csv')
+ dataTemp = pd.read_csv(dataFile)
+ nf = len(varLst)
+ out = np.empty([ntime, nf])
+ for k in range(nf):
+ # assume all files are of same columns. May check later.
+ out[:, k] = dataTemp[varLst[k]].values
+ return out
+
+def readhour(varLst, usgsIdLst):
+ thourRange = [19851001, 20051001]
+ thourLst = utils.time.tRange2Array(thourRange)
+ dataDir = '/scratch/feng/extractData/NLDAS/csvLst/NLDAS'
+ ntime = len(thourLst)*24
+ x = np.empty([len(usgsIdLst), ntime, len(varLst)])
+ for k in range(len(usgsIdLst)):
+ dataTemp = readcsvGage(dataDir, usgsIdLst[k], varLst, ntime)
+ x[k, :, :] = dataTemp
+
+ return x, thourLst
+
+def readSMAP(varLst, usgsIdLst):
+ tSMAPRange = [20150402, 20180401]
+ tSMAPLst = utils.time.tRange2Array(tSMAPRange)
+ dataDir = '/scratch/feng/extractData/SMAPInv'
+ ntime = len(tSMAPLst)
+ x = np.empty([len(usgsIdLst), ntime, len(varLst)])
+ for k in range(len(usgsIdLst)):
+ dataTemp = readcsvGage(dataDir, usgsIdLst[k], varLst, ntime)
+ x[k, :, :] = dataTemp
+ # load the statistics file and transform back
+ with open(os.path.join(dataDir, 'statDictOri.json'), 'r') as fp:
+ smapstaDict = json.load(fp)
+ for ivar in range(len(varLst)):
+ x[:, :, ivar] = x[:, :, ivar]*smapstaDict[varLst[ivar]][3] + smapstaDict[varLst[ivar]][2]
+
+ # get the new statDict of SMAP
+ statnewFile = os.path.join(dataDir, 'statDictNew.json')
+ if not os.path.isfile(statnewFile):
+ smapnewDict = dict()
+ for ivar in range(len(varLst)):
+ var = varLst[ivar]
+ smapnewDict[var] = calStat(x[:, :, ivar])
+ with open(statnewFile, 'w') as fp:
+ json.dump(smapnewDict, fp, indent=4)
+
+ with open(statnewFile, 'r') as fp:
+ smapDict = json.load(fp)
+
+ return x, tSMAPLst, smapDict # x is transformed back
+
+def readCSV(dataDir, dataRange, varLst, usgsIdLst):
+ tdataRangeLst = utils.time.tRange2Array(dataRange)
+ ntime = len(tdataRangeLst)
+ x = np.empty([len(usgsIdLst), ntime, len(varLst)])
+ for k in range(len(usgsIdLst)):
+ dataTemp = readcsvGage(dataDir, usgsIdLst[k], varLst, ntime)
+ x[k, :, :] = dataTemp
+ # make -9999 as np.nan
+ x[x <= -999] = np.nan
+
+ # get the statistics for normalization, write to a dict
+ statnewFile = os.path.join(dataDir, 'statDictCSV.json')
+ if not os.path.isfile(statnewFile):
+ statnewDict = dict()
+ for ivar in range(len(varLst)):
+ var = varLst[ivar]
+ statnewDict[var] = calStat(x[:, :, ivar])
+ with open(statnewFile, 'w') as fp:
+ json.dump(statnewDict, fp, indent=4)
+
+ with open(statnewFile, 'r') as fp:
+ statcsvDict = json.load(fp)
+
+ return x, tdataRangeLst, statcsvDict
+
+def calStat(x):
+ a = x.flatten()
+ b = a[~np.isnan(a)] # kick out Nan
+ p10 = np.percentile(b, 10).astype(float)
+ p90 = np.percentile(b, 90).astype(float)
+ mean = np.mean(b).astype(float)
+ std = np.std(b).astype(float)
+ if std < 0.001:
+ std = 1
+ return [p10, p90, mean, std]
+
+def calStatgamma(x): # for daily streamflow and precipitation
+ a = x.flatten()
+ b = a[~np.isnan(a)] # kick out Nan
+ b = np.log10(np.sqrt(b)+0.1) # do some tranformation to change gamma characteristics
+ p10 = np.percentile(b, 10).astype(float)
+ p90 = np.percentile(b, 90).astype(float)
+ mean = np.mean(b).astype(float)
+ std = np.std(b).astype(float)
+ if std < 0.001:
+ std = 1
+ return [p10, p90, mean, std]
+
+def calStatbasinnorm(x): # for daily streamflow normalized by basin area and precipitation
+ basinarea = readAttr(gageDict['id'], ['area_gages2'])
+ meanprep = readAttr(gageDict['id'], ['p_mean'])
+ # meanprep = readAttr(gageDict['id'], ['q_mean'])
+ temparea = np.tile(basinarea, (1, x.shape[1]))
+ tempprep = np.tile(meanprep, (1, x.shape[1]))
+ flowua = (x * 0.0283168 * 3600 * 24) / ((temparea * (10 ** 6)) * (tempprep * 10 ** (-3))) # unit (m^3/day)/(m^3/day)
+ a = flowua.flatten()
+ b = a[~np.isnan(a)] # kick out Nan
+ b = np.log10(np.sqrt(b)+0.1) # do some tranformation to change gamma characteristics plus 0.1 for 0 values
+ p10 = np.percentile(b, 10).astype(float)
+ p90 = np.percentile(b, 90).astype(float)
+ mean = np.mean(b).astype(float)
+ std = np.std(b).astype(float)
+ if std < 0.001:
+ std = 1
+ return [p10, p90, mean, std]
+
+
+def calStatAll():
+ statDict = dict()
+ idLst = gageDict['id']
+ # usgs streamflow
+ y = readUsgs(idLst)
+ # statDict['usgsFlow'] = calStatgamma(y)
+ statDict['usgsFlow'] = calStatbasinnorm(y)
+ # forcing
+ x = readForcing(idLst, forcingLst)
+ for k in range(len(forcingLst)):
+ var = forcingLst[k]
+ if var=='prcp':
+ statDict[var] = calStatgamma(x[:, :, k])
+ else:
+ statDict[var] = calStat(x[:, :, k])
+ # const attribute
+ attrData, attrLst = readAttrAll()
+ for k in range(len(attrLst)):
+ var = attrLst[k]
+ statDict[var] = calStat(attrData[:, k])
+ statFile = os.path.join(dirDB, 'Statistics_basinnorm.json')
+ with open(statFile, 'w') as fp:
+ json.dump(statDict, fp, indent=4)
+
+def getStatDic(attrLst = None, attrdata=None, seriesLst = None, seriesdata=None):
+ statDict = dict()
+ # series data
+ if seriesLst is not None:
+ for k in range(len(seriesLst)):
+ var = seriesLst[k]
+ if var in ['prcp', 'Precip', 'runoff', 'Runoff', 'Runofferror']:
+ statDict[var] = calStatgamma(seriesdata[:, :, k])
+ else:
+ statDict[var] = calStat(seriesdata[:, :, k])
+ # const attribute
+ if attrLst is not None:
+ for k in range(len(attrLst)):
+ var = attrLst[k]
+ statDict[var] = calStat(attrdata[:, k])
+ return statDict
+
+
+def transNorm(x, varLst, *, toNorm):
+ if type(varLst) is str:
+ varLst = [varLst]
+ out = np.zeros(x.shape)
+ for k in range(len(varLst)):
+ var = varLst[k]
+ stat = statDict[var]
+ if toNorm is True:
+ if len(x.shape) == 3:
+ if var == 'prcp' or var == 'usgsFlow':
+ x[:, :, k] = np.log10(np.sqrt(x[:, :, k])+0.1)
+ out[:, :, k] = (x[:, :, k] - stat[2]) / stat[3]
+ elif len(x.shape) == 2:
+ if var == 'prcp' or var == 'usgsFlow':
+ x[:, k] = np.log10(np.sqrt(x[:, k])+0.1)
+ out[:, k] = (x[:, k] - stat[2]) / stat[3]
+ else:
+ if len(x.shape) == 3:
+ out[:, :, k] = x[:, :, k] * stat[3] + stat[2]
+ if var == 'prcp' or var == 'usgsFlow':
+ temptrans = np.power(10,out[:, :, k])-0.1
+ temptrans[temptrans<0] = 0 # set negative as zero
+ out[:, :, k] = (temptrans)**2
+ elif len(x.shape) == 2:
+ out[:, k] = x[:, k] * stat[3] + stat[2]
+ if var == 'prcp' or var == 'usgsFlow':
+ temptrans = np.power(10,out[:, k])-0.1
+ temptrans[temptrans < 0] = 0
+ out[:, k] = (temptrans)**2
+ return out
+
+def transNormbyDic(x, varLst, staDic, *, toNorm):
+ if type(varLst) is str:
+ varLst = [varLst]
+ out = np.zeros(x.shape)
+ for k in range(len(varLst)):
+ var = varLst[k]
+ stat = staDic[var]
+ if toNorm is True:
+ if len(x.shape) == 3:
+ if var in ['prcp', 'usgsFlow', 'Precip', 'runoff', 'Runoff', 'Runofferror']:
+ temp = np.log10(np.sqrt(x[:, :, k])+0.1)
+ out[:, :, k] = (temp - stat[2]) / stat[3]
+ else:
+ out[:, :, k] = (x[:, :, k] - stat[2]) / stat[3]
+ elif len(x.shape) == 2:
+ if var in ['prcp', 'usgsFlow', 'Precip', 'runoff', 'Runoff', 'Runofferror']:
+ temp = np.log10(np.sqrt(x[:, k])+0.1)
+ out[:, k] = (temp - stat[2]) / stat[3]
+ else:
+ out[:, k] = (x[:, k] - stat[2]) / stat[3]
+ else:
+ if len(x.shape) == 3:
+ out[:, :, k] = x[:, :, k] * stat[3] + stat[2]
+ if var in ['prcp', 'usgsFlow', 'Precip', 'runoff', 'Runoff', 'Runofferror']:
+ temptrans = np.power(10,out[:, :, k])-0.1
+ temptrans[temptrans<0] = 0 # set negative as zero
+ out[:, :, k] = (temptrans)**2
+ elif len(x.shape) == 2:
+ out[:, k] = x[:, k] * stat[3] + stat[2]
+ if var in ['prcp', 'usgsFlow', 'Precip', 'runoff', 'Runoff', 'Runofferror']:
+ temptrans = np.power(10,out[:, k])-0.1
+ temptrans[temptrans < 0] = 0
+ out[:, k] = (temptrans)**2
+ return out
+
+def basinNorm(x, gageid, toNorm):
+ # for regional training, gageid should be numpyarray
+ if type(gageid) is str:
+ if gageid == 'All':
+ gageid = gageDict['id']
+ nd = len(x.shape)
+ basinarea = readAttr(gageid, ['area_gages2'])
+ meanprep = readAttr(gageid, ['p_mean'])
+ # meanprep = readAttr(gageid, ['q_mean'])
+ if nd == 3 and x.shape[2] == 1:
+ x = x[:,:,0] # unsqueeze the original 3 dimension matrix
+ temparea = np.tile(basinarea, (1, x.shape[1]))
+ tempprep = np.tile(meanprep, (1, x.shape[1]))
+ if toNorm is True:
+ flow = (x * 0.0283168 * 3600 * 24) / ((temparea * (10 ** 6)) * (tempprep * 10 ** (-3))) # (m^3/day)/(m^3/day)
+ else:
+
+ flow = x * ((temparea * (10 ** 6)) * (tempprep * 10 ** (-3)))/(0.0283168 * 3600 * 24)
+ if nd == 3:
+ flow = np.expand_dims(flow, axis=2)
+ return flow
+
+def createSubsetAll(opt, **kw):
+ if opt is 'all':
+ idLst = gageDict['id']
+ subsetFile = os.path.join(dirDB, 'Subset', 'all.csv')
+ np.savetxt(subsetFile, idLst, delimiter=',', fmt='%d')
+
+# Define and initialize module variables
+if os.path.isdir(pathCamels['DB']):
+ dirDB = pathCamels['DB']
+ gageDict = readGageInfo(dirDB)
+ statFile = os.path.join(dirDB, 'Statistics_basinnorm.json')
+ if not os.path.isfile(statFile):
+ calStatAll()
+ with open(statFile, 'r') as fp:
+ statDict = json.load(fp)
+else:
+ dirDB = None
+ gageDict = None
+ statDict = None
+
+def initcamels(rootDB = pathCamels['DB']):
+ # reinitialize module variable
+ global dirDB, gageDict, statDict
+ dirDB = rootDB
+ gageDict = readGageInfo(dirDB)
+ statFile = os.path.join(dirDB, 'Statistics_basinnorm.json')
+ if not os.path.isfile(statFile):
+ calStatAll()
+ with open(statFile, 'r') as fp:
+ statDict = json.load(fp)
+
+
+class DataframeCamels(Dataframe):
+ def __init__(self, *, subset='All', tRange):
+ self.subset = subset
+ if subset == 'All': # change to read subset later
+ self.usgsId = gageDict['id']
+ crd = np.zeros([len(self.usgsId), 2])
+ crd[:, 0] = gageDict['lat']
+ crd[:, 1] = gageDict['lon']
+ self.crd = crd
+ elif type(subset) is list:
+ self.usgsId = np.array(subset)
+ crd = np.zeros([len(self.usgsId), 2])
+ ind = np.full(len(self.usgsId), np.nan).astype(int)
+ for ii in range(len(self.usgsId)):
+ tempind = np.where(gageDict['id'] == self.usgsId[ii])
+ ind[ii] = tempind[0][0]
+ crd[:, 0] = gageDict['lat'][ind]
+ crd[:, 1] = gageDict['lon'][ind]
+ self.crd = crd
+ else:
+ raise Exception('The format of subset is not correct!')
+ self.time = utils.time.tRange2Array(tRange)
+
+ def getGeo(self):
+ return self.crd
+
+ def getT(self):
+ return self.time
+
+ def getDataObs(self, *, doNorm=True, rmNan=True, basinnorm = True):
+ data = readUsgs(self.usgsId)
+ if basinnorm is True:
+ data = basinNorm(data, gageid=self.usgsId, toNorm=True)
+ data = np.expand_dims(data, axis=2)
+ C, ind1, ind2 = np.intersect1d(self.time, tLstobs, return_indices=True)
+ data = data[:, ind2, :]
+ if doNorm is True:
+ data = transNorm(data, 'usgsFlow', toNorm=True)
+ if rmNan is True:
+ data[np.where(np.isnan(data))] = 0
+ # data[np.where(np.isnan(data))] = -99
+ return data
+
+ def getDataTs(self, *, varLst=forcingLst, doNorm=True, rmNan=True):
+ if type(varLst) is str:
+ varLst = [varLst]
+ # read ts forcing
+ data = readForcing(self.usgsId, varLst) # data:[gage*day*variable]
+ C, ind1, ind2 = np.intersect1d(self.time, tLst, return_indices=True)
+ data = data[:, ind2, :]
+ if doNorm is True:
+ data = transNorm(data, varLst, toNorm=True)
+ if rmNan is True:
+ data[np.where(np.isnan(data))] = 0
+ return data
+
+ def getDataConst(self, *, varLst=attrLstSel, doNorm=True, rmNan=True, SAOpt=None):
+ if type(varLst) is str:
+ varLst = [varLst]
+ data = readAttr(self.usgsId, varLst)
+ if SAOpt is not None:
+ SAname, SAfac = SAOpt
+ # find the index of target constant
+ indVar = varLst.index(SAname)
+ data[:, indVar] = data[:, indVar] * (1 + SAfac)
+ if doNorm is True:
+ data = transNorm(data, varLst, toNorm=True)
+ if rmNan is True:
+ data[np.where(np.isnan(data))] = 0
+ return data
+
+ def getSAC(self, *, basinnorm=True, doNorm=True, rmNan=True):
+ # data = readSAC(self.time) # data:[gage*day*variable]
+ data = readLstm(self.time)
+ if basinnorm is True:
+ data = basinNorm(data, gageid=self.usgsId, toNorm=True)
+ if doNorm is True:
+ stats = calStatgamma(data)
+ data = np.log10(np.sqrt(data) + 0.1)
+ data = (data - stats[2]) / stats[3]
+ if rmNan is True:
+ data[np.where(np.isnan(data))] = 0
+ return data
+
+ def getHour(self, *, doNorm=True, rmNan=True):
+ data, thourLst = readhour(varLst=['APCP'], usgsIdLst=self.usgsId) # gage, time, var: 1 precip
+ data[data==-9999] = np.nan
+ if doNorm is True:
+ stats = calStatgamma(data)
+ data = np.log10(np.sqrt(data) + 0.1)
+ data = (data - stats[2]) / stats[3]
+ if rmNan is True:
+ data[np.where(np.isnan(data))] = 0
+ data = np.reshape(data, [len(self.usgsId), -1, 24]) # presently only for precipitation
+ C, ind1, ind2 = np.intersect1d(self.time, thourLst, return_indices=True)
+ data = data[:, ind2, :]
+ return data
+
+ def getSMAP(self, *, doNorm=True, rmNan=True, SMAPinvrange=[20150402, 20160402]):
+ varsmapLst = ['APCP', 'TMP', 'PEVAP', 'SMAP']
+ data, tSMAPLst, smapDict = readSMAP(varLst=varsmapLst, usgsIdLst=self.usgsId) # gage, time, var: 1 precip
+ SMAPinvt = utils.time.tRange2Array(SMAPinvrange)
+ C, ind1, ind2 = np.intersect1d(SMAPinvt, tSMAPLst, return_indices=True)
+ data = data[:, ind2, :]
+ if doNorm is True:
+ for ivar in range(len(varsmapLst)):
+ tempvar = varsmapLst[ivar]
+ data[:, :, ivar] = (data[:, :, ivar] - smapDict[tempvar][2]) / smapDict[tempvar][3]
+ if rmNan is True:
+ data[np.where(np.isnan(data))] = 0
+ return data
+
+ def getCSV(self, *, doNorm=True, rmNan=True, dataRange=[20150401, 20201002], readRange=[20150402, 20160402],
+ csvdataDir='/scratch/feng/extractData/SMAP/csv/SMAPUpdate/', csvvarLst=['soil_moisture_pm']):
+ data, tcsvdataLst, csvstatDict = readCSV(dataDir=csvdataDir, dataRange=dataRange, varLst=csvvarLst,
+ usgsIdLst=self.usgsId) # gage, time, var
+ readtLst = utils.time.tRange2Array(readRange)
+ C, ind1, ind2 = np.intersect1d(readtLst, tcsvdataLst, return_indices=True)
+ data = data[:, ind2, :]
+ if doNorm is True:
+ for ivar in range(len(csvvarLst)):
+ tempvar = csvvarLst[ivar]
+ data[:, :, ivar] = (data[:, :, ivar] - csvstatDict[tempvar][2]) / csvstatDict[tempvar][3]
+ if rmNan is True:
+ data[np.where(np.isnan(data))] = 0
+ return data
diff --git a/hydroDL/data/dataframe.py b/hydroDL/data/dataframe.py
deleted file mode 100644
index 7561d9b..0000000
--- a/hydroDL/data/dataframe.py
+++ /dev/null
@@ -1,9 +0,0 @@
-class Dataframe(object):
- def __init__():
- pass
-
- def getData(self):
- pass
-
- def getGeo(self):
- pass
diff --git a/hydroDL/data/dbCsv.py b/hydroDL/data/dbCsv.py
index e47383f..cc248af 100644
--- a/hydroDL/data/dbCsv.py
+++ b/hydroDL/data/dbCsv.py
@@ -1,5 +1,7 @@
"""
-read and extract data from CSV database
+read and extract data from CSV database.
+This module allows you to read time series inputs/forcings and define subsets
+to read from.
"""
import os
import numpy as np
@@ -10,20 +12,32 @@
from . import Dataframe, DataModel
import hydroDL
+################################################
+# The definitions between ### are for convenience only.
+# You don't need them unless you are calling them from outside,
+# e.g., "dbCsv.xxx", or if you call DataModelCsv without supplying
+# actual arguments
+# This block shouldn't be here.
+# We will phase out these definitions from this file gradually.
+
varTarget = ['SMAP_AM']
+# ===== SMAP varForcing =====
varForcing = [
'APCP_FORA', 'DLWRF_FORA', 'DSWRF_FORA', 'TMP_2_FORA', 'SPFH_2_FORA',
'VGRD_10_FORA', 'UGRD_10_FORA'
]
-varSoilM = [
- 'APCP_FORA', 'DLWRF_FORA', 'DSWRF_FORA', 'TMP_2_FORA', 'SPFH_2_FORA',
- 'VGRD_10_FORA', 'UGRD_10_FORA', 'SOILM_0-10_NOAH'
-]
+
varConst = [
'Bulk', 'Capa', 'Clay', 'NDVI', 'Sand', 'Silt', 'flag_albedo',
'flag_extraOrd', 'flag_landcover', 'flag_roughness', 'flag_vegDense',
'flag_waterbody'
]
+
+varSoilM = [
+ 'APCP_FORA', 'DLWRF_FORA', 'DSWRF_FORA', 'TMP_2_FORA', 'SPFH_2_FORA',
+ 'VGRD_10_FORA', 'UGRD_10_FORA', 'SOILM_0-10_NOAH'
+]
+
varForcingGlobal = ['GPM', 'Wind', 'Tair', 'Psurf', 'Qair', 'SWdown', 'LWdown']
varSoilmGlobal = [
'SoilMoi0-10', 'GPM', 'Wind', 'Tair', 'Psurf', 'Qair', 'SWdown', 'LWdown'
@@ -34,6 +48,7 @@
'flag_waterbody'
]
+################################################
def t2yrLst(tArray):
t1 = tArray[0].astype(object)
@@ -70,6 +85,15 @@ def readDBinfo(*, rootDB, subset):
return rootName, crd, indSub, indSkip
+def readSubset(*, rootDB, subset):
+ subsetFile = os.path.join(rootDB, "Subset", subset + ".csv")
+ print('reading subset ' + subsetFile)
+ dfSubset = pd.read_csv(subsetFile, dtype=np.int64, header=0)
+ rootName = dfSubset.columns.values[0]
+ indSub = dfSubset.values.flatten()
+ return rootName, indSub
+
+
def readDBtime(*, rootDB, rootName, yrLst):
tnum = np.empty(0, dtype=np.datetime64)
for yr in yrLst:
@@ -142,7 +166,7 @@ def transNormSigma(data, *, rootDB, fieldName, fromRaw=True):
if fromRaw is True:
dataOut = np.log((data / stat[3])**2)
else:
- dataOut = np.sqrt(np.exp(data)) * stat[3]
+ dataOut = np.sqrt(np.exp(data)) * stat[3]
return (dataOut)
diff --git a/hydroDL/master/__init__.py b/hydroDL/master/__init__.py
index 14d1ee7..b6a3ab2 100644
--- a/hydroDL/master/__init__.py
+++ b/hydroDL/master/__init__.py
@@ -1,3 +1,3 @@
-from .master import readMasterFile, writeMasterFile, wrapMaster, train, test
+from .master import readMasterFile, writeMasterFile, wrapMaster, train, test, loadData, loadModel
from . import default
from .screen import runTrain
\ No newline at end of file
diff --git a/hydroDL/master/default.py b/hydroDL/master/default.py
index fc412bf..e40ebf0 100644
--- a/hydroDL/master/default.py
+++ b/hydroDL/master/default.py
@@ -1,6 +1,6 @@
import hydroDL
from collections import OrderedDict
-from hydroDL.data import dbCsv
+from hydroDL.data import dbCsv, camels
# SMAP default options
optDataSMAP = OrderedDict(
name='hydroDL.data.dbCsv.DataframeCsv',
@@ -14,7 +14,44 @@
rmNan=[True, False],
daObs=0)
optTrainSMAP = OrderedDict(miniBatch=[100, 30], nEpoch=500, saveEpoch=100)
-
+# Streamflow default options
+optDataCamels = OrderedDict(
+ name='hydroDL.data.camels.DataframeCamels',
+ subset='All',
+ varT=camels.forcingLst,
+ varC=camels.attrLstSel,
+ target=['Streamflow'],
+ tRange=[19900101, 19950101],
+ doNorm=[True, True],
+ rmNan=[True, False],
+ basinNorm=True,
+ daObs=0,
+ damean=False,
+ davar='streamflow',
+ dameanopt=0,
+ lckernel=None,
+ fdcopt=False,
+ SAOpt=None,
+ addVar=None)
+# optDataGages = OrderedDict(
+# name='hydroDL.data.gages.DataframeGages',
+# subset='All',
+# varT=gages.forcingLst,
+# varL=gages.LanduseAttr,
+# varC=gages.attrLstSel,
+# target=['Streamflow'],
+# tRange=[19900101, 19950101],
+# doNorm=[True, True],
+# rmNan=[True, False],
+# daObs=0,
+# damean=False,
+# davar='streamflow',
+# dameanopt=0,
+# lckernel=None,
+# fdcopt=False,
+# includeLanduse=False,
+# includeWateruse=False)
+optTrainCamels = OrderedDict(miniBatch=[100, 200], nEpoch=100, saveEpoch=50, seed=None)
""" model options """
optLstm = OrderedDict(
name='hydroDL.model.rnn.CudnnLstmModel',
@@ -22,8 +59,61 @@
ny=1,
hiddenSize=256,
doReLU=True)
+optLstmClose = OrderedDict(
+ name='hydroDL.model.rnn.LstmCloseModel',
+ nx=len(optDataSMAP['varT']) + len(optDataSMAP['varC']),
+ ny=1,
+ hiddenSize=256,
+ doReLU=True)
+optCnn1dLstm = OrderedDict(
+ name='hydroDL.model.rnn.CNN1dLSTMInmodel',
+ nx=len(optDataSMAP['varT']) + len(optDataSMAP['varC']),
+ ny=1,
+ nobs=7,
+ hiddenSize=256,
+ # CNN kernel parameters
+ # Nkernel, Kernel Size, Stride
+ convNKS=[(10, 5, 1), (3, 3, 3), (2, 2, 1)],
+ doReLU=True,
+ poolOpt=None)
+optLstmCnn1d = OrderedDict(
+ name='hydroDL.model.cnn.LstmCnn1d',
+ nx=len(optDataSMAP['varT']) + len(optDataSMAP['varC']) + 1,
+ ny=1,
+ rho = 365*10,
+ # CNN kernel parameters
+ # Nkernel, Kernel Size, Stride
+ convNKSP=[(10, 5, 1), (3, 3, 3), (1, 2, 1), (1, 1, 1)],
+ doReLU=True,
+ poolOpt=None)
+optPretrain = OrderedDict(
+ name='hydroDL.model.rnn.CNN1dLSTMInmodel',
+ nx=len(optDataSMAP['varT']) + len(optDataSMAP['varC']),
+ ny=1,
+ nobs=7,
+ hiddenSize=256,
+ # CNN kernel parameters
+ # Nkernel, Kernel Size, Stride
+ convNKS=[(10, 5, 1), (3, 3, 3), (2, 2, 1)],
+ doReLU=True,
+ poolOpt=None)
+optInvLstm = OrderedDict(
+ name='hydroDL.model.rnn.CudnnInvLstmModel',
+ nx=len(optDataSMAP['varT']) + len(optDataSMAP['varC']),
+ ny=1,
+ hiddenSize=256,
+ ninv=4,
+ nfea=10,
+ hiddeninv=256,
+ doReLU=True)
+
optLossRMSE = OrderedDict(name='hydroDL.model.crit.RmseLoss', prior='gauss')
+optLossSigma = OrderedDict(name='hydroDL.model.crit.SigmaLoss', prior='gauss')
+optLossNSE = OrderedDict(name='hydroDL.model.crit.NSELosstest', prior='gauss')
+optLossMSE = OrderedDict(name='hydroDL.model.crit.MSELoss', prior='gauss')
+optLossTrend = OrderedDict(name='hydroDL.model.crit.ModifyTrend1', prior='gauss')
+optLossRMSECNN = OrderedDict(name='hydroDL.model.crit.RmseLossCNN', prior='gauss')
@@ -31,9 +121,18 @@ def update(opt, **kw):
for key in kw:
if key in opt:
try:
- opt[key] = type(opt[key])(kw[key])
+ if key in ['subset', 'daObs', 'poolOpt','seed', 'lckernel', 'SAOpt', 'addVar']:
+ opt[key] = kw[key]
+ else:
+ opt[key] = type(opt[key])(kw[key])
except ValueError:
print('skiped ' + key + ': wrong type')
else:
print('skiped ' + key + ': not in argument dict')
return opt
+
+
+def forceUpdate(opt, **kw):
+ for key in kw:
+ opt[key] = kw[key]
+ return opt
diff --git a/hydroDL/master/master.py b/hydroDL/master/master.py
index 51390e8..0ceab8f 100644
--- a/hydroDL/master/master.py
+++ b/hydroDL/master/master.py
@@ -6,7 +6,9 @@
from hydroDL import utils
import datetime as dt
import pandas as pd
-
+import random
+import torch
+import time
def wrapMaster(out, optData, optModel, optLoss, optTrain):
mDict = OrderedDict(
@@ -43,14 +45,19 @@ def loadModel(out, epoch=None):
def namePred(out, tRange, subset, epoch=None, doMC=False, suffix=None):
mDict = readMasterFile(out)
- target = mDict['data']['target']
+ if 'name' in mDict['data'].keys() and mDict['data']['name'] == 'hydroDL.data.camels.DataframeCamels':
+ target = ['Streamflow']
+ else:
+ target = mDict['data']['target']
if type(target) is not list:
target = [target]
nt = len(target)
lossName = mDict['loss']['name']
if epoch is None:
epoch = mDict['train']['nEpoch']
-
+ if type(subset) is list:
+ # if list, name as the number of subset list
+ subset = str(len(subset))
fileNameLst = list()
for k in range(nt):
testName = '_'.join(
@@ -61,6 +68,12 @@ def namePred(out, tRange, subset, epoch=None, doMC=False, suffix=None):
if lossName == 'hydroDL.model.crit.SigmaLoss':
fileName = '_'.join([testName, target[k], 'SigmaX'])
fileNameLst.append(fileName)
+ if doMC is not False:
+ mcFileNameLst = list()
+ for fileName in fileNameLst:
+ fileName = '_'.join([testName, target[k], 'SigmaMC'+str(doMC)])
+ mcFileNameLst.append(fileName)
+ fileNameLst = fileNameLst+mcFileNameLst
# sum up to file path list
filePathLst = list()
@@ -71,8 +84,58 @@ def namePred(out, tRange, subset, epoch=None, doMC=False, suffix=None):
filePathLst.append(filePath)
return filePathLst
+# def readPred(out, tRange, subset, epoch=None, doMC=False, suffix=None):
+# mDict = readMasterFile(out)
+# dataPred = np.ndarray([obs.shape[0], obs.shape[1], len(filePathLst)])
+# for k in range(len(filePathLst)):
+# filePath = filePathLst[k]
+# dataPred[:, :, k] = pd.read_csv(
+# filePath, dtype=np.float, header=None).values
+# isSigmaX = False
+# if mDict['loss']['name'] == 'hydroDL.model.crit.SigmaLoss':
+# isSigmaX = True
+# pred = dataPred[:, :, ::2]
+# sigmaX = dataPred[:, :, 1::2]
+# else:
+# pred = dataPred
+
+
+def mvobs(data, mvday, rmNan=True):
+ obslen = data.shape[1] - mvday + 1 # The length of training daily data
+ ngage = data.shape[0]
+ mvdata = np.full((ngage, obslen, 1), np.nan)
+ for ii in range(obslen):
+ tempdata = data[:, ii:ii+mvday, :]
+ tempmean = np.nanmean(tempdata, axis=1)
+ mvdata[:, ii, 0] = tempmean[:, 0]
+ if rmNan is True:
+ mvdata[np.where(np.isnan(mvdata))] = 0
+ return mvdata
+
+def calFDC(data):
+ # data = Ngrid * Nday
+ Ngrid, Nday = data.shape
+ FDC100 = np.full([Ngrid, 100], np.nan)
+ for ii in range(Ngrid):
+ tempdata0 = data[ii, :]
+ tempdata = tempdata0[~np.isnan(tempdata0)]
+ # deal with no data case for some gages
+ if len(tempdata)==0:
+ tempdata = np.full(Nday, 0)
+ # sort from large to small
+ temp_sort = np.sort(tempdata)[::-1]
+ # select 100 quantile points
+ Nlen = len(tempdata)
+ ind = (np.arange(100)/100*Nlen).astype(int)
+ FDCflow = temp_sort[ind]
+ if len(FDCflow) != 100:
+ raise Exception('unknown assimilation variable')
+ else:
+ FDC100[ii, :] = FDCflow
+
+ return FDC100
-def loadData(optData, readX=True, readY=True):
+def loadData(optData, readX=True, readY=True):
if eval(optData['name']) is hydroDL.data.dbCsv.DataframeCsv:
df = hydroDL.data.dbCsv.DataframeCsv(
rootDB=optData['rootDB'],
@@ -113,8 +176,193 @@ def loadData(optData, readX=True, readY=True):
else:
x = None
c = None
+ elif eval(optData['name']) is hydroDL.data.camels.DataframeCamels:
+ df = hydroDL.data.camels.DataframeCamels(
+ subset=optData['subset'], tRange=optData['tRange'])
+ x = df.getDataTs(
+ varLst=optData['varT'],
+ doNorm=optData['doNorm'][0],
+ rmNan=optData['rmNan'][0])
+ y = df.getDataObs(
+ doNorm=optData['doNorm'][1],
+ rmNan=optData['rmNan'][1],
+ basinnorm=optData['basinNorm'])
+ c = df.getDataConst(
+ varLst=optData['varC'],
+ doNorm=optData['doNorm'][0],
+ rmNan=optData['rmNan'][0],
+ SAOpt=optData['SAOpt'])
+ if 'addVar' in optData.keys():
+ addName = optData['addVar']
+ if addName == 'Lstm':
+ sac = df.getSAC(
+ basinnorm=optData['basinNorm'],
+ doNorm=optData['doNorm'][1],
+ rmNan=optData['rmNan'][0])
+ x = np.concatenate([x, sac], axis=2)
+ print('SAC output is used')
+ if addName == 'hourprecip':
+ hourp = df.getHour(
+ doNorm=optData['doNorm'][0],
+ rmNan=optData['rmNan'][0])
+ x = (x, hourp)
+ print('hourly precip is used')
+ if addName == 'SMAP':
+ smapinv = df.getSMAP()
+ x = (x, smapinv)
+ print('smap inv is used')
+ if addName == 'SMAPFDC':
+ smapdata = df.getCSV(doNorm=True, rmNan=False,
+ readRange=[20150401, 20200401])
+ smapdata = np.squeeze(smapdata) # dim Ngrid*Nday
+ smapinv = calFDC(smapdata)
+ x = (x, smapinv)
+ print('smap FDC inv is used')
+ if c.size == 0:
+ c = None
+ # # judge if do SA analysis to attributes
+ # if 'SAOpt' in optData.keys():
+ # if optData['SAOpt'] is not None:
+ # SAname, SAfac = optData['SAOpt']
+ # varList = optData['varC']
+ # # find the index of target constant
+ # indVar = varList.index(SAname)
+ # c[:, indVar] = c[:, indVar]*(1+SAfac)
+ # judge if need local calibration kernel
+ if 'lckernel' in optData.keys():
+ if optData['lckernel'] is not None:
+ hisRange = optData['lckernel'] # history record trange
+ df = hydroDL.data.camels.DataframeCamels(
+ subset=optData['subset'], tRange=hisRange)
+ if 'fdcopt' in optData.keys():
+ if optData['fdcopt'] is not False:
+ if type(optData['fdcopt']) is list:
+ # Use the FDC of specified gages
+ df = hydroDL.data.camels.DataframeCamels(
+ subset=optData['fdcopt'], tRange=hisRange)
+ # calculate FDC
+ dadata = df.getDataObs(
+ doNorm=optData['doNorm'][1], rmNan=False)
+ dadata = np.squeeze(dadata) # dim Ngrid*Nday
+ if 'dailymig' in optData.keys() and optData['dailymig'] is True:
+ dadata[np.where(np.isnan(dadata))] = 0
+ print('Daily time series was directly migrated')
+ else:
+ dadata = calFDC(dadata)
+ print('FDC was calculated and used!')
+ else:
+ dadata = df.getDataObs(
+ doNorm=optData['doNorm'][1], rmNan=True)
+ dadata = np.squeeze(dadata) # dim Ngrid*Nday
+ print('Local calibration kernel is used with raw data!')
+ else:
+ dadata = df.getDataObs(
+ doNorm=optData['doNorm'][1], rmNan=True)
+ dadata = np.squeeze(dadata) # dim Ngrid*Nday
+ print('Local calibration kernel is used with raw data!')
+ x = (x, dadata)
+ else:
+ print('Local calibration kernel is shut down!')
+
+ if type(optData['daObs']) is int:
+ ndaylst = [optData['daObs']]
+ elif type(optData['daObs']) is list:
+ ndaylst = optData['daObs']
+ else:
+ raise Exception('unknown datatype for daobs')
+
+ # judge if multiple day assimilation or if needing assimilation
+ if ndaylst[0] > 0 or len(ndaylst) > 1:
+ if optData['damean'] is False:
+ tRangePre = [19790101, 20150101] # largest trange
+ tLstPre = utils.time.tRange2Array(tRangePre)
+ df = hydroDL.data.camels.DataframeCamels(
+ subset=optData['subset'], tRange=tRangePre)
+ dadataPre = df.getDataObs(
+ doNorm=optData['doNorm'][1], rmNan=True)
+ dadata = np.full((x.shape[0], x.shape[1], len(ndaylst)), np.nan)
+ for ii in range(len(ndaylst)):
+ nday = ndaylst[ii]
+ if optData['damean'] is False:
+ sd = utils.time.t2dt(
+ optData['tRange'][0]) - dt.timedelta(days=nday)
+ ed = utils.time.t2dt(
+ optData['tRange'][1]) - dt.timedelta(days=nday)
+ timese = utils.time.tRange2Array([sd, ed])
+ C, ind1, ind2 = np.intersect1d(timese, tLstPre, return_indices=True)
+ if optData['davar'] == 'streamflow':
+ obs = dadataPre[:, ind2, :]
+ elif optData['davar'] == 'precipitation':
+ df = hydroDL.data.camels.DataframeCamels(
+ subset=optData['subset'], tRange=[sd, ed])
+ obs = df.getDataTs(
+ varLst=['prcp'], doNorm=optData['doNorm'][0], rmNan=True)
+ else:
+ raise Exception('unknown assimilation variable')
+
+ else:
+ if optData['dameanopt'] == 0: # previous moving avergae da
+ sd = utils.time.t2dt(
+ optData['tRange'][0]) - dt.timedelta(days=nday)
+ ed = utils.time.t2dt(
+ optData['tRange'][1]) - dt.timedelta(days=1)
+ df = hydroDL.data.camels.DataframeCamels(
+ subset=optData['subset'], tRange=[sd, ed])
+ if optData['davar'] == 'streamflow':
+ obsday = df.getDataObs(
+ doNorm=optData['doNorm'][1], rmNan=False)
+ elif optData['davar'] == 'precipitation':
+ obsday = df.getDataTs(
+ varLst=['prcp'], doNorm=optData['doNorm'][0], rmNan=False)
+ else:
+ raise Exception('unknown assimilation variable')
+ obs = mvobs(obsday, mvday=nday, rmNan=True)
+ # 1: regular mean DA for test temporialy; 2:add weight
+ elif optData['dameanopt'] > 0:
+ sd = utils.time.t2dt(
+ optData['tRange'][0]) - dt.timedelta(days=nday)
+ ed = utils.time.t2dt(
+ optData['tRange'][1]) - dt.timedelta(days=1)
+ Nint = int((ed - sd)/dt.timedelta(days=nday))
+ ed = sd + Nint*dt.timedelta(days=nday)
+ df = hydroDL.data.camels.DataframeCamels(
+ subset=optData['subset'], tRange=[sd, ed])
+ if optData['davar'] == 'streamflow':
+ obsday = df.getDataObs(
+ doNorm=optData['doNorm'][1], rmNan=False)
+ elif optData['davar'] == 'precipitation':
+ obsday = df.getDataTs(
+ varLst=['prcp'], doNorm=optData['doNorm'][0], rmNan=False)
+ else:
+ raise Exception('unknown assimilation variable')
+ obsday = np.reshape(
+ obsday, (obsday.shape[0], -1, nday))
+ # obsmean = np.nanmean(obsday, axis=2)
+ obsmean = obsday[:, :, -1] # test regular single observation
+ obsmean = np.tile(
+ obsmean, nday).reshape(-1, nday, Nint)
+ obs = np.transpose(obsmean, (0, 2, 1)).reshape(
+ obsday.shape[0], nday*Nint, 1)
+ endindex = x.shape[1]
+ obs = obs[:, 0:endindex, :]
+ obs[np.where(np.isnan(obs))] = 0
+ dadata[:, :, ii] = obs.squeeze()
+ x = (x, dadata)
+ # test DI(3)-A hypothesis
+ # x = np.concatenate((x, dadata[:, :, 0:3]), axis=2)
+ # if len(ndaylst) >3:
+ # x = (x, dadata[:, :, 3:])
+ # regular mean DA for test temporialy, add weight dimension
+ if optData['dameanopt'] == 2:
+ winput = (nday + 1 - np.arange(1, nday + 1)) / nday
+ winput = np.tile(winput, Nint)[0:endindex]
+ winput = np.tile(winput, (obsday.shape[0], 1))
+ winput = np.expand_dims(winput, axis=2)
+ x[0] = np.concatenate([x[0], winput], axis=2)
+
else:
raise Exception('unknown database')
+
return df, x, y, c
@@ -127,21 +375,80 @@ def train(mDict):
optLoss = mDict['loss']
optTrain = mDict['train']
+ # fix the random seed
+ if optTrain['seed'] is None:
+ # generate random seed
+ randomseed = int(np.random.uniform(low=0, high=1e6))
+ optTrain['seed'] = randomseed
+ print('random seed updated!')
+ else:
+ randomseed = optTrain['seed']
+
+ random.seed(randomseed)
+ torch.manual_seed(randomseed)
+ np.random.seed(randomseed)
+ torch.cuda.manual_seed(randomseed)
+ torch.backends.cudnn.deterministic = True
+ torch.backends.cudnn.benchmark = False
+
# data
df, x, y, c = loadData(optData)
- nx = x.shape[-1] + c.shape[-1]
+ # x: ngage*nday*nvar
+ # y: ngage*nday*nvar
+ # c: ngage*nvar
+ # temporal test, fill obs nan using LSTM forecast
+ # temp = x[:,:,-1, None]
+ # y[np.isnan(y)] = temp[np.isnan(y)]
+
+
+ if c is None:
+ if type(x) is tuple:
+ nx = x[0].shape[-1]
+ else:
+ nx = x.shape[-1]
+ else:
+ if type(x) is tuple:
+ nx = x[0].shape[-1] + c.shape[-1]
+ else:
+ nx = x.shape[-1] + c.shape[-1]
ny = y.shape[-1]
# loss
- if eval(optLoss['name']) is hydroDL.model.crit.RmseLoss:
+ if eval(optLoss['name']) is hydroDL.model.crit.SigmaLoss:
+ lossFun = hydroDL.model.crit.SigmaLoss(prior=optLoss['prior'])
+ optModel['ny'] = ny * 2
+ elif eval(optLoss['name']) is hydroDL.model.crit.RmseLoss:
lossFun = hydroDL.model.crit.RmseLoss()
optModel['ny'] = ny
+ elif eval(optLoss['name']) is hydroDL.model.crit.NSELoss:
+ lossFun = hydroDL.model.crit.NSELoss()
+ optModel['ny'] = ny
+ elif eval(optLoss['name']) is hydroDL.model.crit.NSELosstest:
+ lossFun = hydroDL.model.crit.NSELosstest()
+ optModel['ny'] = ny
+ elif eval(optLoss['name']) is hydroDL.model.crit.MSELoss:
+ lossFun = hydroDL.model.crit.MSELoss()
+ optModel['ny'] = ny
+ elif eval(optLoss['name']) is hydroDL.model.crit.RmseLossCNN:
+ lossFun = hydroDL.model.crit.RmseLossCNN()
+ optModel['ny'] = ny
+ elif eval(optLoss['name']) is hydroDL.model.crit.ModifyTrend1:
+ lossFun = hydroDL.model.crit.ModifyTrend1()
+ optModel['ny'] = ny
# model
if optModel['nx'] != nx:
print('updated nx by input data')
optModel['nx'] = nx
if eval(optModel['name']) is hydroDL.model.rnn.CudnnLstmModel:
+ if type(x) is tuple:
+ x = np.concatenate([x[0], x[1]], axis=2)
+ if c is None:
+ nx = x.shape[-1]
+ else:
+ nx = x.shape[-1] + c.shape[-1]
+ optModel['nx'] = nx
+ print('Concatenate input and obs, update nx by obs')
model = hydroDL.model.rnn.CudnnLstmModel(
nx=optModel['nx'],
ny=optModel['ny'],
@@ -151,7 +458,143 @@ def train(mDict):
nx=optModel['nx'],
ny=optModel['ny'],
hiddenSize=optModel['hiddenSize'])
-
+ elif eval(optModel['name']) is hydroDL.model.rnn.LstmCloseModel:
+ model = hydroDL.model.rnn.LstmCloseModel(
+ nx=optModel['nx'],
+ ny=optModel['ny'],
+ hiddenSize=optModel['hiddenSize'],
+ fillObs=True)
+ elif eval(optModel['name']) is hydroDL.model.rnn.AnnModel:
+ model = hydroDL.model.rnn.AnnCloseModel(
+ nx=optModel['nx'],
+ ny=optModel['ny'],
+ hiddenSize=optModel['hiddenSize'])
+ elif eval(optModel['name']) is hydroDL.model.rnn.AnnCloseModel:
+ model = hydroDL.model.rnn.AnnCloseModel(
+ nx=optModel['nx'],
+ ny=optModel['ny'],
+ hiddenSize=optModel['hiddenSize'],
+ fillObs=True)
+ elif eval(optModel['name']) is hydroDL.model.cnn.LstmCnn1d:
+ convpara = optModel['convNKSP']
+ model = hydroDL.model.cnn.LstmCnn1d(
+ nx=optModel['nx'],
+ ny=optModel['ny'],
+ rho = optModel['rho'],
+ nkernel=convpara[0],
+ kernelSize=convpara[1],
+ stride=convpara[2],
+ padding = convpara[3])
+ elif eval(optModel['name']) is hydroDL.model.rnn.CNN1dLSTMmodel:
+ daobsOption = optData['daObs']
+ if type(daobsOption) is list:
+ if len(daobsOption)-3 >= 7:
+ # using 1dcnn only when number of obs larger than 7
+ optModel['nobs'] = len(daobsOption)
+ convpara = optModel['convNKS']
+ model = hydroDL.model.rnn.CNN1dLSTMmodel(
+ nx=optModel['nx'],
+ ny=optModel['ny'],
+ nobs=optModel['nobs']-3,
+ hiddenSize=optModel['hiddenSize'],
+ nkernel=convpara[0],
+ kernelSize=convpara[1],
+ stride=convpara[2],
+ poolOpt=optModel['poolOpt'])
+ print('CNN1d Kernel is used!')
+ else:
+ if type(x) is tuple:
+ x = np.concatenate([x[0], x[1]], axis=2)
+ nx = x.shape[-1] + c.shape[-1]
+ optModel['nx'] = nx
+ print('Concatenate input and obs, update nx by obs')
+ model = hydroDL.model.rnn.CudnnLstmModel(
+ nx=optModel['nx'],
+ ny=optModel['ny'],
+ hiddenSize=optModel['hiddenSize'])
+ optModel['name'] = 'hydroDL.model.rnn.CudnnLstmModel'
+ print('Too few obserservations, not using cnn kernel')
+ else:
+ raise Exception('CNN kernel used but daobs option is not obs list')
+ elif eval(optModel['name']) is hydroDL.model.rnn.CNN1dLSTMInmodel:
+ # daobsOption = optData['daObs']
+ daobsOption = list(range(24))
+ if type(daobsOption) is list:
+ if len(daobsOption)-3 >= 7:
+ # using 1dcnn only when number of obs larger than 7
+ optModel['nobs'] = len(daobsOption)
+ convpara = optModel['convNKS']
+ model = hydroDL.model.rnn.CNN1dLSTMInmodel(
+ nx=optModel['nx'],
+ ny=optModel['ny'],
+ # nobs=optModel['nobs']-3,
+ nobs=24, # temporary test
+ hiddenSize=optModel['hiddenSize'],
+ nkernel=convpara[0],
+ kernelSize=convpara[1],
+ stride=convpara[2],
+ poolOpt=optModel['poolOpt'])
+ print('CNN1d Kernel is used!')
+ else:
+ if type(x) is tuple:
+ x = np.concatenate([x[0], x[1]], axis=2)
+ nx = x.shape[-1] + c.shape[-1]
+ optModel['nx'] = nx
+ print('Concatenate input and obs, update nx by obs')
+ model = hydroDL.model.rnn.CudnnLstmModel(
+ nx=optModel['nx'],
+ ny=optModel['ny'],
+ hiddenSize=optModel['hiddenSize'])
+ optModel['name'] = 'hydroDL.model.rnn.CudnnLstmModel'
+ print('Too few obserservations, not using cnn kernel')
+ else:
+ raise Exception('CNN kernel used but daobs option is not obs list')
+ elif eval(optModel['name']) is hydroDL.model.rnn.CNN1dLCmodel:
+ # LCrange = optData['lckernel']
+ # tLCLst = utils.time.tRange2Array(LCrange)
+ if len(x[1].shape)==2:
+ # for LC-FDC
+ optModel['nobs'] = x[1].shape[-1]
+ elif len(x[1].shape)==3:
+ # for LC-SMAP--get time step
+ optModel['nobs'] = x[1].shape[1]
+ convpara = optModel['convNKS']
+ model = hydroDL.model.rnn.CNN1dLCmodel(
+ nx=optModel['nx'],
+ ny=optModel['ny'],
+ nobs=optModel['nobs'],
+ hiddenSize=optModel['hiddenSize'],
+ nkernel=convpara[0],
+ kernelSize=convpara[1],
+ stride=convpara[2],
+ poolOpt=optModel['poolOpt'])
+ print('CNN1d Local calibartion Kernel is used!')
+ elif eval(optModel['name']) is hydroDL.model.rnn.CNN1dLCInmodel:
+ LCrange = optData['lckernel']
+ tLCLst = utils.time.tRange2Array(LCrange)
+ optModel['nobs'] = x[1].shape[-1]
+ convpara = optModel['convNKS']
+ model = hydroDL.model.rnn.CNN1dLCInmodel(
+ nx=optModel['nx'],
+ ny=optModel['ny'],
+ nobs=optModel['nobs'],
+ hiddenSize=optModel['hiddenSize'],
+ nkernel=convpara[0],
+ kernelSize=convpara[1],
+ stride=convpara[2],
+ poolOpt=optModel['poolOpt'])
+ print('CNN1d Local calibartion Kernel is used!')
+ elif eval(optModel['name']) is hydroDL.model.rnn.CudnnInvLstmModel:
+ # optModel['ninv'] = x[1].shape[-1]
+ optModel['ninv'] = x[1].shape[-1]+c.shape[-1] # Test the inv using attributes
+ model = hydroDL.model.rnn.CudnnInvLstmModel(
+ nx=optModel['nx'],
+ ny=optModel['ny'],
+ hiddenSize=optModel['hiddenSize'],
+ ninv = optModel['ninv'],
+ nfea = optModel['nfea'],
+ hiddeninv = optModel['hiddeninv'])
+ print('LSTMInv model is used!')
# train
if optTrain['saveEpoch'] > optTrain['nEpoch']:
optTrain['saveEpoch'] = optTrain['nEpoch']
@@ -178,31 +621,91 @@ def test(out,
suffix=None,
batchSize=None,
epoch=None,
- reTest=False):
+ reTest=False,
+ basinnorm=True,
+ savePath=None,
+ SAOpt=None,
+ FDCgage=None,
+ dailymig=False,
+ closedLoop=None):
mDict = readMasterFile(out)
optData = mDict['data']
optData['subset'] = subset
optData['tRange'] = tRange
-
+ optData['basinNorm'] = basinnorm
+ if 'damean' not in optData.keys():
+ optData['damean'] = False
+ if 'dameanopt' not in optData.keys():
+ optData['dameanopt'] = 0
+ if 'davar' not in optData.keys():
+ optData['davar'] = 'streamflow'
+ elif type(optData['davar']) is list:
+ optData['davar'] = "".join(optData['davar'])
+ if SAOpt is not None:
+ optData['SAOpt'] = SAOpt
+ elif 'SAOpt' not in optData.keys():
+ optData['SAOpt'] = None
+ if (FDCgage is not None) and (type(FDCgage) is list):
+ # Specify to use the FDC of these gages
+ optData['fdcopt'] = FDCgage
+ optData['dailymig'] = dailymig
# generate file names and run model
- filePathLst = namePred(
- out, tRange, subset, epoch=epoch, doMC=doMC, suffix=suffix)
+ if savePath is None:
+ # default file path
+ filePathLst = namePred(
+ out, tRange, subset, epoch=epoch, doMC=doMC, suffix=suffix)
+ else:
+ if type(savePath) is not list:
+ savePath = [savePath]
+ filePathLst = savePath
print('output files:', filePathLst)
for filePath in filePathLst:
if not os.path.isfile(filePath):
reTest = True
if reTest is True:
print('Runing new results')
- df, x, obs, c = loadData(optData)
- model = loadModel(out, epoch=epoch)
- hydroDL.model.train.testModel(
- model, x, c, batchSize=batchSize, filePathLst=filePathLst)
+ if closedLoop is not None:
+ # closed loop experiments
+ df, x, obs, c = loadData(optData)
+ nLoop = closedLoop + 10
+ # create Nan observations for closedLoop forecast
+ initobs = x[1] # integrated obs
+ initfor = x[0]
+ lenObs = initobs.shape[1]
+ fixIndex = np.arange(0, lenObs, closedLoop)
+ firstobs = np.full(initobs.shape, 0.0)
+ firstobs[:, fixIndex, :] = initobs[:, fixIndex, :]
+ x = (initfor, firstobs) # first integrated observations
+ model = loadModel(out, epoch=epoch)
+ tempPath = filePathLst[0][:-4] # remove '.csv'
+ filePathLst = list()
+ for iloop in range(0, nLoop):
+ # model = loadModel(out, epoch=epoch)
+ tempfilePath = tempPath + '_' + 'NLOOP' + str(closedLoop) + '_' + 'loop' + str(iloop) + '.csv'
+ filePathLst.append(tempfilePath)
+ hydroDL.model.train.testModel(
+ model, x, c, batchSize=batchSize, filePathLst=[tempfilePath], doMC=doMC)
+ # read predicted results
+ dataPred = pd.read_csv(tempfilePath, dtype=np.float, header=None).values
+ updateData = np.full(initobs.shape, 0.0)
+ updateData[:, 1:, 0] = dataPred[:, 0:-1]
+ updateData[:, fixIndex, :] = initobs[:, fixIndex, :]
+ x = (initfor, updateData) # update the integrated observations
+
+ else:
+ df, x, obs, c = loadData(optData)
+ model = loadModel(out, epoch=epoch)
+ t0 = time.time()
+ hydroDL.model.train.testModel(
+ model, x, c, batchSize=batchSize, filePathLst=filePathLst, doMC=doMC)
+ print('testing time is {}'.format(time.time()-t0))
+
else:
print('Loaded previous results')
df, x, obs, c = loadData(optData, readX=False)
- # load previous result
+ # load previous result - readPred
mDict = readMasterFile(out)
dataPred = np.ndarray([obs.shape[0], obs.shape[1], len(filePathLst)])
for k in range(len(filePathLst)):
@@ -210,7 +713,7 @@ def test(out,
dataPred[:, :, k] = pd.read_csv(
filePath, dtype=np.float, header=None).values
isSigmaX = False
- if mDict['loss']['name'] == 'hydroDL.model.crit.SigmaLoss':
+ if mDict['loss']['name'] == 'hydroDL.model.crit.SigmaLoss' or doMC is not False:
isSigmaX = True
pred = dataPred[:, :, ::2]
sigmaX = dataPred[:, :, 1::2]
@@ -241,10 +744,26 @@ def test(out,
fieldName=target[k],
fromRaw=False)
elif eval(optData['name']) is hydroDL.data.camels.DataframeCamels:
+ nvar = pred.shape[-1]
+ targetstr = []
+ for ii in range(nvar):
+ targetstr.append('usgsFlow')
+ if nvar != len(targetstr):
+ raise Exception('wrong target variable number')
pred = hydroDL.data.camels.transNorm(
- pred, 'usgsFlow', toNorm=False)
+ pred, targetstr, toNorm=False)
obs = hydroDL.data.camels.transNorm(obs, 'usgsFlow', toNorm=False)
+ if basinnorm is True:
+ if type(subset) is list:
+ gageid = np.array(subset)
+ elif type(subset) is str:
+ gageid = subset
+ for ii in range(nvar):
+ pred[:,:,ii] = hydroDL.data.camels.basinNorm(
+ pred[:,:,ii], gageid=gageid, toNorm=False)
+ obs = hydroDL.data.camels.basinNorm(
+ obs, gageid=gageid, toNorm=False)
if isSigmaX is True:
- return df, pred, obs, sigmaX
+ return df, pred, obs, sigmaX
else:
- return df, pred, obs
+ return df, pred, obs #pred: ngage*nday*nvar
diff --git a/hydroDL/master/option.py b/hydroDL/master/option.py
deleted file mode 100644
index b96a56c..0000000
--- a/hydroDL/master/option.py
+++ /dev/null
@@ -1,55 +0,0 @@
-import hydroDL
-from collections import OrderedDict
-from hydroDL.data import dbCsv
-import json
-
-
-def saveOpt(opt, fileName):
- if not fileName.endswith('.json'):
- fileName = fileName + '.json'
- with open(fileName, 'w') as fp:
- json.dump(opt, fp, indent=4)
-
-
-def loadOpt(fileName):
- if not fileName.endswith('.json'):
- fileName = fileName + '.json'
- with open(fileName, 'r') as fp:
- opt = json.load(fp, object_pairs_hook=OrderedDict)
- return opt
-
-
-def updateOpt(opt, **kw):
- for key in kw:
- if key in opt:
- try:
- opt[key] = type(opt[key])(kw[key])
- except ValueError:
- print('skiped ' + key + ': wrong type')
- else:
- print('skiped ' + key + ': not in argument dict')
- return opt
-
-
-def readDataOpt(optData, readX=True, readY=True):
- if eval(optData['name']) is hydroDL.data.dbCsv.DataframeCsv:
- df = hydroDL.data.dbCsv.DataframeCsv(
- rootDB=optData['path'],
- subsetName=optData['subset'],
- tRange=optData['dateRange'])
- if readX is True:
- x = df.getData(
- varT=optData['varT'],
- varC=optData['varC'],
- doNorm=optData['doNorm'][0],
- rmNan=optData['rmNan'][0])
- else:
- x = None
- if readY is True:
- y = df.getData(
- varT=optData['target'],
- doNorm=optData['doNorm'][1],
- rmNan=optData['rmNan'][1])
- else:
- y = None
- return (x, y)
diff --git a/hydroDL/master/screen.py b/hydroDL/master/screen.py
index f903a29..b3dd423 100644
--- a/hydroDL/master/screen.py
+++ b/hydroDL/master/screen.py
@@ -26,6 +26,18 @@ def runTrain(masterDict, *, screen='test', cudaID):
cmd = 'CUDA_VISIBLE_DEVICES={} screen -dmS {} python {} -F {} -M {}'.format(
cudaID, screen, codePath, 'train', mFile)
+ # if screen is None:
+ # #add some debugs Dapeng
+ # parser = argparse.ArgumentParser()
+ # parser.add_argument('-F', dest='func', type=str, default='train')
+ # parser.add_argument('-M', dest='mFile', type=str, default=mFile)
+ # args = parser.parse_args()
+ # if args.func == 'train':
+ # mDict = master.readMasterFile(args.mFile)
+ # master.train(mDict)
+ # # out = mDict['out']
+ # # email.sendEmail(subject='Training Done', text=out)
+
print(cmd)
os.system(cmd)
@@ -38,5 +50,5 @@ def runTrain(masterDict, *, screen='test', cudaID):
if args.func == 'train':
mDict = master.readMasterFile(args.mFile)
master.train(mDict)
- out = mDict['out']
- email.sendEmail(subject='Training Done', text=out)
+ # out = mDict['out']
+ # email.sendEmail(subject='Training Done', text=out)
diff --git a/hydroDL/model/cnn.py b/hydroDL/model/cnn.py
new file mode 100644
index 0000000..8638c2e
--- /dev/null
+++ b/hydroDL/model/cnn.py
@@ -0,0 +1,116 @@
+import torch
+import torch.nn as nn
+import torch.nn.functional as F
+
+
+class Cnn1d(nn.Module):
+ def __init__(self, *, nx, nt, cnnSize=32, cp1=(64, 3, 2), cp2=(128, 5, 2)):
+ super(Cnn1d, self).__init__()
+ self.nx = nx
+ self.nt = nt
+ cOut, f, p = cp1
+ self.conv1 = nn.Conv1d(nx, cOut, f)
+ self.pool1 = nn.MaxPool1d(p)
+ lTmp = int(calConvSize(nt, f, 0, 1, 1) / p)
+
+ cIn = cOut
+ cOut, f, p = cp2
+ self.conv2 = nn.Conv1d(cIn, cOut, f)
+ self.pool2 = nn.MaxPool1d(p)
+ lTmp = int(calConvSize(lTmp, f, 0, 1, 1) / p)
+
+ self.flatLength = int(cOut * lTmp)
+ self.fc1 = nn.Linear(self.flatLength, cnnSize)
+ self.fc2 = nn.Linear(cnnSize, cnnSize)
+
+ def forward(self, x):
+ # x- [nt,ngrid,nx]
+ x1 = x
+ x1 = x1.permute(1, 2, 0)
+ x1 = self.pool1(F.relu(self.conv1(x1)))
+ x1 = self.pool2(F.relu(self.conv2(x1)))
+ x1 = x1.view(-1, self.flatLength)
+ x1 = F.relu(self.fc1(x1))
+ x1 = self.fc2(x1)
+
+ return x1
+
+class CNN1dkernel(torch.nn.Module):
+ def __init__(self,
+ *,
+ ninchannel=1,
+ nkernel=3,
+ kernelSize=3,
+ stride=1,
+ padding=0):
+ super(CNN1dkernel, self).__init__()
+ self.cnn1d = torch.nn.Conv1d(
+ in_channels=ninchannel,
+ out_channels=nkernel,
+ kernel_size=kernelSize,
+ padding=padding,
+ stride=stride,
+ )
+
+ def forward(self, x):
+ output = F.relu(self.cnn1d(x))
+ # output = self.cnn1d(x)
+ return output
+
+class LstmCnn1d(torch.nn.Module):
+ # Dense layer > reduce dim > dense
+ def __init__(self, *, nx, ny, rho, nkernel=(10,5), kernelSize=(3,3), stride=(2,1), padding=(1,1),
+ dr=0.5, poolOpt=None):
+ # two convolutional layer
+ super(LstmCnn1d, self).__init__()
+ self.nx = nx
+ self.ny = ny
+ self.rho = rho
+ nlayer = len(nkernel)
+ self.features = nn.Sequential()
+ ninchan = nx
+ Lout = rho
+ for ii in range(nlayer):
+ # First layer: no dimension reduction
+ ConvLayer = CNN1dkernel(
+ ninchannel=ninchan, nkernel=nkernel[ii], kernelSize=kernelSize[ii],
+ stride=stride[ii], padding=padding[ii])
+ self.features.add_module('CnnLayer%d' % (ii + 1), ConvLayer)
+ ninchan = nkernel[ii]
+ Lout = calConvSize(lin=Lout, kernel=kernelSize[ii], stride=stride[ii])
+ if poolOpt is not None:
+ self.features.add_module('Pooling%d' % (ii + 1), nn.MaxPool1d(poolOpt[ii]))
+ Lout = calPoolSize(lin=Lout, kernel=poolOpt[ii])
+ self.Ncnnout = int(Lout*nkernel[-1]) # total CNN feature number after convolution
+
+
+ def forward(self, x, doDropMC=False):
+ out = self.features(x)
+ # # z0 = (ntime*ngrid) * nkernel * sizeafterconv
+ # z0 = z0.view(nt, ngrid, self.Ncnnout)
+ # x0 = torch.cat((x, z0), dim=2)
+ # x0 = F.relu(self.linearIn(x0))
+ # outLSTM, (hn, cn) = self.lstm(x0, doDropMC=doDropMC)
+ # out = self.linearOut(outLSTM)
+ # # out = rho/time * batchsize * Ntargetvar
+ return out
+
+def calConvSize(lin, kernel, stride, padding=0, dilation=1):
+ lout = (lin + 2 * padding - dilation * (kernel - 1) - 1) / stride + 1
+ return int(lout)
+
+def calPoolSize(lin, kernel, stride=None, padding=0, dilation=1):
+ if stride is None:
+ stride = kernel
+ lout = (lin + 2 * padding - dilation * (kernel - 1) - 1) / stride + 1
+ return int(lout)
+
+def calFinalsize1d(nobs, noutk, ksize, stride, pool):
+ nlayer = len(ksize)
+ Lout = nobs
+ for ii in range(nlayer):
+ Lout = calConvSize(lin=Lout, kernel=ksize[ii], stride=stride[ii])
+ if pool is not None:
+ Lout = calPoolSize(lin=Lout, kernel=pool[ii])
+ Ncnnout = int(Lout * noutk) # total CNN feature number after convolution
+ return Ncnnout
\ No newline at end of file
diff --git a/hydroDL/model/crit.py b/hydroDL/model/crit.py
index 785ad24..23ddb4c 100644
--- a/hydroDL/model/crit.py
+++ b/hydroDL/model/crit.py
@@ -1,4 +1,6 @@
import torch
+import numpy as np
+import math
class SigmaLoss(torch.nn.Module):
@@ -41,11 +43,408 @@ def forward(self, output, target):
ny = target.shape[2]
loss = 0
for k in range(ny):
+ p0 = output[:, :, k]
+ t0 = target[:, :, k]
+ mask = t0 == t0
+ p = p0[mask]
+ t = t0[mask]
+ temp = torch.sqrt(((p - t)**2).mean())
+ loss = loss + temp
+ return loss
+
+class RmseLossCNN(torch.nn.Module):
+ def __init__(self):
+ super(RmseLossCNN, self).__init__()
+
+ def forward(self, output, target):
+ # output = ngrid * nvar * ntime
+ ny = target.shape[1]
+ loss = 0
+ for k in range(ny):
+ p0 = output[:, k, :]
+ t0 = target[:, k, :]
+ mask = t0 == t0
+ p = p0[mask]
+ t = t0[mask]
+ temp = torch.sqrt(((p - t)**2).mean())
+ loss = loss + temp
+ return loss
+
+class RmseLossANN(torch.nn.Module):
+ def __init__(self, get_length=False):
+ super(RmseLossANN, self).__init__()
+ self.ind = get_length
+
+ def forward(self, output, target):
+ if len(output.shape) == 2:
+ p0 = output[:, 0]
+ t0 = target[:, 0]
+ else:
p0 = output[:, :, 0]
t0 = target[:, :, 0]
+ mask = t0 == t0
+ p = p0[mask]
+ t = t0[mask]
+ loss = torch.sqrt(((p - t)**2).mean())
+ if self.ind is False:
+ return loss
+ else:
+ Nday = p.shape[0]
+ return loss, Nday
+
+class ubRmseLoss(torch.nn.Module):
+ def __init__(self):
+ super(ubRmseLoss, self).__init__()
+
+ def forward(self, output, target):
+ ny = target.shape[2]
+ loss = 0
+ for k in range(ny):
+ p0 = output[:, :, k]
+ t0 = target[:, :, k]
+ mask = t0 == t0
+ p = p0[mask]
+ t = t0[mask]
+ pmean = p.mean()
+ tmean = t.mean()
+ p_ub = p-pmean
+ t_ub = t-tmean
+ temp = torch.sqrt(((p_ub - t_ub)**2).mean())
+ loss = loss + temp
+ return loss
+
+class MSELoss(torch.nn.Module):
+ def __init__(self):
+ super(MSELoss, self).__init__()
+
+ def forward(self, output, target):
+ ny = target.shape[2]
+ loss = 0
+ for k in range(ny):
+ p0 = output[:, :, k]
+ t0 = target[:, :, k]
mask = t0 == t0
p = p0[mask]
t = t0[mask]
+ temp = ((p - t)**2).mean()
+ loss = loss + temp
+ return loss
+
+class NSELoss(torch.nn.Module):
+ def __init__(self):
+ super(NSELoss, self).__init__()
+
+ def forward(self, output, target):
+ Ngage = target.shape[1]
+ losssum = 0
+ nsample = 0
+ for ii in range(Ngage):
+ p0 = output[:, ii, 0]
+ t0 = target[:, ii, 0]
+ mask = t0 == t0
+ if len(mask[mask==True])>0:
+ p = p0[mask]
+ t = t0[mask]
+ tmean = t.mean()
+ SST = torch.sum((t - tmean) ** 2)
+ if SST != 0:
+ SSRes = torch.sum((t - p) ** 2)
+ temp = 1 - SSRes / SST
+ losssum = losssum + temp
+ nsample = nsample +1
+ # minimize the opposite average NSE
+ loss = -(losssum/nsample)
+ return loss
+
+class NSELosstest(torch.nn.Module):
+ # Same as Fredrick 2019
+ def __init__(self):
+ super(NSELosstest, self).__init__()
+
+ def forward(self, output, target):
+ Ngage = target.shape[1]
+ losssum = 0
+ nsample = 0
+ for ii in range(Ngage):
+ p0 = output[:, ii, 0]
+ t0 = target[:, ii, 0]
+ mask = t0 == t0
+ if len(mask[mask==True])>0:
+ p = p0[mask]
+ t = t0[mask]
+ tmean = t.mean()
+ SST = torch.sum((t - tmean) ** 2)
+ SSRes = torch.sum((t - p) ** 2)
+ temp = SSRes / ((torch.sqrt(SST)+0.1)**2)
+ losssum = losssum + temp
+ nsample = nsample +1
+ loss = losssum/nsample
+ return loss
+
+
+class TrendLoss(torch.nn.Module):
+ # Add the trend part to the loss
+ def __init__(self):
+ super(TrendLoss, self).__init__()
+
+ def getSlope(self, x):
+ idx = 0
+ n = len(x)
+ d = torch.ones(int(n * (n - 1) / 2))
+
+ for i in range(n - 1):
+ j = torch.arange(start=i + 1, end=n)
+ d[idx: idx + len(j)] = (x[j] - x[i]) / (j - i).type(torch.float)
+ idx = idx + len(j)
+
+ return torch.median(d)
+
+ def forward(self, output, target, PercentLst=[100, 98, 50, 30, 2]):
+ # output, target: rho/time * Batchsize * Ntraget_var
+ ny = target.shape[2]
+ nt = target.shape[0]
+ ngage = target.shape[1]
+ loss = 0
+ for k in range(ny):
+ # loop for variable
+ p0 = output[:, :, k]
+ t0 = target[:, :, k]
+ mask = t0 == t0
+ p = p0[mask]
+ t = t0[mask]
+ # first part loss, regular RMSE
temp = torch.sqrt(((p - t)**2).mean())
loss = loss + temp
+ temptrendloss = 0
+ nsample = 0
+ for ig in range(ngage):
+ # loop for basins
+ pgage0 = p0[:, ig].reshape(-1, 365)
+ tgage0 = t0[:, ig].reshape(-1, 365)
+ gBool = np.zeros(tgage0.shape[0]).astype(int)
+ pgageM = torch.zeros(tgage0.shape[0])
+ pgageQ = torch.zeros(tgage0.shape[0], len(PercentLst))
+ tgageM = torch.zeros(tgage0.shape[0])
+ tgageQ = torch.zeros(tgage0.shape[0], len(PercentLst))
+ for ii in range(tgage0.shape[0]):
+ pgage = pgage0[ii, :]
+ tgage = tgage0[ii, :]
+ maskg = tgage == tgage
+ # quality control
+ if maskg.sum() > (1-2/12)*365:
+ gBool[ii] = 1
+ pgage = pgage[maskg]
+ tgage = tgage[maskg]
+ pgageM[ii] = pgage.mean()
+ tgageM[ii] = tgage.mean()
+ for ip in range(len(PercentLst)):
+ k = math.ceil(PercentLst[ip] / 100 * 365)
+ # pgageQ[ii, ip] = torch.kthvalue(pgage, k)[0]
+ # tgageQ[ii, ip] = torch.kthvalue(tgage, k)[0]
+ pgageQ[ii, ip] = torch.sort(pgage)[0][k-1]
+ tgageQ[ii, ip] = torch.sort(tgage)[0][k-1]
+ # Quality control
+ if gBool.sum()>6:
+ nsample = nsample + 1
+ pgageM = pgageM[gBool]
+ tgageM = tgageM[gBool]
+ # mean annual trend loss
+ temptrendloss = temptrendloss + (self.getSlope(tgageM)-self.getSlope(pgageM))**2
+ pgageQ = pgageQ[gBool, :]
+ tgageQ = tgageQ[gBool, :]
+ # quantile trend loss
+ for ii in range(tgageQ.shape[1]):
+ temptrendloss = temptrendloss + (self.getSlope(tgageQ[:, ii])-self.getSlope(pgageQ[:, ii]))**2
+
+ loss = loss + temptrendloss/nsample
+
return loss
+
+
+class ModifyTrend(torch.nn.Module):
+ # Add the trend part to the loss
+ def __init__(self):
+ super(ModifyTrend, self).__init__()
+
+ def getSlope(self, x):
+ nyear, ngage = x.shape
+ # define difference matirx
+ x = x.transpose(0,1)
+ xtemp = x.repeat(1, nyear)
+ xi = xtemp.reshape([ngage, nyear, nyear])
+ xj = xi.transpose(1,2)
+ # define i,j matrix
+ im = torch.arange(nyear).repeat(nyear).reshape(nyear,nyear).type(torch.float)
+ im = im.unsqueeze(0).repeat([ngage, 1, 1])
+ jm = im.transpose(1,2)
+ delta = 1.0/(im - jm)
+ delta = delta.cuda()
+ # calculate the slope matrix
+ slopeMat = (xi - xj)*delta
+ rid, cid = np.triu_indices(nyear, k=1)
+ slope = slopeMat[:, rid, cid]
+ senslope = torch.median(slope, dim=-1)[0]
+
+ return senslope
+
+
+ def forward(self, output, target, PercentLst=[-1]):
+ # output, target: rho/time * Batchsize * Ntraget_var
+ # PercentLst = [100, 98, 50, 30, 2, -1]
+ ny = target.shape[2]
+ nt = target.shape[0]
+ ngage = target.shape[1]
+ # loop for variable
+ p0 = output[:, :, 0]
+ t0 = target[:, :, 0]
+ mask = t0 == t0
+ p = p0[mask]
+ t = t0[mask]
+ # first part loss, regular RMSE
+ # loss = torch.sqrt(((p - t)**2).mean())
+ # loss = ((p - t) ** 2).mean()
+ loss = 0
+ temptrendloss = 0
+ # second loss: adding trend
+ p1 = p0.reshape(-1, 365, ngage)
+ t1 = t0.reshape(-1, 365, ngage)
+ for ip in range(len(PercentLst)):
+ k = math.ceil(PercentLst[ip] / 100 * 365)
+ # pQ = torch.kthvalue(p1, k, dim=1)[0]
+ # tQ = torch.kthvalue(t1, k, dim=1)[0]
+ # output: dim=Year*gage
+ if PercentLst[ip]<0:
+ pQ = torch.mean(p1, dim=1)
+ tQ = torch.mean(t1, dim=1)
+ else:
+ pQ = torch.sort(p1, dim=1)[0][:, k - 1, :]
+ tQ = torch.sort(t1, dim=1)[0][:, k - 1, :]
+ # temptrendloss = temptrendloss + ((self.getSlope(pQ) - self.getSlope(tQ)) ** 2).mean()
+ temptrendloss = temptrendloss + ((pQ - tQ) ** 2).mean()
+ loss = loss + temptrendloss
+
+ return loss
+
+
+class ModifyTrend1(torch.nn.Module):
+ # Add the trend part to the loss
+ def __init__(self):
+ super(ModifyTrend1, self).__init__()
+
+ def getM(self, n):
+ M = np.zeros([n**2, n])
+ s0 = np.zeros([n**2, 1])
+ for j in range (n):
+ for i in range(n):
+ k = j*n+i
+ if i 0 and (doDropMC is True or self.training is True):
+
+ def forward(self, input, hx=None, cx=None, doDropMC=False, dropoutFalse=False):
+ # dropoutFalse: it will ensure doDrop is false, unless doDropMC is true
+ if dropoutFalse and (not doDropMC):
+ doDrop = False
+ elif self.dr > 0 and (doDropMC is True or self.training is True):
doDrop = True
else:
doDrop = False
@@ -291,7 +298,7 @@ def forward(self, input, hx=None, cx=None, doDropMC=False):
1, batchSize, self.hiddenSize, requires_grad=False)
# cuDNN backend - disabled flat weight
- handle = torch.backends.cudnn.get_handle()
+ # handle = torch.backends.cudnn.get_handle()
if doDrop is True:
self.reset_mask()
weight = [
@@ -302,9 +309,17 @@ def forward(self, input, hx=None, cx=None, doDropMC=False):
else:
weight = [self.w_ih, self.w_hh, self.b_ih, self.b_hh]
- output, hy, cy, reserve, new_weight_buf = torch._cudnn_rnn(
- input, weight, 4, None, hx, cx, torch.backends.cudnn.CUDNN_LSTM,
- self.hiddenSize, 1, False, 0, self.training, False, (), None)
+ # output, hy, cy, reserve, new_weight_buf = torch._cudnn_rnn(
+ # input, weight, 4, None, hx, cx, torch.backends.cudnn.CUDNN_LSTM,
+ # self.hiddenSize, 1, False, 0, self.training, False, (), None)
+ if torch.__version__ < "1.8":
+ output, hy, cy, reserve, new_weight_buf = torch._cudnn_rnn(
+ input, weight, 4, None, hx, cx, 2, # 2 means LSTM
+ self.hiddenSize, 1, False, 0, self.training, False, (), None)
+ else:
+ output, hy, cy, reserve, new_weight_buf = torch._cudnn_rnn(
+ input, weight, 4, None, hx, cx, 2, # 2 means LSTM
+ self.hiddenSize, 0, 1, False, 0, self.training, False, (), None)
return output, (hy, cy)
@property
@@ -312,6 +327,26 @@ def all_weights(self):
return [[getattr(self, weight) for weight in weights]
for weights in self._all_weights]
+class CNN1dkernel(torch.nn.Module):
+ def __init__(self,
+ *,
+ ninchannel=1,
+ nkernel=3,
+ kernelSize=3,
+ stride=1,
+ padding=0):
+ super(CNN1dkernel, self).__init__()
+ self.cnn1d = torch.nn.Conv1d(
+ in_channels=ninchannel,
+ out_channels=nkernel,
+ kernel_size=kernelSize,
+ padding=padding,
+ stride=stride,
+ )
+
+ def forward(self, x):
+ output = F.relu(self.cnn1d(x))
+ return output
class CudnnLstmModel(torch.nn.Module):
def __init__(self, *, nx, ny, hiddenSize, dr=0.5):
@@ -326,14 +361,452 @@ def __init__(self, *, nx, ny, hiddenSize, dr=0.5):
inputSize=hiddenSize, hiddenSize=hiddenSize, dr=dr)
self.linearOut = torch.nn.Linear(hiddenSize, ny)
self.gpu = 1
+ # self.drtest = torch.nn.Dropout(p=0.4)
- def forward(self, x, doDropMC=False):
+ def forward(self, x, doDropMC=False, dropoutFalse=False):
+ x0 = F.relu(self.linearIn(x))
+ outLSTM, (hn, cn) = self.lstm(x0, doDropMC=doDropMC, dropoutFalse=dropoutFalse)
+ # outLSTMdr = self.drtest(outLSTM)
+ out = self.linearOut(outLSTM)
+ return out
+
+
+class CNN1dLSTMmodel(torch.nn.Module):
+ def __init__(self, *, nx, ny, nobs, hiddenSize,
+ nkernel=(10,5), kernelSize=(3,3), stride=(2,1), dr=0.5, poolOpt=None):
+ # two convolutional layer
+ super(CNN1dLSTMmodel, self).__init__()
+ self.nx = nx
+ self.ny = ny
+ self.obs = nobs
+ self.hiddenSize = hiddenSize
+ nlayer = len(nkernel)
+ self.features = nn.Sequential()
+ ninchan = 1
+ Lout = nobs
+ for ii in range(nlayer):
+ ConvLayer = CNN1dkernel(
+ ninchannel=ninchan, nkernel=nkernel[ii], kernelSize=kernelSize[ii], stride=stride[ii])
+ self.features.add_module('CnnLayer%d' % (ii + 1), ConvLayer)
+ ninchan = nkernel[ii]
+ Lout = cnn.calConvSize(lin=Lout, kernel=kernelSize[ii], stride=stride[ii])
+ self.features.add_module('Relu%d' % (ii + 1), nn.ReLU())
+ if poolOpt is not None:
+ self.features.add_module('Pooling%d' % (ii + 1), nn.MaxPool1d(poolOpt[ii]))
+ Lout = cnn.calPoolSize(lin=Lout, kernel=poolOpt[ii])
+ self.Ncnnout = int(Lout*nkernel[-1]) # total CNN feature number after convolution
+ Nf = self.Ncnnout + nx
+ self.linearIn = torch.nn.Linear(Nf, hiddenSize)
+ self.lstm = CudnnLstm(
+ inputSize=hiddenSize, hiddenSize=hiddenSize, dr=dr)
+ self.linearOut = torch.nn.Linear(hiddenSize, ny)
+ self.gpu = 1
+
+ def forward(self, x, z, doDropMC=False):
+ nt, ngrid, nobs = z.shape
+ z = z.view(nt*ngrid, 1, nobs)
+ z0 = self.features(z)
+ # z0 = (ntime*ngrid) * nkernel * sizeafterconv
+ z0 = z0.view(nt, ngrid, self.Ncnnout)
+ x0 = torch.cat((x, z0), dim=2)
+ x0 = F.relu(self.linearIn(x0))
+ outLSTM, (hn, cn) = self.lstm(x0, doDropMC=doDropMC)
+ out = self.linearOut(outLSTM)
+ # out = rho/time * batchsize * Ntargetvar
+ return out
+
+class CNN1dLSTMInmodel(torch.nn.Module):
+ # Directly add the CNN extracted features into LSTM inputSize
+ def __init__(self, *, nx, ny, nobs, hiddenSize,
+ nkernel=(10,5), kernelSize=(3,3), stride=(2,1), dr=0.5, poolOpt=None, cnndr=0.0):
+ # two convolutional layer
+ super(CNN1dLSTMInmodel, self).__init__()
+ self.nx = nx
+ self.ny = ny
+ self.obs = nobs
+ self.hiddenSize = hiddenSize
+ nlayer = len(nkernel)
+ self.features = nn.Sequential()
+ ninchan = 1
+ Lout = nobs
+ for ii in range(nlayer):
+ ConvLayer = CNN1dkernel(
+ ninchannel=ninchan, nkernel=nkernel[ii], kernelSize=kernelSize[ii], stride=stride[ii])
+ self.features.add_module('CnnLayer%d' % (ii + 1), ConvLayer)
+ if cnndr != 0.0:
+ self.features.add_module('dropout%d' % (ii + 1), nn.Dropout(p=cnndr))
+ ninchan = nkernel[ii]
+ Lout = cnn.calConvSize(lin=Lout, kernel=kernelSize[ii], stride=stride[ii])
+ self.features.add_module('Relu%d' % (ii + 1), nn.ReLU())
+ if poolOpt is not None:
+ self.features.add_module('Pooling%d' % (ii + 1), nn.MaxPool1d(poolOpt[ii]))
+ Lout = cnn.calPoolSize(lin=Lout, kernel=poolOpt[ii])
+ self.Ncnnout = int(Lout*nkernel[-1]) # total CNN feature number after convolution
+ Nf = self.Ncnnout + hiddenSize
+ self.linearIn = torch.nn.Linear(nx, hiddenSize)
+ self.lstm = CudnnLstm(
+ inputSize=Nf, hiddenSize=hiddenSize, dr=dr)
+ self.linearOut = torch.nn.Linear(hiddenSize, ny)
+ self.gpu = 1
+
+ def forward(self, x, z, doDropMC=False):
+ nt, ngrid, nobs = z.shape
+ z = z.view(nt*ngrid, 1, nobs)
+ z0 = self.features(z)
+ # z0 = (ntime*ngrid) * nkernel * sizeafterconv
+ z0 = z0.view(nt, ngrid, self.Ncnnout)
+ x = F.relu(self.linearIn(x))
+ x0 = torch.cat((x, z0), dim=2)
+ outLSTM, (hn, cn) = self.lstm(x0, doDropMC=doDropMC)
+ out = self.linearOut(outLSTM)
+ # out = rho/time * batchsize * Ntargetvar
+ return out
+
+class CNN1dLCmodel(torch.nn.Module):
+ # add the CNN extracted features into original LSTM input, then pass through linear layer
+ def __init__(self, *, nx, ny, nobs, hiddenSize,
+ nkernel=(10,5), kernelSize=(3,3), stride=(2,1), dr=0.5, poolOpt=None, cnndr=0.0):
+ # two convolutional layer
+ super(CNN1dLCmodel, self).__init__()
+ self.nx = nx
+ self.ny = ny
+ self.obs = nobs
+ self.hiddenSize = hiddenSize
+ nlayer = len(nkernel)
+ self.features = nn.Sequential()
+ ninchan = 1 # need to modify the hardcode: 4 for smap and 1 for FDC
+ Lout = nobs
+ for ii in range(nlayer):
+ ConvLayer = CNN1dkernel(
+ ninchannel=ninchan, nkernel=nkernel[ii], kernelSize=kernelSize[ii], stride=stride[ii])
+ self.features.add_module('CnnLayer%d' % (ii + 1), ConvLayer)
+ if cnndr != 0.0:
+ self.features.add_module('dropout%d' % (ii + 1), nn.Dropout(p=cnndr))
+ ninchan = nkernel[ii]
+ Lout = cnn.calConvSize(lin=Lout, kernel=kernelSize[ii], stride=stride[ii])
+ self.features.add_module('Relu%d' % (ii + 1), nn.ReLU())
+ if poolOpt is not None:
+ self.features.add_module('Pooling%d' % (ii + 1), nn.MaxPool1d(poolOpt[ii]))
+ Lout = cnn.calPoolSize(lin=Lout, kernel=poolOpt[ii])
+ self.Ncnnout = int(Lout*nkernel[-1]) # total CNN feature number after convolution
+ Nf = self.Ncnnout + nx
+ self.linearIn = torch.nn.Linear(Nf, hiddenSize)
+ self.lstm = CudnnLstm(
+ inputSize=hiddenSize, hiddenSize=hiddenSize, dr=dr)
+ self.linearOut = torch.nn.Linear(hiddenSize, ny)
+ self.gpu = 1
+
+ def forward(self, x, z, doDropMC=False):
+ # z = ngrid*nVar add a channel dimension
+ ngrid = z.shape[0]
+ rho, BS, Nvar = x.shape
+ if len(z.shape) == 2: # for FDC, else 3 dimension for smap
+ z = torch.unsqueeze(z, dim=1)
+ z0 = self.features(z)
+ # z0 = (ngrid) * nkernel * sizeafterconv
+ z0 = z0.view(ngrid, self.Ncnnout).repeat(rho,1,1)
+ x = torch.cat((x, z0), dim=2)
x0 = F.relu(self.linearIn(x))
outLSTM, (hn, cn) = self.lstm(x0, doDropMC=doDropMC)
out = self.linearOut(outLSTM)
+ # out = rho/time * batchsize * Ntargetvar
+ return out
+
+class CNN1dLCInmodel(torch.nn.Module):
+ # Directly add the CNN extracted features into LSTM inputSize
+ def __init__(self, *, nx, ny, nobs, hiddenSize,
+ nkernel=(10,5), kernelSize=(3,3), stride=(2,1), dr=0.5, poolOpt=None, cnndr=0.0):
+ # two convolutional layer
+ super(CNN1dLCInmodel, self).__init__()
+ self.nx = nx
+ self.ny = ny
+ self.obs = nobs
+ self.hiddenSize = hiddenSize
+ nlayer = len(nkernel)
+ self.features = nn.Sequential()
+ ninchan = 1
+ Lout = nobs
+ for ii in range(nlayer):
+ ConvLayer = CNN1dkernel(
+ ninchannel=ninchan, nkernel=nkernel[ii], kernelSize=kernelSize[ii], stride=stride[ii])
+ self.features.add_module('CnnLayer%d' % (ii + 1), ConvLayer)
+ if cnndr != 0.0:
+ self.features.add_module('dropout%d' % (ii + 1), nn.Dropout(p=cnndr))
+ ninchan = nkernel[ii]
+ Lout = cnn.calConvSize(lin=Lout, kernel=kernelSize[ii], stride=stride[ii])
+ self.features.add_module('Relu%d' % (ii + 1), nn.ReLU())
+ if poolOpt is not None:
+ self.features.add_module('Pooling%d' % (ii + 1), nn.MaxPool1d(poolOpt[ii]))
+ Lout = cnn.calPoolSize(lin=Lout, kernel=poolOpt[ii])
+ self.Ncnnout = int(Lout*nkernel[-1]) # total CNN feature number after convolution
+ Nf = self.Ncnnout + hiddenSize
+ self.linearIn = torch.nn.Linear(nx, hiddenSize)
+ self.lstm = CudnnLstm(
+ inputSize=Nf, hiddenSize=hiddenSize, dr=dr)
+ self.linearOut = torch.nn.Linear(hiddenSize, ny)
+ self.gpu = 1
+
+ def forward(self, x, z, doDropMC=False):
+ # z = ngrid*nVar add a channel dimension
+ ngrid, nobs = z.shape
+ rho, BS, Nvar = x.shape
+ z = torch.unsqueeze(z, dim=1)
+ z0 = self.features(z)
+ # z0 = (ngrid) * nkernel * sizeafterconv
+ z0 = z0.view(ngrid, self.Ncnnout).repeat(rho,1,1)
+ x = F.relu(self.linearIn(x))
+ x0 = torch.cat((x, z0), dim=2)
+ outLSTM, (hn, cn) = self.lstm(x0, doDropMC=doDropMC)
+ out = self.linearOut(outLSTM)
+ # out = rho/time * batchsize * Ntargetvar
+ return out
+
+class CudnnInvLstmModel(torch.nn.Module):
+ # using cudnnLstm to extract features from SMAP observations
+ def __init__(self, *, nx, ny, hiddenSize, ninv, nfea, hiddeninv, dr=0.5, drinv=0.5):
+ # two LSTM
+ super(CudnnInvLstmModel, self).__init__()
+ self.nx = nx
+ self.ny = ny
+ self.hiddenSize = hiddenSize
+ self.ninv = ninv
+ self.nfea = nfea
+ self.hiddeninv = hiddeninv
+ self.lstminv = CudnnLstmModel(
+ nx=ninv, ny=nfea, hiddenSize=hiddeninv, dr=drinv)
+ self.lstm = CudnnLstmModel(
+ nx=nfea+nx, ny=ny, hiddenSize=hiddenSize, dr=dr)
+ self.gpu = 1
+
+ def forward(self, x, z, doDropMC=False):
+ Gen = self.lstminv(z)
+ dim = x.shape;
+ nt = dim[0]
+ invpara = Gen[-1, :, :].repeat(nt, 1, 1)
+ x1 = torch.cat((x, invpara), dim=2)
+ out = self.lstm(x1)
+ # out = rho/time * batchsize * Ntargetvar
+ return out
+
+
+class LstmCloseModel(torch.nn.Module):
+ def __init__(self, *, nx, ny, hiddenSize, dr=0.5, fillObs=True):
+ super(LstmCloseModel, self).__init__()
+ self.nx = nx
+ self.ny = ny
+ self.hiddenSize = hiddenSize
+ self.ct = 0
+ self.nLayer = 1
+ self.linearIn = torch.nn.Linear(nx + 1, hiddenSize)
+ # self.lstm = CudnnLstm(
+ # inputSize=hiddenSize, hiddenSize=hiddenSize, dr=dr)
+ self.lstm = LSTMcell_tied(
+ inputSize=hiddenSize, hiddenSize=hiddenSize, dr=dr, drMethod='drW')
+ self.linearOut = torch.nn.Linear(hiddenSize, ny)
+ self.gpu = 1
+ self.fillObs = fillObs
+
+ def forward(self, x, y=None):
+ nt, ngrid, nx = x.shape
+ yt = torch.zeros(ngrid, 1).cuda()
+ out = torch.zeros(nt, ngrid, self.ny).cuda()
+ ht = None
+ ct = None
+ resetMask = True
+ for t in range(nt):
+ if self.fillObs is True:
+ ytObs = y[t, :, :]
+ mask = ytObs == ytObs
+ yt[mask] = ytObs[mask]
+ xt = torch.cat((x[t, :, :], yt), 1)
+ x0 = F.relu(self.linearIn(xt))
+ ht, ct = self.lstm(x0, hidden=(ht, ct), resetMask=resetMask)
+ yt = self.linearOut(ht)
+ resetMask = False
+ out[t, :, :] = yt
return out
+class AnnModel(torch.nn.Module):
+ def __init__(self, *, nx, ny, hiddenSize):
+ super(AnnModel, self).__init__()
+ self.hiddenSize = hiddenSize
+ self.i2h = nn.Linear(nx, hiddenSize)
+ self.h2h = nn.Linear(hiddenSize, hiddenSize)
+ self.h2o = nn.Linear(hiddenSize, ny)
+ self.ny = ny
+
+ def forward(self, x, y=None):
+ nt, ngrid, nx = x.shape
+ yt = torch.zeros(ngrid, 1).cuda()
+ out = torch.zeros(nt, ngrid, self.ny).cuda()
+ for t in range(nt):
+ xt = x[t, :, :]
+ ht = F.relu(self.i2h(xt))
+ ht2 = self.h2h(ht)
+ yt = self.h2o(ht2)
+ out[t, :, :] = yt
+ return out
+
+
+class AnnCloseModel(torch.nn.Module):
+ def __init__(self, *, nx, ny, hiddenSize, fillObs=True):
+ super(AnnCloseModel, self).__init__()
+ self.hiddenSize = hiddenSize
+ self.i2h = nn.Linear(nx + 1, hiddenSize)
+ self.h2h = nn.Linear(hiddenSize, hiddenSize)
+ self.h2o = nn.Linear(hiddenSize, ny)
+ self.fillObs = fillObs
+ self.ny = ny
+
+ def forward(self, x, y=None):
+ nt, ngrid, nx = x.shape
+ yt = torch.zeros(ngrid, 1).cuda()
+ out = torch.zeros(nt, ngrid, self.ny).cuda()
+ for t in range(nt):
+ if self.fillObs is True:
+ ytObs = y[t, :, :]
+ mask = ytObs == ytObs
+ yt[mask] = ytObs[mask]
+ xt = torch.cat((x[t, :, :], yt), 1)
+ ht = F.relu(self.i2h(xt))
+ ht2 = self.h2h(ht)
+ yt = self.h2o(ht2)
+ out[t, :, :] = yt
+ return out
+
+
+class LstmCnnCond(nn.Module):
+ def __init__(self,
+ *,
+ nx,
+ ny,
+ ct,
+ opt=1,
+ hiddenSize=64,
+ cnnSize=32,
+ cp1=(64, 3, 2),
+ cp2=(128, 5, 2),
+ dr=0.5):
+ super(LstmCnnCond, self).__init__()
+
+ # opt == 1: cnn output as initial state of LSTM (h0)
+ # opt == 2: cnn output as additional output of LSTM
+ # opt == 3: cnn output as constant input of LSTM
+
+ if opt == 1:
+ cnnSize = hiddenSize
+
+ self.nx = nx
+ self.ny = ny
+ self.ct = ct
+ self.ctRm = False
+ self.hiddenSize = hiddenSize
+ self.opt = opt
+
+ self.cnn = cnn.Cnn1d(nx=nx, nt=ct, cnnSize=cnnSize, cp1=cp1, cp2=cp2)
+
+ self.lstm = CudnnLstm(
+ inputSize=hiddenSize, hiddenSize=hiddenSize, dr=dr)
+ if opt == 3:
+ self.linearIn = torch.nn.Linear(nx + cnnSize, hiddenSize)
+ else:
+ self.linearIn = torch.nn.Linear(nx, hiddenSize)
+ if opt == 2:
+ self.linearOut = torch.nn.Linear(hiddenSize + cnnSize, ny)
+ else:
+ self.linearOut = torch.nn.Linear(hiddenSize, ny)
+
+ def forward(self, x, xc):
+ # x- [nt,ngrid,nx]
+ x1 = xc
+ x1 = self.cnn(x1)
+ x2 = x
+ if self.opt == 1:
+ x2 = F.relu(self.linearIn(x2))
+ x2, (hn, cn) = self.lstm(x2, hx=x1[None, :, :])
+ x2 = self.linearOut(x2)
+ elif self.opt == 2:
+ x1 = x1[None, :, :].repeat(x2.shape[0], 1, 1)
+ x2 = F.relu(self.linearIn(x2))
+ x2, (hn, cn) = self.lstm(x2)
+ x2 = self.linearOut(torch.cat([x2, x1], 2))
+ elif self.opt == 3:
+ x1 = x1[None, :, :].repeat(x2.shape[0], 1, 1)
+ x2 = torch.cat([x2, x1], 2)
+ x2 = F.relu(self.linearIn(x2))
+ x2, (hn, cn) = self.lstm(x2)
+ x2 = self.linearOut(x2)
+
+ return x2
+
+
+class LstmCnnForcast(nn.Module):
+ def __init__(self,
+ *,
+ nx,
+ ny,
+ ct,
+ opt=1,
+ hiddenSize=64,
+ cnnSize=32,
+ cp1=(64, 3, 2),
+ cp2=(128, 5, 2),
+ dr=0.5):
+ super(LstmCnnForcast, self).__init__()
+
+ if opt == 1:
+ cnnSize = hiddenSize
+
+ self.nx = nx
+ self.ny = ny
+ self.ct = ct
+ self.ctRm = True
+ self.hiddenSize = hiddenSize
+ self.opt = opt
+ self.cnnSize = cnnSize
+
+ if opt == 1:
+ self.cnn = cnn.Cnn1d(
+ nx=nx + 1, nt=ct, cnnSize=cnnSize, cp1=cp1, cp2=cp2)
+ if opt == 2:
+ self.cnn = cnn.Cnn1d(
+ nx=1, nt=ct, cnnSize=cnnSize, cp1=cp1, cp2=cp2)
+
+ self.lstm = CudnnLstm(
+ inputSize=hiddenSize, hiddenSize=hiddenSize, dr=dr)
+ self.linearIn = torch.nn.Linear(nx + cnnSize, hiddenSize)
+ self.linearOut = torch.nn.Linear(hiddenSize, ny)
+
+ def forward(self, x, y):
+ # x- [nt,ngrid,nx]
+ nt, ngrid, nx = x.shape
+ ct = self.ct
+ pt = nt - ct
+
+ if self.opt == 1:
+ x1 = torch.cat((y, x), dim=2)
+ elif self.opt == 2:
+ x1 = y
+
+ x1out = torch.zeros([pt, ngrid, self.cnnSize]).cuda()
+ for k in range(pt):
+ x1out[k, :, :] = self.cnn(x1[k:k + ct, :, :])
+
+ x2 = x[ct:nt, :, :]
+ x2 = torch.cat([x2, x1out], 2)
+ x2 = F.relu(self.linearIn(x2))
+ x2, (hn, cn) = self.lstm(x2)
+ x2 = self.linearOut(x2)
+
+ return x2
+
+class CudnnLstmModel_R2P(torch.nn.Module):
+
+ def __init__(self, **arg):
+ pass
+
+
class CpuLstmModel(torch.nn.Module):
def __init__(self, *, nx, ny, hiddenSize, dr=0.5):
super(CpuLstmModel, self).__init__()
@@ -368,3 +841,9 @@ def forward(self, x, doDropMC=False):
out[t, :, :] = yt
return out
+
+class CudnnInv_HBVModel(torch.nn.Module):
+
+ def __init__(self, **arg):
+ pass
+
diff --git a/hydroDL/model/train.py b/hydroDL/model/train.py
index 931a351..f136c8c 100644
--- a/hydroDL/model/train.py
+++ b/hydroDL/model/train.py
@@ -3,7 +3,7 @@
import time
import os
import hydroDL
-from hydroDL.model import rnn
+from hydroDL.model import rnn, cnn
import pandas as pd
@@ -17,7 +17,8 @@ def trainModel(model,
miniBatch=[100, 30],
saveEpoch=100,
saveFolder=None,
- mode='seq2seq'):
+ mode='seq2seq',
+ bufftime=0):
batchSize, rho = miniBatch
# x- input; z - additional input; y - target; c - constant input
if type(x) is tuple or type(x) is list:
@@ -25,14 +26,18 @@ def trainModel(model,
ngrid, nt, nx = x.shape
if c is not None:
nx = nx + c.shape[-1]
+ if batchSize >= ngrid:
+ # batchsize larger than total grids
+ batchSize = ngrid
+
nIterEp = int(
- np.ceil(np.log(0.01) / np.log(1 - batchSize * rho / ngrid / nt)))
+ np.ceil(np.log(0.01) / np.log(1 - batchSize * rho / ngrid / (nt-bufftime))))
if hasattr(model, 'ctRm'):
if model.ctRm is True:
nIterEp = int(
np.ceil(
np.log(0.01) / np.log(1 - batchSize *
- (rho - model.ct) / ngrid / nt)))
+ (rho - model.ct) / ngrid / (nt-bufftime))))
if torch.cuda.is_available():
lossFun = lossFun.cuda()
@@ -42,24 +47,76 @@ def trainModel(model,
model.zero_grad()
if saveFolder is not None:
runFile = os.path.join(saveFolder, 'run.csv')
- rf = open(runFile, 'a+')
+ rf = open(runFile, 'w+')
for iEpoch in range(1, nEpoch + 1):
lossEp = 0
t0 = time.time()
for iIter in range(0, nIterEp):
# training iterations
- if type(model) in [rnn.CudnnLstmModel, rnn.CpuLstmModel]:
+ if type(model) in [rnn.CudnnLstmModel, rnn.AnnModel, rnn.CpuLstmModel]:
iGrid, iT = randomIndex(ngrid, nt, [batchSize, rho])
xTrain = selectSubset(x, iGrid, iT, rho, c=c)
+ # xTrain = rho/time * Batchsize * Ninput_var
yTrain = selectSubset(y, iGrid, iT, rho)
+ # yTrain = rho/time * Batchsize * Ntraget_var
yP = model(xTrain)
+ if type(model) in [rnn.CudnnLstmModel_R2P]:
+ # yP = rho/time * Batchsize * Ntraget_var
+ iGrid, iT = randomIndex(ngrid, nt, [batchSize, rho])
+ xTrain = selectSubset(x, iGrid, iT, rho, c=c, tupleOut=True)
+ yTrain = selectSubset(y, iGrid, iT, rho)
+ yP, Param_R2P = model(xTrain)
+ if type(model) in [rnn.LstmCloseModel, rnn.AnnCloseModel, rnn.CNN1dLSTMmodel, rnn.CNN1dLSTMInmodel,
+ rnn.CNN1dLCmodel, rnn.CNN1dLCInmodel, rnn.CudnnInvLstmModel, rnn.CudnnInv_HBVModel]:
+ iGrid, iT = randomIndex(ngrid, nt, [batchSize, rho], bufftime=bufftime)
+ if type(model) in [rnn.CudnnInv_HBVModel]:
+ xTrain = selectSubset(x, iGrid, iT, rho, bufftime=bufftime)
+ else:
+ xTrain = selectSubset(x, iGrid, iT, rho, c=c)
+ yTrain = selectSubset(y, iGrid, iT, rho)
+ if type(model) in [rnn.CNN1dLCmodel, rnn.CNN1dLCInmodel]:
+ zTrain = selectSubset(z, iGrid, iT=None, rho=None, LCopt=True)
+ elif type(model) in [rnn.CudnnInvLstmModel]: # For smap inv LSTM, HBV Inv
+ # zTrain = selectSubset(z, iGrid, iT=None, rho=None, LCopt=False)
+ zTrain = selectSubset(z, iGrid, iT=None, rho=None, LCopt=False, c=c) # Add the attributes to inv
+ elif type(model) in [rnn.CudnnInv_HBVModel]:
+ zTrain = selectSubset(z, iGrid, iT, rho, c=c)
+ else:
+ zTrain = selectSubset(z, iGrid, iT, rho)
+ yP = model(xTrain, zTrain)
+ if type(model) in [cnn.LstmCnn1d]:
+ iGrid, iT = randomIndex(ngrid, nt, [batchSize, rho])
+ xTrain = selectSubset(x, iGrid, iT, rho, c=c)
+ # xTrain = rho/time * Batchsize * Ninput_var
+ xTrain = xTrain.permute(1, 2, 0)
+ yTrain = selectSubset(y, iGrid, iT, rho)
+ # yTrain = rho/time * Batchsize * Ntraget_var
+ yTrain = yTrain.permute(1, 2, 0)[:, :, int(rho/2):]
+ yP = model(xTrain)
+ # if type(model) in [hydroDL.model.rnn.LstmCnnCond]:
+ # iGrid, iT = randomIndex(ngrid, nt, [batchSize, rho])
+ # xTrain = selectSubset(x, iGrid, iT, rho)
+ # yTrain = selectSubset(y, iGrid, iT, rho)
+ # zTrain = selectSubset(z, iGrid, None, None)
+ # yP = model(xTrain, zTrain)
+ # if type(model) in [hydroDL.model.rnn.LstmCnnForcast]:
+ # iGrid, iT = randomIndex(ngrid, nt, [batchSize, rho])
+ # xTrain = selectSubset(x, iGrid, iT, rho)
+ # yTrain = selectSubset(y, iGrid, iT + model.ct, rho - model.ct)
+ # zTrain = selectSubset(z, iGrid, iT, rho)
+ # yP = model(xTrain, zTrain)
else:
Exception('unknown model')
+ # # consider the buff time for initialization
+ # if bufftime > 0:
+ # yP = yP[bufftime:,:,:]
loss = lossFun(yP, yTrain)
loss.backward()
optim.step()
model.zero_grad()
lossEp = lossEp + loss.item()
+ # if iIter % 30 == 0:
+ # print('Iter {} of {}: Loss {:.3f}'.format(iIter, nIterEp, loss.item()))
# print loss
lossEp = lossEp / nIterEp
logStr = 'Epoch {} Loss {:.3f} time {:.2f}'.format(
@@ -90,14 +147,23 @@ def loadModel(outFolder, epoch, modelName='model'):
return model
-def testModel(model, x, c, *, batchSize=None, filePathLst=None):
+def testModel(model, x, c, *, batchSize=None, filePathLst=None, doMC=False, outModel=None, savePath=None):
+ # outModel, savePath: only for R2P-hymod model, for other models always set None
if type(x) is tuple or type(x) is list:
x, z = x
+ if type(model) is rnn.CudnnLstmModel:
+ # For Cudnn, only one input. First concat inputs and obs
+ x = np.concatenate([x, z], axis=2)
+ z = None
else:
z = None
ngrid, nt, nx = x.shape
- nc = c.shape[-1]
- ny = model.ny
+ if c is not None:
+ nc = c.shape[-1]
+ if type(model) in [rnn.CudnnInv_HBVModel]:
+ ny=1 # streamflow
+ else:
+ ny = model.ny
if batchSize is None:
batchSize = ngrid
if torch.cuda.is_available():
@@ -125,31 +191,160 @@ def testModel(model, x, c, *, batchSize=None, filePathLst=None):
for i in range(0, len(iS)):
print('batch {}'.format(i))
xTemp = x[iS[i]:iE[i], :, :]
- cTemp = np.repeat(
- np.reshape(c[iS[i]:iE[i], :], [iE[i] - iS[i], 1, nc]), nt, axis=1)
- xTest = torch.from_numpy(
- np.swapaxes(np.concatenate([xTemp, cTemp], 2), 1, 0)).float()
+ if c is not None:
+ cTemp = np.repeat(
+ np.reshape(c[iS[i]:iE[i], :], [iE[i] - iS[i], 1, nc]), nt, axis=1)
+ xTest = torch.from_numpy(
+ np.swapaxes(np.concatenate([xTemp, cTemp], 2), 1, 0)).float()
+ else:
+ xTest = torch.from_numpy(
+ np.swapaxes(xTemp, 1, 0)).float()
if torch.cuda.is_available():
xTest = xTest.cuda()
if z is not None:
- zTemp = z[iS[i]:iE[i], :, :]
- zTest = torch.from_numpy(np.swapaxes(zTemp, 1, 0)).float()
+ if type(model) in [rnn.CNN1dLCmodel, rnn.CNN1dLCInmodel]:
+ if len(z.shape) == 2:
+ # Used for local calibration kernel as FDC
+ # x = Ngrid * Ntime
+ zTest = torch.from_numpy(z[iS[i]:iE[i], :]).float()
+ elif len(z.shape) == 3:
+ # used for LC-SMAP x=Ngrid*Ntime*Nvar
+ zTest = torch.from_numpy(np.swapaxes(z[iS[i]:iE[i], :, :], 1, 2)).float()
+ else:
+ zTemp = z[iS[i]:iE[i], :, :]
+ # if type(model) in [rnn.CudnnInvLstmModel]: # Test SMAP Inv with attributes
+ # cInv = np.repeat(
+ # np.reshape(c[iS[i]:iE[i], :], [iE[i] - iS[i], 1, nc]), zTemp.shape[1], axis=1)
+ # zTemp = np.concatenate([zTemp, cInv], 2)
+ zTest = torch.from_numpy(np.swapaxes(zTemp, 1, 0)).float()
if torch.cuda.is_available():
zTest = zTest.cuda()
- if type(model) in [rnn.CudnnLstmModel, rnn.CpuLstmModel]:
+ if type(model) in [rnn.CudnnLstmModel, rnn.AnnModel, rnn.CpuLstmModel]:
+ # if z is not None:
+ # xTest = torch.cat((xTest, zTest), dim=2)
yP = model(xTest)
+ if doMC is not False:
+ ySS = np.zeros(yP.shape)
+ yPnp=yP.detach().cpu().numpy()
+ for k in range(doMC):
+ # print(k)
+ yMC = model(xTest, doDropMC=True).detach().cpu().numpy()
+ ySS = ySS+np.square(yMC-yPnp)
+ ySS = np.sqrt(ySS)/doMC
+ if type(model) in [rnn.LstmCloseModel, rnn.AnnCloseModel, rnn.CNN1dLSTMmodel, rnn.CNN1dLSTMInmodel,
+ rnn.CNN1dLCmodel, rnn.CNN1dLCInmodel, rnn.CudnnInvLstmModel, rnn.CudnnInv_HBVModel]:
+ yP = model(xTest, zTest)
+ if type(model) in [hydroDL.model.rnn.LstmCnnForcast]:
+ yP = model(xTest, zTest)
+ if type(model) in [cnn.LstmCnn1d]:
+ xTest = xTest.permute(1, 2, 0)
+ yP = model(xTest)
+ yP = yP.permute(2, 0, 1)
+
+ if type(model) in [rnn.CudnnLstmModel_R2P]:
+ xTemp = torch.from_numpy(np.swapaxes(xTemp,1,0)).float()
+ cTemp = torch.from_numpy(np.swapaxes(cTemp,1,0)).float()
+ xTemp = xTemp.cuda()
+ cTemp = cTemp.cuda()
+ xTest_tuple = (xTemp, cTemp)
+ if outModel is None:
+ yP, Param_R2P = model(xTest_tuple, outModel = outModel)
+ Parameters_R2P = Param_R2P.detach().cpu().numpy().swapaxes(0, 1)
+ else:
+ Param_R2P = model(xTest_tuple, outModel = outModel)
+ Parameters_R2P = Param_R2P.detach().cpu().numpy()
+ hymod_forcing = xTemp.detach().cpu().numpy().swapaxes(0, 1)
+
+ runFile = os.path.join(savePath, 'hymod_run.csv')
+ rf = open(runFile, 'a+')
+
+ q = torch.zeros(hymod_forcing.shape[0], hymod_forcing.shape[1])
+ evap = torch.zeros(hymod_forcing.shape[0], hymod_forcing.shape[1])
+ for pix in range(hymod_forcing.shape[0]):
+ # model_hymod = rnn.hymod(a=Parameters_R2P[pix,0,0], b=Parameters_R2P[pix,0,1],\
+ # cmax=Parameters_R2P[pix,0,2], rq=Parameters_R2P[pix,0,3],\
+ # rs=Parameters_R2P[pix,0,4], s=Parameters_R2P[pix,0,5],\
+ # slow=Parameters_R2P[pix,0,6],\
+ # fast=[Parameters_R2P[pix,0,7], Parameters_R2P[pix,0,8], Parameters_R2P[pix,0,9]])
+ model_hymod = rnn.hymod(a=Parameters_R2P[pix,0], b=Parameters_R2P[pix,1],\
+ cmax=Parameters_R2P[pix,2], rq=Parameters_R2P[pix,3],\
+ rs=Parameters_R2P[pix,4], s=Parameters_R2P[pix,5],\
+ slow=Parameters_R2P[pix,6],\
+ fast=[Parameters_R2P[pix,7], Parameters_R2P[pix,8], Parameters_R2P[pix,9]])
+ for hymod_t in range(hymod_forcing.shape[1]):
+ q[pix, hymod_t], evap[pix, hymod_t] = model_hymod.advance(hymod_forcing[pix,hymod_t,0],hymod_forcing[pix,hymod_t,1])
+ nstepsLst = '{:.5f} {:.5f} {:.5f} {:.5f}'.format(hymod_forcing[pix,hymod_t,0], hymod_forcing[pix,hymod_t,1], q[pix,hymod_t], evap[pix,hymod_t])
+ print(nstepsLst)
+ rf.write(nstepsLst + '\n')
+
+ # CP-- marks the beginning of problematic merge
yOut = yP.detach().cpu().numpy().swapaxes(0, 1)
+ if doMC is not False:
+ yOutMC = ySS.swapaxes(0, 1)
# save output
for k in range(ny):
f = fLst[k]
pd.DataFrame(yOut[:, :, k]).to_csv(f, header=False, index=False)
+ if doMC is not False:
+ for k in range(ny):
+ f = fLst[ny+k]
+ pd.DataFrame(yOutMC[:, :, k]).to_csv(
+ f, header=False, index=False)
+
model.zero_grad()
torch.cuda.empty_cache()
for f in fLst:
f.close()
+ if batchSize == ngrid:
+ # For Wenping's work to calculate loss of testing data
+ # Only valid for testing without using minibatches
+ yOut = torch.from_numpy(yOut)
+ if type(model) in [rnn.CudnnLstmModel_R2P]:
+ Parameters_R2P = torch.from_numpy(Parameters_R2P)
+ if outModel is None:
+ return yOut, Parameters_R2P
+ else:
+ return q, evap, Parameters_R2P
+ else:
+ return yOut
+
+def testModelCnnCond(model, x, y, *, batchSize=None):
+ ngrid, nt, nx = x.shape
+ ct = model.ct
+ ny = model.ny
+ if batchSize is None:
+ batchSize = ngrid
+ xTest = torch.from_numpy(np.swapaxes(x, 1, 0)).float()
+ # cTest = torch.from_numpy(np.swapaxes(y[:, 0:ct, :], 1, 0)).float()
+ cTest = torch.zeros([ct, ngrid, y.shape[-1]], requires_grad=False)
+ for k in range(ngrid):
+ ctemp = y[k, 0:ct, 0]
+ i0 = np.where(np.isnan(ctemp))[0]
+ i1 = np.where(~np.isnan(ctemp))[0]
+ if len(i1) > 0:
+ ctemp[i0] = np.interp(i0, i1, ctemp[i1])
+ cTest[:, k, 0] = torch.from_numpy(ctemp)
+
+ if torch.cuda.is_available():
+ xTest = xTest.cuda()
+ cTest = cTest.cuda()
+ model = model.cuda()
+
+ model.train(mode=False)
+
+ yP = torch.zeros([nt - ct, ngrid, ny])
+ iS = np.arange(0, ngrid, batchSize)
+ iE = np.append(iS[1:], ngrid)
+ for i in range(0, len(iS)):
+ xTemp = xTest[:, iS[i]:iE[i], :]
+ cTemp = cTest[:, iS[i]:iE[i], :]
+ yP[:, iS[i]:iE[i], :] = model(xTemp, cTemp)
+ yOut = yP.detach().cpu().numpy().swapaxes(0, 1)
+ return yOut
+
def randomSubset(x, y, dimSubset):
ngrid, nt, nx = x.shape
@@ -169,32 +364,58 @@ def randomSubset(x, y, dimSubset):
return xTensor, yTensor
-def randomIndex(ngrid, nt, dimSubset):
+def randomIndex(ngrid, nt, dimSubset, bufftime=0):
batchSize, rho = dimSubset
iGrid = np.random.randint(0, ngrid, [batchSize])
- iT = np.random.randint(0, nt - rho, [batchSize])
+ iT = np.random.randint(0+bufftime, nt - rho, [batchSize])
return iGrid, iT
-def selectSubset(x, iGrid, iT, rho, *, c=None):
+def selectSubset(x, iGrid, iT, rho, *, c=None, tupleOut=False, LCopt=False, bufftime=0):
nx = x.shape[-1]
+ nt = x.shape[1]
+ if x.shape[0] == len(iGrid): #hack
+ iGrid = np.arange(0,len(iGrid)) # hack
+ if (rho is not None) and (nt <= rho):
+ iT.fill(0)
+
+ batchSize = iGrid.shape[0]
if iT is not None:
- batchSize = iGrid.shape[0]
- xTensor = torch.zeros([rho, batchSize, nx], requires_grad=False)
+ # batchSize = iGrid.shape[0]
+ xTensor = torch.zeros([rho+bufftime, batchSize, nx], requires_grad=False)
for k in range(batchSize):
- temp = x[iGrid[k]:iGrid[k] + 1, np.arange(iT[k], iT[k] + rho), :]
+ temp = x[iGrid[k]:iGrid[k] + 1, np.arange(iT[k]-bufftime, iT[k] + rho), :]
xTensor[:, k:k + 1, :] = torch.from_numpy(np.swapaxes(temp, 1, 0))
else:
- xTensor = torch.from_numpy(np.swapaxes(x[iGrid, :, :], 1, 0)).float()
- rho = xTensor.shape[1]
+ if LCopt is True:
+ # used for local calibration kernel: FDC, SMAP...
+ if len(x.shape) == 2:
+ # Used for local calibration kernel as FDC
+ # x = Ngrid * Ntime
+ xTensor = torch.from_numpy(x[iGrid, :]).float()
+ elif len(x.shape) == 3:
+ # used for LC-SMAP x=Ngrid*Ntime*Nvar
+ xTensor = torch.from_numpy(np.swapaxes(x[iGrid, :, :], 1, 2)).float()
+ else:
+ # Used for rho equal to the whole length of time series
+ xTensor = torch.from_numpy(np.swapaxes(x[iGrid, :, :], 1, 0)).float()
+ rho = xTensor.shape[0]
if c is not None:
nc = c.shape[-1]
temp = np.repeat(
- np.reshape(c[iGrid, :], [batchSize, 1, nc]), rho, axis=1)
+ np.reshape(c[iGrid, :], [batchSize, 1, nc]), rho+bufftime, axis=1)
cTensor = torch.from_numpy(np.swapaxes(temp, 1, 0)).float()
- out = torch.cat((xTensor, cTensor), 2)
+
+ if (tupleOut):
+ if torch.cuda.is_available():
+ xTensor = xTensor.cuda()
+ cTensor = cTensor.cuda()
+ out = (xTensor, cTensor)
+ else:
+ out = torch.cat((xTensor, cTensor), 2)
else:
out = xTensor
- if torch.cuda.is_available():
+
+ if torch.cuda.is_available() and type(out) is not tuple:
out = out.cuda()
return out
diff --git a/hydroDL/post/plot.py b/hydroDL/post/plot.py
index 7edf426..8bfa71b 100644
--- a/hydroDL/post/plot.py
+++ b/hydroDL/post/plot.py
@@ -9,22 +9,29 @@
import string
import os
-# manually add package
# os.environ[
-# 'PROJ_LIB'] = r'C:\pythonenvir\pkgs\proj4-5.2.0-ha925a31_1\Library\share'
+# 'PROJ_LIB'] = r'/opt/anaconda/pkgs/proj4-5.2.0-he6710b0_1/share/proj/'
from mpl_toolkits import basemap
def plotBoxFig(data,
label1=None,
label2=None,
- colorLst='rbkgcmy',
+ colorLst='rbkgcmywrbkgcmyw',
title=None,
- figsize=(8, 6),
+ figsize=(10, 8),
sharey=True,
- legOnly=False):
+ xticklabel=None,
+ axin=None,
+ ylim=None,
+ ylabel=None,
+ widths=0.5,
+ ):
nc = len(data)
- fig, axes = plt.subplots(ncols=nc, sharey=sharey, figsize=figsize)
+ if axin is None:
+ fig, axes = plt.subplots(ncols=nc, sharey=sharey, figsize=figsize, constrained_layout=True)
+ else:
+ axes = axin
for k in range(0, nc):
ax = axes[k] if nc > 1 else axes
@@ -39,23 +46,174 @@ def plotBoxFig(data,
temp[kk] = []
else:
temp = temp[~np.isnan(temp)]
- bp = ax.boxplot(temp, patch_artist=True, notch=True, showfliers=False)
+ bp = ax.boxplot(temp, patch_artist=True, notch=True, showfliers=False, widths = widths)
for kk in range(0, len(bp['boxes'])):
plt.setp(bp['boxes'][kk], facecolor=colorLst[kk])
+
if label1 is not None:
ax.set_xlabel(label1[k])
else:
ax.set_xlabel(str(k))
- ax.set_xticks([])
+ if xticklabel is None:
+ ax.set_xticks([])
+ else:
+ ax.set_xticks([y+1 for y in range(0,len(data[k]),2)])
+ ax.set_xticklabels(xticklabel)
# ax.ticklabel_format(axis='y', style='sci')
+ if ylabel is not None:
+ ax.set_ylabel(ylabel[k])
+ # yh = np.nanmedian(data[k][0])
+ # ax.axhline(yh, xmin=0, xmax=1, color='r',
+ # linestyle='dashed', linewidth=2)
+ # yh1 = np.nanmedian(data[k][1])
+ # ax.axhline(yh1, xmin=0, xmax=1, color='b',
+ # linestyle='dashed', linewidth=2)
+ if ylim is not None:
+ ax.set_ylim(ylim)
if label2 is not None:
- ax.legend(bp['boxes'], label2, loc='best')
- if legOnly is True:
- ax.legend(bp['boxes'], label2, bbox_to_anchor=(1, 0.5))
+ if nc == 1:
+ ax.legend(bp['boxes'], label2, loc='lower center', frameon=False, ncol=2)
+ else:
+ axes[-1].legend(bp['boxes'], label2, loc='lower center', frameon=False, ncol=2, fontsize=12)
+ if title is not None:
+ # fig.suptitle(title)
+ ax.set_title(title)
+ if axin is None:
+ return fig
+ else:
+ return ax, bp
+
+
+def plotBoxF(data,
+ label1=None,
+ label2=None,
+ colorLst='rbkgcmy',
+ title=None,
+ figsize=(10, 8),
+ sharey=True,
+ xticklabel=None,
+ ylabel=None,
+ subtitles=None
+ ):
+ nc = len(data)
+ fig, axes = plt.subplots(nrows=3, ncols=2, sharey=sharey, figsize=figsize, constrained_layout=True)
+ axes = axes.flat
+ for k in range(0, nc):
+ ax = axes[k] if nc > 1 else axes
+ # ax = axes[k]
+ bp = ax.boxplot(
+ data[k], patch_artist=True, notch=True, showfliers=False)
+ for kk in range(0, len(bp['boxes'])):
+ plt.setp(bp['boxes'][kk], facecolor=colorLst[0])
+ if k == 2:
+ yrange = ax.get_ylim()
+ if k == 3:
+ ax.set(ylim=yrange)
+ ax.axvline(len(data[k])-3+0.5, ymin=0, ymax=1, color='k',
+ linestyle='dashed', linewidth=1)
+ if ylabel[k] not in ['NSE', 'Corr', 'RMSE', 'KGE']:
+ ax.axhline(0, xmin=0, xmax=1,color='k',
+ linestyle='dashed', linewidth=1)
+
+ if label1 is not None:
+ ax.set_xlabel(label1[k])
+ if ylabel is not None:
+ ax.set_ylabel(ylabel[k])
+ if xticklabel is None:
+ ax.set_xticks([])
+ else:
+ ax.set_xticks([y+1 for y in range(0,len(data[k]))])
+ ax.set_xticklabels(xticklabel)
+ if subtitles is not None:
+ ax.set_title(subtitles[k], loc='left')
+ # ax.ticklabel_format(axis='y', style='sci')
+ if label2 is not None:
+ if nc == 1:
+ ax.legend(bp['boxes'], label2, loc='best', frameon=False, ncol=2)
+ else:
+ axes[-1].legend(bp['boxes'], label2, loc='best', frameon=False, ncol=2, fontsize=12)
if title is not None:
fig.suptitle(title)
return fig
+def plotMultiBoxFig(data,
+ *,
+ axes=None,
+ label1=None,
+ label2=None,
+ colorLst='grbkcmy',
+ title=None,
+ figsize=(10, 8),
+ sharey=True,
+ xticklabel=None,
+ position=None,
+ ylabel=None,
+ ylim = None,
+ ):
+ nc = len(data)
+ if axes is None:
+ fig, axes = plt.subplots(ncols=nc, sharey=sharey, figsize=figsize, constrained_layout=True)
+ nv = len(data[0])
+ ndays = len(data[0][1])-1
+ for k in range(0, nc):
+ ax = axes[k] if nc > 1 else axes
+ bp = [None]*nv
+ for ii in range(nv):
+ bp[ii] = ax.boxplot(
+ data[k][ii], patch_artist=True, notch=True, showfliers=False, positions=position[ii], widths=0.2)
+ for kk in range(0, len(bp[ii]['boxes'])):
+ plt.setp(bp[ii]['boxes'][kk], facecolor=colorLst[ii])
+
+ if label1 is not None:
+ ax.set_xlabel(label1[k])
+ else:
+ ax.set_xlabel(str(k))
+ if ylabel is not None:
+ ax.set_ylabel(ylabel[k])
+ if xticklabel is None:
+ ax.set_xticks([])
+ else:
+ ax.set_xticks([-0.7]+[y for y in range(0,len(data[k][1])+1)])
+ # ax.set_xticks([y for y in range(0, len(data[k][1]) + 1)])
+ # xtickloc = [0.25, 0.75] + np.arange(1.625, 5, 1.25).tolist() + [5.5, 5.5+0.25*6]
+ # ax.set_xticks([y for y in xtickloc])
+ ax.set_xticklabels(xticklabel)
+ # ax.set_xlim([0.0, 7.75])
+ ax.set_xlim([-0.9, ndays + 0.5])
+ # ax.set_xlim([-0.5, ndays + 0.5])
+ # ax.ticklabel_format(axis='y', style='sci')
+ # vlabel = [0.5] + np.arange(1.0, 5, 1.25).tolist() + [4.75+0.25*6, 4.75+0.25*12]
+ vlabel = np.arange(-0.5, len(data[k][1]) + 1)
+ for xv in vlabel:
+ ax.axvline(xv, ymin=0, ymax=1, color='k',
+ linestyle='dashed', linewidth=1)
+ yh0 = np.nanmedian(data[k][0][0])
+ ax.axhline(yh0, xmin=0, xmax=1, color='grey',
+ linestyle='dashed', linewidth=2)
+ yh = np.nanmedian(data[k][0][1])
+ ax.axhline(yh, xmin=0, xmax=1, color='r',
+ linestyle='dashed', linewidth=2)
+ yh1 = np.nanmedian(data[k][1][0])
+ ax.axhline(yh1, xmin=0, xmax=1, color='b',
+ linestyle='dashed', linewidth=2)
+ if ylim is not None:
+ ax.set_ylim(ylim)
+ labelhandle = list()
+ for ii in range(nv):
+ labelhandle.append(bp[ii]['boxes'][0])
+ if label2 is not None:
+ if nc == 1:
+ ax.legend(labelhandle, label2, loc='lower center', frameon=False, ncol=2)
+ else:
+ axes[-1].legend(labelhandle, label2, loc='lower center', frameon=False, ncol=1, fontsize=12)
+ if title is not None:
+ # fig.suptitle(title)
+ ax.set_title(title)
+ if axes is None:
+ return fig
+ else:
+ return ax, labelhandle
+
def plotTS(t,
y,
@@ -65,9 +223,11 @@ def plotTS(t,
figsize=(12, 4),
cLst='rbkgcmy',
markerLst=None,
+ linespec=None,
legLst=None,
title=None,
- linewidth=2):
+ linewidth=2,
+ ylabel=None):
newFig = False
if ax is None:
fig = plt.figure(figsize=figsize)
@@ -90,21 +250,26 @@ def plotTS(t,
tt, yy, color=cLst[k], label=legStr, linewidth=linewidth)
else:
if markerLst[k] is '-':
- ax.plot(
- tt, yy, color=cLst[k], label=legStr, linewidth=linewidth)
+ if linespec is not None:
+ ax.plot(tt, yy, color=cLst[k], label=legStr, linestyle=linespec[k], lw=1.5)
+ else:
+ ax.plot(tt, yy, color=cLst[k], label=legStr, lw=1.5)
else:
ax.plot(
tt, yy, color=cLst[k], label=legStr, marker=markerLst[k])
+ if ylabel is not None:
+ ax.set_ylabel(ylabel)
# ax.set_xlim([np.min(tt), np.max(tt)])
if tBar is not None:
ylim = ax.get_ylim()
tBar = [tBar] if type(tBar) is not list else tBar
for tt in tBar:
ax.plot([tt, tt], ylim, '-k')
+
if legLst is not None:
- ax.legend(loc='best')
+ ax.legend(loc='upper right', frameon=False)
if title is not None:
- ax.set_title(title)
+ ax.set_title(title, loc='center')
if newFig is True:
return fig, ax
else:
@@ -155,6 +320,58 @@ def plotVS(x,
return fig, ax
+def plotxyVS(x,
+ y,
+ *,
+ ax=None,
+ title=None,
+ xlabel=None,
+ ylabel=None,
+ titleCorr=True,
+ plot121=True,
+ plotReg=False,
+ corrType='Pearson',
+ figsize=(8, 6),
+ markerType = 'ob'):
+ if corrType is 'Pearson':
+ corr = scipy.stats.pearsonr(x, y)[0]
+ elif corrType is 'Spearman':
+ corr = scipy.stats.spearmanr(x, y)[0]
+ rmse = np.sqrt(np.nanmean((x - y)**2))
+ pLr = np.polyfit(x, y, 1)
+ xLr = np.array([np.min(x), np.max(x)])
+ yLr = np.poly1d(pLr)(xLr)
+
+ if ax is None:
+ fig = plt.figure(figsize=figsize)
+ ax = fig.subplots()
+ else:
+ fig = None
+ if title is not None:
+ if titleCorr is True:
+ title = title + ' ' + r'$\rho$={:.2f}'.format(corr) + ' ' + r'$RMSE$={:.3f}'.format(rmse)
+ ax.set_title(title)
+ else:
+ if titleCorr is True:
+ ax.set_title(r'$\rho$=' + '{:.2f}'.format(corr)) + ' ' + r'$RMSE$={:.3f}'.format(rmse)
+ if xlabel is not None:
+ ax.set_xlabel(xlabel)
+ if ylabel is not None:
+ ax.set_ylabel(ylabel)
+ ax.plot(x, y, markerType, markerfacecolor='none')
+ # ax.set_xlim(min(np.min(x), np.min(y))-0.1, max(np.max(x), np.max(y))+0.1)
+ # ax.set_ylim(min(np.min(x), np.min(y))-0.1, max(np.max(x), np.max(y))+0.1)
+ ax.set_xlim(np.min(x), np.max(x))
+ ax.set_ylim(np.min(x), np.max(x))
+ if plotReg is True:
+ ax.plot(xLr, yLr, 'r-')
+ ax.set_aspect('equal', 'box')
+ if plot121 is True:
+ plot121Line(ax)
+ # xyline = np.linspace(*ax.get_xlim())
+ # ax.plot(xyline, xyline)
+
+ return fig, ax
def plot121Line(ax, spec='k-'):
xlim = ax.get_xlim()
@@ -174,7 +391,12 @@ def plotMap(data,
shape=None,
pts=None,
figsize=(8, 4),
- plotColorBar=True):
+ clbar=True,
+ cRangeint=False,
+ cmap=plt.cm.jet,
+ bounding=None,
+ prj='cyl'):
+
if cRange is not None:
vmin = cRange[0]
vmax = cRange[1]
@@ -182,38 +404,44 @@ def plotMap(data,
temp = flatData(data)
vmin = np.percentile(temp, 5)
vmax = np.percentile(temp, 95)
+ if cRangeint is True:
+ vmin = int(round(vmin))
+ vmax = int(round(vmax))
if ax is None:
- fig, ax = plt.figure(figsize=figsize)
-
+ fig = plt.figure(figsize=figsize)
+ ax = fig.subplots()
if len(data.squeeze().shape) == 1:
isGrid = False
else:
isGrid = True
+ if bounding is None:
+ bounding = [np.min(lat)-0.5, np.max(lat)+0.5,
+ np.min(lon)-0.5,np.max(lon)+0.5]
mm = basemap.Basemap(
- llcrnrlat=np.min(lat),
- urcrnrlat=np.max(lat),
- llcrnrlon=np.min(lon),
- urcrnrlon=np.max(lon),
- projection='cyl',
+ llcrnrlat=bounding[0],
+ urcrnrlat=bounding[1],
+ llcrnrlon=bounding[2],
+ urcrnrlon=bounding[3],
+ projection=prj,
resolution='c',
ax=ax)
mm.drawcoastlines()
- mm.drawstates()
- # map.drawcountries()
+ mm.drawstates(linestyle='dashed')
+ mm.drawcountries(linewidth=1.0, linestyle='-.')
x, y = mm(lon, lat)
if isGrid is True:
xx, yy = np.meshgrid(x, y)
- cs = mm.pcolormesh(xx, yy, data, cmap=plt.cm.jet, vmin=vmin, vmax=vmax)
+ cs = mm.pcolormesh(xx, yy, data, cmap=cmap, vmin=vmin, vmax=vmax)
# cs = mm.imshow(
# np.flipud(data),
- # cmap=plt.cm.jet,
+ # cmap=plt.cm.jet(np.arange(0, 1, 0.1)),
# vmin=vmin,
# vmax=vmax,
# extent=[x[0], x[-1], y[0], y[-1]])
else:
cs = mm.scatter(
- x, y, c=data, s=30, cmap=plt.cm.jet, vmin=vmin, vmax=vmax)
+ x, y, c=data, s=30, cmap=cmap, vmin=vmin, vmax=vmax)
if shape is not None:
crd = np.array(shape.points)
@@ -236,16 +464,143 @@ def plotMap(data,
pts[0][k],
string.ascii_uppercase[k],
fontsize=18)
- if plotColorBar is True:
- mm.colorbar(cs, location='bottom', pad='5%')
+ if clbar is True:
+ mm.colorbar(cs, pad='5%', location='bottom')
if title is not None:
ax.set_title(title)
+ if ax is None:
+ return fig, ax, mm
+ else:
+ return mm, cs
+
+
+def plotlocmap(
+ lat,
+ lon,
+ ax=None,
+ baclat=None,
+ baclon=None,
+ title=None,
+ shape=None,
+ txtlabel=None):
+ if ax is None:
+ fig = plt.figure(figsize=(8, 4))
+ ax = fig.subplots()
+ mm = basemap.Basemap(
+ llcrnrlat=min(np.min(baclat),np.min(lat))-2.0,
+ urcrnrlat=max(np.max(baclat),np.max(lat))+2.0,
+ llcrnrlon=min(np.min(baclon),np.min(lon))-1.0,
+ urcrnrlon=max(np.max(baclon),np.max(lon))+1.0,
+ projection='cyl',
+ resolution='c',
+ ax=ax)
+ mm.drawcoastlines()
+ mm.drawstates(linestyle='dashed')
+ mm.drawcountries(linewidth=1.0, linestyle='-.')
+ # x, y = mm(baclon, baclat)
+ # bs = mm.scatter(
+ # x, y, c='k', s=30)
+ x, y = mm(lon, lat)
+ ax.plot(x, y, 'k*', markersize=12)
+ if shape is not None:
+ crd = np.array(shape.points)
+ par = shape.parts
+ if len(par) > 1:
+ for k in range(0, len(par) - 1):
+ x = crd[par[k]:par[k + 1], 0]
+ y = crd[par[k]:par[k + 1], 1]
+ mm.plot(x, y, color='r', linewidth=3)
+ else:
+ y = crd[:, 0]
+ x = crd[:, 1]
+ mm.plot(x, y, color='r', linewidth=3)
+ if title is not None:
+ ax.set_title(title, loc='center')
+ if txtlabel is not None:
+ for ii in range(len(lat)):
+ txt = txtlabel[ii]
+ xy = (x[ii], y[ii])
+ xy = (x[ii]+1.0, y[ii]-1.5)
+ ax.annotate(txt, xy, fontsize=18, fontweight='bold')
if ax is None:
return fig, ax, mm
else:
return mm
+def plotPUBloc(data,
+ *,
+ ax=None,
+ lat=None,
+ lon=None,
+ baclat=None,
+ baclon=None,
+ title=None,
+ cRange=None,
+ cRangeint=False,
+ shape=None,
+ isGrid=False):
+ if cRange is not None:
+ vmin = cRange[0]
+ vmax = cRange[1]
+ else:
+ temp = flatData(data)
+ vmin = np.percentile(temp, 5)
+ vmax = np.percentile(temp, 95)
+ if cRangeint is True:
+ vmin = int(round(vmin))
+ vmax = int(round(vmax))
+ if ax is None:
+ # fig, ax = plt.figure(figsize=(8, 4))
+ fig = plt.figure(figsize=(8, 4))
+ ax = fig.subplots()
+ # if len(data.squeeze().shape) == 1:
+ # isGrid = False
+ # else:
+ # isGrid = True
+
+ mm = basemap.Basemap(
+ llcrnrlat=min(np.min(baclat),np.min(lat))-0.5,
+ urcrnrlat=max(np.max(baclat),np.max(lat))+0.5,
+ llcrnrlon=min(np.min(baclon),np.min(lon))-0.5,
+ urcrnrlon=max(np.max(baclon),np.max(lon))+0.5,
+ projection='cyl',
+ resolution='c',
+ ax=ax)
+ mm.drawcoastlines()
+ mm.drawstates(linestyle='dashed')
+ mm.drawcountries(linewidth=0.5, linestyle='-.')
+ x, y = mm(baclon, baclat)
+ bs = mm.scatter(
+ x, y, c='k', s=30)
+ x, y = mm(lon, lat)
+ if isGrid is True:
+ xx, yy = np.meshgrid(x, y)
+ cs = mm.pcolormesh(xx, yy, data, cmap=plt.cm.jet, vmin=vmin, vmax=vmax)
+ else:
+ cs = mm.scatter(
+ x, y, c=data, s=100, cmap=plt.cm.jet, vmin=vmin, vmax=vmax, marker='*')
+
+ if shape is not None:
+ crd = np.array(shape.points)
+ par = shape.parts
+ if len(par) > 1:
+ for k in range(0, len(par) - 1):
+ x = crd[par[k]:par[k + 1], 0]
+ y = crd[par[k]:par[k + 1], 1]
+ mm.plot(x, y, color='r', linewidth=3)
+ else:
+ y = crd[:, 0]
+ x = crd[:, 1]
+ mm.plot(x, y, color='r', linewidth=3)
+ # mm.colorbar(cs, location='bottom', pad='5%')
+ if title is not None:
+ ax.set_title(title)
+ if ax is None:
+ return fig, ax, mm
+ else:
+ return mm
+
def plotTsMap(dataMap,
dataTs,
*,
@@ -312,6 +667,11 @@ def onclick(event):
yClick = event.ydata
d = np.sqrt((xClick - lon)**2 + (yClick - lat)**2)
ind = np.argmin(d)
+ # titleStr = 'pixel %d, lat %.3f, lon %.3f' % (ind, lat[ind], lon[ind])
+# titleStr = 'gage %d, lat %.3f, lon %.3f' % (ind, lat[ind], lon[ind])
+# ax.clear()
+# plotMap(data, lat=lat, lon=lon, ax=ax, cRange=cRange, title=title)
+# ax.plot(lon[ind], lat[ind], 'k*', markersize=12)
titleStr = 'pixel %d, lat %.3f, lon %.3f' % (ind, lat[ind], lon[ind])
for ix in range(nAx):
tsLst = list()
@@ -359,6 +719,60 @@ def onclick(event):
plt.tight_layout()
plt.show()
+def plotTsMapGage(dataMap,
+ dataTs,
+ *,
+ lat,
+ lon,
+ t,
+ colorMap=None,
+ mapNameLst=None,
+ tsNameLst=None,
+ figsize=[12, 6]):
+ if type(dataMap) is np.ndarray:
+ dataMap = [dataMap]
+ if type(dataTs) is np.ndarray:
+ dataTs = [dataTs]
+ nMap = len(dataMap)
+ nTs = len(dataTs)
+
+ fig = plt.figure(figsize=figsize, constrained_layout=True)
+ gs = gridspec.GridSpec(3, nMap)
+
+ for k in range(nMap):
+ ax = fig.add_subplot(gs[0:2, k])
+ cRange = None if colorMap is None else colorMap[k]
+ title = None if mapNameLst is None else mapNameLst[k]
+ data = dataMap[k]
+ if len(data.squeeze().shape) == 1:
+ plotMap(data, lat=lat, lon=lon, ax=ax, cRange=cRange, title=title)
+ else:
+ grid, uy, ux = utils.grid.array2grid(data, lat=lat, lon=lon)
+ plotMap(grid, lat=uy, lon=ux, ax=ax, cRange=cRange, title=title)
+ axTs = fig.add_subplot(gs[2, :])
+
+ def onclick(event):
+ xClick = event.xdata
+ yClick = event.ydata
+ d = np.sqrt((xClick - lon)**2 + (yClick - lat)**2)
+ ind = np.argmin(d)
+ # titleStr = 'pixel %d, lat %.3f, lon %.3f' % (ind, lat[ind], lon[ind])
+ titleStr = 'gage %d, lat %.3f, lon %.3f' % (ind, lat[ind], lon[ind])
+ ax.clear()
+ plotMap(data, lat=lat, lon=lon, ax=ax, cRange=cRange, title=title)
+ ax.plot(lon[ind], lat[ind], 'k*', markersize=12)
+ # ax.draw(renderer=None)
+ tsLst = list()
+ for k in range(nTs):
+ tsLst.append(dataTs[k][ind, :])
+ axTs.clear()
+ plotTS(t, tsLst, ax=axTs, legLst=tsNameLst, title=titleStr)
+ plt.draw()
+
+ fig.canvas.mpl_connect('button_press_event', onclick)
+ plt.tight_layout()
+ plt.show()
+
def plotCDF(xLst,
*,
@@ -370,7 +784,9 @@ def plotCDF(xLst,
cLst=None,
xlabel=None,
ylabel=None,
- showDiff='RMSE'):
+ showDiff='RMSE',
+ xlim=None,
+ linespec=None):
if ax is None:
fig = plt.figure(figsize=figsize)
ax = fig.subplots()
@@ -382,13 +798,14 @@ def plotCDF(xLst,
cLst = cmap(np.linspace(0, 1, len(xLst)))
if title is not None:
- ax.set_title(title)
+ ax.set_title(title, loc='left')
if xlabel is not None:
ax.set_xlabel(xlabel)
if ylabel is not None:
ax.set_ylabel(ylabel)
xSortLst = list()
+ yRankLst = list()
rmseLst = list()
ksdLst = list()
for k in range(0, len(xLst)):
@@ -396,25 +813,98 @@ def plotCDF(xLst,
xSort = flatData(x)
yRank = np.arange(len(xSort)) / float(len(xSort) - 1)
xSortLst.append(xSort)
+ yRankLst.append(yRank)
if legendLst is None:
legStr = None
else:
legStr = legendLst[k]
+ if ref is not None:
+ if ref is '121':
+ yRef = yRank
+ elif ref is 'norm':
+ yRef = scipy.stats.norm.cdf(xSort, 0, 1)
+ rmse = np.sqrt(((xSort - yRef)**2).mean())
+ ksd = np.max(np.abs(xSort - yRef))
+ rmseLst.append(rmse)
+ ksdLst.append(ksd)
+ if showDiff is 'RMSE':
+ legStr = legStr + ' RMSE=' + '%.3f' % rmse
+ elif showDiff is 'KS':
+ legStr = legStr + ' KS=' + '%.3f' % ksd
+ ax.plot(xSort, yRank, color=cLst[k], label=legStr, linestyle=linespec[k])
+ ax.grid(b=True)
+ if xlim is not None:
+ ax.set(xlim=xlim)
+ if ref is '121':
+ ax.plot([0, 1], [0, 1], 'k', label='y=x')
+ if ref is 'norm':
+ xNorm = np.linspace(-5, 5, 1000)
+ normCdf = scipy.stats.norm.cdf(xNorm, 0, 1)
+ ax.plot(xNorm, normCdf, 'k', label='Gaussian')
+ if legendLst is not None:
+ ax.legend(loc='best', frameon=False)
+ # out = {'xSortLst': xSortLst, 'rmseLst': rmseLst, 'ksdLst': ksdLst}
+ return fig, ax
+
+def plotFDC(xLst,
+ *,
+ ax=None,
+ title=None,
+ legendLst=None,
+ figsize=(8, 6),
+ ref='121',
+ cLst=None,
+ xlabel=None,
+ ylabel=None,
+ showDiff='RMSE',
+ xlim=None,
+ linespec=None):
+ if ax is None:
+ fig = plt.figure(figsize=figsize)
+ ax = fig.subplots()
+ else:
+ fig = None
- if ref is '121':
- yRef = yRank
- elif ref is 'norm':
- yRef = scipy.stats.norm.cdf(xSort, 0, 1)
- rmse = np.sqrt(((xSort - yRef)**2).mean())
- ksd = np.max(np.abs(xSort - yRef))
- rmseLst.append(rmse)
- ksdLst.append(ksd)
- if showDiff is 'RMSE':
- legStr = legStr + ' RMSE=' + '%.3f' % rmse
- elif showDiff is 'KS':
- legStr = legStr + ' KS=' + '%.3f' % ksd
- ax.plot(xSort, yRank, color=cLst[k], label=legStr)
+ if cLst is None:
+ cmap = plt.cm.jet
+ cLst = cmap(np.linspace(0, 1, len(xLst)))
+
+ if title is not None:
+ ax.set_title(title, loc='center')
+ if xlabel is not None:
+ ax.set_xlabel(xlabel)
+ if ylabel is not None:
+ ax.set_ylabel(ylabel)
+ xSortLst = list()
+ rmseLst = list()
+ ksdLst = list()
+ for k in range(0, len(xLst)):
+ x = xLst[k]
+ xSort = flatData(x, sortOpt=1)
+ yRank = np.arange(1, len(xSort)+1) / float(len(xSort) + 1)*100
+ xSortLst.append(xSort)
+ if legendLst is None:
+ legStr = None
+ else:
+ legStr = legendLst[k]
+ if ref is not None:
+ if ref is '121':
+ yRef = yRank
+ elif ref is 'norm':
+ yRef = scipy.stats.norm.cdf(xSort, 0, 1)
+ rmse = np.sqrt(((xSort - yRef)**2).mean())
+ ksd = np.max(np.abs(xSort - yRef))
+ rmseLst.append(rmse)
+ ksdLst.append(ksd)
+ if showDiff is 'RMSE':
+ legStr = legStr + ' RMSE=' + '%.3f' % rmse
+ elif showDiff is 'KS':
+ legStr = legStr + ' KS=' + '%.3f' % ksd
+ ax.plot(yRank, xSort, color=cLst[k], label=legStr, linestyle=linespec[k])
+ ax.grid(b=True)
+ if xlim is not None:
+ ax.set(xlim=xlim)
if ref is '121':
ax.plot([0, 1], [0, 1], 'k', label='y=x')
if ref is 'norm':
@@ -422,15 +912,22 @@ def plotCDF(xLst,
normCdf = scipy.stats.norm.cdf(xNorm, 0, 1)
ax.plot(xNorm, normCdf, 'k', label='Gaussian')
if legendLst is not None:
- ax.legend(loc='best')
- out = {'xSortLst': xSortLst, 'rmseLst': rmseLst, 'ksdLst': ksdLst}
- return fig, ax, out
+ ax.legend(loc='best', frameon=False)
+ # out = {'xSortLst': xSortLst, 'rmseLst': rmseLst, 'ksdLst': ksdLst}
+ return fig, ax
-def flatData(x):
+def flatData(x, sortOpt=0):
+ # sortOpt: 0: small to large, 1: large to small, -1: no sort
xArrayTemp = x.flatten()
xArray = xArrayTemp[~np.isnan(xArrayTemp)]
- xSort = np.sort(xArray)
+ if sortOpt == 0:
+ xSort = np.sort(xArray)
+ elif sortOpt == 1:
+ xSort = np.sort(xArray)[::-1]
+ elif sortOpt == -1:
+ xSort = xArray
+
return (xSort)
diff --git a/hydroDL/post/stat.py b/hydroDL/post/stat.py
index 773aea3..58bb82c 100644
--- a/hydroDL/post/stat.py
+++ b/hydroDL/post/stat.py
@@ -1,5 +1,6 @@
import numpy as np
import scipy.stats
+from hydroDL.master.master import calFDC
keyLst = ['Bias', 'RMSE', 'ubRMSE', 'Corr']
@@ -16,8 +17,20 @@ def statError(pred, target):
predAnom = pred - predMean
targetAnom = target - targetMean
ubRMSE = np.sqrt(np.nanmean((predAnom - targetAnom)**2, axis=1))
- # rho
+ # FDC metric
+ predFDC = calFDC(pred)
+ targetFDC = calFDC(target)
+ FDCRMSE = np.sqrt(np.nanmean((predFDC - targetFDC) ** 2, axis=1))
+ # rho R2 NSE
Corr = np.full(ngrid, np.nan)
+ R2 = np.full(ngrid, np.nan)
+ NSE = np.full(ngrid, np.nan)
+ PBiaslow = np.full(ngrid, np.nan)
+ PBiashigh = np.full(ngrid, np.nan)
+ PBias = np.full(ngrid, np.nan)
+ PBiasother = np.full(ngrid, np.nan)
+ KGE = np.full(ngrid, np.nan)
+ KGE12 = np.full(ngrid, np.nan)
for k in range(0, ngrid):
x = pred[k, :]
y = target[k, :]
@@ -25,6 +38,40 @@ def statError(pred, target):
if ind.shape[0] > 0:
xx = x[ind]
yy = y[ind]
- Corr[k] = scipy.stats.pearsonr(xx, yy)[0]
- outDict = dict(Bias=Bias, RMSE=RMSE, ubRMSE=ubRMSE, Corr=Corr)
+ # percent bias
+ PBias[k] = np.sum(xx - yy) / np.sum(yy) * 100
+
+ # FHV the peak flows bias 2%
+ # FLV the low flows bias bottom 30%, log space
+ pred_sort = np.sort(xx)
+ target_sort = np.sort(yy)
+ indexlow = round(0.3 * len(pred_sort))
+ indexhigh = round(0.98 * len(pred_sort))
+ lowpred = pred_sort[:indexlow]
+ highpred = pred_sort[indexhigh:]
+ otherpred = pred_sort[indexlow:indexhigh]
+ lowtarget = target_sort[:indexlow]
+ hightarget = target_sort[indexhigh:]
+ othertarget = target_sort[indexlow:indexhigh]
+ PBiaslow[k] = np.sum(lowpred - lowtarget) / np.sum(lowtarget) * 100
+ PBiashigh[k] = np.sum(highpred - hightarget) / np.sum(hightarget) * 100
+ PBiasother[k] = np.sum(otherpred - othertarget) / np.sum(othertarget) * 100
+
+ if ind.shape[0] > 1:
+ # Theoretically at least two points for correlation
+ Corr[k] = scipy.stats.pearsonr(xx, yy)[0]
+ yymean = yy.mean()
+ yystd = np.std(yy)
+ xxmean = xx.mean()
+ xxstd = np.std(xx)
+ KGE[k] = 1 - np.sqrt((Corr[k]-1)**2 + (xxstd/yystd-1)**2 + (xxmean/yymean-1)**2)
+ KGE12[k] = 1 - np.sqrt((Corr[k] - 1) ** 2 + ((xxstd*yymean)/ (yystd*xxmean) - 1) ** 2 + (xxmean / yymean - 1) ** 2)
+ SST = np.sum((yy-yymean)**2)
+ SSReg = np.sum((xx-yymean)**2)
+ SSRes = np.sum((yy-xx)**2)
+ R2[k] = 1-SSRes/SST
+ NSE[k] = 1-SSRes/SST
+
+ outDict = dict(Bias=Bias, RMSE=RMSE, ubRMSE=ubRMSE, Corr=Corr, R2=R2, NSE=NSE,
+ FLV=PBiaslow, FHV=PBiashigh, PBias=PBias, PBiasother=PBiasother, KGE=KGE, KGE12=KGE12, fdcRMSE=FDCRMSE)
return outDict
diff --git a/hydroDL/regTest.py b/hydroDL/regTest.py
deleted file mode 100644
index 8b99c15..0000000
--- a/hydroDL/regTest.py
+++ /dev/null
@@ -1,26 +0,0 @@
-import hydroDL
-from hydroDL.data import dbCsv
-from hydroDL.model import rnn, crit, train
-
-df1 = hydroDL.data.dbCsv.DataframeCsv(
- rootDB=hydroDL.pathSMAP['DB_L3_NA'],
- subset='CONUSv4f1',
- tRange=[20150401, 20160401])
-x1 = df1.getData(
- varT=dbCsv.varForcing, varC=dbCsv.varConst, doNorm=True, rmNan=True)
-y1 = df1.getData(varT='SMAP_AM', doNorm=True, rmNan=False)
-nx = x1.shape[-1]
-ny = 2
-model = rnn.CudnnLstmModel(nx=nx, ny=ny, hiddenSize=64)
-lossFun = crit.SigmaLoss()
-model = hydroDL.model.train.trainModel(
- model, x1, y1, lossFun, nEpoch=5, miniBatch=(30, 100))
-
-df2 = hydroDL.data.dbCsv.DataframeCsv(
- rootDB=hydroDL.pathSMAP['DB_L3_NA'],
- subset='CONUSv4f1',
- tRange=[20150401, 20160401])
-x2 = df2.getData(
- varT=dbCsv.varForcing, varC=dbCsv.varConst, doNorm=True, rmNan=True)
-y2 = df2.getData(varT='SMAP_AM', doNorm=True, rmNan=False)
-yp = train.testModel(model, x2)
diff --git a/hydroDL/regTestMaster.py b/hydroDL/regTestMaster.py
deleted file mode 100644
index 0498f0d..0000000
--- a/hydroDL/regTestMaster.py
+++ /dev/null
@@ -1,17 +0,0 @@
-from hydroDL import pathSMAP, master
-import os
-
-optData = master.updateOpt(
- master.default.optDataCsv,
- path=pathSMAP['DB_L3_NA'],
- subset='CONUSv4f1',
- dateRange=[20150401, 20160331])
-optModel = master.default.optLstm
-optLoss = master.default.optLoss
-optTrain = master.default.optTrainSMAP
-out = os.path.join(pathSMAP['Out_L3_Global'], 'regTest')
-masterDict = master.wrapMaster(out, optData, optModel, optLoss, optTrain)
-# master.train(masterDict, overwrite=True)
-
-pred = master.test(
- out, tRange=[20160401, 20170331], subset='CONUSv4f1', epoch=400)
diff --git a/hydroDL/utils/aggregate.py b/hydroDL/utils/aggregate.py
new file mode 100644
index 0000000..915fba9
--- /dev/null
+++ b/hydroDL/utils/aggregate.py
@@ -0,0 +1,149 @@
+# day to year; day to month; month to year
+import numpy as np
+
+def day2year(sy, ey, data, nancont):
+ """
+ :param sy: start year
+ :param ey: end year
+ :param data: input data, row:day, colum: variable
+ :param nancont: the threshold to which control the nan number
+ factor or absolute number
+ :return: yearly data: nyear*nvar
+ """
+ nday, nvar = data.shape
+ nyear = ey - sy + 1
+ testnday = daynum(sy, ey)
+ if nday != testnday:
+ raise Exception('The length of input data is not correct')
+ sindex = 0
+ countyear = 0
+ yeardata = np.full((nyear,nvar), np.nan)
+ for ii in range(sy, ey+1):
+ temp = yearday(ii)
+ if nancont > 1:
+ thresnum = nancont
+ else:
+ thresnum = temp * nancont
+ eindex = sindex+temp
+ tempdata = data[sindex:eindex, :]
+ tempmean = np.nanmean(tempdata, axis=0)
+ # deal with the nan data
+ # if nan number larger than threshold, give yearly data nan
+ nansta = np.sum(np.isnan(tempdata), axis=0)
+ tempmean[nansta>thresnum] = np.nan
+ yeardata[countyear, :] = tempmean
+ countyear = countyear+1
+ sindex = eindex
+ if eindex != nday:
+ raise Exception('Error happened for the aggregation')
+ return yeardata
+
+def day2yearQ(sy, ey, data, nancont, Quantile):
+ """
+ :param sy: start year
+ :param ey: end year
+ :param data: input data, row:day, colum: gage
+ :param nancont: the threshold to which control the nan number
+ factor or absolute number
+ :param Quantile: which quantile to select
+ :return: yearly data at Quantile: nyear*nvar
+ """
+ nday, nvar = data.shape
+ nQ = len(Quantile)
+ nyear = ey - sy + 1
+ testnday = daynum(sy, ey)
+ if nday != testnday:
+ raise Exception('The length of input data is not correct')
+ sindex = 0
+ countyear = 0
+ yeardata = np.full((nyear, nQ, nvar), np.nan)
+ for ii in range(sy, ey+1):
+ temp = yearday(ii)
+ if nancont > 1:
+ thresnum = nancont
+ else:
+ thresnum = temp * nancont
+ eindex = sindex+temp
+ tempdata = data[sindex:eindex, :]
+ # deal with the nan data
+ # if nan number larger than threshold, give yearly data nan
+ nansta = np.sum(np.isnan(tempdata), axis=0)
+ tempQ100 = getQ(tempdata)
+ qind = [x - 1 for x in Quantile]
+ tempQ = tempQ100[qind, :]
+ tempQ[:, nansta>thresnum] = np.nan
+ yeardata[countyear, :, :] = tempQ
+ countyear = countyear+1
+ sindex = eindex
+ if eindex != nday:
+ raise Exception('Error happened for the aggregation')
+ return yeardata
+
+def day2year3d(sy, ey, data, nancont):
+ # data: ngage*ntime*nvariable
+ # yeardata: nyear*ngage*nvariable
+ ngage, nday, nvar = data.shape
+ nyear = ey - sy + 1
+ yeardata = np.full((nyear,ngage, nvar), np.nan)
+ for ii in range(nvar):
+ temp = np.swapaxes(data[:,:,ii], 0, 1)
+ tempyear = day2year(sy, ey, temp, nancont=nancont)
+ yeardata[:, :, ii] = tempyear
+ return yeardata
+
+def day2yearQ3d(sy, ey, data, nancont, Quantile):
+ # data: ngage*ntime*nvariable
+ # yeardata: nyear*ngage*nvariable
+ ngage, nday, nvar = data.shape
+ nyear = ey - sy + 1
+ yeardata = np.full((nyear,ngage, nvar), np.nan)
+ for ii in range(nvar):
+ temp = np.swapaxes(data[:,:,ii], 0, 1)
+ tempyear = day2yearQ(sy, ey, temp, nancont=nancont, Quantile=Quantile)
+ yeardata[:, :, ii] = tempyear[:, 0, :]
+ return yeardata
+
+def daynum(sy, ey):
+ # get the total day number from start to end year
+ Nday = 0
+ for ii in range(sy, ey+1):
+ temp = yearday(ii)
+ Nday = Nday+temp
+ return Nday
+
+def yearday(testyear):
+ # get the day number of input year
+ if (testyear % 4) == 0:
+ if (testyear % 100) == 0 and (testyear % 400) != 0:
+ temp = 365
+ else:
+ temp = 366
+ else:
+ temp = 365
+ return temp
+
+def getQ(data):
+ # get the 100 quantile flow
+ # data = Nday*Ngage
+ # return dataQ = 100*Ngage
+ Nday, Ngrid = data.shape
+ dataQ = np.full([100, Ngrid], np.nan)
+ for ii in range(Ngrid):
+ tempdata0 = data[:, ii]
+ tempdata = tempdata0[~np.isnan(tempdata0)]
+ # deal with no data case for some gages
+ if len(tempdata) == 0:
+ Qflow = np.full(100, np.nan)
+ else:
+ # sort from small to large
+ temp_sort = np.sort(tempdata)
+ # select 100 quantile points
+ Nlen = len(tempdata)
+ ind = np.ceil((np.arange(1, 101) / 100 * Nlen)).astype(int)
+ Qflow = temp_sort[ind-1]
+ if len(Qflow) != 100:
+ raise Exception('unknown assimilation variable')
+ else:
+ dataQ[:, ii] = Qflow
+
+ return dataQ
\ No newline at end of file
diff --git a/hydroDL/utils/email.py b/hydroDL/utils/email.py
index e0f527f..107b2ee 100644
--- a/hydroDL/utils/email.py
+++ b/hydroDL/utils/email.py
@@ -1,7 +1,7 @@
import smtplib, ssl
-def sendEmail(subject, text, receiver='geofkwai@gmail.com'):
+def sendEmail(subject, text, receiver='dpfeng201@gmail.com'):
sender = 'fkwai.public@gmail.com'
password = 'fkwai0323'
context = ssl.create_default_context()
diff --git a/hydroDL/utils/time.py b/hydroDL/utils/time.py
index a03dc26..78789c9 100644
--- a/hydroDL/utils/time.py
+++ b/hydroDL/utils/time.py
@@ -30,3 +30,4 @@ def tRange2Array(tRange, *, step=np.timedelta64(1, 'D')):
def intersect(tLst1, tLst2):
C, ind1, ind2 = np.intersect1d(tLst1, tLst2, return_indices=True)
return ind1, ind2
+
diff --git a/kuai-package.pth b/kuai-package.pth
index 1ab5889..5ba2d35 100644
--- a/kuai-package.pth
+++ b/kuai-package.pth
@@ -1,2 +1,2 @@
-/home/kxf227/work/GitHUB/hydroDL-dev/
+/home/kxf227/work/GitHUB/pyRnnSMAP/
diff --git a/repoenv.yml b/repoenv.yml
new file mode 100644
index 0000000..ba05060
--- /dev/null
+++ b/repoenv.yml
@@ -0,0 +1,304 @@
+name: mhpihydrodl
+channels:
+ - pytorch
+ - defaults
+dependencies:
+ - _ipyw_jlab_nb_ext_conf=0.1.0=py36_0
+ - alabaster=0.7.12=py36_0
+ - anaconda-client=1.7.2=py36_0
+ - anaconda-navigator=1.9.7=py36_0
+ - anaconda-project=0.8.2=py36_0
+ - asn1crypto=0.24.0=py36_0
+ - astroid=2.2.5=py36_0
+ - astropy=3.1.2=py36h7b6447c_0
+ - atomicwrites=1.3.0=py36_1
+ - attrs=19.1.0=py36_1
+ - babel=2.6.0=py36_0
+ - backcall=0.1.0=py36_0
+ - backports=1.0=py36_1
+ - backports.os=0.1.1=py36_0
+ - backports.shutil_get_terminal_size=1.0.0=py36_2
+ - basemap=1.2.0=py36h705c2d8_0
+ - beautifulsoup4=4.7.1=py36_1
+ - bitarray=0.9.0=py36h7b6447c_0
+ - bkcharts=0.2=py36_0
+ - blas=1.0=mkl
+ - blaze=0.11.3=py36_0
+ - bleach=3.1.0=py36_0
+ - blosc=1.15.0=hd408876_0
+ - bokeh=1.1.0=py36_0
+ - boto=2.49.0=py36_0
+ - bottleneck=1.2.1=py36h035aef0_1
+ - bzip2=1.0.6=h14c3975_5
+ - ca-certificates=2019.1.23=0
+ - cairo=1.14.12=h8948797_3
+ - certifi=2019.3.9=py36_0
+ - cffi=1.12.3=py36h2e261b9_0
+ - chardet=3.0.4=py36_1
+ - click=7.0=py36_0
+ - cloudpickle=0.8.1=py_0
+ - clyent=1.2.2=py36_1
+ - colorama=0.4.1=py36_0
+ - conda=4.6.14=py36_0
+ - conda-build=3.17.8=py36_0
+ - conda-env=2.6.0=1
+ - conda-verify=3.1.1=py36_0
+ - contextlib2=0.5.5=py36_0
+ - cryptography=2.6.1=py36h1ba5d50_0
+ - cuda80=1.0=h205658b_0
+ - cudatoolkit=10.0.130=0
+ - cudnn=7.3.1=cuda10.0_0
+ - curl=7.64.1=hbc83047_0
+ - cycler=0.10.0=py36_0
+ - cython=0.29.7=py36he6710b0_0
+ - cytoolz=0.9.0.1=py36h14c3975_1
+ - dask=1.2.0=py_0
+ - dask-core=1.2.0=py_0
+ - datashape=0.5.4=py36_1
+ - dbus=1.13.6=h746ee38_0
+ - decorator=4.4.0=py36_1
+ - defusedxml=0.6.0=py_0
+ - distributed=1.27.1=py36_0
+ - docutils=0.14=py36_0
+ - entrypoints=0.3=py36_0
+ - et_xmlfile=1.0.1=py36_0
+ - expat=2.2.6=he6710b0_0
+ - fastcache=1.0.2=py36h14c3975_2
+ - filelock=3.0.10=py36_0
+ - flask=1.0.2=py36_1
+ - flask-cors=3.0.7=py36_0
+ - fontconfig=2.13.0=h9420a91_0
+ - freetype=2.9.1=h8a8886c_1
+ - fribidi=1.0.5=h7b6447c_0
+ - future=0.17.1=py36_0
+ - geos=3.6.2=heeff764_2
+ - get_terminal_size=1.0.0=haa9412d_0
+ - gevent=1.4.0=py36h7b6447c_0
+ - glib=2.56.2=hd408876_0
+ - glob2=0.6=py36_1
+ - gmp=6.1.2=h6c8ec71_1
+ - gmpy2=2.0.8=py36h10f8cd9_2
+ - graphite2=1.3.13=h23475e2_0
+ - greenlet=0.4.15=py36h7b6447c_0
+ - gst-plugins-base=1.14.0=hbbd80ab_1
+ - gstreamer=1.14.0=hb453b48_1
+ - h5py=2.9.0=py36h7918eee_0
+ - harfbuzz=1.8.8=hffaf4a1_0
+ - hdf5=1.10.4=hb1b8bf9_0
+ - heapdict=1.0.0=py36_2
+ - html5lib=1.0.1=py36_0
+ - icu=58.2=h9c2bf20_1
+ - idna=2.8=py36_0
+ - imageio=2.5.0=py36_0
+ - imagesize=1.1.0=py36_0
+ - importlib_metadata=0.9=py36_0
+ - intel-openmp=2019.3=199
+ - ipykernel=5.1.0=py36h39e3cac_0
+ - ipython=7.5.0=py36h39e3cac_0
+ - ipython_genutils=0.2.0=py36_0
+ - ipywidgets=7.4.2=py36_0
+ - isort=4.3.17=py36_0
+ - itsdangerous=1.1.0=py36_0
+ - jbig=2.1=hdba287a_0
+ - jdcal=1.4.1=py_0
+ - jedi=0.13.3=py36_0
+ - jeepney=0.4=py36_0
+ - jinja2=2.10.1=py36_0
+ - jpeg=9b=h024ee3a_2
+ - jsonschema=3.0.1=py36_0
+ - jupyter=1.0.0=py36_7
+ - jupyter_client=5.2.4=py36_0
+ - jupyter_console=6.0.0=py36_0
+ - jupyter_core=4.4.0=py36_0
+ - jupyterlab=0.35.5=py36hf63ae98_0
+ - jupyterlab_launcher=0.13.1=py36_0
+ - jupyterlab_server=0.2.0=py36_0
+ - keyring=18.0.0=py36_0
+ - kiwisolver=1.1.0=py36he6710b0_0
+ - krb5=1.16.1=h173b8e3_7
+ - lazy-object-proxy=1.3.1=py36h14c3975_2
+ - libarchive=3.3.3=h5d8350f_5
+ - libcurl=7.64.1=h20c2e04_0
+ - libedit=3.1.20181209=hc058e9b_0
+ - libffi=3.2.1=hd88cf55_4
+ - libgcc-ng=8.2.0=hdf63c60_1
+ - libgfortran-ng=7.3.0=hdf63c60_0
+ - liblief=0.9.0=h7725739_2
+ - libpng=1.6.37=hbc83047_0
+ - libsodium=1.0.16=h1bed415_0
+ - libssh2=1.8.2=h1ba5d50_0
+ - libstdcxx-ng=8.2.0=hdf63c60_1
+ - libtiff=4.0.10=h2733197_2
+ - libtool=2.4.6=h7b6447c_5
+ - libuuid=1.0.3=h1bed415_2
+ - libxcb=1.13=h1bed415_1
+ - libxml2=2.9.9=he19cac6_0
+ - libxslt=1.1.33=h7d1a2b0_0
+ - llvmlite=0.28.0=py36hd408876_0
+ - locket=0.2.0=py36_1
+ - lxml=4.3.3=py36hefd8a0e_0
+ - lz4-c=1.8.1.2=h14c3975_0
+ - lzo=2.10=h49e0be7_2
+ - markupsafe=1.1.1=py36h7b6447c_0
+ - matplotlib=3.0.3=py36h5429711_0
+ - mccabe=0.6.1=py36_1
+ - mistune=0.8.4=py36h7b6447c_0
+ - mkl=2019.3=199
+ - mkl-service=1.1.2=py36he904b0f_5
+ - mkl_fft=1.0.12=py36ha843d7b_0
+ - mkl_random=1.0.2=py36hd81dba3_0
+ - more-itertools=7.0.0=py36_0
+ - mpc=1.1.0=h10f8cd9_1
+ - mpfr=4.0.1=hdf1c602_3
+ - mpmath=1.1.0=py36_0
+ - msgpack-python=0.6.1=py36hfd86e86_1
+ - multipledispatch=0.6.0=py36_0
+ - navigator-updater=0.2.1=py36_0
+ - nbconvert=5.5.0=py_0
+ - nbformat=4.4.0=py36_0
+ - ncurses=6.1=he6710b0_1
+ - networkx=2.3=py_0
+ - ninja=1.9.0=py36hfd86e86_0
+ - nltk=3.4.1=py36_0
+ - nose=1.3.7=py36_2
+ - notebook=5.7.8=py36_0
+ - numba=0.43.1=py36h962f231_0
+ - numexpr=2.6.9=py36h9e4a6bb_0
+ - numpy=1.16.3=py36h7e9f1db_0
+ - numpy-base=1.16.3=py36hde5b4d6_0
+ - numpydoc=0.9.1=py_0
+ - odo=0.5.1=py36_0
+ - olefile=0.46=py36_0
+ - openpyxl=2.6.2=py_0
+ - openssl=1.1.1b=h7b6447c_1
+ - packaging=19.0=py36_0
+ - pandas=0.24.2=py36he6710b0_0
+ - pandoc=2.2.3.2=0
+ - pandocfilters=1.4.2=py36_1
+ - pango=1.42.4=h049681c_0
+ - parso=0.4.0=py_0
+ - partd=0.3.10=py36_1
+ - patchelf=0.9=he6710b0_3
+ - path.py=12.0.1=py_0
+ - pathlib2=2.3.3=py36_0
+ - patsy=0.5.1=py36_0
+ - pcre=8.43=he6710b0_0
+ - pep8=1.7.1=py36_0
+ - pexpect=4.7.0=py36_0
+ - pickleshare=0.7.5=py36_0
+ - pillow=6.0.0=py36h34e0f95_0
+ - pip=19.1=py36_0
+ - pixman=0.38.0=h7b6447c_0
+ - pkginfo=1.5.0.1=py36_0
+ - pluggy=0.9.0=py36_0
+ - ply=3.11=py36_0
+ - proj4=5.2.0=he6710b0_1
+ - prometheus_client=0.6.0=py36_0
+ - prompt_toolkit=2.0.9=py36_0
+ - psutil=5.6.2=py36h7b6447c_0
+ - ptyprocess=0.6.0=py36_0
+ - py=1.8.0=py36_0
+ - py-lief=0.9.0=py36h7725739_2
+ - pycodestyle=2.5.0=py36_0
+ - pycosat=0.6.3=py36h14c3975_0
+ - pycparser=2.19=py36_0
+ - pycrypto=2.6.1=py36h14c3975_9
+ - pycurl=7.43.0.2=py36h1ba5d50_0
+ - pyflakes=2.1.1=py36_0
+ - pygments=2.3.1=py36_0
+ - pylint=2.3.1=py36_0
+ - pyodbc=4.0.26=py36he6710b0_0
+ - pyopenssl=19.0.0=py36_0
+ - pyparsing=2.4.0=py_0
+ - pyproj=1.9.6=py36h14380d9_0
+ - pyqt=5.9.2=py36h05f1152_2
+ - pyrsistent=0.14.11=py36h7b6447c_0
+ - pyshp=2.1.0=py_0
+ - pysocks=1.6.8=py36_0
+ - pytables=3.5.1=py36h71ec239_0
+ - pytest=4.4.1=py36_0
+ - pytest-arraydiff=0.3=py36h39e3cac_0
+ - pytest-astropy=0.5.0=py36_0
+ - pytest-doctestplus=0.3.0=py36_0
+ - pytest-openfiles=0.3.2=py36_0
+ - pytest-remotedata=0.3.1=py36_0
+ - python=3.6.8=h0371630_0
+ - python-dateutil=2.8.0=py36_0
+ - python-libarchive-c=2.8=py36_6
+ - pytorch=1.0.1=cuda100py36he554f03_0
+ - pytz=2019.1=py_0
+ - pywavelets=1.0.3=py36hdd07704_1
+ - pyyaml=5.1=py36h7b6447c_0
+ - pyzmq=18.0.0=py36he6710b0_0
+ - qt=5.9.7=h5867ecd_1
+ - qtawesome=0.5.7=py36_1
+ - qtconsole=4.4.3=py36_0
+ - qtpy=1.7.0=py36_1
+ - readline=7.0=h7b6447c_5
+ - requests=2.21.0=py36_0
+ - rope=0.14.0=py_0
+ - ruamel_yaml=0.15.46=py36h14c3975_0
+ - scikit-image=0.15.0=py36he6710b0_0
+ - scikit-learn=0.20.3=py36hd81dba3_0
+ - scipy=1.2.1=py36h7c811a0_0
+ - seaborn=0.9.0=py36_0
+ - secretstorage=3.1.1=py36_0
+ - send2trash=1.5.0=py36_0
+ - setuptools=41.0.1=py36_0
+ - simplegeneric=0.8.1=py36_2
+ - singledispatch=3.4.0.3=py36_0
+ - sip=4.19.8=py36hf484d3e_0
+ - six=1.12.0=py36_0
+ - snappy=1.1.7=hbae5bb6_3
+ - snowballstemmer=1.2.1=py36_0
+ - sortedcollections=1.1.2=py36_0
+ - sortedcontainers=2.1.0=py36_0
+ - soupsieve=1.8=py36_0
+ - sphinx=2.0.1=py_0
+ - sphinxcontrib=1.0=py36_1
+ - sphinxcontrib-applehelp=1.0.1=py_0
+ - sphinxcontrib-devhelp=1.0.1=py_0
+ - sphinxcontrib-htmlhelp=1.0.2=py_0
+ - sphinxcontrib-jsmath=1.0.1=py_0
+ - sphinxcontrib-qthelp=1.0.2=py_0
+ - sphinxcontrib-serializinghtml=1.1.3=py_0
+ - sphinxcontrib-websupport=1.1.0=py36_1
+ - spyder=3.3.4=py36_0
+ - spyder-kernels=0.4.4=py36_0
+ - sqlalchemy=1.3.3=py36h7b6447c_0
+ - sqlite=3.28.0=h7b6447c_0
+ - statsmodels=0.9.0=py36h035aef0_0
+ - sympy=1.4=py36_0
+ - tblib=1.3.2=py36_0
+ - terminado=0.8.2=py36_0
+ - testpath=0.4.2=py36_0
+ - tk=8.6.8=hbc83047_0
+ - toolz=0.9.0=py36_0
+ - torchvision=0.2.1=py36_0
+ - tornado=6.0.2=py36h7b6447c_0
+ - tqdm=4.31.1=py36_1
+ - traitlets=4.3.2=py36_0
+ - typed-ast=1.3.4=py36h7b6447c_0
+ - typing=3.6.4=py36_0
+ - unicodecsv=0.14.1=py36_0
+ - unixodbc=2.3.7=h14c3975_0
+ - urllib3=1.24.2=py36_0
+ - wcwidth=0.1.7=py36_0
+ - webencodings=0.5.1=py36_1
+ - werkzeug=0.15.2=py_0
+ - wheel=0.33.1=py36_0
+ - widgetsnbextension=3.4.2=py36_0
+ - wrapt=1.11.1=py36h7b6447c_0
+ - wurlitzer=1.0.2=py36_0
+ - xlrd=1.2.0=py36_0
+ - xlsxwriter=1.1.7=py_0
+ - xlwt=1.3.0=py36_0
+ - xz=5.2.4=h14c3975_4
+ - yaml=0.1.7=had09818_2
+ - zeromq=4.3.1=he6710b0_3
+ - zict=0.1.4=py36_0
+ - zipp=0.3.3=py36_1
+ - zlib=1.2.11=h7b6447c_3
+ - zstd=1.3.7=h0b5b093_0
+ - pip:
+ - dictdiffer==0.8.0