diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..856f418 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,23 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "profsea-v3" + schedule: + interval: "weekly" + day: "monday" + groups: + actions-updates: + patterns: + - "*" + + - package-ecosystem: "pip" + directory: "/" + target-branch: "profsea-v3" + schedule: + interval: "weekly" + day: "monday" + groups: + python-dependencies: + patterns: + - "*" \ No newline at end of file diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml new file mode 100644 index 0000000..f8bedbe --- /dev/null +++ b/.github/workflows/deploy-docs.yml @@ -0,0 +1,68 @@ +# (C) Crown Copyright 2025, Met Office. +# The LICENSE file contains full licensing details. +name: Documentation + +on: + # Runs on pushes targeting the default branch. + push: + branches: ["profsea-v3"] + + # Allows you to run this workflow manually from the Actions tab. + workflow_dispatch: + +# Use a login shell so the Conda environment is activated. +defaults: + run: + shell: bash -leo pipefail {0} + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages. +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, +# skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs +# as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v6 + + - name: Setup GitHub Pages + uses: actions/configure-pages@v6 + + - uses: mamba-org/setup-micromamba@v3 + with: + environment-file: docs-environment.yml + environment-name: profsea-climate-docs + cache-environment: true + cache-environment-key: env-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('docs-environment.yml') }} + + - name: Build with Sphinx + run: make --directory=docs html + + - name: Upload artifact + uses: actions/upload-pages-artifact@v4 + with: + path: docs/build/html + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml new file mode 100644 index 0000000..a1ca01e --- /dev/null +++ b/.github/workflows/pytest.yml @@ -0,0 +1,38 @@ +name: Pytest Suite + +on: + push: + branches: + - 'profsea-v3' + + pull_request: + branches: + - profsea-v3 + +jobs: + test: + name: Run Unit Tests + runs-on: ubuntu-latest + + steps: + # 1. Grab the repository code + - name: Checkout Repository + uses: actions/checkout@v4 + + # 2. Set up the Python environment + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" # Adjust this to match your project's target version + cache: 'pip' # Speeds up subsequent runs + + # 3. Install the package and test dependencies + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -e ".[test]" + + # 4. Execute the test suite + - name: Run Pytest + run: | + pytest tests/ -v \ No newline at end of file diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml new file mode 100644 index 0000000..c4caf3d --- /dev/null +++ b/.github/workflows/ruff.yml @@ -0,0 +1,35 @@ +name: Ruff Linting + +on: + push: + branches: + - 'profsea-v3' + pull_request: + branches: + - profsea-v3 + +jobs: + ruff: + name: Code Quality (Ruff) + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.10" + cache: 'pip' + + - name: Install Ruff + run: | + python -m pip install --upgrade pip + pip install ruff + + - name: Run Ruff Linter + run: ruff check --output-format=github . + + - name: Run Ruff Formatter + run: ruff format --check . \ No newline at end of file diff --git a/.gitignore b/.gitignore index 1bedc6d..520e54a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,12 @@ # Folders *__pycache__* profsea.egg-info +data/ +.pytest_cache/ +.ipynb_checkpoints/ +.ruff_cache/ +profsea/profsea-assets/ +# Ignore the documentation build directory +docs/build +*.DS_Store diff --git a/ProFSea-environment.lock b/ProFSea-environment.lock deleted file mode 100644 index e00b900..0000000 --- a/ProFSea-environment.lock +++ /dev/null @@ -1,99 +0,0 @@ -# This file may be used to create an environment using: -# $ conda create --name ProFSea-env --file ProFSea-environment.lock -# platform: linux-64 -@EXPLICIT -https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.11.17-hbcca054_0.conda -https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda -https://conda.anaconda.org/conda-forge/linux-64/libgfortran-3.0.0-1.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_3.conda -https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_3.conda -https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_3.conda -https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.25.0-hd590300_0.conda -https://conda.anaconda.org/conda-forge/linux-64/geos-3.9.1-h9c3ff4c_2.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda -https://conda.anaconda.org/conda-forge/linux-64/icu-67.1-he1b5a44_0.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.19-hd590300_0.conda -https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda -https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda -https://conda.anaconda.org/conda-forge/linux-64/libffi-3.3-h58526e2_2.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_3.conda -https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda -https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_0.conda -https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda -https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-h59595ed_2.conda -https://conda.anaconda.org/conda-forge/linux-64/openssl-1.1.1w-hd590300_0.conda -https://conda.anaconda.org/conda-forge/linux-64/xxhash-0.8.2-hd590300_0.conda -https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda -https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_3.conda -https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.51.0-hdcd2b5c_0.conda -https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda -https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.44.2-h2797004_0.conda -https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.10.0-haa6b8db_3.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/libudunits2-2.2.28-h40f5838_3.conda -https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda -https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda -https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda -https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda -https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda -https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.10.2-hc401514_3.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-hf9c8cef_0.conda -https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.26-pthreads_h413a1c8_0.conda -https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-ha9c0a0a_2.conda -https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.44.2-h2c6b66d_0.conda -https://conda.anaconda.org/conda-forge/linux-64/udunits2-2.2.28-h40f5838_3.conda -https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-21_linux64_openblas.conda -https://conda.anaconda.org/conda-forge/linux-64/libcurl-7.87.0-h6312ad2_0.conda -https://conda.anaconda.org/conda-forge/linux-64/libwebp-1.3.2-h658648e_1.conda -https://repo.anaconda.com/pkgs/main/linux-64/python-3.7.7-hcff3b4d_5.conda -https://conda.anaconda.org/conda-forge/noarch/certifi-2023.11.17-pyhd8ed1ab_0.conda -https://conda.anaconda.org/conda-forge/noarch/cloudpickle-2.2.1-pyhd8ed1ab_0.conda -https://conda.anaconda.org/conda-forge/linux-64/curl-7.87.0-h6312ad2_0.conda -https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2 -https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.1.0-pyhd8ed1ab_0.conda -https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-21_linux64_openblas.conda -https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-21_linux64_openblas.conda -https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 -https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda -https://repo.anaconda.com/pkgs/main/linux-64/proj-8.0.1-h1217e81_0.conda -https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.1-pyhd8ed1ab_0.conda -https://conda.anaconda.org/conda-forge/noarch/pyshp-2.3.1-pyhd8ed1ab_0.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.7-2_cp37m.tar.bz2 -https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda -https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 -https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.1-pyhd8ed1ab_0.conda -https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.7.1-pyha770c72_0.conda -https://conda.anaconda.org/conda-forge/noarch/wheel-0.42.0-pyhd8ed1ab_0.conda -https://conda.anaconda.org/conda-forge/linux-64/antlr-python-runtime-4.7.2-py37h89c1867_1003.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.6.1-h5e45101_3.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.1-py37h540881e_1.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/numpy-1.21.6-py37h976b520_0.tar.bz2 -https://conda.anaconda.org/conda-forge/noarch/partd-1.4.1-pyhd8ed1ab_0.conda -https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.2.1-py37hcc46e62_6.tar.bz2 -https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/python-xxhash-2.0.0-py37h5e8e339_1.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0-py37h540881e_4.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/setuptools-59.8.0-py37h89c1867_1.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/tornado-6.2-py37h540881e_0.tar.bz2 -https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.7.1-hd8ed1ab_0.conda -https://conda.anaconda.org/conda-forge/linux-64/cftime-1.6.2-py37hc105733_0.tar.bz2 -https://conda.anaconda.org/conda-forge/noarch/dask-core-2022.2.0-pyhd8ed1ab_0.tar.bz2 -https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.3-pyhd8ed1ab_0.conda -https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.4-py37h7cecad7_0.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/pandas-1.3.5-py37he8f5f7f_0.tar.bz2 -https://conda.anaconda.org/conda-forge/noarch/pip-23.3.2-pyhd8ed1ab_0.conda -https://conda.anaconda.org/conda-forge/linux-64/scipy-1.7.3-py37hf2a6cf1_0.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/shapely-1.8.0-py37h48c49eb_0.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/cf-units-3.0.1-py37hb1e94ed_2.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.2.2-py37h1d35a4c_1.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/netcdf4-1.4.1-py37ha292673_200.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/cartopy-0.20.0-py37hbe109c4_0.tar.bz2 -https://conda.anaconda.org/conda-forge/linux-64/matplotlib-3.2.2-1.tar.bz2 -https://conda.anaconda.org/conda-forge/noarch/iris-3.1.0-pyhd8ed1ab_3.tar.bz2 - diff --git a/ProFSea-environment.yml b/ProFSea-environment.yml deleted file mode 100755 index 2a3e238..0000000 --- a/ProFSea-environment.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: ProFSea-env -channels: - - conda-forge -dependencies: - - numpy - - pandas - - python=3.7.7 - - scipy - - pyyaml - - netcdf4 - - matplotlib - - libwebp>=1.3.2 - - cartopy - - iris \ No newline at end of file diff --git a/README.md b/README.md index b0f37e4..77c5dc9 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,35 @@ -# ProFSea-tool +# ProFSea logo -[![DOI](https://zenodo.org/badge/713453340.svg)](https://zenodo.org/doi/10.5281/zenodo.10255467) +[![DOI](https://zenodo.org/badge/713453340.svg)](https://zenodo.org/doi/10.5281/zenodo.10255467) [![tests](https://img.shields.io/github/actions/workflow/status/MetOffice/ProFSea-tool/pytest.yml?branch=profsea-v3&label=Tests&logo=github&logoColor=white)](https://github.com/MetOffice/ProFSea-tool/actions/workflows/pytest.yml) [![lint](https://img.shields.io/github/actions/workflow/status/MetOffice/ProFSea-tool/ruff.yml?branch=profsea-v3&label=Linting)](https://github.com/MetOffice/ProFSea-tool/actions/workflows/ruff.yml) [![docs](https://img.shields.io/github/actions/workflow/status/MetOffice/ProFSea-tool/deploy-docs.yml?branch=profsea-v3&label=Documentation)](https://github.com/MetOffice/ProFSea-tool/actions/workflows/deploy-docs.yml) [![ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json&label=Code%20style)](https://github.com/astral-sh/ruff) -The ProFSea tool should be cited as: Perks, R., & Weeks, J. (2023). MetOffice/ProFSea-tool: v1.0.0 (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.10255468 +ProFSea is sea-level rise simulator based on statistical emulations of physical modelling experiments and lines of evidence from the IPCC and across the literature. It's modular, easy to setup and self-contained - all you need is global mean surface temperature and ocean heat content forcing anomalies, using any baseline period, and you're good to go. -## User Guide -A user guide summarising the underpinning science on sea-level projections and providing guidance on how to set-up and run the Met Office Projecting Future Sea Level (ProFSea) tool can be found here: [10.5281/zenodo.10134070](https://zenodo.org/doi/10.5281/zenodo.10134070). +We simulate sea-level change contributions from: -Users are advised to read this guide before using any products as it describes the data availability, the main outputs from the tool and the caveats and limitations. +- Antartic Ice Sheet 🇦🇶 +- Greenland Ice Sheet 🧊 +- Glacier melt 🏔️ +- Thermal expansion 🌡️ +- Landwater ⛰️ -The ProFSea tool user guide should be cited as: Perks, R. J. (2023). Met Office Projecting Future Sea Level (ProFSea) tool - User Guide (1.1). Met Office. https://doi.org/10.5281/zenodo.10245409 +ProFSea can calculate projections of both global mean sea-level rise and spatially-resolved sea-level change fields: + +

+ output +

+ +All the data required to run the regionalisation module can be found here: [![DOI](https://doi.org/badge/10.5281/20427061.svg)](https://doi.org/10.5281/zenodo.20427061) + +## Developments + +Ongoing developments include: + +- [x] 🛠️ Full spatial field projections of regional sea-level change +- [x] 🛠️ Use any input climate forcing to produce ProFSea projections +- [x] 🛠️ Updates to sea-level components based on the latest evidence in the literature +- [ ] 🛠️ Observational constraints to projection ensembles +- [x] 🛠️ Structural enhancements such as updated workflows, GitHub Actions and general reformatting +- [x] 🛠️ Full code documentation ## Contributors Several people have contributed to the development of the ProFSea tool and User Guide documentation, namely: Rachel Perks, Jacob Cheung, Benjamin Harrison, Katie Hodge, Mathew Palmer, Michael Sanderson, Hamish Steptoe, Jennifer Weeks and Gregory Munday. diff --git a/docs-environment.yml b/docs-environment.yml new file mode 100644 index 0000000..2589e29 --- /dev/null +++ b/docs-environment.yml @@ -0,0 +1,9 @@ +name: profsea-sphinx-docs + +dependencies: + - pre-commit + - pydata-sphinx-theme + - sphinx + - sphinx-design + - nbsphinx + - pandoc diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..d0c3cbf --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = source +BUILDDIR = build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/docs/make.bat b/docs/make.bat new file mode 100644 index 0000000..747ffb7 --- /dev/null +++ b/docs/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=source +set BUILDDIR=build + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +if "%1" == "" goto help + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/docs/source/_static/.gitkeep b/docs/source/_static/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/docs/source/_static/custom.css b/docs/source/_static/custom.css new file mode 100644 index 0000000..61ba797 --- /dev/null +++ b/docs/source/_static/custom.css @@ -0,0 +1,3 @@ +img.transparent-logo { + background-color: transparent !important; +} \ No newline at end of file diff --git a/docs/source/_static/favicon.png b/docs/source/_static/favicon.png new file mode 100644 index 0000000..aaf3849 Binary files /dev/null and b/docs/source/_static/favicon.png differ diff --git a/docs/source/_static/logo.png b/docs/source/_static/logo.png new file mode 100644 index 0000000..aaf3849 Binary files /dev/null and b/docs/source/_static/logo.png differ diff --git a/docs/source/_static/mo-logo-dark.png b/docs/source/_static/mo-logo-dark.png new file mode 100644 index 0000000..18a33b7 Binary files /dev/null and b/docs/source/_static/mo-logo-dark.png differ diff --git a/docs/source/_static/mo-logo-light.png b/docs/source/_static/mo-logo-light.png new file mode 100644 index 0000000..7ab4da0 Binary files /dev/null and b/docs/source/_static/mo-logo-light.png differ diff --git a/docs/source/_static/profsea-logo-dark.png b/docs/source/_static/profsea-logo-dark.png new file mode 100644 index 0000000..a355518 Binary files /dev/null and b/docs/source/_static/profsea-logo-dark.png differ diff --git a/docs/source/_static/profsea-logo-light.png b/docs/source/_static/profsea-logo-light.png new file mode 100644 index 0000000..6a55db7 Binary files /dev/null and b/docs/source/_static/profsea-logo-light.png differ diff --git a/docs/source/_templates/mo_logo.html b/docs/source/_templates/mo_logo.html new file mode 100644 index 0000000..01fd91a --- /dev/null +++ b/docs/source/_templates/mo_logo.html @@ -0,0 +1,7 @@ +
+ +
+
\ No newline at end of file diff --git a/docs/source/api_reference.rst b/docs/source/api_reference.rst new file mode 100644 index 0000000..8eb6a97 --- /dev/null +++ b/docs/source/api_reference.rst @@ -0,0 +1,53 @@ +API Reference +============= + +This page exposes selected Python API docs generated from in-code docstrings. + +Core Models +----------- + +.. automodule:: profsea.components.core.global_model + :members: Global + :undoc-members: + :show-inheritance: + +.. automodule:: profsea.components.core.spatial_model + :members: Spatial, fetch_zenodo_fingerprints + :undoc-members: + :show-inheritance: + +.. automodule:: profsea.components.core.state + :members: ClimateState, SpatialState + +.. automodule:: profsea.components.core.time_projection + :members: time_projection + +Global Components +----------------- + +.. automodule:: profsea.components.global_.antarctica + :members: AntarcticaISMIP6, AntarcticaDynAR5, AntarcticaSMBAR5 + +.. automodule:: profsea.components.global_.greenland + :members: GreenlandAR6, GreenlandSMBAR5, GreenlandDynAR5, load_greenland_calibration + +.. automodule:: profsea.components.global_.glacier + :members: Glacier + +.. automodule:: profsea.components.global_.expansion + :members: ThermalExpansion + +.. automodule:: profsea.components.global_.landwater + :members: LandwaterAR6, LandwaterAR5, load_landwater_projection + +Spatial Components +------------------ + +.. automodule:: profsea.components.spatial.fingerprint + :members: Fingerprint + +.. automodule:: profsea.components.spatial.sterodynamic + :members: SterodynamicCMIP6, SterodynamicCMIP5 + +.. automodule:: profsea.components.spatial.gia + :members: GIA diff --git a/docs/source/conf.py b/docs/source/conf.py new file mode 100644 index 0000000..1536fd7 --- /dev/null +++ b/docs/source/conf.py @@ -0,0 +1,96 @@ +# Configuration file for the Sphinx documentation builder. +# +# For the full list of built-in configuration values, see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +import os +import sys + +sys.path.insert(0, os.path.abspath("../..")) + +# -- Project information ----------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information + +project = "ProFSea" +copyright = "2026, MetOffice" +author = "isabellaascione" +release = "3.0.0" + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +extensions = [ + "sphinx.ext.autodoc", + "sphinx.ext.napoleon", + "nbsphinx", + "sphinx_design", +] + +napoleon_google_docstring = False +napoleon_numpy_docstring = True +napoleon_include_init_with_doc = True +napoleon_include_private_with_doc = False +napoleon_include_special_with_doc = True +napoleon_use_admonition_for_examples = False +napoleon_use_admonition_for_notes = False +napoleon_use_admonition_for_references = False +napoleon_use_ivar = False +napoleon_use_param = True +napoleon_use_rtype = True + +autodoc_mock_imports = [ + "cartopy", + "dask", + "fair", + "matplotlib", + "numcodecs", + "numpy", + "pandas", + "profsea.emulator", + "profsea.plotting_libraries", + "requests", + "rich", + "rich_argparse", + "scipy", + "xarray", +] + +templates_path = ["_templates"] +exclude_patterns = [] + +nbsphinx_prolog = "" +# Allow nbsphinx to find notebooks outside the docs/source directory +nbsphinx_allow_errors = False + + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +html_theme = "pydata_sphinx_theme" +html_theme_options = { + "show_nav_level": 2, + "header_links_before_dropdown": 4, + "secondary_sidebar_items": [], + "navbar_start": ["mo_logo", "navbar-logo"], + "icon_links": [ + { + "name": "GitHub", + "url": "https://github.com/MetOffice/ProFSea-tool", + "icon": "fa-brands fa-square-github", + "type": "fontawesome", + } + ], + "logo": { + "image_light": "_static/profsea-logo-light.png", + "image_dark": "_static/profsea-logo-dark.png", + }, +} +html_sidebars = { + "index": [], # This removes the left sidebar on the landing page + "**": ["search-field", "sidebar-nav-bs", "page-toc"], +} +html_static_path = ["_static"] +html_favicon = "_static/favicon.png" +html_css_files = [ + "custom.css", +] diff --git a/docs/source/development_guide.rst b/docs/source/development_guide.rst new file mode 100644 index 0000000..783f77c --- /dev/null +++ b/docs/source/development_guide.rst @@ -0,0 +1,66 @@ +.. _development_guide: + +Development Guide +====================== + +This is the Development Guide page. + +.. _open-an-issue: + +Open an Issue +------------- +Before forking the repository, open an issue in the main repository to describe the changes you plan to make. This helps maintainers track contributions and provide feedback early. Check with the repository owners what is the name of the development branch you need to use. In this guide, the name used for the development branch is generically indicated as "development_branch_name" + +.. _fork-the-repository: + +Fork the Repository +------------------- +First, create a fork of the repository in your GitHub account: + +1. Go to the repository page on GitHub. +2. Click the **Fork** button in the top-right corner. +3. Select your GitHub account as the destination for the fork. + +.. _clone-your-fork: + +Clone Your Fork +--------------- +Clone your forked repository and switch to the `development_branch_name` branch: + +.. code-block:: bash + + git clone git@github.com:/ProFSea-tool.git + cd ProFSea-tool + git checkout + +Replace ```` with your GitHub username. + +Replace ```` with the development branch name provided by the repository owners + +.. _commit-changes-to-your-fork: + +Commit Changes to Your Fork +--------------------------- +Once you are satisfied with your changes, commit and push them to your fork: + +.. code-block:: bash + + git add . + git commit -m "Adding feature: " + git push origin development_branch_name + +Replace ```` with a short summary of your updates. + +.. _create-a-pull-request: + +Create a Pull Request +--------------------- +To contribute your changes to the main repository: + +1. Go to your forked repository on GitHub. +2. Click the **Pull Request** button. +3. Select the ``development_branch_name`` branch of the main repository as the base branch. +4. Select the ``development_branch_name`` branch of your fork as the compare branch. +5. Add a title and description for your pull request. +6. Click **Create Pull Request**. +7. Assign reviewers to the pull request diff --git a/docs/source/documentation.rst b/docs/source/documentation.rst new file mode 100644 index 0000000..e6b536a --- /dev/null +++ b/docs/source/documentation.rst @@ -0,0 +1,82 @@ +How to update the documentation +======================================== + +This is the page describing how to update the sphinx documentation. + +If you want to update the documentation, follow these steps to ensure that your changes are tested locally before contributing: + +1. Initial Steps +----------------------------------- +First of all you need to open an issue, fork and clone the repository. For detailed instructions, refer to the following sections in the :ref:`Development Guide ` page: + +- :ref:`Open an Issue ` +- :ref:`Fork the Repository ` +- :ref:`Clone Your Fork ` + +2. Set Up the Environment +------------------------- +Ensure you have the required dependencies installed to build the documentation. + +2.1 Create a Conda Environment +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +If you are using Conda, create the environment from the ``docs-environment.yml`` file: + +.. code-block:: bash + + conda env create -f docs-environment.yml + conda activate profsea-sphinx-docs + +2.2 Install Dependencies with Pip (Optional) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +If you are not using Conda, install the dependencies with ``pip``: + +.. code-block:: bash + + pip install sphinx pydata-sphinx-theme + +3. Make Changes to the Documentation +------------------------------------- +Edit or add ``.rst`` files in the ``docs/source`` directory. For example: + +- Update ``index.rst`` to include new pages. +- Modify existing ``.rst`` files to update content. +- Add new ``.rst`` files for additional sections. + +4. Build the Documentation Locally +----------------------------------- +Before committing your changes, build the documentation locally to ensure there are no errors: + +.. code-block:: bash + + cd docs + make html + +This will generate the HTML files in the ``docs/build/html`` directory. Open the ``index.html`` file in your browser to preview the changes: + +.. code-block:: bash + + xdg-open build/html/index.html + +5. Test the Documentation +-------------------------- +- Verify that all links work correctly. +- Ensure the side menu and table of contents are updated. +- Check for any warnings or errors in the terminal output during the build process. + +6. Commit Changes and Create a Pull Request +--------------------------------------------- +Once you are satisfied with your changes, commit and push them to your fork. For detailed instructions, +refer to the following sections in the :ref:`Development Guide ` page: +- :ref:`Commit Changes to Your Fork ` +- :ref:`Create a Pull Request ` + +7. Verify Deployment +--------------------- +After your pull request is reviewed and merged, the GitHub Actions workflow will automatically build and deploy the updated documentation. Verify that the changes are live on GitHub Pages: + +1. Go to the **Actions** tab in the main repository. +2. Check the logs for the ``deploy-docs.yml`` workflow to ensure it completed successfully. +3. Visit the GitHub Pages URL to confirm the updates. + +Notes +----- diff --git a/docs/source/index.rst b/docs/source/index.rst new file mode 100644 index 0000000..8c7f871 --- /dev/null +++ b/docs/source/index.rst @@ -0,0 +1,139 @@ +.. title:: ProFSea + +.. grid:: 1 1 2 2 + :margin: 4 4 0 0 + :padding: 0 + + .. grid-item:: + :columns: 12 12 8 8 + + .. rst-class:: display-2 font-weight-bold + + ProFSea + + .. rst-class:: display-8 font-weight-light + + (pronouced "pro-fe-see") + + .. rst-class:: lead + + **The Met Office's modular, accessible, and *fast* sea-level rise simulator based on statistical emulations of physical modelling experiments and lines of evidence from the IPCC and across the literature.** + + .. container:: d-flex gap-3 pt-3 + + .. button-ref:: user_guide + :ref-type: doc + :color: primary + :shadow: + :class: font-weight-bold + + Get Started + + .. button-link:: [https://github.com/MetOffice/ProFSea-tool](https://github.com/MetOffice/ProFSea-tool) + :color: secondary + :shadow: + :outline: + :class: font-weight-bold + + View on GitHub + + .. grid-item:: + :columns: 12 12 4 4 + + .. image:: /_static/logo.png + :alt: ProFSea Logo + :class: align-center transparent-logo + :width: 100% + + +---- + +ProFSea makes complex sea-level rise simulations easy and efficient. All you need is global mean surface temperature and ocean heat content forcing anomalies, using any baseline period, and you're good to go. + +We simulate sea-level change contributions from: + +- Antartic Ice Sheet 🇦🇶 +- Greenland Ice Sheet 🧊 +- Glacier melt 🏔️ +- Thermal expansion 🌡️ +- Landwater ⛰️ + +Quick Install +------------- + +ProFSea is available as a Python package. To install it: + +.. code-block:: bash + + pip install profsea + +.. note:: + ProFSea relies on standard scientific libraries including ``numpy``, ``xarray``, and ``dask``. Check the :doc:`user_guide` for detailed dependency requirements. + +---- + +.. grid:: 1 1 2 2 + :gutter: 2 + + .. grid-item-card:: User Guide + :link: user_guide + :link-type: doc + :class-card: sd-rounded-3 + + Learn how to use ProFSea and run the tutorial notebook. + + .. grid-item-card:: API Reference + :link: api_reference + :link-type: doc + :class-card: sd-rounded-3 + + Detailed descriptions of ProFSea functionality by module. + + .. grid-item-card:: Development & Docs + :link: documentation + :link-type: doc + :class-card: sd-rounded-3 + + Guidelines for contributing code and updating this documentation. + + .. grid-item-card:: References + :link: references + :link-type: doc + :class-card: sd-rounded-3 + + Academic and software references for the project. + +Getting in Touch +---------------- + +Whether you need help getting started with ProFSea, found a bug, want the emulator to be more awesome, or just want to chat about sea-level modelling, you have a few options: + +* **Open an issue** on the `GitHub repository `_ if you find a bug, need a missing feature, or spot a typo in this documentation 👀. +* **Start a discussion** on GitHub for general questions about emulations, statistical methods, or setting up a new experiment. + +Citing ProFSea +-------------- + +If you use ProFSea for your research, teaching, or analysis, please credit the project by citing the relevant academic references. See the :doc:`references` page for the full bibliography, methodology papers, and software DOIs. + +.. toctree:: + :caption: User Guide + :maxdepth: 2 + :hidden: + + user_guide + +.. toctree:: + :caption: Development + :maxdepth: 1 + :hidden: + + documentation + +.. toctree:: + :caption: Reference + :maxdepth: 1 + :hidden: + + api_reference + references \ No newline at end of file diff --git a/docs/source/references.rst b/docs/source/references.rst new file mode 100644 index 0000000..6392322 --- /dev/null +++ b/docs/source/references.rst @@ -0,0 +1,4 @@ +References +========== + +This is the References page. diff --git a/docs/source/user_guide.rst b/docs/source/user_guide.rst new file mode 100644 index 0000000..bb57aed --- /dev/null +++ b/docs/source/user_guide.rst @@ -0,0 +1,16 @@ +User Guide +========== + +This is the User Guide page + +Tutorial Notebook +----------------- + +The worked tutorial notebook is available below: + +.. toctree:: + :maxdepth: 1 + + worked_example + development_guide + documentation diff --git a/docs/source/worked_example.ipynb b/docs/source/worked_example.ipynb new file mode 120000 index 0000000..151d4a5 --- /dev/null +++ b/docs/source/worked_example.ipynb @@ -0,0 +1 @@ +../../profsea/tutorial_notebooks/worked_example.ipynb \ No newline at end of file diff --git a/profsea-env.yml b/profsea-env.yml new file mode 100644 index 0000000..1a9735a --- /dev/null +++ b/profsea-env.yml @@ -0,0 +1,29 @@ +name: profsea +channels: + - conda-forge +dependencies: + - cartopy + - dask + - ipykernel + - iris + - matplotlib + - nbsphinx + - netcdf4 + - numcodecs + - numpy + - pandas + - pandoc + - pre-commit + - pydata-sphinx-theme + - pytest + - python=3.12 + - pyyaml + - regionmask + - requests + - rich + - ruff + - scipy + - sphinx + - sphinx-design + - xarray + - zarr diff --git a/profsea/Falkland_example/data/cmip5/STANLEYII_ij_1x1_coords.csv b/profsea/Falkland_example/data/cmip5/STANLEYII_ij_1x1_coords.csv deleted file mode 100644 index 5971a41..0000000 --- a/profsea/Falkland_example/data/cmip5/STANLEYII_ij_1x1_coords.csv +++ /dev/null @@ -1,25 +0,0 @@ -Location: STANLEY II -Latitude: -51.692 -Longitude: -57.821 -Model,i,j,box_lon,box_lat -ACCESS1-0,302,38,302.0,-51.5 -bcc-csm1-1,303,38,303.0,-51.5 -CNRM-CM5,302,38,302.0,-51.5 -CSIRO-Mk3-6-0,302,38,302.0,-51.5 -CanESM2,302,38,302.0,-51.5 -GFDL-ESM2G,303,38,303.0,-51.5 -GFDL-ESM2M,303,38,303.0,-51.5 -GISS-E2-R,302,38,302.0,-51.5 -HadGEM2-CC,303,38,303.0,-51.5 -HadGEM2-ES,303,38,303.0,-51.5 -inmcm4,303,38,303.0,-51.5 -IPSL-CM5A-LR,302,38,302.0,-51.5 -IPSL-CM5A-MR,302,38,302.0,-51.5 -MIROC-ESM,302,38,302.0,-51.5 -MIROC-ESM-CHEM,302,38,302.0,-51.5 -MIROC5,302,38,302.0,-51.5 -MPI-ESM-LR,302,38,302.0,-51.5 -MPI-ESM-MR,303,38,303.0,-51.5 -MRI-CGCM3,302,38,302.0,-51.5 -NorESM1-M,303,38,303.0,-51.5 -NorESM1-ME,303,38,303.0,-51.5 diff --git a/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp26_projection_2100_global.csv b/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp26_projection_2100_global.csv deleted file mode 100644 index 67d6f48..0000000 --- a/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp26_projection_2100_global.csv +++ /dev/null @@ -1,847 +0,0 @@ -year,percentile,exp,antdyn,antsmb,greendyn,greensmb,glacier,landwater,antnet,greennet,sum -2007,5,0.007747830357402563,0.002729416126385331,-0.00018738857907010236,0.0016894025029614568,0.0014912912156432867,0.009886452928185463,0.0002794466563500464,0.002601555286673829,0.0032219790271483363,0.024319663889400545 -2007,10,0.008736629970371723,0.002749401144683361,-0.0001577381044626236,0.0017016869969666004,0.0015035183168947697,0.01020332332700491,0.00028879407909698784,0.0026430128418724053,0.00324442470446229,0.02562091049621813 -2007,30,0.011505596339702606,0.0028308017645031214,-0.00010631662735249847,0.0017332754796370864,0.001536902622319758,0.01085098460316658,0.0003355311928316951,0.002742401135037653,0.003300822037272155,0.029088137270991864 -2007,33,0.01182605978101492,0.0028428561869077384,-0.0001010399209917523,0.0017402952071279287,0.0015414771623909473,0.01092148456722498,0.0003425417235121131,0.002756573385286174,0.003307720690499991,0.02951855673949467 -2007,50,0.013211064040660858,0.00291229784488678,-7.606841245433316e-05,0.0017701288452371955,0.001567732891999185,0.011307753156870604,0.00038226827746257186,0.002831636473274557,0.0033446088200435042,0.03128627405021689 -2007,67,0.014535723254084587,0.0029822924407199025,-5.334218803909607e-05,0.0017964525613933802,0.0015995744615793228,0.011766890995204449,0.0004219948314130306,0.00290754983203442,0.003383157136850059,0.03291255475152866 -2007,70,0.014775460585951805,0.002995399944484234,-4.9265647248830646e-05,0.0018034722888842225,0.0016066718380898237,0.011866511777043343,0.00042900542030110955,0.0029216647963039577,0.003390827146358788,0.03324935326745617 -2007,90,0.01760701648890972,0.0030842043925076723,-1.9583005268941633e-05,0.0018420804990455508,0.0016821788158267736,0.012778846453875304,0.0004734056710731238,0.0030230686061258893,0.0034707156009972095,0.03646935069991741 -2007,95,0.018689656630158424,0.0031117238104343414,-9.80908266683408e-06,0.0018508550710976124,0.0017289366805925965,0.013186596473678945,0.00048508995678275824,0.003058169371797703,0.0035174950724467633,0.03784863332439272 -2008,5,0.008809786289930344,0.0029567384626716375,-0.00037360007991082966,0.0019223066046833992,0.0015208865283057094,0.009989279322326183,0.0005511200288310647,0.0027049929194618016,0.0035271180677227676,0.026616155130250264 -2008,10,0.00983534287661314,0.0029973755590617657,-0.0003131370758637786,0.0019474038854241371,0.0015460723079741001,0.010526285506784916,0.0005707318778149784,0.002788511075777933,0.0035728064831346273,0.02822620734150405 -2008,30,0.01270724181085825,0.003162417095154524,-0.00020850003056693822,0.0020119398832321167,0.0016136295162141323,0.011656438000500202,0.0006687914719805121,0.0029905064147897065,0.0036875532008707524,0.032324369121852214 -2008,33,0.01303961779922247,0.003186901572626084,-0.00019831673125736415,0.0020262813195586205,0.0016221862751990557,0.011776070110499859,0.0006835003150627017,0.003019230734935263,0.003701493857661262,0.03280145770462695 -2008,50,0.014476108364760876,0.0033285808749496937,-0.00014754774747416377,0.002087231958284974,0.001675595180131495,0.012418901547789574,0.0007668508915230632,0.0031719293037895113,0.003776411642320454,0.03487115509051364 -2008,67,0.01585000939667225,0.003473451046738774,-0.00010184753045905381,0.002141011878848076,0.0017397503834217787,0.013145781224593521,0.0008502015843987465,0.0033291474464931525,0.0038547385041601957,0.03680496705841506 -2008,70,0.016098659485578537,0.0035010041203349827,-9.347584273200482e-05,0.0021553533151745796,0.0017538052052259445,0.013294204790145158,0.000864910485688597,0.0033588339429115877,0.0038700508535839616,0.03719890025313362 -2008,90,0.019035475328564644,0.0036975243128836155,-3.281182216596789e-05,0.0022342305164784193,0.0019061621278524399,0.014723778516054154,0.0009580671321600676,0.003579327036277391,0.004031265224330127,0.04088516818592325 -2008,95,0.02015835978090763,0.003768082708120346,-1.2909322322229855e-05,0.002252157311886549,0.001999214291572571,0.015381129458546638,0.0009825819870457053,0.003664510171802249,0.004125312727410346,0.042551113924855596 -2009,5,0.009925924241542816,0.003181967418640852,-0.0005756449216278269,0.002153712324798107,0.0015587951056659222,0.010254379361867905,0.0008150199428200722,0.002791649312712252,0.003841180296149105,0.029214699009025936 -2009,10,0.011036878451704979,0.0032439231872558594,-0.0004833759739995003,0.002192151267081499,0.0015973133267834783,0.010975790210068226,0.000845813425257802,0.0029193434165790677,0.0039110222132876515,0.03109469817718491 -2009,30,0.014147917740046978,0.0034948461689054966,-0.00032333868439309303,0.0022909934632480145,0.0017007326241582632,0.012485547177493572,0.0009997807210311294,0.0032272590906359255,0.004086900665424764,0.03582932110657566 -2009,33,0.014507969841361046,0.003532136103603989,-0.00030752088059671223,0.002312958473339677,0.0017140804254449904,0.012649044310674071,0.0010228757746517658,0.003271678124292521,0.004108313820324838,0.03635602352733258 -2009,50,0.016064075753092766,0.003748849965631962,-0.00022996746702119708,0.0024063095916062593,0.001796110300347209,0.013508155941963196,0.0011537481332197785,0.0035055707921856083,0.004223189316689968,0.038756343157729134 -2009,67,0.01755238138139248,0.003973476151004434,-0.00015988576342351735,0.0024886783212423325,0.001894370885565877,0.014470420433208349,0.0012846202589571476,0.0037493951733267752,0.004343107922468334,0.04103905962219869 -2009,70,0.01782173477113247,0.004016813402995467,-0.0001469960407121107,0.002510643098503351,0.0019161389209330082,0.014667678158730268,0.0013077154289931059,0.0037959426845191047,0.004366751865018159,0.04149348942155484 -2009,90,0.02100309729576111,0.004339959938079119,-5.453753292385951e-05,0.0026314505375921726,0.002149812411516905,0.016531893424689772,0.0014539845287799835,0.004154370010655839,0.004614380444400013,0.04574705990235089 -2009,95,0.02221948280930519,0.004469077102839947,-2.441359538352117e-05,0.002658906625583768,0.002293102676048875,0.017397857457399368,0.001492476207204163,0.0043016682852794474,0.004758716828655451,0.04771817427390487 -2010,5,0.011036466807126999,0.003405102528631687,-0.0008001990499906242,0.002383620012551546,0.0015909349313005805,0.010370799340307713,0.0010711464565247297,0.0028621499659493566,0.004151605535298586,0.03160007820260944 -2010,10,0.012227976694703102,0.0034890444949269295,-0.0006708314758725464,0.002435928676277399,0.001644184230826795,0.011296790093183517,0.0011140386341139674,0.003039592527784407,0.00424860151251778,0.033805799185938665 -2010,30,0.015564601868391037,0.003828088752925396,-0.00044731363013852395,0.002570436103269458,0.0017893636832013726,0.013248197734355927,0.0013284990563988686,0.0034612940362421796,0.004490448394790292,0.039232348382211055 -2010,33,0.0159507617354393,0.0038785597775131465,-0.00042527844198048115,0.002600326668471098,0.0018074813997372985,0.013455716893076897,0.0013606681022793055,0.0035196542739868164,0.00451978606870398,0.03982664288923843 -2010,50,0.017619702965021133,0.004173104651272297,-0.0003167233517160639,0.0027273616287857294,0.0019220294198021293,0.014552662149071693,0.0015429593622684479,0.0038390401750802994,0.004677285614889115,0.04257657108246349 -2010,67,0.01921592652797699,0.0044823678303509955,-0.00021904123423155397,0.002839451190084219,0.0020598392002284527,0.015747706629335882,0.001725250855088234,0.004175565801674566,0.004843331546289846,0.04520464108645683 -2010,70,0.019504811614751816,0.004542827000841498,-0.00020109109755139798,0.002869341755285859,0.0020889343926683065,0.01599145494401455,0.0017574199009686708,0.004240909416694194,0.004876245697960258,0.04572657800308661 -2010,90,0.02291685715317726,0.005011511035263538,-7.147782889660448e-05,0.0030337399803102016,0.0024167730007320642,0.018289243429899217,0.001961157424375415,0.004756442940561101,0.005221306905150413,0.050585113454144445 -2010,95,0.024221446365118027,0.0052147069945931435,-2.919388862210326e-05,0.0030711032450199127,0.0026162220165133476,0.01937731821089983,0.0020147725008428097,0.0049824361303763,0.0054220715537667274,0.05285678950604051 -2011,5,0.011580809950828552,0.0036261440254747868,-0.0010376267600804567,0.0026120292022824287,0.0016213177586905658,0.0104464590549469,0.0013194996863603592,0.002921492385212332,0.004461290530161932,0.03337878862294019 -2011,10,0.012892026454210281,0.0037327390164136887,-0.0008697424782440066,0.002678736113011837,0.0016900210175663233,0.011570585891604424,0.0013754075625911355,0.0031514297297690064,0.004586647264659405,0.03594331015119678 -2011,30,0.016563870012760162,0.004162145312875509,-0.0005778027116321027,0.002850267803296447,0.0018794205971062183,0.013971872627735138,0.0016549464780837297,0.003692031590617262,0.004897702438756824,0.04218189211678691 -2011,33,0.016988826915621758,0.004226172673515976,-0.0005488611641339958,0.0028883861377835274,0.0019034300930798054,0.014226524513214827,0.0016968772979453206,0.0037631906452588737,0.0049356955301482226,0.04285753955089604 -2011,50,0.018825439736247063,0.004601345397531986,-0.00040720826655160636,0.003050388302654028,0.0020531327463686466,0.015557492151856422,0.001934485393576324,0.004172714667220134,0.00513838604092598,0.046022153706871904 -2011,67,0.020582029595971107,0.005000126007944346,-0.0002795084146782756,0.00319333141669631,0.0022315748501569033,0.016978813726454975,0.002172093605622649,0.004606513801263645,0.005353105859830976,0.04905009061476449 -2011,70,0.02089993841946125,0.0050790454261004925,-0.0002564470923971385,0.003231449518352747,0.0022703062277287245,0.01727275550365448,0.002214024541899562,0.0046934572710597405,0.005396237573586404,0.04964837678708136 -2011,90,0.024654779583215714,0.005712177604436874,-8.722769416635834e-05,0.0034410993102937937,0.00269849575124681,0.019991185516119003,0.0024795865174382925,0.005385389519506135,0.0058442068751901385,0.05521986925741658 -2011,95,0.026090435683727264,0.006004971917718649,-3.080375681747705e-05,0.0034887471701949835,0.002958235563710332,0.021290436387062073,0.0025494713336229324,0.00570445707417093,0.006108361214864999,0.05783235537819564 -2012,5,0.012819323688745499,0.0038450919091701508,-0.0013002261985093355,0.0028389403596520424,0.0016478211618959904,0.010455084359273314,0.0015600797487422824,0.002956699696369469,0.00476907750708051,0.03577534900250612 -2012,10,0.014240577816963196,0.003975007217377424,-0.0010895669693127275,0.0029205738101154566,0.0017339733894914389,0.011796928942203522,0.0016299202106893063,0.003246404812671244,0.0049250290147028865,0.03871398430128466 -2012,30,0.018220558762550354,0.004497014917433262,-0.0007200284744612873,0.0031304885633289814,0.0019729668274521828,0.014697497338056564,0.0019791231025010347,0.003917214984539896,0.005311694426927716,0.04579181682493072 -2012,33,0.018681176006793976,0.004574975022114814,-0.0006830458296462893,0.003177136415615678,0.0020042965188622475,0.014993047341704369,0.002031503478065133,0.004002376226708293,0.005359111120924354,0.04655886352644302 -2012,50,0.020671917125582695,0.005033571273088455,-0.0005045482539571822,0.0033753893803805113,0.0021942530293017626,0.016571104526519775,0.0023283257614821196,0.004505023593083024,0.005610675434581935,0.05013601934479084 -2012,67,0.022575918585062027,0.005526750059798361,-0.0003439585561864078,0.0035503183025866747,0.002418983089737595,0.018236864954233174,0.002625148044899106,0.005040757154347375,0.005878755414159969,0.05357345922326204 -2012,70,0.022920506075024605,0.00562546863220632,-0.00031456921715289354,0.003596966154873371,0.0024673165753483772,0.018579966388642788,0.002677528653293848,0.005150104523636401,0.005933039379306138,0.05424960755917709 -2012,90,0.02699045091867447,0.006441960111260414,-0.0001015606612781994,0.0038535285275429487,0.0030093290843069553,0.021734103560447693,0.003009271342307329,0.006037805491359904,0.006497916067019105,0.06054090707038995 -2012,95,0.028546586632728577,0.00683987233787775,-2.9286128210515647e-05,0.003911837935447693,0.0033414247445762157,0.02325023151934147,0.0030965718906372786,0.006465218681842084,0.006831627967767416,0.0634869208181044 -2013,5,0.014244738966226578,0.004061946179717779,-0.0015966960927471519,0.0030643530189990997,0.0016981662483885884,0.010816581826657058,0.0017928860615938902,0.0029560162220150232,0.005102688551414758,0.03883128772868076 -2013,10,0.015743613243103027,0.004215848632156849,-0.0013380789896473289,0.003161441534757614,0.0018020125571638346,0.012351608369499445,0.0018775764619931579,0.0033090042765252297,0.005290249828249216,0.04203686548571568 -2013,30,0.01994095742702484,0.004832698963582516,-0.0008896735380403697,0.0034110983833670616,0.0020946611184626818,0.015616120770573616,0.0023010284639894962,0.004113615192181896,0.005755482614040375,0.04969107315992005 -2013,33,0.020426731556653976,0.004924966362304986,-0.0008454069029539824,0.003466577734798193,0.002132551970425993,0.015958702396601437,0.002364546060562134,0.004214885761030018,0.005812402979936451,0.05053611986717442 -2013,50,0.022526195272803307,0.005469783209264278,-0.000627555069513619,0.003702364629134536,0.0023652338422834873,0.017755300737917423,0.002724480116739869,0.004815676831640303,0.00611586298327893,0.054440485590021126 -2013,67,0.024534182623028755,0.0060622409218922275,-0.0004313429817557335,0.003910412080585957,0.0026411041617393494,0.019649269059300423,0.0030844141729176044,0.005460367666673847,0.006441213921643795,0.05822976506431587 -2013,70,0.024897588416934013,0.00618209633976221,-0.00039572292007505894,0.003965891432017088,0.0027004596777260303,0.020033824071288106,0.0031479322351515293,0.005593524081632495,0.006507645105011761,0.05897341959644109 -2013,90,0.029189810156822205,0.0072008585557341576,-0.00013581581879407167,0.004271027632057667,0.0033644975628703833,0.02359943278133869,0.0035502114333212376,0.006700445606838912,0.007197301811538637,0.0658560055133421 -2013,95,0.030830930918455124,0.007719407789409161,-4.9211746954824775e-05,0.004340376704931259,0.0037727414164692163,0.025314992573112247,0.0036560744047164917,0.00724978577636648,0.007607888232450931,0.06907740183523856 -2014,5,0.015892239287495613,0.004276706837117672,-0.001879818388260901,0.0032882671803236008,0.0017630320508033037,0.011391282826662064,0.0020179194398224354,0.002964482642710209,0.005450741620734334,0.042366810273961164 -2014,10,0.017387934029102325,0.00445526372641325,-0.0015811462653800845,0.003401339752599597,0.0018869723426178098,0.013071123510599136,0.002118376549333334,0.0033701335196383297,0.005669838166795671,0.0456714068481233 -2014,30,0.021576369181275368,0.005169196054339409,-0.001060834270901978,0.0036920972634106874,0.0022274604532867667,0.016569087281823158,0.0026206630282104015,0.004304061934817582,0.006210821284912527,0.05352719603688456 -2014,33,0.022061113268136978,0.005276146996766329,-0.001008195336908102,0.0037567103281617165,0.002270893193781376,0.016941889077425002,0.0026960058603435755,0.004422789963427931,0.00627725466620177,0.05439660066025681 -2014,50,0.0241561196744442,0.005909981206059456,-0.0007559303776361048,0.004031314514577389,0.0025412742979824543,0.018908094614744186,0.0031229492742568254,0.005123031965922564,0.0066308724926784635,0.05850674584507942 -2014,67,0.026159847155213356,0.006606598282232883,-0.0005281163612380624,0.004273612983524799,0.0028650397434830666,0.020988566819578416,0.0035498926881700754,0.005887461360543966,0.007010257558431476,0.06249652673024685 -2014,70,0.026522481814026833,0.006748929154127835,-0.0004862589412368834,0.004338225349783897,0.002934727119281888,0.02141612712293863,0.0036252355203032494,0.006040505855344235,0.007087722979485988,0.06328446977131534 -2014,90,0.030805593356490135,0.00798887200653553,-0.000185929486178793,0.0046935961581766605,0.0037124447990208864,0.02532110307365656,0.004102407954633236,0.007381180941592902,0.007895627152174713,0.07048782731872053 -2014,95,0.03244323283433914,0.008643578737974167,-8.766335668042302e-05,0.004774361848831177,0.004183367546647776,0.027190981619060032,0.0042279791086912155,0.008069614199484931,0.00837394897826016,0.07389311579463538 -2015,5,0.017370635643601418,0.004489373415708542,-0.0021850518649443977,0.00351068377494812,0.001819094514939934,0.011771785095334053,0.0022351795341819525,0.00295342446770519,0.0057898408500477675,0.04547884239291307 -2015,10,0.018861660733819008,0.00469325203448534,-0.001839303644374013,0.0036402682308107615,0.0019626212306320667,0.013621756806969643,0.0023523208219558,0.00342015631031245,0.006042637582868338,0.04895075588137843 -2015,30,0.023037021979689598,0.005506507121026516,-0.0012395823141559958,0.00397348590195179,0.002357349032536149,0.017454149015247823,0.0029380270279943943,0.00449662865139544,0.006666014133952558,0.05714461475145072 -2015,33,0.023520251736044884,0.005628516934812069,-0.001178052625618875,0.004047533962875605,0.0024084524600766597,0.01786596141755581,0.003025882877409458,0.004629522329196334,0.006742825265973806,0.05803433317894814 -2015,50,0.025608718395233154,0.006354164332151413,-0.0008868009899742901,0.0043622395023703575,0.0027217762544751167,0.020031416788697243,0.0035237332340329885,0.005434655700810254,0.007149776793085039,0.06237044354202226 -2015,67,0.027606191113591194,0.007159822760149839,-0.0006217677082167934,0.004639920778572559,0.0030985691118985415,0.022317582722753287,0.004021583124995232,0.0063189034117385745,0.007588989448267967,0.06659008572576568 -2015,70,0.02796769328415394,0.007325966469943523,-0.0005742505309171975,0.0047139693051576614,0.003180199721828103,0.02279297187924385,0.004109439440071583,0.006498115719296038,0.007678936421871185,0.06741924664238468 -2015,90,0.03223743662238121,0.008806001394987106,-0.0002279469044879079,0.005121234804391861,0.004082545638084412,0.0270682442933321,0.004665860440582037,0.008088253671303391,0.008616724144667388,0.07500444285105914 -2015,95,0.03386996313929558,0.00961238518357277,-0.00011403780081309378,0.005213795229792595,0.004630396957509216,0.029114042408764355,0.004812286701053381,0.008932961376558524,0.009171876590698957,0.07860951451584697 -2016,5,0.018640216439962387,0.004699947312474251,-0.002483146730810404,0.003731601405888796,0.001876448281109333,0.012159384787082672,0.0024446656461805105,0.0029473223257809877,0.006128997216001153,0.048384376177273224 -2016,10,0.02017526887357235,0.004929813556373119,-0.0020918778609484434,0.003878226736560464,0.0020400692941620947,0.014159809798002243,0.002579407999292016,0.0034743912052363165,0.006415502610616386,0.052076086394663434 -2016,30,0.024473926052451134,0.00584463169798255,-0.001414960017427802,0.004255262669175863,0.002486974000930786,0.018300170078873634,0.0032531195320189,0.004690617322921753,0.007121837511658668,0.0607044885342475 -2016,33,0.024971425533294678,0.005982076171785593,-0.0013445350364781918,0.0043390486389398575,0.0025442258920520544,0.018746858462691307,0.0033541761804372072,0.004840501511353068,0.007208958948031067,0.061640961291850545 -2016,50,0.027121564373373985,0.006802333518862724,-0.0010156690841540694,0.0046951379626989365,0.0029000979848206043,0.02109602279961109,0.0039268312975764275,0.00575132470112294,0.007669689133763313,0.06624641621601768 -2016,67,0.029178019613027573,0.007721913112327459,-0.0007159688393585384,0.005009335000067949,0.0033282185904681683,0.023574715480208397,0.004499485716223717,0.006759870913811028,0.008167663742788135,0.07075845940271393 -2016,70,0.02955019846558571,0.007913208566606045,-0.0006629652925767004,0.005093120504170656,0.0034204809926450253,0.024087753891944886,0.004600542597472668,0.006968950852751732,0.008270163391716778,0.07163300631800666 -2016,90,0.033946022391319275,0.009652245789766312,-0.0002705751336179674,0.0055539426393806934,0.004443589597940446,0.028707711026072502,0.005240568425506353,0.008830236960784534,0.009334858856163919,0.07968212433625013 -2016,95,0.03562675788998604,0.010625827126204967,-0.000140847244620091,0.005658674519509077,0.005068389233201742,0.030907876789569855,0.0054089962504804134,0.00984116131439805,0.009963839803822337,0.08354780399240554 -2017,5,0.01997438445687294,0.0049084266647696495,-0.0027909182477742433,0.003951020538806915,0.0019437840674072504,0.012639591470360756,0.0026463791728019714,0.0029322446789592505,0.006478744640480727,0.05147014442368345 -2017,10,0.02157832309603691,0.005164949223399162,-0.002354026073589921,0.004115215037018061,0.002127833431586623,0.014781969506293536,0.0027996397111564875,0.0035202415776439014,0.006798499962314963,0.05537888132967055 -2017,30,0.026069877669215202,0.006183570250868797,-0.001597638358362019,0.004537428729236126,0.0026276465505361557,0.019183552637696267,0.003565941471606493,0.004875577753409743,0.007589100394397974,0.06448165538022295 -2017,33,0.02658970281481743,0.006336824395693838,-0.001521326950751245,0.004631254356354475,0.0026912346947938204,0.019658135678619147,0.0036808867007493973,0.005041728162614163,0.007686727386899292,0.0654649227799382 -2017,50,0.02883632481098175,0.007254487834870815,-0.0011526059824973345,0.005030011758208275,0.0030892796348780394,0.02218412607908249,0.004332243464887142,0.006063560955226421,0.008203130215406418,0.07036577741382644 -2017,67,0.030985062941908836,0.00829286965541542,-0.000817653548438102,0.005381856579333544,0.0035693359095603228,0.024851683527231216,0.0049835997633636,0.007200761072454046,0.008761752599384637,0.07518030983163045 -2017,70,0.03137394040822983,0.008510654792189598,-0.0007596362847834826,0.0054756817407906055,0.003673095256090164,0.025396160781383514,0.005098544992506504,0.007438742078375065,0.008875118475407362,0.07611710336059332 -2017,90,0.03596702218055725,0.01052760612219572,-0.00032271334202960134,0.00599172106012702,0.004821382462978363,0.030344752222299577,0.0058265323750674725,0.00959192545269616,0.010069676954299212,0.08469828930683435 -2017,95,0.037723179906606674,0.011683903634548187,-0.00017647925415076315,0.00610900204628706,0.005519814998842775,0.03270019385963678,0.006018107756972313,0.010785361751914024,0.010775092686526476,0.08884082897566259 -2018,5,0.021197929978370667,0.005114813335239887,-0.003126322291791439,0.00416894257068634,0.0019895550794899464,0.012849139934405686,0.0028403187170624733,0.00289191585034132,0.006811336148530245,0.054139761108672246 -2018,10,0.022891942411661148,0.005398658104240894,-0.002636844990774989,0.004351234063506126,0.002196262124925852,0.015183189138770104,0.003013014327734709,0.003551082219928503,0.007168419426307082,0.05836181177292019 -2018,30,0.027635738253593445,0.006523321382701397,-0.0017890594899654388,0.004819984547793865,0.0027584435883909464,0.019986937940120696,0.0038764923810958862,0.005060431419406085,0.008052930748090149,0.06815227094339207 -2018,33,0.02818475477397442,0.006692761918529868,-0.0017023790860548615,0.004924151115119457,0.0028306334279477596,0.020506203174591064,0.004006013739854097,0.005246582620311528,0.0081617741426453,0.06921482509293128 -2018,50,0.030557546764612198,0.007710629142820835,-0.001289184670895338,0.005366859491914511,0.0032791525591164827,0.023244705982506275,0.004739969968795776,0.006382883835613029,0.008737974101677537,0.074483524353127 -2018,67,0.03282695263624191,0.008872693004086617,-0.0009136950829997659,0.0057574850507080555,0.0038197182584553957,0.026130635291337967,0.005473926197737455,0.007653931868844666,0.009364158823154866,0.07966910008573906 -2018,70,0.033237673342227936,0.009118306171149015,-0.0008476041257381439,0.0058616516180336475,0.003936156630516052,0.026716114580631254,0.0056034475564956665,0.007922830292955041,0.009493044344708323,0.0806924190663267 -2018,90,0.03808869794011116,0.011432083323597908,-0.00035694900143425876,0.006434568203985691,0.005230538081377745,0.032038770616054535,0.006423751823604107,0.010386114125140011,0.010836137551814319,0.08994342711521312 -2018,95,0.039943479001522064,0.012786616571247578,-0.000193462532479316,0.006564776878803968,0.0060174292884767056,0.03456905484199524,0.0066396212205290794,0.011770144570618868,0.011630155355669558,0.09439564542844892 -2019,5,0.022549010813236237,0.005319105461239815,-0.0034826539922505617,0.0043853651732206345,0.002023420762270689,0.012901505455374718,0.0030264852102845907,0.002835599472746253,0.007132293656468391,0.05676179115034756 -2019,10,0.024303890764713287,0.005630939733237028,-0.002933947369456291,0.00458628311753273,0.0022517877630889417,0.015452201664447785,0.0032195330131798983,0.0035776759032160044,0.007529187691397965,0.06130533281248063 -2019,30,0.029218129813671112,0.006863887421786785,-0.00198464565910399,0.005102928727865219,0.0028832909651100636,0.020727623254060745,0.004184771794825792,0.005247650318779051,0.008514064596965909,0.07175949165248312 -2019,33,0.02978687360882759,0.007049888428300619,-0.0018860585987567902,0.005217738915234804,0.0029646395705640316,0.02129421755671501,0.004329557530581951,0.005454435740830377,0.008634196473285555,0.07290001466055401 -2019,50,0.03224492073059082,0.00817075464874506,-0.001424784422852099,0.005705682095140219,0.0034688515588641167,0.024278873577713966,0.00515001080930233,0.00670585322950501,0.00927390216384083,0.0785422376357019 -2019,67,0.03459586575627327,0.009461382851004604,-0.001004482852295041,0.006136219948530197,0.004072627052664757,0.027388637885451317,0.005970463622361422,0.008118788042338565,0.009972862899303436,0.08410107237519697 -2019,70,0.0350213423371315,0.009736162051558493,-0.0009300854289904237,0.006251030135899782,0.004203128162771463,0.02801836524158716,0.00611524935811758,0.008419418940320611,0.010116509161889553,0.08518119237851351 -2019,90,0.04004666209220886,0.01236567460000515,-0.0003798723337240517,0.006882485933601856,0.005658487323671579,0.033746421337127686,0.007032226305454969,0.011213929974474013,0.01162164960987866,0.09508787387167104 -2019,95,0.04196808487176895,0.013933963142335415,-0.00019797711502178743,0.007025999017059803,0.0065505788661539555,0.03647482395172119,0.007273536175489426,0.012805921025574207,0.012517164065502582,0.09985542227514088 -2020,5,0.024083435535430908,0.005521304439753294,-0.003833961207419634,0.004600290209054947,0.0020717475563287735,0.013117885682731867,0.0032048781868070364,0.002784245985094458,0.007466695515904576,0.05976150059868814 -2020,10,0.02588237076997757,0.005861795507371426,-0.0032300999388098716,0.004820362199097872,0.0023229310754686594,0.015859374590218068,0.0034191953018307686,0.0035992059856653214,0.007903638668358326,0.0645603471522918 -2020,30,0.030919980257749557,0.007205266505479813,-0.002183473948389292,0.005386261735111475,0.0030195198487490416,0.021517829969525337,0.004490780644118786,0.0054314142325893044,0.008986060647293926,0.07555416307877749 -2020,33,0.03150300309062004,0.00740820455364883,-0.002074972027912736,0.0055120172910392284,0.003109818324446678,0.022123385220766068,0.004651518538594246,0.0056569407461211085,0.00911759610986337,0.07676443149335682 -2020,50,0.03402275592088699,0.008634867146611214,-0.0015668668202124536,0.006046478636562824,0.003667727578431368,0.025320276618003845,0.005562365986406803,0.007027041632682085,0.009821183979511261,0.08271429548040032 -2020,67,0.03643272444605827,0.010058938264846806,-0.0011038482189178467,0.006518061738461256,0.004334004661068321,0.028641318045556547,0.00647321343421936,0.008583199349232018,0.010591524648480118,0.08860655733849854 -2020,70,0.036868881434202194,0.010364222712814807,-0.0010219723917543888,0.0066438172943890095,0.004477940499782562,0.029303845949470997,0.006633951794356108,0.008920615306124091,0.010749702015891672,0.08974026646465062 -2020,90,0.04202036187052727,0.013328381814062595,-0.0004158840165473521,0.007335472386330366,0.006086772307753563,0.03540125042200089,0.007651957683265209,0.012058218126185238,0.012411915697157383,0.10020407289266586 -2020,95,0.04399001970887184,0.015125946141779423,-0.0002156967530027032,0.007492667064070702,0.007074589096009693,0.03829814065247774,0.0079198544844985,0.013876119343331036,0.013400870910845696,0.10528108292492105 -2021,5,0.025562191382050514,0.005721409805119038,-0.004202624782919884,0.004813716746866703,0.0021290373988449574,0.013419326301664114,0.0033754981122910976,0.0027133836410939693,0.007811602856963873,0.06280562338743038 -2021,10,0.027376022189855576,0.006091224029660225,-0.003540035849437117,0.005053471773862839,0.0024044413585215807,0.016344277001917363,0.0036120014265179634,0.003602394135668874,0.008289159904234112,0.0678205968462862 -2021,30,0.03245535120368004,0.007547459565103054,-0.002395915798842907,0.0056699845008552074,0.0031694448553025723,0.022368574514985085,0.0047945184633135796,0.0056012875866144896,0.009472932037897407,0.07925296861794777 -2021,33,0.03304320201277733,0.007767709661275149,-0.0022775217937305568,0.005806987639516592,0.0032689394429326057,0.023008068483322857,0.004971896298229694,0.005846896441653371,0.00961680572014302,0.08051326582324692 -2021,50,0.035583823919296265,0.009102964773774147,-0.0017212200909852982,0.006389250047504902,0.0038816158194094896,0.026411964558064938,0.005977035500109196,0.007340665615629405,0.010386841371655464,0.08672722068149596 -2021,67,0.038013748824596405,0.010665361108258371,-0.001213727635331452,0.0069030108861625195,0.004613371565937996,0.029940134622156625,0.006982175167649984,0.009045499376952648,0.01123098858166486,0.09292005541617983 -2021,70,0.038453515619039536,0.011002487875521182,-0.0011242131004109979,0.007040014024823904,0.004772123880684376,0.03063603527843952,0.007159553002566099,0.009416920132935047,0.011405221419408917,0.09409990534186363 -2021,90,0.043647658079862595,0.01432020589709282,-0.00046060170279815793,0.007793529890477657,0.006539175286889076,0.03709246590733528,0.008282944560050964,0.012913201353512704,0.01323021030984819,0.105083315866068 -2021,95,0.04563362896442413,0.016362564638257027,-0.0002417223440716043,0.0079647833481431,0.0076289610005915165,0.04016654007136821,0.008578574284911156,0.014985803398303688,0.014317909022793172,0.1104048843088094 -2022,5,0.026994168758392334,0.005919421091675758,-0.004562068730592728,0.005025644786655903,0.0022003352642059326,0.01387697639875114,0.003538344521075487,0.0026404275558888912,0.00816920306533575,0.0659968184583704 -2022,10,0.028869567438960075,0.006319226697087288,-0.003847989486530423,0.005285611376166344,0.002499392256140709,0.016946248523890973,0.0037979516200721264,0.0036026518791913986,0.008687656372785568,0.07123557275481289 -2022,30,0.0341213084757328,0.007890465669333935,-0.002610250608995557,0.005954096559435129,0.003329627215862274,0.023249313235282898,0.005095985718071461,0.0057657232391647995,0.009971405752003193,0.08316093271132559 -2022,33,0.034729111939668655,0.008128403760492802,-0.0024834820977412166,0.006102648563683033,0.003437522565945983,0.023927148431539536,0.0052906908094882965,0.006033518700860441,0.010128526682965457,0.0844557072815951 -2022,50,0.037355970591306686,0.009575048461556435,-0.0018808571621775627,0.006733995862305164,0.004101939033716917,0.02751116082072258,0.006394020281732082,0.007652504806173965,0.010962080908939242,0.09098251443356276 -2022,67,0.03986837714910507,0.011280650449916725,-0.0013325146865099669,0.007291066460311413,0.0048972563818097115,0.03122548056766391,0.007497349288314581,0.009511916898190975,0.011879493477754294,0.09750971687026322 -2022,70,0.04032307118177414,0.011650958098471163,-0.0012359329033643008,0.007439618930220604,0.005070291459560394,0.03195607289671898,0.007692054845392704,0.009920901386067271,0.012068416946567595,0.09874839710537343 -2022,90,0.045693524181842804,0.015341143123805523,-0.0005198109429329634,0.008256657049059868,0.006989767774939537,0.03873857483267784,0.008925188332796097,0.013803180074319243,0.014051515609025955,0.11030414041597397 -2022,95,0.04774690419435501,0.017643818631768227,-0.00028130426653660834,0.008442346937954426,0.00817078771069642,0.041967163048684586,0.009249696508049965,0.01613428513519466,0.01523112629074603,0.11588586214929819 -2023,5,0.02814282849431038,0.0061153387650847435,-0.004975428339093924,0.005236074794083834,0.002273511444218457,0.014312841929495335,0.0036934171803295612,0.00252852076664567,0.00853405004600063,0.06889666514471174 -2023,10,0.030131880193948746,0.00654580257833004,-0.004197737667709589,0.005516781006008387,0.0026001092046499252,0.017551687359809876,0.003977044951170683,0.003574762516655028,0.009097167057916522,0.07443500444060192 -2023,30,0.03570188581943512,0.008234286680817604,-0.002850286429747939,0.0062385969795286655,0.0035055791027843947,0.024204104021191598,0.005395181477069855,0.005911698564887047,0.010489996802061797,0.08706661401665769 -2023,33,0.036346521228551865,0.008490287158638239,-0.0027147848159074783,0.006399000529199839,0.003623406635597348,0.024917040020227432,0.005607902072370052,0.006201844895258545,0.010659482209011912,0.08843469701241702 -2023,50,0.03913257271051407,0.010051117278635502,-0.0020585523452609777,0.007080716080963612,0.0043495334684848785,0.02870851941406727,0.006813318468630314,0.007947446487378329,0.011566994711756706,0.0953716883668676 -2023,67,0.04179723560810089,0.011904805358499294,-0.0014616867993026972,0.007682229392230511,0.005219834605231884,0.0326279240846634,0.008018734864890575,0.009969193674623969,0.012564635300077499,0.10231806906871499 -2023,70,0.04227948561310768,0.012309632543474435,-0.0013584248488768941,0.007842633873224258,0.005408276338130236,0.03339896127581596,0.008231455460190773,0.010418136836960912,0.012772386893630028,0.10362614039331673 -2023,90,0.04797539487481117,0.016391197219491005,-0.0005803059320896864,0.00872485339641571,0.007508599432185292,0.04054551720619202,0.009578686207532883,0.014704328787047416,0.0149381997063756,0.115945443068631 -2023,95,0.0501532144844532,0.0189697053283453,-0.0003213356307242123,0.008925357833504677,0.008801720570772872,0.04393478110432625,0.009933220222592354,0.01730732742871619,0.01622794382274151,0.12191267817979677 -2024,5,0.02940196357667446,0.006309163756668568,-0.005430342862382531,0.0054450067691504955,0.002351284958422184,0.014776937663555145,0.0038407177198678255,0.0023802202893421056,0.008906566514633596,0.07193136104615405 -2024,10,0.03148220106959343,0.006770951673388481,-0.004579886794090271,0.005746981129050255,0.0027082166634500027,0.01820145919919014,0.004149282816797495,0.0035108448937535286,0.009517551446333528,0.07777072434546427 -2024,30,0.03730754926800728,0.008578920736908913,-0.003117896616458893,0.006523487623780966,0.003699462511576712,0.02521832101047039,0.005692107602953911,0.006039042258635163,0.011030183173716068,0.09107523337588645 -2024,33,0.03798174113035202,0.008853360787034035,-0.002968495013192296,0.006696044467389584,0.003828659150749445,0.02597665786743164,0.0059235310181975365,0.006352297442499548,0.011212808797135949,0.09252223698073067 -2024,50,0.04089551046490669,0.010531173087656498,-0.0022553293965756893,0.007429411169141531,0.004624270834028721,0.02999766357243061,0.007234932389110327,0.008230684790760279,0.012199496268294752,0.09985439124284312 -2024,67,0.04368232935667038,0.01253782893531025,-0.0016048324271105217,0.0080765001475811,0.005578301846981049,0.034133560955524445,0.008546333760023117,0.010424054678878747,0.013288840502500534,0.10721045744197909 -2024,70,0.04418668895959854,0.012978513073176145,-0.0014918535016477108,0.008249057456851006,0.005784920416772366,0.03494160994887352,0.008777758106589317,0.010909293004078786,0.013513693306595086,0.1086082788882777 -2024,90,0.050143711268901825,0.01747036725282669,-0.0006449657375924289,0.00919811986386776,0.008089773543179036,0.042486692219972616,0.01024344190955162,0.015613334195222706,0.015890484815463422,0.12166730531025678 -2024,95,0.05242136865854263,0.02034023217856884,-0.00036218619788996875,0.009413816034793854,0.009513085708022118,0.04605107009410858,0.010629147291183472,0.018507614661939415,0.017305812635459,0.1280428427271545 -2025,5,0.030947932973504066,0.006500894203782082,-0.005863055121153593,0.005652440246194601,0.0024228859692811966,0.015162729192525148,0.0039802435785532,0.002246616408228874,0.009271156147588045,0.07515862229047343 -2025,10,0.03308631852269173,0.006994674913585186,-0.004945765249431133,0.005976211279630661,0.0028081726050004363,0.018771655485033994,0.004314663354307413,0.003462592139840126,0.009928469429723918,0.08126978820655495 -2025,30,0.03907450661063194,0.00892436783760786,-0.003370361821725966,0.006808766163885593,0.003880693344399333,0.026150666177272797,0.005986761301755905,0.006177977425977588,0.01155770244076848,0.09515058062970638 -2025,33,0.039767540991306305,0.00921762278303504,-0.003209969960153103,0.006993778515607119,0.004022599146701396,0.02695053070783615,0.006237576249986887,0.0065132249146699905,0.01175357075408101,0.09666617706185207 -2025,50,0.04276276379823685,0.011015213094651699,-0.0024405652657151222,0.007780080195516348,0.004884019494056702,0.03118208236992359,0.007658859249204397,0.008529016748070717,0.012820800533518195,0.1043467116978718 -2025,67,0.04562748223543167,0.013179717147722847,-0.001738850609399378,0.008473876863718033,0.0059159682132303715,0.035529643297195435,0.009080142714083195,0.010891342360991985,0.013996160924434665,0.11206019798526541 -2025,70,0.04614593833684921,0.013657597079873083,-0.0016174721531569958,0.008658887818455696,0.00614097760990262,0.03637898713350296,0.009330958127975464,0.011420209426432848,0.014238363970071078,0.11354124573990702 -2025,90,0.05226948484778404,0.018578654155135155,-0.0007058828487060964,0.009676454588770866,0.008638018742203712,0.044287617132067685,0.010919450782239437,0.016559539712034166,0.016814467031508684,0.12728538527153432 -2025,95,0.05461081117391586,0.021755391731858253,-0.00039894471410661936,0.009907720610499382,0.010181881487369537,0.04803505912423134,0.01133747585117817,0.01977011503186077,0.018348351167514917,0.13399128895252943 -2026,5,0.03264760226011276,0.006690531969070435,-0.006268719211220741,0.005858374759554863,0.002503666072152555,0.015631144400686026,0.004111996851861477,0.0021323098801076415,0.009638678492046892,0.07862970318747102 -2026,10,0.03484846651554108,0.007216970436275005,-0.00529628898948431,0.006204471457749605,0.0029147621244192123,0.019387228414416313,0.0044731879606842995,0.0034264372661709785,0.010343436477705836,0.08497881219373085 -2026,30,0.041011612862348557,0.009270629845559597,-0.0036130561493337154,0.00709443399682641,0.004062185063958168,0.02706180140376091,0.0062791453674435616,0.006324219750240445,0.012085510371252894,0.09936609119176865 -2026,33,0.04172489792108536,0.009583074077963829,-0.00344297417672351,0.007292203605175018,0.0042121876031160355,0.027902178466320038,0.0065500386990606785,0.006681383121758699,0.012295226466376334,0.10094894565525464 -2026,50,0.04480763152241707,0.011503240093588829,-0.002621529856696725,0.008132724091410637,0.005134750157594681,0.032308680936694145,0.008085101842880249,0.00883454634458758,0.013435886474326253,0.10896196501562372 -2026,67,0.047756049782037735,0.013830471858382232,-0.0018736561760306358,0.008874358609318733,0.006241142512299122,0.03684072554111481,0.009620165452361107,0.011372881053248421,0.014692970085889101,0.11703151755500585 -2026,70,0.04828965663909912,0.014346886239945887,-0.001744614215567708,0.009072128683328629,0.006481296382844448,0.03773214668035507,0.009891059249639511,0.011942900717258453,0.014952776674181222,0.11857489667054323 -2026,90,0.05459211766719818,0.0197160542011261,-0.000773211068008095,0.010159861296415329,0.00915802177041769,0.04595515877008438,0.011606717482209206,0.017551973927766088,0.017711543012410402,0.13297875105636195 -2026,95,0.05700185149908066,0.023215187713503838,-0.0004403982311487198,0.01040707342326641,0.010811528377234928,0.04985361788421868,0.012058206833899021,0.021073504583910108,0.019351819669827817,0.13997248591622335 -2027,5,0.034356195479631424,0.006878075189888477,-0.006676796590909362,0.006062811706215143,0.00259839603677392,0.016206099186092615,0.004235976841300726,0.0020190569106489442,0.010022536711767316,0.08220148202526616 -2027,10,0.036604877561330795,0.007437840104103088,-0.005645628087222576,0.006431761663407087,0.0030380650190636516,0.02008058875799179,0.004624856635928154,0.003383320290595293,0.010772298788651824,0.08876904388307594 -2027,30,0.04290193319320679,0.009617703966796398,-0.003862470504827798,0.0073804911226034164,0.004258114658296108,0.028009390458464622,0.0065692574717104435,0.006462819874286652,0.012625197414308786,0.10359987144329352 -2027,33,0.04363071545958519,0.009949714671820402,-0.003682141425088048,0.007591319736093283,0.004414733499288559,0.028885509911924602,0.006860917434096336,0.006839746842160821,0.01284921514801681,0.10523775033419952 -2027,50,0.04678042605519295,0.011995252221822739,-0.0028104246594011784,0.008487341925501823,0.005394418258219957,0.033454231917858124,0.008513657376170158,0.009138192981481552,0.014063505223020911,0.11352175089996308 -2027,67,0.049792904406785965,0.014490092443302282,-0.0020203359657898524,0.0092779491096735,0.006571121979504824,0.03816234897822142,0.01016639731824398,0.011859753741882743,0.015401547700166702,0.12189196346793324 -2027,70,0.050338104367256165,0.015046379528939722,-0.001878224778920412,0.009488778188824654,0.006828444078564644,0.03908906877040863,0.010458058677613735,0.012460284866392612,0.015679580951109526,0.12352578788995743 -2027,90,0.05677749961614609,0.02088257111608982,-0.0008525255252607167,0.010648336261510849,0.009676290675997734,0.047614697366952896,0.012305239215493202,0.018569444306194782,0.018614035565406084,0.13850933959474787 -2027,95,0.05923958867788315,0.024719616398215294,-0.0004943021340295672,0.010911872610449791,0.011432802304625511,0.05163611099123955,0.012791339308023453,0.02242077828850597,0.020362226665019984,0.14581864719511942 -2028,5,0.03599683567881584,0.0070635247975587845,-0.007083076983690262,0.006265750154852867,0.00269398489035666,0.01677674474194646,0.00435218308120966,0.001903765369206667,0.010404391563497484,0.08569429391645826 -2028,10,0.03827141970396042,0.0076572829857468605,-0.005993991624563932,0.006658082827925682,0.0031606042757630353,0.020755778811872006,0.004769669380038977,0.0033467519097030163,0.011199330305680632,0.0924454435997177 -2028,30,0.044641003012657166,0.009965592995285988,-0.004108087625354528,0.007666937541216612,0.004450167529284954,0.028928915038704872,0.006857099011540413,0.0066015045158565044,0.013165604881942272,0.10765434690983966 -2028,33,0.0453781820833683,0.010317544564604758,-0.003919300623238087,0.007891127839684486,0.004615803249180317,0.029835729375481606,0.007170213386416435,0.007003704289672896,0.013402188433101401,0.10931937932036817 -2028,50,0.04856417328119278,0.012491249479353428,-0.00299735926091671,0.008843934163451195,0.005652933847159147,0.034558724611997604,0.008944528177380562,0.009450555429793894,0.01469120942056179,0.1178857998456806 -2028,67,0.05161134898662567,0.015158580765128144,-0.0021643671207129955,0.009684646502137184,0.006904065143316984,0.03944576989859343,0.010718843899667263,0.012351057157065977,0.016110393116250635,0.12656498268246652 -2028,70,0.05216282978653908,0.01575607769191265,-0.0020122959511354567,0.009908836334943771,0.007174111437052488,0.04039928689599037,0.011031958274543285,0.012990528251975775,0.016405915142968297,0.12823439103085546 -2028,90,0.05867639183998108,0.022078203037381172,-0.0009280929225496948,0.011141881346702576,0.010189330764114858,0.04921982064843178,0.013015016913414001,0.019616568693891168,0.01951508205384016,0.14374642185866832 -2028,95,0.06116683781147003,0.02626868151128292,-0.0005504879751242705,0.011422120034694672,0.012047084048390388,0.05337709374725818,0.013536874204874039,0.023825536074582473,0.02136709690093994,0.15136994159547612 -2029,5,0.037130940705537796,0.007246880792081356,-0.007483091205358505,0.006467190105468035,0.0027982457540929317,0.01739683374762535,0.004460615571588278,0.0017918888479471207,0.010795083316043019,0.08879579379572533 -2029,10,0.03950278460979462,0.007875300012528896,-0.006338124629110098,0.0068834335543215275,0.0032891324255615475,0.02146601341664791,0.004907624796032906,0.003299175179563464,0.011635980475693941,0.09579234477132559 -2029,30,0.04614473879337311,0.010314295068383217,-0.004363170079886915,0.007953772321343422,0.004652577359229326,0.02986948937177658,0.0071426695212721825,0.006740293465554714,0.013715128414332867,0.11152152977883815 -2029,33,0.04691344127058983,0.0106865637563169,-0.004159222356975079,0.008191626518964767,0.004824076779186726,0.030805958434939384,0.007477926090359688,0.0071632349863648415,0.01396666606888175,0.11326464797370135 -2029,50,0.05023566633462906,0.012991232797503471,-0.0031878664158284664,0.0092025026679039,0.005918293260037899,0.03567821532487869,0.009377713315188885,0.009753070422448218,0.015328145353123546,0.1221648482605815 -2029,67,0.05341314524412155,0.015835934039205322,-0.0023112258920446006,0.010094450786709785,0.0072409768309444214,0.04072192288935184,0.011277501471340656,0.012849773513153195,0.016827734326943757,0.13119764439295978 -2029,70,0.05398820340633392,0.01647597961127758,-0.002153187058866024,0.010332304984331131,0.007525787176564335,0.04171364121139049,0.011612758040428162,0.013528184033930302,0.017140266438946127,0.13295919680967927 -2029,90,0.06078029423952103,0.023302949965000153,-0.0010100173647515473,0.011640496551990509,0.010706654563546188,0.05080702602863312,0.013736050575971603,0.020687231793999672,0.020419374480843546,0.1491294435225427 -2029,95,0.06337723881006241,0.02786238305270672,-0.0006119937752373517,0.011937813833355904,0.012653113529086109,0.05508191678673029,0.014294811524450779,0.02526056580245495,0.022376394364982836,0.1571268301224336 -2030,5,0.0384606309235096,0.007428144104778767,-0.007895924150943756,0.006667132489383221,0.0029005787800997496,0.01795321200042963,0.004561275709420443,0.001666378229856491,0.011181016615591944,0.09198493487201631 -2030,10,0.04090694338083267,0.008091889321804047,-0.006695061968639493,0.007107814308255911,0.0034160985145717864,0.022145893052220346,0.00503872474655509,0.0032466407865285873,0.012068414874374867,0.09926600303733722 -2030,30,0.04775743559002876,0.010663810186088085,-0.004618498031049967,0.008240996859967709,0.004854511329904198,0.030794768594205376,0.007425969000905752,0.006872160360217094,0.014265725179575384,0.11549090973567218 -2030,33,0.04855027049779892,0.011056771622970701,-0.004403342958539724,0.008492815308272839,0.005034629255533218,0.03176533240824938,0.007784055545926094,0.007323689758777618,0.014531392366625368,0.11729549013543875 -2030,50,0.051976803690195084,0.013495201244950294,-0.0033805335406214,0.009563043713569641,0.006187103223055601,0.036796651780605316,0.009813212789595127,0.010066960472613573,0.015971676912158728,0.12651994486805052 -2030,67,0.055254045873880386,0.016522155366837987,-0.0024607188533991575,0.010507361963391304,0.00758300581946969,0.04199672117829323,0.011842370964586735,0.013351872330531478,0.0175540011189878,0.1359077145982883 -2030,70,0.0558471605181694,0.017206087708473202,-0.002291601151227951,0.010759180411696434,0.007883535698056221,0.04302248731255531,0.012200457975268364,0.014081265777349472,0.017885061725974084,0.13773893893230707 -2030,90,0.06285250186920166,0.02455681376159191,-0.0010906049283221364,0.012144181877374649,0.011237330734729767,0.052393205836415296,0.014468340203166008,0.021768698119558397,0.021343373879790305,0.1545790989184752 -2030,95,0.06553097814321518,0.029500717297196388,-0.0006688008434139192,0.012458954006433487,0.01329156942665577,0.05680995061993599,0.015065152198076248,0.026721673784777522,0.023407459538429976,0.16291841078782454 -2031,5,0.039859022945165634,0.007607312873005867,-0.008349808258935809,0.00686557637527585,0.0029979071114212275,0.018457036465406418,0.004654161632061005,0.001504712738096714,0.011567106586880982,0.09520147918374278 -2031,10,0.042343877255916595,0.00830705277621746,-0.0070813908241689205,0.0073312255553901196,0.003541013225913048,0.02279496528208256,0.0051629673689603806,0.003172751981765032,0.01250470920931548,0.10269337459467351 -2031,30,0.04930230230093002,0.011014140211045742,-0.004892288940027356,0.008528610691428185,0.005062025971710682,0.03174495212733745,0.007706996984779835,0.006995075847953558,0.014827514067292213,0.11941156000830233 -2031,33,0.050107624381780624,0.011428168173879386,-0.0046657295897603035,0.008794697001576424,0.005253573413938284,0.0327431745827198,0.008088601753115654,0.007472432674840092,0.015108310151845217,0.12125870934687555 -2031,50,0.0535881444811821,0.014003155753016472,-0.0035845614038407803,0.009925559163093567,0.00647435849532485,0.03796268627047539,0.010251026600599289,0.010369147639721632,0.016632956685498357,0.1307959370315075 -2031,67,0.05691701918840408,0.017217242252081644,-0.0026153302402235567,0.01092338003218174,0.007951924223452814,0.043341753371059916,0.012413451448082924,0.013856120174750686,0.018307935446500778,0.14052477780904157 -2031,70,0.05751948058605194,0.017946399189531802,-0.002434227615594864,0.011189466342329979,0.008271136321127415,0.044405221939086914,0.012795056216418743,0.014632170321419835,0.018658610992133614,0.14241863038623706 -2031,90,0.06463518738746643,0.0258397925645113,-0.0011706963297910982,0.012652935460209846,0.011820285394787789,0.05409064330160618,0.01521188486367464,0.022883636178448796,0.022320735640823843,0.15990691396873444 -2031,95,0.06735587120056152,0.031183691695332527,-0.0007246775785461068,0.01298554241657257,0.013996312394738197,0.05866400897502899,0.015847891569137573,0.028216827660799026,0.024504817277193055,0.16866215302143245 -2032,5,0.04134383052587509,0.007784388959407806,-0.008792662993073463,0.007062521297484636,0.0030910782516002655,0.018942836672067642,0.004739274270832539,0.0013469532132148743,0.011948158033192158,0.09846230200491846 -2032,10,0.04387734830379486,0.008520789444446564,-0.00745945330709219,0.0075536672957241535,0.0036619859747588634,0.023409179225564004,0.005280354525893927,0.0031045344658195972,0.012936640670523048,0.1061956291552633 -2032,30,0.05097204074263573,0.011365284211933613,-0.005157185718417168,0.008816612884402275,0.005264194682240486,0.03264979235827923,0.007985754869878292,0.007123745046555996,0.015385696664452553,0.12340947515331209 -2032,33,0.051793135702610016,0.011800755262374878,-0.004921447020024061,0.00909726694226265,0.005467464216053486,0.03368971161544323,0.008391564711928368,0.007630152627825737,0.015681907741818577,0.1253243513120833 -2032,50,0.05534181371331215,0.014515097253024578,-0.0037845317274332047,0.010290050879120827,0.006753736175596714,0.03908340446650982,0.01069115474820137,0.010681742336601019,0.01729019614867866,0.13518611784093082 -2032,67,0.05873587727546692,0.017921195942908537,-0.0027668443508446217,0.011342504993081093,0.008312791585922241,0.0446326807141304,0.012990744784474373,0.014374111080542207,0.019055499746464193,0.14526672195643187 -2032,70,0.059350136667490005,0.01869691628962755,-0.0025768105406314135,0.011623159050941467,0.008652091957628727,0.045733816921710954,0.013396554626524448,0.015204726741649207,0.019427112024277448,0.14722551545128226 -2032,90,0.06660519540309906,0.027151890099048615,-0.0012493268586695194,0.0131667610257864,0.012393765151500702,0.05573138259351254,0.015966685488820076,0.02402277793735266,0.02328914273530245,0.16540287481620908 -2032,95,0.06937915086746216,0.03291129693388939,-0.000776645028963685,0.013517579063773155,0.014686299487948418,0.060451082140207266,0.016643034294247627,0.02975578512996435,0.025592152029275887,0.1744932761415839 -2033,5,0.04259910434484482,0.007959370501339436,-0.009243995789438485,0.007257968652993441,0.0031750169582664967,0.019344901852309707,0.004816614091396332,0.0011817263439297676,0.012323374953120947,0.10149039956741035 -2033,10,0.0452534444630146,0.008733099326491356,-0.007844360452145333,0.007775138597935438,0.0037767184432595975,0.02396990731358528,0.0053908852860331535,0.003030055668205023,0.013364132679998876,0.10953923417255283 -2033,30,0.052686478942632675,0.011717241257429123,-0.005426600109785795,0.009105004370212555,0.005464180838316679,0.03352766409516334,0.008262241259217262,0.007252981886267662,0.015944565180689096,0.1274672606959939 -2033,33,0.053546734154224396,0.012174531957134605,-0.005179089494049549,0.00940052978694439,0.0056783463805913925,0.03460780296474695,0.008692944422364235,0.00778699666261673,0.01625579421874136,0.1294608000619337 -2033,50,0.057264648377895355,0.015031023882329464,-0.003982731606811285,0.010656515136361122,0.007034841924905777,0.04018636420369148,0.011133597232401371,0.010998453944921494,0.017950598150491714,0.13975364342331886 -2033,67,0.060820575803518295,0.01863401520997287,-0.002915229182690382,0.011764736846089363,0.008676777770742775,0.04592083767056465,0.013574249111115932,0.014901903923600912,0.019811302414163946,0.1502798548899591 -2033,70,0.06146412715315819,0.019457638077437875,-0.002715321257710457,0.012060262262821198,0.00903275329619646,0.04706379771232605,0.01400495320558548,0.01577975694090128,0.020201113168150184,0.15232398954685777 -2033,90,0.06906517595052719,0.02849309891462326,-0.001320620882324873,0.01368565484881401,0.012978218495845795,0.05739011615514755,0.01673274114727974,0.025201783515512943,0.02427094262093306,0.1713363964576274 -2033,95,0.07197142392396927,0.03468354046344757,-0.0008224266348406672,0.014055060222744942,0.015398429706692696,0.06225506588816643,0.01745058037340641,0.0313502139179036,0.026704910304397343,0.18086883863434194 -2034,5,0.04383888840675354,0.00813225843012333,-0.009702371759340165,0.007451917510479689,0.0032500033266842365,0.019681256264448166,0.00488618016242981,0.0010185363003984097,0.012689798371866345,0.10442213775531854 -2034,10,0.046605996787548065,0.008943983353674412,-0.008232339099049565,0.007995640859007835,0.003883321536704898,0.024472618103027345,0.005494559649378061,0.002957332879304886,0.013785299053415656,0.11278468850869104 -2034,30,0.05435480549931526,0.012070011347532272,-0.005694666691124441,0.009393785148859024,0.00565899396315217,0.03436955809593201,0.00853645708411932,0.0073885254096239805,0.01649926300160587,0.13143835722003133 -2034,33,0.055251602083444595,0.012549496097490192,-0.0054348972626030445,0.009704483672976494,0.005883114505559206,0.03548693113029003,0.00899274181574583,0.007946319878101349,0.016826903559267522,0.13352177982917054 -2034,50,0.05912746861577034,0.015550937503576279,-0.004179396666586399,0.011024953797459602,0.007307575084269047,0.04125342145562172,0.011578353121876717,0.011323335638735443,0.01860780641436577,0.14423964661546052 -2034,67,0.06283445656299591,0.01935570189729334,-0.0030586798675358295,0.012190073728561401,0.009037146344780922,0.04717838436365128,0.014163967221975327,0.015440229792147875,0.02056499943137169,0.15521142596961 -2034,70,0.06350535154342651,0.02022856399416923,-0.0028488622047007084,0.01250077411532402,0.009410491213202477,0.048356917873024936,0.014620251953601837,0.016371015924960375,0.020974588580429554,0.15734027340076864 -2034,90,0.0714293122291565,0.029863426461815834,-0.0013839533785358071,0.014209616929292679,0.01357114315032959,0.05902450531721115,0.017510054633021355,0.02640817582141608,0.025261424481868744,0.1772004889557138 -2034,95,0.0744590237736702,0.03650042042136192,-0.0008627665229141712,0.014597991481423378,0.01611342811957001,0.06402668058872221,0.018270527943968773,0.033000901550985826,0.027822781261056657,0.18717006053775548 -2035,5,0.04523778334259987,0.008303052745759487,-0.010164360515773296,0.00764436786994338,0.0033392878249287605,0.02011208049952984,0.004947973415255547,0.0008409349247813225,0.013069075578823686,0.10759137982386165 -2035,10,0.04807494580745697,0.009153439663350582,-0.008627696894109249,0.008215172216296196,0.004003428854048252,0.02504770550876856,0.0055913785472512245,0.0028710677288472652,0.0142194920219481,0.11619341589976102 -2035,30,0.056019943207502365,0.012423595413565636,-0.0059703818522393705,0.009682955220341682,0.005866364249959587,0.03524827659130096,0.008808402344584465,0.007516683312132955,0.017067805235274135,0.13543930916348473 -2035,33,0.05693944916129112,0.012925650458782911,-0.0056982528883963825,0.010009128600358963,0.006101294420659542,0.03641119971871376,0.00929095596075058,0.008099554106593132,0.017412124616093934,0.13760714118368925 -2035,50,0.06091344356536865,0.016074832528829575,-0.004385458305478096,0.011395368725061417,0.007596191950142384,0.042356062680482864,0.012025426141917706,0.011641722201602533,0.019281042739748955,0.14868749561719596 -2035,67,0.06471429020166397,0.020086254775524153,-0.003211438190191984,0.012618521228432655,0.009413424879312515,0.0484636027738452,0.014759896323084831,0.015973588451743126,0.02133570145815611,0.16005936471628956 -2035,70,0.06540216505527496,0.021009696088731284,-0.002993402536958456,0.012944694608449936,0.009804241731762885,0.04967168979346752,0.01524245087057352,0.016963012283667922,0.021765453182160853,0.16224456055788322 -2035,90,0.07352675497531891,0.03126286715269089,-0.0014574967790395021,0.014738650992512703,0.014171235263347626,0.06066199168562889,0.018298622220754623,0.027633292134851217,0.026266058906912804,0.18288996680639685 -2035,95,0.07663317024707794,0.03836193308234215,-0.0009113879059441388,0.015146369114518166,0.016846371814608574,0.0658012330532074,0.019102878868579865,0.03469295322429389,0.028955908492207527,0.19324324838817117 -2036,5,0.0466541089117527,0.008471754379570484,-0.01063477247953415,0.007835321128368378,0.0034577492624521255,0.020744383614510302,0.005001992452889681,0.0006544563919305804,0.013476111507043243,0.11097771161294077 -2036,10,0.049545422196388245,0.009361470118165016,-0.00903995893895626,0.008433734998106956,0.004150626249611378,0.02578697092831135,0.005681339651346207,0.0027731209993362427,0.014679125230759382,0.11979983609635383 -2036,30,0.057642046362161636,0.012777993455529213,-0.006262913346290588,0.00997251458466053,0.006099554989486933,0.036235202103853226,0.009078075177967548,0.007622065022587776,0.017664210870862007,0.13951421109959483 -2036,33,0.05857910215854645,0.013302993811666965,-0.0059802355244755745,0.010314464569091797,0.006348037626594305,0.037424761801958084,0.009587585926055908,0.008234468521550298,0.018024943843483923,0.14175584594951943 -2036,50,0.06262893974781036,0.016602717339992523,-0.004608246963471174,0.011767756193876266,0.007917284965515137,0.043539414182305336,0.01247481070458889,0.011943765915930271,0.019983987091109157,0.15315217664465308 -2036,67,0.06650232523679733,0.020825673844665302,-0.0033845463767647743,0.013050073757767677,0.009814374148845673,0.04980214312672615,0.015362035483121872,0.016500015510246158,0.022136610932648182,0.16489531679078936 -2036,70,0.0672033280134201,0.021801031008362767,-0.00315540824085474,0.013392023742198944,0.010228633321821685,0.05104721896350384,0.015871545299887657,0.017547342577017844,0.022588118631392717,0.1671219206880778 -2036,90,0.07548297196626663,0.03269142657518387,-0.0015534285921603441,0.015272755175828934,0.014795459806919098,0.06230854727327824,0.019098445773124695,0.028870625887066126,0.027300229854881765,0.18846338372677565 -2036,95,0.07864867895841599,0.04026808217167854,-0.0009813809301704168,0.015700193122029305,0.017596954479813576,0.06761795170605181,0.019947629421949387,0.0363963779527694,0.03011594023555517,0.19931721868924795 -2037,5,0.048522867262363434,0.008638361468911171,-0.011105319485068321,0.008024774491786957,0.003571745939552784,0.021325286477804184,0.005048238672316074,0.00045792851597070694,0.013878744514659046,0.11471075638546609 -2037,10,0.05140790343284607,0.00956807378679514,-0.009446275420486927,0.008651327341794968,0.004294749815016985,0.026464892923831942,0.005764445289969444,0.0026731505058705807,0.01513662631623447,0.12371405074372888 -2037,30,0.05948697030544281,0.013133203610777855,-0.006550425197929144,0.010262461379170418,0.006330286152660847,0.03718554228544235,0.009345478378236294,0.007733955048024654,0.018257347028702495,0.14377409546868875 -2037,33,0.06042199209332466,0.013681526156142354,-0.0062618879647925495,0.010620491579174995,0.006589591037482023,0.03840572878718376,0.009882633574306965,0.008370788302272558,0.018636349472217262,0.1460438461205922 -2037,50,0.0644630417227745,0.017134586349129677,-0.0048307934775948524,0.01214211992919445,0.008229607716202736,0.04468446969985962,0.012926511466503143,0.012249968945980072,0.020685261115431786,0.15771660231985152 -2037,67,0.06832803040742874,0.02157395971938969,-0.0035525839775800705,0.013484731316566467,0.010214067995548248,0.05111405242234469,0.015970388427376747,0.01704973680898547,0.022934868931770325,0.1697420235723257 -2037,70,0.06902751326560974,0.022602571360766884,-0.003314717672765255,0.013842761516571045,0.010646818205714226,0.052386830002069465,0.016507545486092567,0.018132075667381287,0.023409541323781015,0.1720385406166315 -2037,90,0.07728920131921768,0.03414909914135933,-0.0016482464270666242,0.015811927616596222,0.015417622588574894,0.06395082175731659,0.019909527152776718,0.03012536186724903,0.028334927931427955,0.19399121034657582 -2037,95,0.08044803887605667,0.04221886023879051,-0.0010437805904075503,0.016259463503956795,0.018341585993766785,0.06940682232379913,0.020804785192012787,0.038157148752361536,0.03127707438543439,0.2051915042102337 -2038,5,0.050426702946424484,0.008802874945104122,-0.011589059000834822,0.008212730288505554,0.0036927347537130117,0.02196964267641306,0.005086712539196014,0.00026050955057144165,0.014294787647668273,0.11854984011733904 -2038,10,0.05331544578075409,0.009773251600563526,-0.009863147139549255,0.00886794924736023,0.004450701316818595,0.02721255086362362,0.005840695463120937,0.002554807346314192,0.015607629343867302,0.12771031012525783 -2038,30,0.06140488013625145,0.01348922960460186,-0.006852693855762482,0.010552799329161644,0.006571413949131966,0.03817483335733413,0.009610611014068127,0.00783761212369427,0.01886773481965065,0.14815546171739696 -2038,33,0.062341101467609406,0.0140612487308681,-0.006552882492542267,0.010927209630608559,0.006850843317806721,0.03942936018109321,0.010176097974181175,0.008498123846948147,0.01926315107382834,0.15046053449390456 -2038,50,0.06638734042644501,0.017670441418886185,-0.005062823416665196,0.01251845620572567,0.008555854670703411,0.04586239345371723,0.013380525633692741,0.012553914450109005,0.02140316553413868,0.1624181605875492 -2038,67,0.0702572837471962,0.022331112399697317,-0.0037301182746887207,0.013922497630119324,0.010624311864376068,0.0524569831416011,0.016584953293204308,0.017589438997674733,0.023752582520246507,0.17473710347898305 -2038,70,0.07095766812562943,0.023414318449795243,-0.0034868204966187477,0.014296909794211388,0.011081833392381668,0.053768359124660485,0.01715044118463993,0.018737939186394215,0.024247399158775808,0.17709782645106315 -2038,90,0.07922995835542679,0.03563588485121727,-0.0017499477020464806,0.016356170177459717,0.016061543859541415,0.06561447829008103,0.020731860771775246,0.03139257893199103,0.02939265388995409,0.19971726978574225 -2038,95,0.0823928490281105,0.04421428218483925,-0.0011219863081350923,0.016824183985590935,0.019117046147584915,0.07121655344963074,0.021674340590834618,0.03992733167251572,0.032463321834802626,0.21130341198295355 -2039,5,0.051896512508392334,0.008965294808149338,-0.012078719213604927,0.008399187587201595,0.0038135843351483345,0.02255685208365321,0.005117411725223064,5.83697110414505e-05,0.014707745052874088,0.12197893421398476 -2039,10,0.05482456460595131,0.009977001696825027,-0.010286946780979633,0.009083602577447891,0.004605039022862911,0.027934006042778493,0.005910088308155537,0.0024369871243834496,0.016077121114358307,0.1313369629904628 -2039,30,0.06302408128976822,0.013846068643033504,-0.007159228902310133,0.01084352470934391,0.006814740598201752,0.03915143013000488,0.009873472154140472,0.00793816545046866,0.019479515263810754,0.15223747491836548 -2039,33,0.06397304683923721,0.014442159673199057,-0.006844208110123873,0.011234618723392487,0.007109958212822676,0.04043379258364439,0.010467980057001114,0.008624464739114046,0.01989430770277977,0.15460397303540957 -2039,50,0.06807434558868408,0.018210280686616898,-0.005293253343552351,0.012896768748760223,0.008888281881809235,0.047037456184625626,0.013836855068802834,0.012861918890848756,0.022127178963273764,0.16688897623680532 -2039,67,0.07199695706367493,0.023097130022943037,-0.003907436914741988,0.014363370835781097,0.011043849773705015,0.05379987131804228,0.017205730080604553,0.018142255023121834,0.024577580858021975,0.17955560695845635 -2039,70,0.07270687073469162,0.024236267060041422,-0.0036550795193761587,0.014754464849829674,0.011525740846991539,0.05514166131615639,0.017800239846110344,0.019348823465406895,0.02509749662131071,0.18200930822640657 -2039,90,0.0810917317867279,0.03715179115533829,-0.001848348299972713,0.01690548285841942,0.01672232151031494,0.06727653741836548,0.021565454080700874,0.03270111046731472,0.030465874262154104,0.20539469290524723 -2039,95,0.08429766446352005,0.04625433683395386,-0.0011931160697713494,0.017394348978996277,0.01990678906440735,0.07302966713905334,0.022556299343705177,0.04179198108613491,0.03367086872458458,0.21744944625534116 -2040,5,0.053271450102329254,0.009125621058046818,-0.01256045550107956,0.008584147319197655,0.003920654859393835,0.023070286214351657,0.005140337161719799,-0.0001377798616886139,0.015108315122779459,0.1252136023598723 -2040,10,0.056268297135829926,0.010179325938224792,-0.010698369704186916,0.009298285469412804,0.004746098909527064,0.02858123369514942,0.0059726242907345295,0.0023338464088737965,0.016533902077935637,0.13483091675443576 -2040,30,0.0646604523062706,0.014203721657395363,-0.007453487394377591,0.011134641245007515,0.007044817972928284,0.04007434844970703,0.010134061798453331,0.008050541952252388,0.020079629495739937,0.15627908597234635 -2040,33,0.06563170254230499,0.014824259597808122,-0.007129630073904991,0.011542720720171928,0.007356525398790836,0.04138880927115678,0.010758277028799057,0.00876133143901825,0.020513082640245556,0.15870634231250733 -2040,50,0.06982935965061188,0.018754107877612114,-0.005518528399989009,0.013277055695652962,0.009203759953379631,0.048145413398742676,0.01429549790918827,0.013177011162042618,0.022837827913463116,0.1713776800315827 -2040,67,0.07384412735700607,0.02387201694771649,-0.004076995421200991,0.014807352796196938,0.011445171497762203,0.05508100971579552,0.017832718789577484,0.01870974898338318,0.02539250830188394,0.18443286612629892 -2040,70,0.07457072287797928,0.025068418681621546,-0.003815743140876293,0.015215430408716202,0.01194842904806137,0.05644795708358288,0.01845693588256836,0.019977130461484194,0.02593392245471477,0.18699030270799993 -2040,90,0.08315256983041763,0.03869681432843208,-0.0019408044172450896,0.017459865659475327,0.017360400408506393,0.0688754826784134,0.022410301491618156,0.03404327239841223,0.031520580127835277,0.2111782114719972 -2040,95,0.08643382787704468,0.04833902418613434,-0.0012597735039889812,0.017969965934753418,0.02067142352461815,0.07476849853992462,0.023450661450624466,0.043670179016771726,0.034857084043323994,0.22370265424251556 -2041,5,0.054850682616233826,0.009283853694796562,-0.013034060457721352,0.008767606690526009,0.004043507389724255,0.023660639207810166,0.00515549024567008,-0.0003426566720008848,0.015518183005042374,0.12875905993860215 -2041,10,0.05791541188955307,0.010380223393440247,-0.01110638864338398,0.009511997923254967,0.004900947213172913,0.029296789318323135,0.006028305273503065,0.00221878569573164,0.017001877631992103,0.13858358033467083 -2041,30,0.06649766117334366,0.014562186785042286,-0.007752877660095692,0.01142614334821701,0.0072841034270823,0.04100811332464218,0.010392380878329277,0.008153349626809359,0.020690379617735743,0.16057100906036795 -2041,33,0.06749092042446136,0.015207549752667545,-0.007415974512696266,0.011851510033011436,0.0076107545755803585,0.04235722042620182,0.011046992614865303,0.00890049563255161,0.02114261073991656,0.16306760100182147 -2041,50,0.0717836543917656,0.019301919266581535,-0.005746597656980157,0.013659315183758736,0.009526962414383888,0.04927266761660576,0.014756456017494202,0.013495641993358731,0.023561561945825815,0.17610204010270536 -2041,67,0.07588936388492584,0.024655767567455786,-0.004253105726093054,0.015254437923431396,0.011854639928787956,0.056358903646469116,0.0184659194201231,0.019287558272480965,0.026214880868792534,0.18952946923673153 -2041,70,0.07663241028785706,0.025910780206322665,-0.003981621935963631,0.015679802745580673,0.012377079576253891,0.05776094533503055,0.019120531156659126,0.020613073371350765,0.026775719597935677,0.19216642626561223 -2041,90,0.08540865778923035,0.04027094319462776,-0.0020385219249874353,0.018019316717982292,0.018002402037382126,0.07044969499111177,0.02326640486717224,0.035405555041506886,0.032579351775348195,0.21717737237922846 -2041,95,0.0887642353773117,0.05046834796667099,-0.0013357381103560328,0.018551023676991463,0.02142968215048313,0.0764783576130867,0.024357421323657036,0.04559425660409033,0.036040946654975405,0.2301528579555452 -2042,5,0.05622034892439842,0.009439993649721146,-0.013554038479924202,0.008949571289122105,0.004162411531433464,0.024224918335676193,0.0051628705114126205,-0.0005759838968515396,0.015930913388729095,0.13205059228348545 -2042,10,0.05933809652924538,0.010579694993793964,-0.011553293094038963,0.00972474180161953,0.005056541413068771,0.02999032735824585,0.006077130325138569,0.0020836498588323593,0.017475902568548918,0.1421104183769785 -2042,30,0.06806882470846176,0.014921467751264572,-0.008069468662142754,0.011718038469552994,0.007535362895578146,0.04196992516517639,0.010648430325090885,0.008250419050455093,0.021316140424460173,0.1646641712752171 -2042,33,0.06907926499843597,0.01559202890843153,-0.007720069494098425,0.012160994112491608,0.007876773364841938,0.0433594286441803,0.011334124952554703,0.009025358594954014,0.02178771048784256,0.16718785727862268 -2042,50,0.07344627380371094,0.01985371857881546,-0.0059906416572630405,0.014043550938367844,0.009873626753687859,0.05045097693800926,0.015219729393720627,0.013806889299303293,0.024306796258315444,0.18058964447118342 -2042,67,0.07762300968170166,0.025448388103395718,-0.004435976967215538,0.01570463366806507,0.01229712445288898,0.05770595744252205,0.01910533383488655,0.019846612820401788,0.02707009678706527,0.19443218527361752 -2042,70,0.07837891578674316,0.02676334641873836,-0.00415900070220232,0.016147587448358536,0.012840224429965017,0.059139129891991604,0.019791029393672943,0.021240863483399153,0.027653768658637994,0.19713507406413555 -2042,90,0.08730699121952057,0.04187420383095741,-0.0021391709800809614,0.018583839759230614,0.018700020387768745,0.07214738577604293,0.024133766070008278,0.03679753001779318,0.03370064217597247,0.22297841338440777 -2042,95,0.09072062373161316,0.05264231562614441,-0.0014033123152330518,0.019137533381581306,0.022274330258369446,0.07829578220844269,0.025276590138673782,0.04757050459738821,0.03730743331834673,0.23645352047169577 -2043,5,0.05749727040529251,0.009594039060175419,-0.01405688188970089,0.00913003459572792,0.004280938766896725,0.024784181267023087,0.005162476096302271,-0.000796956941485405,0.016340871923603117,0.13519806883559796 -2043,10,0.06064560264348984,0.010777739807963371,-0.011985071189701556,0.009936515241861343,0.005206522392109037,0.030652668327093124,0.006119097582995892,0.001960241235792637,0.017944239312782884,0.14545110603794456 -2043,30,0.06946198642253876,0.015281559899449348,-0.008381552062928677,0.012010321021080017,0.007776962127536535,0.04290236905217171,0.010902208276093006,0.008350660093128681,0.021935820439830424,0.16848915154114366 -2043,33,0.07048233598470688,0.015977696422487496,-0.00801453460007906,0.012471167370676994,0.008133985102176666,0.04432645641267299,0.011619674041867256,0.009160728193819523,0.022427321188151838,0.17106879055034369 -2043,50,0.07489218562841415,0.02040950208902359,-0.006225142627954483,0.014429761096835136,0.010207723826169968,0.051578037440776825,0.015685316175222397,0.014124017208814621,0.025044962763786316,0.1848146435804665 -2043,67,0.07910989969968796,0.02624987233430149,-0.004616042133420706,0.016157932579517365,0.012723933905363083,0.05901099864393473,0.019750960171222687,0.02042659322731199,0.02791484504006803,0.19900770012754948 -2043,70,0.0798732191324234,0.02762611489742994,-0.004331393167376518,0.016618778929114342,0.013286933302879333,0.06046647951006889,0.02046842686831951,0.021886016242206097,0.028520441614091396,0.20182378273457288 -2043,90,0.08888888359069824,0.04350656643509865,-0.0022350302897393703,0.019153431057929993,0.019378770142793655,0.07376062870025635,0.025012381374835968,0.03822246892377734,0.034801187179982665,0.22840264318510892 -2043,95,0.092336006462574,0.0548609122633934,-0.0014701996697112918,0.019729487597942352,0.023079811967909335,0.08005255609750746,0.02620815858244896,0.049567374400794506,0.03855040911585093,0.24233758661430324 -2044,5,0.058637604117393494,0.009745990857481956,-0.014573504216969013,0.00930900126695633,0.004383313795551657,0.025224523805081844,0.0051543088629841805,-0.0010268930345773697,0.016737790068145842,0.13816516123479233 -2044,10,0.061876922845840454,0.010974356904625893,-0.01242785444483161,0.010147320106625557,0.005345682380720974,0.031248041614890098,0.00615420937538147,0.0018273163586854935,0.01840225183404982,0.14869526801048777 -2044,30,0.07094808667898178,0.015642467886209488,-0.008693020790815353,0.01230299286544323,0.008018212392926216,0.04380480572581291,0.01115371286869049,0.008456199895590544,0.022550964262336493,0.17241912304889412 -2044,33,0.07199792563915253,0.016364553552120922,-0.008312400430440903,0.012782031670212746,0.008387704379856586,0.04525953654199839,0.011903638020157814,0.009297331795096397,0.02306117062456906,0.17509418072993868 -2044,50,0.07653521001338959,0.020969273522496223,-0.006457004230469465,0.014817947521805763,0.010539635084569454,0.052697036415338516,0.01615321636199951,0.01445100363343954,0.025782059878110886,0.18925145221874118 -2044,67,0.08087480813264847,0.027060224637389205,-0.004790670704096556,0.016614342108368874,0.0131559818983078,0.060305544249713426,0.02040279470384121,0.021012268029153347,0.02876439413055778,0.20389679066371172 -2044,70,0.0816601887345314,0.02849908825010061,-0.004495523124933244,0.01709338091313839,0.013741089031100273,0.06179227977991103,0.021152719855308533,0.02254154160618782,0.029393662512302396,0.20679846624843776 -2044,90,0.09093639254570007,0.04516805335879326,-0.00232206960208714,0.019728094339370728,0.02006603218615055,0.07539689540863037,0.025902248919010162,0.03969956797081979,0.0359207758679986,0.23430308573879302 -2044,95,0.0944831371307373,0.05712414160370827,-0.0015266789123415947,0.020326893776655197,0.02392612025141716,0.08182431757450104,0.027152124792337418,0.05163235776126385,0.03981423322111368,0.24874679904896765 -2045,5,0.05999889224767685,0.009895849972963333,-0.01507676113396883,0.009486468508839607,0.00451237615197897,0.02582124909386039,0.005138367880135775,-0.0012548742815852165,0.01715580930467695,0.14143000496551394 -2045,10,0.06329416483640671,0.011169548146426678,-0.012859868817031384,0.010357152670621872,0.00550255598500371,0.03194911405444145,0.006182464770972729,0.0016889981925487518,0.01888432609848678,0.1522437759907916 -2045,30,0.07252201437950134,0.016004187986254692,-0.009008926991373302,0.012596052139997482,0.008269248530268669,0.044751111418008804,0.011402948759496212,0.008552156388759613,0.02318584327585995,0.17648578309454024 -2045,33,0.073589988052845,0.016752600278705357,-0.008617611676454544,0.013093587011098862,0.008651397051289677,0.04624539215117693,0.01218602154403925,0.009424555581063032,0.02371296633966267,0.1792296408675611 -2045,50,0.0782056450843811,0.021533027291297913,-0.006699219811707735,0.015208104625344276,0.010881107300519943,0.053831346333026886,0.01662343181669712,0.014764075167477131,0.026535109616816044,0.1937398977461271 -2045,67,0.08262020349502563,0.027879440616816305,-0.004976269323378801,0.017073854804039,0.013590125311166051,0.06158982217311859,0.021060843020677567,0.02159530483186245,0.029623794555664062,0.20878984248265628 -2045,70,0.08341915160417557,0.02938226647675037,-0.00467164721339941,0.01757138781249523,0.01419784575700758,0.06311985850334167,0.021843917667865753,0.023195570614188903,0.0302784688770771,0.21176663308870047 -2045,90,0.09285558760166168,0.04685864970088005,-0.0024251998402178288,0.02030782401561737,0.0207517109811306,0.07700577229261399,0.026803378015756607,0.04115789942443371,0.037036030180752286,0.2401875804644078 -2045,95,0.09646359086036682,0.0594320110976696,-0.0015998637536540627,0.020929740741848946,0.024737726897001266,0.08355362638831136,0.028108499944210052,0.05372935174964356,0.04107436556369065,0.25504162551369514 -2046,5,0.06124678626656532,0.010043613612651825,-0.015583972446620464,0.009662440046668053,0.004629301838576794,0.026329397223889828,0.005114654079079628,-0.001494821161031723,0.017561290389858188,0.1445499948982615 -2046,10,0.06463555991649628,0.011363312602043152,-0.013297749683260918,0.010566016659140587,0.005652816314250233,0.03257452435791493,0.006203863769769669,0.0015583150088787079,0.0193512131460011,0.15565110327443107 -2046,30,0.07412523031234741,0.01636672206223011,-0.009320409037172794,0.012889502570033073,0.008515099063515663,0.04565589427947998,0.01164991408586502,0.008652582298964262,0.023810123465955256,0.18058115569874644 -2046,33,0.07522350549697876,0.017141836006194355,-0.008915222249925137,0.013405833393335342,0.00891034584492445,0.04718174785375595,0.012466821819543839,0.009556026144418861,0.024357242677360773,0.18338857607450337 -2046,50,0.07997012883424759,0.022100768983364105,-0.006936690304428339,0.015600237995386124,0.011216125451028347,0.054926665499806404,0.017095962539315224,0.015099474461749196,0.02728201262652874,0.19829714251682162 -2046,67,0.084509938955307,0.028707525283098244,-0.005156436152756211,0.017536476254463196,0.014020534232258797,0.06285361245274544,0.021725105121731758,0.022197894752025604,0.03048007870092988,0.2138133002119139 -2046,70,0.08533155918121338,0.030275648646056648,-0.0048424117267131805,0.018052805215120316,0.014651650562882423,0.06441565603017807,0.022542012855410576,0.02386609395034609,0.031158547475934027,0.21686717704869807 -2046,90,0.09503573924303055,0.04857836291193962,-0.0025194445159286245,0.02089262381196022,0.0214331466704607,0.07858888804912567,0.027715761214494705,0.0426707249134779,0.038155356980860235,0.24622541172429918 -2046,95,0.09874611347913742,0.06178450956940651,-0.0016661548288539052,0.021538037806749344,0.025559958070516586,0.08526074364781377,0.02907727286219597,0.055901960702612996,0.04233622439205644,0.26158057991415257 -2047,5,0.062411412596702576,0.01018928550183773,-0.016105474904179573,0.009836910292506218,0.004750033840537071,0.02686435030773282,0.005083166994154453,-0.0017377464100718498,0.01797404317185283,0.14762357622385025 -2047,10,0.06590568274259567,0.011555652134120464,-0.01374219488352537,0.010773910209536552,0.00580671988427639,0.03323850780725479,0.006218406837433577,0.001414251048117879,0.019826347148045896,0.1590216866345145 -2047,30,0.07569079101085663,0.016730070114135742,-0.009642991237342358,0.013183342292904854,0.008769862726330756,0.04659312590956688,0.011894606985151768,0.008750047534704208,0.024447310715913773,0.1846527111250907 -2047,33,0.07682325690984726,0.017532260715961458,-0.009217366576194763,0.013718770816922188,0.00917578861117363,0.04814118146896362,0.012746036984026432,0.009680584073066711,0.025013618995435534,0.1875359989097342 -2047,50,0.08171765506267548,0.022672494873404503,-0.007180777844041586,0.015994345769286156,0.011564057320356369,0.056048423051834106,0.01757080666720867,0.015430603176355362,0.028041338548064232,0.20287207956425846 -2047,67,0.08639879524707794,0.029544474277645373,-0.005343068391084671,0.018002204596996307,0.014466382563114166,0.06414003923535351,0.022395575419068336,0.022803151980042458,0.031353116035461426,0.21887737419456244 -2047,70,0.08724599331617355,0.031179236434400077,-0.0050191730260849,0.01853763312101364,0.015118496492505074,0.06573274806141853,0.02324700728058815,0.02453935774974525,0.032054733484983444,0.222015461884439 -2047,90,0.09725227952003479,0.05032719299197197,-0.002625266555696726,0.021482495591044426,0.022133249789476395,0.08019024431705475,0.028639396652579308,0.0442256152164191,0.03929324448108673,0.252303472859785 -2047,95,0.10107816755771637,0.06418164074420929,-0.0017379439668729901,0.022151779383420944,0.026405464857816696,0.08701004087924957,0.030058447271585464,0.05804603034630418,0.04362710192799568,0.2682662410894408 -2048,5,0.06341953575611115,0.010332862846553326,-0.016646159812808037,0.010009882971644402,0.004870088770985603,0.027400607243180275,0.005043907091021538,-0.0019997237250208855,0.018388126441277564,0.1505204698070884 -2048,10,0.0670008435845375,0.011746563017368317,-0.014205087907612324,0.010980835184454918,0.005964263342320919,0.033897000923752786,0.0062260935083031654,0.0012607602402567863,0.020308561762794854,0.16221077414229512 -2048,30,0.07702970504760742,0.017094232141971588,-0.009973186999559402,0.013477569445967674,0.0090306606143713,0.047530561685562134,0.012137029320001602,0.008843287825584412,0.02509135860018432,0.1885168854147196 -2048,33,0.0781903862953186,0.01792387504130602,-0.009534608572721481,0.014032401144504547,0.00945170596241951,0.049116313457489014,0.013023669831454754,0.009796479237265883,0.025678671896457672,0.19146328230388462 -2048,50,0.08320669829845428,0.023248206824064255,-0.0074309976771473885,0.016390427947044373,0.011922905221581459,0.0571995135396719,0.018047964200377464,0.015753193758428097,0.028815051540732384,0.20723825483582914 -2048,67,0.0880044549703598,0.03039029069244864,-0.005532883107662201,0.018471039831638336,0.01492808386683464,0.065452441573143,0.02307225950062275,0.023418051656335592,0.0322446789033711,0.22370746851898732 -2048,70,0.0888727530837059,0.032093029469251626,-0.005200473591685295,0.01902586966753006,0.015602264553308487,0.06707973778247833,0.023958900943398476,0.02522360347211361,0.03297038562595844,0.2269160077907145 -2048,90,0.09912830591201782,0.0521051324903965,-0.0027254573069512844,0.02207743562757969,0.022865746170282364,0.08182264864444733,0.029574289917945862,0.04577779117971659,0.04046505093574524,0.25818160171620547 -2048,95,0.10304949432611465,0.06662341207265854,-0.0018059974885545748,0.022770972922444344,0.02729053795337677,0.08879271149635315,0.03105202317237854,0.06026829965412617,0.044954659417271614,0.27476597013883286 -2049,5,0.06489423662424088,0.010474346578121185,-0.017199294455349443,0.010181358084082603,0.004995281808078289,0.02794705936685205,0.004996872041374445,-0.0022810176014900208,0.018807523883879185,0.1538159963733051 -2049,10,0.06851723045110703,0.011936048045754433,-0.014682602137327194,0.011186789721250534,0.006125246174633503,0.034553270787000656,0.006226923316717148,0.001093737781047821,0.020794621924869718,0.16578605924732984 -2049,30,0.07866279780864716,0.017459208145737648,-0.010310565121471882,0.013772187754511833,0.009298369288444519,0.04848499223589897,0.012377182021737099,0.008928404189646244,0.02574527058750391,0.19269142542034387 -2049,33,0.07983698695898056,0.01831667834892869,-0.009857756085693836,0.014346720650792122,0.009735498577356339,0.05010419711470604,0.013299720361828804,0.009912997484207153,0.02635452337563038,0.1956713290885091 -2049,50,0.08491168171167374,0.02382790483534336,-0.007687321864068508,0.016788484528660774,0.01229359395802021,0.058364082127809525,0.0185274388641119,0.01607079617679119,0.02960049267858267,0.21181399072520435 -2049,67,0.0897652730345726,0.031244977023452546,-0.0057267192751169205,0.018942981958389282,0.015403832718729978,0.06678283959627151,0.023755157366394997,0.024030588567256927,0.033151621576398616,0.22874567979946733 -2049,70,0.09064367413520813,0.03301702626049518,-0.00538482824340463,0.01951751485466957,0.016102014109492302,0.06844019144773483,0.02467769756913185,0.02589218970388174,0.033904039487242695,0.2320137312170118 -2049,90,0.10101857781410217,0.0539122000336647,-0.00282834693789482,0.02267744578421116,0.023620685562491417,0.08347681164741516,0.030520441010594368,0.047353245713748084,0.0416639693081379,0.2642046972177923 -2049,95,0.10498540103435516,0.06910981982946396,-0.001878082868643105,0.023395610973238945,0.0282034482806921,0.09059010744094845,0.032058004289865494,0.0625505018979311,0.046311160549521446,0.2813713962445035 -2050,5,0.06647048145532608,0.01061373669654131,-0.01776763144880533,0.010351333767175674,0.005106652155518532,0.028389964252710342,0.004942066036164761,-0.0025630744639784093,0.019214755576103925,0.15719075443921612 -2050,10,0.0701528936624527,0.012124106287956238,-0.015167968347668648,0.011391773819923401,0.0062768729403615,0.03515070974826813,0.006220899056643248,0.0009208424016833305,0.02127189189195633,0.1694670519325882 -2050,30,0.08046484738588333,0.017824996262788773,-0.010651789605617523,0.014067191630601883,0.009560218080878258,0.04941193759441376,0.012615062296390533,0.009012880269438028,0.026396546978503466,0.19698516339994968 -2050,33,0.08165828883647919,0.01871067127212882,-0.01018430314026773,0.014661729335784912,0.010014871135354042,0.051070909947156906,0.013574186712503433,0.01003092946484685,0.02702830795198679,0.20004497445188463 -2050,50,0.08681620657444,0.02441158890724182,-0.007941944524645805,0.01718851365149021,0.01266548316925764,0.059509823098778725,0.01900922693312168,0.01639737095683813,0.030389143154025078,0.21664703427813947 -2050,67,0.0917493999004364,0.03210852518677714,-0.005917049944400787,0.019418029114603996,0.01588549092411995,0.0681113451719284,0.02444426342844963,0.024656344670802355,0.03406783265992999,0.2339918534271419 -2050,70,0.09264220297336578,0.03395122773945331,-0.005563962273299694,0.020012566819787025,0.016607148014008994,0.0698011077940464,0.02540338970720768,0.026593984570354223,0.0348435640335083,0.2373539110645652 -2050,90,0.10318725556135178,0.05574837327003479,-0.0029240106930956172,0.023282524198293686,0.02440020442008972,0.08516520261764526,0.03147784620523453,0.048945502843707855,0.042883907072246076,0.2705019869375974 -2050,95,0.10721912980079651,0.07164086401462555,-0.0019415281305555285,0.024025697261095047,0.029159892350435257,0.09241235256195068,0.03307638689875603,0.06487375614233315,0.047696253657340974,0.28829749180004 -2051,5,0.06759695708751678,0.010751033201813698,-0.018327534198760986,0.010519811883568764,0.005225456785410643,0.028877072036266327,0.004879484884440899,-0.002838042564690113,0.019627489941194655,0.16019369901623576 -2051,10,0.07135320454835892,0.012310738675296307,-0.015647292137145996,0.011595789343118668,0.0064345793798565865,0.035785187035799026,0.006208016537129879,0.0007467512041330338,0.02175476960837841,0.1727426583878696 -2051,30,0.08187194168567657,0.01819160021841526,-0.010990663431584835,0.01436258852481842,0.00982629172503948,0.05033588036894798,0.012850672006607056,0.009098023176193237,0.02705340660177171,0.2009249568451196 -2051,33,0.08308931440114975,0.01910585192963481,-0.010509653016924858,0.014977432787418365,0.0102974952198565,0.05203329771757126,0.01384707074612379,0.010147023014724255,0.02770608462393284,0.20408079660264775 -2051,50,0.08835066109895706,0.024999259039759636,-0.008196367882192135,0.017590520903468132,0.013032561168074608,0.06064272113144398,0.019493326544761658,0.01672940980643034,0.031179437413811684,0.221093149157241 -2051,67,0.09338277578353882,0.03298094451427462,-0.0061097522266209126,0.019896186888217926,0.01636209711432457,0.06942570954561234,0.02513958513736725,0.025283331973478235,0.03498225830495358,0.2389002768415958 -2051,70,0.0942934900522232,0.03489563539624214,-0.005745985545217991,0.02051103115081787,0.017110014334321022,0.07114660218358039,0.026135984808206558,0.02729065902531147,0.0357851330190897,0.24233865272253752 -2051,90,0.1050499975681305,0.05761367082595825,-0.0030239915940910578,0.02389267459511757,0.025167176499962807,0.08680690824985504,0.03244650736451149,0.05061304848641157,0.04409582335501909,0.27649093233048916 -2051,95,0.10916271805763245,0.07421654462814331,-0.002010772004723549,0.0246612299233675,0.030078105628490448,0.09420144557952881,0.03410717099905014,0.06722192091401666,0.049070526380091885,0.29495843797922133 -2052,5,0.06861105561256409,0.01088623609393835,-0.018856674432754517,0.010686792433261871,0.005335332825779915,0.029318546876311302,0.004809129983186722,-0.0030922377482056618,0.020028314390219747,0.16300892374711112 -2052,10,0.07245196402072906,0.01249594334512949,-0.01609904132783413,0.011798834428191185,0.006581238936632872,0.036355115473270416,0.006188276223838329,0.0006015077233314514,0.022222528234124184,0.17586301773844754 -2052,30,0.08320777118206024,0.018559014424681664,-0.01131028775125742,0.014658372849225998,0.01007588282227516,0.051191672682762146,0.013084009289741516,0.009198143519461155,0.027689708396792412,0.20473558916710316 -2052,33,0.08445258438587189,0.01950222283601761,-0.010816782051697374,0.015293825417757034,0.010556751862168312,0.052929279878735545,0.014118369668722153,0.010282924864441156,0.02836397150531411,0.20794384740758687 -2052,50,0.08983251452445984,0.025590913370251656,-0.008434752002358437,0.017994500696659088,0.013377051800489426,0.0617086049169302,0.01997974142432213,0.017078159609809518,0.031947752460837364,0.22538093198090792 -2052,67,0.09497804194688797,0.03386222630739215,-0.006288769189268351,0.020377449691295624,0.016806148700416097,0.07064175069332124,0.025841113179922104,0.02591651678085327,0.035867610983550555,0.24368075818754734 -2052,70,0.09590927511453629,0.03585024513304233,-0.005916210822761059,0.02101290225982666,0.01758019272238016,0.07241683155298233,0.02687547355890274,0.028022839687764645,0.03669445309787989,0.24721495201811192 -2052,90,0.10690820962190628,0.0595080703496933,-0.0031163375824689865,0.02450789511203766,0.025879917666316032,0.08834846615791322,0.03342641890048981,0.05229300260543823,0.045258281752467155,0.2823785563930869 -2052,95,0.11111363023519516,0.07683685421943665,-0.002072820207104087,0.025302210822701454,0.03094550548121333,0.09588545188307757,0.03515035659074783,0.06960353907197714,0.0503878379240632,0.3013787900330498 -2053,5,0.06927690654993057,0.011019345372915268,-0.019422052428126335,0.010852273553609848,0.005434137070551515,0.029688484966754913,0.004731002263724804,-0.003375188447535038,0.020421942602843045,0.16549992935033514 -2053,10,0.07329941540956497,0.012679722160100937,-0.016580302268266678,0.012000909075140953,0.006720028351992369,0.036871299147605896,0.006161681842058897,0.0004294011741876602,0.022686402313411236,0.17876396593637764 -2053,30,0.08456376940011978,0.01892724446952343,-0.011646372266113758,0.014954544603824615,0.010330297611653804,0.0520545806735754,0.013315077871084213,0.009294788353145123,0.02833254337310791,0.2086184537038207 -2053,33,0.08586743474006653,0.019899783339351416,-0.01113465242087841,0.015610909089446068,0.010828590020537376,0.05382954396307468,0.014388087205588818,0.010412449948489666,0.02902855949476361,0.2119198171980679 -2053,50,0.09150172770023346,0.02618655376136303,-0.00868346355855465,0.01840045489370823,0.013736654072999954,0.0627889335155487,0.020468473434448242,0.017424861900508404,0.032729653641581535,0.22993687773123384 -2053,67,0.09689053893089294,0.03475237552076581,-0.006471951026469469,0.02086181752383709,0.017280117683112623,0.071907177567482,0.02654886059463024,0.026564020663499832,0.03677773796021939,0.24884972147177906 -2053,70,0.09786580502986908,0.036815061047673216,-0.006086014211177826,0.021518182009458542,0.018073109351098533,0.07371674478054047,0.02762187086045742,0.028756420128047466,0.03763160705566406,0.252488350472413 -2053,90,0.10938477516174316,0.06143159419298172,-0.0032020730432122946,0.025128182023763657,0.02664433792233467,0.08998187929391861,0.03441759943962097,0.053991260938346386,0.046476568654179574,0.28886225561145695 -2053,95,0.11378903687000275,0.07950180768966675,-0.0021274537197314295,0.02594863809645176,0.03189359381794928,0.09765620529651642,0.036205947399139404,0.07207206403836608,0.051772370003163815,0.30861459020525217 -2054,5,0.07016963511705399,0.011150361970067024,-0.01997690461575985,0.011016257107257843,0.0055426377803087234,0.030111292749643324,0.00464510265737772,-0.0036546792834997177,0.020823059463873507,0.1682127764215693 -2054,10,0.07431082427501678,0.012862074188888073,-0.017054788768291473,0.012202015146613121,0.0068684198893606664,0.03743942081928253,0.006128231529146433,0.000260278582572937,0.02315888348966837,0.18182867686264217 -2054,30,0.08590754121541977,0.01929628849029541,-0.011979430913925171,0.015251107513904572,0.010588051751255989,0.052933793514966965,0.013543874956667423,0.00938572851009667,0.028984406404197215,0.2124489875510335 -2054,33,0.08724967390298843,0.020298532210290432,-0.011453717015683651,0.015928683802485466,0.011100804433226585,0.05473879352211952,0.01465622242540121,0.010540906339883804,0.029700802639126778,0.21588994765188546 -2054,50,0.09305021166801453,0.026786180213093758,-0.008932601660490036,0.018808383494615555,0.014096686616539955,0.06388333439826965,0.02095951698720455,0.017769532394595444,0.03351982682943344,0.2343644656939432 -2054,67,0.09859801828861237,0.03565139092504981,-0.006658129394054413,0.021349294111132622,0.017745565623044968,0.07315846666693689,0.027262814342975616,0.027222436852753162,0.03769278898835182,0.25381048515439036 -2054,70,0.09960206598043442,0.037790080532431596,-0.006261879904195672,0.022026868537068367,0.01856824085116386,0.0750044837594032,0.028375161811709404,0.029510128777474165,0.03857030067592859,0.25754751260392367 -2054,90,0.11146090924739838,0.06338422745466232,-0.0032945352140814066,0.02575353905558586,0.027396103367209445,0.09156407415866852,0.03542002663016319,0.05572585039772093,0.047691184841096405,0.2950611877255142 -2054,95,0.11599511653184891,0.08221138268709183,-0.00218962668441236,0.026600509881973267,0.032817119546234605,0.09938467592000959,0.03727393224835396,0.07457254361361265,0.053145348466932765,0.3154202691745013 -2055,5,0.07133542001247406,0.011279283091425896,-0.020548468455672264,0.011178741231560707,0.005646467674523592,0.03049265779554844,0.004551427438855171,-0.003948218189179897,0.021221045404672623,0.17111477886792273 -2055,10,0.07555082440376282,0.013042999431490898,-0.017542580142617226,0.01240215077996254,0.007016018079593779,0.03799668475985527,0.0060879229567945,8.208043873310512e-05,0.023631885647773743,0.18505638930946589 -2055,30,0.0873553678393364,0.019666146486997604,-0.012321168556809425,0.015548059716820717,0.010846598073840141,0.053806635737419124,0.013770400546491146,0.009476793929934502,0.0296408599242568,0.21638152012601494 -2055,33,0.08872155100107193,0.020698472559452057,-0.011780033819377422,0.016247151419520378,0.011377101764082909,0.05564820393919945,0.014922772534191608,0.010664723813533783,0.030380514170974492,0.21992198520340026 -2055,50,0.0946260467171669,0.02738979086279869,-0.009186547249555588,0.019218288362026215,0.014461357146501541,0.06498066335916519,0.021452877670526505,0.018118035048246384,0.034313146490603685,0.23882153490558267 -2055,67,0.10027327388525009,0.03655927374958995,-0.0068449825048446655,0.02183987945318222,0.018235450610518456,0.07444185018539429,0.027982981875538826,0.027885613963007927,0.038619956448674206,0.25877085094922225 -2055,70,0.10129531472921371,0.038775307312607754,-0.006437786389142275,0.022538969293236732,0.019074161909520625,0.07631728053092957,0.029135355725884438,0.03026849962770939,0.03952438551932573,0.26261091930791736 -2055,90,0.11336667835712433,0.0653659850358963,-0.0033850474283099174,0.02638397179543972,0.02817843668162823,0.0931810110807419,0.03643370792269707,0.05754655413329601,0.04893718548119068,0.3011767415522627 -2055,95,0.11798214912414551,0.08496561646461487,-0.0022485991008579734,0.027257835492491722,0.03378169611096382,0.10113456845283508,0.03835432976484299,0.07711481694132084,0.054569877497851846,0.3221741226967423 -2056,5,0.07275260984897614,0.01140611246228218,-0.021112894639372826,0.01133972778916359,0.005762623040936887,0.030951913911849264,0.004449980799108744,-0.004234914667904377,0.02163175866007805,0.17433775598183274 -2056,10,0.07701410353183746,0.013222498819231987,-0.01802530512213707,0.012601315975189209,0.0071716804988682286,0.038595911115407944,0.006040759850293398,-0.0001018056645989418,0.024114049877971413,0.188534497609362 -2056,30,0.08894767612218857,0.020036816596984863,-0.012660893611609936,0.015845399349927902,0.011114029213786125,0.054698314517736435,0.013994656503200531,0.009560734964907168,0.03030576966702938,0.22049840060062706 -2056,33,0.09032879769802094,0.02109959941357374,-0.012106786482036114,0.016566308215260506,0.011657877285033463,0.05656674828380346,0.015187741257250309,0.010784270241856575,0.031066656373441217,0.22407487471122295 -2056,50,0.09629783034324646,0.027997393161058426,-0.009441952221095562,0.01963016390800476,0.014831776730716228,0.06608130037784576,0.021948551759123802,0.01847043912857771,0.03511801082640886,0.2433757516555488 -2056,67,0.10200679302215576,0.03747602276504043,-0.0070382943376898766,0.022333567962050438,0.018717188388109207,0.07571210697293283,0.02870936505496502,0.028569113463163376,0.03955106437206268,0.2638202778436244 -2056,70,0.10304000228643417,0.0397707350552082,-0.006619262043386698,0.023054474964737892,0.019580787047743797,0.07761192470788955,0.029902450740337372,0.031029243022203445,0.04047953896224499,0.2677201544865966 -2056,90,0.1152433231472969,0.06737685203552246,-0.003483513602986932,0.02701946720480919,0.028950053639709955,0.09476801753044128,0.03745865449309349,0.05932218220550567,0.05017530135810376,0.3072807576507331 -2056,95,0.11990924179553986,0.08776446431875229,-0.0023162851575762033,0.02792060188949108,0.03472375124692917,0.10285665690898896,0.0394471250474453,0.07966321520507336,0.055970914568752014,0.3289896339905681 -2057,5,0.07396464049816132,0.011530846357345581,-0.02168140932917595,0.01149921678006649,0.005889775045216083,0.03144679069519043,0.004340759944170713,-0.004527321085333824,0.02205065623857081,0.1774347038473934 -2057,10,0.07832859456539154,0.013400571420788765,-0.01850851587951183,0.012799512594938278,0.00733809033408761,0.03922031708061695,0.005986739881336689,-0.00028256047517061234,0.02460677456110716,0.19193244306370616 -2057,30,0.09054908156394958,0.020408300682902336,-0.013007394038140774,0.016143130138516426,0.01138848252594471,0.055613186210393906,0.014216640964150429,0.009642031043767929,0.030979853868484494,0.22466485612094403 -2057,33,0.09196341037750244,0.021501916497945785,-0.012441900558769703,0.016886156052350998,0.011949669811874628,0.05751657858490944,0.015451124869287014,0.010899597313255072,0.031763384845107795,0.22834051121026278 -2057,50,0.09807595610618591,0.028608975932002068,-0.009702402167022228,0.02004401572048664,0.015213241800665855,0.06718724966049194,0.022446539252996445,0.018818556098267436,0.03593563660979271,0.24809969146735966 -2057,67,0.10392218083143234,0.03840163424611095,-0.0072383517399430275,0.022830363363027573,0.01920728012919426,0.07698917388916016,0.02944195456802845,0.029245413839817047,0.04049576319754124,0.26907463968731465 -2057,70,0.1049802303314209,0.040776368975639334,-0.006806908641010523,0.023573391139507294,0.0200963132083416,0.07891642600297927,0.03067643940448761,0.03179044369608164,0.04145093820989131,0.2730620501562953 -2057,90,0.11747695505619049,0.0694168359041214,-0.0035900073125958443,0.027660036459565163,0.029731299728155136,0.09635560661554336,0.03849484771490097,0.06110019860789186,0.05141923576593399,0.31375190149992704 -2057,95,0.12225505709648132,0.09060794860124588,-0.0023893579491414164,0.02858881838619709,0.035669565200805664,0.10457699000835419,0.04055231809616089,0.08228662237524986,0.05738242994993921,0.3362637484911829 -2058,5,0.07460584491491318,0.01165348757058382,-0.02224402129650116,0.01165720634162426,0.006005666684359312,0.03188607431948185,0.0042237648740410805,-0.004815291287377477,0.022457035584375264,0.18001359072513878 -2058,10,0.07913510501384735,0.013577216304838657,-0.01898722983896732,0.012996738776564598,0.007490148674696684,0.03980527073144913,0.005925863049924374,-0.0004549287259578705,0.025084630213677885,0.19485260371584445 -2058,30,0.09181852638721466,0.020780600607395172,-0.013345763459801676,0.01644124835729599,0.011656120419502258,0.056487102061510086,0.01443635206669569,0.009734143503010273,0.03164447005838156,0.2284924405859783 -2058,33,0.0932864248752594,0.021905422564595937,-0.012766494415700436,0.017206696793437004,0.01222696527838707,0.05841989815235138,0.015712926164269447,0.011023473925888538,0.03244996091350913,0.23229030427988617 -2058,50,0.09963051974773407,0.029224542900919914,-0.009956584312021732,0.020459843799471855,0.015581751242280006,0.06825213879346848,0.022946838289499283,0.0191853572614491,0.03674149513244629,0.2525764349848032 -2058,67,0.10569820553064346,0.03933611936867241,-0.007429277789779004,0.023330271244049072,0.019682204909622684,0.07823874056339264,0.030180754140019417,0.02993630338460207,0.04143153291195631,0.27413028629962355 -2058,70,0.10679633915424347,0.041792212799191465,-0.006987816654145718,0.024095715954899788,0.020597467198967934,0.0801921933889389,0.0314573310315609,0.032570588402450085,0.04241475183516741,0.2782326713204384 -2058,90,0.11976645141839981,0.07148594409227371,-0.0036869244650006294,0.028305673971772194,0.03049771618098022,0.09790371358394626,0.039542291313409805,0.06296025589108467,0.05265722498297692,0.3201610276475549 -2058,95,0.12472555041313171,0.09349607676267624,-0.0024541274178773165,0.0292624831199646,0.036605315655469824,0.10626737773418427,0.04166991636157036,0.08492367468861617,0.05878034792840481,0.34349538980168287 -2059,5,0.07492606341838837,0.011774035170674324,-0.022827891632914543,0.011813698336482048,0.0060845669358968735,0.03213894069194794,0.004098997451364994,-0.005118311382830143,0.0228306450182572,0.18205504293437116 -2059,10,0.07963413000106812,0.013752435334026814,-0.019488491117954254,0.013192994520068169,0.0076176682487130165,0.04024748094379902,0.005858130287379026,-0.0006364164873957634,0.025539095047861338,0.19736476615071297 -2059,30,0.09281828999519348,0.021153712645173073,-0.013688379898667336,0.016739755868911743,0.011903941631317139,0.057304257154464716,0.014653796330094337,0.009843014553189276,0.03229323411360383,0.23197192660300062 -2059,33,0.0943441390991211,0.022310117613524198,-0.013086672872304916,0.017527924850583076,0.012479091063141823,0.059262923896312714,0.01597314514219761,0.011166233569383621,0.03312239682301879,0.23590360152069478 -2059,50,0.10093870013952255,0.029844099655747414,-0.010205571539700031,0.020877646282315254,0.01595073752105236,0.06929384171962738,0.023449458181858063,0.01955605112016201,0.037539295852184296,0.2567794816568494 -2059,67,0.10724592953920364,0.0402794669568539,-0.00760532496497035,0.02383328042924404,0.02016669325530529,0.0794749823212624,0.030925773084163666,0.03064029850065708,0.04236911544576287,0.27897633510641756 -2059,70,0.10838741809129715,0.04281825348734855,-0.0071522872895002365,0.024621447548270226,0.021102169528603554,0.08146731853485106,0.032245125621557236,0.03337785601615906,0.043380963429808614,0.2832284905016422 -2059,90,0.12186959385871887,0.07358415424823761,-0.0037615324836224318,0.028956379741430283,0.03130746893584732,0.09950143694877626,0.040601011365652084,0.06484872475266457,0.053940799646079556,0.32645689910277725 -2059,95,0.12702447175979614,0.09642884135246277,-0.0024986093747429603,0.02994159236550331,0.03760723024606705,0.10798001289367676,0.042799923568964005,0.08758511440828405,0.06024470468983052,0.35055055408738545 -2060,5,0.07597769796848297,0.011892489157617092,-0.02339744810014963,0.011968692764639854,0.006181897409260274,0.03246918171644211,0.003966457210481167,-0.005404949188232422,0.023219468351453543,0.18486740998923779 -2060,10,0.08079618215560913,0.013926229439675808,-0.019970325753092766,0.013388281688094139,0.007751710247248411,0.040742550045251846,0.005783541593700647,-0.000815114844590425,0.026007844554260376,0.20048630982637405 -2060,30,0.09428954124450684,0.021527638658881187,-0.014023839682340623,0.017038652673363686,0.012153130024671555,0.05812280625104904,0.014868966303765774,0.009946739557199179,0.032947703171521424,0.23593648811802267 -2060,33,0.09585118293762207,0.022716002911329268,-0.01340788695961237,0.017849847674369812,0.012738844379782677,0.060116527527570726,0.016231779009103775,0.011303751468658444,0.03380088720470667,0.23993006093427538 -2060,50,0.10260040313005447,0.03046763874590397,-0.010454902425408363,0.02129742130637169,0.016310878098011017,0.07033365964889526,0.02395438775420189,0.019940591882914305,0.03833884187042713,0.2613451727665961 -2060,67,0.10905555635690689,0.041231679469347034,-0.007788880704902093,0.024339398369193077,0.020640341565012932,0.08069027408957481,0.0316770002245903,0.031357015017420053,0.043300261721014977,0.2840550824068487 -2060,70,0.11022381484508514,0.04385449923574924,-0.007321885321289301,0.025150593370199203,0.021601084619760513,0.08271698653697968,0.03303981572389603,0.03418321954086423,0.04434009250253439,0.2884512750431895 -2060,90,0.12402217835187912,0.07571148872375488,-0.003842983627691865,0.029612161219120026,0.032088782638311386,0.10105106234550476,0.04167097061872482,0.06675946568138899,0.05518302414566279,0.33287875114474447 -2060,95,0.12929795682430267,0.09940622746944427,-0.0025517267640680075,0.03062615357339382,0.03856232762336731,0.1096789538860321,0.043942321091890335,0.0903439549729228,0.06166802532970905,0.35779766510240724 -2061,5,0.07723693549633026,0.012008849531412125,-0.023981045000255104,0.01212218776345253,0.006291475612670183,0.03286246955394745,0.003826143452897668,-0.005711161950603128,0.023623717203736305,0.18785727312788367 -2061,10,0.08209864795207977,0.014098595827817917,-0.020468534901738167,0.01358259841799736,0.007905526086688042,0.041291605681180954,0.0057020969688892365,-0.0010074544697999954,0.026487106271088124,0.20376709159463643 -2061,30,0.0957130417227745,0.021902376785874367,-0.014373461715877056,0.017337938770651817,0.012417580932378769,0.05898981913924217,0.015081867575645447,0.01003926619887352,0.03362355348654091,0.23985318671911954 -2061,33,0.09728868305683136,0.023123075943440197,-0.01374184899032116,0.018172459676861763,0.013014775067567826,0.06101316716521978,0.016488833352923393,0.011430368991568685,0.034499721601605415,0.24393372191116214 -2061,50,0.10409844666719437,0.031095167621970177,-0.010713177733123302,0.02171917073428631,0.016688235104084015,0.0714089572429657,0.02446163445711136,0.020315799862146378,0.039161426946520805,0.265791580080986 -2061,67,0.11061149835586548,0.04219276066869501,-0.007981683127582073,0.02484862320125103,0.02113998308777809,0.08194337517023088,0.03243444114923477,0.032063815742731094,0.04426092319190503,0.28893813118338585 -2061,70,0.111790232360363,0.044900953397154796,-0.007502038963139057,0.025683144107460976,0.022119546309113503,0.08399929106235504,0.03384140506386757,0.034976255148649216,0.04532661847770214,0.2934959631878883 -2061,90,0.12571236491203308,0.07786794006824493,-0.003935851622372866,0.030273007228970528,0.0329032763838768,0.10260823369026184,0.042752187699079514,0.06874813791364431,0.056470765545964245,0.33898139595985416 -2061,95,0.1310354620218277,0.10242827236652374,-0.0026131076738238335,0.031316157430410385,0.03955839946866035,0.11140808463096619,0.04509713128209114,0.09313451498746872,0.0631206126883626,0.364699849905446 -2062,5,0.07818090170621872,0.012123116292059422,-0.024563756771385666,0.012274185195565224,0.0064130425453186035,0.033310215920209885,0.003678055014461279,-0.006030712276697159,0.024037191085517405,0.19066547290422023 -2062,10,0.08313946425914764,0.014269535429775715,-0.020969534292817116,0.013775944709777832,0.008068297058343887,0.04188987091183662,0.0056137945502996445,-0.001202549785375595,0.026975064212456348,0.20689402939751744 -2062,30,0.0970250740647316,0.02227793075144291,-0.01472558919340372,0.017637616023421288,0.012696072459220886,0.059879060834646225,0.015292495489120483,0.010123195033520457,0.034305934142321345,0.24375117070740088 -2062,33,0.09863211214542389,0.023531339839100836,-0.014079101383686066,0.01849576272070408,0.013309025112539528,0.061927683651447296,0.016744300723075867,0.011545295361429453,0.035206749457865956,0.2479126590373926 -2062,50,0.10557752847671509,0.03172668069601059,-0.010979187674820423,0.022142896428704262,0.01707688719034195,0.07249438762664795,0.024971194565296173,0.020688061602413654,0.03999606892466545,0.27024186169728637 -2062,67,0.11222033202648163,0.04316270928829912,-0.008178744465112686,0.0253609549254179,0.021642915904521942,0.08319428861141206,0.03319808468222618,0.03277643187902868,0.04522910010069609,0.2939256274607033 -2062,70,0.11342255026102066,0.04595761261880397,-0.0076909341849386754,0.02621910348534584,0.022648300975561142,0.08527537435293198,0.03464989364147186,0.03578803036361933,0.04632473737001419,0.2985990204848349 -2062,90,0.12762203812599182,0.08005350083112717,-0.004040288273245091,0.030938923358917236,0.03370852768421173,0.10418191552162172,0.04384465888142586,0.07073205430060625,0.05775521881878376,0.34522931636311116 -2062,95,0.13305117189884186,0.10549493134021759,-0.002682777505833656,0.03201160952448845,0.040534768439829255,0.1131051629781723,0.04626433178782463,0.09593349788337946,0.06459105527028441,0.3718289383687078 -2063,5,0.07919557392597198,0.012235289439558983,-0.025147058255970477,0.012424683198332787,0.006534906104207039,0.033747076988220215,0.0035221949219703674,-0.006336614629253744,0.024445390119217335,0.19345598064828665 -2063,10,0.08422862738370895,0.014439047314226627,-0.021467948332428932,0.013968322426080704,0.00822660680860281,0.04246157892048359,0.005518638528883457,-0.0013983696699142456,0.027463273145258427,0.21001380260568112 -2063,30,0.09832285344600677,0.022654296830296516,-0.015077415853738785,0.01793767884373665,0.012971548363566399,0.060744911432266235,0.015500854700803757,0.010206137783825397,0.03498808834701776,0.24759051722940056 -2063,33,0.0999540314078331,0.023940793331712486,-0.014415452396497132,0.018819758668541908,0.013599736616015434,0.06283012136816979,0.016998186707496643,0.011677181348204613,0.03591135399416089,0.2518676288984716 -2063,50,0.10700379312038422,0.03236217796802521,-0.011241813190281391,0.02256859466433525,0.017462431453168392,0.07357768714427948,0.02548306994140148,0.021049808710813522,0.040829489938914776,0.2746163047850132 -2063,67,0.11374640464782715,0.04414152286946778,-0.008376399986445904,0.025876393541693687,0.022141164168715477,0.08443363010883331,0.03396795317530632,0.0335002238303423,0.04620094506070018,0.2988291662186384 -2063,70,0.11496667563915253,0.04702447392046451,-0.007877115160226822,0.026758471503853798,0.023168220184743397,0.08656370043754577,0.035465288907289505,0.03660667734220624,0.047321191616356374,0.3035957208834588 -2063,90,0.1293794959783554,0.08226817846298218,-0.004140340257436037,0.0316099114716053,0.03451470769941807,0.10573968291282654,0.04494839534163475,0.07269466668367386,0.05904772933572531,0.3513628212735057 -2063,95,0.13489019870758057,0.1086062341928482,-0.002750441327225418,0.03271251171827316,0.04151206836104393,0.1148109793663025,0.047443948686122894,0.09883045055903468,0.06605658307671546,0.3788636761019005 -2064,5,0.08014625310897827,0.012345368973910809,-0.025715558882802723,0.012573683634400368,0.0066326214000582695,0.03410234525799751,0.0033585610799491405,-0.006630830466747284,0.02483469806611538,0.19611504657659679 -2064,10,0.08529787510633469,0.014607134275138378,-0.021951626986265182,0.014159729704260826,0.008364844135940075,0.042956885695457456,0.0054166242480278015,-0.0015732479281723364,0.027932098135352135,0.21310149133205414 -2064,30,0.09972410649061203,0.023031476885080338,-0.01541464850306511,0.0182381309568882,0.013227003253996372,0.06155388802289963,0.015706943348050117,0.010305071249604225,0.03564888089895248,0.2514947329647839 -2064,33,0.10139370709657669,0.024351433329284192,-0.01473745983093977,0.019144443795084953,0.013864059001207352,0.06367594748735428,0.017250491306185722,0.011815579878166315,0.036595190363004806,0.2558461718726903 -2064,50,0.10860954225063324,0.03300166130065918,-0.011492494493722916,0.022996267303824425,0.017817525193095207,0.07459558546543121,0.025997260585427284,0.02144138514995575,0.04164542257785797,0.27915090695023537 -2064,67,0.1155109778046608,0.045129201374948066,-0.008561857035383565,0.026394937187433243,0.02261400455608966,0.08561174005270004,0.0347440280020237,0.03427393431775272,0.04715046318247915,0.3039244464598596 -2064,70,0.1167600005865097,0.04810154139995574,-0.008049484342336655,0.027301248162984848,0.023662795498967153,0.08777005970478058,0.0362875796854496,0.037440904416143894,0.048296081461012365,0.3088127598166466 -2064,90,0.1315123289823532,0.08451197296380997,-0.004227184504270549,0.032285965979099274,0.035282571241259615,0.10724349170923235,0.046063382178545,0.07475571683608004,0.06031186860054732,0.3578258155845106 -2064,95,0.13715285062789917,0.1117621660232544,-0.002804853953421116,0.03341885656118393,0.04248477518558502,0.11644919142127036,0.04863595962524414,0.10176233672536897,0.06749950302764772,0.3860706390812993 -2065,5,0.08112150430679321,0.012453354895114899,-0.026273038052022454,0.012721186503767967,0.006747294683009386,0.03451741114258766,0.0031871541868895292,-0.006926937960088253,0.02523115649819374,0.19885731420945377 -2065,10,0.08637076616287231,0.014773794449865818,-0.02242892049252987,0.0143501665443182,0.008515758439898491,0.043495327979326245,0.005307754967361689,-0.0017582841217517805,0.028408666094765066,0.21623928272165358 -2065,30,0.10107046365737915,0.023409470915794373,-0.015750780701637268,0.018538974225521088,0.013488758355379105,0.06237337924540043,0.015910759568214417,0.010413673706352709,0.0363194327801466,0.255359030328691 -2065,33,0.10277171432971954,0.024763264805078507,-0.0150595186278224,0.019469819962978363,0.014138799160718918,0.06452763110399246,0.017501210793852806,0.011960890144109726,0.037288173642009495,0.259803825058043 -2065,50,0.11012432724237442,0.033645130693912506,-0.011743718758225441,0.023425918072462082,0.01818178966641426,0.07561280578374863,0.026513762772083282,0.0218394473195076,0.04246549401432276,0.2835896695032716 -2065,67,0.11715658754110336,0.046125748567283194,-0.008749415166676044,0.026916589587926865,0.02308853156864643,0.0867856125533581,0.03552631661295891,0.035017216578125954,0.04810348723083735,0.3088978942669928 -2065,70,0.1184292882680893,0.04918881356716155,-0.008227348327636719,0.02784743718802929,0.02416406385600567,0.08896799385547638,0.03711676970124245,0.038313163444399834,0.04927382692694664,0.3139283072669059 -2065,90,0.13346125185489655,0.08678488433361053,-0.0043235514312982455,0.03296709433197975,0.03604186773300172,0.1087006747722626,0.0471896268427372,0.07683961815200746,0.061565438844263555,0.3640677688643336 -2065,95,0.13920868933200836,0.11496274173259735,-0.0028708175639621967,0.034130651503801346,0.043413300067186356,0.1180455096065998,0.049840375781059265,0.10473735816776752,0.06892853369936344,0.39320316631346935 -2066,5,0.08208481967449188,0.012559247203171253,-0.026868173759430642,0.012867189943790436,0.006860548164695501,0.034909628331661224,0.0030079721473157406,-0.007261333987116814,0.025630604475736618,0.2015774153987877 -2066,10,0.08738341927528381,0.014939026907086372,-0.022936804220080376,0.014539634808897972,0.008669364266097546,0.04403531923890114,0.00519202696159482,-0.001956164836883545,0.028894566325470807,0.2192508314969018 -2066,30,0.10222127288579941,0.02378827892243862,-0.016107158735394478,0.018840206786990166,0.013762904331088066,0.0632255494594574,0.016112303361296654,0.01049839030019939,0.03700608285143971,0.2590821427060291 -2066,33,0.1039385125041008,0.02517628526315093,-0.015400130301713943,0.019795889034867287,0.014422474429011345,0.06541148573160172,0.017750345170497894,0.012095790356397629,0.038001819290220736,0.2635304712690413 -2066,50,0.11136022955179214,0.03429258614778519,-0.012009272351861,0.023857539519667625,0.01856854371726513,0.0766807347536087,0.027032578364014626,0.02221303153783083,0.04331275820732117,0.2878161910921335 -2066,67,0.1184585839509964,0.047131163179874466,-0.008946346119046211,0.027441350743174553,0.023597201332449913,0.08801323175430298,0.036314815282821655,0.03575871465727687,0.04909174516797066,0.3136097534932196 -2066,70,0.1197432428598404,0.05028629191219806,-0.008412696700543171,0.028397031128406525,0.024697832763195038,0.09024131447076796,0.037952858954668045,0.039160950016230316,0.05028646998107433,0.31875031379458957 -2066,90,0.1349164992570877,0.08908691257238388,-0.004419790487736456,0.03365328907966614,0.03686972893774511,0.11026456952095032,0.048327118158340454,0.07889605266973376,0.0628930950537324,0.3699989872053266 -2066,95,0.14071795344352722,0.11820795387029648,-0.0029347558273002546,0.034847892820835114,0.0444338396191597,0.11972735822200775,0.05105718970298767,0.10776940453797579,0.07043930208310484,0.4001154600642621 -2067,5,0.08317865431308746,0.012663044966757298,-0.02748203761875629,0.013011695817112923,0.006956138648092747,0.035233721137046814,0.002821017988026142,-0.00760043878108263,0.02602256890386343,0.2042759326286614 -2067,10,0.08849944174289703,0.01510283350944519,-0.023452624678611755,0.014728132635354996,0.008809268474578857,0.04452177509665489,0.005069444887340069,-0.0021638963371515274,0.029368564765900374,0.2222467165440321 -2067,30,0.10339938849210739,0.024167900905013084,-0.016468318179249763,0.019141826778650284,0.014030041173100471,0.06404234617948532,0.016311578452587128,0.01058095134794712,0.03768873531371355,0.2627037463244051 -2067,33,0.10512381792068481,0.025590494722127915,-0.01574421575292945,0.020122647285461426,0.014703853838145731,0.06627350196242332,0.017997900024056435,0.012227892875671387,0.038706690073013306,0.2673112091142684 -2067,50,0.11257659643888474,0.03494402766227722,-0.012272734194993973,0.024291137233376503,0.01895154081285,0.07773564755916595,0.02755371294915676,0.02260710299015045,0.04415655881166458,0.29202284989878535 -2067,67,0.11970466375350952,0.04814544275403027,-0.009141783230006695,0.02796921506524086,0.024106280878186226,0.08925048232078553,0.03710952401161194,0.036509035155177116,0.05008739361539483,0.3182571970112622 -2067,70,0.1209947019815445,0.05139397382736205,-0.008590789511799812,0.02895003743469715,0.025236742570996284,0.09152162075042725,0.038795847445726395,0.040011475281789895,0.05131102371960878,0.32357268054038285 -2067,90,0.1362314522266388,0.09141805768013,-0.004506463650614023,0.03434455394744873,0.03772987350821499,0.11184470355510712,0.04947587847709656,0.081013671308756,0.06424679607152939,0.37602561339735985 -2067,95,0.14205719530582428,0.12149779498577118,-0.002987717278301716,0.03557058051228523,0.04549574851989746,0.12145236134529114,0.052286408841609955,0.11088720476254821,0.07197372168302535,0.4069861777476035 -2068,5,0.08421439677476883,0.012764750979840755,-0.028069768752902742,0.013154704123735428,0.007077368441969156,0.0356416342779994,0.0026262900792062283,-0.007932346314191818,0.02642748299986124,0.2071026713354513 -2068,10,0.08960516005754471,0.015265214256942272,-0.023959733545780182,0.01491566002368927,0.008967414498329163,0.045082418248057365,0.0049400050193071365,-0.0023663099855184555,0.029858277924358845,0.22539170701056718 -2068,30,0.10470108687877655,0.024548335000872612,-0.016823602840304375,0.01944383606314659,0.014310322701931,0.06489241123199463,0.01650858297944069,0.010667611379176378,0.03838075175881386,0.2665662649087608 -2068,33,0.10644819587469101,0.026005893163383007,-0.01608356460928917,0.02045009844005108,0.014996844585984945,0.06716221094131469,0.01824386790394783,0.012352122473530468,0.039423467591404915,0.2712470513070002 -2068,50,0.11399900168180466,0.03559945523738861,-0.012538792565464973,0.024726709350943565,0.01933535560965538,0.0787862241268158,0.028077157214283943,0.022990493569523096,0.04500882048159838,0.2964521443354897 -2068,67,0.12122081965208054,0.04916858725249772,-0.009341729804873466,0.028500190004706383,0.02461215576156975,0.0904647296667099,0.037910446524620056,0.037280406747013335,0.051077885292470454,0.3231994900852442 -2068,70,0.1225278228521347,0.05251185409724711,-0.008778820745646954,0.02950645051896572,0.02577080763876438,0.09275358021259307,0.039645735174417496,0.040880920365452766,0.05233157575130463,0.32868133299052715 -2068,90,0.13796497881412506,0.09377831220626831,-0.0046061257366091,0.03504088893532753,0.03854545205831528,0.11337050795555115,0.05063588544726372,0.08316619042307138,0.06556457281112671,0.3822722176555544 -2068,95,0.1438673436641693,0.12483227252960205,-0.0030568334856070603,0.036298718303442,0.046499237418174744,0.1231001615524292,0.05352802574634552,0.11402107682079077,0.0734741374850273,0.4141066446900368 -2069,5,0.0851922482252121,0.012864361517131329,-0.02862807540223002,0.013296213001012802,0.0072002713568508625,0.0360975606366992,0.0024237886536866426,-0.0082313884049654,0.026835281820967793,0.20997284844052047 -2069,10,0.09070791304111481,0.015426167286932468,-0.024439353495836258,0.015102218836545944,0.00912901945412159,0.045661153644323355,0.00480370968580246,-0.002555771078914403,0.03034739810973406,0.22858949727378786 -2069,30,0.10615358501672745,0.024929584935307503,-0.01716279238462448,0.019746234640479088,0.014577493071556091,0.06572431400418281,0.01670331507921219,0.01076067378744483,0.03906299620866775,0.2705770640168339 -2069,33,0.107941173017025,0.02642248058691621,-0.016409546695649625,0.020778238773345947,0.015280746631324291,0.06801588833332062,0.018488256260752678,0.012470681220293045,0.04013397765345871,0.27536493766121567 -2069,50,0.11566691845655441,0.036258868873119354,-0.012796572409570217,0.025164255872368813,0.019712437875568867,0.07979343831539154,0.02860291860997677,0.023388312198221684,0.04584583640098572,0.3010590709745884 -2069,67,0.12305605411529541,0.05020059794187551,-0.009534158743917942,0.029034269973635674,0.025092720985412598,0.09162598207592965,0.03871758282184601,0.03806799300946295,0.052048128098249435,0.3283937243465334 -2069,70,0.12439334392547607,0.053639946877956375,-0.00896514393389225,0.030066274106502533,0.026273120194673538,0.09393936395645142,0.04050252586603165,0.0417668167501688,0.05332437958568334,0.33401825185865164 -2069,90,0.14018815755844116,0.0961676836013794,-0.0047114778310060395,0.035742297768592834,0.039313884824514395,0.11479891985654832,0.05180715024471283,0.08536122925579548,0.06683762520551682,0.38887287117540836 -2069,95,0.14622727036476135,0.1282113790512085,-0.003128568409010771,0.03703230246901512,0.04742373153567314,0.12467444762587547,0.05478205159306526,0.11716004926711321,0.07490260563790797,0.42163933044648716 -2070,5,0.08629810810089111,0.012961880303919315,-0.029190793633461,0.013436224311590195,0.007318614516407251,0.036521498858928685,0.002213516738265753,-0.0085483742877841,0.027236559707671405,0.21287118584732526 -2070,10,0.09188029170036316,0.015585694462060928,-0.02491982840001583,0.015287807211279869,0.009285662323236465,0.04620984122157097,0.004660559818148613,-0.0027435924857854843,0.03082637842744589,0.2317494786111638 -2070,30,0.10751226544380188,0.02531164512038231,-0.017504272982478142,0.020049022510647774,0.01484565809369087,0.06654517352581024,0.016895778477191925,0.010866401717066765,0.03973755706101656,0.27444523945450783 -2070,33,0.10932141542434692,0.02684025762602687,-0.016735166311264038,0.02110707201063633,0.01556430339813232,0.06885733291506767,0.01873106136918068,0.012609131634235382,0.04084324738010764,0.2793481993349269 -2070,50,0.11714033782482147,0.03692226484417915,-0.013050999492406845,0.025603774935007095,0.02008310705423355,0.08078381419181824,0.02913099341094494,0.023789459373801947,0.046682712621986866,0.30544765666127205 -2070,67,0.12461858987808228,0.05124147854745393,-0.009727224707603455,0.02957145683467388,0.025572625920176506,0.09276148676872253,0.0395309254527092,0.038848550990223885,0.053019280210137375,0.33331201121211057 -2070,70,0.12597200274467468,0.054778241738677014,-0.009147436544299127,0.03062950260937214,0.026776853948831558,0.09512636065483093,0.04136621206998825,0.04266443010419607,0.05433269962668419,0.3390643075108528 -2070,90,0.1419573277235031,0.09858617186546326,-0.004812811501324177,0.03644877299666405,0.040081873536109924,0.11622802764177323,0.05298967286944389,0.08754742331802845,0.06811498142778874,0.3950637374073267 -2070,95,0.14806927740573883,0.1316351294517517,-0.003197696688584996,0.037771329283714294,0.04835648089647293,0.12622685730457306,0.056048471480607986,0.12035768525674939,0.0763469548895955,0.42875432805158176 -2071,5,0.08735688030719757,0.013057303614914417,-0.02976830117404461,0.013574736192822456,0.007430176250636578,0.03690971899777651,0.001995466183871031,-0.00887073152698576,0.02763227929826826,0.21561340987682343 -2071,10,0.09295614063739777,0.015743793919682503,-0.025412602350115776,0.015472425147891045,0.009441053494811058,0.046725813299417496,0.004510549828410149,-0.002944905310869217,0.031300231255590914,0.23476295936852695 -2071,30,0.10863592475652695,0.025694523006677628,-0.017850331962108612,0.0203521978110075,0.015113523229956627,0.0673476904630661,0.0170859694480896,0.010956306010484695,0.04041931815445423,0.27805370604619384 -2071,33,0.1104506105184555,0.027259223647415638,-0.017066020518541336,0.021436594426631927,0.015842634104192257,0.06970220863819122,0.018972281366586685,0.012763598002493382,0.041551025584340096,0.28304455023258923 -2071,50,0.11829345673322678,0.037589650601148605,-0.013309197500348091,0.026045268401503563,0.020453750155866146,0.08178200572729111,0.029661383479833603,0.024194961413741112,0.047524699941277504,0.3095436440780759 -2071,67,0.12579458951950073,0.05229122534394269,-0.009919514879584312,0.030111750587821007,0.02606169320642948,0.09392023086547852,0.04035048931837082,0.03964690864086151,0.05400310898199678,0.3378829075396061 -2071,70,0.12715214490890503,0.055926742777228346,-0.00932752713561058,0.031196141615509987,0.027293846011161804,0.09632128477096558,0.042236801236867905,0.04356906935572624,0.05533941127359867,0.3437880456447601 -2071,90,0.14318636059761047,0.1010337769985199,-0.004907484166324139,0.03716031461954117,0.04087375849485397,0.11768633127212524,0.05418344959616661,0.0897612702101469,0.0694216025993228,0.40091221714392306 -2071,95,0.14931701123714447,0.1351035237312317,-0.0032604997395537945,0.03851580619812012,0.04932847246527672,0.12781503722071647,0.057327304035425186,0.12355331610888243,0.07781925760209558,0.4354203136870636 -2072,5,0.08846992999315262,0.013150634244084358,-0.030342379584908485,0.013711750507354736,0.00753786601126194,0.037266372330486776,0.0017696474678814411,-0.009194664657115936,0.028025082498788833,0.21838346293661742 -2072,10,0.0940476655960083,0.015900468453764915,-0.02590378373861313,0.01565607450902462,0.009584140032529831,0.04723342880606651,0.004353687632828951,-0.0031443511135876173,0.03177335858345032,0.2377220056951046 -2072,30,0.10966715216636658,0.02607821114361286,-0.018193645402789116,0.020655764266848564,0.015373267233371735,0.06813612580299377,0.017273887991905212,0.011068936437368393,0.04109700229018927,0.2815456883050501 -2072,33,0.11147485673427582,0.027679379917681216,-0.017394636794924735,0.02176680974662304,0.01612119534984231,0.07052418395876885,0.019211919978260994,0.012913370244204997,0.04225814819335937,0.2866131331305951 -2072,50,0.11928754299879074,0.03826101869344711,-0.013565067201852798,0.026488739997148514,0.020824067294597626,0.08276544511318207,0.03019408881664276,0.02459965110756457,0.048368231393396854,0.3134675454348326 -2072,67,0.1267598271369934,0.0533498358353973,-0.010107413865625858,0.03065515123307705,0.02654336579144001,0.09505851596593859,0.04117625951766968,0.040444554295390844,0.054986668899655346,0.3422995400428772 -2072,70,0.12811216711997986,0.05708544738590716,-0.00950606819242239,0.031766194850206375,0.027802804484963417,0.09749701619148254,0.04311428964138031,0.04446687363088131,0.05635076332837343,0.3482727752998471 -2072,90,0.14408472180366516,0.10351049900054932,-0.004998139571398497,0.037876930087804794,0.04167445749044418,0.11913334578275682,0.05538848415017128,0.09201721660792828,0.07073274254798889,0.4065481023862958 -2072,95,0.1501917988061905,0.13861654698848724,-0.0033202676451765016,0.03926572948694229,0.05031190812587738,0.12939053252339358,0.05861853435635567,0.12682936154305935,0.07930914498865604,0.4419778800569473 -2073,5,0.08943051099777222,0.013241870328783989,-0.03090364225208759,0.013847265392541885,0.007633131463080645,0.037582024931907654,0.0015360529068857431,-0.009506015107035637,0.028404178097844124,0.22103843092918396 -2073,10,0.09511235356330872,0.016055714339017868,-0.0263808723539114,0.015838753432035446,0.009718775749206543,0.047681856900453574,0.0041899667121469975,-0.003337371908128259,0.03223592471331358,0.2407254478428513 -2073,30,0.11102338135242462,0.02646271325647831,-0.0185250137001276,0.020959721878170967,0.015622010454535484,0.06888712421059608,0.01745953969657421,0.01117832213640213,0.04176842421293259,0.28537089775782076 -2073,33,0.11286482214927673,0.028100724536925553,-0.017711173743009567,0.022097714245319366,0.016377636585384606,0.07130618914961814,0.019449973478913307,0.013072241097688675,0.04294467113912105,0.2905389081873 -2073,50,0.12082333117723465,0.03893637657165527,-0.013811575248837471,0.02693418227136135,0.02117813378572464,0.08370791375637054,0.030729109421372414,0.02503381483256817,0.04919754760339856,0.317926426185295 -2073,67,0.12843507528305054,0.05441731251776224,-0.010289557650685302,0.03120165877044201,0.027007797732949257,0.09616492167115212,0.04200824350118637,0.04129457809729529,0.05595476917922497,0.3473389004543424 -2073,70,0.12981265783309937,0.05825435817241667,-0.009674085304141045,0.03233965113759041,0.0282923374325037,0.09861795604228973,0.043998684734106064,0.04542400315403938,0.057348485291004184,0.3534695911221206 -2073,90,0.14608334004878998,0.10601633787155151,-0.005080665927380323,0.03859861195087433,0.04244000464677811,0.12053422778844837,0.0566047765314579,0.09430078789591789,0.07201388459652662,0.4129486891441047 -2073,95,0.15230439603328705,0.14217419922351837,-0.0033717977348715067,0.040021102875471115,0.05124983936548233,0.13091778755187988,0.059922169893980026,0.130108205601573,0.08076278865337372,0.44940074742771663 -2074,5,0.09004605561494827,0.013331013731658459,-0.031495589390397066,0.013981284573674202,0.007726690731942654,0.037854240462183955,0.0012946831993758678,-0.009837885852903126,0.028780918591655793,0.22341391963418572 -2074,10,0.09587999433279037,0.01620953530073166,-0.02687745727598667,0.016020463779568672,0.009849747642874718,0.04811801016330719,0.004019387997686863,-0.003537796437740326,0.032697247341275215,0.24351258613169194 -2074,30,0.11221694946289062,0.02684803307056427,-0.01887122169137001,0.02126406691968441,0.015873203054070473,0.06964448094367981,0.01764291524887085,0.011287036538124082,0.0424455963075161,0.28910097933840007 -2074,33,0.11410769075155258,0.0285232575237751,-0.018042365089058876,0.022429311648011208,0.016643362119793892,0.07209521532058716,0.019686445593833923,0.013221776150166988,0.04364882973954082,0.2943951450753957 -2074,50,0.12227924168109894,0.03961571678519249,-0.014062768779695034,0.02738160453736782,0.021535741165280342,0.08467176556587219,0.03126643970608711,0.025449521839618683,0.05004510469734669,0.32236646162346005 -2074,67,0.1300947666168213,0.05549365788698202,-0.010473247617483139,0.031751275062561035,0.027496356517076492,0.09729890272021295,0.0428464375436306,0.042126086773350835,0.05694002768024803,0.35241663397289813 -2074,70,0.1315092146396637,0.05943346843123434,-0.009842067025601864,0.03291651979088783,0.028806320950388896,0.09978552162647247,0.044889967888593674,0.046373465005308374,0.05837573725730179,0.3586760071106255 -2074,90,0.14821545779705048,0.10855128616094589,-0.005162556190043688,0.039325371384620667,0.04324803501367569,0.12199197858572007,0.057832323014736176,0.09661099780350924,0.07333904840052129,0.41962439492344855 -2074,95,0.15460306406021118,0.14577648043632507,-0.0034213042818009853,0.04078192636370659,0.052248019725084305,0.13249558210372925,0.06123820319771767,0.13342880783602584,0.082278654910624,0.4570206238189712 -2075,5,0.09075504541397095,0.013418063521385193,-0.0320749394595623,0.014113802462816238,0.00781291350722313,0.03812103681266308,0.0010455446317791939,-0.010165035631507634,0.029154070024378597,0.2258432066300884 -2075,10,0.09669899940490723,0.01636192947626114,-0.027372706681489944,0.016201201826334,0.00998377799987793,0.04855269566178322,0.0038419573102146387,-0.0037394538521766663,0.033155798353254794,0.24627971965819598 -2075,30,0.11334401369094849,0.027234161272644997,-0.019213130697607994,0.021568797528743744,0.01612180471420288,0.07041267305612564,0.017824023962020874,0.011401301249861717,0.04312437307089567,0.2927294904831797 -2075,33,0.11527040600776672,0.028946981374174355,-0.01836569420993328,0.022761598229408264,0.01691465638577938,0.07287776485085487,0.019921334460377693,0.013380814343690872,0.0443524494767189,0.2981293173506856 -2075,50,0.12359604984521866,0.04029904305934906,-0.014313600957393646,0.027830995619297028,0.021903053857386112,0.08562473207712173,0.031806088984012604,0.025879985420033336,0.05089151673018932,0.32667350489646196 -2075,67,0.13155893981456757,0.056578869447112136,-0.010656618596985922,0.03230399265885353,0.027984417974948883,0.09844107046723367,0.043690845370292664,0.04295263718813658,0.0579287250712514,0.35728736001066863 -2075,70,0.13300006091594696,0.060622788593173015,-0.010011307895183563,0.03349679335951805,0.02932196669280529,0.10094370543956757,0.04578815773129463,0.04732534009963274,0.05939032547175884,0.36370857525616884 -2075,90,0.15002132952213287,0.11111535131931305,-0.005241870880126953,0.040057189762592316,0.04405820369720459,0.12345136404037477,0.059071119874715805,0.09895282331854105,0.07467230409383774,0.4260500088334084 -2075,95,0.15652938187122345,0.14942340552806854,-0.003475829493254423,0.04154818877577782,0.05326112359762192,0.13409108296036712,0.06256663054227829,0.13682765793055296,0.0837927795946598,0.46440416122786693 -2076,5,0.09192194044589996,0.013503019697964191,-0.03265533596277237,0.014244822785258293,0.00790903763845563,0.03842215407639742,0.0007886302191764116,-0.01048425156623125,0.029528878256678583,0.22866234317189083 -2076,10,0.09795220196247101,0.016512896865606308,-0.02786564771085977,0.016380971297621727,0.010118529200553894,0.04899661988019943,0.003657668363302946,-0.003941133711487053,0.03361652307212353,0.24951740503311157 -2076,30,0.11483893543481827,0.027621105313301086,-0.01955539733171463,0.021873919293284416,0.016377674415707588,0.07117043435573578,0.018002860248088837,0.011525827459990978,0.04379878402687609,0.2967243893072009 -2076,33,0.11679330468177795,0.02937189295887947,-0.018692968413233757,0.023094575852155685,0.017183348704129457,0.07366526857018471,0.020154638215899467,0.013528142124414444,0.04505970055237413,0.30220885230228306 -2076,50,0.12523984909057617,0.040986355394124985,-0.014564407989382744,0.02828236110508442,0.022269515320658684,0.08657871186733246,0.03234804794192314,0.02631127554923296,0.05173847824335098,0.3313006707467139 -2076,67,0.13331837952136993,0.0576729446649552,-0.010838760584592818,0.03285982087254524,0.028466702941805155,0.0995447188615799,0.044541459530591965,0.043791340421885254,0.058924848176538945,0.3624893896654249 -2076,70,0.1347804218530655,0.061822311207652074,-0.010181458666920662,0.03408047556877136,0.029830767214298243,0.10209288746118544,0.046693239361047745,0.04828296974301338,0.06040924042463302,0.36900867372751234 -2076,90,0.15204887092113495,0.11370852589607239,-0.005328205460682511,0.04079408571124077,0.044857151433825515,0.12487676739692688,0.060321174561977386,0.10133493120083592,0.07599476166069508,0.432741367071867 -2076,95,0.1586514264345169,0.15311497449874878,-0.0035269148647785187,0.042319901287555695,0.05424304902553548,0.13564150035381314,0.06390746682882309,0.14029995072633028,0.0853066649287939,0.4720646026544273 -2077,5,0.09282656013965607,0.013585882261395454,-0.03323660045862198,0.014374347403645515,0.008018333464860916,0.03880060464143753,0.0005239399615675211,-0.01081251259893179,0.029921565018594266,0.2312952340580523 -2077,10,0.09894930571317673,0.016662439331412315,-0.028361886367201803,0.016559772193431854,0.010271430015563965,0.04950348809361458,0.003466519992798567,-0.00414520688354969,0.0340952679514885,0.25252468464896083 -2077,30,0.11609502136707306,0.02800886705517769,-0.01990496926009655,0.022179434075951576,0.016645871102809906,0.07195551693439484,0.018179424107074738,0.0116245336830616,0.044491450488567355,0.3005336856469512 -2077,33,0.11807935684919357,0.029797997269779445,-0.01902681589126587,0.02342824824154377,0.017465122044086456,0.07448417484760285,0.020386358723044395,0.013660337775945663,0.045781561974436044,0.3061054088687524 -2077,50,0.1266554445028305,0.04167765751481056,-0.014825506135821342,0.028735710307955742,0.022650621831417084,0.08755296468734741,0.03289232403039932,0.026744844391942024,0.05259903613477945,0.3357215221039951 -2077,67,0.13485786318778992,0.05877589851617819,-0.01103296257555483,0.03341876342892647,0.02895987778902054,0.10067283585667611,0.0453982912003994,0.04466188346967109,0.059939047228544984,0.36752793937921524 -2077,70,0.1363423466682434,0.06303204447031019,-0.0103639280423522,0.03466757759451866,0.030352039262652397,0.10326360166072845,0.047605231404304504,0.04925856273621321,0.06144462898373603,0.37419072054326535 -2077,90,0.15387561917304993,0.11633084714412689,-0.005424040369689465,0.04153605177998543,0.045665040612220764,0.12628071010112762,0.06158249080181122,0.10376139730215073,0.07731366939842702,0.4392489989288152 -2077,95,0.16057942807674408,0.15685118734836578,-0.0035902089439332485,0.04309707134962082,0.055222317576408386,0.13718837574124337,0.06526071578264236,0.14382466487586498,0.0868260646238923,0.47969780024141073 -2078,5,0.09352333843708038,0.013666651211678982,-0.033810824528336524,0.014502372592687607,0.008119778707623482,0.039092357829213144,0.0002514808438718319,-0.011138001456856728,0.030299720354378223,0.23363440958200954 -2078,10,0.09973654896020889,0.016810553148388863,-0.02884783037006855,0.016737602651119232,0.010405310057103635,0.049931418150663376,0.003268520114943385,-0.004332421347498894,0.034553753398358825,0.2552762467414141 -2078,30,0.11713560670614243,0.028397437185049057,-0.020239874720573425,0.022485336288809776,0.01689644530415535,0.07268558740615845,0.018353721126914024,0.01174259716644883,0.0451691634953022,0.3040317985229194 -2078,33,0.11914926767349243,0.030225287452340127,-0.01934697851538658,0.02376260980963707,0.017728745657950636,0.07524869412183761,0.020616499707102776,0.013816000893712044,0.046485068909823894,0.30972620379179716 -2078,50,0.12785206735134125,0.042372941970825195,-0.015069096349179745,0.029191022738814354,0.02301303669810295,0.08847606182098389,0.03343891724944115,0.02718888211529702,0.053444710560142994,0.33988319314084947 -2078,67,0.13617569208145142,0.059887709878385126,-0.01121120247989893,0.033980801701545715,0.029430584982037544,0.10175556942820552,0.046261340379714966,0.045554895885288715,0.06092674663290382,0.3722561760712415 -2078,70,0.13768209517002106,0.06425197944045065,-0.010530584491789341,0.03525807708501816,0.03084717132151127,0.10436247289180756,0.04852411895990372,0.0502337422221899,0.06246054098010063,0.3790536409709602 -2078,90,0.1554744392633438,0.11898225545883179,-0.005502051208168268,0.042283087968826294,0.04644525647163392,0.12764678597450257,0.062855064868927,0.10618860926479101,0.07862238008528949,0.4454824319109321 -2078,95,0.16227731108665466,0.16063201427459717,-0.00364115104312078,0.0438796766102314,0.05618325620889664,0.13869333192706107,0.06662635505199432,0.1474941335618496,0.08832884831354022,0.4869422412477432 -2079,5,0.09400756657123566,0.013745326548814774,-0.03438373580574989,0.014628898352384567,0.008226923551410437,0.03943463806062938,-2.8755981475114822e-05,-0.011455908417701721,0.030687305331230163,0.23587068456690757 -2079,10,0.10034646838903427,0.016957242041826248,-0.02933632992208004,0.01691446267068386,0.01055191084742546,0.050415489822626114,0.003063660115003586,-0.004539705440402031,0.03502239771187306,0.25789033942855893 -2079,30,0.11809749156236649,0.02878682129085064,-0.020581910386681557,0.022791624069213867,0.01715407893061638,0.07345296293497086,0.0185257438570261,0.011837811209261417,0.04585869964212179,0.3075706711038947 -2079,33,0.12015188485383987,0.03065376849845052,-0.019674374870955944,0.024097660556435585,0.01800174038857221,0.07603612542152405,0.02084505371749401,0.013962646855507044,0.0471980813704431,0.31336533108027653 -2079,50,0.1290307343006134,0.04307221248745918,-0.015323418192565441,0.029648317024111748,0.02338453009724617,0.08942762017250061,0.03398782014846802,0.02762620523571968,0.054302603006362915,0.34406713698990643 -2079,67,0.13752272725105286,0.0610083861649037,-0.011400237679481506,0.03454595431685448,0.029916048049926758,0.10285685434937478,0.04713059216737747,0.04643138498067856,0.061929132342338565,0.377065153606236 -2079,70,0.1390596181154251,0.06548211872577665,-0.010708470828831196,0.035851988941431046,0.031356148421764374,0.1054801970720291,0.04944990575313568,0.051236758939921856,0.06348603125661612,0.3839760161936283 -2079,90,0.15721188485622406,0.12166278064250946,-0.005592077970504761,0.04303519055247307,0.04723256453871727,0.12902964651584625,0.06413888931274414,0.10864889705553661,0.07995273172855377,0.45183337517082695 -2079,95,0.1641523540019989,0.1644574999809265,-0.0037017250433564186,0.04466773569583893,0.057144309207796985,0.14020153433084487,0.06800439953804016,0.15104536432772875,0.08983750659972428,0.494420318258926 -2080,5,0.09455756843090057,0.01382190827280283,-0.034960340708494186,0.014753926545381546,0.00834485488012433,0.03981949649751187,-0.0003167628310620785,-0.011782844550907612,0.03108998825773597,0.23822903148829938 -2080,10,0.10101348906755447,0.017102502286434174,-0.02983013298362493,0.01709035225212574,0.01071036048233509,0.05094686523079872,0.0028519458137452602,-0.004750359803438187,0.03550621159374714,0.260608199192211 -2080,30,0.1190921887755394,0.029177023097872734,-0.02093210443854332,0.023098303005099297,0.017428456619381902,0.07424798309803009,0.018695494160056114,0.011943098157644272,0.0465649938210845,0.3111424254719168 -2080,33,0.12118451297283173,0.03108343666419387,-0.02000776305794716,0.024433402344584465,0.018289472367614506,0.07685579046607018,0.02107202634215355,0.014094806108623743,0.04793200746178627,0.31705293455161154 -2080,50,0.13022726774215698,0.043775465339422226,-0.01558651588857174,0.03010758012533188,0.023766418918967247,0.09039785712957382,0.03453904017806053,0.028049333952367306,0.055175586603581905,0.3483185046352446 -2080,67,0.1388760209083557,0.06213792987167842,-0.011597655713558197,0.03511420637369156,0.030414650216698647,0.10397591128945353,0.048006054013967514,0.04731988161802292,0.06294851679354906,0.38190557452850044 -2080,70,0.14044128358364105,0.06672245785593985,-0.010893899016082287,0.036449309438467026,0.03187665715813637,0.10661976039409637,0.0503825880587101,0.052238219138234794,0.0645371165126562,0.38892060387879607 -2080,90,0.15892863273620605,0.12437242269515991,-0.005696987733244896,0.04379236325621605,0.048034220933914185,0.1304248422384262,0.06543396413326263,0.11114893946796656,0.08129498586058619,0.45832407916896045 -2080,95,0.1659972369670868,0.16832759976387024,-0.003771651303395629,0.04546123743057251,0.05812258608639238,0.14169667810201642,0.06939484924077988,0.1547068329527974,0.09135140804573885,0.5019445470534263 -2081,5,0.0955582782626152,0.013896397314965725,-0.03551984205842018,0.014877455309033394,0.008451118133962154,0.040164434537291537,-0.0006125438958406448,-0.012094016745686524,0.03147196648642421,0.24088567760773003 -2081,10,0.10207264870405197,0.017246337607502937,-0.0303072540089488,0.01726527139544487,0.01085112988948822,0.05142614841461182,0.00263337604701519,-0.004952313378453255,0.035967372730374335,0.26355282962322235 -2081,30,0.12031504511833191,0.029568033292889595,-0.021266641095280647,0.023405369371175766,0.01768384240567684,0.07499170452356338,0.018862977623939514,0.012056192383170128,0.04724991600960493,0.31486029038205743 -2081,33,0.12242630869150162,0.03151429504156113,-0.02032727912068367,0.02476983703672886,0.018557311967015266,0.07761834144592285,0.02129741758108139,0.014245841652154922,0.04864283464848995,0.320867973305285 -2081,50,0.13155093789100647,0.04448270797729492,-0.01583464816212654,0.030568817630410194,0.024127909913659096,0.0913086086511612,0.03509257361292839,0.028516986640170217,0.05602522660046816,0.3526157608721405 -2081,67,0.14027801156044006,0.06327633231878287,-0.011782145127654076,0.035685569047927856,0.030885547399520874,0.10504545584321023,0.04888773337006569,0.04823731144890205,0.06394694725051522,0.38672757033258676 -2081,70,0.14185743033885956,0.06797300428152082,-0.011067377403378487,0.0370500385761261,0.0323709174990654,0.10771334171295166,0.051322177052497864,0.05324247479438782,0.06555562466382979,0.39390789791941644 -2081,90,0.16051217913627625,0.12711119651794434,-0.005785851273685694,0.04455460235476494,0.04879780113697052,0.1317674770951271,0.06674029678106308,0.11364387799985724,0.08260295763611794,0.4646512027829886 -2081,95,0.16764478385448456,0.17224231362342834,-0.0038306680507957935,0.04626018553972244,0.059061963111162186,0.1431550681591034,0.07079769670963287,0.1584310382604599,0.09284120090305804,0.5094042539130896 -2082,5,0.09629319608211517,0.01396878995001316,-0.03607656620442867,0.01499948836863041,0.008546272292733192,0.04047288000583649,-0.0009160982444882393,-0.012400278821587563,0.031842431705445054,0.2432393528870307 -2082,10,0.10288403928279877,0.01738874614238739,-0.030780673399567603,0.0174392219632864,0.010994363576173782,0.051863010972738266,0.0024079489521682262,-0.005153914913535118,0.03642080444842577,0.2663355589844286 -2082,30,0.12134060263633728,0.02995985932648182,-0.021595267578959465,0.023712826892733574,0.01793067157268524,0.07570339739322662,0.019028186798095703,0.012171084061264992,0.04793567769229412,0.3183702281676233 -2082,33,0.12347664684057236,0.031946344301104546,-0.020643034800887108,0.025106964632868767,0.01881731115281582,0.07836050063371658,0.021521221846342087,0.014411571435630322,0.04934613056480885,0.3244792636600323 -2082,50,0.13270840048789978,0.04519393667578697,-0.016077984124422073,0.031032035127282143,0.024479101411998272,0.0922081470489502,0.035648420453071594,0.02898319810628891,0.05687867384403944,0.35675379261374474 -2082,67,0.14153791964054108,0.06442361466586596,-0.011961549520492554,0.03626004233956337,0.03134785592556,0.10609585046768188,0.0497756227850914,0.049139201641082764,0.06494095647707582,0.3914419958740474 -2082,70,0.1431358903646469,0.06923375576734542,-0.011235774494707584,0.037654176354408264,0.032853543758392334,0.10878655314445496,0.05226866155862808,0.05427270615473382,0.06657241471111774,0.39875421142205597 -2082,90,0.16200964152812958,0.12987907230854034,-0.005867528263479471,0.04532191529870033,0.04954845458269119,0.1330777108669281,0.06805788725614548,0.11624922975897789,0.08391836248338223,0.4709553625434637 -2082,95,0.16922599077224731,0.1762017011642456,-0.0038839911576360464,0.047064583748579025,0.059994835406541824,0.14459490403532982,0.07221294194459915,0.16222926415503025,0.09430991671979427,0.5167829136829823 -2083,5,0.09679371118545532,0.01403909083455801,-0.03663932532072067,0.015120021998882294,0.008673937059938908,0.040883321315050125,-0.0012274258770048618,-0.012751398608088493,0.03224505595862866,0.24553147051483393 -2083,10,0.10347893834114075,0.017529727891087532,-0.03126502782106399,0.01761220395565033,0.011152353137731552,0.05240040272474289,0.002175666391849518,-0.005348546430468559,0.03690498694777489,0.2689747386611998 -2083,30,0.12219978868961334,0.030352501198649406,-0.02194046601653099,0.02402067370712757,0.01820543222129345,0.07649210095405579,0.01919112727046013,0.012272750958800316,0.04864560291171074,0.3217895910143852 -2083,33,0.12436642497777939,0.032379579432308674,-0.020972972735762596,0.02544477954506874,0.019107801839709282,0.07916662096977234,0.021743446588516235,0.014567524194717407,0.05007550125941634,0.3279978017602116 -2083,50,0.13373038172721863,0.04590914770960808,-0.016340657137334347,0.031497225165367126,0.024858362041413784,0.09315955638885498,0.03620658442378044,0.029449699446558952,0.05776367988437414,0.36081371642649174 -2083,67,0.14268633723258972,0.0655797532200814,-0.012160652317106724,0.0368376187980175,0.03183882310986519,0.10718831375241279,0.050669725984334946,0.05004104785621166,0.0659574382007122,0.39610117182135585 -2083,70,0.1443071812391281,0.07050470933318137,-0.011422952637076378,0.03826172277331352,0.033368396013975135,0.10991448163986206,0.05322204530239105,0.05530901812016964,0.06762445904314518,0.4035421101376414 -2083,90,0.1634512096643448,0.13267606496810913,-0.005977810360491274,0.046094298362731934,0.05033405125141144,0.13444615304470064,0.06938673555850983,0.1188362231478095,0.08525142967700959,0.4771152562461794 -2083,95,0.17077088356018066,0.18020570278167725,-0.003956909757107496,0.04787442833185196,0.06094205379486084,0.14605143666267395,0.0736405998468399,0.1660697478801012,0.09581085704267017,0.5241020584013313 -2084,5,0.09762521088123322,0.014107298105955124,-0.037217703834176066,0.015239056199789047,0.008767589926719666,0.0411922074854374,-0.0015465286560356617,-0.013078289106488228,0.032620083540678024,0.2479865843895823 -2084,10,0.10435937345027924,0.017669282853603363,-0.03175526112318039,0.01778421364724636,0.011293396353721619,0.05284225717186928,0.001936524175107479,-0.00555877638980746,0.03736421000212431,0.27171868956647816 -2084,30,0.12321726977825165,0.03074595332145691,-0.02228030189871788,0.02432890795171261,0.018457663618028163,0.07720494270324707,0.019351795315742493,0.012387871742248535,0.049341255240142344,0.3253110686317086 -2084,33,0.12539976835250854,0.03281400665640831,-0.02129739336669445,0.02578328736126423,0.019375979900360107,0.07991535544395446,0.021964088082313538,0.014738536849617949,0.05079240053892135,0.3315729573369026 -2084,50,0.1348322629928589,0.04662834480404854,-0.016589319333434105,0.031964387744665146,0.025223524309694767,0.0940854400396347,0.03676706552505493,0.029905308037996292,0.058628241531550884,0.36491843219846487 -2084,67,0.1438537836074829,0.06674476042389876,-0.012342746369540691,0.03741830214858055,0.032314255423843884,0.10824693381786349,0.051570042967796326,0.050962259992957115,0.06696142386645079,0.40074319675564773 -2084,70,0.1454865038394928,0.07178587019443511,-0.011593780480325222,0.038872674107551575,0.033874309808015805,0.11101876199245453,0.05418233573436737,0.05635562725365162,0.06866661030799151,0.40831847181543707 -2084,90,0.16477066278457642,0.1355021595954895,-0.006058000028133392,0.04687175154685974,0.05110948532819748,0.13579928129911423,0.07072684168815613,0.12147822603583336,0.08660316951572895,0.48332578539848325 -2084,95,0.17214392125606537,0.18425436317920685,-0.004010797361843293,0.048689719289541245,0.06190354600548717,0.14753109216690063,0.07508066296577454,0.16994941048324108,0.09733627391979097,0.5316519398707895 -2085,5,0.09847327321767807,0.014173411764204502,-0.03777362890541553,0.015356592833995819,0.008869729936122894,0.04150477759540081,-0.0018734005279839039,-0.013397153466939926,0.03298935499042273,0.2504719302218291 -2085,10,0.1053096204996109,0.017807411029934883,-0.03222856931388378,0.01795525662600994,0.01143284533172846,0.05329355224967003,0.001690531149506569,-0.005760243162512779,0.037821913696825506,0.2745912102982402 -2085,30,0.12445365637540817,0.031140221282839775,-0.022610507905483246,0.024637533351778984,0.018706053495407104,0.0779181495308876,0.019510194659233093,0.01250414222013205,0.050030844286084175,0.32906164401210847 -2085,33,0.1266692727804184,0.033249622248113155,-0.021613766457885503,0.026122484356164932,0.019637783989310265,0.08066007584333419,0.022183146327733994,0.014922931790351868,0.05149750970304012,0.33542562804184856 -2085,50,0.13624489307403564,0.04735152795910835,-0.016833030618727207,0.03243352472782135,0.02557818777859211,0.09496860206127167,0.03732985630631447,0.030398661270737648,0.05948754400014877,0.3693030533613637 -2085,67,0.14540331065654755,0.06791863881051548,-0.012523606419563293,0.03800208866596222,0.03277512267231941,0.10925738096237185,0.05247657001018524,0.051896581426262856,0.06796275451779366,0.4057330422382802 -2085,70,0.1470607966184616,0.07307723835110662,-0.01176291424781084,0.03948703780770302,0.034357957541942596,0.1120675042271614,0.05514952540397644,0.05741822347044945,0.06969539634883404,0.41345584746450187 -2085,90,0.1666375696659088,0.13835738599300385,-0.006141411140561104,0.04765426740050316,0.05184763818979264,0.1370991125702858,0.07207819819450378,0.12407195875421168,0.0879128385335207,0.4899263240862638 -2085,95,0.17412270605564117,0.18834763765335083,-0.004066416993737221,0.04951045662164688,0.0628238823264834,0.1489603966474533,0.07653312385082245,0.17388715781271458,0.09882346168160439,0.5393930291756988 -2086,5,0.09943193942308426,0.01423743087798357,-0.038353462144732474,0.01547263190150261,0.008980382047593594,0.04183930698782205,-0.00220804987475276,-0.013743509538471699,0.03337046522647143,0.2531522547826171 -2086,10,0.10637194663286209,0.017944112420082092,-0.0327230803668499,0.018125327304005623,0.011577799916267395,0.053765555843710906,0.001437678001821041,-0.005972305312752724,0.03829673603177071,0.27767454921267926 -2086,30,0.12580625712871552,0.031535301357507706,-0.02295606955885887,0.0249465461820364,0.018966110423207283,0.07866381108760834,0.019666319712996483,0.012598310597240925,0.05072856042534113,0.33295156098902223 -2086,33,0.12805546820163727,0.03368642620742321,-0.021943937987089157,0.026462372392416,0.019916601981967687,0.08143941849470139,0.022400615736842155,0.015096773505210876,0.05222561789676547,0.33944835532922296 -2086,50,0.13777628540992737,0.04807870090007782,-0.01708985399454832,0.03290463611483574,0.025953348726034164,0.09590637683868408,0.03789495676755905,0.03085625171661377,0.0603644335642457,0.37388031207956374 -2086,67,0.14707356691360474,0.06910138338804252,-0.012714308686554432,0.0385889858007431,0.03326210752129555,0.1103355665504933,0.053389303386211395,0.05286744814366125,0.06899134099483491,0.41095834466628733 -2086,70,0.14875619113445282,0.07437881156802176,-0.011940326541662216,0.040104806423187256,0.03487417846918106,0.11315989792346955,0.056123603135347366,0.05846029209205877,0.0707568135112524,0.4187967423349619 -2086,90,0.16862979531288147,0.14124172925949097,-0.0062323096208274364,0.04844185709953308,0.05264830216765404,0.13846202194690704,0.07344081252813339,0.12681354861706495,0.08926915191113949,0.4967208384536207 -2086,95,0.17622843384742737,0.19248554110527039,-0.00412814412266016,0.05033664032816887,0.06383335590362549,0.1504397690296173,0.07799797505140305,0.17784691415727139,0.10035543730482457,0.5474212872795761 -2087,5,0.1003301814198494,0.014299357309937477,-0.038920038565993305,0.015587171539664268,0.009092354029417039,0.04220482595264912,-0.0025504687801003456,-0.014087771996855736,0.033750710636377336,0.25570796453393996 -2087,10,0.10733894258737564,0.01807938888669014,-0.0332068383693695,0.018294427543878555,0.011729178950190544,0.054254930466413505,0.0011779721826314926,-0.00618111714720726,0.03876619227230549,0.28061950532719493 -2087,30,0.12696579098701477,0.03193119540810585,-0.023297660052776337,0.025255946442484856,0.01923028938472271,0.07940029799938202,0.01982017792761326,0.012717800214886665,0.0514241961762309,0.3366359701380134 -2087,33,0.12923727929592133,0.03412442103028297,-0.02227023009210825,0.026802953332662582,0.02019451931118965,0.08220525115728378,0.022616509348154068,0.015257775783538818,0.05295160377398133,0.3432570856064558 -2087,50,0.13905440270900726,0.048809848725795746,-0.017345881089568138,0.03337772190570831,0.026322321966290474,0.09681905806064606,0.038462378084659576,0.03132946230471134,0.061242674477398396,0.378178593236953 -2087,67,0.1484437733888626,0.07029298916459091,-0.012904635630548,0.039178989827632904,0.033743321895599365,0.11138342157006265,0.05430825427174568,0.05384888872504234,0.07002274505794048,0.4158703866787255 -2087,70,0.1501430720090866,0.07569058686494826,-0.012121548876166344,0.04072599485516548,0.03538296446204185,0.11423498392105103,0.05710458755493164,0.05953892506659031,0.07180952653288841,0.42383876685053107 -2087,90,0.17021356523036957,0.14415517449378967,-0.0063310349360108376,0.04923451691865921,0.05342806875705719,0.13978976011276245,0.07481468468904495,0.12949057202786207,0.0906004086136818,0.5031234628520906 -2087,95,0.1778874695301056,0.1966681033372879,-0.004190366459079088,0.051168277859687805,0.06479357928037643,0.15186813473701477,0.07947523146867752,0.18179675471037626,0.10186519101262093,0.5552826851140706 -2088,5,0.10061368346214294,0.014359190128743649,-0.039486365579068664,0.015700211748480797,0.009205577755346896,0.04257037863135338,-0.002900665160268545,-0.014434309676289558,0.03414098918437958,0.2577401944436133 -2088,10,0.10774974524974823,0.018213236704468727,-0.0336911603808403,0.018462559208273888,0.011881664395332336,0.05473873391747475,0.0009114057756960392,-0.006396827287971973,0.03923773057758808,0.2830619353335351 -2088,30,0.12773308157920837,0.03232790529727936,-0.023639440536499023,0.02556573785841465,0.01949530206620693,0.08014571368694305,0.019971761852502823,0.012844905257225037,0.05212297700345516,0.339969402202405 -2088,33,0.1300458312034607,0.034563602954149245,-0.022596068680286407,0.02714422531425953,0.020471949130296707,0.08296671256422997,0.022830814123153687,0.015405668877065182,0.05368440732359886,0.346696300432086 -2088,50,0.1400412768125534,0.04954499751329422,-0.0176013745367527,0.03385278582572937,0.026692597195506096,0.09773266315460205,0.039032116532325745,0.03178411955013871,0.06212292704731226,0.3822341044433415 -2088,67,0.14960119128227234,0.07149346113204963,-0.013095785863697529,0.03977210074663162,0.034225236624479294,0.11243159770965577,0.055233415216207504,0.054779771249741316,0.07104386497288942,0.4206209987495095 -2088,70,0.15133136510849,0.07701256200671194,-0.01230163685977459,0.0413505882024765,0.03589090704917908,0.11530318856239319,0.058092474937438965,0.06060070917010307,0.0728656891733408,0.4286852674558759 -2088,90,0.17176640033721924,0.14709775149822235,-0.0064276959747076035,0.05003225430846214,0.054210130125284195,0.14110494256019593,0.07619980722665787,0.13224902376532555,0.09193602837622165,0.5095927510410548 -2088,95,0.1795797049999237,0.2008952796459198,-0.004256426380015913,0.052005358040332794,0.06574051827192307,0.15328772142529487,0.08096490055322647,0.1857466580811876,0.10338142933323978,0.5629077945835889 -2089,5,0.10105331242084503,0.014416929334402084,-0.04005056992173195,0.015811756253242493,0.009321885090321303,0.04294933006167412,-0.003258633427321911,-0.014781175181269646,0.034525979310274124,0.25996112017892303 -2089,10,0.10830973088741302,0.018345659598708153,-0.03417482785880565,0.01862972229719162,0.012036120519042015,0.05524311028420925,0.0006379839032888412,-0.0066033137962222075,0.03971303328871727,0.2856326997280121 -2089,30,0.12863010168075562,0.03272542729973793,-0.023981591686606407,0.025875920429825783,0.019761749543249604,0.08088842034339905,0.020121075212955475,0.012955925893038492,0.052836071513593194,0.3434645473025739 -2089,33,0.13098186254501343,0.035003975741565226,-0.022923989221453667,0.02748618833720684,0.020756220445036888,0.08374536037445068,0.023043537512421608,0.015578190563246606,0.05441407460719347,0.35028071101754904 -2089,50,0.14114588499069214,0.05028412491083145,-0.01785937510430813,0.034329820424318314,0.02706552855670452,0.09864108264446259,0.03960416093468666,0.03224731516093016,0.0630133394151926,0.3863919904688373 -2089,67,0.1508670449256897,0.0727028042823077,-0.013290331698954105,0.04036831855773926,0.03470904380083084,0.11348956242203713,0.05616478621959686,0.055730813201516904,0.07207906991243362,0.4254700409295038 -2089,70,0.1526263803243637,0.07834474667906759,-0.01248458307236433,0.04197858273983002,0.03639933466911316,0.11637718379497528,0.059087250381708145,0.06167404633015394,0.07393184285610914,0.4336212677881121 -2089,90,0.17340609431266785,0.1500694453716278,-0.006532558333128685,0.05083505064249039,0.054990027099847794,0.14241446554660797,0.07759618759155273,0.13493131007999182,0.09328984953463078,0.5161361057311297 -2089,95,0.18135115504264832,0.20516711473464966,-0.004324454814195633,0.052847884595394135,0.06668971478939056,0.15470288321375847,0.0824669599533081,0.18976231571286725,0.10489929867908354,0.5705593283288181 -2090,5,0.10152728110551834,0.014472573064267635,-0.0406123585999012,0.015921803191304207,0.009436286985874176,0.043330010026693344,-0.0036243717186152935,-0.015105256531387565,0.03490525716915727,0.262210825458169 -2090,10,0.10889561474323273,0.018476655706763268,-0.03465667590498924,0.018795913085341454,0.012189162895083427,0.055736712738871576,0.0003577088937163353,-0.006828660424798725,0.04018404148519039,0.2882662412710488 -2090,30,0.12952937185764313,0.03312376141548157,-0.024322936311364174,0.026186490431427956,0.020025714300572872,0.08162668198347091,0.020268119871616364,0.01306484462693332,0.05353863034397364,0.3469319401308894 -2090,33,0.13191738724708557,0.035445536896586416,-0.023250091820955276,0.027828840538859367,0.02103538066148758,0.08450848206877708,0.02325468137860298,0.0157310264185071,0.05514408461749554,0.3538865367276594 -2090,50,0.14223815500736237,0.05102723464369774,-0.01811677124351263,0.03480882942676544,0.027434831485152245,0.09955009818077087,0.04017852619290352,0.03275098721496761,0.06389588490128517,0.39057055907323956 -2090,67,0.15210923552513123,0.07392101362347611,-0.013482300406321866,0.04096764326095581,0.03518825024366379,0.11454083785414697,0.057102374732494354,0.056670724414289,0.07312065176665783,0.4302882030699403 -2090,70,0.15389570593833923,0.07968713417649267,-0.012665437534451485,0.042609989643096924,0.036902908235788345,0.11744439303874968,0.06008893996477127,0.06278872862458229,0.07499164082109928,0.4385823114775121 -2090,90,0.17499586939811707,0.15307022631168365,-0.006629021372646093,0.051642920821905136,0.05576261505484581,0.1437108963727951,0.07900382578372955,0.13776874355971813,0.09464766588062049,0.5226381533779204 -2090,95,0.18306347727775574,0.2094835489988327,-0.004387401044368744,0.053695861250162125,0.06762983649969101,0.15610268861055357,0.08398143202066422,0.1938714608782896,0.10642033703625199,0.5782696541398763 -2091,5,0.10184358060359955,0.014526125974953175,-0.041186495684087276,0.01603034883737564,0.00952414581552148,0.04358386993408203,-0.003997887950390577,-0.01546077337116003,0.03526593949645758,0.2641218981705606 -2091,10,0.10932666063308716,0.01860622502863407,-0.03514099791646003,0.018961135298013687,0.012321674078702927,0.05613153800368309,7.057469338178635e-05,-0.00702469069510698,0.0406239552423358,0.29059754067566246 -2091,30,0.1302817463874817,0.03352291136980057,-0.02465534582734108,0.02649744786322117,0.020266782492399216,0.08231201171875,0.02041289024055004,0.013167879544198513,0.05422250963747501,0.3502221764065325 -2091,33,0.13270695507526398,0.035888286419212816,-0.023567551746964455,0.028172185644507408,0.021288562566041946,0.08521866798400879,0.02346423827111721,0.015893496572971344,0.05586302997544408,0.357252645031549 -2091,50,0.14318843185901642,0.05177433043718338,-0.018356546759605408,0.035289812833070755,0.027783187106251717,0.10041914135217667,0.04075520113110542,0.03324798587709665,0.0647642994299531,0.3945485055446625 -2091,67,0.1532132476568222,0.07514808908104904,-0.013657297007739544,0.04157007485628128,0.035649288445711136,0.11555711925029755,0.05804616957902908,0.057655321620404744,0.07414349146187306,0.43495294705033305 -2091,70,0.15502753853797913,0.08103973120450972,-0.01282839011400938,0.04324480891227722,0.03739240765571594,0.11846835911273956,0.06109752133488655,0.06391510646790266,0.07604370843619107,0.4433670842088759 -2091,90,0.1764562875032425,0.15610015392303467,-0.006702858954668045,0.05245586112141609,0.05654557794332504,0.14501646161079407,0.08042272180318832,0.1405558268306777,0.09599878080189228,0.5291344696190209 -2091,95,0.1846495270729065,0.2138446420431137,-0.004436048562638477,0.05454927682876587,0.0685606375336647,0.15750356242060662,0.08550829440355301,0.19801578926853836,0.1079462804831564,0.5858953747898338 -2092,5,0.10248235613107681,0.014577583409845829,-0.04173107072710991,0.016137398779392242,0.009634336456656456,0.04393078200519085,-0.004379177466034889,-0.015788501128554344,0.035635545197874305,0.2665454525966197 -2092,10,0.11006023734807968,0.018734367564320564,-0.03560707308351993,0.01912539079785347,0.012470312416553497,0.05660172924399376,-0.00022341683506965637,-0.007230089977383614,0.0410941381007433,0.2933356515131891 -2092,30,0.1312808096408844,0.03392287716269493,-0.024985751137137413,0.02680879645049572,0.020523060113191605,0.08301639556884766,0.020555390045046806,0.013311558589339224,0.05492090005427599,0.3537835391238332 -2092,33,0.1337367445230484,0.03633222803473472,-0.023882009815424682,0.028516223654150963,0.021556580439209938,0.08594558224081993,0.023672211915254593,0.016082944348454475,0.05658518517389893,0.36090183185413477 -2092,50,0.1443510353565216,0.052525416016578674,-0.018603747710585594,0.03577277809381485,0.02813900075852871,0.10128442198038101,0.04133419319987297,0.033737778663635254,0.0656410064548254,0.3987134052440524 -2092,67,0.15450283885002136,0.07638403080403813,-0.01384283322840929,0.042175617069005966,0.03611096739768982,0.1165676862001419,0.05899617820978165,0.058664463460445404,0.0751719405129552,0.4397776249982417 -2092,70,0.1563401222229004,0.08240253031253812,-0.013002989813685417,0.04388304054737091,0.03787703067064285,0.11949781328439711,0.06211300194263458,0.06502803042531013,0.07709641978144646,0.4483467321842909 -2092,90,0.17804037034511566,0.15915918350219727,-0.0067983996123075485,0.05327387526631355,0.057289522141218185,0.14626199007034302,0.08185286819934845,0.1433962625451387,0.09731616433709861,0.535716930218041 -2092,95,0.186337411403656,0.2182503640651703,-0.004501066170632839,0.05540815740823746,0.0694652646780014,0.15885019302368164,0.08704756945371628,0.20207524271681884,0.10945101454854012,0.5936438925564289 -2093,5,0.10312556475400925,0.014626949094235897,-0.04232734683901072,0.016242947429418564,0.00973784551024437,0.04426512531936169,-0.004768237005919218,-0.01616472192108631,0.03600564142689109,0.268906726827845 -2093,10,0.11080344021320343,0.018861083313822746,-0.03611434660851955,0.019288672134280205,0.012612130492925644,0.05705769695341588,-0.0005242610350251198,-0.007441723719239235,0.041573339886963365,0.2960702237673104 -2093,30,0.13230402767658234,0.03432365134358406,-0.02533828280866146,0.02712053246796131,0.020783811807632446,0.08375954627990723,0.020695621147751808,0.01344250338152051,0.05563556272536516,0.35740304607898 -2093,33,0.13479237258434296,0.03677735678851604,-0.024220330640673637,0.028860947117209435,0.021838795393705368,0.08670525252819061,0.02387860417366028,0.01625532004982233,0.05732899513095617,0.36461648263968527 -2093,50,0.14554671943187714,0.05328048765659332,-0.018864959478378296,0.036257706582546234,0.028522761538624763,0.10219404101371765,0.04191550239920616,0.034208630211651325,0.06654326524585485,0.4030220350250602 -2093,67,0.15583248436450958,0.07762883618474015,-0.014035471715033054,0.04278425872325897,0.03661283478140831,0.11763963982462884,0.05995239317417145,0.05968619417399168,0.07623543823137881,0.4447776665724814 -2093,70,0.157694011926651,0.08377553448081014,-0.013183425180613995,0.0445246696472168,0.038405049592256546,0.12059421837329865,0.06313537806272507,0.06614598445594311,0.07818725649267436,0.4534343758597969 -2093,90,0.17968060076236725,0.16224732995033264,-0.006888437084853649,0.054096952080726624,0.05810956656932831,0.1476115882396698,0.08329427242279053,0.14623153787106308,0.09872354008257389,0.5425419363193215 -2093,95,0.1880871206521988,0.22270074486732483,-0.004558746539987638,0.056272465735673904,0.07047327607870102,0.16032975912094116,0.08859924226999283,0.20629947932902715,0.1110544370487332,0.6016603319440037 -2094,5,0.10411930084228516,0.014674218371510506,-0.04291041512042284,0.016347000375390053,0.009850187227129936,0.044622281193733224,-0.00516506889835,-0.0165318101644516,0.03638516180217266,0.27157872822135687 -2094,10,0.11183464527130127,0.018986372277140617,-0.03661246411502361,0.01945098303258419,0.012763701379299164,0.057533372193574905,-0.0008319607004523277,-0.007652474567294121,0.04204641282558441,0.2990345419384539 -2094,30,0.13344015181064606,0.03472524136304855,-0.02568827196955681,0.02743265964090824,0.021055718883872032,0.0844925045967102,0.020833585411310196,0.013563843443989754,0.05635266806930303,0.36112866876646876 -2094,33,0.13594064116477966,0.03722367513924837,-0.02455499954521656,0.02920636720955372,0.022124886512756348,0.08747349724173546,0.024083416908979416,0.01641835179179907,0.05807532988488674,0.36838383981958034 -2094,50,0.14674746990203857,0.05403954163193703,-0.019126806408166885,0.0367446169257164,0.02890876680612564,0.1031021699309349,0.0424991250038147,0.034722160547971725,0.0674432273954153,0.40732464799657464 -2094,67,0.1570834368467331,0.07888251274824151,-0.014230679720640182,0.043396010994911194,0.03711308188736441,0.11869715079665184,0.06091483682394028,0.060658921487629414,0.07729413174092771,0.44965357799082994 -2094,70,0.15895403921604156,0.0851587355136871,-0.01336714532226324,0.04516971483826637,0.038928452506661396,0.1216791570186615,0.0641646683216095,0.06729651428759098,0.0792772615328431,0.4584968499839306 -2094,90,0.18104791641235352,0.1653645932674408,-0.006984630599617958,0.0549250990152359,0.058914534747600555,0.14892815053462982,0.08474693447351456,0.14919690042734146,0.1001201204955578,0.5491550507023931 -2094,95,0.18949547410011292,0.22719572484493256,-0.004624313116073614,0.0571422316133976,0.07146233320236206,0.16175122559070587,0.09016332775354385,0.21052218140102905,0.11262978427112103,0.6094265740364789 -2095,5,0.10449407994747162,0.014719395898282528,-0.04348435625433922,0.01644955575466156,0.009960455819964409,0.04495673924684525,-0.0055696782656013966,-0.016889724880456924,0.03677161000669003,0.27362942721229044 -2095,10,0.1123182401061058,0.019110234454274178,-0.037102521955966944,0.019612329080700874,0.012915160320699216,0.05800102539360523,-0.001146521419286728,-0.007872480899095535,0.04251856580376625,0.30151543543906884 -2095,30,0.13422846794128418,0.03512764349579811,-0.026033611968159676,0.02774517424404621,0.021319195069372653,0.08520491421222687,0.020969269797205925,0.01368031743913889,0.0570586521178484,0.36451533464714886 -2095,33,0.13676422834396362,0.0376711818575859,-0.02488422952592373,0.02955247461795807,0.022405351698398586,0.08822745084762573,0.02428663894534111,0.016576338559389114,0.058819838408380745,0.37182977452874183 -2095,50,0.1477234661579132,0.054802581667900085,-0.019384069368243217,0.03723350167274475,0.02928498573601246,0.1039925292134285,0.04308505728840828,0.035201895982027054,0.06834729667752981,0.41142366058193147 -2095,67,0.15820521116256714,0.0801450529694558,-0.014422225765883923,0.04401087015867233,0.03760118782520294,0.11973683297634126,0.06188347563147545,0.06171567551791668,0.07836169935762882,0.45440448563545943 -2095,70,0.16010220348834991,0.08655215203762053,-0.013547590002417564,0.04581816866993904,0.03943998292088507,0.12273568660020827,0.06520084291696548,0.06839939532801509,0.08035465478897094,0.4633919065177906 -2095,90,0.1825076937675476,0.16851097345352173,-0.007079489063471556,0.05575831979513168,0.059707432985305786,0.15022342503070832,0.08621085435152054,0.15209407173097134,0.10150245241820813,0.555708854366094 -2095,95,0.19107438623905182,0.23173536360263824,-0.004688434000127026,0.05801744386553764,0.07242985814809799,0.16317687928676605,0.09173979610204697,0.21482899226248264,0.11419159937649961,0.6171785444021225 -2096,5,0.10449618101119995,0.014762479811906815,-0.044037941843271255,0.016550609841942787,0.010072464123368263,0.04531530700623989,-0.005982059054076672,-0.01724323071539402,0.03715043291449547,0.2753969814395532 -2096,10,0.11245610564947128,0.019232669845223427,-0.03757633715867996,0.01977270096540451,0.01306542381644249,0.058473716303706166,-0.0014679357409477234,-0.008090730756521225,0.0429808484390378,0.3036879079416394 -2096,30,0.1347465217113495,0.03553086519241333,-0.02636735327541828,0.02805808000266552,0.02157840207219124,0.08591203689575194,0.02110268920660019,0.013801570050418377,0.057762740179896355,0.3676510273478925 -2096,33,0.13732628524303436,0.03811988066881895,-0.02520427666604519,0.029899274930357933,0.022678251843899485,0.08895169764757156,0.024488285183906555,0.016750233797356486,0.05955463036894798,0.3750386383850127 -2096,50,0.14847569167613983,0.055569615215063095,-0.019635751843452454,0.03772435337305069,0.029647665098309517,0.10485094040632248,0.043673306703567505,0.03570800181478262,0.0692416550591588,0.4152591829188168 -2096,67,0.15913932025432587,0.08141645446419725,-0.014611373655498028,0.04462883621454239,0.038072213530540466,0.12072744965553284,0.06285833567380905,0.06275150552392006,0.07941596383228898,0.45897445643320683 -2096,70,0.16106922924518585,0.0879557706415653,-0.01372622512280941,0.0464700311422348,0.03993624076247214,0.12376805692911148,0.06624393165111542,0.06956125795841217,0.0814266661182046,0.4680687779560685 -2096,90,0.18386350572109222,0.17168647050857544,-0.0071803415659815045,0.056596606969833374,0.060465794056653976,0.15147108733654022,0.08768603205680847,0.15500489149708324,0.10285626202821732,0.5620624172501266 -2096,95,0.19257885217666626,0.2363196313381195,-0.00475358497351408,0.05889809876680374,0.07335399836301804,0.16454200446605682,0.09332868456840515,0.2192085106391459,0.11572045087814331,0.6247828405350446 -2097,5,0.10506226122379303,0.014803470112383366,-0.044620320200920105,0.016650166362524033,0.010181884281337261,0.04563486576080322,-0.006402222439646721,-0.017614834010601044,0.03752661745529622,0.2775478435913101 -2097,10,0.11307971924543381,0.019353680312633514,-0.03807277828454971,0.019932104274630547,0.013211598619818687,0.05893024429678917,-0.0017962148413062096,-0.008312340825796127,0.04345592577010393,0.3062393847387284 -2097,30,0.1355312615633011,0.035934895277023315,-0.0267159566283226,0.028371373191475868,0.02184438519179821,0.08663399666547775,0.021233830600976944,0.013925902545452118,0.058480922132730484,0.3709985241293907 -2097,33,0.13812966644763947,0.03856976661831141,-0.025536635890603065,0.030246764421463013,0.022960925474762917,0.08970077335834503,0.02468833699822426,0.016907288692891598,0.06030246782116592,0.37846153881400824 -2097,50,0.14935967326164246,0.056340623646974564,-0.019894206896424294,0.03821718692779541,0.03002458903938532,0.10575595498085022,0.044263869524002075,0.03620282560586929,0.07014787662774324,0.41931122681126 -2097,67,0.16010037064552307,0.08269673205912122,-0.014802861027419567,0.04524990916252136,0.03856898471713066,0.12176483988761903,0.06383940577507019,0.06380249001085758,0.08047191239893436,0.46361798843368895 -2097,70,0.1620442271232605,0.08936958611011503,-0.013905156403779984,0.047125302255153656,0.04045765474438667,0.12482745945453644,0.0672939121723175,0.07073595002293587,0.08252647425979376,0.47281530126929283 -2097,90,0.18500328063964844,0.17489108443260193,-0.0072728353552520275,0.05743996426463127,0.061284441500902176,0.15277463793754578,0.08917245268821716,0.15792136266827583,0.10424946434795856,0.5685632526874542 -2097,95,0.19378161430358887,0.24094855785369873,-0.00481472397223115,0.05978420749306679,0.07433166354894638,0.1659373641014099,0.09492996335029602,0.22354388004168863,0.11732298564165827,0.6326708182692526 -2098,5,0.10568912327289581,0.014842364937067032,-0.045207349397242066,0.016748225316405296,0.010282386187464,0.04590664803981781,-0.006830145139247179,-0.017971794586628672,0.03788713868707418,0.27972102500498297 -2098,10,0.11379559338092804,0.01947326399385929,-0.038571061193943025,0.020090537145733833,0.013348342850804329,0.05935390666127205,-0.0021313372999429703,-0.008523520082235336,0.04392150305211544,0.3088984915986657 -2098,30,0.13649636507034302,0.036339737474918365,-0.02705956995487213,0.028685053810477257,0.022096989676356316,0.0873238280415535,0.021362707018852234,0.01404472663998603,0.05919152358546853,0.37453055661171675 -2098,33,0.13912361860275269,0.03902084216475487,-0.025866903215646744,0.030594946816563606,0.023232705891132355,0.09042146801948547,0.024886813014745712,0.017077275086194277,0.061044035479426384,0.38207309326156974 -2098,50,0.1504782736301422,0.057115621864795685,-0.020145202055573463,0.038711994886398315,0.030384084209799767,0.1066296398639679,0.04485674947500229,0.03673800453543663,0.07104911934584379,0.42355156410485506 -2098,67,0.161338210105896,0.08398587085306654,-0.014987592585384846,0.04587408900260925,0.03906019337475303,0.12278908357024196,0.06482668220996857,0.06481925421394408,0.08152712251991034,0.4685157472454012 -2098,70,0.16330364346504211,0.09079361930489538,-0.014076422899961472,0.0477839820086956,0.04096502810716629,0.1258749023079872,0.06835079193115234,0.07194005232304335,0.08361648973077535,0.47782588796690106 -2098,90,0.18651755154132843,0.17812480032444,-0.0073478976264595985,0.058288395404815674,0.062087580189108885,0.15406638383865356,0.0906701311469078,0.1610045377165079,0.10565568804740906,0.5753979984670878 -2098,95,0.19539333879947662,0.24562209844589233,-0.004866394679993391,0.060675762593746185,0.0753009170293808,0.16733627393841743,0.09654364734888077,0.22795182086992988,0.11892003435641525,0.640658107725903 -2099,5,0.10612845420837402,0.014879168011248112,-0.045771246403455736,0.01684478670358658,0.010380251333117485,0.046203129738569264,-0.007265846710652113,-0.018315620720386505,0.03824727162718773,0.2818012267962331 -2099,10,0.11434563994407654,0.019591419026255608,-0.039051033556461334,0.02024800144135952,0.013485606014728549,0.05977745167911053,-0.0024733208119869232,-0.008737906813621521,0.044375395961105825,0.311363570112735 -2099,30,0.1373564600944519,0.03674539923667908,-0.02739531546831131,0.028999125584959984,0.022349439561367035,0.08800779283046722,0.02148931473493576,0.0141694825142622,0.05988710969686508,0.3779344784095883 -2099,33,0.14001959562301636,0.03947310607880354,-0.026186064779758454,0.030943820253014565,0.023500541225075722,0.09112100303173065,0.02508370950818062,0.01725001035258173,0.06177434138953686,0.3856244990043342 -2099,50,0.15152932703495026,0.05789460241794586,-0.020390575751662254,0.03920877352356911,0.03073960542678833,0.10748249292373657,0.04545194283127785,0.0372572410851717,0.0719483532011509,0.42773299338296056 -2099,67,0.1625375896692276,0.0852838808298112,-0.015169715145602789,0.04650137573480606,0.03953278437256813,0.12377539202570915,0.06582017987966537,0.06586488848552108,0.08258056964725256,0.4733597468584776 -2099,70,0.16452986001968384,0.09222785234451292,-0.014245743863284588,0.04844607040286064,0.04146628826856613,0.12688997238874436,0.06941457837820053,0.07314585521817207,0.08470225781202316,0.48277115486562244 -2099,90,0.18806082010269165,0.18138764798641205,-0.0074343751184642315,0.059141892939805984,0.06286291778087616,0.15531865358352662,0.09217908978462219,0.16403073351830244,0.10702664107084274,0.5820169514045119 -2099,95,0.197057843208313,0.2503402531147003,-0.00492517463862896,0.061572760343551636,0.07625257037580012,0.1687139771878719,0.09816974401473999,0.23244627611711607,0.12048196345567694,0.648761668242514 -2100,5,0.10671249777078629,0.014913877472281456,-0.04635620806366205,0.01693985052406788,0.010472797788679601,0.046480368822813034,-0.00770932249724865,-0.018687637522816658,0.03861564146354794,0.2840224577113986 -2100,10,0.11504609882831573,0.019708149135112762,-0.03955518454313278,0.020404495298862457,0.013622580096125603,0.06019615046679974,-0.00282216165214777,-0.008962521329522133,0.04483269504271448,0.3140126277692616 -2100,30,0.1383829116821289,0.037151869386434555,-0.027738375589251518,0.02931358478963375,0.022612490504980085,0.08870042860507965,0.021613646298646927,0.01429846221581101,0.060596863925457,0.3815258016809821 -2100,33,0.14108377695083618,0.03992655836045742,-0.02652326598763466,0.03129338473081589,0.023780114948749542,0.09183562010526657,0.02527901530265808,0.017420662567019463,0.06252171950414777,0.3893594498746097 -2100,50,0.15275658667087555,0.05867757648229599,-0.020649626851081848,0.039707526564598083,0.031118284910917282,0.10836470127105713,0.04604944586753845,0.03778802044689655,0.07285049837082624,0.4320618323981762 -2100,67,0.1639208048582077,0.08659074954688559,-0.01535763032734394,0.047131769359111786,0.04003285989165306,0.12480595126748086,0.06681987643241882,0.0669283472560348,0.08365907944738867,0.47843249509111047 -2100,70,0.1659412980079651,0.09367228746414182,-0.014421092625707404,0.04911156743764877,0.04198838397860527,0.12794633209705353,0.07048524916172028,0.07433316763490438,0.08580507412552833,0.4880020131357014 -2100,90,0.18980562686920166,0.18467959761619568,-0.007518325001001358,0.0600004568696022,0.0636904239654541,0.15663137435913088,0.09369926899671555,0.16713161766529083,0.10844694077968597,0.5890187503769995 -2100,95,0.19893011450767517,0.25510305166244507,-0.004979850258678198,0.06247520446777344,0.07727745361626148,0.1701253056526184,0.0998082160949707,0.23701160782948136,0.12209183610975735,0.6572029959410429 diff --git a/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp26_projection_2100_regional.csv b/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp26_projection_2100_regional.csv deleted file mode 100644 index 8cc301f..0000000 --- a/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp26_projection_2100_regional.csv +++ /dev/null @@ -1,847 +0,0 @@ -year,percentile,exp,antdyn,antsmb,greendyn,greensmb,glacier,landwater,GIA,antnet,greennet,sum -2007,5,0.006784050434827805,-0.0003580585826127249,-0.00014481082352613787,0.002366923697449878,0.001991122348922335,0.008026125970031363,0.00036440904591380244,-0.0020967304089423286,-0.0004531926014619867,0.004411526005158151,0.01865289047996138 -2007,10,0.007691982343420387,-0.00035057650624909333,-0.00012201376316847294,0.00240095683346283,0.0020168847021553487,0.00828240788397094,0.00037659843994505203,-0.0020967304089423286,-0.0004299110779501016,0.004464012833102899,0.020067367664311383 -2007,30,0.010203955512866377,-0.00032185782775384707,-8.214624217076712e-05,0.002490901584624222,0.002083570863230699,0.008812116498795406,0.00043754541010129994,-0.0020967304089423286,-0.0003814328860742367,0.0045945928663306814,0.02318863019824551 -2007,33,0.010468685278203339,-0.0003174610096685195,-7.817241507180898e-05,0.002503056241501685,0.0020916571357890014,0.008870793921555804,0.00044668740818411273,-0.0020967304089423286,-0.0003755801608532316,0.004612801597976723,0.02355339722477024 -2007,50,0.011893657454475761,-0.0002823699399832792,-5.877880322013035e-05,0.0025601984010806883,0.0021368306490516355,0.009189969632653073,0.0004984923423050482,0.0006426668409204348,-0.0003405879024716333,0.004710640165204585,0.025420937149293086 -2007,67,0.013384515400882811,-0.0001360682142436887,-4.1252979482461465e-05,0.002618634983485276,0.0021859618901830897,0.00956771161791481,0.0005502972764259838,0.0006426668409204348,-0.0002775006095881346,0.004805495133843556,0.027319244226689188 -2007,70,0.013754773689433933,-0.00013330925405769762,-3.8067510306068276e-05,0.0026338791554432355,0.0021962909806900036,0.009645961733480013,0.0005594393504137956,0.0006426668409204348,-0.00024335090999015962,0.004823877540165112,0.02768422818325323 -2007,90,0.016801452120058256,-0.0001223865086554205,-1.5149295690097448e-05,0.0027291512273574067,0.002305565499217787,0.010390148645288711,0.0006173389625741063,0.0006426668409204348,-0.00016431644570487624,0.004973032117929419,0.031245504268120904 -2007,95,0.018369949688762426,-0.00011973818552310997,-7.562771699854428e-06,0.0027742977541791833,0.0023687510935325564,0.010729764933182347,0.0006325757146012932,0.0006426668409204348,-0.00014819204152095872,0.005044554772651072,0.03306879455784106 -2008,5,0.007697510223090649,-0.00042602784341440965,-0.0002886392720743323,0.002717436374717038,0.002046157569671805,0.008107784058201666,0.0007186814346375422,-0.0022873422643007223,-0.0006248454320761744,0.004876167338183198,0.02061918805726338 -2008,10,0.0086573930375278,-0.00040985054331494356,-0.00024221723792590234,0.0027770335892569635,0.0020868757915898503,0.008548104213941154,0.0007442560300547128,-0.0022873422643007223,-0.0005792147227227152,0.004962724302700968,0.022250429928454055 -2008,30,0.011251234156638385,-0.00035945663885627563,-0.00016135791621673534,0.0029128259119676585,0.0021903557491991963,0.009468463734875131,0.0008721294625705601,-0.0022873422643007223,-0.0004905891582821923,0.005165770177573148,0.02591514569845923 -2008,33,0.011527236102148892,-0.00035488848892244304,-0.00015329282517527977,0.0029283982363552414,0.0022033922130151465,0.009566769232599177,0.0008913103522046889,-0.0022873422643007223,-0.00048048484375011425,0.0051900413224142275,0.02633564373032473 -2008,50,0.013031635669618844,-0.00032275797679581027,-0.0001140113700658542,0.003017492386754916,0.0022795895932484554,0.0100921185411968,0.0010000026673714104,0.0007010910991859289,-0.0004245590454721719,0.005321852194175594,0.02848203342154195 -2008,67,0.014616949460841714,-0.00016771944746575115,-7.863006163077162e-05,0.0031097275220067916,0.0023714076878647507,0.010683984797909253,0.00110869513434813,0.0007010910991859289,-0.0003554974554057097,0.00546087030268558,0.03064613950707241 -2008,70,0.014994880342297255,-0.00015977076144338105,-7.225451957875752e-05,0.003124685512500717,0.002390771877522472,0.010808653932319024,0.0011278760998872576,0.0007010910991859289,-0.00033944280771907817,0.005488462206764694,0.03106783559229637 -2008,90,0.018236148434877395,-0.0001367176391722126,-2.5365678822508385e-05,0.003276177450996425,0.0026045809482940574,0.011968022446581244,0.0012493559025250622,0.0007010910991859289,-0.00021716937443282672,0.005744015653173251,0.035115507711092515 -2008,95,0.01989541758969426,-0.00013134827107073497,-9.996871052639138e-06,0.0033538794542432304,0.0027306411574407594,0.0125082391595037,0.0012813242037252746,0.0007010910991859289,-0.00018419435976044652,0.005883058924353431,0.03715244778133461 -2009,5,0.008662209324538709,-0.0004967639416904676,-0.00044473307100798064,0.003067023741579107,0.002105192541130623,0.00832727617478038,0.001062816938456222,-0.002477954119659116,-0.0008132062162642763,0.005339968453566104,0.022773346019784424 -2009,10,0.009701898198667914,-0.0004710601589913323,-0.00037399191089176534,0.003133980087337412,0.0021610354277906826,0.008917833537411287,0.001102972808281482,-0.002477954119659116,-0.0007446426903170902,0.005460294326523517,0.024654478163445293 -2009,30,0.012521820157766343,-0.0004064385928972064,-0.0002502167775902201,0.0033180399099444918,0.002309570823255587,0.010143710535620236,0.0013037520055977827,-0.002477954119659116,-0.0006138561939843175,0.005740143881830063,0.028886154955639964 -2009,33,0.012820694825984537,-0.0003995807538618312,-0.00023779112536315505,0.0033422590272613557,0.0023289435229034263,0.010275731106860808,0.0013338688320617285,-0.002477954119659116,-0.0005993304961680241,0.005773283406938987,0.029363163419108114 -2009,50,0.01445537719130516,-0.0003635338984662893,-0.00017780807175431948,0.00347583233313415,0.0024414079560084946,0.010979537845421095,0.0015045313547240814,0.0007595153574514231,-0.0005222037555326377,0.005955676784175334,0.03182947693526473 -2009,67,0.01619601740911603,-0.00020304405958541892,-0.00012359106291640724,0.0036146949418487877,0.0025798325930285397,0.011760088883001537,0.0016751935737664384,0.0007595153574514231,-0.000439630119374933,0.006149836835844892,0.034295047829109034 -2009,70,0.016596361757442356,-0.00018747488207628186,-0.00011373071395731847,0.0036414104146824055,0.002609804324880513,0.011921635354986079,0.0017053105520403822,0.0007595153574514231,-0.0004237192820643726,0.006188385155983823,0.03477246662452665 -2009,90,0.02014262389987707,-0.0001510837414029083,-4.2173039870238625e-05,0.0038494848583949257,0.0029345057679767087,0.013437520288350902,0.001896051009615365,0.0007595153574514231,-0.00027688923197424363,0.00655982253982974,0.03938735987412925 -2009,95,0.02198569914847612,-0.0001429206266288059,-1.886845540007666e-05,0.003940561802103454,0.0031283189325258145,0.014147167264379958,0.0019462456191819428,0.0007595153574514231,-0.00022730041252976056,0.006766944849024371,0.04170067024529681 -2010,5,0.009618442649953068,-0.0005709402708530925,-0.0006181394036066303,0.003415686120556269,0.0021520918761020465,0.008419562421912991,0.0013968156332748415,-0.0026685659750175094,-0.0010211704336980135,0.00579389640984226,0.024784086507802457 -2010,10,0.010737097842805087,-0.0005356168208781624,-0.0005190031663825572,0.0034881447949547508,0.0022277089473761807,0.009178436250331105,0.0014527486607678608,-0.0026685659750175094,-0.0009252202263497042,0.005951222198431718,0.026932124482598296 -2010,30,0.01376012707874179,-0.00045394064489944,-0.0003460758657316557,0.003726222421137837,0.00242991249305138,0.010765445254886048,0.0017324131909929655,-0.0026685659750175094,-0.0007468190104092745,0.006316886710328639,0.03176882049469915 -2010,33,0.014091478046029808,-0.000445285769894187,-0.0003287257937039202,0.003757275954439939,0.002457085569671162,0.01093116197480637,0.0017743628477552315,-0.0026685659750175094,-0.0007273288812101906,0.006361044343805029,0.032309134809438964 -2010,50,0.015845554190687835,-0.00039717020622646296,-0.00024477344415361655,0.00393777319933963,0.0026126408545774638,0.011826092859173467,0.002012077569408072,0.0008179396157169171,-0.0006256060364666124,0.006601957124674471,0.03510334861573025 -2010,67,0.017740636236034335,-0.00024204207073609088,-0.00016912567593512708,0.004121690922433289,0.002803890959959064,0.012798148170790412,0.002249792594680909,0.0008179396157169171,-0.0005255150735466703,0.00685902653942702,0.037891253399872024 -2010,70,0.01815702973008156,-0.00021642163608979895,-0.0001555115143581659,0.004160973177447996,0.0028438932759459823,0.012997242535030177,0.002291742251443175,0.0008179396157169171,-0.0005062855065438324,0.006909536633647674,0.038435246152776034 -2010,90,0.02200891252309084,-0.00016548484353426601,-5.5189980945216335e-05,0.004432571547265073,0.0032951674035845142,0.014866855076701959,0.0025574237145575226,0.0008179396157169171,-0.0003345597780603279,0.007411590464456383,0.043622012671210374 -2010,95,0.02399759262911975,-0.0001544552622640223,-2.2584944363070527e-05,0.0045343447977598565,0.0035678259871691135,0.015756009841890285,0.002627339809161299,0.0008179396157169171,-0.00026745015627184607,0.0076980961311307805,0.04621914510124496 -2011,5,0.01010493452847004,-0.0006494373706169226,-0.0008018935043600407,0.003750222760557428,0.002194785303156687,0.008483690467079653,0.001720677670903398,-0.002859177830375903,-0.0012410175057284115,0.006244127211949542,0.026274235403463797 -2011,10,0.011338279578462243,-0.0006033912381710354,-0.0006724872967245285,0.003842626083073998,0.0022910802208738657,0.009402318866233987,0.0017935836634188484,-0.002859177830375903,-0.001115584685936836,0.0064373422153420025,0.028712529362601137 -2011,30,0.014658995043486358,-0.0005022916141764085,-0.00044672509056033395,0.004133036156674436,0.0025523105224934933,0.011352900818549887,0.0021581130187561088,-0.002859177830375903,-0.0008869117619929592,0.006898047340135702,0.03425298839892982 -2011,33,0.015011419266462326,-0.0004909359760250687,-0.00042421946161387997,0.004172637442387174,0.0025874141531889963,0.011557401494730475,0.002212792399285198,-0.002859177830375903,-0.0008618688004455636,0.006953585286047411,0.034864849422253576 -2011,50,0.01693522010128945,-0.00043043388541755983,-0.0003147481103520923,0.004402463332330944,0.002789318476148914,0.012638836093462036,0.002522642374093369,0.0008763638739824111,-0.0007349925603854256,0.007258432773370756,0.03803849424488856 -2011,67,0.018988607500120998,-0.00028471348091776706,-0.00021620128731264404,0.004644920836154192,0.0030366252835380947,0.013798120714485674,0.002832492500711538,0.0008763638739824111,-0.0006125812796177966,0.00758287476094737,0.0411810398448826 -2011,70,0.019468979260325432,-0.0002466110033505334,-0.0001982604281573703,0.0046874551242133055,0.0030896483868081215,0.014036316789436456,0.0028871720330506255,0.0008763638739824111,-0.0005893652221224348,0.00764556828355487,0.04178602498648569 -2011,90,0.02363922300413251,-0.0001799209375129263,-6.740967322208198e-05,0.005019862381144451,0.0036769439374636204,0.016245610706394558,0.0032334749282115225,0.0008763638739824111,-0.0003889383753771848,0.008288309847942644,0.047637483144149874 -2011,95,0.025793399489670993,-0.0001659521779763841,-2.3814911509519125e-05,0.005135228793549446,0.004034236654004512,0.017302247479525888,0.003324607380903336,0.0008763638739824111,-0.00030562474373592853,0.008660260574711096,0.05054496922750897 -2012,5,0.011179047962650658,-0.0007316126496245295,-0.0010057512925582674,0.0040763644256672504,0.0022315118349249285,0.008491425004229681,0.00203440320315189,-0.0030497896857342964,-0.001481272702401968,0.006691166585344339,0.028298813946935744 -2012,10,0.012512364193797112,-0.0006739622200934845,-0.0008417891383475385,0.004194551211450482,0.002352356109249326,0.00958703215981951,0.002125477816234445,-0.0030497896857342964,-0.00132407297031078,0.0069245989680586425,0.0310400315688184 -2012,30,0.016119962107390168,-0.0005513858184732265,-0.000556617801944124,0.004546400922168581,0.0026809376873425895,0.011934386899834573,0.0025808516406972105,-0.0030497896857342964,-0.001037390999176449,0.007488738531998086,0.03731874643871926 -2012,33,0.016507816140912474,-0.0005373221042507477,-0.0005283957769392974,0.004594863772430033,0.0027243983866436557,0.01217915650426963,0.002649157638461626,-0.0030497896857342964,-0.0010071970230005542,0.007556549304651271,0.03801256836774221 -2012,50,0.01859966553077102,-0.0004635552707245983,-0.0003904380591439653,0.004878474823416621,0.002979989735933894,0.013463699190652989,0.0030362251615399793,0.0009347881322479053,-0.0008509922845396354,0.0079293412137416,0.04157197910946009 -2012,67,0.020838798129931092,-0.00033105826999704855,-0.00026585239874110054,0.005160263584640257,0.003289835176149263,0.014818004445854337,0.003423292684618333,0.0009347881322479053,-0.0007024145908551483,0.00832876673587039,0.04509151133653364 -2012,70,0.02134277801141143,-0.00027804296372508627,-0.00024317108819139,0.005208726112381527,0.0033581858144058636,0.015100088741587669,0.003491598986002745,0.0009347881322479053,-0.0006748198404718026,0.008407354719575419,0.04577873644587321 -2012,90,0.02588779024034739,-0.00019439198508543114,-7.837101930872365e-05,0.005612790281252945,0.004098577484099669,0.01766239730448964,0.003924204043337373,0.0009347881322479053,-0.00044113716534792093,0.009207998334095314,0.052320316475437556 -2012,95,0.02826680339872837,-0.00017741136369919187,-2.2559967138933828e-05,0.005743213437135214,0.004549063261186544,0.018888154618384684,0.004038047271738067,0.0009347881322479053,-0.0003419887804711829,0.00967507739187498,0.05557009892665286 -2013,5,0.012407807644829155,-0.0008182387419788244,-0.0012339278519813586,0.004398484780709878,0.002300229287583461,0.008783879686557982,0.0023379914709703267,-0.00324040154109269,-0.0017481056774220636,0.0071685338167533546,0.030800996278437694 -2013,10,0.013810574728250502,-0.0007475651773533725,-0.0010347985905913518,0.0045521859666914485,0.002446400057898351,0.010036099059096871,0.002448430967404652,-0.00324040154109269,-0.0015569768331589163,0.007445663225287542,0.03380906563810053 -2013,30,0.017616615982353687,-0.0006008429334237034,-0.0006879067136722678,0.004955652265248462,0.002846144055385578,0.01268571886112176,0.003000628449576278,-0.00324040154109269,-0.001210527795575307,0.008119231214576911,0.0406416955289894 -2013,33,0.018041786781713354,-0.0005839184883174026,-0.0006534192822640471,0.005013290169676527,0.0028992906431384623,0.012964418659909167,0.0030834578062345253,-0.00324040154109269,-0.0011738247562267422,0.008200149039810964,0.041389099976175285 -2013,50,0.02024813132043928,-0.0004968058827095651,-0.0004850900261233468,0.0053508329717523685,0.003212450228830023,0.01442465962567553,0.00355282547631791,0.0009932123905133994,-0.0009887632499050512,0.008647129904354383,0.04527439171765799 -2013,67,0.02264664569478487,-0.00037660486651678845,-0.00033360316914144924,0.005685733463071244,0.0035921387378427417,0.015964325627584115,0.004022193146401294,0.0009932123905133994,-0.0008121330753741395,0.009124295417824847,0.04913404009498608 -2013,70,0.023184860050678255,-0.00031071757761365435,-0.00030603764125417584,0.005743371044979127,0.003674692132820388,0.016284501489104153,0.004105023110299534,0.0009932123905133994,-0.0007794336765135054,0.009219994104404383,0.04987773274616667 -2013,90,0.028045103209093213,-0.00020889804262529753,-0.00010503396457841537,0.006211376661010023,0.004582302213061784,0.019179620698627404,0.004629610452695082,0.0009932123905133994,-0.0005102984603525803,0.010193029389315555,0.05702463661193243 -2013,95,0.030614089226722718,-0.0001888328194324456,-3.817444858747244e-05,0.0063641872088604735,0.005137418147831598,0.020569678568033253,0.004767659785285489,0.0009932123905133994,-0.00039518743361592926,0.010765115986805811,0.06055787274647353 -2014,5,0.013787954503670334,-0.0009078492998107129,-0.0014531391486342588,0.00473395769680235,0.0023915678961419326,0.009253675827384135,0.002631443537028695,-0.003431013396451084,-0.0020069376978193213,0.00766445897694854,0.033684094162604324 -2014,10,0.01523051055148244,-0.0008235284185247615,-0.0012227022300700138,0.0049027230088967335,0.0025607063482506495,0.010618223560760434,0.0027624434205494658,-0.003431013396451084,-0.0017875857727015446,0.007983669165857793,0.03683351319189551 -2014,30,0.019024443509988487,-0.0006507995530070332,-0.0008203796588735065,0.005367163792243254,0.0030262146282227535,0.013460558863563662,0.003417444052633304,-0.003431013396451084,-0.00138627253967639,0.008765230394428988,0.043912403165487786 -2014,33,0.01945086379274726,-0.0006310673554952734,-0.0007799747991696324,0.00544049675149308,0.0030875501820548015,0.013764181173283575,0.003515693965273882,-0.003431013396451084,-0.0013434498494497953,0.008859364705830755,0.044698737959584185 -2014,50,0.021697763298638165,-0.0005300962138453532,-0.0005843810165944629,0.005830363768905318,0.0034528805996264364,0.015364820338300045,0.004072444381097146,0.0010516366487788936,-0.0011310236377004555,0.009376010626804161,0.048757470139255396 -2014,67,0.024164213712327184,-0.00040065469516446225,-0.00040798443392093045,0.006210750523165267,0.003896713710221631,0.017060069584353584,0.00462919479692041,0.0010516366487788936,-0.0009292752060966668,0.009931662390828294,0.052811882218075694 -2014,70,0.024681410422548653,-0.00034463478461604083,-0.0003759224474550823,0.006280751883354175,0.003992765884103861,0.017405340389365895,0.004727444709560988,0.0010516366487788936,-0.0008923240952134435,0.010040993951530715,0.05360465587080653 -2014,90,0.029693406416103244,-0.00022343908798578665,-0.00014373216133997625,0.006818633323016394,0.0050544858756226265,0.020583536104843838,0.0053496956743846295,0.0010516366487788936,-0.0005884271198150568,0.011171449746997464,0.061107649981766585 -2014,95,0.032401160533726214,-0.0002002165451761453,-6.773084511003878e-05,0.007004929104890892,0.005701446300677771,0.02211597374930685,0.005513445225165597,0.0010516366487788936,-0.0004598744028749108,0.011842274773123102,0.06483508160636815 -2015,5,0.014988405083119868,-0.0010028288579199743,-0.0016886162527446655,0.005055860494753963,0.0024673310689018626,0.00956093777562033,0.002914758945897001,-0.003621625251809477,-0.0022840188629081088,0.008148815086137807,0.03623577640653403 -2015,10,0.016484888938069344,-0.0009019736053024292,-0.0014227751828771121,0.00524346930064616,0.0026645820491944215,0.011070311366568386,0.003067515631098881,-0.003621625251809477,-0.0020311079037177698,0.008513359957543779,0.039536644613619734 -2015,30,0.020271166038513186,-0.0007013131407480598,-0.000957803985893561,0.005760855303646522,0.0032034417161449116,0.014180984645370575,0.0038312987534882847,-0.003621625251809477,-0.0015673525468292958,0.009410775770164751,0.04696572320729671 -2015,33,0.02069501005858183,-0.0006785911058040101,-0.0009114423430522868,0.005863131174459999,0.0032736685393785353,0.014516846071660061,0.003945866115579697,-0.003621625251809477,-0.0015189571328968541,0.009519380952505676,0.047793857278240905 -2015,50,0.02300981916747987,-0.0005636473511601373,-0.0006852430724506475,0.00629311955239139,0.003698415602615769,0.01627859785502364,0.004595081875877688,0.0011100609070443875,-0.0012763062818358217,0.01011164720458041,0.052063770215810594 -2015,67,0.025512241002172233,-0.00042588561063214487,-0.00048088315392832574,0.006744338399442985,0.004212944632063068,0.018143025726340672,0.005244297028935688,0.0011100609070443875,-0.001045536950305836,0.010748861159291552,0.056339766295504835 -2015,70,0.026023414623737334,-0.0003797946652658414,-0.0004437558948606231,0.006825383096462235,0.004324515884625859,0.01852056975006085,0.005358864998267092,0.0011100609070443875,-0.0010042177865186588,0.010877113436591085,0.05717234949213872 -2015,90,0.031219507664442064,-0.00023801510908685918,-0.00017648622747807905,0.007441170336562145,0.005558095826986659,0.021996972475743625,0.006084459101166024,0.0011100609070443875,-0.0006609104705068401,0.01218490889044907,0.06507679222841305 -2015,95,0.03394054442290217,-0.00021156256106368988,-8.793947271326885e-05,0.007637785570467427,0.006309269791503907,0.023675124634767057,0.006275404502238379,0.0011100609070443875,-0.0005171068131271095,0.012964334648584876,0.06899949876578106 -2016,5,0.016068565603345634,-0.0011005722707064826,-0.001919353745068739,0.0053721741555218805,0.002545733292950418,0.00987555718637866,0.0031879367867152556,-0.003812237107167871,-0.0025584450421950898,0.008633542148661058,0.038625478068986606 -2016,10,0.017603077159635723,-0.000981953463233194,-0.001618436181657098,0.005583546987578978,0.0027688783409234403,0.011512113826224074,0.003363645929142918,-0.003812237107167871,-0.002272969331612386,0.00904493146502186,0.04211757594005855 -2016,30,0.02152880383003503,-0.0007527380592677668,-0.001093389705916123,0.006184600586725834,0.0033787678382247244,0.014867567219454314,0.004242191337661235,-0.003812237107167871,-0.0017489691666115264,0.010056620676599896,0.049969145765792776 -2016,33,0.021945314079895615,-0.0007265880206877239,-0.001040787914898392,0.006280897686130596,0.0034585609646750363,0.01523019290246599,0.004373973042671985,-0.003812237107167871,-0.0016944598326672263,0.010179731678126596,0.05085080297745963 -2016,50,0.024353102810867132,-0.0005976222460591534,-0.0007850053020140496,0.0067671536732453776,0.003940191960956746,0.017143332730799106,0.005120737049799548,0.0011684851653098816,-0.0014214102163714968,0.010849448104620314,0.05538389138216978 -2016,67,0.026958559445105494,-0.0004523943715019114,-0.0005535729503476569,0.007287182275293309,0.004525007294970448,0.019167338430491943,0.005867500146067124,0.0011684851653098816,-0.0011619112851008096,0.011568158788690528,0.059920886118683445 -2016,70,0.027475358065217732,-0.00041619713902946046,-0.0005116647697960138,0.007374227892529515,0.004650905072518815,0.019572491098113903,0.005999282154697869,0.0011684851653098816,-0.0011162181754454774,0.011714458599088989,0.06079941037255142 -2016,90,0.032987871516495945,-0.0002526261180085544,-0.00020884454236752572,0.008055971550921965,0.006052020806444753,0.02332351357193835,0.006833900125799272,0.0011684851653098816,-0.0007338891618259258,0.013193707519437707,0.0691875149445746 -2016,95,0.03577746518775821,-0.00022287084696168044,-0.00010941332177388192,0.00827785648869491,0.006904112863483389,0.0251390579865203,0.007053536402023853,0.0011684851653098816,-0.0005752915287190378,0.014078038544469422,0.073334710401792 -2017,5,0.017203184843063355,-0.0012014133890669882,-0.0021560901475767896,0.005700451994143641,0.0026374441283666837,0.01025965293012662,0.003450978881203436,-0.004002848962526264,-0.002840038762893597,0.009129359561838614,0.041161602610625764 -2017,10,0.01880470642000437,-0.001064141808069809,-0.0018212300138481738,0.005923924965206549,0.002887612220694643,0.012013471911739515,0.0036508364400215506,-0.004002848962526264,-0.0025233140123585647,0.009588736512963757,0.044857361124093144 -2017,30,0.022927205380797386,-0.0008046972043069122,-0.0012358633686531542,0.006582415016585006,0.0035677687406569306,0.015587706685838566,0.0046501230196321405,-0.004002848962526264,-0.001938372682827051,0.01071926297116528,0.05316577162315977 -2017,33,0.023347741947323083,-0.0007752691228723752,-0.001176887892298647,0.006704990445555015,0.003658175166414584,0.015974248055339098,0.004800015961030729,-0.004002848962526264,-0.001877367024833096,0.010857897190657747,0.05410418290890706 -2017,50,0.025887029647082088,-0.000631705617890442,-0.0008914088174657336,0.007260068648547005,0.004197362002057845,0.01803042805860515,0.005649409902862726,0.0012269094235753757,-0.001574631550291491,0.011605364654022314,0.058912088318162914 -2017,67,0.02864385134652257,-0.00048026176770686694,-0.0006327688709179294,0.007824770822560476,0.004853820110051703,0.020202801715526197,0.00649880323745473,0.0012269094235753757,-0.0012863127737013473,0.012408340495702096,0.06374369980567457 -2017,70,0.02915694209560752,-0.000449590837393435,-0.0005863150476904965,0.007931258342271399,0.004993535156027664,0.02063730658896845,0.006648696178853319,0.0012269094235753757,-0.0012353719784218445,0.01257106450326261,0.06467141198471586 -2017,90,0.03500935236029327,-0.000267272102670833,-0.0002489614731501643,0.008676671684921875,0.006566280300929909,0.024655517133662864,0.007598019355524368,0.0012269094235753757,-0.000813914936935936,0.014227579644661148,0.0735959829969092 -2017,95,0.03792779001966119,-0.00023414140287011693,-0.00013641396334852953,0.008925143268921383,0.007521609720510583,0.02658778271549161,0.007847840924522016,0.0012269094235753757,-0.0006398558161140477,0.015217837809951035,0.07799607458048487 -2018,5,0.018245853126049042,-0.001307073503965327,-0.0024163482164051304,0.006027388768552067,0.002700399556837327,0.01042718066141678,0.0037038834076415653,-0.004193460817884657,-0.0031456023256962794,0.009604796155730214,0.04336237220315513 -2018,10,0.0199484159950912,-0.001149068042167519,-0.0020405873239600666,0.006261883202922126,0.0029821565890397164,0.01234300889957995,0.003929085038394806,-0.004193460817884657,-0.0027895739379900438,0.010115501051752449,0.04732902496743591 -2018,30,0.02429726463854313,-0.0008570295943245846,-0.0013834265571820868,0.007001367469260569,0.003745485484078926,0.01623989988879086,0.005055093192161008,-0.004193460817884657,-0.002132726389215615,0.01137656874902794,0.056267002992683744 -2018,33,0.02474163197502494,-0.0008247477723672515,-0.0013171849947836176,0.007129037543369594,0.0038487749449784827,0.016659791558279766,0.005223993959795944,-0.004193460817884657,-0.002065201391897903,0.011530572135760055,0.05727564430478506 -2018,50,0.027437200386077165,-0.0006663283262453064,-0.0009969623020864302,0.007758906745385124,0.004454755118898951,0.018888476052933353,0.006181100738687217,0.0012853336818408696,-0.0017282434107899491,0.012362703338912732,0.06243424228972759 -2018,67,0.03035125403702259,-0.000508407120973087,-0.0007064911836266474,0.008372152426746679,0.005193111178959991,0.02123416088998508,0.007138207517578491,0.0012853336818408696,-0.001406660415482097,0.013261372565818143,0.0676230176816676 -2018,70,0.030883203428238633,-0.0004775093827513884,-0.0006543295030143533,0.008486322510047753,0.005351826009001607,0.021704145696457292,0.007307108285213427,0.0012853336818408696,-0.0013495028147327403,0.013443346997373587,0.06861178690155742 -2018,90,0.03709034727141261,-0.00028195307515373435,-0.0002755778867438511,0.009315773872320207,0.007121266710952606,0.026029654046767915,0.008376816183101318,0.0012853336818408696,-0.0008813333000187711,0.015305123623605213,0.0781802104391834 -2018,95,0.04016860171407462,-0.00024537422878899944,-0.00014965367588848025,0.00957969067452306,0.008200638707841053,0.028117288414268058,0.00865831806973287,0.0012853336818408696,-0.0006906269903159973,0.01641674991436496,0.08287647201904412 -2019,5,0.019383239809423684,-0.0014153354710419953,-0.002691763847135591,0.006352981923878022,0.0027488886265739274,0.010472382563262788,0.003946651580509628,-0.004384072673243051,-0.0034658711754707566,0.010064776214324037,0.045516892292425774 -2019,10,0.021154174115508795,-0.0012366593708841673,-0.002269939412926076,0.006592832917346052,0.0030585453570784564,0.012562549111690755,0.004198393242362664,-0.004384072673243051,-0.003065457658798452,0.010632202182095853,0.049765220677588436 -2019,30,0.025675375577062367,-0.000910010435237473,-0.0015335797334860536,0.007418094987603161,0.003916140871958631,0.016841572351072094,0.005457101248007845,-0.004384072673243051,-0.0023322667885609977,0.012029233357805678,0.05931515106128763 -2019,33,0.026129537267610428,-0.000874561469167609,-0.0014597718138051055,0.007548399784628923,0.004032650358175211,0.01730216625207223,0.0056459073425876236,-0.004384072673243051,-0.0022580239684086355,0.01219937278903481,0.06040211605065101 -2019,50,0.0289584154356271,-0.0007017226000503741,-0.0011011219876482918,0.008243357762534292,0.004712177991587674,0.019725812241137727,0.006715809557273023,0.0013437579401063637,-0.0018811964591792037,0.013123403916612163,0.06590010326193076 -2019,67,0.031995885144546626,-0.0005374420542120568,-0.0007765961411453655,0.008937326474828786,0.005535729092938342,0.02225004252072615,0.00778571116471843,0.0013437579401063637,-0.0015228160788894954,0.014122590147439197,0.07143017396363668 -2019,70,0.03254211897701025,-0.0005044748659938225,-0.0007178568889876641,0.00905660346907549,0.0057167663886017435,0.022757954352079626,0.007974517259298208,0.0013437579401063637,-0.0014584695075101747,0.014325289824153471,0.07248347340311244 -2019,90,0.039068818125128746,-0.000296669043510618,-0.00029325769577512165,0.009964255658545211,0.007704466678191752,0.02740690705043601,0.009170290001290129,0.0013437579401063637,-0.0009400584128663623,0.016407912773887402,0.08269709864649474 -2019,95,0.04228393305391073,-0.00025656934485172677,-0.00015376160110852112,0.010255137927373799,0.008925762702198508,0.02966363011606623,0.009484967230416422,0.0013437579401063637,-0.0007321854720313994,0.017653101134116025,0.08768210667665664 -2020,5,0.02067718176729977,-0.0015288237799293202,-0.0029628598080039567,0.006677231460121508,0.0028134595314178424,0.010647762576673799,0.004179282792567632,-0.004574684528601445,-0.003787418268389098,0.010541487160108642,0.04797896257821142 -2020,10,0.022499547857791187,-0.0013267343125972237,-0.002498321192101203,0.006933258466712926,0.0031548944122457992,0.012890868914777025,0.0044587604446851324,-0.004574684528601445,-0.0033442945264592497,0.01116346460408037,0.05245451939384682 -2020,30,0.02714398545399308,-0.0009636363079312094,-0.001687569686457835,0.00781787065452394,0.004100889551629211,0.017485576283133457,0.005856148401652638,-0.004574684528601445,-0.002536084173920404,0.012698921856777203,0.0625296181383709 -2020,33,0.027625109128654003,-0.0009248392095142047,-0.0016061152167060892,0.007980132471334146,0.004231218213782168,0.01797745368541443,0.006065756716645761,-0.004574684528601445,-0.0024545345393646913,0.012885590156648911,0.0636750346299551 -2020,50,0.030555912181735038,-0.0007371780627851393,-0.0012110683166269088,0.008724060648845774,0.004981320037942746,0.02057414269841023,0.007253536358620142,0.0014021821983718579,-0.002040475075834305,0.013899304745173906,0.0694714954599771 -2020,67,0.033728657449781894,-0.0005659645406916893,-0.0008533850296575778,0.009483020304392561,0.00588949988482699,0.023262117886047522,0.008441316000594523,0.0014021821983718579,-0.001647139411041742,0.014997080112312303,0.07530045445931952 -2020,70,0.03427762867584825,-0.0005321067205152127,-0.0007888789187187085,0.009625747799775769,0.006090916141467847,0.023798469948650546,0.00865092492282764,0.0014021821983718579,-0.001576211865852689,0.015219123040685087,0.07640996541399249 -2020,90,0.04111975245326757,-0.0003114199956614446,-0.00032106420706105746,0.01062007578929297,0.008289579986467522,0.02875377742970244,0.009978443239050772,0.0014021821983718579,-0.001009020562530336,0.017518267332031035,0.08719519644671639 -2020,95,0.04445460519343615,-0.0002677267309249001,-0.0001672296465392669,0.010938690056462714,0.009637814405325877,0.031148678971682546,0.010327790835532641,0.0014021821983718579,-0.0007835911451530489,0.018890002267689873,0.09244946779897635 -2021,5,0.021898259019479158,-0.0016454124663420292,-0.003247185404050479,0.0070001380223228896,0.0028911690481497982,0.010899877928372052,0.00440177765105557,-0.004765296383959838,-0.004121390477716852,0.011031165201417066,0.050482935030779705 -2021,10,0.02377812563069165,-0.0014188100368536726,-0.0027390924894501773,0.007266676166958523,0.003266274333817866,0.013287133881892487,0.004710186948982208,-0.004765296383959838,-0.003638851404961168,0.011709459045760165,0.055146559851010975 -2021,30,0.028444077491760256,-0.0010181634424242675,-0.0018516055972260638,0.008233697092336746,0.004303125476330095,0.018173494200333293,0.006252234045855391,-0.004765296383959838,-0.0027509132670245602,0.013387919681434986,0.06565362650093687 -2021,33,0.02895349056720734,-0.0009763165754436514,-0.0017623000022048798,0.008407181649824867,0.004447334073694,0.01870034876919725,0.006483541474730364,-0.004765296383959838,-0.0026617663226513725,0.01359254363162072,0.06684176999002543 -2021,50,0.03193687797337771,-0.0007732005649720399,-0.0013300297863961176,0.009230032892132343,0.005271900987560146,0.021460782864492614,0.007794281142728576,0.001460606456637352,-0.0022100041337412765,0.014700488164557138,0.07291065466106035 -2021,67,0.03518256171494723,-0.0005960551297820287,-0.0009384255137538986,0.01003659007575333,0.006269150933629987,0.024315733876063138,0.009105021417966779,0.001460606456637352,-0.0017803407414605213,0.01590196587284262,0.0790048559411895 -2021,70,0.03577454287558794,-0.0005598710717609717,-0.0008677691184567193,0.010192320080250125,0.006489785629713018,0.024886650085971948,0.009336328846841751,0.001460606456637352,-0.001702599972272952,0.016143042303851784,0.0801559406318682 -2021,90,0.04284112199395895,-0.00032620590744613547,-0.00035604837133644177,0.011283237635415352,0.00890878843969327,0.03013150952586925,0.01080127407466327,0.001460606456637352,-0.0010865850623299634,0.018666528016962575,0.09143134417191802 -2021,95,0.04626267944015562,-0.00027884636687512047,-0.00018758698553578512,0.011630347735960181,0.010392305554215022,0.032663913672820205,0.011186786456121558,0.001460606456637352,-0.0008432633291079027,0.020174716185208944,0.09692179342533366 -2022,5,0.023099220457300545,-0.001765787499649921,-0.0035261084141198344,0.007321700965441801,0.0029891834640861582,0.011266981834119272,0.004614135548733448,-0.004955908239318232,-0.004452761099145403,0.011539356386282965,0.053065606815107066 -2022,10,0.025063052455522122,-0.0015119653616725859,-0.0029778335360265704,0.0075985810288845,0.0033967174199755093,0.013777546511447818,0.004952673058873886,-0.004955908239318232,-0.003931330130141631,0.01227316193829647,0.05796920482324161 -2022,30,0.02989434743374586,-0.0010733842057125873,-0.0020184479683517938,0.008659248282946381,0.004520624495913299,0.018895106287232313,0.0066453587878561,-0.004955908239318232,-0.0029700123777464177,0.01409433716831528,0.06895441825921718 -2022,33,0.030420651966333388,-0.0010284075587478603,-0.0019215930379764292,0.008835230622980472,0.004676995483686799,0.019447805906232803,0.006899261616841432,-0.004955908239318232,-0.0028721091920126717,0.014314926407463919,0.07019072545996774 -2022,50,0.033522385957092046,-0.0008096676501678324,-0.001454220267632943,0.00973957607888533,0.005572180307027764,0.022357940637945113,0.008338045124078307,0.0015190307149028461,-0.0023837615215197613,0.015515753729500207,0.07656121830388568 -2022,67,0.036892596687376496,-0.0006257490580777805,-0.0010304053119976246,0.010609554012263421,0.006655940014210548,0.02536264455930264,0.009776828024075188,0.0015190307149028461,-0.0019205245604966147,0.016815939390917085,0.08294636212116402 -2022,70,0.03752268148064613,-0.0005873801078632282,-0.000954106073138438,0.01077085601598544,0.006894518946667162,0.02595946621983522,0.010030731460300512,0.0015190307149028461,-0.0018370718226458926,0.017079806155923503,0.08415719703057761 -2022,90,0.04487576761767268,-0.0003410268070514491,-0.0004010177517927295,0.011953739174401238,0.009520647489385112,0.03146839982616924,0.011638784329847598,0.0015190307149028461,-0.001173359583369583,0.01981578039249484,0.09598484462958921 -2022,95,0.048458386982232336,-0.00028992831310258466,-0.00021738078017517306,0.012330109617525448,0.011129389549921981,0.03411495920796957,0.012061955306663158,0.0015190307149028461,-0.0009131076931430371,0.021454165142766927,0.10175134972662056 -2023,5,0.02410129402987659,-0.0018898252337638487,-0.00384423612130568,0.007638688098613775,0.003087995466375495,0.011625989870182674,0.004816356181981271,-0.005146520094676625,-0.004818719234132871,0.012055257003804793,0.055438665151671875 -2023,10,0.026171964709460736,-0.001608063849787137,-0.0032483976529767344,0.007923626017924611,0.0035331952136485943,0.014271564832866204,0.005186217559880183,-0.005146520094676625,-0.0042555167796809205,0.012851067018585667,0.06064345378988156 -2023,30,0.03129103460013866,-0.001129811396228081,-0.002205537305252752,0.009086175989697156,0.004759231655705027,0.019667837754021898,0.0070355214131747786,-0.005146520094676625,-0.0032096185181118312,0.014825493188913748,0.07225180791492686 -2023,33,0.03184468307867646,-0.0010808497096006402,-0.002100617684973197,0.009258667598189883,0.004930750392642496,0.02025434915524515,0.007312917142978967,-0.005146520094676625,-0.0031034093383043894,0.015066602138771944,0.07356925963347814 -2023,50,0.03511561733782291,-0.0008466351946026381,-0.0015917565727708559,0.010229606929291897,0.005909231314573711,0.023329101480595433,0.008884825873709368,0.00157745497316834,-0.002573470375904565,0.016369236131005542,0.08031650334166811 -2023,67,0.038679947106540206,-0.0006544731879950001,-0.0011311239687470229,0.01118015698520597,0.007093194924544027,0.02650695852146525,0.010456734604439768,0.00157745497316834,-0.00207064592231094,0.017782889699127006,0.08708987778843702 -2023,70,0.03933627380803228,-0.000615349570011608,-0.0010487027702336868,0.011363656777390424,0.0073548748992108785,0.02713356728331092,0.010734130334243955,0.00157745497316834,-0.0019800956140889015,0.018069976971861426,0.08837256875616563 -2023,90,0.04709860506467521,-0.00035588269850406515,-0.00044849080250650424,0.012631579732080253,0.010227217074239259,0.03294267194761806,0.012490970361163804,0.00157745497316834,-0.0012652570158211407,0.02106141557042429,0.10091903039741902 -2023,95,0.050840732714906335,-0.00030097248907369695,-0.0002476850167759255,0.013037976375328894,0.011986219271662631,0.03572213487480218,0.012953296172677455,0.00157745497316834,-0.0009826614343551093,0.0228492140878374,0.1070173448027708 -2024,5,0.025182962494343517,-0.002018743788217897,-0.004192921148428791,0.007945572475443474,0.003193436433779818,0.011997303104624994,0.005008441676139013,-0.005337131950035019,-0.00521776885053881,0.012587330438089343,0.0579224193236516 -2024,10,0.027346569000184538,-0.0017069920959451156,-0.0035452473039249105,0.008257850215266472,0.0036797296050162633,0.014794634146045165,0.0054108222737210745,-0.005337131950035019,-0.0046061922220317335,0.013447672798079794,0.06341980721185535 -2024,30,0.03269708313792944,-0.0011858605578534004,-0.00241092707015511,0.009506963871239952,0.005022041285509527,0.020497252299509668,0.007422724350771397,-0.005337131950035019,-0.0034706401466625693,0.015587306096951475,0.07565517567095319 -2024,33,0.0332793490793556,-0.0011341546040401843,-0.002296297903567347,0.009693751766241182,0.005209653623312025,0.02111785615084941,0.00772450926762295,-0.005337131950035019,-0.00335383542385106,0.015848775807821663,0.07704339565979261 -2024,50,0.036699780423939225,-0.0008842248211046715,-0.0017435323218062723,0.01072049694743043,0.006283522852039278,0.024369554264779866,0.009434626427821719,0.0016358792314338341,-0.0027775438179030833,0.0172600686854011,0.0841648896929309 -2024,67,0.040427308072149754,-0.0006824221919973151,-0.0012413305293985737,0.011755368586826293,0.007580411061169518,0.027729117907668976,0.011144743588020487,0.0016358792314338341,-0.0022324178730032014,0.018799233017030726,0.09132146180052714 -2024,70,0.04111272296123207,-0.0006438724792217214,-0.0011526237307069628,0.011960846546461453,0.007867316648020475,0.02838909954442721,0.011446529719352025,0.0016358792314338341,-0.0021353512065854243,0.019113498701571547,0.09267440070224879 -2024,90,0.049222740558534865,-0.00037077361804410176,-0.0004997899909188344,0.013316760656793143,0.011020235043248118,0.03451628865959341,0.013357837026531826,0.0016358792314338341,-0.0013618089315299148,0.022392971766070854,0.10590560623130638 -2024,95,0.05314104681126773,-0.0003119790155888509,-0.0002794165067391022,0.013753949357711263,0.012950807144061157,0.037450505538842556,0.01386081148312442,0.0016358792314338341,-0.0010559503366115632,0.024351309532505087,0.11234308064075871 -2025,5,0.026487707272171975,-0.0021524707702858664,-0.00452608831824337,0.008250395913439361,0.003291631811503964,0.012313445392189428,0.005190388691386715,-0.0055277438053934124,-0.00560607392041464,0.013106103396082518,0.06055822416167001 -2025,10,0.02871511964611709,-0.001808051270933526,-0.003828832094038605,0.008585214539722465,0.0038158495630116807,0.015252790197269094,0.005626484771436594,-0.0055277438053934124,-0.004944885996469221,0.014030209133826778,0.06632359294859104 -2025,30,0.034224390834569934,-0.0012431512738928683,-0.0026067721327787015,0.009924489719025261,0.00526892532246783,0.021258057378793906,0.007806963957206,-0.0055277438053934124,-0.0037205999364177448,0.01633401986854401,0.07910743964985498 -2025,33,0.03482798841968179,-0.0011885023189340167,-0.00248313477639845,0.010125381703799573,0.005471712735057474,0.02190937374871784,0.008134036169053407,-0.0055277438053934124,-0.0035936876220798025,0.016615325660072837,0.08056635245160575 -2025,50,0.03837494181133806,-0.0009222549984278966,-0.0018864897676981317,0.01122556524574694,0.006634770086462414,0.025327352289261588,0.009987443142975406,0.0016943034896993283,-0.0029738006902609616,0.01813341696783243,0.08802243965108732 -2025,67,0.042225194761157034,-0.0007100159898702747,-0.0013456194916819306,0.012333356966071192,0.008041382187040634,0.02886127956845412,0.0118408507241374,0.0016943034896993283,-0.00238797003422331,0.0197963441001125,0.09550669003157476 -2025,70,0.042952871726453304,-0.000671930586607223,-0.0012493430311673037,0.012543338550241891,0.008350638762400915,0.02955662079122207,0.012167923543224797,0.0016943034896993283,-0.00228394049547261,0.020134793402971272,0.09691308179844955 -2025,90,0.05134058907441795,-0.0003856994931913229,-0.0005469153850867495,0.014009279251858414,0.011768183793280188,0.03598331715475597,0.01423937825355174,0.0016943034896993283,-0.001451860580110208,0.023688397745466886,0.11078066641355437 -2025,95,0.05545100042968989,-0.0003229477315808551,-0.0003081353935624234,0.01447802721633181,0.013865443983123787,0.03906293065218311,0.014784498809044084,0.0016943034896993283,-0.0011238673363522347,0.025805425312528517,0.11755878894563009 -2026,5,0.027914216845855117,-0.0022900942190679763,-0.004840215735527788,0.008553159760942182,0.0034006806120164277,0.012698854342077856,0.005362199960304343,-0.005718355660751806,-0.005975530632421264,0.013628633902785502,0.06341793355454965 -2026,10,0.030217428099364046,-0.001911849937526267,-0.004097299911801986,0.008911065351688468,0.003960497956479803,0.015745078173599193,0.005833206874746715,-0.005718355660751806,-0.005272482723249417,0.014616793270015855,0.06940443620164602 -2026,30,0.035897937680371104,-0.0013014230777372265,-0.0027958707824790974,0.010342688388843982,0.005515683400857916,0.021999877085565264,0.008188243875918542,-0.005718355660751806,-0.003964984218101111,0.017079158149456503,0.0826975757339752 -2026,33,0.036531212832778694,-0.0012431106575865817,-0.002663810367530313,0.010557432552296204,0.005731244399777608,0.022674691914469747,0.008541499061750321,-0.005718355660751806,-0.0038296051065974833,0.017378724757681194,0.08421860977656563 -2026,50,0.04020955506358296,-0.0009604727864049912,-0.0020264074859131097,0.011744977550100406,0.0069762393421347515,0.026245189897447528,0.010543279662610386,0.0017527277479648222,-0.0031689174192486517,0.019002728712170028,0.09198094361919876 -2026,67,0.0441972831428051,-0.0007375301016214763,-0.0014506500081295092,0.012909277990971725,0.008482782282883823,0.02993075901303575,0.012545060870710441,0.0017527277479648222,-0.002544840076227773,0.02078012124090173,0.0997789843940251 -2026,70,0.044968309390172365,-0.0006994705987237149,-0.0013467377247310267,0.013134354423678355,0.008813955194141557,0.03065510787124699,0.012898316663782213,0.0017527277479648222,-0.002434013338226795,0.021141972979217074,0.10125780812607658 -2026,90,0.05375274656265974,-0.0004006603199190487,-0.0005990016113088661,0.014701292817570459,0.01247257355031423,0.037340587647799066,0.015135600114623471,0.0017527277479648222,-0.0015478754049369594,0.024946329004477016,0.11573365135026743 -2026,95,0.05800786612220109,-0.000333878798116901,-0.000340557564984431,0.015210208602849783,0.014712859304990484,0.04054711168913348,0.015724359364916427,0.0017527277479648222,-0.0011974322892015948,0.02721009126974823,0.12280056359414455 -2027,5,0.02933898740585894,-0.002430602073158745,-0.005154558929362063,0.008853864017951938,0.0035288736986859655,0.013172500563373074,0.005523874572031908,-0.0059089675161102,-0.006348742584707385,0.01416987253107588,0.06636564862439796 -2027,10,0.03170713557749987,-0.002019273226500777,-0.004368167304452262,0.009235403325334849,0.004126351218928401,0.016309125440925405,0.006030988583651439,-0.0059089675161102,-0.005601312284421769,0.015222193787634149,0.07256354075068044 -2027,30,0.037532612934708595,-0.0013603267466552648,-0.0029885987941219317,0.010761560554866493,0.005778997940064092,0.02276820292413429,0.008566561070709062,-0.0059089675161102,-0.004213834345931976,0.01784218751721586,0.0862796952980079 -2027,33,0.03818008692935109,-0.0012987155314278722,-0.002847718194885496,0.01099048386962809,0.006008511401619693,0.02347006168462121,0.008946896731233708,-0.0059089675161102,-0.004070297380937799,0.018160237515404364,0.0878708579366236 -2027,50,0.041960793585330246,-0.000999754249859328,-0.00217232724838938,0.012267857591461725,0.007329235846746066,0.02717654902018575,0.011102132343286702,0.0018111520062303163,-0.003369738216130706,0.01988864074247783,0.09589776493128344 -2027,67,0.04608428210020066,-0.0007647710452472195,-0.001562289825374657,0.013508643028687154,0.00893522540696931,0.0310031396686099,0.013257367955339694,0.0018111520062303163,-0.002708910583590236,0.021780774390761835,0.10398676649690568 -2027,70,0.04686066378057003,-0.0007269881087384201,-0.0014503435522284784,0.013737567017619124,0.00928670240907745,0.03175024070195786,0.013637705437584318,0.0018111520062303163,-0.0025907692450756166,0.022166611341688635,0.10553418597788086 -2027,90,0.055962884511798615,-0.0004156561747341951,-0.0006591541426200845,0.01539602529978836,0.01318221284199506,0.03868307883623879,0.016046498966307065,0.0018111520062303163,-0.0016542806685452764,0.02620962092129419,0.1205306553913335 -2027,95,0.06040969839692116,-0.000344772094396595,-0.00038357705800177327,0.01595049621394668,0.015562651155063051,0.04200916134545585,0.01668039193626147,0.0018111520062303163,-0.0012833247207036627,0.02862390647952093,0.12788693744236168 -2028,5,0.03069273814558983,-0.002573298468781838,-0.0054653860036197755,0.009152508010298254,0.0036585142936327933,0.013644296098349136,0.005675411919329418,-0.006099579371468593,-0.0067217356249359445,0.0147084639123513,0.06921153697507273 -2028,10,0.033122463369369505,-0.002128632387698554,-0.004638019826025398,0.009558227112320862,0.004289699104780422,0.01685248008170547,0.006219829898150766,-0.006099579371468593,-0.005931975223642116,0.015822282095370788,0.07560912164227547 -2028,30,0.03903907496519387,-0.0014205496112976448,-0.003178866670943974,0.01117811507688298,0.006039157461351612,0.023518038800264783,0.008941917363297537,-0.006099579371468593,-0.004462738384884755,0.018603547849454324,0.08971369044381357 -2028,33,0.03968280201740563,-0.0013546490842177258,-0.003032078824642407,0.011424537004135982,0.006282734907079993,0.024243350339724735,0.009350230391983554,-0.006099579371468593,-0.004310183979095462,0.018940284821130436,0.09133664449843155 -2028,50,0.0435626473762095,-0.001039438420835977,-0.0023169497048808343,0.012789606618570417,0.007679226289640389,0.028083571656849552,0.011664004221204316,0.0018695762644958106,-0.0035713610063692596,0.02077533667969152,0.0996218882790116 -2028,67,0.04778750947788358,-0.0007928896348901378,-0.0016724043223538358,0.014102285099996318,0.009383227033914109,0.032043495761464924,0.013977779264905062,0.0018695762644958106,-0.002871003456097951,0.022780750109987022,0.10798376678607849 -2028,70,0.04860124706402421,-0.0007535803725451869,-0.0015535056117885098,0.014346956859618452,0.009755689291972906,0.032815271951871,0.014386092293591078,0.0018695762644958106,-0.002747255519603716,0.02319072607380073,0.10957649620526819 -2028,90,0.05793008739128709,-0.0004306869851565259,-0.0007184328927269546,0.016097404267394394,0.013877609735764984,0.03999075937078058,0.016972076023082504,0.0018695762644958106,-0.0017593224396560588,0.02747435992451776,0.12504707715806923 -2028,95,0.06255357703715564,-0.00035562766068673494,-0.0004266379809241902,0.016691111862930298,0.016409132021495902,0.04342868259564371,0.017652597737559197,0.0018695762644958106,-0.001366316794173745,0.03002909819635853,0.1326542585414163 -2029,5,0.031674765527248384,-0.0027211316155213855,-0.005776375767261814,0.009452656318705557,0.0037977378449178104,0.014132349603014627,0.005816812002196873,-0.0062901912268269865,-0.007096749865642915,0.015258585080115399,0.07172232854054458 -2029,10,0.03420923302322626,-0.00223909310851472,-0.004905813949952666,0.009876627959587051,0.004465884593000864,0.017440019882340972,0.006399728996524719,-0.0062901912268269865,-0.0062613713410084116,0.016436381494926974,0.07836609893986128 -2029,30,0.040360314899682996,-0.0014810945395351397,-0.003371710134297967,0.011586331329255314,0.006311232707469873,0.024279954392479656,0.009314312146443973,-0.0062901912268269865,-0.004715460102504626,0.019379099316911886,0.0929830183134613 -2029,33,0.041028771263733506,-0.0014113218787859822,-0.0032173025897459678,0.011856284196182294,0.006565002849616355,0.025034408576209265,0.009751499436759865,-0.0062901912268269865,-0.004555190722515746,0.01973349346519754,0.09466467799772968 -2029,50,0.045060360340401534,-0.0010793491181995424,-0.0024655336802927416,0.013296034698923579,0.008036999816013413,0.028992769313688074,0.012228894081883244,0.0019280005227613048,-0.00377554402749459,0.021673712090155933,0.10325767892632284 -2029,67,0.049443657936155794,-0.0008212527367913947,-0.0017873266638046732,0.014700530406620262,0.009837214716293462,0.03308198432685173,0.014706289941486608,0.0019280005227613048,-0.0030379530646610026,0.023792868944757788,0.11193942732580317 -2029,70,0.05028308419510723,-0.0007809679398955943,-0.0016620646413611272,0.014971402376855633,0.010233386377627178,0.033878780585719394,0.015143477231802498,0.0019280005227613048,-0.002909777209910327,0.024225334627891976,0.11361229003262978 -2029,90,0.05999615201167762,-0.0004457528196395975,-0.0007822028345537586,0.01680542408299638,0.014579713592835582,0.04128327103026673,0.01791233128494979,0.0019280005227613048,-0.0018700428550877776,0.028742520638452,0.12968256104984857 -2029,95,0.06475476313605905,-0.0003664455372541187,-0.0004735478711074637,0.017435315280282703,0.01724947898992416,0.04482371872967137,0.018640976768809606,0.0019280005227613048,-0.0014573034527643317,0.03144005389094196,0.13758345285169668 -2030,5,0.032800791028887034,-0.0028736845569786802,-0.006099013614038588,0.009758635731621206,0.003933443580828772,0.01459654720875386,0.00594807664235425,-0.00648080308218538,-0.007479749394307837,0.01580532220407323,0.07433040619517128 -2030,10,0.03541688759028912,-0.0023515150704188567,-0.005181477683211318,0.010194663667856131,0.004637652360980214,0.01799596268686351,0.0065706883077332676,-0.00648080308218538,-0.00660290813216433,0.017047487328331463,0.08122494541251012 -2030,30,0.0417652847237885,-0.0015427710455800606,-0.0035688612988847685,0.011994563789130186,0.0065824084992037275,0.02503272588213407,0.009683745420148373,-0.00648080308218538,-0.004972895908630341,0.020157784489526768,0.09632549252101136 -2030,33,0.042454830870404844,-0.0014681151854964544,-0.003407245905720878,0.012287595826662678,0.0068480822560085435,0.025812967695666628,0.01015070386556264,-0.00648080308218538,-0.004803781690505876,0.020530053203647244,0.09806667363731714 -2030,50,0.04662209256738425,-0.0011194523537810845,-0.0026148741285369334,0.013804648678097138,0.00840431122768408,0.029898469405990384,0.012796801925323486,0.001986424781026799,-0.003982359202674391,0.022582611862109574,0.10695569293175886 -2030,67,0.051159908758476376,-0.0008497346389901727,-0.001901015101609284,0.015303384341921977,0.010304098928370488,0.03411835737731952,0.015442901199564315,0.001986424781026799,-0.0032063249072491412,0.024815153194107265,0.115957709635803 -2030,70,0.052021867074072366,-0.0008075556877191123,-0.0017710176449320084,0.015601408142048117,0.010721930062098019,0.034937430784331175,0.015909860252218574,0.001986424781026799,-0.003071574497975669,0.025273650868683092,0.11770091008649004 -2030,90,0.06203817700818181,-0.0004608536137565334,-0.000844952139341121,0.017520087565290405,0.015302443003354633,0.04258318335897236,0.018867264751908922,0.001986424781026799,-0.0019785951789315207,0.03003467391618025,0.13435296994642373 -2030,95,0.06697284923233092,-0.00037722564356515063,-0.0005178644088742916,0.01818696005532157,0.018119136581957573,0.04623290561599033,0.01964553024449268,0.001986424781026799,-0.001546478924011043,0.03288898425429903,0.14254855948489 -2031,5,0.03396784651055932,-0.003029104177486203,-0.006446897341635901,0.01006316767395545,0.004062663015868934,0.015003808500022673,0.00606920341084158,-0.006671414937543774,-0.007892978957482663,0.01635156232753951,0.07695776696535639 -2031,10,0.03663399271667004,-0.0024667795471508425,-0.00547878583721993,0.010517620095020436,0.004808542162874663,0.018529760553385,0.006732705402816443,-0.006671414937543774,-0.006965283625282698,0.017662619323128924,0.08405700549495466 -2031,30,0.04310969284772873,-0.001605063787141838,-0.0037793491630672468,0.012402815275203687,0.0068660585028141406,0.02579790264892081,0.010050216577170742,-0.006671414937543774,-0.005245134203760407,0.02095215730643385,0.09963019891614365 -2031,33,0.04381039258092642,-0.0015260439767743564,-0.0036092930855966742,0.012732697198160075,0.007145791958395052,0.02660995426329761,0.010547843678391882,-0.006671414937543774,-0.005065857690371819,0.021346616009118694,0.10142422132564216 -2031,50,0.04805017964318395,-0.0011600230289482618,-0.002772955529184871,0.01431545560283133,0.008794628787059857,0.03083953284606797,0.013367727751525041,0.002044849039292293,-0.004197498563125348,0.02351414418111479,0.11061011770575918 -2031,67,0.05270712780952454,-0.0008779812133118441,-0.0020207664641683915,0.015910846905901464,0.010803921189935225,0.03520682042648835,0.0161876118246582,0.002044849039292293,-0.00338055349648261,0.02587737416819047,0.11990838218103445 -2031,70,0.05361213847249747,-0.0008339434239185984,-0.0018831347535251581,0.016228093111762876,0.011249393858980319,0.036059080656041145,0.01668523892587934,0.002044849039292293,-0.0032390590606496085,0.026361743150205827,0.12170678139017445 -2031,90,0.06385862362086774,-0.0004759893956940919,-0.0009065316594104581,0.018264188956469495,0.01610131866866051,0.04396220586864151,0.019836875209479916,0.002044849039292293,-0.00208425945140047,0.03140105230030073,0.13890131596185454 -2031,95,0.06896065880283714,-0.00038796806015342633,-0.000560747105835144,0.018946054644135176,0.01908002081082481,0.04773357665829248,0.020666252092208504,0.002044849039292293,-0.0016296888443064336,0.034427202344959204,0.1474017172039643 -2032,5,0.03520511345230043,-0.003188584468425532,-0.006789475933078272,0.01036625085562756,0.004187151481862036,0.015396138939506449,0.0061801935221388465,-0.006862026792902168,-0.00830153098432419,0.016891983120103444,0.0796486006287015 -2032,10,0.03792906325981021,-0.002584506809582031,-0.0057709904555432665,0.010834390506216847,0.004971891004172091,0.01903150516804089,0.006885782710734213,-0.006862026792902168,-0.007323940519191281,0.018273872715938274,0.08695255333541814 -2032,30,0.044535740196704865,-0.0016686683112044384,-0.003986595761581811,0.012811083673453749,0.007141862313752999,0.02653504551546169,0.010413727439231057,-0.006862026792902168,-0.0055137408220153426,0.021740329841892482,0.10301043581015229 -2032,33,0.045263487637043,-0.001584576831868821,-0.0038070791702768613,0.013170748837157121,0.007435739036577406,0.027373730595715354,0.010942918875247587,-0.006862026792902168,-0.005327262352567799,0.022156410825029258,0.10485235947099418 -2032,50,0.04961660524606705,-0.001201027832572791,-0.0029265265599778866,0.014837068850384725,0.00917326696264643,0.0317507682318705,0.01394167156048791,0.002103273297557787,-0.004412510553275063,0.024440822131944297,0.1143537788317057 -2032,67,0.054388665279746055,-0.000906603296539712,-0.0021363735376332786,0.01652291809855872,0.011293206977879802,0.03625833784397108,0.016940424245728232,0.002103273297557787,-0.003552558528270484,0.026932424308054523,0.12395923965156613 -2032,70,0.05531042939051986,-0.0008607601421118544,-0.001991806018391608,0.016845810360621993,0.011763757268624794,0.037138689941873325,0.017469615681744762,0.002103273297557787,-0.0034025184907001864,0.027442894831864025,0.12582962002698203 -2032,90,0.06585412772744895,-0.0004911601292121552,-0.0009652374701064815,0.019016311183600008,0.016880419735840802,0.04529337833854345,0.020821163872142757,0.002103273297557787,-0.002191722377899229,0.032758008694844645,0.14359381469041443 -2032,95,0.07115700020194053,-0.000398672746752148,-0.0006011590281229559,0.01971258777193915,0.02002286631042896,0.04918201565599065,0.02170314838435699,0.002103273297557787,-0.0017118583698741052,0.03594692457644335,0.15240996400834295 -2033,5,0.03630060379318893,-0.003350823188442484,-0.007140456900035271,0.010647900020197982,0.004301116588854098,0.015733017458853714,0.006281047583486044,-0.007052638648260561,-0.008720324651287763,0.01742475207563578,0.08211837493488816 -2033,10,0.03915132250227034,-0.002704969127314063,-0.006070697134614713,0.011149647404923265,0.005127039238434721,0.01948479412008513,0.007029919017006594,-0.007052638648260561,-0.007692718503305523,0.01887645254940969,0.08970372261631464 -2033,30,0.046067473295331,-0.001732223710732963,-0.004195147989936312,0.01322642627782543,0.007412908650390424,0.02725077338612418,0.010774276184609344,-0.007052638648260561,-0.005785728927016464,0.02252739372307065,0.10643673741040266 -2033,33,0.046815806776285177,-0.0016440138833965774,-0.004006533263243386,0.013609803641670921,0.007722987372752198,0.028119019219272904,0.01133592945612976,-0.007052638648260561,-0.0055882425858267415,0.022964979569981524,0.10835121844592477 -2033,50,0.051347068585082895,-0.001243245594219264,-0.003080767571250388,0.01537560015118774,0.00955404495619325,0.032646662652412825,0.014518633352212094,0.002161697555823281,-0.004627055781543649,0.02537084190698491,0.11823109863847207 -2033,67,0.05632805920094252,-0.0009359312241875883,-0.0022503939339206347,0.01713247457201246,0.011786536855557871,0.03730328833856402,0.017701336033814442,0.002161697555823281,-0.0037232851094837825,0.027995286095463374,0.12823762841126254 -2033,70,0.05728951640874148,-0.0008873599679918968,-0.002098722800477047,0.017467882494945346,0.012284614252093302,0.038218758065677004,0.018262990519814844,0.002161697555823281,-0.003565929950679742,0.02853412125392687,0.13020616163801937 -2033,90,0.0682348836451769,-0.0005063658586042009,-0.00101945795892795,0.019776287422227475,0.017678483514441786,0.04663412714654201,0.02182012952541746,0.002161697555823281,-0.0022952010731979284,0.03413498920003471,0.14873107221204224 -2033,95,0.07368842937871814,-0.00040933966309451776,-0.0006372797962218764,0.02048656507612568,0.020993267728841324,0.05064494822750353,0.022756219120938146,0.002161697555823281,-0.0017900545277667085,0.03749557607882252,0.15792482694989932 -2034,5,0.03737873237393797,-0.00351831827183499,-0.0074930076954685286,0.01092417733648443,0.004403667343854189,0.016003763165342123,0.006371764380403185,-0.007243250503618954,-0.009143131774752924,0.01794379028262123,0.0844755597760214 -2034,10,0.040333201360702516,-0.002830173953511618,-0.006370791610241116,0.01146339079113969,0.005271567485885967,0.019893918609050647,0.007165114321633585,-0.007243250503618954,-0.008062137710671545,0.019468307333337164,0.09235596280638654 -2034,30,0.04752765792757273,-0.0017970348852800824,-0.0044022746990238755,0.013657976343839277,0.007675273463457285,0.027932327068016006,0.011131864027785585,-0.007243250503618954,-0.006056501705089666,0.02330886647134784,0.10978927042891046 -2034,33,0.048313965246453885,-0.0017038443715241514,-0.0042043213273230415,0.014049858915019978,0.008002034944813366,0.028832974562071685,0.011726876635518382,-0.007243250503618954,-0.005849621190184098,0.0237697309350108,0.11175833384711097 -2034,50,0.05303691370859742,-0.001284753987941438,-0.0032324663725336236,0.01591749340237858,0.00992758107430333,0.03352056610150328,0.015098611912217607,0.002220121814088775,-0.004840877486909023,0.026298286424741312,0.12204082373647968 -2034,67,0.05818103760480881,-0.0009648159933099314,-0.0023610812393157913,0.017746626627885842,0.012278808926667863,0.03833156326988344,0.018470350832356784,0.002220121814088775,-0.003892929927151012,0.029058958099115285,0.1324513698522618 -2034,70,0.059173681393265724,-0.0009147386393762294,-0.0022016454378714057,0.018098243921818753,0.01279867105941096,0.039275078004018464,0.01906536344008958,0.002220121814088775,-0.003724577211654421,0.029624990888982232,0.13449981351979856 -2034,90,0.07052134999483824,-0.0005216066120569872,-0.0010689057781578515,0.020544125412836293,0.018477633763738923,0.04794996410720532,0.02283377581274398,0.002220121814088775,-0.0023903753841849717,0.0355217550394222,0.153768200873407 -2034,95,0.07615291238129138,-0.00041996888971413136,-0.0006676097137447191,0.021267983737998673,0.021978584473768166,0.05208568186697313,0.023825461872991997,0.002220121814088775,-0.0018624293142846676,0.039057157959367886,0.16333094114073984 -2035,5,0.038568206041678786,-0.0036902708188536696,-0.007851960688698032,0.01119784454018843,0.004521904411801194,0.0163521967577162,0.006452345127370257,-0.007433862358977348,-0.009575579825060632,0.018480710226142935,0.08704887271331214 -2035,10,0.04160012071877718,-0.002954999948401501,-0.006677439114532724,0.011775623361547617,0.005433715300185294,0.020360592536309105,0.007291369839095172,-0.007433862358977348,-0.008442036641375363,0.02007968571325012,0.0951681911658092 -2035,30,0.04897843779027462,-0.0018623172263403907,-0.004615942860265785,0.014090692642834931,0.007955865449132333,0.02865337697784054,0.01148649096875978,-0.007433862358977348,-0.006337062919661356,0.02411133585855524,0.1131545624105817 -2035,33,0.04979093133844435,-0.0017641399528907631,-0.004408706593597462,0.014490914657204292,0.00829865214898956,0.02958323103730193,0.012115759198933469,-0.007433862358977348,-0.006119668580230863,0.024595950131649266,0.11520539471796304 -2035,50,0.05462812190130353,-0.0013260345896571083,-0.003392017874441924,0.016462751184118704,0.010320469033742782,0.03441785169719464,0.015681612098424388,0.002278546072354269,-0.005062221169242083,0.02724669117520358,0.12581870051930444 -2035,67,0.059941128189861775,-0.0009935122577424478,-0.002478599704004017,0.01838298991092606,0.012787927992503122,0.03937883839533281,0.019247464997915305,0.002278546072354269,-0.004070303579092055,0.030145251336649324,0.1365813005424967 -2035,70,0.06095260647758841,-0.0009421295386307545,-0.002313179075913662,0.01874093862955195,0.013332751171542999,0.04034899571678996,0.019876734442568978,0.002278546072354269,-0.0038936441834592447,0.030739071975799354,0.13869626893161058 -2035,90,0.07261242083236576,-0.000536882321116958,-0.0011266761520852665,0.02131646531080441,0.019296648973851905,0.04927826791216127,0.023862097876202377,0.002278546072354269,-0.002497992627892313,0.036928153762090465,0.15860727636317412 -2035,95,0.07843042036890983,-0.00043056042661098875,-0.0007053636033589541,0.022056852213646408,0.022976462830328524,0.05353901559216977,0.024910879069478517,0.002278546072354269,-0.0019444574882605213,0.04064443312069742,0.16852921474769386 -2036,5,0.0397356789201498,-0.003866358317300992,-0.008219862786810988,0.011468902335984006,0.004682839828909644,0.01684609681193504,0.00652278800266728,-0.007624474214335742,-0.010014930714562097,0.019056830310052394,0.08982273747660832 -2036,10,0.04284603207036853,-0.003082273213084862,-0.006992068935106569,0.012086340396954429,0.00563539713602911,0.020948895144680686,0.007408682533191393,-0.007624474214335742,-0.008826605932349253,0.020729099102720427,0.09815554046758518 -2036,30,0.05039108087718487,-0.0019282895745508003,-0.004843029714477127,0.014524575174812395,0.008275729715417183,0.029449203317820992,0.01183815457857196,-0.007624474214335742,-0.006630544791791035,0.0249525500290296,0.11660730327258745 -2036,33,0.05120287229493261,-0.0018256154493251032,-0.004625796722893162,0.014932970868223861,0.0086321249361243,0.03040232374215617,0.012502575931895037,-0.007624474214335742,-0.006404067577428294,0.025459746054273726,0.11871139627834433 -2036,50,0.05616022838652134,-0.0013680474118293617,-0.0035651847219025515,0.017011370916246653,0.010751669419362163,0.035375189601866766,0.016267626623952525,0.002336970330619763,-0.005298485794045243,0.02823662435131553,0.12962234871091433 -2036,67,0.061587827614694834,-0.0010221293922193057,-0.0026120505899530962,0.019017267582513504,0.013333943683371605,0.04046811406214581,0.020032677316010016,0.002336970330619763,-0.004263344069412067,0.031272120826271524,0.1406924837124955 -2036,70,0.06263661128431558,-0.0009692542060333386,-0.0024393704840561074,0.019388568264424016,0.013910938054815759,0.0414698206318491,0.02069709745485311,0.002336970330619763,-0.00407920708447705,0.03189470421646844,0.14289038625931122 -2036,90,0.0745949870981276,-0.0005521930179975516,-0.0012034285114083043,0.022076960791576415,0.020150779175953655,0.05064092711539717,0.02490509814475262,0.002336970330619763,-0.002621266088343692,0.03837167191958984,0.16336706074872961 -2036,95,0.08057836121022702,-0.0004411141932514943,-0.0007585974452387862,0.0228540332055443,0.023995248899433528,0.05500997928036818,0.026012465852477764,0.002336970330619763,-0.0020470314942910477,0.04226758755436285,0.17359630376710686 -2037,5,0.0412854413241148,-0.004043830227015493,-0.008584520660554158,0.011737349314523108,0.0048374851286631625,0.017324809997976236,0.006583094828014234,-0.007815086069694135,-0.01045016591074835,0.01962964817953926,0.09287574907209643 -2037,10,0.04439106994867325,-0.003212477201047482,-0.00730546920313212,0.01239554459404162,0.005830670138149859,0.021515426764368947,0.0075170554401222086,-0.007815086069694135,-0.009215784038574731,0.021376096701970312,0.10138535689893775 -2037,30,0.05193816404938698,-0.0019950762701187205,-0.005068460586587127,0.014959623939771665,0.008588222603148905,0.030218357364025887,0.01218685850066208,-0.007815086069694135,-0.006921882177039373,0.02579060749480504,0.12021484939372287 -2037,33,0.05276659874804318,-0.0018879342795180734,-0.004839833124062409,0.015376027548078687,0.008960531598405685,0.03120216754576228,0.012887329263363057,-0.007815086069694135,-0.006687190558064333,0.026321918817447203,0.12234167836283173 -2037,50,0.05779667735099792,-0.0014113884723555166,-0.003734361607171468,0.017561680244843975,0.01117696037454776,0.03630733091917844,0.01685666156120195,0.0023953945888852573,-0.005534311190399761,0.029225198216214155,0.13351021071351343 -2037,67,0.06327363087236881,-0.0010512401968560835,-0.0027425502075077504,0.019652373828515132,0.013873944060887924,0.04153078684673788,0.02082599264456086,0.0023953945888852573,-0.00445568173286268,0.03239722382646358,0.14485131899335058 -2037,70,0.06436835405007005,-0.0009962558930260755,-0.0025635866533470116,0.02004309159859216,0.014480890609992393,0.042558935168569616,0.021526465836221805,0.0023953945888852573,-0.004262598190930219,0.033048380698618894,0.147095911962031 -2037,90,0.07652018684893847,-0.0005675387067254477,-0.0012743953365292133,0.022844212686884195,0.021002453039304054,0.051972944767223014,0.025962779047354678,0.0023953945888852573,-0.002742378710101836,0.039822263847110025,0.16804653368227515 -2037,95,0.0826963536143303,-0.0004516302299024458,-0.0008099663076956884,0.023669550140353195,0.02500624700792671,0.056450678986395594,0.02713022950886965,0.0023953945888852573,-0.0021430778547117313,0.04389007294831796,0.17851443888192528 -2038,5,0.042827444314956664,-0.004225244565149596,-0.008959857434060697,0.012024685113947439,0.005005665495402823,0.01783712610064064,0.00663326621065111,-0.008005697925052528,-0.01090333600287885,0.020213862043415468,0.09603767293655595 -2038,10,0.04595410035699606,-0.0033446082100515783,-0.00763026492533215,0.012703233256127695,0.006040678887560598,0.022111660252178412,0.007616488559887619,-0.008005697925052528,-0.009613125248718993,0.02203712248225857,0.10470460912519583 -2038,30,0.053555639675259586,-0.0020629734360904078,-0.005300761139796489,0.015395838937712744,0.0089192774427695,0.03101384801194473,0.012532601520550152,-0.008005697925052528,-0.007224275028245508,0.02664752168808742,0.12394495139362315 -2038,33,0.05444090853449701,-0.0019502915666258641,-0.005065594913783714,0.01582008469676877,0.009307383157870611,0.0320363040850669,0.013270017978857539,-0.008005697925052528,-0.006979907985871632,0.027206626735661505,0.12609510312979483 -2038,50,0.05952394837290049,-0.001454091220206605,-0.003913260084158737,0.018093999458162664,0.011619452722542728,0.037268563978312484,0.017448713266732703,0.0024538188471507514,-0.005777474680709839,0.03023734205784298,0.13753477570974154 -2038,67,0.06505339207723737,-0.001079535525072469,-0.0028800017205794976,0.020292088703194534,0.014432795281598056,0.04262345684051344,0.021627408554607864,0.0024538188471507514,-0.004654825929128216,0.03354885389255129,0.14914123021131812 -2038,70,0.06624981312677264,-0.0010234588468032752,-0.0026942134870008754,0.020711892671560008,0.015069874411434807,0.04367568672574291,0.022364826227395235,0.0024538188471507514,-0.004454458739649904,0.034230477012594705,0.15143619789558418 -2038,90,0.07861009065359831,-0.000582919391327326,-0.0013522034967230674,0.023618223815423847,0.021875520064267497,0.05332671171017293,0.027035133297128647,0.0024538188471507514,-0.0028728247262073507,0.04130186164103039,0.17290515480782345 -2038,95,0.08491024703979493,-0.00046210857683064106,-0.0008658200558722138,0.02449306003911816,0.026056936373932995,0.05790504809946517,0.028264162751774263,0.0024538188471507514,-0.0022469122904501104,0.045552276984614365,0.18361785911925282 -2039,5,0.04404584276676178,-0.004412478548601662,-0.009342382395066531,0.012301643447646829,0.005167845228488159,0.01831912564193251,0.006673299114377945,-0.008196309780410922,-0.011363875055507375,0.020794382402487852,0.09880964964980708 -2039,10,0.04723457540944219,-0.0034796961105200363,-0.00796091176856729,0.013009411776575646,0.00624859253984515,0.022690512809740142,0.0077069794635276564,-0.008196309780410922,-0.010017422982476614,0.0226988104916424,0.1076869708703133 -2039,30,0.054965301230549816,-0.0021321264984137645,-0.0055371542765572995,0.015817411909656902,0.009249280327830626,0.03180852451738807,0.012875382423756196,-0.008196309780410922,-0.00752806438532609,0.027510877343332667,0.12740500038831337 -2039,33,0.055856060866266495,-0.0020141293813930286,-0.005292266010074979,0.016261286076958245,0.00966053248624824,0.03285857056904961,0.013650643292858472,-0.008196309780410922,-0.007274794369051301,0.028095385030831914,0.1295943831915789 -2039,50,0.06102636679746211,-0.0014971720752532407,-0.00409313477726243,0.018628618727493534,0.012070857715030924,0.03821597516702253,0.018043784169504754,0.0025122431054162456,-0.006023048106346696,0.03125547954762371,0.1413403073617836 -2039,67,0.06668000970557332,-0.0011088151850969623,-0.003019316383693911,0.020936409509870208,0.015004831935301749,0.04371166038704596,0.022436925046151034,0.0025122431054162456,-0.004854863279090117,0.03471169938000753,0.1532541656205829 -2039,70,0.06787666626647115,-0.0010505931352093232,-0.0028249452160481565,0.02138614562570166,0.01567036771451316,0.04479285113203334,0.023212188344213278,0.0025122431054162456,-0.004644661180493775,0.03542463040187333,0.15563901856226195 -2039,90,0.08051626832485198,-0.0005983350556964676,-0.001429549610900455,0.024398991358499274,0.02276919560472066,0.05468768978728209,0.0281221706099144,0.0025122431054162456,-0.0030002357933912507,0.042800877303258274,0.177684499496546 -2039,95,0.08697645855545996,-0.0004725491535024845,-0.0009214167047234506,0.02532456829520218,0.027133150261526417,0.05936986917391219,0.029414270439111545,0.0025122431054162456,-0.002347968009260038,0.0472399833564392,0.18868124439845135 -2040,5,0.0451977299451828,-0.004602532052094741,-0.009715602457300892,0.012575569657394868,0.005321022903830183,0.018741707299537086,0.006703194753674727,-0.008386921635769314,-0.011816416498594317,0.021359180350279686,0.10144618139060073 -2040,10,0.0484702872466296,-0.0036169025864333714,-0.008279577268763124,0.01331407611036323,0.006443894462362419,0.023223583472559414,0.007788528758282312,-0.008386921635769314,-0.010413391584604042,0.023343944797853698,0.11058084793372323 -2040,30,0.05638985348492861,-0.002201606078956967,-0.005764907658124654,0.016232247869804484,0.009564877881530463,0.03255370389889368,0.013215201210280211,-0.008386921635769314,-0.007827274100097582,0.028359004016083367,0.1308107522380258 -2040,33,0.05730307987332344,-0.002078310002487085,-0.005511033918333418,0.01669572944368803,0.009991761403407193,0.03363557494546675,0.014029201561925903,-0.008386921635769314,-0.00756323105943746,0.028964571686531545,0.13308168938679807 -2040,50,0.0625990029387176,-0.001540121253661044,-0.004265437477545518,0.019165543690228767,0.012501045062879964,0.03912276812619169,0.018641871840558134,0.0025706673636817392,-0.00626246999220644,0.03226112401104146,0.14515537919462013 -2040,67,0.06840357618257403,-0.001138694950353289,-0.0031510487660694076,0.021585338945223655,0.015552713341211312,0.04474899399350586,0.023254542119190362,0.0025706673636817392,-0.005048529945202681,0.03585448079907622,0.15740102413477933 -2040,70,0.06963373962789775,-0.0010777387369237273,-0.002950527413876329,0.02206585820150151,0.016246469765037422,0.04586792577256878,0.024068544899796023,0.0025706673636817392,-0.0048307363015255645,0.036600098428608535,0.15986179616213775 -2040,90,0.08258164422512054,-0.0006137856877528329,-0.0015009121566332082,0.025186523772198755,0.023630427146303822,0.05598556842976302,0.029223883698832026,0.0025706673636817392,-0.003121739266910798,0.044276308574649356,0.18256148677329537 -2040,95,0.08920865786522626,-0.0004829520404515717,-0.0009730746346289491,0.026164072211923763,0.02817179156464368,0.06078049980560073,0.030580552570881492,0.0025706673636817392,-0.0024457640831136284,0.04889702212662238,0.19384758520251902 -2041,5,0.04651002514883876,-0.004797656886158465,-0.010086498774203971,0.012847435602479466,0.005483754627294759,0.019223579170917698,0.006722954950261429,-0.008577533491127708,-0.012268488776653484,0.021936957204053514,0.10432220149359124 -2041,10,0.04989961831457913,-0.0037563420091193244,-0.008598472910028621,0.013618066406311387,0.006653490630637947,0.023793540027840104,0.007861138873111555,-0.008577533491127708,-0.010813884247186505,0.0240043028906043,0.11367168785298519 -2041,30,0.05799335081130266,-0.002271686856332994,-0.005997023236401016,0.016647213489972362,0.009890837296368681,0.03332264833488045,0.01355205909460218,-0.008577533491127708,-0.008129033130845151,0.029219284993566304,0.13442484125605225 -2041,33,0.05891693795248867,-0.0021429134813016814,-0.0057332819293467365,0.017153401064365203,0.010334894945245176,0.03441809577782724,0.014405697643979767,-0.008577533491127708,-0.007853657123570232,0.029851257906576917,0.13676321512158826 -2041,50,0.06436548990756273,-0.0015837998983434045,-0.004441650913975144,0.01970476870897618,0.012942391433705978,0.040041322066465754,0.01924297870885281,0.0026290916219472334,-0.006505733893709843,0.03327791736077128,0.14917154837922236 -2041,67,0.07029939996963003,-0.0011677188555514223,-0.003287899804682206,0.022238871615891883,0.016108797514237026,0.04578769748262456,0.024080259773725857,0.0026290916219472334,-0.005246609327576555,0.037011438556943436,0.16175766720047288 -2041,70,0.07157720501422882,-0.0011048313509841947,-0.0030793500236201625,0.02275101749815224,0.016826976030621128,0.04693672502513458,0.024933898323103443,0.0026290916219472334,-0.005020892874942137,0.03778604758077638,0.16427717158763946 -2041,90,0.0848711408033967,-0.0006292712673630231,-0.0015776196855182998,0.025991741579741937,0.024495736406542526,0.0572638460215613,0.030340274992841504,0.0026290916219472334,-0.003248529947787268,0.04575964523402216,0.18761690918029944 -2041,95,0.09162176894173027,-0.0004933171974111049,-0.0010273014158858973,0.027011569092601412,0.029205639692607345,0.062167259510934735,0.0317630018602042,0.0026290916219472334,-0.00255195023536571,0.05054913390286385,0.19921810974305487 -2042,5,0.047695679315924645,-0.0050001353281788515,-0.010484228042836686,0.013117243979582123,0.005643427398671064,0.01968730034709209,0.0067325790968980614,-0.008768145346486102,-0.012749711754566292,0.022518809845488954,0.10696338432576626 -2042,10,0.05109219493791461,-0.003897992140785949,-0.008940853045692556,0.013931034831593126,0.0068637898239081434,0.02435492609534081,0.007924808593535402,-0.008768145346486102,-0.011242173908607267,0.024672997899008915,0.11657526482188361 -2042,30,0.0593431088887155,-0.0023431170654459035,-0.006242500938005277,0.01706231440755272,0.010233096410158469,0.03410645625547494,0.013885957291202088,-0.008768145346486102,-0.008446733957001358,0.030100914121622167,0.13784365568048695 -2042,33,0.06030531494915486,-0.0022083577059129663,-0.005970706968212838,0.017606320676563165,0.010693488249003149,0.035231176126811495,0.014780129110060096,-0.008768145346486102,-0.00815969432800867,0.03076022194301336,0.14025370862546674 -2042,50,0.06584638794735073,-0.0016277488745037433,-0.004628281364159116,0.020246299421127958,0.013412474457131885,0.04099586168346426,0.019847104774388787,0.0026875158802127275,-0.0067589056729189636,0.03432750837420868,0.15299515150304144 -2042,67,0.07191470820829272,-0.0011972365902604722,-0.0034296483086689563,0.022897018308600876,0.01670896762488783,0.04688342737897698,0.02491408043871748,0.0026875158802127275,-0.005451782520574039,0.03821324251699839,0.1659270865279325 -2042,70,0.07320688189566135,-0.0011311984886571563,-0.0032137426008698317,0.02343028725339929,0.017457422645505368,0.048057530014894614,0.025808253472055474,0.0026875158802127275,-0.005217418792095495,0.03902070601875658,0.16849407505047795 -2042,90,0.08681735330820084,-0.0006447919475408701,-0.0016543577535053273,0.02681636376385436,0.025446711523014743,0.05863668775038805,0.031471346920902796,0.0026875158802127275,-0.0033782769694267294,0.04732679165913184,0.19245736830128887 -2042,95,0.09368592171818017,-0.0005036446646478819,-0.001082012940207127,0.02786706702727962,0.03035281861329519,0.06365268758175563,0.03296163288083948,0.0026875158802127275,-0.0026546857326267253,0.05231678989208363,0.20439225939414277 -2043,5,0.048750811349600555,-0.0052044169841472115,-0.010875091875690067,0.013384989395339842,0.005804210513727159,0.02013353222002206,0.006732064764624655,-0.008958757201844495,-0.013220474859094715,0.023091141050196294,0.10949252090444493 -2043,10,0.05217468610145152,-0.004040480930138585,-0.009274949177509524,0.014242973772450656,0.00707017685261799,0.02489915937011472,0.007979535490593883,-0.008958757201844495,-0.011656400525291223,0.025331434685584873,0.11930040131987894 -2043,30,0.06053105229511857,-0.0024149021441986227,-0.006481869241306415,0.01747754216645728,0.010564263408557638,0.03486633369306575,0.014216893371119964,-0.008958757201844495,-0.00875652465990114,0.03097414740380987,0.14106889302694736 -2043,33,0.06154097975492477,-0.002274748488457015,-0.006200356937323062,0.01805538016942953,0.011042063198730648,0.03601405824269306,0.01515249596016689,-0.008958757201844495,-0.008460967619121693,0.031656774963995014,0.1435366246763275 -2043,50,0.06714454691559076,-0.0016727328106663887,-0.004809251879386786,0.020790130189291916,0.013866821119640703,0.041911139891681895,0.020454247608206095,0.0027459401384782216,-0.007009722937701825,0.03536786819577755,0.15657105407784977 -2043,67,0.07329779320210218,-0.0012267334413079596,-0.0035683343384345467,0.023559768236624645,0.01729107990623349,0.04793409256060016,0.025756001685205265,0.0027459401384782216,-0.005654456409359997,0.039400990534233085,0.1698021439197529 -2043,70,0.07461164668202401,-0.0011587960676679033,-0.0033459084210175493,0.024102718212126555,0.01806383967918527,0.04914305994971376,0.026691605488732176,0.0027459401384782216,-0.005412161179264973,0.04024003610368765,0.17245226075720363 -2043,90,0.08842979418039322,-0.0006603475470857834,-0.0017293071395024328,0.027648741913328098,0.026365199218594506,0.059945906278250714,0.03261709462509597,0.0027459401384782216,-0.0035053159517092094,0.04886831063495728,0.19698856959811145 -2043,95,0.0953832923144102,-0.0005139343213615092,-0.0011347385086397657,0.028730560622595384,0.03145850096925852,0.0650725842078961,0.0341764334879875,0.0027459401384782216,-0.0027559606647561525,0.054044666891073144,0.20922275151852157 -2044,5,0.04973781990557909,-0.005411256331029227,-0.01127583639039569,0.01365067724311562,0.005943067713598347,0.02049144230223602,0.006721414382401178,-0.00914936905720289,-0.01370754765995849,0.023650024196693504,0.11186735507795396 -2044,10,0.05327156317234039,-0.004185975015452764,-0.009618234354527782,0.014553883228883981,0.007257985369097675,0.02537970115466477,0.008025322600486958,-0.00914936905720289,-0.012085795784206344,0.02597768008178021,0.12195822369550229 -2044,30,0.061844311207532886,-0.002487352100231166,-0.006721865772193649,0.01789290522277432,0.010888710199346906,0.03560013911401195,0.014544864905395843,-0.00914936905720289,-0.009071712167391008,0.03183931645460376,0.14435381881644685 -2044,33,0.06285899850726127,-0.0023409874080732983,-0.006431378771851306,0.018505440131131153,0.011384529160361957,0.03677357819369985,0.015522795765340183,-0.00914936905720289,-0.008765393262504619,0.032553038777655086,0.1468872386782962 -2044,50,0.06861861848831177,-0.0017173449416950897,-0.004989928751029416,0.021355485567022846,0.014319302641618315,0.04281852343943275,0.02106440721030473,0.0028043643967437157,-0.007259127977722642,0.036405677980337524,0.1603336350908236 -2044,67,0.0749248402118683,-0.0012562880145858355,-0.0037024222560854618,0.024227126793326188,0.017874988036130846,0.048982196277982414,0.026606018655269275,0.0028043643967437157,-0.005854760683576925,0.04059577072537658,0.17394321397265003 -2044,70,0.07627772136032582,-0.001185714345203109,-0.0034726889849332845,0.024779625260250068,0.018681566309579737,0.05022198484796651,0.027583949515213615,0.0028043643967437157,-0.005602347314589469,0.04146870494025284,0.17667870289128448 -2044,90,0.09044050610512494,-0.0006759380941845217,-0.0017974500866852056,0.02848887344800169,0.02730679702796753,0.06126326604512675,0.03377751567646104,0.0028043643967437157,-0.0036267909733453773,0.05043286623863779,0.20192947787198545 -2044,95,0.09757561756595969,-0.0005241862883523802,-0.0011797817803997728,0.029602047181867215,0.032604737073171096,0.06652703130360574,0.035407401252688264,0.0028043643967437157,-0.0028468335453897303,0.05582345019065108,0.21453504599795975 -2045,5,0.05087452396005392,-0.005621775847555237,-0.011663592807761814,0.013914302129546462,0.006118289986699262,0.02097653112014226,0.0067006267357476446,-0.009339980912561283,-0.014183768146363102,0.024237272208553876,0.11454052702460064 -2045,10,0.05445812825113535,-0.004336207362734768,-0.009955110476402877,0.014863760620731635,0.007476434981259434,0.025959657788123636,0.008062168708734644,-0.009339980912561283,-0.012505143835346752,0.02665089144938422,0.12486061674091942 -2045,30,0.06320326848551631,-0.0025605487610942464,-0.006965837076113937,0.018308397939111654,0.01123348612019267,0.03636529074810626,0.014869877966429645,-0.009339980912561283,-0.009391867684744698,0.03273016234452208,0.14777376347191742 -2045,33,0.06426344545185567,-0.002409017421399203,-0.006665812276348171,0.01895650056166803,0.011749328377641663,0.03757031080054559,0.015891034597979893,-0.009339980912561283,-0.009074981020237299,0.03346943048144749,0.1503761476594451 -2045,50,0.07011222972497344,-0.00176200546880278,-0.005177137208709841,0.021927961472048573,0.014786295538508555,0.04373595352335004,0.021677586009644662,0.00286278865500921,-0.00751657970886784,0.037465434523490194,0.16414213355130167 -2045,67,0.0765520206861198,-0.0012858832966135278,-0.003847872003220786,0.024896322097211127,0.01847158914237464,0.05003296465751685,0.027464138635789417,0.00286278865500921,-0.006063486444115691,0.04180602651782525,0.1780866432971883 -2045,70,0.07791032054275275,-0.0012129606081847575,-0.0036093926880882295,0.025461002760377643,0.019302178972411706,0.05130383479673632,0.028485297696299632,0.00286278865500921,-0.00580254200944618,0.04270841242555186,0.18088979474044214 -2045,90,0.09236280244588853,-0.0006915636733973602,-0.0018773204464460332,0.029336755787713668,0.028233627170363793,0.06256164599946541,0.03495262221979788,0.00286278865500921,-0.003760259074021566,0.05199374204556686,0.20676754330235092 -2045,95,0.09961444533616304,-0.0005344005656204951,-0.0012359189779437758,0.030481526705095116,0.033720219901609526,0.06793054690895277,0.03665455074870161,0.00286278865500921,-0.0029549073269662675,0.05757361199979098,0.2196630148444478 -2046,5,0.051954643586277965,-0.00583946956829716,-0.012054584541577594,0.01417586944799536,0.006273028479794832,0.021390727506604996,0.006669703039144042,-0.009530592767919677,-0.014674439273561983,0.024808825435666756,0.11707323018459648 -2046,10,0.055657021284103395,-0.004488726044124141,-0.010292585848697834,0.015172611108316546,0.00767886827891665,0.026471162443598456,0.00809007381533694,-0.009530592767919677,-0.01292752148191948,0.027309551371373586,0.1276642209854524 -2046,30,0.06461460324525833,-0.002634270058768364,-0.0072073752766507225,0.01872402595286147,0.011565595720319493,0.03710196192123741,0.015191930125261401,-0.009530592767919677,-0.009706538360412081,0.03360844938267487,0.15117865483892762 -2046,33,0.06567153143882752,-0.0024769207435391075,-0.006896280227236232,0.019408561461040166,0.012098950435924127,0.03833017086581369,0.016257208814646068,-0.009530592767919677,-0.009381667438819068,0.03437870922538399,0.15385956939331957 -2046,50,0.07169149654358625,-0.001807303591904057,-0.0053590533840765535,0.022503696121003558,0.015242406814654944,0.04463492394301642,0.022293784006225895,0.002921212913274704,-0.007769820948504688,0.038516345052838116,0.1680145381121649 -2046,67,0.07829036181792616,-0.0013150512907908845,-0.003985311271209309,0.025560840976004338,0.01905589691673283,0.051059722740670985,0.02833036162676569,0.002921212913274704,-0.0062684395994861315,0.04301041516640721,0.1823408616999145 -2046,70,0.07970622740909457,-0.0012404606436357422,-0.0037406675488602325,0.026146850712509283,0.01991659349984605,0.052359271124241415,0.029395640316150357,0.002921212913274704,-0.005998197695989351,0.043943973621586446,0.18521206433348272 -2046,90,0.09451896345764398,-0.0007072242122440631,-0.0019513926740282782,0.030192396672948426,0.029160422730179474,0.06384920612415239,0.036142404539266586,0.002921212913274704,-0.003888524408975809,0.05355858770027673,0.21175766078282773 -2046,95,0.10197913476675748,-0.0005445770726322581,-0.0012856623246860473,0.03136900188896057,0.03484195027851716,0.0693229390340591,0.03791786740226771,0.002921212913274704,-0.0030555349517495936,0.05933339860529375,0.22508501308575765 -2047,5,0.052926816721260546,-0.006055925316905712,-0.012459473188949152,0.01443537650178082,0.006439456489173777,0.02182867411084087,0.006628642685350377,-0.00972120462327807,-0.01516852968936882,0.025389130809576787,0.11954016673859266 -2047,10,0.05677448202073574,-0.004643777776654518,-0.010635369436248399,0.015480429531315787,0.007892141465820077,0.02700531363553627,0.00810903852753384,-0.00972120462327807,-0.013361090601666757,0.02797943803621261,0.13043576297117965 -2047,30,0.06601451774686574,-0.0027103360794833247,-0.007454301539421548,0.019139780807935488,0.01191283963836985,0.037857620207222026,0.015511018952931143,-0.00972120462327807,-0.010027297444602495,0.03450135889253684,0.15458946187251352 -2047,33,0.06706912285089493,-0.002546119725710407,-0.0071311782166448776,0.019861622829247555,0.012465168435963294,0.03910772027731322,0.01662131598637874,-0.00972120462327807,-0.009693400746733279,0.035301823198290276,0.15733194551117533 -2047,50,0.07327355359867214,-0.0018521025357116066,-0.005546910933674451,0.023082689513887797,0.01571309480349655,0.04554575868061756,0.022912998771088457,0.002979637171540198,-0.008029876425675894,0.039586336408806,0.17188367812004676 -2047,67,0.0800393382512033,-0.0013439688040011936,-0.00412870489832091,0.026229489244574314,0.019661038107728797,0.0521095990451789,0.029204680341318186,0.002979637171540198,-0.006479504181535854,0.04423892908824125,0.18662742124146867 -2047,70,0.08148903684094548,-0.001267657476607832,-0.003876826701376489,0.02683822640599686,0.020552289498275884,0.0534256894831302,0.03031497980372575,0.002979637171540198,-0.006198941037391755,0.04520490132077823,0.1895624855338452 -2047,90,0.09661243707686662,-0.0007229197751515066,-0.0020280254503747775,0.031055790943383035,0.03011167895671759,0.0651484704451747,0.037346860205907204,0.002979637171540198,-0.004019736541216239,0.055152765312789016,0.21686027634050267 -2047,95,0.10433128035441042,-0.0005547158496544671,-0.0013400095664221632,0.032264475430145094,0.03598880080760425,0.07073092478753384,0.03919735607130652,0.002979637171540198,-0.003159739722223852,0.06112821833779637,0.230545069362234 -2048,5,0.05383106243610382,-0.0062773118902334155,-0.012879520555163346,0.01469282329090284,0.006604698303335167,0.02225078449326457,0.006577446281606641,-0.009911816478636464,-0.0156745544016203,0.025968699073885236,0.12185465356224387 -2048,10,0.057723626916110514,-0.004800761163224977,-0.01099250893590928,0.01577742306818045,0.00810664084556942,0.0275391103461901,0.008119062238085352,-0.009911816478636464,-0.013806267750798311,0.02865479814423099,0.13303325158363338 -2048,30,0.06718360093981028,-0.002785459659694512,-0.007708825363689742,0.019555670960421986,0.012266455038704528,0.03861985184071721,0.01582714687839884,-0.009911816478636464,-0.010358197692794734,0.03541015057047258,0.15782458562914078 -2048,33,0.06826990239322187,-0.0026166183419108692,-0.007376532085779346,0.0203156873629717,0.012837203877880126,0.039900923932065666,0.016983359756617862,-0.009911816478636464,-0.010012210936174498,0.03623741349641224,0.1606243667342229 -2048,50,0.07458748557046055,-0.0018980271596735557,-0.005740493445899721,0.023664941650701293,0.016199765092905525,0.04647614804183667,0.023535230304232345,0.0030380614298056922,-0.008296207253258912,0.04067443486506837,0.17555174281673416 -2048,67,0.08150418304949998,-0.0013734538730512111,-0.0042763529660001885,0.026902266902921062,0.02028752398282704,0.05317945691461375,0.030087102066326817,0.0030380614298056922,-0.006695054411805313,0.04549095042875173,0.19069774492801975 -2048,70,0.08296666586920619,-0.001295616755317559,-0.004016574244939007,0.027545080559898315,0.021210303075047048,0.054518484157057755,0.03124331615902582,0.0030380614298056922,-0.006404958649858043,0.04649121433952584,0.19369560455507157 -2048,90,0.09842205699160696,-0.0007386502896394549,-0.0021066221803898322,0.031926941179178964,0.031106229365865743,0.06648481253816504,0.038565996506599635,0.0030380614298056922,-0.004151455634708889,0.056791294561272916,0.22171566489874564 -2048,95,0.10631418729722499,-0.0005648168966871221,-0.0013944817072067902,0.03316794463196718,0.03719724349232692,0.07217735009244308,0.04049301675581802,0.0030380614298056922,-0.003267006643939571,0.06297872825436607,0.2357635101690191 -2049,5,0.05502398706078529,-0.006502934217145606,-0.013304628370221954,0.014948209815361421,0.006773665168829322,0.022680726221181648,0.006516110791712873,-0.010102428333994856,-0.01619271663353373,0.02656133782514093,0.12453994761275428 -2049,10,0.059033927395194766,-0.004961045672600766,-0.011360097514515213,0.016059272946643464,0.008324980878000654,0.028082295112421555,0.00812014433975148,-0.010102428333994856,-0.014262273691959064,0.02933587445599006,0.13596026665592192 -2049,30,0.0685992044210434,-0.002861861110794852,-0.007970775604927203,0.01997169359162487,0.012630951709428644,0.039392902081140414,0.016140315116144475,-0.010102428333994856,-0.01069753513581009,0.03633088994647897,0.16129859604822844 -2049,33,0.06969292476326228,-0.0026870530314233856,-0.00762680901911087,0.020770749668849606,0.013222513166248596,0.04070405165948566,0.017343340125363434,-0.010102428333994856,-0.01033920332233024,0.0371860132241605,0.16417142198636342 -2049,50,0.07613658437132835,-0.0019444738904643689,-0.005937688674891574,0.02425044995128258,0.01670258482682646,0.047419656579098766,0.024160483463577503,0.003096485688071186,-0.008569045274971654,0.04177997889032227,0.17944939815461725 -2049,67,0.0831534010052681,-0.0014038203998388346,-0.004427624688192653,0.027579176769740667,0.020933132437784066,0.05426193957185392,0.030977626801791575,0.003096485688071186,-0.006915141652606551,0.046767466676092884,0.19495439371816756 -2049,70,0.08466485224664211,-0.0013226929657544975,-0.004159418604570449,0.028256869640938632,0.021889240487181365,0.055626128845235136,0.0321806542399705,0.003096485688071186,-0.006614358509413398,0.04780246620230244,0.1980239937264594 -2049,90,0.10039338354617358,-0.0007542674289314713,-0.0021869741113725635,0.03280584480017474,0.03213747842869939,0.06784468611558461,0.03979981344134389,0.003096485688071186,-0.0042883677488339735,0.05846670913995267,0.22668065884025054 -2049,95,0.10836495592743159,-0.0005748802942638187,-0.0014491076250832443,0.03407940949442682,0.03844815192193508,0.07365474680192019,0.04180485431372216,0.003096485688071186,-0.003373525521716313,0.06487848069595549,0.24106736662231257 -2050,5,0.056388991177082064,-0.006730112675560879,-0.013744630544147745,0.015201536075156563,0.0069236092905947955,0.02304481188665219,0.0064446416808290035,-0.01029304018935325,-0.016732025750327888,0.027135575411489938,0.12725529757581205 -2050,10,0.060407128997147085,-0.005122786652006671,-0.011735265550800332,0.01633919765567472,0.008529737058854273,0.028571137997795506,0.00811228847597218,-0.01029304018935325,-0.014730004523188766,0.030005901429088936,0.13893615708200044 -2050,30,0.07014575358331203,-0.0029383655811469284,-0.008234765897567813,0.020387843064151957,0.012988201812523994,0.04014639474844087,0.016450520022728097,-0.01029304018935325,-0.011041321971773845,0.037249432303585225,0.16491250241514732 -2050,33,0.07128820256888867,-0.002757527448435319,-0.00787958601819025,0.02122680974688127,0.013601690570446771,0.0414847523598277,0.017701254663655488,-0.01029304018935325,-0.010670380847669064,0.03813285780006062,0.1678742860777949 -2050,50,0.07782870784401894,-0.0019906960699082655,-0.006134331494719467,0.024839216995793122,0.017206793718086085,0.048352574705170535,0.024788753391203993,0.00315490994633668,-0.008839595469397936,0.04288831445233418,0.18352266347809043 -2050,67,0.0849990736156702,-0.0014334794699652261,-0.004574938558129532,0.02826021320764095,0.021587785366039728,0.05535081618200538,0.03187624726083256,0.00315490994633668,-0.0071295757188076046,0.04805240153316051,0.19942945612659257 -2050,70,0.08653100735694169,-0.0013497342986547453,-0.004297827404873167,0.02897359095243632,0.022577846353195534,0.05673963918026004,0.033126984330719915,0.00315490994633668,-0.006819704197481969,0.049124084906752005,0.20258949887255803 -2050,90,0.10261769685521722,-0.0007698185467817876,-0.0022600776373886645,0.033692499226208907,0.033203862705096336,0.06921008154950335,0.041048306152220014,0.00315490994633668,-0.00441517341479189,0.06017378785915745,0.23198657268163575 -2050,95,0.11073402212932705,-0.0005849058813173656,-0.0014981639174311086,0.03499886462416103,0.03974840301626907,0.07514392611263392,0.04313286388709899,0.00315490994633668,-0.0034728319987234473,0.06681399567945787,0.24671535255119872 -2051,5,0.05733161172270775,-0.006964428761772735,-0.014177276799550656,0.01545280476696976,0.007084573847963576,0.023436841118956903,0.006363033483795103,-0.010483652044711644,-0.01725970435791659,0.027721288315043283,0.12962901611832622 -2051,10,0.061450704234838484,-0.005283299606753562,-0.012105920781725382,0.0166172000139703,0.008744222300096883,0.029079022347834094,0.008095489181587524,-0.010483652044711644,-0.01519361246483333,0.030685599907276474,0.14161539646724552 -2051,30,0.07138465126454831,-0.0030162808787067914,-0.008497251475493729,0.02080413065278762,0.013350749545543312,0.04090226492366784,0.016757764027109674,-0.010483652044711644,-0.011382828235142728,0.038171374896255515,0.16820944345463937 -2051,33,0.07253025418072939,-0.0028296498343549025,-0.008131450406388447,0.021683875687111186,0.013983106944454801,0.04227000356106251,0.018057105800453988,-0.010483652044711644,-0.010999583892232715,0.03908272951448113,0.17123053386169812 -2051,50,0.07920186338424683,-0.0020364623828341166,-0.00633203663428063,0.025431242784232918,0.017708546294791353,0.04928037661338673,0.025420037658151838,0.003213334204602174,-0.009112857627260192,0.04400195126740668,0.18726506239638024 -2051,67,0.08651085554808378,-0.0014624918980552838,-0.0047242704993241775,0.028945384672710184,0.022238615083024407,0.05642034947764572,0.032782973159289644,0.003213334204602174,-0.007347649610493071,0.04933887963878339,0.20356429718751215 -2051,70,0.0880651185080409,-0.0013775356898625768,-0.004439406402910303,0.029695252584435873,0.02326019672208071,0.05783725296208318,0.03408231614711394,0.003213334204602174,-0.007028134538405784,0.05044649697263784,0.20679877782567938 -2051,90,0.10444245100095868,-0.0007854608286623605,-0.0023365622323273483,0.034586917358088776,0.034249670474704175,0.07054355629917666,0.04231147706818799,0.003213334204602174,-0.0045500750138301165,0.061873805246946606,0.23689367973285144 -2051,95,0.11270721956491471,-0.0005948937786481562,-0.0015509300218415456,0.03592632620125879,0.041011968355252684,0.07660371833579875,0.04447704547594853,0.003213334204602174,-0.0035770705016160967,0.0687363963060745,0.25200804012130396 -2052,5,0.058183935710787775,-0.0072019795582201835,-0.014585248845070281,0.015691255528606538,0.00723353088012702,0.023800097924830114,0.006271288022331147,-0.010674263900070037,-0.01776891509726424,0.0282863862358612,0.13183184923712332 -2052,10,0.06241463615298271,-0.005450089664825296,-0.012454300061991497,0.01689327720283412,0.00894261116599887,0.0295510365319093,0.0080697470638375,-0.010674263900070037,-0.015634646572481255,0.031341466801908684,0.14411689194520638 -2052,30,0.07257127567380667,-0.0030948679117722457,-0.008744974013726571,0.02122195032682431,0.013687057579526925,0.041603327546885484,0.017062044700329234,-0.010674263900070037,-0.01171353116405322,0.03906772978547013,0.17135576404869154 -2052,33,0.07372918312102555,-0.0029026231008375315,-0.008368253145499827,0.02214193939949486,0.014336411661506959,0.04299662696815598,0.01841088989231899,-0.010674263900070037,-0.011317625524495886,0.040006219449309946,0.1744329484277934 -2052,50,0.08054984311759472,-0.002083221632829201,-0.0065174302225044735,0.026026524736440508,0.018175959899110486,0.050146310131886945,0.026054341122340986,0.0032717584628676683,-0.009373684535238555,0.045083716863065296,0.19087185425077946 -2052,67,0.08798773293048144,-0.0014934888810046794,-0.004863693301882749,0.029634685527556184,0.022842541518539008,0.05742056651782533,0.03369779235236298,0.0032717584628676683,-0.007556183750733198,0.050584222470488986,0.20757384626494285 -2052,70,0.08958077148869634,-0.0014042703137697365,-0.0045711428355199235,0.030427715138965757,0.023900638639403168,0.0588592928887762,0.035046637544352735,0.0032717584628676683,-0.00722742119269799,0.051727833529517,0.21088947144062073 -2052,90,0.10620666683167218,-0.0008006681163794815,-0.002409155736928605,0.0354817917399438,0.03521887356385416,0.07178921336838524,0.0435893189023679,0.0032717584628676683,-0.004674302032231666,0.0635021929638553,0.24167842288485772 -2052,95,0.11468913359940053,-0.0006048439862561906,-0.0016000160237108164,0.036861775348949626,0.04218434538558219,0.0779671906518228,0.04583739908027076,0.0032717584628676683,-0.0036723997853845202,0.07057293411357372,0.2571445641345776 -2053,5,0.058903962936997414,-0.007444253890222657,-0.01502366899480453,0.01592585278576052,0.007366662329736765,0.024091960666857294,0.006169406510917121,-0.010864875755428431,-0.018308467384340717,0.028838292141946602,0.13376789928058425 -2053,10,0.0632097694158554,-0.0056168263049066825,-0.012827070770728768,0.01716742922226618,0.009131401278791817,0.02997301799458917,0.008035066980642049,-0.010864875755428431,-0.016105358695737013,0.03199458092351297,0.14644031907320468 -2053,30,0.07379050243198872,-0.0031744935087890955,-0.009002661077816849,0.02165073886488037,0.014026621249740306,0.04231018112835609,0.01736336690030672,-0.010864875755428431,-0.012055204770794088,0.03997371803387927,0.17457353379744348 -2053,33,0.07498782953247428,-0.0029773816531453185,-0.008615837917089985,0.02260100358071379,0.01469579370547375,0.04372932105927269,0.018762611797170422,-0.010864875755428431,-0.011645122763281467,0.04094593382024733,0.17771380340863593 -2053,50,0.0820123624317348,-0.002130718086837885,-0.0067083795125297795,0.026603392100054173,0.018660729779021182,0.051033125434832474,0.026691666212731398,0.0033301827211331624,-0.009640403605217299,0.04618520827156293,0.19470037855071137 -2053,67,0.0897279138147831,-0.001523868293404263,-0.0050045188488635345,0.030328112953482863,0.0234820144540256,0.05844745372714193,0.03462072184277236,0.0033301827211331624,-0.007766169456299098,0.051867912928650936,0.21191314930295094 -2053,70,0.09132909966483713,-0.001431853450110319,-0.004701603750208013,0.031171085458409784,0.024578925223154014,0.059920152418087146,0.03601996795411604,0.0033301827211331624,-0.007428960200660594,0.05304770138148095,0.21532849387148068 -2053,90,0.10845164744257928,-0.0008160759166430095,-0.0024744248209376007,0.03637982443186864,0.03627364249346221,0.07310455773838169,0.04488185594435944,0.0033301827211331624,-0.004793986192618555,0.06521086691235303,0.24709509182020703 -2053,95,0.11718432064950467,-0.0006147563833410755,-0.0016408459340978517,0.03780522285395952,0.043468905015517374,0.07940657887994403,0.047213929557985625,0.0033301827211331624,-0.003762866854862033,0.07251904847418804,0.2630738531368128 -2054,5,0.05967851199805736,-0.00769288932800045,-0.015453686357561674,0.016157955496871882,0.007515160340688814,0.024436747472009062,0.006057390164033009,-0.011055487610786825,-0.01884986561702586,0.029402790553556348,0.13589926398273866 -2054,10,0.06414570063352584,-0.005788180530733372,-0.013194552331955668,0.017439656072266472,0.009331890097647972,0.030438043840199415,0.0079914465030412,-0.011055487610786825,-0.016573714873341847,0.03265873144155121,0.14890144255380447 -2054,30,0.07498256268650294,-0.0032554428864401963,-0.009261092005393158,0.022080093706050727,0.014373227895349802,0.04302083037000207,0.017661726983602175,-0.011055487610786825,-0.0123958362173733,0.040890176482020736,0.17776486334993852 -2054,33,0.07620218615233898,-0.003052301545806824,-0.008862588964605254,0.023061068230767978,0.015068877100156627,0.04446792497466876,0.019112270300528304,-0.011055487610786825,-0.01197374978363497,0.041889920231711494,0.18100367278617036 -2054,50,0.08338868908211589,-0.0021779251440518822,-0.006900983267176753,0.027180573680394726,0.01914942302799657,0.05191160734746829,0.02733200564244317,0.0033886069793986565,-0.009911514242167836,0.0472973366928895,0.19843004825966798 -2054,67,0.09128392535448075,-0.0015536047200229001,-0.00514833882993666,0.0310256725878824,0.024118294780595666,0.05947169257762671,0.03555174462779799,0.0033886069793986565,-0.007981086680045688,0.05315405955498561,0.21608329625075304 -2054,70,0.09290680213719607,-0.001459000271313702,-0.004837626731639998,0.03191980445256905,0.025247855714460154,0.06097350154068691,0.03700228794472412,0.0033886069793986565,-0.007633021613689422,0.05436871530263827,0.21959918468248987 -2054,90,0.11039730490744115,-0.000830859307726157,-0.002545871445520989,0.03728519749082736,0.03730641957116981,0.07439915590520613,0.046189059046642986,0.0033886069793986565,-0.004923943969743433,0.06690484071996097,0.2521265556231274 -2054,95,0.11934240097030997,-0.000624631090703204,-0.001689526357824829,0.03875666062624398,0.044735378508037826,0.08081197413579165,0.04860662233533332,0.0033886069793986565,-0.003860910780318355,0.07443656897303128,0.2685755787351456 -2055,5,0.060675103318691255,-0.007943432689685495,-0.015895140717728694,0.016387560843244532,0.007658387145570973,0.024755863065097267,0.005935234123758872,-0.011246099466145219,-0.019400457974664866,0.029969751361953782,0.13817936941509434 -2055,10,0.06521310889720916,-0.005961466415493844,-0.013571602023404038,0.017709957752835005,0.009528487607971101,0.030886770183427396,0.007938882594834993,-0.011246099466145219,-0.017051473275132005,0.03332376486264231,0.1514942097730709 -2055,30,0.07625520575046539,-0.0033372207546680938,-0.00952466719529007,0.022510012153653884,0.014723859975137083,0.0437369258002923,0.0179571249502156,-0.011246099466145219,-0.012744139475296538,0.04180871472926937,0.18104050595451424 -2055,33,0.07748534578382969,-0.0031270116028108666,-0.009114856217384924,0.023522136046338918,0.015440348199279625,0.04520805225398258,0.019459861758952684,-0.011246099466145219,-0.012311211194142494,0.04284655556249556,0.18437794972323202 -2055,50,0.08480877866148949,-0.0022249774791034955,-0.007096340456329352,0.027760176520679473,0.019648367536704764,0.05280224587315342,0.02797536669835621,0.0034470312376641507,-0.010183104753969621,0.048418195360061256,0.20218019140168786 -2055,67,0.09284206175804138,-0.0015843147293060703,-0.005293275193145007,0.03172736724945089,0.024775935808976267,0.0605082625806854,0.03649087042327975,0.0034470312376641507,-0.008199305670175985,0.054461058742937676,0.22026259302144627 -2055,70,0.09446825576722623,-0.0014865229411714401,-0.004973034622180854,0.032673874701605016,0.025934909114527196,0.062043799575564926,0.03799360966097681,0.0034470312376641507,-0.007840332744348753,0.055710962316222946,0.2238488300745408 -2055,90,0.11227480460107327,-0.0008460240909459529,-0.0026158842116428688,0.038197919006864436,0.038380087375640096,0.07570231529346914,0.04751093792505841,0.0034470312376641507,-0.005051790258738078,0.06865168229359886,0.2571596619627432 -2055,95,0.12137761892974377,-0.0006344681083425765,-0.0017352829616704177,0.039716102149210494,0.046053508463094764,0.08224128241454576,0.05001550170191352,0.0034470312376641507,-0.003958004504613658,0.07640753960979194,0.27402555727305433 -2056,5,0.0618736268047616,-0.008191446761031607,-0.016331957877093812,0.01661467164357456,0.007816999191810827,0.025128765561902532,0.005802943855254643,-0.011436711321503612,-0.019936383922230235,0.030545690558989733,0.1407260882920357 -2056,10,0.0664461794167757,-0.0061342582653410825,-0.013945710162592698,0.017982877190710643,0.0097378771375553,0.03136946544711157,0.007877380113943367,-0.011436711321503612,-0.01752152740082767,0.03400013587401134,0.1543283325685506 -2056,30,0.0776234779804945,-0.0034203614542033644,-0.009788586665777168,0.022947876077384553,0.015086027397946917,0.04446429654194755,0.018249563229106962,-0.011436711321503612,-0.013093081364271966,0.04274013855907545,0.184461983756197 -2056,33,0.07889507593512536,-0.0032019766162042027,-0.009367220668015189,0.02397846163224311,0.015822132617911638,0.04595679569777144,0.0198053910303635,-0.011436711321503612,-0.012645612737622665,0.04381214601819159,0.18786565291489796 -2056,50,0.0862908565968275,-0.0022733152553320118,-0.007294353637717844,0.028342192164820132,0.020152229640419732,0.05369446598828716,0.028621744522550584,0.0035054554959296443,-0.010458078933922903,0.049549551553156795,0.2060315560684867 -2056,67,0.0944530582446158,-0.001614443503363979,-0.0054422013284860325,0.03243468083306849,0.025429727044529886,0.061538097739868354,0.03743810165817762,0.0035054554959296443,-0.008418926817321006,0.05577426795231219,0.2244982510797897 -2056,70,0.09611069947183133,-0.0015140780575818816,-0.005113975516231836,0.03343329104519476,0.026621306105400366,0.06309711937234647,0.038993930673914136,0.0035054554959296443,-0.008049204124325684,0.057057201428774455,0.22816975638155373 -2056,90,0.1141874441742897,-0.0008605110700818589,-0.0026915974337346203,0.03911797010320941,0.03943369716191433,0.07699316622418313,0.04884750715336552,0.0035054554959296443,-0.005184648490724026,0.07038041698822887,0.2621662636809463 -2056,95,0.12339153789281844,-0.0006442673959923947,-0.0017864845718869955,0.04068353124277008,0.04733879237876,0.08363957769972856,0.05144054822604648,0.0035054554959296443,-0.004062041293903797,0.07835539574740726,0.27937475040895376 -2057,5,0.06290513581931591,-0.008446536535379634,-0.016769253650468045,0.016839285079165874,0.007987392435382207,0.025526643417355863,0.005660515715080366,-0.011627323176862006,-0.02048546996752913,0.031132754054722198,0.1432227572550919 -2057,10,0.06761261818408966,-0.006312714103786445,-0.01432089571075628,0.018261813834679452,0.009964933573140688,0.03188620402625347,0.007806936024166358,-0.011627323176862006,-0.017994864057020197,0.03468945511094055,0.15713413955235161 -2057,30,0.07903254348412156,-0.0035032816661168687,-0.010058287480965397,0.023390933663528627,0.015458841454232796,0.045207576808806285,0.018539039391316296,-0.011627323176862006,-0.013446089956571823,0.04368660059015721,0.1879337089116823 -2057,33,0.08031924704611301,-0.0032770615034248864,-0.009624267351943024,0.024429010471893522,0.016217311957043293,0.04672186502899765,0.020148853256840807,-0.011627323176862006,-0.012988116098937876,0.04479137319610996,0.1914266264823383 -2057,50,0.08789091603457928,-0.002320912109980014,-0.007496674447694012,0.0289266234315128,0.020670536990340202,0.05459735608119405,0.029271139115026282,0.0035638797541951385,-0.010740204436828826,0.05069803864716356,0.21000915662878344 -2057,67,0.09621189055591822,-0.0016437337417392036,-0.005596382472528788,0.033168809014147836,0.026095361622294866,0.0625733437852819,0.03839342618769174,0.0035638797541951385,-0.008644753929517284,0.05710200786296331,0.22890339426946274 -2057,70,0.09792449010908605,-0.0015415138361547607,-0.005259821938428995,0.03419805606349974,0.027323249638612962,0.06416393138570113,0.040003241267696235,0.0035638797541951385,-0.008265272171471015,0.05842355687889328,0.23268053091845428 -2057,90,0.11635633641108871,-0.0008740182441357163,-0.002774904323260143,0.04004536695995125,0.040497850480160406,0.07828094204989824,0.050198742441964636,0.0035638797541951385,-0.005323367056184797,0.07212625176802921,0.2674473396387884 -2057,95,0.12578504755273462,-0.0006540289133858613,-0.0018459711372383599,0.04165896139033022,0.04862838431118821,0.08503994633419068,0.05288176190773221,0.0035638797541951385,-0.004172733612870739,0.08033040861820973,0.28505313235000873 -2058,5,0.06345314404517412,-0.008707159627631033,-0.017203598826507422,0.017061401150018474,0.00814562568897172,0.02588199467216146,0.005507949703236041,-0.0118179350322204,-0.021029773577649666,0.03170228308496292,0.14518045970344284 -2058,10,0.06837617830932141,-0.006493669362261139,-0.014691815691381203,0.018539237640328644,0.01017312040794279,0.032360272028006475,0.007727550325503968,-0.0118179350322204,-0.018474528457068446,0.03536084824681083,0.15944419460894055 -2058,30,0.08020256839692592,-0.003587850662898529,-0.010320745361888926,0.02383495106973738,0.015818788762537575,0.045915655350841585,0.01882555100788363,-0.0118179350322204,-0.013796220087673363,0.04461697015036858,0.1910864592582505 -2058,33,0.08151326930522919,-0.0033544362225356597,-0.009875661975883845,0.024895258102795047,0.01659623635367792,0.047460933746288514,0.02049025208182457,-0.0118179350322204,-0.013326980756439911,0.0457551119108307,0.19468055229486442 -2058,50,0.08931429010480642,-0.002368849452862427,-0.00769329506758034,0.02951347595814966,0.021172066681833097,0.05547090584286691,0.02992354804682334,0.0036223040124606326,-0.011015304565001709,0.051831915458768,0.2137501576101381 -2058,67,0.09789014323353767,-0.0016749133618120667,-0.0057433561144515565,0.033907870463946686,0.02674707444792897,0.06358340851639177,0.03935684886974205,0.0036223040124606326,-0.008867143223046934,0.058423436318790385,0.2331134443743937 -2058,70,0.0995367741584778,-0.0015690330156533756,-0.005399493997211847,0.03496817749700435,0.02800316363173279,0.0652003863309545,0.04102155358712294,0.0036223040124606326,-0.008477896392452593,0.059777572957495674,0.23701082902378248 -2058,90,0.11846670600697398,-0.0008881457123319942,-0.0028498865147662577,0.04098010148704547,0.041544054896989216,0.07955067217073952,0.0515646486487757,0.0036223040124606326,-0.005457560795488115,0.07385798909243628,0.27269822578742225 -2058,95,0.12804265395477415,-0.0006637527813233693,-0.0018974575100804507,0.042642389895209416,0.04990654864876018,0.08640990891392965,0.05433915246281056,0.0036223040124606326,-0.004275672580654246,0.0822888593826029,0.2907260517646876 -2059,5,0.06388104299381375,-0.008976759001601074,-0.017658117157288204,0.017281025493524546,0.008257001947584833,0.026104289442698988,0.005345248248681639,-0.012008546887578792,-0.02159959538696391,0.03223210861418824,0.14667704627447045 -2059,10,0.0689143795117736,-0.006676222168091892,-0.015076895468640831,0.018821008441730597,0.010342268184754394,0.03271395853794505,0.0076392242324361806,-0.012008546887578792,-0.018959473676703278,0.036002471312832976,0.16135816656502852 -2059,30,0.08115131835341453,-0.003673360150715358,-0.010581338651057884,0.02427992055552641,0.016149041774349917,0.04657018424825585,0.019109106580168858,-0.012008546887578792,-0.014145420484643175,0.04552750574839828,0.1939145932854561 -2059,33,0.08249640275985003,-0.0034328542281980724,-0.01012648984410511,0.025371705558447036,0.016950102580308414,0.04814721210458351,0.02082958750531478,-0.012008546887578792,-0.013664143806517131,0.0467020081052369,0.19761575169886672 -2059,50,0.09052835727632046,-0.002417995277574634,-0.007883919139894672,0.030102741288642435,0.021657283411571145,0.0563209806885899,0.030578983462741606,0.003680728270726127,-0.011287227681331351,0.05295407937960472,0.21723658457142014 -2059,67,0.09932669723778963,-0.0017057858913067576,-0.0058808609395650255,0.03465185744198065,0.027395737560797464,0.06457852414554972,0.0403283818491284,0.003680728270726127,-0.009076402682543628,0.059742252159756884,0.23715455853176226 -2059,70,0.10101129889637232,-0.001596607686584656,-0.005525004345305001,0.035743642444901275,0.028695048163763875,0.06623351178398511,0.04204886763219426,0.003680728270726127,-0.008676268930724233,0.06113403000155708,0.24112413855572187 -2059,90,0.12032881097495557,-0.0009026033056645268,-0.0029065285781543814,0.041922173684492074,0.04265638141409886,0.080848324925572,0.05294525977923825,0.003680728270726127,-0.005570079252200899,0.07563671127409277,0.2777885582435869 -2059,95,0.12997331624925137,-0.0006734388387377278,-0.0019283299426670988,0.04363380866736319,0.05127066850919463,0.0878319013169324,0.055812724749201494,0.003680728270726127,-0.004355062837106829,0.08433150850275942,0.2963417356347538 -2060,5,0.0647856219097972,-0.009246484214528727,-0.018099356832232915,0.017498152472291903,0.008386046988023378,0.02637401966369539,0.005172410744177167,-0.012199158742937186,-0.02215818972907133,0.03277932346928771,0.14883988472872797 -2060,10,0.06994079797267914,-0.006863441981846277,-0.015453187786830119,0.01910746828812938,0.010523500867268014,0.03311117815760055,0.007541957744962997,-0.012199158742937186,-0.019439415343850387,0.036656538340650684,0.16387036791705034 -2060,30,0.08245768201947212,-0.0037594743772104695,-0.010840886678027177,0.024725852441541577,0.016486071492012935,0.04723314931696963,0.019389696392332102,-0.012199158742937186,-0.014494041703163776,0.04644490543751656,0.19715947517450366 -2060,33,0.08382848251760006,-0.00351062988078253,-0.010373624294577404,0.02584247136999648,0.017308500304874533,0.04883462629256718,0.021166855883871485,-0.012199158742937186,-0.014000172567792178,0.047654213434890895,0.20095714372513457 -2060,50,0.0920233980640769,-0.0024681564324371646,-0.008075098528596707,0.03069442506038331,0.022145442574329766,0.057158616769595876,0.03123743078902126,0.0037391525289916213,-0.011561119090766852,0.05408118890320783,0.22103680643777673 -2060,67,0.10096847455203532,-0.0017351016331290053,-0.006019944083798319,0.03540078542921851,0.028041293785121553,0.06555927214633442,0.041308010552090976,0.0037391525289916213,-0.009289951860643735,0.06106017449789077,0.24141785635186375 -2060,70,0.1026918016858399,-0.0016247296159510574,-0.0056552238007032156,0.0365244586476749,0.029371691173543997,0.06723988660666988,0.043085173687070315,0.0037391525289916213,-0.008879010220922468,0.06248418331312966,0.2454994688504412 -2060,90,0.12242317158728838,-0.0009170551399344535,-0.0029715371085363433,0.04287159433901704,0.04371365373462452,0.08209778947501378,0.05434052725415294,0.0037391525289916213,-0.0056923336556756144,0.0773796694944576,0.2830060066266328 -2060,95,0.132177679207921,-0.0006830871661625322,-0.0019674769527161786,0.04463322579683601,0.052573804571470845,0.0891814833364247,0.05730245447730531,0.0037391525289916213,-0.004445293054310844,0.08632262621056172,0.3019958741515943 -2061,5,0.06585277844071388,-0.00951936472530574,-0.018552090647891754,0.01771278490501664,0.008530594665268933,0.02669453323976662,0.004989436278862634,-0.01238977059829558,-0.022733627686481784,0.03335009596098562,0.1511971352202119 -2061,10,0.07103750811517238,-0.0070509392146566145,-0.01583858371825769,0.01939279544364539,0.010725952325563018,0.03355626542031584,0.007435750863084415,-0.01238977059829558,-0.01993045298375806,0.03732868812369464,0.16650950618171867 -2061,30,0.08367261316031217,-0.0038460585127058885,-0.01111052917039668,0.025172738987298493,0.016844690016170318,0.047936804979221634,0.01966732773125327,-0.01238977059829558,-0.014855781651931037,0.04739009900177893,0.20040381212117156 -2061,33,0.08507518487870694,-0.003589487273059877,-0.010631559283248344,0.02630953930189746,0.017690744667788832,0.04955548544116755,0.021502064504374595,-0.01238977059829558,-0.01434822984399774,0.04863585981407257,0.20428995183614798 -2061,50,0.09336698209941388,-0.0025170281823145603,-0.008275884891256437,0.03128852727337229,0.022664825248286204,0.058036743384700884,0.03189889974150219,0.0037975767872571154,-0.01184372418975152,0.05523992142511869,0.22474020075193998 -2061,67,0.10243741684630514,-0.001765605283857052,-0.006168644135584783,0.03615463636453003,0.028710225955727912,0.06657545699533168,0.04229574226550968,0.0037975767872571154,-0.009516712846007745,0.06241382015197113,0.24555151309433226 -2061,70,0.10416248260438443,-0.0016528397805384842,-0.005794996158445038,0.037287107177488364,0.030081525942870085,0.06828291355352911,0.04413047660967104,0.0037975767872571154,-0.009090316134527114,0.06387644512894836,0.24968067183593218 -2061,90,0.12411640981286765,-0.0009309223325135233,-0.0030446439241860806,0.0438283472705314,0.04481254481062491,0.08337224241636905,0.055750475363119445,0.0037975767872571154,-0.005823263923820621,0.0791770253357056,0.28788938529239005 -2061,95,0.1340465653061867,-0.0006926978038645803,-0.002015273821590446,0.045640638586946405,0.05390326799785168,0.09057182343848302,0.05880837079464164,0.0037975767872571154,-0.0045451641634311375,0.08836851448354044,0.30725402284397885 -2062,5,0.06666433766260743,-0.009799511221168972,-0.019002395599366336,0.017924919973002666,0.008696749651080233,0.027070842322096358,0.004796323334638064,-0.012580382453653973,-0.02329804608702177,0.03393377056119097,0.15333435401126524 -2062,10,0.07196953226923943,-0.007242501186619998,-0.016224208974326786,0.019676987328117162,0.010946025565623027,0.03404130090594762,0.0073206011578404685,-0.012580382453653973,-0.02042374176987142,0.03801544949577938,0.16899593244226788 -2062,30,0.08484945175051689,-0.003933138286216735,-0.011384008318107512,0.025620582772958617,0.01722068014783586,0.048658032574941466,0.01994199452453244,-0.012580382453653973,-0.01522265816749628,0.04835588623670902,0.20362289926178517 -2062,33,0.08626094667315483,-0.0036692581612178215,-0.010892458154234603,0.026777607702633703,0.01808809488777695,0.05030043726164531,0.021835203650984233,-0.012580382453653973,-0.014698473161332836,0.049631291540757856,0.2075818316271874 -2062,50,0.09469378353282809,-0.0025662128129682583,-0.008480233590658522,0.03188504229021717,0.02319168710470484,0.05891812866723332,0.03256338546226444,0.0038560010455226095,-0.012131845080351438,0.056414165548507415,0.22844258439133414 -2062,67,0.10389875088259577,-0.0017966727883342135,-0.006323894892271737,0.03691342056856104,0.029392273376108946,0.0675988883316088,0.04329156241562471,0.0038560010455226095,-0.009745229889542777,0.06377437162373507,0.2497239854170694 -2062,70,0.10567160046622158,-0.0016814724873630649,-0.005940824575786618,0.038053468364830645,0.030796707393455157,0.06932003799607428,0.04518477639999644,0.0038560010455226095,-0.009308965680330652,0.06528167746042211,0.25392930779747397 -2062,90,0.12597675255686044,-0.0009445727638181095,-0.0031236653331015835,0.044792440569079627,0.0459123527987074,0.08464898276409738,0.05717509924821782,0.0038560010455226095,-0.0059620147423900685,0.0809799671354667,0.292945539362314 -2062,95,0.13601345216631888,-0.0007022707518438723,-0.002069864752256779,0.04665604703769436,0.055239911062663474,0.09194919239103036,0.060330444553690854,0.0038560010455226095,-0.004650011402621615,0.09040285609714646,0.31272816362545164 -2063,5,0.0675339072972536,-0.010083815203982507,-0.019451859035531774,0.018134560494946068,0.008857616689243173,0.027423304413591903,0.004593075858563403,-0.012770994309012367,-0.023866239790602307,0.034507855113420624,0.15554575531717713 -2063,10,0.07292088317871094,-0.007435002230357504,-0.016608803090528156,0.019960043941544697,0.011160307001808504,0.03450565447674769,0.0071965140943910854,-0.012770994309012367,-0.020919050383428953,0.038694073829933735,0.17149996644739512 -2063,30,0.08598753922581673,-0.004022621677552918,-0.01165563511884799,0.026069386378683414,0.017593534688047623,0.04936443357444244,0.02021370284456953,-0.012770994309012367,-0.015585428197323052,0.04931164937392399,0.20679762317298397 -2063,33,0.08740737159848212,-0.003749214477068358,-0.011154150321722293,0.027246679268886694,0.018482892325169174,0.051036971613551696,0.022166280610580305,-0.012770994309012367,-0.01505002626787844,0.050623924606676876,0.21082107930574787 -2063,50,0.09597804296761751,-0.0026151802967217313,-0.008683549785820482,0.032483975748310155,0.02371515733871181,0.05978530932564171,0.03323089038026799,0.003914425303788103,-0.012417267422080595,0.057588855230549116,0.23210524192412535 -2063,67,0.10531416159868241,-0.0018278705551223824,-0.006476811994035083,0.037677135461150105,0.030070765109633985,0.06860369917784497,0.044295500149955674,0.003914425303788103,-0.009975073593051489,0.06513714233046561,0.25382820281564333 -2063,70,0.1070875573977828,-0.001708905474370384,-0.006084831710320768,0.03882441557071682,0.03151023536895307,0.07034894267011241,0.04624808277388639,0.003914425303788103,-0.009527407599570588,0.06668604218806459,0.258103870230218 -2063,90,0.12770055111646653,-0.0009569179939722917,-0.003199990581146042,0.045763876931343234,0.047026515585707904,0.08591290593938557,0.058614413483207894,0.003914425303788103,-0.006098903577956177,0.08279064394298312,0.29789199053762827 -2063,95,0.13786526848599315,-0.0007118059295668123,-0.0021217257183139293,0.047679448452398375,0.056582008266607906,0.09331821453526164,0.06186870975989252,0.003914425303788103,-0.004752687881169746,0.09245273423513169,0.3180915281400481 -2064,5,0.06841992449760437,-0.010368821848738602,-0.019892439296134403,0.018358813798006718,0.008992055408757102,0.027705333456890198,0.004379691118058687,-0.01296160616437076,-0.024426135237010566,0.03505279270126539,0.15760038205581875 -2064,10,0.07383513877093792,-0.0076298590498293465,-0.016984738044742004,0.020241965283927993,0.011351618100235368,0.03489955641406342,0.007063483600336344,-0.01296160616437076,-0.02140163423930409,0.03935035980701228,0.17389456751097807 -2064,30,0.08719796300679446,-0.004110332985155186,-0.011916389188274574,0.02651914464414996,0.01793924894832209,0.05001084207025295,0.020482450262404577,-0.01296160616437076,-0.015936276386027907,0.05024029706937362,0.20999404125684845 -2064,33,0.08869410806298256,-0.0038307616271920915,-0.011402775154205826,0.027716748607293448,0.01884742592566517,0.05172352634521674,0.02249529538316281,-0.01296160616437076,-0.015391038234398781,0.051584518538630476,0.21412357552454364 -2064,50,0.0974133273102343,-0.0026654521449000967,-0.008876872703737635,0.033085324828955154,0.024205020273254926,0.06060853102741784,0.03390141449551284,0.003972849562053598,-0.012694457813819468,0.05873374635930242,0.23585891626551098 -2064,67,0.10690629241913557,-0.0018584609460998505,-0.006618173146975425,0.038445781042297206,0.030716970941450726,0.06956134379642492,0.045307531178902904,0.003972849562053598,-0.010193463767156654,0.06647283590742026,0.2580774806205237 -2064,70,0.10871605131328106,-0.0017360784450581477,-0.006217454634433203,0.03959994879514688,0.03218767451894091,0.07133076984317399,0.047320381157581075,0.003972849562053598,-0.009733106713526415,0.06805388511649857,0.2624331232846886 -2064,90,0.12977080010548234,-0.0009698495022867968,-0.003267663799488675,0.04674264826727772,0.04808292450365753,0.08712718951555092,0.060068398636409906,0.003972849562053598,-0.006225958899400992,0.0845619692180927,0.3030616158139539 -2064,95,0.14006861168593168,-0.0007213034175669962,-0.0021647914991835093,0.048710848224421455,0.057857490559957515,0.09463420579758525,0.063423137265727,0.003972849562053598,-0.004849672470531055,0.09446110460361316,0.32369837706702626 -2065,5,0.06922781615555286,-0.010654747257606215,-0.020324291666193036,0.018588623619298035,0.009145350361997134,0.028043375782262885,0.004156170023983904,-0.013152218019729154,-0.024976613443034007,0.03561552554133132,0.15974612337718952 -2065,10,0.07477224455997349,-0.007830794644017083,-0.017352980450978217,0.02052275651558998,0.011556159875389433,0.03534039741014412,0.00692151392635619,-0.013152218019729154,-0.02188562978275902,0.04002138193183542,0.1763256912347862 -2065,30,0.08841141553670168,-0.004199171640682926,-0.012176734974579459,0.026969860149519714,0.01829336586483614,0.05067968312312735,0.020748234349077608,-0.013152218019729154,-0.016293010639231133,0.051185606441036896,0.21318131627870035 -2065,33,0.0899144479289651,-0.00391226542501105,-0.011651456221360892,0.028187818414535458,0.01922206885731084,0.05241681557192595,0.022822243110811814,-0.013152218019729154,-0.01573044546527691,0.05255958747841701,0.21736641748164484 -2065,50,0.09877490372955798,-0.0027166057595886294,-0.009070784472611735,0.03368909235084824,0.024701879700192962,0.061437795266664236,0.03457495295007905,0.0040312738203190914,-0.012973559002280465,0.059891336422070854,0.23953075859662754 -2065,67,0.1084254826426506,-0.0018895912069768405,-0.006764872504771974,0.03921935989216382,0.03136301778664638,0.07051797643170378,0.04632766521830626,0.0040312738203190914,-0.010415848789169666,0.06781270491673586,0.2622354810350713 -2065,70,0.1102679147437215,-0.0017645336266406179,-0.006355085173571909,0.040380070856816934,0.03286337946187112,0.07230104390331249,0.04840167640900043,0.0040312738203190914,-0.009944475988177907,0.06943079600074331,0.26666668253204306 -2065,90,0.13164150434285402,-0.0009831377477587731,-0.00334194172183669,0.04772876536360908,0.049125092520412965,0.08831614634644709,0.06153706442366373,0.0040312738203190914,-0.006358966604640573,0.08632111911879711,0.30811503400130447 -2065,95,0.14206033700406553,-0.0007307631353108282,-0.0022152750870184784,0.049750240960400594,0.05911498437744823,0.09592847482251463,0.06499374164495413,0.0040312738203190914,-0.0049517337173511245,0.0964411726412001,0.3290964749454492 -2066,5,0.07007868651151657,-0.010948407663075817,-0.0207853504762215,0.01881667377047078,0.009295581454542842,0.028363760997400466,0.003922509843759091,-0.013342829875087548,-0.025559010623610642,0.03618207895187496,0.16179576804810797 -2066,10,0.07563976710140705,-0.008030939714045062,-0.017746207527908238,0.02080241247620773,0.011758438060247864,0.03578289852597618,0.006770600214530686,-0.013342829875087548,-0.022387995184882166,0.040703528557335285,0.17868247591861022 -2066,30,0.0893997517824173,-0.0042906854176641505,-0.012452139258003841,0.02742153547495414,0.018667022303969084,0.051365992366409687,0.021011055104588627,-0.013342829875087548,-0.01666118582705709,0.05215012186512009,0.21618687481234075 -2066,33,0.09092955284640193,-0.0039951390515418584,-0.011914652517620061,0.028659891387294217,0.019618793734627583,0.053139612934342426,0.023147123793527312,-0.013342829875087548,-0.016086980952140797,0.05356118503480214,0.22046483395470767 -2066,50,0.09988240598589182,-0.0027693854210129524,-0.009275868132311342,0.03429527831398944,0.025234088574669626,0.062292511145114936,0.03525150817292659,0.004089698078584586,-0.013261488314566746,0.06107744054002556,0.2430167393239353 -2066,67,0.10963094437122345,-0.0019216366854522369,-0.006917382731373004,0.03999786943058847,0.032061608300068725,0.07151346601587664,0.047355897410245804,0.004089698078584586,-0.010645311139997605,0.06919725309682699,0.26615717077787193 -2066,70,0.11147329703569413,-0.0017937924488437623,-0.006498365412266455,0.041164781755726965,0.033585524225527075,0.07332678648256279,0.049491968528144456,0.004089698078584586,-0.010163838829093844,0.07085909545326077,0.2706793335716013 -2066,90,0.1330804564729333,-0.0009953031921233308,-0.0034170463664353083,0.04872221743361132,0.050258297639058175,0.08957838272429768,0.06302039627120956,0.004089698078584586,-0.006496674706217676,0.08816643605844908,0.312838480492934 -2066,95,0.14364287889897823,-0.0007401791555256699,-0.0022643634242451986,0.0507976320536988,0.06048143397487963,0.09730768057541155,0.066580513181734,0.004089698078584586,-0.00505302441081123,0.0985312121178257,0.3341925326864966 -2067,5,0.07096791529655457,-0.011245301956530894,-0.0212608186377017,0.01904296167136349,0.009429677477277595,0.028616371070548,0.0036787145244441943,-0.013533441730445942,-0.02616290563087837,0.03673414031976273,0.16389239483774784 -2067,10,0.0766306315496564,-0.008234984059277797,-0.018149126952127077,0.02108093316578124,0.011949590979457475,0.0361822877869408,0.006610748537259754,-0.013533441730445942,-0.022905269525994927,0.04137635103438992,0.18105528656710776 -2067,30,0.09044056766927241,-0.004381022875369974,-0.012729919123953212,0.02787416546013031,0.019029952161365268,0.05204143458229633,0.021270917386857567,-0.013533441730445942,-0.017033007350927932,0.053106448470696906,0.2191939849404587 -2067,33,0.09194122637343406,-0.004078440620029777,-0.012180406334850472,0.02913296213220674,0.020003643763596177,0.05383733944947454,0.023469944718189212,-0.013533441730445942,-0.016447578848156303,0.0545557679678198,0.22352802546227332 -2067,50,0.10097142711281777,-0.0028192453828370313,-0.009479894960248283,0.03490387708098655,0.025756752781395952,0.06314739832796537,0.035931087450935366,0.00414812233685008,-0.013551319146742988,0.06227081552450573,0.24649693844734744 -2067,67,0.11080885732546449,-0.0019518388704111598,-0.00706506111022607,0.0407813070774097,0.03276345132234186,0.07252165736896171,0.048392227754721545,0.00414812233685008,-0.010872191815104359,0.07059574922787454,0.27005060772175 -2067,70,0.11269355389103294,-0.00182247500609534,-0.006636278216858891,0.04195407867318089,0.03431150166786215,0.07435802489053366,0.050591257515013165,0.00414812233685008,-0.010379302475478287,0.07230002150327698,0.2746629950717696 -2067,90,0.13447591960430147,-0.0010077637527076374,-0.0034833621224764823,0.04972300987064744,0.05141475216519714,0.09087221982261494,0.06451842332656701,0.00414812233685008,-0.006623639458937073,0.09005605792616592,0.3175358767638336 -2067,95,0.14513228703439235,-0.0007493755767319396,-0.0023061986910360033,0.05185301611095306,0.061908626150912215,0.09871220295968275,0.06818346159190652,0.00414812233685008,-0.005143629959031452,0.10067612874576226,0.3392519363276004 -2068,5,0.07185750007629395,-0.011546066633068224,-0.02171662417868833,0.019267489902137634,0.009589247335796917,0.0289633879101289,0.003424781940699243,-0.013724053585804336,-0.02675045133145228,0.037307213590854184,0.16603272204953487 -2068,10,0.07758335712701082,-0.008440333633203958,-0.018539321588181876,0.021358321164471977,0.012166982977062668,0.03663892202990606,0.006441954036623455,-0.013724053585804336,-0.023413172681978463,0.042062229572746475,0.18352967510853235 -2068,30,0.09157492701485753,-0.004472727022770216,-0.013004653234178506,0.02832775526537116,0.0194064409999101,0.05273908026257553,0.021527818766924462,-0.013724053585804336,-0.017402731607572622,0.054082273411253934,0.22238741787234947 -2068,33,0.09310660418504475,-0.0041623559335718695,-0.012444050465384498,0.029607036042636016,0.02040236101964444,0.0545613583103766,0.023790696168957643,-0.013724053585804336,-0.01680644086713138,0.05556596407154359,0.226763478491694 -2068,50,0.1022453298047185,-0.0028696101783728164,-0.009686719601217045,0.03551489710792785,0.02628489165522154,0.06399949588253478,0.03661367863930553,0.004206546595115574,-0.01384197810307274,0.06347155205674512,0.25016083159602387 -2068,67,0.11220050693079829,-0.0019833161340428295,-0.007219544879349355,0.04156968315327336,0.03345317226470797,0.0735024431925509,0.04943666110965342,0.004206546595115574,-0.01110482973235794,0.07198930598784604,0.27418463479407573 -2068,70,0.11412209203988313,-0.0018506947147933484,-0.006781836757893544,0.0427479644278748,0.03503695456904505,0.07536574390771665,0.05169954336960654,0.004206546595115574,-0.010603934251008513,0.07373499290609316,0.2788458816245647 -2068,90,0.13618734369203447,-0.0010198713345422848,-0.0035624833587386334,0.050731142674717435,0.05253191257164898,0.09211312959438515,0.06603111644221647,0.004206546595115574,-0.006763449703238073,0.09189757238786764,0.32254796331648067 -2068,95,0.1469753906443715,-0.0007586954881537529,-0.0023584719620527474,0.05291639852552639,0.06327166289877521,0.10005328324317724,0.0698025771596318,0.004206546595115574,-0.00524825153702742,0.10278292694028011,0.34460037396092624 -2069,5,0.07270348383933306,-0.011853882235140969,-0.022145860311538968,0.01949025330247028,0.009760068913607757,0.02933800688195029,0.003160712396144233,-0.013914665441162728,-0.027321821164859438,0.03788723343929127,0.16819820107288191 -2069,10,0.07852951145097614,-0.008649083569669227,-0.018908404729464406,0.02163457131195701,0.012387200517155637,0.03710312072037982,0.006264219748821752,-0.013914665441162728,-0.023897671081746553,0.04274471498354054,0.18605603452905747 -2069,30,0.09285867098197341,-0.004565107182960898,-0.013268332464495958,0.02878229973035375,0.019773553381237038,0.053413107354378576,0.021781756815829344,-0.013914665441162728,-0.017760837093000796,0.05503998637093666,0.2256747797532989 -2069,33,0.09444015734791757,-0.004248126088624087,-0.012696217964349587,0.030082107725219052,0.020787359816150097,0.055262592148671255,0.024109387861672476,-0.013914665441162728,-0.01715797806015009,0.0565628899187631,0.23013936947677768 -2069,50,0.10374531349018216,-0.0029200371924903764,-0.009884083586545788,0.036128329938725064,0.02679356197456677,0.06482021230198881,0.03729929145387697,0.004264970853381067,-0.014131485335165169,0.06464841711937047,0.2540090912939772 -2069,67,0.1138888592004776,-0.0020148213868487652,-0.007371616250700391,0.042362984757372144,0.034106915026921675,0.07443472177398291,0.05048919747504142,0.004264970853381067,-0.011332947538222896,0.0733605925950155,0.2785145497517307 -2069,70,0.11582510182112456,-0.0018799283641752975,-0.006925087612030126,0.043546433382416504,0.03572193369724389,0.07632746771000247,0.052816830949844525,0.004264970853381067,-0.010824610371527734,0.07514178941922744,0.28326835283308816 -2069,90,0.1382662683740258,-0.0010323413497707189,-0.0036416383638833063,0.051745397386154454,0.05357568214700665,0.09328118841449186,0.06755849019191774,0.004264970853381067,-0.006904045213892363,0.09368084985538723,0.3278140945010445 -2069,95,0.14921197056472302,-0.0007679057128183141,-0.002414058574912246,0.05398777390405578,0.06452693165318824,0.10132245080145287,0.07143787445866964,0.004264970853381067,-0.0053574913514654945,0.10478141927199137,0.3502641690784244 -2070,5,0.07365001024454833,-0.012163515849528744,-0.022580305435633323,0.019711254452522895,0.009920401278004655,0.0296926735978888,0.002886509837839114,-0.014105277296521121,-0.027884003000484856,0.03844836839999549,0.17038919480811635 -2070,10,0.07954015171900392,-0.008861443116442918,-0.019278883958737152,0.02190969134872074,0.012602377529292687,0.037552459231784435,0.006077546888334629,-0.014105277296521121,-0.024390127282322222,0.04342150286589564,0.18855170910131494 -2070,30,0.09404403756737709,-0.004659194700259948,-0.013530923000688776,0.029237804015401016,0.02013858140130723,0.05407349573603579,0.02203273639149215,-0.014105277296521121,-0.018130351709940713,0.05599611298504044,0.22883243940227505 -2070,33,0.0956426866605878,-0.004334638359232133,-0.012949434654342225,0.03055818257331884,0.021170755414123974,0.055946320980667354,0.024426014938413773,-0.014105277296521121,-0.017505840523263143,0.05755648847795926,0.2333909877683773 -2070,50,0.10506767050549387,-0.0029716461099392284,-0.010082647219431626,0.036744181210770374,0.027297974900791652,0.06562607727556156,0.03798792103672973,0.004323395111646562,-0.014415221345960185,0.06582932603614788,0.2576809096104279 -2070,67,0.11533262256085873,-0.0020461989218506743,-0.007521782294986717,0.04314865335232982,0.03475901430976514,0.07536511498287508,0.05154982713504568,0.004323395111646562,-0.011560932881693612,0.0747296972584269,0.2826181790003466 -2070,70,0.11728799321502448,-0.0019086286601768315,-0.007066696565911944,0.04434949399289429,0.03640584789394252,0.07728297849750213,0.05394311053988725,0.004323395111646562,-0.011043836280277233,0.07654764253331144,0.28745400437510993 -2070,90,0.14002335840761662,-0.0010451498809056264,-0.0037191264939341155,0.052755370020757274,0.054621572921266036,0.09444742260943913,0.06910054457567084,0.004323395111646562,-0.007040008981236544,0.09547777125526455,0.3327050109758684 -2070,95,0.15110981358885767,-0.0007771470355308296,-0.002466246071277322,0.05506714763990423,0.06579651861064069,0.10257416096085237,0.07308933405734032,0.004323395111646562,-0.005459929350900916,0.10679727411334185,0.35548541031998737 -2071,5,0.07455049228668213,-0.012473404998765836,-0.02302667014968202,0.01993049593245694,0.010070247504322703,0.03000502789356917,0.002602163639084021,-0.014295889151879515,-0.028492064686243455,0.03900603347261317,0.17242641903310507 -2071,10,0.08047547513097525,-0.009075615500166445,-0.019659925611099093,0.022183307376482667,0.01280419660701648,0.03797430521942918,0.005881928168282178,-0.014295889151879515,-0.02488864920144676,0.04408576083504695,0.19089913231978528 -2071,30,0.09500820093378425,-0.004754074602345798,-0.013798205412924338,0.029694262960190027,0.02049503285179907,0.05472854934192507,0.022280752635992936,-0.014295889151879515,-0.01849673061281853,0.05695956331277681,0.23179906182370524 -2071,33,0.09662212373864651,-0.004421253670333603,-0.013205388857573943,0.03103525519357239,0.02155451170451664,0.05662651642503993,0.024740574970221568,-0.014295889151879515,-0.017861736757604246,0.05855437167542354,0.2364139027910845 -2071,50,0.10610561707019807,-0.003024687286194816,-0.010281790837578986,0.037362445286671604,0.027803615422493135,0.06644113741412058,0.03867956981682379,0.004381819369912055,-0.014701445763074073,0.06702281244626096,0.26106892374047364 -2071,67,0.11641877172216772,-0.002077960974707241,-0.007670251680265328,0.04392639925319317,0.03542375117844624,0.07630896778872542,0.05261856952134595,0.004381819369912055,-0.011790718483515717,0.07611758650129115,0.2863951354970707 -2071,70,0.11841487277671696,-0.0019355844960585377,-0.007205806183167994,0.045164833406996285,0.03710602664279968,0.07824604947996446,0.05507839185557458,0.004381819369912055,-0.011261281413990982,0.07796946813875759,0.29129667138483517 -2071,90,0.14133386645913126,-0.0010577979549234147,-0.003792285844438027,0.05377232738427943,0.05570901948642803,0.09563973785014572,0.0706572747355558,0.004381819369912055,-0.007172110751414709,0.09730176825926352,0.3372630130778795 -2071,95,0.15253050172924995,-0.0007861549477231207,-0.002514806523752444,0.05615451433970874,0.06712476113185344,0.10386863972015815,0.0747569802452435,0.004381819369912055,-0.005562143135340753,0.10887168339345693,0.36033201714590396 -2072,5,0.07543172589838505,-0.012789946577940598,-0.02347120804418493,0.020147977742272418,0.010212939038147635,0.030291737771521374,0.0023076874627787802,-0.014486501007237909,-0.029077053477031406,0.039555353352088415,0.174505297415686 -2072,10,0.08138415592610836,-0.009290169596143262,-0.020040192891597263,0.022430974927421545,0.013008869946216813,0.038385578079171014,0.005677373911744268,-0.014486501007237909,-0.02539701764902837,0.04475487783666055,0.19316050832077777 -2072,30,0.09587910669744014,-0.004848744915483113,-0.01406431446003991,0.030151681725043712,0.020849749842641967,0.055372144671705655,0.022525805549331715,-0.014486501007237909,-0.01886338631181113,0.05792063941163279,0.2346179467304296 -2072,33,0.09747099604904652,-0.004507281260826712,-0.013459105327192609,0.03151333097934269,0.02192960538980946,0.05729017239877055,0.025053072815015797,-0.014486501007237909,-0.018210807785563107,0.05955341871916245,0.23932277866614987 -2072,50,0.10699390129968525,-0.003077919896221454,-0.010478510130386287,0.03798313062251703,0.028305299381457084,0.0672325519839565,0.039374237794159155,0.00444024362817755,-0.014989064267514379,0.06820699651371676,0.26430517759085953 -2072,67,0.11738077588006855,-0.0021094647769281487,-0.007815960167920927,0.04470838729167702,0.03608831736397008,0.07723447917345874,0.05369540520226247,0.00444024362817755,-0.012014889289910924,0.07750596827735345,0.2899924747731686 -2072,70,0.11936424763798713,-0.001964572176039369,-0.007343179361113598,0.04599013929563801,0.03780029783338491,0.0792019797052566,0.05622267003898659,0.00444024362817755,-0.011474812470654018,0.07938951931522609,0.2949483232652995 -2072,90,0.1422541765987873,-0.0010700787967357068,-0.003862255505492113,0.054796275114113106,0.056795835814964335,0.096813757183982,0.07222868552949259,0.00444024362817755,-0.00730243020972325,0.09912515390916796,0.3414791342602381 -2072,95,0.15361557235568762,-0.0007947721011854203,-0.0025623578477510303,0.05724987939683232,0.06844679256549684,0.10515729804060188,0.07644079359069945,0.00444024362817755,-0.005663858141696112,0.11095628406017331,0.36488449302919534 -2073,5,0.07625885287821292,-0.013108086988130967,-0.023905842128683016,0.020363692141484934,0.010343748575376137,0.030534519668194947,0.0020030712894635195,-0.014677112862596303,-0.029661811607640705,0.040085145990528794,0.1764598281611398 -2073,10,0.08234205602109432,-0.009510022107963083,-0.02041164034912196,0.022676830056772398,0.013189081274833807,0.03875616611214173,0.005463875617361008,-0.014677112862596303,-0.02589046415175118,0.04539492438300401,0.19549245504781881 -2073,30,0.09710107344835997,-0.004944365578966656,-0.014321027161939994,0.030610055149639145,0.021184630543516082,0.0559835737221886,0.022767902418388383,-0.014677112862596303,-0.019217803474875755,0.058867721146604234,0.23773828662720956 -2073,33,0.09870644354224205,-0.004593477070495865,-0.013703487830312812,0.03199240453726675,0.02228418065705448,0.05792364340455485,0.025363503614876524,-0.014677112862596303,-0.0185516892121243,0.06053491568703684,0.24251986195301864 -2073,50,0.10837277765572072,-0.003133177500619519,-0.010668118387564266,0.03860623158091445,0.028781616280918902,0.06799947911312335,0.04007192496873581,0.0044986678864430436,-0.015269819361662516,0.06937762822201285,0.26799138816708457 -2073,67,0.11891234984993936,-0.0021409449188944155,-0.007954002550393633,0.04549462310517356,0.03672280722442851,0.07812831792295143,0.054780343893635126,0.0044986678864430436,-0.012234357124822858,0.0788724049617576,0.2941608961516114 -2073,70,0.12091434417665005,-0.001994028690327633,-0.007472349057324905,0.04682037202137412,0.038461067426391514,0.08011863182121477,0.05737595480596314,0.0044986678864430436,-0.011684989710252896,0.08079169394672828,0.2991868885192113 -2073,90,0.14418657172471286,-0.0010809191180161932,-0.0039276281894841765,0.05583187138814775,0.05783848605418831,0.09794837702054986,0.07381477695748119,0.0044986678864430436,-0.007426514987803963,0.10092087222205583,0.3465752890443972 -2073,95,0.15566635957360267,-0.000803330991932523,-0.002602521231757372,0.05835323741791196,0.06971960420218791,0.10639544442724953,0.07814078380954803,0.0044986678864430436,-0.005761187731201513,0.11299435218395242,0.3704212517106643 -2074,5,0.07685260104686022,-0.013443892204631002,-0.024363541395174184,0.020577649450740344,0.01046429186598235,0.03075294415650119,0.0016883160299982275,-0.014867724717954696,-0.03028279950732215,0.040616482023430184,0.1781485114361961 -2074,10,0.0830106392763555,-0.009733024709938011,-0.02079796275922752,0.022920878401927403,0.013369940839357422,0.03909828953915325,0.0052414344996123815,-0.014867724717954696,-0.02639952595784911,0.046037871490041675,0.19762190826131712 -2074,30,0.09816472368985416,-0.005043261853897707,-0.014587284068353664,0.03106938839429925,0.021527855297858875,0.05658816440509683,0.023007031098363096,-0.014867724717954696,-0.01958703731636979,0.05982326586012131,0.24073091164512542 -2074,33,0.09983665979971737,-0.004681042682350001,-0.013957213124904482,0.032472481260707564,0.022642596316298176,0.05857467987569871,0.025671872227723682,-0.014867724717954696,-0.018902350212095513,0.06151909577869617,0.2456318305362956 -2074,50,0.10967129048332573,-0.00318687205713042,-0.010862497308182858,0.03923175098055998,0.02927746461693198,0.06879285440892924,0.04077262405367386,0.004557092144708538,-0.015557486068343632,0.07056673996481302,0.2716224595091551 -2074,67,0.12041023791432381,-0.002172454424810984,-0.008093914834356604,0.0462851010562906,0.03739058326218466,0.07905805373024682,0.05587338073754397,0.004557092144708538,-0.012456201162564127,0.08026710753012965,0.29835077276580546 -2074,70,0.12245244023948908,-0.0020214307790423604,-0.007602930609254547,0.04765554506761208,0.03916389520803716,0.08106514724572514,0.058538221866904556,0.004557092144708538,-0.011894760968282377,0.08222678164241348,0.3034777355006586 -2074,90,0.14616946076899764,-0.0010917977410747632,-0.003990127149901923,0.05689520753076436,0.05894138858770234,0.09913135586755457,0.07541554416160166,0.004557092144708538,-0.007549755259401484,0.10278117798335752,0.35183181957039983 -2074,95,0.15774424830079078,-0.000811951223448798,-0.0026414245824130924,0.05946459379631066,0.07107477850596235,0.10768516520042207,0.07985694118594938,0.004557092144708538,-0.005849319386339368,0.11511407096125711,0.37614891519994703 -2075,5,0.07750797523267569,-0.013769804002538348,-0.02481907691283926,0.020789841929554256,0.010589666877941266,0.030976445267816392,0.0013634298821227986,-0.01505833657331309,-0.030866128525464394,0.04115480936743322,0.17984485833472574 -2075,10,0.08376093234717846,-0.009958085442012628,-0.021182230996657118,0.02316311150679829,0.01354931073959243,0.03943794927190312,0.005010058148998292,-0.01505833657331309,-0.026906207367954224,0.04668969066907267,0.1997177293614174 -2075,30,0.09915360250324011,-0.005141296258430158,-0.014852817550551468,0.0315296762987011,0.02186859271626412,0.057202776985916796,0.023243203734055706,-0.01505833657331309,-0.01996108727988198,0.06077489334145734,0.2436469140987156 -2075,33,0.10086912727728485,-0.004771491841648806,-0.0142106815543445,0.032953555756302134,0.02301023800388929,0.05921426286975822,0.025978176224597308,-0.01505833657331309,-0.01925162050386049,0.06251220772047478,0.24866813056990608 -2075,50,0.11085376401841641,-0.003241120186388791,-0.011057265772478219,0.03986115125355221,0.02977408585102612,0.06957335678474441,0.04147634719377315,0.004615516402974032,-0.015839696949144885,0.07175387200714592,0.27512634183766027 -2075,67,0.12175537249445915,-0.002203772597926133,-0.008234051578768897,0.04707982114502814,0.0380491447835043,0.0799818157765302,0.05697452059190895,0.004615516402974032,-0.012675685012956696,0.081660569786245,0.3023572872589091 -2075,70,0.12381355208158493,-0.002051311341564594,-0.007733816923251426,0.04849564764762593,0.03985787025739389,0.08200767786415476,0.059709495511410526,0.004615516402974032,-0.012107601275629107,0.08366664576817014,0.30758581211457514 -2075,90,0.14786266284137964,-0.0011025334653212415,-0.004051058260286008,0.05796619127196079,0.06004647542598944,0.10030851160227561,0.07703098228393408,0.004615516402974032,-0.00767555580271828,0.1046602090802595,0.3568288946411808 -2075,95,0.15962246191948654,-0.0008199648759227691,-0.002680165100124889,0.06058394313866542,0.07242419951945159,0.1089714148475639,0.08158926086198354,0.004615516402974032,-0.005940967100119985,0.1172372103631667,0.38162624928257505 -2076,5,0.07852084446236494,-0.014105253063435947,-0.025268193647981687,0.021000274738249603,0.010717440731425755,0.031218744841842047,0.0010284037372373497,-0.015248948428671484,-0.03145397865884762,0.04168601798195343,0.18194741684774632 -2076,10,0.08484718627482653,-0.010180102455393164,-0.0215666632684005,0.023403535008777242,0.013732889074950431,0.03979843876058083,0.004769738367778845,-0.015248948428671484,-0.02741110420445918,0.04733923597841878,0.2021609985713122 -2076,30,0.10046300765126945,-0.00523961736408306,-0.015117038182712837,0.03199092144300616,0.022209769876329784,0.05781523520443301,0.0234764130385863,-0.015248948428671484,-0.020326318601976832,0.06172967821578264,0.2468998058199757 -2076,33,0.10220713495910168,-0.004861147906903613,-0.014461856748279883,0.03343563072073197,0.023373597525496743,0.05984610379237893,0.02628241317653743,-0.015248948428671484,-0.019604708643087186,0.06350380998610076,0.2520198483442813 -2076,50,0.11234043732285501,-0.0032934029814896517,-0.01125062792519447,0.04050454440179304,0.03027776834264531,0.07035192749310903,0.042183082244233824,0.004673940661239526,-0.01612579977092957,0.07294889825426329,0.278953675642183 -2076,67,0.12336743216365575,-0.00223613221752944,-0.008375559653053867,0.04787878900877837,0.03869964357837652,0.08088818368341123,0.058083753740890184,0.004673940661239526,-0.012901133823511943,0.08305833899143812,0.3066586851215605 -2076,70,0.12547688995301723,-0.002080242077753973,-0.007864074450684377,0.04934068515477863,0.04054977105209415,0.0829365732907283,0.06088975630780129,0.004673940661239526,-0.012323705747646721,0.0851015230363075,0.3119695710299544 -2076,90,0.1498496829405427,-0.0011128641216884057,-0.004115237205812975,0.05904482777205997,0.061122907024808576,0.1014717158166054,0.07866110104031832,0.004673940661239526,-0.0078039370046625554,0.10651173394320178,0.36210497244993906 -2076,95,0.16176466239094733,-0.0008281679675737394,-0.0027199099573835613,0.06171129083833925,0.07375623946634167,0.11023736056481476,0.08333776226933028,0.004673940661239526,-0.006038477005512946,0.11933532313847747,0.3873057143676996 -2077,5,0.07928311724960804,-0.014438700352033557,-0.0257180140461509,0.021208947876826378,0.010868984339216108,0.031523916042103174,0.000683237595341881,-0.015439560284029877,-0.032056706962502735,0.04224237034944279,0.18394387742417537 -2077,10,0.08570468991056085,-0.010407377266425584,-0.021950994048514416,0.023642154545256446,0.013940185830897272,0.040207189779534164,0.004520473637854058,-0.015439560284029877,-0.027922160137109263,0.04801004773649005,0.20447792999038128 -2077,30,0.10158362492769957,-0.005341185745547517,-0.015386393141000838,0.032453128987537355,0.02257382663118214,0.058461435501240694,0.02370665901195488,-0.015439560284029877,-0.02070015844133993,0.0627049936709329,0.24999404652870483 -2077,33,0.10336120665073395,-0.004951584372135729,-0.014719673239851542,0.03391871154736005,0.023759395926566146,0.060508507910816536,0.02658458551250402,-0.015439560284029877,-0.01996530296824973,0.06451307529068685,0.2551762105222508 -2077,50,0.11361568784713745,-0.003347814510478435,-0.011451724770376101,0.041150693558523445,0.030794033066983376,0.0711503245089911,0.042892838920895765,0.00473236491950502,-0.016420900050314467,0.0741615608159651,0.2825820061630232 -2077,67,0.12479112282395363,-0.002269082698882434,-0.008525729668470622,0.04868201028493348,0.039372420339381695,0.0818080902891017,0.05920109475824749,0.00473236491950502,-0.01313374823902089,0.08447816200472548,0.310774026573063 -2077,70,0.1269289187371731,-0.002109433382468682,-0.008005093588917996,0.050190673769159186,0.04125423715556642,0.08388300661362282,0.06207902854567653,0.00473236491950502,-0.012544369454541831,0.08656055979560441,0.3161822808904381 -2077,90,0.15161682189702988,-0.001124554700564866,-0.0041889793608110275,0.0601311170310619,0.06222514635934093,0.10262335816152691,0.0803059052886743,0.00473236491950502,-0.007938413224348208,0.10838127579778489,0.3671173305581078 -2077,95,0.16363301230072974,-0.0008351958002502039,-0.002769424706541129,0.06284663689533213,0.0750955645983004,0.11148698329783073,0.08510245026590953,0.00473236491950502,-0.006138674384780135,0.12145196840537056,0.3927784443289638 -2078,5,0.07991298533380031,-0.01477770032378479,-0.026155001193749614,0.02141585876512312,0.010990142354221018,0.031756660695409694,0.0003279405650362757,-0.01563017213938827,-0.0326569393112629,0.04277138234740879,0.18564644999505517 -2078,10,0.0863985219269991,-0.010639732360248053,-0.0223251922876248,0.02387896166014762,0.014123011039163637,0.04056557819874259,0.004262274282303801,-0.01563017213938827,-0.02842583011078721,0.04865847378034317,0.20648343148664547 -2078,30,0.10249834895133972,-0.005441386070572048,-0.01564561733832366,0.0329162911918103,0.022911035927795816,0.05905990897699512,0.02393394894104135,-0.01563017213938827,-0.02105927295110691,0.06364860613899656,0.25282083522929993 -2078,33,0.10431391715705396,-0.005041622075657362,-0.014968698467780426,0.03440279014614189,0.02412005412440145,0.06112509971694497,0.02688469809041701,-0.01563017213938827,-0.020319770890768783,0.06550013226236974,0.25811128334748934 -2078,50,0.11468919867277144,-0.0034018849876513574,-0.011640344055028848,0.04179958524033594,0.031274233363654876,0.07190805761684525,0.04360561722375898,0.004790789177770515,-0.016706648693598315,0.07534894520927916,0.2859464359726257 -2078,67,0.12599437777400016,-0.0023011804912596956,-0.008662750143705994,0.04948946524262081,0.040013940662111544,0.08269472306701475,0.06032654364398086,0.004790789177770515,-0.01335621876737891,0.08587064558299738,0.31465287776448436 -2078,70,0.12819833754301072,-0.002138348291401615,-0.008135785608881188,0.051051590762498295,0.04192404876513224,0.08477689850409563,0.06327729279335652,0.004790789177770515,-0.01275219585396814,0.0879922787635581,0.3201548535690553 -2078,90,0.15323268596082926,-0.0011349826522542156,-0.00425274751511087,0.061216180115554616,0.06328596298319107,0.10374043647242727,0.0819653901710821,0.004790789177770515,-0.008062881080109443,0.11023269690912159,0.37190277366987806 -2078,95,0.16527858768403528,-0.0008427777966782584,-0.002808582379932828,0.0639859797890089,0.0763966712428976,0.11270956264938192,0.08688329570420165,0.004790789177770515,-0.006228883147470934,0.1235507475227343,0.3979854594995559 -2079,5,0.0803757955685258,-0.015118617910490672,-0.026597874592729564,0.02162100482297837,0.011136435084964175,0.03204133900090573,-3.749889123931839e-05,-0.015820783994746665,-0.03325053258116125,0.04331175060903721,0.18722763343224977 -2079,10,0.08701148559749126,-0.01087575188945652,-0.022703099264743266,0.02411395071605858,0.014319960878992828,0.04096132929496045,0.003995129067188217,-0.015820783994746665,-0.028933628622010543,0.04932685727198164,0.2084384619215531 -2079,30,0.10337326559893785,-0.0055434419474830075,-0.01591046660283737,0.03338040805582499,0.023264182860986214,0.05967642537304222,0.02415827311000584,-0.015820783994746665,-0.02142615951045806,0.06462903998575045,0.2556168223965054 -2079,33,0.10519403463602066,-0.005131478061109624,-0.015221859200933845,0.03488786651707749,0.024495318898095746,0.06176483593741438,0.027182741194436526,-0.015820783994746665,-0.020675000004943697,0.06650863972547934,0.26102340574691585 -2079,50,0.11578907945752145,-0.003455549696373107,-0.011836814194712171,0.04245122753727502,0.031773424027155446,0.0726776363689097,0.04432140743698358,0.004849213436036008,-0.016998205545689565,0.07656640774387456,0.2893495602565193 -2079,67,0.12727514039576054,-0.0023318003220855485,-0.008808753650317995,0.05030116515662473,0.0406699515886787,0.08358699664951408,0.06146008096641055,0.004849213436036008,-0.013588416273424567,0.08728004208703988,0.318588712187486 -2079,70,0.12949476913362742,-0.002167960958595304,-0.008272566573336927,0.05192408784257852,0.04261692656874388,0.08569514746409514,0.06448455390876118,0.004849213436036008,-0.012972602897426444,0.0894442081203111,0.3241506659938319 -2079,90,0.15478834744989872,-0.0011452018071729242,-0.0043235574707317015,0.062305051563634264,0.06434885692958843,0.104863285892703,0.08363954597170184,0.004849213436036008,-0.008196061054294069,0.11209340649356868,0.3767965438073438 -2079,95,0.167046828481555,-0.0008505738836169439,-0.0028552358027262447,0.06512411853497665,0.07770476687559279,0.11393917955478065,0.08868031801588643,0.004849213436036008,-0.006327738142632192,0.1256419669643199,0.4033218640728332 -2080,5,0.08090325242310764,-0.015463331149061416,-0.02704572442592893,0.021821665849008912,0.011296414835629503,0.03237027145054512,-0.00041307075402502967,-0.016011395850105057,-0.03384955512172907,0.04387094087611109,0.1888962357364553 -2080,10,0.08762381505966187,-0.011111241293051466,-0.02308606492972094,0.02434713580646979,0.014535935469166006,0.04138940631147891,0.0037190455830072083,-0.016011395850105057,-0.02944940636629494,0.05000278008785858,0.2104900621108662 -2080,30,0.1042983820438385,-0.005644476098112064,-0.01618083105477058,0.03384548215974289,0.02363502849036266,0.060315529202882766,0.024379633947808312,-0.016011395850105057,-0.02180321976717895,0.06562559280274848,0.25848266161071537 -2080,33,0.1061072621792555,-0.0052227484732427915,-0.015479474306019005,0.03537394335684835,0.024887680940535572,0.062431594796586005,0.027478722111442477,-0.016011395850105057,-0.021040328304512506,0.06753065615228923,0.2639834001411577 -2080,50,0.11687768707796932,-0.003509961547282719,-0.012039976796693835,0.04310561505597768,0.03229303788190474,0.07346251349110383,0.04504021927640946,0.004907637694301503,-0.017292137962800068,0.07779999411327629,0.29283059749889706 -2080,67,0.12852460291087628,-0.002364516310654559,-0.008961908327991203,0.05111711002694525,0.04134342650165416,0.08449582234811527,0.06260171644137642,0.004907637694301503,-0.013825703235661733,0.08871994807333522,0.32254638562079235 -2080,70,0.13072192486092435,-0.002197035733924708,-0.008414986082777551,0.05280182781075396,0.043328531204129495,0.08663190689745334,0.06570080703397056,0.004907637694301503,-0.013198597231469943,0.09091522446183573,0.32821813847698655 -2080,90,0.15621831935346128,-0.00115721389637636,-0.004401773956219455,0.06340126337874778,0.0654419653612942,0.10600394302852684,0.08532837269053353,0.004907637694301503,-0.00833719455307128,0.11398531709315962,0.38175205674207785 -2080,95,0.16870083011984824,-0.0008577769372641066,-0.0029081924416968063,0.06626992977171052,0.07903606756153078,0.11516834342006278,0.09049351720096384,0.004907637694301503,-0.006441720915589948,0.12775074591432564,0.4086646348228635 -2081,5,0.08175316420815885,-0.015810526299499167,-0.02747828958408518,0.021997490473920318,0.011438938190989777,0.03264406542293754,-0.0007987804884807881,-0.016202007705463452,-0.034441395025018376,0.04441769577701317,0.19081163162948359 -2081,10,0.08853548655956983,-0.011353754126260225,-0.023455162390601608,0.024578508475292974,0.014730549267699247,0.04177277479275485,0.003434022311660795,-0.016202007705463452,-0.029953622801124465,0.05065518282616945,0.21276561951177053 -2081,30,0.10536182884722949,-0.005744213876050886,-0.01643927335758608,0.03431151608372546,0.02398252612349627,0.06091360983510144,0.024598038741328678,-0.016202007705463452,-0.02217395748528072,0.06658353643210105,0.2614666926610916 -2081,33,0.10720010703206062,-0.005315337827775397,-0.0157268609271912,0.03586102336213596,0.025257347034654987,0.06306177132151751,0.027772640841434864,-0.016202007705463452,-0.021392205692991037,0.06853022161607525,0.2670657977903949 -2081,50,0.11806489379703998,-0.0035654072768944206,-0.012231682391032611,0.043762758583169914,0.03278162057775749,0.074218599526142,0.045762047884116655,0.0049660619525669965,-0.01757774558390304,0.07900126497544667,0.29633087908455397 -2081,67,0.12982276327908038,-0.002396978097072843,-0.009104178734715552,0.051937299853582364,0.04198206709936247,0.08535203250251178,0.06375145978471838,0.0049660619525669965,-0.014051266113739825,0.09012134548986282,0.326500197626504 -2081,70,0.1320597124323249,-0.002227488426306366,-0.008549393583817629,0.053684810667024595,0.04399854527052765,0.08751797537266118,0.06692606674274451,0.0049660619525669965,-0.013412962819544865,0.09235120721223272,0.33225666140429333 -2081,90,0.15781392149925233,-0.0011671677802632251,-0.004471031676444965,0.06450481016753219,0.06647934612229406,0.10709045660169943,0.08703188004341703,0.0049660619525669965,-0.008471094660726488,0.11582007242848402,0.3865668878567766 -2081,95,0.17040359435677527,-0.0008651208763834701,-0.002953948691471331,0.0674234078618183,0.08030338914993271,0.11635930815859762,0.092322883543594,0.0049660619525669965,-0.00654398291871552,0.12981081897170985,0.413878850182659 -2082,5,0.08240004717744889,-0.016170815714033632,-0.027907392762601797,0.022170936119328927,0.011570408606484178,0.032907659526983546,-0.0011946268801266092,-0.016392619560821844,-0.03502637057858119,0.04493810716798358,0.1925276669851457 -2082,10,0.08926156180724502,-0.011593625515212745,-0.023820867346827045,0.024808074359920315,0.014918567275104235,0.042132920716098685,0.0031400568241890074,-0.016392619560821844,-0.03046794869369722,0.05130246347169989,0.21483890411509474 -2082,30,0.10627212679386139,-0.0058476531441560365,-0.01669382051044443,0.034778509827772704,0.024315213684565545,0.0614948756735364,0.02481347777472706,-0.016392619560821844,-0.022536284755061857,0.0675375886014619,0.2642634182573846 -2082,33,0.10810306198894978,-0.005408559304761312,-0.015971299951793264,0.036349106532940316,0.02560981477787935,0.06366585972335635,0.028064490097533777,-0.016392619560821844,-0.021739048689760974,0.06952038452301058,0.2699577312511658 -2082,50,0.11910363322347402,-0.003621387714649666,-0.012419598527834981,0.04443437966339684,0.033254273010158084,0.07494543547636821,0.04648689326010518,0.005024486210832491,-0.01785981243754191,0.08018616248398835,0.29968239587660506 -2082,67,0.13100099650919436,-0.0024295066953026255,-0.009242462883281467,0.052761740273928256,0.042609687426495055,0.08620463291201642,0.06490930128059652,0.005024486210832491,-0.01427354263878568,0.09151692428069591,0.33032421326100764 -2082,70,0.1332295691370964,-0.0022559116390714305,-0.008679898148652542,0.054573041571713374,0.04465744298339159,0.08839717974937035,0.06816031846132319,0.005024486210832491,-0.013621982863049402,0.09378330108788355,0.3361812994040595 -2082,90,0.15918174588084222,-0.0011773801488851236,-0.004536511754583719,0.06561570271671346,0.06749926453229775,0.10816532543052645,0.08875006803035233,0.005024486210832491,-0.008598979629708646,0.11763990125182451,0.3912943947830872 -2082,95,0.17193491851687429,-0.0008724901312386217,-0.0029958445044144036,0.0685845640800844,0.08155239910787154,0.11754545142364219,0.09416841704377693,0.005024486210832491,-0.006639244291432105,0.1318564758472226,0.4190061142943011 -2083,5,0.0828416720032692,-0.016535125551509138,-0.02835022593849557,0.022341997147842556,0.01173910136415627,0.03324226246670768,-0.0016006099289624929,-0.01658323141618024,-0.03564307705612014,0.04549597714841488,0.19411463594961867 -2083,10,0.08980265819728374,-0.01183825742166236,-0.02419741412302779,0.025035827822959628,0.01513795158908122,0.042566477111928326,0.0028371515495518155,-0.01658323141618024,-0.030995155684031092,0.05198477904994062,0.21678942724355535 -2083,30,0.10703109946325422,-0.005951348508972664,-0.01696113626412454,0.03524645565140023,0.024688291046725507,0.06213219371719945,0.025025958334883365,-0.01658323141618024,-0.022912789141850468,0.06853011156321542,0.26695793366505965 -2083,33,0.1089183575436473,-0.005502182620832432,-0.016225706016478204,0.036838184779216944,0.026004709222634776,0.06431875417217915,0.028354279595579096,-0.01658323141618024,-0.022103330416979934,0.07055427803938479,0.2727625117597363 -2083,50,0.12001189022734761,-0.0036775189686895932,-0.012622850825532966,0.045109902056978866,0.033771637786405045,0.075721135900266,0.04721476026229498,0.005082910469097986,-0.018156945576340833,0.08142646114516477,0.3029622418779022 -2083,67,0.1320489255055785,-0.0024622834481182678,-0.009397136927587315,0.05359042001319856,0.04327601958507438,0.08708719094869784,0.0660752457869308,0.005082910469097986,-0.01450974773219843,0.09296118629462564,0.3340915225686894 -2083,70,0.13431815665066243,-0.0022859491324794565,-0.008823090088757646,0.05546652052482029,0.04535583967679445,0.08929907816312867,0.06940356704762653,0.005082910469097986,-0.013850695804743835,0.09526242605041566,0.34005067034282715 -2083,90,0.160547604739666,-0.0011882599155207511,-0.004616940081210599,0.06673393563292862,0.06856713594181378,0.1092672039516555,0.09048293665133947,0.005082910469097986,-0.008743380069434674,0.11951548745029132,0.3959647329729452 -2083,95,0.1734080195426941,-0.0008784282718859376,-0.0030512917243824497,0.06975339278911662,0.08284931326992764,0.11873878664138149,0.09603013713319236,0.005082910469097986,-0.006748212839520372,0.1339637129521133,0.42407265321309795 -2084,5,0.08354706354439259,-0.01690005198965358,-0.02879108341238665,0.0225106763781573,0.01187136481159576,0.03348957629926896,-0.0020167320639484084,-0.01677384327153863,-0.03624743381754968,0.046027386875491974,0.19584314458953048 -2084,10,0.09055916856229305,-0.012085917275140474,-0.024575515385534655,0.02526176886441091,0.015327509067249702,0.04292885007248447,0.002525301022589289,-0.01677384327153863,-0.03150536650064788,0.052632784925219986,0.2188459898290143 -2084,30,0.10792917616665364,-0.006057679802038841,-0.01722366733131004,0.03571536129509243,0.02503242034543644,0.06271551064453323,0.025235475563877657,-0.01677384327153863,-0.02328366278325976,0.0694877327403769,0.2697502308019299 -2084,33,0.1098257868602872,-0.005597649090477559,-0.016477760680898346,0.037328266191010324,0.026366409199878947,0.0649338394359356,0.02864200447765088,-0.01677384327153863,-0.02246665218384456,0.07155773654499292,0.2756534581777659 -2084,50,0.12100185574293136,-0.0037354331318220965,-0.01281448761434831,0.04578847420141155,0.03426354160727304,0.07646077413025898,0.047945648890686046,0.0051413347273634785,-0.01844823268658066,0.08263769155454032,0.30625988415504746 -2084,67,0.13313595085442065,-0.0024942473120219914,-0.009537236986679467,0.054423339071393274,0.04392431140611194,0.08795962504955011,0.0672492933037212,0.0051413347273634785,-0.014739848721412221,0.09439299119022747,0.33786283118031557 -2084,70,0.13540483227372171,-0.0023153957983592485,-0.008955996352228764,0.056365237205699484,0.046048309905114326,0.09018931695087495,0.07065582221749443,0.0051413347273634785,-0.014064733340322365,0.09673403873333898,0.343917821201009 -2084,90,0.1618469650000334,-0.0011974249608381624,-0.004682884385975099,0.06785950891617765,0.06964545383287034,0.11036572736283425,0.0922304859063784,0.0051413347273634785,-0.008874286884375433,0.12139531338314351,0.40056858114523736 -2084,95,0.17483149284720423,-0.0008841722259007808,-0.0030937723092657092,0.07092989398891494,0.08417515693584496,0.11994656391350862,0.09790803409600043,0.0051413347273634785,-0.0068389633983574165,0.13609546544286674,0.42911084607445815 -2085,5,0.08426144561469555,-0.017271202475668754,-0.029219936419750306,0.02267697662896925,0.012007325503266518,0.03374735912226604,-0.0024429853909644565,-0.016964455126897024,-0.03684153621587008,0.04654982354319923,0.1976595358405003 -2085,10,0.09142014650702476,-0.012336591951172367,-0.024941158876933833,0.025485903121666355,0.015510479169213299,0.043285711775961695,0.0022045167808612794,-0.016964455126897024,-0.03201522233955156,0.05328423269463732,0.2210511091754221 -2085,30,0.10903169994950294,-0.0061638843757695575,-0.017478405169076543,0.036159814774087855,0.025367395069456535,0.06328861801563607,0.025442034319629873,-0.016964455126897024,-0.023647125473377533,0.07044698751969806,0.2727555214894875 -2085,33,0.11095069935321808,-0.0056945780916750136,-0.016722219830383536,0.037819345374957465,0.026724554265538807,0.06552823839408264,0.028927664743749127,-0.016964455126897024,-0.022813737475869032,0.07255460622437514,0.2787433246012625 -2085,50,0.12225898071080447,-0.0037928741367804207,-0.013003403647840764,0.046470090936371965,0.03474370098439688,0.07718359246577572,0.0486795494294385,0.005199758985628973,-0.018736286818121166,0.08384627196421066,0.3098160058677124 -2085,67,0.1345448934674263,-0.0025276861243041823,-0.00967684479660818,0.05526050872329677,0.0445585325396704,0.08879898315313643,0.0684314389730478,0.005199758985628973,-0.014967841970746125,0.09580540143167023,0.34195952531337653 -2085,70,0.13684821970313787,-0.0023455778571961792,-0.00908749020870456,0.05726920193499681,0.0467085705797004,0.09105640673167062,0.071917074255087,0.005199758985628973,-0.014280938726572016,0.09817598674027943,0.34810420910923756 -2085,90,0.1636634940505028,-0.0012076992786808985,-0.0047485284148734135,0.06899241177973457,0.07066971242266411,0.11142393355667311,0.09399270607962928,0.005199758985628973,-0.009007870538807262,0.12323217979555053,0.4056369016854019 -2085,95,0.17672554015666248,-0.0008912663623485319,-0.0031365741873292984,0.07211405640469502,0.08542741864895514,0.12110597792609579,0.09980209821636127,0.005199758985628973,-0.00694198943128307,0.1381902697385787,0.4345663271019343 -2086,5,0.08510600236058236,-0.01763697316038734,-0.029667887870361846,0.02284089226288622,0.012153027484975137,0.0340182922375465,-0.002879380840330497,-0.017155066982255416,-0.03744345149194882,0.04708604270140929,0.1995690754104068 -2086,10,0.09236872693151237,-0.012587891369331194,-0.02532338165768043,0.02570822495733377,0.015710187362381844,0.04367209328326067,0.0018747866795679432,-0.017155066982255416,-0.03254884907518387,0.05395249229893875,0.22333832482795615 -2086,30,0.11024201979935169,-0.006272088762882224,-0.017745570199989628,0.03660407510275399,0.025721788018324844,0.06389350884792347,0.025645627315260107,-0.017155066982255416,-0.024029369470143256,0.07142705374954228,0.27590207330059063 -2086,33,0.11218209411799908,-0.005790747873943059,-0.016978311600149266,0.03831142502773986,0.027103616453776035,0.0661528006619147,0.029211253106993934,-0.017155066982255416,-0.023177440379692278,0.07358037620322527,0.2819878204360585 -2086,50,0.12366312678307295,-0.0038510811083851152,-0.013202056526650331,0.04715475742218304,0.035250806096322765,0.07793473377600328,0.049416461878552344,0.005258183243894467,-0.0190317558279992,0.08508744002864124,0.31356554202261505 -2086,67,0.13609498317986726,-0.0025610438609346784,-0.009823977166866314,0.05610191769412467,0.045227546345062083,0.08968068083072661,0.06962167793699066,0.005258183243894467,-0.015202327144736526,0.0972569214529365,0.34621344930883957 -2086,70,0.13840955777466296,-0.0023758130682062276,-0.00922505678671697,0.05817840955238934,0.04740813256431617,0.09196076950280296,0.07318730858664443,0.005258183243894467,-0.014500758609595238,0.09966676664478595,0.3524637436762395 -2086,90,0.16558363781720398,-0.00121854153692374,-0.00482071333481676,0.07013266040368836,0.0717607847447111,0.11253447432662687,0.095769606886932,0.005258183243894467,-0.009143524455118807,0.12513679338876882,0.41092562157204715 -2086,95,0.1788019561111927,-0.0008972802765939763,-0.003183858256741234,0.0733058969486334,0.08674892769929052,0.12229912458246485,0.10171231977843499,0.005258183243894467,-0.007041121798347172,0.1403420431001125,0.44023576955995825 -2087,5,0.08587878880798817,-0.01801523060543947,-0.03010709563904699,0.0230024289173004,0.012304946039292039,0.0343052950772613,-0.003325908088966663,-0.01734567883761381,-0.03806259418955228,0.047625481747195476,0.20145317019423326 -2087,10,0.09320866692066193,-0.012840065922888607,-0.02569849692302578,0.025928734371413156,0.015914306101224268,0.04406372888488222,0.001536120434549155,-0.01734567883761381,-0.03307636139217417,0.05461270206244648,0.22555155819118472 -2087,30,0.11126449999511241,-0.006378859776757817,-0.018009800689908574,0.037048696224520075,0.02607710388968509,0.06449623815300239,0.02584626426660823,-0.01734567883761381,-0.024406681488784894,0.07241034854796594,0.27883818760999146 -2087,33,0.11321867968440057,-0.005887111070064351,-0.017230274413645098,0.03880447893324851,0.02748168579057112,0.06677056415466653,0.02949278657010508,-0.01734567883761381,-0.023537994432203592,0.07459973809471916,0.2850381318275808 -2087,50,0.12479150516688825,-0.003908873377460305,-0.013398605025034215,0.04784247365884477,0.03575077502330856,0.07867930318924682,0.0501564008117874,0.005316607502159961,-0.019324926451054606,0.08632133302302909,0.3170685190883489 -2087,67,0.1373567189142108,-0.0025946951700233367,-0.009971184360613786,0.05694993791574248,0.04588176671524349,0.09054127081233086,0.07082002476930958,0.005316607502159961,-0.015434545974004982,0.09870437173105144,0.3501953800545187 -2087,70,0.13969395413249733,-0.002405639316550373,-0.009364377611709628,0.059092865218200015,0.0480947425654293,0.09284489041040161,0.07446654950176641,0.005316607502159961,-0.0147235585558824,0.10115504432373804,0.35653043758852526 -2087,90,0.16713903069496153,-0.0012279658773772335,-0.004894780705904978,0.07128024939467602,0.07283270023938711,0.1136113897018817,0.0975611883282865,0.005316607502159961,-0.009283363443894058,0.12702321255927368,0.4158019428609601 -2087,95,0.18047532297223806,-0.0009033542351335166,-0.0032324773676910123,0.07450540998333789,0.08804032854761866,0.12346719515176478,0.10363871821390135,0.005316607502159961,-0.007142908986563763,0.14247561049442228,0.44543286994942766 -2088,5,0.08619172131568194,-0.018388373980629855,-0.030546289730097972,0.0231615809548196,0.012457987435350629,0.034600312782381154,-0.003782577459952821,-0.017536290692972203,-0.03869837883892732,0.048162559874487136,0.20283974065389473 -2088,10,0.09358857897296548,-0.013095630898485684,-0.026073797909428896,0.026158217716394542,0.016120359363030447,0.044459881416115184,0.0011885077227250479,-0.017536290692972203,-0.0336084686535404,0.055277833354588204,0.22733673158004916 -2088,30,0.11194410002976656,-0.006487177204780077,-0.01827414808920682,0.0374936781393861,0.02643541009055732,0.06509859506337733,0.026043935457834372,-0.017536290692972203,-0.024784073353529328,0.07339931351953323,0.2814647439507509 -2088,33,0.11394772765040398,-0.005982718288811616,-0.01748243591409069,0.03928519063979393,0.02786039453401543,0.06739564887479567,0.029772248130362788,-0.017536290692972203,-0.0239026444839257,0.07562166319655858,0.28774432525904936 -2088,50,0.12569165680408478,-0.0039679826418087556,-0.013596245557716007,0.04853324480668008,0.03625237703391289,0.07942028353163547,0.050899361371223716,0.005375031760425455,-0.01962038055790568,0.08756629877857076,0.32031542694283255 -2088,67,0.1384579403400421,-0.0026289015594695604,-0.01011911100309186,0.05782602658058084,0.046538336251492875,0.09139813311402273,0.07202646975416471,0.005375031760425455,-0.015668075295741827,0.10016509757596795,0.3539847626746146 -2088,70,0.14078425063937902,-0.0024345636709075715,-0.009502277444381663,0.060012568932428824,0.04878433893149106,0.09372305630578212,0.075754792142533,0.005375031760425455,-0.014949431695379463,0.1026540708935316,0.360405303988136 -2088,90,0.16859086817800997,-0.0012381472468423276,-0.004968752068488366,0.07243518953942354,0.07389673726646694,0.11468528945016614,0.09936744068785296,0.005375031760425455,-0.00942858813842968,0.12890743036827776,0.42058534485611426 -2088,95,0.1820535946011543,-0.000908759780942963,-0.003282524993051099,0.07571260678359289,0.08933272786034087,0.12462630716228472,0.10558130323860021,0.005375031760425455,-0.007249403737689891,0.14459432891524376,0.4506042887563411 -2089,5,0.0866074703335762,-0.01876624098798939,-0.030986798117520507,0.023318356831532095,0.012616680720744155,0.03491155887217577,-0.004249381666409066,-0.0177269025483306,-0.03932509375517321,0.048702348713635615,0.20436144624519822 -2089,10,0.0940774255618453,-0.01335126824418124,-0.02644878051687584,0.026388724657365043,0.016331229999106273,0.044860450978877975,0.0008319552237355358,-0.0177269025483306,-0.03413737606104062,0.05594854674742725,0.22924632340903128 -2089,30,0.11279120556861162,-0.006596239154673949,-0.0185387592698458,0.03793901802865599,0.026797572993747912,0.06570656115327643,0.026238645746858465,-0.0177269025483306,-0.02516061182346798,0.07438509180105961,0.2842079605778203 -2089,33,0.11479020131081344,-0.006082444849345207,-0.01773470426709811,0.0397666013829705,0.028244238818192872,0.06802382418795147,0.03004964750360693,-0.0177269025483306,-0.024268365473518724,0.07665536204059152,0.2905917859034957 -2089,50,0.12669286794662477,-0.004025370489540571,-0.013796620518354055,0.0492270553847202,0.03676031846619867,0.08016069133082307,0.051645328983101486,0.0054334560186909495,-0.019917823092445497,0.08880829794995679,0.32370110451677164 -2089,67,0.13963353231847286,-0.0026626478040329663,-0.010269246483433789,0.05870695046800307,0.047195797699574014,0.09225954897719685,0.07324101289155602,0.0054334560186909495,-0.01590372630763218,0.10161917980403021,0.3578793800534335 -2089,70,0.1419509641751647,-0.002463176097219508,-0.00964298489060013,0.06093751037442991,0.04947608009669227,0.09460171611845201,0.07705201707726445,0.0054334560186909495,-0.015174708676636287,0.10414930981715716,0.364412380105696 -2089,90,0.17005104821622372,-0.001246970363303844,-0.005045074534415272,0.07359745387111598,0.07496067497353416,0.11575097795345725,0.10118837368147122,0.0054334560186909495,-0.009571757014843892,0.13080718172808742,0.4254510698474419 -2089,95,0.18366723834574222,-0.0009139220951198804,-0.0033330879049956416,0.07692745916243743,0.09062630585292336,0.1257869277087464,0.10754004570501197,0.0054334560186909495,-0.007361619729445432,0.1467602078684646,0.4558854253726459 -2090,5,0.0869776627421379,-0.019152746562527946,-0.03142478490082266,0.02347274527265352,0.01277212838321675,0.035212851467754956,-0.0047263182793754275,-0.01791751440368899,-0.039942591328804185,0.04925741672328393,0.20590074345342751 -2090,10,0.09459624793231487,-0.013614260114435112,-0.026821977100395595,0.026617721456697423,0.016540512806381313,0.0452582135448225,0.0004664659737805801,-0.01791751440368899,-0.034660900377822906,0.056598548734616595,0.23116686960302382 -2090,30,0.11359749890863896,-0.006706203239577661,-0.01880122179863056,0.038384718711025834,0.027156985809201242,0.06630906431108761,0.026430397562640484,-0.01791751440368899,-0.025538793838456607,0.07537766749609079,0.28695477507499617 -2090,33,0.1156632084801793,-0.006182811681555126,-0.01798688971772687,0.04025514507066595,0.028623361472262174,0.0686452976318139,0.030324987118797473,-0.01791751440368899,-0.024637355563812222,0.07768088426995197,0.2934290576998516 -2090,50,0.12769987308979036,-0.004083637338112657,-0.013994146862137775,0.049923920873933894,0.037261841294538744,0.08089370612017865,0.05239432307910047,0.005491880276956443,-0.020217860683385727,0.09004573218107306,0.3270438498366408 -2090,67,0.14083844861090183,-0.0026941456079730653,-0.010418351693976377,0.05959269409704038,0.047847816963794934,0.09311046715010741,0.0744636638973234,0.005491880276956443,-0.016139411682695406,0.1030762533348696,0.3617311067857473 -2090,70,0.14310830047875642,-0.0024926183426157173,-0.009782894304338104,0.06186770502517207,0.05016117751399434,0.0954664327897132,0.07835825831140032,0.005491880276956443,-0.01539789646339191,0.10564536008448056,0.3683682674958655 -2090,90,0.17149045987427236,-0.0012570263371331132,-0.005119211919871866,0.07476706396320527,0.07601238650443366,0.11680783915959783,0.10302398730914131,0.005491880276956443,-0.00970919443217811,0.1326974416067199,0.430313272454892 -2090,95,0.1851872292280197,-0.0009189256132266242,-0.0033853917301595797,0.07814998966944027,0.09190348920766742,0.12693632043960887,0.10951497476065623,0.005491880276956443,-0.007468062822715349,0.14887800559352377,0.46110787656335345 -2091,5,0.08737820219546556,-0.019545419741445063,-0.03186073408587878,0.023624754734272155,0.01289177938915807,0.03541879178944029,-0.005213397621931774,-0.018108126259047386,-0.04056410464956405,0.04975407559516952,0.20719222906699922 -2091,10,0.09504188308417798,-0.013875914093416087,-0.02719550003518873,0.02684520272102869,0.016715559708231555,0.04557835200416513,9.20320787402817e-05,-0.018108126259047386,-0.03519150300449407,0.057235221881513865,0.2328483989666934 -2091,30,0.11429981114566325,-0.00681588937837983,-0.019059011831539734,0.03883078018649562,0.02749071555976403,0.06685339219032561,0.02661918361830052,-0.018108126259047386,-0.025913905355748442,0.0763335031649979,0.2895095522920874 -2091,33,0.11636384101212024,-0.006283495326574473,-0.018234223678031097,0.04076439411901202,0.028972561763160178,0.06921672264488808,0.030598257260094543,-0.018108126259047386,-0.025003057074374266,0.07867636839025828,0.29606798647232574 -2091,50,0.12855678167194126,-0.004142962774151729,-0.014179814378878362,0.05062383095367533,0.03773696412774304,0.08159976487112836,0.05314632908546084,0.005550304535221938,-0.020506815990152867,0.09127695539404379,0.33020063841929653 -2091,67,0.14186931163668634,-0.0027269371291579773,-0.010552850891381567,0.06048326778833863,0.04848132167341457,0.09392962640721118,0.07569440819770704,0.005550304535221938,-0.01636398861280378,0.10452822729052834,0.3654471625793188 -2091,70,0.14410426292568446,-0.002521962347057593,-0.009910916546182917,0.06280313224336356,0.05083523436487138,0.0963081452206454,0.079673486697421,0.005550304535221938,-0.015611864292948665,0.1071239592502331,0.37219222877886465 -2091,90,0.1728307276159525,-0.001266321371368547,-0.0051813348101958714,0.07594401442232844,0.07706643989480955,0.11786766461782437,0.10487428157086322,0.005550304535221938,-0.009830298183100269,0.134608576850041,0.43505110267829217 -2091,95,0.18668532258272172,-0.0009244759081040507,-0.0034215600801377356,0.07938019266720923,0.09319291716871636,0.1280877363273826,0.11150606125801338,0.005550304535221938,-0.007560636036076837,0.15102953780979628,0.4663035975243003 -2092,5,0.08797279901355505,-0.019933033988899816,-0.032283415707894586,0.023774385216387993,0.013042431933354338,0.03570113974911278,-0.005710613621678183,-0.01829873811440578,-0.04116233056125834,0.050275524147264015,0.2087888800104092 -2092,10,0.0957034309320152,-0.014142463944961627,-0.027556828607345762,0.027084037454632472,0.016916582324446094,0.045954173616188955,-0.00029134403242539036,-0.01829873811440578,-0.0357077619048571,0.05788554401474698,0.23480691666627 -2092,30,0.1151999948322773,-0.00692664173035044,-0.019314048370533226,0.03927720809245754,0.0278357641794902,0.06742303095574433,0.02680500877175851,-0.01829873811440578,-0.026288433939316118,0.0773112276803716,0.29231413321974886 -2092,33,0.11728751852363349,-0.006382113645627879,-0.018477079605844104,0.04127492292744432,0.029335820828219908,0.06981257437767223,0.03086946278541808,-0.01829873811440578,-0.025365952288714626,0.07970435128039173,0.2989350412960585 -2092,50,0.12962495499253274,-0.0042029886522924895,-0.01437084634804027,0.05132680110491327,0.038220271014457,0.08230936268463912,0.05390135671802247,0.0056087287934874315,-0.020795854200793492,0.09250583694227617,0.33355811710001515 -2092,67,0.14302367291599513,-0.002760276971532026,-0.010696660985127546,0.06137867670222075,0.04910929505478747,0.09474687514304077,0.07693325550854681,0.0056087287934874315,-0.016596812581057177,0.10597770776250018,0.3693450082225955 -2092,70,0.14533772884905338,-0.002551781506101515,-0.01004449335852305,0.06374381783061907,0.051494286851613134,0.09713388283651113,0.08099771195116634,0.0056087287934874315,-0.01583051829112688,0.10862405996132761,0.37616198661941896 -2092,90,0.17431019837558268,-0.0012753112319553778,-0.005253396051916544,0.07712831064184848,0.07807873607743994,0.11887988046176674,0.10673924675079705,0.0056087287934874315,-0.009969429685986879,0.1364911835054307,0.43990108179497456 -2092,95,0.18829876356184402,-0.0009297379893494271,-0.0034707660443072733,0.0806180737931365,0.09442326615354903,0.12920057400807491,0.11351333434460303,0.0056087287934874315,-0.007662550821436154,0.15313184195331256,0.4715200944165801 -2093,5,0.08853708506077529,-0.02033123650491941,-0.03274322204736032,0.023921631081608854,0.013187903169090753,0.03597093102661256,-0.006217962027934709,-0.018489349969764174,-0.041804713863141975,0.05079889763750739,0.2103853891166888 -2093,10,0.09632987891733646,-0.014412443363184145,-0.027948758113916377,0.027321641943707065,0.017113592739557697,0.04632172523076392,-0.000683656287316514,-0.018489349969764174,-0.036256997524529044,0.05854142313979654,0.2367966295688484 -2093,30,0.11613336980342866,-0.007038359595135246,-0.0195868493630448,0.039723988335431136,0.028199630797983714,0.06801907968747646,0.026987875451974425,-0.018489349969764174,-0.026680230440055602,0.0783207768013652,0.2951606551396346 -2093,33,0.11821875429153443,-0.006482252291027407,-0.018739255067296595,0.0417840092080113,0.02972310903350832,0.07043678689058246,0.03113860612372805,-0.018489349969764174,-0.02573814939417257,0.08074428334675207,0.3018839517287899 -2093,50,0.13071828203201294,-0.004262507901839038,-0.014572560955807624,0.05203280552603309,0.03874057251023392,0.0830519196325284,0.054659405976785376,0.005667153051752926,-0.02110121331530051,0.0937830116251111,0.3370338152431829 -2093,67,0.14424336955307432,-0.002795150575000753,-0.010845052995506206,0.06227889503707209,0.04978336228167986,0.09560799340110424,0.07818019611400283,0.005667153051752926,-0.0168370516211954,0.10748055016968493,0.3733980847289598 -2093,70,0.14658899386525154,-0.0025817456866664102,-0.010185440275120467,0.06468974114564684,0.052213355199109614,0.09802599185368499,0.08233092921471642,0.005667153051752926,-0.016062705546229423,0.11017023235916588,0.38030932638161474 -2093,90,0.17581863707005976,-0.0012847730677327748,-0.005324594616852233,0.07831993644167642,0.07919742354508623,0.11998401727409012,0.1086188925647827,0.005667153051752926,-0.010107386184013491,0.1384740463760664,0.4449248297076399 -2093,95,0.19007320941984654,-0.0009351938022124563,-0.0035162322981538902,0.0818636161350455,0.09579698866098278,0.1304047830631281,0.11553677458874545,0.005667153051752926,-0.007764034877632775,0.15535887837322945,0.47693710529176636 -2094,5,0.08938179038390517,-0.020733813001685423,-0.033194892140795275,0.024066492329934734,0.013341315226201397,0.03625825140163052,-0.006735445876901314,-0.018679961825122566,-0.04245461045860689,0.0513535044929822,0.2122311227096392 -2094,10,0.09721530725061894,-0.01468492778082447,-0.028334521386573764,0.02755800795527885,0.017321848935748035,0.04671360148979349,-0.0010849083293730424,-0.018679961825122566,-0.03681942934342361,0.059213781736207706,0.23899955742555776 -2094,30,0.11710109547972679,-0.007152248623201779,-0.019858174377502535,0.04017112937150468,0.028568357564904733,0.06861491206333689,0.02716778608790823,-0.018679961825122566,-0.02707633235963764,0.07933155349560755,0.2981128474789191 -2094,33,0.11920831083506346,-0.006584997113212116,-0.018998160328384486,0.04228409800483874,0.030110967256629723,0.07105783453619821,0.03140568970398443,-0.018679961825122566,-0.026112201586815507,0.08179400010150892,0.3049074424196126 -2094,50,0.13178358491659165,-0.004323083645746099,-0.014774576881477184,0.052741864858326486,0.039259407893081015,0.08379282715629688,0.05542047200382961,0.00572557731001842,-0.021405710170970864,0.09506714636939897,0.340506050856951 -2094,67,0.14539959782212974,-0.002828699035495665,-0.010996043768988535,0.06318394859450731,0.050460336451125895,0.09647083480179995,0.07943525916159473,0.00572557731001842,-0.017075362781463755,0.10897013643890126,0.37736570024145 -2094,70,0.14772875113785267,-0.0026106885572890295,-0.010325879296256061,0.06564090734876982,0.052920622402434,0.0988969086571497,0.08367316277767092,0.00572557731001842,-0.016294755906925723,0.11169478370661187,0.38436705274821 -2094,90,0.17720287021994588,-0.0012931465483387097,-0.00539917089595227,0.07951890260853822,0.08030159684652412,0.12105516555197737,0.11051321901282019,0.00572557731001842,-0.010248278856291424,0.1404228659519238,0.44973384520452625 -2094,95,0.19149166593655895,-0.0009392613970138883,-0.0035669942268600845,0.08311683096772064,0.09713966537315254,0.13156704489748583,0.11757640142212038,0.00572557731001842,-0.007872283200916475,0.15757015108009706,0.48221402565101124 -2095,5,0.0897089984536171,-0.021136493170225257,-0.03363923071822818,0.024208980236150007,0.013493859772106981,0.03653653796120772,-0.007263071848217911,-0.01887057368048096,-0.043096807928053184,0.05188134916503758,0.21361790801504174 -2095,10,0.09765815925598144,-0.014959131315712313,-0.028713937715780756,0.0277931380695093,0.01752885461995113,0.047088523964839694,-0.0014951074454748823,-0.01887057368048096,-0.03737368610268768,0.059873899180123334,0.24083138167747686 -2095,30,0.1178500216215849,-0.00726543313547429,-0.020124706822457837,0.04061863683807036,0.028927598802726096,0.06919928833105943,0.027344723676840144,-0.01887057368048096,-0.027473082840746517,0.08032039314903905,0.3007669701756663 -2095,33,0.1199453910112381,-0.006686721164323896,-0.019252747791963686,0.042785181877138444,0.03049452854236485,0.0716688048672355,0.03167069895242739,-0.01887057368048096,-0.026491363122976258,0.08284950117420832,0.3076209848443992 -2095,50,0.13267955640256404,-0.004382498615028722,-0.014973299975352794,0.05345397394147054,0.039764989878111556,0.08451178852997017,0.056184549941235236,0.005784001568283914,-0.02170610853159419,0.09633287083373292,0.34376579068264757 -2095,67,0.146454664953053,-0.002861762264059561,-0.011144017148847305,0.06409383221420345,0.051125506293465926,0.0973071595382459,0.08069840093004307,0.005784001568283914,-0.017313331120212425,0.11046165274540483,0.3811566066802451 -2095,70,0.1488050651550293,-0.0026412668958015165,-0.010464852933981762,0.06659732676063386,0.05361987627633044,0.09975534359068214,0.08502437377667035,0.005784001568283914,-0.01652246542456173,0.11323407771879192,0.38825123816463886 -2095,90,0.17855507491528985,-0.0013019781845702006,-0.005472501275987843,0.08072521453579691,0.08137399346341251,0.12211390179322974,0.11242222609490947,0.005784001568283914,-0.010386845041724279,0.1423678066453314,0.45454589642289595 -2095,95,0.1930310435831547,-0.0009433976790659882,-0.0036151215968289454,0.08437772392855407,0.09845314962401434,0.13270979475855568,0.11963217598136833,0.005784001568283914,-0.007976842071605312,0.1597527086426303,0.48749914440954273 -2096,5,0.08975064962804317,-0.021545407824777818,-0.03406939228926591,0.024349080706774207,0.013644722627030542,0.03681837695266622,-0.007800832047764602,-0.019061185535839353,-0.04369235366232209,0.052397739283191046,0.2147303580397826 -2096,10,0.09788013746291399,-0.015236699408641722,-0.029081173101960803,0.028027027126075476,0.017731746323283747,0.04747108546717021,-0.0019142439197821584,-0.019061185535839353,-0.037906316624471546,0.06053513758436751,0.242364324344186 -2096,30,0.11836296712875359,-0.007381302938479017,-0.02038309235928391,0.04106649664164771,0.029278792527025255,0.06977385056739052,0.027518707650449923,-0.019061185535839353,-0.0278524539990352,0.08131762568837565,0.30316966929108075 -2096,33,0.12043189022839068,-0.006791220277178149,-0.01949943859214473,0.0432872689149549,0.030866156727208917,0.0722634397388476,0.0319336533007367,-0.019061185535839353,-0.026859841891388334,0.08387542990694438,0.31007427204153 -2096,50,0.1333827891021967,-0.0044428629270048805,-0.015168322252259859,0.05416912761514233,0.04025725335819679,0.0852173368194046,0.056951649504842126,0.005842425826549408,-0.022004348268510266,0.09758641848856953,0.34678859636104264 -2096,67,0.14722491584569214,-0.0028953635136973327,-0.011289861853457917,0.06500853557551468,0.05176543808990558,0.09811459519339179,0.08196965542478743,0.005842425826549408,-0.017551314122795553,0.11194224484183751,0.3847090152382864 -2096,70,0.14969486197531223,-0.002672224879025917,-0.010601748674529383,0.06753574417592294,0.05429182914687756,0.10059033393377498,0.0863846010750742,0.005842425826549408,-0.016749724409302044,0.11474467925316054,0.39191603688270465 -2096,90,0.17960585297346116,-0.001310373489780552,-0.005546080231059545,0.08193886143672646,0.08240870203568948,0.12313189755632824,0.11434591381105057,0.005842425826549408,-0.01052771219076503,0.14426508050377723,0.45916087239227193 -2096,95,0.19431444219946864,-0.0009463003595067458,-0.003664403736795629,0.08564628374276143,0.09971000422621865,0.13381517494115397,0.12170414684568866,0.005842425826549408,-0.00808068258455767,0.16186128604601013,0.49249922949238956 -2097,5,0.09024503696411848,-0.021959575787843983,-0.03451899891148789,0.02448679937919952,0.013793174032650244,0.037089976932848184,-0.0083487410493012,-0.01925179739119775,-0.04434176728637383,0.05293122094779997,0.2161819440091356 -2097,10,0.09841381347924472,-0.015516691601353763,-0.029465291416677957,0.028259675124977388,0.0179354293826089,0.0478483138128716,-0.002342332326054683,-0.01925179739119775,-0.038452569273232456,0.061191261772471806,0.2441322064629206 -2097,30,0.11905067699849606,-0.007497816860050783,-0.020652104868198674,0.04151471723832501,0.029640609043913465,0.07035190055089809,0.027689721006017777,-0.01925179739119775,-0.028238564119942387,0.08232322671465919,0.305758425915168 -2097,33,0.12113614549040794,-0.006893519827932433,-0.01975689921549054,0.04379035372492512,0.031244797904598273,0.07286646933622674,0.03219452845931265,-0.01925179739119775,-0.027234268907820908,0.08493009498148635,0.3127524508139534 -2097,50,0.13419503022432328,-0.004503910879422458,-0.015367515456599368,0.05488733103966477,0.04076717250627437,0.08594521712471051,0.057721765836730346,0.0059008500848149025,-0.022304940527234467,0.09886784988170233,0.3499804047889453 -2097,67,0.1481298351407051,-0.0029282361086756317,-0.011438330007578741,0.06592806899908686,0.05243736769568076,0.0989557333211318,0.08324900807206798,0.0059008500848149025,-0.01778793937947366,0.11344556820758946,0.3883790571468806 -2097,70,0.15061284431815147,-0.0027022706552187557,-0.010740483792726076,0.06847559892650742,0.05499706615742314,0.10145421552299125,0.08775381552536285,0.0059008500848149025,-0.016978377187570393,0.11629057057062263,0.39568876593453134 -2097,90,0.18066693601012232,-0.0013187675064533734,-0.0056185209148342475,0.08315984870468991,0.08350832504560966,0.12417588647334184,0.11628426272956374,0.0059008500848149025,-0.01066663043772914,0.1462164273473663,0.4638280808345127 -2097,95,0.19549255141466856,-0.0009496373173619543,-0.003712340588932807,0.0869225160477349,0.1010460030525467,0.13496431132641762,0.12379227515172186,0.0059008500848149025,-0.008184246838280786,0.1640525007137467,0.4975433295251606 -2098,5,0.09079303202852607,-0.022381809841406287,-0.03497008616701396,0.02462213625342595,0.013927417845705036,0.037313739237503515,-0.008906768490828094,-0.01944240924655614,-0.04497055666876252,0.05343964236902908,0.21765951378974382 -2098,10,0.09903943186998368,-0.015798920957905725,-0.02984923875010383,0.028491087226537953,0.018120501074744673,0.04817494784949853,-0.0027793447312528157,-0.01944240924655614,-0.03900570558309407,0.06183431096770318,0.24597209422782088 -2098,30,0.11994786810874938,-0.007615017650596999,-0.02091784725432623,0.041963304265494446,0.029985146459655276,0.07091408312292492,0.027857780746263494,-0.01944240924655614,-0.0286248926778251,0.08332035282911968,0.30850860999914415 -2098,33,0.12202041751742364,-0.006998008097627997,-0.020012671797059078,0.044294441700412086,0.03161170931812973,0.07345143422821007,0.03245334871775495,-0.01944240924655614,-0.027607130069542386,0.08596326757993317,0.31562768599121177 -2098,50,0.13523020928353072,-0.004566587007364025,-0.015561957285245603,0.0556085893753608,0.041263099034679784,0.08664725535180548,0.058494903794819836,0.005959274343080396,-0.022602132960400652,0.10013618653290396,0.3533547657795062 -2098,67,0.1492607801347971,-0.002962310832425249,-0.011580866285665129,0.06685242216427412,0.05309734189498588,0.09978176879811686,0.08453645401396478,0.005959274343080396,-0.018018378821234984,0.11494407131927994,0.39231519034868345 -2098,70,0.1517741926163435,-0.0027322001987528733,-0.010875163320621238,0.06942015526217561,0.05568591487135572,0.10230557230931028,0.08913202684337618,0.005959274343080396,-0.01720017126666573,0.11782652808033581,0.3997579082130295 -2098,90,0.18210243774652482,-0.001326304915583569,-0.0056827511108158936,0.08438818173305021,0.08459139339776627,0.12522900496061648,0.11823729228212872,0.005959274343080396,-0.01079591269069975,0.14818799100582392,0.4687273502176474 -2098,95,0.19705383685529232,-0.0009521838500560645,-0.003753595823715578,0.08820642648086668,0.10239876155916451,0.1361051399777178,0.1258965803311477,0.005959274343080396,-0.008281141959698417,0.16625980575851648,0.5029185556829239 -2099,5,0.0912193076312542,-0.022807886760494483,-0.03540399477098723,0.024755094148149585,0.014061337962306356,0.03755753613678575,-0.009474939876424959,-0.019633021101914536,-0.04561287941589384,0.053949473918692245,0.21895401835979567 -2099,10,0.09953763499557972,-0.016079637872268782,-0.030220508714614822,0.028721260850595717,0.01830567675019324,0.048519672138258266,-0.0032253042104962593,-0.019633021101914536,-0.03953849908069196,0.06247707058456783,0.2476731949162369 -2099,30,0.12070864586532115,-0.007730050762212834,-0.021174958083252166,0.042412249267067735,0.030330267176126906,0.07147142404492854,0.028022882013267133,-0.019633021101914536,-0.02900074872609588,0.08431119296736647,0.31115326536603866 -2099,33,0.12280526325851679,-0.007102621655604943,-0.020261406579578516,0.04479953014473432,0.03197702938643458,0.07402694692446764,0.03271010921814365,-0.019633021101914536,-0.027975192158290387,0.0869939664466769,0.3183494439457065 -2099,50,0.13616470539793374,-0.004626133211412705,-0.015752882317965945,0.05633288714126163,0.041753576262573824,0.08732712015086991,0.059271058521190655,0.006017698601345891,-0.022900543638917033,0.10138942788568908,0.3566540640765493 -2099,67,0.15032407987713814,-0.0029968284017995016,-0.011721359763758378,0.06778161055204523,0.05373491010408352,0.10058549532014362,0.0858320126821576,0.006017698601345891,-0.01825451847788986,0.11642802274791657,0.39615324357950765 -2099,70,0.15288261492550373,-0.0027619973970641463,-0.01100768783090236,0.07036941318292754,0.056363530897672535,0.10313807791287048,0.09051924474495404,0.006017698601345891,-0.01742288983684322,0.11936024109020926,0.4036941170957627 -2099,90,0.18354737984091044,-0.0013347893721965913,-0.005751260108331998,0.08562384973508141,0.08563834883879451,0.12624730090254654,0.12020503161626514,0.006017698601345891,-0.010924841438235938,0.15013245011926996,0.47360026683397455 -2099,95,0.19864719637632372,-0.0009564429940881856,-0.0037973152901749833,0.0894980037673724,0.10368646731706234,0.13720527321257014,0.12801707209980606,0.006017698601345891,-0.0083783433033278,0.168464360900473,0.5082589027435137 -2100,5,0.09175164632499218,-0.023229288988125634,-0.035858399815714814,0.02488567024467433,0.014188692591185206,0.03777944778326466,-0.010053249133691869,-0.01982363295727293,-0.0462960237145146,0.05445722102110567,0.2204519521312553 -2100,10,0.10013713685050607,-0.016365414007907083,-0.030613276111826196,0.028950195997150676,0.01849502020074547,0.04886160234094399,-0.0036802059058650767,-0.01982363295727293,-0.04008552485752377,0.06311674431571668,0.2495262862143255 -2100,30,0.12159980932176113,-0.007849373705509827,-0.021444980600122832,0.04286155224304489,0.03068522129805891,0.0720368251748878,0.02818501509118882,-0.01982363295727293,-0.029397076552257744,0.08531064137413195,0.313976532350874 -2100,33,0.12377075560688973,-0.00721031077249586,-0.020521516541833984,0.0453056190578918,0.03235434982783987,0.07461390451080119,0.03296479538671895,-0.01982363295727293,-0.028357390979895276,0.0880360918735007,0.32126314328851985 -2100,50,0.1371753405481577,-0.004688527449167295,-0.01595154870289918,0.057060239818336043,0.04226660958100401,0.08804114934415037,0.06005022515792286,0.0060761228596113845,-0.02320829742242886,0.10267926269663456,0.36014036175584885 -2100,67,0.15160728479558275,-0.003031108872064509,-0.011865975841770335,0.06871562384175436,0.05441555138163438,0.10142554097470093,0.08713565492912678,0.0060761228596113845,-0.018491842284944535,0.11793867237885099,0.40022884057310754 -2100,70,0.1542211723163724,-0.0027912444938084104,-0.011142226292670651,0.07132337268876317,0.05707100966204223,0.10399159393701769,0.09191544008257684,0.0060761228596113845,-0.01764966701461718,0.12092482978401622,0.4079433556820319 -2100,90,0.1851145754635334,-0.0013437794695178606,-0.0058187205650782675,0.08686685271078348,0.08675761533817151,0.12730323788782133,0.122187403005254,0.0060761228596113845,-0.01105724998192351,0.15214150923746134,0.47877771572391814 -2100,95,0.20033668273687363,-0.0009598030562998854,-0.0038385077186049183,0.09079724790725203,0.1050330476519194,0.13835207546394795,0.13015370187849756,0.0060761228596113845,-0.008470499424715762,0.1707328706946201,0.5139132030987965 diff --git a/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp45_projection_2100_global.csv b/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp45_projection_2100_global.csv deleted file mode 100644 index c2fbce5..0000000 --- a/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp45_projection_2100_global.csv +++ /dev/null @@ -1,847 +0,0 @@ -year,percentile,exp,antdyn,antsmb,greendyn,greensmb,glacier,landwater,antnet,greennet,sum -2007,5,0.008229974657297134,0.0027299541980028152,-0.00019024289213120937,0.0016894025029614568,0.0014904462615959347,0.009865183383226395,0.0002794466563500464,0.0026003383100032806,0.0032215165556408465,0.02476743524371159 -2007,10,0.009173440746963024,0.0027500782161951065,-0.0001599828974576667,0.0017016869969666004,0.0015029923524707556,0.010186166502535343,0.00028879407909698784,0.0026425049582030624,0.003244227496907115,0.026038945989057538 -2007,30,0.011815459467470646,0.002831880934536457,-0.0001073703242582269,0.0017332754796370864,0.0015370583743788302,0.010853993147611618,0.0003355311928316951,0.0027429508820205227,0.00330113674281165,0.029400606065246394 -2007,33,0.012121230363845825,0.0028439889079891144,-0.00010205431317444891,0.0017402952071279287,0.00154157227370888,0.010924169793725014,0.0003425417235121131,0.0027571243190323003,0.003308123027672991,0.029818229429984057 -2007,50,0.013442737981677055,0.002913743257522583,-7.654178625671193e-05,0.0017701288452371955,0.0015684564714320004,0.011318678501993418,0.00038226827746257186,0.002832439073245041,0.0033452652278356254,0.03152719994614017 -2007,67,0.014706665650010109,0.002984089271631092,-5.35062063136138e-05,0.0017964525613933802,0.001600855146534741,0.011782738026231528,0.0004219948314130306,0.0029089518775435863,0.0033842173870652914,0.033106355798154255 -2007,70,0.01493541244417429,0.002997269877232611,-4.925956091028638e-05,0.0018034722888842225,0.0016080625355243683,0.01188282947987318,0.00042900542030110955,0.002923197029485891,0.0033920287154614926,0.0334307287223055 -2007,90,0.01763715222477913,0.0030866435263305902,-1.887162943603471e-05,0.0018420804990455508,0.0016849985113367438,0.012807788979262113,0.0004734056710731238,0.0030250579366111197,0.003473164769820869,0.0365335078415228 -2007,95,0.018670156598091125,0.0031142900697886944,-8.972326759249077e-06,0.0018508550710976124,0.0017325662774965167,0.013223980087786913,0.00048508995678275824,0.003060682878640364,0.0035207918379455802,0.03787797319309902 -2008,5,0.00942226778715849,0.0029588909819722176,-0.0003722738183569163,0.0019223066046833992,0.0015177444263827055,0.009918984957039356,0.0005511200288310647,0.002709460473852232,0.0035240621014963835,0.027123401036715223 -2008,10,0.010384301654994488,0.003000084310770035,-0.00031190270092338316,0.0019474038854241371,0.0015427843434736132,0.010459965839982033,0.0005707318778149784,0.0027935943799093366,0.0035700987791642547,0.02869841980791534 -2008,30,0.013078315183520317,0.003166733542457223,-0.00020666010095737875,0.0020119398832321167,0.0016108984127640724,0.011618562042713165,0.0006687914719805121,0.0029973652126500383,0.0036848414922133086,0.03265678184252465 -2008,33,0.013390103355050087,0.003191432380117476,-0.00019625165441539139,0.0020262813195586205,0.0016195097705349326,0.011739669367671013,0.0006835003150627017,0.0030262009386206046,0.0036987857951316983,0.03310978279536357 -2008,50,0.01473761722445488,0.003334362991154194,-0.00014519999967887998,0.002087231958284974,0.0016730890492908657,0.012390101328492165,0.0007668508915230632,0.0031801401200937107,0.0037737214006483555,0.03510122626175871 -2008,67,0.016026418656110764,0.0034806386055424815,-9.931124077411368e-05,0.002141011878848076,0.0017373837938066575,0.013119114385917783,0.0008502015843987465,0.0033385501301381737,0.0038522755319718273,0.03696701826731442 -2008,70,0.01625966653227806,0.0035084845032542942,-9.102411422645673e-05,0.0021553533151745796,0.001751153962686658,0.013269010931253433,0.000864910485688597,0.003368482786754612,0.0038676489843055607,0.0373405848396942 -2008,90,0.019014576449990273,0.0037072808481752872,-3.0072495064814575e-05,0.0022342305164784193,0.0019043567590415478,0.014703273307532072,0.0009580671321600676,0.003590644191717729,0.004029212985187769,0.04087927782384213 -2008,95,0.020067911595106125,0.0037783479783684015,-9.629442502046004e-06,0.002252157311886549,0.0019974501337856054,0.015367973549291487,0.0009825819870457053,0.0036765826298506,0.004123428312595934,0.04248074392889976 -2009,5,0.010274065658450127,0.0031868102960288525,-0.0005692910635843873,0.002153712324798107,0.0015511831734329462,0.01009910828433931,0.0008150199428200722,0.0028050837499904446,0.0038332093332428484,0.029350616334522784 -2009,10,0.011347959749400616,0.003250018460676074,-0.00047732802340760827,0.002192151267081499,0.0015892701921984553,0.010831926017999649,0.000845813425257802,0.0029333486745599657,0.0039036007947288454,0.031242374316479984 -2009,30,0.014355217106640339,0.003504558000713587,-0.0003167155955452472,0.0022909934632480145,0.0016932578524574637,0.012393906712532043,0.0009997807210311294,0.003244493762758793,0.004079043201636523,0.03594311278720852 -2009,33,0.014703258872032166,0.00354233036050573,-0.0003008127387147397,0.002312958473339677,0.0017063368577510118,0.012557171313092112,0.0010228757746517658,0.0032890866277739406,0.004100471858400852,0.036462478659814224 -2009,50,0.01620745286345482,0.003761859377846122,-0.00022301705030258745,0.0024063095916062593,0.0017881286912597716,0.013431687373667955,0.0011537481332197785,0.0035254467802587897,0.004215159686282277,0.03882661568786716 -2009,67,0.01764610968530178,0.0039896487211808565,-0.00015299892402254045,0.0024886783212423325,0.0018863402074202895,0.014393134973943233,0.0012846202589571476,0.0037716275546699762,0.004335137617308646,0.04107562266290188 -2009,70,0.01790647953748703,0.004033643938601017,-0.00014021109091117982,0.002510643098503351,0.0019073542673140763,0.014589563012123108,0.0013077154289931059,0.0038195444285520352,0.0043585945153608915,0.041521356368320994 -2009,90,0.020981712266802788,0.0043619126081466675,-4.730471955554092e-05,0.0026314505375921726,0.0021412610076367855,0.01645800843834877,0.0014539845287799835,0.004181875416543335,0.0046054774429649115,0.04569964717666153 -2009,95,0.022157521918416023,0.004492173902690411,-1.602126758371014e-05,0.002658906625583768,0.0022834530100226402,0.017332224547863005,0.001492476207204163,0.00433038741175551,0.004749444650951773,0.047645570761960694 -2010,5,0.011335372924804688,0.0034137119073420763,-0.0008042361587285995,0.002383620012551546,0.001569479936733842,0.00996096059679985,0.0010711464565247297,0.0028763834852725267,0.004131592338671908,0.031343098846264184 -2010,10,0.012474281713366508,0.0034998804330825806,-0.0006716916686855257,0.002435928676277399,0.0016231626505032182,0.01092272037640214,0.0011140386341139674,0.003058027272345498,0.004230084456503391,0.03361100545262161 -2010,30,0.015663601458072662,0.0038453543093055487,-0.0004397040174808353,0.002570436103269458,0.001772689982317388,0.013067109510302544,0.0013284990563988686,0.0034931106289150192,0.004474669927731156,0.03914268588705454 -2010,33,0.016032714396715164,0.003896683161146939,-0.00041662759031169116,0.002600326668471098,0.001792507478967309,0.013290062360465527,0.0013606681022793055,0.0035487159329932183,0.004504478538874537,0.0397384151937149 -2010,50,0.017627974972128868,0.004196232184767723,-0.000305041583487764,0.0027273616287857294,0.0019100001081824303,0.014435678720474243,0.0015429593622684479,0.00387461505306419,0.004663931322284043,0.04248530519544147 -2010,67,0.01915372908115387,0.00451111821923405,-0.00020440792082808892,0.002839451190084219,0.0020494188647717237,0.01566347222775221,0.001725250855088234,0.004214459942886606,0.004832559503847734,0.04509396663677762 -2010,70,0.01942986063659191,0.004572747927159071,-0.00018603239150252204,0.002869341755285859,0.00207995749078691,0.01591876894235611,0.0017574199009686708,0.004282394569600001,0.0048662517219781876,0.045616937745944594 -2010,90,0.02269127406179905,0.005050537642091513,-5.179455547477119e-05,0.0030337399803102016,0.0024151925463229418,0.018270509690046313,0.001961157424375415,0.004807468850049191,0.005217508296482265,0.050437325466191396 -2010,95,0.023938268423080444,0.005255767144262791,-5.994080311211292e-06,0.0030711032450199127,0.002621992025524378,0.019398171454668045,0.0020147725008428097,0.0050360107303276894,0.005425760697107762,0.05269900935381883 -2011,5,0.01258755661547184,0.00363959651440382,-0.0010417817626148461,0.0026120292022824287,0.0016022146446630359,0.010102792596444487,0.0013194996863603592,0.0029397746548056602,0.004443408892257139,0.03395551033463562 -2011,10,0.013784435577690601,0.0037496699951589108,-0.000871053955052048,0.002678736113011837,0.001671685604378581,0.01126901712268591,0.0013754075625911355,0.0031745391024742275,0.004569892887957394,0.03648687543900451 -2011,30,0.017136093229055405,0.0041891224682331085,-0.0005710058030672371,0.002850267803296447,0.0018651392310857773,0.013825938105583191,0.0016549464780837297,0.0037316292873583734,0.00488399596652016,0.04260319561581127 -2011,33,0.0175239946693182,0.004254490467719734,-0.0005412993737263605,0.0028883861377835274,0.0018906547408550976,0.014091147109866142,0.0016968772979453206,0.003801759914495051,0.004922507768496871,0.04326336213038303 -2011,50,0.019200453534722328,0.004637482110410929,-0.0003970886755269021,0.003050388302654028,0.0020427757408469915,0.015461264178156853,0.001934485393576324,0.004220060360239586,0.0051265505608171225,0.04631940215767827 -2011,67,0.020803870633244514,0.005045048967003823,-0.00026714990963228047,0.00319333141669631,0.0022234232164919376,0.01691387651488185,0.002172093605622649,0.004660432845412288,0.005343981068581343,0.04925737610523356 -2011,70,0.021094055846333504,0.0051257970277220006,-0.00024335998750757426,0.003231449518352747,0.002263067988678813,0.017214768193662165,0.002214024541899562,0.004750017251353711,0.005387611221522093,0.04983101422694745 -2011,90,0.0245214756578207,0.0057731568813323975,-6.991623376961797e-05,0.0034410993102937937,0.0026972435880452394,0.019975844770669937,0.0024795865174382925,0.005454560334328562,0.005841541104018688,0.05520343067473732 -2011,95,0.02583194151520729,0.006069128401577473,-1.168072899417904e-05,0.0034887471701949835,0.002965169493108988,0.02130740825086832,0.0025494713336229324,0.005777028450393113,0.0061112570110708475,0.05772272029716986 -2012,5,0.013811971992254257,0.0038644634187221527,-0.0012820952164474873,0.0028389403596520424,0.0016422970220446587,0.010354802943766117,0.0015600797487422824,0.0029992766212671995,0.004762134229531511,0.03667819046204386 -2012,10,0.01508180983364582,0.0039993878453969955,-0.0010737013071775436,0.0029205738101154566,0.0017275080317631364,0.011696481425315142,0.0016299202106893063,0.00328559527406469,0.0049171637743711475,0.03947396023577312 -2012,30,0.018637778237462044,0.004535862244665623,-0.0007074878667481244,0.0031304885633289814,0.0019637443358078597,0.01460636593401432,0.0019791231025010347,0.003966030897572637,0.00530172202270478,0.04613530499336775 -2012,33,0.019049324095249176,0.00461575236171484,-0.0006710535380989313,0.003177136415615678,0.0019951085560023785,0.014902220461517573,0.002031503478065133,0.004053205426316708,0.005348665817873553,0.04685830103699118 -2012,50,0.02082797884941101,0.005085608456283808,-0.0004947070847265422,0.0033753893803805113,0.002182349213398993,0.01647297292947769,0.0023283257614821196,0.004566072602756321,0.0055986211518757045,0.0502197781461291 -2012,67,0.022529134526848793,0.005591439562849702,-0.0003359550901222974,0.0035503183025866747,0.002403837065212432,0.018128657005727293,0.002625148044899106,0.005113495804835111,0.00586478325072676,0.05347386685141828 -2012,70,0.022837011143565178,0.005692790821194648,-0.0003063787240535021,0.003596966154873371,0.0024521765299141407,0.018472920730710028,0.002677528653293848,0.005227342975558713,0.005918369954451918,0.054113245996995823 -2012,90,0.026473358273506165,0.006529770791530609,-9.538193990010768e-05,0.0038535285275429487,0.002985897706821561,0.02160222101956606,0.003009271342307329,0.006134006136562675,0.006476210663095117,0.060030100954463705 -2012,95,0.02786370925605297,0.006932257674634457,-2.3919874092827008e-05,0.003911837935447693,0.003313835710287094,0.023110881447792053,0.0030965718906372786,0.006565365250571625,0.0068056206451728935,0.06279431478469633 -2013,5,0.015280546620488167,0.004088312853127718,-0.0015443468000739813,0.0030643530189990997,0.0016888019163161516,0.010684386175125838,0.0017928860615938902,0.003038609051145613,0.005087736458517611,0.03975069583248114 -2013,10,0.016588643193244934,0.004249033518135548,-0.0012940007727593184,0.003161441534757614,0.001789835630916059,0.012189896684139967,0.0018775764619931579,0.003382223891094327,0.0052725363988429304,0.042746630977489986 -2013,30,0.020251745358109474,0.0048855748027563095,-0.0008578930806834251,0.0034110983833670616,0.0020729871466755867,0.015427292510867118,0.0023010284639894962,0.004191093612462282,0.0057316951337270435,0.04982514012372121 -2013,33,0.020675690844655037,0.004980468843132258,-0.0008145375759340823,0.003466577734798193,0.0021098130382597446,0.015759754925966263,0.002364546060562134,0.004296757921110839,0.005787645471282303,0.050596962589479516 -2013,50,0.022507932037115097,0.00554061122238636,-0.0006031258380971849,0.003702364629134536,0.002334874588996172,0.017529986798763275,0.002724480116739869,0.004908201604848728,0.0060862284153699875,0.054234451410593465 -2013,67,0.024260342121124268,0.006150290630757811,-0.0004129501467105001,0.003910412080585957,0.0026014975737780333,0.019387178122997284,0.0030844141729176044,0.0055701728485291835,0.006404350702650846,0.057763848977629095 -2013,70,0.024577492848038673,0.0062737294472753995,-0.0003783259307965636,0.003965891432017088,0.0026585781015455723,0.019768528640270233,0.0031479322351515293,0.005706168652977794,0.006468834145925939,0.058459646825212985 -2013,90,0.028323397040367126,0.007320377975702286,-0.00012589397374540567,0.004271027632057667,0.0033002041280269633,0.023271748051047328,0.0035502114333212376,0.006837628781795502,0.007138632261194289,0.06483348868787289 -2013,95,0.029755637049674988,0.007845154963433743,-4.112490205443464e-05,0.004340376704931259,0.0036933892406523228,0.024963125586509705,0.0036560744047164917,0.007391141899279316,0.007533663418143988,0.06783768222667275 -2014,5,0.01662345789372921,0.004311145283281803,-0.0018155163852497935,0.0032882671803236008,0.0017540724948048592,0.011280372738838196,0.0020179194398224354,0.0030664439545944333,0.005434273037826643,0.04301788471639156 -2014,10,0.017991479486227036,0.004498607013374567,-0.0015257358551025388,0.003401339752599597,0.0018741115927696228,0.01292260829359293,0.002118376549333334,0.003464116482064128,0.005649811844341457,0.04618074678000994 -2014,30,0.02182239294052124,0.00523825827986002,-0.0010216932278126478,0.0036920972634106874,0.0022027287632226944,0.016361549496650696,0.0026206630282104015,0.004402719480276573,0.0061827467288821936,0.053622314298991114 -2014,33,0.022265758365392685,0.0053486399073153735,-0.0009713359177112579,0.0037567103281617165,0.0022449686657637358,0.016727838665246964,0.0026960058603435755,0.004526247386820614,0.006248184269061312,0.05443825130176265 -2014,50,0.02418193593621254,0.006002491340041161,-0.000727359380107373,0.004031314514577389,0.0025052414275705814,0.018654602579772472,0.0031229492742568254,0.005243040563073009,0.006595137063413858,0.0583382076874841 -2014,67,0.026014626026153564,0.006721601393073799,-0.0005063842399977148,0.004273612983524799,0.0028173751197755337,0.020693971440196038,0.0035498926881700754,0.006023717622156255,0.006965880515053868,0.0621392862754874 -2014,70,0.02634630724787712,0.0068686121143400666,-0.00046595205203630034,0.004338225349783897,0.0028848249930888414,0.021111510694026947,0.0036252355203032494,0.006187218421837314,0.007041030446998774,0.06289063442964107 -2014,90,0.030263813212513924,0.008144979365170002,-0.00017515594663564116,0.0046935961581766605,0.0036316460464149714,0.02494118791073561,0.004102407954633236,0.007555073680123314,0.007820739410817623,0.06971883022342809 -2014,95,0.031761664897203445,0.00880782026797533,-8.008680742932484e-05,0.004774361848831177,0.004085642751306295,0.026772363111376762,0.0042279791086912155,0.00825242690189043,0.008281651232391595,0.07294442859711125 -2015,5,0.017366506159305573,0.004532960243523121,-0.002079466823488474,0.00351068377494812,0.0018132282420992851,0.011716378852725029,0.0022351795341819525,0.0030997053254395723,0.005772088875528425,0.045523549139034 -2015,10,0.018873430788517,0.004748108796775341,-0.0017501550260931253,0.0036402682308107615,0.0019513657316565514,0.013498125597834587,0.0023523208219558,0.0035531908506527543,0.006017377856187523,0.048941876069875434 -2015,30,0.023093316704034805,0.005593914072960615,-0.0011800553184002638,0.00397348590195179,0.0023239082656800747,0.017183198034763335,0.0029380270279943943,0.004623773391358554,0.006625706912018359,0.05703687370987609 -2015,33,0.023581702262163162,0.005720265870913863,-0.0011215585982427,0.004047533962875605,0.0023711302783340216,0.0175820055603981,0.003025882877409458,0.004769174054672476,0.006701157430652529,0.05791284357823315 -2015,50,0.025692438706755638,0.006471247412264347,-0.0008446788997389376,0.0043622395023703575,0.0026674806140363216,0.0196688249707222,0.0035237332340329885,0.005592022149357945,0.00709827896207571,0.06219311218592338 -2015,67,0.027711210772395134,0.007305373558774593,-0.0005927803576923907,0.004639920778572559,0.0030245224665850405,0.02188016287982464,0.004021583124995232,0.006495384615845978,0.007520778498146683,0.06635953935212456 -2015,70,0.028076568618416786,0.0074774413369596,-0.0005478465463966131,0.0047139693051576614,0.0031008378136903048,0.02234296128153801,0.004109439440071583,0.00668697280343622,0.0076060391729697585,0.06717792631097837 -2015,90,0.03239184245467186,0.009003574959933758,-0.0002189711231039837,0.005121234804391861,0.003952709026634693,0.026479313150048256,0.004665860440582037,0.008315211877925333,0.0084965338697657,0.07465752956923098 -2015,95,0.03404177725315094,0.00982025358825922,-0.00011003372019331531,0.005213795229792595,0.004470566287636757,0.028456887789070604,0.004812286701053381,0.009168889533611922,0.009021497331559658,0.0782126677047927 -2016,5,0.018651317805051804,0.004753757268190384,-0.0023512807674705982,0.003731601405888796,0.001855918439105153,0.011920850165188313,0.0024446656461805105,0.003132798708975315,0.006093581416644156,0.0482459348422708 -2016,10,0.020192530006170273,0.004997537471354008,-0.0019789044745266438,0.003878226736560464,0.0020110870245844126,0.013866722583770752,0.002579407999292016,0.0036456503439694643,0.006372261303476989,0.05191325515625067 -2016,30,0.024508439004421234,0.005952541716396809,-0.0013343699974939227,0.004255262669175863,0.0024337880313396454,0.0178974162787199,0.0032531195320189,0.004857043270021677,0.007060783333145082,0.060448012710548935 -2016,33,0.025007937103509903,0.006095345951616764,-0.0012681714724749327,0.0043390486389398575,0.0024872056674212217,0.018328799698501826,0.0033541761804372072,0.005021231321879895,0.007145951967686415,0.06138119077542797 -2016,50,0.02716670371592045,0.006946881301701069,-0.0009550847462378442,0.0046951379626989365,0.002822623122483492,0.02060466632246971,0.0039268312975764275,0.00595385511405766,0.007595171686261892,0.06591380630561616 -2016,67,0.029231412336230278,0.007901605572551491,-0.000670295616146177,0.005009335000067949,0.0032264976762235165,0.02300497664138675,0.004499485716223717,0.006985937128774822,0.008073621348012238,0.07036589432915208 -2016,70,0.029605085030198097,0.008100214321166276,-0.0006195319001562893,0.005093120504170656,0.0033136624842882156,0.023501979373395442,0.004600542597472668,0.0072075197356753044,0.008170087728649378,0.07122667668736539 -2016,90,0.03401855006814003,0.009896163828670979,-0.00024764821864664555,0.0055539426393806934,0.004277213476598263,0.02797578386962414,0.005240568425506353,0.009118438661971595,0.009178611426614225,0.0791542261140421 -2016,95,0.03570602834224701,0.010882454924285412,-0.0001244613384187702,0.005658674519509077,0.0048637050203979015,0.030120916664600372,0.0054089962504804134,0.010140347178094089,0.009773105848580599,0.0829655856708996 -2017,5,0.02026953548192978,0.0049735368229448795,-0.0026249561924487352,0.003951020538806915,0.0019336536061018705,0.012537021189928055,0.0026463791728019714,0.00315349199809134,0.006448140583233908,0.05176977821975015 -2017,10,0.021768666803836823,0.005246895365417004,-0.0022146659437566997,0.004115215037018061,0.002104727551341057,0.014587870799005032,0.0027996397111564875,0.00371848966460675,0.006756717420648784,0.05549945685779676 -2017,30,0.02596673183143139,0.006314140744507313,-0.0015037873527035117,0.004537428729236126,0.0025718828430399297,0.018786277249455453,0.003565941471606493,0.005071714171208441,0.007524915761314333,0.0640988074010238 -2017,33,0.02645258978009224,0.0064738809317350385,-0.0014323430368676782,0.004631254356354475,0.0026323236525058746,0.019237685948610306,0.0036808867007493973,0.005254876450635493,0.007619673386216164,0.06503508828696795 -2017,50,0.02855241298675537,0.007429390214383602,-0.0010860587935894728,0.005030011758208275,0.003004646860063076,0.021653050556778908,0.004332243464887142,0.006299533706624061,0.008121320512145758,0.06967855177936144 -2017,67,0.030560744926333427,0.00851029775105417,-0.0007711967919021845,0.005381856579333544,0.0034503524657338858,0.024210499599575996,0.0049835997633636,0.007470806069322866,0.008652963405475021,0.07426995906746016 -2017,70,0.03092421405017376,0.00873693162575364,-0.0007167526986449958,0.0054756817407906055,0.003549701999872923,0.02473936695605516,0.005098544992506504,0.0077174947946332395,0.008760115830227733,0.075166730734054 -2017,90,0.03521716967225075,0.010822746902704239,-0.00030622168560512364,0.00599172106012702,0.00461588054895401,0.02949514426290989,0.0058265323750674725,0.009933639405062422,0.00987975592724979,0.08330797237576917 -2017,95,0.03685857355594635,0.011994422413408756,-0.00016955693572527048,0.00610900204628706,0.005268503911793232,0.031745828688144684,0.006018107756972313,0.011130439233966172,0.010536304418928921,0.08723732222570105 -2018,5,0.021380890160799026,0.005192299373447895,-0.0029216359835118055,0.00416894257068634,0.00200219196267426,0.012992304004728793,0.0028403187170624733,0.003162941662594676,0.006795489671640098,0.05465789446316194 -2018,10,0.022935254499316216,0.0054961806163191795,-0.0024668530095368624,0.004351234063506126,0.0021903133019804955,0.015171277243644,0.003013014327734709,0.0037858900614082813,0.007136335968971253,0.05856712833920028 -2018,30,0.027287987992167473,0.006678711622953415,-0.001681926310993731,0.004819984547793865,0.0027069145813584327,0.019630011916160584,0.0038764923810958862,0.005285142920911312,0.007989380368962884,0.06758615153376013 -2018,33,0.027791745960712433,0.006855870652943849,-0.0016025180928409101,0.004924151115119457,0.0027756355702877045,0.020107731223106384,0.004006013739854097,0.005488553550094366,0.008094900213181972,0.06858095715753734 -2018,50,0.029968932271003723,0.00791877694427967,-0.0012195026502013206,0.005366859491914511,0.0031869359081611037,0.022687848657369614,0.004739969968795776,0.006652418524026871,0.008651808719150722,0.07348664943128824 -2018,67,0.03205125778913498,0.009131450084969406,-0.0008704272331669927,0.0057574850507080555,0.0036831796169281006,0.025423036888241768,0.005473926197737455,0.007967557176016271,0.009241671129129827,0.07837531387573109 -2018,70,0.03242811560630798,0.009387594275176525,-0.0008103172294795513,0.0058616516180336475,0.0037928109755739556,0.025979829765856267,0.0056034475564956665,0.008242755895480514,0.00936077805235982,0.07932040579617022 -2018,90,0.03687924146652222,0.011783325113356113,-0.00035702457826118915,0.006434568203985691,0.004976685158908367,0.03104409947991371,0.006423751823604107,0.010781583259813488,0.010604447592049837,0.08797548685106449 -2018,95,0.03858111798763275,0.013156159780919552,-0.00020322682394180447,0.006564776878803968,0.005702887196093798,0.03344689682126045,0.0066396212205290794,0.012175223033409566,0.01133186318911612,0.09211874342290685 -2019,5,0.022721588611602783,0.005410044454038143,-0.0032360367709770798,0.0043853651732206345,0.0020391986588947477,0.01311510126106441,0.0030264852102845907,0.0031604247633367777,0.0071169576607644554,0.0573773228097707 -2019,10,0.024371201172471046,0.005745393224060535,-0.002729189395904541,0.00458628311753273,0.0022502425126731396,0.01548346057534218,0.0032195330131798983,0.003855475690215826,0.007496305904351175,0.06161327646113932 -2019,30,0.028990665450692177,0.00704625528305769,-0.001857791212387383,0.005102928727865219,0.002826181310229003,0.020330512896180153,0.004184771794825792,0.005511356212082319,0.008439373271539808,0.07132858083350584 -2019,33,0.02952529489994049,0.007241314956918358,-0.0017684996128082275,0.005217738915234804,0.0029011489171534774,0.02085633100941777,0.004329557530581951,0.005737341823987663,0.00855643104761839,0.07239732780202758 -2019,50,0.0318358950316906,0.008415039628744125,-0.0013434126740321517,0.005705682095140219,0.0033595175482332706,0.023638373240828514,0.00515001080930233,0.0070219687186181545,0.009172888938337564,0.07769084366736934 -2019,67,0.03404582291841507,0.00976506289094687,-0.000955394993070513,0.006136219948530197,0.003912833519279957,0.02657828086987139,0.005970463622361422,0.008483226411044598,0.009827284701168537,0.08295164402690716 -2019,70,0.03444577753543854,0.010052201896905899,-0.0008883664268068969,0.006251030135899782,0.00403442420065403,0.027170580998063087,0.00611524935811758,0.008794157110969536,0.009959728317335248,0.0839694777969271 -2019,90,0.039169661700725555,0.012777895666658878,-0.0003832941874861717,0.006882485933601856,0.005354864522814751,0.032584314793348314,0.007032226305454969,0.011672406952129677,0.011343763442710042,0.0932782621937804 -2019,95,0.04097582772374153,0.0143676633015275,-0.0002146402730431877,0.007025999017059803,0.006162866763770576,0.03516892828047273,0.007273536175489426,0.013280619779834508,0.012157599627971647,0.09776535920100285 -2020,5,0.024134736508131027,0.005626772064715624,-0.00355898542329669,0.004600290209054947,0.00208547244546935,0.013307245448231697,0.0032048781868070364,0.0031487171538174155,0.007446351030375808,0.060274421604117376 -2020,10,0.0258769728243351,0.005994534119963646,-0.0030026815365999937,0.004820362199097872,0.002317892387509346,0.015855735540390013,0.0034191953018307686,0.003915007691830397,0.007863550912588835,0.0647998575004749 -2020,30,0.03075581043958664,0.007416769862174988,-0.002039942890405655,0.005386261735111475,0.002954017836600542,0.021068700589239597,0.004490780644118786,0.005733085563406348,0.008899628114886583,0.07518013240769506 -2020,33,0.03132045641541481,0.007630213852971792,-0.0019429050153121352,0.0055120172910392284,0.0030342251993715763,0.021633028984069824,0.004651518538594246,0.005980399437248707,0.009028313192538917,0.07632021704455838 -2020,50,0.03376079350709915,0.00891817919909954,-0.0014737371820956469,0.006046478636562824,0.003541152458637953,0.02462068200111389,0.005562365986406803,0.007392010185867548,0.0097053786739707,0.0819889125705231 -2020,67,0.03609480336308479,0.010411135861650114,-0.0010470097186043859,0.006518061738461256,0.004152971785515547,0.027751924470067024,0.00647321343421936,0.00900372548494488,0.010425924723967911,0.08761808759067208 -2020,70,0.03651721403002739,0.01073075421154499,-0.000972946640104056,0.0066438172943890095,0.004285371862351894,0.028387075290083885,0.006633951794356108,0.009351924061775208,0.01057311026379466,0.08871189574711025 -2020,90,0.0415063351392746,0.013806461356580257,-0.00041697564302012324,0.007335472386330366,0.0057473923079669476,0.034148652106523514,0.007651957683265209,0.01258582437003497,0.012100621312856675,0.0986831710441038 -2020,95,0.0434139147400856,0.015628935769200325,-0.00023118918761610985,0.007492667064070702,0.006636911537498236,0.036892615258693695,0.0079198544844985,0.014440115250181407,0.0130004700506106,0.1034768916782923 -2021,5,0.02541765756905079,0.005842482205480337,-0.0038998466916382313,0.004813716746866703,0.0021396175725385547,0.013584906235337257,0.0033754981122910976,0.0031260623829439285,0.00778533115517348,0.06312330219516298 -2021,10,0.027211280539631844,0.006243603304028511,-0.00328989140689373,0.005053471773862839,0.0023952138144522905,0.016304443031549452,0.0036120014265179634,0.0039611742831766605,0.008242439315654337,0.06791392023442314 -2021,30,0.03223401680588722,0.0077902572229504585,-0.002236491534858942,0.0056699845008552074,0.0030933027155697346,0.021864615380764008,0.0047945184633135796,0.005946523044258356,0.009374173288233579,0.0788181213545613 -2021,33,0.032815318554639816,0.008022567015141249,-0.0021298094652593136,0.005806987639516592,0.0031821788288652897,0.02246758945286274,0.004971896298229694,0.0062143937684595585,0.009515222529880702,0.08000529159908183 -2021,50,0.03532763198018074,0.009428195655345917,-0.0016159366350620985,0.006389250047504902,0.003738473867997527,0.025651424191892147,0.005977035500109196,0.007757349871098995,0.010254645952954888,0.08598471863660961 -2021,67,0.03773048520088196,0.011069669611752039,-0.0011487710289657116,0.0069030108861625195,0.0044103763066232204,0.02897736243903637,0.006982175167649984,0.009527477523079142,0.011044939602725208,0.0919549531012308 -2021,70,0.03816535323858261,0.011423250846564769,-0.0010675865923985839,0.007040014024823904,0.004556287080049515,0.0296464916318655,0.007159553002566099,0.009912571450695393,0.01120603692252189,0.09309675311669707 -2021,90,0.04330162703990936,0.014869020320475101,-0.00045878899982199073,0.007793529890477657,0.006160795548930765,0.0357568483799696,0.008282944560050964,0.01352496794424951,0.012881840486079455,0.10365192353492603 -2021,95,0.04526546970009804,0.016939975321292877,-0.00025510770501568913,0.0079647833481431,0.007139191962778568,0.03865380957722664,0.008578574284911156,0.015628718261723407,0.01387268973048776,0.10873478121357037 -2022,5,0.026798397302627563,0.006057174876332283,-0.004243064671754837,0.005025644786655903,0.002206414472311735,0.013986835489049554,0.003538344521075487,0.0030972687527537346,0.008135441970080138,0.06621571049909107 -2022,10,0.028635289520025253,0.006492599844932556,-0.0035793252754956484,0.005285611376166344,0.002483118628151715,0.016848543658852577,0.0037979516200721264,0.004002176458016038,0.008630885859020054,0.07121312923627557 -2022,30,0.033779192715883255,0.008166715502738953,-0.0024391820421442397,0.005954096559435129,0.003242927137762308,0.022704266011714935,0.005095985718071461,0.006154259550385177,0.009859551861882209,0.08256781846284866 -2022,33,0.03437451645731926,0.008418375393375754,-0.0023231455124914646,0.006102648563683033,0.003339139746967703,0.023339705541729927,0.0052906908094882965,0.006445467239245772,0.010013265514280646,0.08381766523234546 -2022,50,0.03694743663072586,0.009945088997483253,-0.001766315894201398,0.006733995862305164,0.0039450544863939285,0.02670244872570038,0.006394020281732082,0.008120819751638919,0.010816626250743866,0.09007627237588167 -2022,67,0.039408255368471146,0.011740663209930068,-0.001258448151638731,0.007291066460311413,0.004675911273807287,0.030210559535771613,0.007497349288314581,0.010055543352427778,0.011675335448235274,0.09635481602395884 -2022,70,0.03985361382365227,0.01212969310581684,-0.0011706016957759857,0.007439618930220604,0.0048349881544709206,0.030909443274140358,0.007692054845392704,0.010480883756827097,0.011850780341774225,0.09755091612460091 -2022,90,0.04511379078030586,0.015965571627020836,-0.0005108856712467968,0.008256657049059868,0.006582444999366999,0.03733684271574021,0.008925188332796097,0.014501595462206751,0.013675894169136883,0.10863740586210043 -2022,95,0.04712500795722008,0.01830078288912773,-0.00028875161660835147,0.008442346937954426,0.007647773250937462,0.040382809005677686,0.009249696508049965,0.016857895825523883,0.014754805224947628,0.1140323446597904 -2023,5,0.028339575976133347,0.0062708500772714615,-0.00458719814196229,0.005236074794083834,0.002276756800711155,0.014413971453905106,0.0036934171803295612,0.003066662035416812,0.00848976569250226,0.06950898618524662 -2023,10,0.030238859355449677,0.006741524673998356,-0.003876152914017439,0.005516781006008387,0.002575806714594364,0.01741354875266552,0.003977044951170683,0.004038893152028322,0.009024252975359559,0.07474115373333916 -2023,30,0.035557474941015244,0.008546145632863045,-0.002645224565640092,0.0062385969795286655,0.0033973978366702785,0.02354778032749891,0.005395181477069855,0.0063597828848287455,0.010352411190979183,0.08658326881704852 -2023,33,0.0361730195581913,0.008817637730389833,-0.002521044574677944,0.006399000529199839,0.0035014210734516382,0.024214695394039153,0.005607902072370052,0.0066741169430315495,0.010518444702029228,0.08788590715266764 -2023,50,0.03883333131670952,0.010468858294188976,-0.0019196709617972374,0.007080716080963612,0.0041561247780919075,0.027744648978114128,0.006813318468630314,0.008486200356855989,0.011386624537408352,0.0944555543246679 -2023,67,0.041377730667591095,0.012424117596820003,-0.0013735227985307574,0.007682229392230511,0.00494763720780611,0.031436921395361424,0.008018734864890575,0.01059273409191519,0.01231522741727531,0.10104383494239301 -2023,70,0.04183821752667427,0.012850079126656054,-0.0012782332487404346,0.007842633873224258,0.005120262503623962,0.03216525986790657,0.008231455460190773,0.011057357070967555,0.012504356540739536,0.10232379598310216 -2023,90,0.0472770556807518,0.01709611900150776,-0.0005682675342541187,0.00872485339641571,0.007012945879250771,0.038906479999423024,0.009578686207532883,0.015508838492678478,0.014480594545602798,0.11399695934960619 -2023,95,0.04935658723115921,0.019711358472704887,-0.00032377991010434926,0.008925357833504677,0.008167155086994171,0.04209527522325515,0.009933220222592354,0.018140519794542342,0.015646785963326693,0.11967548587126656 -2024,5,0.029857970774173737,0.00648350827395916,-0.004986947868019342,0.0054450067691504955,0.0023494332563132048,0.01483933161944151,0.0038407177198678255,0.0029905615374445915,0.008852123515680432,0.07278994380758377 -2024,10,0.03182777762413025,0.00699037779122591,-0.004215830937027931,0.005746981129050255,0.0026749163167551163,0.01799645461142063,0.004149282816797495,0.004044222738593817,0.009430997143499553,0.07826171025226358 -2024,30,0.037343889474868774,0.00892854854464531,-0.0028803222812712193,0.006523487623780966,0.0035697731655091047,0.024472497403621674,0.005692107602953911,0.00654647231567651,0.010867982776835561,0.09070063289254904 -2024,33,0.037982288748025894,0.009220355590805411,-0.002746024401858449,0.006696044467389584,0.0036832857877016068,0.025178493931889534,0.0059235310181975365,0.00688276975415647,0.011047148811630905,0.09206993479514494 -2024,50,0.04074138402938843,0.010999505408108234,-0.002092959824949503,0.007429411169141531,0.004397497046738863,0.028902734629809856,0.007234932389110327,0.008841942646540701,0.011986084980890155,0.09898828266886994 -2024,67,0.043380264192819595,0.013120032446458943,-0.0015023633604869246,0.0080765001475811,0.005260200705379248,0.03279679570347071,0.008546333760023117,0.011124021824798547,0.012995947394520044,0.10595588699681685 -2024,70,0.04385785013437271,0.013584411703050135,-0.0013965980615466833,0.008249057456851006,0.0054494780488312244,0.03355574086308479,0.008777758106589317,0.011630099965259433,0.01319991503842175,0.10729548940435052 -2024,90,0.04949864745140076,0.018260661512613297,-0.0006294026388786733,0.00919811986386776,0.00751204090192914,0.04066131114959717,0.01024344190955162,0.016534001450054348,0.015352591453120113,0.11966399918310344 -2024,95,0.051655396819114685,0.021171703934669495,-0.0003620307834353298,0.009413816034793854,0.00877133198082447,0.0440155873075127,0.010629147291183472,0.019452826178167015,0.01662531867623329,0.12567308873403818 -2025,5,0.031503260135650635,0.0066951485350728035,-0.005400754860602318,0.005652440246194601,0.0024279230274260044,0.01530207209289074,0.0039802435785532,0.0029000360518693924,0.009222503483761102,0.07622670444834512 -2025,10,0.03348783031105995,0.0072391582652926445,-0.004566545505076646,0.005976211279630661,0.0027810365892946723,0.018620185367763043,0.004314663354307413,0.0040369776776060465,0.009846485895104706,0.08187996901251608 -2025,30,0.039045289158821106,0.009313922375440598,-0.003126120427623391,0.006808766163885593,0.003751639742404222,0.025416385382413864,0.005986761301755905,0.006729866069508716,0.011395395174622536,0.09476390921045094 -2025,33,0.03968847543001175,0.009626527726650238,-0.002980700694024563,0.006993778515607119,0.0038746728096157312,0.026164584904909135,0.006237576249986887,0.00708558177575469,0.011587369022890925,0.09617694112879689 -2025,50,0.042468249797821045,0.011537028476595879,-0.0022767451591789722,0.007780080195516348,0.004650220740586519,0.030087953433394432,0.007658859249204397,0.009193646255880594,0.012599927373230457,0.10338039853377268 -2025,67,0.04512690752744675,0.013828406836837536,-0.001637559267692268,0.008473876863718033,0.005587486084550619,0.034178730100393295,0.009080142714083195,0.011662665754556656,0.013692541355267167,0.11064289463683963 -2025,70,0.045608073472976685,0.014332687668502328,-0.001522233244031668,0.008658887818455696,0.005792874377220869,0.03498363494873047,0.009330958127975464,0.012209506943327139,0.01391443400643766,0.11204674129839987 -2025,90,0.051291149109601974,0.0194591972976923,-0.0006944776978343725,0.009676454588770866,0.008032568730413914,0.04242649003863335,0.010919450782239437,0.017582627711817622,0.016249676886945962,0.1249818517244421 -2025,95,0.05346406251192093,0.022681815549731255,-0.000405271748604721,0.009907720610499382,0.00940478965640068,0.04595503099262713,0.01133747585117817,0.020814476534724236,0.01763305999338627,0.1312960391049273 -2026,5,0.03309135138988495,0.006905771791934967,-0.005813533440232277,0.005858374759554863,0.002521293703466654,0.015872379671782254,0.004111996851861477,0.0028083613142371178,0.009602517634630204,0.0797044625331182 -2026,10,0.03512922674417496,0.007487866096198559,-0.004920972976833582,0.006204471457749605,0.0028981687501072884,0.019313938915729523,0.0044731879606842995,0.004025890491902828,0.010272403433918952,0.08562460396788082 -2026,30,0.040835946798324585,0.009702268987894058,-0.0033769985428079964,0.00709443399682641,0.003944348217919468,0.02639782391488552,0.0062791453674435616,0.006907725357450545,0.011934069660492241,0.09897032054141164 -2026,33,0.041496410965919495,0.010036153821274638,-0.0032210086937993765,0.007292203605175018,0.004077383317053318,0.02717901077121496,0.0065500386990606785,0.007287881104275584,0.012139408513903618,0.10044463281403296 -2026,50,0.044350843876600266,0.012081427499651909,-0.0024647589307278395,0.008132724091410637,0.004912720061838627,0.03127847611904144,0.008085101842880249,0.009547170950099826,0.013225912232883275,0.10795883170794696 -2026,67,0.047080911695957184,0.014549241391941912,-0.0017832777230069041,0.008874358609318733,0.005922237876802683,0.03555452823638916,0.009620165452361107,0.012202312471345067,0.014400353417731823,0.11555727834580466 -2026,70,0.047575000673532486,0.015094908978790043,-0.001656132168136537,0.009072128683328629,0.006144591141492128,0.0364097598940134,0.009891059249639511,0.012800181284546852,0.01463800873607397,0.11703888094052672 -2026,90,0.05341072008013725,0.020691726356744766,-0.0007670923369005322,0.010159861296415329,0.008563405461609365,0.04417143762111664,0.011606717482209206,0.01866338006220758,0.017156197503209115,0.1305872080847621 -2026,95,0.05564199388027191,0.024241695180535316,-0.00045856405631639063,0.01040707342326641,0.010039633139967918,0.04784740190953016,0.012058206833899021,0.02222059539053589,0.018647632771171627,0.13722854607040064 -2027,5,0.034554120153188705,0.007115377113223076,-0.006236143875867128,0.006062811706215143,0.0026193500962108374,0.016437684651464224,0.004235976841300726,0.002704898826777935,0.009986568242311478,0.08310594944632613 -2027,10,0.03670089319348335,0.007736503146588802,-0.005283178295940161,0.006431761663407087,0.003021505195647478,0.020005602203309537,0.004624856635928154,0.004002854228019714,0.010704488703049719,0.0893264738842845 -2027,30,0.042712561786174774,0.010093586519360542,-0.0036377685610204935,0.0073804911226034164,0.004142346791923046,0.0273901354521513,0.0065692574717104435,0.007080948865041135,0.012481285398826003,0.10331761881243437 -2027,33,0.043408315628767014,0.010449235746636986,-0.0034673220291733748,0.007591319736093283,0.004289585165679455,0.028209008108824492,0.006860917434096336,0.007485830823425203,0.012701513711363077,0.10485522971954196 -2027,50,0.046415284276008606,0.012632704339921474,-0.002658556215465069,0.008487341925501823,0.005185033194720745,0.03248525410890579,0.008513657376170158,0.009900675620883703,0.013862687395885587,0.1127536054700613 -2027,67,0.04929123446345329,0.015282537033781417,-0.0019279189873486757,0.0092779491096735,0.006268548066727817,0.036947354674339294,0.01016639731824398,0.012757312688045204,0.015119922813028097,0.12075526412110776 -2027,70,0.04981172829866409,0.01587107367813587,-0.0017963320715352893,0.009488778188824654,0.006506187375634909,0.03783415332436561,0.010458058677613735,0.013397690068813972,0.01537770451977849,0.12231942019425332 -2027,90,0.05595928430557251,0.021958250552415848,-0.0008436677162535489,0.010648336261510849,0.009107238613069057,0.045922137796878815,0.012305239215493202,0.01976580312475562,0.0180811763741076,0.13662559003569186 -2027,95,0.05830979347229004,0.02585134282708168,-0.0005130412318976597,0.010911872610449791,0.010696951299905777,0.04975419174879789,0.012791339308023453,0.023673268785933007,0.019682790734805163,0.1436359371989965 -2028,5,0.03611759841442108,0.007323965430259705,-0.006656482350081205,0.006265750154852867,0.0027029968099668623,0.01689682174474001,0.00435218308120966,0.0026067552156746397,0.010359492083080114,0.08646032111719251 -2028,10,0.03832487016916275,0.007985067553818226,-0.00564120844937861,0.006658082827925682,0.003133018035441637,0.02060830220580101,0.004769669380038977,0.003989218268543482,0.011123977368697524,0.09295386736630462 -2028,30,0.044505953788757324,0.010487876832485199,-0.0038891736418008808,0.007666937541216612,0.004331239499151707,0.028305365331470964,0.006857099011540413,0.007266695611178875,0.013018235517665743,0.107474043907132 -2028,33,0.04522131383419037,0.010865771640092134,-0.003706385148689151,0.007891127839684486,0.00448839645832777,0.02915230309590697,0.007170213386416435,0.007696946384385228,0.013252677747514098,0.10908150592353195 -2028,50,0.048313017934560776,0.013190857134759426,-0.0028449357487261295,0.008843934163451195,0.005445362068712711,0.03362404927611351,0.008944528177380562,0.010268955535138957,0.014491183683276176,0.11731695290654898 -2028,67,0.0512700192630291,0.016028291285038004,-0.0020688725635409355,0.009684646502137184,0.00660398043692112,0.03827298678457737,0.010718843899667263,0.013329224428161979,0.01583272773306817,0.1256981904595159 -2028,70,0.051805175840854645,0.016661185584962365,-0.0019267878960818052,0.009908836334943771,0.006859789602458477,0.0392002385109663,0.011031958274543285,0.01400937419384718,0.016110763419419527,0.12732380949892103 -2028,90,0.05812597647309303,0.023258766159415245,-0.0009123007766902447,0.011141881346702576,0.00964166410267353,0.047608763352036475,0.013015016913414001,0.020908910140860826,0.019000782864168286,0.14232125267153606 -2028,95,0.06054272502660751,0.027510756626725197,-0.0005576443509198725,0.011422120034694672,0.011342359706759453,0.051594273187220076,0.013536874204874039,0.025160777964629233,0.02071430180221796,0.14965214154217393 -2029,5,0.037925079464912415,0.007531535811722279,-0.007061811606399715,0.006467190105468035,0.0027992918621748686,0.017442738730460407,0.004460615571588278,0.0025169230066239834,0.010740578745026142,0.09015531372278929 -2029,10,0.04013574868440628,0.00823355931788683,-0.005989056080579758,0.0068834335543215275,0.00325520196929574,0.021283946931362152,0.004907624796032906,0.003976352047175169,0.011552369501441718,0.09682300889398902 -2029,30,0.046326350420713425,0.010885138064622879,-0.0041381302289664745,0.007953772321343422,0.004523544060066342,0.029232022725045676,0.0071426695212721825,0.007450878503732383,0.013561468897387385,0.1116571871098131 -2029,33,0.047042813152074814,0.011285762116312981,-0.0039468565955758095,0.008191626518964767,0.004692354802973568,0.03010939061641693,0.007477926090359688,0.0079091542866081,0.013809464687947184,0.11331047789892182 -2029,50,0.050139281898736954,0.013755886815488338,-0.003032105974853039,0.0092025026679039,0.005707602947950363,0.034743666648864746,0.009377713315188885,0.010645856149494648,0.015123584773391485,0.12179722683504224 -2029,67,0.0531008318066597,0.016786508187651643,-0.0022126054391264915,0.010094450786709785,0.006934637725353245,0.039562955349683765,0.011277501471340656,0.013916457071900368,0.016546952379867436,0.13045534281991422 -2029,70,0.0536368153989315,0.0174652399495244,-0.002059094817377627,0.010332304984331131,0.00720716780051589,0.04051370173692703,0.011612758040428162,0.014637438580393791,0.01684135468676686,0.1321235120296478 -2029,90,0.05996735394001007,0.024593276903033257,-0.0009905098704621196,0.011640496551990509,0.01016139332205058,0.04920365177094937,0.013736050575971603,0.02208202047040686,0.019910390488803387,0.14763225067872554 -2029,95,0.062387820333242416,0.029219940304756165,-0.0006130863912403584,0.011937813833355904,0.011959945783019066,0.05334095321595669,0.014294811524450779,0.026702771428972483,0.021725814789533608,0.15530783443246035 -2030,5,0.03952480107545853,0.007738090120255947,-0.007482421118766069,0.006667132489383221,0.002894967538304627,0.01798527017235756,0.004561275709420443,0.002409823541529477,0.011126510798931122,0.09367094777062449 -2030,10,0.04180217906832695,0.008481979370117188,-0.006350785493850708,0.007107814308255911,0.003379366360604763,0.021960352919995787,0.00503872474655509,0.0039548142813146114,0.011984107317402959,0.1005793143529445 -2030,30,0.04817959666252136,0.011285371147096157,-0.004393892362713814,0.008240996859967709,0.004722677171230316,0.030172924697399135,0.007425969000905752,0.007630964973941445,0.014114351943135262,0.11593453403329476 -2030,33,0.048917677253484726,0.011709206243976951,-0.004193816799670458,0.008492815308272839,0.004903692752122879,0.03108707070350647,0.007784055545926094,0.008116283104754984,0.014376722741872072,0.11764794099610298 -2030,50,0.052107587456703186,0.014327793382108212,-0.0032269323710352182,0.009563043713569641,0.005979850888252258,0.03589882329106331,0.009813212789595127,0.011020896723493934,0.015769713558256626,0.12647550308611244 -2030,67,0.05515851080417633,0.01755718369036914,-0.0023629190400242805,0.010507361963391304,0.007282131682150082,0.04088416136801245,0.011842370964586735,0.01450208128197122,0.017277787439525127,0.13549279179424048 -2030,70,0.05571066588163376,0.01828324124217033,-0.002201665658503771,0.010759180411696434,0.007572065107524395,0.04186550080776214,0.012200457975268364,0.015272207325324416,0.017592144571244715,0.13722422178834673 -2030,90,0.06223223730921745,0.025961782783269882,-0.0010718272533267736,0.012144181877374649,0.010702048242092135,0.05086021833121777,0.014468340203166008,0.02328025840688497,0.02084345240145922,0.15342903835698962 -2030,95,0.06472574919462204,0.030978890135884285,-0.0006700966623611748,0.012458954006433487,0.012615220621228218,0.055137030780315385,0.015065152198076248,0.028276714961975813,0.022772439848631615,0.16147879722993821 -2031,5,0.04068838432431221,0.007943625561892986,-0.007933493703603745,0.00686557637527585,0.0029902157839387655,0.0185125719755888,0.004654161632061005,0.002277265302836895,0.011514734476804733,0.0967897757247556 -2031,10,0.04310739412903786,0.008730326779186726,-0.006739032920449972,0.0073312255553901196,0.003504537045955658,0.022626087069511414,0.0051629673689603806,0.003918546251952648,0.012422384833917022,0.10400593839585781 -2031,30,0.04988141730427742,0.011688577011227608,-0.004669117741286755,0.008528610691428185,0.004932050965726375,0.031139799021184442,0.007706996984779835,0.0078040836378932,0.014680385729297996,0.12012694908771664 -2031,33,0.05066540092229843,0.01213610589504242,-0.004456793423742056,0.008794697001576424,0.005125245079398155,0.03209085073322058,0.008088601753115654,0.008317352551966905,0.014958702526055277,0.1219428457156755 -2031,50,0.054053690284490585,0.01490657776594162,-0.0034325364977121353,0.009925559163093567,0.006269513163715601,0.03708864934742451,0.010251026600599289,0.01139450492337346,0.016434106044471264,0.13121700542978942 -2031,67,0.05729435011744499,0.01834031904116274,-0.0025193297769874334,0.01092338003218174,0.007654787041246891,0.042262002825737,0.012413451448082924,0.01509774150326848,0.01803441681433469,0.1406922487076372 -2031,70,0.05788084492087364,0.0191151849925518,-0.00234884056262672,0.011189466342329979,0.00796172823756933,0.04327752813696861,0.012795056216418743,0.015914124506525688,0.01836870238184929,0.14251399585045874 -2031,90,0.06480798870325089,0.027364281937479973,-0.0011516904924064875,0.012652935460209846,0.011291410773992538,0.052600182592868805,0.01521188486367464,0.02451474021654576,0.021825083903968333,0.1595798954833299 -2031,95,0.06745657324790955,0.03278760984539986,-0.0007241120911203325,0.01298554241657257,0.01332656666636467,0.057027675770223135,0.015847891569137573,0.029909935779869556,0.02387730227783322,0.16809314442798495 -2032,5,0.041948847472667694,0.008148143999278545,-0.008383454149588942,0.007062521297484636,0.003101587761193514,0.019155621342360974,0.004739274270832539,0.002135714516043663,0.01191675077425316,0.10009088380611501 -2032,10,0.044455453753471375,0.008978602476418018,-0.007131485268473625,0.0075536672957241535,0.003645788016729057,0.02336244285106659,0.005280354525893927,0.0038686534389853477,0.012875469028949737,0.10758229589555413 -2032,30,0.05147479474544525,0.012094754725694656,-0.004946103785187006,0.008816612884402275,0.005153187550604343,0.032134830951690674,0.007985754869878292,0.007972656283527613,0.01525914566591382,0.12424796191044152 -2032,33,0.05228716880083084,0.012566460752859712,-0.004728599451482296,0.00909726694226265,0.005359307862818241,0.03312251403927803,0.008391564711928368,0.008509920910000801,0.015555005520582199,0.1261366650997661 -2032,50,0.055798158049583435,0.015492236241698265,-0.0036481735296547413,0.010290050879120827,0.0065706761088222265,0.038294509053230286,0.01069115474820137,0.011760127265006304,0.01711254403926432,0.13576978258788586 -2032,67,0.05915617570281029,0.019135916735976945,-0.0026827279943972826,0.011342504993081093,0.008034508675336838,0.04363762587308884,0.012990744784474373,0.015687074977904558,0.01880448472686112,0.14564359547919595 -2032,70,0.05976390838623047,0.019961076229810713,-0.002503748517483473,0.011623159050941467,0.008362426422536371,0.04469335377216339,0.013396554626524448,0.01657123165205121,0.01915740557014942,0.1475220681168139 -2032,90,0.06694190949201584,0.02880077436566353,-0.0012458055280148983,0.0131667610257864,0.011883359402418137,0.054326421767473224,0.015966685488820076,0.025767141836695373,0.022810684517025948,0.16536684961756692 -2032,95,0.0696864053606987,0.03464609757065773,-0.0007892315625213087,0.013517579063773155,0.014037026092410088,0.05888966843485832,0.016643034294247627,0.03156293987558456,0.0249863950535655,0.1742507710820064 -2033,5,0.043562762439250946,0.008351645432412624,-0.008848575502634048,0.007257968652993441,0.003213489893823862,0.01977374404668808,0.004816614091396332,0.0019884889479726557,0.012321347673423588,0.10370067240437493 -2033,10,0.046082690358161926,0.00922680739313364,-0.00753115047700703,0.007775138597935438,0.0037897860165685415,0.024092750065028666,0.0053908852860331535,0.0038151592947542673,0.013329882174730301,0.11135428017005325 -2033,30,0.05313932150602341,0.012503903359174728,-0.005234387703239918,0.009105004370212555,0.005380228627473116,0.03313477709889412,0.008262241259217262,0.008135665440931916,0.015844837576150895,0.1284289052709937 -2033,33,0.053956013172864914,0.013000269569456577,-0.005005082255229354,0.00940052978694439,0.0055995178408920765,0.03416167370975017,0.008692944422364235,0.008701071375980973,0.01615730920806527,0.13035267588449642 -2033,50,0.057485658675432205,0.01608477160334587,-0.003867540741339326,0.010656515136361122,0.006879010237753391,0.039506448432803154,0.011133597232401371,0.012128754751756787,0.017799665685743093,0.14027939597144723 -2033,67,0.06086151301860809,0.019943973030895006,-0.002849481999874115,0.011764736846089363,0.008425481617450714,0.04502559453248978,0.013574249111115932,0.016285498393699527,0.019586586351506414,0.15046755030401981 -2033,70,0.06147247925400734,0.02082090992480516,-0.0026646724436432123,0.012060262262821198,0.008772952761501073,0.046109342575073244,0.01400495320558548,0.017224092036485672,0.01995996609330177,0.1524014888331294 -2033,90,0.06868861615657806,0.03027126006782055,-0.001338965143077075,0.01368565484881401,0.012495178170502188,0.056056789308786395,0.01673274114727974,0.027035971637815237,0.02381987664848566,0.1708408142440021 -2033,95,0.0714476928114891,0.036554355174303055,-0.0008596912957727909,0.014055060222744942,0.01477239048108457,0.06078311428427696,0.01745058037340641,0.03330084076151252,0.026124965399503708,0.18016023468226194 -2034,5,0.04509954899549484,0.008554128929972649,-0.009339211508631706,0.007451917510479689,0.003312403615564108,0.020272186771035195,0.00488618016242981,0.001829791348427534,0.012714449036866426,0.10708725093863905 -2034,10,0.04765792191028595,0.009474938735365868,-0.007952770218253136,0.007995640859007835,0.003921112976968288,0.024741768836975098,0.005494559649378061,0.0037540946155786526,0.013780288165435195,0.11500067887827754 -2034,30,0.05482221022248268,0.012916023842990398,-0.005531682213768364,0.009393785148859024,0.005605508806183933,0.034109508991241454,0.00853645708411932,0.008301728032529354,0.016433103336021306,0.13260589614510535 -2034,33,0.05565136298537254,0.013437533602118492,-0.0052883680909872055,0.009704483672976494,0.005836025346070528,0.03517773058265448,0.00899274181574583,0.008896319195628166,0.01675985800102353,0.1345831069839187 -2034,50,0.0592348538339138,0.016684185713529587,-0.004088167799636722,0.011024953797459602,0.007191931828856468,0.04071241430938244,0.011578353121876717,0.012501495890319347,0.018496052594855428,0.14486183156259358 -2034,67,0.06266221404075623,0.020764491669833674,-0.003014666261151433,0.012190073728561401,0.008831996470689774,0.046430449299514294,0.014163967221975327,0.016893794294446707,0.020383273507468404,0.15543259567115456 -2034,70,0.06328249722719193,0.021694689244031902,-0.0028195884078741074,0.01250077411532402,0.00920003093779087,0.047549935057759285,0.014620251953601837,0.017887758149299764,0.020779296196997164,0.15743730224203317 -2034,90,0.0706087276339531,0.03177574276924133,-0.0014214030234143138,0.014209616929292679,0.013149021193385124,0.05785369761288166,0.017510054633021355,0.028346716426312923,0.024868940562009813,0.17663676142692566 -2034,95,0.07340990006923676,0.038512375205755234,-0.0009144762298092246,0.014597991481423378,0.015559904277324677,0.06273141503334045,0.018270527943968773,0.035061200032942,0.02731296895071864,0.18640291477786375 -2035,5,0.04654539003968239,0.008755595423281193,-0.00982752009294927,0.00764436786994338,0.0034261131659150124,0.020853735599666835,0.004947973415255547,0.0016645845025777817,0.013121294369921089,0.11054613734013401 -2035,10,0.04919564723968506,0.00972299836575985,-0.008370608370751143,0.008215172216296196,0.004065813962370157,0.025466743856668472,0.0055913785472512245,0.00369376502931118,0.014241471653804183,0.11873667876934633 -2035,30,0.05661724507808685,0.013331117108464241,-0.005829939618706703,0.009682955220341682,0.005841272417455912,0.03511842340230942,0.008808402344584465,0.008467355021275574,0.017032000236213207,0.13694976700935513 -2035,33,0.05747617781162262,0.013878250662237405,-0.00557665852829814,0.010009128600358963,0.006086195819079876,0.036219336092472076,0.00929095596075058,0.00908725569024682,0.01737548317760229,0.13900700461817905 -2035,50,0.06118837371468544,0.017290474846959114,-0.004315128782764077,0.011395368725061417,0.007513641379773617,0.041930317878723145,0.012025426141917706,0.012880823574960232,0.019200712675228715,0.14969687367556617 -2035,67,0.06473882496356964,0.021597469523549094,-0.003187904255464671,0.012618521228432655,0.00924318004399538,0.04782794043421745,0.014759896323084831,0.017515614395961165,0.02118933893274516,0.1606852501793765 -2035,70,0.06538139283657074,0.02258241549134254,-0.002983379876241088,0.012944694608449936,0.00963078998029232,0.048985086381435394,0.01524245087057352,0.01857122965157032,0.02160665951669216,0.16277469508349895 -2035,90,0.07297074794769287,0.03331421688199043,-0.0015157898887991905,0.014738650992512703,0.013794871047139168,0.05960897319018841,0.018298622220754623,0.029681257670745254,0.02591834589838982,0.18281445072498173 -2035,95,0.0758725181221962,0.040520165115594864,-0.0009827552130445838,0.015146369114518166,0.016337191686034203,0.06463520228862762,0.019102878868579865,0.036884885746985674,0.028496804460883138,0.19300594097003337 -2036,5,0.0483119934797287,0.008956043981015682,-0.010297410190105438,0.007835321128368378,0.003561863210052252,0.02156844735145569,0.005001992452889681,0.001509412657469511,0.013546107918955386,0.11446308544909697 -2036,10,0.051050394773483276,0.009970985352993011,-0.008778414689004421,0.008433734998106956,0.004228686913847923,0.026289362646639346,0.005681339651346207,0.0036331950686872005,0.014719332801178098,0.1228779782075435 -2036,30,0.05871883034706116,0.013749181292951107,-0.006130704656243324,0.00997251458466053,0.0060876342467963696,0.03615118972957134,0.009078075177967548,0.008626190247014165,0.017643541377037764,0.14166634029243141 -2036,33,0.05960632860660553,0.014322423860430717,-0.005864973645657301,0.010314464569091797,0.0063492367044091225,0.037278398871421814,0.009587585926055908,0.009281868170946837,0.01800547822378576,0.1438028461812064 -2036,50,0.06344199180603027,0.017903640866279602,-0.004550747573375702,0.011767756193876266,0.00784442387521267,0.043163569644093513,0.01247481070458889,0.013255957746878266,0.019915626849979162,0.1548523656092584 -2036,67,0.06711053103208542,0.02244290785863997,-0.0033699425403028727,0.013050073757767677,0.009656537957489497,0.04922136437147856,0.015362035483121872,0.01813588198274374,0.022003617137670517,0.16622423721011728 -2036,70,0.0677744671702385,0.023484082892537114,-0.003157910890877247,0.013392023742198944,0.010061588510870929,0.050414893031120296,0.015871545299887657,0.019249153323471546,0.022438317304477092,0.16840368043631315 -2036,90,0.07561624050140381,0.034886687994003296,-0.0016232624184340239,0.015272755175828934,0.014422530308365822,0.061318643391132355,0.019098445773124695,0.03104590787552297,0.026961831375956535,0.1892633737064898 -2036,95,0.07861452549695969,0.042577724903821945,-0.0010662571294233203,0.015700193122029305,0.01709408313035965,0.0664714016020298,0.019947629421949387,0.038719868287444115,0.029659698717296124,0.19980858685448766 -2037,5,0.05039393901824951,0.009155475534498692,-0.010792052373290062,0.008024774491786957,0.0036889303009957075,0.022220398299396038,0.005048238672316074,0.0013444673269987122,0.013968044356442989,0.11856953133828937 -2037,10,0.05316390469670296,0.010218900628387928,-0.009204229339957237,0.008651327341794968,0.004387066699564457,0.02706656064838171,0.005764445289969444,0.003553336160257459,0.015193198621273041,0.12721567132975906 -2037,30,0.06092072278261185,0.014170217327773571,-0.006442836951464415,0.010262461379170418,0.0063382504042237995,0.03718172386288643,0.009345478378236294,0.00878103170543909,0.018261918798089027,0.14645126601681113 -2037,33,0.061818450689315796,0.014770051026716828,-0.006160217337310314,0.010620491579174995,0.006613951176404953,0.038343162722885606,0.009882633574306965,0.009468285832554102,0.01863816969562322,0.1486340835876763 -2037,50,0.06569831818342209,0.01852368377149105,-0.00478786788880825,0.01214211992919445,0.00817965716123581,0.044389043003320694,0.012926511466503143,0.01363272382877767,0.020641120616346598,0.16001661564223468 -2037,67,0.06940913945436478,0.02330080604180695,-0.0035536657087504864,0.013484731316566467,0.010086266323924065,0.05061792582273483,0.015970388427376747,0.01877127541229129,0.02283283069729805,0.17174487235024571 -2037,70,0.0700807273387909,0.024399695917963978,-0.0033348160795867443,0.013842761516571045,0.010509960353374481,0.05184364058077335,0.016507545486092567,0.01994784847192932,0.023287463001906872,0.17400207906030118 -2037,90,0.0780128762125969,0.036493148654699326,-0.0017261882312595844,0.015811927616596222,0.015082789584994316,0.06305380910634995,0.019909527152776718,0.03244767221622169,0.028033060021698475,0.19557901788502932 -2037,95,0.0810457170009613,0.04468504711985588,-0.0011364175414201,0.016259463503956795,0.017888914793729782,0.0683484673500061,0.020804785192012787,0.04065289907157421,0.03086588382720947,0.20657693007960912 -2038,5,0.052316632121801376,0.009353889152407646,-0.011336309788748621,0.008212730288505554,0.0038297236897051334,0.022936313506215812,0.005086712539196014,0.001130770891904831,0.014405820623505861,0.12261703300755471 -2038,10,0.05511704087257385,0.0104667441919446,-0.00967299472540617,0.00886794924736023,0.00456698052585125,0.027893736213445666,0.005840695463120937,0.003436378203332424,0.015693938359618187,0.13145784835796803 -2038,30,0.06295911967754364,0.014594225212931633,-0.006783452816307545,0.010552799329161644,0.006615552585572004,0.03829258307814598,0.009610611014068127,0.008918377687223254,0.018911008024588227,0.1511839341605082 -2038,33,0.06386671960353851,0.015221133399754762,-0.0064861103892326355,0.010927209630608559,0.006908885203301907,0.03949445478618145,0.010176097974181175,0.009635536931455135,0.019305975176393986,0.1534145594551228 -2038,50,0.0677892342209816,0.01915060356259346,-0.005049873609095812,0.01251845620572567,0.008553293533623219,0.04572738893330097,0.013380525633692741,0.013996165711432695,0.021410612389445305,0.16512913792394102 -2038,67,0.07154084742069244,0.024171164073050037,-0.0037560132332146168,0.013922497630119324,0.010567404329776764,0.05213380604982376,0.016584953293204308,0.01939838519319892,0.02371114324312657,0.17724320430774243 -2038,70,0.07221981137990952,0.025329255871474738,-0.0035267432453110837,0.014296909794211388,0.011011501215398308,0.053397381305694575,0.01715044118463993,0.020632514730095863,0.02419042307883501,0.1796031950972974 -2038,90,0.08023915439844131,0.03813360631465912,-0.0018389885080978274,0.016356170177459717,0.01583446003496647,0.06493245214223863,0.020731860771775246,0.033870208309963346,0.029189550131559373,0.20194742013700306 -2038,95,0.08330533653497696,0.046842142939567566,-0.0012179380282759666,0.016824183985590935,0.018791746348142624,0.07040055021643638,0.021674340590834618,0.042577546744723804,0.03217861941084265,0.2134327560197562 -2039,5,0.05377839133143425,0.00955128576606512,-0.011892100796103477,0.008399187587201595,0.003975307568907738,0.023676112294197083,0.005117411725223064,0.0009052136680111328,0.014851038169581443,0.1262973934528418 -2039,10,0.05667952448129654,0.01071451511234045,-0.010153018869459629,0.009083602577447891,0.00475473515689373,0.02875231672078371,0.005910088308155537,0.0033154585398733616,0.016207628604024648,0.13543414366431533 -2039,30,0.06480365246534348,0.015021205879747868,-0.007131672464311123,0.01084352470934391,0.006909975409507749,0.03942813724279404,0.009873472154140472,0.009043671307153996,0.01957542058080435,0.15581304179504513 -2039,33,0.06574388593435287,0.015675669740885495,-0.006819549016654491,0.011234618723392487,0.0072160568088293076,0.040658421479165555,0.010467980057001114,0.009796290658414364,0.019986529406160115,0.1581068466475699 -2039,50,0.06980748474597931,0.01978440023958683,-0.005318500567227602,0.012896768748760223,0.008940495550632477,0.047086769714951515,0.013836855068802834,0.014361064182594419,0.02219334850087762,0.17025029379874468 -2039,67,0.07369402050971985,0.02505398256704213,-0.003964501433074474,0.014363370835781097,0.011058373376727104,0.053669366985559464,0.017205730080604553,0.02002723654732108,0.024607887482270597,0.18280779166379943 -2039,70,0.07439740747213364,0.026272760145366187,-0.003728332696482539,0.014754464849829674,0.01152802165597677,0.05496615618467331,0.017800239846110344,0.021317579317837954,0.025110542587935922,0.18528251741081475 -2039,90,0.08270517736673355,0.03980805724859238,-0.0019622803665697575,0.01690548285841942,0.01660031173378229,0.06682360172271729,0.021565454080700874,0.03531610849313438,0.030363100767135623,0.2085008275927976 -2039,95,0.08588163554668427,0.049049004912376404,-0.001304887467995286,0.017394348978996277,0.019714821130037308,0.07242846488952637,0.022556299343705177,0.044551219791173935,0.03350830283015966,0.22050870396196842 -2040,5,0.05536627769470215,0.00974766444414854,-0.012427227571606636,0.008584147319197655,0.004118431452661753,0.02437531016767025,0.005140337161719799,0.000695137726143003,0.015288368798792362,0.13003294495865703 -2040,10,0.058372605592012405,0.010962214320898056,-0.010612081736326218,0.009298285469412804,0.004932831507176161,0.02955762278288603,0.0059726242907345295,0.003212453331798315,0.01670602117665112,0.13943957113078795 -2040,30,0.06679131835699081,0.015451159328222275,-0.007465333677828312,0.011134641245007515,0.007188206072896719,0.040498554706573486,0.010134061798453331,0.009184242226183414,0.020222908328287305,0.16049399888142943 -2040,33,0.06776564568281174,0.0161336606554687,-0.0071428557857871056,0.011542720720171928,0.007506017107516527,0.041763469614088534,0.010758277028799057,0.009976455313153564,0.02065280391369015,0.16286827204748988 -2040,50,0.07197658717632294,0.02042507193982601,-0.0055742994882166386,0.013277055695652962,0.009309018030762672,0.04835585318505764,0.01429549790918827,0.014741707593202591,0.022956785513088107,0.17545077507384121 -2040,67,0.07600405812263489,0.025949262790381927,-0.004163062199950218,0.014807352796196938,0.011526990681886673,0.05510901287198067,0.017832718789577484,0.020682523907162253,0.02548223435878754,0.18846268679946662 -2040,70,0.07673294842243195,0.027230206876993176,-0.003920895513147116,0.015215430408716202,0.012021664530038834,0.05644030459225178,0.01845693588256836,0.022033678367733955,0.026008376851677895,0.1910265618469566 -2040,90,0.08534195274114609,0.0415165014564991,-0.00207722932100296,0.017459865659475327,0.017326315864920616,0.06861142963171005,0.022410301491618156,0.0367842223495245,0.031506306119263174,0.2151371076470241 -2040,95,0.08863358944654465,0.051305633038282394,-0.0013875227887183428,0.017969965934753418,0.02059102989733219,0.07435914650559423,0.023450661450624466,0.0465982798486948,0.03479511849582195,0.22772317720809948 -2041,5,0.05750120431184769,0.009943027049303055,-0.012951143085956573,0.008767606690526009,0.004259627312421799,0.025052464660257102,0.00515549024567008,0.0004959553480148315,0.01572347618639469,0.1342330889077857 -2041,10,0.06052559241652489,0.011209841817617416,-0.011063822358846663,0.009511997923254967,0.005108449142426253,0.030352484434843063,0.006028305273503065,0.0031106015667319298,0.017199871130287647,0.1438400246668607 -2041,30,0.06899487972259521,0.01588408090174198,-0.007798484526574612,0.01142614334821701,0.007461048197001219,0.04154904559254646,0.010392380878329277,0.009334143251180649,0.020871054008603097,0.16534697548486293 -2041,33,0.06997506320476532,0.01659510616213083,-0.00746649457141757,0.011851510033011436,0.007792680989950895,0.0428488589823246,0.011046992614865303,0.010162001941353083,0.021319094579666853,0.16777352818520738 -2041,50,0.07421129196882248,0.021072622388601303,-0.0058294255286455154,0.013659315183758736,0.009677490219473839,0.04959933087229729,0.014756456017494202,0.015129487961530685,0.02372138202190399,0.18068316637072712 -2041,67,0.07826295495033264,0.02685700222849848,-0.0043609729036688805,0.015254437923431396,0.011992750689387321,0.05653241075575353,0.0184659194201231,0.021341697545722127,0.026357146315276626,0.1940433326596394 -2041,70,0.07899622619152069,0.02820160053670406,-0.004113917704671621,0.015679802745580673,0.012508259713649748,0.05790295824408531,0.019120531156659126,0.022768498864024878,0.026906569208949804,0.19668908736202864 -2041,90,0.08765695244073868,0.04325893893837929,-0.0021907216869294643,0.018019316717982292,0.018044155091047287,0.070371725410223,0.02326640486717224,0.03828494576737285,0.03264849092811346,0.22159752557054163 -2041,95,0.09096836298704147,0.053612031042575836,-0.0014748807298019528,0.018551023676991463,0.02145938016474247,0.07625324875116346,0.024357421323657036,0.04870951292105007,0.036087560188025204,0.23458628992084413 -2042,5,0.059451233595609665,0.01013737078756094,-0.013510278426110744,0.008949571289122105,0.004411049187183381,0.025730376038700344,0.0051628705114126205,0.0002676965668797493,0.01616597380489111,0.13824885566718875 -2042,10,0.06250779330730438,0.011457397602498531,-0.011545603163540363,0.00972474180161953,0.005294825881719589,0.031149908341467383,0.006077130325138569,0.0029916921630501747,0.01770844282582402,0.14811868099495767 -2042,30,0.07106718420982361,0.01631997711956501,-0.008149319794028997,0.011718038469552994,0.007751844404265284,0.04264558479189873,0.010648430325090885,0.009475826285779476,0.02153807757422328,0.1701451419503428 -2042,33,0.0720577985048294,0.017060008123517035,-0.007801796700805426,0.012160994112491608,0.008099118247628212,0.043969765305519104,0.011334124952554703,0.010334101738408208,0.02200603485107422,0.17264503383543342 -2042,50,0.07633910328149796,0.021727049723267555,-0.0061005414463579655,0.014043550938367844,0.010071288794279099,0.050894320011138916,0.015219729393720627,0.015510277706198394,0.024512263014912605,0.18588042934425175 -2042,67,0.08043386787176132,0.027777205258607884,-0.004572597332298756,0.01570463366806507,0.012489952854812148,0.05802050676196814,0.01910533383488655,0.021998521871864796,0.027267537210136653,0.19964626667089763 -2042,70,0.08117493987083435,0.029186941683292385,-0.004312841687351465,0.016147587448358536,0.01302751712501049,0.05941743440926075,0.019791029393672943,0.023495915811508894,0.027841613069176673,0.20233759672228188 -2042,90,0.0899278074502945,0.045035380870103836,-0.0023106406442821026,0.018583839759230614,0.01881699077785015,0.0722166895866394,0.024133766070008278,0.039841482881456614,0.03384332321584225,0.228117152210325 -2042,95,0.09327444434165955,0.05596820265054703,-0.0015606131753884292,0.019137533381581306,0.022392941638827324,0.07823757827281952,0.025276590138673782,0.05080657638609409,0.03743952400982379,0.24156912796897811 -2043,5,0.06109537184238434,0.01033069845288992,-0.014074185863137245,0.00913003459572792,0.004551139660179615,0.02637573331594467,0.005162476096302271,3.1745992600917816e-05,0.01660887524485588,0.14196690784883687 -2043,10,0.0642416849732399,0.011704879812896252,-0.01203632541000843,0.009936515241861343,0.005477521568536758,0.03193783015012741,0.006119097582995892,0.0028656321112066527,0.01821487215347588,0.15216310186078771 -2043,30,0.07305239140987396,0.01675884611904621,-0.008503151126205921,0.012010321021080017,0.008045763708651066,0.043724207952618596,0.010902208276093006,0.00962130818516016,0.022209296002984047,0.17490214481949806 -2043,33,0.07407209277153015,0.017528363429009913,-0.008141769096255302,0.012471167370676994,0.008405154570937157,0.0450845269113779,0.011619674041867256,0.010509598534554243,0.022696081274189053,0.17744800929678603 -2043,50,0.07847910374403,0.02238835208117962,-0.006372031988576055,0.014429761096835136,0.010465305298566818,0.05219660885632038,0.015685316175222397,0.01589547051116824,0.02530832402408123,0.19110819906927645 -2043,67,0.08269410580396652,0.028709865026175996,-0.00478234002366662,0.016157932579517365,0.012994665484875448,0.05949387822300198,0.019750960171222687,0.022672535618767142,0.028183935638517142,0.2053350171307102 -2043,70,0.08345694094896317,0.030186223983764644,-0.004514103801921011,0.016618778929114342,0.013553822413086891,0.060929182916879654,0.02046842686831951,0.024246844463050365,0.028784154169261455,0.20811777608469129 -2043,90,0.0924668088555336,0.046845804899930954,-0.002427933271974325,0.019153431057929993,0.01960395649075508,0.07404392361640931,0.025012381374835968,0.04142195009626449,0.035055800713598734,0.23489030529744925 -2043,95,0.09591171145439148,0.05837414041161537,-0.001648335950449109,0.019729487597942352,0.02334662117063999,0.08021028637886046,0.02620815858244896,0.05297389067709446,0.03881368096917867,0.24883894994854927 -2044,5,0.06260630488395691,0.01052300725132227,-0.014664476737380028,0.00930900126695633,0.004694931209087372,0.027011965308338406,0.0051543088629841805,-0.00022214651107788086,0.01705336570739746,0.14561700576450676 -2044,10,0.06586490571498871,0.011952291242778301,-0.01254576537758112,0.010147320106625557,0.005664295516908169,0.032724231481552124,0.00615420937538147,0.0027259925380349165,0.018728033313527702,0.15612633246928453 -2044,30,0.07499008625745773,0.017200684174895287,-0.008873815648257732,0.01230299286544323,0.00834587961435318,0.044822338968515396,0.01115371286869049,0.009744293987751007,0.022892812732607126,0.1796210990753025 -2044,33,0.0760461837053299,0.018000173941254617,-0.008495877496898174,0.012782031670212746,0.008722840808331966,0.04621174998581409,0.011903638020157814,0.010672648437321186,0.02339916117489338,0.1822542855516076 -2044,50,0.0806104838848114,0.023056533187627792,-0.006651556584984064,0.014817947521805763,0.010874295607209206,0.05352024920284748,0.01615321636199951,0.016283477656543255,0.026119601912796497,0.1963744272943586 -2044,67,0.08497592806816101,0.029654984641820214,-0.004997601732611656,0.016614342108368874,0.013519570231437683,0.06100397739559412,0.02040279470384121,0.023354760836809874,0.029122349806129932,0.21112437332049014 -2044,70,0.08576598763465881,0.031199451908469195,-0.004716754890978336,0.01709338091313839,0.014104260131716728,0.06247306317090988,0.021152719855308533,0.025000359397381544,0.029752365592867137,0.21399474418722092 -2044,90,0.09509743005037308,0.048690225929021835,-0.0025466060033068057,0.019728094339370728,0.020430186204612264,0.07592388689517975,0.025902248919010162,0.043026396073400974,0.03630610350519419,0.24179888349026443 -2044,95,0.09866528958082199,0.06082983687520027,-0.0017340641585178675,0.020326893776655197,0.024343678262084712,0.08224561810493469,0.027152124792337418,0.05518520623445511,0.04023152031004429,0.2563369431067258 -2045,5,0.06395842880010605,0.010714299976825714,-0.015260436851531264,0.009486468508839607,0.004857657477259636,0.02772796303033829,0.005138367880135775,-0.0004917383193969727,0.017521698120981456,0.14920116637367756 -2045,10,0.0673571228981018,0.012199629098176956,-0.013065816834568977,0.010357152670621872,0.005874332040548325,0.033584211766719815,0.006182464770972729,0.0025759320706129074,0.01926317443139851,0.16008657538332044 -2045,30,0.07687458395957947,0.017645496875047684,-0.009254051372408867,0.012596052139997482,0.008669460192322731,0.0459590058773756,0.011402948759496212,0.009870311827398837,0.023595066135749222,0.18437501004664228 -2045,33,0.07797607779502869,0.018475437797605992,-0.008858541958034039,0.013093587011098862,0.009057782590389252,0.04738811880350113,0.01218602154403925,0.010833417996764183,0.024124383409507573,0.18709178555756809 -2045,50,0.08273659646511078,0.023731589317321777,-0.006941060535609722,0.015208104625344276,0.011304542422294617,0.05486655607819557,0.01662343181669712,0.016669333912432194,0.026953437831252813,0.2017135153291747 -2045,67,0.0872897058725357,0.030612565968185686,-0.0052260104566812515,0.017073854804039,0.014063187986612324,0.06253035366535187,0.021060843020677567,0.024033741094172,0.03008626338094473,0.21699148795567455 -2045,70,0.08811372518539429,0.032226624339818946,-0.00493387575261295,0.01757138781249523,0.014673890545964241,0.06404419019818305,0.021843917667865753,0.025756560266017914,0.030739033594727516,0.21996669606305658 -2045,90,0.09784632176160812,0.05056864395737648,-0.0026790588162839413,0.02030782401561737,0.021274182945489883,0.07780483365058899,0.026803378015756607,0.04465710557997227,0.03757763672620058,0.24884914522990587 -2045,95,0.10156755894422531,0.06333530694246292,-0.0018343889387324452,0.020929740741848946,0.025366097688674927,0.0842812158167362,0.028108499944210052,0.057417286559939384,0.04168072724714872,0.26391925907228136 -2046,5,0.06570342928171158,0.01090457383543253,-0.015868090093135834,0.009662440046668053,0.005014031194150448,0.028402105160057544,0.005114654079079628,-0.0007644752040505409,0.017980953911319375,0.15311356345191598 -2046,10,0.06919852644205093,0.01244689617305994,-0.01358480369672179,0.010566016659140587,0.006071710493415594,0.03440713509917259,0.006203863769769669,0.0024319951888173838,0.019790384406223892,0.16430231402628123 -2046,30,0.07898594439029694,0.018093278631567955,-0.009629704058170319,0.012889502570033073,0.008984047919511795,0.04707453511655331,0.01164991408586502,0.009999013505876064,0.02429371695034206,0.18929974236525596 -2046,33,0.08011868596076965,0.01895415622740984,-0.009222578257322311,0.013405833393335342,0.009388716891407967,0.048533108085393906,0.012466821819543839,0.01099405437707901,0.02484293282032013,0.19210184018593282 -2046,50,0.0850142389535904,0.024413522332906723,-0.007231437135487795,0.015600237995386124,0.011730734258890152,0.056195516139268875,0.017095962539315224,0.01706289639696479,0.027787585742771626,0.2071780851110816 -2046,67,0.0896964892745018,0.03158260777592661,-0.0054512410424649715,0.017536476254463196,0.014609070494771004,0.06404781341552734,0.021725105121731758,0.024721635971218348,0.03105034925043583,0.22295785509049892 -2046,70,0.09054388850927353,0.03326774276793003,-0.0051462468691170216,0.018052805215120316,0.015242252498865128,0.06558794081211089,0.022542012855410576,0.02653744211420417,0.03172866813838482,0.22603122713044285 -2046,90,0.10055254399776459,0.05248105153441429,-0.0028079869225621223,0.02089262381196022,0.022129107266664505,0.0796797424554825,0.027715761214494705,0.04631587560288608,0.03886022325605154,0.2558666966855526 -2046,95,0.1043793335556984,0.06589053571224213,-0.0019314739620313048,0.021538037806749344,0.0263924989849329,0.08630102872848511,0.02907727286219597,0.05972833461419197,0.04313493808731437,0.27153646645601837 -2047,5,0.06772329658269882,0.01109383162111044,-0.01646564155817032,0.009836910292506218,0.005159665830433369,0.029014847241342068,0.005083166994154453,-0.0010187802836298943,0.018429389013908802,0.1571891093219165 -2047,10,0.07127641141414642,0.012694091536104679,-0.014100761152803898,0.010773910209536552,0.00625930679962039,0.035166025161743164,0.006218406837433577,0.0022854870185256004,0.02030704552307725,0.16864449819549918 -2047,30,0.08122631907463074,0.018544035032391548,-0.009998198598623276,0.013183342292904854,0.009287437424063683,0.04814690910279751,0.011894606985151768,0.010134520009160042,0.024984910525381564,0.1942849020007998 -2047,33,0.0823778584599495,0.019436330497264863,-0.009577933698892593,0.013718770816922188,0.00970965251326561,0.0496334582567215,0.012746036984026432,0.011170132551342249,0.025552283045835792,0.197170605417341 -2047,50,0.08735468238592148,0.02510233223438263,-0.007514005061239004,0.015994345769286156,0.01214628480374813,0.05748060904443264,0.01757080666720867,0.017471169121563435,0.028612369671463966,0.21263918280601501 -2047,67,0.09211466461420059,0.03256510816514494,-0.005669915582984686,0.018002204596996307,0.015140355266630653,0.06550780922174454,0.022395575419068336,0.025448129512369633,0.032003560513257985,0.2289239652454853 -2047,70,0.09297612309455872,0.034322803840041154,-0.005351379048079252,0.01853763312101364,0.015800651162862778,0.06709741204977035,0.02324700728058815,0.027325850445777178,0.0327118132263422,0.23206250220537186 -2047,90,0.10315093398094177,0.054427456110715866,-0.002925812266767025,0.021482495591044426,0.022966413386166114,0.081505985558033,0.028639396652579308,0.047994266590103515,0.040129254385828976,0.2628374236635864 -2047,95,0.10704125463962555,0.06849554926156998,-0.002023841254413128,0.022151779383420944,0.0274028480052948,0.08828338980674744,0.030058447271585464,0.06207742437254635,0.04457815419882535,0.27913278993219137 -2048,5,0.06955952942371368,0.01128207053989172,-0.017086103558540344,0.010009882971644402,0.005323600955307484,0.02971338592469692,0.005043907091021538,-0.0012872712686657906,0.018894890323281288,0.16123329573310913 -2048,10,0.07322152704000473,0.012941213324666023,-0.014624282717704773,0.010980835184454918,0.006464558653533459,0.03600125573575497,0.0062260935083031654,0.002135460264980793,0.020845520310103893,0.17302854638546705 -2048,30,0.08347634971141815,0.018997760489583015,-0.010387169197201729,0.013477569445967674,0.009613962844014168,0.049274494871497154,0.012137029320001602,0.010262676887214179,0.025700425263494253,0.19939116388559341 -2048,33,0.08466318249702454,0.01992195811122656,-0.009943304834887387,0.014032401144504547,0.010052386727184058,0.050785213708877563,0.013023669831454754,0.011339465621858835,0.02628730984404683,0.2023606828879565 -2048,50,0.08979251980781555,0.025798015296459198,-0.007812630385160446,0.016390427947044373,0.012585090473294258,0.058816976845264435,0.018047964200377464,0.01786554418504238,0.02946589421480894,0.21830206643790007 -2048,67,0.09469836950302124,0.03356007091701033,-0.005900893360376358,0.018471039831638336,0.015700070187449455,0.0670245096832514,0.02307225950062275,0.026160994544625282,0.03299098260700703,0.23509521833155306 -2048,70,0.09558624029159546,0.03539181239902973,-0.00557346036657691,0.01902586966753006,0.016387708485126495,0.06864747405052185,0.023958900943398476,0.02812541173771021,0.03372344244271517,0.2383397721685469 -2048,90,0.10607285797595978,0.05640785023570061,-0.003055528039112687,0.02207743562757969,0.02384485863149166,0.08337549865245819,0.029574289917945862,0.04972802009433508,0.04143871143460274,0.2701570042409003 -2048,95,0.11008239537477493,0.07115031778812408,-0.00213040504604578,0.022770972922444344,0.028459154069423676,0.09030437022447584,0.03105202317237854,0.06447632996132577,0.046064126770943396,0.28715045837452635 -2049,5,0.07155034691095352,0.011469293385744095,-0.017715278081595894,0.010181358084082603,0.005493553355336189,0.030429456382989883,0.004996872041374445,-0.001582276076078415,0.01937180836685002,0.16543705558869987 -2049,10,0.07529802620410919,0.013188263401389122,-0.015171990729868412,0.011186789721250534,0.006682958919554949,0.03686102107167244,0.006226923316717148,0.0019542574882507324,0.021397653222084045,0.1775253068190068 -2049,30,0.08579275012016296,0.019454458728432655,-0.010785442031919957,0.013772187754511833,0.00995617602020502,0.050430167466402054,0.012377182021737099,0.010377850383520126,0.02643512962386012,0.2046013606712222 -2049,33,0.08700735121965408,0.02041104154661298,-0.010330313816666603,0.014346720650792122,0.01041417010128498,0.05197335407137871,0.013299720361828804,0.011492246761918068,0.027043395675718784,0.20766676869243383 -2049,50,0.09225668758153915,0.026500580832362175,-0.008120940998196602,0.016788484528660774,0.0130443274974823,0.06018524989485741,0.0185274388641119,0.018260220997035503,0.030342516722157598,0.22405877383425832 -2049,67,0.09727731347084045,0.03456749226897957,-0.006141660520806903,0.018942981958389282,0.016289614476263533,0.06857760332524777,0.023755157366394997,0.026876161184627583,0.03400496138259769,0.24136050747707488 -2049,70,0.0981859490275383,0.03647476360201835,-0.005801469553261995,0.01951751485466957,0.017003240063786507,0.07023701816797256,0.02467769756913185,0.028917110059410334,0.034768324345350266,0.2446712741628289 -2049,90,0.10891790688037872,0.05842224135994911,-0.0031934669241309166,0.02267744578421116,0.024764398112893105,0.08529199659824371,0.030520441010594368,0.05147984065115452,0.042792417109012604,0.2775366624817252 -2049,95,0.11302124708890915,0.07385485619306564,-0.0022301331628113985,0.023395610973238945,0.029563289135694504,0.09237122908234593,0.032058004289865494,0.06692545441910625,0.047599432896822676,0.2952039657859131 -2050,5,0.0737023651599884,0.011655498296022415,-0.01837450945749879,0.010351333767175674,0.005677534732967615,0.03116021864116192,0.004942066036164761,-0.0018872539047151801,0.01985918916761875,0.169752744352445 -2050,10,0.07745836675167084,0.013435241766273975,-0.015737872570753098,0.011391773819923401,0.006913067772984505,0.03773549310863018,0.006220899056643248,0.0017627701163291931,0.021963285049423575,0.18206987506709993 -2050,30,0.08797640353441238,0.019914129748940468,-0.011198490858078003,0.014067191630601883,0.010314654558897018,0.05160917527973652,0.012615062296390533,0.010479547921568156,0.027186919399537147,0.20967232435941696 -2050,33,0.08919369429349899,0.020903578326106072,-0.010723810540512205,0.014661729335784912,0.010788549073040485,0.05319063890725374,0.013574186712503433,0.011634566821157932,0.02781448846682906,0.21280660269316284 -2050,50,0.09445469826459885,0.027210021391510963,-0.008439088240265846,0.01718851365149021,0.013523073866963387,0.06158207543194294,0.01900922693312168,0.018644150346517563,0.031240120297297835,0.22956593008711934 -2050,67,0.09948647022247314,0.035587374716997175,-0.006392807699739933,0.019418029114603996,0.01689794473350048,0.07017419703304768,0.02444426342844963,0.02759948233142495,0.0350457856990397,0.24729548464994877 -2050,70,0.10039712488651276,0.0375716608017683,-0.006037633866071701,0.020012566819787025,0.017646964639425278,0.07186657637357712,0.02540338970720768,0.02971276151947677,0.03583684042096138,0.25070037599653006 -2050,90,0.11115291714668274,0.060470618307590485,-0.003337420988827944,0.023282524198293686,0.025718016549944878,0.08722516894340515,0.03147784620523453,0.053240970242768526,0.04418963361531496,0.28449760931544005 -2050,95,0.1152653694152832,0.07660916447639465,-0.002344205742701888,0.024025697261095047,0.030710441339760957,0.09449237585067749,0.03307638689875603,0.0694004949182272,0.04918588884174824,0.30279129869304594 -2051,5,0.07556846737861633,0.011840686202049255,-0.019030528143048286,0.010519811883568764,0.0058613913133740425,0.03190118670463562,0.004879484884440899,-0.0022077402099967003,0.02034939646255225,0.17384650587337092 -2051,10,0.0793648362159729,0.013682148419320583,-0.016303142346441743,0.011595789343118668,0.007152041886001825,0.038630038127303125,0.006208016537129879,0.0015716124325990677,0.022533437237143517,0.18641755171120167 -2051,30,0.08999593555927277,0.020376773551106453,-0.0116104232147336,0.01436258852481842,0.010678382590413094,0.052784379571676254,0.012850672006607056,0.010590976104140282,0.02794290501624346,0.2146222135052085 -2051,33,0.09122631698846817,0.02139956969767809,-0.011120220646262169,0.014977432787418365,0.011171450838446617,0.05439908429980278,0.01384707074612379,0.011788484435528514,0.028593866154551506,0.21781938563100994 -2051,50,0.09654386341571808,0.027926340699195862,-0.008760993368923664,0.017590520903468132,0.014007968828082085,0.06298190727829933,0.019493326544761658,0.01904207654297352,0.032144990749657154,0.23498213523998857 -2051,67,0.10162973403930664,0.036619719490408924,-0.006644276902079582,0.019896186888217926,0.017513925209641457,0.07175011932849884,0.02513958513736725,0.028331932611763477,0.03609248785302044,0.2531721284566447 -2051,70,0.10255017131567001,0.038682501763105386,-0.006280146166682244,0.02051103115081787,0.018293892964720726,0.07348524034023285,0.026135984808206558,0.030528790783137083,0.03691705334931612,0.25665998021140696 -2051,90,0.11342158168554306,0.06255300343036652,-0.0034832870587706566,0.02389267459511757,0.026668230071663857,0.08915041536092759,0.03244650736451149,0.05500456131994724,0.045583894662559035,0.2914964848197997 -2051,95,0.11757823824882507,0.07941324263811111,-0.0024598247837275267,0.0246612299233675,0.03186473995447159,0.09656864032149313,0.03410717099905014,0.07191610056906939,0.05076827174052595,0.3104301178827882 -2052,5,0.07708466798067093,0.012024855241179466,-0.019681859761476517,0.010686792433261871,0.006063426844775677,0.03269817251712084,0.004809129983186722,-0.002517550252377987,0.02086128471419215,0.17776218988001347 -2052,10,0.0810030847787857,0.013928981497883797,-0.016870745457708832,0.011798834428191185,0.007398432120680809,0.03956666216254234,0.006188276223838329,0.001373286359012127,0.02311907634139061,0.19064502837136388 -2052,30,0.09197596460580826,0.020842386409640312,-0.01202900977805257,0.014658372849225998,0.011048723384737969,0.0539957407861948,0.013084009289741516,0.010696299141272902,0.02871488411910832,0.2196215795353055 -2052,33,0.09324589371681213,0.02189901752397418,-0.011522097513079643,0.015293825417757034,0.011564401909708977,0.0556314217299223,0.014118369668722153,0.011944602243602276,0.02938699843361974,0.22290094937197863 -2052,50,0.09873440116643906,0.028649529442191124,-0.009088121354579926,0.017994500696659088,0.014507178217172623,0.06439915299415588,0.01997974142432213,0.01943088322877884,0.03306614840403199,0.2405641172081232 -2052,67,0.10398376733064651,0.037664521634578736,-0.006905519403517246,0.020377449691295624,0.01814620941877365,0.07332806289196014,0.025841113179922104,0.029071125201880932,0.03715113114565611,0.2592886118218303 -2052,70,0.10493379831314087,0.03980728648602962,-0.006527500227093697,0.02101290225982666,0.01894640177488327,0.07510533928871153,0.02687547355890274,0.03134240512736142,0.038009561598300934,0.26290714549832045 -2052,90,0.11615470796823502,0.06466937065124512,-0.003639035392552614,0.02450789511203766,0.027632636949419975,0.09106358438730242,0.03342641890048981,0.056800612062215886,0.046991919353604326,0.2988447478041053 -2052,95,0.12044499814510345,0.08226708322763443,-0.0025804878678172827,0.025302210822701454,0.03304079920053482,0.09863792359828949,0.03515035659074783,0.07446635153610252,0.052360304538160554,0.3184534449363127 -2053,5,0.07840433716773987,0.012208008207380772,-0.020366424694657326,0.010852273553609848,0.006251090671867132,0.033498079888522624,0.004731002263724804,-0.0028556380420923233,0.021363788330927492,0.18146036679390817 -2053,10,0.08249878883361816,0.01417574379593134,-0.01746593788266182,0.012000909075140953,0.007643029093742371,0.0404740571975708,0.006161681842058897,0.0011527109891176224,0.02370332316495478,0.19476485345512629 -2053,30,0.09396461397409439,0.021310972049832344,-0.012461707927286625,0.014954544603824615,0.011431350000202654,0.05520189739763737,0.013315077871084213,0.010799831245094538,0.02949648108333349,0.22467147833667694 -2053,33,0.09529159963130951,0.022401918675750494,-0.011942986659705638,0.015610909089446068,0.01196303404867649,0.0568590946495533,0.014388087205588818,0.012079079961404202,0.03019049357622862,0.22805562359280884 -2053,50,0.10102666914463043,0.029379600659012794,-0.0094295684248209,0.01840045489370823,0.015020180493593216,0.06582516431808472,0.020468473434448242,0.01982047688215971,0.03400206658989191,0.246287414804101 -2053,67,0.10651186108589172,0.0387217848747969,-0.007167988922446966,0.02086181752383709,0.01879732683300972,0.0749431848526001,0.02654886059463024,0.029812837950885296,0.0382356016151607,0.2656150667741895 -2053,70,0.10750457644462585,0.040946017578244204,-0.006779929157346487,0.021518182009458542,0.01962866075336933,0.0767438530921936,0.02762187086045742,0.032176701352000237,0.039134662598371506,0.26939030091743915 -2053,90,0.11922957003116608,0.06681974232196808,-0.0037933192448690515,0.025128182023763657,0.028648847714066505,0.09303121268749237,0.03441759943962097,0.05870032999664551,0.04846027158200741,0.306606019847095 -2053,95,0.12371259927749634,0.0851707011461258,-0.002703223144635558,0.02594863809645176,0.0342617891728878,0.10075903236865996,0.036205947399139404,0.07705938583239913,0.05402330234646796,0.32689848728477955 -2054,5,0.0798945277929306,0.012390144169330597,-0.021050257608294487,0.011016257107257843,0.0064363121055066586,0.034221094101667404,0.00464510265737772,-0.0031902573071420186,0.021866752323694526,0.18524227317539044 -2054,10,0.08411026746034622,0.014422433450818062,-0.018048439174890518,0.012202015146613121,0.007881639525294304,0.04135299101471901,0.006128231529146433,0.0009459392167627815,0.024279002286493778,0.19890480674803257 -2054,30,0.09591571986675262,0.02178253047168255,-0.012894504703581333,0.015251107513904572,0.011807966977357864,0.0563799113035202,0.013543874956667423,0.010909996926784515,0.030276001384481787,0.22963315709494053 -2054,33,0.09728201478719711,0.022908273804932832,-0.012357848696410656,0.015928683802485466,0.01235857605934143,0.058072302490472794,0.01465622242540121,0.012224864214658737,0.030992987379431725,0.23314843183383346 -2054,50,0.1031869649887085,0.030116545036435127,-0.009763023816049099,0.018808383494615555,0.015528105199337006,0.0672261118888855,0.02095951698720455,0.020219828700646758,0.034934516064822674,0.25187187641859055 -2054,67,0.1088346317410469,0.03979150671511892,-0.007429023017175494,0.021349294111132622,0.019445469602942467,0.07653643190860748,0.027262814342975616,0.03057240229099989,0.03932354960590601,0.27173154801130295 -2054,70,0.1098567470908165,0.04209869354963302,-0.0070329089649021626,0.022026868537068367,0.020312216319143764,0.0783761739730835,0.028375161811709404,0.03302053874358535,0.040256023220717904,0.275608419906348 -2054,90,0.12192905694246292,0.06900409609079361,-0.00394538389518857,0.02575353905558586,0.029664648696780205,0.0949829176068306,0.03542002663016319,0.06065238732844591,0.04992135036736727,0.3140100422780961 -2054,95,0.12654487788677216,0.08812407404184341,-0.002811465645208955,0.026600509881973267,0.03548271767795085,0.10287478566169739,0.03727393224835396,0.07969505072105676,0.0556910140439868,0.33504076581448317 -2055,5,0.08165542036294937,0.012571261264383793,-0.021757712587714195,0.011178741231560707,0.006620240956544877,0.034926705062389374,0.004551427438855171,-0.0035491976886987686,0.022362151369452476,0.1892649568617344 -2055,10,0.08593742549419403,0.014669051393866539,-0.01865093596279621,0.01240215077996254,0.00811736099421978,0.04221386723220349,0.0060879229567945,0.0007202461361885111,0.024858002876862885,0.20320713883265853 -2055,30,0.09792846441268921,0.022257061675190926,-0.013335836119949818,0.015548059716820717,0.01218965109437704,0.05755995735526085,0.013770400546491146,0.011014269664883614,0.031058705411851406,0.23462070152163506 -2055,33,0.09931623190641403,0.023418084755539893,-0.012777420692145824,0.016247151419520378,0.012761779129505157,0.05929100140929222,0.014922772534191608,0.012364829890429974,0.03180510780774057,0.2382226763293147 -2055,50,0.10531400889158249,0.03086037002503872,-0.010103651322424412,0.019218288362026215,0.01604815013706684,0.06863463670015335,0.021452877670526505,0.020620936527848244,0.03588356543332338,0.25742759741842747 -2055,67,0.11105045676231384,0.04087369337677959,-0.007693030405789614,0.02183987945318222,0.020114266965538266,0.07814165949821472,0.027982981875538826,0.03134247846901417,0.040427110996097325,0.27779659958090636 -2055,70,0.112088643014431,0.04326531328260898,-0.00727869151160121,0.022538969293236732,0.021007249131798744,0.08001729100942612,0.029135355725884438,0.03386745601892471,0.04139976389706135,0.28180640558712183 -2055,90,0.12435071915388107,0.0712224543094635,-0.00409219153225421,0.02638397179543972,0.03071548417210579,0.09697941541671753,0.03643370792269707,0.0626043351367116,0.051427086815238,0.3213823805563152 -2055,95,0.12903910875320435,0.09112722426652908,-0.002918934915214777,0.027257835492491722,0.03675714135169983,0.1050155907869339,0.03835432976484299,0.08242155844345689,0.05740531347692013,0.34312169440090656 -2056,5,0.08142688870429993,0.012751362286508083,-0.022453786339610815,0.01133972778916359,0.00684274872764945,0.035798258148133755,0.004449980799108744,-0.0039020576979964952,0.022900999709963798,0.19162301160395145 -2056,10,0.08594632148742676,0.014915596693754196,-0.019256727769970894,0.012601315975189209,0.008391771465539932,0.043209437280893326,0.006040759850293398,0.0004974957555532455,0.025472759548574687,0.20602550893090665 -2056,30,0.09860220551490784,0.022734561935067177,-0.013787063769996166,0.015845399349927902,0.01260693371295929,0.058807965368032455,0.013994656503200531,0.011104314122349024,0.03188035152852535,0.2385008681099862 -2056,33,0.10006692260503769,0.02393134968355298,-0.013219969384372235,0.016566308215260506,0.013192273676395416,0.06058734282851219,0.015187741257250309,0.012503893114626408,0.03265004029497504,0.24218839990906418 -2056,50,0.10639724880456924,0.03161107003688812,-0.010458662174642086,0.01963016390800476,0.016597668640315533,0.07009458541870117,0.021948551759123802,0.021018387749791145,0.03686451353132725,0.2620428865775466 -2056,67,0.11245175451040268,0.041968334913253816,-0.007977769095450638,0.022333567962050438,0.020800551399588585,0.07976700365543365,0.02870936505496502,0.03210376245551743,0.0415550428070128,0.28309721335303045 -2056,70,0.11354750394821167,0.04444588050246238,-0.007550498936325312,0.023054474964737892,0.021730558946728706,0.08167707175016403,0.029902450740337372,0.03471968322992325,0.04256139323115349,0.2872543178964406 -2056,90,0.12648946046829224,0.07347480207681656,-0.0042618499137461185,0.02701946720480919,0.03176409751176834,0.09893794357776642,0.03745865449309349,0.06455455301329494,0.052929380722343926,0.328172674542293 -2056,95,0.13143780827522278,0.0941801369190216,-0.003052585991099477,0.02792060188949108,0.03801189605146645,0.10713425278663635,0.0394471250474453,0.08516973350197077,0.059122306387871484,0.35074445721693337 -2057,5,0.08302943408489227,0.012930444441735744,-0.02313476800918579,0.01149921678006649,0.007044383184984327,0.03653787579387426,0.004340759944170713,-0.004250357858836651,0.023406749102286996,0.19553628626745195 -2057,10,0.08767251670360565,0.015162070281803608,-0.019849366694688796,0.012799512594938278,0.008640836924314499,0.044091057032346725,0.005986739881336689,0.000281360000371933,0.026060871221125128,0.21031657527200878 -2057,30,0.10067468881607056,0.0232150349766016,-0.01422345731407404,0.016143130138516426,0.01299211010336876,0.05998101830482483,0.014216640964150429,0.011208946816623211,0.03267053440213204,0.2436097669415176 -2057,33,0.10217948257923126,0.024448070432990788,-0.013640938326716423,0.016886156052350998,0.01359308511018753,0.06179266795516014,0.015451124869287014,0.012652976904064417,0.03346433429047465,0.24737788435071706 -2057,50,0.1086830198764801,0.03236864507198334,-0.010797368362545967,0.02004401572048664,0.01711343787610531,0.0714699923992157,0.022446539252996445,0.02143744472414255,0.03781553916633129,0.26776961982250214 -2057,67,0.11490319669246674,0.043075440041720904,-0.008242625743150711,0.022830363363027573,0.021456046029925346,0.08131976410746575,0.02944195456802845,0.03289183740504087,0.042660702019929886,0.2893823307566345 -2057,70,0.11602891981601715,0.045640388876199714,-0.007799272425472736,0.023573391139507294,0.02242102287709713,0.0832807719707489,0.03067643940448761,0.03559969877824187,0.04369468744844198,0.2936865659430623 -2057,90,0.1293250024318695,0.07576113939285278,-0.004416092438623306,0.027660036459565163,0.03279808536171913,0.10087026655673981,0.03849484771490097,0.06654991954565048,0.05441967025399208,0.3358620908111334 -2057,95,0.13440872728824615,0.09728282690048218,-0.0031734337098896503,0.02858881838619709,0.03924471512436867,0.1091734915971756,0.04055231809616089,0.08798322454094887,0.06080762669444084,0.35915291609708216 -2058,5,0.08646130561828613,0.0131085105240345,-0.023853713646531105,0.01165720634162426,0.007209355011582375,0.03715448081493378,0.0042237648740410805,-0.004610508680343628,0.02389160431921482,0.20107333136256783 -2058,10,0.0911535769701004,0.015408472158014774,-0.02046678029000759,0.012996738776564598,0.008861560374498367,0.04486108459532261,0.005925863049924374,5.7348981499671936e-05,0.026634431816637518,0.21614455096423627 -2058,30,0.10429351031780243,0.023698480799794197,-0.014666578732430935,0.01644124835729599,0.013368375599384308,0.061108097434043884,0.01443635206669569,0.011318434448912737,0.03345501814037562,0.2501563423778862 -2058,33,0.10581424832344055,0.02496824514120817,-0.014065619558095932,0.017206696793437004,0.013991642743349075,0.0629559263586998,0.015712926164269447,0.012809130796231326,0.03427601233124733,0.2540350763592869 -2058,50,0.11238668859004974,0.03313310071825981,-0.011134190484881401,0.020459843799471855,0.017637254670262337,0.07284029573202133,0.022946838289499283,0.02186282817274332,0.03876821883022785,0.27491190610453486 -2058,67,0.11867276579141617,0.04419500250369314,-0.008500398136675358,0.023330271244049072,0.02213237224146724,0.08290140792727471,0.030180754140019417,0.033686464140191684,0.043782152906060225,0.29704977555200457 -2058,70,0.11981041729450226,0.0468488436192274,-0.00804260466247797,0.024095715954899788,0.023125650361180305,0.08488801121711731,0.0314573310315609,0.036488681100308895,0.04484939984977245,0.3014899935573339 -2058,90,0.13324737548828125,0.07808148115873337,-0.004555328283458948,0.028305673971772194,0.0338691771030426,0.10282395482063295,0.039542291313409805,0.06859004776924849,0.0559549393132329,0.3447916302829981 -2058,95,0.13838496804237366,0.1004352793097496,-0.0032743222545832396,0.0292624831199646,0.04055353645235298,0.11128689348697662,0.04166991636157036,0.09081545562948994,0.06257143812254069,0.3689268795307725 -2059,5,0.08809785544872284,0.013285558670759201,-0.024619210511446,0.011813698336482048,0.007377957925200462,0.0377361735329032,0.004098997451364994,-0.0050065889954566956,0.02437957243528217,0.20494547246489675 -2059,10,0.09294557571411133,0.015654800459742546,-0.021117767877876756,0.013192994520068169,0.009087273851037025,0.04564044997096062,0.005858130287379026,-0.00018275529146194458,0.027219531312584876,0.2204244965221733 -2059,30,0.10652078688144684,0.024184899404644966,-0.01513159489259124,0.016739755868911743,0.013753296807408333,0.06226663552224636,0.014653796330094337,0.011420530267059803,0.03425846453756094,0.25545125966891646 -2059,33,0.10809189826250076,0.025491873193532227,-0.01450781337916851,0.017527924850583076,0.01441470056772232,0.06414578512310981,0.01597314514219761,0.012952327132225036,0.035105977673083544,0.25940811817068604 -2059,50,0.11488205939531326,0.03390442952513695,-0.01148531911894679,0.020877646282315254,0.01818651333451271,0.07425624877214432,0.023449458181858063,0.022280593868345022,0.039748044684529305,0.280937640927732 -2059,67,0.12137637287378311,0.04532703232020144,-0.008766768397763367,0.02383328042924404,0.022850828245282173,0.08454456821084023,0.030925773084163666,0.034489150159060955,0.044945494309067725,0.3037229524878785 -2059,70,0.12255171686410904,0.04807124324142932,-0.008296201564371585,0.024621447548270226,0.02388489283621311,0.08655825555324555,0.032245125621557236,0.03738453192636371,0.04605163261294365,0.30834726830944414 -2059,90,0.13643378019332886,0.08043581247329712,-0.004691300913691521,0.028956379741430283,0.0350298248231411,0.104856938123703,0.040601011365652084,0.07064368762075901,0.05757326167076827,0.35299684247002006 -2059,95,0.1417415738105774,0.10363749414682388,-0.0033677939791232347,0.02994159236550331,0.04195703566074371,0.1134878396987915,0.042799923568964005,0.09371149465441657,0.06444637477397919,0.3781012122519314 -2060,5,0.0899323970079422,0.013461589813232422,-0.025372615084052086,0.011968692764639854,0.00757598178461194,0.0384550541639328,0.003966457210481167,-0.005398393468931317,0.024894246272742747,0.20905159979593008 -2060,10,0.09487508982419968,0.01590105891227722,-0.021769819781184196,0.013388281688094139,0.009344986267387868,0.04650887846946716,0.005783541593700647,-0.0004391409456729889,0.02782778684049845,0.22487820172682405 -2060,30,0.10871625691652298,0.02467428892850876,-0.015604390762746334,0.017038652673363686,0.014174064621329308,0.0634722240269184,0.014868966303765774,0.011509615927934647,0.03508852478116751,0.2607626961544156 -2060,33,0.1103181466460228,0.02601895708590746,-0.014965535141527653,0.017849847674369812,0.0148538239300251,0.06540468245744704,0.016231779009103775,0.013089318070560694,0.03596442617010325,0.2648101558163762 -2060,50,0.11724133044481277,0.034682635217905045,-0.011847554706037045,0.02129742130637169,0.018757975660264492,0.07571376860141754,0.02395438775420189,0.0226912721991539,0.04075939394533634,0.28686311608180404 -2060,67,0.12386287748813629,0.046471516974270384,-0.00904774758964777,0.024339398369193077,0.023589501157402992,0.08619837462902069,0.0316770002245903,0.03529882293660194,0.04613178420811893,0.31023075617849827 -2060,70,0.1250612437725067,0.04930758923292159,-0.008560515008866787,0.025150593370199203,0.02466145157814026,0.08826021552085876,0.03303981572389603,0.03826654888689518,0.047281372174620626,0.31500890515744684 -2060,90,0.13921527564525604,0.08282414078712463,-0.004853352112695571,0.029612161219120026,0.03622433915734291,0.10690031945705414,0.04167097061872482,0.07272690255194902,0.05920337177813053,0.36097654174081983 -2060,95,0.14462703466415405,0.10688948631286621,-0.003487498115282511,0.03062615357339382,0.04336201399564743,0.11567927896976471,0.043942321091890335,0.09664406036026714,0.06633039359003305,0.3868902577087283 -2061,5,0.09156470745801926,0.013636602088809013,-0.02614903450012207,0.01212218776345253,0.007796361576765776,0.039236485958099365,0.003826143452897668,-0.005812278017401695,0.025439885957166553,0.21305160908959805 -2061,10,0.09661056846380234,0.016147244721651077,-0.022451624274253845,0.01358259841799736,0.009625010192394257,0.047435078769922256,0.0057020969688892365,-0.0007118545472621918,0.0284641157835722,0.2292577455751598 -2061,30,0.11074066162109375,0.025166649371385574,-0.01609480008482933,0.017337938770651817,0.014621030539274216,0.06473814845085143,0.015081867575645447,0.011577237397432327,0.03595065427944064,0.2659844487439841 -2061,33,0.11237598955631256,0.026549494937062264,-0.015440065413713455,0.018172459676861763,0.015326225701719522,0.06671242639422417,0.016488833352923393,0.013203015234321352,0.03686013950034976,0.27013743718154726 -2061,50,0.11944369226694107,0.0354677177965641,-0.012231972068548203,0.02171917073428631,0.019368020817637444,0.07722340524196625,0.02446163445711136,0.023101559840142727,0.041805513203144073,0.29271757043898106 -2061,67,0.12620346248149872,0.04762846026569609,-0.009345764713361853,0.02484862320125103,0.024364959448575974,0.08789143010973932,0.03243444114923477,0.0360867977142334,0.04736216925084591,0.3166785323806107 -2061,70,0.1274268478155136,0.050557880103588096,-0.008846390061080456,0.025683144107460976,0.025476235896348953,0.08999805152416229,0.03384140506386757,0.03916694223880768,0.0485511627048254,0.32158217765390873 -2061,90,0.14187632501125336,0.08524645864963531,-0.005021719262003899,0.030273007228970528,0.037445079535245895,0.1089861735701561,0.042752187699079514,0.07483176561072469,0.060886206477880477,0.36890002619475126 -2061,95,0.14740106463432312,0.1101912409067154,-0.0036139851436018944,0.031316157430410385,0.04482821747660637,0.11791016161441803,0.04509713128209114,0.09962864946573931,0.06826960481703281,0.39563239458948374 -2062,5,0.09293276071548462,0.0138105982914567,-0.02690919302403927,0.012274185195565224,0.008032641373574734,0.04004582017660141,0.003678055014461279,-0.006229225546121597,0.025989089161157608,0.2168715445557609 -2062,10,0.09814459085464478,0.016393356025218964,-0.023119768127799034,0.013775944709777832,0.009911861270666122,0.048394352197647095,0.0056137945502996445,-0.000979788601398468,0.02910254951566458,0.23353457623161375 -2062,30,0.1127394437789917,0.025661980733275414,-0.016579806804656982,0.017637616023421288,0.015068860724568367,0.06599661707878113,0.015292495489120483,0.011654377914965153,0.03681701961904764,0.2712321155704558 -2062,33,0.1144285649061203,0.027083487994968892,-0.0159094650298357,0.01849576272070408,0.01579678013920784,0.06801210388541222,0.016744300723075867,0.013325415463186796,0.03775668090209365,0.27547765453346074 -2062,50,0.12172874063253403,0.03625967726111412,-0.012613621540367603,0.022142896428704262,0.019974611699581146,0.07869763672351837,0.024971194565296173,0.02351917326450348,0.04285395238548517,0.29869808442890644 -2062,67,0.12871085107326508,0.04879786711186175,-0.009647920727729797,0.0253609549254179,0.02513892576098442,0.0895712822675705,0.03319808468222618,0.03690949978772551,0.04858316389843822,0.3232935139909387 -2062,70,0.12997446954250336,0.05182211101055144,-0.009137414768338206,0.02621910348534584,0.026280639693140984,0.09170082211494446,0.03464989364147186,0.040073574520647526,0.04981375429779291,0.328335527330637 -2062,90,0.14489921927452087,0.08770276606082916,-0.005197908915579317,0.030938923358917236,0.03863900527358055,0.11102703213691711,0.04384465888142586,0.0769798718392849,0.06255013458430767,0.37695309137925503 -2062,95,0.1506056785583496,0.11354275792837143,-0.003745622932910919,0.03201160952448845,0.046283919364213943,0.12011065930128094,0.04626433178782463,0.10267961397767067,0.07017013793811201,0.4046132657676935 -2063,5,0.09458988159894943,0.01398357655853033,-0.0277156550437212,0.012424683198332787,0.008242901414632797,0.04080929979681969,0.0035221949219703674,-0.006665232591331005,0.026522375643253326,0.22087052550632508 -2063,10,0.0999302938580513,0.01663939841091633,-0.023810826241970062,0.013968322426080704,0.010189886391162872,0.04929560273885727,0.005518638528883457,-0.001265271380543707,0.029736589640378952,0.23796833399683237 -2063,30,0.11488520354032516,0.026160286739468575,-0.01707993634045124,0.01793767884373665,0.015520671382546425,0.06724494695663452,0.015500854700803757,0.011738792154937982,0.03769583869725466,0.276597301568836 -2063,33,0.11661599576473236,0.027620935644954443,-0.016389934346079826,0.018819758668541908,0.016272664070129395,0.06930221974849701,0.016998186707496643,0.013448195531964302,0.03865571966394782,0.28092407861724494 -2063,50,0.12409626692533493,0.0370585136115551,-0.012998721562325954,0.02256859466433525,0.02059091255068779,0.08019494265317917,0.02548306994140148,0.023934156633913517,0.04391344264149666,0.30475006764754653 -2063,67,0.13125061988830566,0.04997973382472996,-0.009950859760865566,0.025876393541693687,0.025934666395187378,0.09127722948789598,0.03396795317530632,0.037718492024578165,0.04984029661864043,0.33002353832125664 -2063,70,0.13254541158676147,0.05310028940439223,-0.00942377932369709,0.026758471503853798,0.02712118811905384,0.09344778209924698,0.035465288907289505,0.04100620560348034,0.05110720228403807,0.3352186638629064 -2063,90,0.14783836901187897,0.09019307792186737,-0.005366763332858674,0.0316099114716053,0.039916664361953735,0.11313274502754211,0.04494839534163475,0.07913458347320557,0.06429395824670792,0.38523323694244027 -2063,95,0.15368559956550598,0.11694404482841492,-0.0038687398191541433,0.03271251171827316,0.04781416729092597,0.12236603796482083,0.047443948686122894,0.10575209325179456,0.07217603176832199,0.4137999426573513 -2064,5,0.09668649733066559,0.014155537821352482,-0.02849976159632206,0.012573683634400368,0.00847031269222498,0.04159743711352348,0.0033585610799491405,-0.007085371762514114,0.027070584800094367,0.22530128879006953 -2064,10,0.10209184139966965,0.016885366290807724,-0.024492356926202774,0.014159729704260826,0.010478515177965168,0.05022575706243515,0.0054166242480278015,-0.0015411954373121262,0.03038108628243208,0.24270711918361484 -2064,30,0.11722858995199203,0.02666156366467476,-0.017570674419403076,0.0182381309568882,0.01597396843135357,0.06849007308483124,0.015706943348050117,0.011807622388005257,0.03857390284538269,0.28214606195688247 -2064,33,0.11898042261600494,0.028161836620420218,-0.01686912588775158,0.019144443795084953,0.016749465838074684,0.07058359019458293,0.017250491306185722,0.013578785583376884,0.03956177085638046,0.2865669056773186 -2064,50,0.12655164301395416,0.03786422684788704,-0.013385625556111336,0.022996267303824425,0.021208152174949646,0.08166911453008652,0.025997260585427284,0.024362068623304367,0.044977121986448765,0.3108580829575658 -2064,67,0.13379299640655518,0.05117406036704783,-0.010256352080032229,0.026394937187433243,0.02672216109931469,0.09295713901519775,0.0347440280020237,0.038562895730137825,0.051088072936981935,0.3367089525284246 -2064,70,0.1351035237312317,0.05439241528511046,-0.00971287302672863,0.027301248162984848,0.027946827933192253,0.09515715241432189,0.0362875796854496,0.041944718221202486,0.05239415224641561,0.3420449709519744 -2064,90,0.1505824327468872,0.09271737933158875,-0.005545317195355892,0.032285965979099274,0.04115213826298714,0.1151750385761261,0.046063382178545,0.0813376674661413,0.0659960836172104,0.39333896357566117 -2064,95,0.15650075674057007,0.12039510905742645,-0.003997343126684427,0.03341885656118393,0.04930792357772585,0.12456542104482644,0.04863595962524414,0.10889030620455742,0.074132027849555,0.42279799920506766 -2065,5,0.09846420586109161,0.014326481148600578,-0.029260927811264992,0.012721186503767967,0.008725759573280811,0.04246477410197258,0.0031871541868895292,-0.007494945079088211,0.027642769017256798,0.22962777810171248 -2065,10,0.10397520661354065,0.01713126339018345,-0.025172248482704163,0.0143501665443182,0.010793464258313179,0.05122194774448872,0.005307754967361689,-0.0018224380910396576,0.031049265852198006,0.24733915916876867 -2065,30,0.11940781772136688,0.027165809646248817,-0.018075086176395416,0.018538974225521088,0.016448751091957092,0.06975818425416946,0.015910759568214417,0.011874241754412651,0.03947341442108154,0.2875288319773972 -2065,33,0.12119389325380325,0.028706195913255215,-0.017348961904644966,0.019469819962978363,0.017241378705948593,0.07190418243408203,0.017501210793852806,0.013714306987822056,0.040484045166522264,0.2920893486356363 -2065,50,0.12891310453414917,0.03867681697010994,-0.01378241553902626,0.023425918072462082,0.021836724132299423,0.0831613540649414,0.026513762772083282,0.02476834412664175,0.046052344143390656,0.3169199703261256 -2065,67,0.13629598915576935,0.05238084677606825,-0.010570939797908057,0.026916589587926865,0.02751142717897892,0.09461053907871247,0.03552631661295891,0.039402760565280914,0.05234122889116408,0.3433727938681841 -2065,70,0.13763214647769928,0.055698483809828746,-0.010010050609707832,0.02784743718802929,0.0287610050290823,0.09685203880071638,0.03711676970124245,0.04289357643574476,0.05368836037814617,0.34882290072273464 -2065,90,0.1534135937690735,0.09527567028999329,-0.0057320864871144295,0.03296709433197975,0.042363010346889496,0.11716345548629761,0.0471896268427372,0.08357328549027443,0.06767908185720443,0.4014439908787608 -2065,95,0.1594475954771042,0.12389592826366425,-0.004139517433941364,0.034130651503801346,0.05076434463262558,0.12673118710517883,0.049840375781059265,0.11206702701747417,0.07605956867337227,0.43193514971062535 -2066,5,0.09995970875024796,0.014496407471597195,-0.030064037069678307,0.012867189943790436,0.008961907727643848,0.04326013848185539,0.0030079721473157406,-0.007935197092592716,0.028203604742884636,0.23355332477949559 -2066,10,0.10560771822929382,0.017377087846398354,-0.025865379720926285,0.014539634808897972,0.01109558716416359,0.052188941836357125,0.00519202696159482,-0.0021223186515271627,0.03170600794255733,0.251667844876647 -2066,30,0.12142399698495865,0.027673032134771347,-0.01858461480587721,0.018840206786990166,0.0169267188757658,0.07102368772029877,0.016112303361296654,0.011948812170885503,0.04037178307771683,0.29283155854791404 -2066,33,0.12325447797775269,0.029254006072878837,-0.01783968135714531,0.019795889034867287,0.017739998176693916,0.07321034371852875,0.017750345170497894,0.013846190646290779,0.041410213094204666,0.29748268488794566 -2066,50,0.13116559386253357,0.0394962839782238,-0.014175872318446636,0.023857539519667625,0.022471444681286812,0.08465300500392914,0.027032578364014626,0.025187348946928978,0.04713974799960852,0.32291604951024055 -2066,67,0.13873201608657837,0.05360009428113704,-0.010890531353652477,0.027441350743174553,0.028321899473667145,0.09628526866436005,0.036314815282821655,0.04025634378194809,0.053617650642991066,0.35001520812511444 -2066,70,0.14010140299797058,0.05701849572360514,-0.010307827033102512,0.028397031128406525,0.02960922196507454,0.09857085645198821,0.037952858954668045,0.04385588504374027,0.055004125460982316,0.35563345607370134 -2066,90,0.1562751978635788,0.09786795824766159,-0.00592070771381259,0.03365328907966614,0.04362908750772476,0.11921556293964386,0.048327118158340454,0.08583489991724491,0.06941885054111481,0.4096753593767062 -2066,95,0.16245920956134796,0.12744653224945068,-0.004278229549527168,0.034847892820835114,0.05229874327778816,0.12894658297300338,0.05105718970298767,0.11528362287208438,0.07806627955287695,0.4411495067179203 -2067,5,0.10162296891212463,0.014665315859019756,-0.0309031686745584,0.013011695817112923,0.009199188183993103,0.044028880260884765,0.002821017988026142,-0.008410122245550156,0.028762455936521294,0.23761122305877508 -2067,10,0.10739484429359436,0.017622841522097588,-0.026582345366477966,0.014728132635354996,0.011397382244467735,0.053112778812646866,0.005069444887340069,-0.002430252358317375,0.032367880642414096,0.2561315606348217 -2067,30,0.12355799973011017,0.02818322367966175,-0.019110606983304024,0.019141826778650284,0.0174059197306633,0.07229611128568648,0.016311578452587128,0.012017080094665289,0.041277941688895224,0.2982534477952868 -2067,33,0.12542861700057983,0.029805272072553634,-0.018342018686234952,0.020122647285461426,0.01825115457177162,0.07452872395515442,0.017997900024056435,0.013960285112261772,0.042348729204386475,0.30302232838701454 -2067,50,0.13351324200630188,0.04032262787222862,-0.014581120572984219,0.024291137233376503,0.023133425042033195,0.08616732060909271,0.02755371294915676,0.025612661615014076,0.04825436230748892,0.32907998305745423 -2067,67,0.14124560356140137,0.05483180161565547,-0.011202615704387426,0.02796921506524086,0.029168229550123215,0.0980165742337704,0.03710952401161194,0.041111117228865623,0.0549280508235097,0.35683399066329 -2067,70,0.14264501631259918,0.0583524566143751,-0.010611770674586296,0.02895003743469715,0.030500997789204114,0.10033523440361022,0.038795847445726395,0.044807032123208045,0.0563641507178545,0.36256112437695265 -2067,90,0.15917351841926575,0.10049423575401306,-0.006107509415596719,0.03434455394744873,0.044973209500312805,0.1213320791721344,0.04947587847709656,0.08810954354703426,0.0712432038038969,0.41806431710720066 -2067,95,0.1654931604862213,0.13104689121246338,-0.004415498115122318,0.03557058051228523,0.05389802437275643,0.13121557235717773,0.052286408841609955,0.11849230760708451,0.08016701163724062,0.4504607668612152 -2068,5,0.10357288271188736,0.014833207242190838,-0.031709082424640656,0.013154704123735428,0.009445611387491226,0.0448296032845974,0.0026262900792062283,-0.00885406881570816,0.02933088634163141,0.241963546234183 -2068,10,0.10941172391176224,0.017868520691990852,-0.02727625146508217,0.01491566002368927,0.011705124750733376,0.054073387011885646,0.0049400050193071365,-0.002727672737091777,0.03303459659218788,0.2607883583230432 -2068,30,0.12576240301132202,0.028696386143565178,-0.019626524299383163,0.01944383606314659,0.017892539501190186,0.07354527711868286,0.01650858297944069,0.012092639692127705,0.04218496363610029,0.3036817144602537 -2068,33,0.12765473127365112,0.030359992645680903,-0.01883460208773613,0.02045009844005108,0.01875266619026661,0.07581378519535065,0.01824386790394783,0.014076284803450106,0.04328915005549788,0.3085681162774563 -2068,50,0.13583314418792725,0.041155844926834106,-0.01497625233605504,0.024726709350943565,0.02377576380968094,0.08764156699180603,0.028077157214283943,0.026044340804219246,0.04935275390744209,0.3351534968242049 -2068,67,0.1436552256345749,0.05607596881687646,-0.011525629675015806,0.028500190004706383,0.029984650593251,0.09969135403633118,0.037910446524620056,0.041992368875071406,0.05621628915891052,0.3635279696667567 -2068,70,0.1450708657503128,0.059700354933738695,-0.010914457030594349,0.02950645051896572,0.031356558203697205,0.1020398750901222,0.039645735174417496,0.04578560311347246,0.05769679583609104,0.36936154775321484 -2068,90,0.161791130900383,0.1031545102596283,-0.006290435325354338,0.03504088893532753,0.04625342786312103,0.12333385646343231,0.05063588544726372,0.09047555923461914,0.07301417160779237,0.4262506253086031 -2068,95,0.1681841015815735,0.13469702005386353,-0.004553053085692227,0.036298718303442,0.055444397032260895,0.1333865523338318,0.05352802574634552,0.12174764245282843,0.08219508267939091,0.4595456247683614 -2069,5,0.10572826862335205,0.015000080689787865,-0.03250352665781975,0.013296213001012802,0.009678365662693977,0.045599255710840225,0.0024237886536866426,-0.00927730929106474,0.029879941139370203,0.24634885783307253 -2069,10,0.11161032319068909,0.018114129081368446,-0.02795523591339588,0.015102218836545944,0.012001452967524529,0.05498265698552132,0.00480370968580246,-0.003012124449014657,0.033684495091438296,0.2655919374432415 -2069,30,0.1280820071697235,0.029212523251771927,-0.020127556286752224,0.019746234640479088,0.018356484547257423,0.07475983500480651,0.01670331507921219,0.012180887162685394,0.04307870380580425,0.30918046333827076 -2069,33,0.12998834252357483,0.030918167177587746,-0.019320448860526085,0.020778238773345947,0.019237028434872627,0.07707109540700913,0.018488256260752678,0.014203112572431564,0.044210385717451575,0.31415921365842225 -2069,50,0.13822728395462036,0.04199594259262085,-0.015365338884294033,0.025164255872368813,0.02440473437309265,0.0890846848487854,0.02860291860997677,0.02649151557125151,0.05043953284621239,0.3412427809089422 -2069,67,0.1461072564125061,0.05733259834349161,-0.01183304563164711,0.029034269973635674,0.03078317828476429,0.10131576120853425,0.03871758282184601,0.04287486802786589,0.057486518230289226,0.3701816778630018 -2069,70,0.1475333720445633,0.06106220707297324,-0.01120832096785307,0.030066274106502533,0.032193709164857864,0.10369172692298889,0.04050252586603165,0.046793881338089705,0.05900808852165937,0.37618667348288 -2069,90,0.1643773764371872,0.10584878921508789,-0.006470134947448969,0.035742297768592834,0.0475083626806736,0.12531398683786393,0.05180715024471283,0.09284687880426645,0.0747523544356227,0.43439068137668074 -2069,95,0.17081765830516815,0.13839691877365112,-0.0046824268763885025,0.03703230246901512,0.05695529934018848,0.13551007211208344,0.05478205159306526,0.12511135055683553,0.08419760130345821,0.4685930221894523 -2070,5,0.1077989935874939,0.015165937133133411,-0.033307407051324844,0.013436224311590195,0.00991125926375389,0.04636846110224724,0.002213516738265753,-0.009729183278977871,0.030435524601489305,0.2507375985383987 -2070,10,0.11377241462469101,0.01835966482758522,-0.02865489814430475,0.015287807211279869,0.012300502508878708,0.055886811763048175,0.004660559818148613,-0.003314116969704628,0.034340903535485266,0.27041893810965123 -2070,30,0.1304999738931656,0.0297316312789917,-0.02063877824693918,0.020049022510647774,0.018830155953764915,0.07599538564682007,0.016895778477191925,0.012258582748472684,0.04398315660655498,0.31486832376103846 -2070,33,0.13243591785430908,0.031479798778891566,-0.019819619543850423,0.02110707201063633,0.01973598450422287,0.07832607805728913,0.01873106136918068,0.014326746575534344,0.04514358637854457,0.319917750521563 -2070,50,0.14080286026000977,0.04284291714429855,-0.01576181035488844,0.025603774935007095,0.025047998875379562,0.09054403007030487,0.02913099341094494,0.026928065344691277,0.05154311656951904,0.34756787260994315 -2070,67,0.14880523085594177,0.05860168524086481,-0.012146567925810814,0.02957145683467388,0.03160234913229942,0.1029544097185135,0.0395309254527092,0.04377891309559345,0.05878350665792823,0.37713419551029803 -2070,70,0.1502535045146942,0.062437995150685294,-0.01150493510067463,0.03062950260937214,0.03305261954665184,0.10535316169261932,0.04136621206998825,0.047802215442061424,0.06034921314567327,0.38328172005712985 -2070,90,0.16735917329788208,0.10857704281806946,-0.006651776842772961,0.03644877299666405,0.04879659041762352,0.1273529976606369,0.05298967286944389,0.09520250838249922,0.07653534561395646,0.44293064065277576 -2070,95,0.17389950156211853,0.14214658737182617,-0.004827392636798326,0.037771329283714294,0.0585101518779992,0.13765984922647476,0.056048471480607986,0.12851604633033276,0.08624865114688873,0.47817609645426273 -2071,5,0.10978545248508453,0.015330775640904903,-0.03414859436452388,0.013574736192822456,0.010147002618759872,0.04712579771876335,0.001995466183871031,-0.010203531011939049,0.03100007143802941,0.25508982175961137 -2071,10,0.11584748327732086,0.018605129793286324,-0.029387593269348145,0.015472425147891045,0.012601233832538129,0.056800466030836105,0.004510549828410149,-0.0036421790719032288,0.03500504978001118,0.2751453835517168 -2071,30,0.132823184132576,0.030253712087869644,-0.02117288112640381,0.0203521978110075,0.019319456070661545,0.07725068181753159,0.0170859694480896,0.012322766706347466,0.04491235576570034,0.32046171613037583 -2071,33,0.13478784263134003,0.032044883109629156,-0.020339684560894966,0.021436594426631927,0.020254791919142007,0.07961600601673126,0.018972281366586685,0.014451641589403152,0.04610695865005255,0.3256399236712605 -2071,50,0.14327888190746307,0.04369676485657692,-0.01617099903523922,0.026045268401503563,0.02572312019765377,0.09201789647340775,0.029661383479833603,0.027363209053874016,0.05267931055277586,0.35389138432219625 -2071,67,0.15139997005462646,0.05988323695957666,-0.012471980415284634,0.030111750587821007,0.03247210383415222,0.10464253827929498,0.04035048931837082,0.04468013532459736,0.06012620031833649,0.3840824313182384 -2071,70,0.15286973118782043,0.06382773220539091,-0.011809460818767548,0.031196141615509987,0.03397202491760254,0.10708889216184617,0.042236801236867905,0.04881294444203377,0.06173790041357277,0.3904004152864218 -2071,90,0.17022913694381714,0.11133930832147598,-0.006836901884526014,0.03716031461954117,0.05016732215881348,0.1294279843568802,0.05418344959616661,0.0976179875433445,0.07840327955782414,0.4515377404168248 -2071,95,0.17686648666858673,0.14594601094722748,-0.004959230311214924,0.03851580619812012,0.06018518656492233,0.13990186154842377,0.057327304035425186,0.13193743722513318,0.08840862121433016,0.4878711365163326 -2072,5,0.11140622198581696,0.01549459807574749,-0.0349728949368,0.013711750507354736,0.010418141260743141,0.04798796400427818,0.0017696474678814411,-0.010679573565721509,0.03158991588279605,0.25922195985913277 -2072,10,0.11757735908031464,0.018850522115826607,-0.03011082485318184,0.01565607450902462,0.012934118509292603,0.057785291224718094,0.004353687632828951,-0.003985920920968056,0.03570065088570118,0.27963890158571303 -2072,30,0.13485857844352722,0.030778761953115463,-0.02171257380396128,0.020655764266848564,0.019836874678730965,0.0785425454378128,0.017273887991905212,0.012390704359859228,0.04586186818778515,0.3258491549640894 -2072,33,0.13685859739780426,0.03261342328041792,-0.020858317613601685,0.02176680974662304,0.020796945318579674,0.08093174204230308,0.019211919978260994,0.014564620330929756,0.04708858206868172,0.3311343338992447 -2072,50,0.1455024629831314,0.044557493180036545,-0.016599593684077263,0.026488739997148514,0.02641452755779028,0.093526192009449,0.03019408881664276,0.027810391038656235,0.0538366362452507,0.35996737238019705 -2072,67,0.15376971662044525,0.06117724355310207,-0.012807137975469231,0.03065515123307705,0.03334295615553856,0.10632358491420746,0.04117625951766968,0.04557940358296058,0.06147980635985733,0.39083683118224144 -2072,70,0.1552659273147583,0.06523141562938689,-0.012129068374633789,0.031766194850206375,0.03487594053149223,0.10881631076335906,0.04311428964138031,0.049813195923343274,0.06313815917819739,0.3973116748034954 -2072,90,0.1729377806186676,0.11413556337356567,-0.007038245536386963,0.037876930087804794,0.05152684077620506,0.13147178441286086,0.05538848415017128,0.10004722233861685,0.0802437273785472,0.45989106595516205 -2072,95,0.17969456315040588,0.14979521930217743,-0.005113959964364769,0.03926572948694229,0.06182312760502095,0.14213276579976075,0.05861853435635567,0.135445274412632,0.09052563458681107,0.49726772569119926 -2073,5,0.11275076866149902,0.015657400712370872,-0.03582413624972105,0.013847265392541885,0.01066013053059578,0.048758790269494055,0.0015360529068857431,-0.0111374351195991,0.03215551124885678,0.2629766459111124 -2073,10,0.1190718337893486,0.01909584179520607,-0.030838732980191706,0.015838753432035446,0.013242456316947936,0.05869770050048828,0.0041899667121469975,-0.0042985714972019196,0.03637472223490477,0.2838897987268865 -2073,30,0.13677293062210083,0.031306784600019455,-0.02224281057715416,0.020959721878170967,0.02033150941133499,0.07977822721004485,0.01745953969657421,0.012462275102734566,0.046795505471527575,0.33108758048620074 -2073,33,0.138821542263031,0.03318541802465916,-0.0213700532913208,0.022097714245319366,0.02131919004023075,0.08221296817064284,0.019449973478913307,0.01468725779093802,0.04804944008588791,0.3364862227067351 -2073,50,0.14767542481422424,0.04542509466409683,-0.017008397728204727,0.02693418227136135,0.027087505906820297,0.0950005054473877,0.030729109421372414,0.028271031565964222,0.054972787387669086,0.36597890919074416 -2073,67,0.15614353120326996,0.06248371373862034,-0.013130974024534225,0.03120165877044201,0.034205783158540726,0.10799566343426707,0.04200824350118637,0.04651953868567944,0.06282956339418888,0.3975960001908243 -2073,70,0.1576760858297348,0.0666490465402603,-0.012432086281478405,0.03233965113759041,0.035786181688308716,0.11052486300468443,0.043998684734106064,0.050842512398958206,0.06452647633850574,0.40416739312931893 -2073,90,0.17577730119228363,0.11696581542491913,-0.007228207914158701,0.03859861195087433,0.05288538709282875,0.1334978133440018,0.0566047765314579,0.10251106228679419,0.082103268802166,0.46831895411014557 -2073,95,0.18269826471805573,0.15369418263435364,-0.005251478869467974,0.040021102875471115,0.06345984563231462,0.1443279355764389,0.059922169893980026,0.13902668096125126,0.092662110645324,0.5067585782613604 -2074,5,0.11430314183235168,0.015819188207387924,-0.0366712361574173,0.013981284573674202,0.010926301218569278,0.049567949026823044,0.0012946831993758678,-0.011605041101574898,0.03274565488100052,0.2669594941777177 -2074,10,0.1207205057144165,0.019341090694069862,-0.03157425671815872,0.016020463779568672,0.013564743101596832,0.05964573472738266,0.004019387997686863,-0.004621623083949089,0.03706791773438454,0.2883128851186484 -2074,30,0.1386912614107132,0.03183778375387192,-0.022788560017943382,0.02126406691968441,0.020847294479608536,0.08103295117616652,0.01764291524887085,0.012535791471600513,0.047751105204224584,0.33634076043963435 -2074,33,0.1407710760831833,0.03376086611300707,-0.02189006097614765,0.022429311648011208,0.021860523149371147,0.08352370113134384,0.019686445593833923,0.014792438596487045,0.049037874490022657,0.3418761241622269 -2074,50,0.14975984394550323,0.04629957303404808,-0.017433809116482735,0.02738160453736782,0.027785563841462135,0.09650780260562897,0.03126643970608711,0.02872682735323906,0.0561451381072402,0.37195532163605094 -2074,67,0.1583569496870041,0.06380264252424246,-0.013463706709444523,0.031751275062561035,0.03509698063135147,0.10968781977891923,0.0428464375436306,0.047454237937927246,0.06420389041304589,0.4042212726199068 -2074,70,0.1599128544330597,0.06808061227202414,-0.012754159606993207,0.03291651979088783,0.03671886883676052,0.11226052045822144,0.044889967888593674,0.051896377466619015,0.06595089845359325,0.41094554122537374 -2074,90,0.17828981578350067,0.11983004957437515,-0.007423814851790667,0.039325371384620667,0.05428146570920944,0.13557800203561785,0.057832323014736176,0.1050000274553895,0.08399898130446673,0.4765453211963177 -2074,95,0.18531621992588043,0.1576429307460785,-0.005393558647483587,0.04078192636370659,0.06515183299779892,0.14652425795793528,0.06123820319771767,0.14265275746583939,0.09484133142977949,0.5160491030663251 -2075,5,0.1159198135137558,0.015979956835508347,-0.03750497493892908,0.014113802462816238,0.01117566926404834,0.05032576993107796,0.0010455446317791939,-0.012100107036530972,0.03331742188893259,0.27096592634916306 -2075,10,0.12242205440998077,0.019586265087127686,-0.03229767084121704,0.016201201826334,0.013880025409162045,0.06056058779358864,0.0038419573102146387,-0.004940764978528023,0.037747896090149884,0.29264821801334623 -2075,30,0.14063046872615814,0.032371748238801956,-0.023321207612752914,0.021568797528743744,0.02134609967470169,0.08226220309734344,0.017824023962020874,0.012617621570825577,0.048691864311695095,0.34154173051938413 -2075,33,0.14273779094219208,0.034339767545461655,-0.022404905650764705,0.022761598229408264,0.022386571392416954,0.08479867875576019,0.019921334460377693,0.014922083052806548,0.05000617427751422,0.3471868336945772 -2075,50,0.15184542536735535,0.04718093201518059,-0.017846358940005302,0.027830995619297028,0.028464272618293762,0.09797771275043488,0.031806088984012604,0.02920467220246792,0.05729329865425825,0.37790245562791824 -2075,67,0.16055624186992645,0.06513402618467813,-0.013784942217171185,0.03230399265885353,0.03596135228872299,0.11132257565855981,0.043690845370292664,0.04840194107964635,0.06556229993700981,0.41078849701210857 -2075,70,0.16213272511959076,0.06952612549066542,-0.013063153252005577,0.03349679335951805,0.03762904554605484,0.11393991112709045,0.04578815773129463,0.0529486071318388,0.06735178772360086,0.4176736902445555 -2075,90,0.1807527244091034,0.12272827327251434,-0.007606860250234604,0.040057189762592316,0.05564665049314499,0.13758565932512284,0.059071119874715805,0.1075604073703289,0.08586419187486172,0.4847714831121266 -2075,95,0.187872052192688,0.1616414189338684,-0.005534037947654724,0.04154818877577782,0.06680049747228622,0.1486997902393341,0.06256663054227829,0.1463048286736008,0.0969892367720604,0.5252630953444167 -2076,5,0.11776536703109741,0.016139710322022438,-0.03834571689367294,0.014244822785258293,0.01141495443880558,0.05106812901794911,0.0007886302191764116,-0.012570193037390709,0.03387744845822453,0.2751777227735147 -2076,10,0.12439507991075516,0.019831368699669838,-0.033028699457645416,0.016380971297621727,0.014186963438987732,0.06146436929702759,0.003657668363302946,-0.0052611809223890305,0.038420320488512516,0.29730663991067563 -2076,30,0.14296048879623413,0.03290868550539017,-0.023852722719311714,0.021873919293284416,0.021843060851097107,0.08346715569496155,0.018002860248088837,0.012693406082689762,0.049630956351757044,0.3471960751339793 -2076,33,0.1451091319322586,0.034922126047313214,-0.022922668606042862,0.023094575852155685,0.02290394715964794,0.0860600471496582,0.020154638215899467,0.015057751908898354,0.05097436923533678,0.3529437521239743 -2076,50,0.15439532697200775,0.04806916415691376,-0.018257256597280502,0.02828236110508442,0.029143773019313812,0.09942777454853058,0.03234804794192314,0.029683395754545927,0.05843857489526272,0.38433192297816277 -2076,67,0.16327691078186035,0.06647787712514407,-0.014106797985732555,0.03285982087254524,0.03683507442474365,0.11296303927898407,0.044541459530591965,0.049344390630722046,0.0669184336438775,0.41787626848556103 -2076,70,0.1648843139410019,0.07098558619618414,-0.013365119695663452,0.03408047556877136,0.038541916757822016,0.11561441570520399,0.046693239361047745,0.05404005292803049,0.06875038854777812,0.424926592502743 -2076,90,0.1838693618774414,0.1256605088710785,-0.007791283447295411,0.04079408571124077,0.0570172481238842,0.1395693749189377,0.060321174561977386,0.11019992642104626,0.08773020803928376,0.49368583904579283 -2076,95,0.19112825393676758,0.16568970680236816,-0.005665370263159275,0.042319901287555695,0.0684594213962555,0.15085959434509277,0.06390746682882309,0.15002753876615316,0.09914808869361877,0.5352893218863755 -2077,5,0.11981716752052307,0.0162984449416399,-0.03919539973139763,0.014374347403645515,0.011661406606435776,0.05181388650089502,0.0005239399615675211,-0.013060802593827248,0.0344520365819335,0.2796190732624382 -2077,10,0.12655287981033325,0.02007640339434147,-0.03376489505171776,0.016559772193431854,0.014501979574561119,0.06236448511481285,0.003466519992798567,-0.005588937550783157,0.039105676114559174,0.3021500649861991 -2077,30,0.14541512727737427,0.03344860300421715,-0.02439168244600296,0.022179434075951576,0.02234797365963459,0.08467645049095153,0.018179424107074738,0.012767624855041501,0.0505808375775814,0.3529888493940234 -2077,33,0.14759813249111176,0.035507941618561745,-0.02344738133251667,0.02342824824154377,0.023435823619365692,0.0873236358165741,0.020386358723044395,0.01519523374736309,0.05195970226079225,0.3588495256472379 -2077,50,0.1570328027009964,0.048964276909828186,-0.018673723563551903,0.028735710307955742,0.02983166091144085,0.10086825489997864,0.03289232403039932,0.030154544860124588,0.05960276164114475,0.39083497878164053 -2077,67,0.16605640947818756,0.06783419787883765,-0.01443117077462375,0.03341876342892647,0.037723179906606674,0.11461500823497772,0.0453982912003994,0.05029960721731186,0.06829657405614853,0.4250597584526986 -2077,70,0.1676895022392273,0.07245900705456731,-0.013675034046173096,0.03466757759451866,0.039473388344049454,0.11731532216072083,0.047605231404304504,0.05512457527220249,0.07017658278346062,0.4322971710935235 -2077,90,0.18697810173034668,0.128626748919487,-0.0079811355099082,0.04153605177998543,0.0584229975938797,0.14158758521080017,0.06158249080181122,0.11285544997081162,0.08963406085968018,0.5026653651148081 -2077,95,0.19435307383537292,0.16978776454925537,-0.005797704681754112,0.04309707134962082,0.07014592736959457,0.15302731096744537,0.06526071578264236,0.1537422351539134,0.10134437233209606,0.5452570518478751 -2078,5,0.12168426811695099,0.016456162557005882,-0.040063925087451935,0.014502372592687607,0.011892365291714668,0.052513498812913895,0.0002514808438718319,-0.013562949374318123,0.035012694727629426,0.2837571755517274 -2078,10,0.12848402559757233,0.02032136172056198,-0.03451606631278992,0.016737602651119232,0.0148111991584301,0.06324058026075363,0.003268520114943385,-0.005918940529227257,0.03977631460875273,0.3066549293231219 -2078,30,0.1475255936384201,0.033991482108831406,-0.024935568869113925,0.022485336288809776,0.022846663370728493,0.08587859570980072,0.018353721126914024,0.012843964621424675,0.05153270326554775,0.3584098923020065 -2078,33,0.14972934126853943,0.03609720680862665,-0.023971399292349815,0.02376260980963707,0.023968983441591263,0.08857649073004722,0.020616499707102776,0.015335249714553356,0.05293770479038357,0.3643669953942299 -2078,50,0.15925371646881104,0.04986626282334328,-0.019091663882136345,0.029191022738814354,0.030529363080859184,0.10232493281364441,0.03343891724944115,0.03062618523836136,0.06077273562550545,0.3969412399455905 -2078,67,0.16836309432983398,0.06920296855270869,-0.014757870696485043,0.033980801701545715,0.03863446041941643,0.1162725791335106,0.046261340379714966,0.051296452060341835,0.0696860396116972,0.43179906345903873 -2078,70,0.1700117141008377,0.07394635528326032,-0.013981098309159279,0.03525807708501816,0.040412526577711105,0.11900685727596283,0.04852411895990372,0.056214071810245514,0.07161147110164165,0.43919735848903657 -2078,90,0.18948370218276978,0.13162696361541748,-0.00816529244184494,0.042283087968826294,0.0598578866571188,0.1436351090669632,0.062855064868927,0.11548812314867973,0.09156430773437024,0.5111806765198708 -2078,95,0.19692876935005188,0.17393556237220764,-0.00593320319894704,0.0438796766102314,0.0718722715973854,0.1552119277417659,0.06662635505199432,0.15749470326118103,0.10359510658308863,0.554828351084143 -2079,5,0.12337971478700638,0.016612861305475235,-0.04092755168676376,0.014628898352384567,0.012163767591118813,0.053315311670303345,-2.8755981475114822e-05,-0.014049585489556189,0.03561444459483028,0.2879394334740937 -2079,10,0.13029487431049347,0.020566249266266823,-0.03526596352458,0.01691446267068386,0.01514640636742115,0.06419766396284105,0.003063660115003586,-0.006265638396143913,0.04048830978572369,0.31123993925284593 -2079,30,0.14965961873531342,0.034537337720394135,-0.025492416694760323,0.022791624069213867,0.023383473977446556,0.08713874220848083,0.0185257438570261,0.012905674055218697,0.05251791141927242,0.3639650596305728 -2079,33,0.1519007682800293,0.03668993156403303,-0.024503910914063454,0.024097660556435585,0.024527255445718765,0.08987596794962883,0.02084505371749401,0.015452215448021889,0.05395599268376827,0.37005713969469073 -2079,50,0.16158677637577057,0.05077512934803963,-0.019522933289408684,0.029648317024111748,0.031248572282493114,0.10380667448043823,0.03398782014846802,0.03111110907047987,0.06197352334856987,0.403216345468536 -2079,67,0.17085076868534088,0.07058420404791839,-0.015105889178812504,0.03454595431685448,0.03955686092376709,0.1179410244524479,0.04713059216737747,0.05225964413024488,0.07109903503209353,0.4388208584859967 -2079,70,0.17252737283706665,0.07544765323400496,-0.01431524008512497,0.035851988941431046,0.041374608874320984,0.12071389108896255,0.04944990575313568,0.0573061415925622,0.07307067774236202,0.44633788149803877 -2079,90,0.19232983887195587,0.13466118276119232,-0.00836499677971005,0.04303519055247307,0.06129161715507511,0.14566368013620376,0.06413888931274414,0.11816065199673176,0.09351131692528726,0.519911318551749 -2079,95,0.1999012678861618,0.17813315987586975,-0.006094978633336835,0.04466773569583893,0.07360384613275528,0.15737619996070862,0.06800439953804016,0.16139023005962372,0.1058266002684831,0.5647328150458634 -2080,5,0.12521786987781525,0.016768544912338257,-0.04180156346410512,0.014753926545381546,0.012455113232135773,0.054165003634989266,-0.0003167628310620785,-0.014548968523740768,0.03622565940022469,0.29230119988787917 -2080,10,0.1322278082370758,0.020811066031455994,-0.03604060783982277,0.01709035225212574,0.015507908537983894,0.06517890840768814,0.0028519458137452602,-0.006625175476074219,0.041218041069805623,0.31595996180549263 -2080,30,0.15185795724391937,0.035086166113615036,-0.026060255244374275,0.023098303005099297,0.023941215127706528,0.08842556178569794,0.018695494160056114,0.012973389588296413,0.05352407395839691,0.369624319858849 -2080,33,0.15412983298301697,0.037286107167601584,-0.0250471830368042,0.024433402344584465,0.025110594928264618,0.09119807183742523,0.02107202634215355,0.015562938526272774,0.05499766748398542,0.37578942319378256 -2080,50,0.16394861042499542,0.05169086530804634,-0.019970538094639778,0.03010758012533188,0.03199306130409241,0.10530464351177216,0.03453904017806053,0.03158809803426266,0.06320513226091862,0.4095530929043889 -2080,67,0.1733395755290985,0.07197789438068873,-0.01545588113367557,0.03511420637369156,0.040494933240115646,0.11964249610900879,0.048006054013967514,0.053221605718135834,0.07254477897658944,0.44590447716414927 -2080,70,0.175039142370224,0.07696289122104644,-0.014652696438133717,0.036449309438467026,0.04236835986375809,0.12243500351905823,0.0503825880587101,0.05840481445193291,0.07456870079040527,0.4534963668324053 -2080,90,0.19511301815509796,0.13772937655448914,-0.008578711189329624,0.04379236325621605,0.06275863200426104,0.1477201133966446,0.06543396413326263,0.12084284611046314,0.09549483172595502,0.528659026697278 -2080,95,0.20278821885585785,0.18238049745559692,-0.006260943133383989,0.04546123743057251,0.07536972314119339,0.15955471992492676,0.06939484924077988,0.16531877289526148,0.10809718724340199,0.5746126627083864 -2081,5,0.1270086169242859,0.01692320965230465,-0.04270447790622711,0.014877455309033394,0.012728845700621605,0.05497143045067787,-0.0006125438958406448,-0.015077050775289536,0.03683399222791195,0.2964726063422859 -2081,10,0.13407570123672485,0.021055808290839195,-0.03682047501206398,0.01726527139544487,0.015854906290769577,0.06613230034708976,0.00263337604701519,-0.0069939009845256805,0.04194243066012859,0.32051307351794095 -2081,30,0.15386588871479034,0.03563796356320381,-0.026631442829966545,0.023405369371175766,0.024490797892212868,0.08969950675964355,0.018862977623939514,0.013043295592069626,0.05453203041106462,0.3750315740704536 -2081,33,0.1561562865972519,0.03788573734462261,-0.02559523470699787,0.02476983703672886,0.025689395144581795,0.09251946210861206,0.02129741758108139,0.015676362439990044,0.056036904621869325,0.38129739828407766 -2081,50,0.1660551130771637,0.05261348560452461,-0.02041320875287056,0.030568817630410194,0.03274351730942726,0.1068180501461029,0.03509257361292839,0.03207766357809305,0.0644390694797039,0.4156428423593752 -2081,67,0.17552262544631958,0.07338403962552555,-0.015807028859853745,0.035685569047927856,0.04145639389753342,0.12135950937867165,0.04888773337006569,0.05420252587646246,0.07399804241955281,0.4526871685590595 -2081,70,0.17723606526851654,0.07849207222461699,-0.014986801892518997,0.0370500385761261,0.04337235540151596,0.12416820228099823,0.051322177052497864,0.059504332952201366,0.07607388123869896,0.46040807040408255 -2081,90,0.19747358560562134,0.1408315747976303,-0.008780297823250294,0.04455460235476494,0.06426697820425038,0.14977656304836273,0.06674029678106308,0.12355798855423927,0.09751786179840564,0.5371908564120531 -2081,95,0.20521137118339539,0.18667760491371155,-0.006417948752641678,0.04626018553972244,0.07719574868679047,0.16178674995899187,0.07079769670963287,0.1692275833338499,0.11043613031506538,0.5842146895360201 -2082,5,0.12859608232975006,0.017076855525374413,-0.043591958656907084,0.01499948836863041,0.01301148533821106,0.0558090539649129,-0.0009160982444882393,-0.015573222190141678,0.037446022033691406,0.3005361272022128 -2082,10,0.13576160371303558,0.021300479769706726,-0.037592802196741104,0.0174392219632864,0.016214381903409958,0.06710797548294067,0.0024079489521682262,-0.00734543744474649,0.0426713224966079,0.32497084150090816 -2082,30,0.15582743287086487,0.03619273379445076,-0.027196849137544634,0.023712826892733574,0.0250459723174572,0.09097421169281006,0.019028186798095703,0.01310521736741066,0.055539991706609726,0.3804367173463106 -2082,33,0.15814973413944244,0.03848882213234901,-0.026141882278025153,0.025106964632868767,0.026269173249602318,0.09383240759372712,0.021521221846342087,0.015805493965744967,0.05708171552047134,0.3868125407025218 -2082,50,0.16818642616271973,0.05354297533631325,-0.020852958783507347,0.031032035127282143,0.03349461778998375,0.10830197483301163,0.035648420453071594,0.03256342373788357,0.06567758321762085,0.4217366747325286 -2082,67,0.17778581380844116,0.0748026571422816,-0.016163181513547897,0.03626004233956337,0.0424015074968338,0.12303608834743501,0.0497756227850914,0.055207228288054466,0.0754530373774469,0.45949754199013115 -2082,70,0.17952311038970947,0.08003521040081976,-0.01531665027141571,0.037654176354408264,0.044363051652908325,0.12586937397718428,0.05226866155862808,0.06062983348965645,0.07757736183702946,0.4674047383479774 -2082,90,0.2000425159931183,0.14396777749061584,-0.008989321999251842,0.04532191529870033,0.0657539814710617,0.15178785026073457,0.06805788725614548,0.1263060476630926,0.09951817765831948,0.545787044800818 -2082,95,0.20788806676864624,0.19102448225021362,-0.006573828402906656,0.047064583748579025,0.07898473739624023,0.1639990210533142,0.07221294194459915,0.17317011579871178,0.11274730479344724,0.5939334250055253 -2083,5,0.1303028166294098,0.017229486256837845,-0.044478315860033035,0.015120021998882294,0.01329408586025238,0.05660465732216835,-0.0012274258770048618,-0.016090089455246925,0.038060033693909645,0.3046708246693015 -2083,10,0.13755612075328827,0.021545078605413437,-0.0383656844496727,0.01761220395565033,0.0165706142783165,0.06807691156864167,0.002175666391849518,-0.007693363353610039,0.04339717179536819,0.3295396103523672 -2083,30,0.15786775946617126,0.03675047680735588,-0.027766792103648186,0.02402067370712757,0.0255996435880661,0.09223957359790802,0.01919112727046013,0.013170499354600906,0.056548889726400375,0.38590266555547714 -2083,33,0.1602185070514679,0.03909536149352789,-0.02668918889015913,0.02544477954506874,0.02684732239693403,0.09512394413352013,0.021743446588516235,0.015940077602863312,0.05812417319044471,0.39237887412309647 -2083,50,0.17037814855575562,0.05447935312986374,-0.021292325109243393,0.031497225165367126,0.03424058109521866,0.10977455973625183,0.03620658442378044,0.03305587358772755,0.06691118981689215,0.42792422510683537 -2083,67,0.1800951361656189,0.07623372957110412,-0.016522037852555512,0.0368376187980175,0.04335144791752102,0.12470825016498566,0.050669725984334946,0.05624663457274437,0.07691036909818649,0.46644568000920117 -2083,70,0.18185371160507202,0.08159228116273878,-0.01564653217792511,0.03826172277331352,0.045357417315244675,0.1275564730167389,0.05322204530239105,0.06178208580240607,0.07907918468117714,0.47446034885942934 -2083,90,0.20262446999549866,0.14713795483112335,-0.009203050285577774,0.046094298362731934,0.0672369971871376,0.15380945801734924,0.06938673555850983,0.12905352422967553,0.10152636673301459,0.5544907476752996 -2083,95,0.21056613326072693,0.19542112946510315,-0.0067277271300554276,0.04787442833185196,0.08077549934387207,0.16620369479060174,0.0736405998468399,0.17714745737612247,0.11505927499383686,0.6037429205141961 -2084,5,0.13178488612174988,0.017381098121404648,-0.04537711665034294,0.015239056199789047,0.013556964695453644,0.05737040564417839,-0.0015465286560356617,-0.01660401402041316,0.038651175610721115,0.30863633565604687 -2084,10,0.13916178047657013,0.021789606660604477,-0.03914036601781845,0.01778421364724636,0.016906269267201426,0.06898748874664307,0.001936524175107479,-0.008033429831266401,0.04410735908895731,0.3338744377717376 -2084,30,0.15981951355934143,0.037311188876628876,-0.028327928856015205,0.02432890795171261,0.02614116482436657,0.09347032904624938,0.019351795315742493,0.013248397037386894,0.057544684037566185,0.39126551351509986 -2084,33,0.16221031546592712,0.039705357924103735,-0.027233252301812172,0.02578328736126423,0.0274165291339159,0.09639592468738556,0.021964088082313538,0.016073469072580338,0.05915685122832656,0.3978569912910461 -2084,50,0.17254306375980377,0.055422596633434296,-0.021727729588747025,0.031964387744665146,0.034977078437805176,0.1112174242734909,0.03676706552505493,0.03356829844415188,0.06813409086316824,0.43408138025552034 -2084,67,0.1824256181716919,0.0776772592961789,-0.016867429185658693,0.03741830214858055,0.04430142417550087,0.12635385975241661,0.051570042967796326,0.05730196461081505,0.07836286019533874,0.4733745469711721 -2084,70,0.18421415984630585,0.08316330462694166,-0.015972280874848366,0.038872674107551575,0.04635055065155029,0.1292539656162262,0.05418233573436737,0.06291708908975124,0.08057943172752857,0.48156258165836335 -2084,90,0.20533883571624756,0.15034213662147522,-0.009398870170116425,0.04687175154685974,0.06874144822359085,0.15583617985248566,0.07072684168815613,0.1318820919841528,0.1035451764240861,0.5633316304534673 -2084,95,0.21341581642627716,0.19986756145954132,-0.006877885200083256,0.048689719289541245,0.08258157968521118,0.16838882863521576,0.07508066296577454,0.18126029334962368,0.11739349141716951,0.6137742232531307 -2085,5,0.13285072147846222,0.01753169484436512,-0.046259845979511736,0.015356592833995819,0.013824965804815292,0.05813969671726227,-0.0018734005279839039,-0.017113005742430687,0.03924786578863859,0.3122206484666094 -2085,10,0.14037328958511353,0.022034060209989548,-0.03990651294589043,0.01795525662600994,0.017248187214136124,0.06991167739033699,0.001690531149506569,-0.008381769061088562,0.04482065420597792,0.33786702356301246 -2085,30,0.16143900156021118,0.03787487372756004,-0.028895163908600807,0.024637533351778984,0.026684382930397987,0.09470260143280029,0.019510194659233093,0.013328762724995613,0.05854635164141655,0.3963378144428134 -2085,33,0.16387701034545898,0.04031880646944046,-0.02777726948261261,0.026122484356164932,0.02798546478152275,0.09767384827136993,0.022183146327733994,0.016205430030822754,0.060193395502865316,0.4030453078076243 -2085,50,0.17441383004188538,0.05637271702289581,-0.02217246126383543,0.03243352472782135,0.03571261838078499,0.11266206204891205,0.03732985630631447,0.0340855997055769,0.06936587858945131,0.4399654492735863 -2085,67,0.18449155986309052,0.07913325391709812,-0.017212316393852234,0.03800208866596222,0.04524450533092024,0.12799220725893976,0.05247657001018524,0.058330148458480835,0.07981574721634388,0.48000121586024763 -2085,70,0.18631543219089508,0.08474826738238332,-0.016304394230246544,0.03948703780770302,0.047336921095848083,0.13091975599527358,0.05514952540397644,0.06408671289682388,0.0820815809071064,0.4884014869108796 -2085,90,0.20785731077194214,0.15358030796051025,-0.00960181187838316,0.04765426740050316,0.07022953778505325,0.15783002227544785,0.07207819819450378,0.1347208758816123,0.10555216372013092,0.5719364503398537 -2085,95,0.21609379351139069,0.20436373353004456,-0.007023955229669809,0.04951045662164688,0.08435890078544617,0.17056638076901434,0.07653312385082245,0.18539120629429817,0.11971561517566441,0.6234844472724943 -2086,5,0.13428477942943573,0.017681270837783813,-0.047163210809230804,0.01547263190150261,0.01409703865647316,0.058936189860105515,-0.00220804987475276,-0.017649182863533498,0.03985309125855565,0.31607099529355764 -2086,10,0.14187628030776978,0.022278442978858948,-0.04069729521870613,0.018125327304005623,0.017597658559679985,0.07082976102828979,0.001437678001821041,-0.008743105456233025,0.045544677041471006,0.34213583916425705 -2086,30,0.16313502192497253,0.038441531360149384,-0.029476525261998177,0.0249465461820364,0.027240218594670296,0.09594140201807022,0.019666319712996483,0.013402087986469267,0.059569590538740155,0.40145255252718925 -2086,33,0.16559536755084991,0.04093570958822965,-0.028331920597702266,0.026462372392416,0.02857246994972229,0.09895390272140503,0.022400615736842155,0.016350511461496353,0.061245755068957804,0.40830038538202645 -2086,50,0.17622873187065125,0.05732971802353859,-0.022616852074861526,0.03290463611483574,0.03646880015730858,0.11413560807704926,0.03789495676755905,0.03459834028035402,0.07061858288943768,0.44579182378947735 -2086,67,0.18639880418777466,0.0806017108261586,-0.017563650384545326,0.0385889858007431,0.046221889555454254,0.12966562807559967,0.053389303386211395,0.05940469587221742,0.08130470663309097,0.4865757688786835 -2086,70,0.18823938071727753,0.08634717538952826,-0.01663767360150814,0.040104806423187256,0.048351613804697983,0.13263519704341886,0.056123603135347366,0.06524902954697609,0.0836104730144143,0.4951317315921187 -2086,90,0.2099786400794983,0.15685248374938965,-0.009802060201764107,0.04844185709953308,0.0717522971332074,0.15987677574157716,0.07344081252813339,0.137586890719831,0.10761679224669934,0.5803816869854929 -2086,95,0.21829059720039368,0.20890969038009644,-0.007180079817771912,0.05033664032816887,0.08621013350784773,0.17271312698721883,0.07799797505140305,0.18958424217998981,0.12210523150861263,0.633291087578982 -2087,5,0.13596145808696747,0.017829831689596176,-0.04805440828204155,0.015587171539664268,0.014367228373885155,0.05968341995030642,-0.0025504687801003456,-0.018146373331546783,0.04045203579589725,0.3201677337056026 -2087,10,0.14364157617092133,0.022522756829857826,-0.04146904870867729,0.018294427543878555,0.01794116012752056,0.07172540724277496,0.0011779721826314926,-0.009101103991270065,0.046262345463037494,0.34660039078444244 -2087,30,0.16514845192432404,0.039011161774396896,-0.030042236670851707,0.025255946442484856,0.02778669446706772,0.09715973436832429,0.01982017792761326,0.013482381775975227,0.060580645501613614,0.4068531671073288 -2087,33,0.16763752698898315,0.04155606854707002,-0.02888309583067894,0.026802953332662582,0.029146960005164146,0.10021987557411194,0.022616509348154068,0.016487008258700368,0.06229064680635929,0.41386095466092226 -2087,50,0.17839501798152924,0.05829359218478203,-0.02306094951927662,0.03337772190570831,0.03721056133508682,0.11557342112064362,0.038462378084659576,0.03512287046760321,0.07185940630733967,0.4519967813976109 -2087,67,0.18868379294872284,0.08208262264728554,-0.017915897071361542,0.039178989827632904,0.047169667333364494,0.13130181923508644,0.05430825427174568,0.060468658804893494,0.0827760050445795,0.4935308621777222 -2087,70,0.19054585695266724,0.08796002864837645,-0.016975468769669533,0.04072599485516548,0.04934883564710617,0.13431195467710494,0.05710458755493164,0.06643779575824738,0.08512817546725272,0.5022247737273574 -2087,90,0.21253888309001923,0.16015863418579102,-0.010006594471633434,0.04923451691865921,0.07324711680412299,0.16187089681625366,0.07481468468904495,0.1404889728873968,0.10965028777718544,0.5892538119107484 -2087,95,0.22094787657260895,0.21350540220737457,-0.007333007641136646,0.051168277859687805,0.08801285922527313,0.1748179607093332,0.07947523146867752,0.19377160398289547,0.12444015080109228,0.6433405109681187 -2088,5,0.13731831312179565,0.01797737367451191,-0.04893278703093529,0.015700211748480797,0.014632096514105797,0.06040952652692795,-0.002900665160268545,-0.01866094395518303,0.041038979403674604,0.3239879578817636 -2088,10,0.1451605260372162,0.022766994312405586,-0.04222899302840233,0.018462559208273888,0.018276480957865715,0.07262368500232697,0.0009114057756960392,-0.00943644195795059,0.04696898739784956,0.35093981339596214 -2088,30,0.16712132096290588,0.03958376124501228,-0.03059767745435238,0.02556573785841465,0.028317784890532494,0.0983419269323349,0.019971761852502823,0.013589736074209213,0.06157500427216291,0.41227153297513724 -2088,33,0.1696629375219345,0.042179882079362865,-0.029423868283629417,0.02714422531425953,0.02970634214580059,0.10144890025258065,0.022830814123153687,0.016625462099909782,0.0633202770166099,0.4194324471289292 -2088,50,0.18064746260643005,0.05926434323191643,-0.023493081331253052,0.03385278582572937,0.03793336637318134,0.1169750839471817,0.039032116532325745,0.035669006407260895,0.07308346591889858,0.45824605971574783 -2088,67,0.1911533921957016,0.08357599675655374,-0.018254928290843964,0.03977210074663162,0.04809940978884697,0.13290215373039246,0.055233415216207504,0.06155552478507171,0.08422010727226735,0.500622846186161 -2088,70,0.19305476546287537,0.08958683162927625,-0.017297785729169846,0.0413505882024765,0.05031868852674961,0.13591881096363068,0.058092474937438965,0.067643191665411,0.08662123717367648,0.5094521075487136 -2088,90,0.2155119627714157,0.16349880397319794,-0.010203678160905838,0.05003225430846214,0.07470690459012987,0.1637873485684395,0.07619980722665787,0.14347732719033957,0.11163799539208413,0.5983054352924229 -2088,95,0.22409842908382416,0.21815089881420135,-0.007481112144887447,0.052005358040332794,0.08975963294506073,0.17689357697963715,0.08096490055322647,0.19799611251801252,0.1267347875982523,0.6536585502093657 -2089,5,0.13842056691646576,0.018123900517821312,-0.04981408268213272,0.015811756253242493,0.014904089272022247,0.06114334985613823,-0.003258633427321911,-0.019181502982974052,0.04163170475512743,0.32758509553968906 -2089,10,0.14641490578651428,0.023011161014437675,-0.04299402981996536,0.01862972229719162,0.01861444115638733,0.07351437956094743,0.0006379839032888412,-0.009775126352906227,0.04767665863037109,0.3549908434972167 -2089,30,0.1688016802072525,0.04015933349728584,-0.03116416409611702,0.025875920429825783,0.028853487223386765,0.09954307526350022,0.020121075212955475,0.01367521658539772,0.06257481761276722,0.41738686356693505 -2089,33,0.17139258980751038,0.04280714895576239,-0.029963286593556404,0.02748618833720684,0.030270947143435478,0.10265500843524933,0.023043537512421608,0.016786066386848684,0.06435424089431763,0.42468166165053844 -2089,50,0.18259018659591675,0.060241974890232086,-0.023928964510560036,0.034329820424318314,0.038658590987324715,0.1183818131685257,0.03960416093468666,0.03618854656815529,0.07431422919034958,0.4641815032809973 -2089,67,0.19329991936683655,0.08508182823657998,-0.018604937940835953,0.04036831855773926,0.04902659356594086,0.13448229759931565,0.05616478621959686,0.06264099478721619,0.08567212387919426,0.5073726121336222 -2089,70,0.1952381581068039,0.09122757762670515,-0.017624448984861374,0.04197858273983002,0.051295436918735504,0.13753823935985565,0.059087250381708145,0.0688804890960455,0.08812290821224451,0.5163522506132722 -2089,90,0.21813097596168518,0.16687294840812683,-0.01040014997124672,0.05083505064249039,0.07617669552564621,0.1657120779156685,0.07759618759155273,0.14646957442164427,0.1136376466602087,0.6070291567593813 -2089,95,0.22688399255275726,0.2228461503982544,-0.0076346443966031075,0.052847884595394135,0.09152371436357498,0.17896947264671326,0.0824669599533081,0.20235370844602585,0.129035578854382,0.663699746876955 -2090,5,0.13951662182807922,0.018269406631588936,-0.05069771725684404,0.015921803191304207,0.01519731804728508,0.06196774169802666,-0.0036243717186152935,-0.01969022350385785,0.04225437631830573,0.33124949955381455 -2090,10,0.14760944247245789,0.023255256935954094,-0.043749012798070905,0.018795913085341454,0.018983425572514534,0.0744517594575882,0.0003577088937163353,-0.010117147676646709,0.04842382911592722,0.3589694768190384 -2090,30,0.1702720820903778,0.040737878531217575,-0.031733084470033646,0.026186490431427956,0.029424495995044708,0.10076937079429626,0.020268119871616364,0.013758065178990364,0.06360545195639133,0.4223148670047521 -2090,33,0.1728949099779129,0.04343787290155888,-0.03050784207880497,0.027828840538859367,0.030859531834721565,0.103928252607584,0.02325468137860298,0.016946714259684085,0.06542138196527958,0.4297361685987562 -2090,50,0.1842304915189743,0.06122647970914841,-0.02437281236052513,0.03480882942676544,0.03941655531525612,0.11981063336133957,0.04017852619290352,0.036717917770147324,0.07557803113013506,0.4698774362914264 -2090,67,0.19507217407226562,0.08660012207925329,-0.018958136439323425,0.04096764326095581,0.04997435200959445,0.13609354197978973,0.057102374732494354,0.06376055628061295,0.08714808788150549,0.5138112683780491 -2090,70,0.1970342993736267,0.09288226291537283,-0.017963102087378502,0.042609989643096924,0.052285693585872636,0.13918111622333526,0.06008893996477127,0.07013974711298943,0.0896501924842596,0.5229529719799757 -2090,90,0.22020919620990753,0.1702810823917389,-0.010614207945764065,0.051642920821905136,0.07767605781555176,0.1676357239484787,0.07900382578372955,0.14952542614191786,0.1156585255637765,0.6153868101537228 -2090,95,0.22907006740570068,0.22759117186069489,-0.007796979043632746,0.053695861250162125,0.09331386536359787,0.18102627992630005,0.08398143202066422,0.20678220055997368,0.1313568591140209,0.6732408651150757 -2091,5,0.1410040706396103,0.01841389760375023,-0.051566191017627716,0.01603034883737564,0.015488095581531525,0.06277266256511212,-0.003997887950390577,-0.020179498940706253,0.04286574758589268,0.33516577119007707 -2091,10,0.149171382188797,0.023499278351664543,-0.04450342431664467,0.018961135298013687,0.019342681393027306,0.07540048360824585,7.057469338178635e-05,-0.010439440049231051,0.04915174581110478,0.36329063940793277 -2091,30,0.1720425933599472,0.04131939634680748,-0.032285116612911224,0.02649744786322117,0.029977403581142426,0.10196411907672881,0.02041289024055004,0.013873329386115074,0.0646187013015151,0.4275170061737299 -2091,33,0.17468957602977753,0.044072046466171744,-0.031049350276589394,0.028172185644507408,0.03143814206123352,0.10516294836997986,0.02346423827111721,0.017111668549478053,0.06647871807217598,0.4350186011288315 -2091,50,0.18612948060035706,0.06221786141395569,-0.024815124459564686,0.035289812833070755,0.04014401137828827,0.1212114617228508,0.04075520113110542,0.03726789262145758,0.07681472040712833,0.47583912312984467 -2091,67,0.19707094132900238,0.08813087329268464,-0.019314978271722794,0.04157007485628128,0.05088409036397934,0.13765834495425228,0.05804616957902908,0.06486316910013556,0.08859611317515376,0.5204189236462117 -2091,70,0.1990511417388916,0.09455089122056959,-0.018294617533683777,0.04324480891227722,0.053247738629579544,0.1407574713230133,0.06109752133488655,0.07140714302659035,0.0911484595388174,0.5296945832669735 -2091,90,0.22243931889533997,0.1737232208251953,-0.010824836790561676,0.05245586112141609,0.07908181101083755,0.1695052683353424,0.08042272180318832,0.1526175532490015,0.11762148663401605,0.6238339692354202 -2091,95,0.23138174414634705,0.23238594830036163,-0.00795456487685442,0.05454927682876587,0.0950235430151224,0.18303135260939596,0.08550829440355301,0.21119594387710094,0.13361663185060021,0.6830472983419895 -2092,5,0.14261727035045624,0.018557371571660042,-0.052432116121053696,0.016137398779392242,0.015761541202664375,0.06351341083645821,-0.004379177466034889,-0.020692316815257072,0.0434616282582283,0.3392268798314035 -2092,10,0.15091341733932495,0.02374322898685932,-0.045252397656440735,0.01912539079785347,0.019686825573444366,0.07628152072429657,-0.00022341683506965637,-0.010757855139672756,0.0498674163594842,0.3678186568431556 -2092,30,0.1741453856229782,0.04190388321876526,-0.032844480127096176,0.02680879645049572,0.030522190034389496,0.10314278304576874,0.020555390045046806,0.013978438451886177,0.06562850810587406,0.4330558367073536 -2092,33,0.1768341213464737,0.04470968082547188,-0.03158823400735855,0.028516223654150963,0.03200306370854378,0.10637292131781578,0.023672211915254593,0.017269525676965714,0.06752243811264634,0.44067516829818487 -2092,50,0.18845447897911072,0.06321612000465393,-0.025247765704989433,0.03577277809381485,0.0408704224973917,0.12259064614772797,0.04133419319987297,0.03781946003437042,0.07805588003247976,0.4821991724893451 -2092,67,0.19956852495670319,0.08967409178614626,-0.01966196298599243,0.042175617069005966,0.051806606315076366,0.13919755816459656,0.05899617820978165,0.06596951186656952,0.09005540609359741,0.5275829582381993 -2092,70,0.2015799582004547,0.09623347669839857,-0.018618859350681305,0.04388304054737091,0.054216038435697556,0.14235444366931915,0.06211300194263458,0.07271480560302734,0.09265804477035999,0.536987336166203 -2092,90,0.22533705830574036,0.1771993637084961,-0.011036609299480915,0.05327387526631355,0.0805272564291954,0.1713875859975815,0.08185286819934845,0.1556992009282112,0.11960876621305944,0.6329286286607385 -2092,95,0.2344205528497696,0.23723050951957703,-0.00810423470102252,0.05540815740823746,0.09676017463207229,0.1850515060126781,0.08704756945371628,0.21564359217882156,0.13590168580412865,0.6934372978284955 -2093,5,0.14409486949443817,0.018699826672673225,-0.053333595395088196,0.016242947429418564,0.01603872701525688,0.0642499465495348,-0.004768237005919218,-0.021258307620882988,0.044064877554774284,0.3432130068540573 -2093,10,0.15253251791000366,0.02398710697889328,-0.046057358384132385,0.019288672134280205,0.02003817316144705,0.0771825760602951,-0.0005242610350251198,-0.011123573407530785,0.05059379916638136,0.37227129377424717 -2093,30,0.17616067826747894,0.04249134287238121,-0.0334261953830719,0.02712053246796131,0.03108157031238079,0.10435554981231689,0.020695621147751808,0.014064587652683258,0.06666174456477165,0.4385863233357668 -2093,33,0.1788952499628067,0.04535076729953289,-0.03214842826128006,0.028860947117209435,0.032593924552202225,0.10761559516191482,0.02387860417366028,0.017421646043658257,0.0685940383002162,0.44633692253381013 -2093,50,0.1907137781381607,0.06422125548124313,-0.02570006251335144,0.036257706582546234,0.041637200862169266,0.12401455640792847,0.04191550239920616,0.03838032856583595,0.07933181244879961,0.48859627824276686 -2093,67,0.2020173817873001,0.09122976765036592,-0.02001521922647953,0.04278425872325897,0.05279367417097092,0.14080823376774787,0.05995239317417145,0.06710733752697706,0.09156675057485701,0.5347861524717882 -2093,70,0.20406310260295868,0.09792999476194379,-0.01895729824900627,0.0445246696472168,0.05524779483675957,0.14402574747800825,0.06313537806272507,0.07397634908556938,0.09421857148408888,0.5443843251094221 -2093,90,0.22822536528110504,0.18070948123931885,-0.011240927502512932,0.054096952080726624,0.08207739889621735,0.17334440350532532,0.08329427242279053,0.1588228028267622,0.12171987760812045,0.6421933895908296 -2093,95,0.23746375739574432,0.24212484061717987,-0.008256406523287296,0.056272465735673904,0.098637156188488,0.1871734857559204,0.08859924226999283,0.22014136612415314,0.13832535222172737,0.703962697647512 -2094,5,0.14560674130916595,0.01884126476943493,-0.05422474071383476,0.016347000375390053,0.016340160742402077,0.06502328813076019,-0.00516506889835,-0.021812954917550087,0.04468912184238434,0.34719379101879894 -2094,10,0.15413692593574524,0.02423091232776642,-0.04683205112814903,0.01945098303258419,0.020410729385912423,0.07811735570430756,-0.0008319607004523277,-0.011475559324026108,0.05134022627025843,0.3766825053840876 -2094,30,0.17802424728870392,0.04308177903294563,-0.0340026393532753,0.02743265964090824,0.031649064272642136,0.10555912554264069,0.020833585411310196,0.014164712280035019,0.06770973391830921,0.44391003595665096 -2094,33,0.1807888150215149,0.04599530711770058,-0.032701278403401375,0.02920636720955372,0.03318358805030584,0.10886278748512268,0.024083416908979416,0.017572390846908092,0.06967526216059923,0.4517940445803106 -2094,50,0.19273696839809418,0.0652332678437233,-0.026153573766350746,0.0367446169257164,0.04239572957158089,0.12541048228740692,0.0424991250038147,0.03891151212155819,0.08061094768345356,0.49473217874765396 -2094,67,0.2041645497083664,0.09279790088534365,-0.02037974420934915,0.043396010994911194,0.05375083535909653,0.1424014660716057,0.06091483682394028,0.0682619335129857,0.09307038273662331,0.5416512548550964 -2094,70,0.2062327116727829,0.09964046776294706,-0.019295435398817062,0.04516971483826637,0.05626378953456879,0.14564825594425201,0.0641646683216095,0.07525701448321342,0.09577820636332031,0.5513910725712776 -2094,90,0.23065999150276184,0.18425360321998596,-0.011449760757386684,0.0549250990152359,0.08358052372932434,0.17524436265230178,0.08474693447351456,0.16203324468806385,0.12376007437705994,0.6510170122608543 -2094,95,0.2399997115135193,0.24706892669200897,-0.008418044075369835,0.0571422316133976,0.10043133534491046,0.18921723440289495,0.09016332775354385,0.22466114908456802,0.14068157225847244,0.7142690354958176 -2095,5,0.14715933799743652,0.018981685861945152,-0.055107176303863525,0.01644955575466156,0.016613539308309555,0.06576372683048248,-0.0055696782656013966,-0.022308845072984695,0.04529297780245543,0.35113112251274287 -2095,10,0.1557752788066864,0.024474646896123886,-0.04760317504405975,0.019612329080700874,0.02076282985508442,0.07900518476963043,-0.001146521419286728,-0.011800449341535568,0.05205524191260338,0.3810432218015194 -2095,30,0.1799027919769287,0.04367518052458763,-0.03457089625298977,0.02774517424404621,0.03219030611217022,0.10671739280223846,0.020969269797205925,0.014277819357812398,0.06873044762760401,0.44923472739756104 -2095,33,0.1826951503753662,0.046643301509320736,-0.03324495255947113,0.02955247461795807,0.03376118838787079,0.11007007956504822,0.02428663894534111,0.01775394007563591,0.07073243886232376,0.4572862840443849 -2095,50,0.1947634518146515,0.06625215709209442,-0.026589544489979744,0.03723350167274475,0.04313194379210472,0.12678371369838715,0.04308505728840828,0.03951441869139671,0.08186383731663227,0.5007659904658794 -2095,67,0.20630592107772827,0.09437850393354902,-0.02072667846456169,0.04401087015867233,0.054678671061992645,0.14395064115524292,0.06188347563147545,0.06942804902791977,0.09454575784504414,0.5484926009085029 -2095,70,0.2083948850631714,0.10136487558484075,-0.019626511447131637,0.04581816866993904,0.0572469487786293,0.14723764061927794,0.06520084291696548,0.076571767963469,0.09730391055345534,0.5583701435476541 -2095,90,0.23306776583194733,0.18783171474933624,-0.011652056127786636,0.05575831979513168,0.0850357785820961,0.17711959779262543,0.08621085435152054,0.16517499648034573,0.12577709928154945,0.6597514160908758 -2095,95,0.2425013929605484,0.2520627975463867,-0.00857172254472971,0.05801744386553764,0.10218746587634074,0.19122645258903503,0.09173979610204697,0.22935600578784943,0.14297967441380025,0.7243748838081955 -2096,5,0.14832448959350586,0.019121089950203896,-0.05597275123000145,0.016550609841942787,0.016922226175665855,0.06652794778347015,-0.005982059054076672,-0.022811781615018845,0.04591408055275679,0.3547756266547367 -2096,10,0.1570603996515274,0.024718308821320534,-0.04836719483137131,0.01977270096540451,0.021133817732334137,0.07991207391023636,-0.0014679357409477234,-0.01212570071220398,0.05279243849217892,0.38511316291987896 -2096,30,0.18152384459972382,0.0442715585231781,-0.03513902127742768,0.02805808000266552,0.03274831920862198,0.10789038091897964,0.02110268920660019,0.014393266290426254,0.06976754721254111,0.4543443888425827 -2096,33,0.18435509502887726,0.04729475297033787,-0.033784009516239166,0.029899274930357933,0.034341901540756226,0.11128409951925278,0.024488285183906555,0.01791442185640335,0.0718051266670227,0.4625191695196554 -2096,50,0.19659142196178436,0.0672779232263565,-0.027036147192120552,0.03772435337305069,0.04388471506536007,0.1281578540802002,0.043673306703567505,0.040084145963191986,0.08313046209514141,0.506675427313894 -2096,67,0.20829461514949799,0.09597155436873446,-0.02108185738325119,0.04462883621454239,0.055617231875658035,0.14549276798963548,0.06285833567380905,0.07063299918547279,0.0960298688337207,0.5552022914774716 -2096,70,0.2104126513004303,0.10310324132442472,-0.019961796700954437,0.0464700311422348,0.05822260305285454,0.14881826490163802,0.06624393165111542,0.0778700914233923,0.09883849285542964,0.5652161883190274 -2096,90,0.2354290783405304,0.19144383072853088,-0.011861369013786316,0.056596606969833374,0.08649502694606781,0.17899659276008606,0.08768603205680847,0.16837486997246742,0.1277932178229094,0.6684615919366479 -2096,95,0.24499405920505524,0.2571064233779907,-0.008730330504477024,0.05889809876680374,0.10395607352256775,0.19318172335624695,0.09332868456840515,0.23403475610539284,0.1452766326256096,0.734352480340749 -2097,5,0.1496153026819229,0.01925947517156601,-0.05685899034142494,0.016650166362524033,0.017244337126612663,0.06737382039427758,-0.006402222439646721,-0.02334558591246605,0.04657267974689603,0.3585533732548356 -2097,10,0.1584453135728836,0.02496189810335636,-0.04915544390678406,0.019932104274630547,0.021548008546233177,0.0808786153793335,-0.0017962148413062096,-0.012489496916532512,0.05357229076325894,0.3894095843657851 -2097,30,0.18317225575447083,0.044870905578136444,-0.03571814298629761,0.028371373191475868,0.03335542231798172,0.10914389342069626,0.021233830600976944,0.01448746770620346,0.07084493432193995,0.4595114137977362 -2097,33,0.18603400886058807,0.047949657775461674,-0.034358517564833164,0.030246764421463013,0.034964561462402344,0.11254591837525367,0.02468833699822426,0.0180371031165123,0.07292632199823856,0.4678848222270608 -2097,50,0.19840213656425476,0.06831056624650955,-0.027493933215737343,0.03821718692779541,0.04467422887682915,0.12958566844463348,0.044263869524002075,0.04065137729048729,0.08444671612232924,0.5126500409096479 -2097,67,0.21023137867450714,0.09757707461714754,-0.021450208500027657,0.04524990916252136,0.05661725625395775,0.14708672896027566,0.06383940577507019,0.07178222760558128,0.09756794400513172,0.5619151271507146 -2097,70,0.21237224340438843,0.10485554188489911,-0.020321007817983627,0.047125302255153656,0.05925834402441976,0.15045432597398753,0.0672939121723175,0.07919142749160518,0.10042123571038246,0.5721119858324527 -2097,90,0.23765811324119568,0.1950899362564087,-0.012086848728358746,0.05743996426463127,0.08799921497702602,0.18087445199489594,0.08917245268821716,0.1716890810057521,0.1298800950869918,0.6772515518590808 -2097,95,0.24732613563537598,0.26219984889030457,-0.008905254304409027,0.05978420749306679,0.10575611144304276,0.19523018598556519,0.09492996335029602,0.2388032041490078,0.14765777811408043,0.7444214800838377 -2098,5,0.15100666880607605,0.019396843388676643,-0.057737696915864944,0.016748225316405296,0.017554359510540962,0.0681714117527008,-0.006830145139247179,-0.02383820340037346,0.0471973542124033,0.3624149579554796 -2098,10,0.15996691584587097,0.025205416604876518,-0.04993501678109169,0.020090537145733833,0.021920667961239815,0.08179303258657455,-0.0021313372999429703,-0.012808259576559067,0.05432592146098614,0.3938420247286558 -2098,30,0.18505851924419403,0.04547322541475296,-0.03629875183105469,0.028685053810477257,0.033928147703409184,0.1103406548500061,0.021362707018852234,0.014579102396965027,0.07189947981387376,0.4649136682972312 -2098,33,0.18796247243881226,0.04860801842063665,-0.0349031463265419,0.030594946816563606,0.035576850175857544,0.11378304660320282,0.024886813014745712,0.01821907062083483,0.07400567475706339,0.47340701771900057 -2098,50,0.20051300525665283,0.06935008615255356,-0.027946561574935913,0.038711994886398315,0.04543837532401085,0.13098004460334778,0.04485674947500229,0.04122885316610336,0.08573354221880436,0.5189017578959465 -2098,67,0.2125166952610016,0.09919505223631869,-0.02181372046470642,0.04587408900260925,0.05758364498615265,0.14864486187696457,0.06482668220996857,0.0729420967400074,0.09908361380919814,0.5689702364709229 -2098,70,0.21468913555145264,0.10662178993225095,-0.020666368305683136,0.0477839820086956,0.060257602483034134,0.1520480990409851,0.06835079193115234,0.08053064346313477,0.10198354888707399,0.5792857967317104 -2098,90,0.24034792184829712,0.19877003133296967,-0.012314948160201311,0.058288395404815674,0.08949021250009537,0.18274238407611848,0.0906701311469078,0.17499326169490814,0.13193095289170742,0.686495928093791 -2098,95,0.25015848875045776,0.2673429846763611,-0.009063414297997952,0.060675762593746185,0.10756967216730118,0.1972338356077671,0.09654364734888077,0.2436015885323286,0.15001020608469842,0.754855146538466 -2099,5,0.15246304869651794,0.019533194601535797,-0.05864932760596275,0.01684478670358658,0.017856460064649582,0.0689503412693739,-0.007265846710652113,-0.024388551712036133,0.04782201359048486,0.36634299089200795 -2099,10,0.1615528017282486,0.025448862463235855,-0.050725724548101425,0.02024800144135952,0.022310562431812286,0.08270726352930069,-0.0024733208119869232,-0.013181756064295759,0.05507963243871927,0.3982588179875165 -2099,30,0.1870071142911911,0.04607851803302765,-0.0368843749165535,0.028999125584959984,0.03451516106724739,0.11155055016279221,0.02148931473493576,0.01468016766011715,0.07296854797750711,0.47039471939206123 -2099,33,0.1899530440568924,0.04926982991397381,-0.035467162244021896,0.030943820253014565,0.036189032234251496,0.11503192782402039,0.02508370950818062,0.01837773807346821,0.07511000210419297,0.47905943111516536 -2099,50,0.20268499851226807,0.07039648294448853,-0.028409436345100403,0.03920877352356911,0.0462261326611042,0.1323833167552948,0.04545194283127785,0.041833662427961826,0.08704849984496832,0.5252638356760144 -2099,67,0.21486221253871918,0.10082549214363108,-0.02217721939086914,0.04650137573480606,0.05858799308538453,0.15024329721927643,0.06582017987966537,0.07413621805608273,0.10063368566334249,0.5762023352459074 -2099,70,0.21706604957580566,0.10840198546648022,-0.02101069688796997,0.04844607040286064,0.06130339950323105,0.1536622539162636,0.06941457837820053,0.08187826164066792,0.10358213149011135,0.5866663249209523 -2099,90,0.2430957406759262,0.2024841159582138,-0.012537646107375622,0.059141892939805984,0.09105589240789413,0.18465052545070648,0.09217908978462219,0.17830200493335724,0.13406233731657266,0.6957365758717061 -2099,95,0.2530481219291687,0.27253594994544983,-0.009224055707454683,0.061572760343551636,0.10945472866296768,0.19927749484777446,0.09816974401473999,0.24840068444609642,0.1524644408375025,0.7655291110277176 -2100,5,0.1542969048023224,0.01966852881014347,-0.05959956720471382,0.01693985052406788,0.018157513812184334,0.0697110876441002,-0.00770932249724865,-0.024957329034805298,0.04845142168924212,0.3704159724526107 -2100,10,0.16342297196388245,0.025692235678434372,-0.05154213681817055,0.020404495298862457,0.022689638659358025,0.08363454043865204,-0.00282216165214777,-0.01356514804065227,0.05584114231169224,0.40279608219861984 -2100,30,0.18897895514965057,0.04668677970767021,-0.037495795637369156,0.02931358478963375,0.03511473909020424,0.11276555061340332,0.021613646298646927,0.01477346196770668,0.07405520249158144,0.4758877423591912 -2100,33,0.1919366419315338,0.049935098476707934,-0.03604702651500702,0.03129338473081589,0.03682253021746874,0.1163000637292862,0.02527901530265808,0.018541907966136903,0.07623983919620514,0.484620514549315 -2100,50,0.2047194540500641,0.07144975662231445,-0.028881434351205826,0.039707526564598083,0.047047581523656845,0.1338338553905487,0.04604944586753845,0.04241073876619339,0.08839249797165394,0.5315118301659822 -2100,67,0.21694530546665192,0.10246838696300994,-0.022549932822585106,0.047131769359111786,0.05963484209030867,0.1518768173456193,0.06681987643241882,0.07535802200436592,0.10222848504781723,0.5832470752112568 -2100,70,0.21915793418884277,0.11019611582159994,-0.02136085890233518,0.04911156743764877,0.06239868327975273,0.15532951056957245,0.07048524916172028,0.08323193714022636,0.10523225218057632,0.5938840619288385 -2100,90,0.2452915906906128,0.2062321901321411,-0.012757870368659496,0.0600004568696022,0.09269486367702484,0.18660707771778107,0.09369926899671555,0.18170539289712906,0.13627388328313828,0.704874068684876 -2100,95,0.25528374314308167,0.27777862548828125,-0.009385330602526665,0.06247520446777344,0.11143465340137482,0.20140120014548293,0.0998082160949707,0.25327322259545326,0.15502607077360153,0.7759464174509048 diff --git a/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp45_projection_2100_regional.csv b/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp45_projection_2100_regional.csv deleted file mode 100644 index dd1d968..0000000 --- a/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp45_projection_2100_regional.csv +++ /dev/null @@ -1,847 +0,0 @@ -year,percentile,exp,antdyn,antsmb,greendyn,greensmb,glacier,landwater,GIA,antnet,greennet,sum -2007,5,0.007412072566151619,-0.0003583246571653038,-0.00014704131912452684,0.002366923697449878,0.00199068598193268,0.00800727265439921,0.00036440904591380244,-0.0020967304089423286,-0.00045503213358600995,0.004411534151456475,0.019298801365740643 -2007,10,0.008360614928603172,-0.00035079552388899397,-0.00012374860099598255,0.00240095683346283,0.002016626819683337,0.008269903264988384,0.00037659843994505203,-0.0020967304089423286,-0.00043137683178446056,0.004464202036682512,0.020687052395492404 -2007,30,0.010795652567315846,-0.00032193769916562124,-8.303626753591746e-05,0.002490901584624222,0.0020838193840373074,0.008813965493464143,0.00043754541010129994,-0.0020967304089423286,-0.0003821059491855392,0.004595516930514147,0.023800073933863318 -2007,33,0.011067471873760224,-0.0003174986573784844,-7.896366541384994e-05,0.002503056241501685,0.0020919293995003223,0.008874409096323383,0.00044668740818411273,-0.0020967304089423286,-0.00037611647631145834,0.004613834591018041,0.02415013744962811 -2007,50,0.012451514224708079,-0.00028251021642937543,-5.917973702878497e-05,0.0025601984010806883,0.0021376609998954308,0.009198440908561863,0.0004984923423050482,0.0006426668409204348,-0.0003408424777827109,0.0047117625201758,0.02599218265728094 -2007,67,0.013921686838008464,-0.0001361622070164918,-4.132737593923555e-05,0.002618634983485276,0.002187458963259153,0.009580240695967477,0.0005502972764259838,0.0006426668409204348,-0.0002780442461983347,0.004806855293159701,0.027800050221081035 -2007,70,0.014207613454665988,-0.00013341446113369259,-3.8086091259450464e-05,0.0026338791554432355,0.002198006996526057,0.009659855831112368,0.0005594393504137956,0.0006426668409204348,-0.0002450263507173884,0.004825304992593686,0.028151703193718264 -2007,90,0.017077649435028434,-0.000122433137607292,-1.4590890529694853e-05,0.0027291512273574067,0.0023091729877088587,0.010413608615649482,0.0006173389625741063,0.0006426668409204348,-0.00016438652815929463,0.004975354678878985,0.03155351764400366 -2007,95,0.01864752147886902,-0.00011977230156755998,-6.923069383535689e-06,0.0027742977541791833,0.0023731465067332275,0.010759169876260577,0.0006325757146012932,0.0006426668409204348,-0.00014791707450063842,0.00504789998916418,0.03330025194459777 -2008,5,0.008465001151897014,-0.0004270876130440148,-0.0002879349051825689,0.002717436374717038,0.002041886932157613,0.008053275671443828,0.0007186814346375422,-0.0022873422643007223,-0.0006246518162809496,0.004872115688781906,0.021355243152348286 -2008,10,0.009463534093089402,-0.00041071970928759023,-0.0002411643090368116,0.0027770335892569635,0.002082852309586872,0.008495620399041458,0.0007442560300547128,-0.0022873422643007223,-0.0005787739744781702,0.004958937391320825,0.02295093822937468 -2008,30,0.01193498423723504,-0.00036012331024162623,-0.0001598138718685851,0.0029128259119676585,0.002186709602691884,0.00943814963646989,0.0008721294625705601,-0.0022873422643007223,-0.0004896715752363616,0.0051621114624254725,0.026567888068104662 -2008,33,0.012217715264111757,-0.0003554941046629516,-0.00015168311519280165,0.0029283982363552414,0.0021999399572356247,0.009537384159690158,0.0008913103522046889,-0.0022873422643007223,-0.0004794407739855574,0.005186499285340378,0.026968785483702903 -2008,50,0.013653127290681005,-0.0003233190487215309,-0.0001123422721740483,0.003017492386754916,0.002276206129165125,0.010068686239701785,0.0010000026673714104,0.0007010910991859289,-0.000423264831264398,0.005318508459558089,0.02906500914617198 -2008,67,0.015162743860390038,-0.00016809543869036243,-7.677561095921158e-05,0.0031097275220067916,0.00236816585189736,0.0106633280832094,0.00110869513434813,0.0007010910991859289,-0.00035393233352731644,0.005457363748418983,0.031126847439084577 -2008,70,0.015456584729626775,-0.00016019158974736098,-7.029985582665645e-05,0.003124685512500717,0.0023875724236274726,0.010786458134396312,0.0011278760998872576,0.0007010910991859289,-0.0003379063552058959,0.005484993841218609,0.031526263944456116 -2008,90,0.01844888522028923,-0.00013690414491299903,-2.3225797778349074e-05,0.003276177450996425,0.0026013488533936815,0.011952192946661689,0.0012493559025250622,0.0007010910991859289,-0.00021543012702559207,0.005740785562163118,0.03537131509575777 -2008,95,0.020026943547371775,-0.00013148474531523443,-7.42094298266918e-06,0.0033538794542432304,0.0027277518320416626,0.012495667744615899,0.0012813242037252746,0.0007010910991859289,-0.00018231103732935358,0.005880514884727838,0.037331920293149426 -2009,5,0.00923212705012411,-0.0004991383920875932,-0.00044010321132081313,0.003067023741579107,0.0020942648501977154,0.008200537453789446,0.001062816938456222,-0.002477954119659116,-0.0008098960827768964,0.005329706771578441,0.023232108308289603 -2009,10,0.010341285995207727,-0.00047302319791258133,-0.00036893089172479807,0.003133980087337412,0.0021506654941190534,0.00879904602720447,0.001102972808281482,-0.002477954119659116,-0.0007413675254317818,0.005450286067179536,0.02510240677580875 -2009,30,0.013103122517466545,-0.00040789307580538394,-0.00024489004838302,0.0033180399099444918,0.002299046308647517,0.01006919698742632,0.0013037520055977827,-0.002477954119659116,-0.0006100448910351719,0.005729511293826339,0.029368063285047846 -2009,33,0.013418932667467744,-0.0004010672097177025,-0.00023252773037660322,0.0033422590272613557,0.002318515501478466,0.010203386066987181,0.0013338688320617285,-0.002477954119659116,-0.000595501774111467,0.005762472291218341,0.029849014887424707 -2009,50,0.015011734015867114,-0.00036468257622430163,-0.0001724234187800086,0.00347583233313415,0.0024308567035758706,0.010914910651813797,0.0015045313547240814,0.0007595153574514231,-0.0005181185604732274,0.005944839781131493,0.032283736525529794 -2009,67,0.01669024397712201,-0.00020389006500754294,-0.00011827433794909751,0.0036146949418487877,0.002568773570353211,0.01169786327244565,0.0016751935737664384,0.0007595153574514231,-0.000434890409923887,0.006138882103212603,0.03468308753156163 -2009,70,0.017028834213502705,-0.00018842173569353726,-0.00010836745355362723,0.0036414104146824055,0.00259848615281274,0.011858231316061037,0.0017053105520403822,0.0007595153574514231,-0.0004189798335411419,0.006176834074124737,0.03514920200599326 -2009,90,0.020347638005018234,-0.00015150339995641165,-3.653591280935881e-05,0.0038494848583949257,0.002922854738709164,0.013376936278955231,0.001896051009615365,0.0007595153574514231,-0.00027209270936817746,0.006547640392122518,0.03961510462542677 -2009,95,0.022105566896125674,-0.00014322770122895433,-1.2486637942006336e-05,0.003940561802103454,0.0031157553106705926,0.014091665569563717,0.0019462456191819428,0.0007595153574514231,-0.0002222922238420774,0.006754243951220406,0.04185383165811704 -2010,5,0.010178911929577589,-0.0005751536192947083,-0.0006219316694168743,0.003415686120556269,0.002121807933042845,0.00808710588903188,0.0013968156332748415,-0.0026685659750175094,-0.0010266636716786237,0.005769279356152015,0.025004442438178127 -2010,10,0.011357032814621925,-0.0005391965794617483,-0.0005188307779521535,0.0034881447949547508,0.0021992882488936875,0.008872592008845173,0.0014527486607678608,-0.0026685659750175094,-0.0009267096337166693,0.00592684180863463,0.027123460794248024 -2010,30,0.014292804495804012,-0.0004565841774554674,-0.00033980491038797207,0.003726222421137837,0.0024073027687436287,0.010616101785117573,0.0017324131909929655,-0.0026685659750175094,-0.0007427743609211066,0.006295346016895452,0.032097700708216645 -2010,33,0.014632237937673926,-0.0004478006382214436,-0.00032220918970150483,0.003757275954439939,0.002435718826230294,0.01079261788669936,0.0017743628477552315,-0.0026685659750175094,-0.0007227661568579864,0.006340846572640763,0.03264594412922462 -2010,50,0.016330828112363815,-0.0003988480902885986,-0.0002358485835021077,0.00393777319933963,0.0025950669107383416,0.011730243470854941,0.002012077569408072,0.0008179396157169171,-0.0006187689290934831,0.006583790520037775,0.03543568918009811 -2010,67,0.01811827798280865,-0.00024354607590133386,-0.00015808519662881696,0.004121690922433289,0.002789541442191525,0.012726850753421138,0.002249792594680909,0.0008179396157169171,-0.0005153256425044476,0.006844026501095051,0.038167869389701396 -2010,70,0.018469981818459928,-0.00021810490903892085,-0.00014373260613241145,0.004160973177447996,0.0028306547330433206,0.012935920882744329,0.002291742251443175,0.0008179396157169171,-0.0004956383761183273,0.006895551950269936,0.03869153953168324 -2010,90,0.022020393151044846,-0.00016623088562414074,-4.0023140795885685e-05,0.004432571547265073,0.003292956459185325,0.01484866016837358,0.0025574237145575226,0.0008179396157169171,-0.0003219390603888674,0.007406041820758107,0.043766988857916786 -2010,95,0.023904178152792156,-0.0001550011793754191,-4.623209639146517e-06,0.0045343447977598565,0.0035737589234659637,0.015759928222872036,0.002627339809161299,0.0008179396157169171,-0.0002522747311916488,0.007699519349893916,0.04628905656200843 -2011,5,0.011271715378575027,-0.0006560061636110428,-0.0008057895010138452,0.003750222760557428,0.0021683961320322835,0.008206637882018282,0.001720677670903398,-0.002859177830375903,-0.0012477425871625382,0.006220885408126048,0.027170726380281042 -2011,10,0.012541702441871166,-0.0006091171571905685,-0.0006726022669367692,0.003842626083073998,0.0022663766706006185,0.009152380789832876,0.0017935836634188484,-0.002859177830375903,-0.0011190314344806278,0.006415834039380299,0.029553402053004423 -2011,30,0.0156271750414744,-0.0005064300909935578,-0.00044143911935870663,0.004133036156674436,0.0025331478720557426,0.011234470339155755,0.0021581130187561088,-0.002859177830375903,-0.000885468066911091,0.0068796720593796434,0.0350644673409108 -2011,33,0.01599865681193769,-0.0004947976082948323,-0.0004186068054099756,0.004172637442387174,0.0025691174557877132,0.011444406270457083,0.002212792399285198,-0.002859177830375903,-0.0008600667012565914,0.006935936971582245,0.035669854621237396 -2011,50,0.017781692108698188,-0.00043297263536912136,-0.0003071094033059187,0.004402463332330944,0.0027748791469305693,0.012563420392353957,0.002522642374093369,0.0008763638739824111,-0.0007302760766583014,0.007242456633286151,0.038754280232745866 -2011,67,0.019680478508770468,-0.00028706349150513406,-0.00020651989910091986,0.004644920836154192,0.0030250605392278737,0.013742822263239786,0.002832492500711538,0.0008763638739824111,-0.0006053169662687474,0.00756997449386596,0.041774359399518624 -2011,70,0.020049683586880564,-0.00024924112991691065,-0.00018797257245505353,0.0046874551242133055,0.0030793248731551615,0.013989909329032563,0.0028871720330506255,0.0008763638739824111,-0.0005811001466236546,0.007634040331556611,0.04235668509585431 -2011,90,0.023829992832615974,-0.0001810866190295754,-5.408197213127563e-05,0.005019862381144451,0.003676694354603399,0.01623749511875813,0.0032334749282115225,0.0008763638739824111,-0.00037845703984136633,0.00828485843212132,0.04795411328394687 -2011,95,0.02587502769660205,-0.00016680515962122985,-9.059275916686284e-06,0.005135228793549446,0.004038604350068798,0.017311368851300957,0.003324607380903336,0.0008763638739824111,-0.0002932260113079914,0.00866296840331992,0.05074220575712343 -2012,5,0.012349708193913102,-0.0007411619059170862,-0.0009917453545257647,0.0040763644256672504,0.0022241852073253414,0.008404583339004979,0.00203440320315189,-0.0030497896857342964,-0.0014728584638352916,0.006681200898781857,0.029411082272880616 -2012,10,0.013726343965716661,-0.0006823771364058784,-0.000829432440653824,0.004194551211450482,0.0023439956741928064,0.009507561150745714,0.002125477816234445,-0.0030497896857342964,-0.0013178434364425344,0.0069128350495216324,0.03205698088439652 -2012,30,0.016990570421144366,-0.0005573721217578466,-0.0005468307224247107,0.004546400922168581,0.0026685998737366727,0.011862157491572952,0.0025808516406972105,-0.0030497896857342964,-0.0010336416423058332,0.0074745814164953375,0.0380821009478078 -2012,33,0.01738376374728978,-0.0005427992261788894,-0.0005192506045190963,0.004594863772430033,0.0027119111687692442,0.012106156762538796,0.002649157638461626,-0.0030497896857342964,-0.0010033201471144864,0.007542012297989587,0.038748314296077 -2012,50,0.01928604907337576,-0.0004671771598859183,-0.0003826153421838095,0.004878474823416621,0.0029636889907069934,0.013382516800720829,0.0030362251615399793,0.0009347881322479053,-0.0008481381950384689,0.007913247376603486,0.0421205214011446 -2012,67,0.02130189306512475,-0.00033444229168554465,-0.0002594638835045693,0.005160263584640257,0.0032693284603365308,0.014728156311245648,0.003423292684618333,0.0009347881322479053,-0.0006999047941151479,0.008309422742866135,0.045421184282663174 -2012,70,0.021701873111352323,-0.00028183033792731,-0.0002371907487618032,0.005208726112381527,0.003337136805250411,0.015009333629430952,0.003491598986002745,0.0009347881322479053,-0.0006722511688692645,0.008387460271887475,0.046067514057373665 -2012,90,0.02573475367948413,-0.00019607058305932655,-7.352792978786479e-05,0.005612790281252945,0.00406751108561189,0.01755734180844842,0.003924204043337373,0.0009347881322479053,-0.00043819992859173195,0.009178346712479985,0.052195003069038085 -2012,95,0.027963940419070424,-0.00017863966209978547,-1.8467385781507127e-05,0.005743213437135214,0.004511515779610825,0.018778721618574683,0.004038047271738067,0.0009347881322479053,-0.00033940854324637635,0.00964066596575937,0.05524754439505937 -2013,5,0.01366233591362834,-0.0008312661989366493,-0.0011940763440202076,0.004398484780709878,0.0022871788579007283,0.008679246643004464,0.0023379914709703267,-0.00324040154109269,-0.0017172801875646824,0.007148636411091571,0.03194386486501893 -2013,10,0.015059730705246329,-0.0007591912435400694,-0.0010003336541640757,0.0045521859666914485,0.002429477375145457,0.009907589433482885,0.002448430967404652,-0.00324040154109269,-0.0015318601571004985,0.007420479490935959,0.034794711793719665 -2013,30,0.018438434036448598,-0.0006088234141488449,-0.000663290136893637,0.004955652265248462,0.0028169401352200352,0.012528164986889533,0.003000628449576278,-0.00324040154109269,-0.0011940295038187767,0.008086252455905349,0.041246643171640805 -2013,33,0.018847758016735317,-0.0005913018906325111,-0.0006295796460672979,0.005013290169676527,0.0028684402687763435,0.012804800646335126,0.0030834578062345253,-0.00324040154109269,-0.0011586675212333641,0.008165614773745949,0.04195983014803375 -2013,50,0.020811111038923264,-0.0005018462517463948,-0.0004663921449509958,0.0053508329717523685,0.0031710660699048893,0.014240397595616103,0.00355282547631791,0.0009932123905133994,-0.0009766285740089478,0.008606014122760961,0.04557849216869159 -2013,67,0.022923589065670966,-0.00037858698346572984,-0.0003191753601152964,0.005685733463071244,0.0035382207361159368,0.01575177292292371,0.004022193146401294,0.0009932123905133994,-0.0008019739291995191,0.00907469967575489,0.04913420925234148 -2013,70,0.02337098402455449,-0.00031587261360371447,-0.00029230647415707395,0.005743371044979127,0.0036180203200204143,0.016068330969460417,0.004105023110299534,0.0009932123905133994,-0.0007705080002059448,0.009166889847979833,0.0498321109932381 -2013,90,0.027592728758305325,-0.00021118277670672427,-9.719813815422417e-05,0.006211376661010023,0.004494391605875159,0.01891366696646388,0.004629610452695082,0.0009932123905133994,-0.0005031458540731814,0.010112297996665156,0.056438822760332324 -2013,95,0.029982099990360438,-0.00019050467674438653,-3.170374965207366e-05,0.0063641872088604735,0.0050303515662581035,0.020279979898629275,0.004767659785285489,0.0009932123905133994,-0.0003891209005621089,0.010664372362499749,0.05973762714649576 -2014,5,0.01484562956392765,-0.0009253915446538533,-0.0014026370383529185,0.00473395769680235,0.0023791565937209113,0.009155228238843181,0.002631443537028695,-0.003431013396451084,-0.001969428639270686,0.007640819333569241,0.034628482569195755 -2014,10,0.0163078970676288,-0.000838687589049026,-0.0011800449773551516,0.0049027230088967335,0.0025432952993717337,0.010500811875341805,0.0027624434205494658,-0.003431013396451084,-0.0017576138272628135,0.007955609274714592,0.037666233624887614 -2014,30,0.019851011423207818,-0.0006613231805774672,-0.0007904906367566591,0.005367163792243254,0.002992687624164153,0.01329334621030654,0.003417444052633304,-0.003431013396451084,-0.0013675220452575262,0.008726025943146006,0.044496252628741594 -2014,33,0.020292381572723388,-0.0006409202195764611,-0.0007515353068445346,0.00544049675149308,0.003051612725094255,0.0135907422457438,0.003515693965273882,-0.003431013396451084,-0.001326088280870071,0.008818371385715895,0.04525041726130271 -2014,50,0.02234702712222934,-0.0005364725226467297,-0.0005622378989811153,0.005830363768905318,0.0034036386171864314,0.015157451905291806,0.004072444381097146,0.0010516366487788936,-0.0011175157384044933,0.009327515836269796,0.04911693056107863 -2014,67,0.024581221882253885,-0.00040398281495730915,-0.000391508648266115,0.006210750523165267,0.0038318935935339783,0.016817969040677613,0.00462919479692041,0.0010516366487788936,-0.0009189088849673794,0.009870689141043871,0.05292509041620112 -2014,70,0.025048990322090684,-0.00035136791667932625,-0.0003604245621451683,0.006280751883354175,0.003924291664964573,0.01715724798238492,0.004727444709560988,0.0010516366487788936,-0.000882882959776938,0.009977147580543026,0.05367349868911805 -2014,90,0.029521104335784913,-0.00022642321809182757,-0.00013530265010080998,0.006818633323016394,0.00494494654719684,0.020273027678124687,0.0053496956743846295,0.0010516366487788936,-0.0005821617203057602,0.01107234944062037,0.060753184022695944 -2014,95,0.0320638858705759,-0.00020240019348833355,-6.202546560721469e-05,0.007004929104890892,0.005565802331104572,0.02177191067726069,0.005513445225165597,0.0010516366487788936,-0.00045468543613258526,0.011717000142525153,0.06429142797101438 -2015,5,0.015542432350292802,-0.0010247373957076574,-0.0016064601114785416,0.005055860494753963,0.002459630341440622,0.009513252998177445,0.002914758945897001,-0.003621625251809477,-0.0022184109000259683,0.00812203994157952,0.03664736156226215 -2015,10,0.017141676604375242,-0.0009213782739216211,-0.001353734147984908,0.00524346930064616,0.0026466505397621026,0.010969775705961582,0.003067515631098881,-0.003621625251809477,-0.0019787667349970323,0.008478219696134373,0.03996299977459362 -2015,30,0.021030461718142032,-0.0007147433431556895,-0.0009119591178025247,0.005760855303646522,0.003157589984234816,0.013962869306419818,0.0038312987534882847,-0.003621625251809477,-0.0015364600773828886,0.00935584932274669,0.04737937330384049 -2015,33,0.0214947012970224,-0.0006910916007974269,-0.0008679016793946976,0.005863131174459999,0.0032234876924571903,0.014285937910528058,0.003945866115579697,-0.003621625251809477,-0.0014885389950568192,0.009461077110079935,0.04819712394256242 -2015,50,0.023765716384723783,-0.0005720395936874529,-0.0006528324684428414,0.00629311955239139,0.003624443551679663,0.015984836991082694,0.004595081875877688,0.0011100609070443875,-0.001254604190646715,0.010040346364772074,0.052412221851651966 -2015,67,0.026182562202215192,-0.0004310088328411027,-0.0004584831710343363,0.006744338399442985,0.004112654680714912,0.017787877975644403,0.005244297028935688,0.0011100609070443875,-0.0010309920333587744,0.010656996215863714,0.05655240603367664 -2015,70,0.02668736983090639,-0.00038831628742094315,-0.00042327317781760623,0.006825383096462235,0.004217193222304003,0.01815449226666608,0.005358864998267092,0.0011100609070443875,-0.0009905474110614273,0.010779794166595327,0.05737179117272095 -2015,90,0.03154584018476308,-0.0002417919273480353,-0.00016898186567673856,0.007441170336562145,0.005380939698735381,0.02151786850297202,0.006084459101166024,0.0011100609070443875,-0.0006540061165262569,0.012024567323088833,0.06508200299639418 -2015,95,0.03427627720311284,-0.00021432623246502548,-8.50372188510718e-05,0.007637785570467427,0.006091076429351521,0.023147830405832768,0.006275404502238379,0.0011100609070443875,-0.0005151730292472684,0.012759787706786764,0.06891939214164591 -2016,5,0.016662800049036742,-0.0011274563210110864,-0.0018164268010652214,0.0053721741555218805,0.002518254439864101,0.009680882501940654,0.0031879367867152556,-0.003812237107167871,-0.0024756502556416214,0.008583274038421773,0.03890028869834794 -2016,10,0.018305920731276272,-0.0010060287933767677,-0.0015306478267813305,0.005583546987578978,0.0027294227701936766,0.011268059454433524,0.003363645929142918,-0.003812237107167871,-0.0022045938775581593,0.008983683670796284,0.04241047151328947 -2016,30,0.02229817168917507,-0.0007692000515490757,-0.0010312024127842989,0.006184600586725834,0.0033061026555087506,0.014539990792207379,0.004242191337661235,-0.003812237107167871,-0.0017042757337070835,0.009974319552233522,0.05026894094749532 -2016,33,0.022792752950638533,-0.0007420784488559103,-0.0009813615742420212,0.006280897686130596,0.003381711103880517,0.014891709537053138,0.004373973042671985,-0.003812237107167871,-0.0016516717951765413,0.010092541109108129,0.05113209976558353 -2016,50,0.025102866841107605,-0.0006077242193367957,-0.0007381877347463746,0.0067671536732453776,0.0038354917825736776,0.01674605992075627,0.005120737049799548,0.0011684851653098816,-0.001387930873952097,0.010745723800467536,0.0555924045550393 -2016,67,0.027614506143331528,-0.0004593860134005281,-0.0005184338200284021,0.007287182275293309,0.004388092964723404,0.01870048010410804,0.005867500146067124,0.0011684851653098816,-0.0011368194130045748,0.011442644425113283,0.059985382448207704 -2016,70,0.02814580350369215,-0.0004267176050281718,-0.0004786153066218278,0.007374227892529515,0.004505268573988187,0.01909645000516132,0.005999282154697869,0.0011684851653098816,-0.0010915082075817306,0.011578707197351766,0.0608591272871628 -2016,90,0.03318307204246521,-0.00025728884810183057,-0.0001910903617786742,0.008055971550921965,0.005825393101415132,0.022734406259521913,0.006833900125799272,0.0011684851653098816,-0.0007171621506206955,0.012985507736089233,0.06902350107500156 -2016,95,0.03604505956918001,-0.0002262828138078612,-9.617997207299065e-05,0.00827785648869491,0.006624710662163359,0.02449426594338428,0.007053536402023853,0.0011684851653098816,-0.0005631744782894851,0.013818612804159018,0.07307148376827871 -2017,5,0.018062353471051906,-0.0012344261647940773,-0.002028147465412788,0.005700451994143641,0.0026225213260683386,0.010187876355104505,0.003450978881203436,-0.004002848962526264,-0.0027385348891226565,0.009086677695424022,0.04183638904349807 -2017,10,0.019712872318550945,-0.0010932560905296848,-0.001713814445551444,0.005923924965206549,0.0028564657963798287,0.011856503652696243,0.0036508364400215506,-0.004002848962526264,-0.0024391818109647818,0.00952958413426018,0.04540597559501103 -2017,30,0.02359231758769602,-0.0008241653952816021,-0.0011636062191028036,0.006582415016585006,0.0034930208125742482,0.015264266286870675,0.0046501230196321405,-0.004002848962526264,-0.0018864369987560583,0.010631396248901982,0.05336703873086256 -2017,33,0.02408372948858887,-0.0007938608805602607,-0.0011082970368978934,0.006704990445555015,0.003578280703944892,0.015636234905266454,0.004800015961030729,-0.004002848962526264,-0.0018290932769606365,0.010763760307876936,0.05424945234765061 -2017,50,0.026367476553097367,-0.000644231718821768,-0.0008398002267442008,0.007260068648547005,0.004080995866287139,0.017597859266591263,0.005649409902862726,0.0012269094235753757,-0.001538787707578368,0.01149060100430497,0.05880032720152871 -2017,67,0.02887150454241782,-0.0004891962114565234,-0.0005968322354388376,0.007824770822560476,0.004693206411533338,0.01968196585991796,0.00649880323745473,0.0012269094235753757,-0.0012620240468999683,0.012262683608435444,0.06331960741377604 -2017,70,0.029402787426486613,-0.00045800955558831364,-0.0005533167873287659,0.007931258342271399,0.0048248562782318765,0.020099027921903958,0.006648696178853319,0.0012269094235753757,-0.0012127449065260968,0.012414352497479112,0.06422496885048976 -2017,90,0.034460388538241384,-0.00027291399645993253,-0.0002366533573071153,0.008676671684921875,0.006285510087233818,0.023962213938411414,0.007598019355524368,0.0012269094235753757,-0.0008036284294776082,0.0139736052312775,0.07261100249940546 -2017,95,0.037496274605020884,-0.00023826985698324507,-0.00013073302897126577,0.008925143268921383,0.007173242932021193,0.025820185313191885,0.007847840924522016,0.0012269094235753757,-0.0006359346352425541,0.014898853203302271,0.07678792830660774 -2018,5,0.019028907330706717,-0.0013458225582195708,-0.0022551848909416095,0.006027388768552067,0.0027137877013567427,0.01056755250166578,0.0037038834076415653,-0.004193460817884657,-0.0030165877231337675,0.009579225485836822,0.044177228067501684 -2018,10,0.02077561264127494,-0.0011838283270654327,-0.0019085949416604584,0.006261883202922126,0.002972504880433815,0.0123274049910086,0.003929085038394806,-0.004193460817884657,-0.0026878606577395844,0.010068711779413073,0.047945803330900594 -2018,30,0.024799552503228187,-0.0008803939275229412,-0.0013011850898295351,0.007001367469260569,0.0036774693224179093,0.01594599196641216,0.005055093192161008,-0.004193460817884657,-0.0020752389932972935,0.011290343477601652,0.05631417780916911 -2018,33,0.02530707095824182,-0.0008468641022838328,-0.001239710616337401,0.007129037543369594,0.0037721433184999004,0.016342489206495843,0.005223993959795944,-0.004193460817884657,-0.002011387540823071,0.011436238185183183,0.05725031837910318 -2018,50,0.027678216121159494,-0.0006811131436772824,-0.0009425269611611653,0.007758906745385124,0.0043292105203108005,0.01844045348161334,0.006181100738687217,0.0012853336818408696,-0.0016920175395319283,0.012241197417032487,0.06204334669622924 -2018,67,0.03027983075082302,-0.0005196658599145835,-0.0006741165631075832,0.008372152426746679,0.005009797640109923,0.020660847066752423,0.007138207517578491,0.0012853336818408696,-0.0013865724323792884,0.01309599704920527,0.06682510649565154 -2018,70,0.03082158263772726,-0.0004873662183697242,-0.0006256702044188398,0.008486322510047753,0.005157256809684792,0.02111163301322877,0.007307108285213427,0.0012853336818408696,-0.0013331261856076573,0.013264959816431493,0.06776767234982373 -2018,90,0.03609002221003175,-0.0002886673945690799,-0.0002769458236490378,0.009315773872320207,0.006776369606310673,0.025223208945047752,0.008376816183101318,0.0012853336818408696,-0.0008848729370628341,0.01499248732509512,0.07662465566080039 -2018,95,0.03927805092930794,-0.0002502874223913738,-0.00015685459751527201,0.00957969067452306,0.007760538368345939,0.027199713340122885,0.00865831806973287,0.0012853336818408696,-0.0007019763477328432,0.01602148894716086,0.08104439758567866 -2019,5,0.020220149233192205,-0.0014612912126329407,-0.0024990565692249844,0.006352981923878022,0.002767404822153199,0.01065620786242556,0.003946651580509628,-0.004384072673243051,-0.0033123294885745985,0.0100402031715052,0.04642207654658615 -2019,10,0.022074448681529617,-0.0012776244433301124,-0.002112775783368425,0.006592832917346052,0.003055088306191384,0.01258454706873482,0.004198393242362664,-0.004384072673243051,-0.0029460124122006673,0.010581171367674686,0.05048318044475681 -2019,30,0.02634842765182257,-0.0009372214699492132,-0.0014363968278886855,0.007418094987603161,0.0038380129429513928,0.016519033307735624,0.005457101248007845,-0.004384072673243051,-0.0022639117976220625,0.011930570264708137,0.059493653563765236 -2019,33,0.02688686136044562,-0.0009000589584349824,-0.0013682296028448742,0.007548399784628923,0.003943409688537656,0.016946368131922327,0.0056459073425876236,-0.004384072673243051,-0.002193477307070868,0.01209077508628101,0.06049468592055002 -2019,50,0.02940279563907534,-0.0007194895834178661,-0.0010384773253072105,0.008243357762534292,0.0045642324190006845,0.01921378959980638,0.006715809557273023,0.0013437579401063637,-0.0018393534064443354,0.012979858973198127,0.0656417516925418 -2019,67,0.03216324734985828,-0.0005507319671396771,-0.0007391151179031972,0.008937326474828786,0.005321682457691299,0.021598176845144253,0.00778571116471843,0.0013437579401063637,-0.0015011590141818772,0.013926203024792805,0.07076885525195692 -2019,70,0.03274029917344451,-0.0005166650142554331,-0.0006859235793357442,0.00905660346907549,0.005483011286766655,0.022078272202854087,0.007974517259298208,0.0013437579401063637,-0.0014409270917695011,0.014113604290334964,0.07177391724234083 -2019,90,0.0383334078323096,-0.00030454904242927276,-0.0002968451866517373,0.009964255658545211,0.007294188386767785,0.026482376373062406,0.009170290001290129,0.0013437579401063637,-0.0009485998142976735,0.01603228115029644,0.08128614344998406 -2019,95,0.041715755777433514,-0.0002623355301656464,-0.00016564163391919953,0.010255137927373799,0.008390899804407815,0.028602501793942827,0.009484967230416422,0.0013437579401063637,-0.0007487249538031753,0.01717759734678079,0.08601516388437361 -2020,5,0.021477502018585802,-0.0015814182266376104,-0.002749588609191141,0.006677231460121508,0.002830496470242411,0.010807521611801131,0.004179282792567632,-0.004574684528601445,-0.0036176938770616763,0.010508938209116886,0.048820404374814684 -2020,10,0.023432182250916957,-0.0013743397069375816,-0.0023238787639943354,0.006933258466712926,0.0031473836555383204,0.012884110551741325,0.0044587604446851324,-0.004574684528601445,-0.003212796692670222,0.011104320215955702,0.05313733629010805 -2020,30,0.027947480192780493,-0.0009954440074016182,-0.001578112124347609,0.00781787065452394,0.004009912632626259,0.017121020387902336,0.005856148401652638,-0.004574684528601445,-0.0024598040293014453,0.01258484710539336,0.06276752909535975 -2020,33,0.028516626079380512,-0.0009551475921346185,-0.0015032092885119282,0.007980132471334146,0.00412552184990908,0.01757783882719711,0.006065756716645761,-0.004574684528601445,-0.0023823214378298862,0.01276020012184483,0.06383285515656387 -2020,50,0.031187710018828512,-0.000757944912665075,-0.0011394323802073052,0.008724060648845774,0.004811431673089605,0.020006590118349595,0.007253536358620142,0.0014021821983718579,-0.0019936620536535545,0.013735785247125643,0.06932487968009815 -2020,67,0.03410384623333812,-0.0005820752000617641,-0.0008100787490719728,0.009483020304392561,0.005645780022762969,0.02255273754152262,0.008441316000594523,0.0014021821983718579,-0.0016231080531811837,0.0147738581927109,0.07478961718954551 -2020,70,0.03471373870410025,-0.0005470724063748031,-0.000751375058705999,0.009625747799775769,0.005826084350123795,0.023061967904269193,0.00865092492282764,0.0014021821983718579,-0.001555666362601784,0.014981648973670771,0.07586202383220805 -2020,90,0.04063844709657132,-0.00032055894004051107,-0.0003222680497466835,0.01062007578929297,0.007822702752740787,0.027745971234629106,0.009978443239050772,0.0014021821983718579,-0.0010170918262198566,0.017097432901080754,0.08600200216172697 -2020,95,0.04419679434522986,-0.0002744141400392649,-0.0001783184651958069,0.010938690056462714,0.00903763185920261,0.03000531422387388,0.010327790835532641,0.0014021821983718579,-0.0008009889937512359,0.01835891022855674,0.09106069277592554 -2021,5,0.02260427702777088,-0.001706992046899115,-0.003012631598310827,0.0070001380223228896,0.00290556419334806,0.011037532563516235,0.00440177765105557,-0.004765296383959838,-0.003934998151405845,0.010992671629449384,0.05115213047324329 -2021,10,0.024633266523480416,-0.0014735526790591994,-0.002546401892867531,0.007266676166958523,0.003251360143857411,0.013253382714286834,0.004710186948982208,-0.004765296383959838,-0.003492180059215918,0.011641316680367974,0.05570380783237335 -2021,30,0.029288426372408867,-0.0010548794163844771,-0.001729857285282904,0.008233697092336746,0.004199025360362113,0.017769389045355258,0.006252234045855391,-0.004765296383959838,-0.0026670512125998363,0.01325954865580162,0.06581917693309872 -2021,33,0.02987100790925324,-0.0010107660001346876,-0.0016478302064547711,0.008407181649824867,0.004326796161772796,0.018255895686875415,0.006483541474730364,-0.004765296383959838,-0.002582227273196475,0.013450731445225995,0.06695003959862479 -2021,50,0.03263430810458958,-0.0007971992502735646,-0.0012495318626995306,0.009230032892132343,0.005077891157420573,0.020843676053968415,0.007794281142728576,0.001460606456637352,-0.002157756925575148,0.014513619041604975,0.07272903194344776 -2021,67,0.035657470561191444,-0.0006143428499324771,-0.0008887857801893958,0.01003659007575333,0.005995545766741225,0.023545195753650577,0.009105021417966779,0.001460606456637352,-0.0017526698785740715,0.015648224965126304,0.07848687084359865 -2021,70,0.03629113955795765,-0.0005765052682138237,-0.0008242608236372809,0.010192320080250125,0.006193051472434044,0.024084129865718354,0.009336328846841751,0.001460606456637352,-0.0016797067507227088,0.015876257169655336,0.079612371004726 -2021,90,0.04242079012468457,-0.000336697047135997,-0.0003548596184502915,0.011283237635415352,0.008387945532697123,0.029048816619669807,0.01080127407466327,0.001460606456637352,-0.0010932195200435548,0.01819861188200132,0.09028492304564739 -2021,95,0.04608608226776123,-0.0002865232721456283,-0.00019666780975398777,0.011630347735960181,0.009727855299307161,0.03143990751648572,0.011186786456121558,0.001460606456637352,-0.0008592503558818392,0.019582864704898558,0.09561136230801102 -2022,5,0.023829367355257272,-0.0018347406875077702,-0.003275534732789995,0.007321700965441801,0.002995808283195796,0.011364978994566195,0.004614135548733448,-0.004955908239318232,-0.004256078261949689,0.011489069441240318,0.053693684477193616 -2022,10,0.02589587631765753,-0.0015740154187140094,-0.0027709475921701815,0.0075985810288845,0.003372188285182418,0.01369254802233184,0.004952673058873886,-0.004955908239318232,-0.003775325803857311,0.01219215240284448,0.05842559152293424 -2022,30,0.030686408902332186,-0.0011149851809759445,-0.0018865547259506363,0.008659248282946381,0.004401536239959909,0.018448865635460714,0.0066453587878561,-0.004955908239318232,-0.002880220081550478,0.01394851451257021,0.06898033661496776 -2022,33,0.03126219074912554,-0.0010676158997701484,-0.0017970747256155608,0.008835230622980472,0.004541266088626381,0.018963349741955793,0.006899261616841432,-0.004955908239318232,-0.0027873752842236033,0.014155199451662749,0.07016559537500311 -2022,50,0.03413624544143677,-0.0008370340344860952,-0.0013652870042814265,0.00973957607888533,0.005357571292591943,0.02169801621157744,0.008338045124078307,0.0015190307149028461,-0.0023281366246862088,0.015308890902417955,0.07619924353444957 -2022,67,0.03723991885967553,-0.0006450699446933318,-0.0009738881499722635,0.010609554012263421,0.006357321870663845,0.02454432538156011,0.009776828024075188,0.0015190307149028461,-0.0018898492782243597,0.016540817122687942,0.08223682691629126 -2022,70,0.037891111770272254,-0.0006067910995132212,-0.0009041643184639861,0.01077085601598544,0.0065719365667610075,0.025112444717293732,0.010030731460300512,0.0015190307149028461,-0.0018107620392685195,0.016788179647922723,0.08341043961223506 -2022,90,0.04424129929766059,-0.00035296339995584863,-0.00039587696804035315,0.011953739174401238,0.008960758092733796,0.030332248029902465,0.011638784329847598,0.0015190307149028461,-0.0011775087064538087,0.019314463748940497,0.09458804470295842 -2022,95,0.04806030490882695,-0.00029866290635133767,-0.0002230664974440996,0.012330109617525448,0.010419735759610325,0.03284514602103186,0.012061955306663158,0.0015190307149028461,-0.0009263346544894027,0.020818133297512996,0.10017218500223249 -2023,5,0.025191021871566775,-0.001969074586399564,-0.0035424505720563545,0.007638688098613775,0.0030913590620686385,0.011720082627763678,0.004816356181981271,-0.005146520094676625,-0.0045828440831648005,0.011992297637786722,0.056398169344176255 -2023,10,0.02731583564579487,-0.0016781574073100782,-0.0029989807112690368,0.007923626017924611,0.0034991493221774935,0.014148732985765048,0.005186217559880183,-0.005146520094676625,-0.004065350339026825,0.01275088959684753,0.061356513897843606 -2023,30,0.032309344828873876,-0.0011766009084353806,-0.0020468953429049835,0.009086175989697156,0.004610982038143276,0.019137987684951386,0.0070355214131747786,-0.005146520094676625,-0.003096858684598135,0.01464670310683734,0.07238070621740127 -2023,33,0.03286914734914899,-0.0011254046139672592,-0.001950442830598117,0.009258667598189883,0.004762399685283411,0.019679227339126252,0.007312917142978967,-0.005146520094676625,-0.002998404144917847,0.014869153668619206,0.0736271479011815 -2023,50,0.03587646156847477,-0.000878016200566902,-0.0014840392464582095,0.010229606929291897,0.005645898691416082,0.022551530223361517,0.008884825873709368,0.00157745497316834,-0.002503687025969998,0.016116154543740165,0.07993631100118442 -2023,67,0.03909548805467784,-0.0006756582683646691,-0.0010629924097471746,0.01118015698520597,0.006726526890761895,0.02553781269511578,0.010456734604439768,0.00157745497316834,-0.0020316773091454466,0.017446660935605065,0.08625876331561774 -2023,70,0.03978409981541336,-0.0006376080327027092,-0.0009866894941098624,0.011363656777390424,0.006960351174103223,0.026137468158952012,0.010734130334243955,0.00157745497316834,-0.0019461508706923219,0.01771337180728749,0.08750362281881506 -2023,90,0.04640592736192047,-0.00036935800252674576,-0.0004396420538252375,0.012631579732080253,0.009546104834965171,0.03160926590932372,0.012490970361163804,0.00157745497316834,-0.0012651387126514724,0.02044321724431679,0.09921665238268641 -2023,95,0.0504371046256274,-0.00031083302252299415,-0.00025089543611198306,0.013037976375328894,0.011124692478650049,0.03423426512469905,0.012953296172677455,0.00157745497316834,-0.0009969017008033287,0.02206853167883328,0.10508106445404641 -2024,5,0.02652566989175975,-0.002106065559942046,-0.0038510967718872013,0.007945572475443474,0.0031904005465701237,0.012064186976625004,0.005008441676139013,-0.005337131950035019,-0.004949277629324224,0.012504733741305262,0.0590881184868312 -2024,10,0.028732493032887576,-0.0017852915238751677,-0.0032611679592651453,0.008257850215266472,0.0036338872793931823,0.014622869520383719,0.0054108222737210745,-0.005337131950035019,-0.004386233113636847,0.013325421067591886,0.0642997049422502 -2024,30,0.0339346771851182,-0.001238533994049156,-0.002228905295965161,0.009506963871239952,0.004845525157938206,0.01988711542460678,0.007422724350771397,-0.005337131950035019,-0.003336819286109352,0.015373851433707598,0.0758738336710373 -2024,33,0.03451335978582502,-0.001183764941034173,-0.0021239899402599295,0.009693751766241182,0.005009655680992131,0.020459378626334658,0.00772450926762295,-0.005337131950035019,-0.0032301091457203005,0.015615683944346277,0.07718626463047941 -2024,50,0.037637946305423976,-0.0009193352377848138,-0.0016182036387989165,0.01072049694743043,0.005973568955109653,0.0234914369505772,0.009434626427821719,0.0016358792314338341,-0.0026943414998292147,0.016963637731020734,0.08382067914576916 -2024,67,0.040987893737852575,-0.0007063393243966315,-0.0011620789418201607,0.011755368586826293,0.007151404627848976,0.02664339547275387,0.011144743588020487,0.0016358792314338341,-0.002185691356314069,0.01840516791816266,0.09047603460778979 -2024,70,0.04171528246998787,-0.000668528315588741,-0.0010782174384525408,0.011960846546461453,0.007406422750679235,0.027268941095379147,0.011446529719352025,0.0016358792314338341,-0.00209232529493723,0.01869593393334082,0.09178257046518559 -2024,90,0.04856926225684583,-0.00038588085484868827,-0.0004859658094259705,0.013316760656793143,0.010228778152801427,0.03303341935448585,0.013357837026531826,0.0016358792314338341,-0.0013575179497930822,0.021666345496403963,0.10411504813565674 -2024,95,0.052842906296253205,-0.0003230337011941933,-0.00028021167736841146,0.013753949357711263,0.011950429361971394,0.03579413557706232,0.01386081148312442,0.0016358792314338341,-0.0010695053174625733,0.023431122390294337,0.1102579591975684 -2025,5,0.027980926004424693,-0.0022491791114322493,-0.004168268883410751,0.008250395913439361,0.0032972559946338755,0.012441829827880424,0.005190388691386715,-0.0055277438053934124,-0.00532537030347098,0.013028391578456103,0.061898568379581326 -2025,10,0.030170216657593847,-0.0018958075357263307,-0.003534043026228566,0.008585214539722465,0.003776997195743842,0.015125654547070834,0.005626484771436594,-0.0055277438053934124,-0.004719621081451038,0.01390994979319701,0.06733661108132646 -2025,30,0.03544882116962224,-0.0013017660836663288,-0.002418788687066706,0.009924489719025261,0.005093526439863942,0.02065657643352914,0.007806963957206,-0.0055277438053934124,-0.0035854888086054248,0.01611725487639191,0.07932093984151202 -2025,33,0.03602979404479265,-0.001243557200391025,-0.00230514913334431,0.010125381703799573,0.005271538092484823,0.021263415256484713,0.008134036169053407,-0.0055277438053934124,-0.003471856769263056,0.01638008799987158,0.0806630504109619 -2025,50,0.03918944638557732,-0.0009615661307466997,-0.0017592089094491442,0.01122556524574694,0.006316888379123297,0.024452707763549613,0.009987443142975406,0.0016943034896993283,-0.002892505957720819,0.01783182874004225,0.08756727954759612 -2025,67,0.04264045394062996,-0.0007368614282877617,-0.0012661643278836022,0.012333356966071192,0.007593657290757667,0.027770057763854685,0.0118408507241374,0.0016943034896993283,-0.0023448718363691507,0.019387393586654464,0.09449893015551669 -2025,70,0.04339849522523582,-0.0006979595806538085,-0.0011756588655521293,0.012543338550241891,0.007874393961405421,0.028423983874868823,0.012167923543224797,0.0016943034896993283,-0.002245864877543274,0.019699477501200813,0.09584972831816647 -2025,90,0.0503881618283689,-0.00040253195692167626,-0.000536776209011957,0.014009279251858414,0.010940504910638246,0.03446780381778024,0.01423937825355174,0.0016943034896993283,-0.0014573786368357522,0.022918404337449474,0.10867942711834572 -2025,95,0.05479074062928558,-0.0003352648618313395,-0.0003142332615716255,0.01447802721633181,0.012810005851448326,0.037373105990017676,0.014784498809044084,0.0016943034896993283,-0.0011479330168246051,0.02484158386805902,0.1150687294140667 -2026,5,0.0293594949580729,-0.0023970083367224025,-0.004487094110349284,0.008553159760942182,0.0034207433113076116,0.012904050256281965,0.005362199960304343,-0.005718355660751806,-0.00570559117417915,0.013568260592939793,0.06479011771761202 -2026,10,0.03165218916013837,-0.0020093059316808964,-0.0038080880374133626,0.008911065351688468,0.0039360438610760926,0.015684704681404336,0.005833206874746715,-0.005718355660751806,-0.005056635519039164,0.014509091633059489,0.070433747792048 -2026,30,0.037049832134693865,-0.0013661960763958851,-0.002612374049021377,0.010342688388843982,0.005353103226414687,0.021447189155725913,0.008188243875918542,-0.005718355660751806,-0.0038398327791242946,0.016875707056302865,0.08289270739012154 -2026,33,0.03766748173795641,-0.0013043534116890512,-0.002491770040959279,0.010557432552296204,0.005545913076215216,0.02208509664604147,0.008541499061750321,-0.005718355660751806,-0.0037175817564225333,0.017159487993479546,0.08428866533021294 -2026,50,0.04090016420334578,-0.0010043112460365647,-0.0019049421675091543,0.011744977550100406,0.006674264363401141,0.02542384081812535,0.010543279662610386,0.0017527277479648222,-0.003097917355538656,0.01871528122859291,0.09148750845421932 -2026,67,0.0444758977551498,-0.0007671688025618189,-0.0013765358752827936,0.012909277990971725,0.00804850296228079,0.02889403556092695,0.012545060870710441,0.0017527277479648222,-0.00251212404398497,0.020383487020805974,0.09871297527215764 -2026,70,0.04527647899501026,-0.000728520830354261,-0.0012786921992473247,0.013134354423678355,0.008352769564465564,0.029574046534441213,0.012898316663782213,0.0017527277479648222,-0.002406273822062301,0.020719506360866138,0.10012419081179487 -2026,90,0.05253223074674608,-0.00041931126847891186,-0.0005940510839849504,0.014701292817570459,0.011657824825383058,0.03589363904097249,0.015135600114623471,0.0017527277479648222,-0.0015650655160272054,0.024191059729435985,0.11352011530040956 -2026,95,0.0570941212747246,-0.00034752658496802846,-0.0003544994918845731,0.015210208602849783,0.013676885754937982,0.038925298559474526,0.015724359364916427,0.0017527277479648222,-0.0012338047816920173,0.026260352919373942,0.1201874610098563 -2027,5,0.030660733748227358,-0.002549721631287985,-0.004814632506850229,0.008853864017951938,0.0035490966614991825,0.013359679562669872,0.005523874572031908,-0.0059089675161102,-0.0060980704950141535,0.014113297792418326,0.06761060824084218 -2027,10,0.03306684976816177,-0.0021244624107930868,-0.004088933761258152,0.009235403325334849,0.004103002866490173,0.01626043012219211,0.006030988583651439,-0.0059089675161102,-0.0054042811132064,0.015116504410385595,0.07351827369321112 -2027,30,0.038768804334849125,-0.0014319782582383942,-0.002810961613699487,0.010761560554866493,0.005624229940918846,0.02225164447450347,0.008566561070709062,-0.0059089675161102,-0.0041022000216617924,0.017646194451661993,0.08657636528588918 -2027,33,0.039403246372938155,-0.0013665576062229714,-0.0026822939199627888,0.01099048386962809,0.005829765542415298,0.022915141719231636,0.008946896731233708,-0.0059089675161102,-0.003971176646184507,0.01795074299490432,0.08804293137530717 -2027,50,0.04281026854366064,-0.0010484613594690228,-0.0020559253385673687,0.012267857591461725,0.007043658497278229,0.026404121998120245,0.011102132343286702,0.0018111520062303163,-0.0033095085038549977,0.01961334506762793,0.09559478112564723 -2027,67,0.046574705868959426,-0.000798746628822579,-0.0014909086639547113,0.013508643028687154,0.008517566760567098,0.03002204067210766,0.013257367955339694,0.0018111520062303163,-0.00268402074492404,0.021400105369172556,0.10318607468063139 -2027,70,0.04740231511928141,-0.0007578614151322804,-0.0013865387648672137,0.013737567017619124,0.008848077390992509,0.03073437533554986,0.013637705437584318,0.0018111520062303163,-0.002571234612460797,0.021759669809154416,0.10466294382178941 -2027,90,0.05501541617773473,-0.000436218829787193,-0.0006533816227171745,0.01539602529978836,0.012398592814425333,0.03731791821309581,0.016046498966307065,0.0018111520062303163,-0.0016761950474048458,0.02548729071722548,0.11874848298724444 -2027,95,0.059795173502806165,-0.0003598187498038666,-0.00039595303490272984,0.01595049621394668,0.014566887342854717,0.0404772323260329,0.01668039193626147,0.0018111520062303163,-0.001323112843521059,0.027713583127587916,0.12576438947782223 -2028,5,0.03203277908675373,-0.0027060683026802726,-0.005139930695717256,0.009152508010298254,0.003661635083945222,0.013725930307221846,0.005675411919329418,-0.006099579371468593,-0.006491292263317041,0.014638431621957555,0.07036539171807135 -2028,10,0.03451881000399589,-0.002244729467469952,-0.004366770728491873,0.009558227112320862,0.004253781645744061,0.016752968739585702,0.006219829898150766,-0.006099579371468593,-0.005750686742433442,0.015711426653638824,0.07651742214328093 -2028,30,0.04037114414088428,-0.0014991204409469227,-0.00300449808683768,0.01117811507688298,0.005879197707848784,0.022997540012546596,0.008941917363297537,-0.006099579371468593,-0.004361662933957045,0.018407129857973787,0.09009219777128309 -2028,33,0.041049231251701714,-0.0014294138192134283,-0.0028683849242959357,0.011424537004135982,0.006099963116640849,0.023691996585548818,0.009350230391983554,-0.006099579371468593,-0.004220650756674422,0.01872840227572124,0.09162006102779956 -2028,50,0.044548313449323175,-0.0010928128718014707,-0.002200392691667814,0.012789606618570417,0.007396423130667488,0.027326693090574602,0.011664004221204316,0.0018695762644958106,-0.003516098406875446,0.02050041086307131,0.0994950298055502 -2028,67,0.04844666043557227,-0.0008303072659370174,-0.0015981945129418746,0.014102285099996318,0.008972580510457066,0.031098444209151557,0.013977779264905062,0.0018695762644958106,-0.0028503941096764992,0.022405375965444528,0.10739407002207084 -2028,70,0.04929783957451582,-0.0007886732979964513,-0.0014876456635306132,0.014346956859618452,0.009326126616346743,0.03184189849792841,0.014386092293591078,0.0018695762644958106,-0.0027306860783121076,0.022791754485776854,0.10894143041563246 -2028,90,0.05718521635830402,-0.00045325463681983975,-0.000706172920762523,0.016097404267394394,0.013125412684843638,0.03869606150647583,0.016972076023082504,0.0018695762644958106,-0.0017794567889719269,0.0267731750860355,0.12362367407619751 -2028,95,0.06211657242886722,-0.0003721414771392475,-0.00043107939830057276,0.016691111862930298,0.015448634320743282,0.04197617460409627,0.017652597737559197,0.0018695762644958106,-0.0014045847898806903,0.02915328530795799,0.13093875106523023 -2029,5,0.033579044421389696,-0.0028641493169431482,-0.0054528203230673564,0.009452656318705557,0.003791524267413901,0.01417951440656962,0.005816812002196873,-0.0062901912268269865,-0.0068748230470332405,0.01518134862478848,0.07343880112806275 -2029,10,0.036107933823019266,-0.0023676950401181965,-0.004633806986346263,0.009876627959587051,0.004419278317407248,0.017303583740570262,0.006399728996524719,-0.0062901912268269865,-0.006090089993469466,0.016313754552796135,0.07972809707753994 -2029,30,0.04199593523964286,-0.0015668152254490707,-0.003196613940407805,0.011586331329255314,0.006140342385058595,0.023749150956201448,0.009314312146443973,-0.0062901912268269865,-0.004618646390924631,0.019173803256787775,0.09364150986517533 -2029,33,0.04268391073202714,-0.001492574581954716,-0.0030529078301516576,0.011856284196182294,0.006375183824098083,0.024466585915400556,0.009751499436759865,-0.0062901912268269865,-0.004468428767259003,0.01951491275431581,0.09518892437289792 -2029,50,0.0462264868542552,-0.001137978239521553,-0.0023456276921501496,0.013296034698923579,0.0077515355807150355,0.02823370362314285,0.012228894081883244,0.0019280005227613048,-0.0037235410804027976,0.02139277605246922,0.10329243057103081 -2029,67,0.050175521086156444,-0.0008620244411143421,-0.0017093622686688392,0.014700530406620262,0.009424164231865297,0.03214271383429811,0.014706289941486608,0.0019280005227613048,-0.0030199269435787868,0.0234136052445106,0.11143926239153991 -2029,70,0.0510477700099349,-0.0008188588355737014,-0.0015930126398771179,0.014971402376855633,0.009799518683558535,0.03291327789948326,0.015143477231802498,0.0019280005227613048,-0.002893854394095529,0.02382012468199867,0.11304392660637841 -2029,90,0.05906606585159898,-0.000470418657363414,-0.000767084808806691,0.01680542408299638,0.013826996492039851,0.04000992756221573,0.01791233128494979,0.0019280005227613048,-0.0018896246995701034,0.02804224794614905,0.12813293844804416 -2029,95,0.06411262096837163,-0.00038449472670737324,-0.00047486156826851263,0.017435315280282703,0.01629465691766525,0.043398764608402515,0.018640976768809606,0.0019280005227613048,-0.0014914895451040686,0.03057434635764971,0.13569809091486076 -2030,5,0.034976476978212614,-0.0030288385146093593,-0.005779939029452129,0.009758635731621206,0.003923172627285414,0.01463049560819123,0.00594807664235425,-0.00648080308218538,-0.007270737931084237,0.01572487869221189,0.07632203413902527 -2030,10,0.03758587972819805,-0.00249205966540975,-0.0049150947207912835,0.010194663667856131,0.004588089511175088,0.01784751456675799,0.0065706883077332676,-0.00648080308218538,-0.006442136835506716,0.016927058769540246,0.08284536844499937 -2030,30,0.04366837817244232,-0.0016362288898339277,-0.003397426950357409,0.011994563789130186,0.006412013511683718,0.02450950896568459,0.009683745420148373,-0.00648080308218538,-0.00488652847593187,0.019952847609363885,0.09725538257469803 -2030,33,0.04438153473846614,-0.0015572184714445375,-0.0032445974830481,0.012287595826662678,0.00666201288415213,0.02525943756168625,0.01015070386556264,-0.00648080308218538,-0.004726883458656445,0.020316544115119538,0.09886151218045715 -2030,50,0.048038589166104796,-0.0011841425484418117,-0.0024961722140783202,0.013804648678097138,0.008121343870140085,0.029165312541245266,0.012796801925323486,0.001986424781026799,-0.003938615203341675,0.022305156171150742,0.10725911288337736 -2030,67,0.052132555983960625,-0.0008948524077804175,-0.001823801637101853,0.015303384341921977,0.009896005362149738,0.033211747116449856,0.015442901199564315,0.001986424781026799,-0.003193987326027435,0.024444250168572174,0.11574091598602695 -2030,70,0.05301118818841869,-0.0008485386531183262,-0.001701805866931193,0.015601408142048117,0.010293528586820946,0.034009383255529234,0.015909860252218574,0.001986424781026799,-0.003061941516739994,0.024875901348240997,0.11739630088374126 -2030,90,0.06133996330574155,-0.0004877109276580336,-0.0008281637155686664,0.017520087565290405,0.014569348893049621,0.04135497979757342,0.018867264751908922,0.001986424781026799,-0.002001498134486597,0.02935374651050216,0.13308936006107583 -2030,95,0.06656077264621854,-0.00039687845824144607,-0.0005179643939917001,0.01818696005532157,0.017183492574567222,0.04485373183770962,0.01964553024449268,0.001986424781026799,-0.001582383921354241,0.03204132459751852,0.14094549146773735 -2031,5,0.03606349256336689,-0.003198464730725741,-0.006131784628457798,0.01006316767395545,0.0040547925484998104,0.01505044433137993,0.00606920341084158,-0.006671414937543774,-0.007694675367767097,0.01627434017115078,0.07883209300385476 -2031,10,0.038802987942472104,-0.0026183294546671923,-0.005214281370702382,0.010517620095020436,0.004759226153800112,0.01838574237199563,0.006732705402816443,-0.006671414937543774,-0.0068134038728743405,0.017547045705586014,0.0856765308870581 -2031,30,0.04523216752819717,-0.0017066464851284322,-0.003609464714980314,0.012402815275203687,0.006697807661548195,0.025297795144712303,0.010050216577170742,-0.006671414937543774,-0.005166482209790422,0.020749362628452207,0.10077628236713058 -2031,33,0.04596497963219881,-0.0016226238464993573,-0.0034471672077653823,0.012732697198160075,0.00696224529593683,0.02607489754245068,0.010547843678391882,-0.006671414937543774,-0.004997389778720814,0.021135570428741,0.1024644705021724 -2031,50,0.04983897953778505,-0.0012298754370895248,-0.002655504131279163,0.01431545560283133,0.008513224646948973,0.03012916856684615,0.013367727751525041,0.002044849039292293,-0.004162501279468539,0.02324141710080954,0.11127356534941439 -2031,67,0.05413684816658497,-0.0009267917534718694,-0.0019442912574813725,0.015910846905901464,0.010401647995200372,0.03432625889691417,0.0161876118246582,0.002044849039292293,-0.0033747983198657277,0.02550762973638122,0.12016775250069517 -2031,70,0.05508793081119657,-0.0008798674636134133,-0.0018143983986107619,0.016228093111762876,0.01082331164544915,0.035149310012406496,0.01668523892587934,0.002044849039292293,-0.0032373457346861786,0.02596789980220347,0.1219153800461587 -2031,90,0.06380481569319964,-0.000505131479917137,-0.0008910946348370361,0.018264188956469495,0.015371589260303001,0.04275892595266344,0.019836875209479916,0.002044849039292293,-0.002115136383724725,0.030725649335540315,0.13838413940624908 -2031,95,0.06928458688035607,-0.0004092927120082638,-0.000560382522336943,0.018946054644135176,0.01815298348755668,0.04639458462629359,0.020666252092208504,0.002044849039292293,-0.0016729700136169342,0.033579303907588454,0.14661009957904617 -2032,5,0.03719615057855845,-0.00337079732472364,-0.006481202013739349,0.01036625085562756,0.004206674423932015,0.015573672395914402,0.0061801935221388465,-0.006862026792902168,-0.00811827340378184,0.016842495279382075,0.08153465975544164 -2032,10,0.04002382337674499,-0.002747828334500145,-0.005516183108424623,0.010834390506216847,0.004951636735921033,0.018988936393784857,0.006885782710734213,-0.006862026792902168,-0.0071904720512881645,0.018189201550994696,0.08859781679051484 -2032,30,0.04667539757788181,-0.0017785547692773726,-0.003826937105693936,0.012811083673453749,0.006999795815228982,0.026110199781178768,0.010413727439231057,-0.006862026792902168,-0.005452103208149737,0.021567420293253568,0.10423729474560474 -2032,33,0.04743438856601715,-0.0016893976607079138,-0.003654721872318523,0.013170748837157121,0.007280504018850846,0.02691674225214604,0.010942918875247587,-0.006862026792902168,-0.00527303244410714,0.021974082034986363,0.10598183915177806 -2032,50,0.0514383219609037,-0.001276801110587961,-0.0028196495265212507,0.014837068850384725,0.008924186804109347,0.03111304982489447,0.01394167156048791,0.002103273297557787,-0.004393391072172814,0.0241976489471155,0.115131744681355 -2032,67,0.05588350048847497,-0.0009599044995650479,-0.002071185521977888,0.01652291809855872,0.010921238781579006,0.03544952063345575,0.016940424245728232,0.002103273297557787,-0.003565453297490896,0.02659188190858361,0.12436817342036244 -2032,70,0.056877195015549664,-0.0009097513397094545,-0.00193612462976144,0.016845810360621993,0.011366283853754542,0.036298220756608504,0.017469615681744762,0.002103273297557787,-0.0034203125013821246,0.027076755204930338,0.12617694777589925 -2032,90,0.06587418046407402,-0.0005226802094470496,-0.0009637896365550833,0.019016311183600008,0.01618008102742591,0.04415709886381166,0.020821163872142757,0.002103273297557787,-0.00223921129106054,0.032108366809023105,0.1432763794529325 -2032,95,0.07153282768651843,-0.00042173748800782636,-0.0006121750164872628,0.01971258777193915,0.019117791855782888,0.0479140335922187,0.02170314838435699,0.002103273297557787,-0.0017751374037056184,0.035129575882564275,0.15182769935351514 -2033,5,0.03855373676832766,-0.0035481243274455027,-0.006841414711874291,0.010647900020197982,0.0043586410368121695,0.016065760609570615,0.006281047583486044,-0.007052638648260561,-0.008553761860798039,0.01741283413580812,0.0844744381677747 -2033,10,0.04144041846692562,-0.0028805531669231677,-0.005826634589905198,0.011149647404923265,0.005146250333225099,0.01958777740831416,0.007029919017006594,-0.007052638648260561,-0.007576392206274412,0.018830957762847447,0.09171888479237572 -2033,30,0.0481709119561687,-0.0018516007406311874,-0.004048704206751181,0.01322642627782543,0.007308234611426491,0.02692518033766202,0.010774276184609344,-0.007052638648260561,-0.005744547403096231,0.02239425950836511,0.10775138220160065 -2033,33,0.04895275268554688,-0.0017568937394363885,-0.0038692660167150335,0.013609803641670921,0.007603942318033137,0.027758101173392346,0.01133592945612976,-0.007052638648260561,-0.0055562531003946125,0.022823796107524993,0.10955662784559277 -2033,50,0.052997643638402224,-0.0013251344892768698,-0.002989369646529539,0.01537560015118774,0.009344825639834773,0.03210031609221639,0.014518633352212094,0.002161697555823281,-0.0046311083106145515,0.025168130790774762,0.11894658882171008 -2033,67,0.05752171092182398,-0.000993526862112972,-0.0022008406485317894,0.01713247457201246,0.011452944695798883,0.03658051220450179,0.017701336033814442,0.002161697555823281,-0.0037609318862184492,0.027694390553676885,0.12847317454912954 -2033,70,0.05849632998034358,-0.0009414539910067729,-0.002058797552950104,0.017467882494945346,0.011926298649964364,0.03745789790029019,0.018262990519814844,0.002161697555823281,-0.0036043879914563594,0.028207441446996398,0.13032296000850357 -2033,90,0.06768694525770842,-0.0005403571847013281,-0.0010344303033569507,0.019776287422227475,0.01701226755740858,0.04556736707248396,0.02182012952541746,0.002161697555823281,-0.0023630758487609618,0.03352694974914163,0.14790841107822536 -2033,95,0.07345902967080474,-0.00043421274597333606,-0.0006624520362449957,0.02048656507612568,0.02012418000880178,0.04943321776048896,0.022756219120938146,0.002161697555823281,-0.0018749531674565902,0.036718263640696275,0.1567376706434916 -2034,5,0.039922434699535374,-0.0037292603842527298,-0.0072224214282249856,0.01092417733648443,0.004492709108169461,0.016458669710889814,0.006371764380403185,-0.007243250503618954,-0.009008823682903474,0.017971324325160676,0.08724228903177196 -2034,10,0.0428275182209909,-0.003016599981140785,-0.006154125954480151,0.01146339079113969,0.005325521084253301,0.020111173951784078,0.007165114321633585,-0.007243250503618954,-0.007978602285883258,0.0194644064319148,0.09471574475744862 -2034,30,0.049699455866217615,-0.001924553069631615,-0.004277632667106033,0.013657976343839277,0.0076151695992239515,0.027720396748942777,0.011131864027785585,-0.007243250503618954,-0.006045276579281042,0.023222189354045162,0.11127319485767553 -2034,33,0.05049112565591931,-0.0018245571008220574,-0.00408848290630367,0.014049858915019978,0.007926325032954087,0.028583381390988552,0.011726876635518382,-0.007243250503618954,-0.005848991024350709,0.0236773233800504,0.11313674669843132 -2034,50,0.05458883241377771,-0.0013732295395789923,-0.0031602357083916777,0.01591749340237858,0.009769361840355335,0.03308212285566706,0.015098611912217607,0.002220121814088775,-0.004870758716580568,0.02614972252960409,0.1228367780500829 -2034,67,0.05921356841549277,-0.0010267294466000268,-0.0023289890281625106,0.017746626627885842,0.01200643579031369,0.03772503337472383,0.018470350832356784,0.002220121814088775,-0.003953207948381844,0.02881689230255084,0.13268548860026622 -2034,70,0.060208005459606646,-0.0009728157881613856,-0.0021790719332518715,0.018098243921818753,0.012506913203035376,0.03862858537227688,0.01906536344008958,0.002220121814088775,-0.003788916845945877,0.029359441315020666,0.1346012631744396 -2034,90,0.06964945647642017,-0.00055816244594677,-0.0010985874879627488,0.020544125412836293,0.017900563370306807,0.047016131778954015,0.02283377581274398,0.002220121814088775,-0.0024835414902794513,0.03499416013201352,0.15279693045476359 -2034,95,0.07552481660842895,-0.0004467185664383884,-0.000706704274978694,0.021267983737998673,0.0211950647217825,0.05102368638247911,0.023825461872991997,0.002220121814088775,-0.0019684930762258837,0.038373838379584566,0.1619246555162985 -2035,5,0.0411940450720489,-0.003914535402550136,-0.007601454127838288,0.01119784454018843,0.004645389892102411,0.01693850474950585,0.006452345127370257,-0.007433862358977348,-0.009465651058909015,0.01854622836788855,0.09004523543549106 -2035,10,0.04422028402388096,-0.0031571533935164397,-0.006477830317606241,0.011775623361547617,0.0055213650033574205,0.020687884063454287,0.007291369839095172,-0.007433862358977348,-0.008384690678822831,0.02011358909538281,0.09779360006631696 -2035,30,0.05131261169463396,-0.0019997473916369486,-0.004509566182515543,0.014090692642834931,0.00793622800786467,0.02853316237576767,0.01148649096875978,-0.007433862358977348,-0.0063485919581233235,0.02406553939188835,0.11494506678542182 -2035,33,0.05214561983756721,-0.0018939893220151075,-0.004310741292625171,0.014490914657204292,0.008264944834035127,0.029424324275739953,0.012115759198933469,-0.007433862358977348,-0.006143618034101168,0.024543506076811848,0.11687279607627445 -2035,50,0.05639123674482107,-0.0014210806439891189,-0.0033356928561042274,0.016462751184118704,0.010207610957258579,0.034074834094648315,0.015681612098424388,0.002278546072354269,-0.005116445651394488,0.027143205756237472,0.12693516937495913 -2035,67,0.061183022730052466,-0.0010604532218607238,-0.002463458463124728,0.01838298991092606,0.012564826193746633,0.038863459405836236,0.019247464997915305,0.002278546072354269,-0.004153461762570133,0.029951571841939983,0.1371453781618829 -2035,70,0.062202933362126345,-0.001004446068042316,-0.002305933841662796,0.01874093862955195,0.01309273806968319,0.039791640906873,0.019876734442568978,0.002278546072354269,-0.003979680627742514,0.030523737734143578,0.13915833075107978 -2035,90,0.0719664006382227,-0.0005760959207031394,-0.0011720349687525142,0.02131646531080441,0.018780072992455144,0.04844372883901377,0.023862097876202377,0.002278546072354269,-0.00261012891297147,0.03646106179242283,0.15802487590657158 -2035,95,0.07802374055832624,-0.00045925490913618564,-0.0007583982826110716,0.022056852213646408,0.02225697675536361,0.05255898185512413,0.024910879069478517,0.002278546072354269,-0.0020730739779194728,0.04002385123267136,0.16750898908590903 -2036,5,0.04276664472296834,-0.004105911495205709,-0.007967477291319965,0.011468902335984006,0.004826201819674071,0.017527616444688258,0.00652278800266728,-0.007624474214335742,-0.009912715412267337,0.019142051531161705,0.09327011818558403 -2036,10,0.0458748558908701,-0.003298601657243332,-0.0067940552943666285,0.012086340396954429,0.005749000714396178,0.021357221435643677,0.007408682533191393,-0.007624474214335742,-0.008784574881789275,0.02078791125656865,0.10124651119322031 -2036,30,0.05323442751914263,-0.0020748730011828217,-0.004742544443171629,0.014524575174812395,0.008275776308055835,0.02937567695287757,0.01183815457857196,-0.007624474214335742,-0.00665513230836801,0.024926599460955764,0.11892329532681789 -2036,33,0.05407962027490139,-0.001964503718383349,-0.004535515453036799,0.014932970868223861,0.008619961644150348,0.030295037363085343,0.012502575931895037,-0.007624474214335742,-0.006440516947271673,0.025427925435606586,0.1209242082467839 -2036,50,0.058462472695112226,-0.0014698642359119174,-0.0035152642795846733,0.017011370916246653,0.01065874160325321,0.03507037693907344,0.016267626623952525,0.002336970330619763,-0.005365969607863874,0.02815123736117442,0.1313186231520881 -2036,67,0.06341454152295739,-0.0010937639704938276,-0.002604635362374499,0.019017267582513504,0.013130716713845799,0.03998885366282666,0.020032677316010016,0.002336970330619763,-0.004360975179850694,0.031092885219655766,0.1418843379949614 -2036,70,0.0644803411707282,-0.001035986570028024,-0.002440817801151272,0.019388568264424016,0.013679656510195308,0.04094651240259854,0.02069709745485311,0.002336970330619763,-0.004179128993964166,0.031695037061208506,0.14395920051874447 -2036,90,0.07459302911907434,-0.0005941576049437563,-0.0012557851360737726,0.022076960791576415,0.019634040971044396,0.049825877229883304,0.02490509814475262,0.002336970330619763,-0.0027485622160801646,0.03791977302663223,0.1634781339800142 -2036,95,0.08089123573824764,-0.00047182169353313216,-0.0008203856746840871,0.0228540332055443,0.023292407926555757,0.054047781848880525,0.026012465852477764,0.002336970330619763,-0.0021860717201115545,0.041646871711541994,0.1732989350092091 -2037,5,0.044550738416612154,-0.004301776745606321,-0.008348901418998458,0.011737349314523108,0.0050018241163266655,0.018063060870320596,0.006583094828014234,-0.007815086069694135,-0.010377399485438275,0.0197327707524095,0.09668445885234517 -2037,10,0.04770055375769735,-0.003442741714817854,-0.007124926117956989,0.01239554459404162,0.005965408865080667,0.021982774765515647,0.0075170554401222086,-0.007815086069694135,-0.00919903640321544,0.02145933396936114,0.10486605221173695 -2037,30,0.05519499361351132,-0.002151811309540995,-0.004981315001830884,0.014959623939771665,0.008618171554768751,0.0302128818592759,0.01218685850066208,-0.007815086069694135,-0.006969308884816772,0.025793254549032033,0.12297769913848003 -2037,33,0.05605488263815641,-0.0020360952277705215,-0.004765865949337289,0.015376027548078687,0.008978875781611273,0.03115820095390221,0.012887329263363057,-0.007815086069694135,-0.0067426949860347266,0.026318807511161377,0.12505891639085367 -2037,50,0.06052439134940505,-0.001519523942909065,-0.0036993139058265167,0.017561680244843975,0.011115797936657575,0.03606952978507341,0.01685666156120195,0.0023953945888852573,-0.005621537199171117,0.029173047670877052,0.13573332776311514 -2037,67,0.06561931506916881,-0.0011276367199743499,-0.0027465482630448564,0.019652373828515132,0.013713428289095867,0.04112452119734531,0.02082599264456086,0.0023953945888852573,-0.0045707756547858445,0.032254990474729794,0.1466111457457858 -2037,70,0.06668306223154068,-0.0010683460454972682,-0.002576328410805813,0.02004309159859216,0.014289127729181778,0.04211047087716773,0.021526465836221805,0.0023953945888852573,-0.004380677669935611,0.03288677214008172,0.1487465753627607 -2037,90,0.07703422459065914,-0.0006123475751755368,-0.0013360791320543707,0.022844212686884195,0.020537889985394176,0.05124890301299503,0.025962779047354678,0.0023953945888852573,-0.0028864664252805424,0.039417283074628356,0.16881868097026673 -2037,95,0.08353634478896856,-0.00048441904042962133,-0.0008774435443904465,0.023669550140353195,0.024370780476996597,0.055574365944520615,0.02713022950886965,0.0023953945888852573,-0.002298360758428491,0.04332925846551158,0.17898278788602515 -2038,5,0.04624742625392973,-0.004501569704810381,-0.008768879438574127,0.012024685113947439,0.005188036582203672,0.01862730200124947,0.00663326621065111,-0.008005697925052528,-0.010876336271249589,0.020348486503842862,0.0999939712938983 -2038,10,0.049432274727523325,-0.0035908133834600324,-0.007486201025564843,0.012703233256127695,0.006206676372936596,0.022659891195700842,0.007616488559887619,-0.008005697925052528,-0.009644598621943817,0.02216108116953532,0.10840221975149797 -2038,30,0.05701673499383032,-0.0022298093768789535,-0.005244226715469545,0.015395838937712744,0.008997168249526706,0.03112130608411602,0.012532601520550152,-0.008005697925052528,-0.007310770116623983,0.026707301701868923,0.126992449937707 -2038,33,0.057884450902789826,-0.0021085803293116653,-0.005018311179318185,0.01582008469676877,0.00937731010521502,0.03208732218794513,0.013270017978857539,-0.008005697925052528,-0.00707123679067833,0.02725589481752814,0.12912744324517775 -2038,50,0.06242847439050675,-0.0015700450904799713,-0.0039009784996030025,0.018093999458162664,0.011627579538625256,0.03715082403252318,0.017448713266732703,0.0024538188471507514,-0.005896130224107289,0.0302529422021088,0.14011764655450343 -2038,67,0.06765837410092354,-0.0011613895638657216,-0.002901928393434528,0.020292088703194534,0.014364733062961571,0.0423592882319448,0.021627408554607864,0.0024538188471507514,-0.004795809659269013,0.03348849461131168,0.1513051839622664 -2038,70,0.06869623742550611,-0.0011003481539903037,-0.002724895674631631,0.020711892671560008,0.014970675098193704,0.04338316122070868,0.022364826227395235,0.0024538188471507514,-0.0045972386498097295,0.034155335462585756,0.15352055031611792 -2038,90,0.079254808216542,-0.0006306657548915649,-0.001422950802125796,0.023618223815423847,0.0215582264987542,0.05278146662219151,0.027035133297128647,0.0024538188471507514,-0.00303501617476373,0.041025546988263814,0.17422664231904575 -2038,95,0.08597595550864934,-0.0004970469095588554,-0.0009388821671121877,0.02449306003911816,0.025593811150927077,0.0572287726788137,0.028264162751774263,0.0024538188471507514,-0.002417927407896901,0.04515587734919281,0.18470152208455154 -2039,5,0.04754628352373838,-0.004706038469919316,-0.009199017034842534,0.012301643447646829,0.005392458310501878,0.01923618305573296,0.006673299114377945,-0.008196309780410922,-0.011387533884782551,0.020977612313834045,0.10299097145205613 -2039,10,0.050829864799976344,-0.0037423414975350745,-0.00785513563266991,0.013009411776575646,0.006462528742433165,0.023365766104530724,0.0077069794635276564,-0.008196309780410922,-0.010097715021566731,0.0228763628196382,0.11166226865862595 -2039,30,0.05868699291795492,-0.002308858314037554,-0.005513660020349421,0.015817411909656902,0.009393634712422069,0.03204628063528865,0.012875382423756196,-0.008196309780410922,-0.00765679835893344,0.02763750726328321,0.13088306294756952 -2039,33,0.05961160852313042,-0.0021820931821633924,-0.0052762569857590525,0.016261286076958245,0.009792353005645274,0.033041838964290554,0.013650643292858472,-0.008196309780410922,-0.007405962683487653,0.028213216769702402,0.13310399114794202 -2039,50,0.06429695740565658,-0.0016208534469262948,-0.004108681381531395,0.018628618727493534,0.012158366767336296,0.03824859523072606,0.018043784169504754,0.0025122431054162456,-0.006178853664737474,0.03135440380811534,0.14446014468898322 -2039,67,0.06968545420765877,-0.0011970504607109094,-0.0030656815148657783,0.020936409509870208,0.015036760379169784,0.04360282464201958,0.022436925046151034,0.0025122431054162456,-0.005029941770551516,0.03474388475948329,0.15605368399654443 -2039,70,0.0707781681060791,-0.0011321807855880408,-0.0028808397968249585,0.02138614562570166,0.0156709997362714,0.044657721622771776,0.023212188344213278,0.0025122431054162456,-0.004821400484503172,0.03544774588901956,0.158340983996165 -2039,90,0.08168636716157197,-0.0006491121883853183,-0.0015167201451693226,0.024398991358499274,0.02260220047748477,0.054305650620382284,0.0281221706099144,0.0025122431054162456,-0.0031897682059233,0.0426743110785096,0.17979601585606741 -2039,95,0.08856461741253734,-0.0005097052606540366,-0.0010066663422803495,0.02532456829520218,0.026838918672781643,0.05889009168892582,0.029414270439111545,0.0025122431054162456,-0.0025423932214401713,0.04701096110471884,0.19063504458625188 -2040,5,0.04893648942112923,-0.00491444020110904,-0.009609378922791846,0.012575569657394868,0.005582538383647687,0.0197902638583497,0.006703194753674727,-0.008386921635769314,-0.011889750814886035,0.021590561957617223,0.10604450779659971 -2040,10,0.05236456793546677,-0.0038947258951365134,-0.008206158422841102,0.01331407611036323,0.006704662656243002,0.02402180251232341,0.007788528758282312,-0.008386921635769314,-0.010542932743140096,0.023574856822719776,0.11499905691829267 -2040,30,0.06049565355852247,-0.0023896365380464205,-0.005772939002318716,0.016232247869804484,0.009767541720519838,0.032914223723123096,0.013215201210280211,-0.008386921635769314,-0.007995390267986287,0.028547656921946444,0.13484063046772388 -2040,33,0.06144225944951176,-0.002256999651168354,-0.005524253333120907,0.01669572944368803,0.01018480431548182,0.03393869492377938,0.014029201561925903,-0.008386921635769314,-0.007733139646500882,0.029151569332016816,0.1371305716855934 -2040,50,0.06630805496647954,-0.001672425710978672,-0.004307188300306188,0.019165543690228767,0.01266049194130494,0.0392813467715768,0.018641871840558134,0.0025706673636817392,-0.006453375052862367,0.032429537497128756,0.14887280767075928 -2040,67,0.07186599541679026,-0.0012313220767708108,-0.0032193118547300757,0.021585338945223655,0.01567240547243026,0.04477882067599091,0.023254542119190362,0.0025706673636817392,-0.005254787124786898,0.03597105444026758,0.16086663268983775 -2040,70,0.07300830201432108,-0.0011638271420260908,-0.003028482421197524,0.02206585820150151,0.01634066195766365,0.045863347566962094,0.024068544899796023,0.0025706673636817392,-0.005037075476887837,0.03670829102336564,0.16321721367501607 -2040,90,0.08428228468596935,-0.0006676868635767574,-0.0016051797955683328,0.025186523772198755,0.023592000679109878,0.05575343480522102,0.029223883698832026,0.0025706673636817392,-0.0033362445429859066,0.04426700157362011,0.1854309654932457 -2040,95,0.09135957379937172,-0.0005223941339819626,-0.0010723429775928042,0.026164072211923763,0.028024085350234672,0.06046590264165308,0.030580552570881492,0.0025706673636817392,-0.002664790312023249,0.0488054953224438,0.19663668575863724 -2041,5,0.05081464932784438,-0.005125453097767627,-0.010021689765595159,0.012847435602479466,0.005769297189203921,0.02031907775672044,0.006722954950261429,-0.008577533491127708,-0.012388354962631307,0.022200392564607742,0.10951716557489082 -2041,10,0.05425221488624812,-0.004051865356979596,-0.008558406627928505,0.013618066406311387,0.00694051354056675,0.02465411784005072,0.007861138873111555,-0.008577533491127708,-0.010982625342610101,0.024270875206806753,0.11865937869175898 -2041,30,0.062458026668429374,-0.002471508413482117,-0.0060309420353360415,0.016647213489972362,0.010141465412695635,0.033764597909560344,0.01355205909460218,-0.008577533491127708,-0.00833157475661687,0.029458475907660146,0.1389506812664672 -2041,33,0.06338733135908842,-0.0023323633921229336,-0.0057709842914241555,0.017153401064365203,0.01057527799779652,0.03481082988858929,0.014405697643979767,-0.008577533491127708,-0.008059111055667477,0.030086759562984552,0.1412797462280856 -2041,50,0.06832705307379365,-0.001723205722782267,-0.004504420496564297,0.01970476870897618,0.013160852640117548,0.04029759347708439,0.01924297870885281,0.0026290916219472334,-0.0067271269846317875,0.03350447877072349,0.15333149753482173 -2041,67,0.07399017196297646,-0.0012662336702829026,-0.0033722787527230447,0.022238871615891883,0.016303705068730197,0.04592808873108031,0.024080259773725857,0.0026290916219472334,-0.005481162206849247,0.037199118999406214,0.16562609614725257 -2041,70,0.07515121644362807,-0.0011963366702551156,-0.003175120599066806,0.02275101749815224,0.01700384709458402,0.047047597853471346,0.024933898323103443,0.0026290916219472334,-0.005253652408389601,0.037967945826464976,0.16801567157317565 -2041,90,0.08667963586002587,-0.0006863897522791242,-0.0016944623344244587,0.025991741579741937,0.024581329652761195,0.05717870310137874,0.030340274992841504,0.0026290916219472334,-0.003481266998186176,0.045857837513494884,0.19082588858721544 -2041,95,0.09396785965710878,-0.0005351135295426335,-0.0011382438750635652,0.027011569092601412,0.029199372486701274,0.06200877250645333,0.0317630018602042,0.0026290916219472334,-0.002781427227099869,0.05059506821937826,0.20232281340052546 -2042,5,0.05253752420246601,-0.0053421598959818885,-0.010457555496564498,0.013117243979582123,0.005968189328582458,0.020877994383217083,0.0067325790968980614,-0.008768145346486102,-0.012912586831572564,0.02282604907871881,0.11283097543086792 -2042,10,0.056011663127690556,-0.0042103213442647724,-0.008930342892466678,0.013931034831593126,0.007191330387406146,0.025309011709351525,0.007924808593535402,-0.008768145346486102,-0.011446682829729334,0.02498634401851408,0.12222178844823811 -2042,30,0.06433921358361841,-0.002554104479982466,-0.006301399509710236,0.01706231440755272,0.010535987808227955,0.03465054425904768,0.013885957291202088,-0.008768145346486102,-0.008685603391266146,0.030393336390329817,0.14300095604302276 -2042,33,0.06526235254257917,-0.002408680472786269,-0.006032871578993709,0.017606320676563165,0.010988951452489746,0.03573055488741313,0.014780129110060096,-0.008768145346486102,-0.008398917900165403,0.031050474043843222,0.14538149931659264 -2042,50,0.0702872721478343,-0.001775280368282559,-0.004713425575935902,0.020246299421127958,0.013693630605728577,0.04135423638558388,0.019847104774388787,0.0026875158802127275,-0.007013178769686282,0.03461457680286274,0.15775717216047078 -2042,67,0.07605182152613998,-0.0013016829484086103,-0.003534217548957435,0.022897018308600876,0.01698360129406221,0.047132826283564334,0.02491408043871748,0.0026875158802127275,-0.005716954166572125,0.03847629264559524,0.1703804823847757 -2042,70,0.07726771115437149,-0.0012286654963920794,-0.0033326050358976453,0.02343028725339929,0.01771105591085368,0.04828466866790733,0.025808253472055474,0.0026875158802127275,-0.005479380711965277,0.039275626571546735,0.17284509723090027 -2042,90,0.08894563388228417,-0.0007052209632127723,-0.0017864602696099818,0.02681636376385436,0.025638749831693397,0.05866949387689139,0.031471346920902796,0.0026875158802127275,-0.003634252665843842,0.04752954907610912,0.19625303436902722 -2042,95,0.09640702571868896,-0.0005478634876028472,-0.0012078942637759418,0.02786706702727962,0.030460660776001566,0.06362315539750218,0.03296163288083948,0.0026875158802127275,-0.0029052075408295217,0.052478448798958494,0.20810644975030962 -2043,5,0.05399792506694794,-0.00556338389868874,-0.010894885877991423,0.013384989395339842,0.006162578524989437,0.021411142819314152,0.006732064764624655,-0.008958757201844495,-0.01344441185631285,0.023449975390547568,0.11590632110915265 -2043,10,0.057570542630553244,-0.004370698704943867,-0.009308221682492518,0.014242973772450656,0.007439998971735802,0.02595029775774546,0.007979535490593883,-0.008958757201844495,-0.01191305973853157,0.025698739795130317,0.1255776868285177 -2043,30,0.06614146833568811,-0.0026370357046138224,-0.006574137000428909,0.01747754216645728,0.010933878534343706,0.035526939134102556,0.014216893371119964,-0.008958757201844495,-0.009041617624352336,0.031334184686364355,0.1469876389964247 -2043,33,0.06709030133485794,-0.002485859611487563,-0.006298594805341016,0.01805538016942953,0.011404638787855135,0.03663327084512797,0.01515249596016689,-0.008958757201844495,-0.008742017743950337,0.03201940413440012,0.1494364459253447 -2043,50,0.07225971785783768,-0.0018279515096798877,-0.004921915896071058,0.020790130189291916,0.014230589763836473,0.04240114939384438,0.020454247608206095,0.0027459401384782216,-0.00730097978093661,0.0357351005244777,0.16218610632556074 -2043,67,0.07818390359058976,-0.0013374816415426649,-0.0036968867291456327,0.023559768236624645,0.017669031019290633,0.04833537534724213,0.025756001685205265,0.0027459401384782216,-0.0059506469265400205,0.0397634552046402,0.17523632754839566 -2043,70,0.07944925738424062,-0.0012622237650358299,-0.003485752839972955,0.024102718212126555,0.01842622749516479,0.04951650551328921,0.026691605488732176,0.0027459401384782216,-0.005705261141166534,0.040593927577487234,0.17775506847022982 -2043,90,0.09145744610130788,-0.0007241803192037917,-0.001877548928389601,0.027648741913328098,0.02671384359554284,0.060149953124351285,0.03261709462509597,0.0027459401384782216,-0.003787940160385221,0.04921343099952784,0.20192611141369116 -2043,95,0.09910716640576721,-0.0005606438873622101,-0.001274479475245932,0.028730560622595384,0.03175408560076549,0.06523336256809195,0.0341764334879875,0.0027459401384782216,-0.003025283275604768,0.05438920739712232,0.21417178667637846 -2044,5,0.05533762274123728,-0.0057899422414297436,-0.011350049763365046,0.01365067724311562,0.006359073131353763,0.02193243591704793,0.006721414382401178,-0.00914936905720289,-0.013995192370147905,0.024075709655786388,0.11886200198040468 -2044,10,0.05903398900330067,-0.004533886746672059,-0.009701022646344764,0.014553883228883981,0.0076919982905833805,0.026593582203903496,0.008025322600486958,-0.00914936905720289,-0.012401329066506806,0.02642382845706824,0.12883025529721992 -2044,30,0.0678967586249113,-0.0027231438094342223,-0.006857494737408669,0.01789290522277432,0.01134282390653651,0.036418680036852134,0.014544864905395843,-0.00914936905720289,-0.009408204238600146,0.032294725859293834,0.1509575257352509 -2044,33,0.06888011795282364,-0.0025645921677785797,-0.006569051076858453,0.018505440131131153,0.011835232669506953,0.03754897695141802,0.015522795765340183,-0.00914936905720289,-0.009096710988997234,0.03300478752419585,0.1534823911037275 -2044,50,0.07422441104650497,-0.0018818475181154668,-0.005136215595441115,0.021355485567022846,0.014787162504796619,0.04346849295268295,0.02106440721030473,0.0028043643967437157,-0.00759706495698354,0.036880260646540416,0.16665229529786646 -2044,67,0.08033195374161005,-0.0013735612540288742,-0.0038637495907227664,0.024227126793326188,0.018383087589634504,0.0495642736921745,0.026606018655269275,0.0028043643967437157,-0.006193098157979057,0.0410820792119969,0.18014246371619574 -2044,70,0.08161938576400281,-0.001295346242969828,-0.003644539986601369,0.024779625260250068,0.019176142311230326,0.05077467635323668,0.027583949515213615,0.0028043643967437157,-0.005937092952459112,0.04194443785200463,0.18274799341198705 -2044,90,0.09405915195345879,-0.000743251504145707,-0.0019712685299279054,0.02848887344800169,0.027835814491801673,0.061669941255768614,0.03377751567646104,0.0028043643967437157,-0.003941982005902842,0.0509628853124425,0.20775426540051511 -2044,95,0.10192961876243353,-0.0005734548093543178,-0.0013446428442612471,0.029602047181867215,0.03311320657507473,0.06687880867006406,0.035407401252688264,0.0028043643967437157,-0.0031483906123171267,0.056370436634160484,0.22038480529619342 -2045,5,0.05653707762360573,-0.006019013243157397,-0.011811165075619207,0.013914302129546462,0.006583777420842795,0.022521745519115982,0.0067006267357476446,-0.009339980912561283,-0.014552364680154401,0.024734103165427866,0.12178835810863436 -2045,10,0.06038310354575515,-0.0047020446876012536,-0.010099402007394181,0.014863760620731635,0.00797147188039881,0.027299593938302977,0.008062168708734644,-0.009339980912561283,-0.012895375902210104,0.02717578728519123,0.1320960815337892 -2045,30,0.06961270152032376,-0.002808809510478712,-0.007151503312111504,0.018308397939111654,0.011781959082655662,0.03734834776538655,0.014869877966429645,-0.009339980912561283,-0.00978346893329987,0.033282594774976186,0.15495271728552398 -2045,33,0.07066604219153523,-0.002644428177474855,-0.006847649808060272,0.01895650056166803,0.012295275507832907,0.038504479943155555,0.015891034597979893,-0.009339980912561283,-0.009461146131130384,0.03402157488922479,0.15757616566845806 -2045,50,0.07619026566743851,-0.001935134893911297,-0.005364141595271308,0.021927961472048573,0.015371574712510414,0.04456923632402897,0.021677586009644662,0.00286278865500921,-0.007903924100155373,0.038051540452745815,0.17116565244021478 -2045,67,0.08253691266551615,-0.0014089583664779887,-0.004040684143037597,0.024896322097211127,0.019123690577563697,0.050816978881157014,0.027464138635789417,0.00286278865500921,-0.006447220576173971,0.042432107820677877,0.18512640910305034 -2045,70,0.08383080836094915,-0.0013287797582177295,-0.0038124516573418196,0.025461002760377643,0.01995235463777091,0.05205360672096915,0.028485297696299632,0.00286278865500921,-0.006180923791249307,0.0433281580394462,0.18782512830456913 -2045,90,0.09667454355955123,-0.000762312735135202,-0.0020734129198079726,0.029336755787713668,0.028992133467033186,0.06320516341740308,0.03495262221979788,0.00286278865500921,-0.004107291224012532,0.0527341089068443,0.21367781704663738 -2045,95,0.10489990575760604,-0.0005862962938459682,-0.0014204001629305944,0.030481526705095116,0.03450203788598151,0.06852817468840178,0.03665455074870161,0.00286278865500921,-0.0032801731886176965,0.058377505696266,0.22672318485193038 -2046,5,0.058084699304401875,-0.006257264827999108,-0.012278826613854052,0.01417586944799536,0.006793282846954621,0.023062336576684585,0.006669703039144042,-0.009530592767919677,-0.015116281527937916,0.02537344625661617,0.12496738102056874 -2046,10,0.06202782032713294,-0.004872912345203693,-0.010500008490806975,0.015172611108316546,0.008239981017543632,0.02795959001629003,0.00809007381533694,-0.009530592767919677,-0.01339323884806263,0.027914318197484266,0.1355803574955041 -2046,30,0.07152611827477813,-0.0028962830191704542,-0.00744209630875054,0.01872402595286147,0.01221122401966048,0.038256991350892604,0.015191930125261401,-0.009530592767919677,-0.010159576332908274,0.034264171241260494,0.15911256622134456 -2046,33,0.07260788416564465,-0.0027248115630949202,-0.007127036998637746,0.019408561461040166,0.01274423247979458,0.0394269096693967,0.016257208814646068,-0.009530592767919677,-0.00982475178586194,0.035029466238408434,0.16180197773089522 -2046,50,0.07828824955224992,-0.001990055093177608,-0.005588368068354022,0.022503696121003558,0.015950248100787632,0.045655238818795206,0.022293784006225895,0.002921212913274704,-0.008210756977126359,0.03921884967814562,0.17580004153914913 -2046,67,0.08481820131763816,-0.0014449032778393572,-0.004213583869955945,0.025560840976004338,0.01986419023708835,0.052045337204769206,0.02833036162676569,0.002921212913274704,-0.006696916654583347,0.04378041584772903,0.19020651440901656 -2046,70,0.08613891433924437,-0.001362108674283131,-0.003977699695347769,0.026146850712509283,0.02072736223557136,0.05331297691983035,0.029395640316150357,0.002921212913274704,-0.006419364168542399,0.04471687365177455,0.19297935601412167 -2046,90,0.09933981197699904,-0.0007813967812923398,-0.0021691841103806987,0.030192396672948426,0.030154437167112275,0.064729988122489,0.036142404539266586,0.002921212913274704,-0.004268051386934321,0.05451693191809866,0.2196255973315051 -2046,95,0.10778309952244162,-0.000599168220036768,-0.0014918363633906677,0.03136900188896057,0.03589898945425155,0.07018378069912404,0.03791786740226771,0.002921212913274704,-0.0034065705169563747,0.060398513183098926,0.23308454597759093 -2047,5,0.05984540938809514,-0.006498356559974126,-0.01273740917587153,0.01443537650178082,0.006989427739056134,0.02356003174527934,0.006628642685350377,-0.00972120462327807,-0.015675198090059517,0.026003589396975415,0.12830934678440004 -2047,10,0.06388519857153296,-0.005046748578374805,-0.010896744538558326,0.015480429531315787,0.008493683913433555,0.028576641863285873,0.00810903852753384,-0.00972120462327807,-0.013886799700367398,0.028639292828573446,0.1391948567261793 -2047,30,0.07352774063050747,-0.0029838172016858886,-0.0077282901571792085,0.019139780807935488,0.01262403572322752,0.03912482828505715,0.015511018952931143,-0.00972120462327807,-0.010534121275724475,0.03523527821014673,0.16333048154035315 -2047,33,0.07462532143890858,-0.002806071050898817,-0.007402329329368487,0.019861622829247555,0.013179315169063753,0.040318560255571255,0.01662131598637874,-0.00972120462327807,-0.01018602769987924,0.036029540100861956,0.166090982874124 -2047,50,0.08043042364865542,-0.002045229099503657,-0.005806047778624813,0.023082689513887797,0.016513892573229216,0.046701394463385476,0.022912998771088457,0.002979637171540198,-0.008511478970730634,0.04037860196343758,0.1804690892299361 -2047,67,0.08708258180320264,-0.001481091372554133,-0.004381810427447917,0.026229489244574314,0.020586998789383398,0.05324425338479911,0.029204680341318186,0.002979637171540198,-0.006941758210981969,0.045119098106542924,0.19525612258169955 -2047,70,0.08847108736485243,-0.0013955634384183486,-0.004137100521748058,0.02683822640599686,0.021489747979051965,0.05453761426996733,0.03031497980372575,0.002979637171540198,-0.0066558281984703165,0.046095596603905865,0.19810635647599228 -2047,90,0.10202166787907481,-0.0008005089095142748,-0.002260326780920293,0.031055790943383035,0.031299123462005404,0.06621567026209621,0.037346860205907204,0.002979637171540198,-0.004423990728950143,0.05629408920193191,0.22549777797513845 -2047,95,0.11057964228093624,-0.0006120706684603125,-0.0015632986088104672,0.032264475430145094,0.03728153665590412,0.07179531873731812,0.03919735607130652,0.002979637171540198,-0.003533491364024681,0.06241598091804433,0.2393249766363364 -2048,5,0.06147176295891404,-0.006744875478107524,-0.013211239822810378,0.01469282329090284,0.00721138590245488,0.024135520692935616,0.006577446281606641,-0.009911816478636464,-0.01624909229284413,0.026658656110728533,0.13161973815050865 -2048,10,0.06563421618193388,-0.005222554408296475,-0.011304843156190897,0.01577742306818045,0.008770437854945384,0.029254340374114098,0.008119062238085352,-0.009911816478636464,-0.014394639473223904,0.02939309444850356,0.14282244637101918 -2048,30,0.07557344252765179,-0.0030733330037307585,-0.008025995586191704,0.019555670960421986,0.013066495685243736,0.04003230986489975,0.01582714687839884,-0.009911816478636464,-0.01091878989801488,0.036237409405264105,0.1676332070993174 -2048,33,0.07669654277563095,-0.0028888751213028935,-0.007691838419215248,0.0203156873629717,0.013645685037283396,0.04125120020946457,0.016983359756617862,-0.009911816478636464,-0.010560514846708537,0.037059193117571054,0.17047872794373967 -2048,50,0.08267068718969822,-0.0021002654148105484,-0.006035893273497727,0.023664941650701293,0.01711395541528696,0.04778414936273176,0.023535230304232345,0.0030380614298056922,-0.008822725480726084,0.04157498581658023,0.18529385845441435 -2048,67,0.08952986916303635,-0.001517940787408147,-0.004562129862715331,0.026902266902921062,0.0213505559867765,0.05447494799195491,0.030087102066326817,0.0030380614298056922,-0.007199379352891001,0.04649610316090704,0.20051529793805645 -2048,70,0.09092739259526134,-0.0014300860171295527,-0.00430648523560925,0.027545080559898315,0.022283204117874093,0.05580218258495507,0.03124331615902582,0.0030380614298056922,-0.006901799234558704,0.04751512307697288,0.20346063408108384 -2048,90,0.10488231748715042,-0.0008196256764713182,-0.0023624450042797943,0.031926941179178964,0.032496313458624144,0.06772570632062772,0.038565996506599635,0.0030380614298056922,-0.004587610029128142,0.05812229238836619,0.23167949334451146 -2048,95,0.11371105413138867,-0.000625003639116602,-0.0016419020197780134,0.03316794463196718,0.03871073879309192,0.07343037934608392,0.04049301675581802,0.0030380614298056922,-0.003670136389859961,0.06448380534233003,0.24591203678650186 -2049,5,0.06322542966976762,-0.0069913984789243145,-0.013701212462201066,0.014948209815361421,0.0074484296587983435,0.024722437483427,0.006516110791712873,-0.010102428333994856,-0.016847608999555966,0.0273268629787513,0.13508950063404374 -2049,10,0.06749338287636637,-0.005400639077636495,-0.011726324902315422,0.016059272946643464,0.009065159717935223,0.029958083534934586,0.00812014433975148,-0.010102428333994856,-0.014922195307805463,0.030163602490474176,0.1465743961540365 -2049,30,0.07767068874165416,-0.0031634134329037687,-0.00833680750454826,0.01997169359162487,0.013534011544631724,0.04097234951663217,0.016140315116144475,-0.010102428333994856,-0.01131900488488983,0.03726674256162037,0.1720306351088927 -2049,33,0.07881320086494088,-0.0029721556251968454,-0.007990229743772217,0.020770749668849606,0.014134873701191741,0.04222267867443634,0.017343340125363434,-0.010102428333994856,-0.010946973973861985,0.03811762293840911,0.17497261197661335 -2049,50,0.0849427067399025,-0.002155582620004215,-0.006276522894072175,0.02425044995128258,0.017741433985911603,0.048899685801347625,0.024160483463577503,0.003096485688071186,-0.00914716621423969,0.04280705251564272,0.19019103950873295 -2049,67,0.09195815492272376,-0.0015550007611571603,-0.004747972780841638,0.027579176769740667,0.022149973789441234,0.05575068022409895,0.030977626801791575,0.003096485688071186,-0.007465502438788925,0.047916414178640676,0.20583682604000153 -2049,70,0.09342939686655988,-0.0014639725591226026,-0.004485092984719751,0.028256869640938632,0.02311714113176598,0.05709648738223457,0.0321806542399705,0.003096485688071186,-0.00715638110906685,0.04897636402174303,0.20886842301911598 -2049,90,0.1077174276024103,-0.0008388116942672464,-0.0024694143958340097,0.03280584480017474,0.033751323727906096,0.06927938306481303,0.03979981344134389,0.003096485688071186,-0.004763589841481023,0.0600021966739816,0.2379179032992476 -2049,95,0.1167666249834001,-0.0006379671722724342,-0.0017248315717942103,0.03407940949442682,0.04020809211861622,0.07511123020746131,0.04180485431372216,0.003096485688071186,-0.003811050279149585,0.06662551943282335,0.2525376624841059 -2050,5,0.06508800672888757,-0.007246508255273989,-0.014209932317274071,0.015201536075156563,0.007695152841786885,0.02532146727532172,0.0064446416808290035,-0.01029304018935325,-0.017455973100036166,0.028014107130719994,0.13869195278364857 -2050,10,0.06939745522737503,-0.005584589928813392,-0.012162288002827882,0.01633919765567472,0.00937411041101438,0.03067574542041326,0.00811228847597218,-0.01029304018935325,-0.015459812714031892,0.030958012159312556,0.15034549035801453 -2050,30,0.07962197179719806,-0.003255023098706583,-0.008654761371589638,0.020387843064151957,0.01401899183512457,0.04193173865255405,0.016450520022728097,-0.01029304018935325,-0.011727001528025851,0.0383186087056644,0.17634053929830065 -2050,33,0.08078629760742187,-0.0030570670731952364,-0.008295602487326779,0.02122680974688127,0.014647022080034468,0.04321287850106584,0.017701254663655488,-0.01029304018935325,-0.011344297209495055,0.039203701283445164,0.1793433350747478 -2050,50,0.08697690984606743,-0.002212790746887597,-0.006525726607954545,0.024839216995793122,0.018392842678912263,0.05003669903765816,0.024788753391203993,0.00315490994633668,-0.009479254674476613,0.04406843260084464,0.1948935503271046 -2050,67,0.09404633263498545,-0.0015913548147487393,-0.004942454925825509,0.02826021320764095,0.022984965894800174,0.05703508989562852,0.03187624726083256,0.00315490994633668,-0.007741236860872034,0.04937474993126036,0.21088120119750844 -2050,70,0.09556707101464272,-0.0014981150991255701,-0.004668941115011149,0.02897359095243632,0.023986331383495225,0.05841482395970224,0.033126984330719915,0.00315490994633668,-0.007421133463094248,0.05047208065844662,0.21400492027069556 -2050,90,0.10998283236846328,-0.0008576079777804687,-0.0025814390548014685,0.033692499226208907,0.035049279528536044,0.07085409077270631,0.041048306152220014,0.00315490994633668,-0.004941148881769347,0.06193605305241779,0.2437084159702264 -2050,95,0.11919387323632837,-0.0006509611873942135,-0.0018087623208730384,0.03499886462416103,0.04176511248650369,0.0768062868729056,0.04313286388709899,0.00315490994633668,-0.003953649275443579,0.06882472224161763,0.25866058979948514 -2051,5,0.06667637557387351,-0.007505872158686885,-0.014716489019775918,0.01545280476696976,0.007952779677075085,0.02594340757198918,0.006363033483795103,-0.010483652044711644,-0.01806261817328669,0.028705143383292338,0.14202056506222793 -2051,10,0.07105144992470741,-0.005769017993123492,-0.01259956368820122,0.0166172000139703,0.009691796737499677,0.03140405123125135,0.008095489181587524,-0.010483652044711644,-0.015997613513621216,0.03175474225304707,0.15397252102823675 -2051,30,0.0814231775470078,-0.003347854998582478,-0.008977087354586116,0.02080413065278762,0.014510430607507582,0.04289622532868323,0.016757764027109674,-0.010483652044711644,-0.012135896744541335,0.03938302629082441,0.18051310535892304 -2051,33,0.08258181807249784,-0.0031429685300476255,-0.008604051262816633,0.021683875687111186,0.015166137509189269,0.0441967038488551,0.018057105800453988,-0.010483652044711644,-0.011742359259265879,0.040296817083116464,0.1835792306541595 -2051,50,0.08889338909760118,-0.002269905591530026,-0.006772210988142559,0.025431242784232918,0.01904774807753903,0.051167306236782145,0.025420037658151838,0.003213334204602174,-0.009816400086941663,0.04533655640862804,0.19949532027973726 -2051,67,0.09606045507788658,-0.001628299215596629,-0.00513865540747906,0.028945384672710184,0.02382183676712466,0.05831799591212262,0.032782973159289644,0.003213334204602174,-0.008019550537992724,0.05083721641626407,0.21587009126026235 -2051,70,0.09762394569814205,-0.0015327844404759608,-0.004855245917176603,0.029695252584435873,0.024860438897180183,0.05972426901858332,0.03408231614711394,0.003213334204602174,-0.007686519218863713,0.05197888841265031,0.21904966451428023 -2051,90,0.11233866478949786,-0.0008768028623252757,-0.0026956448649397588,0.034586917358088776,0.036359884128914124,0.07242070121603993,0.04231147706818799,0.003213334204602174,-0.005126115093206235,0.06387796500821728,0.2494659136194783 -2051,95,0.12160471889823675,-0.0006639856844819397,-0.0018978886225354478,0.03592632620125879,0.043324428617952694,0.07849492552822918,0.04447704547594853,0.003213334204602174,-0.004102833598008675,0.07103031449752197,0.26477288555809847 -2052,5,0.06805704353451729,-0.007773696875252081,-0.01521473482898209,0.015691255528606538,0.008225815612244195,0.026591863930840582,0.006271288022331147,-0.010674263900070037,-0.0186718905694117,0.02941762123260936,0.14520259135319094 -2052,10,0.07255284748673439,-0.005955666518854517,-0.013038266785682593,0.01689327720283412,0.010025120348213866,0.032154306169404116,0.0080697470638375,-0.010674263900070037,-0.016541007150544757,0.032569978933248644,0.15745394336439408 -2052,30,0.08323643582314254,-0.0034412638974422806,-0.009301594052992442,0.02122195032682431,0.01501093001824579,0.043881963194236616,0.017062044700329234,-0.010674263900070037,-0.012554186050215426,0.040463624729972635,0.1847065471925132 -2052,33,0.08444483777135611,-0.0032291880319387785,-0.008916588405279017,0.02214193939949486,0.0156987300265779,0.04520462107214642,0.01841088989231899,-0.010674263900070037,-0.012151909265823808,0.041409862152377463,0.18786275119649679 -2052,50,0.0909260289348662,-0.0023268772014213438,-0.007026180632773848,0.026026524736440508,0.019724998051833063,0.05231177586816481,0.026054341122340986,0.0032717584628676683,-0.010157114334526296,0.046626142628253736,0.20420567569660458 -2052,67,0.09829422000050544,-0.0016669144103839185,-0.005343003669028461,0.029634685527556184,0.02467460294014563,0.05959854241825144,0.03369779235236298,0.0032717584628676683,-0.008300930496991859,0.052327333854838044,0.2210590604125335 -2052,70,0.09989167917072773,-0.0015672189279730168,-0.005049271507437014,0.030427715138965757,0.02575004148518854,0.0610329984321209,0.035046637544352735,0.0032717584628676683,-0.007961860753475157,0.05350227879094354,0.22431216520178915 -2052,90,0.11495800845623017,-0.0008956770943057115,-0.0028144806045640853,0.0354817917399438,0.03767537831464224,0.07399498600216124,0.0435893189023679,0.0032717584628676683,-0.005315318938559046,0.06583251192520595,0.2555878865892593 -2052,95,0.12455870861560106,-0.0006770407038024109,-0.0019933953160133386,0.036861775348949626,0.044905306058449584,0.08018384931990827,0.04583739908027076,0.0032717584628676683,-0.004257677220920345,0.07324310381816061,0.27131801944394995 -2053,5,0.06927832736447453,-0.008036173619396835,-0.015742001999014953,0.01592585278576052,0.008487965610880102,0.027210595970782136,0.006169406510917121,-0.010864875755428431,-0.019312158888472764,0.03012188851067811,0.14820050889854702 -2053,10,0.07394455152899027,-0.0061473506022549085,-0.013495181583704993,0.01716742922226618,0.010354498487459627,0.03289360885625086,0.008035066980642049,-0.010864875755428431,-0.017104154030037358,0.033386923579310286,0.16083039054674 -2053,30,0.08506380846500397,-0.0035364107038493016,-0.00963671782909646,0.02165073886488037,0.015528853571696376,0.044858258566546544,0.01736336690030672,-0.010864875755428431,-0.012982839987999206,0.041558207208387085,0.18895189177747349 -2053,33,0.08631045661121607,-0.0033177568108864307,-0.009237934642386062,0.02260100358071379,0.0162431988953718,0.046214641102771147,0.018762611797170422,-0.010864875755428431,-0.012567588568086575,0.04253804984610157,0.19219929620207427 -2053,50,0.09302895430102945,-0.002384228752735936,-0.007285835184221661,0.026603392100054173,0.020423573493827295,0.053477319432742317,0.026691666212731398,0.0033301827211331624,-0.010507917804942313,0.04793723459618522,0.20905853675093225 -2053,67,0.10068034517392516,-0.0017046489094863,-0.0055470926012964345,0.030328112953482863,0.025561358448278167,0.06090865081485326,0.03462072184277236,0.0033301827211331624,-0.00859130339142124,0.05385177233356185,0.22643914110736776 -2053,70,0.10230611977949738,-0.0016020231516764706,-0.005244027235019274,0.031171085458409784,0.026679600387770105,0.06237361839040133,0.03601996795411604,0.0033301827211331624,-0.00823950683693405,0.05506337264733065,0.22981581052067107 -2053,90,0.11792924599051476,-0.0009136375357365784,-0.002933020025272543,0.03637982443186864,0.0390552228653272,0.07558952578614742,0.04488185594435944,0.0033301827211331624,-0.005501675084354772,0.06785959149981029,0.2621102137293129 -2053,95,0.12781117681860923,-0.0006901262856224249,-0.002083919754843575,0.03780522285395952,0.04656627081407383,0.08191324800303076,0.047213929557985625,0.0033301827211331624,-0.0044069644486502075,0.0755532079187352,0.27835668347036485 -2054,5,0.07060719941012562,-0.008303506886669134,-0.016269560874944057,0.016157955496871882,0.00874741371506197,0.027810552024458386,0.006057390164033009,-0.011055487610786825,-0.019952606912822364,0.030819422412900296,0.15127539862646883 -2054,10,0.07540030639618636,-0.006339130166775704,-0.013949412767060142,0.017439656072266472,0.01068033457630599,0.03360969006108825,0.0079914465030412,-0.011055487610786825,-0.017668139965558483,0.0341999668949148,0.16422919318836898 -2054,30,0.08683568906038999,-0.003631346474779249,-0.009971892990090018,0.022080093706050727,0.0160422159510438,0.04581817524327569,0.017661726983602175,-0.011055487610786825,-0.013413098153959007,0.04264717687869976,0.19310399856343927 -2054,33,0.08814094190001488,-0.003406204184632308,-0.009559140245574383,0.023061068230767978,0.016779082729077372,0.04720869204300322,0.019112270300528304,-0.011055487610786825,-0.012985627335295903,0.04365944844170823,0.19644820569988264 -2054,50,0.09500173529535533,-0.0024436045402095145,-0.007544166792446576,0.027180573680394726,0.021113763884465255,0.054621680319801844,0.02733200564244317,0.0033886069793986565,-0.010854470738226141,0.04924388362459748,0.21378648916521747 -2054,67,0.1028980590350926,-0.0017430374136426755,-0.00574968603821354,0.0310256725878824,0.026440380373791653,0.062201489800119275,0.03555174462779799,0.0033886069793986565,-0.008875251990582523,0.05537303360233633,0.23163173603092002 -2054,70,0.10450738969594241,-0.0016366234012586186,-0.0054377529397782705,0.03191980445256905,0.027606955983258817,0.06369518642324377,0.03700228794472412,0.0033886069793986565,-0.0085157966031203,0.05662412689765818,0.23511498369494804 -2054,90,0.1205188611254096,-0.000931909714662781,-0.003050415733318238,0.03728519749082736,0.04043698233184701,0.07717645757198226,0.046189059046642986,0.0033886069793986565,-0.005686696305282463,0.06989454462805031,0.26831255650612623 -2054,95,0.13071308867931367,-0.0007032423091415881,-0.0021742641340519006,0.03875666062624398,0.0482281916546754,0.0836227650387997,0.04860662233533332,0.0033886069793986565,-0.004557979808668175,0.07786745856321778,0.28503521819966327 -2055,5,0.07215627439841628,-0.008578608520985083,-0.016809288000436556,0.016387560843244532,0.008997544096268371,0.028388244380281268,0.005935234123758872,-0.011246099466145219,-0.020602570375043684,0.031513808059787825,0.15447072665242753 -2055,10,0.07702709305956959,-0.006536866638078943,-0.01441855749819023,0.017709957752835005,0.011001860269186531,0.03429375121250994,0.007938882594834993,-0.011246099466145219,-0.018250324407059905,0.03501286502583867,0.16773010256156218 -2055,30,0.08864995454326272,-0.0037277714722905907,-0.01031180797817683,0.022510012153653884,0.01656043680676915,0.046779744859635694,0.0179571249502156,-0.011246099466145219,-0.013849591082940474,0.043753203708924826,0.1973236021412509 -2055,33,0.0899651599764824,-0.003496730473129143,-0.009887123819415774,0.023522136046338918,0.017325190075781045,0.048202505121188836,0.019459861758952684,-0.011246099466145219,-0.013409836477020869,0.04479625448977431,0.20073192603572312 -2055,50,0.09696703367233277,-0.0025033203800335444,-0.007806156703753613,0.027760176520679473,0.02182305660614091,0.05577215431080332,0.02797536669835621,0.0034470312376641507,-0.011209877141429125,0.05056875050149231,0.2184792209671076 -2055,67,0.10498623218610884,-0.0017820191644980063,-0.005954317182724263,0.03172736724945089,0.027347474709185405,0.06351112883302058,0.03649087042327975,0.0034470312376641507,-0.009161978562769346,0.056921537367891226,0.2367870269295126 -2055,70,0.10665693963170052,-0.0016711810437553137,-0.00562972539046047,0.032673874701605016,0.028554306474859226,0.06503152745860025,0.03799360966097681,0.0034470312376641507,-0.00879165648824827,0.05821831108454404,0.2403523220719012 -2055,90,0.1229873952820897,-0.0009507284912092634,-0.003164648384231914,0.038197919006864436,0.04188213103911868,0.07877839363208969,0.04751093792505841,0.0034470312376641507,-0.005868786853362474,0.07198384114750342,0.27438789239505795 -2055,95,0.13330774249881505,-0.0007163889354270917,-0.0022599079709875107,0.039716102149210494,0.049961187621290114,0.08537261780113203,0.05001550170191352,0.0034470312376641507,-0.004706094342856251,0.08025607218449482,0.2915056078485376 -2056,5,0.07202417522668839,-0.008857489380214544,-0.017347903071893288,0.01661467164357456,0.00930248190434514,0.02908918075469628,0.005802943855254643,-0.011436711321503612,-0.021259770612479197,0.0322628662649834,0.15622316363008054 -2056,10,0.07716247605085373,-0.006735749259917734,-0.014889672497682156,0.017982877190710643,0.011389256265124895,0.03509382526145701,0.007877380113943367,-0.011436711321503612,-0.018826555386670857,0.03587848629617853,0.16991029048430015 -2056,30,0.08935743178278208,-0.0038259729069980097,-0.010658269329347457,0.022947876077384553,0.017125534032165424,0.04779781600922932,0.018249563229106962,-0.011436711321503612,-0.01429176220923132,0.044899807177844364,0.2004371167852461 -2056,33,0.09075620987713337,-0.0035873065192096277,-0.010222324726453135,0.02397846163224311,0.017915228542222418,0.049242633162073404,0.0198053910303635,-0.011436711321503612,-0.013841434795558978,0.045972403526029645,0.2039553290311903 -2056,50,0.09803277886658907,-0.0025622657053215978,-0.008081378200065038,0.028342192164820132,0.022567363614505405,0.0569509650490351,0.028621744522550584,0.0035054554959296443,-0.011575449721698272,0.051937037280232135,0.22229198556715102 -2056,67,0.1062904159538448,-0.001820324858077306,-0.006176350413919799,0.03243468083306849,0.02827920128523542,0.06483368256356317,0.03743810165817762,0.0035054554959296443,-0.009469416915185979,0.05850094608920885,0.2411621666848329 -2056,70,0.10804786194562913,-0.001707743916636847,-0.005839716847518544,0.03343329104519476,0.029529755830451025,0.06638343449915998,0.038993930673914136,0.0035054554959296443,-0.009087785327792832,0.059835505769907815,0.24485301227287784 -2056,90,0.12488977857679129,-0.0009697252389487352,-0.0032990114813076744,0.03911797010320941,0.043300878363422945,0.08037528751010345,0.04884750715336552,0.0035054554959296443,-0.006074824181075291,0.07407067190482121,0.27991708860054737 -2056,95,0.1353704988002777,-0.0007295660034117446,-0.002362779424401532,0.04068353124277008,0.05165974310260896,0.08709118698464936,0.05144054822604648,0.0035054554959296443,-0.004869470884406019,0.0826197226694346,0.2975513222610728 -2057,5,0.0734562409043312,-0.009138633706525597,-0.01787775533857751,0.016839285079165874,0.009572053658615916,0.029682434106142953,0.005660515715080366,-0.011627323176862006,-0.02190746904036081,0.03296918022643189,0.15935939629870127 -2057,10,0.07869652366638184,-0.006936925576359534,-0.015353762555717434,0.018261813834679452,0.011727498905231325,0.035801389929477706,0.007806936024166358,-0.011627323176862006,-0.019398005891858944,0.036704018342250386,0.173415073602695 -2057,30,0.09125163860023022,-0.003925635342249816,-0.010999830966560568,0.023390933663528627,0.017647925970041053,0.048750554888981674,0.018539039391316296,-0.011627323176862006,-0.014730437390684492,0.046007230090965315,0.2047056541542215 -2057,33,0.09270222418010235,-0.0036794831257130835,-0.010549234409514517,0.024429010471893522,0.01846388669856873,0.05021389418138993,0.020148853256840807,-0.011627323176862006,-0.014264451983549944,0.04711479300321119,0.20831821660798722 -2057,50,0.1001320402674377,-0.00262306206673973,-0.008340461649413121,0.0289266234315128,0.023276270877820734,0.05807148063854309,0.029271139115026282,0.0035638797541951385,-0.011930170073667755,0.053266220009531906,0.22712819992172423 -2057,67,0.1085824783205986,-0.0018589800761695105,-0.0063828543299421165,0.033168809014147836,0.029177570371374254,0.06610349897633289,0.03839342618769174,0.0035638797541951385,-0.009764377742951674,0.06004437920370674,0.24650664452502397 -2057,70,0.11041121373474598,-0.001742506090479897,-0.0060346965201486386,0.03419805606349974,0.030472336870754024,0.06768194293483142,0.040003241267696235,0.0035638797541951385,-0.009371728493741436,0.061424934926466314,0.250301454151476 -2057,90,0.12765314931795,-0.0009887084570441406,-0.003420548534953221,0.04004536695995125,0.04469879511956676,0.0819310811717681,0.050198742441964636,0.0035638797541951385,-0.006262658470431402,0.07613681484348951,0.2862788127456273 -2057,95,0.13842278281599282,-0.0007427735936291424,-0.002450259054510038,0.04165896139033022,0.05333740412504888,0.08876596751337058,0.05288176190773221,0.0035638797541951385,-0.005023098190829576,0.0849806069009145,0.3043398420971689 -2058,5,0.07642459103018046,-0.009427895408328973,-0.01843376827389171,0.017061401150018474,0.009800188865248428,0.03018229838376404,0.005507949703236041,-0.0118179350322204,-0.02257829031661439,0.03364500289720224,0.16394227183892296 -2058,10,0.08176671667695046,-0.007143176783671192,-0.01583079650578666,0.018539237640328644,0.012027274752308765,0.03643016865030482,0.007727550325503968,-0.0118179350322204,-0.019987779229443753,0.03750200305418425,0.17833456641931522 -2058,30,0.09446296527162194,-0.004025511078107178,-0.011343316735798905,0.02383495106973738,0.01816071763404009,0.04966833701744468,0.01882555100788363,-0.0118179350322204,-0.01517377096985027,0.047108490343087325,0.21033689491096283 -2058,33,0.09594076393395662,-0.003774557028665366,-0.010879024409215251,0.024895258102795047,0.01900058989473425,0.05116330915319471,0.02049025208182457,-0.0118179350322204,-0.014694460160689558,0.04825374750384283,0.21401416476825175 -2058,50,0.10353368099033833,-0.002683380695027093,-0.008600923099887164,0.02951347595814966,0.023976395637119802,0.05919179573402211,0.02992354804682334,0.0036223040124606326,-0.012285723457277794,0.05460121421102128,0.23327283661779633 -2058,67,0.11221014107763766,-0.0018977898262734886,-0.006582249625318388,0.033907870463946686,0.03009383323665476,0.06738666274313423,0.03935684886974205,0.0036223040124606326,-0.010051402738157843,0.061609734832225774,0.25314490480574164 -2058,70,0.1139918273538351,-0.0017780324125127468,-0.006223955575791334,0.03496817749700435,0.03143340927432194,0.0689846334267792,0.04102155358712294,0.0036223040124606326,-0.009649057033727166,0.06303942746507127,0.2570256106949236 -2058,90,0.13159359403550625,-0.0010071441459254579,-0.003528789021821008,0.04098010148704547,0.04617569604178154,0.0835262004665598,0.0515646486487757,0.0036223040124606326,-0.0064434845506189395,0.07828229901796126,0.2939437621993089 -2058,95,0.14263985023945572,-0.0007560117866128807,-0.002527936727660689,0.042642389895209416,0.05512636979596029,0.09049443233721104,0.05433915246281056,0.0036223040124606326,-0.005164486577050282,0.08742668620702745,0.312456980472853 -2059,5,0.07788465328887105,-0.009721108744903832,-0.01902329937406302,0.017281025493524546,0.01003003162579005,0.03066283520214082,0.005345248248681639,-0.012008546887578792,-0.023289618897486604,0.03433408442255447,0.16700233592403627 -2059,10,0.0833919216670096,-0.00735112790200677,-0.01633481161619224,0.018821008441730597,0.012327142082933354,0.03706171175682811,0.0076392242324361806,-0.012008546887578792,-0.020610504984495834,0.038310143857181976,0.18181670708371828 -2059,30,0.0965175077944994,-0.0041276212346820955,-0.011700274469884978,0.02427992055552641,0.018690876106463625,0.050603093052768486,0.019109106580168858,-0.012008546887578792,-0.015637852279745276,0.04823119686021113,0.2147573307614723 -2059,33,0.0980136338621378,-0.0038675164819661177,-0.011221939917675897,0.025371705558447036,0.01956729496055392,0.05213020474216889,0.02082958750531478,-0.012008546887578792,-0.015139978847122135,0.049422729265424174,0.21855551029171658 -2059,50,0.10583550186678767,-0.0027436472628284986,-0.008871572794219181,0.030102741288642435,0.024721419748386844,0.060337981469014465,0.030578983462741606,0.003680728270726127,-0.012652431164192497,0.05597819167294267,0.23839149774137244 -2059,67,0.11474523391976965,-0.001937301757793635,-0.006787009240516407,0.03465185744198065,0.031064435072174226,0.06871498105046023,0.0403283818491284,0.003680728270726127,-0.010345747365681644,0.06323455121558519,0.2588394212305194 -2059,70,0.11661134414672852,-0.0018140002357034057,-0.006418533441482783,0.035743642444901275,0.03245134288661976,0.07034772190286973,0.04204886763219426,0.003680728270726127,-0.00992957271684721,0.06471986750291027,0.2628408701754553 -2059,90,0.13472068620920183,-0.00102501171341794,-0.003636012166146262,0.041922173684492074,0.04775602786286878,0.08517882514475657,0.05294525977923825,0.003680728270726127,-0.0066251953138180475,0.08053791072265847,0.30086948017278026 -2059,95,0.14608964574337005,-0.0007692804212957684,-0.002604566896605852,0.04363380866736319,0.05708167509246521,0.09230562527970468,0.055812724749201494,0.003680728270726127,-0.005308782478732153,0.09003433917680927,0.3199731060326997 -2060,5,0.0795045043900609,-0.01001804289149866,-0.01960937639243002,0.017498152472291903,0.010299369033837373,0.031239252698361947,0.005172410744177167,-0.012199158742937186,-0.023998358086571317,0.03505776467765877,0.17031137540132324 -2060,10,0.08512443812787533,-0.0075614201976557435,-0.01683912234438905,0.01910746828812938,0.012674190960538512,0.0377652947640215,0.007541957744962997,-0.012199158742937186,-0.021232896045614454,0.03915417126282988,0.1855158061044249 -2060,30,0.09849790525965392,-0.004230468081848085,-0.012069136002217968,0.024725852441541577,0.019259666339584137,0.05158430857386504,0.019389696392332102,-0.012199158742937186,-0.016107366916097942,0.04939692970102657,0.2192258955492086 -2060,33,0.10003483834862709,-0.003963060706678853,-0.011576083443259942,0.02584247136999648,0.020163515772918406,0.05314353504633451,0.021166855883871485,-0.012199158742937186,-0.015593552299561185,0.050626710623367835,0.22310736190602873 -2060,50,0.10800816639065743,-0.0028046124807448074,-0.009154165142797252,0.03069442506038331,0.02550033290880185,0.06152371470040269,0.03123743078902126,0.0037391525289916213,-0.013031612535783579,0.05738989641243922,0.2434173971638942 -2060,67,0.11710103623196483,-0.001977061782963376,-0.007006853622486396,0.03540078542921851,0.03206767418146301,0.07006477783989101,0.041308010552090976,0.0037391525289916213,-0.010654378546336262,0.06489052336078267,0.26438896387722466 -2060,70,0.11899788460731507,-0.001849967344849033,-0.00662494114207283,0.0365244586476749,0.03351092230407482,0.07172579322326825,0.043085173687070315,0.0037391525289916213,-0.01022606461885366,0.06642561516585037,0.26848559239088904 -2060,90,0.13746902515590192,-0.0010425909088070805,-0.0037594846749558555,0.04287159433901704,0.049349469419380405,0.08683949327505816,0.05434052725415294,0.0037391525289916213,-0.0068212764695478505,0.0828065506479035,0.3074705728264702 -2060,95,0.14907241170108318,-0.0007825794976778052,-0.0026939741129779994,0.04463322579683601,0.05900468631620177,0.09409982365198673,0.05730245447730531,0.0037391525289916213,-0.005463654243553185,0.0926361594571981,0.32712678624267777 -2061,5,0.08095208441466094,-0.010320004404242114,-0.020211447152180755,0.01771278490501664,0.010600072577983883,0.03187778688823447,0.004989436278862634,-0.01238977059829558,-0.02472483115907758,0.035819753175540744,0.17354886661132082 -2061,10,0.08667625260204076,-0.007772232938408354,-0.01735573008590129,0.01939279544364539,0.013058382676930646,0.038540108137740794,0.007435750863084415,-0.01238977059829558,-0.02186725642572259,0.04004252065611655,0.18909537438106538 -2061,30,0.10035175507888199,-0.004335299619321791,-0.012448739284700257,0.025172738987298493,0.019866941080934335,0.052619265164405515,0.01966732773125327,-0.01238977059829558,-0.016592067193882912,0.05061063973259565,0.22361471222510632 -2061,33,0.10190381333604455,-0.004058142753488586,-0.011941753139076926,0.02630953930189746,0.020802650060630545,0.054197229393312535,0.021502064504374595,-0.01238977059829558,-0.016067159947271197,0.05188057388145844,0.2275929741867983 -2061,50,0.11003893339410424,-0.0028657370994652044,-0.00944863843733371,0.03128852727337229,0.02632722732398713,0.06274601829670667,0.03189889974150219,0.0037975767872571154,-0.013423103905648336,0.058854304582588904,0.2484103678792376 -2061,67,0.119306133281328,-0.002016221788377897,-0.0072383625193439315,0.03615463636453003,0.033124774554621476,0.07144268139833634,0.04229574226550968,0.0037975767872571154,-0.010979252127427381,0.06660304651960472,0.2698878177097768 -2061,70,0.12125180683135987,-0.0018866457099572483,-0.006845830999170175,0.037287107177488364,0.034615426570052336,0.0731356608188825,0.04413047660967104,0.0037975767872571154,-0.010537656244813924,0.06818356587928695,0.2740795035102988 -2061,90,0.14009271833598613,-0.0010604332879867496,-0.0038913593093274084,0.0438283472705314,0.051015400292728136,0.08854188793168304,0.055750475363119445,0.0037975767872571154,-0.007032524257467348,0.08513540168429709,0.31402366128979664 -2061,95,0.1519119108170271,-0.0007957141244575595,-0.002794495130495496,0.045640638586946405,0.061018387592463835,0.09591774994805552,0.05880837079464164,0.0037975767872571154,-0.00562918213659504,0.09530035609710776,0.3341986476134161 -2062,5,0.08222216841876506,-0.0106301636669702,-0.020807584455886135,0.017924919973002666,0.010916521206341581,0.032545450223609974,0.004796323334638064,-0.012580382453653973,-0.025439141355450577,0.036586287321033986,0.17664550585350963 -2062,10,0.08810087447166443,-0.0079889503426849,-0.017873210424644365,0.019676987328117162,0.013455627343556589,0.03930929883279251,0.0073206011578404685,-0.012580382453653973,-0.022495306026261916,0.04093697648355478,0.19259535675673853 -2062,30,0.10218356906697154,-0.004440296253039596,-0.012827279390497028,0.025620582772958617,0.020482076088440403,0.05364163188924124,0.01994199452453244,-0.012580382453653973,-0.01707596582232904,0.05182500921919046,0.22799831939422355 -2062,33,0.10382504872828721,-0.0041540795650152895,-0.012305248194479134,0.026777607702633703,0.021448139086743416,0.05526091957141512,0.021835203650984233,-0.012580382453653973,-0.016535508516626704,0.053131432561443266,0.23208200795296613 -2062,50,0.11215649043247103,-0.002927891643937705,-0.009743184636426984,0.03188504229021717,0.02715284345922543,0.06395127873075726,0.03256338546226444,0.0038560010455226095,-0.013819101570555926,0.06031925629089371,0.2534608412985242 -2062,67,0.12163097140863538,-0.0020562368470252936,-0.0074731407602282455,0.03691342056856104,0.03417009696185598,0.07280943130884587,0.04329156241562471,0.0038560010455226095,-0.011306627967666788,0.06831132701651618,0.2755024345427353 -2062,70,0.12368612026870252,-0.0019245199363335161,-0.007068387954116618,0.038053468364830645,0.03570719260070047,0.07452136144929304,0.04518477639999644,0.0038560010455226095,-0.0108506312569121,0.0699457591999598,0.27977322207763095 -2062,90,0.14299955387413502,-0.0010784986969061643,-0.004028216946736374,0.044792440569079627,0.05264647606693307,0.09020577693881472,0.05717509924821782,0.0038560010455226095,-0.007244158501697375,0.08745376909405371,0.32080039238996666 -2062,95,0.1550816192999482,-0.0008090467833489752,-0.0028960623033467674,0.04665604703769436,0.06297260622883923,0.09769578077736193,0.060330444553690854,0.0038560010455226095,-0.005796586553186064,0.09794607449236462,0.341554736274956 -2063,5,0.08370837863087655,-0.010935327393852601,-0.021427662549778712,0.018134560494946068,0.011204554091129268,0.03313843131813347,0.004593075858563403,-0.012770994309012367,-0.026194604219390627,0.037335322668826144,0.17987862641183758 -2063,10,0.08977149484753609,-0.00820736731076814,-0.018413074447829664,0.019960043941544697,0.013825866409236246,0.0400352600456712,0.0071965140943910854,-0.012770994309012367,-0.023148863424843513,0.04181927215907597,0.19619125718924849 -2063,30,0.10414745146036149,-0.00454711893238379,-0.013215999385664465,0.026069386378683414,0.0210935804792375,0.05465143610557774,0.02021370284456953,-0.012770994309012367,-0.01757094570919129,0.05304363020180347,0.2325168684093013 -2063,33,0.10580573225170374,-0.004250643514847797,-0.012678460507400251,0.027246679268886694,0.0220948785013719,0.056309166448717404,0.022166280610580305,-0.012770994309012367,-0.017012492785342573,0.05439988849208826,0.2366908070012126 -2063,50,0.11433207650929689,-0.002992197743055376,-0.010041819886156175,0.032483975748310155,0.027991057933660315,0.06516290578585307,0.03323089038026799,0.003914425303788103,-0.014219528329430835,0.061797365789453704,0.25859920160913513 -2063,67,0.12403833314180374,-0.0020971463653402756,-0.007704010374465844,0.037677135461150105,0.03525282512499798,0.0741909446063124,0.044295500149955674,0.003914425303788103,-0.011632117718375468,0.07006190108424937,0.2812095280529769 -2063,70,0.12612029129266739,-0.001961322087418645,-0.007288433372484671,0.03882441557071682,0.03684855861920197,0.07593035593201171,0.04624808277388639,0.003914425303788103,-0.011164047448525873,0.07175372189446637,0.28558830536923474 -2063,90,0.14583761090934277,-0.0010956057157707497,-0.004157311965503764,0.045763876931343234,0.054375643264392814,0.0919140013718268,0.058614413483207894,0.003914425303788103,-0.0074514890956234375,0.08985636201536795,0.32765304057999356 -2063,95,0.1582011098563671,-0.000822431152862147,-0.0029902213778920605,0.047679448452398375,0.06506970899401535,0.09952460447058745,0.06186870975989252,0.003914425303788103,-0.005959714685503366,0.10071148326804967,0.3490000787677384 -2064,5,0.08553823460936547,-0.011245002540680478,-0.022026614777967805,0.018358813798006718,0.01151299941854911,0.03377301589096899,0.004379691118058687,-0.01296160616437076,-0.02693074827515221,0.03809814389163159,0.18348997412398252 -2064,10,0.0916406709432602,-0.008429506892085685,-0.018939115254117404,0.020241965283927993,0.014220491709381037,0.040798192714129634,0.007063483600336344,-0.01296160616437076,-0.023795755344284023,0.042717712229320116,0.20011724736972064 -2064,30,0.10625359486043454,-0.004656280365113478,-0.013601439535729416,0.02651914464414996,0.021712425892151825,0.05565756117044726,0.020482450262404577,-0.01296160616437076,-0.0180653044260984,0.05426954602413557,0.2371834981506864 -2064,33,0.10794233087599278,-0.00435096022343519,-0.01304823138702727,0.027716748607293448,0.02274362748263745,0.05735038904629388,0.02249529538316281,-0.01296160616437076,-0.017488258911334043,0.0556649277596208,0.2414424783510112 -2064,50,0.1165939771398902,-0.0030567837309419307,-0.010340259541996986,0.033085324828955154,0.028833779339159454,0.06636512192853944,0.03390141449551284,0.003972849562053598,-0.014617912187113488,0.06328128722554899,0.263791148463165 -2064,67,0.12643299237638714,-0.0021377446458790595,-0.007936415314713105,0.038445781042297206,0.036323935821169384,0.07555232756261271,0.045307531178902904,0.003972849562053598,-0.011961630023802546,0.07180639965638906,0.2869198531295174 -2064,70,0.12856038641631604,-0.0019984201681132307,-0.007511496216583438,0.03959994879514688,0.037972188558739454,0.07732504744397861,0.047320381157581075,0.003972849562053598,-0.01148094947988027,0.07354747680886489,0.2913868412125132 -2064,90,0.1486390170827508,-0.0011134866875795902,-0.004291655420796306,0.04674264826727772,0.0560642919450558,0.09358677732315028,0.060068398636409906,0.003972849562053598,-0.007667266194126887,0.09222073224804926,0.3343640055494414 -2064,95,0.16117670419067143,-0.0008357300601236329,-0.003090441317018462,0.048710848224421455,0.06710464805017953,0.10132506970737194,0.063423137265727,0.003972849562053598,-0.006126624779900792,0.10343873895920022,0.35617857557223176 -2065,5,0.08711283245235682,-0.011560472773099411,-0.02262073272049386,0.018588623619298035,0.011857622578729006,0.034498454279773626,0.004156170023983904,-0.013152218019729154,-0.027659015800794478,0.03890015233468462,0.18699766504031454 -2065,10,0.09332656418085099,-0.008653871635949242,-0.01945485958963987,0.02052275651558998,0.014651195734170525,0.04161796628962527,0.00692151392635619,-0.013152218019729154,-0.024438551378652584,0.043642012728885474,0.20390555568929525 -2065,30,0.10822713041901588,-0.0047645817815231955,-0.013984785735522802,0.026969860149519714,0.0223534579641788,0.05669085084733318,0.020748234349077608,-0.013152218019729154,-0.018556626019196214,0.055520547636760856,0.24175746060480813 -2065,33,0.10996061206609012,-0.004452195765564571,-0.013418836117153847,0.028187818414535458,0.023412385677148602,0.05842211102145111,0.022822243110811814,-0.013152218019729154,-0.017962547240657472,0.05694517057149237,0.24610707389353814 -2065,50,0.11877314853072167,-0.00312142574513277,-0.010641102746433356,0.03368909235084824,0.02968096634039553,0.06757430246164373,0.03457495295007905,0.0040312738203190914,-0.01502549444211427,0.06478654968555067,0.2689380881515288 -2065,67,0.12880554520487786,-0.00217920930417749,-0.008179673367616422,0.03921935989216382,0.0374006255057982,0.07689704523582823,0.04632766521830626,0.0040312738203190914,-0.01229934353304077,0.07354987198674613,0.29256506240619523 -2065,70,0.13096525014936924,-0.0020347191444561783,-0.007740073513414413,0.040380070856816934,0.039084832196191646,0.07869950994204569,0.04840167640900043,0.0040312738203190914,-0.011807106239288719,0.07533837112797218,0.29715131491373575 -2065,90,0.15141970226168633,-0.0011304787921264227,-0.004442283230320699,0.04772876536360908,0.05771098457157541,0.09521072639031293,0.06153706442366373,0.0040312738203190914,-0.007889475946325412,0.09455927920814235,0.3410323524290169 -2065,95,0.16420245020091534,-0.0008490975216084026,-0.003199963959998229,0.049750240960400594,0.06907200617154023,0.1030635020953784,0.06499374164495413,0.0040312738203190914,-0.006309870465490974,0.10611658883663504,0.36336327178591715 -2066,5,0.08846781427264214,-0.011882137836861083,-0.023237328089991738,0.01881667377047078,0.012185547797193842,0.03516441847687023,0.003922509843759091,-0.013342829875087548,-0.028409759121021096,0.03968334301954457,0.19017548754593205 -2066,10,0.09488015022277832,-0.008885154263684294,-0.01998913945053845,0.02080241247620773,0.01505722940187138,0.042396259045668655,0.006770600214530686,-0.013342829875087548,-0.02509755500425939,0.04456566375578379,0.2074741682390825 -2066,30,0.11006997253000737,-0.0048745668926336765,-0.014376074543214106,0.02742153547495414,0.02299342353840208,0.05771827246807674,0.021011055104588627,-0.013342829875087548,-0.019058921033767603,0.05677698382155544,0.24619346405392026 -2066,33,0.11183458093106748,-0.0045519902201848275,-0.013797164318431218,0.028659891387294217,0.024086562555076498,0.059480987776357824,0.023147123793527312,-0.013342829875087548,-0.018452394851540013,0.058237397962887065,0.250664644224576 -2066,50,0.12084933989197015,-0.00318660017623741,-0.010946539909620544,0.03429527831398944,0.030552030047772835,0.06878568146680264,0.03525150817292659,0.004089698078584586,-0.01543553827831715,0.06630799879717315,0.27401895883323624 -2066,67,0.13110661326339848,-0.0022194708867590714,-0.008423765919265752,0.03999786943058847,0.03850449357743875,0.07826481834766019,0.047355897410245804,0.004089698078584586,-0.012639467781780322,0.0753294981392525,0.2981887761501256 -2066,70,0.13330749358534813,-0.0020732338339774976,-0.007969681505527492,0.041164781755726965,0.04024192558500231,0.08010063945410735,0.049491968528144456,0.004089698078584586,-0.012132647799384834,0.07717291753576837,0.30288742428265425 -2066,90,0.15416461584717037,-0.0011484593589028383,-0.004585218554006684,0.04872221743361132,0.059440116832879204,0.09686753136011061,0.06302039627120956,0.004089698078584586,-0.008110225648321008,0.09697712705443542,0.3477664676537522 -2066,95,0.16722605963051318,-0.0008624143838350338,-0.0033073192377617374,0.0507976320536988,0.07115179074813684,0.10484927375222369,0.066580513181734,0.004089698078584586,-0.006486619753616329,0.10888655007297947,0.37069812762609844 -2067,5,0.0899506281375885,-0.012211889108444412,-0.023872774925728316,0.01904296167136349,0.012502436423110221,0.035783238633039866,0.0036787145244441943,-0.013533441730445942,-0.029178512451399304,0.04046207345600028,0.1934574206056395 -2067,10,0.09651389855146408,-0.009117168156316817,-0.020548396147470463,0.02108093316578124,0.015463644479281929,0.04315563935115288,0.006610748537259754,-0.013533441730445942,-0.025776946442271416,0.045492196026158734,0.21114742737354472 -2067,30,0.11199445969387889,-0.0049859206063808505,-0.014780079054851689,0.02787416546013031,0.023651292721638087,0.05875576888071279,0.021270917386857567,-0.013533441730445942,-0.019577207786436422,0.05804823956869221,0.25075339283569675 -2067,33,0.11380480873041598,-0.004652808178368369,-0.014185934393340328,0.02913296213220674,0.024776217188793498,0.060552457285309065,0.023469944718189212,-0.013533441730445942,-0.01895211010408746,0.05955484576009815,0.25531914192714045 -2067,50,0.12304050484597683,-0.003251234070830147,-0.011261540511314993,0.03490387708098655,0.031449027488159934,0.07001894808713963,0.035931087450935366,0.00414812233685008,-0.015851188623341193,0.0678627010043873,0.27922558654759966 -2067,67,0.1334793848991394,-0.0022611368577036208,-0.008668462582477481,0.0407813070774097,0.03966184483800796,0.0796734019229501,0.048392227754721545,0.00414812233685008,-0.012984321685190554,0.07715685898743707,0.30398099505774523 -2067,70,0.13570664460420603,-0.00211111733266505,-0.00820350400437025,0.04195407867318089,0.04145213881725834,0.08153357138629413,0.050591257515013165,0.00414812233685008,-0.012461148564315107,0.07906707608078611,0.3087624001676044 -2067,90,0.15700309047102928,-0.0011676949237374563,-0.004724644955418897,0.04972300987064744,0.061264363715072004,0.0985814527242777,0.06451842332656701,0.00414812233685008,-0.008329189212105962,0.09949387310321839,0.35479894917187765 -2067,95,0.17022284938842058,-0.0008755742176302213,-0.0034111550302032626,0.05185301611095306,0.07337072112563248,0.10671251988157637,0.06818346159190652,0.00414812233685008,-0.006662492806487494,0.11179754877819188,0.3782140789889502 -2068,5,0.0916449965506792,-0.012547387507717372,-0.02449859549584136,0.019267489902137634,0.012833437392266828,0.03643999037196383,0.003424781940699243,-0.013724053585804336,-0.02993249425620102,0.041256550824723015,0.196950323184134 -2068,10,0.09827247027754783,-0.009351159215090688,-0.021086126800973878,0.021358321164471977,0.015886106224945046,0.043928795437048425,0.006441954036623455,-0.013724053585804336,-0.026443170232149177,0.04642158002752674,0.2149777410916286 -2068,30,0.11400776154845953,-0.005098041836349852,-0.015179253263088494,0.02832775526537116,0.024300289699423685,0.05977890436484408,0.021527818766924462,-0.013724053585804336,-0.020084747168418068,0.05932140545497192,0.2553204557749506 -2068,33,0.1158221695691347,-0.004756342363429124,-0.014569597154445262,0.029607036042636016,0.025459225842506306,0.06159859247897348,0.023790696168957643,-0.013724053585804336,-0.01944617933830223,0.06087010053806434,0.25998501242859223 -2068,50,0.1251372262686491,-0.0033157442328817658,-0.011568516047144218,0.03551489710792785,0.032321716691470666,0.07121631555792313,0.03661367863930553,0.004206546595115574,-0.01626609162814332,0.06940793646618308,0.2843627526704349 -2068,67,0.1357652276158333,-0.002303997121553518,-0.008912229179071201,0.04156968315327336,0.04077245713892523,0.08102624682500552,0.04943666110965342,0.004206546595115574,-0.013325551053449434,0.07895538928506096,0.30960708191035324 -2068,70,0.1380374636873603,-0.0021495092673433475,-0.008436931053370017,0.0427479644278748,0.042620220100531916,0.08291889046192812,0.05169954336960654,0.004206546595115574,-0.012791257864350413,0.08091667677972446,0.31449868830839767 -2068,90,0.1596163212507963,-0.0011855707470943006,-0.0048690206839972685,0.050731142674717435,0.06300834999996338,0.10022478884068056,0.06603111644221647,0.004206546595115574,-0.008554075850727707,0.10193918321452478,0.3614400050086221 -2068,95,0.17313829296827316,-0.0008883761601264178,-0.0035175884020612067,0.05291639852552639,0.07546459135299402,0.10846748571793109,0.0698025771596318,0.004206546595115574,-0.006846389679995862,0.11458737239777234,0.38534099903511976 -2069,5,0.09352604201883077,-0.012880241790691346,-0.025109849608499907,0.01949025330247028,0.013149013712982507,0.037061974707877844,0.003160712396144233,-0.013914665441162728,-0.030694940863380298,0.042029116586454654,0.20054555060334697 -2069,10,0.10017806648910046,-0.009587606341248407,-0.02162029323332395,0.02163457131195701,0.01628372989296815,0.04466454917700859,0.006264219748821752,-0.013914665441162728,-0.027098847916791253,0.0473249199398679,0.21888306850217146 -2069,30,0.1160652088612318,-0.005211173067694641,-0.015572153269388513,0.02878229973035375,0.024932237354442378,0.060758344234159864,0.021781756815829344,-0.013914665441162728,-0.020588377878799392,0.060568695813531886,0.2599548072190919 -2069,33,0.11791337750852109,-0.004858922493634208,-0.014944729457543774,0.030082107725219052,0.026121895016377347,0.0626155017213223,0.024109387861672476,-0.013914665441162728,-0.01993412887652765,0.06216194958478713,0.2646973250905658 -2069,50,0.1273438093677163,-0.0033807354815048518,-0.011870047450220534,0.036128329938725064,0.0331754353270245,0.07237566254387218,0.03729929145387697,0.004264970853381067,-0.016672487717466086,0.07092322481100116,0.2895342204978576 -2069,67,0.13807352870702744,-0.0023455569184613148,-0.009151671911295548,0.042362984757372144,0.041862180350735294,0.08234992628650642,0.05048919747504142,0.004264970853381067,-0.013661154553320455,0.08073817402761282,0.31525404731203444 -2069,70,0.1403948731929064,-0.002188814664050763,-0.008664044360602335,0.043546433382416504,0.04375884245255318,0.08426190326288435,0.052816830949844525,0.004264970853381067,-0.01311523777563325,0.08274920905664765,0.32023043878223895 -2069,90,0.16229445656985045,-0.0012038663599512674,-0.005006372106623902,0.051745397386154454,0.06471456661499447,0.10183193249635569,0.06755849019191774,0.004264970853381067,-0.00877233992338509,0.1043469317243343,0.368103016152652 -2069,95,0.1759407290145755,-0.0009015385709966637,-0.00362295206043415,0.05398777390405578,0.07752416999916849,0.11022006430000396,0.07143787445866964,0.004264970853381067,-0.007021231961754992,0.11735177797145734,0.39239102950635063 -2070,5,0.09533461748957635,-0.013224454905352095,-0.025740397483830404,0.019711254452522895,0.013465152707787528,0.03767537960314182,0.002886509837839114,-0.014105277296521121,-0.03145534770786578,0.042807622322921596,0.20414825747897458 -2070,10,0.1021260190486908,-0.00982838514660439,-0.02216197366796194,0.02190969134872074,0.01668534006844796,0.04540171343329925,0.006077546888334629,-0.014105277296521121,-0.0277678763425761,0.04823979682928435,0.22282992237742152 -2070,30,0.11826510568857193,-0.005326811486157116,-0.01597065877321304,0.029237804015401016,0.025576019270743475,0.06175191044356894,0.02203273639149215,-0.014105277296521121,-0.02109878109438485,0.061827836264079276,0.2647037989909121 -2070,33,0.12010783186927439,-0.004963894977109846,-0.015327974559014555,0.03055818257331884,0.02679584228481486,0.06364114534203943,0.024426014938413773,-0.014105277296521121,-0.020430298064443138,0.0634686750038428,0.2695282659920011 -2070,50,0.12973116077184677,-0.0034475069662023533,-0.012177230816757261,0.036744181210770374,0.034049247966309405,0.07355910381497911,0.03798792103672973,0.004323395111646562,-0.017085789479005006,0.07245996887523823,0.2949088423144034 -2070,67,0.14065106923133136,-0.0023877103190467473,-0.00939235534733811,0.04314865335232982,0.04297744454573765,0.08368573143270121,0.05154982713504568,0.004323395111646562,-0.014001628203046807,0.08254722655018897,0.3211515439315205 -2070,70,0.14296520643234253,-0.002226486708780483,-0.008892545659621741,0.04434949399289429,0.0449282580896805,0.08562384290414421,0.05394311053988725,0.004323395111646562,-0.01344292751394392,0.08461221219550062,0.3262427950423242 -2070,90,0.16524115964770317,-0.0012208737668114142,-0.005145581848889723,0.052755370020757274,0.0664734873175405,0.10346473224035638,0.06910054457567084,0.004323395111646562,-0.008993640794646108,0.10681407133747255,0.3751126233350306 -2070,95,0.17908676533699036,-0.0009144865732485787,-0.0037257369662191384,0.05506714763990423,0.07964542838388075,0.11197903291883182,0.07308933405734032,0.004323395111646562,-0.007196068300130392,0.12020957262501786,0.39992678625003825 -2071,5,0.09706506282091142,-0.01356899387928077,-0.026396793360467265,0.01993049593245694,0.013783283855245732,0.03828351623160649,0.002602163639084021,-0.014295889151879515,-0.03223874314925755,0.04359440693885364,0.20763779903127005 -2071,10,0.10394743684530258,-0.010069830105637943,-0.02272741596143198,0.022183307376482667,0.017095770188718072,0.046136225783461826,0.005881928168282178,-0.014295889151879515,-0.028468481065942946,0.04917051297857964,0.22668081783074734 -2071,30,0.12037156292796136,-0.005443510365488034,-0.01638266366413387,0.029694262960190027,0.02624490243316977,0.06277194934050535,0.022280752635992936,-0.014295889151879515,-0.021626275833022363,0.06312352524881397,0.26943412593520927 -2071,33,0.12222345437407493,-0.005068597980736197,-0.015722853625517622,0.03103525519357239,0.027499921527251416,0.06469449799030678,0.024740574970221568,-0.014295889151879515,-0.020941275470635835,0.06481271811842014,0.2743360353406383 -2071,50,0.13199904512017965,-0.0035161103149782295,-0.012494353616921023,0.037362445286671604,0.03497019400191186,0.07477539678722664,0.03867956981682379,0.004381819369912055,-0.01751036433317185,0.07404345693782852,0.30025213450528154 -2071,67,0.14309792080521583,-0.00242904502613032,-0.009640193735455367,0.04392639925319317,0.04415657152089127,0.08506312071432484,0.05261856952134595,0.004381819369912055,-0.014352390923783424,0.08442346109079678,0.3270553072234403 -2071,70,0.14546445960998536,-0.002265672504142774,-0.009126503928109474,0.045164833406996285,0.04616984293810639,0.08702858226834072,0.05507839185557458,0.004381819369912055,-0.01377985181963211,0.08654880664553485,0.3322440825741969 -2071,90,0.16808551922738552,-0.0012382299163540894,-0.00528585001697319,0.05377232738427943,0.06836526732492929,0.10514935570652036,0.0706572747355558,0.004381819369912055,-0.009216358727312652,0.10939704333790895,0.3821618429591602 -2071,95,0.18221273687034847,-0.0009267480427044419,-0.0038266707532805372,0.05615451433970874,0.08192057141078178,0.11380853907909469,0.0747569802452435,0.004381819369912055,-0.007373038092208134,0.12319861695932302,0.4075225052801334 -2072,5,0.09852109944820404,-0.013930108181166774,-0.02703246502206414,0.020147977742272418,0.014152038476503828,0.0389829805256424,0.0023076874627787802,-0.014486501007237909,-0.03303989103843066,0.04441581226986978,0.2109357860115064 -2072,10,0.10553729120492936,-0.01031580037564869,-0.023291047304206957,0.022430974927421545,0.017558461482678842,0.04694321500730806,0.005677373911744268,-0.014486501007237909,-0.02915879760864803,0.05013824896900426,0.23035311040450987 -2072,30,0.12221587514430284,-0.005558940396440338,-0.016797764445117047,0.030151681725043712,0.02694522646997133,0.06382204346685627,0.022525805549331715,-0.014486501007237909,-0.022153178064172382,0.06445370250412338,0.273940383591475 -2072,33,0.12412385340034962,-0.005177660079091326,-0.016122676851894276,0.03151333097934269,0.028235784979796622,0.06577324035980978,0.025053072815015797,-0.014486501007237909,-0.021459281597987243,0.06618525200317249,0.2789213397013703 -2072,50,0.13405613054037094,-0.003585268473562381,-0.012818554842586856,0.03798313062251703,0.03590584903547507,0.07599446361955887,0.039374237794159155,0.00444024362817755,-0.017946436778120616,0.07565340345166403,0.30539366252268285 -2072,67,0.14534294639229775,-0.0024727571105280103,-0.009898765177003086,0.04470838729167702,0.045339830213644024,0.08642824464728832,0.05369540520226247,0.00444024362817755,-0.01471409081945487,0.08630226667918449,0.3327565019206755 -2072,70,0.14774381820335986,-0.0023046498460768576,-0.009375287245341304,0.04599013929563801,0.04740876855879471,0.08842622187695212,0.05622267003898659,0.00444024362817755,-0.014122332676492782,0.08849332067297135,0.3380313969249716 -2072,90,0.1707540180310607,-0.0012553604955209646,-0.005440114945933881,0.054796275114113106,0.07021520361365452,0.10681954296901261,0.07222868552949259,0.00444024362817755,-0.009456795611747169,0.11195476237755121,0.38897472604395905 -2072,95,0.18505114316940308,-0.0009395539031600652,-0.003943366294292136,0.05724987939683232,0.08414192537418885,0.1155913638539029,0.07644079359069945,0.00444024362817755,-0.007569783628278988,0.12612536907336708,0.41486744273617115 -2073,5,0.09975547871366143,-0.014284390797789332,-0.027683420313982653,0.020363692141484934,0.01448010079064769,0.03960746261269653,0.0020030712894635195,-0.014677112862596303,-0.03384965578727788,0.045216670107010255,0.2139532834799252 -2073,10,0.10688235397338867,-0.010563826327283959,-0.0238556768605227,0.022676830056772398,0.017977389887276016,0.04768944740504642,0.005463875617361008,-0.014677112862596303,-0.029858702418438923,0.05107772372336705,0.23376026980685133 -2073,30,0.12396493920385837,-0.0056746392576150885,-0.01720747033704853,0.030610055149639145,0.027617079326274673,0.06482676198477254,0.022767902418388383,-0.014677112862596303,-0.022682341463864733,0.06576067459809659,0.2782805740475893 -2073,33,0.12595788957476614,-0.005286180547023265,-0.016517583307712184,0.03199240453726675,0.028941436568033857,0.06681431009691073,0.025363503614876524,-0.014677112862596303,-0.021972190021737073,0.06753455894496586,0.2833875430721161 -2073,50,0.13606252609938382,-0.0036520999038048745,-0.013134395713412989,0.03860623158091445,0.03682265727594229,0.07718445960668152,0.04007192496873581,0.0044986678864430436,-0.018375789647832888,0.07724721377860938,0.3104181579430655 -2073,67,0.14755878544896842,-0.00251497776062545,-0.010146453425297233,0.04549462310517356,0.046513592983322645,0.08777485996805327,0.054780343893635126,0.0044986678864430436,-0.015065052973785098,0.08817764970486223,0.33843334395673524 -2073,70,0.1500479421839118,-0.0023454378891491477,-0.009612644031778602,0.04682037202137412,0.0486419429416033,0.08981109916689264,0.05737595480596314,0.0044986678864430436,-0.014460156446044356,0.0904286548451401,0.34379071316470877 -2073,90,0.17347767803817987,-0.0012715226145583185,-0.005582524770967363,0.05583187138814775,0.07206922316178124,0.10848133659103548,0.07381477695748119,0.0044986678864430436,-0.009685484459823198,0.11453639458871809,0.3958877010779332 -2073,95,0.1881311762407422,-0.0009514655588365752,-0.0040537028056143965,0.05835323741791196,0.08637899970302305,0.11736999877807168,0.07814078380954803,0.0044986678864430436,-0.007746279764801233,0.12909097817210938,0.42236482700294525 -2074,5,0.1011316882237792,-0.014646751339215574,-0.028342901623095298,0.020577649450740344,0.01483394536305896,0.04026066208298803,0.0016883160299982275,-0.014867724717954696,-0.034652049614302585,0.04603083498929193,0.21713214524879856 -2074,10,0.1083798352599144,-0.010818474181163135,-0.024429226666175908,0.022920878401927403,0.018415582811653036,0.04846139569354039,0.0052414344996123815,-0.014867724717954696,-0.030573770598979325,0.05204385812494826,0.2372732275874031 -2074,30,0.1257114054262638,-0.0057953804394186995,-0.01762953493276235,0.03106938839429925,0.028317750091412474,0.06585186331560068,0.023007031098363096,-0.014867724717954696,-0.02322444183355106,0.06709622825233687,0.28267049485413764 -2074,33,0.12772574043273927,-0.005393429719997857,-0.016919287020374617,0.032472481260707564,0.029678927248474683,0.0678801556572397,0.025671872227723682,-0.014867724717954696,-0.022493551685209803,0.06892071070672173,0.28786665264201206 -2074,50,0.13798301294893026,-0.0037182619531345128,-0.013459113645769247,0.03923175098055998,0.037773286669190616,0.07839531588887536,0.04077262405367386,0.004557092144708538,-0.018813534913074,0.07887217323872313,0.3154227860629123 -2074,67,0.1496514205366373,-0.0025585277349199705,-0.010406264086783362,0.0462851010562906,0.047724320162620466,0.08914491715553098,0.05587338073754397,0.004557092144708538,-0.015427783287349714,0.09009448042652948,0.3440126669131785 -2074,70,0.152172024486959,-0.0023841424317750993,-0.009857083059381376,0.04765554506761208,0.0499107863175125,0.09122191799425854,0.058538221866904556,0.004557092144708538,-0.014808493966930425,0.09240201483903639,0.34946444636907825 -2074,90,0.17593673329800366,-0.001288177053699628,-0.005736295817550197,0.05689520753076436,0.07397689389012241,0.11015011020257305,0.07541554416160166,0.004557092144708538,-0.009920508614937214,0.11716178968447338,0.4025976826987191 -2074,95,0.19081347933411597,-0.0009638230848198907,-0.004164609736379725,0.05946459379631066,0.08867333037373246,0.11916760888678735,0.07985694118594938,0.004557092144708538,-0.007938767590206914,0.1321000705493427,0.4296779258976513 -2075,5,0.10256070702597499,-0.015004729682358619,-0.028989544518562487,0.020789841929554256,0.015171410307644814,0.04088148921939734,0.0013634298821227986,-0.01505833657331309,-0.03544959287850443,0.04682601183285322,0.2203007468753892 -2075,10,0.10989625096321107,-0.011069688410795791,-0.024992809966666443,0.02316311150679829,0.018839973173369017,0.049215206960521736,0.005010058148998292,-0.01505833657331309,-0.03127630777738526,0.05298458337242722,0.24079764965831232 -2075,30,0.12746417149603367,-0.005916470941120156,-0.01804280208707293,0.0315296762987011,0.02899631865957471,0.06684979894670476,0.023243203734055706,-0.01505833657331309,-0.023758937408608048,0.06841436499157104,0.2870090559039917 -2075,33,0.12951161113977433,-0.005502733243931103,-0.01731597698066354,0.032953555756302134,0.030393478498445963,0.06891921354198681,0.025978176224597308,-0.01505833657331309,-0.02300568570352797,0.07027959448330662,0.29234081820745045 -2075,50,0.13990510060489178,-0.00378816774905214,-0.013779994639491384,0.03986115125355221,0.03869542882046315,0.07957055763186022,0.04147634719377315,0.004615516402974032,-0.019245800688306156,0.08047698898996579,0.3203988665601295 -2075,67,0.15172276932746173,-0.0026016473098864133,-0.010655506168238071,0.04707982114502814,0.048902325273421546,0.09048801685250138,0.05697452059190895,0.004615516402974032,-0.015782547730265193,0.09198771505360284,0.34955099735041484 -2075,70,0.15428779950588942,-0.0024232726388477045,-0.010096301745026915,0.04849564764762593,0.05114635117056753,0.092591775100957,0.059709495511410526,0.004615516402974032,-0.015150429230206265,0.09435416230339778,0.3551083311460883 -2075,90,0.17838021967560053,-0.0013056976608979444,-0.005881597962538852,0.05796619127196079,0.07582916963051667,0.11178667047335801,0.07703098228393408,0.004615516402974032,-0.010149427767320597,0.11973853725088675,0.40922122182444315 -2075,95,0.19345371332019567,-0.0009767331113735224,-0.004271735725128508,0.06058394313866542,0.09091762739117482,0.1209348641132814,0.08158926086198354,0.004615516402974032,-0.008124146877688632,0.1350621226072428,0.4368124081503619 -2076,5,0.1042110095858574,-0.015377425479741582,-0.029638767056463844,0.021000274738249603,0.015495841823772394,0.04147767921608904,0.0010284037372373497,-0.015248948428671484,-0.03624721219852382,0.047611130761237366,0.22369768763572412 -2076,10,0.11171289389133454,-0.011327109594101525,-0.025556229036737328,0.023403535008777242,0.019255840720510224,0.04994015867363922,0.004769738367778845,-0.015248948428671484,-0.03198531515232529,0.053913958745794036,0.24456287977296806 -2076,30,0.12959286181926727,-0.006034906763098113,-0.018455984051738088,0.03199092144300616,0.029670273355619836,0.06783103115603603,0.0234764130385863,-0.015248948428671484,-0.024293575121518696,0.0697207221923967,0.2916996488858044 -2076,33,0.1316616496756673,-0.005614333167359458,-0.01771540089953985,0.03343563072073197,0.031100066744121642,0.06993469287726958,0.02628241317653743,-0.015248948428671484,-0.023522235747636212,0.07163595468881595,0.2971546185539635 -2076,50,0.14223467766642572,-0.0038567658896915546,-0.01409867362837936,0.04050454440179304,0.03961292766957853,0.08074345151526453,0.042183082244233824,0.004673940661239526,-0.019677749912110673,0.08207964767581728,0.32578928906893345 -2076,67,0.15431812930852176,-0.002644891983379874,-0.010906221023810751,0.04787878900877837,0.050082865569716487,0.09181666708751064,0.058083753740890184,0.004673940661239526,-0.01613764750484452,0.09388482734052674,0.3555512929633155 -2076,70,0.15688144217580557,-0.0024627583749282,-0.010333096860842399,0.04934068515477863,0.05238543280813799,0.09395303460476843,0.06088975630780129,0.004673940661239526,-0.015490750942208203,0.09630588854326336,0.36123756073959135 -2076,90,0.18141696277558805,-0.0013234714737742933,-0.006023262942058914,0.05904482777205997,0.07769394895822344,0.11341218555246417,0.07866110104031832,0.004673940661239526,-0.01037523295298034,0.12234967943201573,0.41643336483713306 -2076,95,0.19677174025028943,-0.0009888967445907306,-0.00438012775656564,0.06171129083833925,0.09320117994781142,0.12269191812029503,0.08333776226933028,0.004673940661239526,-0.00830732749211042,0.13806516493230708,0.44461755473699144 -2077,5,0.10601291566565632,-0.015754873129042602,-0.030296744968541005,0.021208947876826378,0.015834805708587505,0.04208931379624188,0.000683237595341881,-0.015439560284029877,-0.03705220002822843,0.04840998952872655,0.2272232653114013 -2077,10,0.1136326621890068,-0.011591974373365057,-0.026130354584104447,0.023642154545256446,0.019683642120491212,0.05067834598902058,0.004520473637854058,-0.015439560284029877,-0.03269650378764844,0.05486285618450297,0.24849918171697885 -2077,30,0.13180388612896204,-0.006157343115126509,-0.018876426447077047,0.032453128987537355,0.03035611077319553,0.06882205018879328,0.02370665901195488,-0.015439560284029877,-0.02483443108560652,0.07104634801650221,0.29653990129818997 -2077,33,0.13391911381334065,-0.0057272104360442735,-0.018118243906957328,0.03391871154736005,0.031823567720937626,0.07096456005022292,0.02658458551250402,-0.015439560284029877,-0.024049338205996244,0.07300702165429007,0.3021179250631284 -2077,50,0.14467042618989945,-0.003927726044330945,-0.014420596457775213,0.041150693558523445,0.040551835516417334,0.08193066516556599,0.042892838920895765,0.00473236491950502,-0.02011426243547301,0.0837092920667355,0.331296298505019 -2077,67,0.1569380598127842,-0.0026896811733062983,-0.011162205545815419,0.04868201028493348,0.05128547661732134,0.09316073487385364,0.05920109475824749,0.00473236491950502,-0.016498686538817135,0.09580193259653276,0.36164893707258106 -2077,70,0.15956289595663548,-0.0025031424478245082,-0.010573956199169772,0.050190673769159186,0.05364881594517104,0.09531658844568,0.06207902854567653,0.00473236491950502,-0.01583404915244282,0.09828988219848007,0.3674639829374177 -2077,90,0.18449085688591002,-0.0013406827997519421,-0.006169220310535199,0.0601311170310619,0.07959607335288783,0.11504306514147093,0.0803059052886743,0.00473236491950502,-0.010608502608730067,0.12499050867710797,0.4237241771261272 -2077,95,0.20009101322740316,-0.001001554846031766,-0.004490818165797861,0.06284663689533213,0.09551528441616348,0.12446312922890992,0.08510245026590953,0.00473236491950502,-0.008489440595831583,0.1411110684293289,0.4524660683938034 -2078,5,0.10765276763737201,-0.016133459078543334,-0.03096659559270255,0.02141585876512312,0.016147990893186658,0.04266447887833235,0.0003279405650362757,-0.01563017213938827,-0.037883349957572476,0.04918755871093709,0.23052854494363267 -2078,10,0.11533338913917542,-0.01185448981306919,-0.026710534241223934,0.02387896166014762,0.02009993676779961,0.05138628604181421,0.004262274282303801,-0.01563017213938827,-0.033429321442142765,0.05579902054684805,0.252142729321426 -2078,30,0.13370882928967476,-0.006280864278576257,-0.019298488839295174,0.0329162911918103,0.03103793085219738,0.06980114449708798,0.02393394894104135,-0.01563017213938827,-0.025382669283797343,0.07236725497842145,0.3010220585699006 -2078,33,0.13583320457935333,-0.005840744187526159,-0.018522228039556755,0.03440279014614189,0.032542201380378215,0.0719685454621087,0.02688469809041701,-0.01563017213938827,-0.024579763301814123,0.07437896496463435,0.3067198270290065 -2078,50,0.146721149250865,-0.004000062753295275,-0.014742903100206496,0.04179958524033594,0.041491943882704725,0.08310543703363919,0.04360561722375898,0.004790789177770515,-0.020553103530860015,0.08534251400064907,0.3364093710168028 -2078,67,0.1590996410354972,-0.002733862867333673,-0.011413183965947604,0.04948946524262081,0.05249698881134626,0.09451118694333234,0.06032654364398086,0.004790789177770515,-0.01685860325308376,0.09774127881987894,0.3673479603869712 -2078,70,0.16177385446429252,-0.0025443154431553233,-0.010812613712591053,0.051051590762498295,0.0549290980375737,0.09668929684535965,0.06327729279335652,0.004790789177770515,-0.016179168675894584,0.10028845092576023,0.3732470405191763 -2078,90,0.18704514732956884,-0.0013579842267163855,-0.006310855307867375,0.061216180115554616,0.08154349059739305,0.11669238356223437,0.0819653901710821,0.004790789177770515,-0.010836296109871378,0.12768639279380853,0.43057090915373103 -2078,95,0.2028171703442931,-0.0010137627686998918,-0.004596411557856402,0.0639859797890089,0.09791361678519997,0.12624606160421284,0.08688329570420165,0.004790789177770515,-0.008667573042792009,0.14420720903053533,0.4598568890164085 -2079,5,0.10915884508788586,-0.016518476724610938,-0.03163543962310522,0.02162100482297837,0.016521048760205548,0.043310541893792555,-3.749889123931839e-05,-0.015820783994746665,-0.03871868447488956,0.05001493088227149,0.23383866057543126 -2079,10,0.1169530703663826,-0.012120170471768756,-0.027294457180058934,0.02411395071605858,0.020558853099531947,0.05216242291822369,0.003995129067188217,-0.015820783994746665,-0.034161129184663845,0.05678354233843113,0.25589299633178025 -2079,30,0.13564335808306932,-0.006404278044443642,-0.019726774182759598,0.03338040805582499,0.03176458788285767,0.0708294195728753,0.02415827311000584,-0.015820783994746665,-0.025939204396429313,0.07374287706531094,0.30566396535170226 -2079,33,0.1378255043923855,-0.00595491270702374,-0.018937025236228817,0.03488786651707749,0.03330305223795744,0.07302210799799788,0.027182741194436526,-0.015820783994746665,-0.02511778594073453,0.07580123231959186,0.3114469111802421 -2079,50,0.14887968989312647,-0.004072565275822001,-0.01507645220712207,0.04245122753727502,0.04247265676264279,0.08431317944786305,0.04432140743698358,0.004849213436036008,-0.021004573859483615,0.08702245140906817,0.3417045192107468 -2079,67,0.16146078562885524,-0.002778435218619026,-0.011678113124087605,0.05030116515662473,0.05374865036027762,0.09586485334142185,0.06146008096641055,0.004849213436036008,-0.017228680303968666,0.09971620538465222,0.37320697316523044 -2079,70,0.16418041034936906,-0.0025851882853817412,-0.011066747643164438,0.05192408784257852,0.05623628758068171,0.09807746032678832,0.06448455390876118,0.004849213436036008,-0.016536354541710516,0.10232059732228947,0.3792479128790104 -2079,90,0.1898176505640149,-0.0013753630072462712,-0.006465961802899521,0.062305051563634264,0.08350429381798782,0.11835503529361968,0.08363954597170184,0.004849213436036008,-0.011081276385575763,0.13039375365662428,0.43767505820043295 -2079,95,0.2058483820259571,-0.0010262149054700955,-0.004712094307232561,0.06512411853497665,0.10026597604831754,0.1279985373104648,0.08868031801588643,0.004849213436036008,-0.008861149541045927,0.14731074552382478,0.4675860321256221 -2080,5,0.11078268913328647,-0.016904582156277305,-0.032316132134601626,0.021821665849008912,0.016914270534404575,0.04400475835772107,-0.00041307075402502967,-0.016011395850105057,-0.039556348801156445,0.050876352679233516,0.23728459769448834 -2080,10,0.11868453273773194,-0.012391079216136778,-0.02788967168054077,0.02434713580646979,0.021047458165537138,0.052965211312039226,0.0037190455830072083,-0.016011395850105057,-0.034897390443965004,0.057809765701694896,0.25979925802204523 -2080,30,0.1376366819858551,-0.006529894694615811,-0.020164601102679865,0.03384548215974289,0.0325240796372659,0.07188002126048669,0.024379633947808312,-0.016011395850105057,-0.026504804821009326,0.07515081339836618,0.31043754556351916 -2080,33,0.13984532257318497,-0.00607208007728685,-0.019359614650927257,0.03537394335684835,0.034100002763336835,0.07410866862842949,0.027478722111442477,-0.016011395850105057,-0.02566722129463788,0.07726093013985266,0.31628536028641213 -2080,50,0.15105372679680587,-0.004144627536956861,-0.015419945101539361,0.04310561505597768,0.04348925839536152,0.08554167093167546,0.04504021927640946,0.004907637694301503,-0.021465486892493415,0.08873954732573955,0.3470723328511952 -2080,67,0.16381485155969858,-0.002822492383596232,-0.011951242053796007,0.05111711002694525,0.055035502762718264,0.09723848262902036,0.06260171644137642,0.004907637694301503,-0.017612737647853836,0.10173043027289667,0.3791701177562904 -2080,70,0.16655931390076875,-0.002626552807537474,-0.011328015843376614,0.05280182781075396,0.05758898295895481,0.09948833880023174,0.06570080703397056,0.004907637694301503,-0.016904309457549754,0.10439766343447307,0.3853030825199277 -2080,90,0.19257370709627866,-0.0013920821254093528,-0.006630527328826659,0.06340126337874778,0.08550662952837658,0.12002043357821547,0.08532837269053353,0.004907637694301503,-0.011334287108876746,0.1331550499722282,0.44476025319566126 -2080,95,0.20883325143903492,-0.001037028986003557,-0.004836270894567837,0.06626992977171052,0.10266438158450317,0.1297946397864595,0.09049351720096384,0.004907637694301503,-0.00906481748650586,0.15048232095966152,0.47529160207311555 -2081,5,0.11235028501600028,-0.01729533040492306,-0.033016925782328434,0.021997490473920318,0.017283371635060166,0.04465846780388051,-0.0007987804884807881,-0.016202007705463452,-0.04041209911578327,0.05171615236921276,0.2406364223508542 -2081,10,0.12034410596489907,-0.012664833967768702,-0.028490497005975307,0.024578508475292974,0.021518555554869038,0.05373037804227206,0.003434022311660795,-0.016202007705463452,-0.03565069858480066,0.058810645890312346,0.263484080757735 -2081,30,0.13942960176765917,-0.006655645064926209,-0.02060639706408801,0.03431151608372546,0.03327183414038426,0.07291899870667484,0.024598038741328678,-0.016202007705463452,-0.027074810510917816,0.07655554522446525,0.31491762045847704 -2081,33,0.14165137103945016,-0.006186764951610007,-0.019783627720803335,0.03586102336213596,0.03488973899834883,0.07517186721089059,0.027772640841434864,-0.016202007705463452,-0.02622010258080701,0.07870690273757049,0.3208989570924017 -2081,50,0.1529814660564065,-0.004218253247570306,-0.01576195602978914,0.043762758583169914,0.044507025571891456,0.08676209484891632,0.045762047884116655,0.0049660619525669965,-0.02192712883210909,0.09046135210906951,0.3521965925226863 -2081,67,0.16587029743343593,-0.0028681738470249223,-0.012222261580477308,0.051937299853582364,0.05633878022651751,0.09861920011496494,0.06375145978471838,0.0049660619525669965,-0.01799099329178812,0.10375609536850788,0.38484881381301644 -2081,70,0.16866254649162293,-0.0026662705272989186,-0.011584888549272422,0.053684810667024595,0.05895098375847487,0.1008998516230356,0.06692606674274451,0.0049660619525669965,-0.017268329278452302,0.1064932175052428,0.3910911736822585 -2081,90,0.1949709560006857,-0.0014095236984748563,-0.006788026702422234,0.06450481016753219,0.08756974841532358,0.12168478221593476,0.08703188004341703,0.0049660619525669965,-0.011582570293748488,0.13596145891558262,0.4515567384351726 -2081,95,0.2113665963113308,-0.0010477269388685713,-0.004959098995414372,0.0674234078618183,0.10516345704273597,0.13160702976466448,0.092322883543594,0.0049660619525669965,-0.00926128552160299,0.15371347510090783,0.4825856979221281 -2082,5,0.11375358201563358,-0.017685795944266353,-0.033711848711207144,0.022170936119328927,0.017665089106162823,0.04532207742075664,-0.0011946268801266092,-0.016392619560821844,-0.04126066537261924,0.05256937348735366,0.24383703413500976 -2082,10,0.12187320174872876,-0.012940553956133327,-0.029083911719771025,0.024808074359920315,0.022000523021985637,0.0545169306193079,0.0031400568241890074,-0.016392619560821844,-0.036399883197191285,0.05981994405560564,0.26704650510532885 -2082,30,0.1412132240563631,-0.0067838901923765555,-0.02104527040016774,0.034778509827772704,0.034025629970719305,0.07394103237426726,0.02481347777472706,-0.016392619560821844,-0.027644215150058406,0.07796529236736201,0.31942277371175215 -2082,33,0.14346719782054426,-0.0063038789533851405,-0.02021082142605058,0.036349106532940316,0.0356801340223084,0.07624289469027472,0.028064490097533777,-0.016392619560821844,-0.026774970279337448,0.08016109627930204,0.3255109488706648 -2082,50,0.15495282149612905,-0.00429319803686902,-0.01610496765449411,0.04443437966339684,0.045523520410793855,0.08797225572258924,0.04648689326010518,0.005024486210832491,-0.022390152957409433,0.09218650561784562,0.3573520153784311 -2082,67,0.1679916676953435,-0.0029134239445494387,-0.012495852033898653,0.052761740273928256,0.05762729036104463,0.09997998400880868,0.06490930128059652,0.005024486210832491,-0.018375689428947555,0.10578640438646202,0.39055274008208096 -2082,70,0.17084120268821718,-0.002707386310401492,-0.011846086537056964,0.054573041571713374,0.06030433479169156,0.10229689377866408,0.06816031846132319,0.005024486210832491,-0.017635805584820072,0.10859087885156178,0.3969484363471509 -2082,90,0.1975043430685997,-0.0014267824860291684,-0.006948396851737725,0.06561570271671346,0.0895885640775632,0.12334070131245427,0.08875006803035233,0.005024486210832491,-0.011829723996088028,0.13873716403461187,0.45844599068763975 -2082,95,0.21412911154329778,-0.0010603704395687177,-0.005080676032754384,0.0685845640800844,0.10759336662463113,0.13338341077711804,0.09416841704377693,0.005024486210832491,-0.00945955851039051,0.1569312667811724,0.4900847772689344 -2083,5,0.11526402420550586,-0.0180828357459,-0.034393786032045376,0.022341997147842556,0.01804952178034684,0.04596680910777305,-0.0016006099289624929,-0.01658323141618024,-0.04211404334261155,0.053415628607114,0.24712995537827653 -2083,10,0.1234726464420557,-0.01321775750646382,-0.029678519826668796,0.025035827822959628,0.022474718070775297,0.0552918677518219,0.0028371515495518155,-0.01658323141618024,-0.03714502963827329,0.06082738198133071,0.2707073890328294 -2083,30,0.14305492292493582,-0.006913594809653957,-0.02148902350918211,0.03524645565140023,0.034778540976680664,0.07496595535765033,0.025025958334883365,-0.01658323141618024,-0.02821702793418558,0.07937501861166261,0.32397139518390294 -2083,33,0.14533842992037535,-0.006420884235932035,-0.020635012475116427,0.036838184779216944,0.036466916056789804,0.07729228794893939,0.028354279595579096,-0.01658323141618024,-0.02733236614189955,0.08162375993557297,0.33017081333829135 -2083,50,0.1569664012938738,-0.0043677214751840126,-0.016450955875108975,0.045109902056978866,0.04653790253269057,0.08918305777558516,0.04721476026229498,0.005082910469097986,-0.02285318287804804,0.09390956528016331,0.3625637796219581 -2083,67,0.17018828463554384,-0.002959105740802672,-0.012768106158655916,0.05359042001319856,0.05892050686477017,0.10133000197686301,0.0660752457869308,0.005082910469097986,-0.018758826023159456,0.10781613827524367,0.39630918653720054 -2083,70,0.1730574639081955,-0.00274965952209862,-0.012104312533013688,0.05546652052482029,0.06165366179294329,0.10368865598935163,0.06940356704762653,0.005082910469097986,-0.018002522894734294,0.11068909111808727,0.40285039275435747 -2083,90,0.20005569264739753,-0.0014438862150296706,-0.007107313151646692,0.06673393563292862,0.09161395508614813,0.1249843922678996,0.09048293665133947,0.005082910469097986,-0.012077490935040045,0.14152733681162546,0.4654152118485132 -2083,95,0.21688356927782299,-0.0010719244656804225,-0.00520250071819793,0.06975339278911662,0.11002973562787066,0.1351383319654916,0.09603013713319236,0.005082910469097986,-0.009659000641554318,0.1601317604104452,0.4975629658133029 -2084,5,0.11659244744777679,-0.018487398436878674,-0.0350801387657029,0.0225106763781573,0.018406345881969464,0.04658108316591999,-0.0020167320639484084,-0.01677384327153863,-0.04295815020432982,0.05424684657246477,0.2501722604146696 -2084,10,0.12490880088806153,-0.013496869209347152,-0.030272786383978137,0.02526176886441091,0.02293177172636654,0.056032499490113595,0.002525301022589289,-0.01677384327153863,-0.0378879965302604,0.061822498312827205,0.27421061407319636 -2084,30,0.1448535789191723,-0.007043332205636777,-0.02192755072349444,0.03571536129509243,0.03551358139122701,0.07596777035484753,0.025235475563877657,-0.01677384327153863,-0.028787515213749067,0.08077102269589646,0.32841105151571576 -2084,33,0.14717597517371178,-0.006537981365912797,-0.02105900984719482,0.037328266191010324,0.03724105222742013,0.07832848643893822,0.02864200447765088,-0.01677384327153863,-0.02788365870643669,0.08306757182179324,0.33473518747244335 -2084,50,0.1589718226581812,-0.0044426467556601444,-0.016792515669407974,0.04578847420141155,0.0475387761389779,0.09036553144321866,0.047945648890686046,0.0051413347273634785,-0.02331244784775674,0.09562599511286198,0.36772164077954617 -2084,67,0.1724009605526924,-0.003005534489627792,-0.013031485675506625,0.054423339071393274,0.06020457156587384,0.10267779776436468,0.0672492933037212,0.0051413347273634785,-0.019137841251228388,0.10984522549894817,0.40208106104087027 -2084,70,0.17528996676504613,-0.002791965506072837,-0.01235888879473452,0.056365237205699484,0.0630093054524636,0.10506502106631398,0.07065582221749443,0.0051413347273634785,-0.018368287572213128,0.11278773401180693,0.40872352816475377 -2084,90,0.20266795751452446,-0.0014615572992684473,-0.007259737512634775,0.06785950891617765,0.09365721448073289,0.12662540797389227,0.0922304859063784,0.0051413347273634785,-0.01232316836615335,0.14433207845826515,0.4724627786341449 -2084,95,0.21977863939851522,-0.0010828848746766674,-0.005317205226634156,0.07092989398891494,0.11250830482281494,0.1369065481400748,0.09790803409600043,0.0051413347273634785,-0.009856852555364256,0.16335395889265644,0.5052508572600333 -2085,5,0.1176042916893959,-0.018893193384154433,-0.035763409526129546,0.02267697662896925,0.018770684064080796,0.04720830472754298,-0.0024429853909644565,-0.016964455126897024,-0.0438075364894753,0.05507192924342078,0.25287674953494743 -2085,10,0.12613766254484654,-0.01377885794355749,-0.030862651196104457,0.025485903121666355,0.023397914634315894,0.05678849113624318,0.0022045167808612794,-0.016964455126897024,-0.03863694200579697,0.06281324501934783,0.277359507501492 -2085,30,0.14634746301174165,-0.007173475363914942,-0.022362905244056375,0.036159814774087855,0.036254521705529945,0.07696519110115047,0.025442034319629873,-0.016964455126897024,-0.02935631879316236,0.08216948033635849,0.3325684307196721 -2085,33,0.14870274804532527,-0.006658655390167694,-0.021478853770244413,0.037819345374957465,0.03801450109979536,0.07934036718168797,0.028927664743749127,-0.016964455126897024,-0.02843468784530462,0.0845147872346146,0.339011488481567 -2085,50,0.160711288420856,-0.004516431689269098,-0.017132788413754978,0.046470090936371965,0.04853892448478817,0.09154303994297792,0.0486795494294385,0.005199758985628973,-0.023774913581553887,0.09733912735953565,0.3726082339524638 -2085,67,0.1743282010808587,-0.0030507224968471624,-0.013298747601793049,0.05526050872329677,0.061485444824897394,0.10400835365974485,0.0684314389730478,0.005199758985628973,-0.019516879830710748,0.11187103951787662,0.407583889981091 -2085,70,0.17725999461114406,-0.002833780469413241,-0.01261487563777689,0.05726920193499681,0.06434960349705805,0.10642912054891207,0.071917074255087,0.005199758985628973,-0.018732841330854465,0.11487932621768757,0.4143709324671144 -2085,90,0.20505541019886733,-0.0014784986183175276,-0.007417717927176249,0.06899241177973457,0.09567551448394909,0.12824519665175232,0.09399270607962928,0.005199758985628973,-0.012568308871682535,0.14712132062825325,0.47924726025730596 -2085,95,0.2223929864063859,-0.001095167258662687,-0.0054302086541590765,0.07211405640469502,0.11495219835093864,0.13864289107997546,0.09980209821636127,0.005199758985628973,-0.010051592835679263,0.16655349180265822,0.5126732603517798 -2086,5,0.11885339728593826,-0.0193042517563518,-0.03646666017221926,0.02284089226288622,0.01914422026425127,0.0478370214695812,-0.002879380840330497,-0.017155066982255416,-0.04468424337588039,0.055914142103614166,0.25582893623264 -2086,10,0.12747224712371827,-0.014066321999934796,-0.03146894974278441,0.02570822495733377,0.02387100132822891,0.057546013254093836,0.0018747866795679432,-0.017155066982255416,-0.0394129970127933,0.06381823510702088,0.28073252099654444 -2086,30,0.14787405264377596,-0.00730517927104993,-0.022811817946712575,0.03660407510275399,0.03700891687964583,0.0779740715331502,0.025645627315260107,-0.017155066982255416,-0.02993419876038065,0.08359149202060029,0.3368144322995393 -2086,33,0.1502583265990019,-0.006781883592496892,-0.021908015624624928,0.03831142502773986,0.03881119971989352,0.08038102834706977,0.029211253106993934,-0.017155066982255416,-0.028995890577768118,0.08598801724639833,0.34334700682867814 -2086,50,0.162372038012743,-0.004590827488401886,-0.01747964933198166,0.04715475742218304,0.04957121227487303,0.09273509878094643,0.049416461878552344,0.005258183243894467,-0.024249486505931242,0.09908863377509738,0.37747324806961113 -2086,67,0.17614690267145636,-0.0030968774009245944,-0.013573010793518338,0.05610191769412467,0.06281142353874093,0.10535918136988204,0.06962167793699066,0.005258183243894467,-0.019905278529402978,0.11394648214158039,0.41301574817558445 -2086,70,0.1791088385462761,-0.0028752239609312925,-0.012872602713081587,0.05817840955238934,0.06572922667897808,0.10781968661757094,0.07318730858664443,0.005258183243894467,-0.019103035258402644,0.11701306626165325,0.41993266331366724 -2086,90,0.20715142019838095,-0.001495487389543771,-0.007574008053400734,0.07013266040368836,0.09776472135737678,0.1298953746299705,0.095769606886932,0.005258183243894467,-0.012817821561230848,0.149977934625488,0.4858559755607799 -2086,95,0.22468979360908267,-0.0011065010817638515,-0.005547807965915827,0.0733058969486334,0.11748448688284677,0.14042712517414113,0.10171231977843499,0.005258183243894467,-0.010249083432021256,0.16987575905470845,0.5198483508547396 -2087,5,0.12032714570760727,-0.019724042669461754,-0.037160790335071636,0.0230024289173004,0.019515361599675284,0.04845951737158899,-0.003325908088966663,-0.01734567883761381,-0.04556311870383946,0.05674613885117612,0.2589682880161425 -2087,10,0.12904659789800643,-0.014355536248382334,-0.03206665001584187,0.025928734371413156,0.024339222540062294,0.05828327423273363,0.001536120434549155,-0.01734567883761381,-0.04016855893550304,0.06481275034945377,0.28431009560175735 -2087,30,0.14970930034667254,-0.007439390910076489,-0.023251245417336707,0.037048696224520075,0.037757323727088676,0.07896355691644118,0.02584626426660823,-0.01734567883761381,-0.03050646004016526,0.0850024259641034,0.34129534171733394 -2087,33,0.15210238865464926,-0.0069032252918584565,-0.022330976102286168,0.03880447893324851,0.03959157100159917,0.08140357969473222,0.02949278657010508,-0.01734567883761381,-0.02954901689910774,0.08744707312104556,0.34795014926985957 -2087,50,0.16436216928362846,-0.004666468418314448,-0.017820230702011376,0.04784247365884477,0.05058139203170772,0.0939070240179368,0.0501564008117874,0.005316607502159961,-0.024713271280991246,0.10082131071978813,0.3826403997233218 -2087,67,0.17831401112598189,-0.0031424126995977194,-0.013842106850032962,0.05694993791574248,0.0641021387340887,0.10668132442782191,0.07082002476930958,0.005316607502159961,-0.020292486845766816,0.1159902527888017,0.4187370082831671 -2087,70,0.18130694547891618,-0.0029178423974393756,-0.013128669525433885,0.059092865218200015,0.06708083996719236,0.1091734667084052,0.07446654950176641,0.005316607502159961,-0.019471763543477235,0.11912367735475718,0.4258431871731684 -2087,90,0.2096639791801572,-0.0015129597965800022,-0.007731260398791611,0.07128024939467602,0.09979686234027886,0.13150385567774778,0.0975611883282865,0.005316607502159961,-0.013067681982747988,0.15278467760844738,0.4928092551752499 -2087,95,0.22743392504006624,-0.0011168959556201734,-0.005663130887658086,0.07450540998333789,0.11993798665377382,0.14215657921534106,0.10363871821390135,0.005316607502159961,-0.010448832397774591,0.17311319536951986,0.5273757392169298 -2088,5,0.12153414281010627,-0.020140826416176077,-0.03783728609681165,0.0231615809548196,0.019873792923526364,0.04906391174253248,-0.003782577459952821,-0.017536290692972203,-0.04641004841329244,0.057560381545273945,0.2619560247360911 -2088,10,0.13048901171833277,-0.01464689267867693,-0.03265332485198411,0.026158217716394542,0.024794780320364265,0.05899635860571702,0.0011885077227250479,-0.017536290692972203,-0.0409137930446783,0.0657938355649421,0.287693330627874 -2088,30,0.15147462786734103,-0.007574577945462783,-0.023684181298709008,0.0374936781393861,0.0384795526660904,0.07992968236709987,0.026043935457834372,-0.017536290692972203,-0.031076698469798544,0.08639211364785779,0.3457667739898367 -2088,33,0.15394295305609704,-0.007027718574872107,-0.022746269260831765,0.03928519063979393,0.04034980401339772,0.0823981882089565,0.029772248130362788,-0.017536290692972203,-0.03009851387256449,0.08888546797341033,0.3525082010486228 -2088,50,0.16648920341879128,-0.004743649757871954,-0.018154745545264632,0.04853324480668008,0.05156299418342135,0.09505257236263895,0.050899361371223716,0.005375031760425455,-0.025172036319060412,0.10253100028977405,0.38783205129205367 -2088,67,0.18066123147457838,-0.0031909374847161245,-0.014105817883874796,0.05782602658058084,0.06535822347169085,0.10796768814101128,0.07202646975416471,0.005375031760425455,-0.020674027030408805,0.11801318216883627,0.4245885247216198 -2088,70,0.18367666347026826,-0.0029622752066118187,-0.01338001460180508,0.060012568932428824,0.06839848262373664,0.11049977582111686,0.075754792142533,0.005375031760425455,-0.019831746520569727,0.1212023007541071,0.4318361424340424 -2088,90,0.21251272501051427,-0.0015295483279042542,-0.007883646505173933,0.07243518953942354,0.10177815821918983,0.13307299219804905,0.09936744068785296,0.005375031760425455,-0.013316001440030251,0.15555381177527852,0.5000232839833941 -2088,95,0.23047068094164133,-0.0011275698714805378,-0.005781316383017008,0.07571260678359289,0.12232877187210542,0.14383543169072427,0.10558130323860021,0.005375031760425455,-0.010646071341418692,0.17628899818557078,0.5352088851048165 -2089,5,0.12249929121375087,-0.02056329241770254,-0.03851481512942928,0.023318356831532095,0.02023323413533959,0.049648142796961274,-0.004249381666409066,-0.0177269025483306,-0.04727575419257603,0.058379503239187884,0.2646429190812802 -2089,10,0.1316579461991787,-0.014947091694528849,-0.0332433924686433,0.026388724657365043,0.025256227586761684,0.059711935585479735,0.0008319552237355358,-0.0177269025483306,-0.04166095033354316,0.0667818496612826,0.29080672480986014 -2089,30,0.15301495245695115,-0.007709442722724201,-0.02411648277509231,0.03793901802865599,0.039207907481196194,0.08089119514396043,0.026238645746858465,-0.0177269025483306,-0.031643295745014004,0.08778871110638826,0.3499352511008925 -2089,33,0.15548422842621804,-0.007151335422363604,-0.023163411967950305,0.0397666013829705,0.041114941486806104,0.08340220137961724,0.03004964750360693,-0.0177269025483306,-0.030651257710459227,0.0903303611435478,0.3568017024045326 -2089,50,0.1683291344091296,-0.004819999402415889,-0.01848984813169284,0.0492270553847202,0.05255015809244935,0.0961961629575097,0.051645328983101486,0.0054334560186909495,-0.0256357406511179,0.10425254161550879,0.39274718230375566 -2089,67,0.1826906122326851,-0.0032375709597536693,-0.014368347957620296,0.05870695046800307,0.06662306822799376,0.10925763982433506,0.07324101289155602,0.0054334560186909495,-0.02105386286895199,0.12003555514103247,0.43014136943089615 -2089,70,0.1857730840444565,-0.003005126596556505,-0.013632829187862797,0.06093751037442991,0.06972308688001434,0.11181211027332863,0.07705201707726445,0.0054334560186909495,-0.020199355340767708,0.12329504622429752,0.43754671449662264 -2089,90,0.214969721339643,-0.0015474329037790933,-0.008038154641565952,0.07359745387111598,0.10376648766168155,0.1346415697442491,0.10118837368147122,0.0054334560186909495,-0.013561205564696732,0.15832894904636802,0.5068791131379881 -2089,95,0.23328938164561985,-0.0011385173356646937,-0.005896144702052414,0.07692745916243743,0.12472491351320115,0.1455186865613331,0.10754004570501197,0.0054334560186909495,-0.010840781672896144,0.17948535134756416,0.5426911674651758 -2090,5,0.12349644403457642,-0.020990171706338278,-0.03919385692371365,0.02347274527265352,0.020644198486135613,0.05030799215766645,-0.0047263182793754275,-0.01791751440368899,-0.04815964140564084,0.05924067042929391,0.2673452756598896 -2090,10,0.13277291375398637,-0.015243871877174296,-0.03382961634336579,0.026617721456697423,0.02575286382414494,0.060474023604425366,0.0004664659737805801,-0.01791751440368899,-0.042419141412611425,0.06780441535325163,0.29393668503987147 -2090,30,0.15434110412597657,-0.007848587928162763,-0.024560176309186454,0.038384718711025834,0.03996847162449108,0.08188925569510229,0.026430397562640484,-0.01791751440368899,-0.032222246337977434,0.089224757967332,0.3539794278991225 -2090,33,0.15685789588093757,-0.007276589917832835,-0.02358841595943808,0.04025514507066595,0.04191900266358484,0.08443287049366986,0.030324987118797473,-0.01791751440368899,-0.031215187487714936,0.09181120340634909,0.36090396387053714 -2090,50,0.16984326032549144,-0.004895828006866418,-0.01883836239120909,0.049923920873933894,0.053575852168166,0.09735810695387126,0.05239432307910047,0.005491880276956443,-0.02610615814103047,0.10601511924742912,0.39744270291106154 -2090,67,0.18436399081349372,-0.0032843188412123745,-0.014644955106693083,0.05959269409704038,0.06791591248955027,0.11056076633407907,0.0744636638973234,0.005491880276956443,-0.02144180804239144,0.12209948970920002,0.4353892748593513 -2090,70,0.1874896476984024,-0.0030492667028806653,-0.01389843751802498,0.06186770502517207,0.07107077587016762,0.11313400478127462,0.07835825831140032,0.005491880276956443,-0.020579196769383863,0.12543089752513095,0.4429364663016003 -2090,90,0.21695910572111607,-0.0015643985649322057,-0.008203404297734852,0.07476706396320527,0.10578911479652661,0.1362205601883215,0.10302398730914131,0.005491880276956443,-0.013819946163267777,0.1611297563567099,0.5133235131400904 -2090,95,0.2354236326366663,-0.0011499413099429181,-0.006019034221894065,0.07814998966944027,0.12716042579957834,0.1472300781952679,0.10951497476065623,0.005491880276956443,-0.011053257286465633,0.18267571974591293,0.5496522382491723 -2091,5,0.1247951817725599,-0.02142538912471566,-0.03985748227198452,0.023624754734272155,0.021040086708045205,0.05094626599832225,-0.005213397621931774,-0.018108126259047386,-0.049020256867109466,0.06008783384737198,0.2703521772559692 -2091,10,0.1341597628712654,-0.01554547598047709,-0.03440926166111098,0.02684520272102869,0.02623794153563307,0.06123311578582838,9.20320787402817e-05,-0.018108126259047386,-0.04316914627373916,0.06881986391299069,0.29731852810180337 -2091,30,0.15594257962703706,-0.007988570607741689,-0.024988992367145656,0.03883078018649562,0.040712244377937884,0.08285972058784537,0.02661918361830052,-0.018108126259047386,-0.032791253894899265,0.09064361418799913,0.35825487180074106 -2091,33,0.15849319504499437,-0.007402368437821906,-0.02400277536902574,0.04076439411901202,0.0427040841505573,0.08542340587151327,0.030598257260094543,-0.018108126259047386,-0.03176694115812864,0.09326944709706474,0.36523737800890405 -2091,50,0.1715850445345044,-0.004973379978782539,-0.01918152098685305,0.05062383095367533,0.05456055297167205,0.09848499657949128,0.05314632908546084,0.005550304535221938,-0.026573728620162926,0.10774027631181543,0.4023276580195481 -2091,67,0.1862369989797473,-0.003332880278194164,-0.014917973420050249,0.06048326778833863,0.06916795621081842,0.11182726182708899,0.07569440819770704,0.005550304535221938,-0.02182945336923285,0.12412461345878693,0.4408490470725833 -2091,70,0.189406272315979,-0.003093772296001129,-0.014155956661704092,0.06280313224336356,0.07237307965092328,0.11442559996732593,0.079673486697421,0.005550304535221938,-0.020955691013726317,0.12751460664529826,0.44845521567260677 -2091,90,0.21918228489160538,-0.0015817429975577984,-0.008365616566856991,0.07594401442232844,0.10772452628422188,0.13775003312907977,0.10487428157086322,0.005550304535221938,-0.014079992393122385,0.16385868610281193,0.5199046986628525 -2091,95,0.2378617312207818,-0.0011611545621713812,-0.0061434190472896225,0.07938019266720923,0.1294864324323219,0.14886274490060275,0.11150606125801338,0.005550304535221938,-0.011267812977305737,0.1858152382845323,0.5567139411609942 -2092,5,0.12626893168240785,-0.021865180679524653,-0.040523986946505657,0.023774385216387993,0.02141621719949513,0.051544048314528516,-0.005710613621678183,-0.01829873811440578,-0.04988019806332657,0.06092041966309653,0.2734716917876662 -2092,10,0.13575853304564953,-0.01585071503290149,-0.035002244737328714,0.027084037454632472,0.026709125647917897,0.06195438040513334,-0.00029134403242539036,-0.01829873811440578,-0.043932455783249016,0.06981185775621872,0.30089354928608086 -2092,30,0.15786167769432066,-0.008128201019216519,-0.025420072462284442,0.03927720809245754,0.041443738427848556,0.08380727873414631,0.02680500877175851,-0.01829873811440578,-0.033359490003020444,0.09205402997929227,0.36279927539790663 -2092,33,0.16045027642250062,-0.007529157287735665,-0.024418522389711775,0.04127492292744432,0.043473182025216356,0.08641472797998857,0.03086946278541808,-0.01829873811440578,-0.03231697758615803,0.09471843218222153,0.36985842238879224 -2092,50,0.17374916603118182,-0.005053177420437966,-0.019519399615580357,0.05132680110491327,0.05554929195923192,0.09960422927148052,0.05390135671802247,0.0056087287934874315,-0.027042064903651648,0.10946642784902746,0.40759321854963754 -2092,67,0.1886163250476122,-0.0033803045798561073,-0.015186278738356422,0.06137867670222075,0.0704253082232345,0.11309033896649368,0.07693325550854681,0.0056087287934874315,-0.02221427636832409,0.12615659465788123,0.4467400999652929 -2092,70,0.19182522537708283,-0.003137104238893752,-0.014407547739630232,0.06374381783061907,0.07368564982315412,0.11572455355189656,0.08099771195116634,0.0056087287934874315,-0.021326716812161587,0.12960147164128089,0.45450478774358805 -2092,90,0.22196515669226646,-0.00159826435928714,-0.008524954814389352,0.07712831064184848,0.10970296947053457,0.13928269170245208,0.10673924675079705,0.0056087287934874315,-0.01432541783772304,0.1666246129558262,0.5270343340654241 -2092,95,0.24090063540637494,-0.0011721242526198934,-0.006261750214029067,0.0806180737931365,0.13185777813210545,0.15051605873364513,0.11351333434460303,0.0056087287934874315,-0.011471439507370305,0.18898094834562634,0.5644618804184369 -2093,5,0.12759365064650774,-0.022313419554587505,-0.04123429008982635,0.023921631081608854,0.02179015659859545,0.05214295922431257,-0.006217962027934709,-0.018489349969764174,-0.05075547558585513,0.06176086167930836,0.2764995926828606 -2093,10,0.13722643867135048,-0.016159387195928507,-0.0356141618849833,0.027321641943707065,0.02718463651337855,0.06267550752332016,-0.000683656287316514,-0.018489349969764174,-0.04471871699992624,0.0708309004449093,0.3044204059839477 -2093,30,0.15973525774776937,-0.00826869007011807,-0.025868641848229682,0.039723988335431136,0.04220674263991927,0.08478881237046892,0.026987875451974425,-0.018489349969764174,-0.033952509500808185,0.09349916414654405,0.36733656673167414 -2093,33,0.16234995718449355,-0.007655050690600815,-0.024851514565097807,0.0417840092080113,0.044277435473559654,0.08742337777683482,0.03113860612372805,-0.018489349969764174,-0.03288720595029754,0.09621770565922112,0.3745535579237519 -2093,50,0.1758350036814809,-0.005132529995682282,-0.01986784573029738,0.05203280552603309,0.056591243048109884,0.10076082049141756,0.054659405976785376,0.005667153051752926,-0.027521602928216742,0.1112492452726496,0.4129021839017919 -2093,67,0.1908904897272587,-0.0034290187075857077,-0.015461863002062065,0.06227889503707209,0.07175578321551376,0.11440133217245452,0.07818019611400283,0.005667153051752926,-0.022606702616741813,0.1282668048804214,0.4527415515658407 -2093,70,0.19419484589099884,-0.0031808921223655594,-0.014671808353937103,0.06468974114564684,0.07508972661328077,0.11707202860074545,0.08233092921471642,0.005667153051752926,-0.021702921446600253,0.13178418209208018,0.4606260500538464 -2093,90,0.2247557356506586,-0.0016149486614440423,-0.00868316696484848,0.07831993644167642,0.11180956796837051,0.14086267321555618,0.1086188925647827,0.005667153051752926,-0.01458282705474327,0.16952988617534243,0.5343577729479358 -2093,95,0.24400117012113332,-0.0011837620336710558,-0.006378503858755471,0.0818636161350455,0.1344046338568949,0.15222401898998025,0.11553677458874545,0.005667153051752926,-0.011674667627506387,0.1923345584226303,0.5723500926548475 -2094,5,0.12893356905579567,-0.02275895397570709,-0.04193174180435816,0.024066492329934734,0.022191305450251907,0.05279746909941128,-0.006735445876901314,-0.018679961825122566,-0.051623698140819824,0.06262326071091105,0.27956134927719156 -2094,10,0.13867218732833864,-0.016471431101779593,-0.03621222165865359,0.02755800795527885,0.027692731703500548,0.06342813543554661,-0.0010849083293730424,-0.018679961825122566,-0.04549191057618495,0.07187079330625315,0.30789960364355623 -2094,30,0.16142806258648634,-0.008410021025087928,-0.02631054547065642,0.04017112937150468,0.0429846865967171,0.08576914935179496,0.02716778608790823,-0.018679961825122566,-0.03454258780454578,0.09495251434151121,0.37170607505051995 -2094,33,0.16407402835339308,-0.007782428376847085,-0.025280954727455587,0.04228409800483874,0.04508291167826522,0.08843524803438302,0.03140568970398443,-0.018679961825122566,-0.03345383001216274,0.09772480890599897,0.37907393004597145 -2094,50,0.17770255230367185,-0.005213003911129525,-0.02021619166026655,0.052741864858326486,0.057636793475629805,0.10190856405196004,0.05542047200382961,0.00572557731001842,-0.02800514872840385,0.11303054583049171,0.4179811397320672 -2094,67,0.1929153777047992,-0.0034772003099379934,-0.01573853252580736,0.06318394859450731,0.07306903830413894,0.1156998146541755,0.07943525916159473,0.00572557731001842,-0.02300690373953346,0.13036287519119635,0.45837376884041003 -2094,70,0.19626039311885835,-0.003224572256099336,-0.014937976429534863,0.06564090734876982,0.07645580189651076,0.11839390127724493,0.08367316277767092,0.00572557731001842,-0.02208627630630152,0.13394396243364762,0.4664141014769834 -2094,90,0.22714774923026562,-0.0016326101162676522,-0.008853728995228353,0.07951890260853822,0.11385193211229222,0.1424196034013695,0.11051321901282019,0.00572557731001842,-0.014845061848172258,0.17237531967956732,0.5412076161229399 -2094,95,0.24660119001567363,-0.0011938491081248685,-0.0065046102595798395,0.08311683096772064,0.13686254709211929,0.15388519241926962,0.11757640142212038,0.00572557731001842,-0.011881330528891529,0.19559540924256213,0.5797628829696977 -2095,5,0.1303068486303091,-0.023210757317491882,-0.04260180226990469,0.024208980236150007,0.022566885911815774,0.053403910237352054,-0.007263071848217911,-0.01887057368048096,-0.052513420660649984,0.06345102317042393,0.2826058717860975 -2095,10,0.14014314953237772,-0.01678814580585309,-0.03679991801827725,0.0277931380695093,0.028174882341771658,0.06414632453088694,-0.0014951074454748823,-0.01887057368048096,-0.0462508321748685,0.07287325089608108,0.31136951461864615 -2095,30,0.16312687880694868,-0.00855362450813193,-0.026743444957540018,0.04061863683807036,0.043724443051443795,0.08671163460975806,0.027344723676840144,-0.01887057368048096,-0.03512252269924876,0.09637399514161987,0.3760701695361306 -2095,33,0.16579683283567428,-0.007911811686289912,-0.025703033667739524,0.042785181877138444,0.04585868038730441,0.08941303223645103,0.03167069895242739,-0.01887057368048096,-0.03401467298617767,0.09919749605056456,0.3834802869134539 -2095,50,0.17956811184436083,-0.005292145323690723,-0.020553366229264562,0.05345397394147054,0.058631264039054325,0.10301454890177447,0.056184549941235236,0.005784001568283914,-0.02847789592625484,0.11477774518796711,0.42296181699936897 -2095,67,0.19494395988732577,-0.003526324229845164,-0.01600886884379207,0.06409383221420345,0.07433634475311171,0.11696094536665154,0.08069840093004307,0.005784001568283914,-0.023394934442176336,0.13241722387963745,0.46395970722510893 -2095,70,0.1983169134616852,-0.00326832970208492,-0.015192116657303908,0.06659732676063386,0.0777891323044502,0.11967693968469424,0.08502437377667035,0.005784001568283914,-0.022459527130672497,0.13606306266806184,0.4721453665896451 -2095,90,0.22952609561383724,-0.001650103093886984,-0.009015495567530124,0.08072521453579691,0.11583915779385187,0.14394195582370767,0.11242222609490947,0.005784001568283914,-0.015100638910056013,0.17516590512848443,0.5479687973543146 -2095,95,0.2491791153475642,-0.0012029372680185308,-0.0066166902973514565,0.08437772392855407,0.13925110293369478,0.1555121290932917,0.11963217598136833,0.005784001568283914,-0.012084630670538377,0.19880742947774743,0.587096356101906 -2096,5,0.131353915771842,-0.023665232471368747,-0.043280701116053984,0.024349080706774207,0.02297080905951302,0.05403279739699162,-0.007800832047764602,-0.019061185535839353,-0.05339256078895283,0.0643057735624493,0.28542077162918944 -2096,10,0.14132948883622887,-0.01710492479624383,-0.037386989845480695,0.028027027126075476,0.028678232700592388,0.06490402884277008,-0.0019142439197821584,-0.019061185535839353,-0.04701554353407447,0.0738941251357011,0.31457256210330975 -2096,30,0.16463584201335907,-0.008697132527389543,-0.027182672528652956,0.04106649664164771,0.04448369916563906,0.08766466113893691,0.027518707650449923,-0.019061185535839353,-0.03570218016686822,0.0978152197097985,0.3801997076486838 -2096,33,0.1672895117327571,-0.008041060798305006,-0.02612472004204583,0.0432872689149549,0.04665366382009649,0.09039437129048476,0.0319336533007367,-0.019061185535839353,-0.03457847870894606,0.10069648114823859,0.38776574884439596 -2096,50,0.1812691234409809,-0.005372723907026131,-0.02089814263324451,0.05416912761514233,0.05964012851908062,0.10413812827694577,0.056951649504842126,0.005842425826549408,-0.02895236177624775,0.11654599126403907,0.4278293125369219 -2096,67,0.1968004765406251,-0.0035754118530727007,-0.01628232694740012,0.06500853557551468,0.07561473606594539,0.11821037060283654,0.08196965542478743,0.005842425826549408,-0.02378738142393044,0.13448645811941073,0.4694663848846749 -2096,70,0.2002480930566788,-0.0033132676849584753,-0.015452563488726733,0.06753574417592294,0.07913133294644176,0.12094956074432762,0.0863846010750742,0.005842425826549408,-0.022838511610685334,0.1382009172301447,0.4776905437504021 -2096,90,0.231848484402895,-0.0016660258352466893,-0.009183305897933898,0.08193886143672646,0.11781211401127623,0.14544893155013497,0.11434591381105057,0.005842425826549408,-0.01536399278157604,0.17795094459093347,0.5546686792800224 -2096,95,0.2516944306120276,-0.001212848755073783,-0.006745807568268024,0.08564628374276143,0.14161175165341436,0.1571462769738731,0.12170414684568866,0.005842425826549408,-0.012295315893973806,0.20201529793102277,0.5943686069148837 -2097,5,0.13251762075424195,-0.0241302542002097,-0.04397506817075361,0.02448679937919952,0.023417590234530477,0.0547345723789948,-0.0083487410493012,-0.01925179739119775,-0.05430087905492169,0.06520228445804008,0.28835781139418887 -2097,10,0.14258275364041328,-0.017426616416980706,-0.03799688846184052,0.028259675124977388,0.02923559618487454,0.06570240902800212,-0.002342332326054683,-0.01925179739119775,-0.047803675902666105,0.07496170718543013,0.31792889023805326 -2097,30,0.16611592465788125,-0.00884183133233791,-0.027638241246758604,0.04151471723832501,0.045313608854738154,0.08867161687736026,0.027689721006017777,-0.01925179739119775,-0.036294964772342224,0.09932947075606868,0.3844071365908234 -2097,33,0.1688112765431404,-0.008173021316190594,-0.026564272360953267,0.04379035372492512,0.04751473289482843,0.09142179369065999,0.03219452845931265,-0.01925179739119775,-0.035157283326090624,0.10225189270439726,0.3921504805040394 -2097,50,0.18293729453086852,-0.005455022871213806,-0.021264780865502826,0.05488733103966477,0.06071445994199763,0.10530593377487876,0.057721765836730346,0.0059008500848149025,-0.029449252562709683,0.1183761661621367,0.4327586141239354 -2097,67,0.19859966736882925,-0.0036247324325502732,-0.01657399875151778,0.06592806899908686,0.07696129456023103,0.11950146202386723,0.08324900807206798,0.0059008500848149025,-0.02419226262029794,0.13663396912208015,0.47498703844155715 -2097,70,0.2021133349120617,-0.0033576726475985034,-0.01572417281965893,0.06847559892650742,0.08053118522808946,0.12226941101410069,0.08775381552536285,0.0059008500848149025,-0.02323481751708826,0.14040962236373405,0.48333171113540074 -2097,90,0.23401936112344265,-0.0016821496094964145,-0.00936639253864257,0.08315984870468991,0.11989260592823592,0.14700958196418137,0.11628426272956374,0.0059008500848149025,-0.015638321333686388,0.18083264865245863,0.5613392823767018 -2097,95,0.25407827565819024,-0.001221438944064631,-0.0068764283876973425,0.0869225160477349,0.14404799887711725,0.15879786051501124,0.12379227515172186,0.0059008500848149025,-0.012525701857027671,0.20530481209569768,0.6015573968896697 -2098,5,0.1338200208902359,-0.024597993895018183,-0.04466777661246151,0.02462213625342595,0.023828949623484513,0.05537865279657,-0.008906768490828094,-0.01944240924655614,-0.055205436870497074,0.06606384562900745,0.29128763970923455 -2098,10,0.14398356610536575,-0.017751645613558947,-0.03859340599105748,0.028491087226537953,0.029747151700238686,0.06645764163325113,-0.0027793447312528157,-0.01944240924655614,-0.04858650343064058,0.07600767645380707,0.32136954966238496 -2098,30,0.16782616210728885,-0.008984392703601352,-0.028084847703029485,0.041963304265494446,0.0460909978107642,0.08964308232308635,0.027857780746263494,-0.01944240924655614,-0.036885218495283235,0.10080048947845349,0.38883523242547724 -2098,33,0.17051644179672004,-0.00830650490256442,-0.026992307256791685,0.044294441700412086,0.04833624511637725,0.09241908134397121,0.03245334871775495,-0.01944240924655614,-0.035725076375788645,0.10376710410029223,0.3966470868233361 -2098,50,0.18488976679742336,-0.0055382283677257215,-0.021618260879886077,0.0556085893753608,0.06174702240519041,0.10643274598914439,0.058494903794819836,0.005959274343080396,-0.02993019394966531,0.12017066644551033,0.4379121003319119 -2098,67,0.20076538084745407,-0.0036745442301579457,-0.016852489445330212,0.06685242216427412,0.07827011008573527,0.1207655450888824,0.08453645401396478,0.005959274343080396,-0.024592702596852527,0.13874308745241912,0.48077813313224643 -2098,70,0.20432708349227907,-0.0034026530399048475,-0.015994057116358085,0.06942015526217561,0.0818872616491047,0.12355602563111968,0.08913202684337618,0.005959274343080396,-0.023620385226699146,0.14257917432374828,0.4892230020674525 -2098,90,0.23660128515958787,-0.0016997336939348871,-0.009538567118344232,0.08438818173305021,0.12192462396558638,0.1485196774199392,0.11823729228212872,0.005959274343080396,-0.015901195936901223,0.18368458896799086,0.5683559172156041 -2098,95,0.2569560150280595,-0.0012312332058856577,-0.007001883385822331,0.08820642648086668,0.14644694063190625,0.16043068183604112,0.1258965803311477,0.005959274343080396,-0.012740191627865903,0.20857447919140512,0.6092053388548042 -2099,5,0.13516385807991027,-0.025077121515096945,-0.04537827387427287,0.024755094148149585,0.02423513618546825,0.056006361808749676,-0.009474939876424959,-0.019633021101914536,-0.05611998639503876,0.06693972397973244,0.29426007964424294 -2099,10,0.1454361243546009,-0.01807903585877648,-0.03921240662478378,0.028721260850595717,0.030253111500863593,0.06721388548452747,-0.0032253042104962593,-0.019633021101914536,-0.049383253103029656,0.07706035696673971,0.32481812196753707 -2099,30,0.1695985238164663,-0.00912914565738775,-0.0285416181950495,0.042412249267067735,0.04688681914047473,0.09062192313598083,0.028022882013267133,-0.019633021101914536,-0.037491342818458416,0.10228754658626932,0.39336354470100565 -2099,33,0.1723277240008116,-0.008440580456304504,-0.027432993048774636,0.04479953014473432,0.04917199889392418,0.09342485586113662,0.03271010921814365,-0.019633021101914536,-0.036306184044760145,0.10530325782674571,0.40126450499512867 -2099,50,0.18686565632075072,-0.00562091448667658,-0.02197803835931009,0.05633288714126163,0.06281557369747315,0.10758341323462108,0.059271058521190655,0.006017698601345891,-0.03041839428584544,0.1220079783258346,0.4431926127969973 -2099,67,0.20298078361451624,-0.0037258954995863006,-0.017139469933106576,0.06778161055204523,0.07963798942198998,0.12204418669471137,0.0858320126821576,0.006017698601345891,-0.02500163180307515,0.14090210837024514,0.48673330090180056 -2099,70,0.2065890279918909,-0.0034484003153793666,-0.016264951223737174,0.07036941318292754,0.08330741590138449,0.12487326041827257,0.09051924474495404,0.006017698601345891,-0.02401809247430681,0.14480694364221963,0.4952658594162179 -2099,90,0.2392711578771472,-0.001717259092882145,-0.009706900328439379,0.08562384973508141,0.12406108994546795,0.15008032983189162,0.12020503161626514,0.006017698601345891,-0.016167242287442245,0.18663293195033367,0.575660715692109 -2099,95,0.25984918862879275,-0.0012410192175722368,-0.007132563844255773,0.0894980037673724,0.14901003087948453,0.162115420439847,0.12801707209980606,0.006017698601345891,-0.012954320089219314,0.21197351114850435,0.6170188451482914 -2100,5,0.13669585468769074,-0.02556498198406688,-0.046116674320126026,0.02488567024467433,0.024642131754319785,0.05661868387841895,-0.010053249133691869,-0.01982363295727293,-0.057070622070547306,0.06781369521858208,0.2975013590630854 -2100,10,0.14707717160135508,-0.018410061158270666,-0.03985234737676048,0.028950195997150676,0.0307696583105572,0.0679642280109216,-0.0036802059058650767,-0.01982363295727293,-0.05020074464918629,0.07812055030717151,0.3284040704703633 -2100,30,0.1713763500213623,-0.00927880821546991,-0.029009499513428814,0.04286155224304489,0.04770218311814526,0.09161531137877467,0.02818501509118882,-0.01982363295727293,-0.038114233456723476,0.10380674314538049,0.3979272571458382 -2100,33,0.17414196286797523,-0.00857518266875099,-0.027887530228957135,0.0453056190578918,0.050031569891906096,0.0944450157220722,0.03296479538671895,-0.01982363295727293,-0.036901769264457186,0.1068774134139501,0.4059048350269342 -2100,50,0.1887540393948555,-0.005704893446494996,-0.02234171998778951,0.057060239818336043,0.06392570472454134,0.108754513559798,0.06005022515792286,0.0060761228596113845,-0.030915797015007206,0.12388216951555012,0.4483694614047643 -2100,67,0.2049223515495658,-0.003776521494876227,-0.017428128593540496,0.06871562384175436,0.08105541917312933,0.12336412679599836,0.08713565492912678,0.0060761228596113845,-0.025415002591813462,0.14312703447362185,0.49254545536210304 -2100,70,0.20857905423641204,-0.0034930851157180067,-0.0165401095741176,0.07132337268876317,0.08480486496756824,0.1262308615272151,0.09191544008257684,0.0060761228596113845,-0.02441464294775819,0.1470997679953486,0.5011831717561493 -2100,90,0.24152313407510517,-0.001732520177041148,-0.009875550547648815,0.08686685271078348,0.12629159456166056,0.15169620585022486,0.122187403005254,0.0060761228596113845,-0.016436430195158645,0.1897012517753442,0.5826248933959443 -2100,95,0.2622400231808424,-0.001250298761529239,-0.007255482109758254,0.09079724790725203,0.1517381463342976,0.16384344908211965,0.13015370187849756,0.0060761228596113845,-0.013168450362408693,0.2155101050160795,0.6245105528685639 diff --git a/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp85_projection_2100_global.csv b/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp85_projection_2100_global.csv deleted file mode 100644 index c96e42c..0000000 --- a/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp85_projection_2100_global.csv +++ /dev/null @@ -1,847 +0,0 @@ -year,percentile,exp,antdyn,antsmb,greendyn,greensmb,glacier,landwater,antnet,greennet,sum -2007,5,0.00803840346634388,0.002730532782152295,-0.00019164537661708891,0.0016901363851502538,0.0014884062111377716,0.009809032594785095,0.0002794466563500464,0.002600881562102586,0.0032208205200731756,0.024494150351438294 -2007,10,0.00900394655764103,0.002750872168689966,-0.0001606561374501325,0.001702548936009407,0.001501323888078332,0.010140316374599934,0.00028879407909698784,0.0026434402461745776,0.00324392132461071,0.02581651372820488 -2007,30,0.011707784608006477,0.0028334427624940872,-0.00010707565525081009,0.0017344666412100196,0.0015359563520178198,0.010834051575511695,0.0003355311928316951,0.0027452007416286506,0.0033014778164215386,0.029272809398389655 -2007,33,0.012020709924399853,0.0028456713422201573,-0.00010182185360463336,0.0017415594775229692,0.0015403234865516424,0.010907737696543336,0.0003425417235121131,0.0027594000301178314,0.003308492712676525,0.029701532101680642 -2007,50,0.013373138383030891,0.0029162338469177485,-7.581615500384942e-05,0.0017717040609568357,0.001567708735819906,0.011309161316603422,0.00038226827746257186,0.0028357511619105935,0.0033460151171311736,0.0314538227430603 -2007,67,0.014666641131043434,0.00298776590032503,-5.241474718786776e-05,0.0017983021680265665,0.0016006462974473834,0.011778074316680431,0.0004219948314130306,0.0029134345895727165,0.003385582937626168,0.03306750724725134 -2007,70,0.014900739304721355,0.0030012449249625208,-4.811262260773219e-05,0.001805395120754838,0.0016077874461188912,0.011877435259521008,0.00042900542030110955,0.0029278158181114122,0.003393467154819518,0.033401016602147136 -2007,90,0.017665695399045944,0.0030943932943046093,-1.7039590602507815e-05,0.0018444056622684002,0.001685899100266397,0.012814879603683948,0.0004734056710731238,0.003033706899259414,0.003475873882416636,0.03658420709471102 -2007,95,0.01872287131845951,0.00312490900978446,-6.926881746949275e-06,0.0018532717367634177,0.0017335314769297838,0.01323755457997322,0.00048508995678275824,0.0030717053268745076,0.003523893578676507,0.037954177132633035 -2008,5,0.009411504492163658,0.002961205318570137,-0.0003713573096320033,0.001925242249853909,0.0015166203957051039,0.00989010906778276,0.0005511200288310647,0.0027138765988638626,0.0035265108745079488,0.027082726252046996 -2008,10,0.010384941473603249,0.003003259189426899,-0.00031120917992666364,0.0019508516415953636,0.001541546534281224,0.010434946976602077,0.0005707318778149784,0.0027983836480416358,0.0035731815733015537,0.02868853168838541 -2008,30,0.013110887259244919,0.0031729806214571,-0.0002056582015939057,0.0020167045295238495,0.0016096584731712937,0.011602311674505473,0.0006687914719805121,0.003004676487762481,0.003689144621603191,0.03269170137718902 -2008,33,0.013426371850073338,0.003198161961045116,-0.0001951091253431514,0.002031338633969426,0.00161837472114712,0.011724714189767838,0.0006835003150627017,0.0030340651984442956,0.0037033731420524417,0.03315075097190857 -2008,50,0.014789857901632786,0.003344325814396143,-0.0001441341155441478,0.0020935330539941788,0.0016719467239454389,0.012377348728477955,0.0007668508915230632,0.0031912210397422314,0.0037792642833665013,0.03516171635783394 -2008,67,0.016093937680125237,0.0034953451948240405,-9.827991743804887e-05,0.002148410538211465,0.0017362330749165268,0.013106387108564377,0.0008502015843987465,0.0033539441792527214,0.0038583510322496295,0.03704212242635549 -2008,70,0.016329949721693993,0.003524384251795709,-8.986520697362721e-05,0.002163044409826398,0.0017499258974567056,0.013255969528108836,0.000864910485688597,0.0033855779620353132,0.0038738317438401283,0.037422930102911776 -2008,90,0.019117513671517372,0.003738280152902007,-2.905346973420802e-05,0.0022435314022004604,0.0019029773538932204,0.014690252486616375,0.0009580671321600676,0.003622281386924442,0.004035602603107691,0.04099382563872496 -2008,95,0.02018333226442337,0.003820823971182108,-8.405218977713957e-06,0.0022618239745497704,0.0019962547812610865,0.015359122492372985,0.0009825819870457053,0.0037170939904171973,0.004130265908315778,0.042607052180756 -2009,5,0.010290154255926609,0.003192017786204815,-0.0005858021904714406,0.0021603177301585674,0.0015477625420317054,0.010011195205152035,0.0008150199428200722,0.0028005468659102915,0.0038399543846026063,0.029277819439903395 -2009,10,0.011371897533535957,0.0032571617048233747,-0.0004908435512334108,0.0021999087184667587,0.001586676575243473,0.010772752575576305,0.000845813425257802,0.0029330099059734493,0.003912837244570255,0.031231266162649263 -2009,30,0.014401137828826904,0.003518613986670971,-0.0003239485959056765,0.0023017139174044132,0.001694315462373197,0.012410992756485939,0.0009997807210311294,0.0032550626492593437,0.004094056936446577,0.036050846669240855 -2009,33,0.014751723036170006,0.0035574725014157595,-0.0003072011168114841,0.0023243376053869724,0.001707959221675992,0.012581178126856685,0.0010228757746517658,0.0033003796052071266,0.0041160382912494246,0.03657915241637966 -2009,50,0.01626691408455372,0.0037842760793864727,-0.0002266397641506046,0.0024204871151596308,0.0017930028261616826,0.013482754118740559,0.0011537481332197785,0.003544527731719427,0.004234537249431014,0.038986539460893255 -2009,67,0.01771608740091324,0.004022738137282432,-0.0001542352547403425,0.002505325013771653,0.0018942529568448663,0.01446848176419735,0.0012846202589571476,0.0038014798659423837,0.004358654170064256,0.04127459936629748 -2009,70,0.017978359013795853,0.004069418972358107,-0.00014080027176532894,0.0025279484689235687,0.0019161889795213938,0.014670481346547602,0.0013077154289931059,0.0038532421240233816,0.004382761637680232,0.04173201532103121 -2009,90,0.02107607200741768,0.004431660752743483,-4.467406542971722e-05,0.0026523773558437824,0.00215870700776577,0.01658243089914322,0.0014539845287799835,0.004248249460943043,0.004638119414448738,0.045984577719355005 -2009,95,0.022260475903749466,0.004587744828313589,-1.1976075256825425e-05,0.002680656500160694,0.0023056436330080032,0.01748741725459695,0.001492476207204163,0.004421421261940849,0.004787939076777548,0.04795845033368096 -2010,5,0.011235869489610195,0.0034229697193950415,-0.0008270868274848908,0.0023953625932335854,0.001570083317346871,0.009975207131356,0.0010711464565247297,0.002869997697416693,0.004150049644522369,0.03133935666655816 -2010,10,0.012390912510454655,0.00351257948204875,-0.0006907949689775705,0.002449719700962305,0.0016254376387223601,0.010959106031805277,0.0011140386341139674,0.003058617818169296,0.004252151737455278,0.03364833247360366 -2010,30,0.01562541536986828,0.003870342392474413,-0.00045244290959089994,0.0025894949212670326,0.0017794771119952202,0.01314303260296583,0.0013284990563988686,0.00350751361111179,0.004505101242102683,0.039263873448362574 -2010,33,0.01599975675344467,0.003923602108843624,-0.0004286227631382644,0.0026205561589449644,0.0017997920257039367,0.01337085073813796,0.0013606681022793055,0.003567107836715877,0.0045358658686745915,0.03987100744561758 -2010,50,0.017617616802453995,0.004236084409058094,-0.00031393469544127584,0.0027525662444531918,0.0019207592122256756,0.014539130963385105,0.0015429593622684479,0.003905613935785368,0.0047010029666125774,0.04266255269612884 -2010,67,0.01916498690843582,0.004569944422692061,-0.00021050864597782493,0.0028690455947071314,0.002064510714262724,0.01578814508393407,0.001725250855088234,0.004265406576450914,0.00487518883543089,0.045318402842676735 -2010,70,0.019445030018687248,0.004636347573250532,-0.00019165633857483064,0.002900106832385063,0.0020960418740287425,0.016047475859522816,0.0017574199009686708,0.004339113045716658,0.004910182429011911,0.04585124837612966 -2010,90,0.02275264635682106,0.005174534395337105,-5.352480002329685e-05,0.0030709432903677225,0.002441226039081812,0.018440309911966324,0.001961157424375415,0.004922432359308004,0.0052715063793584704,0.050761525408597664 -2010,95,0.02401730604469776,0.005425671581178904,-6.674962605757173e-06,0.0031097696628421545,0.0026540211401879787,0.019588085915893314,0.0020147725008428097,0.005192782560698104,0.005486812372691928,0.05306166249938542 -2011,5,0.012304658070206642,0.0036540618166327477,-0.0010673441458493472,0.0026303771883249283,0.0015995572146493941,0.010070037329569459,0.0013194996863603592,0.0029403689899481834,0.004467730899341405,0.03374899226673733 -2011,10,0.013479082845151424,0.0037695125211030245,-0.0008914593490771949,0.0027002845890820026,0.0016710071358829737,0.011252051126211882,0.0013754075625911355,0.0031824413454160094,0.004599273286294192,0.03627612994423544 -2011,30,0.01676785945892334,0.0042281667701900005,-0.0005838759243488312,0.002880047308281064,0.0018700231215916575,0.013879084959626198,0.0016549464780837297,0.0037611786974593997,0.00492530781775713,0.0424111470230855 -2011,33,0.01714848354458809,0.004296551635488868,-0.0005531262722797692,0.0029199945274740458,0.001896224683150649,0.014148298110812902,0.0016968772979453206,0.0038370608453988098,0.004965119906701148,0.043066375092021186 -2011,50,0.018793489784002304,0.004699750803411007,-0.0004051318974234164,0.003089770209044218,0.002052728785201907,0.015550626441836357,0.001934485393576324,0.004274396749678999,0.005177825049031526,0.04613014007918537 -2011,67,0.02036682516336441,0.00513696458656341,-0.00027166816289536655,0.003239572513848543,0.0022377818822860718,0.01703088792040944,0.002172093605622649,0.0047460585192311555,0.005402392465621233,0.04907640670193359 -2011,70,0.020651567727327347,0.005225171707570552,-0.00024733183963689977,0.003279519733041525,0.0022791684605181217,0.017338179051876068,0.002214024541899562,0.004843288799747825,0.005447656277101487,0.04965404030226637 -2011,90,0.024014683440327644,0.005966902244836092,-6.91205495968461e-05,0.0034992294386029243,0.0027254330925643444,0.020147496834397316,0.0024795865174382925,0.005641670111799613,0.0059147253166884186,0.055034569231793284 -2011,95,0.025300564244389534,0.006334604695439339,-8.636193342681509e-06,0.0035491634625941515,0.003001577220857138,0.02149893194437027,0.0025494713336229324,0.006032119083101861,0.006192627141717821,0.05755328136292519 -2012,5,0.013517240062355995,0.0038852933794260025,-0.0013041174970567226,0.002865361049771309,0.0016297316178679466,0.010171101009473205,0.0015600797487422824,0.003014154441189021,0.004787169606424868,0.0363343035653088 -2012,10,0.014778546057641506,0.004027960821986198,-0.0010889972327277064,0.0029516038484871387,0.0017170023638755083,0.011536415666341782,0.0016299202106893063,0.0033109181094914675,0.0049481257563456895,0.03913718015246559 -2012,30,0.01831061765551567,0.004592086188495159,-0.0007134063635021448,0.0031733710784465075,0.00196022167801857,0.014564856886863708,0.0019791231025010347,0.004020359338028356,0.005349118262529373,0.045935862135957 -2012,33,0.018719399347901344,0.004676320306025446,-0.0006758983363397419,0.0032226527109742165,0.001992114819586277,0.014874715358018875,0.002031503478065133,0.004114924115128815,0.005397957140812651,0.04666315045098599 -2012,50,0.020486099645495415,0.005175275262445211,-0.0004952334566041827,0.003432099474593997,0.002183576114475727,0.016488246619701385,0.0023283257614821196,0.0046567413955926895,0.0056589661398902535,0.05008336348691955 -2012,67,0.022175824269652367,0.005723798321560026,-0.0003324026765767485,0.003616905305534601,0.0024093652609735727,0.01818103585392237,0.002625148044899106,0.005246118089416996,0.005934542044997215,0.05336436648445669 -2012,70,0.022481631487607956,0.0058358904439955945,-0.0003025465877726678,0.0036661869380623102,0.002460082061588764,0.018527686595916748,0.002677528653293848,0.005370002472773194,0.00599004765972495,0.054027229716302826 -2012,90,0.02609354257583618,0.00680876336991787,-8.506228914484382e-05,0.003937236033380032,0.0030055639799684286,0.021712355315685272,0.003009271342307329,0.006409147579688579,0.006560770072974264,0.060007136870990505 -2012,95,0.027474550530314445,0.007314542308449745,-1.1491801660668531e-05,0.003998837433755398,0.0033442394342273474,0.023249991703778505,0.0030965718906372786,0.006935311794222798,0.006901128345634788,0.06281597865745425 -2013,5,0.015132676810026169,0.00411666464060545,-0.0015486970078200102,0.0031003146432340145,0.0016770695801824331,0.010506565682590008,0.0017928860615938902,0.003077074186876416,0.005124419694766402,0.03961249889780447 -2013,10,0.01644059270620346,0.004287924617528915,-0.0012974385172128677,0.003203677013516426,0.0017797958571463823,0.01203794488683343,0.0018775764619931579,0.003427056421060115,0.005315900081768632,0.042633500743977495 -2013,30,0.02010319009423256,0.004962100647389889,-0.0008555626263841987,0.003469466231763363,0.002065651398152113,0.01535971201956272,0.0023010284639894962,0.004271295212674886,0.005792850395664573,0.04984156463833642 -2013,33,0.020527075976133347,0.005062908898107708,-0.0008112997747957706,0.003528530476614833,0.002103895414620638,0.01570136422291398,0.002364546060562134,0.00438710511662066,0.0058506999630481005,0.050621320099162405 -2013,50,0.02235906384885311,0.00566265732049942,-0.0005983777809888124,0.0037795535754412413,0.0023294996935874224,0.017494864761829376,0.002724480116739869,0.005036963848397136,0.0061625209636986256,0.05430140841053799 -2013,67,0.024111231788992882,0.006330445008352401,-0.0004070596187375486,0.0040010446682572365,0.0025972307194024324,0.0193715918622911,0.0030844141729176044,0.00575213165895548,0.006489574648439885,0.057856188986042986 -2013,70,0.024428339675068855,0.006468503922224044,-0.00037105951923877,0.004060108680278063,0.002656030934303999,0.01975718289613724,0.0031479322351515293,0.005906816804781556,0.006554763996973634,0.05857259726035409 -2013,90,0.028173726052045822,0.007700118236243725,-0.00011667233775369823,0.004384961910545826,0.0033008805476129055,0.023280936852097513,0.0035502114333212376,0.007216451282147318,0.007231329334899783,0.06499834537971766 -2013,95,0.029605768620967865,0.00836548674851656,-3.0315703043015674e-05,0.004458792507648468,0.003699328750371933,0.02498372113332152,0.0036560744047164917,0.007907059683930129,0.007632906630169598,0.06803572672943119 -2014,5,0.016829488798975945,0.0043481760658323765,-0.001829636632464826,0.0033352377358824015,0.0017344130901619792,0.010962268337607384,0.0020179194398224354,0.003111088299192488,0.005475935223512351,0.04312333765310541 -2014,10,0.018148086965084076,0.004549403674900532,-0.0015333117917180061,0.0034565043170005083,0.001853747060522437,0.012655663304030895,0.002118376549333334,0.0035211622598581016,0.0057005391921848055,0.04630146126146428 -2014,30,0.021840602159500122,0.005338210612535477,-0.001019673002883792,0.0037683327682316303,0.002188133541494608,0.01625185031443834,0.0026206630282104015,0.004507158824708313,0.006259503401815891,0.05380445834016427 -2014,33,0.02226795069873333,0.005456316941417754,-0.0009691778104752302,0.0038376280572265387,0.002231540158390999,0.016626043487340213,0.0026960058603435755,0.004645178560167551,0.006327874579001218,0.054627763575699644 -2014,50,0.024114903062582016,0.006161898374557495,-0.0007195415091700852,0.004132132977247238,0.0024974269326776266,0.018602831289172173,0.0031229492742568254,0.005411980419012252,0.006692674709483981,0.058540443977108225 -2014,67,0.025881383568048477,0.006956906197592618,-0.0004947074339725077,0.004391989670693874,0.0028131986036896706,0.02067461423575878,0.0035498926881700754,0.006263645255239682,0.00707754134433344,0.062343413644703104 -2014,70,0.02620108053088188,0.007123012002557516,-0.00045380849041976035,0.004461285192519426,0.0028809471987187862,0.021099988929927347,0.0036252355203032494,0.00644876720616594,0.007153153209947049,0.06308549759560264 -2014,90,0.029977060854434967,0.00864096637815237,-0.00015620363410562277,0.004842408932745457,0.003640657872892916,0.024979694187641142,0.004102407954633236,0.008056519960518926,0.007949409703724087,0.0699147202540189 -2014,95,0.03142079710960388,0.009487438015639782,-5.721960769733414e-05,0.004929027520120144,0.004105629865080118,0.02685219096019864,0.0042279791086912155,0.008927806600695476,0.008419886149931697,0.07316582870844286 -2015,5,0.017872951924800873,0.004579827189445496,-0.0021056639379821718,0.0035701305605471134,0.0017842391971498728,0.011312860064208508,0.0022351795341819525,0.0031525110825896263,0.005821943806950003,0.04586781238322146 -2015,10,0.019300103187561035,0.0048123979941010475,-0.00176658189157024,0.003710085991770029,0.0019223936833441257,0.013151461351662874,0.0023523208219558,0.003621506621129811,0.006080910668242723,0.049321849504485725 -2015,30,0.023296598345041275,0.0057204170152544975,-0.001179371471516788,0.004069970920681953,0.0023054382763803005,0.017054662108421326,0.0029380270279943943,0.004756988608278334,0.006724633951671421,0.05743647182243876 -2015,33,0.023759128525853157,0.005856544286943972,-0.0011213284451514482,0.004149945452809334,0.002355563687160611,0.017466310411691666,0.003025882877409458,0.004917043514724355,0.006802851362153888,0.0583322883863002 -2015,50,0.025758128613233566,0.006672997958958149,-0.0008363813394680619,0.0044898372143507,0.002659519435837865,0.019625820219516754,0.0035237332340329885,0.005803309381008148,0.00722364685498178,0.06259686435805634 -2015,67,0.027670031413435936,0.007603180650621656,-0.0005789885763078928,0.004789741709828377,0.003022577613592148,0.021890610456466675,0.004021583124995232,0.006799459632020444,0.0076660772366449245,0.06677622667164543 -2015,70,0.028016047552227974,0.007799415476620197,-0.0005323281511664391,0.004869716241955757,0.0031006978591904036,0.022350232675671575,0.004109439440071583,0.007016794639639556,0.007752945646643639,0.0675897026900202 -2015,90,0.032102879136800766,0.009631308726966381,-0.00019153508765157312,0.005309575702995062,0.003973783925175667,0.026572374626994133,0.004665860440582037,0.008943326742155477,0.008668448124080897,0.07505128881894052 -2015,95,0.03366547077894211,0.010680394247174263,-8.053356577875093e-05,0.005409543868154287,0.004508966580033302,0.028605666011571884,0.004812286701053381,0.010015321662649512,0.009209373989142476,0.07862821737653576 -2016,5,0.0192322488874197,0.004811618477106094,-0.0023838055785745382,0.003804992651566863,0.001841898774728179,0.011735709942877292,0.0024446656461805105,0.00319040659815073,0.006177793839015067,0.049016562465112656 -2016,10,0.020758869126439095,0.005076907575130463,-0.002004891401156783,0.003964421339333057,0.001998616848140955,0.013724676705896856,0.002579407999292016,0.003720595734193921,0.006471244734711945,0.05273440238379408 -2016,30,0.02503390982747078,0.006108717992901802,-0.0013445659191347664,0.004374380689114332,0.002430281601846218,0.017881717532873154,0.0032531195320189,0.005006199917261256,0.007200732850469649,0.061397623573429885 -2016,33,0.0255286768078804,0.006263591395691037,-0.0012780196266248822,0.004465482663363218,0.0024853999190963803,0.018320602737367152,0.0033541761804372072,0.005188671057112515,0.007289795204997063,0.06235376924159937 -2016,50,0.027667002752423286,0.007195955142378807,-0.0009577961172908545,0.004852666519582272,0.002828353550285101,0.02064702194184065,0.0039268312975764275,0.006199090508744121,0.007766864611767232,0.06696322781499475 -2016,67,0.02971215918660164,0.008269268050789836,-0.0006689384061610325,0.0051942989230155945,0.0032381860073655844,0.023086421191692352,0.004499485716223717,0.00734763516811654,0.008267826077062636,0.07148333112592808 -2016,70,0.03008229285478592,0.008497713692486286,-0.0006158541073091328,0.005285400897264481,0.003326933365315199,0.023589568212628365,0.004600542597472668,0.007598355645313859,0.008365905843675137,0.07236270322464407 -2016,90,0.034453969448804855,0.010671144351363182,-0.00023512591724283993,0.005786462686955929,0.004311460070312023,0.02812519297003746,0.005240568425506353,0.00987963200896047,0.00940058280248195,0.080425617902074 -2016,95,0.03612546995282173,0.011944356374442577,-0.00011020154488505796,0.0059003401547670364,0.004910733550786972,0.030305245891213417,0.0054089962504804134,0.011168814609845838,0.010010719811543821,0.08431326228310354 -2017,5,0.020763233304023743,0.005043548531830311,-0.0026855082251131535,0.00403982400894165,0.0019134991860482841,0.012284976057708263,0.0026463791728019714,0.0032075901981443167,0.006551367929205298,0.05250609767535934 -2017,10,0.022337140515446663,0.005342932417988777,-0.0022625960409641266,0.004219510592520237,0.00209085363894701,0.014406990818679332,0.0027996397111564875,0.0037996380706317723,0.0068792360834777355,0.056417131793568845 -2017,30,0.026744598522782326,0.00650311354547739,-0.0015290488954633474,0.004681561142206192,0.0025735669769346714,0.01879778318107128,0.003565941471606493,0.005243990628514439,0.007700845878571272,0.06545029463595711 -2017,33,0.02725469134747982,0.006677458118647337,-0.0014531207270920277,0.0047842394560575485,0.0026345248334109783,0.019269440323114395,0.0036808867007493973,0.005450834520161152,0.007800189312547445,0.06643785671272781 -2017,50,0.02945924922823906,0.0077307699248194695,-0.0010971198207698762,0.005220620892941952,0.0030184860806912184,0.02175501361489296,0.004332243464887142,0.006591006997041404,0.008336898405104876,0.07130247430177405 -2017,67,0.031567756086587906,0.008955169022083286,-0.000772732135374099,0.005605663172900677,0.0034801389556378126,0.0243736132979393,0.0049835997633636,0.007899810443632305,0.008899114867672324,0.07611922336393036 -2017,70,0.031949352473020554,0.00921790599822998,-0.0007153120241127908,0.005708341021090746,0.00357992025092244,0.024912778288125992,0.005098544992506504,0.008188454783521593,0.009009175142273307,0.07705706658307462 -2017,90,0.03645643591880798,0.011760473251342773,-0.00029076021746732295,0.0062730698846280575,0.004682695493102074,0.02976666819304228,0.0058265323750674725,0.010850046441191807,0.010172609006986022,0.08560222471132875 -2017,95,0.03817971050739288,0.013279324397444725,-0.00015085324412211776,0.006401417311280966,0.0053536612540483475,0.0320851095020771,0.006018107756972313,0.01238184655085206,0.010854358784854412,0.0897138046566397 -2018,5,0.02212337777018547,0.005275619216263294,-0.003010270418599248,0.004274625796824694,0.001990043092519045,0.012852878170087933,0.0028403187170624733,0.003209757851436734,0.0069321696646511555,0.055820955021772534 -2018,10,0.023743752390146255,0.005610472522675991,-0.0025397571735084057,0.004475354216992855,0.002187513210810721,0.015112782083451749,0.003013014327734709,0.003866350743919611,0.007297202479094267,0.0599339134816546 -2018,30,0.028281336650252342,0.0069036055356264114,-0.0017244303598999977,0.004991513676941395,0.0027250079438090324,0.01974383369088173,0.0038764923810958862,0.0054746552486903965,0.008216035924851895,0.06936308572476264 -2018,33,0.02880648896098137,0.0070981436688452955,-0.0016423602867871527,0.005106216296553612,0.0027940000873059034,0.020246927384287117,0.004006013739854097,0.0057077623164514075,0.008326806931290776,0.07041620614356361 -2018,50,0.031076133251190186,0.00827744323760271,-0.0012453595991246402,0.005593699868768454,0.003222502302378416,0.0229021068662405,0.004739969968795776,0.006987208733335137,0.008927225833758712,0.07554875581990927 -2018,67,0.03324688971042633,0.009660884495824579,-0.0008842573023866858,0.006023833062499762,0.003738952102139592,0.02570912891998887,0.005473926197737455,0.008468393934890628,0.00955457023344934,0.08065412591793576 -2018,70,0.033639755100011826,0.009959993697702884,-0.0008217569557018578,0.006138535216450691,0.003851264249533415,0.026274653151631352,0.0056034475564956665,0.008786535123363137,0.009677539439871907,0.08164418132510036 -2018,90,0.038279905915260315,0.01289929635822773,-0.00035088349250145257,0.006769396830350161,0.005084156524389982,0.03146451376378536,0.006423751823604107,0.011874352116137743,0.010979144461452962,0.09072062660707161 -2018,95,0.04005405679345131,0.014685298316180706,-0.00019404467311687925,0.006912774406373501,0.005838298704475164,0.03393225744366645,0.0066396212205290794,0.013660692609846592,0.011739182285964489,0.09509640213800592 -2019,5,0.023860029876232147,0.00550782959908247,-0.003354062791913748,0.004509396851062775,0.0020448178984224796,0.013145809061825275,0.0030264852102845907,0.003202242311090231,0.0072973902802914384,0.05922412969521247 -2019,10,0.025507349520921707,0.005879527889192104,-0.00282979104667902,0.004731952212750912,0.0022651818580925465,0.015588070265948772,0.0032195330131798983,0.003930588718503714,0.007703267433680594,0.06356652550894068 -2019,30,0.03012038953602314,0.007310193032026291,-0.0019224267452955246,0.005304237827658653,0.0028662406839430332,0.020584940910339355,0.004184771794825792,0.005718466309190262,0.008724982617422938,0.0734826667001471 -2019,33,0.03065427578985691,0.00752564961090684,-0.0018309891456738114,0.005431412253528833,0.002942382823675871,0.02112623319029808,0.004329557530581951,0.005975465173833072,0.00884854095755145,0.07458426405442879 -2019,50,0.032961662858724594,0.008835975080728531,-0.0013888416578993201,0.005971904378384352,0.0034214004408568144,0.023989534005522728,0.00515001080930233,0.007398891961202025,0.009515750454738736,0.08000887624802999 -2019,67,0.035168517380952835,0.010386413233354692,-0.0009867240441963077,0.006448809057474136,0.003998642321676016,0.02700062282383442,0.005970463622361422,0.009057522751390934,0.010215527145192027,0.0854453161591664 -2019,70,0.03556791692972183,0.010723975859582423,-0.0009168589778710164,0.006575983949005604,0.004123377613723278,0.02761264145374298,0.00611524935811758,0.00941715482622385,0.010353230871260166,0.0864754585782066 -2019,90,0.04028522968292236,0.014087612740695477,-0.00039286614628508687,0.007275444455444813,0.005504613276571035,0.03316051177680493,0.007032226305454969,0.012931604585901368,0.011808119807392358,0.0961236218106933 -2019,95,0.042088884860277176,0.01616227813065052,-0.00021786302386317402,0.007434412837028503,0.006344166654162107,0.03580957651138306,0.007273536175489426,0.015027639921754599,0.012657939665950833,0.10078543257259297 -2020,5,0.02569000795483589,0.005740179680287838,-0.0036991515778936443,0.004744136705994606,0.0021036171820014715,0.013478202186524868,0.0032048781868070364,0.00319370353827253,0.007666799740400165,0.06276975527289323 -2020,10,0.027386777102947235,0.006150098517537117,-0.003119752975180745,0.004989303648471832,0.0023469345178455114,0.016088556312024594,0.0034191953018307686,0.003997117280960083,0.008114737435244023,0.06736789252026938 -2020,30,0.032138288021087646,0.007722875103354454,-0.002123585669323802,0.00561973312869668,0.003010758198797703,0.021422015503048897,0.004490780644118786,0.005966166267171502,0.009241840080358088,0.07780266484478489 -2020,33,0.0326881967484951,0.007959974696859717,-0.002021527150645852,0.005759828258305788,0.0030942107550799847,0.02200334142893553,0.004651518538594246,0.006248146295547485,0.009377686055377126,0.07896949781570584 -2020,50,0.03506484627723694,0.009406364522874355,-0.001535581424832344,0.006355233956128359,0.0036233048886060715,0.025063134729862213,0.005562365986406803,0.007820966420695186,0.01011357072275132,0.08469424612121657 -2020,67,0.03733794391155243,0.0111317546106875,-0.001092078979127109,0.006880591157823801,0.004261265508830547,0.02827284447848797,0.00647321343421936,0.009665517834946513,0.010885641071945429,0.09047214520163835 -2020,70,0.03774933144450188,0.01150985276326537,-0.0010154059855267406,0.007020687218755484,0.004400420002639294,0.028920724987983704,0.006633951794356108,0.010067879920825362,0.011038492899388075,0.09158526922110467 -2020,90,0.042608242481946945,0.015325423330068588,-0.0004380877362564206,0.007791211362928152,0.005925268866121769,0.03481711447238922,0.007651957683265209,0.014043463335838178,0.012644970323890448,0.1018325203564018 -2020,95,0.0444660410284996,0.017710262909531593,-0.00024521929299226134,0.007966331206262112,0.006854851730167866,0.03762370571494102,0.0079198544844985,0.01644655189011246,0.013585640583187342,0.1068061710218899 -2021,5,0.027452215552330017,0.005972669459879398,-0.004067365080118179,0.00497884675860405,0.0021631354466080666,0.013799644075334072,0.0033754981122910976,0.0031708490569144487,0.008041601371951401,0.06626713998412015 -2021,10,0.029182102531194687,0.006422184407711029,-0.003431380959227681,0.005247409455478191,0.0024307318497449166,0.016587398946285248,0.0036120014265179634,0.004049591021612287,0.008533834433183073,0.07109188742469996 -2021,30,0.034026362001895905,0.008141652680933475,-0.002336157951503992,0.005937999580055475,0.0031617595814168453,0.022286649979650974,0.0047945184633135796,0.006209895014762878,0.009772141929715872,0.08202631841413677 -2021,33,0.03458700701594353,0.008401118917390704,-0.002224541734904051,0.006091464776545763,0.0032535549253225327,0.022904599979519845,0.004971896298229694,0.006517929723486304,0.009921049915719777,0.08323664020106662 -2021,50,0.03701005131006241,0.009988613426685333,-0.0016905737575143576,0.006743688602000475,0.0038384529761970043,0.026172025129199028,0.005977035500109196,0.008245332515798509,0.010728543158620596,0.08930075785610825 -2021,67,0.03932752087712288,0.01189691049046815,-0.001203358572674914,0.007319180760532618,0.004543263465166092,0.029585648644715547,0.006982175167649984,0.010282934177666903,0.011578844543546442,0.0954078528797254 -2021,70,0.03974693641066551,0.012317624408751724,-0.0011189503129571676,0.007472645025700331,0.004693689011037349,0.030268019065260887,0.007159553002566099,0.01073058252222836,0.011746757663786411,0.0965933888219297 -2021,90,0.04470069706439972,0.01661272533237934,-0.00048458221135661006,0.008316699415445328,0.006378670688718557,0.03653261065483093,0.008282944560050964,0.01520293322391808,0.013518576789647341,0.10747405216097831 -2021,95,0.04659475386142731,0.01932925544679165,-0.00027295551262795925,0.0085085304453969,0.007405515178106715,0.03950389474630356,0.008578574284911156,0.01791876552742902,0.014557158737443386,0.11273542372509837 -2022,5,0.028825007379055023,0.006205299403518438,-0.004430736787617206,0.005213526077568531,0.002249969867989421,0.014386750850826503,0.003538344521075487,0.0031418083235621452,0.008442259609000757,0.069704903755337 -2022,10,0.0306530874222517,0.006695786491036415,-0.0037452366668730974,0.005506269633769989,0.0025394440162926912,0.017289385199546814,0.0037979516200721264,0.004098285373765975,0.008979159640148282,0.07476712285424583 -2022,30,0.03577231615781784,0.008566525764763355,-0.0025585757102817297,0.006259038113057613,0.003335007233545184,0.023247482627630232,0.005095985718071461,0.0064432305516675115,0.010326687851920724,0.08628117176122033 -2022,33,0.03636478632688522,0.008849083222448826,-0.0024392588529735804,0.006426319945603609,0.003435436636209488,0.02388782612979412,0.0052906908094882965,0.006779142988380045,0.010489601262379437,0.08754416927695274 -2022,50,0.03892536461353302,0.01058271899819374,-0.0018585611833259463,0.0071372683160007,0.004069950897246599,0.027327146381139755,0.006394020281732082,0.008668796974234283,0.01137074502184987,0.09395898564253002 -2022,67,0.04137437790632248,0.012681879634037621,-0.0013336383888963572,0.007764575071632862,0.004837432876229286,0.030919549986720085,0.007497349288314581,0.010906726936809719,0.012294638771563768,0.10044226126337889 -2022,70,0.04181760177016258,0.013147290796041487,-0.0012402036227285862,0.00793185643851757,0.005004440434277058,0.03164099529385567,0.007692054845392704,0.011405839351937175,0.012477127369493246,0.10170696971472352 -2022,90,0.047052547335624695,0.01794952154159546,-0.000558478815946728,0.008851908147335052,0.006838471628725529,0.03822006285190582,0.008925188332796097,0.016399740386987105,0.014407145418226719,0.11326883998699487 -2022,95,0.04905411973595619,0.02101925015449524,-0.0003208864654880017,0.009061009623110294,0.007956266403198242,0.04132183529436586,0.009249696508049965,0.019459524125704772,0.015535994549281895,0.11892201356240548 -2023,5,0.029881615191698074,0.006438069045543671,-0.004836055915802717,0.005448175594210625,0.0023470602463930845,0.015031913295388222,0.0036934171803295612,0.0030797142535448074,0.008857513125985862,0.07288883292931132 -2023,10,0.03184588626027107,0.006970902904868126,-0.004092526622116566,0.005765883717685938,0.0026587974280118942,0.018043092265725136,0.003977044951170683,0.004116840427741408,0.009441468329168857,0.07825413427635794 -2023,30,0.0373464897274971,0.008997494354844093,-0.0028051771223545074,0.0065828473307192326,0.0035262145800516007,0.02428171057254076,0.005395181477069855,0.006665037648053839,0.010906268726103008,0.09046719301259144 -2023,33,0.03798309341073036,0.009303866671398282,-0.0026762953493744135,0.0067643956281244755,0.003639062400907278,0.024957574252039195,0.005607902072370052,0.007024836493656039,0.011084956717677414,0.09180506291333586 -2023,50,0.0407344326376915,0.011188683100044727,-0.0020467869471758604,0.007535972632467747,0.004331122152507305,0.02857921365648508,0.006813318468630314,0.009083258220925927,0.012043406255543232,0.09864309302065521 -2023,67,0.04336589202284813,0.013486662656068809,-0.0014781105564907193,0.008216775953769684,0.005165646318346262,0.03236551582813263,0.008018734864890575,0.011534002958796918,0.013049105182290077,0.1055795323709026 -2023,70,0.0438421368598938,0.013998851925134658,-0.0013741819420829415,0.008398324251174927,0.005348960869014263,0.03311538212001323,0.008231455460190773,0.01208371198736131,0.01324817817658186,0.10692540821619331 -2023,90,0.04946707561612129,0.019335811957716942,-0.0006338374223560095,0.009396836161613464,0.0073534115217626095,0.04002489149570465,0.009578686207532883,0.017629547277465463,0.015355683770030737,0.11930244462564588 -2023,95,0.051617760211229324,0.02278025634586811,-0.0003763950662687421,0.009623769670724869,0.008576121181249619,0.043306365609169006,0.009933220222592354,0.02105721435509622,0.01658662508707493,0.12535168481699657 -2024,5,0.03132188692688942,0.006670977920293808,-0.005276746116578579,0.005682793911546469,0.002427206840366125,0.015494422055780888,0.0038407177198678255,0.0029941354878246784,0.009267424489371479,0.0762604190967977 -2024,10,0.033374350517988205,0.007247534580528736,-0.0044668796472251415,0.006026252172887325,0.0027697307290509344,0.018686220049858093,0.004149282816797495,0.004120148252695799,0.009902943065389991,0.08193558538332582 -2024,30,0.039121925830841064,0.009434559382498264,-0.003068958641961217,0.006909429095685482,0.003720557549968362,0.02529228664934635,0.005692107602953911,0.00688469922170043,0.011496786936186254,0.09482680272776634 -2024,33,0.039787113666534424,0.009765470502898096,-0.0029269258328713478,0.007105690892785788,0.0038424741942435503,0.02601526144891977,0.0059235310181975365,0.0072733270935714245,0.011689945589751005,0.09624188000045251 -2024,50,0.04266198351979256,0.011806505732238293,-0.0022408831864595413,0.00793980248272419,0.00460151769220829,0.029845602810382843,0.007234932389110327,0.009503009030595422,0.012731096358038485,0.1034990674816072 -2024,67,0.045411594212055206,0.014311259873211392,-0.0016228726599365473,0.00867578387260437,0.005518721416592598,0.033853140808641914,0.008546333760023117,0.012174602830782533,0.01382842075545341,0.11086442092433574 -2024,70,0.04590922221541405,0.014872309751808642,-0.0015076150884851813,0.008872045204043388,0.005720414500683545,0.03465256690979004,0.008777758106589317,0.012773829977959394,0.01404743455350399,0.11227857032790779 -2024,90,0.05178671330213547,0.02077159844338894,-0.000701748940628022,0.009951483458280563,0.007921497337520123,0.041947129741311075,0.01024344190955162,0.018895652299397644,0.01635685870423913,0.1254867564421147 -2024,95,0.05403396487236023,0.024612268432974815,-0.00042064310400746763,0.010196810588240623,0.009263549000024796,0.045408714562654495,0.010629147291183472,0.022730753088398992,0.017713195970281956,0.1319082561414689 -2025,5,0.03313899785280228,0.006904027424752712,-0.005706906318664551,0.005917381960898638,0.002521094121038914,0.01604253053665161,0.0039802435785532,0.002911864290945232,0.009686088189482689,0.08010028645803687 -2025,10,0.03525211289525032,0.00752568244934082,-0.004835912492126226,0.006287374068051577,0.002889687195420265,0.019387784227728844,0.004314663354307413,0.0041268663480877885,0.010373502527363599,0.08602854655473494 -2025,30,0.04116952791810036,0.009877718053758144,-0.0033312106272205713,0.0072387815453112125,0.003918353468179703,0.026307328417897225,0.005986761301755905,0.007108994293957949,0.012093028216622769,0.09948231492890044 -2025,33,0.0418543741106987,0.010233893170952796,-0.0031747183622792365,0.007450205739587545,0.0040525151416659355,0.027067001909017563,0.006237576249986887,0.007525216385256498,0.012303234171122312,0.10094439635402523 -2025,50,0.04481419548392296,0.012436186894774437,-0.002435299102216959,0.008348757401108742,0.004874944919720292,0.03109355829656124,0.007658859249204397,0.009932017885148525,0.013427185826003551,0.10856260487344116 -2025,67,0.04764505848288536,0.015155669422820218,-0.0017676360439509153,0.009141596034169197,0.005867908708751202,0.03529292717576027,0.009080142714083195,0.012831797568360347,0.01461367050651461,0.11629896718659438 -2025,70,0.04815738648176193,0.015767659433186053,-0.0016463097417727113,0.009353021159768105,0.0060869711451232425,0.03613414987921715,0.009330958127975464,0.013490852899849415,0.014852566691115498,0.11778476659674197 -2025,90,0.05420856177806854,0.022256875410676003,-0.0007759867585264146,0.010515851899981499,0.008473644964396954,0.04376310221850872,0.010919450782239437,0.020202972126571697,0.017352781258523464,0.13170832814648747 -2025,95,0.05652221292257309,0.026515284553170204,-0.0004717088013421744,0.010780131444334984,0.009930115193128586,0.04739560484886166,0.01133747585117817,0.024456349498359474,0.01882536811754107,0.13853263065684585 -2026,5,0.035133522003889084,0.007137216627597809,-0.0061531523009762164,0.0061519392766058445,0.0026277784258127213,0.016691024601459506,0.004111996851861477,0.002820598427206278,0.01012497681658715,0.08420418582390994 -2026,10,0.03728621453046799,0.007805344648659229,-0.005218432284891605,0.006549249868839979,0.003026107791811228,0.02016870677471161,0.0044731879606842995,0.0041248577181249866,0.010860814712941647,0.09040510470513255 -2026,30,0.04331446439027786,0.010326973162591457,-0.0036057063844054937,0.007570905145257711,0.004133588680997491,0.027378026396036148,0.0062791453674435616,0.007327084196731448,0.012712094001471996,0.10430648917099461 -2026,33,0.04401213675737381,0.01070913529023528,-0.0034391614608466625,0.007797940168529749,0.004280954599380493,0.028167914003133773,0.0065500386990606785,0.007768858049530536,0.012938236645422875,0.10582154064439236 -2026,50,0.04702739417552948,0.013077725656330585,-0.002642083098180592,0.008762836456298828,0.00516727939248085,0.03238976374268532,0.008085101842880249,0.010361165332142264,0.014148151851259172,0.11376069230027497 -2026,67,0.04991127923130989,0.016019891910254963,-0.0019280032720416784,0.009614216163754463,0.00623823580797762,0.03677807375788689,0.009620165452361107,0.013500778353773057,0.015425838083028795,0.12185508167836816 -2026,70,0.0504332035779953,0.016684906743466853,-0.00179416632745415,0.009841250255703926,0.006476244423538446,0.03765127807855606,0.009891059249639511,0.014211511937901378,0.015682598901912568,0.12339992971974424 -2026,90,0.056597717106342316,0.02379164658486843,-0.000863121182192117,0.01108994148671627,0.009053934924304499,0.04561583325266838,0.011606717482209206,0.02154759969562292,0.01838206681422889,0.13799265713896602 -2026,95,0.05895470455288887,0.028489304706454277,-0.0005343121010810137,0.01137373223900795,0.010624811053276062,0.049413591623306274,0.012058206833899021,0.02625728549901396,0.01997317331843078,0.14521433983463794 -2027,5,0.036782536655664444,0.007370544597506523,-0.006600435823202133,0.0063864667899906635,0.0027481592260301113,0.017453858628869057,0.004235976841300726,0.002714168280363083,0.010578469443134963,0.08817938641477667 -2027,10,0.03900449723005295,0.008086523041129112,-0.005610590800642967,0.006811880506575108,0.0031766948522999883,0.021037866547703746,0.004624856635928154,0.004116544499993324,0.011366866994649172,0.09458385285688564 -2027,30,0.04522673040628433,0.01078232191503048,-0.0038870787248015404,0.007905800826847553,0.004361833678558468,0.02848879378288984,0.0065692574717104435,0.007539990072837099,0.013351784320548177,0.10897094677202404 -2027,33,0.04594685137271881,0.011191197177395225,-0.0037116599269211292,0.00814889371395111,0.004524177871644497,0.029304511845111847,0.006860917434096336,0.008011001162230968,0.013594825481995941,0.11056482745916582 -2027,50,0.04905913770198822,0.013731122016906738,-0.0028601030353456736,0.009182041510939598,0.005475482437759638,0.03371402621269226,0.008513657376170158,0.010788414161652327,0.014890446327626705,0.11885439697653055 -2027,67,0.052035823464393616,0.016903929226100456,-0.0021006432361900806,0.01009364239871502,0.006625448353588581,0.03828297015279532,0.01016639731824398,0.014170329348416999,0.01626081591937691,0.12730589787708596 -2027,70,0.05257454141974449,0.017624046280980108,-0.0019584132824093103,0.010336734354496002,0.006882691755890846,0.03919331431388855,0.010458058677613735,0.014940590830519795,0.016538450587540863,0.12892977241426706 -2027,90,0.058937422931194305,0.025375911965966225,-0.0009641777141951025,0.01167374849319458,0.009646357968449593,0.04748520255088806,0.012305239215493202,0.02293837780598551,0.019437151867896317,0.14428223413415253 -2027,95,0.061370253562927246,0.030534332618117332,-0.0006091297836974263,0.01197761669754982,0.011338499560952175,0.05140906255692242,0.012791339308023453,0.028111534542404115,0.021140802651643753,0.15190108712122308 -2028,5,0.038363002240657806,0.007604013197124004,-0.00705363554880023,0.00662096356973052,0.0028543509542942047,0.018088484182953835,0.00435218308120966,0.002616691403090954,0.011020327056758105,0.09188055940612685 -2028,10,0.040662601590156555,0.00836921576410532,-0.00600043497979641,0.0070752645842731,0.003313876688480377,0.02178243063390255,0.004769669380038977,0.0041113789193332195,0.01186285698786378,0.09858464940916747 -2028,30,0.04710223525762558,0.011243768967688084,-0.004164286330342293,0.008243467658758163,0.004580370150506496,0.02952294796705246,0.006857099011540413,0.0077591147273778915,0.013983483659103513,0.11353851391468198 -2028,33,0.04784751683473587,0.011680078525096178,-0.00398097628261894,0.00850306823849678,0.004754883237183094,0.03038179302588105,0.007170213386416435,0.008268846664577723,0.014243454807437956,0.1151959402486682 -2028,50,0.05106854811310768,0.014396375976502895,-0.003073309548199177,0.009606370702385902,0.005772542208433151,0.034969355911016464,0.008944528177380562,0.01123778522014618,0.015628441469743848,0.1238624727120623 -2028,67,0.054149236530065536,0.017807779479771864,-0.0022617283137515167,0.010579872876405716,0.007002214901149273,0.03972568698227406,0.010718843899667263,0.014874905813485384,0.017094273045659067,0.1327113347547129 -2028,70,0.05470677837729454,0.018585081212222573,-0.002112348913215101,0.010839473456144333,0.007279002247378225,0.040671978145837784,0.011031958274543285,0.015710342675447464,0.017391137778759003,0.13442092096665872 -2028,90,0.061291977763175964,0.027009671553969383,-0.001054330426268279,0.012267278507351875,0.010237341746687889,0.04929507523775101,0.013015016913414001,0.024393064435571432,0.020493351295590403,0.15056455679150532 -2028,95,0.06380981206893921,0.03265036642551422,-0.0006714553921483461,0.012591779232025146,0.012050751596689224,0.053381643444299645,0.013536874204874039,0.030040403787279457,0.02231413209810851,0.15864477963186802 -2029,5,0.03991091996431351,0.007837621495127678,-0.007499663485214114,0.006855430081486702,0.002981247776187956,0.018837329000234604,0.004460615571588278,0.002517468365840615,0.011476968694478274,0.09573816210031509 -2029,10,0.042292747646570206,0.008653424680233002,-0.006387577950954437,0.007339403033256531,0.003465227549895644,0.022632881999015808,0.004907624796032906,0.004111440386623144,0.012374902237206697,0.10264404281624592 -2029,30,0.04896265268325806,0.011711309663951397,-0.004448357038199902,0.008583905175328255,0.00481115747243166,0.03059697523713112,0.0071426695212721825,0.007978090434335172,0.014633744955062866,0.1181542337872088 -2029,33,0.049734584987163544,0.01217577931471169,-0.004255529958754778,0.008860462345182896,0.005000827834010124,0.03148538626730442,0.007477926090359688,0.008522334741428494,0.01491005293559283,0.1198810781352222 -2029,50,0.0530707910656929,0.015073489397764206,-0.003292541019618511,0.01003582589328289,0.006079975049942732,0.036240849643945694,0.009377713315188885,0.01168872875859961,0.01638289145193994,0.128901983727701 -2029,67,0.056261636316776276,0.01873144268989564,-0.002432580748572945,0.011072911322116852,0.007391859274357567,0.04116149991750717,0.011277501471340656,0.015582595951855183,0.017940623685717583,0.13814477373613046 -2029,70,0.056839119642972946,0.01956801079213619,-0.002276198659092188,0.011349467560648918,0.007683388935402033,0.04215264692902565,0.011612758040428162,0.01649314141832292,0.018258403008803725,0.13992620625067503 -2029,90,0.06365978717803955,0.028692923486232758,-0.0011563915759325027,0.012870527803897858,0.010824011638760567,0.051072239503264436,0.013736050575971603,0.025891344295814633,0.021559162996709347,0.15685174404643476 -2029,95,0.06626765429973602,0.03483740612864494,-0.000749411599826999,0.013216221705079079,0.012759501114487648,0.0553150400519371,0.014294811524450779,0.032037530560046434,0.023491889052093026,0.1654036747291684 -2030,5,0.041546858847141266,0.008071370422840118,-0.007962982170283794,0.007089865859597921,0.0031206644605845215,0.01962698707357049,0.004561275709420443,0.0024017104879021645,0.011953777773305774,0.0997459152014926 -2030,10,0.04402346909046173,0.008939147926867008,-0.006789106875658035,0.0076042958535254,0.0036349280271679163,0.023536797054111956,0.00503872474655509,0.004089364316314459,0.012904474372044205,0.10689970734529197 -2030,30,0.0509587898850441,0.012184944935142994,-0.004747841507196426,0.00892711617052555,0.005062411539256573,0.03171505033969879,0.007425969000905752,0.008191680070012808,0.015302080661058426,0.12297157610300928 -2030,33,0.0517614409327507,0.012678299872204661,-0.004539861343801022,0.009221076034009457,0.0052626109682023525,0.03262193769216538,0.007784055545926094,0.008767511951737106,0.015599766038358212,0.12477004196494818 -2030,50,0.055230408906936646,0.015762459486722946,-0.003525919048115611,0.010470405220985413,0.006403527222573757,0.03755129873752594,0.009813212789595127,0.012137898593209684,0.01716195559129119,0.13417901867069304 -2030,67,0.058548230677843094,0.019674921333789838,-0.00261459918692708,0.011572755873203278,0.007801007479429245,0.042648375369608416,0.011842370964586735,0.016301534604281187,0.018815097240731122,0.14383490577572958 -2030,70,0.05914869159460068,0.020572836510837075,-0.0024528123904019594,0.011866714805364609,0.008109577000141137,0.043665058538317675,0.012200457975268364,0.017280935775488615,0.01915557696484029,0.14569633430801332 -2030,90,0.06624078005552292,0.030425669625401497,-0.0012657898478209972,0.013483496382832527,0.011445196345448494,0.05288283936679364,0.014468340203166008,0.02741712403949351,0.02265647202730179,0.16346050291322173 -2030,95,0.06895242631435394,0.03709544986486435,-0.0008324314258061349,0.013850945979356766,0.013508709147572517,0.05726395975798368,0.015065152198076248,0.03409706428647041,0.024709174502640964,0.17247481597587466 -2031,5,0.043527889996767044,0.008305258117616177,-0.008474250324070454,0.007324271369725466,0.003232136834412813,0.02021967126056552,0.004654161632061005,0.002254021354019642,0.012411996256560087,0.10389773456845433 -2031,10,0.046088363975286484,0.009226387366652489,-0.0072283148765563965,0.007869942113757133,0.003781507723033428,0.02428096905350685,0.0051629673689603806,0.004052866715937853,0.013424995075911283,0.11132011038716882 -2031,30,0.05325853452086449,0.012664676643908024,-0.005061333533376455,0.009273096919059753,0.0053056953474879265,0.03278870284557343,0.007706996984779835,0.008406219072639942,0.0159759305883199,0.1280687240883708 -2031,33,0.05408836901187897,0.013187639266252518,-0.004839767338708043,0.009584909304976463,0.005520642269402742,0.03374362364411354,0.008088601753115654,0.009019486606121063,0.016291332244873048,0.12994599621742964 -2031,50,0.05767480283975601,0.01646328903734684,-0.003762394655495882,0.010910110548138618,0.006739563308656216,0.03887159377336502,0.010251026600599289,0.01260015310253948,0.017955092946067452,0.13977275777142495 -2031,67,0.06110497564077377,0.020638214182108653,-0.002792874665465206,0.012079404667019844,0.008233532309532166,0.044172219932079315,0.012413451448082924,0.017041893675923347,0.019718412309885025,0.14988259539008142 -2031,70,0.06172576919198036,0.021599555015563963,-0.0026210558135062456,0.012391218915581703,0.008565256372094154,0.04523288458585739,0.012795056216418743,0.01808660849928856,0.020080633368343113,0.15184163795784114 -2031,90,0.06905801594257355,0.0322079099714756,-0.0013584708794951439,0.014106186106801033,0.012134136073291306,0.054810607060790065,0.01521188486367464,0.028994713618885736,0.02382458485662937,0.17049456308595837 -2031,95,0.07186149060726166,0.03942450135946274,-0.0008946482557803392,0.014495950192213058,0.01433856412768364,0.05936023574322461,0.015847891569137573,0.036221076967194676,0.026022360008209944,0.18004218626301732 -2032,5,0.0453210212290287,0.008539285510778427,-0.008974708616733551,0.007558646146208048,0.0033440743573009968,0.020812537521123886,0.004739274270832539,0.0021169567480683327,0.012870158557780087,0.10787550075328908 -2032,10,0.0479976162314415,0.009515141136944294,-0.0076583861373364925,0.008136343210935593,0.003928304649889469,0.02501184120774269,0.005280354525893927,0.004028748720884323,0.013944460079073906,0.11560275161173195 -2032,30,0.055492956191301346,0.013150503858923912,-0.005367920733988285,0.009621849283576012,0.005546271800994873,0.03383750468492508,0.007985754869878292,0.008633792353793978,0.016649313224479555,0.13309804862365127 -2032,33,0.05636041983962059,0.013703799052163958,-0.005134494509547949,0.009951962158083916,0.005774672408588231,0.03482615575194359,0.008391564711928368,0.00928095867857337,0.01698362719733268,0.13507146081188692 -2032,50,0.06010950356721878,0.017175976186990738,-0.00399518059566617,0.011354940012097359,0.007069900166243315,0.040148667991161346,0.01069115474820137,0.013077317737042904,0.01874763867817819,0.1453277738764882 -2032,67,0.06369523704051971,0.021621318105608238,-0.002969765104353428,0.012592863291501999,0.008657647296786308,0.0456424230337143,0.012990744784474373,0.017803885152097798,0.020619133953005075,0.15594371563754977 -2032,70,0.06434418261051178,0.02264817282557487,-0.0027888640761375427,0.012922974303364754,0.009009487926959991,0.04673606529831886,0.013396554626524448,0.018911318969912827,0.021003730408847333,0.15799204737413672 -2032,90,0.07200895249843597,0.03403964266180992,-0.0014514921349473295,0.014738595113158226,0.012805741280317307,0.0566635549068451,0.015966685488820076,0.030621608952060342,0.02498195059597492,0.17760924519971014 -2032,95,0.0749395564198494,0.04182456061244011,-0.0009603136568330228,0.015151234343647957,0.015145594254136086,0.061369408108294006,0.016643034294247627,0.038409549510106444,0.027316989377141,0.1876969355274923 -2033,5,0.047317665070295334,0.008773453533649445,-0.00951491016894579,0.007792990654706955,0.0034613367170095444,0.02139534829184413,0.004816614091396332,0.00195736950263381,0.013338644662871957,0.11201465100166388 -2033,10,0.05006645619869232,0.009805411100387573,-0.008119072392582893,0.00840349867939949,0.00408196384087205,0.025755990482866763,0.0053908852860331535,0.003975211177021265,0.014479826763272285,0.12006807121215388 -2033,30,0.057763975113630295,0.013642426580190659,-0.005697420332580805,0.009973373264074326,0.00580245815217495,0.03491925597190857,0.008262241259217262,0.008852744242176414,0.017346535436809064,0.1382125654257834 -2033,33,0.05865483731031418,0.014226778279989957,-0.005446171388030052,0.010322235524654388,0.006047802045941353,0.03595865145325661,0.008692944422364235,0.009537884034216404,0.017700831722468138,0.14025592480553314 -2033,50,0.06250504404306412,0.01790052279829979,-0.004243039526045322,0.011804895475506783,0.007426538970321417,0.04148966446518898,0.011133597232401371,0.013554078293964267,0.019571758806705475,0.15092530427500606 -2033,67,0.06618750095367432,0.022624234352260842,-0.003157600061967969,0.013113126158714294,0.009113896172493701,0.04719143733382225,0.013574249111115932,0.018568387255072594,0.021560484166257082,0.16202360608614982 -2033,70,0.06685395538806915,0.02371867951005697,-0.002966048428788781,0.013461986556649208,0.009489532560110092,0.048323075845837594,0.01400495320558548,0.01974739832803607,0.02196658682078123,0.16415595130529254 -2033,90,0.07472546398639679,0.035920869559049606,-0.001552083936985581,0.015380723401904106,0.013538116589188576,0.058625959604978566,0.01673274114727974,0.03228080575354397,0.026205291040241722,0.18470102744176983 -2033,95,0.07773512601852417,0.044295620173215866,-0.001027437043376267,0.01581680029630661,0.016023216769099236,0.06350111961364746,0.01745058037340641,0.04065823042765259,0.028692910308018325,0.19535112287849188 -2034,5,0.049311041831970215,0.00900776032358408,-0.010060128802433609,0.008027303963899612,0.0035868354607373476,0.02204558253288269,0.00488618016242981,0.0017911558970808983,0.013820244930684566,0.11622281776508317 -2034,10,0.052123330533504486,0.010097196325659752,-0.008588433265686035,0.008671406656503677,0.004245316563174129,0.026537928730249405,0.005494559649378061,0.003924133256077766,0.015026019187644124,0.12456921534612775 -2034,30,0.05999867618083954,0.014140443876385689,-0.006031895987689495,0.010327668860554695,0.006070922594517469,0.03602951020002365,0.00853645708411932,0.009067356120795012,0.018058531917631626,0.14332055698614568 -2034,33,0.060910120606422424,0.014756576353684067,-0.005767055829055608,0.010695727542042732,0.006329921241849661,0.037111736834049225,0.00899274181574583,0.009788606083020568,0.018434431836940348,0.1454504156112671 -2034,50,0.06484927237033844,0.018636927008628845,-0.004497512709349394,0.01225997507572174,0.007792245596647263,0.042840827256441116,0.011578353121876717,0.014028917998075485,0.02041015587747097,0.15653470996767282 -2034,67,0.06861680001020432,0.023646966665983215,-0.00335104507394135,0.01364019326865673,0.009585581719875336,0.04873444139957428,0.014163967221975327,0.019342446699738503,0.022518704240210356,0.16808702200185507 -2034,70,0.0692986473441124,0.024811084195971486,-0.003151370445266366,0.014008251950144768,0.009982397407293318,0.049901872873306274,0.014620251953601837,0.020603552809916437,0.02294766935519874,0.1702852128073573 -2034,90,0.07735200226306915,0.037851590663194656,-0.0016566066769883037,0.016032572835683823,0.014278041198849678,0.06057364270091058,0.017510054633021355,0.0339814736507833,0.02744373418390751,0.19173898437293246 -2034,95,0.08043119311332703,0.046837691217660904,-0.001100473239785061,0.01649264618754387,0.016918621957302094,0.06558929011225699,0.018270527943968773,0.042992919951211656,0.030086740106344212,0.20288613106822592 -2035,5,0.051439881324768066,0.009242207743227482,-0.010613941587507725,0.008261587470769882,0.0037352253799326717,0.022792602330446245,0.004947973415255547,0.0016146856360137463,0.014325371873565019,0.12073560317512602 -2035,10,0.054318688809871674,0.01039049681276083,-0.00906288530677557,0.008940069004893303,0.004431780427694321,0.027433134056627752,0.0055913785472512245,0.0038587148301303387,0.015596731612458826,0.12935171115677804 -2035,30,0.06238029897212982,0.014644556678831577,-0.006377434823662043,0.01068473607301712,0.0063613285310566425,0.03719395399093628,0.008808402344584465,0.009275461547076699,0.018794536590576172,0.14865744006820023 -2035,33,0.06331329792737961,0.015293194176629185,-0.006102298852056265,0.011072440072894096,0.006633622106164694,0.03830586373806,0.00929095596075058,0.01002965122461319,0.01919021552428603,0.1508642714470625 -2035,50,0.06734561920166016,0.019385188817977905,-0.004762488882988691,0.012720180675387383,0.008175880648195744,0.04422121308743954,0.012025426141917706,0.014507632469758391,0.021274909609928727,0.16236059635411948 -2035,67,0.07120224833488464,0.024689513165503756,-0.003556785173714161,0.014174068346619606,0.010074105113744736,0.05031466856598854,0.014759896323084831,0.020129336619284004,0.023500799350440506,0.17434282855363564 -2035,70,0.07190022617578506,0.02592538353055715,-0.0033512974623590708,0.014561772346496582,0.010497719049453735,0.05150618031620979,0.01524245087057352,0.021474576322361827,0.023955122008919714,0.176664049224928 -2035,90,0.08014405518770218,0.03983180597424507,-0.0017758941976353526,0.016694143414497375,0.015037572011351585,0.06252416595816612,0.018298622220754623,0.035732119786553114,0.028705363534390925,0.19903665753081443 -2035,95,0.08329607546329498,0.049450766295194626,-0.0011889184825122356,0.017178772017359734,0.017833615653216825,0.067703690379858,0.019102878868579865,0.04538077744655311,0.03150685187429189,0.21070800739689727 -2036,5,0.053405486047267914,0.009476793929934502,-0.011182054877281189,0.008495841175317764,0.0038967723958194256,0.023593436926603317,0.005001992452889681,0.0014253389090299606,0.014843135490082204,0.1251411794219166 -2036,10,0.05637547746300697,0.010685312561690807,-0.009552223607897758,0.009209486655890942,0.0046314941719174385,0.02833798509091139,0.005681339651346207,0.0037768175825476646,0.016183939762413502,0.1340521828038618 -2036,30,0.0646924376487732,0.015154765918850899,-0.006738550029695034,0.011044574901461601,0.006666218535974621,0.03838745355606079,0.009078075177967548,0.009480574959889054,0.0195532429497689,0.15402874732390046 -2036,33,0.06565499305725098,0.015836631469428538,-0.006450037471950054,0.011452371254563332,0.006953775882720947,0.03954678654670715,0.009587585926055908,0.010267657693475485,0.019969959682784973,0.156285713291727 -2036,50,0.06981503963470459,0.02014530822634697,-0.005042215576395392,0.013185510411858559,0.008586440235376358,0.045644961297512054,0.01247481070458889,0.01498366054147482,0.022168653085827827,0.168226350331679 -2036,67,0.07379382848739624,0.025751870758831518,-0.0037757488898932934,0.014714749529957771,0.010591598227620125,0.05192601177841425,0.015362035483121872,0.020927244543563595,0.024514523670077327,0.18069109166041017 -2036,70,0.07451391220092773,0.027061575837433332,-0.003562942845746875,0.015122547745704651,0.011036096140742302,0.05315616726875305,0.015871545299887657,0.022353830025531325,0.024997904244810343,0.1831164138857275 -2036,90,0.08301887661218643,0.04186151176691055,-0.0019047035602852702,0.017365431413054466,0.015832016244530678,0.0645136758685112,0.019098445773124695,0.03751438413746655,0.030011066421866416,0.20648709679953756 -2036,95,0.08627072721719742,0.05213484540581703,-0.0012828378123231317,0.017875179648399353,0.018790846690535545,0.06984679400920868,0.019947629421949387,0.04782069753855467,0.032972162961959824,0.21877655376447364 -2037,5,0.05541953817009926,0.009711520746350288,-0.011738015338778496,0.008730064146220684,0.004066456109285355,0.02442394830286503,0.005048238672316074,0.0012332266196608543,0.015374478907324374,0.12964995773509144 -2037,10,0.05849292874336243,0.01098164264112711,-0.010042916983366013,0.00947965681552887,0.004844503477215767,0.02929114326834679,0.005764445289969444,0.0036939014680683613,0.016781947761774062,0.13886274520191363 -2037,30,0.0670994371175766,0.01567106880247593,-0.007104648742824793,0.011407183483242989,0.006983316503465176,0.03959619626402855,0.009345478378236294,0.009683852083981037,0.0203244024887681,0.15950587997213006 -2037,33,0.06809550523757935,0.016386887896806,-0.006801708433777094,0.011835522949695587,0.007281679194420576,0.040789052844047546,0.009882633574306965,0.010509587824344635,0.020762304216623305,0.16182654643431305 -2037,50,0.07240038365125656,0.020917285233736038,-0.00532565638422966,0.01365596428513527,0.00899691553786397,0.047050267457962036,0.012926511466503143,0.015463178046047688,0.02307132724672556,0.1742276083678007 -2037,67,0.07651769369840622,0.0268340431712568,-0.004001154098659754,0.015262236818671227,0.011105431243777275,0.053515466377139095,0.015970388427376747,0.02174453716725111,0.025537800043821335,0.1871596034616232 -2037,70,0.07726284861564636,0.028219663538038727,-0.0037766832392662764,0.015690576285123825,0.011572623625397682,0.05479750782251358,0.016507545486092567,0.02323375060223043,0.0260462868027389,0.18968586581759156 -2037,90,0.08606389909982681,0.0439407117664814,-0.0020401517394930124,0.018046442419290543,0.016620047390460968,0.06644241511821747,0.019909527152776718,0.03937992500141263,0.031319160014390945,0.21407716060057283 -2037,95,0.08942896127700806,0.05488992854952812,-0.0013897084863856435,0.01858186535537243,0.019743604585528374,0.07193961963057517,0.020804785192012787,0.050321042304858565,0.034438351169228554,0.22694793397095053 -2038,5,0.05759502574801445,0.009946387261152267,-0.01233168225735426,0.008964255452156067,0.004252851940691471,0.025304418057203293,0.005086712539196014,0.0010338425636291504,0.015929340850561857,0.1343720744655002 -2038,10,0.060754407197237015,0.011279488913714886,-0.010558697395026684,0.00975058227777481,0.005073451297357679,0.030314246006309987,0.005840695463120937,0.003597499802708626,0.017408302798867226,0.14389364677481353 -2038,30,0.06960171461105347,0.016193468123674393,-0.007486107759177685,0.01177256554365158,0.007320855651050806,0.040883100405335424,0.009610611014068127,0.009872360154986382,0.02112376466393471,0.16517864866182208 -2038,33,0.07062564790248871,0.016943964716047047,-0.007171442178077996,0.012221895158290863,0.007634244859218597,0.04209185224026442,0.010176097974181175,0.0107399330008775,0.021585946353152394,0.16756538424873724 -2038,50,0.0750509649515152,0.02170112170279026,-0.005625410471111536,0.014131546020507812,0.009436806663870811,0.048530276864767075,0.013380525633692741,0.015945605060551316,0.02400975814089179,0.180400968529284 -2038,67,0.07928347587585449,0.027936029136180898,-0.00424388749524951,0.01581653021275997,0.011661162599921227,0.05517003059387208,0.016584953293204308,0.0225647808983922,0.026600951412692666,0.19376992408186197 -2038,70,0.08004947751760483,0.029399648495018478,-0.004004472866654396,0.016265859827399254,0.012154072523117065,0.056496652215719215,0.01715044118463993,0.024144812836311758,0.02713727205991745,0.19639750123023986 -2038,90,0.08909676969051361,0.04606940597295761,-0.002187201054766774,0.018737172707915306,0.0174562156200409,0.06846408098936081,0.020731860771775246,0.04121795203536749,0.03268293421715498,0.22178266253322365 -2038,95,0.09255598485469818,0.05771602317690849,-0.001509787980467081,0.01929883472621441,0.020755760837346288,0.07410448417067526,0.021674340590834618,0.05286019388586283,0.035961131099611514,0.23522821916267275 -2039,5,0.05970509350299835,0.010181393474340439,-0.012946805218234658,0.009198417887091637,0.0044289808720350266,0.02610093541443348,0.005117411725223064,0.0008172942325472832,0.01647741438355297,0.13898815726861358 -2039,10,0.06294702738523483,0.011578850448131561,-0.011087027378380299,0.01002226211130619,0.00529344892129302,0.031262579187750814,0.005910088308155537,0.003489099442958832,0.01802744306623936,0.14879225757904352 -2039,30,0.07202552258968353,0.01672196201980114,-0.007876639533787966,0.01214071735739708,0.007656003814190626,0.04214065484702587,0.009873472154140472,0.010061848443001509,0.02193145202472806,0.17075989842414857 -2039,33,0.07307621091604233,0.01750786067917943,-0.007540921214967966,0.01261148601770401,0.007986928336322308,0.04337643086910248,0.010467980057001114,0.010970593574456868,0.022412900561466814,0.17322803620714694 -2039,50,0.07761716842651367,0.022496819496154785,-0.005928493104875088,0.014612250030040741,0.009884960949420929,0.05000302568078041,0.013836855068802834,0.016434322111308575,0.02495996467769146,0.18648433638736606 -2039,67,0.0819602757692337,0.029057829305529616,-0.004480352625250816,0.016377631574869156,0.012227887287735939,0.05683331534266472,0.017205730080604553,0.02339983987621963,0.027684241235256195,0.2003539689583704 -2039,70,0.08274628967046738,0.030601527541875832,-0.004230443388223648,0.016848398372530937,0.012747162953019142,0.05819800868630409,0.017800239846110344,0.025069094728678465,0.028250301256775856,0.20309558995068072 -2039,90,0.09202999621629715,0.048247598111629486,-0.0023255739361047745,0.019437622278928757,0.018329808674752722,0.07050681114196777,0.021565454080700874,0.04314928036183119,0.03408963233232498,0.2295284901978448 -2039,95,0.0955796018242836,0.06061311811208725,-0.0016239806427620356,0.020026082172989845,0.02181711047887802,0.07629199922084808,0.022556299343705177,0.05548696406185627,0.03753933552652596,0.24358377844328058 -2040,5,0.0616435632109642,0.010416539385914803,-0.013568962924182415,0.00943254865705967,0.004613998346030712,0.02696850206702948,0.005140337161719799,0.0005841292440891266,0.01704008742235601,0.14355540431570263 -2040,10,0.06500691920518875,0.011879727244377136,-0.01162344217300415,0.010294696316123009,0.0055281673558056355,0.03227344863116741,0.0059726242907345295,0.0033793263137340546,0.01866501960903406,0.1536476956680417 -2040,30,0.07442542165517807,0.01725655235350132,-0.00827285461127758,0.012511642649769783,0.008007513359189034,0.0434139758348465,0.010134061798453331,0.01024878304451704,0.022755974810570477,0.17638644662220032 -2040,33,0.07551546394824982,0.018078575786203147,-0.00792355326935649,0.013004297390580177,0.008347908034920692,0.04468007817864418,0.010758277028799057,0.011203405680134892,0.023261945694684982,0.17893707784125581 -2040,50,0.08022648841142654,0.023304369300603867,-0.006238661240786314,0.015098081901669502,0.010349541902542114,0.05148310959339142,0.01429549790918827,0.016931005753576756,0.025930277071893215,0.19266244093887508 -2040,67,0.08473225682973862,0.030199443046003603,-0.00472780829295516,0.01694553717970848,0.012813527137041092,0.05850198738276959,0.017832718789577484,0.024244816857390106,0.02879105694591999,0.20709236373193562 -2040,70,0.08554770797491074,0.031825299933552736,-0.004467051010578871,0.017438191920518875,0.013357317075133324,0.05990161970257759,0.01845693588256836,0.02599157465156162,0.02938187438994646,0.20992426346056162 -2040,90,0.09517911076545715,0.05047527700662613,-0.002473092405125497,0.020147794857621193,0.019225897267460823,0.07255260944366455,0.022410301491618156,0.04511495400220156,0.03551180996000767,0.2374668602831662 -2040,95,0.09886165708303452,0.06358122080564499,-0.0017433806788176298,0.020763613283634186,0.022881265729665756,0.07849650084972382,0.023450661450624466,0.058192475233226994,0.039136459585279226,0.25221347308252 -2041,5,0.0639529824256897,0.010651825927197933,-0.014172926545143127,0.009666649624705315,0.004805778153240681,0.027869635820388795,0.00515549024567008,0.0003802478313446045,0.017606497555971146,0.14843794074840844 -2041,10,0.06740711629390717,0.01218211930245161,-0.012147221714258194,0.010567883029580116,0.005765156354755163,0.03327311128377915,0.006028305273503065,0.0032745851203799248,0.019308019429445267,0.1588257305789739 -2041,30,0.07707981765270233,0.017797237262129784,-0.008665165863931179,0.012885337695479393,0.008359266445040703,0.044671669602394104,0.010392380878329277,0.010443808510899544,0.02358604595065117,0.18224897049367428 -2041,33,0.07819927483797073,0.018656110651791097,-0.008300193017348648,0.013400329276919365,0.008715648800134658,0.04597935453057289,0.011046992614865303,0.011450572405010462,0.024115719231776894,0.184879012061283 -2041,50,0.08303745090961456,0.02412378042936325,-0.006548302248120308,0.015589036047458649,0.010812398977577686,0.05292757228016853,0.014756456017494202,0.017445561476051807,0.02690462488681078,0.19903964013792574 -2041,67,0.08766482025384903,0.03136087097227576,-0.0049767629243433475,0.017520248889923096,0.013389214873313904,0.060134454704821115,0.0184659194201231,0.025117619894444942,0.029898609966039658,0.21398563094669953 -2041,70,0.08850228041410446,0.03307096809148788,-0.004702865146100521,0.01803523860871792,0.01395522989332676,0.06157259233295917,0.019120531156659126,0.026950170285999775,0.030513760447502133,0.21686225570738316 -2041,90,0.09839362651109695,0.05275245010852814,-0.0026253419928252697,0.020867684856057167,0.020091155171394353,0.07452808320522308,0.02326640486717224,0.047177407611161494,0.036920488066971305,0.24547957514878363 -2041,95,0.10217556357383728,0.06662032753229141,-0.00186335074249655,0.021511422470211983,0.023908033408224578,0.08061420917510986,0.024357421323657036,0.060967682395130396,0.04071662500500678,0.2608743959688581 -2042,5,0.06633634865283966,0.010887252166867256,-0.014833922497928143,0.009900720790028572,0.005006100051105022,0.028741445392370224,0.0051628705114126205,0.00013311300426721573,0.018183449213393033,0.15338811092078686 -2042,10,0.06985536962747574,0.012486027553677559,-0.012718367390334606,0.010841824114322662,0.006011823192238808,0.03425707668066025,0.006077130325138569,0.0031287353485822678,0.019970586523413658,0.16404342954047024 -2042,30,0.07970980554819107,0.01834402047097683,-0.009089121595025063,0.013261806219816208,0.008736605755984783,0.04598184376955032,0.010648430325090885,0.010623785341158508,0.024448610609397292,0.18814116795547306 -2042,33,0.08085029572248459,0.01924046715721488,-0.008710049092769623,0.013799579814076424,0.00910801813006401,0.04732321575284004,0.011334124952554703,0.011669276282191277,0.02500338012352586,0.19088494149036705 -2042,50,0.08577936887741089,0.02495505101978779,-0.006882126443088055,0.016085118055343628,0.011315528303384781,0.054462503641843796,0.015219729393720627,0.01794785726815462,0.02792175766080618,0.2054969477467239 -2042,67,0.09049367904663086,0.03254211310297253,-0.0052366964519023895,0.01810176856815815,0.014021341819316158,0.06186747364699841,0.01910533383488655,0.025996792130172253,0.031063337437808515,0.22092107743257658 -2042,70,0.09134688228368759,0.03433853574097156,-0.004958162549883127,0.018639542162418365,0.014617325738072395,0.0633382499217987,0.019791029393672943,0.027918717823922634,0.03170674629509449,0.22391101880930364 -2042,90,0.10142406821250916,0.05507912486791611,-0.0027822237461805344,0.021597295999526978,0.021071908250451087,0.07664517015218734,0.024133766070008278,0.04921863414347172,0.038441043347120285,0.2536130277439952 -2042,95,0.10527706146240234,0.06973045319318771,-0.0019841302069835438,0.022269513458013535,0.025080252438783646,0.08287576884031295,0.025276590138673782,0.06381163047626615,0.042433969024568786,0.2696672841440886 -2043,5,0.06883639842271805,0.011122818104922771,-0.015522158751264213,0.010134762153029442,0.005217046942561865,0.029620868060737847,0.005162476096302271,-0.00015533901751041412,0.01877466286532581,0.1584601624170318 -2043,10,0.07241186499595642,0.012791450135409832,-0.013310350477695465,0.011116521432995796,0.00626533590257168,0.035265594720840454,0.006119097582995892,0.002984028309583664,0.020646680146455765,0.16941249892115592 -2043,30,0.0824243351817131,0.01889689639210701,-0.009525571018457413,0.01364104449748993,0.009126038290560246,0.04730801656842232,0.010902208276093006,0.010800269665196538,0.0253321488853544,0.19416166334412993 -2043,33,0.08358311653137207,0.01983164155855775,-0.009131681034341456,0.014202050864696503,0.009516749531030655,0.04869921013712883,0.011619674041867256,0.011886808089911938,0.025912322830408813,0.19698159403633325 -2043,50,0.08859124034643173,0.02579817920923233,-0.007223294582217932,0.01658632420003414,0.011840732768177986,0.056034155189991,0.015685316175222397,0.018442335072904825,0.028967380290850997,0.21202859189361334 -2043,67,0.09338115900754929,0.03374316878616813,-0.005508442409336567,0.018690092489123344,0.014683237299323082,0.06362098455429077,0.019750960171222687,0.026881951838731766,0.032263155691325665,0.2279905351344496 -2043,70,0.09424804151058197,0.035627990588545794,-0.005213015712797642,0.019251098856329918,0.015309899859130375,0.0651492178440094,0.02046842686831951,0.028878256585448965,0.032934812270104884,0.231110371183604 -2043,90,0.10448683798313141,0.05745529383420944,-0.002939461264759302,0.022336630150675774,0.022090710699558258,0.07880164682865143,0.025012381374835968,0.051320528611540794,0.04000956900417805,0.2618939437903464 -2043,95,0.10840162634849548,0.0729115754365921,-0.0021039152052253485,0.023037884384393692,0.02630438469350338,0.08521731048822397,0.02620815858244896,0.06668308671214614,0.044207015726715315,0.2786766868084669 -2044,5,0.07121212780475616,0.011358522810041904,-0.0162183977663517,0.010368771851062775,0.005437029059976339,0.030517979059368372,0.0051543088629841805,-0.0004479304887354371,0.01938642212189734,0.16353235220303758 -2044,10,0.07488249242305756,0.013098387978971004,-0.013918285258114338,0.01139196939766407,0.006535311695188284,0.03630798123776913,0.00615420937538147,0.0028099529445171356,0.021344739757478238,0.17481046239845455 -2044,30,0.0851607397198677,0.019455866888165474,-0.009977260138839483,0.014023054391145706,0.009541129693388939,0.04867456182837486,0.01115371286869049,0.01097586485557258,0.026246318593621254,0.20029207095503807 -2044,33,0.08635027706623077,0.020429635103791952,-0.009569461457431316,0.014607740566134453,0.009949048422276974,0.050104775428771973,0.011903638020157814,0.01209542244905606,0.026846391963772476,0.20320673238951711 -2044,50,0.09149133414030075,0.026653164997696877,-0.007575584342703223,0.01709265261888504,0.012390712276101112,0.05762299709022045,0.01615321636199951,0.018941552378237247,0.030038582161068916,0.2187436509411782 -2044,67,0.09640839695930481,0.03496403682976964,-0.005789195653051138,0.01928522437810898,0.015374736860394478,0.06542275846004486,0.02040279470384121,0.02776995353633538,0.03349323388189078,0.23525573620572687 -2044,70,0.0972982868552208,0.03693934269249439,-0.0054777152836322784,0.019869908690452576,0.01602351665496826,0.06698371171951292,0.021152719855308533,0.0298584277741611,0.03420064263045788,0.23849649084731936 -2044,90,0.10780885815620422,0.05988094583153725,-0.0031068518292158838,0.02308567985892296,0.023152945563197136,0.0809954360127449,0.025902248919010162,0.053454687586054206,0.04163184016942978,0.27047972846776247 -2044,95,0.1118275597691536,0.07616370916366577,-0.002235057530924678,0.023816535249352455,0.02757992222905159,0.08758385479450226,0.027152124792337418,0.06961608398705721,0.046026216354221106,0.28802227147389203 -2045,5,0.07319708913564682,0.011594368144869804,-0.016911786049604416,0.01060274988412857,0.005689916200935841,0.03152674082666636,0.005138367880135775,-0.0007433528080582619,0.020030438713729382,0.16840908396989107 -2045,10,0.07700327783823013,0.013406841084361076,-0.014535095542669296,0.011668173596262932,0.006844696123152971,0.037465792149305344,0.006182464770972729,0.0026353225111961365,0.02207413539290428,0.1799949652981013 -2045,30,0.08766186237335205,0.02002093382179737,-0.010430158302187919,0.014407835900783539,0.009982067160308361,0.05008433759212494,0.011402948759496212,0.011138438247144222,0.027190462872385978,0.20631077704019846 -2045,33,0.08889541774988174,0.02103444904088974,-0.010011405684053898,0.015016650781035423,0.010407669469714165,0.0515451018884778,0.01218602154403925,0.012294805841520429,0.02781134549062699,0.20929683465976268 -2045,50,0.09422671794891357,0.027520008385181427,-0.007944441866129637,0.017604108899831772,0.012963511981070042,0.05925443582236767,0.01662343181669712,0.01943738665431738,0.031142538879066706,0.22538906196132302 -2045,67,0.09932573139667511,0.03620471592992547,-0.006088342517614365,0.019887160509824753,0.016075555235147476,0.06723073124885559,0.021060843020677567,0.028668618388474027,0.03474966736510396,0.24245610678102822 -2045,70,0.1002485528588295,0.03827258981764316,-0.005764463450759649,0.020495975390076637,0.016760483384132385,0.06883285939693451,0.021843917667865753,0.030848498921841383,0.03549029659479856,0.24583295895718035 -2045,90,0.11114806681871414,0.062356095761060715,-0.003291572746820747,0.02384445071220398,0.024212850257754326,0.08316817879676819,0.026803378015756607,0.055622407235205173,0.04325917363166809,0.27902732929214835 -2045,95,0.11531546711921692,0.07948683947324753,-0.0023737133014947176,0.024605469778180122,0.028856525663286406,0.08991247415542603,0.028108499944210052,0.072596434969455,0.047853130567818876,0.2973653540713712 -2046,5,0.07502160966396332,0.011830352246761322,-0.017623318638652564,0.010836698114871979,0.0059404751053079964,0.03252115100622177,0.005114654079079628,-0.001037771813571453,0.02067098394036293,0.17312643041368575 -2046,10,0.07898331433534622,0.013716809451580048,-0.015158900991082191,0.011945132166147232,0.007146448828279972,0.038566507399082184,0.006203863769769669,0.0024648617021739484,0.022807484865188597,0.18505601396318525 -2046,30,0.09007741510868073,0.02059209533035755,-0.010898220352828503,0.014795389026403427,0.010424990206956863,0.051478173583745956,0.01164991408586502,0.011301049031317234,0.02813603952527046,0.212267292663455 -2046,33,0.09136137366294861,0.02164608148857951,-0.010459419339895248,0.015428779646754265,0.0108682531863451,0.05298410907387733,0.012466821819543839,0.012502532452344894,0.028785980544053017,0.21531943796668201 -2046,50,0.0969105139374733,0.028398709371685982,-0.008314518257975578,0.018120689317584038,0.013540280982851982,0.06087066978216171,0.017095962539315224,0.019945272244513035,0.032253499142825603,0.23197325551882386 -2046,67,0.10221787542104721,0.037465212345123323,-0.006388313136994839,0.020495904609560966,0.016787298023700714,0.06903475522994995,0.021725105121731758,0.02958648558706045,0.03601874811574817,0.2496418398246169 -2046,70,0.10317839682102203,0.03962773270905017,-0.0060508535243570805,0.021129295229911804,0.017505235970020294,0.0706644281744957,0.022542012855410576,0.03186179930344224,0.0367948729544878,0.25316667549777777 -2046,90,0.1145232692360878,0.06488073617219925,-0.003482085582800207,0.024612942710518837,0.025307580828666687,0.08532726913690566,0.027715761214494705,0.057831141259521254,0.04490486532449722,0.28767201928421854 -2046,95,0.11886096000671387,0.08288097381591797,-0.0025168592110276222,0.025404680520296097,0.03014756366610527,0.09219999536871909,0.02907727286219597,0.07566705252975225,0.04970290157943962,0.3068067245651036 -2047,5,0.07699313759803772,0.012066477909684181,-0.018362371250987053,0.01107061468064785,0.006170862005092204,0.033429764211177826,0.005083166994154453,-0.0013607768341898918,0.021300189709290863,0.17791864927858114 -2047,10,0.08114541321992874,0.014028294011950493,-0.01579490080475807,0.012222843244671822,0.007430845405906439,0.03961154818534851,0.006218406837433577,0.002274871803820133,0.02352972812950611,0.19028246970847248 -2047,30,0.09277315437793732,0.021169355139136314,-0.011371682491153478,0.015185711905360222,0.010863514617085457,0.05285773053765297,0.011894606985151768,0.011473327875137329,0.029087151773273943,0.21846661008894444 -2047,33,0.0941188782453537,0.022264534328132867,-0.01091661024838686,0.015844127163290977,0.01132429949939251,0.054396477192640305,0.012746036984026432,0.012720645405352116,0.029762296099215747,0.22167495467700063 -2047,50,0.09993493556976318,0.02928927168250084,-0.008681832812726498,0.018642393872141838,0.014124736189842224,0.06247931718826294,0.01757080666720867,0.020472721953410655,0.03338052984327078,0.23892675177194178 -2047,67,0.10549759119749069,0.03874551858752969,-0.006685916800051928,0.02111145108938217,0.017518961802124977,0.07084300860762598,0.022395575419068336,0.030525801703333855,0.03731285221874714,0.2572871369495988 -2047,70,0.10650432109832764,0.04100477024912833,-0.006333732511848211,0.021769868209958076,0.018274348229169846,0.07251976430416107,0.02324700728058815,0.03290262445807457,0.03812486995011568,0.26095286356285213 -2047,90,0.1183948963880539,0.06745487451553345,-0.0036573295947164297,0.02539115399122238,0.026436581648886206,0.08754944801330566,0.028639396652579308,0.06008414551615715,0.046615352109074595,0.296854186616838 -2047,95,0.12294123321771622,0.08634612709283829,-0.0026470054872334003,0.026214173063635826,0.03150979056954384,0.09457306563854218,0.030058447271585464,0.07884221710264683,0.051625876408070315,0.3168957701185718 -2048,5,0.07953006774187088,0.012302741408348083,-0.01913181133568287,0.011304503306746483,0.006402573548257351,0.034307586029171944,0.005043907091021538,-0.0017083324491977692,0.02193819358944893,0.18318772772327066 -2048,10,0.08381402492523193,0.014341292902827263,-0.01646707020699978,0.01250130869448185,0.0077221570536494255,0.04067007452249527,0.0062260935083031654,0.002068989910185337,0.024265702813863754,0.1959502308163792 -2048,30,0.09581051021814346,0.021752705797553062,-0.011866933666169643,0.015578808262944221,0.011317692697048187,0.054253656417131424,0.012137029320001602,0.01163562387228012,0.030063594691455364,0.22505032988265156 -2048,33,0.09719891101121902,0.022889805063605308,-0.011398895643651485,0.01626269705593586,0.011800190433859825,0.05582655053585767,0.013023669831454754,0.012931491248309612,0.030764961130917073,0.22837550061289222 -2048,50,0.10319941490888596,0.030191686004400253,-0.009066806174814701,0.019169224426150322,0.014737746678292751,0.06412217020988464,0.018047964200377464,0.020985121373087168,0.03454126510769129,0.24618961568921804 -2048,67,0.10893847048282623,0.04004564091563228,-0.006993473041802645,0.021733807399868965,0.01829850878566505,0.07271627560257914,0.02307225950062275,0.03147270682267847,0.03865471109747887,0.2652137718955055 -2048,70,0.109977126121521,0.04240370020270347,-0.006622168701142073,0.022417696192860603,0.019088648073375215,0.07442915439605713,0.023958900943398476,0.033942196518182755,0.03950475435703993,0.26898085745051503 -2048,90,0.12224479019641876,0.07007849961519241,-0.0038375435397028923,0.026179084554314613,0.027659724652767198,0.08982959240674973,0.029574289917945862,0.06236653444357222,0.048407405614852905,0.3062701401533559 -2048,95,0.12693530321121216,0.0898822769522667,-0.0027857457753270864,0.02703394554555416,0.03297114744782448,0.09704557061195374,0.03105202317237854,0.082071952521801,0.05367452455684541,0.3272569002583623 -2049,5,0.08226939290761948,0.012539146468043327,-0.01993553899228573,0.011538360267877579,0.006657841615378857,0.035275446623563765,0.004996872041374445,-0.002082272013649342,0.022615133412182332,0.18870488118845968 -2049,10,0.08664119988679886,0.014655807986855507,-0.017163174226880074,0.012780528515577316,0.008041266351938248,0.041777338832616806,0.006226923316717148,0.0018465900793671608,0.025037286337465048,0.20183573598042132 -2049,30,0.09888370335102081,0.022342154756188393,-0.012384849600493908,0.015974676236510277,0.011808015406131744,0.0557129867374897,0.012377182021737099,0.011778127402067184,0.031077108159661294,0.23174218679778277 -2049,33,0.10030058026313782,0.023521897438913583,-0.011897553689777851,0.016684485599398613,0.01231555389240384,0.05734026059508324,0.013299720361828804,0.013123282231390476,0.031810517404228446,0.23516634926199914 -2049,50,0.10642413049936295,0.03110596165060997,-0.009472306817770004,0.01970118097960949,0.015392635017633438,0.06583558022975922,0.0185274388641119,0.021489836275577545,0.035750496201217175,0.2535343817435205 -2049,67,0.11228088289499283,0.04136557929217819,-0.007314762100577354,0.0223629679530859,0.019128622487187386,0.07465265691280365,0.023755157366394997,0.03240849659778178,0.04004707464948297,0.27314349061809484 -2049,70,0.1133408397436142,0.04382452741265296,-0.006928815878927713,0.023072781041264534,0.01995323784649372,0.07639141380786896,0.02467769756913185,0.034980764612555504,0.040937017649412155,0.27702906006015837 -2049,90,0.1258600801229477,0.07275162637233734,-0.004030514974147081,0.02697673812508583,0.028943753242492706,0.09216226637363434,0.030520441010594368,0.06472568213939667,0.05026455223560333,0.31573256235569713 -2049,95,0.13064678013324738,0.09348943829536438,-0.0029280679300427437,0.0278640016913414,0.03451835736632347,0.09957153946161267,0.032058004289865494,0.08534863623790434,0.055789868626743525,0.33753583906218404 -2050,5,0.08499819785356522,0.012775690294802189,-0.020718883723020554,0.011772187426686287,0.0069193169474601746,0.03624594211578369,0.004942066036164761,-0.0024363904725760214,0.023287277156487107,0.19431394857820122 -2050,10,0.08949752151966095,0.014971837401390076,-0.017850924283266068,0.013060502707958221,0.008360076695680618,0.042901940643787384,0.006220899056643248,0.0016230512410402298,0.02581049408763647,0.2078093970194459 -2050,30,0.10209709405899048,0.022937698289752007,-0.012896418571472168,0.01637331396341324,0.012300107628107071,0.057157229632139206,0.012615062296390533,0.011930087581276894,0.03209514543414116,0.23858504435047506 -2050,33,0.10355529189109802,0.024160807095468043,-0.012398474849760532,0.017109494656324387,0.012831578031182289,0.05882063880562782,0.013574186712503433,0.013327090069651604,0.03285809626802802,0.24213767413981258 -2050,50,0.1098574548959732,0.03203209862112999,-0.00987568125128746,0.020238259807229042,0.0160427987575531,0.06751392036676407,0.01900922693312168,0.022017160430550575,0.03695829585194588,0.2610625079832971 -2050,67,0.11588503420352936,0.04270532377064232,-0.007633973378688097,0.022998938336968422,0.019948452711105347,0.07655183970928192,0.02444426342844963,0.033380477040773314,0.041447336804121736,0.28130756300408394 -2050,70,0.11697590351104736,0.04526724442839622,-0.007233866956084967,0.02373511530458927,0.020811347290873528,0.07832911461591721,0.02540338970720768,0.036035967990756035,0.04237041715532541,0.2853563129901886 -2050,90,0.1298602819442749,0.07547423988580704,-0.0042251781560480595,0.027784109115600586,0.03021044731140138,0.09447300434112549,0.03147784620523453,0.06712047196924686,0.05211552195250988,0.325459112552926 -2050,95,0.13478660583496094,0.09716758877038956,-0.003072635969147086,0.028704334050416946,0.036042120307683945,0.10202762261033052,0.03307638689875603,0.08869506281916983,0.05789496190845966,0.3482456660829484 -2051,5,0.087744802236557,0.013012373819947243,-0.02155100181698799,0.012005984783172607,0.007201092178002,0.03723839111626148,0.004879484884440899,-0.0028346577193588012,0.02399175427854061,0.19994380320422353 -2051,10,0.09235002100467682,0.015289382077753544,-0.018581455573439598,0.013341231271624565,0.008708499372005463,0.044076107442379,0.006208016537129879,0.0013768728822469711,0.02662304285913706,0.21381369438022377 -2051,30,0.1052461788058281,0.023539338260889053,-0.013439050223678351,0.016774723306298256,0.012822998687624931,0.058640915900468826,0.012850672006607056,0.012073333375155926,0.03315863758325577,0.24546667318791152 -2051,33,0.10673870146274567,0.024806537125259636,-0.012916620820760727,0.01753772236406803,0.0133840162307024,0.06034761667251587,0.01384707074612379,0.013514552265405655,0.03395210765302181,0.24911624773871155 -2051,50,0.1131892055273056,0.03297009319067001,-0.01030067540705204,0.020780466496944427,0.016743198037147522,0.069271519780159,0.019493326544761658,0.02252890355885029,0.038220591843128204,0.2686296950560063 -2051,67,0.11935866624116898,0.04406489051878456,-0.00797585034742951,0.023641709238290787,0.02083440311253071,0.07851825654506683,0.02513958513736725,0.034337179735302925,0.042908056359738114,0.2894873348996043 -2051,70,0.12047521024942398,0.046731860935688006,-0.007562684360891581,0.024404708296060562,0.021735651418566704,0.08034907281398773,0.026135984808206558,0.03709605988115072,0.043878935649991034,0.2937434972729534 -2051,90,0.1336628794670105,0.0782463550567627,-0.0044288914650678635,0.028601201251149178,0.0315694659948349,0.09684567153453827,0.03244650736451149,0.06953695323318247,0.05406795311719179,0.33520426973700523 -2051,95,0.13870514929294586,0.10091676563024521,-0.0032369643449783325,0.029554948210716248,0.03767036646604538,0.10461132228374481,0.03410717099905014,0.09208321757614613,0.06012641452252865,0.3589257300365716 -2052,5,0.09059062600135803,0.013249197043478489,-0.022388119250535965,0.012239750474691391,0.007491705450229348,0.038269709795713425,0.004809129983186722,-0.0032374225556850433,0.024705862253904344,0.20571232913061976 -2052,10,0.09526222944259644,0.015608442947268486,-0.01931224763393402,0.013622714206576347,0.009065833874046803,0.04523080214858055,0.006188276223838329,0.0011250153183937073,0.027442813385277987,0.21986408876255153 -2052,30,0.10834426432847977,0.024147072806954384,-0.013978509232401848,0.017178906127810478,0.013357991352677345,0.06012944132089615,0.013084009289741516,0.012212886475026608,0.03423220738768577,0.2522888893727213 -2052,33,0.10985829681158066,0.025459088180214168,-0.013438819292932749,0.017969170585274696,0.013945065438747406,0.0618960052728653,0.014118369668722153,0.013697599992156029,0.035060337111353874,0.25605352922342717 -2052,50,0.1164017766714096,0.03391994163393974,-0.010724695399403572,0.021327797323465347,0.01744992658495903,0.07100926339626312,0.01997974142432213,0.02305138297379017,0.03949567303061485,0.2760908016934991 -2052,67,0.12266015261411667,0.045444260910153425,-0.008326098322868347,0.02429128997027874,0.02172812633216381,0.08046125859022141,0.025841113179922104,0.03532693535089493,0.04438195208087565,0.2975506520830095 -2052,70,0.12379279732704163,0.04821837246417998,-0.007885850965976715,0.025081556290388107,0.022670241072773933,0.0823386013507843,0.02687547355890274,0.03817758895456791,0.045396607369184494,0.30190013935789467 -2052,90,0.13717053830623627,0.08106795698404312,-0.004639686690643425,0.029428014531731606,0.03293611481785774,0.09920138120651245,0.03342641890048981,0.07199543435126543,0.05602740775793791,0.3447412256617099 -2052,95,0.14228548109531403,0.10473693907260895,-0.0033957569394260645,0.030415846034884453,0.039313942193984985,0.10713869333267212,0.03515035659074783,0.0955287916585803,0.06235844790935516,0.3694549929117783 -2053,5,0.0931563675403595,0.013486160896718502,-0.0232602097094059,0.012473484501242638,0.007768872659653425,0.039216110669076445,0.004731002263724804,-0.0036679254844784737,0.02541820937767625,0.2111261286539957 -2053,10,0.09793464094400406,0.01592901721596718,-0.020072902180254457,0.013904949650168419,0.009413782507181168,0.046385180205106735,0.006161681842058897,0.0008565355092287064,0.028265899792313576,0.22569480147212745 -2053,30,0.11131536960601807,0.024760901927947998,-0.014543970115482807,0.017585858702659607,0.013902192935347557,0.06162542849779129,0.013315077871084213,0.012342492910102006,0.035329176299273964,0.2590370803605765 -2053,33,0.11286397278308868,0.02611845836043358,-0.013981929048895836,0.01840383931994438,0.014516307041049004,0.06343670725822449,0.014388087205588818,0.01388440309092402,0.03618599288165569,0.2629259960819036 -2053,50,0.11955685913562775,0.034881651401519775,-0.011163745075464249,0.0218802522867918,0.018182484433054924,0.07278510928153992,0.020468473434448242,0.023569881916046143,0.04080258682370186,0.28357555461116135 -2053,67,0.1259581297636032,0.04684345230460171,-0.008674303069710732,0.024947678670287132,0.022658249363303185,0.08246075436472894,0.02654886059463024,0.03632018668577075,0.04590268909931183,0.30569666863419115 -2053,70,0.1271166354417801,0.04972677864134311,-0.008218504767864954,0.02576565556228161,0.023640785366296768,0.08437504768371581,0.02762187086045742,0.03928067069500685,0.04696309752762317,0.310174279846251 -2053,90,0.14079982042312622,0.08393906056880951,-0.0048450599424541,0.03026454709470272,0.03439004346728325,0.10163719952106476,0.03441759943962097,0.07448000507429242,0.058085177093744285,0.3545603626407683 -2053,95,0.14603155851364136,0.10862812399864197,-0.0035514405462890863,0.031287021934986115,0.04106709733605385,0.10976323187351224,0.036205947399139404,0.09906809777021408,0.06471630120649932,0.3802624161588028 -2054,5,0.09553194046020508,0.013723265379667282,-0.024168124422430992,0.012707190588116646,0.008075693063437939,0.04026375710964203,0.00464510265737772,-0.004120665602385998,0.026171773672103882,0.21657804492861032 -2054,10,0.10047061741352081,0.016251107677817345,-0.020853718742728233,0.014187939465045929,0.00979277677834034,0.04759692288935185,0.006128231529146433,0.000557340681552887,0.029126980807632208,0.23155718808993697 -2054,30,0.11430054903030396,0.025380825623869896,-0.015128599479794502,0.01799558289349079,0.01448914036154747,0.0631818026304245,0.013543874956667423,0.012456771917641163,0.03646783884614706,0.26594160217791796 -2054,33,0.11590113490819931,0.026784645821899176,-0.014543562531471255,0.018841726705431938,0.015127494931221008,0.06504419684410095,0.01465622242540121,0.014050334692001343,0.03736071515828371,0.26994317655917255 -2054,50,0.12281870096921921,0.035855215042829514,-0.01162277814000845,0.02243783324956894,0.0189637653529644,0.07461141049861908,0.02095951698720455,0.024084456264972687,0.04216648079454899,0.29127054812852293 -2054,67,0.12943486869335175,0.048262456059455915,-0.009042172692716122,0.025610869750380516,0.023647250905632973,0.0845075149834156,0.027262814342975616,0.037315919520333474,0.04748542036861182,0.3141042117774487 -2054,70,0.13063226640224457,0.0512570772320032,-0.008567077107727528,0.026457011699676514,0.024675676599144936,0.08647190034389496,0.028375161811709404,0.04037385806441307,0.048593076318502425,0.3187790135387331 -2054,90,0.14477480947971344,0.08685964345932007,-0.005067032761871815,0.031110798940062523,0.03591947630047798,0.10411660373210907,0.03542002663016319,0.07698887772858143,0.060212867334485054,0.36473063016310336 -2054,95,0.15018218755722046,0.11259029805660248,-0.0037192802410572767,0.03216847777366638,0.042902763932943344,0.11242263689637183,0.03727393224835396,0.10263349069282413,0.06715335529297589,0.3915451681241393 -2055,5,0.0979401096701622,0.013960507698357105,-0.025082575157284737,0.012940863147377968,0.008391270413994789,0.041328027844429016,0.004551427438855171,-0.004593178629875183,0.026939932280220093,0.22206086775986478 -2055,10,0.10303370654582977,0.016574714332818985,-0.021659769117832184,0.014471685513854027,0.010192961804568768,0.04884156957268715,0.0060879229567945,0.00024076923727989197,0.030008388310670854,0.23749573030509055 -2055,30,0.11729744076728821,0.026006849482655525,-0.015726100653409958,0.01840807870030403,0.015095124021172523,0.06475465595722199,0.013770400546491146,0.012563579715788364,0.03763351142406464,0.2729302220977843 -2055,33,0.11894824355840683,0.027457656171172858,-0.015126603655517101,0.019282834604382515,0.015765929762274027,0.06667232513427734,0.014922772534191608,0.014218521304428577,0.038560287468135356,0.2770399932563305 -2055,50,0.12608279287815094,0.03684064373373985,-0.012095057405531406,0.02300054021179676,0.01977486163377762,0.07645758986473083,0.021452877670526505,0.0246027666144073,0.043560223653912544,0.29905444011092186 -2055,67,0.1329064965248108,0.049701273366808935,-0.009424371644854546,0.026280870661139488,0.024670718237757683,0.08659867942333221,0.027982981875538826,0.03830913454294205,0.049102405682206154,0.32261038199067116 -2055,70,0.1341414600610733,0.052809271588921534,-0.008924182504415512,0.027155622839927673,0.025746703147888184,0.08859163522720337,0.029135355725884438,0.041486466769129024,0.05025548413395882,0.3274656650610268 -2055,90,0.14872761070728302,0.08982973545789719,-0.0052927639335393906,0.03196677565574646,0.037502534687519073,0.10664251446723938,0.03643370792269707,0.0795550188049674,0.062398302368819714,0.375006511900574 -2055,95,0.1543046087026596,0.11662349849939346,-0.003890725551173091,0.0330602191388607,0.044813141226768494,0.11512866616249084,0.03835432976484299,0.1062473006080836,0.0696656041778624,0.4028522865846753 -2056,5,0.09945400804281235,0.014197890646755695,-0.026014355942606926,0.013174507766962051,0.008741725236177444,0.042434126138687134,0.004449980799108744,-0.005080753937363625,0.02773844131734222,0.2266182577353902 -2056,10,0.1045621931552887,0.01689983531832695,-0.022490398958325386,0.014756184071302414,0.010619478300213814,0.05012266598641873,0.006040759850293398,-8.343979716300164e-05,0.030922656878829002,0.24234627513214946 -2056,30,0.11886680126190186,0.02663896419107914,-0.016342555172741413,0.018823346123099327,0.01573713459074497,0.06638617143034935,0.013994656503200531,0.012666082102805376,0.038837818428874016,0.2784985945094377 -2056,33,0.12052233517169952,0.028137481939047575,-0.01572050031274557,0.019727161154150963,0.016435058787465096,0.06835452497005462,0.015187741257250309,0.014378974214196205,0.039808789268136024,0.2826745915040374 -2056,50,0.1276773363351822,0.0378379262983799,-0.012580330483615398,0.023568369448184967,0.020625468343496323,0.07836145162582397,0.021948551759123802,0.02510198298841715,0.04499435052275658,0.3051938861608505 -2056,67,0.13452059030532837,0.051159904263913675,-0.009814683347940445,0.026957672089338303,0.025738306399434807,0.08869169652462006,0.02870936505496502,0.039325763122178614,0.05076202191412449,0.3293597070453689 -2056,70,0.13575908541679382,0.05438335947692393,-0.009298548102378845,0.02786148525774479,0.02685869615525006,0.0907419204711914,0.029902450740337372,0.04260896611958742,0.0519725676625967,0.33437095519620924 -2056,90,0.15038703382015228,0.09284931421279907,-0.005531004164367914,0.032832466065883636,0.039136987179517746,0.10918611288070679,0.03745865449309349,0.08215619763359439,0.06463100668042898,0.3832730745896697 -2056,95,0.15598000586032867,0.12072769552469254,-0.004075630102306604,0.03396223112940788,0.04676997661590576,0.11783940568566321,0.0394471250474453,0.10996015183627605,0.07221672907471653,0.4122033789986744 -2057,5,0.102352574467659,0.014435413293540478,-0.02695181965827942,0.013408120721578598,0.009084926918148994,0.043533880636096006,0.004340759944170713,-0.0055696601048111916,0.028537225537002088,0.23265934828668833 -2057,10,0.10759562253952026,0.01722647249698639,-0.023305827751755714,0.01504143513739109,0.011048581451177597,0.051392124965786934,0.005986739881336689,-0.00041233934462070465,0.03183801658451557,0.24881717190146446 -2057,30,0.12227790057659149,0.027277173474431038,-0.016964627616107467,0.01924138329923153,0.016375653445720673,0.0680153213441372,0.014216640964150429,0.012773146713152526,0.04004824347794056,0.2859755580313504 -2057,33,0.12397713959217072,0.028824129942804574,-0.01630993001163006,0.020174706354737282,0.01710718683898449,0.07002084791660308,0.015451124869287014,0.014548186212778091,0.04105546353384852,0.2902618795633316 -2057,50,0.1313210427761078,0.03884706646203995,-0.013070279266685247,0.024141324684023857,0.021474437788128853,0.08023837953805923,0.022446539252996445,0.025625595822930336,0.04643879272043705,0.31341508124023676 -2057,67,0.13834497332572937,0.052638344988226934,-0.010211837477982044,0.027641281485557556,0.026804309338331223,0.09078940749168396,0.02944195456802845,0.04036270407959832,0.052435707878321414,0.33829468334093693 -2057,70,0.13961616158485413,0.0559793435037136,-0.009672560729086399,0.02857460267841816,0.027962490916252136,0.09287941157817839,0.03067643940448761,0.043751103803515434,0.05370414480566978,0.3434592057950795 -2057,90,0.15463031828403473,0.09591837972402573,-0.0057876757346093655,0.0337078794836998,0.040780097246170044,0.11169056594371796,0.03849484771490097,0.08481428679078817,0.06689092777669431,0.39404581692069773 -2057,95,0.16037094593048096,0.12490290403366089,-0.0042536151595413685,0.034874528646469116,0.04874773733317851,0.1205267570912838,0.04055231809616089,0.11375742501113557,0.07477891566231847,0.42395628429949284 -2058,5,0.10679186135530472,0.014673075638711452,-0.027917027939110994,0.013641705736517906,0.009446351416409015,0.0446584727615118,0.0042237648740410805,-0.006086495704948902,0.02935706484131515,0.24033656413666904 -2058,10,0.11220530420541763,0.017554625868797302,-0.02414135988801717,0.015327442437410355,0.011490473523736,0.05271666869521141,0.005925863049924374,-0.0007462713867425891,0.032786939013749364,0.2569525059312582 -2058,30,0.12736473977565765,0.027921481058001518,-0.01760638877749443,0.019662195816636086,0.017058719694614408,0.06967800110578537,0.01443635206669569,0.012872152030467987,0.04128705523908138,0.2951886607334018 -2058,33,0.12911920249462128,0.029517597705125808,-0.01691774982959032,0.02062547393143177,0.01781294710934162,0.07171331346035004,0.015712926164269447,0.01470479927957058,0.04233984649181366,0.2996405148226768 -2058,50,0.136701762676239,0.0398680679500103,-0.013573729433119297,0.02471940591931343,0.022360753268003464,0.08214601874351501,0.022946838289499283,0.0261555640026927,0.04792330879718065,0.3234835094772279 -2058,67,0.14395396411418915,0.05413660548627381,-0.010624812915921211,0.028331702575087547,0.02791956253349781,0.09291845053434375,0.030180754140019417,0.04139086790382862,0.054165108129382133,0.3491300816601142 -2058,70,0.14526647329330444,0.057597225904464706,-0.010065953247249126,0.029294978827238083,0.029116150550544253,0.09506011009216309,0.0314573310315609,0.04489803081378339,0.05547320302575826,0.3544363678898662 -2058,90,0.1607685685157776,0.09903694689273834,-0.006039795698598013,0.03459301218390465,0.04247361533343792,0.11426351964473724,0.039542291313409805,0.08749754540622234,0.06922472156584263,0.40679790619760753 -2058,95,0.16669577360153198,0.12914910912513733,-0.004443757701665163,0.0357971116900444,0.05077245086431503,0.12326480448246002,0.04166991636157036,0.11755500831641194,0.07744604861363766,0.4377459507901221 -2059,5,0.10969621688127518,0.01491087768226862,-0.028943687677383423,0.013875259086489677,0.009785082191228867,0.045703007653355596,0.004098997451364994,-0.0066339680925011635,0.03016979894600809,0.24630749691277742 -2059,10,0.1152217760682106,0.01788429170846939,-0.025035502389073372,0.015614204108715057,0.011922987923026086,0.05394095554947853,0.005858130287379026,-0.0011124685406684875,0.03372409772127867,0.2633447079919279 -2059,30,0.1306951642036438,0.028571883216500282,-0.018266668543219566,0.0200857762247324,0.01773095689713955,0.07130692750215531,0.014653796330094337,0.012953467667102814,0.04255274869501591,0.30263903830200434 -2059,33,0.13248595595359802,0.030217883996665477,-0.01755165122449398,0.02107946015894413,0.018525423482060432,0.07340687796473502,0.01597314514219761,0.014851438775658607,0.043640049174427986,0.3072191365715116 -2059,50,0.14022555947303772,0.04090092331171036,-0.01408864464610815,0.025302613154053688,0.023278793320059776,0.0840829536318779,0.023449458181858063,0.026657880283892155,0.04944994859397411,0.3317468073219061 -2059,67,0.14762794971466064,0.055654675848782115,-0.011030428111553192,0.02902892418205738,0.029091717675328255,0.09511727452278138,0.030925773084163666,0.04244176075793803,0.05595793388783932,0.358175819600001 -2059,70,0.14896763861179352,0.059237000718712796,-0.010457072407007217,0.030022606253623962,0.030361425131559372,0.09729073196649547,0.032245125621557236,0.046059926971793175,0.05732719413936138,0.363632773514837 -2059,90,0.1647907793521881,0.10220500826835632,-0.006278511183336374,0.035487864166498184,0.044334109872579575,0.11692836433649065,0.040601011365652084,0.09024384338408709,0.071691682189703,0.4178081307560206 -2059,95,0.17084074020385742,0.13346633315086365,-0.004621809045784176,0.036729972809553146,0.0530284158885479,0.12611372619867323,0.042799923568964005,0.121422085561789,0.08034911751747131,0.44990080934949217 -2060,5,0.11281954497098923,0.015148820355534554,-0.029962556436657906,0.014108778908848763,0.010146807879209518,0.04683342352509499,0.003966457210481167,-0.0071932291612029076,0.031004695128649472,0.25248709982261064 -2060,10,0.11843672394752502,0.018215475603938103,-0.025935260578989983,0.01590171828866005,0.012375831604003906,0.055207280442118645,0.005783541593700647,-0.0014855451881885529,0.03468908127397299,0.2700269954744726 -2060,30,0.1341666728258133,0.02922838181257248,-0.018931385315954685,0.020512128248810768,0.01843707635998726,0.07296050637960434,0.014868966303765774,0.013028746470808983,0.04384529124945402,0.3102880886755884 -2060,33,0.13598716259002686,0.03092499068006873,-0.018195202574133873,0.02153666503727436,0.019262315705418587,0.07511186614632606,0.016231779009103775,0.014998146332800388,0.04496149832382798,0.31497322902083397 -2060,50,0.14385509490966797,0.04194563999772072,-0.014612427912652493,0.02589094452559948,0.024222198873758316,0.08602596074342728,0.02395438775420189,0.027184875216335058,0.05099743977189064,0.3401326648890972 -2060,67,0.15138022601604462,0.05719255853444343,-0.011446458678692577,0.029732951894402504,0.030288444831967354,0.0972961038351059,0.0316770002245903,0.043490789365023375,0.057774921115487814,0.36734109449200336 -2060,70,0.15274213254451752,0.06089866757392882,-0.010860772803425789,0.030757488682866096,0.031617339327931406,0.09951850622892379,0.03303981572389603,0.04723099246621132,0.05921016726642847,0.37295269188471136 -2060,90,0.16882763803005219,0.10542257130146027,-0.006530309095978737,0.036392439156770706,0.046198129653930664,0.11955403685569764,0.04167097061872482,0.0930147310718894,0.07419576756656171,0.42878089733421804 -2060,95,0.17497789859771729,0.13785454630851746,-0.004815428052097559,0.03767310827970505,0.05528413504362106,0.1289662510156631,0.043942321091890335,0.12537173302844154,0.0832332570105791,0.46197764314711093 -2061,5,0.11596157401800156,0.015386901795864105,-0.030991336330771446,0.014342272654175758,0.010554550122469664,0.048033472150564194,0.003826143452897668,-0.007778886426240205,0.03188856318593025,0.2588656256091781 -2061,10,0.12167228758335114,0.01854817382991314,-0.026836276054382324,0.01618998683989048,0.012872793525457385,0.0565507747232914,0.0057020969688892365,-0.0018814094364643097,0.03570776914712041,0.2768615745473653 -2061,30,0.13766415417194366,0.02989097498357296,-0.019613010808825493,0.020941253751516342,0.019194627180695534,0.0746926099061966,0.015081867575645447,0.013106368482112885,0.045183852314949036,0.31808501705527303 -2061,33,0.1395149528980255,0.03163891837000847,-0.018853945657610893,0.02199709229171276,0.020059766247868538,0.07686661705374717,0.016488833352923393,0.015127329844981429,0.0463382713496685,0.3228506681602448 -2061,50,0.14751389622688293,0.04300221428275108,-0.015160545706748962,0.026484400033950806,0.025220045819878578,0.08803117275238037,0.02446163445711136,0.027712522074580193,0.05260681267827749,0.3486687452532351 -2061,67,0.15516433119773865,0.05875025603920227,-0.011886163614690304,0.030443787574768066,0.03153619170188904,0.09952251613140106,0.03243444114923477,0.04453642734326425,0.0596481803804636,0.37662359811365603 -2061,70,0.1565489023923874,0.06258223056793212,-0.011286417953670025,0.031499627977609634,0.03291059657931328,0.10178961753845214,0.03384140506386757,0.04840271919965744,0.06114000771194696,0.3823905050754547 -2061,90,0.17290225625038147,0.10868960618972778,-0.0068077705800533295,0.037306733429431915,0.04812000319361687,0.12222618758678437,0.042752187699079514,0.0958271948620677,0.0767432376742363,0.439893027767539 -2061,95,0.17915493249893188,0.14231377840042114,-0.005021560471504927,0.038626529276371,0.05758345127105713,0.1318061977624893,0.04509713128209114,0.12935745622962713,0.08614551089704035,0.47432618376333263 -2062,5,0.1188785582780838,0.01562512293457985,-0.032050490379333496,0.014575732871890068,0.010981464385986328,0.049267124012112626,0.003678055014461279,-0.008372398093342781,0.032786852493882176,0.26514502614736557 -2062,10,0.12472096085548401,0.0188823863863945,-0.027759579941630363,0.01647900976240635,0.013388646766543388,0.0579492598772049,0.0056137945502996445,-0.002262767404317856,0.036749361734837296,0.28359846770763397 -2062,30,0.14108163118362427,0.030559660866856575,-0.020309749990701675,0.021373149007558823,0.019977517426013947,0.07645435631275177,0.015292495489120483,0.01316684577614069,0.04656466171145439,0.3258677709847689 -2062,33,0.1429751068353653,0.03235966272652149,-0.019532328471541405,0.022460736334323883,0.020871343091130257,0.07865798816084861,0.016744300723075867,0.01525694690644741,0.047754913568496704,0.33077046325430276 -2062,50,0.15115852653980255,0.04407064616680145,-0.015724346041679382,0.027082979679107666,0.026255112141370773,0.09004974365234375,0.024971194565296173,0.028230758383870125,0.05425344407558441,0.35727329296059906 -2062,67,0.15898537635803223,0.06032776586711412,-0.012338008731603622,0.03116142936050892,0.03282344058156015,0.10177483424544335,0.03319808468222618,0.04558297619223595,0.061566776558756836,0.38602948451414704 -2062,70,0.16040188074111938,0.06428768709301948,-0.011716586537659168,0.03224901482462883,0.0342550054192543,0.10407409071922302,0.03464989364147186,0.04959607496857643,0.06311701294034719,0.39195774812251327 -2062,90,0.17713236808776855,0.11200615763664246,-0.007088214159011841,0.03823074698448181,0.050101637840270996,0.1248951867222786,0.04384465888142586,0.09865454025566578,0.0793543526902795,0.45123426793143157 -2062,95,0.18352922797203064,0.1468440145254135,-0.005238432437181473,0.03959022834897041,0.059947677887976156,0.13467579260468476,0.04626433178782463,0.1334234168753028,0.08915331084281201,0.48689149878919125 -2063,5,0.12194742262363434,0.015863483771681786,-0.03312461078166962,0.01480916328728199,0.011407371610403061,0.05045336112380028,0.0035221949219703674,-0.009002059698104858,0.03370791506022215,0.27150783790275457 -2063,10,0.12790760397911072,0.019218115136027336,-0.028723597526550293,0.016768787056207657,0.013911915943026543,0.059320155531167984,0.005518638528883457,-0.0026957616209983826,0.037810086458921435,0.2904498771997169 -2063,30,0.14459805190563202,0.03123444691300392,-0.021036656573414803,0.021807817742228508,0.020779485441744325,0.07822275161743164,0.015500854700803757,0.013225799845531579,0.04797128960490227,0.3337728226557374 -2063,33,0.14652970433235168,0.0330872268229723,-0.020227618515491486,0.022927602753043175,0.021711021661758423,0.08046174049377441,0.016998186707496643,0.015383845195174217,0.04920121205970645,0.33882396150380373 -2063,50,0.15487807989120483,0.04515093192458153,-0.016297759488224983,0.02768668718636036,0.02732125297188759,0.09210339188575745,0.02548306994140148,0.028747735545039177,0.055931651033461094,0.3660657168366015 -2063,67,0.16286270320415497,0.061925094239413794,-0.012796001508831978,0.03188588097691536,0.0341713953390718,0.10407506763935095,0.03396795317530632,0.046660604886710644,0.06355089355260134,0.3956165462732315 -2063,70,0.16430777311325073,0.06601504310965536,-0.012151720002293588,0.033005665987730026,0.03566695377230644,0.10641076862812042,0.035465288907289505,0.0508003868162632,0.06517858430743217,0.40172855197452007 -2063,90,0.18137550354003906,0.1153721883893013,-0.007371529471129179,0.03916448354721069,0.05218445919454098,0.1276383101940155,0.04494839534163475,0.10152749065309763,0.08207727819681168,0.46281662697438153 -2063,95,0.1879013180732727,0.15144525468349457,-0.005451441276818514,0.04056421294808388,0.06245202161371703,0.13761236965656273,0.047443948686122894,0.13754847552627325,0.09232805399224162,0.4996886438690124 -2064,5,0.12495662271976471,0.016101986169815063,-0.03423013910651207,0.015042563900351524,0.011862043291330338,0.05166698824614287,0.0033585610799491405,-0.009600402880460018,0.03465202497318387,0.2779971808195114 -2064,10,0.13109038770198822,0.019555360078811646,-0.029680727049708366,0.017059316858649254,0.014476494863629341,0.06074658781290054,0.0054166242480278015,-0.003109796904027462,0.038896754011511804,0.2974569099955261 -2064,30,0.1482669711112976,0.0319153256714344,-0.02176354080438614,0.0222452562302351,0.02160015143454075,0.07998259365558624,0.015706943348050117,0.013284256681799864,0.049408613704144955,0.3419104991480708 -2064,33,0.15025489032268524,0.03382161069661379,-0.020912358537316322,0.02339768595993519,0.022571761161088943,0.08228616416454315,0.017250491306185722,0.015492802485823631,0.05067386632785201,0.3471377533162013 -2064,50,0.1588464081287384,0.046243082731962204,-0.016872337087988853,0.028295518830418587,0.028409786522388458,0.09415818750858307,0.025997260585427284,0.02927272953093052,0.05763577111065388,0.37507969280704856 -2064,67,0.1670636087656021,0.06354222998023039,-0.013264810666441917,0.03261713311076164,0.035521897524595294,0.10635827481746674,0.0347440280020237,0.047749378718435764,0.06554235704243183,0.40549490985460585 -2064,70,0.1685507595539093,0.06776428893208503,-0.012604558560997249,0.03376956656575203,0.03707621842622757,0.10871098935604095,0.0362875796854496,0.0520183676853776,0.06722278781235218,0.41183023024350407 -2064,90,0.1861155927181244,0.1187877207994461,-0.007666746154427528,0.040107935667037964,0.05425203852355481,0.13034965097904205,0.046063382178545,0.10443491768091917,0.08478759415447712,0.4747924219816923 -2064,95,0.19283148646354675,0.1561174988746643,-0.005671456456184387,0.0415484756231308,0.06493613868951797,0.14050842896103855,0.04863595962524414,0.14175129495561123,0.09543847469612957,0.5128312949091196 -2065,5,0.12788379192352295,0.016340626403689384,-0.03532485291361809,0.015275934711098671,0.012360788881778717,0.05302265621721745,0.0031871541868895292,-0.010242614895105362,0.035630264692008494,0.2845649475697428 -2065,10,0.1342206597328186,0.01989411748945713,-0.030643846839666367,0.01735060289502144,0.015086047351360321,0.062221188098192215,0.005307754967361689,-0.003544418141245842,0.04002629406750202,0.30459066312760114 -2065,30,0.15196599066257477,0.03260229900479317,-0.022493474185466766,0.022685466334223747,0.02246437408030033,0.08179137408733368,0.015910759568214417,0.013323603197932243,0.050882814452052116,0.35020387205295267 -2065,33,0.15401972830295563,0.034562815576791764,-0.02162870524451137,0.02387099154293537,0.023470820859074593,0.0841442009806633,0.017501210793852806,0.01560057420283556,0.05219285003840923,0.3555526440683752 -2065,50,0.16289573907852173,0.047347087413072586,-0.01746579259634018,0.0289094727486372,0.029526108875870705,0.09624193608760834,0.026513762772083282,0.029782794415950775,0.05938322003930807,0.38429564237594604 -2065,67,0.1713850200176239,0.06517917677760131,-0.013755637221038342,0.033355191349983215,0.036923252046108246,0.10863851383328438,0.03552631661295891,0.04884382151067257,0.06758503634482622,0.41556234581395984 -2065,70,0.17292141914367676,0.06953542754054068,-0.013067185878753662,0.03454071655869484,0.03852270171046257,0.11105769872665405,0.03711676970124245,0.053228771314024925,0.06932992786169051,0.4220782285556197 -2065,90,0.1910678744316101,0.12225273251533508,-0.007969541475176811,0.04106110706925392,0.05635132715106011,0.13305768221616746,0.0471896268427372,0.1073685185983777,0.08752693869173528,0.48695937572047115 -2065,95,0.19800612330436707,0.16086074709892273,-0.005914758425205946,0.042543016374111176,0.06741038486361503,0.14337064623832702,0.049840375781059265,0.1459520156495273,0.09859384009614573,0.526169279939495 -2066,5,0.131085604429245,0.016579408198595047,-0.03647349029779434,0.01550927385687828,0.012828774750232697,0.054260818660259245,0.0030079721473157406,-0.010929493233561516,0.036606242135167125,0.2912933733430691 -2066,10,0.1375793218612671,0.02023439295589924,-0.03165068104863167,0.017642641440033913,0.015666464529931545,0.06364757567644119,0.00519202696159482,-0.004005481489002705,0.04116089455783367,0.3118005792610347 -2066,30,0.15576384961605072,0.033295370638370514,-0.02324218675494194,0.02312844805419445,0.02334574982523918,0.0836172103881836,0.016112303361296654,0.013353504240512848,0.05237698741257191,0.35860684495419265 -2066,33,0.1578684151172638,0.035310839004814625,-0.022354084998369217,0.024347515776753426,0.024389473721385002,0.08600936830043793,0.017750345170497894,0.015708188479766245,0.053738074377179146,0.36409481685375794 -2066,50,0.1669640988111496,0.04846295341849327,-0.018062477931380272,0.029528556391596794,0.030693989247083664,0.09835559129714966,0.027032578364014626,0.03030578838661313,0.06117718014866114,0.3936484381556511 -2066,67,0.17566350102424622,0.06683594711124903,-0.014243225054815411,0.034100063145160675,0.038393210619688034,0.11100762739777567,0.036314815282821655,0.0499449840001762,0.06969866191968323,0.4257555906660855 -2066,70,0.17723791301250458,0.07132846787571906,-0.013539892621338367,0.03531913086771965,0.0400579534471035,0.11345437169075012,0.037952858954668045,0.054455287754535675,0.07150825411081314,0.4324260765686631 -2066,90,0.1958334892988205,0.12576726078987122,-0.008265186101198196,0.04202400520443916,0.058611548319458966,0.13586227595806122,0.048327118158340454,0.11037894897162914,0.0904381675645709,0.49933435834827833 -2066,95,0.20294347405433655,0.16567501425743103,-0.0061441282741725445,0.04354783892631531,0.07012497074902053,0.14636527001857758,0.05105718970298767,0.1502152420580387,0.10196249447762964,0.5398976393043995 -2067,5,0.13422328233718872,0.016818327829241753,-0.03764740005135536,0.015742583200335503,0.013328161090612411,0.055562637746334076,0.002821017988026142,-0.011604990810155869,0.037623068690299986,0.29802033021114765 -2067,10,0.14087176322937012,0.02057618275284767,-0.03269150108098984,0.017935436218976974,0.016285574063658714,0.06514309272170067,0.005069444887340069,-0.0044828085228800765,0.042331038415431975,0.3190088886767626 -2067,30,0.159489706158638,0.033994536846876144,-0.02401879355311394,0.02357420139014721,0.02427143231034279,0.08546920120716095,0.016311578452587128,0.013374146074056625,0.0539237754419446,0.367037745192647 -2067,33,0.16164442896842957,0.03606568217277527,-0.023109886795282364,0.02482726238667965,0.025360260158777237,0.08793778717517853,0.017997900024056435,0.01579057890921831,0.05533830635249615,0.3726296105887741 -2067,50,0.17095690965652466,0.04959067702293396,-0.018689731135964394,0.030152762308716774,0.031912919133901596,0.10048297047615051,0.02755371294915676,0.030826589092612267,0.06303804833441973,0.40296544693410397 -2067,67,0.17986363172531128,0.06851252354681499,-0.014750553015619504,0.034851737320423126,0.03992384977638724,0.11338706314563751,0.03710952401161194,0.05106505937874317,0.07189197288826109,0.43598399637266994 -2067,70,0.18147557973861694,0.07314340323209761,-0.014027045108377934,0.03610479459166527,0.0416526272892952,0.1158769428730011,0.038795847445726395,0.05570131773129099,0.07376481182873248,0.4428271632641554 -2067,90,0.20051434636116028,0.12933126091957092,-0.008579748682677746,0.04299662262201309,0.0609334260225296,0.1387372925877571,0.04947587847709656,0.11342316959053278,0.09346086457371713,0.5117007049615495 -2067,95,0.20779380202293396,0.17056027054786682,-0.006386491470038891,0.044562943279743195,0.0729142501950264,0.1494271874427795,0.052286408841609955,0.15458492189645767,0.10542217828333376,0.5535694372840225 -2068,5,0.13718995451927185,0.0170573890209198,-0.03880944475531578,0.015975860878825188,0.013867687433958054,0.056923098489642145,0.0026262900792062283,-0.012302776798605919,0.0386741547845304,0.30472895596176386 -2068,10,0.14399918913841248,0.02091948874294758,-0.03373966515064239,0.018228983506560326,0.016941115260124207,0.06666821986436844,0.0049400050193071365,-0.004974212497472763,0.04354372881352902,0.3261902844533324 -2068,30,0.1630673110485077,0.03469979390501976,-0.02481592632830143,0.024022726342082024,0.025237930938601494,0.08736845552921295,0.01650858297944069,0.013385385274887085,0.055526409111917016,0.3753849299624562 -2068,33,0.16527414321899414,0.036827345117926596,-0.023882059380412102,0.025310223922133446,0.026376761496067047,0.08988647282123566,0.01824386790394783,0.015867536887526512,0.05698302388191223,0.38113160866079854 -2068,50,0.17481178045272827,0.050730254501104355,-0.019340677186846733,0.030782092362642288,0.03318683058023453,0.10267648100852966,0.028077157214283943,0.03130963817238808,0.06495782360434532,0.4122925545088947 -2068,67,0.18393388390541077,0.07020891606807715,-0.015271829441189766,0.03561021387577057,0.04150797799229622,0.11581107974052429,0.037910446524620056,0.052174217998981476,0.0741543248295784,0.4461332475394011 -2068,70,0.18558479845523834,0.07498022541403769,-0.014535652473568916,0.03689771145582199,0.043332915753126144,0.1183399111032486,0.039645735174417496,0.056958165019750595,0.0760944489389658,0.4531656917184591 -2068,90,0.2050839364528656,0.1329447627067566,-0.008903635665774345,0.04397895187139511,0.06335332244634628,0.14160045981407166,0.05063588544726372,0.1164511707611382,0.09655555337667465,0.5241284711286426 -2068,95,0.21253938972949982,0.1755165457725525,-0.0066429078578948975,0.04558832570910454,0.07579372078180313,0.15250767767429352,0.05352802574634552,0.15900814160704613,0.10897987503558397,0.5671790994005278 -2069,5,0.14041313529014587,0.01729658804833889,-0.040013522282242774,0.016209108754992485,0.014392332732677461,0.05824547428637743,0.0024237886536866426,-0.013020215556025505,0.039715800713747744,0.31158802427817134 -2069,10,0.14735786616802216,0.02126430906355381,-0.03479521721601486,0.018523285165429115,0.017584023997187614,0.06817495822906494,0.00480370968580246,-0.00547218881547451,0.044753672555089,0.3335408933344297 -2069,30,0.16680540144443512,0.035411152988672256,-0.025612659752368927,0.024474022909998894,0.026202170178294182,0.08925764858722686,0.01670331507921219,0.013406792655587196,0.0571239335462451,0.3838533373549581 -2069,33,0.16905613243579865,0.03759582657366991,-0.024654200300574303,0.02579640783369541,0.02737700194120407,0.091801717877388,0.018488256260752678,0.015956283519044514,0.05862428329885006,0.3897523972950876 -2069,50,0.1787835657596588,0.05188169702887535,-0.019978301599621773,0.031416550278663635,0.034454770386219025,0.10482409596443176,0.02860291860997677,0.03183405101299286,0.06688308622688055,0.4217153851641342 -2069,67,0.18808716535568237,0.07192512460052974,-0.015791883692145348,0.0363755002617836,0.04309925064444542,0.11819975078105927,0.03871758282184601,0.0532807931303978,0.07640525776892901,0.4564283250272274 -2069,70,0.18977093696594238,0.07683895006775854,-0.015035021118819714,0.03769788518548012,0.04499363899230957,0.12078984379768369,0.04050252586603165,0.058217268856242246,0.07842598594725131,0.4635846836492419 -2069,90,0.20965805649757385,0.13660775125026703,-0.009230355732142925,0.04497101157903671,0.0657784566283226,0.14445140510797502,0.05180715024471283,0.11957777477800846,0.09965436346828938,0.5366428181529046 -2069,95,0.21726185083389282,0.18054382503032684,-0.0068817616440356505,0.046623989939689636,0.07870698161423192,0.15560043528676032,0.05478205159306526,0.1634682510048151,0.11257157418876886,0.5810005167732014 -2070,5,0.1436167061328888,0.017535928636789322,-0.041243813931941986,0.016442326828837395,0.014930619206279519,0.05955599248409271,0.002213516738265753,-0.013753737322986126,0.04079717649146915,0.3184993867762387 -2070,10,0.15072548389434814,0.021610643714666367,-0.0358528196811676,0.018818339332938194,0.018246047757565977,0.06968661397695541,0.004660559818148613,-0.005998259410262108,0.04598158039152622,0.3410016829147935 -2070,30,0.17063236236572266,0.03612860292196274,-0.026427671313285828,0.02492808923125267,0.02718574162572622,0.09113354980945587,0.016895778477191925,0.013403678312897682,0.058762146346271034,0.3925128827104345 -2070,33,0.17293626070022583,0.03837112780660391,-0.02543823601678014,0.026285812258720398,0.028424130752682686,0.09371919482946396,0.01873106136918068,0.016038307920098305,0.06030098443850875,0.3985344483167864 -2070,50,0.18289345502853394,0.05304499343037605,-0.02062666229903698,0.03205613046884537,0.03576057031750679,0.10699514299631119,0.02913099341094494,0.03234340623021126,0.06885338481515646,0.4313528968486935 -2070,67,0.19241680204868317,0.07366114176809795,-0.016325950622558594,0.03714758902788162,0.04473374783992767,0.12059949755668645,0.0395309254527092,0.05441102385520935,0.07871678099036217,0.466981740379706 -2070,70,0.19414034485816956,0.07871956974267957,-0.015544120222330093,0.03850531205534935,0.04670528322458267,0.12325799912214279,0.04136621206998825,0.059503087773919106,0.08080757223069668,0.4743159028701484 -2070,90,0.21449719369411469,0.14032024145126343,-0.009549078531563282,0.045972783118486404,0.06829117238521576,0.14732274413108826,0.05298967286944389,0.12274835258722305,0.10281811840832233,0.5494857375975698 -2070,95,0.2222806066274643,0.1856420934200287,-0.0071297746384516554,0.04766993597149849,0.08169881254434586,0.1586744114756584,0.056048471480607986,0.16798668708652253,0.1162407303228973,0.595295823086053 -2071,5,0.14722084999084473,0.017775408923625946,-0.042510025203228,0.016675515100359917,0.015441545099020005,0.06078859008848667,0.001995466183871031,-0.014496721467003225,0.04184906352311373,0.32564731128513813 -2071,10,0.15447162091732025,0.021958494558930397,-0.0369558185338974,0.01911414973437786,0.018882986158132553,0.0711289495229721,0.004510549828410149,-0.006507145240902901,0.04719752427190542,0.34867946431040764 -2071,30,0.17477616667747498,0.0368521511554718,-0.027239229530096054,0.025384927168488503,0.028172174468636513,0.09300722777843475,0.0170859694480896,0.013400223106145859,0.060395234264433384,0.4014686958282255 -2071,33,0.17712609469890594,0.03915324877947569,-0.026235654950141907,0.026778435334563255,0.029456790816038844,0.09563798993825913,0.018972281366586685,0.016129915211349724,0.061983440797775985,0.40761562529951334 -2071,50,0.18728218972682953,0.05422015115618706,-0.021275924518704414,0.03270083665847778,0.03707887604832649,0.10916832089424133,0.029661383479833603,0.032858711667358875,0.07083182316273451,0.441275323741138 -2071,67,0.1969957798719406,0.07541697993874558,-0.01684430055320263,0.03792648762464523,0.046408653259277344,0.12301648542284968,0.04035048931837082,0.05556916631758213,0.08106601089239121,0.4778725101426244 -2071,70,0.1987537443637848,0.08062207624316213,-0.016042537987232208,0.039319995790719986,0.048452526330947876,0.12572523355484008,0.042236801236867905,0.0608015451580286,0.08322972059249878,0.48540132995694873 -2071,90,0.21951726078987122,0.1440822333097458,-0.009868397377431393,0.04698428139090538,0.07088562846183777,0.150228813290596,0.05418344959616661,0.12593570165336132,0.10609228610992433,0.562673568725586 -2071,95,0.22745615243911743,0.1908113956451416,-0.007363212760537863,0.0487261600792408,0.08483262509107571,0.16180385649204254,0.057327304035425186,0.17259020917117596,0.1200626865029335,0.6098409495782107 -2072,5,0.15048851072788239,0.018015028908848763,-0.043792761862277985,0.016908669844269753,0.015999487880617384,0.062110599130392075,0.0017696474678814411,-0.015286354348063469,0.04295405158773065,0.33268487218301745 -2072,10,0.15790711343288422,0.0223078615963459,-0.03806886821985245,0.019410712644457817,0.019577298313379288,0.07265059649944305,0.004353687632828951,-0.0070372335612773895,0.04848298244178295,0.35628314670175315 -2072,30,0.1786816269159317,0.03758179023861885,-0.028085660189390182,0.02584453858435154,0.029220115952193735,0.09492578953504563,0.017273887991905212,0.013380590826272964,0.062085353583097455,0.41032028873451054 -2072,33,0.18108592927455902,0.039942188300192354,-0.027055347338318825,0.027274277061223984,0.03055519610643387,0.09761057794094086,0.019211919978260994,0.01620667427778244,0.06373810084536671,0.41667019223794344 -2072,50,0.19147710502147675,0.05540716275572777,-0.02195672318339348,0.03335066884756088,0.038460567593574524,0.11138830333948135,0.03019408881664276,0.033375464379787445,0.07288136426359415,0.4511246760375798 -2072,67,0.2014155238866806,0.07719262674450882,-0.017389198765158653,0.038712188601493835,0.04814889281988144,0.12548305094242096,0.04117625951766968,0.05671805888414383,0.08349134854972363,0.48866667926311497 -2072,70,0.20321418344974518,0.08254648298025129,-0.01656949892640114,0.04014192894101143,0.05026977136731148,0.12821337580680847,0.04311428964138031,0.06211178004741669,0.08573380634188651,0.49643188295885915 -2072,90,0.22445827722549438,0.14789371192455292,-0.010198674164712429,0.048005495220422745,0.073562952876091,0.15315793454647064,0.05538848415017128,0.12914287112653255,0.10945608261972667,0.5758501384407282 -2072,95,0.23258092999458313,0.1960516721010208,-0.0076246606186032295,0.04979266598820686,0.08805370330810547,0.16496211290359497,0.05861853435635567,0.17722485773265362,0.12395056877285236,0.6244260983075947 -2073,5,0.1536179780960083,0.018254786729812622,-0.045098140835762024,0.0171417985111475,0.016572868451476097,0.06342528015375137,0.0015360529068857431,-0.016094746068120003,0.04406533502042294,0.33959255209192635 -2073,10,0.161207377910614,0.02265874296426773,-0.03921540081501007,0.01970803178846836,0.020288925617933273,0.07415976822376252,0.0041899667121469975,-0.0076130833476781845,0.04978852085769177,0.36373721598647535 -2073,30,0.18246018886566162,0.03831752762198448,-0.02894744649529457,0.026306919753551483,0.030290445312857628,0.09685346782207489,0.01745953969657421,0.013358283601701257,0.06382053513079881,0.4190733776427805 -2073,33,0.18491986393928528,0.040737948827445504,-0.027889765799045563,0.027773341163992882,0.03167998790740967,0.09960301220417023,0.019449973478913307,0.016282623633742332,0.06551931742578745,0.42559470780193803 -2073,50,0.19555026292800903,0.05660603940486908,-0.02264503575861454,0.034005627036094666,0.03988489881157875,0.1136254221200943,0.030729109421372414,0.03389512374997139,0.07498669251799583,0.4609279967844486 -2073,67,0.20571750402450562,0.07898808710277089,-0.017954114824533463,0.039504699409008026,0.04993678256869316,0.12796707898378373,0.04200824350118637,0.05787748098373413,0.08597195161506535,0.4994568486139178 -2073,70,0.2075575739145279,0.08449278920888899,-0.017103588208556175,0.040971118956804276,0.052139073610305786,0.1307530254125595,0.043998684734106064,0.06343032931908962,0.08828438986092804,0.5074509023688734 -2073,90,0.22929078340530396,0.15175467729568481,-0.010534700006246567,0.049036428332328796,0.07633554935455322,0.15612977147102355,0.0566047765314579,0.13243761658668518,0.11292660422623158,0.5890769179910422 -2073,95,0.2376004308462143,0.2013629972934723,-0.00787556916475296,0.05086945742368698,0.09136779457330699,0.16812923923134804,0.059922169893980026,0.181926392018795,0.12795085003599524,0.639131370838731 -2074,5,0.15684019029140472,0.018494686111807823,-0.04641937091946602,0.01737489365041256,0.017171340063214302,0.06478345096111297,0.0012946831993758678,-0.01688574906438588,0.04519558325409889,0.3466699986718595 -2074,10,0.16460305452346802,0.023011140525341034,-0.040369585156440735,0.020006103441119194,0.021030696295201785,0.07567547261714937,0.004019387997686863,-0.008184166625142097,0.05113021340221167,0.37134553282521665 -2074,30,0.18634161353111267,0.039059363305568695,-0.029825052246451378,0.02677207440137863,0.031394210830330845,0.09881449490785599,0.01764291524887085,0.013330199755728245,0.06559664830565452,0.42803052850067613 -2074,33,0.18885749578475952,0.04154052786529064,-0.02873503603041172,0.0282756257802248,0.03283677041530609,0.10160675764083862,0.019686445593833923,0.01631525158882141,0.0673388435691595,0.4346743753924966 -2074,50,0.19973087310791016,0.0578167662024498,-0.02334108017385006,0.03466571122407913,0.04135701805353165,0.11586533486843109,0.03126643970608711,0.034425199031829834,0.07712916657328606,0.47090060403570533 -2074,67,0.2101304829120636,0.08080335855484017,-0.0185202956199646,0.040304020047187805,0.05179122835397723,0.13046797737479213,0.0428464375436306,0.059035006910562515,0.08852050613611936,0.5104687745310367 -2074,70,0.21201260387897491,0.08646098002791403,-0.01763799600303173,0.041807565838098526,0.05407404154539108,0.13331335037946698,0.044889967888593674,0.06475569494068623,0.09090176485478878,0.518686026148498 -2074,90,0.2342425435781479,0.15566514432430267,-0.010877926833927631,0.05007708817720413,0.07919938862323761,0.1591469645500183,0.057832323014736176,0.13575555197894573,0.11648794375360012,0.6025601979345083 -2074,95,0.242742121219635,0.20674529671669006,-0.008130157366394997,0.051956526935100555,0.09479933828115461,0.17134134396910664,0.06123820319771767,0.18668531067669392,0.13208582233637572,0.654161307401955 -2075,5,0.15993502736091614,0.018734725192189217,-0.04772944003343582,0.017607958987355232,0.01779547706246376,0.06613544374704361,0.0010455446317791939,-0.017708491533994675,0.046355368569493294,0.35357483103871346 -2075,10,0.16787275671958923,0.023365052416920662,-0.04154727570712566,0.020304929465055466,0.02177366241812706,0.07722844034433365,0.0038419573102146387,-0.008778730407357216,0.052475832402706146,0.37890978222712873 -2075,30,0.1901010125875473,0.039807289838790894,-0.030710529536008835,0.027239996939897537,0.032523930072784424,0.10075293481349945,0.017824023962020874,0.013312668912112711,0.06739175319671631,0.4368844462558627 -2075,33,0.19267357885837555,0.04234992668032646,-0.029588367026299238,0.02878112532198429,0.034013013243675234,0.10361054047942161,0.019921334460377693,0.0163910359609872,0.06918325515463948,0.4436964694224298 -2075,50,0.20379190146923065,0.05903935059905052,-0.024046706035733223,0.035330913960933685,0.04283475875854492,0.11811816692352295,0.031806088984012604,0.03495919331908226,0.07929651811718941,0.48083404265344143 -2075,67,0.21442578732967377,0.08263844855129726,-0.0190883781760931,0.04111013561487198,0.05367479473352432,0.13294836536049845,0.043690845370292664,0.060211917385458946,0.09109088964760303,0.5213612727820873 -2075,70,0.21635030210018158,0.08845106810331342,-0.01818949170410633,0.04265126585960388,0.05602646507322788,0.13587191700935364,0.04578815773129463,0.06607685983181,0.0935551945120096,0.5298308189958334 -2075,90,0.2390810251235962,0.1596250981092453,-0.011238559149205683,0.05112745985388756,0.08207414299249649,0.16210967302322388,0.059071119874715805,0.13912807498127222,0.12007013708353043,0.6159095149487257 -2075,95,0.24777206778526306,0.21219858527183533,-0.008389445953071117,0.05305386707186699,0.09824161976575851,0.17456618994474407,0.06256663054227829,0.19151024520397186,0.13622192777693268,0.6691554206772706 -2076,5,0.16347560286521912,0.01897490583360195,-0.04906860366463661,0.017840992659330368,0.018399201333522797,0.06743578985333443,0.0007886302191764116,-0.018526094034314156,0.04752640100196004,0.3609384373063222 -2076,10,0.1715470403432846,0.023720478639006615,-0.04272213205695152,0.020604507997632027,0.02252167370170355,0.07876203507184983,0.003657668363302946,-0.009374991059303284,0.053836175054311756,0.3867548001930118 -2076,30,0.19414976239204407,0.040561314672231674,-0.031605418771505356,0.027710692957043648,0.03366071544587612,0.10271088480949402,0.018002860248088837,0.013299771770834922,0.06919287722557783,0.4460157277993858 -2076,33,0.19676566123962402,0.04316614523530006,-0.030451344326138496,0.02928984723985195,0.03520112484693527,0.10561045348644256,0.020154638215899467,0.016445007175207138,0.07105129307135939,0.4529695136472583 -2076,50,0.2080712765455246,0.060273803770542145,-0.024766160175204277,0.03600124269723892,0.04434904828667641,0.12038406729698181,0.03234804794192314,0.035509041510522366,0.0815047174692154,0.4910323075018823 -2076,67,0.21888428926467896,0.08449334710836419,-0.0196582842618227,0.04192306473851204,0.05558096244931221,0.1354581429064274,0.044541459530591965,0.06142786517739296,0.09370247190818191,0.5325200934335591 -2076,70,0.22084124386310577,0.090463051199913,-0.018744867481291318,0.043502215296030045,0.058021049946546555,0.1384357362985611,0.046693239361047745,0.06742844730615616,0.09624330140650272,0.5411858253180981 -2076,90,0.2439548671245575,0.1636345386505127,-0.011590610258281231,0.05218755826354027,0.08503490686416626,0.1651330038905144,0.060321174561977386,0.1425190344452858,0.12373656947165729,0.6295544806867838 -2076,95,0.2527923285961151,0.21772289276123047,-0.008659245446324348,0.054161496460437775,0.10179348289966583,0.17778746783733368,0.06390746682882309,0.1964047079905867,0.14047304065898047,0.6843827553093433 -2077,5,0.16710416972637177,0.01921522431075573,-0.05044176056981087,0.018073998391628265,0.019031774252653122,0.06879948750138283,0.0005239399615675211,-0.01936180144548416,0.04871651353314519,0.368423008127138 -2077,10,0.17530354857444763,0.02407742477953434,-0.0439358614385128,0.020904844626784325,0.023305803537368774,0.08034019321203233,0.003466519992798567,-0.00997399166226387,0.05523941200226545,0.3947401395067573 -2077,30,0.19826450943946838,0.04132143780589104,-0.03252050653100014,0.028184164315462112,0.034852590411901474,0.10470404028892516,0.018179424107074738,0.01327611319720745,0.07106031328439713,0.45533264353871344 -2077,33,0.20092186331748962,0.043989188559353354,-0.03134907782077789,0.02980179153382778,0.03644481301307678,0.10764250159263611,0.020386358723044395,0.01650415174663067,0.0729777286760509,0.46243339218199253 -2077,50,0.21240666508674622,0.061520107090473175,-0.025508763268589973,0.03667670488357544,0.04593553580343723,0.1226813942193985,0.03289232403039932,0.03603966720402241,0.08377784676849842,0.5013716435059905 -2077,67,0.2233910709619522,0.08636807665228852,-0.020248844549059862,0.04274280369281769,0.05758201330900192,0.13802160739898683,0.0453982912003994,0.06262550875544548,0.09639404248446229,0.5439085424691439 -2077,70,0.22537901997566223,0.09249694645404813,-0.01931784860789776,0.04436042904853821,0.060110561549663544,0.14105512797832487,0.047605231404304504,0.0687805600464344,0.09903396666049957,0.5527791867963969 -2077,90,0.2488589882850647,0.16769351065158844,-0.011956998147070408,0.053257379680871964,0.08812607079744339,0.1682003229856491,0.06158249080181122,0.14595846645534039,0.12757008485496046,0.6433436147868633 -2077,95,0.2578365206718445,0.22331824898719788,-0.008927282877266407,0.055279411375522614,0.1054929569363594,0.18103624880313873,0.06526071578264236,0.20137468539178371,0.14489244474098084,0.6997380996122956 -2078,5,0.17051804065704346,0.0194556824862957,-0.0518367774784565,0.018306974321603775,0.01967490464448929,0.07012605667114258,0.0002514808438718319,-0.02022618241608143,0.04994197888299823,0.3757000377867371 -2078,10,0.17884260416030884,0.02443588338792324,-0.04517122358083725,0.021205933764576912,0.024100255221128464,0.08188732117414475,0.003268520114943385,-0.010613537579774854,0.056644851714372633,0.4025211973115802 -2078,30,0.20215409994125366,0.042087651789188385,-0.03345812112092972,0.028660403564572334,0.03606022894382477,0.10669500082731247,0.018353721126914024,0.013244323432445526,0.07295545488595963,0.46443841475993397 -2078,33,0.20485201478004456,0.044819044172763826,-0.03224665835499764,0.030316952615976334,0.03770998902618885,0.109673872590065,0.020616499707102776,0.01654162520542741,0.07493315078318119,0.4716924746707082 -2078,50,0.21651215851306915,0.06277826428413391,-0.026241987943649292,0.03735728561878204,0.047550100833177567,0.1249910295009613,0.03343891724944115,0.0365564189851284,0.08608023915439844,0.5115449633449316 -2078,67,0.2276642620563507,0.08826260492205629,-0.020848258938640347,0.04356934502720833,0.05961030349135399,0.14059822261333466,0.046261340379714966,0.06384534373879433,0.09914541160687805,0.5551007080334239 -2078,70,0.2296825647354126,0.09455271884799002,-0.019898511469364166,0.04522589221596718,0.062228184193372726,0.14366312325000763,0.04852411895990372,0.07016980368643999,0.10187073796987534,0.5641813930124044 -2078,90,0.25352099537849426,0.17180195450782776,-0.012326745316386223,0.05433691665530205,0.09125866740942001,0.17127731442451477,0.062855064868927,0.14944041706621647,0.1314375326037407,0.6570529059972614 -2078,95,0.26263555884361267,0.22898459434509277,-0.009204282285645621,0.05640759691596031,0.109304279088974,0.1843173652887344,0.06662635505199432,0.20641144551336765,0.1494093658402562,0.7150743745500221 -2079,5,0.1737963855266571,0.019696282222867012,-0.05324949324131012,0.0185399167239666,0.020377999171614647,0.07154384888708591,-2.8755981475114822e-05,-0.021107841283082962,0.05121081713587046,0.38296139147132635 -2079,10,0.18228356540203094,0.024795856326818466,-0.04641637206077576,0.02150777541100979,0.024938207119703293,0.08346900641918183,0.003063660115003586,-0.011262603104114532,0.058114564046263695,0.4103823333978653 -2079,30,0.20605045557022095,0.04285996034741402,-0.034410666674375534,0.029139414429664612,0.03731714189052582,0.10870762765407561,0.0185257438570261,0.013185924291610706,0.074914725497365,0.47367235785350204 -2079,33,0.20880107581615448,0.04565572578459978,-0.03314611345529556,0.030835332348942757,0.03903435915708542,0.1117628663778305,0.02084505371749401,0.016591889783740044,0.0769476406276226,0.4811512593738735 -2079,50,0.22068899869918823,0.06404829025268555,-0.027006594464182854,0.03804299235343933,0.049221206456422806,0.12731725722551346,0.03398782014846802,0.037060322239995,0.08844864554703236,0.5219148816540837 -2079,67,0.23205895721912384,0.09017694666981706,-0.021458642557263374,0.04440269246697426,0.06172926332801585,0.14319360256195068,0.04713059216737747,0.06505412533879285,0.10196513092145323,0.5665069669485092 -2079,70,0.23411668837070465,0.0966303989291191,-0.020490320399403572,0.04609861224889755,0.06443175673484802,0.14628930389881134,0.04944990575313568,0.07155812801793214,0.10477433335036039,0.5757979979971424 -2079,90,0.25842079520225525,0.17595988512039185,-0.012719864584505549,0.05542617291212082,0.09450730681419373,0.1743597522377968,0.06413888931274414,0.15294761955738068,0.13536856658756738,0.6710419871844352 -2079,95,0.26771342754364014,0.23472194373607635,-0.009491149336099625,0.05754607543349266,0.11316346377134323,0.187599316239357,0.06800439953804016,0.21149137686006725,0.15401315372437221,0.7305875286459922 -2080,5,0.17713743448257446,0.019937019795179367,-0.054719643853604796,0.018772829324007034,0.021098261885344985,0.0729401707649231,-0.0003167628310620785,-0.022038020193576813,0.05252194525673986,0.3904331011930481 -2080,10,0.18582068383693695,0.025157345458865166,-0.047677136957645416,0.021810373291373253,0.025818041339516647,0.08508789539337158,0.0028519458137452602,-0.011924048513174055,0.059618860483169556,0.4185024335049093 -2080,30,0.21013666689395905,0.04363836720585823,-0.03537404537200928,0.029621196910738945,0.03863980248570442,0.11077173054218292,0.018695494160056114,0.013125665532425045,0.07692588213831186,0.4832236899062991 -2080,33,0.21295085549354553,0.046499219685792924,-0.034089501947164536,0.03135693818330765,0.040422706753015514,0.11385982245206833,0.02107202634215355,0.016614234074950218,0.07902837350964546,0.49089111128821966 -2080,50,0.2251134216785431,0.06533017009496689,-0.02777746319770813,0.0387338288128376,0.05097166821360588,0.12969359755516052,0.03453904017806053,0.037570934277027845,0.09089749492704868,0.5326385339722037 -2080,67,0.23674605786800385,0.09211110204458246,-0.02209705486893654,0.04524284973740578,0.06393095850944519,0.14582421466708193,0.048006054013967514,0.06626162305474281,0.10487999752163887,0.5783356157410889 -2080,70,0.23885133862495422,0.09872996062040326,-0.021097835153341293,0.04697858914732933,0.06672798991203308,0.14898290038108825,0.0503825880587101,0.07296153996139765,0.10777314994484186,0.5878406503237784 -2080,90,0.2637169659137726,0.1801673173904419,-0.013100758194923401,0.056525155901908875,0.0978793278336525,0.17748785018920898,0.06543396413326263,0.15648174192756414,0.13947187177836895,0.68562873583287 -2080,95,0.27322426438331604,0.24053026735782623,-0.009793913923203945,0.05869482830166817,0.11719850450754166,0.19099755585193634,0.06939484924077988,0.21665307284565635,0.1587967947125435,0.7467358629219233 -2081,5,0.18045079708099365,0.020177898928523064,-0.056183625012636185,0.019005712121725082,0.021787622943520546,0.07431314885616302,-0.0006125438958406448,-0.02294944040477276,0.05380795374512672,0.3978517148643732 -2081,10,0.18934231996536255,0.02552034892141819,-0.04896191880106926,0.022113721817731857,0.026675226166844368,0.08668387383222581,0.00263337604701519,-0.012589873746037483,0.061101272329688074,0.42654799204319715 -2081,30,0.21424147486686707,0.04442286863923073,-0.03633324056863785,0.030105749145150185,0.03993396833539009,0.11280742287635803,0.018862977623939514,0.013084471225738525,0.07892100885510445,0.49275173656642435 -2081,33,0.2171231508255005,0.04734953708946705,-0.03502867743372917,0.03188175708055496,0.04178297519683838,0.11593382701277732,0.02129741758108139,0.016643961770460007,0.08108959579840302,0.5005669712461531 -2081,50,0.2295774221420288,0.06662390381097794,-0.02854371815919876,0.03942978382110596,0.05269930884242058,0.13203832507133484,0.03509257361292839,0.03808829374611378,0.09332747384905815,0.5433806758373976 -2081,67,0.24148905277252197,0.09406506597995767,-0.022715773433446884,0.04608980193734169,0.06610271319746974,0.1484294129908085,0.04888773337006569,0.0675070434063675,0.10778735179454088,0.5901936725713313 -2081,70,0.2436448335647583,0.1008514121174812,-0.021694116294384003,0.04786580801010132,0.06899578869342804,0.15163706243038177,0.051322177052497864,0.07436073396820575,0.11078253500163555,0.5999331286177039 -2081,90,0.26910680532455444,0.18442422151565552,-0.013485191389918327,0.05763384699821472,0.10123737156391144,0.18058759719133377,0.06674029678106308,0.1600772075355054,0.143559954687953,0.7003563666716218 -2081,95,0.27884215116500854,0.24640962481498718,-0.010087823495268822,0.05985385179519653,0.1212514266371727,0.19431129246950146,0.07079769670963287,0.22187717016786326,0.163611420802772,0.7631700166966765 -2082,5,0.1837518811225891,0.020418915897607803,-0.05763769522309303,0.019238565117120743,0.022519489750266075,0.07569654285907745,-0.0009160982444882393,-0.023884980008006096,0.05513942940160632,0.4053069381043315 -2082,10,0.19282859563827515,0.02588486857712269,-0.05024569109082222,0.02241782657802105,0.027564262971282005,0.0883039340376854,0.0024079489521682262,-0.013254656456410885,0.06263671293854714,0.4346072839573026 -2082,30,0.2182464301586151,0.04521346092224121,-0.03731107339262962,0.03059307672083378,0.04127745442092418,0.11486781686544419,0.019028186798095703,0.013020320795476437,0.08097499944269657,0.5022581554949284 -2082,33,0.22118812799453735,0.04820667177438736,-0.03598061949014664,0.032409798353910446,0.04318145662546158,0.11804060161113739,0.021521221846342087,0.016682568937540054,0.08321793749928474,0.5102442465722561 -2082,50,0.23390181362628937,0.06792949885129929,-0.02932322770357132,0.040130868554115295,0.05447171628475189,0.13437335193157196,0.035648420453071594,0.038627409376204014,0.09582534059882164,0.5540367737412453 -2082,67,0.24606157839298248,0.0960388584434987,-0.02335059685632583,0.04694357514381409,0.06832500547170639,0.1510232523083687,0.0497756227850914,0.0687563493847847,0.1107507249340415,0.6019911569170655 -2082,70,0.24826225638389587,0.10299477130174635,-0.022307101637125015,0.04876029118895531,0.07131773233413696,0.15431658774614335,0.05226866155862808,0.07578731328248978,0.11384683102369308,0.6119142677634954 -2082,90,0.27425462007522583,0.1887306421995163,-0.013882441446185112,0.05875226482748985,0.10465355217456818,0.18370303958654408,0.06805788725614548,0.16370433885604144,0.14769654627889395,0.7148476951755584 -2082,95,0.2841927409172058,0.2523599863052368,-0.010382776148617268,0.06102316454052925,0.12531809508800507,0.19766157865524292,0.07221294194459915,0.22711475938558578,0.1684078685939312,0.7793203263077885 -2083,5,0.18715935945510864,0.020660072565078735,-0.059139903634786606,0.019471386447548866,0.02326458878815174,0.07715058326721191,-0.0012274258770048618,-0.02483500763773918,0.056486847996711734,0.4127550581470132 -2083,10,0.1963830292224884,0.02625090256333351,-0.051562488079071045,0.02272268570959568,0.028481913357973104,0.08994805961847305,0.002175666391849518,-0.013929078541696064,0.06418121419847012,0.4427303978707641 -2083,30,0.22221237421035767,0.046010155230760574,-0.038305576890707016,0.03108316846191883,0.042662784457206726,0.11691577732563019,0.01919112727046013,0.012952648103237135,0.08307311609387398,0.5118059967644513 -2083,33,0.22520171105861664,0.04907062619924545,-0.03693500906229019,0.0329410582780838,0.044640716165304184,0.12016318663954735,0.021743446588516235,0.016687456537038087,0.08539054920896888,0.5199589796829969 -2083,50,0.23812124133110046,0.06924694776535034,-0.0301312655210495,0.04083707183599472,0.05630822852253914,0.1367635577917099,0.03620658442378044,0.0391571968793869,0.09838615357875824,0.5647168500581756 -2083,67,0.2504778802394867,0.09803244456648837,-0.02400929633527994,0.04780413955450058,0.07064366340637207,0.15367089703679088,0.050669725984334946,0.0700146947056055,0.11380338303744794,0.613800812009722 -2083,70,0.2527141869068146,0.10516002252697942,-0.02292630430310965,0.0496620237827301,0.07373285293579102,0.15701786577701568,0.05322204530239105,0.0772029422223568,0.1170135900378227,0.6238440273329615 -2083,90,0.2791273593902588,0.19308654963970184,-0.014287964720278974,0.059880394488573074,0.10822471231222153,0.1868569403886795,0.06938673555850983,0.16738077346235514,0.15202769227325919,0.7293928675353527 -2083,95,0.2892264127731323,0.25838133692741394,-0.010685431538149742,0.06220275163650513,0.12962497770786285,0.2010708749294281,0.0736405998468399,0.23251063004136086,0.17342104762792587,0.7955921813845634 -2084,5,0.19040580093860626,0.02090137079358101,-0.060664094798266885,0.019704176113009453,0.024010175839066505,0.07854413092136384,-0.0015465286560356617,-0.025831103324890137,0.05783613799139857,0.4201816306449473 -2084,10,0.19982853531837463,0.02661845274269581,-0.052912928909063336,0.0230282973498106,0.0294052604585886,0.09157712757587433,0.001936524175107479,-0.014631910249590874,0.06577752400189639,0.4508201419375837 -2084,30,0.22621530294418335,0.04681294038891792,-0.03932778164744377,0.03157603740692139,0.04407386854290962,0.11901438236236572,0.019351795315742493,0.012904040515422821,0.08520328104496001,0.5214912097901105 -2084,33,0.2292691320180893,0.04994140289723873,-0.03792722895741463,0.033475540578365326,0.046121348664164535,0.1223028302192688,0.021964088082313538,0.016693968176841732,0.08759194387122989,0.5297631417028605 -2084,50,0.2424674779176712,0.0705762654542923,-0.03094952367246151,0.04154840484261513,0.05819954350590706,0.1391841471195221,0.03676706552505493,0.039685437455773354,0.10101491957902908,0.5756140956655145 -2084,67,0.25509077310562134,0.10004586167633543,-0.02466813661158085,0.04867152124643326,0.07303294539451599,0.15636187404394153,0.051570042967796326,0.0712885744869709,0.11692512933164835,0.6258612039126457 -2084,70,0.2573753297328949,0.10734716132283208,-0.023556740954518318,0.0505710169672966,0.07623074948787675,0.15974878817796706,0.05418233573436737,0.07864523082971571,0.12026628516614435,0.636213717609644 -2084,90,0.28435856103897095,0.19749194383621216,-0.014683998934924601,0.06101825833320618,0.11192688345909119,0.19005502611398697,0.07072684168815613,0.1711077317595482,0.15648639257997277,0.744436052441597 -2084,95,0.2946755290031433,0.26447367668151855,-0.010979317128658295,0.06339263170957565,0.13409432172775262,0.20449839532375336,0.07508066296577454,0.2379135638475418,0.17863141000270838,0.8123507355339824 -2085,5,0.19362810254096985,0.021142808720469475,-0.06219402328133583,0.01993693970143795,0.02475317381322384,0.07992412522435188,-0.0018734005279839039,-0.02680227858945727,0.059186468552798036,0.4276836650678888 -2085,10,0.20329223573207855,0.02698751725256443,-0.05426792800426483,0.023334665223956108,0.030332125537097455,0.09318688809871674,0.001690531149506569,-0.015349701046943665,0.0673796946182847,0.4590054098051041 -2085,30,0.23035503923892975,0.047621820122003555,-0.04034680128097534,0.03207167983055115,0.045503637194633476,0.12110008001327514,0.019510194659233093,0.01281319186091423,0.0873674787580967,0.5313509734347462 -2085,33,0.23348712921142578,0.050818996876478194,-0.0389179103076458,0.03401323780417442,0.04762677103281021,0.12443837523460388,0.022183146327733994,0.016706310212612152,0.08981983726844191,0.5398261076025664 -2085,50,0.24702362716197968,0.07191742956638336,-0.031771209090948105,0.04226486012339592,0.06011917069554329,0.14159370958805084,0.03732985630631447,0.04022219777107239,0.10364366136491299,0.5868207570165396 -2085,67,0.2599703371524811,0.10207908242940913,-0.025324715301394463,0.04954570159316063,0.07545652240514755,0.1590513288974762,0.05247657001018524,0.07256254849955447,0.12007856730371713,0.6382682362012565 -2085,70,0.2623134255409241,0.10955620706081387,-0.024197876453399658,0.051487259566783905,0.0787607878446579,0.16248752772808073,0.05514952540397644,0.08010480552911758,0.12358066812157631,0.6489059675484896 -2085,90,0.2899879515171051,0.20194683969020844,-0.015091887861490237,0.06216583028435707,0.1157257929444313,0.19330277144908906,0.07207819819450378,0.17485910505056396,0.1610473796725273,0.7599772328510881 -2085,95,0.3005692660808563,0.27063706517219543,-0.011279310099780565,0.06459277868270874,0.13872307538986206,0.2079382687807083,0.07653312385082245,0.24337182193994522,0.1839837282896042,0.8294960357248782 -2086,5,0.19749614596366882,0.021384384483098984,-0.06377562880516052,0.02016966976225376,0.025518737733364105,0.08132615759968757,-0.00220804987475276,-0.02782037956640124,0.06056967433542013,0.435757762612775 -2086,10,0.20732110738754272,0.027358097955584526,-0.05568057894706726,0.023641785606741905,0.03128043934702873,0.0948173299431801,0.001437678001821041,-0.01609446294605732,0.06902654394507408,0.4677365871146321 -2086,30,0.23483426868915558,0.04843680188059807,-0.041404520720243455,0.03257008641958237,0.04699496179819107,0.1232077032327652,0.019666319712996483,0.012708164751529694,0.08957809209823608,0.5415772600099444 -2086,33,0.2380184829235077,0.05170340936630964,-0.03993206098675728,0.03455415740609169,0.049171806052327155,0.1266118735074997,0.022400615736842155,0.016695823520421982,0.09212958067655563,0.5502753603551537 -2086,50,0.251780241727829,0.07327046245336533,-0.03261894732713699,0.042986445128917694,0.0621219277381897,0.14404509961605072,0.03789495676755905,0.04073283448815346,0.1063687615096569,0.5982921216636896 -2086,67,0.26494237780570984,0.10413212418556224,-0.0260004922747612,0.05042669177055359,0.07798487693071365,0.16179675355553627,0.053389303386211395,0.073862151671201,0.12339812403544785,0.6509737829491496 -2086,70,0.2673244774341583,0.11178713738918301,-0.02484505996108055,0.05241076275706291,0.08141046017408371,0.16528579592704773,0.056123603135347366,0.08154949750751257,0.12699541933834552,0.6619174381718039 -2086,90,0.2954595386981964,0.20645122230052948,-0.01550131989642977,0.06332313269376755,0.1197427436709404,0.1966135859489441,0.07344081252813339,0.17866276390850544,0.16582564003765585,0.7757357090711594 -2086,95,0.30621692538261414,0.2768714427947998,-0.011598298326134682,0.06580321490764618,0.14362494200468054,0.2114454001188278,0.07799797505140305,0.2488899352028966,0.1896175742149353,0.8472140110097826 -2087,5,0.2013421356678009,0.021626099944114685,-0.06535971164703369,0.020402368158102036,0.026326049119234085,0.08278203532099725,-0.0025504687801003456,-0.028840869106352328,0.06198906525969505,0.44379235710948706 -2087,10,0.21133291721343994,0.027730194851756096,-0.057092830538749695,0.02394966036081314,0.032271672040224075,0.09647706151008606,0.0011779721826314926,-0.016837917268276215,0.0706814918667078,0.47645558044314384 -2087,30,0.2393103986978531,0.04925787076354027,-0.04245486855506897,0.03307127207517624,0.04849788919091225,0.12530992925167084,0.01982017792761326,0.012605529651045796,0.09182890765368938,0.551819384098053 -2087,33,0.24254834651947021,0.05259464412927627,-0.04094185307621956,0.03509829565882683,0.05075162276625633,0.1287887904047966,0.022616509348154068,0.01670188475400209,0.09444385519251228,0.5607037513516844 -2087,50,0.2565423548221588,0.0746353417634964,-0.03346671164035797,0.043713152408599854,0.06413168460130692,0.146490216255188,0.038462378084659576,0.04126376658678055,0.10913188569247723,0.6098188795149326 -2087,67,0.26992663741111755,0.10620496958494197,-0.02668592520058155,0.05131449177861214,0.08052240312099457,0.16451562345027923,0.05430825427174568,0.07512592524290085,0.1266911502555013,0.6636351769091562 -2087,70,0.27234891057014465,0.11403996795415876,-0.025499871000647545,0.053341515362262726,0.08408131524920462,0.16803916841745373,0.05710458755493164,0.08303491678088903,0.13039395697414874,0.6748783180024474 -2087,90,0.3009588122367859,0.2110051065683365,-0.01592263951897621,0.06449014693498611,0.12368474900722504,0.1998443454504013,0.07481468468904495,0.18251975625753403,0.17053953371942046,0.7914966555312276 -2087,95,0.31189775466918945,0.28317680954933167,-0.011908871121704578,0.06702392548322678,0.148421511054039,0.2149322435259818,0.07947523146867752,0.25446746312081814,0.1951433330774307,0.8647216212935745 -2088,5,0.2045907825231552,0.021867956966161728,-0.06699527055025101,0.020635036751627922,0.027171913534402847,0.08427378311753274,-0.002900665160268545,-0.029893378634005784,0.0634628664702177,0.4514872031286359 -2088,10,0.21482564508914948,0.02810380794107914,-0.05852174758911133,0.024258289486169815,0.03329352289438248,0.09817662835121155,0.0009114057756960392,-0.017613543197512627,0.07238118723034859,0.4849405991844833 -2088,30,0.24348662793636322,0.05008504167199135,-0.043532061576843264,0.03357522562146187,0.05005914717912674,0.12747855484485626,0.019971761852502823,0.012488327920436859,0.09414051026105881,0.561944080516696 -2088,33,0.24680368602275848,0.05349269740283489,-0.04196153208613396,0.035645656287670135,0.052395839244127274,0.1309889867901802,0.022830814123153687,0.01667688429355621,0.09680611543357372,0.5710037516336888 -2088,50,0.26113957166671753,0.07601208984851837,-0.034328265115618706,0.0444449819624424,0.06622310727834702,0.1489551141858101,0.039032116532325745,0.04178836569190025,0.11197762377560139,0.621286129578948 -2088,67,0.27485084533691406,0.10829763844609272,-0.027392320334911346,0.052209094166755676,0.08317532390356064,0.16730015352368355,0.055233415216207504,0.0764424242079258,0.13009172677993774,0.6764046130375937 -2088,70,0.2773323059082031,0.11631468236446378,-0.026169097051024437,0.054279521107673645,0.08684873655438423,0.1708315834403038,0.058092474937438965,0.08451826870441437,0.133928332477808,0.6879510406404734 -2088,90,0.306641161441803,0.21560847759246826,-0.016350157558918,0.06566688418388367,0.12775762379169464,0.20311698913574222,0.07619980722665787,0.18641328066587448,0.17543117329478264,0.8074705317616463 -2088,95,0.317847341299057,0.2895532250404358,-0.0122200483456254,0.06825491786003113,0.15337517857551575,0.2184358343482017,0.08096490055322647,0.2601018287241459,0.20080718966200944,0.8825307577615603 -2089,5,0.2079847753047943,0.022109953686594963,-0.06862634196877479,0.02086767926812172,0.028031423687934875,0.08577764853835107,-0.003258633427321911,-0.030979958362877362,0.06496500177308917,0.4594144631875679 -2089,10,0.21846039593219757,0.02847893349826336,-0.0599632441997528,0.024567672982811928,0.034347087144851685,0.09987150132656097,0.0006379839032888412,-0.01839766651391983,0.07412395291030408,0.4935131223872304 -2089,30,0.24779558181762695,0.050918303430080414,-0.0446125790476799,0.03408195078372955,0.05166105926036835,0.12963226735591887,0.020121075212955475,0.01237671822309494,0.09648339692503213,0.5722322102636099 -2089,33,0.2511906623840332,0.05439756918698549,-0.04300693795084953,0.036196231842041016,0.05407113581895828,0.13319078087806702,0.023043537512421608,0.01664596050977707,0.09923371858894825,0.5815259687043727 -2089,50,0.2658637762069702,0.07740069925785065,-0.035189174115657806,0.045181937515735626,0.06833958625793457,0.1514449417591095,0.03960416093468666,0.042328909039497375,0.114839693531394,0.6329942401498556 -2089,67,0.2798975706100464,0.11041010849177849,-0.02809717319905758,0.05311049893498421,0.08584316819906235,0.17006994783878326,0.05616478621959686,0.07778041623532772,0.13353866592049599,0.6893446893338114 -2089,70,0.28243741393089294,0.11861130222678182,-0.02685515023767948,0.05522477999329567,0.08963477388024328,0.1736520752310753,0.059087250381708145,0.08604137971997261,0.13748545534908768,0.7011996231973171 -2089,90,0.31243571639060974,0.2202613353729248,-0.01678778976202011,0.0668533444404602,0.13187940418720245,0.2063851371407509,0.07759618759155273,0.19035162962973118,0.18030669912695885,0.8235591909848153 -2089,95,0.32390549778938293,0.296000599861145,-0.012541942298412323,0.06949619203805923,0.15833722054958344,0.2219395935535431,0.0824669599533081,0.26579618640244007,0.20654115779325344,0.9004155422560869 -2090,5,0.21132372319698334,0.02235208824276924,-0.07027163356542587,0.02110028639435768,0.028914909809827805,0.08728402554988861,-0.0036243717186152935,-0.03204703871160745,0.0665081087499857,0.46724068792536855 -2090,10,0.222026526927948,0.028855575248599052,-0.06141768544912338,0.02487780898809433,0.03543595224618912,0.10160186886787415,0.0003577088937163353,-0.0192108154296875,0.07587921805679798,0.502107311040163 -2090,30,0.2519978880882263,0.05175765976309776,-0.045718688517808914,0.034591443836688995,0.05330896005034447,0.1318141371011734,0.020268119871616364,0.012254483997821808,0.09888999871909618,0.582452683057636 -2090,33,0.25546661019325256,0.055309260748326775,-0.0440779809653759,0.036750029772520065,0.05580104514956474,0.135405033826828,0.02325468137860298,0.016614951193332672,0.1017076849192381,0.5920160525292159 -2090,50,0.270457923412323,0.07880115509033203,-0.03607242926955223,0.04592401906847954,0.07053323835134506,0.15393715351819992,0.04017852619290352,0.04286903515458107,0.11779998615384102,0.6446046028286219 -2090,67,0.2847960889339447,0.11254240207374107,-0.028820890933275223,0.054018713533878326,0.0886060893535614,0.17283302545547485,0.057102374732494354,0.07908937335014343,0.13709317144006491,0.7022810320183634 -2090,70,0.2873910069465637,0.12092981636524197,-0.027549128979444504,0.0561772957444191,0.09251591563224792,0.17650059312582014,0.06008893996477127,0.08753271773457527,0.14113798812031744,0.7143976322375237 -2090,90,0.3180398643016815,0.2249636948108673,-0.017232056707143784,0.06804952025413513,0.1361844390630722,0.2096853256225586,0.07900382578372955,0.19431660696864128,0.18531444575637582,0.8397333336994052 -2090,95,0.3297584056854248,0.3025190234184265,-0.012878960929811,0.0707477554678917,0.16347800195217133,0.22544389888644217,0.08398143202066422,0.2715500742197037,0.21243549957871433,0.9184216825757174 -2091,5,0.2149118185043335,0.02259436622262001,-0.0719413235783577,0.021332861855626106,0.02978653647005558,0.0887727439403534,-0.003997887950390577,-0.033132029697299004,0.06801819307729602,0.4752242865972221 -2091,10,0.2257949411869049,0.02923373132944107,-0.06287539750337601,0.02518869936466217,0.03651563823223114,0.10331703424453736,7.057469338178635e-05,-0.019999459385871887,0.07764217965304852,0.5108080471865833 -2091,30,0.25627124309539795,0.052603114396333694,-0.04684264585375786,0.03510371223092079,0.054946910589933395,0.13398802280426025,0.02041289024055004,0.012115342170000074,0.10127275455743073,0.5927567949518562 -2091,33,0.25979840755462646,0.05622777082026005,-0.045155011117458344,0.037307050079107285,0.05751833692193031,0.13762129634618758,0.02346423827111721,0.01657671295106411,0.10416902929544448,0.6024871729314327 -2091,50,0.2750422954559326,0.08021347224712372,-0.03695150837302208,0.04667122662067413,0.07272712886333466,0.15643136203289032,0.04075520113110542,0.04340866580605507,0.1207436416298151,0.6561694922856987 -2091,67,0.2896220088005066,0.11469450667500508,-0.029549449682235718,0.054933737963438034,0.09136638313531877,0.1756007206439972,0.05804616957902908,0.08043849840760231,0.14062256239354612,0.7151637304387987 -2091,70,0.29226064682006836,0.12327022105455396,-0.028240825980901718,0.05713707208633423,0.09539748579263685,0.17930336445569992,0.06109752133488655,0.08904703333973885,0.14480150118470192,0.7275506946258247 -2091,90,0.32342585921287537,0.22971555590629578,-0.01766698192805051,0.06925541907548904,0.14045320451259613,0.2129627764225006,0.08042272180318832,0.19829664286226034,0.19034135416150094,0.8557599939405919 -2091,95,0.33534181118011475,0.3091084063053131,-0.0132072065025568,0.07200958579778671,0.16864068806171417,0.22894957661628723,0.08550829440355301,0.27737326361238956,0.21832857094705105,0.9365288941189646 -2092,5,0.21868768334388733,0.022836782038211823,-0.07363626025617122,0.021565411239862442,0.030709218233823776,0.0903170257806778,-0.004379177466034889,-0.034226059913635254,0.06960455887019634,0.4835649049840868 -2092,10,0.22973692417144775,0.029613403603434563,-0.06436444073915482,0.025500347837805748,0.03767738491296768,0.10507665276527406,-0.00022341683506965637,-0.020824626088142395,0.07949907127767801,0.5197545858100057 -2092,30,0.26067841053009033,0.05345466360449791,-0.04797380343079567,0.035618752241134644,0.05668948218226433,0.13619196712970733,0.020555390045046806,0.012009143829345703,0.1037521930411458,0.603323080111295 -2092,33,0.264259397983551,0.057153103165328505,-0.04626135155558586,0.037867289036512375,0.059327736496925354,0.13986389338970184,0.023672211915254593,0.016529688611626625,0.10674117596819997,0.6131964560877532 -2092,50,0.2797359526157379,0.08163765072822571,-0.03786873258650303,0.04742356017231941,0.07502275705337524,0.15897884219884872,0.04133419319987297,0.043935319408774376,0.12380900606513023,0.6680621039122343 -2092,67,0.2945382297039032,0.1168664298951627,-0.030292270705103874,0.05585556477308273,0.0942552387714386,0.17843356728553772,0.05899617820978165,0.08178926089778547,0.14429937299340964,0.7283538842760027 -2092,70,0.29721713066101074,0.12563252449035642,-0.028954962268471718,0.058104097843170166,0.09841732829809188,0.18217884004116058,0.06211300194263458,0.09056133404374123,0.14860031474381682,0.7410121613182127 -2092,90,0.32885801792144775,0.2345169186592102,-0.018122663721442223,0.07047104090452194,0.14492416381835938,0.21631142497062683,0.08185286819934845,0.20233532413840294,0.19559454545378685,0.8720666632056236 -2092,95,0.34095585346221924,0.315768837928772,-0.01355478260666132,0.07328170537948608,0.17400923371315002,0.23250560462474823,0.08704756945371628,0.2832474708557129,0.2244520623236894,0.9548824081197381 -2093,5,0.2217799425125122,0.023079337552189827,-0.07537201792001724,0.02179792895913124,0.03166685253381729,0.0918829917907715,-0.004768237005919218,-0.035371020436286926,0.0712127760052681,0.491319317324087 -2093,10,0.23306643962860107,0.02999459207057953,-0.06587576121091843,0.025812746956944466,0.03886072710156441,0.10683605074882507,-0.0005242610350251198,-0.021695446223020554,0.0814207350835204,0.5282248612027616 -2093,30,0.2646723687648773,0.05431230738759041,-0.049121953547000885,0.03613656759262085,0.05849296599626541,0.1384500116109848,0.020695621147751808,0.011841087415814399,0.10631182920187712,0.6135937655344605 -2093,33,0.26833024621009827,0.05808525525033474,-0.04738971218466759,0.038430750370025635,0.06120557337999344,0.14215874791145325,0.02387860417366028,0.016481168568134308,0.10939823471009731,0.6237240143120288 -2093,50,0.28413915634155273,0.0830736830830574,-0.0387931726872921,0.048181019723415375,0.07741227746009827,0.16157187521457672,0.04191550239920616,0.044462744146585464,0.12696316093206406,0.6798052629455924 -2093,67,0.2992592751979828,0.11905816167593014,-0.031051696110516776,0.05678420141339302,0.09726749360561371,0.18130835890769958,0.05995239317417145,0.08309939131140709,0.14809731416404248,0.741431778240949 -2093,70,0.30199572443962097,0.12801672369241712,-0.029674656689167023,0.05907838046550751,0.10156279876828184,0.18511070907115937,0.06313537806272507,0.0921054370701313,0.15254285577684637,0.7544308884069323 -2093,90,0.33431607484817505,0.2393677532672882,-0.018595866858959198,0.07169638574123383,0.14957475662231445,0.21972058713436127,0.08329427242279053,0.20643511414527893,0.201032080501318,0.8885717268800363 -2093,95,0.3466736972332001,0.32250022888183594,-0.013910370226949478,0.07456410676240921,0.1796247363090515,0.23614911437034602,0.08859924226999283,0.28918001241981983,0.23089875280857086,0.9733621058054264 -2094,5,0.22537297010421753,0.023322030901908875,-0.07712454348802567,0.022030415013432503,0.03267022222280502,0.09346800819039346,-0.00516506889835,-0.03653857111930847,0.07290206840261818,0.4996403595432639 -2094,10,0.2368622124195099,0.03037729486823082,-0.0674048364162445,0.026125898584723473,0.04008909314870835,0.1086303859949112,-0.0008319607004523277,-0.022567423060536385,0.08337982315570117,0.5372162990272045 -2094,30,0.2690359055995941,0.05517605319619179,-0.050288502126932144,0.036657147109508514,0.06032785400748253,0.14068301022052765,0.020833585411310196,0.011720046401023865,0.10892140865325928,0.624310303106904 -2094,33,0.27275949716567993,0.059024224653840066,-0.04852322582155466,0.03899742290377617,0.0631304457783699,0.1444709300994873,0.024083416908979416,0.01642995912581682,0.11209927372634411,0.6346783209592104 -2094,50,0.28885239362716675,0.0845215767621994,-0.039719149470329285,0.048943597823381424,0.07984723895788193,0.16414831578731537,0.0424991250038147,0.044991254806518555,0.13014379888772964,0.6919401763007045 -2094,67,0.30424410104751587,0.12126969709992422,-0.031822370067238794,0.0577196329832077,0.10030755400657654,0.1841502021253109,0.06091483682394028,0.08443416282534599,0.15193357799202206,0.7548461915459483 -2094,70,0.30702972412109375,0.13042281717061993,-0.030432309955358505,0.06005990877747536,0.10472764074802399,0.18800954818725585,0.0641646683216095,0.09364628046751022,0.15650062672793866,0.7680939044803381 -2094,90,0.3399306535720825,0.24426808953285217,-0.019077438861131668,0.0729314386844635,0.1542869657278061,0.22307017594575887,0.08474693447351456,0.21044845506548882,0.20649639517068863,0.905331589281559 -2094,95,0.3525102734565735,0.3293026387691498,-0.01426143478602171,0.0758567824959755,0.1852174192667006,0.23976075649261475,0.09016332775354385,0.29518720507621765,0.2372843610122799,0.9921964701265095 -2095,5,0.22926542162895203,0.023564867675304413,-0.07887180559337138,0.022262873128056526,0.033637095242738724,0.09502343833446503,-0.0055696782656013966,-0.0376554811373353,0.07453870363533496,0.5081640938995406 -2095,10,0.24095553159713745,0.030761511996388435,-0.06894051283597946,0.026439810171723366,0.04129747301340103,0.11043200343847275,-0.001146521419286728,-0.023441137745976448,0.0853194585070014,0.5464491336606443 -2095,30,0.27369174361228943,0.056045886129140854,-0.05145254358649254,0.03718050196766853,0.06214587017893791,0.1429032489657402,0.020969269797205925,0.011615820229053497,0.11152384541928768,0.635298040881753 -2095,33,0.27748042345046997,0.05997001502662897,-0.04964418336749077,0.03956732153892517,0.06504569947719574,0.14674243509769438,0.02428663894534111,0.016377680003643036,0.11479238556697964,0.6459402043931186 -2095,50,0.2938547134399414,0.0859813243150711,-0.04066477715969086,0.049711309373378754,0.08227037638425827,0.16670849919319153,0.04308505728840828,0.045546866953372955,0.13333824463188648,0.7043521543964744 -2095,67,0.3095155358314514,0.1235010635107757,-0.03259337693452835,0.05866188555955887,0.10335223376750946,0.1869971603155136,0.06188347563147545,0.08580246195197105,0.15577103981748228,0.768557106424123 -2095,70,0.3123498260974884,0.1328508004546165,-0.031161192804574966,0.061048705130815506,0.10791707038879395,0.19090014696121216,0.06520084291696548,0.09520386159420013,0.160484629496932,0.7820807709358633 -2095,90,0.34582602977752686,0.2492178976535797,-0.019555270858108986,0.07417621463537216,0.15899325907230377,0.22643759697675706,0.08621085435152054,0.21457411348819733,0.21199512481689453,0.9224926829338074 -2095,95,0.3586255609989166,0.3361760675907135,-0.014610487036406994,0.07715974003076553,0.19089439287781684,0.24337276816368103,0.09173979610204697,0.30129895359277725,0.24380791075527666,1.0113806308247149 -2096,5,0.23277398943901062,0.023807842284440994,-0.08064956218004227,0.022495297715067863,0.0346500426530838,0.0966621421277523,-0.005982059054076672,-0.03881359472870827,0.07623683754354715,0.5165551905985921 -2096,10,0.2446935772895813,0.031147247180342674,-0.07048773765563965,0.02675447054207325,0.04256081804633141,0.11224874705076218,-0.0014679357409477234,-0.024309710040688503,0.08729304801672697,0.5555406874977052 -2096,30,0.2780723571777344,0.0569218210875988,-0.052638135850429535,0.03770662099123001,0.06401272118091583,0.14514116942882538,0.02110268920660019,0.011454205960035324,0.11419143304228782,0.6461146141402423 -2096,33,0.2819353938102722,0.06092262268066406,-0.0507885105907917,0.040140438824892044,0.06700228899717331,0.14903022348880768,0.024488285183906555,0.016317554563283918,0.1175234187580645,0.6570200286526233 -2096,50,0.29863107204437256,0.08745293319225311,-0.041621580719947815,0.05048413574695587,0.08474165201187134,0.16927753388881683,0.043673306703567505,0.04609245713800192,0.13660498149693012,0.7166294446215034 -2096,67,0.31459930539131165,0.125752238482237,-0.033364202827215195,0.05961093306541443,0.10647765547037125,0.18984643280506136,0.06285833567380905,0.08719755709171295,0.15969965286552906,0.7822645238693804 -2096,70,0.31748923659324646,0.1353006780147552,-0.03190901130437851,0.062044739723205566,0.11116374284029007,0.19379769414663314,0.06624393165111542,0.09675598051398993,0.16454511880874634,0.7960129082202911 -2096,90,0.3516225218772888,0.2542172372341156,-0.020041966810822487,0.07543070614337921,0.163774773478508,0.2298359677195549,0.08768603205680847,0.21874798461794853,0.21757887303829193,0.9396339062601329 -2096,95,0.36467331647872925,0.3431205153465271,-0.014985872479155721,0.07847297191619873,0.1966548457741731,0.24697941541671753,0.09332868456840515,0.3074774816632271,0.2503637392073869,1.0304212557617571 -2097,5,0.23612172901630402,0.024050956591963768,-0.08245556801557541,0.022727692499756813,0.035761307924985886,0.09829906150698663,-0.006402222439646721,-0.04001724347472191,0.07802423648536205,0.5248350576497615 -2097,10,0.24830332398414612,0.03153449669480324,-0.07208944857120514,0.027069885283708572,0.0438850086182356,0.11410939693450928,-0.0017962148413062096,-0.025245685130357742,0.089354607462883,0.564685071259737 -2097,30,0.2824157774448395,0.057803843170404434,-0.053856849670410156,0.03823552280664444,0.06600348651409149,0.14747148752212524,0.021233830600976944,0.011282708495855331,0.11695179343223572,0.6571412669494748 -2097,33,0.28636375069618225,0.06188205383718014,-0.05197811871767044,0.04071677476167679,0.06907010823488235,0.15140174329280853,0.02468833699822426,0.016234587877988815,0.12038740327581764,0.6681845929287374 -2097,50,0.3034264147281647,0.08893640339374542,-0.042605601251125336,0.05126209929585457,0.08736267313361168,0.17191976308822632,0.044263869524002075,0.04661792330443859,0.14001347310841084,0.7291358560323715 -2097,67,0.31974565982818604,0.12802321955561652,-0.03416886180639267,0.060566794127225876,0.10975262522697449,0.19275619089603424,0.06383940577507019,0.08859465017914797,0.16376705892384055,0.7962262782454491 -2097,70,0.32269909977912903,0.13777246624231335,-0.032681062817573554,0.06304804235696793,0.11457619071006775,0.1967796221375465,0.0672939121723175,0.09831980150192976,0.16877668723464012,0.8101994182914495 -2097,90,0.3575826585292816,0.25926607847213745,-0.02054214235395193,0.07669493556022644,0.16880828142166138,0.2332853376865387,0.08917245268821716,0.22298890724778175,0.22340029925107957,0.9570945668965579 -2097,95,0.370920330286026,0.3501359820365906,-0.015352880582213402,0.07979650050401688,0.20268063247203827,0.250678688287735,0.09492996335029602,0.3136911205947399,0.25717513561248767,1.0499264368787404 -2098,5,0.2397247552871704,0.024294210597872734,-0.08425858616828918,0.022960057482123375,0.03685814142227173,0.09994485974311829,-0.006830145139247179,-0.041244927793741226,0.07984491540119053,0.5334435618948191 -2098,10,0.25216758251190186,0.031923260539770126,-0.07368134707212448,0.027386052533984184,0.045225590467453,0.11593765020370483,-0.0021313372999429703,-0.02617577463388443,0.09144371785223485,0.5740709643810987 -2098,30,0.28701168298721313,0.05869196727871895,-0.05507808178663254,0.03876718878746033,0.06802410632371902,0.14979252219200134,0.021362707018852234,0.011109497398138046,0.11974343694746495,0.6683944469317794 -2098,33,0.29104432463645935,0.0628482985496521,-0.05316796526312828,0.0412963330745697,0.07117364555597305,0.15377011895179749,0.024886813014745712,0.0161566324532032,0.12326311085373164,0.6797155942767859 -2098,50,0.3084729015827179,0.09043172746896744,-0.04358583688735962,0.052045177668333054,0.0900152400135994,0.17456689476966858,0.04485674947500229,0.047149837017059326,0.1434648521244526,0.7418923880904913 -2098,67,0.32514214515686035,0.13031401425600064,-0.03497890383005142,0.061529457569122314,0.11308509856462479,0.19569310545921326,0.06482668220996857,0.08999475587159397,0.16789598073810338,0.8104680558480323 -2098,70,0.3281589448451996,0.14026613384485243,-0.0334638196974993,0.06405860185623169,0.11806964129209518,0.19975405931472778,0.06835079193115234,0.09989891946315765,0.17304078899323938,0.8247300205752253 -2098,90,0.3637906312942505,0.2643643617630005,-0.021049564704298973,0.07796888053417206,0.17387408018112183,0.23675605654716492,0.0906701311469078,0.22721624188125134,0.22931877560913563,0.9749059438705444 -2098,95,0.377414345741272,0.35722240805625916,-0.015728393942117697,0.08113030344247818,0.208724707365036,0.25433282703161236,0.09654364734888077,0.3199612647294998,0.26403537914156894,1.0698833867907522 -2099,5,0.24354183673858643,0.024537604302167892,-0.08607884682714939,0.02319239266216755,0.037963639944791794,0.10157716274261475,-0.007265846710652113,-0.04249052330851555,0.08163968836888671,0.5421831613406539 -2099,10,0.2561953067779541,0.03231354057788849,-0.07529051601886749,0.027702977880835533,0.04657901413738728,0.11773787438869476,-0.0024733208119869232,-0.0271102674305439,0.09356335550546646,0.5835288414731622 -2099,30,0.2916291654109955,0.059586185961961746,-0.05632819682359696,0.03930162638425827,0.07006105035543442,0.15208011865615845,0.02148931473493576,0.010913878679275513,0.12259488310664893,0.6797326353378594 -2099,33,0.2957300841808319,0.06382136426866054,-0.05435454100370407,0.04187910631299019,0.07331230491399765,0.1561228483915329,0.02508370950818062,0.016064926981925964,0.12619135119020938,0.6912442734837532 -2099,50,0.31345367431640625,0.09193891286849976,-0.0445808507502079,0.05283338576555252,0.092710942029953,0.17722809314727783,0.04545194283127785,0.04767308011651039,0.14698533341288567,0.7546771955676377 -2099,67,0.330405056476593,0.1326246424019338,-0.035790511034429054,0.06249892711639404,0.1164826974272728,0.1986386626958847,0.06582017987966537,0.09138765186071396,0.17208394035696983,0.8247292809095235 -2099,70,0.33347293734550476,0.1427816957235336,-0.0342477448284626,0.06507640331983566,0.12162300944328308,0.20274842530488965,0.06941457837820053,0.10146601498126984,0.17741550281643867,0.8392557393759489 -2099,90,0.36970776319503784,0.2695121765136719,-0.0215501319617033,0.07925253361463547,0.1791401207447052,0.2402081996202469,0.09217908978462219,0.23155337758362293,0.235326024889946,0.9927749656140804 -2099,95,0.3835620880126953,0.3643798828125,-0.016115786507725716,0.08247438073158264,0.2150164097547531,0.2580775395035743,0.09816974401473999,0.32630640268325806,0.2711304973810911,1.0897765890695152 -2100,5,0.24699555337429047,0.024781139567494392,-0.08797318488359451,0.023424696177244186,0.03904234599322081,0.10318797826766968,-0.00770932249724865,-0.04375997558236122,0.08343406999483705,0.550543404603377 -2100,10,0.25989142060279846,0.03270533308386803,-0.07695600390434264,0.02802065573632717,0.04793503135442734,0.11954997330904009,-0.00282216165214777,-0.028045276179909706,0.09566248059272767,0.5927104337140918 -2100,30,0.296004056930542,0.06048649549484253,-0.05760070085525513,0.03983883932232857,0.07214605435729025,0.15438024699687958,0.021613646298646927,0.010734234005212784,0.125474713742733,0.6908874399960041 -2100,33,0.3001835346221924,0.06480125471949577,-0.05558060482144356,0.04246510565280914,0.07549047470092773,0.1584975066781044,0.02527901530265808,0.015993036329746246,0.12916859984397888,0.7026205889787525 -2100,50,0.31824666261672974,0.09345795214176178,-0.04559203237295151,0.05362671613693237,0.09551871567964554,0.17991305887699127,0.04604944586753845,0.04820748046040535,0.15056242607533932,0.7674224823713303 -2100,67,0.33552277088165283,0.1349550642073156,-0.03661944717168808,0.06347520649433136,0.12000851467251779,0.2015993595123291,0.06681987643241882,0.09278480658307678,0.17646801471710205,0.8389627374708652 -2100,70,0.3386493921279907,0.14531915783882138,-0.03503038249909881,0.06610146909952164,0.12528882920742035,0.20578250288963318,0.07048524916172028,0.10309589840471745,0.18190819546580314,0.8538197143934667 -2100,90,0.375578373670578,0.27470946311950684,-0.022051379084587097,0.08054590970277786,0.18465963304042832,0.2437851369380951,0.09369926899671555,0.235929936170578,0.241659975796938,1.0107640117406846 -2100,95,0.3896980881690979,0.37160831689834595,-0.016499878838658333,0.08382873982191086,0.2217427037656305,0.26189693808555603,0.0998082160949707,0.33267657831311226,0.27853185050189494,1.1100503373891115 diff --git a/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp85_projection_2100_regional.csv b/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp85_projection_2100_regional.csv deleted file mode 100644 index bef1db3..0000000 --- a/profsea/Falkland_example/data/sea_level_projections/STANLEYII_rcp85_projection_2100_regional.csv +++ /dev/null @@ -1,847 +0,0 @@ -year,percentile,exp,antdyn,antsmb,greendyn,greensmb,glacier,landwater,GIA,antnet,greennet,sum -2007,5,0.0071414370890706775,-0.0003590506197156736,-0.0001480404580510993,0.002368218938504895,0.001988592860638551,0.007961889518149612,0.00036440904591380244,-0.0020967304089423286,-0.0004561320787612873,0.004411291023756954,0.018967157029022443 -2007,10,0.0080908547103405,-0.00035126146089351005,-0.0001242724612475963,0.002402606846719171,0.0020146366767086416,0.00823257197359214,0.00037659843994505203,-0.0020967304089423286,-0.00043204406809159044,0.0044645940338787935,0.020333331543485263 -2007,30,0.010479550565779209,-0.00032204441781310004,-8.28637494638059e-05,0.002493489002792517,0.002082328259197657,0.008798384743882066,0.00043754541010129994,-0.0020967304089423286,-0.00038200805354090655,0.0045965317191526914,0.02352209554827444 -2007,33,0.010752068686299025,-0.0003175533164212365,-7.870536917942793e-05,0.0025057704101019078,0.002090363477356675,0.008860423628789268,0.00044668740818411273,-0.0020967304089423286,-0.00037593980416273976,0.004614903829677149,0.02387138985553521 -2007,50,0.012228588341362773,-0.00028275208015452163,-5.859651019907563e-05,0.002562452489726699,0.002136370502885251,0.009190441613475594,0.0004984923423050482,0.0006426668409204348,-0.00034024981087351643,0.00471304534758207,0.025682671491068596 -2007,67,0.013569267230015248,-0.00013693236992492848,-4.0465539543201444e-05,0.0026214981850643426,0.002186692899540518,0.009575025416062278,0.0005502972764259838,0.0006426668409204348,-0.00027722494317993944,0.004808427601623792,0.02750994768433079 -2007,70,0.013819237169157712,-0.00013374647094838884,-3.719786692778027e-05,0.0026369012926880106,0.0021977369559240184,0.009656269503541006,0.0005594393504137956,0.0006426668409204348,-0.00024567313712264426,0.004826875165996464,0.02786128478924886 -2007,90,0.016622433849424124,-0.0001225006046270335,-1.3159708131779789e-05,0.0027320610025682803,0.0023098590168661847,0.010417991132700075,0.0006173389625741063,0.0006426668409204348,-0.00016369781017762822,0.004978378079557126,0.03116095354569658 -2007,95,0.017919326958060262,-0.0001198148837062509,-5.3335924961944414e-06,0.0027776780754691414,0.0023751364391305456,0.010767615667417962,0.0006325757146012932,0.0006426668409204348,-0.0001467746804926097,0.005051459304321303,0.03279805335656204 -2008,5,0.008355903650075198,-0.00043004988248161567,-0.0002872530317034395,0.0027226176614572883,0.002040184642133909,0.00802994963685124,0.0007186814346375422,-0.0022873422643007223,-0.0006257973313742441,0.004876368304236301,0.021189993884244283 -2008,10,0.009310476496629416,-0.0004126817672888298,-0.00024043266543802313,0.0027820109038208104,0.002081212321102237,0.008475044916443398,0.0007442560300547128,-0.0022873422643007223,-0.0005800605981818046,0.004964028377752069,0.022746908474608498 -2008,30,0.011740606359764934,-0.00036178073808435765,-0.00015898870765979374,0.0029197240232360848,0.002185061577124905,0.009425267100732057,0.0008721294625705601,-0.0022873422643007223,-0.0004905826146194731,0.005168585374826064,0.026392169541714132 -2008,33,0.012015844398736954,-0.00035692016554153517,-0.0001509255243655866,0.002935568041812539,0.0021983185924450894,0.009525254780863945,0.0008913103522046889,-0.0022873422643007223,-0.0004803283083581407,0.005193186744983116,0.026783409341638354 -2008,50,0.013520512263849377,-0.0003242865036221157,-0.00011152552908142159,0.0030266854972481644,0.002274695997568907,0.010057628466979192,0.0010000026673714104,0.0007010910991859289,-0.00042377997207074464,0.005326070523227047,0.02885863780417393 -2008,67,0.014900203777849674,-0.00017117607019071038,-7.596779155855086e-05,0.003118266409484604,0.002366542284177474,0.010653400962181231,0.00110869513434813,0.0007010910991859289,-0.00035380392743533694,0.005465871090656549,0.030911668319319525 -2008,70,0.015153072798158973,-0.00016151961893944654,-6.948445338303926e-05,0.0031348752238776964,0.0023859631348351544,0.01077561609793673,0.0011278760998872576,0.0007010910991859289,-0.00033775868545364693,0.0054934844555131115,0.03129296625080755 -2008,90,0.018054139795526863,-0.00013717399185189617,-2.241193659327013e-05,0.0032898922342279404,0.0025995974611508093,0.011942820947663331,0.0012493559025250622,0.0007010910991859289,-0.00021535496287791036,0.005750448261109162,0.03501591979268443 -2008,95,0.019372595735825598,-0.00013165507386999812,-6.49077822256037e-06,0.0033674003870660506,0.002725949945519373,0.012487426424963243,0.0012813242037252746,0.0007010910991859289,-0.00018213527743984875,0.005890220400845888,0.0368313106912736 -2009,5,0.009138995303958654,-0.0005061726539438843,-0.0004532150235726104,0.0030786815561146246,0.0020892958423398204,0.008131191138745934,0.001062816938456222,-0.002477954119659116,-0.0008256334833508757,0.005342376351441652,0.023041560652277998 -2009,10,0.010195538259111344,-0.00047824776861766523,-0.00037917159570089544,0.0031440194954642465,0.002147548729745254,0.008751040871218637,0.001102972808281482,-0.002477954119659116,-0.0007546799489515615,0.005465510377000145,0.024880831356204267 -2009,30,0.01289837238304317,-0.00041095452656986215,-0.00025035002901932984,0.0033372227653902815,0.0023004596902669685,0.010081980436470791,0.0013037520055977827,-0.002477954119659116,-0.000618127765181277,0.0057511725006873455,0.029217751768300267 -2009,33,0.013197182796895503,-0.00040397273456145604,-0.00023767065150671562,0.0033607261012078356,0.002320893703053551,0.010220628597385675,0.0013338688320617285,-0.002477954119659116,-0.0006033352062235473,0.005785137631417926,0.029694096941968923 -2009,50,0.014867618396878243,-0.0003660523849421754,-0.0001753925809564732,0.003496119805118622,0.0024375116832149792,0.01095601273580597,0.0015045313547240814,0.0007595153574514231,-0.0005232717907830591,0.005972499407433676,0.03213652450342718 -2009,67,0.016405719017609954,-0.00021082149091667556,-0.00011917173455685531,0.0036371883602715686,0.0025797778501475514,0.011758797761191061,0.0016751935737664384,0.0007595153574514231,-0.0004382644688892437,0.006171389034756637,0.03452249483669616 -2009,70,0.016678698089718818,-0.00019140981395910405,-0.00010896070121695564,0.0036628649199969897,0.0026099461747959,0.011923318579562301,0.0017053105520403822,0.0007595153574514231,-0.0004223144529399254,0.006210743792280786,0.03497522055953771 -2009,90,0.019890855669975283,-0.00015211054273388838,-3.449014935648754e-05,0.003880973671146101,0.002946273917653976,0.01347921843793272,0.001896051009615365,0.0007595153574514231,-0.000273533473656826,0.0065928216212033,0.039348500449897454 -2009,95,0.02137293055001646,-0.00014361095054387204,-9.25533755660056e-06,0.003970984341376065,0.003146496116987334,0.014210354358375915,0.0019462456191819428,0.0007595153574514231,-0.00022201095425708917,0.006806624468242486,0.04146148311453768 -2010,5,0.009973290632292629,-0.0005885946072784534,-0.0006395642717637649,0.0034342066946370735,0.0021231848040103385,0.008100084334927394,0.0013968156332748415,-0.0026685659750175094,-0.001050418594658512,0.005797075244058069,0.02478726740199239 -2010,10,0.011109535524062812,-0.0005491911734386214,-0.0005336475801556918,0.003511707474485981,0.0022028137332616962,0.008901314886734533,0.0014527486607678608,-0.0026685659750175094,-0.0009476870300425517,0.005959023826494248,0.026890459026619386 -2010,30,0.013994133800268174,-0.0004618741973234079,-0.0003496455095127791,0.0037541057602019337,0.0024163167954649695,0.010678646817980407,0.0017324131909929655,-0.0026685659750175094,-0.0007581512443859981,0.006339059488445098,0.03191851678358091 -2010,33,0.014318216137960553,-0.0004524862851871146,-0.0003315361283791149,0.0037893591922415456,0.0024456405505847716,0.010858189696874682,0.0017743628477552315,-0.0026685659750175094,-0.0007375635857786151,0.006385722897318998,0.032460759789176716 -2010,50,0.01610616225078702,-0.00040130222324964406,-0.00024275940973706695,0.003974241086922214,0.0026093959214047945,0.011813379400734009,0.002012077569408072,0.0008179396157169171,-0.0006305636110805789,0.006636272971187159,0.035260311276458955 -2010,67,0.01774296727348119,-0.00025586860190272566,-0.0001627893729639332,0.004165392277293957,0.0028097872965092315,0.012828605114490105,0.002249792594680909,0.0008179396157169171,-0.0005247861005386994,0.00690441179133644,0.03796582666820603 -2010,70,0.01804623062610626,-0.00022341704594066192,-0.0001480362421111846,0.0042006450046595456,0.002852095365705361,0.013041801181819065,0.002291742251443175,0.0008179396157169171,-0.0005044239295617918,0.006957159970231287,0.038489285551647504 -2010,90,0.021488681969046592,-0.00016731025626634018,-4.144510700191303e-05,0.00448266999461736,0.0033281337430322968,0.014988389893518285,0.0025574237145575226,0.0008179396157169171,-0.00032797277489584557,0.007483059574448429,0.04347207112914029 -2010,95,0.023049869284033776,-0.00015568251372787267,-5.15000927721977e-06,0.0045884292337251605,0.0036167458305331407,0.015915246271957163,0.002627339809161299,0.0008179396157169171,-0.0002569830695894362,0.007785013813597982,0.045864585046259 -2011,5,0.010883316929638386,-0.0006776904521854411,-0.0008253380241970439,0.003779263609307391,0.0021652877576305136,0.00817931153714046,0.001720677670903398,-0.002859177830375903,-0.0012769967492687994,0.006257875209989242,0.026745639598423198 -2011,10,0.012058329792134464,-0.0006251863222059517,-0.0006886689747117693,0.0038788099449274327,0.002266075227904148,0.009138002480299707,0.0017935836634188484,-0.002859177830375903,-0.0011453438332560072,0.0064584345147559894,0.029050264573405274 -2011,30,0.01499023161828518,-0.0005144598476530972,-0.0004512318398636932,0.004176952806983848,0.002540213269001963,0.011277967817963464,0.0021581130187561088,-0.002859177830375903,-0.0009042749550800782,0.006939544571184527,0.03454881289909011 -2011,33,0.01534137986842543,-0.0005018566432026738,-0.0004278495660677465,0.004222291181308478,0.0025763814777607997,0.011493460326867527,0.002212792399285198,-0.002859177830375903,-0.0008780731690106571,0.006997732223498736,0.035135333213726805 -2011,50,0.01718070589080453,-0.0004367383734374756,-0.0003132902443220871,0.004459832312283064,0.0027880255893656595,0.01263450776985281,0.002522642374093369,0.0008763638739824111,-0.0007441718042722986,0.007314884901335864,0.038192342134709206 -2011,67,0.018855817704461514,-0.00030631742328225957,-0.00021009280587729975,0.00470590050743787,0.0030449871584709207,0.013837733091821102,0.002832492500711538,0.0008763638739824111,-0.000615322542640525,0.007653323829423133,0.04113944875654435 -2011,70,0.01918915167097002,-0.00025754136521761745,-0.00019106125393513628,0.004751238881762501,0.003101214762053443,0.014087521532750032,0.0028871720330506255,0.0008763638739824111,-0.0005906693788042636,0.00771977633568487,0.04171590784534305 -2011,90,0.02270116546265781,-0.00018277313144258162,-5.3501704840560003e-05,0.005098833084918001,0.0037150174144922107,0.01637544872552535,0.0032334749282115225,0.0008763638739824111,-0.0003833440336799871,0.008389155728506063,0.04711832409858945 -2011,95,0.024334226793050764,-0.00016786974328860112,-6.689706266204649e-06,0.0052197357687873615,0.004087486791278423,0.017468877870822457,0.003324607380903336,0.0008763638739824111,-0.0002970840249716352,0.008778746317824502,0.04973164736772844 -2012,5,0.01196198244523257,-0.0007737036220573874,-0.0010082753849400346,0.004112708950538328,0.002207530598061009,0.008262442657234914,0.00203440320315189,-0.0030497896857342964,-0.0015044212802100031,0.006719719521080999,0.028845227196892104 -2012,10,0.013219638803601264,-0.0007063226643837914,-0.0008413757987285496,0.004242199563021933,0.0023297693252465213,0.009371070582598283,0.002125477816234445,-0.0030497896857342964,-0.0013455302496237888,0.006957892656244308,0.031416627523117295 -2012,30,0.016365969007834793,-0.0005685636896797239,-0.0005514500511103853,0.004612147847125077,0.0026624318653777398,0.011833961966889961,0.0025808516406972105,-0.0030497896857342964,-0.0010516182753498545,0.007544333521805304,0.03751226440325708 -2012,33,0.01674101392105222,-0.0005529479335883673,-0.0005229068965618523,0.004653032691173861,0.00270723949650816,0.012086365095654182,0.002649157638461626,-0.0030497896857342964,-0.0010201819064211298,0.007614727285696311,0.03815916728816557 -2012,50,0.01873147281482816,-0.00047260587411931737,-0.00038304057477376707,0.004958987768981276,0.002965729209062858,0.013396763416612946,0.0030362251615399793,0.0009347881322479053,-0.0008602519623829141,0.008000032343177307,0.041542315447699416 -2012,67,0.020534027546085416,-0.00035946484364857557,-0.00025700993839469105,0.005254283667618094,0.00327763822185448,0.014769973441413547,0.003423292684618333,0.0009347881322479053,-0.0007065294447879451,0.008410006097206718,0.04479662833500258 -2012,70,0.020891256480850277,-0.00029378265098957716,-0.00023379071270122667,0.005307794929811647,0.003346727499728596,0.015054792690138478,0.003491598986002745,0.0009347881322479053,-0.0006777719951192148,0.008490129563062845,0.04543715932918442 -2012,90,0.024673120184987782,-0.00019849919040935155,-6.589448882788513e-05,0.005734394441733124,0.004094036374421817,0.017648436884621414,0.003924204043337373,0.0009347881322479053,-0.0004373317500711655,0.009303642073270436,0.051413251712441835 -2012,95,0.026455196274630725,-0.00018017265935945628,-8.882908802283432e-06,0.005864903241888643,0.004550566252815657,0.018892985056498137,0.004038047271738067,0.0009347881322479053,-0.0003360053342663687,0.009778297825711829,0.054309157008066836 -2013,5,0.013355824761092663,-0.0008755312951377185,-0.0011979167942908107,0.004458231322094543,0.002272761499378878,0.008526635883153631,0.0023379914709703267,-0.00324040154109269,-0.0017441998444274,0.007202515691943483,0.03150938098036472 -2013,10,0.014693421639874577,-0.0007918737265508356,-0.001002210190431586,0.00462186451711228,0.00241604205959895,0.009787670266813793,0.002448430967404652,-0.00324040154109269,-0.0015577338542508846,0.007483731769368312,0.034312933021863674 -2013,30,0.01794978017248213,-0.0006238660329366776,-0.0006612000980154746,0.005044366564044874,0.0028067120817774076,0.012477528643003225,0.003000628449576278,-0.00324040154109269,-0.0012108691744826508,0.008175516148289378,0.040805821997280924 -2013,33,0.018365504255518316,-0.0006050175698571441,-0.0006277666547890857,0.005112764102165491,0.0028587867884292935,0.012754757040196654,0.0030834578062345253,-0.00324040154109269,-0.0011745924879805222,0.008258498838447462,0.041496638958024024 -2013,50,0.02045575246475637,-0.000509149800668296,-0.0004629944775922571,0.005460484722208229,0.0031640134127328312,0.014210666897489399,0.00355282547631791,0.0009932123905133994,-0.0009882290530888664,0.008715470646216009,0.04513175909039345 -2013,67,0.022343662816099823,-0.000385912612869458,-0.00031433571442849933,0.005813969799691837,0.0035327707637501523,0.015736596282435376,0.004022193146401294,0.0009932123905133994,-0.0008096482600511513,0.009197862998420752,0.04862985156337174 -2013,70,0.02272341108173132,-0.0003321410441903334,-0.0002873981609742751,0.005878102953215501,0.003613702052863233,0.016052475784599524,0.004105023110299534,0.0009932123905133994,-0.0007767932741536179,0.009292578454248674,0.04931918166470365 -2013,90,0.026668276676908135,-0.0002144883908865122,-8.998184479882485e-05,0.0063697936096920055,0.004495686161705048,0.018921981367993192,0.004629610452695082,0.0009932123905133994,-0.0005036363393371733,0.010250214053190368,0.055746171707147546 -2013,95,0.028599478569068013,-0.00019259126194043818,-2.3362086424823096e-05,0.00654081715020944,0.005036185555472221,0.020300799956544355,0.004767659785285489,0.0009932123905133994,-0.00038819180268671806,0.010810221619699778,0.05887190239725284 -2014,5,0.01479764774441719,-0.0009844152924042657,-0.0014139833371023165,0.004803575491101715,0.0023499556387443533,0.008901570917927907,0.002631443537028695,-0.003431013396451084,-0.002011252471336928,0.007704453706627124,0.034374033778689105 -2014,10,0.016175421476364134,-0.0008810251974696078,-0.0011857355682161183,0.004979141928685441,0.0025164433157858525,0.010284313959392947,0.0027624434205494658,-0.003431013396451084,-0.0017943018974146926,0.008031007686440673,0.03734200801892502 -2014,30,0.019473775626719,-0.0006809142784940216,-0.0007885309848018762,0.005466585897859166,0.002973008321257695,0.013201583244108011,0.003417444052633304,-0.003431013396451084,-0.0013895133997390723,0.008839489136486578,0.044144712311491974 -2014,33,0.01992400862276554,-0.0006584412002240657,-0.0007489781524959822,0.0055559068336378855,0.0030341214980836857,0.01350785386875952,0.003515693965273882,-0.003431013396451084,-0.001346578109855416,0.008935341726861954,0.04487859362496077 -2014,50,0.02204493523668498,-0.0005466789320608321,-0.0005561825977416232,0.005964684378919447,0.003392336979589362,0.015114617669265824,0.004072444381097146,0.0010516366487788936,-0.0011319232089387985,0.009469076517889901,0.048719315702533406 -2014,67,0.023988024355284868,-0.00041444698007262186,-0.00038261322587577394,0.006384135249245877,0.00382635598975205,0.016797363733312556,0.00462919479692041,0.0010516366487788936,-0.0009264110772862453,0.010032100297761231,0.05244254248936633 -2014,70,0.02438233627155423,-0.00037261646428629055,-0.0003510888103986889,0.0064627825076427154,0.0039189815434355554,0.01714595017160484,0.004727444709560988,0.0010516366487788936,-0.0008887461825461265,0.010141344263540374,0.053174466289814495 -2014,90,0.028401997400075197,-0.00023074073488740346,-0.00012085066541769921,0.00703577416214876,0.004957700423880224,0.020302853498443744,0.0053496956743846295,0.0010516366487788936,-0.0005784989791044678,0.011261755740080513,0.05999710444304166 -2014,95,0.030488129273056983,-0.0002051255510315468,-4.4461956824046745e-05,0.007223038399246785,0.005591756267633365,0.021819823942151637,0.005513445225165597,0.0010516366487788936,-0.00044882716061422716,0.011917775670054379,0.06332994035051884 -2015,5,0.015716381541825832,-0.0010990940315919186,-0.001627099239152841,0.005139781222929659,0.002419501183895799,0.009181589269760683,0.002914758945897001,-0.003621625251809477,-0.0022785228202559724,0.008200938342840608,0.03656796886939404 -2015,10,0.017219481970742342,-0.0009738176036832256,-0.0013670454215343258,0.005342080920382496,0.0026090219022955486,0.010689921713910576,0.003067515631098881,-0.003621625251809477,-0.0020301505763944305,0.008573081818088383,0.03980832713556593 -2015,30,0.020773216911591588,-0.0007396156297271291,-0.0009123714701398582,0.0059147337587031725,0.003131998090439568,0.013854963677161752,0.0038312987534882847,-0.003621625251809477,-0.001566601865857241,0.009499992711389377,0.04717145369381865 -2015,33,0.021255204513296485,-0.0007134043372068,-0.0008667541948602055,0.006007709660762466,0.003201258716734163,0.014189967114751515,0.003945866115579697,-0.003621625251809477,-0.0015172646224049934,0.009609994421745678,0.04797904662238132 -2015,50,0.02354738592170179,-0.0005849514843141191,-0.0006462009537408965,0.006471304791270337,0.0036132523926978256,0.01594453932919957,0.004595081875877688,0.0011100609070443875,-0.0012742210378736795,0.01022105817488108,0.05214282419436288 -2015,67,0.025643277261406184,-0.0004451889090160081,-0.0004474112360271547,0.006967160978649243,0.004109920290116364,0.017784013971560785,0.005244297028935688,0.0011100609070443875,-0.0010399158387507305,0.010868145778922263,0.056195921041403626 -2015,70,0.026071244663745163,-0.00041450012302224397,-0.0004113368596402604,0.007050246693078304,0.0042177443625117834,0.018160594093890748,0.005358864998267092,0.0011100609070443875,-0.0009973393260332133,0.010992719170224331,0.05698697144577265 -2015,90,0.030404983451589943,-0.00024725626267882314,-0.00014813946131811797,0.007702038452589516,0.005410060979619629,0.021598991694105056,0.006084459101166024,0.0011100609070443875,-0.0006487989820801872,0.012276672374607944,0.06440197455077613 -2015,95,0.03264265040829778,-0.0002177755064993832,-6.238659713501553e-05,0.007913830344326174,0.006139805826738794,0.023253081903087332,0.006275404502238379,0.0011100609070443875,-0.0005053784381529596,0.013030587959679716,0.06801315501760971 -2016,5,0.016912954765185714,-0.001219826143022942,-0.0018423498385513302,0.005491570507528632,0.0024981089313096767,0.009524428241462672,0.0031879367867152556,-0.003812237107167871,-0.002550382338868841,0.008708167889258192,0.039134634968674954 -2016,10,0.018509603468328716,-0.0010717421615883647,-0.001550079897007605,0.005706596032539792,0.0027139009238294444,0.011149703465446869,0.003363645929142918,-0.003812237107167871,-0.0022733860887971112,0.009127588927959847,0.042614035987475464 -2016,30,0.022318789448216556,-0.0007995453929540825,-0.0010398239942153542,0.006343919502733911,0.00330164878448983,0.01452478514915077,0.004242191337661235,-0.003812237107167871,-0.0017494619959720586,0.010176060148961278,0.05049025502642723 -2016,33,0.022841295781731604,-0.000769888781925339,-0.0009886405938666991,0.006464991185716309,0.0033795502455573343,0.014887076513335686,0.004373973042671985,-0.003812237107167871,-0.00169485523975396,0.010299870822355619,0.05135354478166973 -2016,50,0.025292096804454923,-0.0006244268662389587,-0.000740622486948478,0.00700592016416411,0.0038426074502891224,0.016777542280263045,0.005120737049799548,0.0011684851653098816,-0.0014230485246813575,0.010991460309598904,0.055817821887596014 -2016,67,0.0275379775788635,-0.0004771123345260937,-0.0005168867414704918,0.007550217138935116,0.0044035502452923715,0.018758605778779528,0.005867500146067124,0.0011684851653098816,-0.0011604141419065944,0.011721690742112682,0.06018223155626336 -2016,70,0.0279940810225904,-0.0004470282100602375,-0.00047616210488311367,0.007653613958379672,0.004524608472138508,0.01916390302874836,0.005999282154697869,0.0011684851653098816,-0.0011131952518311648,0.011862393157687674,0.06103080721788565 -2016,90,0.032633948185667394,-0.00026403493399397354,-0.00018163701526720258,0.008377466242242925,0.005868953047673752,0.022861250938052333,0.006833900125799272,0.0011684851653098816,-0.0007252490807596664,0.013308439336590221,0.06900244218653147 -2016,95,0.03504258215539157,-0.00023054114847734634,-8.545844824401799e-05,0.008618651644536221,0.006689364590169538,0.02463839768636427,0.007053536402023853,0.0011684851653098816,-0.0005669789433448028,0.014160507012284664,0.07290864786557744 -2017,5,0.018276981655508277,-0.0013460586547667482,-0.002075084575150258,0.005844923620047668,0.002595781262919366,0.009979799367613841,0.003450978881203436,-0.004002848962526264,-0.00284287156706104,0.009239034666009767,0.04197084180553105 -2017,10,0.01990356672182679,-0.001173861852795499,-0.001749843284484782,0.006071716594630359,0.002838730476315961,0.011715831080621854,0.0036508364400215506,-0.004002848962526264,-0.002533018866131511,0.00970678271805621,0.04563267549765555 -2017,30,0.02384110929071903,-0.0008612338174853343,-0.001181684033774291,0.0068049823496569364,0.0034954007493050447,0.015273093049837105,0.0046501230196321405,-0.004002848962526264,-0.0019482157101515557,0.0108844152964714,0.05387477541378118 -2017,33,0.024393588401377203,-0.0008278140907436339,-0.0011246966497895823,0.006926477661089604,0.0035820578806790193,0.01565563358288651,0.004800015961030729,-0.004002848962526264,-0.001887524167213677,0.01102329190976125,0.054787027170273686 -2017,50,0.026925974796712396,-0.0006653865903912173,-0.0008479525042550973,0.007550634305956932,0.004100824845529121,0.017680497367820874,0.005649409902862726,0.0012269094235753757,-0.0015847501637753063,0.011799037613081806,0.059478640232547536 -2017,67,0.02925861574150622,-0.0005103834810947326,-0.0005974064397434927,0.00815617614114555,0.004731892235885605,0.01980982510096347,0.00649880323745473,0.0012269094235753757,-0.0012941340117272387,0.012615890828373864,0.06409911705438921 -2017,70,0.029735779774561523,-0.0004785463894014342,-0.0005520707221674148,0.008264364049421625,0.004866715798046608,0.02023664196883398,0.006648696178853319,0.0012269094235753757,-0.0012413324729856545,0.012774943910595403,0.0650003681721313 -2017,90,0.03455379238314927,-0.00028107678507297256,-0.00022438429811947808,0.009081961474005185,0.00637682816557733,0.02418160750623243,0.007598019355524368,0.0012269094235753757,-0.0008135316350416849,0.014395362329333803,0.07342316459265591 -2017,95,0.037088041694462295,-0.0002434224568320373,-0.00011653848492997686,0.00934210561879423,0.0072935921826265,0.026093023648830337,0.007847840924522016,0.0012269094235753757,-0.0006400891545101125,0.015351841051779785,0.07755117212128909 -2018,5,0.019457614418119194,-0.001480957299082607,-0.0023259123057718305,0.006199321697959695,0.002699771518269592,0.010438062898301506,0.0037038834076415653,-0.004193460817884657,-0.003152874290840538,0.00977991296685392,0.04465335996034718 -2018,10,0.02113399261180312,-0.0012801224651254356,-0.001965425014819086,0.006437652502486454,0.0029695189003676272,0.012282461537800373,0.003929085038394806,-0.004193460817884657,-0.0028093570613950537,0.010300752764268327,0.04851807561227002 -2018,30,0.025222960433363913,-0.00092443296782234,-0.0013343313626338082,0.0072497793690844605,0.0037007922728432593,0.01604222478198113,0.005055093192161008,-0.004193460817884657,-0.002159575172057202,0.011614002251188263,0.05714132690753439 -2018,33,0.025783810621500015,-0.0008871634852975847,-0.0012708378889178813,0.00739097378547239,0.00379876214507326,0.016450969485723926,0.005223993959795944,-0.004193460817884657,-0.0020932219063526623,0.011769594012134644,0.05810422124890619 -2018,50,0.028416015308350324,-0.0007070006017964701,-0.0009629526742376176,0.008074265593241873,0.004378691316210398,0.018613684552323793,0.006181100738687217,0.0012853336818408696,-0.0017566025020211479,0.012635023686463832,0.06303956649877579 -2018,67,0.030814581107720732,-0.0005439546849969872,-0.0006842985418240832,0.008768569633653583,0.005084412319829287,0.020894405164044873,0.007138207517578491,0.0012853336818408696,-0.0014355645113315815,0.013543196762985404,0.06792030990319464 -2018,70,0.03130902386717498,-0.0005109987107334973,-0.0006343563579192907,0.008898751817399285,0.005234739891482302,0.02135232440957043,0.007307108285213427,0.0012853336818408696,-0.0013775606327047286,0.013721553616350796,0.06886881287475961 -2018,90,0.036290139423310754,-0.000298381783702382,-0.00027114657206417765,0.009800528663987331,0.006922954260676125,0.025564826803900872,0.008376816183101318,0.0012853336818408696,-0.000906544019531274,0.015532193688354345,0.0777464368046617 -2018,95,0.03894352390542626,-0.00025641945169685497,-0.00014951849398614928,0.01009113721964401,0.007948973265286638,0.02759301760022636,0.00865831806973287,0.0012853336818408696,-0.0007171628936858264,0.01659984261233406,0.08211767980137645 -2019,5,0.020889609886333347,-0.0016196144662759808,-0.002591269597146516,0.006554764741264714,0.0027748737554905037,0.010678466799064089,0.003946651580509628,-0.004384072673243051,-0.003482621104722565,0.010301026704632298,0.047433300569068186 -2019,10,0.022688184261322023,-0.0013894754822809015,-0.002190032456984633,0.006804747435819778,0.003074995295969763,0.012670406996830625,0.004198393242362664,-0.004384072673243051,-0.003097820722491642,0.010878129869954244,0.05149968433136033 -2019,30,0.026870126623660326,-0.0009895903409420088,-0.00148722416285917,0.007699830723460962,0.0038903124876156344,0.016726657963758225,0.005457101248007845,-0.004384072673243051,-0.002373503903655719,0.012335480128522496,0.06057514481034402 -2019,33,0.02744318892918527,-0.0009484509803691894,-0.0014166321401667336,0.007863434927907439,0.004000115242707123,0.017165695687051608,0.0056459073425876236,-0.004384072673243051,-0.0023004380651506194,0.012509508414036724,0.061588632331279085 -2019,50,0.030161967355012892,-0.0007496737848040325,-0.001073793577158341,0.008624691535416293,0.004648237924412203,0.019496432995062013,0.006715809557273023,0.0013437579401063637,-0.001927630452858024,0.013470093007032578,0.06679690346022486 -2019,67,0.032605109449476005,-0.0005792197520348563,-0.0007634451997139277,0.009373927604817353,0.005436581496777165,0.02194202122637718,0.00778571116471843,0.0013437579401063637,-0.0015699274358197857,0.01447916333761679,0.07194598684160364 -2019,70,0.03310616276562214,-0.0005434972880718354,-0.0007080699544028983,0.00952051132490874,0.005605390163865472,0.022433460389131077,0.007974517259298208,0.0013437579401063637,-0.0015057925455553625,0.014677648769372461,0.07294823165595289 -2019,90,0.03823026496097445,-0.0003159499580689603,-0.00030364935634290155,0.01053316916053011,0.0074940027369196725,0.026945164456171615,0.009170290001290129,0.0013437579401063637,-0.0009874351370797248,0.01669588992690914,0.08232820399131717 -2019,95,0.04103183023780584,-0.00026953213307179936,-0.00016796951206777015,0.010855378778305261,0.008643334670687463,0.029119231602479173,0.009484967230416422,0.0013437579401063637,-0.0007794377593558743,0.017890550709057,0.0869547731138638 -2020,5,0.022461829744651912,-0.0017657467819200852,-0.002856729305768006,0.006911251459881993,0.002856028323520939,0.010946980593910752,0.004179282792567632,-0.004574684528601445,-0.0038150250654659006,0.01082721047010524,0.050329399590870835 -2020,10,0.024331520599126816,-0.0015033348063169364,-0.002415108668461029,0.0071726563665778795,0.003185865227534911,0.013076597723605622,0.0044587604446851324,-0.004574684528601445,-0.0033926157652614487,0.011462248805505594,0.054627837366279096 -2020,30,0.028677008110284806,-0.0010565653441728458,-0.0016419427826863235,0.008172654987376881,0.004085707985254412,0.017408298475614613,0.005856148401652638,-0.004574684528601445,-0.002591693400264225,0.013067703636917343,0.06418405668820569 -2020,33,0.029231246198192236,-0.0010113066798324737,-0.0015640174605075993,0.008338905719351978,0.004207702055393544,0.017877514470681578,0.006065756716645761,-0.004574684528601445,-0.0025108909383343833,0.013258401908416484,0.06525803446458245 -2020,50,0.03209006312862039,-0.0007937512850299362,-0.0011870583562278172,0.009191480764574976,0.00492140857578725,0.020366788429498864,0.007253536358620142,0.0014021821983718579,-0.0021013443253682356,0.014316887774512005,0.07074841992220166 -2020,67,0.03461658400669694,-0.0006132389629584348,-0.0008448532114243896,0.01001221950981497,0.00579337032138411,0.02297503272802412,0.008441316000594523,0.0014021821983718579,-0.0017087503317270766,0.015428784932352961,0.07618653243688658 -2020,70,0.03514277363307774,-0.0005768299119470978,-0.0007840366719827474,0.010164339313040902,0.00598134732346035,0.0234952870951869,0.00865092492282764,0.0014021821983718579,-0.0016379920604560406,0.015649770316309947,0.0772680883699399 -2020,90,0.040455387565121056,-0.0003337813162260671,-0.0003392262393349454,0.0112798809411224,0.008066835012315638,0.02828848588874774,0.009978443239050772,0.0014021821983718579,-0.00106961779425172,0.01787758055065412,0.08715557674392835 -2020,95,0.04341652686148882,-0.00028276050095687045,-0.00018927359128312874,0.011634826923926114,0.009340685508531664,0.03060093668019568,0.010327790835532641,0.0014021821983718579,-0.0008438112477958206,0.01919595004002638,0.09207529392373354 -2021,5,0.023959158636629584,-0.0019192947269440752,-0.0031402283928436622,0.007263769144305136,0.002938135827453613,0.011214624876905166,0.00440177765105557,-0.004765296383959838,-0.0041695242566444435,0.011361699853761443,0.05314676550630532 -2021,10,0.025920368883758784,-0.001621697286429502,-0.002655883243594408,0.0075345101028456525,0.0032990047661450176,0.013482434820035052,0.004710186948982208,-0.004765296383959838,-0.0037041502035404595,0.012058266523574277,0.057677059863930284 -2021,30,0.03036196506768465,-0.001124783481959804,-0.001806782814867976,0.008650560879296498,0.004291774172379923,0.018109709410272935,0.006252234045855391,-0.004765296383959838,-0.002821629784619732,0.01381782628834718,0.06770284393790094 -2021,33,0.030888064552098513,-0.001075614773746141,-0.001721081832760896,0.008811656926810657,0.0044269042738153365,0.01860921823628717,0.006483541474730364,-0.004765296383959838,-0.0027330088490096147,0.014029154274157496,0.06883188731291674 -2021,50,0.033887994688376784,-0.0008393677542075526,-0.0013067037002790487,0.009740592753403493,0.005213088259059483,0.021267762607080132,0.007794281142728576,0.001460606456637352,-0.0022837892054080287,0.015188786485836554,0.07460794835873687 -2021,67,0.03647912753596902,-0.0006465909173404516,-0.0009311041326483522,0.010652034161709747,0.006175185268403574,0.024038783041780306,0.009105021417966779,0.001460606456637352,-0.0018541737327744607,0.016408515891598648,0.08033783931878449 -2021,70,0.03700803319104016,-0.0006110219197111826,-0.0008641885267572875,0.010829516911399436,0.006382912070746877,0.024590904680766433,0.009336328846841751,0.001460606456637352,-0.0017765018701408292,0.016652849210544926,0.08146777526639566 -2021,90,0.042470855183899404,-0.0003518757856934662,-0.00037592182076147846,0.012040666702445696,0.00868551136617079,0.02967869100992015,0.01080127407466327,0.001460606456637352,-0.0011562569056958372,0.01910619739314543,0.09187529009701345 -2021,95,0.0455054032087326,-0.00029610455535206826,-0.00021050208259980994,0.012429485027358435,0.010095655723598631,0.032131448509297986,0.011186786456121558,0.001460606456637352,-0.000909469751974707,0.020560400438171665,0.09706555589261769 -2022,5,0.025162040144205096,-0.002079344764826609,-0.003421479446507874,0.00760853313194788,0.0030549372956407777,0.011697497218269862,0.004614135548733448,-0.004955908239318232,-0.004524487168463701,0.011931968155668894,0.055891549367638724 -2022,10,0.027227396227419376,-0.0017442985230217926,-0.002897328766351457,0.007911264619272742,0.003449765628738433,0.014052808943773351,0.004952673058873886,-0.004955908239318232,-0.004018830256333785,0.012688717917691569,0.060683382751502715 -2022,30,0.03192403551377356,-0.0011949527068915908,-0.0019799035865665296,0.009122193265253683,0.004526615799049789,0.018889914592020468,0.0066453587878561,-0.004955908239318232,-0.0030608033265286734,0.014601937576701973,0.07122791153815099 -2022,33,0.032485796831920745,-0.001141894558356165,-0.0018866977706612578,0.009303832292482673,0.004672793601641222,0.019414249716041273,0.006899261616841432,-0.004955908239318232,-0.0029646648349951348,0.01483371354660573,0.07242842814892297 -2022,50,0.035635832254961135,-0.0008856339034353005,-0.0014372230412113638,0.010294368586058837,0.005528688386425213,0.022212875742069125,0.008338045124078307,0.0015190307149028461,-0.002479282142269639,0.016094364553980223,0.07850534854870747 -2022,67,0.03837171431481838,-0.0006803965400729875,-0.0010317518442612226,0.011301864288683076,0.00657573702769643,0.02512694288942811,0.009776828024075188,0.0015190307149028461,-0.0020134354889484872,0.017421585057775496,0.08456388982004784 -2022,70,0.038927336835712194,-0.0006440585277030508,-0.0009575354683517569,0.011496801085242026,0.006802411023342333,0.025709413185193326,0.010030731460300512,0.0015190307149028461,-0.0019302039123272345,0.017686856847324822,0.08575272083301418 -2022,90,0.04470243528485298,-0.00037023343089803424,-0.00043095383061409484,0.012815525770329626,0.009308615135553165,0.031051443123100306,0.011638784329847598,0.0015190307149028461,-0.0012599886596450856,0.020355075264244574,0.09675760398946427 -2022,95,0.047912642657756806,-0.000309564255990595,-0.00024824000764227206,0.013239349717750357,0.010838061814929316,0.03361731462424146,0.012061955306663158,0.0015190307149028461,-0.0009954418125402078,0.021937550877039795,0.102260972741773 -2023,5,0.026122508000582457,-0.002245615955058975,-0.003731654811506305,0.007953413751065353,0.003182501371366335,0.012212714484027621,0.004816356181981271,-0.005146520094676625,-0.00491009668209741,0.012520514625587112,0.05844352522909138 -2023,10,0.02829435859322548,-0.0018712853202246477,-0.003166826669968182,0.008281962592868753,0.0036112149536304755,0.01466167428181194,0.005186217559880183,-0.005146520094676625,-0.004359900963551443,0.01334104131724788,0.06351063506657696 -2023,30,0.0333308554418385,-0.0012668789005904051,-0.0021705988556815258,0.009596157960082343,0.004787005938266549,0.0197225375192052,0.0070355214131747786,-0.005146520094676625,-0.003321159959539853,0.015421510648437378,0.07469213432495612 -2023,33,0.03395907536000013,-0.001209656760924919,-0.002070507745312444,0.009793288074168831,0.004946476622361047,0.0202840907660541,0.007312917142978967,-0.005146520094676625,-0.003216185288535699,0.01567228163800838,0.07596118827664743 -2023,50,0.03727996662631631,-0.0009333095309705988,-0.001582140179656685,0.010879026339654796,0.005882974728034897,0.02322293487861672,0.008884825873709368,0.00157745497316834,-0.002688923838366961,0.017041724749957524,0.08241780672422368 -2023,67,0.04021043843999505,-0.0007140090676077162,-0.0011420676556066452,0.01195347001878514,0.007023039260132887,0.026294257098134335,0.010456734604439768,0.00157745497316834,-0.002185736537161209,0.0184866428763875,0.08886318982009957 -2023,70,0.04082011836715039,-0.0006781632631192224,-0.0010608428761681536,0.012159518112557558,0.007274054294590744,0.026910913712990505,0.010734130334243955,0.00157745497316834,-0.0020962810122674698,0.018775464080970375,0.09011820115404197 -2023,90,0.04697065566927194,-0.0003888542598931308,-0.0004907301734493071,0.013601857587660592,0.01000731780290743,0.03252608408157433,0.012490970361163804,0.00157745497316834,-0.001371427634367393,0.02168755395944019,0.10183704561221445 -2023,95,0.05039154130965471,-0.0003231396431392484,-0.00029160514490890086,0.014064423691783375,0.011681164541312778,0.03522559979125855,0.012953296172677455,0.00157745497316834,-0.0010860139185556884,0.023416195613739164,0.10767355899202878 -2024,5,0.02738159355148673,-0.0024180877479132684,-0.004073482990953724,0.008298413698339054,0.0032933033464271014,0.01259278396804712,0.005008441676139013,-0.005337131950035019,-0.005327681140198352,0.013104649744306238,0.06116762918985158 -2024,10,0.029648088382557034,-0.002004104089802602,-0.003458407359371687,0.008653590247410732,0.003762304966964939,0.015187037234927885,0.0054108222737210745,-0.005337131950035019,-0.004727432832838101,0.013991510065268765,0.06652116637516746 -2024,30,0.034914576184004543,-0.0013411809755239153,-0.002373145296479166,0.010074298466208564,0.005050171884601694,0.020543201777598545,0.007422724350771397,-0.005337131950035019,-0.003594340749291636,0.01625613705168084,0.07831804540007069 -2024,33,0.03556322555616498,-0.0012791516883866325,-0.0022640071981221343,0.010287405069821945,0.005224774662007197,0.021142117842066554,0.00772450926762295,-0.005337131950035019,-0.003479755158745095,0.016529579497782682,0.07966313779612064 -2024,50,0.039046455791965126,-0.0009828240685452307,-0.0017323876021525279,0.011474085107895734,0.006251144666556854,0.02425380747084273,0.009434626427821719,0.0016358792314338341,-0.0029064707450773735,0.018017900690874195,0.08646932875295799 -2024,67,0.04210336752422154,-0.0007492186542682432,-0.0012526665900415388,0.012629508503249553,0.007502876269721214,0.02750732002015561,0.011144743588020487,0.0016358792314338341,-0.0023599544839483805,0.019590152335169465,0.09328564703932977 -2024,70,0.04273230403810739,-0.0007109202130286818,-0.001163894891583195,0.012844679593989891,0.0077781012651575235,0.028153102132063786,0.011446529719352025,0.0016358792314338341,-0.0022638927150394443,0.019905738539069406,0.09460983114899316 -2024,90,0.04917503378167749,-0.00040773826865207584,-0.0005426322508811551,0.014391095312496556,0.010783513977695466,0.03408260709053023,0.013357837026531826,0.0016358792314338341,-0.0014790659551717205,0.023091352124187132,0.10700086460660344 -2024,95,0.05274943021349608,-0.0003368307570648264,-0.00032509185395337775,0.014904704252775994,0.01261993436382475,0.03693034070040219,0.01386081148312442,0.0016358792314338341,-0.0011703556411479525,0.024987464649834968,0.11318163947013711 -2025,5,0.028945713505893946,-0.002595666961615853,-0.004405708999276705,0.00864353095125786,0.0034169176001407633,0.013039724343848284,0.005190388691386715,-0.0055277438053934124,-0.005734838838592864,0.013700195509594195,0.06430001080165476 -2025,10,0.031303293295204634,-0.0021406462600105547,-0.00374288696090032,0.009026146908728308,0.003923325654678939,0.015758297402028994,0.005626484771436594,-0.0055277438053934124,-0.005092263581156278,0.014657430310651186,0.0698860155012846 -2025,30,0.03674189683880655,-0.0014166551408776751,-0.0025739964123843695,0.010554346087511428,0.005319601421229337,0.021366115441564262,0.007806963957206,-0.0055277438053934124,-0.0038682610087335837,0.017101133357485726,0.08219308595203403 -2025,33,0.037396624958515166,-0.0013497708515442406,-0.0024566011939515238,0.010786183279442014,0.005508205638477217,0.02199407594102522,0.008134036169053407,-0.0055277438053934124,-0.0037451032646422535,0.017393481551213865,0.08360005437756975 -2025,50,0.04102588507346809,-0.0010329177072827232,-0.0018834034191033055,0.012074073568531591,0.006621383671029759,0.025265560152172625,0.009987443142975406,0.0016943034896993283,-0.0031266509966124878,0.019000100778191344,0.09070809073630871 -2025,67,0.04417977944761515,-0.0007846846162553266,-0.0013665385291369739,0.013311450890926243,0.007976112419968978,0.028680535814242066,0.0118408507241374,0.0016943034896993283,-0.0025399244264131143,0.02069891097543542,0.09785366368773468 -2025,70,0.04483112139999866,-0.0007451123117077521,-0.001271091391053784,0.013541667825357108,0.008277100445895729,0.029351376055171314,0.012167923543224797,0.0016943034896993283,-0.0024366031361870008,0.021040370844273855,0.09923762158526953 -2025,90,0.051500259149819615,-0.0004268853887213134,-0.0006004208342094483,0.015193516078961149,0.011534826968180185,0.03557081607850779,0.01423937825355174,0.0016943034896993283,-0.0015925399914297504,0.02448965511376321,0.11223878660075541 -2025,95,0.05521177869439125,-0.00035063751723373327,-0.00036505055074902284,0.015753416233553332,0.013525542842116175,0.03855243214059785,0.014784498809044084,0.0016943034896993283,-0.0012621135686392117,0.026546713060593863,0.11870358643819902 -2026,5,0.0306126052737236,-0.0027800528640501932,-0.004751231043697164,0.008993487559338794,0.0035603552923872558,0.013569240748412417,0.005362199960304343,-0.005718355660751806,-0.006167223906441955,0.014316810110252296,0.06768480678872313 -2026,10,0.033126756217330695,-0.00227903526148612,-0.004037598930529092,0.009395473717754971,0.00410699425253498,0.01640227978819877,0.005833206874746715,-0.005718355660751806,-0.005469349202203869,0.015345146590603273,0.07347181662138581 -2026,30,0.03867861106991768,-0.0014943280057354126,-0.0027854916981231697,0.01102741208090362,0.0056119181516224425,0.022238940532639525,0.008188243875918542,-0.005718355660751806,-0.004155268524897963,0.017974535674646363,0.08622563211499087 -2026,33,0.039303571989521384,-0.0014221447311013721,-0.002660157146232966,0.011285086002973913,0.005816402412408849,0.022888833324659227,0.008541499061750321,-0.005718355660751806,-0.00402218022985792,0.01829051139879086,0.08767564845608233 -2026,50,0.043062064683437346,-0.0010840740270819551,-0.0020438999777102496,0.012659350444052265,0.0070179658810031595,0.026311148460052336,0.010543279662610386,0.0017527277479648222,-0.003357561247489353,0.02001716356526148,0.09507797413701882 -2026,67,0.04630511018633843,-0.0008210431482880536,-0.001489517698528437,0.014001345614895275,0.008480816727785934,0.029880135090535838,0.012545060870710441,0.0017527277479648222,-0.002730227970265861,0.021845423608225594,0.10251990595516376 -2026,70,0.04696053416877985,-0.0007793723680646694,-0.001388119061018391,0.014261218094163851,0.008805422467808067,0.030587898817021255,0.012898316663782213,0.0017527277479648222,-0.002619505268373302,0.022213006398463672,0.10396899934878186 -2026,90,0.05378501462191343,-0.0004462956845277198,-0.0006686085210136812,0.016009114249662185,0.012320908474689314,0.03708025262189375,0.015135600114623471,0.0017527277479648222,-0.0017160998472677729,0.0259310312362812,0.11749933429953319 -2026,95,0.057656143619120116,-0.00036455996391276686,-0.00041390388209795265,0.01661035621985563,0.014472912852397,0.04018032168623528,0.015724359364916427,0.0017527277479648222,-0.0013613960237550942,0.028155647133440074,0.12425765356010846 -2027,5,0.032049993529915805,-0.002970216923225277,-0.005101637954232312,0.009351725562549883,0.0037262524084800304,0.014194148964886256,0.005523874572031908,-0.0059089675161102,-0.00660260793266107,0.014958977873184528,0.07091207003634023 -2027,10,0.034657034853100774,-0.002422099872682559,-0.0043396195104010386,0.009772646008371686,0.004313853579108364,0.017107236369556328,0.006030988583651439,-0.0059089675161102,-0.005855504391985912,0.016057114571306468,0.07689889287708372 -2027,30,0.04039714662730694,-0.0015736577170924553,-0.003005828908279911,0.011503823866558625,0.005924368917428583,0.02314408453719934,0.008566561070709062,-0.0059089675161102,-0.0044511690901145075,0.018877082299307686,0.09011412291205556 -2027,33,0.04103524702042341,-0.001496400231952831,-0.002870987803712096,0.011793064019308271,0.0061450921312532405,0.023826944046360387,0.008946896731233708,-0.0059089675161102,-0.004309095914158502,0.019218291797588896,0.09162608255687228 -2027,50,0.044923716929554935,-0.001135870785967232,-0.002212757477013204,0.013251194881470462,0.007437104605053273,0.0273808978499262,0.011102132343286702,0.0018111520062303163,-0.003599043104648151,0.021067301180244913,0.0993311838631609 -2027,67,0.04827913583256304,-0.0008573986431810631,-0.001621166831579854,0.01470125581394286,0.009006654839385337,0.031101521227479716,0.013257367955339694,0.0018111520062303163,-0.0029313621402437076,0.023022340705290422,0.10708169674378461 -2027,70,0.04893724760636687,-0.000813759609365415,-0.001514019031004913,0.014992059149537834,0.009356896584100436,0.03184244185220406,0.013637705437584318,0.0018111520062303163,-0.002813555070690372,0.02341716610912372,0.10859533935728938 -2027,90,0.05601834754496813,-0.00046596912788453667,-0.0007469869529511357,0.016844109369169916,0.0131318663876886,0.03859411960231704,0.016046498966307065,0.0018111520062303163,-0.0018505726277261662,0.027410525099442674,0.12270993265705454 -2027,95,0.06005831648036838,-0.0003785980971019272,-0.0004708595084785659,0.017481668737537953,0.01544130022565493,0.041823144118909195,0.01668039193626147,0.0018111520062303163,-0.0014728218292595627,0.029793933988554414,0.12977251662040687 -2028,5,0.033408685259521,-0.0031673686182016737,-0.005451820506690679,0.00971085243138538,0.003873536473047318,0.014701639440698218,0.005675411919329418,-0.006099579371468593,-0.0070369229091442505,0.015582640505428106,0.07392354102715161 -2028,10,0.03612608957737684,-0.002570254092846492,-0.004640622756781692,0.010149394304186477,0.004500496052679165,0.017712399747106422,0.006219829898150766,-0.006099579371468593,-0.0062433284399697414,0.01675914504162486,0.08015217210081522 -2028,30,0.042074904056824736,-0.001655643222260747,-0.0032212680335292148,0.011983582149150468,0.006222672662602829,0.023986134076942698,0.008941917363297537,-0.006099579371468593,-0.004745153290517227,0.01976797780989999,0.09390695559049336 -2028,33,0.0427438681513071,-0.0015716256795166312,-0.0030777056352081817,0.01231048586627434,0.006457720987492192,0.0246991254348714,0.009350230391983554,-0.006099579371468593,-0.004592763977337308,0.020134207849368847,0.09547105417634108 -2028,50,0.04676091373711824,-0.0011895176274134452,-0.0023755304086620697,0.013849606880786177,0.007841895399470623,0.028404552482739542,0.011664004221204316,0.0018695762644958106,-0.003835668227124924,0.02211013154182859,0.10351099665911509 -2028,67,0.05024072453379631,-0.0008948205864246692,-0.0017459597663150056,0.015411181488068994,0.009521493179027583,0.03227608364769181,0.013977779264905062,0.0018695762644958106,-0.0031258622256748604,0.024198359880305123,0.11159387997085744 -2028,70,0.05092207124792039,-0.0008480673723197439,-0.0016327787092533423,0.015715631612421885,0.009896344282016705,0.033045663130971244,0.014386092293591078,0.0018695762644958106,-0.0030005150304638667,0.024619433551030665,0.11316365576033784 -2028,90,0.058284762607142326,-0.00048590575100520216,-0.0008152440262990133,0.017712006021359517,0.01393546046495887,0.04006767204339159,0.016972076023082504,0.0018695762644958106,-0.001977562134551465,0.02889314125827249,0.12788828107894934 -2028,95,0.062442199276387694,-0.0003927518765344164,-0.0005196326877450546,0.0183673537866003,0.016406677484671436,0.04342178698615578,0.017652597737559197,0.0018695762644958106,-0.0015760712920586052,0.03144195999064555,0.13529940472528368 -2029,5,0.03474546246528625,-0.0033706377936143896,-0.0058006555192382635,0.010060277284853612,0.0040430034889617165,0.015296674819143609,0.005816812002196873,-0.0062901912268269865,-0.007476810193266582,0.01623021701667316,0.07702681212219699 -2029,10,0.037564346174150706,-0.002722559664607219,-0.004942989129534763,0.010525669015117556,0.004708625264443435,0.018388700883244756,0.006399728996524719,-0.0062901912268269865,-0.0066350209789451916,0.0174790373188972,0.08347609214304563 -2029,30,0.043736637733876704,-0.0017381843713274484,-0.003441172047731209,0.012466685519331102,0.0065401905206816,0.024860753590949816,0.009314312146443973,-0.0062901912268269865,-0.005044264142477145,0.020684634970112453,0.09773076984102154 -2029,33,0.044436250978708264,-0.001648864022527773,-0.003289320855503122,0.012827910280102984,0.006789248317037101,0.025592476665342367,0.009751499436759865,-0.0062901912268269865,-0.004883811999596553,0.0210735285712815,0.09936319058058767 -2029,50,0.048598378669470546,-0.0012441875112217944,-0.002545308110935011,0.014476398399953282,0.008261254364427435,0.029438357518155843,0.012228894081883244,0.0019280005227613048,-0.004081065020743988,0.023176561068061555,0.10770929354807679 -2029,67,0.0522026146966964,-0.00093293077377856,-0.0018794822726451838,0.01612861287054004,0.0100490317507842,0.033449095465417314,0.014706289941486608,0.0019280005227613048,-0.0033290145707723447,0.025396471341602982,0.11611108489113353 -2029,70,0.05291113131009042,-0.0008841444973859997,-0.001759358456850525,0.016442491592711866,0.010445915655388256,0.034245304436965184,0.015143477231802498,0.0019280005227613048,-0.0031957398912158745,0.02584241180246055,0.1177457351698977 -2029,90,0.06053424326106906,-0.0005061055579163961,-0.0008940920808595736,0.018594609593894924,0.014744297731523134,0.04151323672824736,0.01791233128494979,0.0019280005227613048,-0.002114585942053217,0.030386683192959733,0.13306309595130278 -2029,95,0.06487753656283021,-0.00040702138274383015,-0.0005783079643509623,0.01926740572965049,0.0173650468303256,0.04497676647329736,0.018640976768809606,0.0019280005227613048,-0.0016912369369977592,0.03309758953580035,0.14077747688914144 -2030,5,0.036162949780374765,-0.0035799174049325907,-0.006160411775863807,0.01039529129500745,0.004229848030599847,0.015953100400659264,0.00594807664235425,-0.00648080308218538,-0.007934564077701269,0.016899468665028807,0.08026417181414687 -2030,10,0.03910089820101857,-0.0028806998353080094,-0.005254026510852728,0.010902873406994605,0.004938245902737903,0.01912069526341057,0.0065706883077332676,-0.00648080308218538,-0.00703746518298362,0.018229543199080097,0.08696500570955164 -2030,30,0.04552150919437408,-0.0018233697824805524,-0.0036714890752408097,0.012976756953744346,0.006882647052835516,0.02577164408773331,0.009683745420148373,-0.00648080308218538,-0.00535654733503422,0.021627251817628545,0.10174127314865539 -2030,33,0.04624449930563569,-0.0017278049094222709,-0.0035122066093911317,0.013349995907898586,0.007143638178309476,0.026525258922874773,0.01015070386556264,-0.00648080308218538,-0.005186523741689443,0.02204416373849132,0.10343594695497133 -2030,50,0.05057711225375533,-0.0012986939420162424,-0.00272414525850408,0.015114544574565243,0.008707465347134909,0.030504254813309473,0.012796801925323486,0.001986424781026799,-0.0043385439139589435,0.024273029501642163,0.11211095212503507 -2030,67,0.05432450960762799,-0.0009710908696792163,-0.002021120849331145,0.016845508760140005,0.01060572233059261,0.0346599326995507,0.015442901199564315,0.001986424781026799,-0.003544596406156033,0.026631413101616885,0.120844030733942 -2030,70,0.05506224324926734,-0.0009198995865322089,-0.001895114979206271,0.0171802719669077,0.011024135379655655,0.035470841146122825,0.015909860252218574,0.001986424781026799,-0.003402712272385102,0.02710248294636718,0.12256770935314033 -2030,90,0.06298793413639069,-0.0005265684680845228,-0.0009790320788337446,0.019491917506614675,0.015596746616254766,0.0429888072979001,0.018867264751908922,0.001986424781026799,-0.0022617142178588223,0.03192311055166964,0.1384749762761448 -2030,95,0.06750539603978395,-0.0004214065351965728,-0.0006424947159425412,0.020181827385384613,0.018366981628691076,0.04657578071039851,0.01964553024449268,0.001986424781026799,-0.0018118336640045394,0.03480531212703184,0.1465144282518117 -2031,5,0.037826229160279036,-0.0037965423416515304,-0.0065560922983617645,0.010729750022030898,0.004381044289515503,0.01643083481771273,0.00606920341084158,-0.006671414937543774,-0.008426049611849461,0.017546719221683722,0.08358879565845949 -2031,10,0.040914000585675236,-0.0030413725585044927,-0.005594937448041063,0.01128100680564725,0.00513718615733998,0.019723982007010452,0.006732705402816443,-0.006671414937543774,-0.007471811456306133,0.01896185874870117,0.0905988243674451 -2031,30,0.04755822056904435,-0.001909409874502188,-0.003912811356017717,0.013493109186601297,0.007212466976255184,0.02664644526267768,0.010050216577170742,-0.006671414937543774,-0.005682729044848487,0.022578567684022256,0.10599142479903169 -2031,33,0.048349491405487055,-0.0018079252208816048,-0.0037441732538547254,0.013876742749661143,0.007492845836959899,0.02743108131563269,0.010547843678391882,-0.006671414937543774,-0.005501163589566882,0.02302105880670566,0.10774685541904257 -2031,50,0.0528163200840354,-0.0013544829481126478,-0.0029069916876349956,0.015760722791815188,0.009164846728377144,0.03158052189573757,0.013367727751525041,0.002044849039292293,-0.004600786018304288,0.025392909490646275,0.11679078279289404 -2031,67,0.05670924802422524,-0.0010096921401244355,-0.002159121898238373,0.01759640962744146,0.011196003215635563,0.0359001245702975,0.0161876118246582,0.002044849039292293,-0.003758524128895963,0.027903581124711148,0.12590997989818134 -2031,70,0.0574712466686964,-0.0009563295755320572,-0.0020253242473887993,0.01793963320623039,0.011643056878102364,0.03674605585429445,0.01668523892587934,0.002044849039292293,-0.0036072974573170963,0.028406298949551385,0.12771176250209573 -2031,90,0.06568857828378678,-0.0005472945982832961,-0.0010515647685772035,0.02040283570867252,0.016532452477053858,0.04455567227473961,0.019836875209479916,0.002044849039292293,-0.002396686822064816,0.03356265830561525,0.1443352069467135 -2031,95,0.07039166791588068,-0.00043590737415944217,-0.0006910605018246956,0.021110621572498756,0.019506304433982092,0.04828373028583879,0.020666252092208504,0.002044849039292293,-0.0019192058776352132,0.03664273377780277,0.1527252372653839 -2032,5,0.03940946148894727,-0.004018542325028425,-0.006942112765162614,0.011063653465923952,0.004534222810787064,0.016909766077258397,0.0061801935221388465,-0.006862026792902168,-0.008913960574773293,0.0181948503696453,0.08679311371618895 -2032,10,0.04261988486349583,-0.003206438302509692,-0.005927456328994543,0.011660070559416239,0.005337581568589294,0.020314990027530278,0.006885782710734213,-0.006862026792902168,-0.007900223015570735,0.019699900289090085,0.09408683517988203 -2032,30,0.04954865029454231,-0.0019971044639268236,-0.004150910846694606,0.014014232138005511,0.0075391415186106215,0.027493045023349264,0.010413727439231057,-0.006862026792902168,-0.006007046492454753,0.023526804967615424,0.11015538432937134 -2032,33,0.05037380069047213,-0.0018896645786623454,-0.003971915628954555,0.014408150805390658,0.00783902920379857,0.028310986364830117,0.010942918875247587,-0.006862026792902168,-0.005814560386317466,0.023997656449314116,0.11199473887162398 -2032,50,0.055045062370598315,-0.0014117713327394207,-0.0030864700692442917,0.016414933051703114,0.00961357226361611,0.032620203211276046,0.01394167156048791,0.002103273297557787,-0.004862308132976539,0.02651268222142478,0.12144660865154067 -2032,67,0.05910869871675968,-0.001048617165889959,-0.002295371366866905,0.018351049722085042,0.01177151681243781,0.03709678176296976,0.016940424245728232,0.002103273297557787,-0.003970816279695215,0.029174067428778677,0.13095911177156183 -2032,70,0.05990745967626571,-0.0009933953501885394,-0.002154608384199066,0.018709492626619535,0.012248199354444605,0.037970068720119085,0.017469615681744762,0.002103273297557787,-0.0038110893399414905,0.029705882915760394,0.13284749287116865 -2032,90,0.0684923472493887,-0.0005682838679791202,-0.0011240376944593395,0.02130445766544671,0.017443323070813692,0.04605966420969788,0.020821163872142757,0.002103273297557787,-0.0025308035303841362,0.03518563277101509,0.15021590044073044 -2032,95,0.07337488565444945,-0.0004505239398992361,-0.0007404542053400625,0.022054982207953936,0.020609954905658832,0.04992046259209315,0.02170314838435699,0.002103273297557787,-0.002027799630371243,0.03845824187017623,0.15899344802980162 -2033,5,0.04110730974376201,-0.004247962193952801,-0.007361815621250479,0.011399016600176236,0.004691219706787311,0.01738682636133627,0.006281047583486044,-0.007052638648260561,-0.00943136349670418,0.018859216721723908,0.09014133427884093 -2033,10,0.044441993572562934,-0.0033771744519088998,-0.0062836385116817545,0.012040062645790448,0.005546079807058072,0.0209224100381681,0.007029919017006594,-0.007052638648260561,-0.00835622739516852,0.020453103950159958,0.09771442863103201 -2033,30,0.051556621789932255,-0.0020872355075493725,-0.004404409263290126,0.014540123227795526,0.007889490412817309,0.028374740011227553,0.010774276184609344,-0.007052638648260561,-0.0063469318894656965,0.024507266874536394,0.11439956735425946 -2033,33,0.052442974631115795,-0.0019736313626766296,-0.004213583347529514,0.014944221423427878,0.008207502294803342,0.029227478168416143,0.01133592945612976,-0.007052638648260561,-0.006145777410866526,0.025009256824650737,0.11631750615522181 -2033,50,0.057242455553263426,-0.0014700121021238022,-0.0032777809992064434,0.01707217984387947,0.010097112776112468,0.033711305496059954,0.014518633352212094,0.002161697555823281,-0.005137240594459823,0.027674176251583398,0.12613981201688187 -2033,67,0.06142330537363887,-0.0010879223033857148,-0.0024399605258883343,0.019111055468285433,0.012396195998287703,0.03834936504890041,0.017701336033814442,0.002161697555823281,-0.004193936110988601,0.030498691066997596,0.1360174479556902 -2033,70,0.06222766167521476,-0.0010306276056875972,-0.0022909889528978564,0.019493411420102434,0.012900971865662315,0.039257700320747754,0.018262990519814844,0.002161697555823281,-0.004024634070134449,0.031061174353856993,0.13800368324669435 -2033,90,0.07107909433320164,-0.0005895362932787142,-0.0011986973819538972,0.022219434604311222,0.018434325985187818,0.04764735427773107,0.02182012952541746,0.002161697555823281,-0.0026736262841058236,0.03689817013083848,0.15604906257690035 -2033,95,0.07618597038760781,-0.0004652561518823589,-0.0007920007418099083,0.023025356077707865,0.021816157666908705,0.05164075325476741,0.022756219120938146,0.002161697555823281,-0.0021380435967245726,0.040385437887384586,0.16524432507130665 -2034,5,0.04279776202663779,-0.004482858939005914,-0.007781823524322295,0.01175490475760887,0.004864678903026521,0.01790342209135438,0.006371764380403185,-0.007243250503618954,-0.009958924881309662,0.01953740380322152,0.09358263727256595 -2034,10,0.04620047929883003,-0.003549955760057103,-0.006644424967199853,0.012420985087280999,0.0057688408691649075,0.021567289339448306,0.007165114321633585,-0.007243250503618954,-0.00881714441813846,0.0212242539412263,0.10137230558565281 -2034,30,0.053535928764641284,-0.0021796698777188043,-0.004662956750871976,0.015070787616294266,0.008252529632758607,0.029277496766308413,0.011131864027785585,-0.007243250503618954,-0.00669511622370654,0.02551016149665767,0.11864696939871658 -2034,33,0.05445576792657375,-0.002059131371563798,-0.004462246538598909,0.015484951907091307,0.008591402615323816,0.030160042445752187,0.011726876635518382,-0.007243250503618954,-0.006483457094557922,0.026041236706902452,0.12063508746384526 -2034,50,0.05939185217991471,-0.0015286919662973414,-0.003474006502702343,0.017717263813108983,0.010595070104249444,0.034806956748232885,0.015098611912217607,0.002220121814088775,-0.005417170497534393,0.028857471952426616,0.13080703517499065 -2034,67,0.06368707278966904,-0.0011289428007823406,-0.0025912129257513686,0.01988107668956438,0.013033688757577828,0.03960855592854199,0.018470350832356784,0.002220121814088775,-0.004423715014891886,0.03184775491806223,0.14105159250754748 -2034,70,0.06449869112223387,-0.0010676188425301771,-0.002434320339986982,0.020296641485515365,0.013570726872394849,0.040549742382542386,0.01906536344008958,0.002220121814088775,-0.0042445026060357926,0.03244541243278561,0.14311448759420808 -2034,90,0.07361143630743026,-0.0006110518943154772,-0.001280331062347439,0.02314776088787387,0.01944152375704305,0.04922783912074253,0.02283377581274398,0.002220121814088775,-0.002819149203813925,0.038633700610828624,0.16184825670478256 -2034,95,0.07893138219192623,-0.00048010405037560844,-0.000848963718706209,0.024010772036850092,0.02303499401186402,0.053351186035566246,0.023825461872991997,0.002220121814088775,-0.0022543924968082846,0.04232683246276467,0.17139897436433482 -2035,5,0.04458866343151779,-0.004723479053302583,-0.008207254712843445,0.012101204505363955,0.0050620646641987505,0.018502214144572912,0.006452345127370257,-0.007433862358977348,-0.010487332304182116,0.02024766952196733,0.09723327190786715 -2035,10,0.04806906186789274,-0.0037290664037249485,-0.007008554820005669,0.0128028351872064,0.006021117566281163,0.02227733013503834,0.007291369839095172,-0.007433862358977348,-0.009287559594349171,0.022028436092187346,0.1052985524992332 -2035,30,0.05564634737372398,-0.0022738375165821103,-0.0049316016538239185,0.015582250913284247,0.00864545742740843,0.030225656575544713,0.01148649096875978,-0.007433862358977348,-0.007054744965505225,0.026545366420864473,0.12309417500228144 -2035,33,0.05662917256951332,-0.0021461699295752044,-0.004719412226069668,0.016022277560418158,0.008999551895151569,0.031133735817649145,0.012115759198933469,-0.007433862358977348,-0.006830815251219895,0.027107561478736768,0.12515822069005 -2035,50,0.06166059042736888,-0.001588076588485039,-0.003679686641058843,0.018369087284697716,0.011120720124163036,0.03592923509535576,0.015681612098424388,0.002278546072354269,-0.005707787172123396,0.030076582675005615,0.135683382841538 -2035,67,0.06608502519726753,-0.0011693252039759912,-0.002751089870510535,0.02066111608260337,0.013698770206042016,0.04088544518542853,0.019247464997915305,0.002278546072354269,-0.004664675748122894,0.033232042484016976,0.14629183626647452 -2035,70,0.06692524189576507,-0.001104922964602338,-0.0025883826176194983,0.021111007527807684,0.014267590363307102,0.04186503314980122,0.019876734442568978,0.002278546072354269,-0.004476566189968361,0.03386119906925974,0.14840973929179543 -2035,90,0.07634396962348375,-0.0006328306429026505,-0.0013726005152523912,0.02408943933483075,0.020478921008015197,0.05079806979734758,0.023862097876202377,0.002278546072354269,-0.0029774030590660285,0.04040093448652256,0.16781887635627096 -2035,95,0.08172789417207241,-0.0004950675951121868,-0.0009180433377333582,0.02501123547874362,0.024269599371651247,0.055062722532775596,0.024910879069478517,0.002278546072354269,-0.0023842661662258897,0.04430873010148394,0.17774557653436077 -2036,5,0.046278266504406945,-0.004970868332169422,-0.008651544264422547,0.012447622907104891,0.005277833060418225,0.019144738794246944,0.00652278800266728,-0.007624474214335742,-0.011033134616616444,0.02097744398334889,0.1008158204347794 -2036,10,0.049888663046061994,-0.003909321738487211,-0.007388128297306894,0.01318561833892964,0.006289661473288244,0.023022175476551606,0.007408682533191393,-0.007624474214335742,-0.009771045070200213,0.022858218734679258,0.10916016313248304 -2036,30,0.05770264528095722,-0.002369072862844148,-0.005210716987529961,0.016096378262016414,0.009062692948639655,0.031211343518693282,0.01183815457857196,-0.007624474214335742,-0.007426839664411765,0.027611432743489057,0.12756053129287562 -2036,33,0.058738974080979826,-0.0022340290188006934,-0.004988674620074564,0.016570088481189932,0.00943545606242513,0.032143556148808865,0.012502575931895037,-0.007624474214335742,-0.0071937530220200765,0.028204360978921282,0.12969048970468539 -2036,50,0.06392293859273195,-0.0016484487266890835,-0.0038963127966831707,0.019027650258645664,0.011675556819815788,0.037082091354776,0.016267626623952525,0.002336970330619763,-0.006011898640609223,0.03133226610804628,0.14059555341470242 -2036,67,0.06850063041448594,-0.0012108589903326301,-0.0029195522807394436,0.021451170950720914,0.01440141527644898,0.042194160355413644,0.020032677316010016,0.002336970330619763,-0.004917117548749721,0.034660034248933796,0.15159214385765293 -2036,70,0.06935579880103468,-0.0011431598134287746,-0.0027514409540531316,0.021936509546979392,0.015001235114572287,0.04320704907605818,0.02069709745485311,0.002336970330619763,-0.004719488775823752,0.03532495079183546,0.15377418321919042 -2036,90,0.07912218357473612,-0.0006548725229335151,-0.0014734690421833064,0.02504446994518186,0.02156673174894204,0.05240627114178872,0.02490509814475262,0.002336970330619763,-0.0031451043838156057,0.04223163715370802,0.17393566314745892 -2036,95,0.08469668160974979,-0.000510146826358892,-0.0009943764351993136,0.026026743706706948,0.02557073347599907,0.05681342753106628,0.026012465852477764,0.002336970330619763,-0.002521952041825848,0.046360041450206065,0.18423531443546567 -2037,5,0.04801766709364952,-0.005224902648415103,-0.009084871617558464,0.012794157266150186,0.005508611074909772,0.01983549440240632,0.006583094828014234,-0.007815086069694135,-0.011578161594855524,0.02172264802063685,0.10450198558793128 -2037,10,0.05173892725855112,-0.004094895750288459,-0.007765618192399707,0.013576358096242967,0.006574275464032895,0.023805802496345483,0.0075170554401222086,-0.007815086069694135,-0.01025804635257221,0.023703113682941885,0.11311714625302234 -2037,30,0.059849970777332784,-0.002466278866038355,-0.005489686001243824,0.016614020524776993,0.009491127417871175,0.032198944209312436,0.01218685850066208,-0.007815086069694135,-0.007804254521347694,0.028692332456489056,0.13213431333843592 -2037,33,0.06092433436661959,-0.002324681367050681,-0.005259133215457419,0.017135113338564826,0.009882572693213805,0.03315131654218398,0.012887329263363057,-0.007815086069694135,-0.007557391825447662,0.02931599465736274,0.13432567762488787 -2037,50,0.06628422697484493,-0.0017103428875311223,-0.004112438914643867,0.019692949916256735,0.012233781370304873,0.03823162632389639,0.01685666156120195,0.0023953945888852573,-0.0063215024379016434,0.0326066175917952,0.14560906610387225 -2037,67,0.07103767713680863,-0.0012523182689002453,-0.003093846418459173,0.022251241293917007,0.015105890582213337,0.04348560869393702,0.02082599264456086,0.0023953945888852573,-0.00517417039845398,0.03609850201313867,0.15699735327570338 -2037,70,0.07191226171031594,-0.001182300348910318,-0.0029184978961679688,0.022771879307736477,0.015731246349506806,0.04452369680388331,0.021526465836221805,0.0023953945888852573,-0.004967839990622353,0.036799069476903354,0.15926093808349584 -2037,90,0.08203828536719084,-0.0006771775948082678,-0.0015790468377894946,0.026036522862114192,0.02264958201955629,0.053987786326719564,0.025962779047354678,0.0023953945888852573,-0.0033214704021400417,0.04405739329926782,0.1801370851084815 -2037,95,0.0877929651170969,-0.0005253417441157238,-0.001078106530514246,0.027057299417421576,0.02684104385119114,0.05851563619402687,0.02713022950886965,0.0023953945888852573,-0.0026665822330194386,0.0483997231342682,0.19080462910690338 -2038,5,0.04988910226151347,-0.005484431856842458,-0.009541138495754562,0.013140810279181332,0.005765501149101042,0.020561685824164403,0.00663326621065111,-0.008005697925052528,-0.012151641401591515,0.022493990644220568,0.10840312587396966 -2038,10,0.05371940412372351,-0.0042854777787283424,-0.008160913183596996,0.013973452686064194,0.006879500922908301,0.024642764846527252,0.007616488559887619,-0.008005697925052528,-0.010763611154778668,0.02457851805076255,0.11724816186690824 -2038,30,0.0620877438120544,-0.002565723622986796,-0.005786083912145999,0.017135180520262083,0.009947228301678138,0.03322668383998381,0.012532601520550152,-0.008005697925052528,-0.008196731268731265,0.029819490043223415,0.13686774502286544 -2038,33,0.0632053880661726,-0.0024162611136059656,-0.005542240049558544,0.017694491374777577,0.010366600845338579,0.034208598903773944,0.013270017978857539,-0.008005697925052528,-0.00793749002476855,0.03047217373926587,0.13912034031840168 -2038,50,0.06871137879043818,-0.0017730308952367904,-0.004346602766628663,0.02036498907622702,0.012831415457811258,0.03943033065494836,0.017448713266732703,0.0024538188471507514,-0.006643794505691847,0.03392643886343272,0.15077046389085405 -2038,67,0.0736145509146154,-0.001295131751393353,-0.003278874948689882,0.02306132980887315,0.015859286124403026,0.044825728321298025,0.021627408554607864,0.0024538188471507514,-0.005443589793218667,0.03759682457199751,0.16253289415560362 -2038,70,0.07453006547093392,-0.0012214753527707923,-0.003095744088705315,0.023594794813495867,0.01651791323023501,0.045899112190721444,0.022364826227395235,0.0024538188471507514,-0.005228913683685299,0.03833475812836317,0.16487836250072102 -2038,90,0.08495849503576755,-0.0006997458061800714,-0.001690492211118093,0.027044217822755828,0.023803503782428806,0.05561961081495751,0.027035133297128647,0.0024538188471507514,-0.003503984001748833,0.0459655696710443,0.18646719572405962 -2038,95,0.0908578693985939,-0.0005406523886494803,-0.001167329562410625,0.0281029026108875,0.02820076584245681,0.06027363876783633,0.028264162751774263,0.0024538188471507514,-0.002819679253239063,0.05053868234721464,0.19747306641594706 -2039,5,0.05170875493884087,-0.005755013868999319,-0.010012799313901083,0.01348758194619833,0.006003601885333668,0.021226037226472733,0.006673299114377945,-0.008196309780410922,-0.012735716017599086,0.02326041443211787,0.1121642891909892 -2039,10,0.055625197201967236,-0.004480197492777649,-0.008567985147345636,0.01437205925050343,0.007172939288454272,0.02541074586901202,0.0077069794635276564,-0.008196309780410922,-0.0112825758477947,0.025450933708472016,0.12127653234778135 -2039,30,0.06423676597177982,-0.002666851056231015,-0.00608728855069148,0.01765985542977559,0.010400775289813721,0.034240521121384614,0.012875382423756196,-0.008196309780410922,-0.008594748717861976,0.030951333534341353,0.1415115881194858 -2039,33,0.06540698349326848,-0.002509529426788763,-0.005834110836353241,0.018258529276616538,0.01084613749080982,0.03525170902392276,0.013650643292858472,-0.008196309780410922,-0.008325582875012068,0.0316386562353116,0.14383031582912992 -2039,50,0.07106097166389228,-0.001836303800081608,-0.00458020046247225,0.02105623069992321,0.013442078253410945,0.040622476943238214,0.018043784169504754,0.0025122431054162456,-0.006971584117994438,0.035262921559435854,0.15586369231733987 -2039,67,0.07609751064777374,-0.0013372091693703958,-0.00346354370270515,0.02388143110222635,0.016626816216083008,0.046176026870600434,0.022436925046151034,0.0025122431054162456,-0.005716337479005976,0.03911607645834046,0.16803237857187564 -2039,70,0.07702590553611517,-0.0012610482541712527,-0.0032709144048207383,0.024427671591249176,0.017325106363330532,0.047284640848779494,0.023212188344213278,0.0025122431054162456,-0.0054909522727912465,0.039897127388579895,0.17045652722373392 -2039,90,0.08775597297772765,-0.0007224410351389072,-0.001798350642462195,0.028066459733732493,0.02499475712077989,0.05728129183598523,0.0281221706099144,0.0025122431054162456,-0.0036828600527506936,0.047928257582291696,0.19279514346014387 -2039,95,0.09379095453023911,-0.0005560786794265656,-0.0012522495659749258,0.029163550590423224,0.029635160702623713,0.06205852509308929,0.029414270439111545,0.0025122431054162456,-0.0029611767236580274,0.052747789549695445,0.20418482971102778 -2040,5,0.05341216492652893,-0.006029568504692239,-0.010491365484582028,0.013834472267201182,0.006263201143271036,0.021920711778828584,0.006703194753674727,-0.008386921635769314,-0.013339712897219143,0.024048541813117153,0.11587968591196965 -2040,10,0.057453853510692716,-0.004680148110784817,-0.008984239218799353,0.01477217520939921,0.0074931806717487255,0.02621298065193321,0.007788528758282312,-0.008386921635769314,-0.01181121492590461,0.02634146231023454,0.1252935354042735 -2040,30,0.06638342068493366,-0.002768882801584217,-0.006395288858949789,0.01818804525331751,0.010879132134598787,0.03527914808639802,0.013215201210280211,-0.008386921635769314,-0.00900123718242972,0.03211045783301572,0.14619259317610725 -2040,33,0.06758051642775535,-0.002604142364944514,-0.006130079616420994,0.0188272297407632,0.011343211770938846,0.03630824395433379,0.014029201561925903,-0.008386921635769314,-0.008719390916589779,0.03282898767443779,0.148580426995786 -2040,50,0.07344489877447485,-0.0019011221603378431,-0.00482300048535943,0.021767109046048852,0.014073269331871174,0.04182533549073321,0.018641871840558134,0.0025706673636817392,-0.0073065163853304116,0.03662999644734114,0.1610357740820954 -2040,67,0.07867334348782896,-0.0013802958139568432,-0.0036562451394982136,0.024711370534349433,0.017420624567190183,0.047529947728279925,0.023254542119190362,0.0025706673636817392,-0.005996368582403055,0.04067081862574791,0.17362991690796153 -2040,70,0.07963788962960243,-0.0013006580564040562,-0.003454215267097794,0.025270512459692505,0.018155447088085842,0.048675079317318196,0.024068544899796023,0.0025706673636817392,-0.005759347623594703,0.04148559793222943,0.1761378921430067 -2040,90,0.09076310731247067,-0.0007453019539173981,-0.001914301433305012,0.02910325633552858,0.026204457033002337,0.05893166004570928,0.029223883698832026,0.0025706673636817392,-0.0038740582875809748,0.049919308044458564,0.19930773118648024 -2040,95,0.0970236962556839,-0.0005716206164469797,-0.0013446696189663362,0.030239246052710243,0.031081598037067167,0.06382442722830592,0.030580552570881492,0.0025706673636817392,-0.00311528259309986,0.05499008605088196,0.21110834474530535 -2041,5,0.055374606967717406,-0.006311838094745841,-0.010955003099669808,0.014181481242189885,0.006531960244343056,0.022648035114585206,0.006722954950261429,-0.008577533491127708,-0.01393284485135501,0.024849561972804666,0.11990795936452131 -2041,10,0.0595823346465826,-0.004882533271004225,-0.009387721337795796,0.015173803142912995,0.007820391761292901,0.027035011564782416,0.007861138873111555,-0.008577533491127708,-0.012337025337449094,0.02723999320863689,0.12959782274998408 -2041,30,0.06874976914301514,-0.0028732134873307134,-0.0066999350632245365,0.01871974999088785,0.011356365086718799,0.03630424088818112,0.01355205909460218,-0.008577533491127708,-0.009408554842457818,0.03328019033694312,0.15107509486668727 -2041,33,0.0699852975860238,-0.002701573766433509,-0.006422697050507239,0.01940059276721757,0.011845367251778203,0.03735804123705894,0.014405697643979767,-0.008577533491127708,-0.009113838471097245,0.03403099498409601,0.15353903792747928 -2041,50,0.0760206168025732,-0.0019660816192368664,-0.0050617062116604045,0.022485859464801704,0.014701916574388574,0.043008016996493634,0.01924297870885281,0.0026290916219472334,-0.0076431998915811854,0.03799718480864159,0.16636700797356815 -2041,67,0.08138798067718744,-0.001423507428026209,-0.0038503031501439704,0.02553881850342694,0.018204490455434125,0.04885942648254698,0.024080259773725857,0.0026290916219472334,-0.006278199294278348,0.04222179399453246,0.17935464718946328 -2041,70,0.08239443019151678,-0.001341581238441113,-0.0036396968271285688,0.026123308962737568,0.018969999483490436,0.05002901799854054,0.024933898323103443,0.0026290916219472334,-0.006031661201125979,0.043075731387053416,0.1819436334919984 -2041,90,0.0938172461502254,-0.000768473313600335,-0.0020306602277294352,0.030154599887659696,0.0273800827801823,0.06053927978171776,0.030340274992841504,0.0026290916219472334,-0.004067079121973961,0.05189174482759051,0.20584459444087047 -2041,95,0.10028731551915407,-0.0005872783205111163,-0.0014396606549741042,0.031329986301067064,0.03248230295055175,0.06553970698707563,0.0317630018602042,0.0026290916219472334,-0.0032710913309525473,0.05720531959254207,0.21799812991629494 -2042,5,0.05743482214212417,-0.006598751527299516,-0.01146534726327885,0.014528608871164441,0.006801803447229401,0.023354144954076835,0.0067325790968980614,-0.008768145346486102,-0.014562025360972045,0.02565959298307046,0.12396102771297579 -2042,10,0.06176610854119062,-0.00508975113029391,-0.009830166209446675,0.01557694305104479,0.008157265915172844,0.027836826030074965,0.007924808593535402,-0.008768145346486102,-0.01290007206779295,0.02817155374026426,0.13394650617082166 -2042,30,0.0711245068833232,-0.0029793948359125143,-0.007028799636699389,0.019254972461182695,0.011871439515565312,0.037365394635238844,0.013885957291202088,-0.008768145346486102,-0.009841856826345117,0.03449304419431856,0.15601562849304462 -2042,33,0.07238187172412873,-0.002798877017545065,-0.006737350346453778,0.019978615659298146,0.012382703530993633,0.03844715777351865,0.014780129110060096,-0.008768145346486102,-0.009534143760243653,0.035276876877051784,0.15854502917122412 -2042,50,0.07852220268324017,-0.0020320478428201808,-0.005317235322674757,0.023212489696666148,0.015384059384296848,0.04425867251857866,0.019847104774388787,0.0026875158802127275,-0.007998510533804543,0.03942582538691004,0.17174705106105392 -2042,67,0.08401127651929854,-0.0014675131381210094,-0.004053346484218025,0.026375720379201564,0.019067447126507583,0.05026670610184078,0.02491408043871748,0.0026875158802127275,-0.0065700280987655004,0.04385684272331372,0.18513518749378732 -2042,70,0.08507291446700692,-0.0013827181072751525,-0.0038330335666677375,0.026986069556472647,0.0198704717852758,0.05146627323000382,0.025808253472055474,0.0026875158802127275,-0.006315134997985541,0.04475557816889541,0.1878190651869837 -2042,90,0.09672996145784854,-0.0007914562649362885,-0.0021510228413549907,0.031220498130610237,0.02871448500977829,0.06226829679062697,0.031471346920902796,0.0026875158802127275,-0.004260922689396657,0.054013161032012806,0.21245960511828757 -2042,95,0.10342169575963155,-0.0006030516708185817,-0.0015341794748322218,0.03243577403217519,0.03407371029578158,0.06739641249220128,0.03296163288083948,0.0026875158802127275,-0.003429972274130922,0.059592505434713956,0.2250219108476253 -2043,5,0.059531846390664576,-0.006893176262112937,-0.011992183592319372,0.014875852457443354,0.0070859949300719,0.02406487827494364,0.006732064764624655,-0.008958757201844495,-0.015221131828550588,0.026497241772494403,0.12812706870468296 -2043,10,0.06396708277814092,-0.005302909327663612,-0.01029024412941055,0.01597340700755154,0.008503872808153044,0.02865272150756879,0.007979535490593883,-0.008958757201844495,-0.013479637432001472,0.02911837227782579,0.1384057032936141 -2043,30,0.07354834825024008,-0.003087357608586931,-0.007365647772864269,0.019793709845505957,0.012400451471117348,0.03843601108504406,0.014216893371119964,-0.008958757201844495,-0.01028587328567051,0.03573000502481234,0.16107639511012592 -2043,33,0.0748306676030159,-0.0029001211405809387,-0.00706339131107931,0.02056130111368643,0.012940868149595422,0.03955719900380101,0.01515249596016689,-0.008958757201844495,-0.009963243343259135,0.036552743434949964,0.16367361470197814 -2043,50,0.0811168089237064,-0.0020996411878264442,-0.005581385847223541,0.023946992001157796,0.016091214576592475,0.04552562217121668,0.020454247608206095,0.0027459401384782216,-0.008363122023307884,0.04089447238401328,0.1772544924767978 -2043,67,0.08668001669570803,-0.0015119259836640518,-0.004263116189556592,0.027222073342977215,0.019965168917049494,0.05170020082251417,0.025756001685205265,0.0027459401384782216,-0.006874587204723792,0.04553055633356436,0.19104316705324786 -2043,70,0.08780434921234846,-0.0014235455174861978,-0.004031666982749258,0.02787116058979153,0.020807266999806454,0.05293525361248669,0.026691605488732176,0.0027459401384782216,-0.0066062824049289105,0.046474954016676354,0.1937889088091912 -2043,90,0.09971938624605536,-0.0008147418776313499,-0.0022755912462740046,0.03230094848421874,0.030100113415807705,0.06402767053713568,0.03261709462509597,0.0027459401384782216,-0.004459021402372433,0.05620187514573773,0.21919729693879617 -2043,95,0.10653746793419122,-0.0006189406673693761,-0.0016279509919474733,0.03355660654935311,0.03574438628459052,0.0692849008400952,0.0341764334879875,0.0027459401384782216,-0.003592738892881597,0.06206544765424309,0.2321780037043488 -2044,5,0.06157500464916229,-0.0071973472521404324,-0.012534411471226475,0.015223217394389615,0.007383993948112004,0.024790534450657868,0.006721414382401178,-0.00914936905720289,-0.01588949989578713,0.0273526515365496,0.13227485504112105 -2044,10,0.06612029255107045,-0.005517499795772006,-0.010763822816263032,0.016354401702402283,0.008872238833944002,0.02951331593176002,0.008025322600486958,-0.00914936905720289,-0.014072873680909113,0.030092500898542058,0.14284500258510927 -2044,30,0.0759904383301735,-0.0031971428865173734,-0.007716258700630015,0.020335962143857633,0.012960127355454782,0.03953750169953819,0.014544864905395843,-0.00914936905720289,-0.010739185482880224,0.037001902240362754,0.16623346418372936 -2044,33,0.0772887140147388,-0.003001785255228303,-0.007401835086147267,0.02114864643370092,0.0135257827082634,0.04069582951479324,0.015522795765340183,-0.00914936905720289,-0.010406619797038295,0.037864207787351965,0.16887097885622482 -2044,50,0.08377601323127747,-0.002167690563265106,-0.005854255263075067,0.024689368958438117,0.01683232955346334,0.04681990063207313,0.02106440721030473,0.0028043643967437157,-0.008739234847711542,0.0424028509036463,0.18291719228833803 -2044,67,0.0894769048690796,-0.001556214455575537,-0.004482598838625135,0.02807787739475389,0.020903643992659152,0.05316299512665539,0.026606018655269275,0.0028043643967437157,-0.0071839955435530935,0.047255184551427194,0.19715404110045315 -2044,70,0.09064545041322708,-0.0014652352453685318,-0.00423934478094578,0.028767054813289526,0.021791660002894668,0.05442654698909257,0.027583949515213615,0.0028043643967437157,-0.006906342782924417,0.04824868093093454,0.1999758042858717 -2044,90,0.10286182485222817,-0.0008376437799566585,-0.002406830122742765,0.03339594836832373,0.03154395489937044,0.0658123988608601,0.03377751567646104,0.0028043643967437157,-0.004666306922988926,0.05845676889049254,0.22619885940912968 -2044,95,0.10993981984779237,-0.0006349453504302972,-0.0017268579003232708,0.03469248654928233,0.037473615854129415,0.0711851177825185,0.035407401252688264,0.0028043643967437157,-0.003761786320325868,0.06460929854915357,0.23968662750636935 -2045,5,0.063308828471601,-0.007499175238079949,-0.013072587009690221,0.015570695591958736,0.007719180162696595,0.02561631034746814,0.0067006267357476446,-0.009339980912561283,-0.01655399926389213,0.028247478657503333,0.13624956161123963 -2045,10,0.06802708728432658,-0.005739760134438928,-0.011239408325240601,0.016735864300804523,0.00928922633072092,0.030437959200510956,0.008062168708734644,-0.009339980912561283,-0.014666398922250091,0.031107315899780552,0.14713666306375384 -2045,30,0.07821987506896257,-0.0033087772511371737,-0.008072285655092859,0.02088172935623773,0.013559724577346438,0.04068621501403149,0.014869877966429645,-0.009339980912561283,-0.011201485588519598,0.03832324938094074,0.17125516286053627 -2045,33,0.07958946861326695,-0.003104405400925177,-0.007744079010105841,0.021740654316023116,0.014145723412653537,0.04187540856978192,0.015891034597979893,-0.009339980912561283,-0.010860590577083766,0.03921110112665246,0.17397334890246782 -2045,50,0.08627651039287448,-0.002236456148690568,-0.006137229651351821,0.02543962572883003,0.01760756438568946,0.04813867281101486,0.021677586009644662,0.00286278865500921,-0.009125157166323866,0.043953462560495024,0.18846854136145008 -2045,67,0.0921985680654645,-0.0016025569448050061,-0.004711509871451826,0.028943132534531592,0.021866482840293303,0.05463292189169807,0.027464138635789417,0.00286278865500921,-0.007514047738879292,0.04901690831209944,0.2031647442531879 -2045,70,0.09339271468296646,-0.0015071035342677584,-0.0044586622037579285,0.029673455307898465,0.022795741770547263,0.05592540784577081,0.028485297696299632,0.00286278865500921,-0.007219794007522235,0.050048202077264986,0.20608371747278642 -2045,90,0.10607837320119143,-0.0008612611427455701,-0.0025484169368593344,0.034505497782925214,0.03299490527016283,0.06756774927549938,0.03495262221979788,0.00286278865500921,-0.004889165088838859,0.0607185729337924,0.23317951044005955 -2045,95,0.11333468953818082,-0.0006510657602681429,-0.0018352693614170847,0.03584341133528134,0.03920149617961348,0.07307050962001023,0.03665455074870161,0.00286278865500921,-0.003949872624152731,0.0671402479667192,0.24711064318057047 -2046,5,0.06494141908735036,-0.007808977599325611,-0.013614650900494308,0.015918295140195205,0.008059896790111296,0.026415458374424435,0.006669703039144042,-0.009530592767919677,-0.017236204305669023,0.02914149255907639,0.140074655874372 -2046,10,0.06984261831790209,-0.0059625218418276294,-0.011717920895061401,0.01711778634666998,0.009693509860516106,0.03135064043149426,0.00809007381533694,-0.009530592767919677,-0.015271492954477588,0.03213065868724772,0.15131259362856123 -2046,30,0.08038067979365587,-0.0034220074636213305,-0.008428396728572578,0.02143101148264624,0.014162052853766422,0.04181703046704914,0.015191930125261401,-0.009530592767919677,-0.011672091451438155,0.039646658639690226,0.17619730428739389 -2046,33,0.08179251783490181,-0.0032101108396122313,-0.008089707187621907,0.02233732206397152,0.014768682298282295,0.04303825042047473,0.016257208814646068,-0.009530592767919677,-0.011318517070244538,0.040573526649744805,0.17901835041262604 -2046,50,0.08871206049844622,-0.0023061483671735048,-0.006421612896462634,0.026197751991687685,0.018390141319130054,0.04944493531255448,0.022293784006225895,0.002921212913274704,-0.009515896549691344,0.04551207526774771,0.19397571279804507 -2046,67,0.0948920760191977,-0.0016489339247271512,-0.004942691424346552,0.029817838762310315,0.022839719802846395,0.056097262525898105,0.02833036162676569,0.002921212913274704,-0.007841068234926312,0.05079489119315257,0.20916693512581552 -2046,70,0.09609432164132595,-0.001549436862608667,-0.004677443423516482,0.03059035668025535,0.023812458365830146,0.05741645018373025,0.029395640316150357,0.002921212913274704,-0.007534552675521874,0.051873456652091886,0.21218801704796902 -2046,90,0.10922748410403728,-0.0008843783919056012,-0.0026937762277421578,0.035629601888346116,0.034472385661458875,0.06933048234622466,0.036142404539266586,0.002921212913274704,-0.005115067033545364,0.06301088534408805,0.24022816375996467 -2046,95,0.11679043736681342,-0.0006673018163493174,-0.001944717171970483,0.037009383604031665,0.04095517228123024,0.07495735585958273,0.03791786740226771,0.002921212913274704,-0.0041351780982306265,0.06971943354140894,0.25461578282689395 -2047,5,0.06667391516938806,-0.008126560157755819,-0.014186486014475594,0.016254712877668536,0.008370318887079682,0.027161470532031565,0.006628642685350377,-0.00972120462327807,-0.0179420401354347,0.030028999290897276,0.1439610970291489 -2047,10,0.07173557106435298,-0.006192495428779252,-0.012215135600261736,0.017500167839998654,0.010079891676495744,0.03220538148793322,0.00810903852753384,-0.00972120462327807,-0.015899047771710067,0.03314688055504004,0.15559028001638608 -2047,30,0.08274370233491063,-0.003535600733658931,-0.008798124609266003,0.0219854159153849,0.014757333598289988,0.042933796180135694,0.015511018952931143,-0.00972120462327807,-0.012154146416622416,0.0409779187390641,0.18137830414254874 -2047,33,0.08423035481572151,-0.0033167660042317027,-0.008443546082350624,0.02293864967754613,0.015392326691024593,0.04418771516699766,0.01662131598637874,-0.00972120462327807,-0.011782389422337825,0.041943068388329646,0.1843038922958905 -2047,50,0.09148688574582338,-0.0023777719203454174,-0.006706556166331633,0.026963758067656933,0.019182418246595046,0.05075754862615506,0.022912998771088457,0.002979637171540198,-0.009911115225269843,0.047094642071533716,0.1998055422924383 -2047,67,0.09794121110588312,-0.0016957868286942856,-0.005170973360428985,0.03070199889678616,0.023839240705022392,0.05757090205397105,0.029204680341318186,0.002979637171540198,-0.008169670953668117,0.052613021424892756,0.21556146036260332 -2047,70,0.09916488838195801,-0.0015923300571515763,-0.004895540324245338,0.03152398704267259,0.02485642141762538,0.05891750677405808,0.03031497980372575,0.002979637171540198,-0.007851933874154393,0.05373375325053753,0.21870364972233997 -2047,90,0.1128905192926526,-0.0009064389597573325,-0.002829279015968859,0.036760547318928444,0.03602200955591876,0.07110604646399678,0.037346860205907204,0.002979637171540198,-0.005333904613473146,0.06539238409121689,0.2477863823497894 -2047,95,0.12066766674220562,-0.000683653478407023,-0.0020474073655434135,0.03819039796217028,0.04281200948207446,0.07689966026564347,0.03919735607130652,0.002979637171540198,-0.004309663197832693,0.07241604010570449,0.2627398709672557 -2048,5,0.06887023467570542,-0.008451066423983541,-0.01478921134677275,0.016589376664832775,0.008685292085790983,0.02787919512283666,0.006577446281606641,-0.009911816478636464,-0.018675654185264855,0.030926333832027315,0.14825952460536201 -2048,10,0.07410143602788448,-0.006425187805085378,-0.012734414381256998,0.017883017236878823,0.010476414874946117,0.03305812377885377,0.008119062238085352,-0.009911816478636464,-0.016551324178317787,0.034182778464459676,0.16028583552382875 -2048,30,0.08545550164282321,-0.00365240150775727,-0.00918152140231197,0.022554528971800554,0.015376895065270011,0.04407143441254088,0.01582714687839884,-0.009911816478636464,-0.012651892533633084,0.04234871787048268,0.18690475751688007 -2048,33,0.08699471434950828,-0.0034243297195135757,-0.008811913910488304,0.023544642550109945,0.016039955720723188,0.045353418791444985,0.016983359756617862,-0.009911816478636464,-0.012263552781462636,0.04334895081650743,0.18992623690352967 -2048,50,0.09447233095765113,-0.0024491571560585914,-0.007003885773673957,0.02771468558442879,0.020014929956481804,0.05210172570086972,0.023535230304232345,0.0030380614298056922,-0.010314505935374817,0.04872620700375126,0.20594042555765985 -2048,67,0.10113740978389978,-0.0017431806329003194,-0.005405508334848357,0.03159560730056693,0.024902597516975666,0.05908938256250037,0.030087102066326817,0.0030380614298056922,-0.008504266793002285,0.05448568949129133,0.22223641784860598 -2048,70,0.10239579677581788,-0.0016348900974677589,-0.005117778824489208,0.03247429663218947,0.025964306572475566,0.06046284726208795,0.03124331615902582,0.0030380614298056922,-0.008176204278646964,0.05565839346366532,0.22549003685727512 -2048,90,0.11657143745273352,-0.000929799154615309,-0.002967033944051418,0.03790128943559612,0.03767503161673711,0.07297821099611544,0.038565996506599635,0.0030380614298056922,-0.0055535192158502064,0.067885606836332,0.2555774772013133 -2048,95,0.12458810603097081,-0.0007001209075084509,-0.0021475351520480346,0.0393864598030602,0.04479721452301207,0.07889077623544516,0.04049301675581802,0.0030380614298056922,-0.004485418733031043,0.07524701790231204,0.2710432787307393 -2049,5,0.07123538257181644,-0.008781858547477763,-0.01540661390493137,0.016923654290632226,0.009029664045920859,0.0286566383442901,0.006516110791712873,-0.010102428333994856,-0.0194420907315165,0.03186482222673824,0.1528393220144489 -2049,10,0.07660580131709575,-0.0066622543731609364,-0.013278115515344503,0.018266328899918305,0.010909216416879988,0.033966851403451154,0.00812014433975148,-0.010102428333994856,-0.01722590007948909,0.035262893339816026,0.165173530344919 -2049,30,0.08822911325097084,-0.003770914902978932,-0.009581894908007585,0.023127654690283217,0.016042225230399467,0.04525500151642859,0.016140315116144475,-0.010102428333994856,-0.013171774495538443,0.0437731848126236,0.1925436897143679 -2049,33,0.08979466565847398,-0.003535523758597032,-0.009195502294655428,0.024155295288299967,0.016736970532264212,0.04656488285035562,0.017343340125363434,-0.010102428333994856,-0.01276712697348167,0.044812638024212856,0.19563479684562984 -2049,50,0.09742017492130399,-0.0025224690531653548,-0.007314329102198652,0.028470648601882677,0.02090763114073792,0.05350148172765726,0.024160483463577503,0.003096485688071186,-0.01073766313148434,0.05041585421211173,0.21213463525855913 -2049,67,0.10424803258925677,-0.0017902994598043558,-0.005653910952057735,0.03249866961104483,0.026029876628291197,0.06066533061740882,0.030977626801791575,0.003096485688071186,-0.00885676988373357,0.056442930704833735,0.22892209296942373 -2049,70,0.10555521680787205,-0.0016794566004185428,-0.005355537912445962,0.03343558996905934,0.027143243940458577,0.06206689770951389,0.0321806542399705,0.003096485688071186,-0.008515344500465167,0.05766624572169755,0.2322809838068937 -2049,90,0.1200382967531681,-0.0009533475305060683,-0.003114831103471016,0.0390561082296763,0.03942710429364024,0.07488115899181076,0.03979981344134389,0.003096485688071186,-0.005789638347946937,0.07047060796456375,0.26333542313938346 -2049,95,0.12832906142473222,-0.0007167040633868034,-0.002262376357709586,0.04059756912670142,0.04690190150356718,0.08095494783891984,0.04180485431372216,0.003096485688071186,-0.004676006745919877,0.07818691815818281,0.2792747806723238 -2050,5,0.07358539750427007,-0.009119238136407982,-0.016013302949898552,0.01725754293637079,0.00938340591742671,0.029450581599631355,0.0064446416808290035,-0.01029304018935325,-0.020196829380207143,0.03281447670732721,0.15745254934431538 -2050,10,0.07913668985366822,-0.0069037805820892344,-0.013813906317207518,0.018650100010421004,0.011350250880513257,0.03487806537502175,0.00811228847597218,-0.01029304018935325,-0.01789006116023043,0.036353209236326685,0.17012603963593986 -2050,30,0.09110582544207572,-0.0038911383436884073,-0.009980494876908419,0.023704790374151397,0.01671115681433593,0.04642514321154701,0.016450520022728097,-0.01029304018935325,-0.013687785976819756,0.04519967033593223,0.19833427678954302 -2050,33,0.09270898091197015,-0.003648843866434217,-0.009579975163974939,0.024770610588797693,0.01743665472102044,0.047780757559007576,0.017701254663655488,-0.01029304018935325,-0.013267039175533894,0.046285490302906324,0.20149826962791237 -2050,50,0.10056345323696732,-0.0025955480077435376,-0.0076258127582760436,0.02923351742476529,0.021791471237399145,0.054874473765083524,0.024788753391203993,0.00315490994633668,-0.011161764714553706,0.052111779541078596,0.2185057992337891 -2050,67,0.10757920366922023,-0.0018380577690541632,-0.005904314472829293,0.03341118300952375,0.027141949681397725,0.062197002984726586,0.03187624726083256,0.00315490994633668,-0.009210592763395779,0.05840346147837544,0.23581898439235735 -2050,70,0.10894300762563944,-0.001722941753847489,-0.005593744084608699,0.03440785931279783,0.028316986551701614,0.06363445551323857,0.033126984330719915,0.00315490994633668,-0.00885661907408224,0.059672091691058554,0.23928155283274427 -2050,90,0.12384591712355614,-0.0009772249300420528,-0.0032654131927898245,0.04022499561112449,0.04115348861773636,0.07674006586711746,0.041048306152220014,0.00315490994633668,-0.006027798555614823,0.07304544897384282,0.2713678259506803 -2050,95,0.13244431074410676,-0.0007334027849748891,-0.0023782410559067537,0.041823725933093935,0.04896720896720336,0.08294792321336938,0.04313286388709899,0.00315490994633668,-0.004871455917341361,0.08110190877289584,0.2878203728454165 -2051,5,0.07589621214568615,-0.009462265123573085,-0.01666294579675525,0.017591053876832845,0.009762365025222612,0.030267232716033224,0.006363033483795103,-0.010483652044711644,-0.020984975424356993,0.03380119961911283,0.16209454755041403 -2051,10,0.08160477689206601,-0.007148560900010406,-0.014378043744541808,0.019038870697983153,0.01181832666973686,0.035841019443954854,0.008095489181587524,-0.010483652044711644,-0.018587295182302392,0.037482398813521334,0.1751561754355142 -2051,30,0.09393646319881081,-0.004013800429037317,-0.010399036253334996,0.02429349220482798,0.0174249685503879,0.04764799062693547,0.016757764027109674,-0.010483652044711644,-0.014227648560390313,0.04669232317151157,0.20415137314047616 -2051,33,0.09556010751128197,-0.003761306465794248,-0.00998300284080673,0.025384785218013278,0.01818490043614253,0.049034370186267065,0.018057105800453988,-0.010483652044711644,-0.013789378526923675,0.047815890735023445,0.20741329810471265 -2051,50,0.10362286914885044,-0.0026692186346167486,-0.007953579336996405,0.03000329487177272,0.022740029326377947,0.05629794849149533,0.025420037658151838,0.003213334204602174,-0.011603825333982624,0.05388745146999801,0.22491662252160027 -2051,67,0.11079121820909536,-0.0018864700732751825,-0.006166783891405395,0.03433419312283411,0.028344277928885084,0.06378788024628909,0.032782973159289644,0.003213334204602174,-0.009580957672226291,0.06044056437034742,0.2427525378706524 -2051,70,0.11223437654078006,-0.001767397859918492,-0.00584513362766803,0.03539110982372785,0.02957364258241062,0.06526736671163001,0.03408231614711394,0.003213334204602174,-0.009213283271640806,0.061766851470202874,0.24632998330680778 -2051,90,0.12752474281042814,-0.0010005858524498492,-0.0034245370843087567,0.04140795697330369,0.0430133796252487,0.07868398231642246,0.04231147706818799,0.003213334204602174,-0.006277227570933783,0.07574627073060974,0.27938575897806495 -2051,95,0.13631402621269226,-0.0007502172333398994,-0.002501517645683182,0.04306492482887475,0.05120657286706822,0.08504933631164294,0.04447704547594853,0.003213334204602174,-0.005068482304026478,0.08418241532770794,0.2963791689472924 -2052,5,0.07832714655697345,-0.009811158657921978,-0.0173070380727163,0.017924173018537926,0.010156362010477578,0.03108703945827559,0.006271288022331147,-0.010674263900070037,-0.021776288596088347,0.03480057107275453,0.16680866657024376 -2052,10,0.08411735251396894,-0.0073990543457779666,-0.014935159951145142,0.019436523351478913,0.012298817030875688,0.036781976012793996,0.0080697470638375,-0.010674263900070037,-0.019287499046615135,0.038626949351466704,0.18023622263257216 -2052,30,0.09667453999221325,-0.004138031245261875,-0.010820594630814409,0.02489114016509822,0.0181515539426565,0.04886290761614639,0.017062044700329234,-0.010674263900070037,-0.014766973675922685,0.04820068746647985,0.20988717158864248 -2052,33,0.09832641972899436,-0.00387607451654297,-0.010391827868318175,0.025996425358095116,0.018943221098648797,0.05028716279822218,0.01841088989231899,-0.010674263900070037,-0.014317251499913457,0.049363021221862084,0.21326756387917825 -2052,50,0.10658742700517176,-0.0027440591164342287,-0.008288330878207408,0.030779980942904964,0.023703288370883643,0.05771269651469499,0.026054341122340986,0.0032717584628676683,-0.01204901268139489,0.05567593162650796,0.23123550774272567 -2052,67,0.11384237360954284,-0.0019359912920514895,-0.006431287342198037,0.03529065639744305,0.02955233357493493,0.06538330610725596,0.03369779235236298,0.0032717584628676683,-0.009955994563327498,0.0625034293112619,0.24952893289239345 -2052,70,0.11532967022359371,-0.001812020236721174,-0.0061012133867567805,0.03638534408201087,0.030831970093342053,0.06689009282165528,0.035046637544352735,0.0032717584628676683,-0.009576559412439201,0.06387746375563719,0.253201844854586 -2052,90,0.1308799597173929,-0.0010234507468405054,-0.0035841994532402883,0.042604992316213904,0.044868407538093305,0.08059531933208124,0.0435893189023679,0.0032717584628676683,-0.006527770807200269,0.07846742739019129,0.2871581267663512 -2052,95,0.13986957016363738,-0.0007671474084818342,-0.002625764681954278,0.044321173904088365,0.0534140007847294,0.08711128242538499,0.04583739908027076,0.0032717584628676683,-0.005273138941199036,0.08725634105967235,0.30463734610771553 -2053,5,0.0805331892043352,-0.010170169063670657,-0.017987835861467346,0.0182569116362704,0.010530040469368947,0.03186015738696381,0.006169406510917121,-0.010864875755428431,-0.022604157080650184,0.035796520406428806,0.17126505328727154 -2053,10,0.08644822244882584,-0.007649556738590476,-0.015521745003262566,0.019835103663409518,0.012771380053721915,0.03769119923592971,0.008035066980642049,-0.010864875755428431,-0.020018093034519804,0.039779230178604214,0.1850602787563264 -2053,30,0.09931869626045227,-0.004264941001402117,-0.01125514789396744,0.02549324922454002,0.018893270065360172,0.05008666706992677,0.01736336690030672,-0.010864875755428431,-0.015326127074445896,0.04973826813390938,0.21554738121522604 -2053,33,0.10104711704850197,-0.003991419699510501,-0.010810116021590675,0.02662632455137187,0.019719807528866633,0.05153626080021194,0.018762611797170422,-0.010864875755428431,-0.01485758694282904,0.05092986905222558,0.21903460422097856 -2053,50,0.10947394477576017,-0.002819394514536027,-0.008626870289559295,0.03156357281946594,0.024699964308123074,0.05914210158282688,0.026691666212731398,0.0033301827211331624,-0.012506876782544325,0.05750124924893089,0.23753437263173538 -2053,67,0.11691059233248234,-0.001985308259462057,-0.006701601018524704,0.036257479020330656,0.030820498028333712,0.06700571245638506,0.03462072184277236,0.0033301827211331624,-0.01033551233755658,0.06462739476815693,0.25637398231423403 -2053,70,0.11844619711041451,-0.0018572587438506055,-0.0063567787304604035,0.03739055434716251,0.03216216903292889,0.06855500956796519,0.03601996795411604,0.0033301827211331624,-0.009939221761460434,0.06606449971473102,0.2601678868334685 -2053,90,0.13435116839408875,-0.001046113931481639,-0.0037435348849148104,0.04381609894317362,0.04686590059309744,0.08258065863963712,0.04488185594435944,0.0033301827211331624,-0.006780381010477581,0.08132262707675263,0.2952307288678016 -2053,95,0.14364233883172273,-0.000784193229867098,-0.0027433374017612126,0.045592470462053274,0.055811842985893104,0.08924203653846259,0.047213929557985625,0.0033301827211331624,-0.005476501393355684,0.09053375949448869,0.31322994622080175 -2054,5,0.08258606552481651,-0.010530386436928576,-0.018682391289141686,0.018589261273941993,0.010945352211354347,0.032698789487222005,0.006057390164033009,-0.011055487610786825,-0.023451286883124832,0.03684563967277501,0.17571800301371138 -2054,10,0.08873113936185836,-0.007908481973408099,-0.01612746833726656,0.020239372221656494,0.013293132990976508,0.03867855748524745,0.0079914465030412,-0.011055487610786825,-0.020771060216043934,0.040984591020658684,0.1899485281056492 -2054,30,0.10199732795953752,-0.00439223286803363,-0.011707799255792994,0.026099816802991917,0.019686689949533886,0.051357023585692024,0.017661726983602175,-0.011055487610786825,-0.015904526462608395,0.05133555567097188,0.22137379955132808 -2054,33,0.10376516461372376,-0.004108206207159009,-0.011245281406545139,0.02727190675132359,0.020554557135722126,0.052845106060969115,0.019112270300528304,-0.011055487610786825,-0.015418745954386413,0.05257132275054654,0.22495305518748068 -2054,50,0.11245925351008773,-0.0028962390825033584,-0.008983308820476672,0.03235407332015172,0.025762928109749558,0.06063085989057074,0.02733200564244317,0.0033886069793986565,-0.012982096903145512,0.059409634604417616,0.24404586936916614 -2054,67,0.12013571298122407,-0.0020351291305522688,-0.006984646373388288,0.03723465841133547,0.0321635921676365,0.06867794005168643,0.03555174462779799,0.0033886069793986565,-0.010732649482158654,0.0668236919105336,0.26350814290529656 -2054,70,0.12170264332294464,-0.0019046168786036471,-0.0066294011576676325,0.03840674835966714,0.03356742936634583,0.07025853019675622,0.03700228794472412,0.0033886069793986565,-0.010317941920227868,0.06832754572638602,0.26740721904726455 -2054,90,0.13815450544059277,-0.0010690724267082067,-0.003915481682374553,0.04504127685418285,0.04895085964546712,0.0846062906595301,0.046189059046642986,0.0033886069793986565,-0.007042396787869185,0.084298048688253,0.30365303364482865 -2054,95,0.14758696745485067,-0.0008012778603920983,-0.0028730461731003845,0.04687880910940649,0.05830965666467853,0.09142208465286193,0.04860662233533332,0.0033886069793986565,-0.005689641539580018,0.09391747972113575,0.3222728596495432 -2055,5,0.08471131721436977,-0.010894006944986321,-0.019396064619479216,0.018921224750248797,0.011380160174009203,0.03354227359862818,0.005935234123758872,-0.011246099466145219,-0.024321049180499054,0.03790964892653312,0.18024274149956207 -2055,10,0.09102395585820082,-0.008172159693822444,-0.01674886355657421,0.02065223417818531,0.013830355105629836,0.0396708936965423,0.007938882594834993,-0.011246099466145219,-0.021536462704198445,0.042220653088323824,0.19487769929610904 -2055,30,0.10466306759417057,-0.004522340937995819,-0.012170483641124682,0.02671084548061538,0.020513447725339612,0.05264758439122551,0.0179571249502156,-0.011246099466145219,-0.016491369549409187,0.05296854689003948,0.22722629702236002 -2055,33,0.1064972705245018,-0.004226710737152012,-0.011693135486145678,0.027917106649131423,0.02141926867015638,0.0541717690597516,0.019459861758952684,-0.011246099466145219,-0.01599509569688177,0.05425163070177055,0.23093538811605374 -2055,50,0.11544470180869103,-0.002975070359597282,-0.009349101969959587,0.03315148244496233,0.02686551939104435,0.062129863719185684,0.02797536669835621,0.0034470312376641507,-0.013469973408832214,0.061350264910672817,0.2506004851228605 -2055,67,0.12336982808411122,-0.002086073304795767,-0.007278002910352549,0.03822219973078042,0.03355559305381484,0.07037948216282072,0.03649087042327975,0.0034470312376641507,-0.011136220145835148,0.06908435422345843,0.27070371277908767 -2055,70,0.12496737836301326,-0.0019512404352309415,-0.006908390328704658,0.03943392095920185,0.03502231010193124,0.07198065399997954,0.03799360966097681,0.0034470312376641507,-0.010708643847338085,0.07065313461528794,0.2747195339296317 -2055,90,0.14194417272508145,-0.0010923229811854811,-0.004092329388010081,0.04628053413928608,0.05111396052665174,0.08665314224775844,0.04751093792505841,0.0034470312376641507,-0.007317158196075418,0.08733890543122202,0.3121148733950518 -2055,95,0.15165453182011843,-0.0008184057535646704,-0.0030060739437885327,0.048180200632873996,0.06089190490446231,0.09362809892399128,0.05001550170191352,0.0034470312376641507,-0.0059102021523879025,0.09737242577375732,0.3313287333015752 -2056,5,0.08598983925580979,-0.011269079367181732,-0.020120092988546657,0.019252807702582996,0.011853137508048684,0.0344630459478481,0.005802943855254643,-0.011436711321503612,-0.025191659478283335,0.039030411677595585,0.18394364922660433 -2056,10,0.092312040874362,-0.008436998505171631,-0.017384227475603996,0.021066453299644277,0.014414485071471013,0.04072040215121548,0.007877380113943367,-0.011436711321503612,-0.022314633485939747,0.04350426975986761,0.19885693337878396 -2056,30,0.10606353089213372,-0.004655133669390642,-0.01264548003365503,0.02732633267724894,0.02138466874113549,0.053970376399234216,0.018249563229106962,-0.011436711321503612,-0.017096855742111398,0.0546516877306022,0.23184351965815594 -2056,33,0.10789429315924644,-0.004350638411187041,-0.012153855759368252,0.02856038923343089,0.022337650715451105,0.05552978323933198,0.0198053910303635,-0.011436711321503612,-0.016578744106653956,0.05598879008203919,0.23566846243877596 -2056,50,0.11690717041492463,-0.0030549598060680356,-0.009729685006179427,0.03395579737520166,0.0280143398058317,0.06366971524450644,0.028621744522550584,0.0035054554959296443,-0.013968790555640632,0.06334770095282329,0.255748857115464 -2056,67,0.12485730034857988,-0.0021369922527084972,-0.007583677213378361,0.03922009781834257,0.034997845743593825,0.07209738149518631,0.03743810165817762,0.0035054554959296443,-0.011555414467083512,0.07140368067827808,0.27626635384946596 -2056,70,0.12649850977957247,-0.00199827092761024,-0.007194642622638,0.04045246342858261,0.0365342391193705,0.0737168960464131,0.038993930673914136,0.0035054554959296443,-0.01111448832909088,0.07304867860114775,0.2803776301773162 -2056,90,0.1434986752077937,-0.0011151336228402183,-0.004285631907024648,0.047533854618394336,0.05332881675475712,0.08869822114254314,0.04884750715336552,0.0035054554959296443,-0.007597598828758684,0.0904646194022292,0.3185846319016931 -2056,95,0.15341792896091938,-0.0008357912656563139,-0.003146487445659279,0.04949662345900382,0.06353659209299563,0.09585827414939921,0.05144054822604648,0.0035054554959296443,-0.006146616428668919,0.10091511203988605,0.3383831142527046 -2057,5,0.08846509457975626,-0.011646732480931045,-0.02085641039908706,0.019584001674856313,0.01233243961114026,0.035383117108048326,0.005660515715080366,-0.011627323176862006,-0.02607479722067578,0.04013907470207532,0.18894756178865524 -2057,10,0.09496938424557447,-0.00871014084330953,-0.018026862928227545,0.021482024425710476,0.014996450871871327,0.04175720834607726,0.007806936024166358,-0.011627323176862006,-0.02309094309402573,0.04478966287238503,0.20427755577335183 -2057,30,0.10910455199480057,-0.004788222389716778,-0.013121413827812116,0.027946278392892595,0.02225754905844391,0.05528403730189388,0.018539039391316296,-0.011627323176862006,-0.017704791900709938,0.056352593916406776,0.23815603910705238 -2057,33,0.11099694138169289,-0.004473863248572057,-0.012617296940045892,0.029208331683356563,0.02325167212016738,0.05687135128753537,0.020148853256840807,-0.011627323176862006,-0.01716788586627195,0.057731141087141204,0.24209313501596716 -2057,50,0.12024839470535517,-0.003135646214000932,-0.010109407879557901,0.034767018110869706,0.029171937446412406,0.06518866340329416,0.029271139115026282,0.0035638797541951385,-0.014471285195769835,0.06536380785684129,0.26274392958714493 -2057,67,0.1284072965025902,-0.0021894756388936734,-0.007888890447050276,0.04022835783434486,0.03644918351520028,0.07380267724460457,0.03839342618769174,0.0035638797541951385,-0.01197892184371289,0.07372780055371618,0.2838642939453284 -2057,70,0.1300827275723219,-0.00204470726948955,-0.00749033699383852,0.04147579386397185,0.038051207242014974,0.07546594279274217,0.040003241267696235,0.0035638797541951385,-0.011523886074450922,0.07544960066683803,0.28810211088416854 -2057,90,0.14754550401121377,-0.001137950249692418,-0.004475534752261015,0.04880125177491509,0.05554755569716537,0.0907376436787897,0.050198742441964636,0.0035638797541951385,-0.007880740269316,0.09359149294903372,0.32745399870210634 -2057,95,0.15775723683536053,-0.0008531726705345801,-0.003287720155016288,0.050828099161247926,0.06620795545118915,0.09802980339582024,0.05288176190773221,0.0035638797541951385,-0.00638066120821087,0.10448267873462984,0.34785693369903653 -2058,5,0.09232594982981682,-0.012034613756610605,-0.021594052702491342,0.01991480948576484,0.012825343092455213,0.0363161785438801,0.005507949703236041,-0.0118179350322204,-0.02698104589380787,0.04128097223299018,0.19539531935711754 -2058,10,0.09898984974771738,-0.008987313105881106,-0.018678723077871214,0.021898955296868295,0.015601858430745956,0.04281048868940563,0.007727550325503968,-0.0118179350322204,-0.023891028484708494,0.0461113206910284,0.21118712786057578 -2058,30,0.11365780808329583,-0.004925147758885378,-0.01360630350408824,0.028570687787869278,0.02317195945648998,0.05661897416738026,0.01882555100788363,-0.0118179350322204,-0.018331193190231528,0.05809301678307999,0.24605330219567476 -2058,33,0.11557776006013155,-0.004597140479758039,-0.013089269267699885,0.02986093939227144,0.024206203583154142,0.05824460839388506,0.02049025208182457,-0.0118179350322204,-0.0177717234900407,0.05952627721407141,0.2501301139681295 -2058,50,0.12516052086353302,-0.0032166670075996742,-0.010497243393060995,0.03558515028935867,0.030373647912945244,0.0667417780766911,0.02992354804682334,0.0036223040124606326,-0.014987383070043686,0.06743468660285858,0.2714117994648086 -2058,67,0.13363985834270717,-0.0022403972767541603,-0.008203779638003603,0.04124697719862582,0.037966989396665575,0.07553066345263926,0.03935684886974205,0.0036223040124606326,-0.01241242434005271,0.07613185194343208,0.29320846645486587 -2058,70,0.1353734367594123,-0.0020933617738106785,-0.007789476210931211,0.042509254693120606,0.03962738763661158,0.07722532211604931,0.04102155358712294,0.0036223040124606326,-0.011942009401680071,0.07792115582688236,0.2975828775855854 -2058,90,0.15350363426953553,-0.0011614592207636607,-0.004671237534898551,0.050082720215485356,0.057865963998231906,0.09281480806760745,0.0515646486487757,0.0036223040124606326,-0.00816806454783485,0.09682115766933294,0.3382137565970227 -2058,95,0.16406245342344045,-0.0008707819774351289,-0.0034370401226900315,0.05217463313296933,0.06897098325143236,0.10025889988354308,0.05433915246281056,0.0036223040124606326,-0.006617495622265601,0.10815202116346474,0.3593146064804532 -2059,5,0.09486247074007988,-0.012432330172269938,-0.02238674667043318,0.020252543945931116,0.013284965707035355,0.037162830695228355,0.005345248248681639,-0.012008546887578792,-0.027928508776626622,0.04240671669738947,0.20033294152186792 -2059,10,0.10161988417193296,-0.009268116461899435,-0.019370785602664385,0.022317238172633345,0.01618105731282966,0.04381842779873784,0.0076392242324361806,-0.012008546887578792,-0.024734761781388052,0.04742679833301368,0.21655011341632696 -2059,30,0.1166740543603897,-0.005061084065960027,-0.01411507104076884,0.029199555701856058,0.02409335858932931,0.057956595129971755,0.019109106580168858,-0.012008546887578792,-0.018973018764462488,0.05986479540662229,0.25237191792371083 -2059,33,0.1185988754093647,-0.0047217805224132525,-0.013579179144214188,0.030518206966812525,0.02518117736754087,0.05962560702236654,0.02082958750531478,-0.012008546887578792,-0.018396268510310395,0.06134933926112404,0.2565509719907602 -2059,50,0.12837989527732133,-0.0032975920459924262,-0.010894896470638592,0.036410188273276356,0.031624269576547306,0.06832216522576254,0.030578983462741606,0.003680728270726127,-0.015514044613987338,0.06956574996600334,0.2784494562544967 -2059,67,0.13703984574973582,-0.0022937385382969097,-0.008520978844072165,0.04227595849134692,0.03956407063317004,0.07730937773730892,0.0403283818491284,0.003680728270726127,-0.012847098336938019,0.0786260649117481,0.30090566428066373 -2059,70,0.13881630834937095,-0.0021414471476316217,-0.008089483840448882,0.043552843097332795,0.041309696091210504,0.0790407097515606,0.04204886763219426,0.003680728270726127,-0.012364862569364166,0.08049983260291362,0.30538997777613014 -2059,90,0.15734414458572865,-0.001184744852917059,-0.004856881769710156,0.051378259940105135,0.06041510565351643,0.09498475652671348,0.05294525977923825,0.003680728270726127,-0.008456613939402403,0.1002752877679586,0.34728575684473495 -2059,95,0.16823098762035368,-0.0008882745267287272,-0.00357483557025866,0.05353619840735304,0.07202976046342205,0.1025888150414831,0.055812724749201494,0.003680728270726127,-0.006848610352296329,0.1121168727032267,0.36908821995606106 -2060,5,0.097579444617033,-0.012831697718456998,-0.023184987934473624,0.020608074714725918,0.013772642180896603,0.03804030817545325,0.005172410744177167,-0.012199158742937186,-0.028886360987480396,0.04359048230583805,0.20550656123914618 -2060,10,0.10437382051348686,-0.009553755445666971,-0.020061710006517176,0.02273687563316709,0.016799000271934577,0.04484924475366851,0.007541957744962997,-0.012199158742937186,-0.025578756025287305,0.048772689705960735,0.22214693440245695 -2060,30,0.1197474844455719,-0.005201164094879071,-0.014630777863158913,0.029832882134852936,0.025051986356787126,0.05930855280775782,0.019389696392332102,-0.012199158742937186,-0.01962684293704973,0.06167213308285904,0.2588559509517872 -2060,33,0.12169630934894084,-0.004849693153101432,-0.014076957741765898,0.031180134406979816,0.026187518463131505,0.061008870345355404,0.021166855883871485,-0.012199158742937186,-0.0190274351112111,0.06321728397410668,0.2631612893802673 -2060,50,0.13171977517753838,-0.0033788609452642788,-0.011300148895443975,0.03724213488131886,0.032907634699123126,0.069902193493509,0.03123743078902126,0.0037391525289916213,-0.01604827606034276,0.07173086117746497,0.28564774624466627 -2060,67,0.1405281292721629,-0.002348210285336557,-0.008845206781350822,0.04331529655218522,0.04119633373637657,0.07909322388864305,0.041308010552090976,0.0037391525289916213,-0.013294277282642226,0.08116355220139096,0.3087073668217731 -2060,70,0.14234488483518362,-0.0021912770986353787,-0.008396850066946323,0.04460655907660842,0.043020698858745036,0.080849447944396,0.043085173687070315,0.0037391525289916213,-0.0127918640707214,0.08309987863208526,0.31331521484201924 -2060,90,0.16121351155489683,-0.0012094294596703985,-0.00505458151121224,0.05268787634213742,0.06296115743781519,0.09713254024959855,0.05434052725415294,0.0037391525289916213,-0.00875236809966774,0.1037181094266384,0.35643387233011764 -2060,95,0.17236339509934187,-0.0009057598199453599,-0.0037212864245588337,0.054912811164488054,0.07508547222667025,0.10488530271725784,0.05730245447730531,0.0037391525289916213,-0.007090258744172397,0.116113989379287,0.3788486337173353 -2061,5,0.10024913108348846,-0.013239087388667043,-0.02398813669933381,0.02096403121016231,0.014332527308899463,0.03900257578055666,0.004989436278862634,-0.01238977059829558,-0.02984650642278486,0.04482775761061828,0.21087767665295312 -2061,10,0.10717242849469184,-0.00984095551042591,-0.02076106858671518,0.023157870258630985,0.01747557872291561,0.045962741065283245,0.007435750863084415,-0.01238977059829558,-0.026439926754314676,0.05018959761775238,0.22788677946419686 -2061,30,0.12288331615179778,-0.005341181415327902,-0.015160454164907747,0.03047067224718284,0.026073024070844646,0.06071045854125727,0.01966732773125327,-0.01238977059829558,-0.020295875195835755,0.06354509704662843,0.26549424588989706 -2061,33,0.12483608676418662,-0.004978990243437977,-0.01458602171924648,0.03184672710613631,0.02725381515390575,0.06244956561678608,0.021502064504374595,-0.01238977059829558,-0.01967163758938209,0.06515357293813119,0.26990144092544943 -2061,50,0.13509152163267135,-0.003461366012147479,-0.011722006297524703,0.03808099011348618,0.034255386016172576,0.07152818091131087,0.03189889974150219,0.0037975767872571154,-0.016597767717051123,0.073971839893675,0.2929647153608367 -2061,67,0.14404345132112503,-0.00240160433817955,-0.009182975039414102,0.04436499396130219,0.04289258204268423,0.08089778302776776,0.04229574226550968,0.0037975767872571154,-0.013756126047543235,0.08376333091831602,0.3166219495022424 -2061,70,0.1459046423882246,-0.002240945758124596,-0.00872270995428889,0.04567041108703575,0.04478422454088606,0.08269594870357808,0.04413047660967104,0.0037975767872571154,-0.01323793627983925,0.08578675137217812,0.321344659503599 -2061,90,0.16510150957107544,-0.0012333766719603045,-0.005262223550449239,0.05401156402821921,0.06556036160156206,0.0992827490147015,0.055750475363119445,0.0037975767872571154,-0.009071180881139727,0.10723674448271969,0.36560609222614093 -2061,95,0.17645856046676636,-0.0009229593799646869,-0.0038785152907478936,0.056304476797737354,0.07819915398081694,0.10720311541944305,0.05880837079464164,0.0037975767872571154,-0.007342278572003728,0.12015485670647451,0.3886735984433926 -2062,5,0.10276176375895738,-0.013657457763874633,-0.02480769747723106,0.02132040827191736,0.014907316633880278,0.03999607342599141,0.004796323334638064,-0.012580382453653973,-0.030837586536111117,0.0460879980378157,0.21614111587445414 -2062,10,0.10984058967828751,-0.010132700975492862,-0.021473639128108426,0.02358021946886358,0.01818430970791254,0.047089209261691134,0.0073206011578404685,-0.012580382453653973,-0.027304598743778264,0.05163509729067493,0.23355174809349966 -2062,30,0.12594063219428062,-0.005484011186647416,-0.0156989978003601,0.031112918298361377,0.027137370232461922,0.062124118811613054,0.01994199452453244,-0.012580382453653973,-0.020979159146477744,0.06546448874284805,0.27212156313383706 -2062,33,0.12795863834917545,-0.005109609039543854,-0.015107164013141501,0.032517976974237514,0.02836429836892206,0.06390898696506683,0.021835203650984233,-0.012580382453653973,-0.020332507562992187,0.06714063178717275,0.2766599127328676 -2062,50,0.1384345094114542,-0.003546535681049833,-0.012152662048326778,0.03892674833238614,0.03565416816439497,0.07315575548939489,0.03256338546226444,0.0038560010455226095,-0.017161697756859304,0.07626994302569876,0.300327867117778 -2062,67,0.14759203374385835,-0.0024552125881347918,-0.009533648537941771,0.0454250532988593,0.04464384535134771,0.08272019330081722,0.04329156241562471,0.0038560010455226095,-0.014225424101453723,0.08643865575619937,0.32463358134550857 -2062,70,0.14949269662946463,-0.0022901587090741237,-0.009057928480425284,0.046744387853830414,0.04662011555879736,0.08456543883206061,0.04518477639999644,0.0038560010455226095,-0.013697397611232254,0.08854148666526826,0.32947740239661644 -2062,90,0.16914369828701017,-0.0012576346497032984,-0.005476697687507412,0.05534932299835051,0.06824641490516192,0.10147644654394103,0.05717509924821782,0.0038560010455226095,-0.009397883007110268,0.1108600455617349,0.37501105984880023 -2062,95,0.18080751460939645,-0.000940598170214596,-0.0040458875502014805,0.057711184520374964,0.0814055781305036,0.10954064565389927,0.060330444553690854,0.0038560010455226095,-0.007606748210445339,0.12430127649161218,0.3987902618161408 -2063,5,0.1053868559576571,-0.014082654040160108,-0.02565820450332837,0.021677211060314,0.01548265764031549,0.040968740312355104,0.004593075858563403,-0.012770994309012367,-0.031855862413522756,0.047356454293693194,0.2214921416069764 -2063,10,0.11263972073793412,-0.010429738432409475,-0.022219419723295934,0.024003920683703397,0.01890348739095514,0.04822054848323357,0.0071965140943910854,-0.012770994309012367,-0.028203088991693964,0.05311833314985332,0.23932094229981363 -2063,30,0.12907711118012666,-0.0056290713755622,-0.016256465174514567,0.031759628028872944,0.02823063833236304,0.06354967511229995,0.02021370284456953,-0.012770994309012367,-0.0216761358328191,0.06743017864044877,0.2788917434381469 -2063,33,0.13114368409216404,-0.005241755752026513,-0.015643208247251492,0.03319389210132793,0.029506123704093026,0.06537650219256647,0.022166280610580305,-0.012770994309012367,-0.021008968555544516,0.06915743476037393,0.2835721746751728 -2063,50,0.1418525877445936,-0.0036339022954291755,-0.012595809968538613,0.03977942081280309,0.03710434793253668,0.0748124618573423,0.03323089038026799,0.003914425303788103,-0.017734857439988344,0.07862891668202196,0.30781333945098416 -2063,67,0.15117731563299894,-0.0025091287302144985,-0.009891078464334211,0.04649546940453361,0.046478119779163586,0.08457240747677838,0.044295500149955674,0.003914425303788103,-0.014710988512016625,0.08919452287246103,0.3328239071955736 -2063,70,0.153133121073246,-0.0023405626659487775,-0.009398532433501356,0.047828497833080706,0.04853953416383617,0.08646161424396233,0.04624808277388639,0.003914425303788103,-0.014164102356054253,0.09140460837999671,0.33776837221440403 -2063,90,0.17319756001085043,-0.0012808819259925782,-0.0056975386288755925,0.056701158645894326,0.07109236646766393,0.10372346176734881,0.058614413483207894,0.003914425303788103,-0.009721231564366165,0.11462550450871249,0.3846170359849445 -2063,95,0.1851547487318516,-0.0009581683458410258,-0.00421399754810127,0.05913294511912687,0.08481338638136623,0.11193559623388911,0.06186870975989252,0.003914425303788103,-0.007868379721684771,0.12868089621897,0.4091347666520654 -2064,5,0.10801020951569079,-0.014508654987882272,-0.026503553489150934,0.022034436995190764,0.016100989815201232,0.04198888935291126,0.004379691118058687,-0.01296160616437076,-0.032869087309693484,0.04866965106755474,0.2269185182569226 -2064,10,0.11544519091397523,-0.010731449752939616,-0.0229514599081619,0.02442898164363484,0.019662050152177528,0.049359879624008854,0.007063483600336344,-0.01296160616437076,-0.029100704719816847,0.05463191566477278,0.24522035736278816 -2064,30,0.1323590028733015,-0.005773613194648406,-0.016818094200226896,0.03241079369823314,0.029340970260855304,0.06500115775080065,0.020482450262404577,-0.01296160616437076,-0.02237830500605322,0.06941613285204097,0.2858481088070942 -2064,33,0.1344746721804142,-0.005377832592952056,-0.016181119941891645,0.033874464397363045,0.03067875455509331,0.0668404749375211,0.02249529538316281,-0.01296160616437076,-0.021693010295598152,0.07120922865401644,0.2906432509047586 -2064,50,0.1454779007434845,-0.003720070253674765,-0.013042937837045208,0.04063899346125658,0.038572821849571025,0.07646461236659309,0.03390141449551284,0.003972849562053598,-0.018311073425424228,0.0810153802900877,0.3155706786329483 -2064,67,0.15509211196750403,-0.0025651560614837554,-0.010252258584570805,0.04757624743864806,0.04831550898348543,0.0864155145331215,0.045307531178902904,0.003972849562053598,-0.015201235936204722,0.09196927578528889,0.34129824410007414 -2064,70,0.15708505721241234,-0.0023911732409012984,-0.009748557626379885,0.04892273820609051,0.050459402723968746,0.08833609148928137,0.047320381157581075,0.003972849562053598,-0.014637630947962442,0.0942673625098579,0.3463591834644267 -2064,90,0.17771787640601394,-0.0013049708324100009,-0.005921283342617993,0.05806706018412465,0.07389611606592779,0.10591905102348628,0.060068398636409906,0.003972849562053598,-0.010050228674610483,0.11839240715466377,0.39458761667910236 -2064,95,0.1900157419398427,-0.0009749554127835208,-0.004388123457868227,0.060569742413904074,0.0881816492415163,0.11428997195722078,0.063423137265727,0.003972849562053598,-0.008133259026373699,0.1329719518140787,0.4198567522362475 -2065,5,0.1105787949591875,-0.014943307174342833,-0.02734808065221436,0.022392086076547656,0.016779173680223487,0.04304373913100872,0.004156170023983904,-0.013152218019729154,-0.03389721955632066,0.050040861225127624,0.23241172431343682 -2065,10,0.11828098570257425,-0.011040706698672187,-0.023690858195632915,0.02485539460817351,0.02047495461473211,0.05056312601891535,0.00692151392635619,-0.013152218019729154,-0.030016022512392958,0.05619787851991606,0.2512203415122771 -2065,30,0.13565541428864,-0.005920456275050017,-0.01738728888687414,0.03306642304692636,0.030519215432079697,0.06647581347571548,0.020748234349077608,-0.013152218019729154,-0.023089558173082142,0.07147468104454928,0.292945780945281 -2065,33,0.1378327172398567,-0.005512678470087307,-0.016732395656425494,0.03455970195238736,0.0319039729230865,0.06834941267630203,0.022822243110811814,-0.013152218019729154,-0.022386383013199403,0.07332409881105392,0.29784919774639407 -2065,50,0.14918045002520083,-0.0038052036473532583,-0.013502061049778028,0.041505477552530985,0.04010362171491536,0.07814329367761894,0.03457495295007905,0.0040312738203190914,-0.01890384551003144,0.08345782801722529,0.32345849034934127 -2065,67,0.15909761948138476,-0.002621243871846159,-0.010628286356940986,0.04866737708055679,0.05021133038869569,0.08826196433113474,0.04632766521830626,0.0040312738203190914,-0.015706491173599613,0.09480504309831371,0.3499382009660354 -2065,70,0.16115838262438772,-0.0024435947060747676,-0.01010695354370829,0.050027103335467664,0.05244043714889311,0.0902263133612439,0.04840167640900043,0.0040312738203190914,-0.01511918473765273,0.09717694470349869,0.3551330984638908 -2065,90,0.18244960983097552,-0.0013279782132439247,-0.006163019501803388,0.059445742507065885,0.07676092000726252,0.10811786371282327,0.06153706442366373,0.0040312738203190914,-0.010401445728191872,0.12218313446600745,0.4047831609261067 -2065,95,0.19502687487602233,-0.0009925155458705758,-0.004570144552871238,0.06202158179806959,0.09157024223396516,0.11665219722646285,0.06499374164495413,0.0040312738203190914,-0.00841516398499803,0.13730754986674318,0.4307662860185815 -2066,5,0.11334240327179432,-0.01538065570255555,-0.028236824048895943,0.022750160884546136,0.017424369486078114,0.044045037410272804,0.003922509843759091,-0.013342829875087548,-0.03496040802608766,0.051394821831892396,0.2380015516645132 -2066,10,0.12124177520573139,-0.011347500009768504,-0.02447043458985216,0.02528316473764234,0.021264872311325504,0.05171931533755696,0.006770600214530686,-0.013342829875087548,-0.030965746177395833,0.05775815193266264,0.2572884028975466 -2066,30,0.13904437725037336,-0.006072984648256672,-0.017974611836957297,0.033726510914629686,0.031712101369901484,0.06794901892521076,0.021011055104588627,-0.013342829875087548,-0.023826913477861106,0.07355647687030388,0.30014019330575686 -2066,33,0.14127821962833403,-0.005648528910819791,-0.017298922320721007,0.03524959937303789,0.03315217253487737,0.06985495074385323,0.023147123793527312,-0.013342829875087548,-0.023099057889591715,0.07546853548936239,0.30514830043528024 -2066,50,0.15290474054217337,-0.003891801911244143,-0.013967009083498103,0.042378870267930205,0.04168621942198081,0.07985635182658607,0.03525150817292659,0.004089698078584586,-0.019509299884084494,0.0859632055620069,0.33146356081624506 -2066,67,0.16306954769045115,-0.0026771052655692714,-0.011003869447686943,0.04975801369421927,0.05220631744037772,0.09017948448623614,0.047355897410245804,0.004089698078584586,-0.01621827463343731,0.09774840453816559,0.3587097066817528 -2066,70,0.16518151514232157,-0.0024940849161401123,-0.010470073059026542,0.051141604495996515,0.05452653611141939,0.09215779724790278,0.049491968528144456,0.004089698078584586,-0.015608292346721026,0.10021313569590251,0.36402199719597045 -2066,90,0.18699887376427649,-0.0013502391087666602,-0.006393678282426525,0.06082673447104506,0.07984438721616412,0.11039786047833137,0.06302039627120956,0.004089698078584586,-0.010743896071865613,0.12621699113907453,0.4151268539418788 -2066,95,0.19988759373128415,-0.0010091589896598556,-0.004747574523904666,0.06348848484507538,0.09526260034886665,0.11909261320681609,0.066580513181734,0.004089698078584586,-0.008693306211151294,0.14196533634706404,0.4418635297709134 -2067,5,0.11605357297360896,-0.015828770611867972,-0.029141640460171637,0.023108656258863276,0.0181123008617537,0.04511375636796876,0.0036787145244441943,-0.013533441730445942,-0.03604820331062845,0.052805132530796835,0.24369280425331533 -2067,10,0.12414123521000146,-0.011662221494600833,-0.02526973007536714,0.025712286871718396,0.022105997326944526,0.052927556680959734,0.006610748537259754,-0.013533441730445942,-0.03192899347072649,0.059395322304921866,0.2634261973608864 -2067,30,0.14236954188346862,-0.006222633226798408,-0.018575463753884712,0.03439106246166603,0.03297158332344573,0.06946035762265577,0.021270917386857567,-0.013533441730445942,-0.0245787552625244,0.07572596788599627,0.3073634537859383 -2067,33,0.1446579088628292,-0.005788109296793138,-0.01788136975120349,0.03594416205267762,0.034465801169108586,0.07141236144223541,0.023469944718189212,-0.013533441730445942,-0.023830335044736962,0.0776896463321045,0.312492862254322 -2067,50,0.15656075867414473,-0.003980356109252188,-0.014452069834822605,0.043259171607454246,0.043338204698423595,0.08159499142382365,0.035931087450935366,0.00414812233685008,-0.020129220247219855,0.08856592271772432,0.3394890474493736 -2067,67,0.1669686280041933,-0.0027334645857097955,-0.0113999791800371,0.05084406857377397,0.054293471436040706,0.09210633033071489,0.048392227754721545,0.00414812233685008,-0.01674824821845315,0.10077369704456708,0.3675071135623021 -2067,70,0.16913100676238535,-0.0025462063300481347,-0.010841718941072333,0.052271433211973015,0.05671013839466915,0.09414138196603694,0.050591257515013165,0.00414812233685008,-0.016115429729347108,0.10334138409767034,0.3729644648472426 -2067,90,0.19146806339621544,-0.0013736125762849139,-0.00664038105567569,0.06222141966064575,0.08303906366110639,0.11269621997351327,0.06451842332656701,0.00414812233685008,-0.011099869441722317,0.130396695271312,0.4254939805922105 -2067,95,0.2046640336945653,-0.0010267604360202336,-0.004937546140359219,0.06497042458810648,0.09907016457610664,0.1215875845676448,0.06818346159190652,0.00414812233685008,-0.008977833873122426,0.14673379849620394,0.4530067048689723 -2068,5,0.11864156012237072,-0.01628539841793962,-0.030066364825245016,0.02346757477966054,0.01885056299138533,0.046214158962576045,0.003424781940699243,-0.013724053585804336,-0.03714858870105868,0.05427193335060618,0.24932075134276965 -2068,10,0.12688736807405948,-0.01198353617903162,-0.026085273692736617,0.02612422503896791,0.023004710958987405,0.054169769164983186,0.006441954036623455,-0.013724053585804336,-0.03291434193070819,0.06109487432935953,0.2695023254101553 -2068,30,0.14555699976623057,-0.006374598785337986,-0.019192516809419132,0.03506006736738955,0.03428816066014814,0.0709977524298032,0.021527818766924462,-0.013724053585804336,-0.025345204472360057,0.07796114838837385,0.31455064897919166 -2068,33,0.14790475151538848,-0.005930187310477536,-0.018476677580601373,0.03664337920458057,0.03584529365606324,0.07298772448304469,0.023790696168957643,-0.013724053585804336,-0.024577066916124476,0.07998668147071333,0.31980439726973753 -2068,50,0.16009759426116943,-0.004070222947984195,-0.014950235077978274,0.04414637311501482,0.04506594966489981,0.08337297689336307,0.03661367863930553,0.004206546595115574,-0.020762749055449822,0.09122924262878686,0.347483007931072 -2068,67,0.17074561819434167,-0.0027908219822197753,-0.01180721021331224,0.05193974084439921,0.05645002075705871,0.09406599402645789,0.04943666110965342,0.004206546595115574,-0.017293337045493344,0.103894675757611,0.37628224426028534 -2068,70,0.172952602006495,-0.002597663000071275,-0.011231459853327512,0.05341939434500722,0.05896911368238872,0.09614009480577033,0.05169954336960654,0.004206546595115574,-0.01663643783922109,0.10655890239828333,0.3818740973884602 -2068,90,0.19583465091884136,-0.0013974734325143587,-0.006889862109449583,0.06362978116369142,0.08634387768086463,0.11504635933743759,0.06603111644221647,0.004206546595115574,-0.011470566089670755,0.1346708035472736,0.4359219069947986 -2068,95,0.20935590646862984,-0.001044244424592616,-0.005123123627783843,0.06646740642052588,0.10299583126662482,0.12409872076825591,0.0698025771596318,0.004206546595115574,-0.009273348128077554,0.1516380347603388,0.46416113447571805 -2069,5,0.12141006757616997,-0.016749267463677796,-0.03098425486474066,0.023826919027099394,0.019567213996998022,0.047294973942944435,0.003160712396144233,-0.013914665441162728,-0.03826481380709808,0.0557400800563205,0.25504086625433237 -2069,10,0.12984788557589055,-0.012308005269433429,-0.026899043447051508,0.02652999043508707,0.023882057460933043,0.05537777119903544,0.006264219748821752,-0.013914665441162728,-0.03390079490638223,0.06277980732171055,0.2757125791583409 -2069,30,0.14888991246223449,-0.0065291813026119114,-0.019809436280248015,0.0357335359524461,0.03559665189012578,0.07251022694305845,0.021781756815829344,-0.013914665441162728,-0.026117680375918276,0.08019066112244388,0.3218421828362917 -2069,33,0.1512930734604597,-0.006072492749582065,-0.01907470341140963,0.037347261615472714,0.03720466424700533,0.07453111958121666,0.024109387861672476,-0.013914665441162728,-0.025322211887380923,0.08228405893987042,0.3272201640743696 -2069,50,0.16371965428590773,-0.0041612099757932204,-0.015446700500427697,0.04504049170278849,0.04678445921190134,0.08512186354600922,0.03729929145387697,0.004264970853381067,-0.021399206304415476,0.0938834617381264,0.35557357555668356 -2069,67,0.17460367722809314,-0.0028485183763506446,-0.012204059121782677,0.05304503614348716,0.05860513708036372,0.09601666514019634,0.05048919747504142,0.004264970853381067,-0.0178330415215045,0.1070280751235009,0.38513952242354094 -2069,70,0.17686355289816855,-0.0026514721569669835,-0.011615219880335082,0.054577861749152363,0.06122950356862098,0.09811768588147726,0.052816830949844525,0.004264970853381067,-0.01715206029920074,0.10977235362194797,0.39086640975264864 -2069,90,0.20020247814953326,-0.001422253289588735,-0.007136140027774067,0.0650518415297508,0.0896461468693981,0.11737747615041888,0.06755849019191774,0.004264970853381067,-0.01183738900732575,0.13898005405068517,0.4463833816537837 -2069,95,0.21397618542909622,-0.0010613429954830192,-0.005316224089924898,0.06797944112905958,0.10694162617867244,0.12659180900772743,0.07143787445866964,0.004264970853381067,-0.009565169496909429,0.1565638006478585,0.47538682833605483 -2070,5,0.12417261112332344,-0.017216870842217697,-0.031928676117167494,0.024186686421018375,0.02029860583278985,0.04837460159473097,0.002886509837839114,-0.014105277296521121,-0.03938387139457869,0.05722604128153226,0.2608126145894026 -2070,10,0.1328118400275707,-0.012633934226357238,-0.027729264871922298,0.02693638440043505,0.024775295100697307,0.0566067894463461,0.006077546888334629,-0.014105277296521121,-0.03490587531116177,0.0644841620993099,0.2819861128429644 -2070,30,0.15230948364734648,-0.006685466160836561,-0.02044143188860635,0.0364114656366742,0.03694498368416598,0.07404794763669922,0.02203273639149215,-0.014105277296521121,-0.026903032462459398,0.08244467361660487,0.329272427041604 -2070,33,0.15476580930054187,-0.006216545448485319,-0.01968907303904818,0.03805580658867257,0.03862065306493711,0.07609815444978353,0.024426014938413773,-0.014105277296521121,-0.026083090665737305,0.08462603799027632,0.33480036933603924 -2070,50,0.16748793561458586,-0.004255057051429043,-0.015950748034034786,0.0459415104585987,0.0485639343777161,0.08690248722580755,0.03798792103672973,0.004323395111646562,-0.022043734833797065,0.09661057876170016,0.3638803496128516 -2070,67,0.1786223438233137,-0.002907297154759688,-0.01261279831653924,0.05415994883364565,0.06082662636400983,0.09797910063262934,0.05154982713504568,0.004323395111646562,-0.01838103963487437,0.11022428098923598,0.3942353376460498 -2070,70,0.18093498645722866,-0.0027053574266155756,-0.012009363815083324,0.055746830031045455,0.06354764420950386,0.10011731916784046,0.05394311053988725,0.004323395111646562,-0.017681388182281432,0.11306618510918634,0.4001106134136353 -2070,90,0.2048162117511034,-0.001446533749897369,-0.007390830520235363,0.06650323343235826,0.09306703064001064,0.11970539673670272,0.06910054457567084,0.004323395111646562,-0.012208827758314608,0.14339369655855744,0.4571494596661156 -2070,95,0.21892622151374816,-0.0010790760946000951,-0.0055035165014039635,0.06950651792698159,0.11102409907830857,0.12908437833160585,0.07308933405734032,0.004323395111646562,-0.00986524643830916,0.16162646564207697,0.48697921700186075 -2071,5,0.1272733631581068,-0.017684245657485533,-0.03290211788199675,0.02454687696141748,0.02099067564862924,0.04936776028253634,0.002602163639084021,-0.014295889151879515,-0.04053412514753392,0.05866922770439437,0.26681225917360113 -2071,10,0.13606486241817475,-0.012968806709082632,-0.028578708434878183,0.027343412572404035,0.02564278871017225,0.05777768090203865,0.005881928168282178,-0.014295889151879515,-0.035928371421753855,0.06616602199101393,0.2885060975897026 -2071,30,0.1560111692249775,-0.006843352958823801,-0.021076366286811615,0.03709385383991241,0.03828077466149446,0.07556019070160432,0.022280752635992936,-0.014295889151879515,-0.027694408010311394,0.08472207345652169,0.3369739923153891 -2071,33,0.1584878799855709,-0.006363342640898709,-0.02030251139776038,0.038769011427498626,0.04001929952720866,0.07765101354621809,0.024740574970221568,-0.014295889151879515,-0.026850098729427743,0.08696114339072511,0.3426311562588431 -2071,50,0.17151008188724517,-0.0043485728664592145,-0.016454564777229442,0.046849443475925914,0.050349828671504594,0.08866564283716685,0.03867956981682379,0.004381819369912055,-0.022699298343225368,0.09935184757259838,0.3724408122010361 -2071,67,0.18287748995125294,-0.002966005939810098,-0.013019508924344059,0.05528448455226686,0.06310325433131375,0.09994495832474976,0.05261856952134595,0.004381819369912055,-0.01892797319215191,0.11348355958093365,0.40360223081207636 -2071,70,0.18523975378274918,-0.002759275259629844,-0.012399728098849235,0.05692630458404949,0.0659334358395169,0.10212648975238449,0.05507839185557458,0.004381819369912055,-0.018211227738096997,0.11644704295670337,0.4096481291333131 -2071,90,0.20961405920982362,-0.0014704215283936973,-0.007635469597382658,0.06797871940693957,0.09660056582693273,0.12208278679318163,0.0706572747355558,0.004381819369912055,-0.012571019447997933,0.14796074634278739,0.4683355438609507 -2071,95,0.22403387784957887,-0.0010965270895919334,-0.0056872438176841155,0.0710486368142919,0.11527766882795881,0.1316286859976824,0.0747569802452435,0.004381819369912055,-0.010162168324486043,0.16689047731725307,0.4990313688277723 -2072,5,0.1301035231202841,-0.018162382255168787,-0.0338784461909551,0.02490749064829671,0.021752705668818144,0.05044064602144417,0.0023076874627787802,-0.014486501007237909,-0.041703112894624896,0.06020303035869588,0.27271725761771237 -2072,10,0.1391058051019907,-0.013301360406014755,-0.029441581028302896,0.02775107213229793,0.026586282285263718,0.05898746660906114,0.005677373911744268,-0.014486501007237909,-0.036961912012609864,0.06794612282359838,0.2949316051454995 -2072,30,0.15950439139902592,-0.007002566545524356,-0.021731688096991105,0.03778070056216071,0.03970596590086637,0.07712166516715087,0.022525805549331715,-0.014486501007237909,-0.028508744656857467,0.08707978452473543,0.34461022632175003 -2072,33,0.16202528995275498,-0.006510952881242871,-0.02093254339871367,0.0394868761319509,0.04151865929819634,0.07925607729269238,0.025053072815015797,-0.014486501007237909,-0.0276429745619151,0.08940376370393506,0.35039921172824984 -2072,50,0.1753480805158615,-0.004443053173109576,-0.01697814949034783,0.047766610591733046,0.0522352447223405,0.090462298989075,0.039374237794159155,0.00444024362817755,-0.023365019806561586,0.10218844012792447,0.3809408183379196 -2072,67,0.1869880580931902,-0.0030249635916001333,-0.013441707900799548,0.0564186376619586,0.06546682209240433,0.1019531008040766,0.05369540520226247,0.00444024362817755,-0.019491393603595843,0.1168400400101664,0.4129570609044533 -2072,70,0.18939522103667258,-0.002814219398548089,-0.012807501020884593,0.05811627462143848,0.06840046117063392,0.10416311506951287,0.05622267003898659,0.00444024362817755,-0.018764494797747198,0.11990210455071496,0.41915630005328625 -2072,90,0.2143352089226246,-0.0014951127583602165,-0.00789969285036139,0.06946860784281392,0.10025492453045863,0.12448280398285157,0.07222868552949259,0.00444024362817755,-0.012951565217183245,0.15260277653856638,0.4794288884665729 -2072,95,0.2290468306839466,-0.0011145095035807824,-0.005883034726230883,0.0726058085777165,0.11962641014311637,0.13419367963256082,0.07644079359069945,0.00444024362817755,-0.010465114654105006,0.1722631971673905,0.5110880452576915 -2073,5,0.13282166464626788,-0.018643956345336915,-0.03488416742356361,0.025268530061817528,0.022528911473988247,0.051523861816537245,0.0020030712894635195,-0.014677112862596303,-0.042896482988386095,0.061772723425940326,0.27849997883871513 -2073,10,0.14202589925527573,-0.0136446652042437,-0.0303161149577531,0.028159365898812832,0.027550477216438638,0.060239584772316,0.005463875617361008,-0.014677112862596303,-0.038025611920979425,0.06974919970328336,0.3012764988901617 -2073,30,0.1628774176955223,-0.007164202988935557,-0.022398403914071087,0.03847201096374203,0.04116150786981584,0.07868613105936273,0.022767902418388383,-0.014677112862596303,-0.02933562879931871,0.08949213372532977,0.3521534391449849 -2073,33,0.16547837840020654,-0.006658747475135835,-0.02157059709228306,0.040209406095392364,0.043042615866842805,0.08085400510138586,0.025363503614876524,-0.014677112862596303,-0.028443425381468268,0.09188495508282521,0.35808290181655406 -2073,50,0.17907523322105406,-0.004537937649491247,-0.017503981228260846,0.048701560853346995,0.054165118993431266,0.0922771509025363,0.04007192496873581,0.0044986678864430436,-0.024050037064593195,0.10509449663836663,0.3893974984646781 -2073,67,0.19097102884203196,-0.0030851749817197177,-0.013873594429609377,0.05756241380011306,0.06790440087622014,0.1039594753421735,0.054780343893635126,0.0044986678864430436,-0.020068788851433,0.12028257150134682,0.42228958184810195 -2073,70,0.1934416259676218,-0.0028684766966013027,-0.013220254163434038,0.05931675092993841,0.07094789766736241,0.10620604905748872,0.05737595480596314,0.0044986678864430436,-0.01931797746229671,0.12345418035683707,0.42862414669062454 -2073,90,0.21894976907372474,-0.001518888740119087,-0.008164351853540525,0.07097288841933545,0.10401638001261442,0.12688451617733568,0.07381477695748119,0.0044986678864430436,-0.013342211529005428,0.1573521152496477,0.4905374025726901 -2073,95,0.23399634174406528,-0.0011313911492488358,-0.006079965007920088,0.07417802243052939,0.12414374246543174,0.1367907095761046,0.07814078380954803,0.0044986678864430436,-0.010779469189192748,0.17780419584901255,0.5231596954819873 -2074,5,0.13560636018514632,-0.019130519351076954,-0.03590454624791701,0.025629992621818472,0.02332983586038097,0.05259967174522842,0.0016883160299982275,-0.014867724717954696,-0.044101120018226886,0.06335088364801657,0.2844009041816079 -2074,10,0.14504041837155818,-0.013991056535751313,-0.03121644818074476,0.02856829387194874,0.02854388689100617,0.0614908820570651,0.0052414344996123815,-0.014867724717954696,-0.03910345970033309,0.07160271516097498,0.30774744378675395 -2074,30,0.166331246599555,-0.007329388953573243,-0.023079442227841418,0.03916778246449492,0.04267048978372941,0.08026834439628948,0.023007031098363096,-0.014867724717954696,-0.03017676457877342,0.09195780976646352,0.3598654302179193 -2074,33,0.16901486130952834,-0.00681006772521993,-0.022222654367234997,0.04093659862114154,0.04461698543814528,0.08248249446879222,0.025671872227723682,-0.014867724717954696,-0.029261100638486998,0.09442745007384819,0.3659141068520455 -2074,50,0.1829067346572876,-0.004635498946450434,-0.018045963916057516,0.04964377058154993,0.05616428895315935,0.09411152592227745,0.04077262405367386,0.004557092144708538,-0.024739628446857453,0.10807488035094166,0.39809370800265087 -2074,67,0.19506617390364409,-0.00314518303617368,-0.01431080385165358,0.05871581860412243,0.07042365946898198,0.10599361564112804,0.05587338073754397,0.004557092144708538,-0.02065430366351367,0.12382372998758263,0.43179554762507 -2074,70,0.19759165365993975,-0.0029233365044412677,-0.013639661069630694,0.060527733509549285,0.07358392837371225,0.10829531004113639,0.058538221866904556,0.004557092144708538,-0.019884081895664464,0.12709089574432786,0.4383167133607982 -2074,90,0.2236700352102518,-0.001543444883032292,-0.008428762238063594,0.07249157145715,0.10792562594527849,0.1293404417100327,0.07541554416160166,0.004557092144708538,-0.013740007521101019,0.16225202355993668,0.5018961952423674 -2074,95,0.23907839050590993,-0.0011474984964666233,-0.006284048866780823,0.07576528915945659,0.1288149862102396,0.13940420705991152,0.07985694118594938,0.004557092144708538,-0.011098437587761379,0.1834558787039509,0.5355199459406014 -2075,5,0.13831112256646155,-0.019629994339089164,-0.03693183544888055,0.025991875748138077,0.02417236286394992,0.05368134578147532,0.0013634298821227986,-0.01505833657331309,-0.04531008236982052,0.06496558033851443,0.2902729692078073 -2075,10,0.14792265802919866,-0.014336242199904155,-0.03211515742620548,0.028977847595617372,0.029562423044004492,0.06274176452129887,0.005010058148998292,-0.01505833657331309,-0.040182952402789324,0.07348015444804287,0.3141259938075307 -2075,30,0.16968812847733494,-0.00749429972060826,-0.02376078953259237,0.03986800732393498,0.0441955408367683,0.0818414835594592,0.023243203734055706,-0.01505833657331309,-0.031024121009107355,0.09445395092611773,0.3674949160822913 -2075,33,0.17242527944892644,-0.006960798927467812,-0.022882517598360422,0.04166844561915393,0.04621122976530678,0.08411561645311885,0.025978176224597308,-0.01505833657331309,-0.03008285309868205,0.09699894557014473,0.37368294041823313 -2075,50,0.1866383035182953,-0.004732807070456092,-0.018590576658166276,0.050593234382978844,0.058176599812364116,0.09594771718048761,0.04147634719377315,0.004615516402974032,-0.02544258529525187,0.1110848592969336,0.4066696338824135 -2075,67,0.1990512611940503,-0.0032064701926429132,-0.014755443802935125,0.05987883516181014,0.07296311968176593,0.10804243906085954,0.05697452059190895,0.004615516402974032,-0.02124457334368615,0.12737378612693867,0.4412154414370994 -2075,70,0.201624014608562,-0.00297984708782434,-0.014065052199539888,0.06174960071431083,0.07623587642819012,0.11036465471600056,0.059709495511410526,0.004615516402974032,-0.02045371842999084,0.13076423323006792,0.4479193826148167 -2075,90,0.228298470890522,-0.001568325864676641,-0.00870477342223279,0.0740207951125488,0.11183056846809415,0.13175284684054062,0.07703098228393408,0.004615516402974032,-0.014145005185142525,0.16716606339211165,0.5131576443143172 -2075,95,0.2440603040277958,-0.0011642337642004067,-0.006491997484046004,0.07736759258440909,0.13349443507269732,0.1419875402767829,0.08158926086198354,0.004615516402974032,-0.011413532207937343,0.1891687631657905,0.5477096021939487 -2076,5,0.14134100560843943,-0.02013233734312169,-0.037972600727922544,0.026354182020937804,0.02500406429644904,0.05475420984176653,0.0010284037372373497,-0.015248948428671484,-0.04654215447877508,0.06659519658657022,0.29643198536500975 -2076,10,0.15112010502517223,-0.014687088234474606,-0.03302507720378315,0.02938803552590701,0.03057692265948523,0.06398547908629922,0.004769738367778845,-0.015248948428671484,-0.04128509314981516,0.07536956327153585,0.32080111341039275 -2076,30,0.17331226972639563,-0.007660929111415793,-0.024451396337040802,0.040572695862708064,0.04573975251166774,0.08342958003290478,0.0234764130385863,-0.015248948428671484,-0.03188066047129727,0.09696569764341041,0.3754095076515737 -2076,33,0.17607195821404456,-0.007111604674262956,-0.023550691849003904,0.04240495787615552,0.0478349209131664,0.08573920650083464,0.02628241317653743,-0.015248948428671484,-0.03092009772992018,0.09961624648723724,0.3817365284531853 -2076,50,0.1905431361347437,-0.004831450090350382,-0.01914394979790882,0.051549957650996736,0.06023152726350382,0.09778500139152022,0.042183082244233824,0.004673940661239526,-0.026155775376633973,0.11415132853358462,0.41547690192338005 -2076,67,0.2032019503131509,-0.0032686519552104793,-0.015198689398503476,0.06105147474796057,0.07555780730573734,0.11008877937392929,0.058083753740890184,0.004673940661239526,-0.021837208928259008,0.13099582755800457,0.4508611569433421 -2076,70,0.2058222556710243,-0.0030362649626718757,-0.014496361044605603,0.06299418803946294,0.07895421962853214,0.11244846598901506,0.06088975630780129,0.004673940661239526,-0.021023865080004603,0.134490032016768,0.45777354214994737 -2076,90,0.23295250261723993,-0.0015929363533430155,-0.008977239109860447,0.07555557363282524,0.11587497238293645,0.13420824999546507,0.07866110104031832,0.004673940661239526,-0.014539502484659574,0.17221976836685216,0.5246756369154808 -2076,95,0.24895141764879228,-0.0011820450453321229,-0.00670367842007839,0.07897417640713776,0.13832607693789964,0.1446408614504562,0.08333776226933028,0.004673940661239526,-0.011736851370368355,0.19500108864167115,0.5602642800918906 -2077,5,0.14443925809860228,-0.02063527820132292,-0.039039374139152615,0.026716919180702053,0.025866272630102917,0.05584428971416823,0.000683237595341881,-0.015439560284029877,-0.0478063921375244,0.06826971098592521,0.30271670782819743 -2077,10,0.15438520778715611,-0.015046103754852082,-0.03396349432716166,0.029798863300209838,0.031639328650390305,0.06526072358396909,0.004520473637854058,-0.015439560284029877,-0.04240818738553539,0.07732008224056865,0.3276367099302026 -2077,30,0.17698875948786735,-0.007830865043885077,-0.02515890198390905,0.04128184808081418,0.04735458003838573,0.08504288864992735,0.02370665901195488,-0.015439560284029877,-0.03276261157864834,0.09957170682169297,0.38350758301532767 -2077,33,0.17982083094120024,-0.007267968331378634,-0.024232795178979995,0.04314613539214632,0.049529411908595625,0.08739549019729705,0.02658458551250402,-0.015439560284029877,-0.03176988242682255,0.10229469610209178,0.3899501913976554 -2077,50,0.1945317148938775,-0.00492806736893347,-0.019712285505974307,0.0525139403856036,0.0623833649400153,0.09964439980135123,0.042892838920895765,0.00473236491950502,-0.026882715465689225,0.11731843203093253,0.4244868846568367 -2077,67,0.20737865962684154,-0.0033293168276545978,-0.015653068495072,0.06223374299996591,0.07827347986076313,0.11217683631230095,0.05920109475824749,0.00473236491950502,-0.022450293811545813,0.13475050689616702,0.4607137620559644 -2077,70,0.21004655802249908,-0.0030930342936628715,-0.014939698448184898,0.06424962236341046,0.08179404844974435,0.11457530096629674,0.06207902854567653,0.00473236491950502,-0.02161593433995996,0.1383434884481159,0.46784949204156157 -2077,90,0.23763544791340827,-0.0016187468838596592,-0.009254130309496624,0.07710442883051417,0.12008762610674524,0.13670343933159354,0.0803059052886743,0.00473236491950502,-0.014949477362304705,0.1774745246419013,0.5364244310934139 -2077,95,0.2540799977272749,-0.0011988492538504484,-0.0069156231079302586,0.08059311142053373,0.14336911905575195,0.1472953122632279,0.08510245026590953,0.00473236491950502,-0.012069959623687567,0.20112687270325985,0.5728850192089933 -2078,5,0.14735786210000515,-0.02115591428480192,-0.04011454501904093,0.027076797746325612,0.02673961842065262,0.05693607030918141,0.0003279405650362757,-0.01563017213938827,-0.049083787880288096,0.0699720597339323,0.30882461406583694 -2078,10,0.15747842052578925,-0.01540670808646815,-0.03491123906883916,0.030210316825045394,0.032713054038906154,0.06651537409839052,0.004262274282303801,-0.01563017213938827,-0.043534172895104625,0.07928780403239237,0.33428711966300506 -2078,30,0.18046073939949275,-0.008000505693178289,-0.025874323850446825,0.041995456237768916,0.048994882256765286,0.08667404414562405,0.02393394894104135,-0.01563017213938827,-0.03365122131908445,0.1022003180571236,0.39139607880214905 -2078,33,0.18334308066666125,-0.007426704954970416,-0.024927954174184214,0.04389197007708182,0.051248677463953354,0.08904935506538042,0.02688469809041701,-0.01563017213938827,-0.03262329806203593,0.10500761167235907,0.39797405630375576 -2078,50,0.19830657681822778,-0.005026686191169024,-0.020282878091646105,0.05348518258679945,0.06456892705951829,0.1015196815081103,0.04360561722375898,0.004790789177770515,-0.02761312630525766,0.12048959051977313,0.43331726799515463 -2078,67,0.21133646481782198,-0.0033912971767886884,-0.016118453496081563,0.06342562864304178,0.08103418991188799,0.11426296854278742,0.06032654364398086,0.004790789177770515,-0.023060251670555545,0.13855380677203888,0.47038747347134297 -2078,70,0.21406356694847345,-0.0031492736387471023,-0.015382494007306029,0.06551586756389288,0.0846866209376859,0.11669678966270464,0.06327729279335652,0.004790789177770515,-0.02220517411502654,0.14227229004836878,0.4777648073909751 -2078,90,0.24209012968540192,-0.0016427921796723919,-0.00953430886312713,0.07866734991888961,0.1243950789050204,0.13920570704081056,0.0819653901710821,0.004790789177770515,-0.015364300654469181,0.18278181184347927,0.5480646378970715 -2078,95,0.2587929812848568,-0.0012159321005563042,-0.007127669604426154,0.08222674875275265,0.1485166030496501,0.14994952292313132,0.08688329570420165,0.004790789177770515,-0.012403259942516115,0.2072849514165379,0.5854020218500533 -2079,5,0.1501928897500038,-0.021673860958732877,-0.04119646802811921,0.027414409889603503,0.027692226339092005,0.058086429608245345,-3.749889123931839e-05,-0.015820783994746665,-0.05039186081303783,0.07173477615902367,0.31500905916980754 -2079,10,0.1605062323361635,-0.015770496724545932,-0.03586836209085989,0.03062240173780586,0.03386010822521233,0.06781837180553114,0.003995129067188217,-0.015820783994746665,-0.04468346827069513,0.08133252453970471,0.3410167921714256 -2079,30,0.18393745305240156,-0.008173763519836213,-0.026598797370371942,0.04271352291373376,0.05071279665177396,0.0883190710018257,0.02415827311000584,-0.015820783994746665,-0.034551809577491994,0.10490386090108499,0.3994142272877211 -2079,33,0.18687720707952976,-0.007584364034555276,-0.025631194146930464,0.044642464627643534,0.05305497803582774,0.09074646484955946,0.027182741194436526,-0.015820783994746665,-0.03349790855662813,0.10779306465342194,0.406175862463928 -2079,50,0.2021312791109085,-0.005126330886665459,-0.020868469878497754,0.054463678861221276,0.06683570583756558,0.1034220175269607,0.04432140743698358,0.004849213436036008,-0.02835961569114777,0.12377816712019388,0.4423081935289089 -2079,67,0.2154145729601383,-0.003453513960380042,-0.016591209779234107,0.06462713167718818,0.08389036563215435,0.11637985091369346,0.06146008096641055,0.004849213436036008,-0.023696247520711398,0.14243821007248078,0.48029168694422464 -2079,70,0.2181967196792364,-0.003208526999406176,-0.015837374219973815,0.06679293912187897,0.08767020241270518,0.11884609203206807,0.06448455390876118,0.004849213436036008,-0.022809624461913553,0.14629920629604373,0.48785158743057727 -2079,90,0.24676900545358657,-0.0016680736352678764,-0.00982299591798959,0.08024434229131458,0.1287754778371762,0.14171747364824994,0.08363954597170184,0.004849213436036008,-0.015788819105835863,0.18826570170632734,0.5599810047774231 -2079,95,0.2637975210815668,-0.0012334397579524458,-0.007349904228276801,0.0838750940411867,0.15377662985509427,0.15259959684664287,0.08868031801588643,0.004849213436036008,-0.012734497566058394,0.2135523240556175,0.5983564615866889 -2080,5,0.15310525818169116,-0.02219802931015168,-0.04231630717619294,0.027751807811978297,0.028664126297972124,0.05924894267133883,-0.00041307075402502967,-0.016011395850105057,-0.05172005918181994,0.07355158069375578,0.3213363298452317 -2080,10,0.1636564621925354,-0.016145960892799266,-0.0368454171158052,0.03103512085718733,0.03504546954420719,0.06914095010759075,0.0037190455830072083,-0.016011395850105057,-0.045861589298093926,0.08343484737817357,0.3479462175468219 -2080,30,0.1875756477713585,-0.008348814902199355,-0.02735090304727033,0.04343605842935456,0.05250880551480628,0.08999281665268712,0.024379633947808312,-0.016011395850105057,-0.03547058010918761,0.10772352768957563,0.40769469820608756 -2080,33,0.1905880373567343,-0.007746021996810168,-0.02635632285784065,0.04539762983055744,0.05493356089566745,0.09245989601637232,0.027478722111442477,-0.016011395850105057,-0.03439111398172984,0.11067296980439859,0.4146253829265371 -2080,50,0.20617217426002027,-0.005228532532011175,-0.021463993804073163,0.055457902785529936,0.06919524489019932,0.10535276600744814,0.04504021927640946,0.004907637694301503,-0.029126935291908844,0.127190558771145,0.4516954591490888 -2080,67,0.21975624789595605,-0.003517941971077305,-0.017075076133065255,0.0658382633771895,0.08687785613333784,0.11851455939536584,0.06260171644137642,0.004907637694301503,-0.024339052104130073,0.14646715430678003,0.4906085255747949 -2080,70,0.2226025115415454,-0.003266980467514278,-0.016311754566439598,0.0680808421976917,0.09078557883923527,0.12103041160729605,0.06570080703397056,0.004907637694301503,-0.023431687211436254,0.15045048149030957,0.4984061577357868 -2080,90,0.25182333075106145,-0.0016933495703149962,-0.010122584014902515,0.08183541673451504,0.13335562783540547,0.14425948597099622,0.08532837269053353,0.004907637694301503,-0.016225883283096054,0.19390205506635694,0.5723953935039432 -2080,95,0.2692403459638357,-0.0012507769337799885,-0.007584099320691319,0.08553815856062026,0.15926380201440285,0.15533581155065856,0.09049351720096384,0.004907637694301503,-0.013089003747909422,0.2201030143850396,0.6119247123781867 -2081,5,0.15600400941073894,-0.022732524636011903,-0.043442704108871,0.028088988694753902,0.029609236395120763,0.06038313045987775,-0.0007987804884807881,-0.016202007705463452,-0.0530458049441868,0.07531935960743176,0.32752375879839557 -2081,10,0.1667930509775877,-0.016520894438899657,-0.03783151802116267,0.03144847136449371,0.03621015740138168,0.0704265505369339,0.003434022311660795,-0.016202007705463452,-0.04703954886135451,0.08549197477673907,0.3547673656634566 -2081,30,0.19124475064873694,-0.008524680285438381,-0.02809770992406854,0.04416304472350106,0.054266383101530646,0.09163936086737137,0.024598038741328678,-0.016202007705463452,-0.036385243432101894,0.11049297931281543,0.41597607066665765 -2081,33,0.19426365366578102,-0.007907102178130641,-0.027077628796556747,0.046157446809053065,0.05677747410400131,0.09414170699868123,0.027772640841434864,-0.016202007705463452,-0.035283577414710304,0.11352007905137235,0.4230570402212774 -2081,50,0.21023841286897657,-0.005329623542908207,-0.022061415547013796,0.05646378389266225,0.07153327171587687,0.10726296968328024,0.045762047884116655,0.0049660619525669965,-0.029887027397709074,0.13057830999423403,0.46105666145524093 -2081,67,0.22418655560016632,-0.0035823671414216096,-0.01755724802120312,0.06705900683086916,0.08983427399433824,0.1206280767252795,0.06375145978471838,0.0049660619525669965,-0.02498220198797059,0.15047043221695594,0.5009228888004245 -2081,70,0.22707792811095714,-0.003325186069365708,-0.016777005627160682,0.06937955615003931,0.09388178772159729,0.12318945146085399,0.06692606674274451,0.0049660619525669965,-0.024055607973313194,0.15458931767440387,0.5089397824244785 -2081,90,0.25697008840441704,-0.0017176347659990535,-0.010419188561907928,0.08344054628167603,0.13794593526194038,0.1467736322384622,0.08703188004341703,0.0049660619525669965,-0.016660365793286204,0.19958031803982215,0.5849269665940066 -2081,95,0.27462976312637327,-0.001266821162863045,-0.007810528766548742,0.0872159141240924,0.16475306335802345,0.15802711489137175,0.092322883543594,0.0049660619525669965,-0.01343727670919095,0.2266715577528657,0.625499278519264 -2082,5,0.15887504562735558,-0.023273362205169464,-0.044572956478987215,0.028425955356626415,0.030602647425516456,0.06153654675003083,-0.0011946268801266092,-0.016392619560821844,-0.05438643424714942,0.0771476033097721,0.3338115000398562 -2082,10,0.16988028447031975,-0.016898581917532664,-0.03882247325853714,0.031862458897117196,0.03742289890407932,0.07175044735916354,0.0031400568241890074,-0.016392619560821844,-0.04823187359905942,0.08760941810958706,0.36162387640381416 -2082,30,0.19482521114349363,-0.008705164621395381,-0.028848642570776854,0.04489449469698059,0.05609205248849537,0.0932989335069425,0.02481347777472706,-0.016392619560821844,-0.037320055329217824,0.11334961309092376,0.42421598252345943 -2082,33,0.19793164744973182,-0.008070725183587528,-0.027806479401360922,0.04692192904653789,0.05868936458767696,0.09585893045428887,0.028064490097533777,-0.016392619560821844,-0.036189247911200574,0.11643050148132075,0.43144916796769467 -2082,50,0.21419619535654782,-0.00543198057355644,-0.022671013514897007,0.05747723519353047,0.07394617125679226,0.10918146941323806,0.04648689326010518,0.005024486210832491,-0.030658135508451742,0.13401265225517878,0.47038075322264583 -2082,67,0.22842324882000684,-0.003646568609469013,-0.018053742325470388,0.06828937895040373,0.09284555483285024,0.12276089027457016,0.06490930128059652,0.005024486210832491,-0.025628965508833697,0.15452646787035462,0.511189918361283 -2082,70,0.2313781899511814,-0.003384323528412574,-0.01724791623545311,0.0706891119408594,0.09703026963974594,0.12535193057761176,0.06816031846132319,0.005024486210832491,-0.02468211833471233,0.15880880572554182,0.519384740779039 -2082,90,0.2618857367098331,-0.0017443154570524323,-0.010725890027202227,0.08505975789961252,0.1425747806436371,0.1493206783730173,0.08875006803035233,0.005024486210832491,-0.01709076844547965,0.20530338579159452,0.597325038067884 -2082,95,0.2798800824075937,-0.0012840037302936935,-0.008033923616576125,0.08890838891856405,0.17030248459471364,0.16072837238653717,0.09416841704377693,0.005024486210832491,-0.01379368571610927,0.23332319375863644,0.6389736144727709 -2083,5,0.16180495005846024,-0.023822049621687647,-0.04573000760528689,0.028762704978899736,0.03161019183813104,0.06272417779224451,-0.0016006099289624929,-0.01658323141618024,-0.05576124476300898,0.07900889382973153,0.34020526758299036 -2083,10,0.17300021868944168,-0.017282789314629433,-0.03984293957340088,0.032277072180273404,0.03866906773728936,0.07309905130779562,0.0028371515495518155,-0.01658323141618024,-0.049446853077605504,0.08978997799192397,0.3686065442016577 -2083,30,0.19836215145885944,-0.008885237624002217,-0.029621562712214125,0.04563040318947022,0.05797813361999839,0.09498223824958567,0.025025958334883365,-0.01658323141618024,-0.0382709648336373,0.11626285933841543,0.43244902029398224 -2083,33,0.20149388301372528,-0.008235155248684378,-0.028562404072408492,0.047691071149648934,0.06066289558589133,0.09758676511948335,0.028354279595579096,-0.01658323141618024,-0.03711570910128043,0.11942928099178175,0.43989338567709907 -2083,50,0.21806252741813661,-0.00553524587477517,-0.02329210147139925,0.0584982412071658,0.07644488330744169,0.11111734393876316,0.04721476026229498,0.005082910469097986,-0.03144253069691015,0.13753858998071097,0.47968080397404755 -2083,67,0.23253311194181442,-0.0037118897409025844,-0.018561903702958397,0.06952935718622444,0.09600064947015469,0.12493190931936798,0.0660752457869308,0.005082910469097986,-0.02629631858434483,0.15875141839718188,0.5214505904800094 -2083,70,0.23553037244081496,-0.003446537663845315,-0.017731674213300862,0.07200947344789146,0.10032008646295566,0.12755931622427683,0.06940356704762653,0.005082910469097986,-0.025331472459560654,0.16317910029212002,0.5298159575235203 -2083,90,0.2665387154817581,-0.001769051472344342,-0.011033921226004542,0.08669303001487252,0.14746070671614653,0.15189032733786267,0.09048293665133947,0.005082910469097986,-0.01753676427671135,0.21123567239677182,0.6097094567048417 -2083,95,0.2848475073441863,-0.0013004096317280579,-0.008265976293671148,0.09061556039446646,0.17613946673233888,0.16349537125131308,0.09603013713319236,0.005082910469097986,-0.01415628783299082,0.24017999200582493,0.6524802063032563 -2084,5,0.1646296559512615,-0.024377896155005994,-0.04690695541798137,0.029099240380269963,0.03262740635807678,0.0638796943532377,-0.0020167320639484084,-0.01677384327153863,-0.057151861629017996,0.08087592254982791,0.3465177498179648 -2084,10,0.1760806262642145,-0.017670474848525634,-0.04088031446553826,0.03269231685135452,0.039928781278725886,0.07442407298724535,0.002525301022589289,-0.01677384327153863,-0.050702765563980026,0.09198751314616498,0.3754987838601955 -2084,30,0.2019211427718401,-0.009068088285619428,-0.03040628338577867,0.04634602435365241,0.05989794847683098,0.09668578949935895,0.025235475563877657,-0.01677384327153863,-0.039237761163527424,0.11922627676040817,0.44080545013242156 -2084,33,0.2051818663716316,-0.008402360257795899,-0.02932477813537762,0.04846487851174917,0.06268075209801632,0.09931051137442251,0.02864200447765088,-0.01677384327153863,-0.0380526110585405,0.12249134990722181,0.44845342755125267 -2084,50,0.22204224777817724,-0.00564146470610197,-0.023924393794360253,0.059526822574859944,0.07901235127745919,0.1130706991820995,0.047945648890686046,0.0051413347273634785,-0.032240343800653895,0.14115512765779648,0.4891896659898225 -2084,67,0.23680339972674846,-0.003777057346582671,-0.019068978790416243,0.07077898100007664,0.09924037998089348,0.12710170366049103,0.0672492933037212,0.0051413347273634785,-0.026973753062395894,0.1630889990532044,0.5320104654087295 -2084,70,0.23986904284358024,-0.00350546570644185,-0.018220736152560264,0.07334067679339601,0.10372522798129219,0.1297878294866512,0.07065582221749443,0.0051413347273634785,-0.02597682778543899,0.16763698120954287,0.5405914343012266 -2084,90,0.27153181473016735,-0.0017940146964767524,-0.011341640316874634,0.08834039498763402,0.15251858817830868,0.1544977791915033,0.0922304859063784,0.0051413347273634785,-0.017994184180981324,0.21738666691259353,0.6226339036154604 -2084,95,0.29022608175873754,-0.0013175630459970871,-0.008499129179813497,0.09233746237615274,0.1821977419150974,0.1663155774920304,0.09790803409600043,0.0051413347273634785,-0.014516890717316936,0.24736201283067677,0.6666059818233427 -2085,5,0.16749001508951186,-0.024939008546446362,-0.04811162849624294,0.029435558742041002,0.03364519030537482,0.06504410510092483,-0.0024429853909644565,-0.016964455126897024,-0.05856612898540859,0.08276611541837191,0.3527374110721629 -2085,10,0.17920267758369446,-0.018060266738321246,-0.04193557937262566,0.03310820418514493,0.04118542862080209,0.07573405445713018,0.0022045167808612794,-0.016964455126897024,-0.051955691578095736,0.09418843340649177,0.3824779524548301 -2085,30,0.20561523722112177,-0.009253748079786689,-0.031201279159321915,0.047064239393024065,0.061838855344528945,0.09838138043558614,0.025442034319629873,-0.016964455126897024,-0.040210281540621305,0.12222190290980715,0.4493359215650772 -2085,33,0.20894733991920947,-0.008568598986067088,-0.030096856380797253,0.04924334034611262,0.0647151715298732,0.10103302857300928,0.028927664743749127,-0.016964455126897024,-0.038998344987899024,0.12557235662992797,0.45716785640741275 -2085,50,0.22617674603313206,-0.005747533858434446,-0.02455642315588797,0.0605629586553212,0.08161402042823467,0.11502826784392453,0.0486795494294385,0.005199758985628973,-0.03304963657481158,0.14481808792789203,0.4989601262016252 -2085,67,0.2413245596140623,-0.003843013864971487,-0.019582496359950317,0.0720382052928228,0.1025463602409784,0.1292779790880519,0.0684314389730478,0.005199758985628973,-0.027647548138864227,0.16748421916495868,0.5428138246026073 -2085,70,0.24445171698331833,-0.003566426106674934,-0.018711312815777165,0.07468269101543544,0.10718748034133357,0.13201329936966516,0.071917074255087,0.005199758985628973,-0.026627691651345466,0.1721888608679561,0.5516826738042405 -2085,90,0.27690949490368366,-0.001819710494699364,-0.011656919520376747,0.09000181506435605,0.15771642109057282,0.15710553355672918,0.09399270607962928,0.005199758985628973,-0.018444993054159982,0.22363613018381562,0.6359159678303961 -2085,95,0.2959693471729755,-0.0013358751776400832,-0.008732921593975842,0.0940740554018776,0.18847531928524355,0.16913583340496943,0.09980209821636127,0.005199758985628973,-0.014874017516580327,0.25473750021824826,0.6811244291739671 -2086,5,0.17081136788427828,-0.02550792039128518,-0.04934248264227269,0.029771662882908948,0.034694762957456465,0.06618594506511008,-0.002879380840330497,-0.017155066982255416,-0.060015900817104575,0.08470243746390414,0.35952856040395825 -2086,10,0.18271375764906406,-0.01845979571977237,-0.0430200197355428,0.033524714450771965,0.042481724526397445,0.0770635143450948,0.0018747866795679432,-0.017155066982255416,-0.0532447567427684,0.09646048024285403,0.38994143989458985 -2086,30,0.20960163744986057,-0.009436871066094624,-0.032011128357428635,0.04778631322734753,0.06384872750366383,0.10008953800606857,0.025645627315260107,-0.017155066982255416,-0.041209257680445734,0.1252823077336274,0.4582975303609723 -2086,33,0.2130061206758022,-0.008737595992529634,-0.03088393653230179,0.050026467439465275,0.06683135571054591,0.10278597504409914,0.029211253106993934,-0.017155066982255416,-0.03996793751533244,0.12874804652300761,0.4662888434073272 -2086,50,0.23057110302448272,-0.005853890919981087,-0.025203503390753865,0.06160667525016421,0.0843484152903891,0.11701553630332852,0.049416461878552344,0.005258183243894467,-0.033872231103538986,0.14860338188765132,0.5090392106666091 -2086,67,0.24595362002849577,-0.0039107339533423465,-0.020103404739159465,0.07330706388881605,0.10601351371197501,0.13150475441609413,0.06962167793699066,0.005258183243894467,-0.0283349565508946,0.1719983032529439,0.5539340204562414 -2086,70,0.2491278113871813,-0.0036268362365745317,-0.019209981219129677,0.07603554707594735,0.11081102648885154,0.1342909347934486,0.07318730858664443,0.005258183243894467,-0.02729397106602953,0.17690025051795008,0.5630731876782474 -2086,90,0.28213431350290774,-0.0018448437974948654,-0.011975732816832394,0.09167732260521656,0.1631599934258376,0.15978871461061128,0.095769606886932,0.005258183243894467,-0.018908892508466835,0.2301568556952303,0.6495890264214864 -2086,95,0.30165355122685433,-0.001352219781437639,-0.008968446723037378,0.09582537329599417,0.19506930208757756,0.17199027887898916,0.10171231977843499,0.005258183243894467,-0.015245852835515853,0.2624560567196627,0.695925439025277 -2087,5,0.17411827781796455,-0.026084544675368117,-0.05055899790059846,0.030107549984177702,0.03578133488663899,0.0673349233823667,-0.003325908088966663,-0.01734567883761381,-0.06146020536361607,0.08666154858223213,0.36638575634083426 -2087,10,0.1862194816812873,-0.018864668106982303,-0.044097180875352436,0.033941858923020006,0.04382255698211785,0.0784160065126729,0.001536120434549155,-0.01734567883761381,-0.054517482949146254,0.0987461159980939,0.397422640230043 -2087,30,0.21361501199722288,-0.009627424892589016,-0.03282937027825625,0.04851223458183842,0.06590147679374321,0.10180696435275684,0.02584626426660823,-0.01734567883761381,-0.04221108561553278,0.12839772824350712,0.4672225958044478 -2087,33,0.21706157452762126,-0.008905790269032111,-0.03167320929002714,0.05081282050888302,0.06897697622779306,0.10453945133900369,0.02949278657010508,-0.01734567883761381,-0.040940640238135276,0.13195000092100675,0.4754141285378474 -2087,50,0.23494814848899842,-0.005962173506233142,-0.02585886410845522,0.06265794655777433,0.08708601508149001,0.11900044108183586,0.0501564008117874,0.005316607502159961,-0.03470236591256598,0.15240960235906711,0.5191601321944725 -2087,67,0.25057286213338376,-0.003976603606343551,-0.020628503318753235,0.07459135845992651,0.10946428895697181,0.1337092311897766,0.07082002476930958,0.005316607502159961,-0.029034541811654477,0.17653634413309294,0.5651197427098597 -2087,70,0.2538110533207655,-0.0036879103796013026,-0.019711966987511605,0.07739921917331709,0.11443596905655516,0.13653246030292318,0.07446654950176641,0.005316607502159961,-0.027966717095978304,0.1816192989498641,0.5744041532481623 -2087,90,0.2873855698049068,-0.0018705481884146045,-0.012296291675179056,0.0933668906434006,0.1685678110063146,0.1624203419690868,0.0975611883282865,0.005316607502159961,-0.019378863218669162,0.23665146159167363,0.6631004894275158 -2087,95,0.30722271394729617,-0.0013700117581569738,-0.009213676213010405,0.09759138787154148,0.2015336382831545,0.17482533816479898,0.10363871821390135,0.005316607502159961,-0.01562078823570607,0.27003993969946505,0.7105844808701601 -2088,5,0.1769696292579174,-0.02666262150226015,-0.051802537885337896,0.03044322004584727,0.03691523146104179,0.06853020978792031,-0.003782577459952821,-0.017536290692972203,-0.06292965649604731,0.08867773997929734,0.37287157015855477 -2088,10,0.189372322717309,-0.01927031571118749,-0.04519521510639466,0.03437104211488185,0.045216044462683055,0.07978849526356534,0.0011885077227250479,-0.017536290692972203,-0.05582629956537084,0.10111196033172525,0.4046315435134396 -2088,30,0.21733366967588663,-0.00981526236414816,-0.033664076923037974,0.049242011912585024,0.06802870129447405,0.10354893193579058,0.026043935457834372,-0.017536290692972203,-0.04323396326166665,0.13160462741247358,0.4760642097454249 -2088,33,0.22086161670684815,-0.009078606855390785,-0.032479750207790446,0.051591863009949314,0.0712090654924482,0.10632541040008071,0.029772248130362788,-0.017536290692972203,-0.041931486910456624,0.13525981839995568,0.4844344839896661 -2088,50,0.23909296859800816,-0.006070165387884303,-0.026525392352304153,0.06371678805912034,0.08992261865824643,0.1210162926328836,0.050899361371223716,0.005375031760425455,-0.035545300105242164,0.15632176966701633,0.5292668971198833 -2088,67,0.25514863207614424,-0.004045224661122357,-0.02117191169665038,0.07590573399236168,0.11305142028885583,0.13593463165852274,0.07202646975416471,0.005375031760425455,-0.029738655352829373,0.18122597022262885,0.5763809759127931 -2088,70,0.2584491710186005,-0.0037501386889468758,-0.02023109235321555,0.07877371762819052,0.11818381796791834,0.13882941315835953,0.075754792142533,0.005375031760425455,-0.028656007538974543,0.18650188561139494,0.5858559556752176 -2088,90,0.29281164506077767,-0.0018974448842581882,-0.012630344591463302,0.09507053535899715,0.17417064426772066,0.16506015069322258,0.09936744068785296,0.005375031760425455,-0.019848911847637207,0.24339812591715235,0.6768795561360462 -2088,95,0.31297629791498166,-0.0013873022406057742,-0.00946465095401598,0.09937211604069612,0.20822280258663653,0.17766269457676623,0.10558130323860021,0.005375031760425455,-0.016007075352004546,0.2778908990737192,0.7256729056417813 -2089,5,0.17986051383912563,-0.02725337664177843,-0.053055826033684375,0.030778681524005928,0.03807738135279748,0.06975024573892538,-0.004249381666409066,-0.0177269025483306,-0.06439301870398795,0.09074778346158642,0.37957483608935016 -2089,10,0.19266872821316128,-0.019680090201205796,-0.04630862292367806,0.03480308824418586,0.046654847691015223,0.08116679026136112,0.0008319552237355358,-0.0177269025483306,-0.057134476845967085,0.10353495901793788,0.4120170215695712 -2089,30,0.22121326781511305,-0.010006364145058351,-0.03450187107651525,0.049975650856979525,0.07020272995621663,0.10530565162696161,0.026238645746858465,-0.0177269025483306,-0.04426354846621782,0.13481676966793874,0.4850584695806216 -2089,33,0.2248624317884445,-0.009251025953431104,-0.03329068210454844,0.05237526885256812,0.07348626031789345,0.1081179495507447,0.03004964750360693,-0.0177269025483306,-0.042934392625946956,0.13857544188383858,0.49361880359298727 -2089,50,0.2434022536486387,-0.006180313183000858,-0.027207020636676946,0.0647831894335564,0.09280200709319004,0.12303551800919038,0.051645328983101486,0.0054334560186909495,-0.03640195518904826,0.16032724999084952,0.5395102374810994 -2089,67,0.25982195287942883,-0.004113075054021856,-0.02171726826658581,0.07723030632290329,0.11667978423389766,0.1381674357103225,0.07324101289155602,0.0054334560186909495,-0.030458036642368916,0.1859753649859263,0.5877983798939931 -2089,70,0.26319083894491196,-0.0038125749342513716,-0.02076076506160879,0.0801590372802447,0.12198470532616207,0.14110292204578898,0.07705201707726445,0.0054334560186909495,-0.02935470995408354,0.19144687995516602,0.597488795327799 -2089,90,0.29831723263263704,-0.0019228210957352246,-0.012969711783012691,0.09678825675200621,0.17979845573850375,0.16772534939094563,0.10118837368147122,0.0054334560186909495,-0.020334733727585992,0.25010272790778043,0.690783888815235 -2089,95,0.3189588170439005,-0.0014042857128812951,-0.009719511797607059,0.10116755780345808,0.21497309857093427,0.18051406994512517,0.10754004570501197,0.0054334560186909495,-0.016398491414309484,0.28572993365836935,0.7409368834737532 -2090,5,0.18267271728515624,-0.027854886438376143,-0.05433724196236148,0.03111391750647712,0.039273883391913976,0.0709942580719947,-0.0047263182793754275,-0.01791751440368899,-0.06589383887587942,0.09285843326881761,0.3862394195184532 -2090,10,0.195858681756258,-0.0200968316700942,-0.047429601800608144,0.03523605933524322,0.04813150449696752,0.08256732513199967,0.0004664659737805801,-0.01791751440368899,-0.05846626607913836,0.1060078844726235,0.41939032728410836 -2090,30,0.224876751999557,-0.010197745998557778,-0.0353559249087668,0.05071313450284537,0.07243894031872179,0.10707838733329413,0.026430397562640484,-0.01791751440368899,-0.04530748654734032,0.13815262289534774,0.49407317830055864 -2090,33,0.22866987076252698,-0.009426676135255944,-0.034113619223647515,0.05316303803673945,0.07584478379676592,0.10992329281631245,0.030324987118797473,-0.01791751440368899,-0.043947804232169915,0.1420190938336378,0.5028142916258687 -2090,50,0.24762060039043426,-0.006292156186484409,-0.027891783926891473,0.06585715584140542,0.09577284628955512,0.12506287710473163,0.05239432307910047,0.005491880276956443,-0.03726816774993412,0.16439437440999882,0.5497366490446647 -2090,67,0.26439768867492675,-0.004182068388017613,-0.02227815582581387,0.07856509093252009,0.12044634008263141,0.14044905499458454,0.0744636638973234,0.005491880276956443,-0.031189040809081584,0.1908254704766099,0.5992064179095822 -2090,70,0.2678224425166845,-0.003874386242423758,-0.02129422621365671,0.0815551884501255,0.12591078648624018,0.14340048737720196,0.07835825831140032,0.005491880276956443,-0.030058738636412292,0.19648504674707815,0.60914845112747 -2090,90,0.30366803584992885,-0.001949403463914554,-0.013313320490642166,0.09852004403570178,0.18560643706227356,0.17041125075091776,0.10302398730914131,0.005491880276956443,-0.02082334807934783,0.2570819507738042,0.7048014061401119 -2090,95,0.32456315952837467,-0.001419642358204877,-0.009977890083624165,0.102977701885043,0.2219498144269876,0.18338972844753254,0.10951497476065623,0.005491880276956443,-0.016803654304581535,0.2938596904335768,0.756297121273106 -2091,5,0.18577059727311135,-0.02845430283325752,-0.0555904263361901,0.0314489449054374,0.04045979087513748,0.07219645514414977,-0.005213397621931774,-0.018108126259047386,-0.06741973853394974,0.09495008223135425,0.3930399152211816 -2091,10,0.1991787294983864,-0.020517210733292896,-0.04855550786231736,0.035669960781416925,0.049596634831425165,0.0839520509046397,9.20320787402817e-05,-0.018108126259047386,-0.059812177055593774,0.10848318010267861,0.4268689443969871 -2091,30,0.22869193448424338,-0.010390073301785605,-0.03620841684404183,0.051454474124966926,0.07466715764589843,0.10882264137421166,0.02661918361830052,-0.018108126259047386,-0.046346039817502085,0.14148029515423635,0.5031010005741428 -2091,33,0.2325479011416435,-0.00960534225722668,-0.03494103748317256,0.053967302225091475,0.07817916121630245,0.11172236176783304,0.030598257260094543,-0.018108126259047386,-0.044963134102355036,0.14546050467292493,0.5120087016466982 -2091,50,0.2518173372983933,-0.00640444965515992,-0.02857700181088972,0.0669386872826674,0.09873950118615532,0.12707370988625016,0.05314632908546084,0.005550304535221938,-0.03814044420405526,0.16845041680491463,0.5599446870145484 -2091,67,0.268879267001152,-0.004251902704473756,-0.022832732320025764,0.07991007234024333,0.12418847020561914,0.14269725300930572,0.07569440819770704,0.005550304535221938,-0.03191434425390058,0.19570923927483083,0.6105269325084104 -2091,70,0.2723605450689793,-0.0039380142256614315,-0.021825799946763067,0.08296216081718706,0.12983727334642173,0.14568557700301946,0.079673486697421,0.005550304535221938,-0.03076360083514905,0.20152489241040272,0.6206882367155604 -2091,90,0.3088106670588255,-0.001973912702551621,-0.013663243090659787,0.10026590799680984,0.19143191175358426,0.17308530504048006,0.10487428157086322,0.005550304535221938,-0.0213082217589479,0.2640737666693628,0.7187020393770143 -2091,95,0.3300606994450092,-0.0014362496741619193,-0.010226715194041896,0.10480255956023524,0.22891004882679775,0.1862465350838767,0.11150606125801338,0.005550304535221938,-0.017197613271112397,0.30197775320546766,0.7714238087342886 -2092,5,0.1890197611570358,-0.029064470995945647,-0.05690459669916874,0.03178375526479849,0.04172110242336439,0.07346334322801544,-0.005710613621678183,-0.01829873811440578,-0.06896145751024003,0.09715631526549805,0.40016260072346077 -2092,10,0.20263460598319769,-0.020941176828529896,-0.049714227559949455,0.03610479258270698,0.05114959510541897,0.08536786332749985,-0.00029134403242539036,-0.01829873811440578,-0.06118168350547432,0.1110540728901088,0.43461432073341 -2092,30,0.23265576857328416,-0.010582596848440503,-0.03708621145686547,0.05219967536073637,0.07702347426926949,0.11063011193928123,0.02680500877175851,-0.01829873811440578,-0.04742285436435672,0.14492583563397146,0.5123755082756862 -2092,33,0.23652708683907986,-0.00978543860166854,-0.03578911996526072,0.05479030664796586,0.08064045347659211,0.11356039534905535,0.03086946278541808,-0.01829873811440578,-0.04601083066896026,0.14905423653133576,0.5214986405571016 -2092,50,0.2561054652929306,-0.006517323609992754,-0.029284021768389713,0.06802778891766528,0.10185685802812916,0.1291497879867424,0.05390135671802247,0.0056087287934874315,-0.03903130492986964,0.17268880023266,0.5704571001497986 -2092,67,0.27343773220181466,-0.004321949245185602,-0.023406043150558904,0.08126526086671886,0.1281249147453612,0.14499447931100054,0.07693325550854681,0.0056087287934874315,-0.032661464804734024,0.20075291991833633,0.6221422751924623 -2092,70,0.2769650761526823,-0.00400218245695721,-0.02237881850279217,0.08437996470207523,0.1339444607216556,0.14801518109971143,0.08099771195116634,0.0056087287934874315,-0.03148234682620186,0.2067527723974628,0.6324780298709024 -2092,90,0.3139973800778389,-0.0020001426894399404,-0.014015034883346322,0.10202584863533042,0.19752172379343907,0.1757995062285281,0.10673924675079705,0.0056087287934874315,-0.021808952812132052,0.2712968370954153,0.7327955839807723 -2092,95,0.3356232043504715,-0.0014519988038343076,-0.01049979900729428,0.10664213082903479,0.23620136690781826,0.18915645945067178,0.11351333434460303,0.0056087287934874315,-0.017607352780102597,0.31046233396443224,0.78687241834378 -2093,5,0.1916761214673519,-0.029676262341152383,-0.05823962004203762,0.0321183485845604,0.043018067858189526,0.07471815463954767,-0.006217962027934709,-0.018489349969764174,-0.07052964622524241,0.099400177583335,0.40677574478330863 -2093,10,0.20567796770036223,-0.021370199150965472,-0.05089073627353238,0.036550652446859226,0.05276057279662823,0.08681372398118872,-0.000683656287316514,-0.018489349969764174,-0.06258146299493338,0.11368309808469579,0.4420035482465014 -2093,30,0.23617794561386107,-0.010783168390344525,-0.03798644972196553,0.05294872693536935,0.07946442677599212,0.1124491901887429,0.026987875451974425,-0.018489349969764174,-0.048513462738573404,0.14850322135087737,0.5214019571182876 -2093,33,0.2401788292825222,-0.009966566575393345,-0.03665988366740169,0.05561824433955975,0.08319279462894519,0.1154289965456393,0.03113860612372805,-0.018489349969764174,-0.04706767050943737,0.15271513677380677,0.5307902565929591 -2093,50,0.26016608741879466,-0.006631759570520127,-0.03000302695972422,0.06912445042575321,0.10510342177035925,0.1312568184919783,0.054659405976785376,0.005667153051752926,-0.03993878651308101,0.17705975109260713,0.5808355971447026 -2093,67,0.2777728501856327,-0.00439479848001905,-0.023995504100194995,0.0826306616722696,0.13221330461427908,0.14731762552288502,0.07818019611400283,0.005667153051752926,-0.033428451929676424,0.20598985687982696,0.6337647580276015 -2093,70,0.2814187663078308,-0.004065464688663567,-0.02294094655318349,0.08580858978414416,0.13822568651514425,0.1503906815110416,0.08233092921471642,0.005667153051752926,-0.032224658650149694,0.2121463669403272,0.6443403760251929 -2093,90,0.3191131383031607,-0.002027169318498937,-0.014374227310985624,0.1037998659512635,0.20387584210246454,0.1785510143902935,0.1086188925647827,0.005667153051752926,-0.02231690483986132,0.2787873066350367,0.7472779021964673 -2093,95,0.3410365596175194,-0.00146800434153538,-0.010764120824344801,0.10849641569144167,0.2438054739482105,0.19212534317955965,0.11553677458874545,0.005667153051752926,-0.01801672526908908,0.3192488731413863,0.8025717012067137 -2094,5,0.19479938701987265,-0.030292717674022734,-0.05956107156546145,0.032452724864723115,0.04436157684902719,0.07602326397683715,-0.006735445876901314,-0.018679961825122566,-0.07210863380435525,0.10171969593794844,0.4139053682139142 -2094,10,0.20905558982491496,-0.02180240775496493,-0.05207999924973681,0.03700039781151845,0.05441668374673183,0.08826112935754789,-0.0010849083293730424,-0.018679961825122566,-0.0639826924331697,0.11637179930687601,0.44984854919508344 -2094,30,0.24009345388412476,-0.010982157679202065,-0.03888704218562811,0.053701628848865854,0.08195395684915348,0.11428212285733004,0.02716778608790823,-0.018679961825122566,-0.04961302281750387,0.1521124886407088,0.5308651677494293 -2094,33,0.24413394459486007,-0.010146922571025166,-0.03753228064451836,0.05645109465858143,0.08579897442395663,0.11729950647352107,0.03140568970398443,-0.018679961825122566,-0.04813359944239774,0.15643364404266785,0.5404480119387557 -2094,50,0.2644585609853268,-0.0067471987053674175,-0.030730666249297232,0.07022867180693117,0.10839002118180786,0.1333524553113534,0.05542047200382961,0.00572557731001842,-0.04085497605811877,0.1814748626153199,0.5915722473123686 -2094,67,0.28238758333027364,-0.0044645034303908175,-0.02459397989101609,0.0840062489552809,0.13636021303231374,0.14963747292052754,0.07943525916159473,0.00572557731001842,-0.03419713314433044,0.21126315628691436,0.6456399984770155 -2094,70,0.2861101831316948,-0.0041299792885965796,-0.023511914783031045,0.08724803606339385,0.14254559816150583,0.15276705472378962,0.08367316277767092,0.00572557731001842,-0.032968857791333434,0.2176060633243835,0.6564573865869955 -2094,90,0.3244857067167759,-0.0020539101302294157,-0.014746729192144552,0.10558793837115711,0.2102468167357235,0.18128043856032502,0.11051321901282019,0.00572557731001842,-0.022836659610247632,0.28630803728725707,0.7620094219050139 -2094,95,0.34678488473296165,-0.0014845376871959704,-0.011039374349117915,0.11036539159788712,0.25146462308869516,0.19507403285939193,0.11757640142212038,0.00572557731001842,-0.018435712732463187,0.3280280357328119,0.8186660081090801 -2095,5,0.19816205969452858,-0.030915254731098452,-0.06091311152071111,0.03278688974267883,0.04568879724020486,0.0772841877700427,-0.007263071848217911,-0.01887057368048096,-0.07368400251558407,0.1040399372858591,0.42119670740359577 -2095,10,0.21267182031273843,-0.022238668291683746,-0.05327819486767071,0.03745134811158144,0.05606953018532901,0.08970500856283102,-0.0014951074454748823,-0.01887057368048096,-0.06539518594222454,0.11901822920976332,0.45787037047729134 -2095,30,0.24424481075406074,-0.011184422918610085,-0.03979247590093088,0.054458398013402444,0.08444237665458285,0.11609401300065982,0.027344723676840144,-0.01887057368048096,-0.0507161599105815,0.15570334764621144,0.5405338060184007 -2095,33,0.24836735649108888,-0.010330306935173816,-0.03840632180548255,0.05728437534653744,0.0884049586465852,0.11915906415401226,0.03167069895242739,-0.01887057368048096,-0.049206881762856584,0.1601614103316453,0.5503386859214501 -2095,50,0.26904043133854866,-0.006863391248158355,-0.03145929351667533,0.07134047370249089,0.11167111128038666,0.13543261941090656,0.056184549941235236,0.005784001568283914,-0.04176784369416526,0.18589024054649675,0.6025721683972739 -2095,67,0.28728085804581643,-0.004534652387436814,-0.025184086994939358,0.08539206399833621,0.14051072822033794,0.15195096815967132,0.08069840093004307,0.005784001568283914,-0.03496658242554309,0.2165658694820272,0.6578274674321182 -2095,70,0.29106787623167035,-0.004193394329992327,-0.024079834726211547,0.08869831386047014,0.1468781911291488,0.15513922797602048,0.08502437377667035,0.005784001568283914,-0.03371748945414719,0.22309669226010476,0.668894341148158 -2095,90,0.33011085950434205,-0.002079716002478551,-0.015110119125236894,0.10739008746846322,0.21666794961138325,0.18401771392056085,0.11242222609490947,0.005784001568283914,-0.023352989019375808,0.29387766350651284,0.7768933823966996 -2095,95,0.35280168935358525,-0.0015002465093209515,-0.011317757980706061,0.11224908109793989,0.2591457615990991,0.19800875891745634,0.11963217598136833,0.005784001568283914,-0.018852590740832356,0.33683278973096187,0.8350579832870041 -2096,5,0.20118044301122426,-0.03155070169839368,-0.062273265008261344,0.03312083476233926,0.047069838191834176,0.07854857200541936,-0.007800832047764602,-0.019061185535839353,-0.07527758921376337,0.10636384345146283,0.428296834859857 -2096,10,0.21597430539131163,-0.02268062299865694,-0.05447758145873696,0.03790349302640235,0.05777408155326133,0.09115068986484963,-0.0019142439197821584,-0.019061185535839353,-0.06682557091746955,0.12175034523065775,0.4656952994702148 -2096,30,0.24812187590599058,-0.01138641893696261,-0.04070586976907986,0.05521901187941037,0.08698192929695753,0.11792319806436576,0.027518707650449923,-0.019061185535839353,-0.05183072724721938,0.1593710629682458,0.5500521669633011 -2096,33,0.2524163347959518,-0.01051821949795441,-0.03929139741532711,0.05811411727624116,0.09107017735683684,0.12101781609112738,0.0319336533007367,-0.019061185535839353,-0.050293421503855025,0.16395680264767673,0.5601000963850891 -2096,50,0.2734528044611216,-0.006980509893652179,-0.032197129969022804,0.07245983031081771,0.11504802700219786,0.13753974251492024,0.056951649504842126,0.005842425826549408,-0.04269630829399761,0.1904089759497492,0.613468873343261 -2096,67,0.2919981853246689,-0.004606493438834549,-0.025786613000634704,0.08678806551885208,0.14474973029186286,0.15426864520158207,0.08196965542478743,0.005842425826549408,-0.035748113988451645,0.22198758480781738,0.6699330559605324 -2096,70,0.29581314225196836,-0.004257756106036444,-0.02465566729286034,0.09015940769440428,0.15131233416341985,0.15751220531104432,0.0863846010750742,0.005842425826549408,-0.034471341257906615,0.22869646963851795,0.6812289662472069 -2096,90,0.3355101974457502,-0.00210563123035166,-0.015478080682303642,0.10920630245645586,0.22321017002977225,0.186756661642151,0.11434591381105057,0.005842425826549408,-0.023889786899365544,0.30157456509855624,0.7918540791346095 -2096,95,0.35873628968596455,-0.0015170578893559678,-0.011598517268116863,0.11414747291681562,0.26698240684418484,0.20097737134954818,0.12170414684568866,0.005842425826549408,-0.019286716082708804,0.34582616455409565,0.8513145199811842 -2097,5,0.20415161967873574,-0.032193525111625085,-0.06365100994255514,0.0334545655610966,0.04856513070968774,0.07987725667038242,-0.0083487410493012,-0.01925179739119775,-0.0768975374776204,0.10881921746179402,0.4354890519735658 -2097,10,0.2192611675709486,-0.023126907280748458,-0.055700430220510584,0.038356840296465564,0.05958517956573674,0.09266873450031056,-0.002342332326054683,-0.01925179739119775,-0.06827643987705437,0.12461024012711211,0.4735915750164433 -2097,30,0.2519905798137188,-0.011593868291610009,-0.041649367144091586,0.05598348735906619,0.08968539543946377,0.11981199906661011,0.027689721006017777,-0.01925179739119775,-0.05296666522291453,0.16318391659439646,0.5597258489598519 -2097,33,0.256301943820715,-0.010705418385639301,-0.04021085182785289,0.05894851907157109,0.09387748097474771,0.12293379404320279,0.03219452845931265,-0.01925179739119775,-0.051408678286726545,0.16790402200857,0.56999470616329 -2097,50,0.27784085315465923,-0.007100292999463719,-0.032957195161206994,0.0735867519525575,0.11858527416214343,0.1396767801715499,0.057721765836730346,0.0059008500848149025,-0.04364570665873593,0.1951287878554297,0.624595479963487 -2097,67,0.2967622389793396,-0.004677248970613915,-0.026405911952305405,0.08819427415812024,0.14920754652851845,0.15664401660313568,0.08324900807206798,0.0059008500848149025,-0.036555206273662405,0.22761474936788126,0.6823209631548164 -2097,70,0.3006434982061386,-0.004322454539406741,-0.02524940551211519,0.09163133820648796,0.1559759092803359,0.15993013848776352,0.08775381552536285,0.0059008500848149025,-0.035249262860411086,0.23448921214053586,0.6938823161955007 -2097,90,0.3411921624183655,-0.002131113755844408,-0.01586156494334058,0.11103661569531297,0.2300534418142239,0.18956165177401887,0.11628426272956374,0.0059008500848149025,-0.024424255922705054,0.30964272738358534,0.807084444774236 -2097,95,0.36459251793920994,-0.0015340184256634564,-0.011884457643267914,0.11606060087886741,0.2751603402892556,0.2039726711575113,0.12379227515172186,0.0059008500848149025,-0.019714237991179988,0.3551509854988012,0.8682165443356807 -2098,5,0.20729848485589028,-0.03283078899465157,-0.06502950207684514,0.033788079320254745,0.050067368698127966,0.08120899677475606,-0.008906768490828094,-0.01944240924655614,-0.07853984687304726,0.11132403640748029,0.44285760314739464 -2098,10,0.22275147180452945,-0.023577518248685612,-0.056940145491148696,0.03881138476144816,0.06141523150005603,0.09417562116807218,-0.0027793447312528157,-0.01944240924655614,-0.06974424118646425,0.1275068508843273,0.48178963210414444 -2098,30,0.25610851443707944,-0.011801349293775012,-0.04259197504082509,0.05675180754019336,0.09242029375549328,0.12167456061693938,0.027857780746263494,-0.01944240924655614,-0.05411683594198342,0.16703368479764688,0.5696909638147467 -2098,33,0.2605709899663925,-0.010892402001351695,-0.04112485513367473,0.05978758612589021,0.09674731724090006,0.12484871227858235,0.03245334871775495,-0.01944240924655614,-0.05252707763753767,0.17192323679263996,0.5801707173755731 -2098,50,0.2824496099501848,-0.007218724287824798,-0.03371773108475678,0.07472124378803317,0.12217736631758483,0.14182938019562635,0.058494903794819836,0.005959274343080396,-0.044609338143958635,0.19987605529520028,0.6359940900527637 -2098,67,0.30180581188201905,-0.004749972448795152,-0.027041295870403423,0.08961070023678655,0.15372728704747668,0.1589969528669934,0.08453645401396478,0.005959274343080396,-0.037370488054370224,0.23329738026275312,0.6949638340012206 -2098,70,0.3057268185943365,-0.004388272602850408,-0.025857037396346403,0.0931110478815823,0.16069558543341597,0.16234147528611276,0.08913202684337618,0.005959274343080396,-0.0360278632261471,0.24036282854493513,0.7067658174348036 -2098,90,0.34718831181526183,-0.002156175623744559,-0.016253545511194525,0.1128809948248566,0.2369794149535231,0.19233676807713904,0.11823729228212872,0.005959274343080396,-0.02495523596306456,0.3177407622919931,0.8227257121693734 -2098,95,0.37091931935548783,-0.0015512046171059083,-0.012179696913953871,0.11798843115974215,0.2834351625348503,0.20697746353279403,0.1258965803311477,0.005959274343080396,-0.02015961010876021,0.36461540253530245,0.8854191437419683 -2099,5,0.21063171872496605,-0.03347819951425641,-0.06645670760290996,0.0341213788585098,0.05157073337743523,0.08252144137893298,-0.009474939876424959,-0.019633021101914536,-0.08020722414076463,0.1138216335033624,0.4504042532909996 -2099,10,0.22632063117027287,-0.02403136390936306,-0.05820098588494925,0.03926713416183452,0.06323901997882028,0.09568139542194759,-0.0032253042104962593,-0.019633021101914536,-0.0712216973543673,0.13040370513736277,0.49008301934018056 -2099,30,0.2602229839295149,-0.012010680547679195,-0.04355985065360605,0.05752399497236061,0.09519693890503295,0.12355403098864255,0.028022882013267133,-0.019633021101914536,-0.05528229734492106,0.17095015930083732,0.5797011710839484 -2099,33,0.26476242544651035,-0.01108322413455967,-0.042052944980053256,0.06063130765247256,0.09964301400332325,0.12678011156326316,0.03271010921814365,-0.019633021101914536,-0.05365575002778226,0.17596997356160138,0.5903836178663242 -2099,50,0.2870058792680502,-0.007337064127371445,-0.034488235522116384,0.0758632954965989,0.1258519523003568,0.1439798528552267,0.059271058521190655,0.006017698601345891,-0.04558162449545494,0.20471549007011025,0.6474529220108345 -2099,67,0.30669529474675655,-0.004825050712512412,-0.0276747865171629,0.09103731279291342,0.15834652889875744,0.16138201238956723,0.0858320126821576,0.006017698601345891,-0.038182795013273756,0.2391118409220099,0.7076739495170313 -2099,70,0.3106719780921936,-0.0044554637013432645,-0.02646469946468453,0.09457812282425258,0.16553484673173796,0.16475989365379873,0.09051924474495404,0.006017698601345891,-0.03682182113597909,0.24639994474352594,0.7197950409641728 -2099,90,0.3528404293656349,-0.0021829014436223616,-0.016633654028166755,0.11473942905836075,0.24411695172482645,0.1951519261693054,0.12020503161626514,0.006017698601345891,-0.025492637235082917,0.32607497012400677,0.8384272767425437 -2099,95,0.3769679470181465,-0.0015674392235823613,-0.012473091760224117,0.11993095248465548,0.29197667523226667,0.2099791548795904,0.12801707209980606,0.006017698601345891,-0.02059704346022763,0.3743887116566472,0.9026939539862813 -2100,5,0.2135869759082794,-0.03413262318235626,-0.06792077275416071,0.03445446417586176,0.053047068821218964,0.08380405637339668,-0.010053249133691869,-0.01982363295727293,-0.08192117413556732,0.11633843876863466,0.45755697266817524 -2100,10,0.2295872741818428,-0.024491728909914898,-0.059492083399114104,0.03972408075714026,0.06509503104666546,0.09716179354014426,-0.0036802059058650767,-0.01982363295727293,-0.07274766614348378,0.1333256171661405,0.49803282284320444 -2100,30,0.2641448208391666,-0.012221103388047848,-0.04453458454777791,0.05830002710599919,0.09801186198367576,0.12542682964367208,0.02818501509118882,-0.01982363295727293,-0.05646843787179592,0.17491806373109892,0.5896002678696313 -2100,33,0.26875351349115373,-0.01127492243999173,-0.04298999881796093,0.06147969983140709,0.10260175872176282,0.12869978464223156,0.03296479538671895,-0.01982363295727293,-0.0548067162471539,0.1801004932212384,0.6004590304559989 -2100,50,0.29137280248105524,-0.0074590487791332555,-0.035272314011796174,0.07701291223857759,0.12963218645223432,0.14614911511394874,0.06005022515792286,0.0060761228596113845,-0.046568435979930184,0.20966847515033255,0.6588042304343367 -2100,67,0.3114541485786438,-0.004896971318850863,-0.028312836740748037,0.09247413246779258,0.16313768806875106,0.16378418706986797,0.08713565492912678,0.0060761228596113845,-0.03900295036481634,0.24507114752430004,0.720455166315426 -2100,70,0.31546630893051625,-0.004522196224276333,-0.027075594982749702,0.09605550291984018,0.1705576170966653,0.16722074210500432,0.09191544008257684,0.0060761228596113845,-0.03762059084121434,0.25262027757944544,0.732876326986776 -2100,90,0.35846551283597944,-0.0022099830073475804,-0.017030573830080067,0.11661193996927742,0.25162286515642,0.19802788502510305,0.122187403005254,0.0060761228596113845,-0.026045405806475547,0.33469500685002684,0.8543800395741145 -2100,95,0.38299047448039053,-0.0015827869321704423,-0.012762693256238078,0.12188818740317611,0.3010249534917334,0.2130948739645791,0.13015370187849756,0.0060761228596113845,-0.021050856751145982,0.38457789374274753,0.9203046175346759 diff --git a/profsea/Falkland_example/data/zos_regression/STANLEYII_zos_regression.csv b/profsea/Falkland_example/data/zos_regression/STANLEYII_zos_regression.csv deleted file mode 100644 index 5f12cf8..0000000 --- a/profsea/Falkland_example/data/zos_regression/STANLEYII_zos_regression.csv +++ /dev/null @@ -1,64 +0,0 @@ -Model,Scenario,i,j,lon,lat,slope_05_00,slope_50_00 -ACCESS1-0,rcp26,302,38,-99.0,-99.0,NA,NA -ACCESS1-0,rcp45,302,38,-58.0,-51.5,0.8124,0.8207 -ACCESS1-0,rcp85,302,38,-58.0,-51.5,0.8968,0.9394 -bcc-csm1-1,rcp26,303,38,-57.0,-51.5,0.9967,0.8977 -bcc-csm1-1,rcp45,303,38,-57.0,-51.5,0.9837,1.0357 -bcc-csm1-1,rcp85,303,38,-57.0,-51.5,1.0587,0.9963 -CNRM-CM5,rcp26,302,38,-58.0,-51.5,0.8915,0.8209 -CNRM-CM5,rcp45,302,38,-58.0,-51.5,0.9267,1.0671 -CNRM-CM5,rcp85,302,38,-58.0,-51.5,0.9335,0.9214 -CSIRO-Mk3-6-0,rcp26,302,38,-58.0,-51.5,0.8026,0.8992 -CSIRO-Mk3-6-0,rcp45,302,38,-58.0,-51.5,0.7912,0.7679 -CSIRO-Mk3-6-0,rcp85,302,38,-58.0,-51.5,0.7298,0.7491 -CanESM2,rcp26,302,38,-58.0,-51.5,1.0095,1.2558 -CanESM2,rcp45,302,38,-58.0,-51.5,1.0037,1.0984 -CanESM2,rcp85,302,38,-58.0,-51.5,0.9549,0.9383 -GFDL-ESM2G,rcp26,303,38,-57.0,-51.5,0.7431,0.5977 -GFDL-ESM2G,rcp45,303,38,-57.0,-51.5,0.8681,0.7124 -GFDL-ESM2G,rcp85,303,38,-57.0,-51.5,0.9006,0.8803 -GFDL-ESM2M,rcp26,303,38,-57.0,-51.5,0.9605,0.9844 -GFDL-ESM2M,rcp45,303,38,-57.0,-51.5,0.9995,1.0848 -GFDL-ESM2M,rcp85,303,38,-57.0,-51.5,0.9387,0.937 -GISS-E2-R,rcp26,302,38,-58.0,-51.5,1.2126,1.1213 -GISS-E2-R,rcp45,302,38,-58.0,-51.5,1.3341,1.3666 -GISS-E2-R,rcp85,302,38,-58.0,-51.5,1.2791,1.2341 -HadGEM2-CC,rcp26,303,38,-99.0,-99.0,NA,NA -HadGEM2-CC,rcp45,303,38,-57.0,-51.5,0.8102,0.7802 -HadGEM2-CC,rcp85,303,38,-57.0,-51.5,0.9205,0.9737 -HadGEM2-ES,rcp26,303,38,-57.0,-51.5,0.752,0.9064 -HadGEM2-ES,rcp45,303,38,-57.0,-51.5,0.9137,1.0367 -HadGEM2-ES,rcp85,303,38,-57.0,-51.5,0.939,0.9486 -inmcm4,rcp26,303,38,-99.0,-99.0,NA,NA -inmcm4,rcp45,303,38,-57.0,-51.5,0.8655,0.8252 -inmcm4,rcp85,303,38,-57.0,-51.5,0.904,0.9146 -IPSL-CM5A-LR,rcp26,302,38,-58.0,-51.5,0.9644,0.8353 -IPSL-CM5A-LR,rcp45,302,38,-58.0,-51.5,0.9836,0.96 -IPSL-CM5A-LR,rcp85,302,38,-58.0,-51.5,0.9308,0.8618 -IPSL-CM5A-MR,rcp26,302,38,-58.0,-51.5,0.9467,0.7313 -IPSL-CM5A-MR,rcp45,302,38,-58.0,-51.5,0.8253,0.8164 -IPSL-CM5A-MR,rcp85,302,38,-58.0,-51.5,0.8111,0.865 -MIROC-ESM,rcp26,302,38,-58.0,-51.5,1.1287,1.1321 -MIROC-ESM,rcp45,302,38,-58.0,-51.5,1.0499,1.0589 -MIROC-ESM,rcp85,302,38,-58.0,-51.5,0.9667,0.9564 -MIROC-ESM-CHEM,rcp26,302,38,-58.0,-51.5,1.2532,1.3495 -MIROC-ESM-CHEM,rcp45,302,38,-58.0,-51.5,1.1115,1.1221 -MIROC-ESM-CHEM,rcp85,302,38,-58.0,-51.5,0.9752,0.9462 -MIROC5,rcp26,302,38,-58.0,-51.5,0.9054,1.1963 -MIROC5,rcp45,302,38,-58.0,-51.5,0.8865,0.8445 -MIROC5,rcp85,302,38,-58.0,-51.5,0.7309,0.6791 -MPI-ESM-LR,rcp26,302,38,-58.0,-51.5,0.805,0.7276 -MPI-ESM-LR,rcp45,302,38,-58.0,-51.5,0.8593,1.0201 -MPI-ESM-LR,rcp85,302,38,-58.0,-51.5,0.9167,0.9061 -MPI-ESM-MR,rcp26,303,38,-57.0,-51.5,0.8103,0.7781 -MPI-ESM-MR,rcp45,303,38,-57.0,-51.5,0.8781,0.9971 -MPI-ESM-MR,rcp85,303,38,-57.0,-51.5,0.827,0.7502 -MRI-CGCM3,rcp26,302,38,-58.0,-51.5,0.9793,1.3666 -MRI-CGCM3,rcp45,302,38,-58.0,-51.5,1.0665,1.3986 -MRI-CGCM3,rcp85,302,38,-58.0,-51.5,0.9678,1.0566 -NorESM1-M,rcp26,303,38,-57.0,-51.5,0.8413,0.9279 -NorESM1-M,rcp45,303,38,-57.0,-51.5,0.8899,0.8263 -NorESM1-M,rcp85,303,38,-57.0,-51.5,0.8742,0.9081 -NorESM1-ME,rcp26,303,38,-57.0,-51.5,0.8614,0.9173 -NorESM1-ME,rcp45,303,38,-57.0,-51.5,0.9392,0.8963 -NorESM1-ME,rcp85,303,38,-57.0,-51.5,0.9213,0.8741 diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_ACCESS1-0_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_ACCESS1-0_ij_figure.png deleted file mode 100644 index 63236cd..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_ACCESS1-0_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_CNRM-CM5_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_CNRM-CM5_ij_figure.png deleted file mode 100644 index 653e879..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_CNRM-CM5_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_CSIRO-Mk3-6-0_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_CSIRO-Mk3-6-0_ij_figure.png deleted file mode 100644 index 673cc9f..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_CSIRO-Mk3-6-0_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_CanESM2_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_CanESM2_ij_figure.png deleted file mode 100644 index 9ec2788..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_CanESM2_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_GFDL-ESM2G_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_GFDL-ESM2G_ij_figure.png deleted file mode 100644 index 3975ebc..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_GFDL-ESM2G_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_GFDL-ESM2M_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_GFDL-ESM2M_ij_figure.png deleted file mode 100644 index 6f074d2..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_GFDL-ESM2M_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_GISS-E2-R_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_GISS-E2-R_ij_figure.png deleted file mode 100644 index 7348d3d..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_GISS-E2-R_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_HadGEM2-CC_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_HadGEM2-CC_ij_figure.png deleted file mode 100644 index cd2ccee..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_HadGEM2-CC_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_HadGEM2-ES_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_HadGEM2-ES_ij_figure.png deleted file mode 100644 index 8b45831..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_HadGEM2-ES_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_IPSL-CM5A-LR_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_IPSL-CM5A-LR_ij_figure.png deleted file mode 100644 index e45d7c0..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_IPSL-CM5A-LR_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_IPSL-CM5A-MR_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_IPSL-CM5A-MR_ij_figure.png deleted file mode 100644 index 347621e..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_IPSL-CM5A-MR_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_MIROC-ESM-CHEM_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_MIROC-ESM-CHEM_ij_figure.png deleted file mode 100644 index f855870..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_MIROC-ESM-CHEM_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_MIROC-ESM_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_MIROC-ESM_ij_figure.png deleted file mode 100644 index 3c53578..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_MIROC-ESM_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_MIROC5_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_MIROC5_ij_figure.png deleted file mode 100644 index a4fa1d2..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_MIROC5_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_MPI-ESM-LR_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_MPI-ESM-LR_ij_figure.png deleted file mode 100644 index 365388c..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_MPI-ESM-LR_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_MPI-ESM-MR_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_MPI-ESM-MR_ij_figure.png deleted file mode 100644 index 522e2b2..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_MPI-ESM-MR_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_MRI-CGCM3_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_MRI-CGCM3_ij_figure.png deleted file mode 100644 index d06feb8..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_MRI-CGCM3_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_NorESM1-ME_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_NorESM1-ME_ij_figure.png deleted file mode 100644 index 7fc6f4e..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_NorESM1-ME_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_NorESM1-M_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_NorESM1-M_ij_figure.png deleted file mode 100644 index a445290..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_NorESM1-M_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_bcc-csm1-1_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_bcc-csm1-1_ij_figure.png deleted file mode 100644 index 9d369a6..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_bcc-csm1-1_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/maps/STANLEYII_inmcm4_ij_figure.png b/profsea/Falkland_example/figures/maps/STANLEYII_inmcm4_ij_figure.png deleted file mode 100644 index 97e4a38..0000000 Binary files a/profsea/Falkland_example/figures/maps/STANLEYII_inmcm4_ij_figure.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/sea_level_projections/01_STANLEY II.png b/profsea/Falkland_example/figures/sea_level_projections/01_STANLEY II.png deleted file mode 100644 index 2b5fa3b..0000000 Binary files a/profsea/Falkland_example/figures/sea_level_projections/01_STANLEY II.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/sea_level_projections/02_STANLEY II.png b/profsea/Falkland_example/figures/sea_level_projections/02_STANLEY II.png deleted file mode 100644 index 270113d..0000000 Binary files a/profsea/Falkland_example/figures/sea_level_projections/02_STANLEY II.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/sea_level_projections/03_STANLEY II_rcp26.png b/profsea/Falkland_example/figures/sea_level_projections/03_STANLEY II_rcp26.png deleted file mode 100644 index 3f4ba0a..0000000 Binary files a/profsea/Falkland_example/figures/sea_level_projections/03_STANLEY II_rcp26.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/sea_level_projections/03_STANLEY II_rcp45.png b/profsea/Falkland_example/figures/sea_level_projections/03_STANLEY II_rcp45.png deleted file mode 100644 index 6008a08..0000000 Binary files a/profsea/Falkland_example/figures/sea_level_projections/03_STANLEY II_rcp45.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/sea_level_projections/03_STANLEY II_rcp85.png b/profsea/Falkland_example/figures/sea_level_projections/03_STANLEY II_rcp85.png deleted file mode 100644 index 082fb86..0000000 Binary files a/profsea/Falkland_example/figures/sea_level_projections/03_STANLEY II_rcp85.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/sea_level_projections/04_STANLEY II.png b/profsea/Falkland_example/figures/sea_level_projections/04_STANLEY II.png deleted file mode 100644 index 0b922bf..0000000 Binary files a/profsea/Falkland_example/figures/sea_level_projections/04_STANLEY II.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/sea_level_projections/05_STANLEY II.png b/profsea/Falkland_example/figures/sea_level_projections/05_STANLEY II.png deleted file mode 100644 index 9dfd67a..0000000 Binary files a/profsea/Falkland_example/figures/sea_level_projections/05_STANLEY II.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/sea_level_projections/06_STANLEY II.png b/profsea/Falkland_example/figures/sea_level_projections/06_STANLEY II.png deleted file mode 100644 index f097fcd..0000000 Binary files a/profsea/Falkland_example/figures/sea_level_projections/06_STANLEY II.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/sea_level_projections/07_STANLEY II_rcp85.png b/profsea/Falkland_example/figures/sea_level_projections/07_STANLEY II_rcp85.png deleted file mode 100644 index 7fd9528..0000000 Binary files a/profsea/Falkland_example/figures/sea_level_projections/07_STANLEY II_rcp85.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/sea_level_projections/Thumbs.db b/profsea/Falkland_example/figures/sea_level_projections/Thumbs.db deleted file mode 100755 index 9c5f3c0..0000000 Binary files a/profsea/Falkland_example/figures/sea_level_projections/Thumbs.db and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_ACCESS1-0_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_ACCESS1-0_zos_regression_2005-2100.png deleted file mode 100644 index d9ee5d1..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_ACCESS1-0_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_CNRM-CM5_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_CNRM-CM5_zos_regression_2005-2100.png deleted file mode 100644 index eff3d08..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_CNRM-CM5_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_CSIRO-Mk3-6-0_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_CSIRO-Mk3-6-0_zos_regression_2005-2100.png deleted file mode 100644 index 09926a0..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_CSIRO-Mk3-6-0_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_CanESM2_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_CanESM2_zos_regression_2005-2100.png deleted file mode 100644 index 45c4915..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_CanESM2_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_GFDL-ESM2G_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_GFDL-ESM2G_zos_regression_2005-2100.png deleted file mode 100644 index 1c090fb..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_GFDL-ESM2G_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_GFDL-ESM2M_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_GFDL-ESM2M_zos_regression_2005-2100.png deleted file mode 100644 index 7045503..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_GFDL-ESM2M_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_GISS-E2-R_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_GISS-E2-R_zos_regression_2005-2100.png deleted file mode 100644 index 05e620c..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_GISS-E2-R_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_HadGEM2-CC_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_HadGEM2-CC_zos_regression_2005-2100.png deleted file mode 100644 index a3fb301..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_HadGEM2-CC_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_HadGEM2-ES_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_HadGEM2-ES_zos_regression_2005-2100.png deleted file mode 100644 index 62a95e9..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_HadGEM2-ES_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_IPSL-CM5A-LR_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_IPSL-CM5A-LR_zos_regression_2005-2100.png deleted file mode 100644 index 6ba6b55..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_IPSL-CM5A-LR_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_IPSL-CM5A-MR_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_IPSL-CM5A-MR_zos_regression_2005-2100.png deleted file mode 100644 index 540d812..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_IPSL-CM5A-MR_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_MIROC-ESM-CHEM_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_MIROC-ESM-CHEM_zos_regression_2005-2100.png deleted file mode 100644 index 96bddf3..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_MIROC-ESM-CHEM_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_MIROC-ESM_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_MIROC-ESM_zos_regression_2005-2100.png deleted file mode 100644 index 81344b2..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_MIROC-ESM_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_MIROC5_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_MIROC5_zos_regression_2005-2100.png deleted file mode 100644 index 56b7982..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_MIROC5_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_MPI-ESM-LR_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_MPI-ESM-LR_zos_regression_2005-2100.png deleted file mode 100644 index e40ac9f..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_MPI-ESM-LR_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_MPI-ESM-MR_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_MPI-ESM-MR_zos_regression_2005-2100.png deleted file mode 100644 index 505a365..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_MPI-ESM-MR_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_MRI-CGCM3_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_MRI-CGCM3_zos_regression_2005-2100.png deleted file mode 100644 index 962243c..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_MRI-CGCM3_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_NorESM1-ME_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_NorESM1-ME_zos_regression_2005-2100.png deleted file mode 100644 index ecc43be..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_NorESM1-ME_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_NorESM1-M_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_NorESM1-M_zos_regression_2005-2100.png deleted file mode 100644 index 6b49352..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_NorESM1-M_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_bcc-csm1-1_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_bcc-csm1-1_zos_regression_2005-2100.png deleted file mode 100644 index 3339337..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_bcc-csm1-1_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/Falkland_example/figures/zos_regression/STANLEYII_inmcm4_zos_regression_2005-2100.png b/profsea/Falkland_example/figures/zos_regression/STANLEYII_inmcm4_zos_regression_2005-2100.png deleted file mode 100644 index be0f354..0000000 Binary files a/profsea/Falkland_example/figures/zos_regression/STANLEYII_inmcm4_zos_regression_2005-2100.png and /dev/null differ diff --git a/profsea/__init__.py b/profsea/__init__.py new file mode 100644 index 0000000..e7a317c --- /dev/null +++ b/profsea/__init__.py @@ -0,0 +1,23 @@ +import logging + +from rich.logging import RichHandler + +# Tie logger to the "profsea" namespace +logger = logging.getLogger("profsea") + +# Print by default +logger.setLevel(logging.INFO) + +# Use Rich! +rich_handler = RichHandler( + rich_tracebacks=True, + show_time=True, + show_path=False, + markup=True, + log_time_format="[%H:%M:%S]", +) + +formatter = logging.Formatter("%(message)s") +rich_handler.setFormatter(formatter) +logger.addHandler(rich_handler) +logger.propagate = False diff --git a/profsea/aux_data/ISMIP_GIS_calibration.csv b/profsea/aux_data/ISMIP_GIS_calibration.csv new file mode 100644 index 0000000..41ea482 --- /dev/null +++ b/profsea/aux_data/ISMIP_GIS_calibration.csv @@ -0,0 +1,22 @@ +institution,model,b0,b1,b2,b3,b4,b5,sigma +UCIJPL, ISSM1,0.11280511383425385,0.6821503460827252,-0.16400289768763443,0.029789425852056794,-0.009489849321525412,0.00014879916101584456,0.44138133304923294 +UAF, PISM1,0.10798850687485739,2.22736503017021,-0.692345687432411,0.08161212823174324,-0.04641834271523848,0.0004685291256141255,0.5278388471215101 +NCAR, CISM,0.31324843280109604,1.5993142312892896,-0.44199635991569686,0.05872843417961349,-0.030363605622934386,0.00027208434509873314,0.5786469779135103 +MUN, GSM2601,0.26176469764101284,1.9203005829347362,-0.64443813905498,0.06774621868079578,-0.04785788778603006,0.0005414869899329489,0.4804421954085724 +AWI, ISSM1,0.15203622407200434,0.5737828059597607,-0.06009509991088713,0.018698973452613288,-0.0017116999595181426,2.627912853014891e-05,0.5379227283666163 +JPL, ISSMPALEO,0.08192192746084714,0.6728440122964905,-0.12814016340042222,0.022584230858470278,-0.01643152901161038,0.0001855436066229288,0.40578701831731945 +BGC, BISICLES,0.14652938235787794,0.8228410010355418,-0.2424425609220453,0.04248976786373326,-0.01659422359712792,0.0002188231920179362,0.4866165180787471 +GSFC, ISSM,0.17216048421978947,1.940293458477143,-0.6163995281733783,0.07537669095303912,-0.034675558756788405,0.0003814767735637048,0.47471207710632624 +UCIJPL, ISSM2,0.21641138942280236,0.33642105388928734,0.04866982311529178,-0.015205305616245113,-0.004018009867746031,8.458271035394205e-05,0.42536807781497576 +IMAU, IMAUICE2,0.20036011456528868,2.2955765155739787,-0.7112950680247732,0.09145182217310044,-0.044411324549290754,0.00044883827336406057,0.6120063870228036 +VUB, GISMHOMv1,0.39396308078447184,0.8529109232648526,-0.19173147734077922,0.0360613162914003,-0.0023678409809129164,-1.1101471443453192e-05,0.5764299273835812 +IMAU, IMAUICE1,0.2800198843218169,0.8427979750531325,-0.12558217145775608,0.031145488329698878,-0.0023911906890941026,-7.900936685345528e-06,0.7439631769871697 +MUN, GSM2611,0.31961312362156136,0.3908080413807351,0.15162878131265423,-0.042695881436106475,-0.01605741445283293,0.00020608416355116788,0.45394137922358807 +UAF, PISM2,0.2167261842707333,0.22324315646728543,-0.0321449483341798,0.019635585944547174,0.0015780370372677766,-1.0150760214600041e-05,0.42575847295364555 +VUW, PISM,1.3145573843686975e-05,1.5421914530833938,-0.5162788335603761,0.0604074471391165,-0.03655888489420711,0.0004626783801828793,0.3706427862813395 +AWI, ISSM2,0.1513883454153806,0.576742644362664,-0.0562763456969293,0.018041192418930763,-0.0010313859576172035,1.64181719419787e-05,0.539335117427485 +ILTS_PIK, SICOPOLIS2,0.23327050371069546,0.635252150611775,-0.05725160435687826,0.01879619175116609,-0.0052735802812815535,6.885471476181237e-05,0.5382205194008777 +ILTS_PIK, SICOPOLIS1,0.17910675828310474,1.8256763597420758,-0.5246724854860112,0.06912592493435277,-0.03590566483921975,0.0003654973100086778,0.5533500350485601 +AWI, ISSM3,0.0894329235365312,2.117295179930542,-0.6491365405376079,0.08078620843845385,-0.042188539617928456,0.0004211035302041921,0.5679266897268976 +JPL, ISSM,0.19722907443354742,0.727228695939683,-0.1329472066135633,0.028647131912272528,-0.003898102886985555,4.903956863699932e-05,0.5329293558099194 +LSCE, GRISLI2,0.21625621392082017,0.3885561495874317,-0.03848012730510675,0.017660852688523576,-0.006097320636799353,5.743035870686697e-05,0.49405529384710106 diff --git a/profsea/aux_data/cumulative_cmip6_emissions.json b/profsea/aux_data/cumulative_cmip6_emissions.json new file mode 100644 index 0000000..2cf587a --- /dev/null +++ b/profsea/aux_data/cumulative_cmip6_emissions.json @@ -0,0 +1 @@ +{"ssp126": 325.34, "ssp245": 810.20, "ssp370": 1506.5773134877386, "ssp585": 2176.3538993188017} \ No newline at end of file diff --git a/profsea/aux_data/eais_params_expanded.nc b/profsea/aux_data/eais_params_expanded.nc new file mode 100644 index 0000000..370df7c Binary files /dev/null and b/profsea/aux_data/eais_params_expanded.nc differ diff --git a/profsea/aux_data/eais_params_reduced.nc b/profsea/aux_data/eais_params_reduced.nc new file mode 100644 index 0000000..0ff26e9 Binary files /dev/null and b/profsea/aux_data/eais_params_reduced.nc differ diff --git a/profsea/aux_data/pen_params_expanded.nc b/profsea/aux_data/pen_params_expanded.nc new file mode 100644 index 0000000..362b191 Binary files /dev/null and b/profsea/aux_data/pen_params_expanded.nc differ diff --git a/profsea/aux_data/pen_params_reduced.nc b/profsea/aux_data/pen_params_reduced.nc new file mode 100644 index 0000000..ad2f659 Binary files /dev/null and b/profsea/aux_data/pen_params_reduced.nc differ diff --git a/profsea/aux_data/ssp_global_landwater_projections.nc b/profsea/aux_data/ssp_global_landwater_projections.nc new file mode 100644 index 0000000..0319054 Binary files /dev/null and b/profsea/aux_data/ssp_global_landwater_projections.nc differ diff --git a/profsea/aux_data/wais_params_expanded.nc b/profsea/aux_data/wais_params_expanded.nc new file mode 100644 index 0000000..1c88ab7 Binary files /dev/null and b/profsea/aux_data/wais_params_expanded.nc differ diff --git a/profsea/aux_data/wais_params_reduced.nc b/profsea/aux_data/wais_params_reduced.nc new file mode 100644 index 0000000..233ba45 Binary files /dev/null and b/profsea/aux_data/wais_params_reduced.nc differ diff --git a/profsea/components/core/__init__.py b/profsea/components/core/__init__.py new file mode 100644 index 0000000..e19121e --- /dev/null +++ b/profsea/components/core/__init__.py @@ -0,0 +1,4 @@ +from .global_model import Global +from .spatial_model import Spatial + +__all__ = ["Global", "Spatial"] diff --git a/profsea/components/core/base.py b/profsea/components/core/base.py new file mode 100644 index 0000000..a997ba1 --- /dev/null +++ b/profsea/components/core/base.py @@ -0,0 +1,200 @@ +from __future__ import annotations + +from abc import ABC, abstractmethod + +import dask.array as da +import numpy as np +import xarray as xr + +from .state import ClimateState + + +class Component(ABC): + @abstractmethod + def project(self, state: ClimateState, rng: np.random.Generator) -> np.ndarray: + """Calculate and return the SLR projection for this component""" + pass + + +class SpatialComponent(Component): + def extract_spatial(self, da_input: xr.DataArray, state) -> xr.DataArray: + if hasattr(state, "target_lats"): + return self._extract_points(da_input, state.target_lats, state.target_lons) + + elif hasattr(state, "grid_lats"): + from profsea.utils.utils import interpolate_to_grid + + return interpolate_to_grid(da_input, state.grid_lats, state.grid_lons) + + else: + raise ValueError("State object is missing required spatial attributes.") + + def _extract_points( + self, da_input: xr.DataArray, target_lats: np.ndarray, target_lons: np.ndarray + ) -> xr.DataArray: + target_lats = np.asarray(target_lats) + target_lons = np.asarray(target_lons) + + # Normalize longitudes to [-180, 180) lazy metadata update + if "lon" in da_input.coords: + da_input = da_input.assign_coords(lon=(((da_input.lon + 180) % 360) - 180)) + target_lons = ((target_lons + 180) % 360) - 180 + + # Extract 1D coordinates eagerly + lats = da_input.lat.values + lons = da_input.lon.values + + # Handle decreasing latitudes + is_descending_lat = False + if lats[0] > lats[-1]: + is_descending_lat = True + lats = lats[::-1] + + # Sort lons + lon_sort_idx = np.argsort(lons) + lons = lons[lon_sort_idx] + + # Sort the lazy array to match the coordinate math + da_input = da_input.isel(lon=lon_sort_idx) + if is_descending_lat: + da_input = da_input.isel(lat=slice(None, None, -1)) + + # Calculate bounded indices locally + lat_idx_hi = np.clip(np.searchsorted(lats, target_lats), 1, len(lats) - 1) + lat_idx_lo = lat_idx_hi - 1 + + # Handle longitude wrapping for global datasets + idx = np.searchsorted(lons, target_lons) + wrap_lo = idx == 0 + wrap_hi = idx == len(lons) + + # Modulo arithmetic perfectly wraps indices over the array bounds + lon_idx_hi = idx % len(lons) + lon_idx_lo = (idx - 1) % len(lons) + + # Extract physical coordinates + lat_lo, lat_hi = lats[lat_idx_lo], lats[lat_idx_hi] + lon_lo, lon_hi = lons[lon_idx_lo], lons[lon_idx_hi] + + # Fix coordinates for wrapped bounds so distance calculations work + lon_lo = np.where(wrap_lo, lons[-1] - 360, lon_lo) + lon_hi = np.where(wrap_hi, lons[0] + 360, lon_hi) + + dlat = np.where(lat_hi == lat_lo, 1.0, lat_hi - lat_lo) + dlon = np.where(lon_hi == lon_lo, 1.0, lon_hi - lon_lo) + + # Calculate weights locally + w_lat_lo = (lat_hi - target_lats) / dlat + w_lat_hi = (target_lats - lat_lo) / dlat + w_lon_lo = (lon_hi - target_lons) / dlon + w_lon_hi = (target_lons - lon_lo) / dlon + + # Build DataArrays for the 4 corners so they broadcast properly with the lazy data + sites = xr.DataArray(np.arange(len(target_lats)), dims=["site"]) + + w_lo_lo = xr.DataArray( + w_lat_lo * w_lon_lo, dims=["site"], coords={"site": sites} + ) + w_hi_lo = xr.DataArray( + w_lat_hi * w_lon_lo, dims=["site"], coords={"site": sites} + ) + w_lo_hi = xr.DataArray( + w_lat_lo * w_lon_hi, dims=["site"], coords={"site": sites} + ) + w_hi_hi = xr.DataArray( + w_lat_hi * w_lon_hi, dims=["site"], coords={"site": sites} + ) + + # Pull the 4 corners + da_lo_lo = da_input.isel( + lat=xr.DataArray(lat_idx_lo, dims="site"), + lon=xr.DataArray(lon_idx_lo, dims="site"), + ) + da_hi_lo = da_input.isel( + lat=xr.DataArray(lat_idx_hi, dims="site"), + lon=xr.DataArray(lon_idx_lo, dims="site"), + ) + da_lo_hi = da_input.isel( + lat=xr.DataArray(lat_idx_lo, dims="site"), + lon=xr.DataArray(lon_idx_hi, dims="site"), + ) + da_hi_hi = da_input.isel( + lat=xr.DataArray(lat_idx_hi, dims="site"), + lon=xr.DataArray(lon_idx_hi, dims="site"), + ) + + # Handle NaNs and renormalization within the Xarray/Dask graph + # Create a boolean mask of valid data + valid_lo_lo = da_lo_lo.notnull() + valid_hi_lo = da_hi_lo.notnull() + valid_lo_hi = da_lo_hi.notnull() + valid_hi_hi = da_hi_hi.notnull() + + # Zero out weights where data is NaN + w_lo_lo_masked = w_lo_lo.where(valid_lo_lo, 0.0) + w_hi_lo_masked = w_hi_lo.where(valid_hi_lo, 0.0) + w_lo_hi_masked = w_lo_hi.where(valid_lo_hi, 0.0) + w_hi_hi_masked = w_hi_hi.where(valid_hi_hi, 0.0) + + # Sum the active weights + w_sum = w_lo_lo_masked + w_hi_lo_masked + w_lo_hi_masked + w_hi_hi_masked + + # Prevent division-by-zero warnings, but we will restore NaNs later where all 4 corners were NaN + w_sum_safe = w_sum.where(w_sum != 0, 1.0) + + # Renormalize weights using the safe denominator + w_lo_lo_norm = w_lo_lo_masked / w_sum_safe + w_hi_lo_norm = w_hi_lo_masked / w_sum_safe + w_lo_hi_norm = w_lo_hi_masked / w_sum_safe + w_hi_hi_norm = w_hi_hi_masked / w_sum_safe + + # Calculate final weighted sum + result = ( + (da_lo_lo.fillna(0) * w_lo_lo_norm) + + (da_hi_lo.fillna(0) * w_hi_lo_norm) + + (da_lo_hi.fillna(0) * w_lo_hi_norm) + + (da_hi_hi.fillna(0) * w_hi_hi_norm) + ) + + # Restore pure NaNs where all 4 corners were originally NaN (where w_sum was 0) + result = result.where(w_sum != 0, np.nan) + + # Re-attach target coordinate metadata + result = result.assign_coords( + lat=("site", target_lats), lon=("site", target_lons) + ) + + return result + + def broadcast_spatiotemporal( + self, temporal_array: da.Array, spatial_array: da.Array + ) -> da.Array: + """ + Dynamically multiplies a temporal series by a spatial pattern. + + Parameters + ---------- + temporal_array: dask.array.Array + 2D array of shape (members, years) + spatial_array: dask.array.Array + Either 2D (members, site) or 3D (members, lat, + """ + # Determine how many spatial dimensions we are dealing with + spatial_dims = spatial_array.ndim - 1 + + if spatial_dims == 1: + # 3D Output: (members, years, site) + return temporal_array[:, :, None] * spatial_array[:, None, :] + elif spatial_dims == 2: + # 4D Output: (members, years, lat, lon) + return temporal_array[:, :, None, None] * spatial_array[:, None, :, :] + else: + raise ValueError( + f"Unexpected spatial dimensions. Expected 1 or 2, got {spatial_dims}." + ) + + @property + @abstractmethod + def global_projection(self): + """Spatial component must define a global_projection attribute or property""" + pass diff --git a/profsea/components/core/global_model.py b/profsea/components/core/global_model.py new file mode 100644 index 0000000..1c44d29 --- /dev/null +++ b/profsea/components/core/global_model.py @@ -0,0 +1,373 @@ +from __future__ import annotations + +import concurrent.futures +import logging + +import numpy as np +import xarray as xr +from rich.console import Console +from rich.progress import track + +from profsea.utils import check_shapes, sample_members_2D, save_components +from profsea.utils.ui import print_global_preflight + +from .base import Component +from .state import ClimateState + +console = Console() +logger = logging.getLogger(__name__) + + +class Global: + """Global sea level rise component emulator. + + Parameters + ---------- + components: Dict + List of SLR components for projections + end_yr: int + End year of the projections. + nt: int + Number of realisations of the input timeseries + num_members: int + Number of realisations of for each component. + Must be a multiple of the number of glacier methods. + tcv: float + Multiplier for the standard deviation in the input fields. + parallel: bool + If True, project SLR components in parallel. + output_percentiles: list|np.ndarray + If not None, calculate percentiles from a 1D list/array for each + component + palmer_method: bool + If True, allow integration to end in any year up to 2300, + with the contributions to GMLSR from ice-sheet dynamics, + Greenland SMB and land water storage held at the 2100 rate + beyond 2100. + random_sample: bool + If True, randomly sample a single ensemble member across all + components + + Attributes + ---------- + endofhistory: int + First year of AR5 projections. + endofAR5: int + Last year of AR5 projections. + nyr: int + Length of projections. + """ + + def __init__( + self, + components: dict[str, Component], + end_yr: int, + nt: int = 100, + num_members: int = 1000, + tcv: float = 1.0, + parallel: bool = True, + output_percentiles: list | np.ndarray = None, + palmer_method: bool = True, + random_sample: bool = False, + dtype: np.dtype | str = np.float32, + ): + self.components = components + self.end_yr = end_yr + self.nt = nt + self.num_members = num_members + self.tcv = tcv + self.parallel = parallel + self.output_percentiles = output_percentiles + self.palmer_method = palmer_method + self.random_sample = random_sample + self.dtype = np.dtype(dtype) + + self.endofhistory = 2006 + self.endofAR5 = 2100 + self.nyr = self.end_yr - self.endofhistory + + # Inject method! + save_components = save_components + + def _arr_to_xr(self, arr_dict: dict[str, np.ndarray]) -> dict[str, xr.DataArray]: + """Convert a dictionary of numpy/dask arrays to xarray DataArrays. + + Parameters + ---------- + arr_dict: dict + Dictionary of arrays, where keys are component names and values are arrays. + + Returns + ------- + dict + Dictionary of xarray DataArrays, where keys are component names and values are xarray DataArrays. + """ + xr_dict = {} + member_dim = "percentile" if self.output_percentiles is not None else "member" + + for name, arr in arr_dict.items(): + member_coords = ( + self.output_percentiles + if self.output_percentiles is not None + else np.arange(arr.shape[0]) + ) + + xr_dict[name] = xr.DataArray( + arr, + dims=[member_dim, "time"], + coords={ + member_dim: member_coords, + "time": np.arange( + self.endofhistory, self.endofhistory + arr.shape[1] + ), + }, + ) + xr_dict[name].attrs["units"] = "m" + + return xr_dict + + def run( + self, + scenario: str, + T_change: np.ndarray, + member_seed: int = 42, + ) -> dict[str, np.ndarray]: + """Run the emulator to project GMSLR components for a specific state. + Parameters + ---------- + scenario: str + Name of the scenario. + T_change: np.ndarray + Array of temperature change values. + member_seed: int + Seed for numpy.random. + """ + + seed_seq = np.random.SeedSequence(member_seed) + run_rng = np.random.default_rng(seed_seq) + + check_shapes(T_change, self.nyr) + + # Standardize T_change shape to (nt, nyr) + if T_change.ndim > 2: + T_change = np.squeeze(T_change) + if T_change.ndim == 1: + T_change = np.expand_dims(T_change, axis=0) + + self.nt = T_change.shape[0] + + print_global_preflight(self, scenario) + + T_change = T_change.astype(self.dtype) + T_ens, T_int_ens, T_int_med = self._calculate_drivers(T_change) + + # Shared physical correlation state + fraction = run_rng.random(self.num_members * self.nt).astype(self.dtype) + + state = ClimateState( + scenario=scenario, + T_ens=T_ens, + T_int_ens=T_int_ens, + T_int_med=T_int_med, + fraction=fraction, + palmer_method=self.palmer_method, + endofAR5=self.endofAR5, + endofhistory=self.endofhistory, + end_yr=self.end_yr, + nyr=self.nyr, + nt=self.nt, + num_members=self.num_members, + dtype=self.dtype, + ) + + # Child RNGs for each component + child_seeds = seed_seq.spawn(len(self.components)) + comp_rngs = { + name: np.random.default_rng(s) + for name, s in zip(self.components.keys(), child_seeds) + } + + results = {} + if self.parallel: + with concurrent.futures.ThreadPoolExecutor() as executor: + futures = { + executor.submit(comp.project, state, comp_rngs[name]): name + for name, comp in self.components.items() + } + for future in concurrent.futures.as_completed(futures): + comp_name = futures[future] + try: + results[comp_name] = future.result() + except Exception as e: + raise RuntimeError(f"Component '{comp_name}' failed.") from e + else: + for name, comp in track( + self.components.items(), description="Projecting components..." + ): + results[name] = comp.project(state, comp_rngs[name]) + + # Random Sampling + if self.random_sample: + random_idx = run_rng.integers(low=0, high=self.nt * self.num_members) + for comp_name, data in results.items(): + if data.ndim > 1: + results[comp_name] = data[random_idx][None, :] + + # Output percentiles + if self.output_percentiles is not None: + logger.info( + f"Sampling {len(self.output_percentiles)} members per component..." + ) + for comp_name, data in results.items(): + results[comp_name] = sample_members_2D( + data, self.output_percentiles, dtype=self.dtype + ) + + self.results = self._arr_to_xr(results) + return self.results + + # def save_components( + # self, + # components: dict[str, xr.DataArray], + # scenario_name: str, + # output_prefix: str = "global", + # output_dir: str = ".", + # output_format: str = "netcdf", + # ) -> None: + # """ + # Stream all global sea level projections to disk in a single file/store. + + # Parameters + # ---------- + # components: dict[str, xr.DataArray] + # Dictionary of component names and their corresponding Xarray DataArrays. + # scenario_name: str + # Name of the scenario you've run the emulator for. + # output_prefix: str + # Prefix for the output file name (default: 'global'). + # output_dir: str + # Directory to save components to. + # output_format: str + # Format to save the output in. Must be either 'netcdf' or 'zarr'. + + # Returns + # ------- + # None + # """ + # ds = xr.Dataset(components) + + # # Add ProFSea version and scenario metadata + # ds.attrs["source"] = "ProFSea v3.0" + # ds.attrs["scenario"] = scenario_name + # ds.attrs["description"] = "Global sea level rise projections" + + # output_format = output_format.lower() + # if output_format not in ["netcdf", "zarr"]: + # raise ValueError("output_format must be either 'netcdf' or 'zarr'.") + + # Path(output_dir).mkdir(parents=True, exist_ok=True) + # encoding = {} + + # # Sort out Zarr encoding + # if output_format == "zarr": + # import numcodecs + # from numcodecs.zarr3 import Blosc + + # compressor = Blosc( + # cname="zstd", clevel=5, shuffle=numcodecs.Blosc.BITSHUFFLE + # ) + + # # Set the encoding/compression dynamically based on the component's actual dtype + # for name, component in components.items(): + # comp_dtype = ( + # component.dtype.name + # ) # Captures 'float32' or 'float64' dynamically + + # if output_format == "netcdf": + # encoding[name] = {"zlib": True, "complevel": 1, "dtype": comp_dtype} + # elif output_format == "zarr": + # encoding[name] = {"compressor": compressor, "dtype": comp_dtype} + + # file_name = f"{scenario_name}_{output_prefix}" + + # # Stream the computation and write to disk + # if output_format == "netcdf": + # out_path = os.path.join(output_dir, f"{file_name}.nc") + # with console.status( + # "[bold cyan]Computing and saving Global NetCDF...[/bold cyan]", + # spinner="dots", + # ): + # # If using Dask, .compute() is required before .to_netcdf() + # # If arrays are already eager NumPy arrays, .compute() is a harmless no-op + # if hasattr(ds, "compute"): + # ds.compute().to_netcdf(out_path, encoding=encoding) + # else: + # ds.to_netcdf(out_path, encoding=encoding) + + # logger.info( + # f"[bold green]✓ Successfully saved NetCDF:[/bold green] {out_path}" + # ) + + # elif output_format == "zarr": + # out_path = os.path.join(output_dir, f"{file_name}.zarr") + # with console.status( + # "[bold cyan]Streaming computation and saving Global Zarr...[/bold cyan]", + # spinner="dots", + # ): + # ds.to_zarr(out_path, encoding=encoding, mode="w", compute=True) + # logger.info( + # f"[bold green]✓ Successfully saved Zarr:[/bold green] {out_path}" + # ) + + # # Log the shape of the total_gmslr (or the first available component) + # sample_name = ( + # "total_gmslr" if "total_gmslr" in ds else list(ds.data_vars.keys())[0] + # ) + # dims_str = ", ".join(ds[sample_name].dims) + # logger.info(f"Global output shape was {ds[sample_name].shape} ({dims_str})") + + def sum_components(self, components: dict[str, xr.DataArray]) -> xr.DataArray: + """ + Sum the components in-place to get total GMSLR. + + Parameters + ---------- + components: dict[str, xr.DataArray] + Dictionary of component names and their corresponding Xarray DataArrays. + + Returns + ------- + xr.DataArray + DataArray of the summed global projections. + """ + + iterator = iter(components.values()) + gmslr = next(iterator).copy() + + for comp in iterator: + gmslr += comp + + gmslr.attrs["units"] = "m" + gmslr.attrs["description"] = "Total global mean sea level rise" + components["total_gmslr"] = gmslr + return gmslr + + def _calculate_drivers(self, T_change: np.ndarray) -> tuple: + """Calculate the drivers of GMSLR: temperature change and + thermosteric sea level rise. + + Returns + ------- + T_ens: np.ndarray + Ensemble of temperature changes. + T_int_ens: np.ndarray + Ensemble of time-integral temperature anomalies. + T_int_med: np.ndarray + Median of time-integral temperature anomalies. + """ + T_ens = T_change.copy() + + # Time-integral of temperature anomaly + T_int_ens = np.cumsum(T_ens, axis=1) + T_int_med = np.cumsum(np.median(T_ens, axis=0)) + return (T_ens, T_int_ens, T_int_med) diff --git a/profsea/components/core/local_model.py b/profsea/components/core/local_model.py new file mode 100644 index 0000000..d3ce230 --- /dev/null +++ b/profsea/components/core/local_model.py @@ -0,0 +1,243 @@ +import logging +import warnings +from pathlib import Path + +import dask.array as da +import numpy as np +import xarray as xr +from rich.console import Console +from rich.progress import track + +from profsea.utils import fetch_zenodo_fingerprints, save_components + +from .base import SpatialComponent +from .state import LocalState + +logger = logging.getLogger(__name__) +console = Console() +warnings.filterwarnings("ignore") + +PROFSEA_DIR = Path(__file__).resolve().parent.parent.parent +ZENODO_DOWNLOAD_LINK = ( + "https://zenodo.org/records/20427061/files/profsea-assets.zip?download=1" +) + + +class Local: + """Site-specific (Local) sea level rise component emulator.""" + + def __init__( + self, + components: dict[str, SpatialComponent], + locations: dict[str, tuple[float, float]], + interpolation_method: str = "nearest", + end_year: int = 2301, + baseline_yrs: tuple = (1995, 2014), + output_percentiles: list | np.ndarray = [5, 17, 50, 83, 95], + ) -> None: + """ + Parameters + ---------- + components: dict + Dictionary of spatial components to include in the model. + locations: dict + Dictionary mapping site names to (latitude, longitude) tuples. + Example: {"Aberdeen": (57.144, -2.080)} + interpolation_method: str, optional + Interpolation method to use when interpolating patterns to the target sites. Default is 'nearest'. + end_year: int, optional + The final year of the projections. Default is 2301. + baseline_yrs: tuple, optional + Tuple defining the start and end years of the baseline period. Default is (1995, 2014). + output_percentiles: list or np.ndarray, optional + List or array of percentiles to sample from the ensemble for output. + """ + fetch_zenodo_fingerprints( + zenodo_url=ZENODO_DOWNLOAD_LINK, + data_dir=PROFSEA_DIR, + expected_folder_name="profsea-assets", + ) + + self.components = components + self.end_year = end_year + self.baseline_yrs = baseline_yrs + self.output_percentiles = output_percentiles + self.start_year = 2006 + self.n_years = self.end_year - self.start_year + self.interpolation_method = interpolation_method + + # Parse the locations dictionary + self.site_names = list(locations.keys()) + self.target_lats = [coords[0] for coords in locations.values()] + self.target_lons = [coords[1] for coords in locations.values()] + + if self.output_percentiles is not None and len(self.output_percentiles) > 0: + self.num_members = len(self.output_percentiles) + else: + self.num_members = next( + iter(self.components.values()) + ).global_projection.shape[0] + + logger.info( + f"Baseline period = {self.baseline_yrs[0]} to {self.baseline_yrs[1]}" + ) + logger.info(f"Configured for {len(self.site_names)} specific target locations.") + + # Instance method! + save_components = save_components + + def _arr_to_xr(self, arr_dict: dict[str, da.Array]) -> dict[str, xr.DataArray]: + """ + Convert Dask arrays to xarray DataArrays with site coordinates. + + Parameters + ---------- + arr_dict: dict + Dictionary of Dask arrays to convert. Keys should be the component names and values should be Dask arrays of shape (members, time, sites). + + Returns + ------- + dict + Dictionary of xarray DataArrays with site coordinates. Keys are the same as in arr_dict. + """ + xr_dict = {} + member_dim = "percentile" if self.output_percentiles is not None else "member" + + for name, arr in arr_dict.items(): + xr_dict[name] = xr.DataArray( + arr, + dims=[member_dim, "time", "site"], + coords={ + member_dim: self.output_percentiles + if self.output_percentiles is not None + else np.arange(arr.shape[0]), + "time": np.arange(self.start_year, self.start_year + arr.shape[1]), + "site": self.site_names, + "lat": ("site", self.target_lats), + "lon": ("site", self.target_lons), + }, + attrs={ + "units": "m", + "long_name": f"Local {name} sea-level projections", + "source": "ProFSea-Climate v0.1", + }, + ) + return xr_dict + + def _apply_universal_mask(self) -> None: + """ + Identify locations that evaluate to NaN in ANY component (typically driven + by the sterodynamic land mask) and propagate that NaN to ALL components. + This ensures physical consistency: a site over land has no valid components. + + Parameters + ---------- + None + + Returns + ------- + None + """ + if not hasattr(self, "results") or not self.results: + return + + member_dim = "percentile" if self.output_percentiles is not None else "member" + spatial_slices = [ + comp.isel({member_dim: 0, "time": 0}) for comp in self.results.values() + ] + + # Site is valid if it is non-NaN in ALL components + stacked_slices = xr.concat(spatial_slices, dim="component") + valid_site_mask = stacked_slices.notnull().all(dim="component").compute() + + # Inform user of land mask + masked_sites = [ + site + for site, is_valid in zip(self.site_names, valid_site_mask.values) + if not is_valid + ] + if masked_sites: + logger.warning( + f"The following site(s) may be over land: {', '.join(masked_sites)}. " + "Expect NaN values for all components. " + "Either try increasing your grid resolution or check your site coordinates." + ) + + # Apply the mask uniformly + for name in self.results.keys(): + self.results[name] = self.results[name].where(valid_site_mask) + + def run(self, member_seed: int = 42) -> dict[str, xr.DataArray]: + """ + Run the local model to generate site-specific projections. + + Parameters + ---------- + member_seed: int, optional + Seed for random number generation to ensure reproducibility of member sampling. Default is 42. + + Returns + ------- + dict + Dictionary of local projections for each component, where keys are component names and values are xarray DataArrays of shape (n_members, n_years, n_sites). + """ + seed_seq = np.random.SeedSequence(member_seed) + + logger.info( + f"Simulating {len(self.components)} sea-level components for {len(self.site_names)} sites..." + ) + + state = LocalState( + n_years=self.n_years, + n_members=self.num_members, + target_lats=self.target_lats, + target_lons=self.target_lons, + interpolation_method=self.interpolation_method, + output_percentiles=self.output_percentiles, + baseline_yrs=self.baseline_yrs, + ) + + child_seeds = seed_seq.spawn(len(self.components)) + comp_rngs = { + name: np.random.default_rng(s) + for name, s in zip(self.components.keys(), child_seeds) + } + + local_projections = {} + + console.print() + for name, comp in track( + self.components.items(), description="Localising components..." + ): + # Project method should return array of shape (members, time, sites) + lazy_projection = comp.project(state, comp_rngs[name]) + + # Rechunk to optimize for reading full time-series per site + lazy_projection = lazy_projection.rechunk({0: -1, 1: -1, 2: -1}) + local_projections[name] = lazy_projection + console.print() + + self.results = self._arr_to_xr(local_projections) + self._apply_universal_mask() + return self.results + + def sum_components(self, components: dict[str, xr.DataArray]) -> xr.DataArray: + """ + Sum the local components to get total sea-level change. + + Parameters + ---------- + components: dict + Dictionary of xarray DataArrays representing individual components. + + Returns + ------- + xr.DataArray + A single xarray DataArray representing the total sea-level projections, with appropriate attributes. + """ + total_rsl = xr.concat(components.values(), dim="component").sum( + dim="component", skipna=False + ) + total_rsl.attrs["units"] = "m" + components["total_rsl"] = total_rsl + return total_rsl diff --git a/profsea/components/core/spatial_model.py b/profsea/components/core/spatial_model.py new file mode 100644 index 0000000..1303754 --- /dev/null +++ b/profsea/components/core/spatial_model.py @@ -0,0 +1,250 @@ +from __future__ import annotations + +import logging +import warnings +from pathlib import Path + +import dask.array as da +import numpy as np +import xarray as xr +from rich.console import Console +from rich.progress import track + +from profsea.utils import fetch_zenodo_fingerprints, save_components +from profsea.utils.ui import print_spatial_preflight + +from .base import Component +from .state import SpatialState + +logger = logging.getLogger(__name__) +console = Console() +warnings.filterwarnings("ignore") + +PROFSEA_DIR = Path(__file__).resolve().parent.parent.parent +ZENODO_DOWNLOAD_LINK = ( + "https://zenodo.org/records/20427061/files/profsea-assets.zip?download=1" +) + + +class Spatial: + """Spatial sea level rise component emulator.""" + + def __init__( + self, + components: dict[str, Component], + grid_config: dict = None, + grid_interpolation: str = "linear", + end_year: int = 2301, + baseline_yrs: tuple = (1995, 2014), + output_percentiles: list | np.ndarray = [5, 17, 50, 83, 95], + dtype: np.dtype = np.float32, + ) -> None: + """ + Parameters + ---------- + components: dict + Dictionary of spatial components to include in the model. Keys should be the component names and values should be instances of Component subclasses. + grid_config: dict, optional + Dictionary defining the grid configuration with keys 'start_lon', 'end_lon', 'step_lon + 'start_lat', 'end_lat', 'step_lat'. If None, defaults to a 1-degree global grid. + grid_interpolation: str, optional + Interpolation method to use when interpolating patterns to the target grid. Default is 'linear'. + end_year: int, optional + The final year of the projections. Default is 2301. + baseline_yrs: tuple, optional + Tuple defining the start and end years of the baseline period for calculating anomalies. Default is (1995, 2014). + output_percentiles: list or np.ndarray, optional + List or array of percentiles to sample from the ensemble for output. If None, outputs all members. Default is [5, 17, 50, 83, 95]. + dtype: np.dtype, optional + Data type for the output arrays. Default is np.float32. + """ + # Define the path where the data should live + + fetch_zenodo_fingerprints( + zenodo_url=ZENODO_DOWNLOAD_LINK, + data_dir=PROFSEA_DIR, + expected_folder_name="profsea-assets", + ) + + self.components = components + self.end_year = end_year + self.baseline_yrs = baseline_yrs + self.output_percentiles = output_percentiles + self.start_year = 2006 + self.n_years = self.end_year - self.start_year + self.dtype = dtype + + if self.output_percentiles is not None and len(self.output_percentiles) > 0: + self.num_members = len(self.output_percentiles) + else: + self.num_members = next( + iter(self.components.values()) + ).global_projection.shape[0] + + if grid_config is None: + grid_config: dict = { + "start_lon": -179.5, + "end_lon": 179.5, + "step_lon": 1.0, + "start_lat": -89.5, + "end_lat": 89.5, + "step_lat": 1.0, + } + + # Define the grid coordinates + self.grid_lons = np.arange( + grid_config["start_lon"], + grid_config["end_lon"] + grid_config["step_lon"], + grid_config["step_lon"], + ) + self.grid_lats = np.arange( + grid_config["start_lat"], + grid_config["end_lat"] + grid_config["step_lat"], + grid_config["step_lat"], + ) + + logger.info( + f"Baseline period = {self.baseline_yrs[0]} to {self.baseline_yrs[1]}" + ) + + # Log the size of each component and provide an estimate of their memory usage + # Output shape will be (num_members, n_years, n_lats, n_lons) + bytes_per_element = 8 # Assuming float64. Use 4 if strictly float32. + + future_size = ( + self.num_members + * self.n_years + * len(self.grid_lats) + * len(self.grid_lons) + * bytes_per_element + ) / 1e9 + + for name, comp in self.components.items(): + # Warn if memory usage is going to be large + if future_size > 20: + logger.warning( + f"[bold red]The output array for component " + f"[bold blue]'{name}'[/bold blue] requires a large amount " + f"of memory [bold blue]({future_size:.2f} GB)[/bold blue]. " + f"Consider reducing the number of members, the grid " + f"resolution or take percentiles.[/bold red]" + ) + + # Instance method! + save_components = save_components + + def _arr_to_xr(self, arr_dict: dict[str, da.Array]) -> dict[str, xr.DataArray]: + """ + Convert a dictionary of Dask arrays to a dictionary of xarray DataArrays with appropriate coordinates and metadata. + + Parameters + ---------- + arr_dict: Dict[str, da.Array] + Dictionary where keys are component names and values are Dask arrays of shape (n_members, n_years, n_lats, n_lons). + + Returns + ------- + Dict[str, xr.DataArray] + Dictionary where keys are component names and values are xarray DataArrays with dimensions (member, time, lat, lon) and appropriate coordinates. + """ + xr_dict = {} + member_dim = "percentile" if self.output_percentiles is not None else "member" + + for name, arr in arr_dict.items(): + xr_dict[name] = xr.DataArray( + arr, + dims=[member_dim, "time", "lat", "lon"], + coords={ + member_dim: self.output_percentiles + if self.output_percentiles is not None + else np.arange(arr.shape[0]), + "time": np.arange(self.start_year, self.start_year + arr.shape[1]), + "lat": self.grid_lats, + "lon": self.grid_lons, + }, + attrs={ + "units": "m", + "long_name": f"Regional {name} sea-level projections", + "source": "ProFSea-Climate v0.1", + }, + ) + + return xr_dict + + def run(self, member_seed: int = 42) -> None: + """ + Run the spatial model to generate regional sea level projections for each component. + + Parameters + ---------- + member_seed: int, optional + Seed for random number generation to ensure reproducibility of member sampling. Default is 42. + + Returns + ------- + Dict[str, da.Array] + Dictionary of spatial projections for each component, where keys are component names and values are Dask arrays of shape (n_members, n_years, n_lats, n_lons). + """ + print_spatial_preflight(self) + seed_seq = np.random.SeedSequence(member_seed) + + logger.info( + f"Simulating {len(self.components)} sea-level components: {', '.join(self.components.keys())}" + ) + + state = SpatialState( + n_years=self.n_years, + n_members=self.num_members, + grid_lats=self.grid_lats, + grid_lons=self.grid_lons, + grid_interpolation="linear", + output_percentiles=self.output_percentiles, + baseline_yrs=self.baseline_yrs, + dtype=self.dtype, + ) + + child_seeds = seed_seq.spawn(len(self.components)) + comp_rngs = { + name: np.random.default_rng(s) + for name, s in zip(self.components.keys(), child_seeds) + } + + spatial_projections = {} + console.print() # Add a blank line for better readability in the console output + for name, comp in track( + self.components.items(), description="Spatialising components..." + ): + lazy_projection = comp.project(state, comp_rngs[name]) + + # Rechunk before saving to optimize memory during writing + lazy_projection = lazy_projection.rechunk({0: -1, 1: -1, 2: 10, 3: 10}) + spatial_projections[name] = lazy_projection + console.print() + + # Put into xarray datasets for easier saving and metadata handling + spatial_projections_xr = self._arr_to_xr(spatial_projections) + self.results = spatial_projections_xr + return self.results + + def sum_components(self, components: dict[str, xr.DataArray]) -> xr.DataArray: + """ + Sum the spatial components to get total sea-level change. + + Parameters + ---------- + components: Dict[str, xr.DataArray] + Dictionary of spatial component DataArrays. + + Returns + ------- + xr.DataArray + DataArray of the summed spatial projections. + """ + # Using xr.concat preserves all dimensions and coordinates, and summing + # along the new dimension handles the underlying dask arrays cleanly. + total_rsl = xr.concat(components.values(), dim="component").sum( + dim="component", skipna=False + ) + total_rsl.attrs["units"] = "m" + components["total_rsl"] = total_rsl + return total_rsl diff --git a/profsea/components/core/state.py b/profsea/components/core/state.py new file mode 100644 index 0000000..442c731 --- /dev/null +++ b/profsea/components/core/state.py @@ -0,0 +1,52 @@ +from __future__ import annotations + +from dataclasses import dataclass + +import numpy as np + + +@dataclass +class ClimateState: + """ClimateState context object to hold relevant state information for SLR projections.""" + + scenario: str + T_ens: np.ndarray + T_int_ens: np.ndarray + T_int_med: np.ndarray + fraction: np.ndarray # shared correlation array + palmer_method: bool # whether to use Palmer method for time projection + endofAR5: int + endofhistory: int + end_yr: int + nyr: int + nt: int + num_members: int + dtype: np.dtype = np.float32 + + +@dataclass +class SpatialState: + """SpatialState context object to hold relevant state information for spatial SLR projections.""" + + grid_lats: np.ndarray + grid_lons: np.ndarray + n_years: int + n_members: int + grid_interpolation: str + output_percentiles: list[int] | np.ndarray + baseline_yrs: tuple[int, int] + dtype: np.dtype = np.float32 + + +@dataclass +class LocalState: + """LocalState context object to hold relevant state information for local SLR projections.""" + + target_lats: list[float] + target_lons: list[float] + n_years: int + n_members: int + interpolation_method: str + output_percentiles: list[int] | np.ndarray + baseline_yrs: tuple[int, int] + dtype: np.dtype = np.float32 diff --git a/profsea/components/core/time_projection.py b/profsea/components/core/time_projection.py new file mode 100644 index 0000000..b1372e8 --- /dev/null +++ b/profsea/components/core/time_projection.py @@ -0,0 +1,97 @@ +from __future__ import annotations + +from collections.abc import Sequence + +import numpy as np + +from profsea.components.core.global_model import ClimateState + + +def time_projection( + state: ClimateState, + startratemean: float, + startratepm: float, + final, + rng: np.random.Generator, + nfinal: int = 1, + fraction: np.ndarray = None, +) -> np.ndarray: + """Project a quantity which is a quadratic function of time. + + Parameters + ---------- + startratemean: float + Rate of GMSLR at the start in mm yr-1. + startratepm: float + Start rate error in mm yr-1. + final: list | np.ndarray + Likely range in m for GMSLR at the end of AR5. + nfinal: int + Number of years at the end over which final is a time-mean. + fraction: np.ndarray + Random numbers in the range 0 to 1. + + Returns + ------- + np.ndarray + Projection of the quantity. + """ + # Create a field of elapsed time since start in years + timeendofAR5 = state.endofAR5 - state.endofhistory + 1 + time = np.arange(state.end_yr - state.endofhistory, dtype=state.dtype) + 1 + + if fraction is None: + fraction = rng.random((state.num_members, state.nt), dtype=state.dtype) + elif fraction.size != state.num_members * state.nt: + raise ValueError("fraction is the wrong size") + + fraction = fraction.reshape(state.num_members, state.nt) + + # Convert inputs to startrate (m yr-1) and afinal (m), where both are + # arrays with the size of fraction + startrate = ((startratemean + startratepm * np.array([-1, 1])) * 1e-3).astype( + state.dtype + ) # convert mm yr-1 to m yr-1 + finalisrange = isinstance(final, Sequence) + + if finalisrange: + if len(final) != 2: + raise ValueError("final range is the wrong size") + afinal = (1 - fraction) * final[0] + fraction * final[1] + else: + if final.shape != fraction.shape: + raise ValueError("final array is the wrong shape") + afinal = final + + startrate = (1 - fraction) * startrate[0] + fraction * startrate[1] + + # For terms where the rate increases linearly in time t, we can write GMSLR as + # S(t) = a*t**2 + b*t + # where a is 0.5*acceleration and b is start rate. Hence + # a = S/t**2-b/t = (S-b*t)/t**2 + # If nfinal=1, the following two lines are equivalent to + # halfacc=(final-startyr*nyr)/nyr**2 + finalyr = ( + np.arange(nfinal, dtype=state.dtype) - nfinal + 94 + 1 + ) # last element ==nyr + halfacc = (afinal - startrate * finalyr.mean()) / (finalyr**2).mean() + quadratic = halfacc[:, :, np.newaxis] * (time**2) + linear = startrate[:, :, np.newaxis] * time + + # If acceleration ceases for t>t0, the rate is 2*a*t0+b thereafter, so + # S(t) = a*t0**2 + b*t0 + (2*a*t0+b)*(t-t0) + # = a*t0*(2*t - t0) + b*t + # i.e. the quadratic term is replaced, the linear term unaffected + # The quadratic also = a*t**2-a*(t-t0)**2 + + if state.palmer_method: + y = halfacc[:, :, np.newaxis] * timeendofAR5 * ((2 * time) - timeendofAR5) + quadratic[:, :, 95:] = y[:, :, 95:] + + quadratic += linear + + quadratic = quadratic.reshape( + quadratic.shape[0] * quadratic.shape[1], quadratic.shape[2] + ) + + return quadratic diff --git a/profsea/components/global_/__init__.py b/profsea/components/global_/__init__.py new file mode 100644 index 0000000..fd27983 --- /dev/null +++ b/profsea/components/global_/__init__.py @@ -0,0 +1,18 @@ +from .antarctica import AntarcticaDynAR5, AntarcticaISMIP6, AntarcticaSMBAR5 +from .expansion import ThermalExpansion +from .glacier import Glacier +from .greenland import GreenlandAR6, GreenlandDynAR5, GreenlandSMBAR5 +from .landwater import LandwaterAR5, LandwaterAR6 + +__all__ = [ + "AntarcticaDynAR5", + "AntarcticaISMIP6", + "AntarcticaSMBAR5", + "ThermalExpansion", + "Glacier", + "GreenlandAR6", + "GreenlandDynAR5", + "GreenlandSMBAR5", + "LandwaterAR5", + "LandwaterAR6", +] diff --git a/profsea/components/global_/antarctica.py b/profsea/components/global_/antarctica.py new file mode 100644 index 0000000..4b77270 --- /dev/null +++ b/profsea/components/global_/antarctica.py @@ -0,0 +1,304 @@ +from __future__ import annotations + +from pathlib import Path + +import numpy as np +import xarray as xr +from scipy.signal import fftconvolve +from scipy.stats import norm + +from profsea.components.core.base import Component +from profsea.components.core.global_model import ClimateState +from profsea.components.core.time_projection import time_projection + +PROFSEA_DIR = Path(__file__).resolve().parents[2] +AUX_DATA_DIR = PROFSEA_DIR / "aux_data" + +PARAMS_MAP = { + "wais": AUX_DATA_DIR / "wais_params_expanded.nc", + "eais": AUX_DATA_DIR / "eais_params_expanded.nc", + "peninsula": AUX_DATA_DIR / "pen_params_expanded.nc", +} + + +class AntarcticaISMIP6(Component): + """ + ISMIP6 2300 Antarctic ice-sheet emulator with two-timescale response. + + This emulation of the ISMIP6 ice-sheet model ensemble aims to capture + slow, fast and drift responses of the Antarctic ice sheet to GMST. + The slow response is modelled as the impulse response to temperature + forcing, convolved with two exponential decay kernels representing + different ice-sheet response timescales, depending on the region being modelled. + The fast response is modelled as a direct proportionality to the integrated + temperature anomaly, while the drift term captures any linear time-dependent + trends not explained by the temperature forcing. + + Parameters provided are for the WAIS, EAIS and AIS Peninsula regions, since each has + different response characteristics to warming. + """ + + def __init__(self, region: str): + """ + Parameters + ---------- + region: str + The Antarctic region to model. Must be one of "wais", "eais", or "peninsula". + """ + params_path = PARAMS_MAP.get(region.lower()) + if not params_path: + raise ValueError(f"Invalid region calibration: {region}") + + self.param_ds = xr.load_dataset(params_path) + self.n_models = self.param_ds.coords["model"].shape[0] + + def _impulse_response_term( + self, + tas_1d: np.ndarray, + tau1: float, + tau2: float, + gamma: float, + params_1d: np.ndarray, + dt: float, + state: ClimateState, + ) -> np.ndarray: + """Computes the slow response term for a single trajectory.""" + n_time = tas_1d.shape[0] + alpha1, alpha2, _ = params_1d + + forcing_base = np.sign(tas_1d) * (np.abs(tas_1d) ** gamma) + + # decay_factors1 = np.exp(-np.arange(n_time) * dt / tau1) * (dt / tau1) + t_arr = np.arange(n_time, dtype=state.dtype) + decay_factors1 = (t_arr * dt / tau1**2) * np.exp(-t_arr * dt / tau1) * dt + rate_delayed1 = fftconvolve(forcing_base, decay_factors1, mode="full")[:n_time] + term_slow1 = alpha1 * (np.cumsum(rate_delayed1) * dt) + + # decay_factors2 = np.exp(-np.arange(n_time) * dt / tau2) * (dt / tau2) + decay_factors2 = (t_arr * dt / tau2**2) * np.exp(-t_arr * dt / tau2) * dt + rate_delayed2 = fftconvolve(forcing_base, decay_factors2, mode="full")[:n_time] + term_slow2 = alpha2 * (np.cumsum(rate_delayed2) * dt) + + return term_slow1 + term_slow2 + + def _precompute_delayed_rates( + self, tas: np.ndarray, dt: float, state: ClimateState + ) -> tuple[np.ndarray, np.ndarray]: + """ + Precomputes the cumulative delayed rates for all models across all trajectories. + Returns two arrays of shape (n_models, n_traj, n_time). + """ + n_traj, n_time = tas.shape + cum_rate1 = np.zeros((self.n_models, n_traj, n_time), dtype=state.dtype) + cum_rate2 = np.zeros((self.n_models, n_traj, n_time), dtype=state.dtype) + t_arr = np.arange(n_time, dtype=state.dtype) + + for m_idx in range(self.n_models): + tau1 = np.array(self.param_ds.tau1[m_idx].values, dtype=state.dtype) + tau2 = np.array(self.param_ds.tau2[m_idx].values, dtype=state.dtype) + gamma = np.array(self.param_ds.gamma[m_idx].values, dtype=state.dtype) + + # Forcing base is model-specific due to gamma. Shape: (n_traj, n_time) + forcing_base = np.sign(tas) * (np.abs(tas) ** gamma) + + # Decay factors broadcasted to 2D: (1, n_time) + df1 = ((t_arr * dt / tau1**2) * np.exp(-t_arr * dt / tau1) * dt)[ + np.newaxis, : + ] + df2 = ((t_arr * dt / tau2**2) * np.exp(-t_arr * dt / tau2) * dt)[ + np.newaxis, : + ] + + # Vectorized convolution across all trajectories (axes=1) + rate_delayed1 = fftconvolve(forcing_base, df1, mode="full", axes=1)[ + :, :n_time + ] + cum_rate1[m_idx] = np.cumsum(rate_delayed1, axis=1) * dt + + rate_delayed2 = fftconvolve(forcing_base, df2, mode="full", axes=1)[ + :, :n_time + ] + cum_rate2[m_idx] = np.cumsum(rate_delayed2, axis=1) * dt + + return cum_rate1, cum_rate2 + + def project(self, state: ClimateState, rng: np.random.Generator) -> np.ndarray: + """ + Projects AIS response using empirical additive bootstrapping aligned + to the ClimateState ensemble size. + """ + tas = np.atleast_2d(np.squeeze(state.T_ens)) + n_traj, n_time = tas.shape + dt = 1.0 + nm = state.nt * state.num_members + + # 1. Precompute expensive convolutions for unique (Model x Trajectory) combos + cum_rate1, cum_rate2 = self._precompute_delayed_rates(tas, dt, state) + tas_int = np.cumsum(tas, axis=1) * dt + + # 2. Generate random model/residual assignments for all members + model_indices = rng.integers(0, self.n_models, size=nm) + all_residuals = np.asarray( + self.param_ds.param_residuals.values, dtype=state.dtype + ) + n_train_scenarios = all_residuals.shape[1] + residual_indices = rng.integers(0, n_train_scenarios, size=nm) + + # 3. Create flat mapping array to match the (Trajectory x Member) layout + # This groups by trajectory: [Traj0_Mem0...Traj0_Mem999, Traj1_Mem0...] + t_indices = np.repeat(np.arange(n_traj, dtype=np.int32), state.num_members) + + # NOTE: If your required grouping is interleaved [Traj0_Mem0, Traj1_Mem0...] + # uncomment the line below instead: + # t_indices = np.tile(np.arange(n_traj, dtype=state.dtype), state.num_members) + + # 4. Vectorized Parameter Extraction + general_p = np.asarray( + self.param_ds.general_params.values[model_indices], dtype=state.dtype + ) + sampled_residuals = all_residuals[model_indices, residual_indices, :] + total_params = general_p + sampled_residuals + + # Slice with [:, 0:1] to maintain a 2D shape (nm, 1) for broadcasting against time + alpha1 = total_params[:, 0:1] + alpha2 = total_params[:, 1:2] + beta = total_params[:, 2:3] + + # 5. Final Vectorized Assembly + term_slow = ( + alpha1 * cum_rate1[model_indices, t_indices] + + alpha2 * cum_rate2[model_indices, t_indices] + ) + term_fast = beta * tas_int[t_indices] + + return term_slow + term_fast + + +class AntarcticaDynAR5(Component): + """ + AR5 Antarctic ice-dynamics response to warming, as a function of + cumulative emissions or scenario. Following the implementation + as given by Jonathan Gregory's ar5gmslr (https://github.com/JonathanGregory/ar5gmslr). + + Requires cumulative emissions total to be specified for a given scenario, + or will default to scenario-based regression, based on rcp scenarios. + """ + + def __init__( + self, d_ant: float = (2.37 + 0.13) * 1e-3, cum_emissions_total: float = None + ): + self.d_ant = d_ant + self.cum_emissions_total = cum_emissions_total + + def project(self, state: ClimateState, rng: np.random.Generator) -> np.ndarray: + """Project Antarctic rapid ice-sheet dynamics contribution to GMSLR. + + Parameters + ---------- + fraction: np.ndarray + Random numbers for the dynamic contribution. + + Returns + ------- + np.ndarray + Antarctic rapid ice-sheet dynamics contribution to GMSLR. + """ + # This is a naive solution to calculating the AntDyn contribution + # for any given scenario. Basically linear regressions through existing data + # to find rough relationship between cumulative emissions and AntDyn contribution. + if self.cum_emissions_total: + upper = (0.000110 * self.cum_emissions_total) + 0.375 # in metres + lower = (1.363e-05 * self.cum_emissions_total) + 0.0392 # in metres + final = [lower, upper] + else: + lcoeff = dict( + rcp26=[-2.881, 0.923, 0.000], + rcp45=[-2.676, 0.850, 0.000], + rcp60=[-2.660, 0.870, 0.000], + rcp85=[-2.399, 0.860, 0.000], + ) + lcoeff = lcoeff[state.scenario] + + ascale = norm.ppf(state.fraction).astype(state.dtype) + final = np.exp(lcoeff[2] * ascale**2 + lcoeff[1] * ascale + lcoeff[0]) + final = final.reshape(state.num_members, state.nt) + return ( + time_projection( + state, + 0.41, + 0.20, + final, + rng, + fraction=state.fraction, + ) + + self.d_ant + ) + + +class AntarcticaSMBAR5(Component): + """ + AR5 Antarctic SMB contribution to GMSLR, as a function of global + mean surface temperature change. + + Following the implementation as given by Jonathan Gregory's ar5gmslr + (https://github.com/JonathanGregory/ar5gmslr). + """ + + def __init__(self): + pass + + def project( + self, + state: ClimateState, + rng: np.random.Generator, + ) -> np.ndarray: + """Project Antarctic SMB contribution to GMSLR. + + Parameters + ---------- + T_int_ens: np.ndarray + Ensemble of time-integral temperature anomaly timeseries. + fraction: np.ndarray + Random numbers for the SMB-dynamic feedback. + + Returns + ------- + antsmb: np.ndarray + Antarctic SMB contribution to GMSLR. + """ + # Conversion factor for Gt to m SLE + mSLEoGt = 1e12 / 3.61e14 * 1e-3 + # The following are [mean,SD] + pcoK = [5.1, 1.5] # % change in Ant SMB per K of warming from G&H06 + KoKg = [1.1, 0.2] # ratio of Antarctic warming to global warming from G&H06 + + # Generate a distribution of products of the above two factors + pcoKg = ( + pcoK[0] + + rng.standard_normal([state.num_members, state.nt], dtype=state.dtype) + * pcoK[1] + ) * ( + KoKg[0] + + rng.standard_normal([state.num_members, state.nt], dtype=state.dtype) + * KoKg[1] + ) + meansmb = 1923 # model-mean time-mean 1979-2010 Gt yr-1 from 13.3.3.2 + moaoKg = ( + -pcoKg * 1e-2 * meansmb * mSLEoGt + ) # m yr-1 of SLE per K of global warming + + if state.fraction is None: + fraction = rng.random((state.num_members, state.nt), dtype=state.dtype) + elif state.fraction.size != state.num_members * state.nt: + raise ValueError("fraction is the wrong size") + else: + fraction = state.fraction.reshape((state.num_members, state.nt)) + + smax = 0.35 # max value of S in 13.SM.1.5 + ainterfactor = 1 - fraction * smax + + z = moaoKg * ainterfactor + z = z[:, :, np.newaxis] + antsmb = z * state.T_int_ens + antsmb = antsmb.reshape(antsmb.shape[0] * antsmb.shape[1], antsmb.shape[2]) + return antsmb diff --git a/profsea/components/global_/expansion.py b/profsea/components/global_/expansion.py new file mode 100644 index 0000000..b6945ff --- /dev/null +++ b/profsea/components/global_/expansion.py @@ -0,0 +1,51 @@ +from __future__ import annotations + +import numpy as np + +from profsea.components.core.base import Component +from profsea.components.core.state import ClimateState +from profsea.utils import check_shapes + + +class ThermalExpansion(Component): + """ + Parameters and Attributes + ------------------------- + OHC_change: np.ndarray + Array of ocean heat content change values. + exp_efficiency: float + Sensitivity of thermosteric SLR to ocean heat content change. + """ + + def __init__(self, OHC_change: np.ndarray, distribution_scaler: float = 1.0): + self.OHC_change = OHC_change + self.distribution_scaler = distribution_scaler + + def project(self, state: ClimateState, rng: np.random.Generator) -> np.ndarray: + self.OHC_change = np.asarray(self.OHC_change, dtype=state.dtype) + + # check the shape here + check_shapes(self.OHC_change, state.nyr) + + # Ensure OHC_change is 2D + if self.OHC_change.ndim > 2: + self.OHC_change = np.squeeze(self.OHC_change) + if self.OHC_change.ndim == 1: + self.OHC_change = np.expand_dims(self.OHC_change, axis=0) + + # Sensitivity of thermosteric SLR to ocean heat content change + # From Turner et al. (2023) + mean_eff = 0.113 + std_eff = 0.013 * self.distribution_scaler + + exp_efficiency = ( + rng.normal(loc=mean_eff, scale=std_eff, size=(state.nt, state.num_members)) + * 1e-24 + ).astype(state.dtype) # m/YJ + + ohc_3d = self.OHC_change[:, None, :] + # Efficiency shape: (nt, num_members, 1) + exp_efficiency_3d = exp_efficiency[:, :, None] + + expansion = ohc_3d * exp_efficiency_3d + return expansion.reshape(state.num_members * state.nt, state.nyr) diff --git a/profsea/components/global_/glacier.py b/profsea/components/global_/glacier.py new file mode 100644 index 0000000..4f159f9 --- /dev/null +++ b/profsea/components/global_/glacier.py @@ -0,0 +1,108 @@ +from __future__ import annotations + +import numpy as np + +from profsea.components.core.base import Component +from profsea.components.core.global_model import ClimateState + + +class Glacier(Component): + def __init__(self, glaciermip: int = 2): + self.glaciermip = glaciermip + + def project(self, state: ClimateState, rng: np.random.Generator) -> np.ndarray: + """Project glacier contribution to GMSLR. + + Returns + ------- + glacier: np.ndarray + Glacier contribution to GMSLR. + """ + tas = state.T_ens + if tas.ndim > 2: + tas = np.squeeze(tas) + if tas.ndim == 1: + tas = np.expand_dims(tas, axis=0) + + # glaciermip -- False => AR5 parameters, 1 => fit to Hock et al. (2019), + # 2 => fit to Marzeion et al. (2020) + dmzdtref = 0.95 # mm yr-1 in Marzeion's CMIP5 ensemble mean for AR5 ref period + dmz = ( + dmzdtref * (state.endofhistory - 1996) * 1e-3 + ) # m from glacier at start wrt AR5 ref period + glmass = 412.0 - 96.3 # initial glacier mass, used to set a limit, from Tab 4.2 + glmass = 1e-3 * glmass # m SLE + + if self.glaciermip == 1: + glparm = [ + dict(name="SLA2012", factor=3.39, exponent=0.722, cvgl=0.15), + dict(name="MAR2012", factor=4.35, exponent=0.658, cvgl=0.13), + dict(name="GIE2013", factor=3.57, exponent=0.665, cvgl=0.13), + dict(name="RAD2014", factor=6.21, exponent=0.648, cvgl=0.17), + dict(name="GloGEM", factor=2.88, exponent=0.753, cvgl=0.13), + ] + elif self.glaciermip == 2: + glparm = [ + dict(name="GLIMB", factor=3.70, exponent=0.662, cvgl=0.206), + dict(name="GloGEM", factor=4.08, exponent=0.716, cvgl=0.161), + dict(name="JULES", factor=5.50, exponent=0.564, cvgl=0.188), + dict(name="Mar-12", factor=4.89, exponent=0.651, cvgl=0.141), + dict(name="OGGM", factor=4.26, exponent=0.715, cvgl=0.164), + dict(name="RAD2014", factor=5.18, exponent=0.709, cvgl=0.135), + dict(name="WAL2001", factor=2.66, exponent=0.730, cvgl=0.206), + ] + elif not self.glaciermip: + glparm = [ + dict(name="Marzeion", factor=4.96, exponent=0.685, cvgl=0.20), + dict(name="Radic", factor=5.45, exponent=0.676, cvgl=0.20), + dict(name="Slangen", factor=3.44, exponent=0.742, cvgl=0.20), + dict(name="Giesen", factor=3.02, exponent=0.733, cvgl=0.20), + ] + else: + raise KeyError( + "glaciermip must be False (AR5 parameters), 1 (Hock et al., 2019), or 2 (Marzeion et al., 2020)" + ) + + ngl = len(glparm) + model_indices = rng.integers(0, ngl, size=(state.nt, state.num_members)) + + base_factors = np.array([p["factor"] for p in glparm], dtype=state.dtype) + base_exponents = np.array([p["exponent"] for p in glparm], dtype=state.dtype) + base_cvgls = np.array([p["cvgl"] for p in glparm], dtype=state.dtype) + + factors = base_factors[model_indices][:, :, None] + exponents = base_exponents[model_indices][:, :, None] + cvgls = base_cvgls[model_indices][:, :, None] + + r = rng.standard_normal((state.nt, state.num_members), dtype=state.dtype)[ + :, :, None + ] + + T_int_ens_3d = state.T_int_ens[:, None, :] + # Median shape: (1, 1, nyr) + T_int_med_3d = state.T_int_med[None, None, :] + + zgl = self._project_glacier1(T_int_ens_3d, factors, exponents, state) + + # Passes (1, 1, nyr) + (nt, nm, 1) -> Returns (nt, nm, nyr) + mgl = self._project_glacier1(T_int_med_3d, factors, exponents, state) + + # 6. Apply variance and clip using 3D matrix math + glacier = zgl + (mgl * r * cvgls) + glacier += dmz + np.clip(glacier, None, glmass, out=glacier) + + # 7. Flatten to standard 2D output for easy summation + return glacier.reshape(state.nt * state.num_members, state.nyr) + + def _project_glacier1( + self, + T_int: np.ndarray, + factor: np.ndarray, + exponent: np.ndarray, + state: ClimateState, + ) -> np.ndarray: + """Project glacier contribution by one glacier method.""" + scale = 1e-3 # mm to m + # np.where works perfectly with n-dimensional broadcasting + return scale * factor * (np.where(T_int < 0, 0, T_int) ** exponent) diff --git a/profsea/components/global_/greenland.py b/profsea/components/global_/greenland.py new file mode 100644 index 0000000..0ecc215 --- /dev/null +++ b/profsea/components/global_/greenland.py @@ -0,0 +1,222 @@ +from __future__ import annotations + +import functools +from pathlib import Path + +import numpy as np +import pandas as pd +from scipy.stats import truncnorm + +from profsea.components.core.base import Component +from profsea.components.core.global_model import ClimateState +from profsea.components.core.time_projection import time_projection + + +@functools.lru_cache(maxsize=1) +def load_greenland_calibration(): + """Loads the CSV once and keeps it in memory.""" + path = Path(__file__).parents[2] / "aux_data" / "ISMIP_GIS_calibration.csv" + return pd.read_csv(path) + + +class GreenlandAR6(Component): + def __init__(self): + self.df = load_greenland_calibration() + + def project(self, state: ClimateState, rng: np.random.Generator) -> np.ndarray: + """Project Greenland ice-sheet contribution to GMSLR. + This follows the IPCC AR6 methodology as closely as possible. + Projections are relative to 1996-2014 baseline. + + Returns + ------- + np.ndarray + Total GIS contribution to GMSLR. + """ + tas = state.T_ens + if tas.ndim > 2: + tas = np.squeeze(tas) + if tas.ndim == 1: + tas = np.expand_dims(tas, axis=0) + + nt = tas.shape[0] + time_delta = np.arange(state.nyr, dtype=state.dtype) + + df = self.df + n_models = len(df) + + model_indices = rng.integers(0, n_models, size=(nt, state.num_members)) + + # Extract parameters and reshape to 3D: (nt, nm, 1) + b0 = df["b0"].values[model_indices][:, :, None].astype(state.dtype) + b1 = df["b1"].values[model_indices][:, :, None].astype(state.dtype) + b2 = df["b2"].values[model_indices][:, :, None].astype(state.dtype) + b3 = df["b3"].values[model_indices][:, :, None].astype(state.dtype) + b4 = df["b4"].values[model_indices][:, :, None].astype(state.dtype) + b5 = df["b5"].values[model_indices][:, :, None].astype(state.dtype) + + # GIS trend values taken from FACTS GitHub repo + trend_mean = 0.19 + trend_std = 0.1 + + # Calculate trend contribution distribution + a_bound = (0.0 - trend_mean) / trend_std + b_bound = (99999.9 - trend_mean) / trend_std # Or just np.inf + trend = truncnorm.ppf( + rng.random((nt, state.num_members)), + a=a_bound, + b=b_bound, + loc=trend_mean, + scale=trend_std, + ).astype(state.dtype) + + trend_sle = (trend[:, :, None] * time_delta[None, None, :]) * 1e-3 + + tas_3d = tas[:, None, :] + + # Calculate GIS contribution rate + dsle = ( + b0 + + (b1 * tas_3d) + + (b2 * tas_3d**2) + + (b3 * tas_3d**3) + + (b4 * time_delta[None, None, :]) + + (b5 * time_delta[None, None, :] ** 2) + ) + + # Now integrate + sle_ens = np.cumsum(dsle, axis=2) * 1e-3 # convert from mm to m + + sle_ens += trend_sle + + # Persist 2100 rate of changeg + if state.end_yr >= 2100: + idx_2100 = 94 + rate = np.diff(sle_ens, axis=2)[:, :, idx_2100 - 1] + sle_ens[:, :, idx_2100 + 1 :] = sle_ens[:, :, idx_2100 : idx_2100 + 1] + ( + rate[:, :, None] * time_delta[None, None, 1 : state.nyr - idx_2100] + ) + + sle_ens = sle_ens.reshape((state.num_members * state.nt, state.nyr)) + return sle_ens + + +class GreenlandSMBAR5(Component): + """ + AR5 Greenland SMB contribution to GMSLR. + """ + + def __init__(self): + self.fgreendyn = 0.5 + self.dgreen = (3.21 - 0.30) * 1e-3 + self.mSLEoGt = 1e12 / 3.61e14 * 1e-3 + + def project(self, state: ClimateState, rng: np.random.Generator) -> np.ndarray: + """Project Greenland SMB contribution to GMSLR. + + Parameters + ---------- + state: ClimateState + State object containing relevant information for the projection. + rng: np.random.Generator + Random number generator. + + Returns + ------- + greensmb: np.ndarray + Greenland SMB contribution to GMSLR. + + """ + dtgreen = -0.146 # Delta_T of Greenland ref period wrt AR5 ref period + fnlogsd = 0.4 # random methodological error of the log factor + febound = [1, 1.15] # bounds of uniform pdf of SMB elevation feedback factor + + # random log-normal factor + fn = np.exp(rng.standard_normal(state.num_members, dtype=state.dtype) * fnlogsd) + # elevation feedback factor + fe = ( + rng.random(state.num_members, dtype=state.dtype) * (febound[1] - febound[0]) + + febound[0] + ) + ff = fn * fe + + ztgreen = state.T_ens - dtgreen + + greensmb = ff[:, np.newaxis, np.newaxis] * self._fettweis(ztgreen) + + if state.palmer_method and state.end_yr > state.endofAR5: + greensmb[:, :, 95:] = greensmb[:, :, 94:95] + + greensmb = np.cumsum(greensmb, axis=-1) + + greensmb += (1 - self.fgreendyn) * self.dgreen + + greensmb = greensmb.reshape( + greensmb.shape[0] * greensmb.shape[1], greensmb.shape[2] + ) + return greensmb + + def _fettweis(self, ztgreen: np.ndarray) -> np.ndarray: + """Calculate Greenland SMB in m yr-1 SLE from global mean temperature + anomaly, using Eq 2 of Fettweis et al. (2013). + + Parameters + ---------- + ztgreen: np.ndarray + Global mean temperature anomaly. + + Returns + ------- + np.ndarray + Greenland SMB in m yr-1 SLE. + """ + return ( + 71.5 * ztgreen + 20.4 * (ztgreen**2) + 2.8 * (ztgreen**3) + ) * self.mSLEoGt + + +class GreenlandDynAR5(Component): + """ + AR5 Greenland ice-sheet dynamics contribution to GMSLR. + + NOTE: This is not scenario independent. It will run with either rcp85/ssp585 related projections, + or will default to a temperature independent projection based on AR5. + + This is based on Jonathan Gregory's AR5 implmentation, + which can be found at https://github.com/JonathanGregory/ar5gmslr + + """ + + def __init__( + self, + ): + self.fgreendyn = 0.5 + self.dgreen = (3.21 - 0.30) * 1e-3 + + def project(self, state: ClimateState, rng: np.random.Generator) -> np.ndarray: + """Project Greenland rapid ice-sheet dynamics contribution to GMSLR. + + Parameters + ---------- + state: ClimateState + State object containing relevant information for the projection. + rng: np.random.Generator + Random number generator. + + Returns + ------- + np.ndarray + Greenland rapid ice-sheet dynamics contribution to GMSLR. + """ + # For SMB+dyn during 2005-2010 Table 4.6 gives 0.63+-0.17 mm yr-1 (5-95% range) + # For dyn at 2100 Chapter 13 gives [20,85] mm for rcp85, [14,63] mm otherwise + if state.scenario in ["rcp85", "ssp585"]: + finalrange = [0.020, 0.085] + else: + finalrange = [0.014, 0.063] + return ( + time_projection( + state, 0.63 * self.fgreendyn, 0.17 * self.fgreendyn, finalrange, rng + ) + + self.fgreendyn * self.dgreen + ) diff --git a/profsea/components/global_/landwater.py b/profsea/components/global_/landwater.py new file mode 100644 index 0000000..cd434c2 --- /dev/null +++ b/profsea/components/global_/landwater.py @@ -0,0 +1,86 @@ +from __future__ import annotations + +import functools +from pathlib import Path + +import numpy as np +import xarray as xr + +from profsea.components.core.base import Component +from profsea.components.core.global_model import ClimateState +from profsea.components.core.time_projection import time_projection + + +@functools.lru_cache(maxsize=1) +def load_landwater_projection(): + """Loads the NetCDF once and keeps the VALUES in memory.""" + path = ( + Path(__file__).parents[2] / "aux_data" / "ssp_global_landwater_projections.nc" + ) + with xr.open_dataset(path) as ds: + ds.load() + return ds + + +class LandwaterAR6(Component): + def __init__(self): + self.lw_ds = load_landwater_projection() + + def project(self, state: ClimateState, rng: np.random.Generator) -> np.ndarray: + """Project land water storage contribution to GMSLR. + This follows the IPCC AR6 methodology as closely as possible. + Projections are relative to 1996-2014 baseline. + + Returns + ------- + np.ndarray + Land water storage contribution to GMSLR. + """ + self.lw_ds = self.lw_ds.astype(state.dtype) + + # Interpolate to annual projections + interp_ds = ( + self.lw_ds.interp(years=np.arange(2005, 2301, 1), method="linear") + .squeeze() + .astype(state.dtype) + ) + + # Base array: Shape (n_samples_in_nc, 296) + lw_base = interp_ds["sea_level_change"].values * 1e-3 + n_samples_nc = lw_base.shape[0] + + # Sample! + sample_indices = rng.integers( + 0, n_samples_nc, size=(state.nt, state.num_members) + ) + + # Resulting shape: (nt, nm, nyr) + lw_ens = lw_base[sample_indices, 1 : state.nyr + 1] + return lw_ens.reshape(state.nt * state.num_members, state.nyr) + + +class LandwaterAR5(Component): + def __init__(self): + self.startratemean = 0.38 + self.startratepm = 0.49 - 0.38 + + def project(self, state: ClimateState, rng: np.random.Generator) -> np.ndarray: + """Old projection function. Project land water storage + contribution to GMSLR. + + Returns + ------- + np.ndarray + Land water storage contribution to GMSLR. + """ + + # The rate at start is the one for 1993-2010 from the budget table. + # The final amount is the mean for 2081-2100. + nyr = ( + state.endofAR5 - 2081 + 1 + ) # number of years of the time-mean of the final amount + final = [-0.01, 0.09] # AR5 + + return time_projection( + state, self.startratemean, self.startratepm, final, rng, nfinal=nyr + ) diff --git a/profsea/components/spatial/__init__.py b/profsea/components/spatial/__init__.py new file mode 100644 index 0000000..f08d4f2 --- /dev/null +++ b/profsea/components/spatial/__init__.py @@ -0,0 +1,5 @@ +from .fingerprint import Fingerprint +from .gia import GIA +from .sterodynamic import SterodynamicCMIP5, SterodynamicCMIP6 + +__all__ = ["Fingerprint", "GIA", "SterodynamicCMIP5", "SterodynamicCMIP6"] diff --git a/profsea/components/spatial/fingerprint.py b/profsea/components/spatial/fingerprint.py new file mode 100644 index 0000000..8875b15 --- /dev/null +++ b/profsea/components/spatial/fingerprint.py @@ -0,0 +1,174 @@ +from __future__ import annotations + +from pathlib import Path + +import dask.array as da +import numpy as np +import xarray as xr + +from profsea.components.core.base import SpatialComponent +from profsea.components.core.state import SpatialState +from profsea.utils import sample_members_2D + +PROFSEA_DIR = Path(__file__).resolve().parents[2] +FP_DIR = PROFSEA_DIR / "profsea-assets" / "grd-fingerprints" + +FP_PATH_MAP = { + "greendyn": [ + FP_DIR / "greendyn_klemann.nc", + FP_DIR / "greendyn_slangen.nc", + FP_DIR / "greendyn_spada.nc", + ], + "greensmb": [ + FP_DIR / "greensmb_klemann.nc", + FP_DIR / "greensmb_slangen.nc", + FP_DIR / "greensmb_spada.nc", + ], + "greenland": [FP_DIR / "greenland_ar6.nc"], + "landwater": [FP_DIR / "landwater_slangen.nc"], + "wais": [FP_DIR / "wais.nc"], + "eais": [FP_DIR / "eais.nc"], + "antdyn": [ + FP_DIR / "antdyn_klemann.nc", + FP_DIR / "antdyn_slangen.nc", + FP_DIR / "antdyn_spada.nc", + ], + "antsmb": [ + FP_DIR / "antsmb_klemann.nc", + FP_DIR / "antsmb_slangen.nc", + FP_DIR / "antsmb_spada.nc", + ], + "glacier": [ + FP_DIR / "glacier_klemann.nc", + FP_DIR / "glacier_slangen.nc", + FP_DIR / "glacier_spada.nc", + ], +} + + +class Fingerprint(SpatialComponent): + """ + Spatial fingerprint component that applies spatial patterns to global projections. + """ + + def __init__( + self, + global_projection: xr.DataArray, + fingerprint_component: str, + fingerprint_paths: str | Path | list[str | Path] = None, + scaling_factor: float = 1.0, + sample_spatial: bool = False, + ) -> None: + """ + Parameters + ---------- + global_projection: xr.DataArray + A 2D array (members x years) of global projections to apply the fingerprints to. + fingerprint_paths: str, Path, or list of str/Path + Path(s) to NetCDF files containing the spatial fingerprint patterns. Each file should contain a DataArray with dimensions (lat, lon). + scaling_factor: float, optional + Optional multiplier to apply to the fingerprint patterns (e.g., to convert from m to mm). Default is 1.0 (no scaling). + sample_spatial: bool, optional + If True, randomly sample a different fingerprint pattern for each member. If False, use the mean of all provided fingerprints for all members (storyline mode). Default is False. + """ + self._global_projection = da.from_array(global_projection.data, chunks="auto") + self.scaling_factor = scaling_factor + self.sample_spatial = sample_spatial + self.fingerprint_component = fingerprint_component + + # Default paths if not provided (can be overridden by user input) + if fingerprint_paths is None: + # Determine default paths based on the component type + try: + self.fp_paths = [Path(p) for p in FP_PATH_MAP[fingerprint_component]] + except KeyError: + raise ValueError( + f"No default fingerprint paths found for fingerprint component '{fingerprint_component}'. Please provide explicit paths." + ) + # Normalize the input to always be a list of Path objects + elif isinstance(fingerprint_paths, (str, Path)): + self.fp_paths = [Path(fingerprint_paths)] + else: + self.fp_paths = [Path(p) for p in fingerprint_paths] + + if fingerprint_paths is not None: + for p in self.fp_paths: + if not p.exists(): + raise FileNotFoundError(f"Missing fingerprint file: {p}") + + @property + def global_projection(self): + return self._global_projection + + def _load_and_interpolate(self, state: SpatialState) -> da.Array: + """ + Lazily load and regrid all provided fingerprints. + + Parameters + ---------- + state: SpatialState + The state object containing the target grid information. + + Returns + ------- + da.Array + """ + grids = [] + for path in self.fp_paths: + fp_da = xr.open_dataarray(path, chunks={"lat": 45, "lon": 45}) + fp_interp = self.extract_spatial(fp_da, state) + grids.append(fp_interp.data * self.scaling_factor) + + # Stack them into a 3D array: (n_fingerprints, lat, lon) + return da.stack(grids, axis=0) + + def project(self, state: SpatialState, rng: np.random.Generator) -> da.Array: + """ + Calculate the spatial projection by applying the fingerprints to the global projection. + + Parameters + ---------- + state: SpatialState + The state object containing the target grid information and number of members. + rng: np.random.Generator + Random number generator for sampling fingerprints if sample_spatial is True. + + Returns + ------- + da.Array + A 4D array of shape (members, years, lat, lon) containing the spatial projections for each member and year. + """ + fps = self._load_and_interpolate(state) # Shape: (n_fps, lat, lon) + spatial_shape = fps.shape[1:] + + # Handle the global projection + if state.output_percentiles is not None: + global_proj = sample_members_2D( + self.global_projection, state.output_percentiles + ) + else: + global_proj = self.global_projection + + # Determine the spatial fingerprint for each member + n_fps = fps.shape[0] + + if n_fps == 1: + # Only one fingerprint available + selected_fps = da.broadcast_to( + fps[0], + (state.n_members, *spatial_shape), + ) + elif self.sample_spatial: + # Probabilistic mode: pick a random fingerprint per member + fp_indices = rng.integers(0, n_fps, size=state.n_members) + selected_fps = fps[fp_indices, :, :] + else: + # Storyline mode: take the mean of the available fingerprints + mean_fp = da.nanmean(fps, axis=0) + selected_fps = da.broadcast_to( + mean_fp, + (state.n_members, *spatial_shape), + ) + + # Broadcast and multiply: (members, years) * (members, lat, lon) + return self.broadcast_spatiotemporal(global_proj, selected_fps) diff --git a/profsea/components/spatial/gia.py b/profsea/components/spatial/gia.py new file mode 100644 index 0000000..5821b1d --- /dev/null +++ b/profsea/components/spatial/gia.py @@ -0,0 +1,138 @@ +from __future__ import annotations + +from pathlib import Path + +import dask.array as da +import numpy as np +import xarray as xr + +from profsea.components.core.base import SpatialComponent +from profsea.components.core.state import SpatialState + +PROFSEA_DIR = Path(__file__).resolve().parents[2] +GIA_DIR = PROFSEA_DIR / "profsea-assets" / "gia" + + +class GIA(SpatialComponent): + """ + Handles Glacial Isostatic Adjustment. + GIA accumulates linearly over time and has no global warming driver input. + Supports loading single files, lists of files, or directories of files. + """ + + def __init__( + self, + gia_dir: str | Path = None, + sample_spatial: bool = False, + ) -> None: + """ + Parameters + ---------- + gia_dir: str, Path, or list of str/Path + Path to a directory containing GIA files. + sample_spatial: bool, optional + Whether to sample spatial patterns probabilistically. Default is False. + """ + self.sample_spatial = sample_spatial + + if gia_dir is None: + self.gia_dir = GIA_DIR + else: + self.gia_dir = Path(gia_dir) + + # Dummy property required by the base Spatial architecture + self._global_projection = da.zeros((1, 1)) + + @property + def global_projection(self): + return self._global_projection + + def _load_and_interpolate_rates(self, state: SpatialState) -> da.Array: + """ + Lazily loads all GIA files, regrids them, and stacks them into a + single 3D array of shape (total_models, lat, lon). + + Parameters + ---------- + state: SpatialState + The spatial state containing the target grid information. + + Returns + ------- + da.Array + A Dask array of shape (total_models, lat, lon) containing the regridded GIA rates. + """ + gia_paths = list(self.gia_dir.glob("*.nc")) + + if not gia_paths: + raise FileNotFoundError(f"No GIA NetCDF files found in {self.gia_dir}") + + grids = [] + for path in gia_paths: + gia_da = xr.open_dataarray(path, chunks={"lat": 45, "lon": 45}) + interp_da = self.extract_spatial(gia_da, state) + data = interp_da.data + + # Determine expected spatial dims based on state + spatial_dims = 2 if hasattr(state, "grid_lats") else 1 + + # If the raw file lacks a 'model' dimension, prepend it + if data.ndim == spatial_dims: + data = data[None, ...] + + grids.append(data) + + # Concatenate along the model axis (axis 0) + return da.concatenate(grids, axis=0) + + def project(self, state: SpatialState, rng: np.random.Generator) -> da.Array: + """ + Project the GIA component by multiplying the accumulation time vector with the spatial rates. + + Parameters + ---------- + state: SpatialState + The spatial state containing the target grid information. + rng: np.random.Generator + Random number generator for sampling GIA models if sample_spatial is True. + + Returns + ------- + da.Array + A 4D array of shape (members, years, lat, lon) containing the spatial projections for each member and year. + """ + gia_rates = self._load_and_interpolate_rates(state) + n_patterns = gia_rates.shape[0] + + # Dynamically capture spatial shape (site,) or (lat, lon) + spatial_shape = gia_rates.shape[1:] + + # Calculate the accumulation time vector (mm/yr to m/yr) + midyr = ( + state.baseline_yrs[1] - state.baseline_yrs[0] + 1 + ) * 0.5 + state.baseline_yrs[0] + Tdelta = 2006 - midyr + unit_series = (np.arange(state.n_years) + Tdelta) * 0.001 + + # Broadcast 1D time series to match expected (members, years) signature + temporal_array = da.broadcast_to(unit_series, (state.n_members, state.n_years)) + + # Handle sampling if required + if n_patterns == 1: + selected_gia = da.broadcast_to( + gia_rates[0], + (state.n_members, *spatial_shape), + ) + else: + if self.sample_spatial: + rgiai = rng.integers(n_patterns, size=state.n_members) + selected_gia = gia_rates[rgiai, ...] + else: + mean_gia = da.mean(gia_rates, axis=0) + selected_gia = da.broadcast_to( + mean_gia, + (state.n_members, *spatial_shape), + ) + + # Delegate dimensional multiplication to the base class + return self.broadcast_spatiotemporal(temporal_array, selected_gia) diff --git a/profsea/components/spatial/sterodynamic.py b/profsea/components/spatial/sterodynamic.py new file mode 100644 index 0000000..84c4e1f --- /dev/null +++ b/profsea/components/spatial/sterodynamic.py @@ -0,0 +1,210 @@ +from __future__ import annotations + +import logging +from pathlib import Path + +import dask.array as da +import numpy as np +import xarray as xr + +from profsea.components.core.base import SpatialComponent +from profsea.components.core.state import ClimateState +from profsea.utils import sample_members_2D + +logging.basicConfig(level=logging.WARNING) + +PROFSEA_DIR = Path(__file__).resolve().parents[2] +PATTERNS_DIR = PROFSEA_DIR / "profsea-assets" / "cmip6-patterns" + + +class SterodynamicCMIP6(SpatialComponent): + """ + Parameters and Attributes + ------------------------- + global_projection: np.ndarray + Array of global sea level rise projections to use as input for sterodynamic projection. + """ + + def __init__( + self, + global_projection: xr.DataArray, + patterns_dir: str = None, + sample_spatial: bool = False, + ) -> None: + """ + Parameters + ---------- + global_projection: xr.DataArray + A 2D array (members x years) of global projections to apply the fingerprints to. + patterns_dir: str, optional + Path to directory containing CMIP6 sterodynamic patterns. + sample_spatial: bool, optional + If True, randomly sample a different fingerprint pattern for each member. If False, use the mean of all provided fingerprints for all members (storyline mode). Default is False. + """ + # Convert to dask array for cheap as possible compute + self._global_projection = da.from_array(global_projection.data, chunks="auto") + self.sample_spatial = sample_spatial + + if patterns_dir is None: + self.patterns_dir = PATTERNS_DIR + else: + self.patterns_dir = Path(patterns_dir) + + @property + def global_projection(self): + return self._global_projection + + def _load_CMIP6_slopes(self) -> tuple[xr.DataArray, xr.DataArray]: + """ + Load in the CMIP6 slope coefficients. + + Parameters + ---------- + None + + Returns + ------- + xr.DataArray + A dask array of shape (n_models, n_lats, n_lons) containing the sterodynamic + fingerprint patterns (i.e., regression coefficients) for each CMIP6 model. + xr.DataArray + A dask array of shape (n_models, n_lats, n_lons) containing the land mask for + each CMIP6 model, if present. + """ + slope_files = sorted( + Path(self.patterns_dir).glob("*/zos_regression_ssp585_*.nc"), + key=lambda p: p.name, + ) + + if not slope_files: + raise FileNotFoundError( + f"No NetCDF slope files found in {self.patterns_dir}" + ) + + # Lazily load all files keeping metadata intact + datasets = [ + xr.open_dataset(f, chunks={"lat": 45, "lon": 45})[ + "zos_zostoga_regression_slope" + ] + for f in slope_files + ] + + # Concatenate along a new dimension (representing the ensemble/models) + slopes_stack = xr.concat(datasets, dim="model") + + # Read land mask if present + mask_files = sorted( + Path(self.patterns_dir).glob("*/zos_mask_ssp585_*.nc"), key=lambda p: p.name + ) + + if mask_files: + if len(slope_files) == len(mask_files): + self.land_mask_present = True + + datasets_mask = [ + xr.open_dataset(f, chunks={"lat": 45, "lon": 45})["zos_mask"] + for f in mask_files + ] + mask_stack = xr.concat(datasets_mask, dim="model") + # mask_stack = mask_stack.sum(dim='model', skipna=True) + else: + logging.warning( + "There is a mismatch between number of slope files and mask files. " + "Ignoring mask files." + ) + self.land_mask_present = False + mask_stack = None + else: + self.land_mask_present = False + mask_stack = None + + return slopes_stack, mask_stack + + def _calc_expansion_contribution( + self, rng: np.random.Generator, state: ClimateState + ) -> da.Array: + """ + Calculate the thermal expansion contribution to the regional component of + sea level rise. + + Parameters + ---------- + rng: np.random.Generator + Random number generator for sampling spatial patterns if needed. + state: ClimateState + The state object containing the target grid information and number of members. + + Returns + ------- + da.Array + A dask array of shape (members, years, lat, lon) containing the thermal expansion contribution to the sterodynamic component for each member and year. + """ + # Select slope coefficients based on the MIP + coeffs_da, mask_da = self._load_CMIP6_slopes() + + if self.land_mask_present: # apply land mask + coeffs_da = coeffs_da.where(mask_da == 0.0) + + # Get the data either at sites or on a grid + interp_da = self.extract_spatial(coeffs_da, state) + coeffs = interp_da.data + spatial_shape = coeffs.shape[1:] # either (lat, lon) or (site,) + + if self.sample_spatial: + rand_samples = rng.choice( + coeffs.shape[0], size=state.n_members, replace=True + ) + return coeffs[rand_samples, :, :] + else: + # Calc pattern ensemble mean + mean_coeff = da.nanmean(coeffs, axis=0) + return da.broadcast_to( + mean_coeff, + (state.n_members, *spatial_shape), + ) + + def project(self, state: ClimateState, rng) -> np.ndarray: + """ + Project the sterodynamic component by applying the CMIP6 patterns to the global expansion projection. + + Parameters + ---------- + state: ClimateState + The state object containing the target grid information and number of members. + rng: np.random.Generator + Random number generator for sampling spatial patterns if needed. + + Returns + ------- + np.ndarray + A numpy array of shape (members, years, lat, lon) containing the sterodynamic component for each member and year. + """ + # Calculate percentiles locally without mutating self + if state.output_percentiles is not None: + current_projection = sample_members_2D( + self.global_projection, state.output_percentiles + ) + else: + current_projection = self.global_projection + + expansion_contribution = self._calc_expansion_contribution(rng, state) + + return self.broadcast_spatiotemporal(current_projection, expansion_contribution) + + +class SterodynamicCMIP5(SpatialComponent): + """ + Placeholder for a sterodynamic SLR component based on CMIP5 projections. + """ + + def __init__(self): + pass + + def project(self, state, rng) -> da.Array: + # Dynamically determine the spatial shape to prevent crashes when using LocalState + if hasattr(state, "target_lats"): + spatial_shape = (len(state.target_lats),) + else: + spatial_shape = (state.grid_lats.shape[0], state.grid_lons.shape[0]) + + return da.zeros((state.n_members, state.n_years, *spatial_shape)) diff --git a/profsea/config.py b/profsea/config.py deleted file mode 100644 index 99e26da..0000000 --- a/profsea/config.py +++ /dev/null @@ -1,14 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -import os -import pathlib -import yaml - -path = pathlib.Path(__file__).parents[0].as_posix() -print(path) - -with open(os.path.join(path, "user-settings.yml"), "r") as f: - settings = yaml.load(f, Loader=yaml.SafeLoader) diff --git a/profsea/directories.py b/profsea/directories.py deleted file mode 100644 index 346f9e2..0000000 --- a/profsea/directories.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -import os - -from profsea.config import settings - - -def makefolder(directory): - """ - Check if subfolder exists, if not then creates the subfolder - :param directory: directory of subfolder - """ - if not os.path.isdir(directory): - os.makedirs(directory) - - -def read_dir(): - """ - Creates multiple directories from user settings - :return: file paths required to run ProFSea tool - """ - root_dir = settings["baseoutdir"] - data_region = settings["siteinfo"]["region"] - - # output data directory - '' adds last / - cmipdir = os.path.join(root_dir, data_region, 'data', 'cmip5', '') - - # output map directory - mapdir = os.path.join(root_dir, data_region, 'figures', 'maps', '') - - # output zos data directory - zosddir = os.path.join(root_dir, data_region, 'data', 'zos_regression', '') - - # output zos figure directory - zosfdir = os.path.join(root_dir, data_region, 'figures', - 'zos_regression', '') - - # output sea level projections data directory - sealev_ddir = os.path.join(root_dir, data_region, 'data', - 'sea_level_projections', '') - - # output sea level projections figure directory - sealev_fdir = os.path.join(root_dir, data_region, 'figures', - 'sea_level_projections', '') - - # output baseline sea level figure directory - base_fdir = os.path.join(root_dir, data_region, 'figures', - 'baseline_sea_level', '') - - return cmipdir, mapdir, zosddir, zosfdir, sealev_ddir, sealev_fdir, \ - base_fdir diff --git a/profsea/plotting_libraries.py b/profsea/plotting_libraries.py deleted file mode 100644 index 2db00e8..0000000 --- a/profsea/plotting_libraries.py +++ /dev/null @@ -1,142 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -import numpy as np -import pandas as pd -import re - -from config import settings - - -def calc_xlim(str_id, tg_years, years): - """ - Define the x-axis limits based on tide gauge and projection data - :param str_id: identification variable to define between tide gauge or - sea level projection - :param tg_years: tide gauge years - :param years: sea level projection years - :return: minimum and maximum values - """ - if str_id == 'proj': - xmin = 2005 - elif str_id == 'tide': - xmin = min([min(tg_years), min(years)]) - xmin = np.floor(xmin / 10) * 10 - xmax = settings['projection_end_year'] - - return [xmin, xmax] - - -def calc_ylim(str_id, tg_amsl, df): - """ - Define the y-axis limits based on tide gauge and projection data - :param str_id: identification variable to define between tide gauge or - sea level projection - :param tg_amsl: tide gauge annual mean sea level data - :param df: sea level projection data - :return: minimum and maximum values - """ - # Calculate y-axis limits based on sea level projections only - # i.e. a list of dataframes for each RCP - if isinstance(df, list): - df_all = pd.concat(df, axis=0, ignore_index=True) - # i.e. a single dataframe for one RCP - else: - df_all = df - - ymin = df_all.min(numeric_only=True).min() - ymax = df_all.max(numeric_only=True).max() - - if str_id == 'tide': - tg_ymin = min(tg_amsl) - tg_ymin = np.floor(tg_ymin / 0.1) * 0.1 - # To include the zero line on plots - if tg_ymin > -0.05: - tg_ymin = -0.05 - ymin = min(tg_ymin, ymin) - - return [ymin-0.1, ymax+0.1] - - -def location_string(loc_string): - """ - Re-format location string for use in plotting. - Deals with , - _ ( ) and space - :param loc_string: site location - :return: simplified site location string - """ - loc_title = [] - title_temp = re.split(r"[, |\-|_|)|(|\s]", loc_string) - for string in title_temp: - loc_title.append(string.capitalize()) - loc_title = " ".join(loc_title) - - if loc_title == 'Stanley Ii': - loc_title = 'Stanley II' - - return loc_title - - -def plot_zeroline(ax, xvalues): - """ - Plots a horizontal line where x=0 - :param ax: number of subplot - :param xvalues: range of years - """ - ax.plot(xvalues, [0., 0.], 'grey', linewidth=0.5) - - -def scenario_string(rcp_scen, i): - """ - Re-format scenario string for use in plotting - :param rcp_scen: RCP emission scenario - :param i: loop level; -999 if not required - :return: simplified scenario string - """ - if i >= 0: - rcp_label = rcp_scen[i].upper() - rcp_label = rcp_label[:3] + ' ' + rcp_label[3] + '.' + rcp_label[4:] - else: - rcp_label = rcp_scen.upper() - rcp_label = rcp_label[:3] + ' ' + rcp_label[3] + '.' + rcp_label[4:] - - return rcp_label - - -def ukcp18_colours(): - """ - Define plotting colour schemes as used in UKCP18 Marine Report - :return: UKCP18 colour schemes - """ - rcp_colours = {'rcp85': 'firebrick', - 'rcp45': 'steelblue', - 'rcp26': 'darkblue', - } - - comp_parts_colours = {'antnet': 'b', - 'greennet': 'g', - 'glacier': 'c', - 'landwater': 'purple', - 'sum': 'k', - 'gia': 'orange', - 'ocean': 'r'} - - return rcp_colours, comp_parts_colours - - -def ukcp18_labels(): - """ - Define sea level component labels as used in UKCP18 Marine Report - :return: UKCP18 component labels - """ - comp_parts_labels = {'antnet': 'Antarctica', - 'greennet': 'Greenland', - 'glacier': 'Glaciers', - 'landwater': 'Land Water', - 'sum': 'Local Total', - 'gia': 'GIA', - 'ocean': 'Ocean'} - - return comp_parts_labels diff --git a/profsea/scm_profsea_experiments.py b/profsea/scm_profsea_experiments.py new file mode 100644 index 0000000..5f1645e --- /dev/null +++ b/profsea/scm_profsea_experiments.py @@ -0,0 +1,474 @@ +import argparse +from pathlib import Path + +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd +import xarray as xr +from fair import FAIR +from fair.interface import initialise +from fair.io import read_properties +from rich.console import Console +from rich.progress import track +from rich_argparse import RichHelpFormatter + +# --- NEW IMPORTS --- +from profsea.components.core.global_model import Global +from profsea.components.global_ import ( + AntarcticaISMIP6, + Glacier, + GreenlandAR6, + LandwaterAR6, + ThermalExpansion, +) +from profsea.utils import sample_members_2D + +console = Console() + + +def index_df(df: pd.DataFrame, baseline_start: int, baseline_end: int) -> pd.DataFrame: + meta_cols = [ + "ensemble_member", + "scenario", + "region", + "variable", + "unit", + "climate_model", + ] + existing_meta = [c for c in meta_cols if c in df.columns] + df_indexed = df.set_index(existing_meta) + + years = df_indexed.columns.astype(str).str[:4].astype(int) + df_indexed.columns = years + + mask_full = (years >= 1750) & (years <= 2300) + df_indexed = df_indexed.loc[:, mask_full] + + years_sliced = df_indexed.columns + baseline_mask = (years_sliced >= baseline_start) & (years_sliced <= baseline_end) + + if not baseline_mask.any(): + raise ValueError( + f"No years found in baseline range {baseline_start}-{baseline_end}" + ) + + baseline_means = df_indexed.loc[:, baseline_mask].mean(axis=1) + df_anom = df_indexed.sub(baseline_means, axis=0) + years_final = df_anom.columns + mask_final = (years_final >= 2006) & (years_final <= 2300) + + df_final = df_anom.loc[:, mask_final].reset_index() + return df_final + + +def df_to_arr(df, scenario_order): + meta_cols = [ + "ensemble_member", + "scenario", + "region", + "variable", + "unit", + "climate_model", + ] + existing_meta = [c for c in meta_cols if c in df.columns] + + df = df.set_index(existing_meta) + array = [] + for scenario in scenario_order: + try: + mask = df.index.get_level_values("scenario") == scenario + group_df = df.loc[mask] + except KeyError: + raise ValueError(f"Scenario '{scenario}' not found in the input DataFrame.") + + if group_df.empty: + raise ValueError(f"No data found for scenario '{scenario}'") + + group_sorted = group_df.sort_index(level="ensemble_member") + scenario_data = group_sorted.values + array.append(scenario_data) + + array = np.stack(array, axis=0) + array = array.transpose(2, 0, 1) # (n_scenarios, n_members, n_time) + return array + + +def load_magicc_forcing( + input_path: str, scenarios: list, baseline_start: int, baseline_end: int +) -> tuple[np.ndarray]: + df = pd.read_csv(input_path) + + tas_condition = (df["variable"] == "Surface Air Temperature Change") & ( + df["scenario"].isin(scenarios) + ) + ohc_condition = (df["variable"] == "Heat Content|Ocean") & ( + df["scenario"].isin(scenarios) + ) + tas_df = df.loc[tas_condition] + ohc_df = df.loc[ohc_condition] + + tas_df = index_df(tas_df, baseline_start, baseline_end) + ohc_df = index_df(ohc_df, baseline_start, baseline_end) + tas_arr = df_to_arr(tas_df, scenarios) + ohc_arr = df_to_arr(ohc_df, scenarios) * 1e21 + + # Trim between 2006 and 2300 just to be safe + # The years are after the 6th column, so we can slice by column names + tas_arr = tas_arr[:, :, (tas_df.columns[6] >= 2006) & (tas_df.columns[6] <= 2300)] + ohc_arr = ohc_arr[:, :, (ohc_df.columns[6] >= 2006) & (ohc_df.columns[6] <= 2300)] + + # These are now of shape (time, scenario, 1, member) - we want (scenario, member, time) + tas_arr = tas_arr.squeeze().transpose(1, 2, 0) + ohc_arr = ohc_arr.squeeze().transpose(1, 2, 0) + return tas_arr, ohc_arr + + +def load_fair_forcing( + input_path: str, scenarios: list, baseline_start: int, baseline_end: int +) -> tuple[np.ndarray]: + tas_path = Path(input_path) / "tas.nc" + ohc_path = Path(input_path) / "ohc.nc" + + tas = xr.load_dataarray(tas_path) + ohc = xr.load_dataarray(ohc_path) + + tas_baseline = tas.loc[ + dict(timebounds=np.arange(baseline_start, baseline_end + 1)) + ].mean("timebounds") + ohc_baseline = ohc.loc[ + dict(timebounds=np.arange(baseline_start, baseline_end + 1)) + ].mean(["timebounds"]) + + tas = tas.loc[dict(timebounds=np.arange(2006, 2301))] - tas_baseline + ohc = ohc.loc[dict(timebounds=np.arange(2006, 2301))] - ohc_baseline + + tas = tas.sel(scenario=scenarios).transpose("scenario", "config", "timebounds") + ohc = ohc.sel(scenario=scenarios).transpose("scenario", "config", "timebounds") + return tas.values, ohc.values + + +def run_fair( + baseline_start: int, baseline_end: int, scenarios: list, args: argparse.Namespace +) -> tuple[np.ndarray]: + f = FAIR() + f.define_time(1750, 2300, 1) + f.define_scenarios(scenarios) + species, properties = read_properties( + "../data/fair/fair-parameters/species_configs_properties_1.4.1.csv" + ) + f.define_species(species, properties) + f.ch4_method = "Thornhill2021" + df_configs = pd.read_csv( + "../data/fair/fair-parameters/calibrated_constrained_parameters_1.4.1.csv", + index_col=0, + ) + f.define_configs(df_configs.index) + f.allocate() + + if args.emissions_file: + f.fill_from_csv( + emissions_file=args.emissions_file, forcing_file=args.forcing_file + ) + else: + f.fill_from_rcmip() + + f.fill_species_configs( + "../data/fair/fair-parameters/species_configs_properties_1.4.1.csv" + ) + f.override_defaults( + "../data/fair/fair-parameters/calibrated_constrained_parameters_1.4.1.csv" + ) + initialise(f.concentration, f.species_configs["baseline_concentration"]) + initialise(f.forcing, 0) + initialise(f.temperature, 0) + initialise(f.cumulative_emissions, 0) + initialise(f.airborne_emissions, 0) + initialise(f.ocean_heat_content_change, 0) + + f.run() + + tas_baseline = f.temperature.loc[ + dict(layer=0, timebounds=np.arange(baseline_start, baseline_end + 1)) + ].mean() + ohc_baseline = f.ocean_heat_content_change.loc[ + dict(timebounds=np.arange(baseline_start, baseline_end + 1)) + ].mean() + + tas = ( + f.temperature.loc[dict(layer=0, timebounds=np.arange(2006, 2301))] + - tas_baseline + ) + ohc = ( + f.ocean_heat_content_change.loc[dict(timebounds=np.arange(2006, 2301))] + - ohc_baseline + ) + + tas = tas.sel(scenario=scenarios).transpose("scenario", "config", "timebounds") + ohc = ohc.sel(scenario=scenarios).transpose("scenario", "config", "timebounds") + return tas.values, ohc.values + + +def plot_samples(tas: np.ndarray, ohc: np.ndarray) -> None: + fig = plt.figure(figsize=(12, 6), layout="constrained") + + ax = fig.add_subplot(121) + ax.plot(tas.T, color="seagreen", alpha=0.05) + ax.set_xlabel("Simulation years") + ax.set_ylabel(r"GMST ($\degree$C)") + ax.plot(np.arange(tas.shape[1]), np.median(tas, axis=0), color="black") + + ax = fig.add_subplot(122) + ax.plot(ohc.T, color="seagreen", alpha=0.05) + ax.set_xlabel("Simulation years") + ax.set_ylabel("OHC (J)") + + fig.savefig("forcing.png", dpi=200) + plt.show() + plt.close() + + +def process_global_ensemble(components: list, percentiles: list, scenario: str) -> None: + for comp, data in components.items(): + sampled_ensemble = sample_members_2D(data, percentiles) + components[comp] = sampled_ensemble + return components + + +def save_to_netcdf(components: dict, filename: str) -> None: + scenarios = list(components.keys()) + comp_names = list(components[scenarios[0]].keys()) + sample = components[scenarios[0]][comp_names[0]] + n_member, n_time = sample.shape + + years = np.arange(2006, 2006 + n_time) + members = np.arange(n_member) + data_vars = {} + for comp in comp_names: + stacked_data = np.stack([components[s][comp] for s in scenarios], axis=0) + data_vars[comp] = xr.DataArray( + data=stacked_data, + dims=["scenario", "member", "year"], + coords={"scenario": scenarios, "member": members, "year": years}, + attrs={"units": "m", "description": f"Sea level contribution from {comp}"}, + ) + + ds = xr.Dataset(data_vars) + ds.attrs = { + "title": "ProFSea GMSLR Projections", + "source": "FAIR v2.2 + ProFSea Emulator", + } + + encoding = {var: {"zlib": True, "complevel": 5} for var in data_vars} + ds.to_netcdf(filename, encoding=encoding) + console.log(f"Successfully saved full ensemble to {filename}") + + +def plot_component( + ax: plt.Axes, + component_dict: dict, + component: str, + scenarios: list, + plot_legend: bool = False, +) -> None: + time = np.arange(2006, 2301) + scenario_colors = { + scenarios[0]: "#800000", + scenarios[1]: "#ff0000", + scenarios[2]: "#fc7b03", + scenarios[3]: "#d3a640", + scenarios[4]: "#098740", + scenarios[5]: "#0080d0", + scenarios[6]: "#100060", + } + for scenario in reversed(scenarios): + ax.fill_between( + time, + component_dict[scenario][component][1], + component_dict[scenario][component][5], + color=scenario_colors[scenario], + edgecolor="none", + alpha=0.3, + ) + ax.plot( + time, + component_dict[scenario][component][3], + label=f"{scenario}", + color=scenario_colors[scenario], + ) + + ax.set_xlabel("Year") + ax.set_ylabel("SLE (m)") + ax.set_title(component) + if plot_legend: + ax.legend(frameon=False, loc="upper left") + + +def main(args): + percentiles = [0, 5, 17, 50, 83, 95, 100] + if args.emissions_file: + scen_df = pd.read_csv(args.emissions_file) + scenarios = scen_df["scenario"].unique().tolist() + else: + # Defaulting to an SSP list to avoid UnboundLocalError + # scenarios = ["ssp119", "ssp126", "ssp245", "ssp370", "ssp534-over", "ssp585"] + scenarios = [ + "Very Low - SSP1 (Marker)", + "Low-to-Negative - SSP2 (Marker)", + "Low - SSP2 (Marker)", + "Medium-to-Low - SSP2 (Marker)", + "Medium - SSP2 (Marker)", + "High-to-Low - SSP5 (Marker)", + "High - SSP3 (Marker)", + ] + + console.log(f"Using scenarios: {scenarios}") + + # if "ssp" in scenarios[0].lower(): + # emissions_path = args.cumulative_emissions_file + # with open(emissions_path) as f: + # cumulative_emissions = json.load(f) + + baseline_start = 1995 + baseline_end = 2014 + + # Updated keys to align with the grouped components + components = {} + for scenario in scenarios: + components[scenario] = { + "total_gmslr": [], + "expansion": [], + "antarctica": [], + "greenland": [], + "glacier": [], + "landwater": [], + } + + if args.input.lower() == "magicc": + tas, ohc = load_magicc_forcing( + args.input_path, scenarios, baseline_start, baseline_end + ) + elif args.input.lower() == "fair": + tas, ohc = load_fair_forcing( + args.input_path, scenarios, baseline_start, baseline_end + ) + elif args.input.lower() == "run_fair": + tas, ohc = run_fair(baseline_start, baseline_end, scenarios, args) + else: + raise ValueError("Input source not recognised.") + + n_iterations = 1000 + rng = np.random.default_rng() + random_indices = rng.integers(0, high=tas.shape[1], size=n_iterations) + + tas_matrix = tas[:, random_indices, :] # Shape: (n_scenarios, 1000, 295) + ohc_matrix = ohc[:, random_indices, :] # Shape: (n_scenarios, 1000, 295) + + sampled_components = {} + for idx, scenario in track( + enumerate(scenarios), + total=len(scenarios), + description="Projecting scenarios...", + ): + tas_scen = tas_matrix[idx, :, :] + ohc_scen = ohc_matrix[idx, :, :] + + slr_components = { + "expansion": ThermalExpansion(OHC_change=ohc_scen), + "greenland": GreenlandAR6(), + "landwater": LandwaterAR6(), + "wais": AntarcticaISMIP6(region="wais"), + "eais": AntarcticaISMIP6(region="eais"), + "pen": AntarcticaISMIP6(region="peninsula"), + "glacier": Glacier(), + } + + global_model = Global( + components=slr_components, + end_yr=2301, + num_members=1000, + dtype="float32", + parallel=False, + ) + projections = global_model.run( + scenario=scenario, + T_change=tas_scen, + member_seed=42, # Only need one seed for the whole matrix operation + ) + global_model.sum_components(projections) + + projections["antarctica"] = ( + projections.pop("wais") + projections.pop("eais") + projections.pop("pen") + ) + + # Process the 1000x295 outputs for saving + sampled_components[scenario] = process_global_ensemble( + projections, percentiles, scenario + ) + + output_dir = Path(args.output_dir) / args.output_filename + save_to_netcdf(sampled_components, output_dir) + + fig = plt.figure(figsize=(16, 8), layout="constrained") + ax = fig.add_subplot(231) + plot_component(ax, sampled_components, "total_gmslr", scenarios, plot_legend=True) + ax = fig.add_subplot(232) + plot_component(ax, sampled_components, "expansion", scenarios) + ax = fig.add_subplot(233) + plot_component(ax, sampled_components, "glacier", scenarios) + ax = fig.add_subplot(234) + plot_component(ax, sampled_components, "antarctica", scenarios) + ax = fig.add_subplot(235) + plot_component(ax, sampled_components, "greenland", scenarios) + ax = fig.add_subplot(236) + plot_component(ax, sampled_components, "landwater", scenarios) + + fig.savefig( + f"{args.output_dir}{args.output_filename.replace('.nc', '_components.png')}", + dpi=300, + ) + plt.show() + + +if __name__ == "__main__": + p = argparse.ArgumentParser(formatter_class=RichHelpFormatter) + p.add_argument( + "--input", + default="run_fair", + required=False, + help="Input climate forcing source (default: FaIR)", + type=str, + ) + p.add_argument( + "--input_path", required=False, help="Path to input climate forcing", type=str + ) + p.add_argument( + "--emissions_file", + required=False, + help="Path to CSV file containing emissions scenarios (optional)", + type=str, + ) + p.add_argument( + "--forcing_file", + required=False, + help="Path to CSV file containing climate forcing time series (optional)", + type=str, + ) + p.add_argument( + "--output_dir", + default="", + help="Directory to save outputs (default: current directory)", + type=str, + ) + p.add_argument( + "--output_filename", + default="gmslr_projections.nc", + help="Filename for output NetCDF (default: gmslr_projections.nc)", + type=str, + ) + p.add_argument( + "--cumulative_emissions_file", + default="cumulative_cmip6_emissions.json", + help="Path to JSON file containing cumulative emissions for SSP scenarios (default: cumulative_cmip6_emissions.json)", + type=str, + ) + main(p.parse_args()) diff --git a/profsea/slr_pkg/__init__.py b/profsea/slr_pkg/__init__.py deleted file mode 100644 index 8476945..0000000 --- a/profsea/slr_pkg/__init__.py +++ /dev/null @@ -1,339 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -import os -import matplotlib -import matplotlib.pyplot as plt -import numpy as np -import pandas as pd -import cartopy.crs as ccrs - -from profsea.config import settings -from profsea.slr_pkg import cmip, cubeplot, cubeutils, cubedata, process -from profsea.directories import makefolder, read_dir - - -def abbreviate_location_name(name, chars_not_needed=' ,()'): - """ - Returns an abbreviated version of the location name, by removing the - specified characters. - Check for a comma in the name of the location; then remove the part after - the comma. - :param name: site location - :param chars_not_needed: characters in location name to remove - :return: the name after removing spaces and brackets - """ - if ',' in name: - abbrev_name = name.split(',')[0] - else: - abbrev_name = name[:] - - return ''.join([c for c in abbrev_name if c not in chars_not_needed]) - - -def extract_dyn_steric_regression(models, df, scenarios): - """ - Calculate, plot, and save regression between the global mean ( - thermosteric) and local (sterodynamic) sea level change from CMIP models. - :param models: list of model names to be extracted - :param df: DataFrame of all site location's metadata - :param scenarios: list of RCP scenarios - """ - # Base directory for CMIP "zos" and "zostoga" data - datadir = settings["cmipinfo"]["sealevelbasedir"] - # Dictionary of CMIP models and experiments - zos_dict = cmip.zos_dictionary() - - mstyle_dict = {'rcp26': 'bo', - 'rcp45': 'co', - 'rcp60': 'yo', - 'rcp85': 'ro'} - - # Update as required for regression plots - xmin = -0.05 - xmax = 0.6 - ymin = -0.05 - ymax = 0.6 - - matplotlib.rcParams['font.size'] = 10 - - # For indices of dataframe which will hold the slopes of the sea level - # regressions - iterables = [models, scenarios] - mi = pd.MultiIndex.from_product(iterables, names=['Model', 'Scenario']) - - for loc_name in df.index.values: - # Abbreviate the site location name - loc_abbrev = abbreviate_location_name(loc_name) - - # Empty list used to construct the output dataframe - result = [] - - # Read in the grid indices of the ocean points - in_cmipdir = read_dir()[0] - df = read_ij_1x1_coord(in_cmipdir, loc_abbrev) - - for model in models: - i = df.at[model, 'i'] - j = df.at[model, 'j'] - print(f'Calculating regression for {model} at grid box indices: ' - f'i = {i} and j = {j}') - plt.figure(figsize=(5, 4.5)) - plt.plot([-1, 3.0], [-1, 3.0], 'k:', linewidth=3) - - for scenario in scenarios: - print(f'Scenario: {scenario}') - try: - # dynamic sea level (zos) - zos_date = zos_dict[model][scenario]['driftcorr'] - zos_file = f'{datadir}normalized_zos_Omon_{model}_' \ - f'{scenario}_{zos_date}_driftcorr.nc' - zos = cubedata.read_zos_cube(zos_file)[0][:, j, i] - # -------------------------------------------------------- - # global mean thermosteric (zostoga) - # Extract, and drift-correct CMIP "zostoga" data - # Normal (concatenated) - zostoga_date = zos_dict[model][scenario]['zostoga'] - zostoga_file = f'{datadir}zostoga_Omon_{model}_' \ - f'{scenario}_{zostoga_date}.nc' - zostoga_raw = cubedata.read_zos_cube(zostoga_file)[0] - # piControl (concatenated) - piControl_date = zos_dict[model][scenario]['piControl'] - zostoga_pic_file = f'{datadir}zostoga_Omon_' \ - f'{model}_piControl_{piControl_date}.nc' - zostoga_pic = cubedata.read_zos_cube(zostoga_pic_file)[0] - - regr = process.Regress('linear') - cube_drift, _ = regr.regress_t_scalar(zostoga_pic) - zostoga, _ = regr.detrend_scalar(zostoga_raw, cube_drift) - - # -------------------------------------------------------- - - plotlon = zos.coord('longitude').points[0] - plotlat = zos.coord('latitude').points[0] - - if plotlon > 180: - plotlon -= 360 - - yrs = get_cube_years(zos) - - if model == 'bcc-csm1-1': - index = np.where(yrs >= 2100) - zostoga.data[index] = zostoga.data[index] + \ - zostoga.data[index[0][0] - 1] - - # Calculate regression coefficients for periods 2005-2100 - # and 2050-2100 - idx1 = ((2005 <= yrs) & (yrs <= 2100)) - idx2 = ((2050 <= yrs) & (yrs <= 2100)) - - zostoga.data = zostoga.data - zostoga.data[0:10].mean() - zos.data = zos.data - zos.data[0:10].mean() - - # Calculate the slope and intercepts of linear fits of the - # global and local sea level projections - slope1, _ = np.polyfit(zostoga.data[idx1], zostoga.data[ - idx1] + zos.data[idx1], 1) - slope2, _ = np.polyfit(zostoga.data[idx2], zostoga.data[ - idx2] + zos.data[idx2], 1) - - result.append([i, j, plotlon, plotlat, slope1, slope2]) - - # Add the data points to the figure - leglabel = scenario.upper() - plt.plot(zostoga.data[idx1], - zostoga.data[idx1] + zos.data[idx1], - mstyle_dict[scenario], - markersize=8, markeredgecolor='None', - label=leglabel) - - except IOError: - result.append([i, j, -99, -99, np.nan, np.nan]) - continue - - plt.xlabel('Global thermal expansion (m)') - plt.ylabel('Local sea level (m)') - plt.title(model) - plt.xlim([xmin, xmax]) - plt.ylim([ymin, ymax]) - plt.legend(loc='upper left', numpoints=1, frameon=False) - plt.tight_layout() - - # Create the output figure file directory and filename - out_zosfdir = read_dir()[3] - makefolder(out_zosfdir) - outfigfile = f'{out_zosfdir}{loc_abbrev}_{model}' + \ - '_zos_regression_2005-2100.png' - - # Save the sea level regression figures to file - print(f'SAVING: {loc_abbrev}_{model}_zos_regression_2005-2100.png') - plt.savefig(outfigfile, dpi=200) - plt.close() - - # Save the regression slopes for all models and scenarios - df_out = pd.DataFrame(result, columns=['i', 'j', 'lon', 'lat', - 'slope_05_00', 'slope_50_00'], - index=mi) - df_out['slope_05_00'] = df_out['slope_05_00'].apply( - lambda x: round(x, 4)) - df_out['slope_50_00'] = df_out['slope_50_00'].apply( - lambda x: round(x, 4)) - - # Create the output data file directory and filename - out_zosddir = read_dir()[2] - makefolder(out_zosddir) - outdatafile = f'{out_zosddir}{loc_abbrev}_zos_regression.csv' - - # Save the sea level regressions data to file - df_out.to_csv(outdatafile, na_rep='NA') - - -def get_cube_years(cube): - """ - Extract a numpy array of years from Iris cube - :param cube: iris cube containing local sea level (zos) - :return: array of years in cube - """ - time = cube.coord('time') - dates = time.units.num2date(time.points) - years = [date.year for date in dates] - - return np.array(years, dtype=int) - - -def plot_ij(cube, model, location, idx, lat, lon, save_map=True, rad=5): - """ - Plots the location of the requested site (based on lat, lon - red - cross), the location of the nearest model grid box (based on model indices - i,j - black circle) and the sea surface height above the geoid in meters - (re-gridded onto a 1x1m grid) for each CMIP model. - :param cube: data cube containing the zos field for the CMIP models - :param model: CMIP model name - :param location: site location - :param idx: latitude and longitude of the closest ocean grid point - :param lat: latitude of site - :param lon: longitude of site - :param save_map: determine is maps are saved to file, default is True - :param rad: plotting radius, default is 5 - """ - i, j = idx - - # Define region for plotting - minlon, maxlon = lon - rad * 1.5, lon + rad * 1.5 - minlat, maxlat = lat - rad, lat + rad - - # For sites that cross 180deg. e.g. minlon = 175, maxlon = 185 - if maxlon > 180 or minlon > 180: - maxlon -= 360 - minlon -= 360 - - region = [minlon, minlat, maxlon, maxlat] - - # plotlat, plotlon are the coordinate of the nearest ocean point - plotlat = cube.coord('latitude').points[j] - plotlon = cube.coord('longitude').points[i] - - # targetlat, targetlon are the coordinate of the site - targetlat = lat - targetlon = lon - - if plotlon > 180: - plotlon -= 360 - if targetlon > 180: - targetlon -= 360 - - ax = cubeplot.block(cube, land=False, region=region, cmin=-1, cmax=1, - plotcbar=True, nlevels=25, cent_lon=targetlon, - title='{} (1x1 grid) - SSH above geoid'.format(model)) - - # Transform the points onto the projection used by the map. May not be - # necessary, but is done to avoid possible position errors (i.e. the points - # plotted in the wrong place). - # Set up projections of the map, and the tide gauge and ocean points. - MAP_CRS = ccrs.PlateCarree(central_longitude=targetlon) - SRC_CRS = ccrs.PlateCarree() - - orig_lons = np.array([plotlon, targetlon]) - orig_lats = np.array([plotlat, targetlat]) - - # Transform the points onto the same projection used by the map. - # The function returns x, y and z-coordinates. - # The z-coords are not used, hence the underscore. - new_lons, new_lats, _ = MAP_CRS.transform_points( - SRC_CRS, orig_lons, orig_lats).T - - # Plot symbols showing the ocean point and the tide gauge - ax.plot(new_lons[0], new_lats[0], 'ok') - ax.plot(new_lons[1], new_lats[1], 'xr') - - if save_map: - # Create the output file directory location - out_mapdir = read_dir()[1] - makefolder(out_mapdir) - - # Abbreviate the site location name suitable to use as a filename - loc_abbrev = abbreviate_location_name(location) - figfile = os.path.join(out_mapdir, - f'{loc_abbrev}_{model}_ij_figure.png') - - # Save the CMIP grid box selection map to file - plt.savefig(figfile) - plt.close() - else: - plt.show() - - -def read_ar5_component(datadir, rcp, var, value='mid'): - """ - Return yrs and data for specified global mean sea level component loaded - from file provided as part of supplementary material for AR5 Ch13. - :param datadir: directory containing datafiles provided as supplementary - material for CH13 of AR5. - :param rcp: emissions scenario - :param var: sea level component name e.g. 'greendyn' - :param value: 'mid', 'upper', or 'lower', default is 'mid' - :return: array of yrs and data - """ - f = '%s%s_%s%s.txt' % (datadir, rcp, var, value) - arr = np.loadtxt(f) - - yrs = arr[:, 0] - dat = arr[:, 1] - - return yrs, dat - - -def read_ij_1x1_coord(datadir, location): - """ - Read ij coordinate pair for specified model. - :param datadir: directory in which the CMIP model grid box indices for - each site location are stored - :param location: site location - :return: DataFrame of CMIP model grid box indices - """ - filename = '{}{}_ij_1x1_coords.csv'.format(datadir, location) - - df = pd.read_csv(filename, skiprows=3, header=0, index_col='Model') - - return df - - -def choose_montecarlo_dir(): - """ - Choose the Monte Carlo directory based on the projection end year. - """ - end_yr = settings["projection_end_year"] - if (end_yr >= 2050) & (end_yr <= 2100): - mcdir = settings["short_montecarlodir"] - elif (end_yr > 2100) & (end_yr <= 2300): - mcdir = settings["long_montecarlodir"] - else: - raise ValueError('Projection end year must be between 2050 and 2300') - - return mcdir - - -if __name__ == '__main__': - pass diff --git a/profsea/slr_pkg/cmip.py b/profsea/slr_pkg/cmip.py deleted file mode 100644 index 5d580a1..0000000 --- a/profsea/slr_pkg/cmip.py +++ /dev/null @@ -1,233 +0,0 @@ -# """ -# Copyright (c) 2023, Met Office -# All rights reserved. -# """ - - -def model_dictionary(): - """ - Define a dictionary that contains metadata of CMIP model experiment data - ranges, used in filename convention - :return: model_dict - """ - model_dict = {'ACCESS1-0': {'historical': '185001-200512'}, - 'bcc-csm1-1': {'historical': '185001-201212'}, - 'CanESM2': {'historical': '185001-200512'}, - 'CNRM-CM5': {'historical': '185001-185912'}, - 'CSIRO-Mk3-6-0': {'historical': '185001-200512'}, - 'GISS-E2-R': {'historical': '185001-200512'}, - 'GFDL-ESM2G': {'historical': '186101-186512'}, - 'GFDL-ESM2M': {'historical': '186101-186512'}, - 'HadGEM2-CC': {'historical': '186001-186012'}, - 'HadGEM2-ES': {'historical': '186001-186012'}, - 'inmcm4': {'historical': '185001-200512'}, - 'IPSL-CM5A-LR': {'historical': '185001-200512'}, - 'IPSL-CM5A-MR': {'historical': '185001-200512'}, - 'MIROC-ESM': {'historical': '185001-200512'}, - 'MIROC-ESM-CHEM': {'historical': '185001-200512'}, - 'MIROC5': {'historical': '185001-201212'}, - 'MPI-ESM-LR': {'historical': '185001-200512'}, - 'MPI-ESM-MR': {'historical': '185001-189912'}, - 'MRI-CGCM3': {'historical': '185001-200512'}, - 'NorESM1-M': {'historical': '185001-200512'}, - 'NorESM1-ME': {'historical': '185001-200512'}} - return model_dict - - -def zos_dictionary(): - """ - Define a dictionary that contains metadata of CMIP model experiment data - ranges, used in filename convention. Where a model has not been run for - a specific RCP then 'xxxxxx-xxxxxx' is included. - :return: zos_dict - """ - zos_dict = {'ACCESS1-0': {'rcp26': {'driftcorr': 'xxxxxx-xxxxxx', - 'zostoga': 'xxxxxx-xxxxxx', - 'piControl': 'xxxxxx-xxxxxx'}, - 'rcp45': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '030001-080001'}, - 'rcp85': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '030001-080001'}}, - 'bcc-csm1-1': {'rcp26': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '000101-050101'}, - 'rcp45': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '000101-050101'}, - 'rcp85': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '000101-050101'}}, - 'CanESM2': {'rcp26': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '201501-301101'}, - 'rcp45': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '201501-301101'}, - 'rcp85': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '201501-301101'}}, - 'CNRM-CM5': {'rcp26': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '185001-269912'}, - 'rcp45': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '185001-269912'}, - 'rcp85': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '185001-269912'}}, - 'CSIRO-Mk3-6-0': {'rcp26': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '000101-050101'}, - 'rcp45': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '000101-050101'}, - 'rcp85': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '000101-050101'}}, - 'GISS-E2-R': {'rcp26': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '333101-453101'}, - 'rcp45': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '333101-453101'}, - 'rcp85': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '333101-453101'}}, - 'GFDL-ESM2G': {'rcp26': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '186101-210001'}, - 'rcp45': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '186101-210001'}, - 'rcp85': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '186101-210001'}}, - 'GFDL-ESM2M': {'rcp26': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '186101-210001'}, - 'rcp45': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '186101-210001'}, - 'rcp85': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '186101-210001'}}, - 'HadGEM2-CC': {'rcp26': {'driftcorr': 'xxxxxx-xxxxxx', - 'zostoga': 'xxxxxx-xxxxxx', - 'piControl': 'xxxxxx-xxxxxx'}, - 'rcp45': {'driftcorr': '200512-210101', - 'zostoga': '200512-210101', - 'piControl': '185912-210001'}, - 'rcp85': {'driftcorr': '200512-210101', - 'zostoga': '200512-210101', - 'piControl': '185912-210001'}}, - 'HadGEM2-ES': {'rcp26': {'driftcorr': '200512-230001', - 'zostoga': '200512-230001', - 'piControl': '185912-243606'}, - 'rcp45': {'driftcorr': '200512-230001', - 'zostoga': '200512-230001', - 'piControl': '185912-243606'}, - 'rcp85': {'driftcorr': '200512-230001', - 'zostoga': '200512-230001', - 'piControl': '185912-243606'}}, - 'inmcm4': {'rcp26': {'driftcorr': 'xxxxxx-xxxxxx', - 'zostoga': 'xxxxxx-xxxxxx', - 'piControl': 'xxxxxx-xxxxxx'}, - 'rcp45': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '185001-235001'}, - 'rcp85': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '185001-235001'}}, - 'IPSL-CM5A-LR': {'rcp26': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '180001-280001'}, - 'rcp45': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '180001-280001'}, - 'rcp85': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '180001-280001'}}, - 'IPSL-CM5A-MR': {'rcp26': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '180001-210001'}, - 'rcp45': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '180001-210001'}, - 'rcp85': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '180001-210001'}}, - 'MIROC-ESM': {'rcp26': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '180001-248001'}, - 'rcp45': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '180001-248001'}, - 'rcp85': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '180001-248001'}}, - 'MIROC-ESM-CHEM': {'rcp26': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '184601-210101'}, - 'rcp45': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '184601-210101'}, - 'rcp85': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '184601-210101'}}, - 'MIROC5': {'rcp26': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '200001-267001'}, - 'rcp45': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '200001-267001'}, - 'rcp85': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '200001-267001'}}, - 'MPI-ESM-LR': {'rcp26': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '185001-285001'}, - 'rcp45': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '185001-285001'}, - 'rcp85': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '185001-285001'}}, - 'MPI-ESM-MR': {'rcp26': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '185001-285001'}, - 'rcp45': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '185001-285001'}, - 'rcp85': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '185001-285001'}}, - 'MRI-CGCM3': {'rcp26': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '185101-235101'}, - 'rcp45': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '185101-235101'}, - 'rcp85': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '185101-235101'}}, - 'NorESM1-M': {'rcp26': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '070001-120101'}, - 'rcp45': {'driftcorr': '200601-230101', - 'zostoga': '200601-230101', - 'piControl': '070001-120101'}, - 'rcp85': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '070001-120101'}}, - 'NorESM1-ME': {'rcp26': {'driftcorr': '200601-210201', - 'zostoga': '200601-210201', - 'piControl': '090101-115301'}, - 'rcp45': {'driftcorr': '200601-210301', - 'zostoga': '200601-210301', - 'piControl': '090101-115301'}, - 'rcp85': {'driftcorr': '200601-210101', - 'zostoga': '200601-210101', - 'piControl': '090101-115301'}}} - return zos_dict diff --git a/profsea/slr_pkg/cubedata.py b/profsea/slr_pkg/cubedata.py deleted file mode 100644 index a7cb154..0000000 --- a/profsea/slr_pkg/cubedata.py +++ /dev/null @@ -1,194 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -from datetime import datetime -import inspect -import os -import cf_units -import iris - -from profsea.slr_pkg import process - - -def _derived(cube, cube_src, var_name=None, derived_type='unknown', - derived_long=None): - """ - Write metadata attributes to a cube describing the derived variable - contained within it. - NOTES: - * Much of this metadata is probably unnecessary. However, derived_type - is currently required in slr.component.Dynamic to recognise when a - scaling map is provided as an input argument. - * Currently the units of the derived variable are unset for - compatibility purposes. - :param cube: cube to which metadata will be written - :param cube_src: list or cubelist of the cubes used to generate the - derived variable - :param var_name: new variable name. If None, the existing variable name - is used. - :param derived_type: short name describing the process for creating the - derived variable - :param derived_long: new long_name attribute. Can either be given as a - regular string or as a formattable string corresponding to the cubes in - cube_src. In the latter case, the derived_var cube attribute will be - used to format the string if present, else the var_name attribute will - be used - i.e. "Product of %s and %s"%(cube1.var_name,cube2.var_name) - If None is given for this keyword, the existing long_name is used - """ - - # Ensure cube_src is an iterable - if type(cube_src) == iris.cube.Cube: - cube_src = [cube_src] - - # New var_name, if applicable - if var_name is None: - var_name = cube.var_name - - # Coordinate information, describing lat/lon coordinate if sliced to scalar - cube_coord = '' - for i_cube in cube_src: - coord_name = [i.name() for i in i_cube.coords()] - if ('longitude' in coord_name and 'latitude' in coord_name) and \ - (len(i_cube.coord('longitude').points) == 1 and - len(i_cube.coord('latitude').points) == 1): - if i_cube.coord('longitude').points[0] < 0: - cube_lon = ('%sW' % i_cube.coord( - 'longitude').points[0]).replace('-', '') - else: - cube_lon = '%sE' % i_cube.coord('longitude').points[0] - if i_cube.coord('latitude').points[0] < 0: - cube_lat = ('%sS' % i_cube.coord( - 'latitude').points[0]).replace('-', '') - else: - cube_lat = '%sN' % i_cube.coord('latitude').points[0] - cube_coord = '%s %s' % (cube_lat, cube_lon) - break - - # Derived history, describing derived variable in a "function(args)" - # format and inheriting previous values set by this function (can get - # rather long..) - derived_hist = [] - for i_cube in cube_src: - if 'derived_hist' in list(i_cube.attributes.keys()): - derived_hist += [i_cube.attributes['derived_hist']] - else: - derived_hist += [i_cube.var_name] - - # Derived variable, describing derived variable as for derived_hist but - # not inheriting any previous values - derived_var = [i_cube.var_name for i_cube in cube_src] - - # Derived period, describing data periods comprising the derived variable - # in a form corresponding to derived_hist such that - # "function_1(args,function_2(args))" corresponds to - # "(dates_function_1,(dates_function_2))" (can also get rather long..) - derived_period = [] - for i_cube in cube_src: - if 'derived_period' in list(i_cube.attributes.keys()): - derived_period += [i_cube.attributes['derived_period']] - elif 'period' in list(i_cube.attributes.keys()): - derived_period += [i_cube.attributes['period']] - else: - try: - period_min = i_cube.coord('time').units.num2date( - i_cube.coord('time').bounds[:, 0].min()) - period_max = i_cube.coord('time').units.num2date( - i_cube.coord('time').bounds[:, 1].max()) - derived_period += ['-'.join(['%04d/%02d' % (i.year, i.month) - for i in [period_min, - period_max]])] - except Exception: - derived_period += ['--'] - - # Check derived_long keyword: if not set then use a generic string, check - # string has sufficient - # string formatting statements if a formattable string is being used - # (contains %s, %i etc) - if derived_long is None: - derived_long = 'Unspecified derived variable based on ' + \ - ', '.join(['%s'] * len(derived_hist)) - elif derived_long.count('%') != len(cube_src) and \ - derived_long.count('%') > 0: - raise TypeError('The number of string formatting statements in ' + - f'derived_long ({derived_long.count("%")} does not' - f' match the number of source cubes ({len(cube_src)})') - - # History attribute entry; add the calling function and arguments - try: - cube_history = str(cube.attributes['history']) - except KeyError: - cube_history = '' - history_callfunc = os.sep.join([inspect.stack()[1][1], - inspect.stack()[1][3]]) - history = '%s: %s(%s)\n' % (datetime.now().ctime(), history_callfunc, - ','.join(derived_var)) - - # Drift correction, a record of the drift-corrected variables - drift_corr = [] - for i_cube in cube_src: - if 'drift_correction' in list(i_cube.attributes.keys()): - drift_corr += [i_cube.attributes['drift_correction']] - - # Apply string formatting where required - if derived_long.count('%') > 0: - derived_long = derived_long % tuple(derived_hist) - derived_hist = '%s(%s)' % (derived_type, ','.join(derived_hist)) - derived_var = '%s(%s)' % (derived_type, ','.join(derived_var)) - derived_period = '(%s)' % (','.join(derived_period)) - - # If a function of several drift-corrected variables, write as "func(a,b)". - if len(drift_corr) > 1: - drift_corr = '%s(%s)' % (var_name, ', '.join(drift_corr)) - - # Otherwise if a function of one drift-corrected variable, i.e. "func(a)", - # write "new_var: old_var" if the derived variable has a different name - elif len(drift_corr) == 1: - parse_result_1 = drift_corr[0].split(': ')[0] - parse_result_2 = drift_corr[0].split('(')[0] - if parse_result_1 != var_name and parse_result_2 != var_name: - drift_corr = '%s(%s)' % (var_name, drift_corr[0]) - else: - drift_corr = drift_corr[0] - - # Write attributes - cube.long_name = derived_long - cube.var_name = var_name - if len(cube_coord) > 0: - cube.attributes['coordinate'] = cube_coord - # REPLACE WITH SPECIFIC CUBE.ADD_HISTORY CALL - cube.attributes['history'] = history + cube_history - cube.attributes['derived_hist'] = derived_hist - cube.attributes['derived_var'] = derived_var - cube.attributes['derived_type'] = derived_type - cube.attributes['derived_period'] = derived_period - if len(drift_corr) > 0: - cube.attributes['drift_correction'] = drift_corr - cube.units = cf_units.Unit(None) - - -def read_zos_cube(cmip_file): - """ - Read cube of CMIP sea level data, applying appropriate time bounds. - Could be: dynamic sea level (zos), global mean thermosteric (zostoga) or - piControl (concatenated) - :param cmip_file: filepath and filename as string - :return: cube of sea level data - """ - cube = iris.load_cube(cmip_file, iris.Constraint()) - - # Guess time bounds if they are not present - if 'time' in [i.name() for i in cube.coords()] and \ - cube.coord('time').bounds is None: - cube.coord('time').guess_bounds() - - # Reject cube if it has an AuxCoord time coordinate - cube = process._reject_auxcoord(cube) - if len(cube) == 0: - raise Exception( - f'The file {cmip_file} did not have a CF-compliant time ' - f'coordinate') - - return cube diff --git a/profsea/slr_pkg/cubeplot.py b/profsea/slr_pkg/cubeplot.py deleted file mode 100644 index 2c546e3..0000000 --- a/profsea/slr_pkg/cubeplot.py +++ /dev/null @@ -1,207 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -import cartopy -import cartopy.crs as ccrs -from cartopy.mpl.gridliner import LONGITUDE_FORMATTER, LATITUDE_FORMATTER -import matplotlib.pyplot as plt -import matplotlib.ticker as mticker -from matplotlib.colors import BoundaryNorm -import numpy as np -import iris -import iris.plot as iplt - - -def block(cube, **kwargs): - """ - Draw a block color plot for a given cube. Invokes contourf() with - pcolormesh=True. - :param cube: iris.cube.Cube - :param kwargs: See contourf() for other valid keyword arguments - :return: a block color plot for a given cube - """ - - return contourf(cube, pcolormesh=True, **kwargs) - - -def contourf(cube, anom=False, subplot=111, cent_lon=0, land=True, - coast=True, title=None, region=None, plotcbar=True, - charsize=12, cmin=None, cmax=None, nlevels=11, levels=None, - cbarlabel=None, cbar_orien='horizontal', pcolormesh=False, - reproject=False, nx=400, ny=200, proj=None, xticks=None, - yticks=None, cmap=None, **kwargs): - """ - Draw a filled contour plot for a given cube. - :param cube: iris.cube.Cube - :param anom: boolean, use blue/red colormap for anomalies - (def=False) - :param subplot: 3-digit integer specifying subplot position - (def=111) - :param cent_lon: central longitude of the map projection - (def=0) - :param land: boolean, if True, filled land drawn - (def=True) - :param coast: boolean, if True, coastlines drawn - (def=True) - :param title: map title - (def=None) - :param region: 4-element list [E,S,W,N] defining sub-region to plot - (def=None) - :param plotcbar: boolean, if True, colorbar plotted - (def=True) - :param charsize: font size to use - (def=12) - :param cmin: minimum value for colormap/bar - (def=None) - :param cmax: maximum value for colormap/bar - (def=None) - :param nlevels: set number of bands within colormap - (def=11) - :param levels: set minimum, maximum and number of bands within colormap - (def=None) - :param cbarlabel: colorbar label - (def=None) - :param cbar_orien: orientation for colorbar - (def='horizontal') - :param pcolormesh: boolean:, if True, iris.plot.pcolormesh() used for - plotting - (def=False) - :param reproject: boolean, if True, reproject cube to PlateCarree using a - specified number of sample points (nx & ny) before plotting. Used for - fields with 2D latitude/longitude fields - (def=False) - :param nx: number of sample points in x-direction used for cube - re-projection - (def=400) - :param ny: number of sample points in y-direction used for cube - re-projection - (def=200) - :param proj: If not defined, use ccrs.PlateCarree() - (def=None) - :param xticks: plot xticks on colormap - (def=None) - :param yticks: plot yticks on colormap - (def=None) - :param cmap: set colormap to blue/red - (def=None) - :param kwargs: defined in iplt.pcolormesh() and iplt.contourf() - :return: filled contour plot - """ - # Map projection - if reproject: - cube, extent = iris.analysis.cartography.project( - cube, ccrs.PlateCarree(), nx=nx, ny=ny) - - if proj is not None: - map_proj = proj - else: - map_proj = ccrs.PlateCarree(central_longitude=cent_lon) - - # Color map - if cmap is None: - cmap = plt.cm.RdBu_r if anom else plt.cm.jet - - # Create subplot, if specified. - if isinstance(subplot, list): - if len(subplot) != 3: - raise ValueError('"subplot" needs to be defined as a' - ' 3-element list or a 3-digit integer') - - ax = plt.subplot(subplot[0], subplot[1], subplot[2], - projection=map_proj) - else: - ax = plt.subplot(subplot, projection=map_proj) - ax.set_global() - - # Color levels - if levels is None: - if cmin is None: - cmin = cube.data.min() - if cmax is None: - cmax = cube.data.max() - levels = np.linspace(cmin, cmax, nlevels) - - # Plot using pcolormesh or contourf - if pcolormesh: - norm = BoundaryNorm(levels, ncolors=cmap.N, clip=True) - plot_handle = iplt.pcolormesh(cube, cmap=cmap, norm=norm, - rasterized=True, **kwargs) - else: - plot_handle = iplt.contourf(cube, cmap=cmap, levels=levels, - rasterized=True, **kwargs) - - # Land and coastlines - if land: - ax.add_feature(cartopy.feature.LAND) - if coast: - ax.coastlines(resolution='50m') - - # Extract region - if region: - if len(region) != 4: - raise ValueError('"Region" needs to be defined as a' - ' 4-element list') - ax.set_ylim([region[1], region[3]]) - x0 = (cent_lon - region[0]) * -1 - x1 = (region[2] - cent_lon) - ax.set_xlim([x0, x1]) - - # Color bar - if title is None: - title = cube.name() - plt.title(title, fontsize=charsize) - - # Color bar - if plotcbar: - cbar = plt.colorbar(plot_handle, orientation=cbar_orien) - cbar.ax.tick_params(labelsize=charsize * 0.85) - if cbarlabel is None: - cbarlabel = cube.units - - cbar.set_label(cbarlabel, fontsize=charsize * 0.85) - - # Tick labels and grid lines - if (xticks is not None) or (yticks is not None): - ax = plt.gca() - - # First do labels - gl = ax.gridlines(draw_labels=True, linewidth=1, color='gray', - linestyle='--') - gl.xlabels_top = False - gl.ylabels_right = False - gl.xlines = False - gl.ylines = False - - if xticks is not None: - gl.xlocator = mticker.FixedLocator(xticks) - gl.xformatter = LONGITUDE_FORMATTER - gl.xlabel_style = {'size': charsize * 0.8} - - else: - gl.xlocator = mticker.FixedLocator([-1e6]) - - if yticks is not None: - gl.ylocator = mticker.FixedLocator(yticks) - gl.yformatter = LATITUDE_FORMATTER - gl.ylabel_style = {'size': charsize * 0.8} - - else: - gl.ylocator = mticker.FixedLocator([-1e6]) - - # Now do grid lines - if xticks is not None: - # xticks += xticks - gl_x = ax.gridlines(linewidth=1, color='gray', - linestyle=':') - gl_x.xlocator = mticker.FixedLocator(xticks) - gl_x.ylines = False - - if yticks is not None: - gl_y = ax.gridlines(linewidth=1, color='gray', - linestyle=':') - gl_y.ylocator = mticker.FixedLocator(yticks) - gl_y.xlines = False - - return ax diff --git a/profsea/slr_pkg/cubeutils.py b/profsea/slr_pkg/cubeutils.py deleted file mode 100644 index d80ad90..0000000 --- a/profsea/slr_pkg/cubeutils.py +++ /dev/null @@ -1,27 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -import iris - - -def loadcube(files, ncvar=None, *args, **kwargs): - """ - Load data using iris.load() with optional constraint by netcdf variable - name. - :param files: any sequence of file types accepted by iris.load() - :param ncvar: netcdf variable name - :param args: See iris.load() for other valid arguments - :param kwargs: See iris.load() for other valid keyword arguments - :return: an iris.cube.CubeList object - """ - - cubes = iris.load(files, *args, **kwargs) - - if ncvar: - var_constraint = iris.Constraint(cube_func=lambda c: - c.var_name == ncvar) - cubes = cubes.extract(var_constraint) - - return cubes diff --git a/profsea/slr_pkg/models.py b/profsea/slr_pkg/models.py deleted file mode 100644 index fc91f2f..0000000 --- a/profsea/slr_pkg/models.py +++ /dev/null @@ -1,63 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - - -def cmip5_names(): - """ - List of all available CMIP model names - Ref: Slangen et al. (2014) - :return: List of all CMIP5 models - """ - print(f'Getting data for all CMIP5 models') - - models = ['ACCESS1-0', - 'bcc-csm1-1', - 'CNRM-CM5', - 'CSIRO-Mk3-6-0', - 'CanESM2', - 'GFDL-ESM2G', - 'GFDL-ESM2M', - 'GISS-E2-R', - 'HadGEM2-CC', - 'HadGEM2-ES', - 'inmcm4', - 'IPSL-CM5A-LR', - 'IPSL-CM5A-MR', - 'MIROC-ESM', - 'MIROC-ESM-CHEM', - 'MIROC5', - 'MPI-ESM-LR', - 'MPI-ESM-MR', - 'MRI-CGCM3', - 'NorESM1-M', - 'NorESM1-ME' - ] - - return models - - -def cmip5_names_marginal(): - """ - List of all available CMIP model names that are appropriate for use in - marginal seas e.g. Mediterranean. Marginal sea is where the native grid of - the CMIP model has the 'marginal sea' disconnected from the wider ocean - basin. AR5 recommends excluding these from analysis as values are - unrealistic. - Ref: https://www.ipcc.ch/site/assets/uploads/2018/07/WGI_AR5.Chap_.13_SM. - 1.16.14.pdf - :return: List of CMIP5 models used in AR5 for marginal seas - """ - - print(f'Getting data for subset of CMIP models - marginal selected') - models = ['bcc-csm1-1', - 'CanESM2', - 'GFDL-ESM2M', - 'HadGEM2-CC', - 'HadGEM2-ES', - 'MIROC-ESM', - 'MIROC-ESM-CHEM', - 'MIROC5' - ] - return models diff --git a/profsea/slr_pkg/process.py b/profsea/slr_pkg/process.py deleted file mode 100644 index e219be5..0000000 --- a/profsea/slr_pkg/process.py +++ /dev/null @@ -1,213 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -import iris.analysis.cartography -import numpy -import scipy.stats - -from profsea.slr_pkg import cubedata - - -class Regress: - """ - Class to act as an interface to various regression functions. - """ - def __init__(self, method='linear'): - """ - Return an instance linking the appropriate regression functions to - be used as a set of generically-named regression functions, given an - initialization method. - :param method: regression method to be used - """ - self.method = method - - # Associate generic functions with method-specific functions - if self.method == 'linear': - self.detrend_scalar = self._linreg_detrend_scalar - self.regress_t_scalar = self._linreg_regress_t_scalar - # OTHER METHODS - else: - raise Exception( - f'Given regression method is not implemented: {method}') - - def _linreg_detrend_scalar(self, cube_t, cube_slope): - """ - Remove a linear trend from data in one cube with dimensions of (time) - given by the slope in another cube. - :param cube_t: iris.cube.Cube with a variable of dimensions (time) - :param cube_slope: iris.cube.Cube with a dimensionless regression slope - :return: iris.cube.Cube containing the detrended timeseries, - and a numpy.ndarray containing the magnitude of the trend relative to - the starting time corresponding to the times of cube_t - """ - # Require cubes to have expected dimensions - cube_t_coords = [i.name() for i in cube_t.dim_coords] - cube_slope_coords = [i.name() for i in cube_slope.dim_coords] - if not ('time' in cube_t_coords and len(cube_t_coords) == 1): - raise Exception('cube_t does not have dimensions of (time)') - if not len(cube_slope_coords) == 0: - raise Exception('cube_slope is not dimensionless') - - # Output cube is based on input cube - cube_detrend = cube_t.copy() - - # Convert times to the units of the slope cube - if cube_detrend.coord('time').units != cube_slope.coord('time').units: - convert_time_units(cube_detrend.coord('time'), - cube_slope.coord('time')) - - # Calculate the trend as a function of time - nparr_trend = cube_detrend.coord('time').points * cube_slope.data - nparr_trend -= nparr_trend[0] - - # Remove trend from the data - cube_detrend.data -= nparr_trend - - # Value of the scalar evolving under the removed trend only - nparr_trend += cube_t.data[0] - - # Metadata - cubedata._derived( - cube_detrend, [cube_t, cube_slope], - derived_type='detrended', - derived_long='%s, minus a linear trend as calculated from %s') - cube_detrend.attributes['drift_correction'] = \ - f'{cube_detrend.var_name}: linear' - - return cube_detrend, nparr_trend - - def _linreg_regress_t_scalar(self, cube_t): - """ - Regress (using a linear regression) data in a cube with dimensions - of (time) against its time coordinate. - :param cube_t: iris.cube.Cube with a variable of dimensions (time) - :return: iris.cube.Cube containing the regression slope, and an - iris.cube.Cube containing the correlation coefficient R^2 - """ - # Require cube to have expected dimensions - cube_t_coords = [i.name() for i in cube_t.dim_coords] - if not (cube_t.ndim == 1 and 'time' in cube_t_coords): - raise Exception('cube_t does not have dimensions of (time)') - if not len(cube_t.coord('time').points) > 1: - raise Exception('The input cube must have at least 2 time ' + - 'coordinates') - - # Output cube is based on cube_t - cube_slope = cube_t.collapsed('time', iris.analysis.MEAN) - cube_corr = cube_slope.copy() - - # Call scipy.stats.linregress on the cube data and its time coordinate - nparr_regr = scipy.stats.linregress(cube_t.coord('time').points, - cube_t.data) - cube_slope.data = nparr_regr[0] - cube_corr.data = numpy.square(nparr_regr[2]) - - # Metadata - cubedata._derived( - cube_slope, [cube_t], var_name='linregslope', - derived_type='linear_regression', - derived_long='Slope of a linear regression of time (x) vs %s (y)') - cubedata._derived( - cube_corr, [cube_t], var_name='linregr2', - derived_type='linear_correlation', - derived_long='Coefficient of determination of time (x) vs %s (y)') - - return cube_slope, cube_corr - - -def convert_time_units(time_in, time_ref): - """ - Convert one time coordinate to the units of another time coordinate. - **METHOD: - - First attempt the iris.coords.Coord.convert_units method. - - If this fails (which it will do for certain units even if the resulting - time coordinates would be valid), use the slightly more forgiving - netCDF4 num2date/date2num method of converting. This will still fail if - the attempted time coordinate conversion results in an illegal date. - :param time_in: iris.coords.Coord (time) coordinate to be converted - :param time_ref: iris.coords.Coord (time) coordinate containing the target - units - """ - # Check that the input coordinates are time coordinates - if not ((type(time_in) is iris.coords.DimCoord or type(time_in) is - iris.coords.AuxCoord) and - (type(time_ref) is iris.coords.DimCoord or type(time_ref) is - iris.coords.AuxCoord)): - raise Exception('The provided inputs are not both iris coordinates') - if not (time_in.standard_name == 'time' and - time_ref.standard_name == 'time'): - raise Exception('The coordinates provided do not have "time" as ' + - 'the standard_name') - - # Time coordinate conversion - try: - # First attempt the iris.coords.Coord.convert_units method - time_in.convert_units(time_ref) - except Exception: - - # Otherwise attempt the slightly more forgiving netCDF4 - # num2date/date2num method - date_points_in = time_in.units.num2date(time_in.points) - date_bounds_in = time_in.units.num2date(time_in.bounds) - - num_points_out = time_ref.units.date2num(date_points_in) - num_bounds_out = time_ref.units.date2num(date_bounds_in) - - time_in.points = num_points_out - time_in.bounds = num_bounds_out - time_in.units = time_ref.units - - date_points_out = time_in.units.num2date(time_in.points) - date_bounds_out = time_in.units.num2date(time_in.bounds) - - # Check dates of converted times against those of original times - if not ((date_points_in == date_points_out).all() and - (date_bounds_in == date_bounds_out).all()): - raise Exception('Unit conversion did not conserve original dates') - - -def _reject_auxcoord(cube_list): - """ - Remove all cubes with AuxCoord time coordinates in a cube list. - :param cube_list: iris.cube.CubeList - :return: iris.cube.CubeList - """ - # Require a cube or cubelist - if not (type(cube_list) == iris.cube.CubeList or - type(cube_list) == iris.cube.Cube): - raise Exception('Input must be a cube or cubelist') - - # Convert cube to cubelist if necessary - if isinstance(cube_list, iris.cube.Cube): - cube_list = iris.cube.CubeList([cube_list]) - - cube_list_out = iris.cube.CubeList(cube_list) # Is this needed? - - for i_cube in cube_list: - # Skip cube if no time coordinate - coord_names = [i.name() for i in i_cube.coords()] - if 'time' not in coord_names: - continue - - # If time coordinate is an AuxCoord, print some info - dc = i_cube.coord('time') - if type(dc) == iris.coords.AuxCoord: - time_min = dc.units.num2date(dc.points.min()) - time_max = dc.units.num2date(dc.points.max()) - print(" * slr.process.reject_auxcoord: Found a cube with an " + - "AuxCoord time coordinate (dates " + - f"{time_min.year}{time_min.month}{time_min.day}-" + - f"{time_max.year}{time_max.month}{time_max.day}),\n" + - " which suggests a problem with the coordinate data. " + - "Skipping this cube..") - - # Remove cube from cubelist - cube_list_out.remove(i_cube) - - # TEMPORARY: Guess time bounds if they are not present - elif dc.bounds is None: - dc.guess_bounds() - - return cube_list_out diff --git a/profsea/slr_pkg/whichbox.py b/profsea/slr_pkg/whichbox.py deleted file mode 100644 index e8419d0..0000000 --- a/profsea/slr_pkg/whichbox.py +++ /dev/null @@ -1,112 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -import numpy as np - - -def find_gridbox_indicies(cube, points, xcoord_name='longitude', - ycoord_name='latitude', drop=False): - """ - Find the grid box indices containing the specified points. - **NOTES: - - Points just west of zero degrees longitude can lie outside the - coordinate bounds for some models. - - If this is the case, subtract 360 from the points, so they lie within - the bounds of the model longitude coordinate. - - Similarly, add 360 to any points smaller than the lower limit. - :param cube: iris.cube.Cube containing zos field from CMIP models ( - should be 2D) - :param points: a 2D numpy array of pairs of points (longitude, latitude) - with dimensions (number of points, 2) - :param xcoord_name: name of x-coordinate in the cube - :param ycoord_name: name of y-coordinate in the cube - :param drop: If True, return indices for the points which lie within the - cube boundaries; - If False, return indices of -99 for points which lie outside the - boundaries. - :return: grid box indices of location - """ - # Get the grid box coordinates. Add bounds if not present. - grid_lons = cube.coord(xcoord_name) - grid_lats = cube.coord(ycoord_name) - - if not grid_lons.has_bounds(): - grid_lons.guess_bounds() - if not grid_lats.has_bounds(): - grid_lats.guess_bounds() - - # Find the minimums and maximums of the cube's coordinate boundaries - lon_lims = [grid_lons.bounds.min(), grid_lons.bounds.max()] - lat_lims = [grid_lats.bounds.min(), grid_lats.bounds.max()] - - # Get the lons and lats of the points of interest (as copies) - if isinstance(points, list): - points = np.array(points) - pt_lons, pt_lats = points.T - - if iscoordglobal(grid_lons): - widx, = np.where(pt_lons > lon_lims[1]) - if len(widx) > 0: - pt_lons[widx] -= 360 - widx, = np.where(pt_lons < lon_lims[0]) - if len(widx) > 0: - pt_lons[widx] += 360 - - # Find all points which lie within or on the boundaries of the model grid - # boxes - valid_lats = (pt_lats >= lat_lims[0]) & (pt_lats <= lat_lims[1]) - valid_lons = (pt_lons >= lon_lims[0]) & (pt_lons <= lon_lims[1]) - valid_pts = valid_lats & valid_lons - - if np.sum(valid_pts) == 0: - raise ValueError('find_gridbox_indicies: None of the points lie ' - + 'within the range of the coordinates') - else: - # Find the indices of the grid boxes containing the points - if drop: - idx_lon = [grid_lons.nearest_neighbour_index(x) - for x in pt_lons[valid_pts]] - idx_lat = [grid_lats.nearest_neighbour_index(y) - for y in pt_lats[valid_pts]] - else: - idx_lon = [grid_lons.nearest_neighbour_index(x) - if l else -99 for x, l in zip(pt_lons, valid_pts)] - idx_lat = [grid_lats.nearest_neighbour_index(y) - if l else -99 for y, l in zip(pt_lats, valid_pts)] - idx = np.array([idx_lon, idx_lat]).T - - return idx - - -def iscoordglobal(coord, tol=0.01): - """ - Tests if the longitude coordinate is global. - :param coord: iris.cube.Cube coordinate to be tested - :param tol: decide whether floating point numbers are tolerably equal - :return: True if longitude coordinate is global, otherwise false. - """ - - if not ((0 <= coord.points.min() <= 360) and - (0 <= coord.points.max() <= 360)): - raise ValueError('All points must lie within 0 to 360') - - if not coord.has_bounds(): - coord.guess_bounds() - diff = coord.bounds.max() - coord.bounds.min() - - return (diff > 360.0 - tol) & (diff < 360.0 + tol) - - -def wraplongitude(longitude): - """ - Converts input longitude to values within a range 0 - 360 plus a - specified base. - :param longitude: site location's longitude value - :return: converted longitude - """ - wrapped_lons = ((longitude + 720.0) % 360) - print(f' Converted Longitude from {longitude} to {wrapped_lons}') - - return wrapped_lons \ No newline at end of file diff --git a/profsea/step1_extract_cmip.py b/profsea/step1_extract_cmip.py deleted file mode 100644 index 276c065..0000000 --- a/profsea/step1_extract_cmip.py +++ /dev/null @@ -1,339 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -import os -import numpy as np -import pandas as pd - -from profsea.config import settings -from profsea.directories import read_dir, makefolder -from profsea.slr_pkg import abbreviate_location_name, plot_ij # found in __init.py__ -from profsea.slr_pkg import cmip, cubeutils, models, whichbox -from profsea.tide_gauge_locations import extract_site_info - - -def accept_reject_cmip(cube, model, site_loc, cmip_i, cmip_j, site_lat, - site_lon, unit_test=False): - """ - Accept or reject selected CMIP grid box based on a user input. - If CMIP grid box is rejected, search neighbouring grid boxes until a - suitable one is found. - :param cube: cube containing zos field from CMIP models - :param model: CMIP model name - :param site_loc: name of the site location - :param cmip_i: CMIP coord of site location's latitude - :param cmip_j: CMIP coord of site location's longitude - :param site_lat: latitude of the site location - :param site_lon: longitude of the site location - :param unit_test: flag to disable plotting for unit testing purposes - :return: Selected CMIP coords or None if user doesn't confirm grid box - selection - """ - # Plot a map of the site location and selected CMIP grid box for user - # validation. At this stage don't save the figure to file. - if not unit_test: - plot_ij(cube, model, site_loc, [cmip_i, cmip_j], site_lat, site_lon, - save_map=False) - - # Ask user to accept cmip grid box or re-select from neighbouring cells - decision = input(f'Is selected CMIP grid box {cmip_i, cmip_j} ' - f'appropriate for {model}? Y or N: ') - if decision == 'Y' or decision == 'y': - # Save map to file and return CMIP grid box coords - if not unit_test: - plot_ij(cube, model, site_loc, [cmip_i, cmip_j], - site_lat, site_lon) - return cmip_i, cmip_j - elif decision == 'N' or decision == 'n': - print('Selecting another CMIP grid box') - return None, None - else: - raise TypeError('Response needs to be Y or N') - - -def calc_radius_range(radius): - """ - Calculate the maximum distance to search for ocean grid point. - :param radius: Maximum range to search for ocean point - :return: x_radius_range, y_radius_range - """ - # if radius > 1: - # rm1 = radius - 1 - # else: - # rm1 = radius - - x_radius_range = list(range(-radius, radius + 1)) - y_radius_range = list(range(-radius, radius + 1)) - - return x_radius_range, y_radius_range - - -def check_cube_mask(cube): - """ - Check if the cube has a scalar mask. If so, then re-mask the cube to - remove grid points that are exactly equal to 0. - **NOTES: - - Land points have a value of 0, ocean points have non-zero (both - positive and negative) values. - - Because the CMIP models were interpolated onto a 1x1 grid before - the mask was checked some interpolation issues may still arise. - :param cube: cube containing zos field from CMIP models - :return: original cube, or re-masked cube - """ - apply_mask = False - try: - cube.data.mask - apply_mask = not isinstance(cube.data.mask, (list, tuple, np.ndarray)) - except AttributeError: - apply_mask = True - - if apply_mask: - new_mask = (cube.data == 0.0) - print(f'Scalar mask: Re-masking the cube to mask cells = 0') - cube = cube.copy(data=np.ma.array(cube.data, mask=new_mask)) - - return cube - - -def extract_lat_lon(df): - """ - Extracts site location's metadata, calls wraplongitude() to convert - longitude. - :param df: DataFrame of site location's metadata - :return: latitude, longitude, converted longitude - """ - site = df.name - station_id = df['Station ID'] - lat = df['Latitude'] - lon_orig = df['Longitude'] - print(f'Site location: {site}, ID: {station_id}, ' + - f'Lat: {lat:.2f}, Lon: {lon_orig:.2f}') - - lon = whichbox.wraplongitude(lon_orig) - - return lat, lon_orig, lon - - -def extract_ssh_data(cmip_sea): - """ - Get a list of appropriate CMIP models to use. Load SSH data for each - model on a re-gridded 1x1 grid. - :param cmip_sea: variable to distinguish between which CMIP models to use - :return: CMIP model names, and associated SSH data cubes - """ - cmip_dir = settings["cmipinfo"]["sealevelbasedir"] - # Select CMIP models to use depending on whether location is within a - # marginal sea - if cmip_sea == 'all': - model_names = models.cmip5_names() - elif cmip_sea == 'marginal': - model_names = models.cmip5_names_marginal() - else: - raise UnboundLocalError(f'The selected CMIP5 models to use - ' + - f'cmip_sea = {cmip_sea} - is not recognised') - - # Load SSH data for each model on a re-gridded 1x1 grid, store in a list - cubes = [] - cmip_dict = cmip.model_dictionary() - for model in model_names: - print(f'Getting data for {model} model') - cmip_date = cmip_dict[model]['historical'] - cmip_file = f'{cmip_dir}zos_Omon_{model}_historical_{cmip_date}.nc' - cube = cubeutils.loadcube(cmip_file, ncvar='zos')[0] - cubes.append(cube.slices(['latitude', 'longitude']).next()) - - return model_names, cubes - - -def find_ocean_pt(zos_cube_in, model, site_loc, site_lat, site_lon): - """ - Searches for the nearest appropriate ocean point(s) in the CMIP model - adjacent to the site location. Initially, finds the model grid box - indices of the given location. Then, searches surrounding boxes until an - appropriate ocean point is found - needs to be accepted by the user. - **NOTES: - - The GCM data have been interpolated to a common 1 x 1 degree grid - :param zos_cube_in: cube containing zos field from CMIP models - :param model: CMIP model name - :param site_loc: name of the site location - :param site_lat: latitude of the site location - :param site_lon: longitude of the site location - :return: model grid box indices - """ - # Find grid box indices of location - (i, j), = whichbox.find_gridbox_indicies(zos_cube_in, - [(site_lon, site_lat)]) - grid_lons = zos_cube_in.coord('longitude').points - grid_lats = zos_cube_in.coord('latitude').points - - # Check to see if the cube has a scalar mask, and add mask where cmip - zos_cube = check_cube_mask(zos_cube_in) - - # If the CMIP grid box of the exact site location is an ocean point - # Get the user to check if it's appropriate and if so return the indices - if not zos_cube.data.mask[j, i]: - print('Checking CMIP grid box at site location') - i_out, j_out = accept_reject_cmip(zos_cube, model, site_loc, i, j, - site_lat, site_lon) - if i_out is not None: - pt_lon = grid_lons[i_out] - pt_lat = grid_lats[j_out] - return i_out, j_out, pt_lon, pt_lat - - # If no indices are returned then the CMIP grid box is not appropriate - # for use. Check the CMIP grid boxes surrounding the site location - # until an appropriate one is found. - else: - i_out, j_out, pt_lon, pt_lat = search_for_next_cmip(i, j, - zos_cube, - model, - site_loc, - site_lat, - site_lon) - - # If the CMIP grid box of the exact site location is masked, start by - # checking the next set of cmip grid boxes - else: - i_out, j_out, pt_lon, pt_lat = search_for_next_cmip(i, j, zos_cube, - model, site_loc, - site_lat, site_lon) - - return i_out, j_out, pt_lon, pt_lat - - -def ocean_point_wrapper(df, model_names, cubes): - """ - Wrapper script to extract relevant metadata for site location, needed to - select the nearest CMIP grid box. Collates the CMIP model name, i and j - coords selected and lat and lon value of the site. - Writes the results to a single .csv file assuming write=True. - :param df: DataFrame of site location's metadata - :param model_names: CMIP model names - :param cubes: cube containing zos field from CMIP models - """ - - # Get the metadata of either the site location or tide gauge location - for site_loc in df.index.values: - df_site = df.loc[site_loc] - lat, lon_orig, lon = extract_lat_lon(df_site) - - # Setup empty 2D list to store results for each model - # [name, i and j coords, lat and lon value] - result = [] - for n, zos_cube in enumerate(cubes): - model = model_names[n] - i, j, pt_lon, pt_lat = find_ocean_pt(zos_cube, model, site_loc, - lat, lon) - result.append([model, i, j, pt_lon, pt_lat]) - - # Write the data to a file - write_i_j(site_loc, result, lat, lon_orig) - - -def search_for_next_cmip(cmip_i, cmip_j, cube, model, site_loc, site_lat, - site_lon, unit_test=False): - """ - Iteratively check the CMIP grid boxes surrounding the site location - until a suitable option is found. - :param cmip_i: CMIP coord of site location's latitude - :param cmip_j: CMIP coord of site location's longitude - :param cube: cube containing zos field from CMIP models - :param model: CMIP model name - :param site_loc: name of the site location - :param site_lat: latitude of the site location - :param site_lon: longitude of the site location - :param unit_test: flag to disable plotting for unit testing purposes - :return: Selected CMIP coords - """ - grid_lons = cube.coord('longitude').points - grid_lats = cube.coord('latitude').points - - # The radius limit of 7 is arbitrary but should be large enough. - for radius in range(1, 8): # grid boxes - print(f'Checking CMIP grid boxes {radius} box removed ' + - 'from site location') - x_radius_range, y_radius_range = calc_radius_range(radius) - for ix in x_radius_range: - for iy in y_radius_range: - # Search the nearest grid cells. If the new mask is False, - # that grid cell is an ocean point - limit_lo = radius * radius - dd = ix * ix + iy * iy - if dd >= limit_lo: - # modulus for when grid cell is close to 0deg. - i_try = (cmip_i + ix) % len(grid_lons) - j_try = cmip_j + iy - - if not cube.data.mask[j_try, i_try]: - i_out, j_out = accept_reject_cmip( - cube, model, site_loc, i_try, j_try, site_lat, - site_lon, unit_test) - if i_out is not None: - pt_lon = grid_lons[i_out] - pt_lat = grid_lats[j_out] - return i_out, j_out, pt_lon, pt_lat - - -def write_i_j(site_loc, result, site_lat, lon_orig): - """ - Convert the grid indices to a data frame and writes to file. - :param site_loc: name of site location - :param result: grid indices and coordinates of nearest ocean point - :param site_lat: latitude of the site location - :param lon_orig: longitude of site - """ - # Store the grid indices and coordinates in a dataframe - df_out = pd.DataFrame(result, - columns=['Model', 'i', 'j', 'box_lon', 'box_lat']) - - # Create the output file directory location - out_cmipdir = read_dir()[0] - makefolder(out_cmipdir) - - # Abbreviate the site location name suitable to use as a filename - loc_abbrev = abbreviate_location_name(site_loc) - outfile = os.path.join(out_cmipdir, f'{loc_abbrev}_ij_1x1_coords.csv') - - # Save the CMIP grid box selection (i and j coordinates) to file - with open(outfile, 'w') as ofp: - ofp.write(f'Location: {site_loc}' + '\n') - ofp.write(f'Latitude: {site_lat:8.3f}' + '\n') - ofp.write(f'Longitude: {lon_orig:8.3f}' + '\n') - df_out.to_csv(ofp, index=False) - - -def main(): - """ - Find the nearest CMIP model grid box, to the user defined site - """ - print(f'User specified site name(s) is (are):' - f' {settings["siteinfo"]["sitename"]}') - print(f'User specified lat(s) and lon(s) is (are): ' - f'{settings["siteinfo"]["sitelatlon"]}') - if settings["siteinfo"]["sitelatlon"] == [[]]: - print(f' No lat lon specified - use tide gauge metadata if ' - f'available') - print(f'User specified science method is: {settings["sciencemethod"]}') - if {settings["cmipinfo"]["cmip_sea"]} == {'all'}: - print('User specified all CMIP models') - elif {settings["cmipinfo"]["cmip_sea"]} == {'marginal'}: - print('User specified CMIP models for marginal seas only') - - # Extract site data from station list (e.g. tide gauge location) or - # construct based on user input - df_site_data = extract_site_info(settings["tidegaugeinfo"]["source"], - settings["tidegaugeinfo"]["datafq"], - settings["siteinfo"]["region"], - settings["siteinfo"]["sitename"], - settings["siteinfo"]["sitelatlon"]) - - # Find the nearest, appropriate ocean point in CMIP models to specified - # site location - cmip_models, ssh_cubes = extract_ssh_data(settings["cmipinfo"]["cmip_sea"]) - ocean_point_wrapper(df_site_data, cmip_models, ssh_cubes) - - -if __name__ == '__main__': - main() diff --git a/profsea/step2_extract_steric_dyn_regression.py b/profsea/step2_extract_steric_dyn_regression.py deleted file mode 100644 index 599b1b9..0000000 --- a/profsea/step2_extract_steric_dyn_regression.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -from profsea.config import settings -from profsea.slr_pkg import extract_dyn_steric_regression # found in __init.py__ -from profsea.slr_pkg import models -from profsea.tide_gauge_locations import extract_site_info - - -def extract_cmip5_steric_dyn_regression(df): - """ - Finds all CMIP model names, then calculates the regression parameters - between global and local sea level projections for the given locations. - :param df: DataFrame of site location's metadata - """ - print('running function extract_cmip5_steric_dyn_regression') - # Specify the emission scenarios - scenarios = ['rcp26', 'rcp45', 'rcp85'] - - # Select CMIP5 models to use - if settings["cmipinfo"]["cmip_sea"] == 'all': - model_names = models.cmip5_names() - elif settings["cmipinfo"]["cmip_sea"] == 'marginal': - model_names = models.cmip5_names_marginal() - else: - raise UnboundLocalError( - 'The selected CMIP5 models to use - cmip_sea = ' + - f'{settings["cmipinfo"]["cmip_sea"]} - ' + - 'is not recognised') - - # Calculate the regression parameters and plot the results - # Note the x and y limits of the plot are set to 0.6 - this can be - # updated in extract_dyn_steric_regression() function - extract_dyn_steric_regression(model_names, df, scenarios) - - -def main(): - """ - Calculate the regression between local sea level change and global mean - sea level rise from thermal expansion. - If the regression slope is steeper/shallower than 1, then the local change - is increasing faster/slower than the global average. - """ - print(f'User specified site name(s) is (are):' - f' {settings["siteinfo"]["sitename"]}') - print(f'User specified lat(s) and lon(s) is (are): ' - f'{settings["siteinfo"]["sitelatlon"]}') - if settings["siteinfo"]["sitelatlon"] == [[]]: - print(f' No lat lon specified - use tide gauge metadata if ' - f'available') - print(f'User specified science method is: {settings["sciencemethod"]}') - if {settings["cmipinfo"]["cmip_sea"]} == {'all'}: - print('User specified all CMIP models') - elif {settings["cmipinfo"]["cmip_sea"]} == {'marginal'}: - print('User specified CMIP models for marginal seas only') - - # Extract site data from station list (e.g. tide gauge location) or - # construct based on user input - df_site_data = extract_site_info(settings["tidegaugeinfo"]["source"], - settings["tidegaugeinfo"]["datafq"], - settings["siteinfo"]["region"], - settings["siteinfo"]["sitename"], - settings["siteinfo"]["sitelatlon"]) - - extract_cmip5_steric_dyn_regression(df_site_data) - - -if __name__ == '__main__': - main() diff --git a/profsea/step3_process_regional_sealevel_projections.py b/profsea/step3_process_regional_sealevel_projections.py deleted file mode 100644 index 0db288e..0000000 --- a/profsea/step3_process_regional_sealevel_projections.py +++ /dev/null @@ -1,542 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -import os -import iris -import pickle -import numpy as np -import pandas as pd -from scipy.interpolate import RegularGridInterpolator -from netCDF4 import Dataset - -from profsea.config import settings -from profsea.tide_gauge_locations import extract_site_info -from profsea.slr_pkg import abbreviate_location_name, choose_montecarlo_dir # found in __init.py__ -from profsea.directories import read_dir, makefolder - - -def calc_baseline_period(sci_method, yrs): - """ - Baseline years used for UKCP18 -- 1981-2000 (offset required) - Baseline years used for IPCC AR5 and Palmer et al 2020 -- 1986-2005 - :param sci_method: scientific method used to select GIA estimates, GRD - fingerprints and CMIP regression (based on user input) - :param yrs: years of the projections - :return: baseline years - """ - if sci_method == 'global': - byr1 = 1986. - byr2 = 2005. - # offset not required - G_offset = 0.0 - print("Baseline period = ", byr1, "to", byr2) - elif sci_method == 'UK': - byr1 = 1981. - byr2 = 2000. - G_offset = 0.011 - print("Baseline period = ", byr1, "to", byr2) - - midyr = (byr2 - byr1 + 1) * 0.5 + byr1 - - return yrs[0] - midyr, G_offset - -def calc_future_sea_level_at_site(df, site_loc, scenario): - """ - Calculates future sea level at the given site and write to file. - :param df: Data frame of all metadata (tide gauge or site specific) for - each(all) location(s) - :param site_loc: name of the site location - :param scenario: emission scenario - """ - print('running function calc_future_sea_level_at_site') - # Get the location's latitude and longitude. - loc_coords = [df.at[site_loc, 'Latitude'], df.at[site_loc, 'Longitude']] - - # Set the UKCP*18* random seed so results are reproducible - np.random.seed(18) - - # Directory of Monte Carlo time series for new projections - mcdir = choose_montecarlo_dir() - - # Specify the sea level components to include. The GIA contribution is - # calculated separately. - components = ['exp', 'antdyn', 'antsmb', 'greendyn', 'greensmb', - 'glacier', 'landwater'] - # nesm, nyrs, yrs = get_projection_info(mcdir, scenario) - nesm = 450000 - yrs = np.arange(2007, settings["projection_end_year"] + 1) - nyrs = yrs.size - - # Determine the number of samples you wish to make CHOGOM - # project = 100000, UKCP18 = 200000 - nsmps = 200000 - array_dims = [nesm, nsmps, nyrs] - - # Get random samples of global and regional sea level components - montecarlo_G, montecarlo_R = calculate_sl_components(mcdir, components, - scenario, site_loc, - loc_coords, yrs, - array_dims) - - # Calculate the summary time series of global and local sea level - # change, i.e. mean and percentile values. - G_df, R_df = calculate_summary_timeseries(components, yrs, montecarlo_G, - montecarlo_R) - - # Create the output sea level projections file directory and filename - sealev_ddir = read_dir()[4] - loc_abbrev = abbreviate_location_name(site_loc) - file_header = '_'.join([loc_abbrev, scenario, "projection", - f"{settings['projection_end_year']}"]) - G_file = '_'.join([file_header, 'global']) + '.csv' - R_file = '_'.join([file_header, 'regional']) + '.csv' - - # Save the global and local projections - makefolder(sealev_ddir) - G_df.to_csv(os.path.join(sealev_ddir, G_file)) - R_df.to_csv(os.path.join(sealev_ddir, R_file)) - - -def calc_gia_contribution(sci_method, yrs, nyrs, nsmps, coords): - """ - Calculate the glacial isostatic adjustment (GIA) contribution to the - regional component of sea level rise. - Option to use the generic global GIA estimates or use the GIA estimates - developed for UK as part of UKCP18. - :param sci_method: scientific method used to select GIA estimates, GRD - fingerprints and CMIP regression (based on user input) - :param yrs: years of the projections - :param nyrs: number of years in each projection time series - :param nsmps: determine the number of samples - :param coords: coordinates of location of interest - :return: GIA estimates converted to mm/yr - """ - print('running function calc_gia_contribution') - - nGIA, GIA_vals = read_gia_estimates(sci_method, coords) - - Tdelta, G_offset = calc_baseline_period(sci_method, yrs) - - # Unit series of mm/yr expressed as m/yr - unit_series = (np.arange(nyrs) + Tdelta) * 0.001 - GIA_unit_series = np.ones([nsmps, nyrs]) * unit_series - - # rgiai is an array of random GIA indices the size of the sample years - rgiai = np.random.randint(nGIA, size=nsmps) - - GIA_series = GIA_unit_series.transpose() * GIA_vals[rgiai] - - print('GIA_vals (mm/yr) = ', GIA_series) - - return GIA_series, G_offset - - -def calculate_sl_components(mcdir, components, scenario, site_loc, loc_coords, - yrs, array_dims): - """ - Calculates global and regional component part contributions to sea level - change. - :param mcdir: location of Monte Carlo time series for new projections - :param components: sea level components - :param scenario: emission scenario - :param site_loc: name of the site location - :param loc_coords: latitude and longitude of site - :param yrs: years of the projections - :param array_dims: Array of nesm, nsmps and nyrs - nesm --> Number of ensemble members in time series - nsmps --> Determine the number of samples you wish to make - nyrs --> Number of years in each projection time series - :return: montecarlo_G (global contribution to sea level rise) and - montecarlo_R (regional contribution to sea level change) - """ - print('running function calculate_sl_components') - ncomps = len(components) - - # Numbers of ensemble members, samples, years - nesm, nsmps, nyrs = array_dims - - # Coordinates of location of interest - tlat, tlon = loc_coords - - # Scientific method - sci_method = settings["sciencemethod"] - - # Set up fingerprint interpolators for each component of sea level change - # Note that the first entry in the list is the Slangen, which includes the - # land water estimate - nFPs, FPlist = setup_FP_interpolators(components, sci_method) - - # Use the same resampling across all sea level components (to preserve - # correlations) - resamples = np.random.choice(nesm, nsmps) - rfpi = np.random.randint(nFPs, size=nsmps) - - # The "offset_slopes" scales the global_offset variables into the different - # sea level components. - # These offsets exist because a baseline period of 1981-2000 is used, - # rather than the AR5 baseline period of 1986-2005. - offset_slopes = {'exp': 0.405, - 'antnet': 0.095, - 'antsmb': -0.025, - 'antdyn': 0.120, - 'greennet': 0.125, - 'greensmb': 0.040, - 'greendyn': 0.085, - 'glacier': 0.270, - 'landwater': 0.105} - - # Monte Carlo for regional values (FPs applied) + GIA - montecarlo_R = np.zeros((ncomps + 1, nyrs, nsmps)) - # Monte Carlo for Global values (no FPs applied) - montecarlo_G = np.zeros((ncomps, nyrs, nsmps)) - - # Calculate the GIA contribution to the regional component of sea level - # change - GIA_series, G_offset = calc_gia_contribution(sci_method, yrs, nyrs, nsmps, - loc_coords) - montecarlo_R[-1, :, :] = GIA_series[:, :] - - for cc, comp in enumerate(components): - print(f'cc = {cc:d}, comp = {comp}') - - offset = G_offset * offset_slopes[comp] - - cube = iris.load_cube(os.path.join(mcdir, f'{scenario}_{comp}.nc')) - montecarlo_G[cc, :, :] = cube.data[:nyrs, resamples] + offset - - if comp == 'exp': - if sci_method == 'global': - coeffs = load_CMIP5_slope_coeffs(site_loc, scenario) - rand_coeffs = np.random.choice(coeffs, size=nsmps, - replace=True) - elif sci_method == 'UK': - coeffs, weights = load_CMIP5_slope_coeffs_UK(scenario) - rand_coeffs = np.random.choice(coeffs, size=nsmps, - replace=True, p=weights) - montecarlo_R[cc, :, :] = montecarlo_G[cc, :, :] * rand_coeffs - elif comp == 'landwater': - landwater_FP_interpolator = FPlist[0]['landwater'] - # Interpolate values to target lat/lon - val = landwater_FP_interpolator([tlat, tlon])[0] - montecarlo_R[cc, :, :] = montecarlo_G[cc, :, :] * val - else: - # Initiate an empty list for fingerprint values - FPvals = [] - for FP_dict in FPlist: - # Interpolate values to target lat/lon - val = FP_dict[comp]([tlat, tlon])[0] - FPvals.append(val) - FPvals = np.array(FPvals) - montecarlo_R[cc, :, :] = montecarlo_G[cc, :, :] * FPvals[rfpi] - - return montecarlo_G, montecarlo_R - - -def calculate_summary_timeseries(components, years, montecarlo_G, - montecarlo_R): - """ - Calculates summary timeseries of each sea level rise component, plus sums - of the contributions from Greenland and Antarctica, and sum of all - components. - :param components: sea level components - :param years: years of the projections - :param montecarlo_G: global sea level components - :param montecarlo_R: regional sea level components - :return: DataFrame of global and regional summary timeseries of sea level - """ - print('running function calculate_summary_timeseries') - percentiles = [5, 10, 30, 33, 50, 67, 70, 90, 95] - - # Define lists to store the summary timeseries. They will be converted to - # Pandas dataframes. - R_list = [] - G_list = [] - - for cc, _ in enumerate(components): - # Calculate and store the global component time series - cgout = np.percentile(montecarlo_G[cc, :, :], percentiles, axis=1) - G_list.append(cgout.flatten(order='F')) - - # Calculate and store the regional component time series - crout = np.percentile(montecarlo_R[cc, :, :], percentiles, axis=1) - R_list.append(crout.flatten(order='F')) - - # Set up a multi-level index for the dataframes, consisting of the years - # and percentiles. - iterables = [years, percentiles] - idx = pd.MultiIndex.from_product(iterables, names=['year', 'percentile']) - G_df = pd.DataFrame(np.asarray(G_list).T, columns=components, index=idx) - R_df = pd.DataFrame(np.asarray(R_list).T, columns=components, index=idx) - R_df.rename(columns={"exp": "ocean"}) - - # Store the regional GIA component time series - ncomp = len(components) - crout = np.percentile(montecarlo_R[ncomp, :, :], percentiles, axis=1) - R_df['GIA'] = crout.flatten(order='F') - - # Add sums of contributions from Antarctica and Greenland to the saved - # series. This needs to be calculated across the full montecarlo range not - # a pandas addition. - # calc_future_sea_level_at_site states: components = ['exp', 'antdyn', - # 'antsmb', 'greendyn', 'greensmb', 'glacier', 'landwater'] - antnet_tmpg = np.percentile( - montecarlo_G[1, :, :] + montecarlo_G[2, :, :], - percentiles, axis=1).flatten(order='F') - G_df['antnet'] = pd.DataFrame(antnet_tmpg, columns=['antnet'], index=idx) - greennet_tmpg = np.percentile( - montecarlo_G[3, :, :] + montecarlo_G[4, :, :], - percentiles, axis=1).flatten(order='F') - G_df['greennet'] = pd.DataFrame( - greennet_tmpg, columns=['greennet'], index=idx) - antnet_tmpr = np.percentile( - montecarlo_R[1, :, :] + montecarlo_R[2, :, :], - percentiles, axis=1).flatten(order='F') - R_df['antnet'] = pd.DataFrame(antnet_tmpr, columns=['antnet'], index=idx) - greennet_tmpr = np.percentile( - montecarlo_R[3, :, :] + montecarlo_R[4, :, :], - percentiles, axis=1).flatten(order='F') - R_df['greennet'] = pd.DataFrame( - greennet_tmpr, columns=['greennet'], index=idx) - - # Sum of all components (net sea level change) - montecarlo_Gsum = np.sum(montecarlo_G, axis=0) - montecarlo_Rsum = np.sum(montecarlo_R, axis=0) - # Store the percentiles of the sums of all components to global and local - # sea level change - cgout = np.percentile(montecarlo_Gsum, percentiles, axis=1) - crout = np.percentile(montecarlo_Rsum, percentiles, axis=1) - G_df['sum'] = cgout.flatten(order='F') - R_df['sum'] = crout.flatten(order='F') - - return G_df, R_df - - -def create_FP_interpolator(datadir, dfile, method='linear'): - """ - Generates a scipy Interpolator object from input NetCDF data of - gravitational fingerprints (takes inputs of Latitude and Longitude). - :param datadir: data directory - :param dfile: data filename - :param method: interpolation type --> 'linear' or 'nearest' - :return: 2D Interpolator object - """ - cube = iris.load_cube(os.path.join(datadir, dfile)) - lon = cube.coord('longitude').points - lat = cube.coord('latitude').points - - # Define linear interpolator object: - interp_object = RegularGridInterpolator((lat, lon), cube.data, - method=method, bounds_error=True, - fill_value=None) - - return interp_object - - -def get_projection_info(indir, scenario): - """ - Read in the dimensions of the Monte-Carlo data. These files are all - relative to midnight on 1st January 2007 - :param indir: directory of Monte Carlo time series for new projections - :param scenario: emission scenarios to be considered - :return: Number of ensemble members in time series, number of years in - each projection time series and the years of the projections - """ - sample_file = f'{scenario}_exp.nc' - f = Dataset(f'{indir}{sample_file}', 'r') - nesm = f.dimensions['realization'].size - t = f.variables['time'] - nyrs = t.size - unit_str = t.units - first_year = int(unit_str.split(' ')[2][:4]) - f.close() - - yrs = first_year + np.arange(nyrs) - - return nesm, nyrs, yrs - - -def load_CMIP5_slope_coeffs(site_loc, scenario): - """ - Loads in the CMIP slope coefficients based on linear regression of - 'zos+zostoga' against 'zostoga' for the period 2005 to 2100. - Some models are missing regression slopes for RCP2.6. If so, use RCP4.5 - values instead. - :param site_loc: name of the site location - :param scenario: emissions scenario - :return: 1D array of regression coefficients - """ - print('running function load_CMIP5_slope_coeffs') - - # Read in the sea level regressions - in_zosddir = read_dir()[2] - loc_abbrev = abbreviate_location_name(site_loc) - filename = os.path.join(in_zosddir, f'{loc_abbrev}_zos_regression.csv') - df = pd.read_csv(filename, header=0) - - coeffs = df.loc[(df['Scenario'] == scenario)]['slope_05_00'].values - - # Some models are missing regression slopes for RCP2.6. If so, use RCP4.5 - # values instead - if scenario == 'rcp26': - rcp45_coeffs = df.loc[(df['Scenario'] == - 'rcp45')]['slope_05_00'].values - msgi = np.where(np.isnan(coeffs))[0] - coeffs[msgi] = rcp45_coeffs[msgi] - - return coeffs - - -def load_CMIP5_slope_coeffs_UK(scenario): - """ - Loads in the CMIP5 slope coefficients developed for UKCP18 - :param scenario: emissions scenario - :return: 1D array of slope coefficients and 1D array of weights - """ - print('running function load_CMIP5_slope_coeffs_UK') - in_zosdir_uk = settings["cmipinfo"]["slopecoeffsuk"] - filename_uk = f'{scenario}_CMIP5_regress_coeffs_uk_mask_1.pickle' - - try: - with open(os.path.join(in_zosdir_uk, filename_uk), 'rb') as f: - data = pickle.load(f, encoding='latin1')['uk_mask_1'] - except FileNotFoundError: - raise FileNotFoundError(filename_uk, - '- scenario selected does not exist') - - # Keys are: 'coeffs', 'models', 'weights' - coeffs = data['coeffs'] - weights = data['weights'] - - return coeffs, weights - - -def read_gia_estimates(sci_method, coords): - """ - Read in pre-processed interpolator objects of GIA estimates (Lambeck, - ICE5G or UK specific ones) - :param sci_method: scientific method used to select GIA estimates, GRD - fingerprints and CMIP regression (based on user input) - :param coords: latitude and longitude of tide gauge - :return: length of GIA_vals and numpy array of pre-processed interpolator - objects of GIA estimates - """ - print('running function read_gia_estimates') - # Directories containing GIA data (independent of scenario) - if sci_method == 'global': - gia_file = settings["giaestimates"]["global"] - elif sci_method == 'UK': - gia_file = settings["giaestimates"]["uk"] - else: - raise UnboundLocalError('The selected GIA estimate - ' + - f'{sci_method} - is not available') - - with open(gia_file, "rb") as ifp: - GIA_dict = pickle.load(ifp, encoding='latin1') - - GIA_vals = [] - lat, lon = coords - # The GIA_dict contains interpolator objects - for key in list(GIA_dict.keys()): - val = GIA_dict[key]([lat, lon])[0] - GIA_vals.append(val) - - nGIA = len(GIA_vals) - GIA_vals = np.array(GIA_vals) - - return nGIA, GIA_vals - - -def setup_FP_interpolators(components, sci_method): - """ - Create 2D Interpolator objects for the Slangen, Spada and Klemann - fingerprints - :param components: list of sea level components - :param sci_method: scientific method used to select GIA estimates, GRD - fingerprints and CMIP regression (based on user input) - :return nFPs: length of FPlist and interpolator objects of all sea level - components - """ - print('running function setup_FP_interpolators') - - # Directories for the Slangen, Spada and Klemann fingerprints - slangendir = settings["fingerprints"]["slangendir"] - spadadir = settings["fingerprints"]["spadadir"] - klemanndir = settings["fingerprints"]["klemanndir"] - - # Create empty dictionaries for the Slangen, Spada and Klemann fingerprints - # interpolator objects. - slangen_FPs = {} - spada_FPs = {} - klemann_FPs = {} - - # Only 1 fingerprint for Landwater - comp = 'landwater' - slangen_FPs[comp] = create_FP_interpolator(slangendir, - comp + '_slangen_nomask.nc') - - # Create interpolators for the remaining components. Expansion ('exp') - # is global so no interpolation is needed. - components_todo = [c for c in components if c not in ['exp', 'landwater']] - for comp in components_todo: - slangen_FPs[comp] = create_FP_interpolator(slangendir, - comp + '_slangen_nomask.nc') - spada_FPs[comp] = create_FP_interpolator(spadadir, - comp + '_spada_nomask.nc') - klemann_FPs[comp] = create_FP_interpolator(klemanndir, - comp + '_klemann_nomask.nc') - - if sci_method == 'UK': - # Klemann fingerprints were not used in UKCP18 - FPlist = [slangen_FPs, spada_FPs] - elif sci_method == 'global': - FPlist = [slangen_FPs, spada_FPs, klemann_FPs] - else: - raise UnboundLocalError('The selected GRD fingerprint method - ' + - f'{sci_method} - is not available') - - nFPs = len(FPlist) - - return nFPs, FPlist - - -def main(): - """ - Reads in and calculates global and local (regional) sea level change - (sum total), based on the different contributing factors e.g. thermal - expansion, GIA and mass balance. Writes out the selected emissions scenario - estimates of the various components and their sums. - """ - print(f'User specified site name(s) is (are):' - f' {settings["siteinfo"]["sitename"]}') - print(f'User specified lat(s) and lon(s) is (are): ' - f'{settings["siteinfo"]["sitelatlon"]}') - if settings["siteinfo"]["sitelatlon"] == [[]]: - print(f' No lat lon specified - use tide gauge metadata if ' - f'available') - print(f'User specified science method is: {settings["sciencemethod"]}') - if {settings["cmipinfo"]["cmip_sea"]} == {'all'}: - print('User specified all CMIP models') - elif {settings["cmipinfo"]["cmip_sea"]} == {'marginal'}: - print('User specified CMIP models for marginal seas only') - - print(f'\nProjecting out to: {settings["projection_end_year"]}\n') - - # Extract site data from station list (e.g. tide gauge location) or - # construct based on user input - df_site_data = extract_site_info(settings["tidegaugeinfo"]["source"], - settings["tidegaugeinfo"]["datafq"], - settings["siteinfo"]["region"], - settings["siteinfo"]["sitename"], - settings["siteinfo"]["sitelatlon"]) - - scenarios = ['rcp26', 'rcp45', 'rcp85'] - for scenario in scenarios: - # Get the metadata of either the site location or tide gauge location - for loc_name in df_site_data.index.values: - calc_future_sea_level_at_site(df_site_data, loc_name, scenario) - - -if __name__ == '__main__': - main() diff --git a/profsea/step4_plot_regional_sealevel.py b/profsea/step4_plot_regional_sealevel.py deleted file mode 100644 index 6d968d8..0000000 --- a/profsea/step4_plot_regional_sealevel.py +++ /dev/null @@ -1,974 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -import os -import iris -import numpy as np -import pandas as pd -import matplotlib -import matplotlib.pyplot as plt - -from profsea.config import settings -from profsea.tide_gauge_locations import extract_site_info, find_nearest_station_id -from profsea.slr_pkg import abbreviate_location_name, choose_montecarlo_dir # found in __init.py__ -from profsea.surge import tide_gauge_library as tgl -from profsea.directories import read_dir, makefolder -from profsea.plotting_libraries import location_string, scenario_string, \ - ukcp18_colours, ukcp18_labels, calc_xlim, calc_ylim, plot_zeroline - - -def compute_uncertainties(df_r_list, scenarios, tg_years, tg_amsl): - """ - Function to estimate uncertainties following Hawkins and Sutton (2009). - :param df_r_list: regional sea level projections - :param scenarios: emissions scenario - :param tg_years: tide gauge years - :param tg_amsl: annual mean sea level data - :return: years, scenario uncertainty, model uncertainty, internal - variability - """ - nyrs = np.range(2007, settings["projection_end_year"] + 1).size - allpmid = np.zeros([3, nyrs]) - allunc = np.zeros([3, nyrs]) - - # Estimate internal variability from de-trended gauge data - tg_years_arr = np.array(tg_years, dtype='int') - vals = np.ma.masked_values(tg_amsl, -99999.) - IntV = compute_variability(tg_years_arr / 1000., vals / 1.) - - # Get the values of the multi-index: years and percentile values - years, percentiles = multi_index_values(df_r_list) - - for rcp_count, _ in enumerate(scenarios): - # Get the sums of local sea level projections - df_R = df_r_list[rcp_count] - rlow, rmid, rupp = extract_comp_sl(df_R, percentiles, 'sum') - - allpmid[rcp_count, :] = rmid - allunc[rcp_count, :] = (rupp - rlow) * 0.5 - - # Scenario Uncertainty (expressed as 90% confidence interval) - UncS = np.std(allpmid, axis=0) * 1.645 - # Model Uncertainty (already expressed as 90% confidence interval) - UncM = np.mean(allunc, axis=0) - - return years, UncS, UncM, IntV - - -def compute_variability(x, y, factor=1.645): - """ - Estimate internal variability from de-trended gauge data. - :param x: tide gauge temporal data - :param y: tide gauge data - :param factor: multiplication factor - :return: internal variability component of uncertainty - """ - mask = np.ma.getmask(y) - index = np.where(mask is True) - new_x = np.delete(x, index) - new_y = np.delete(y, index) - fit = np.polyfit(new_x, new_y, 1) - fit_data = new_x * fit[0] + fit[1] - stdev = np.std(new_y - fit_data) - - return stdev * factor - - -def extract_comp_sl(df, percentiles, comp): - """ - Get the sums of all components of local sea level projections. - :param df: global or regional DataFrame of sea level projections - :param percentiles: specified percentiles - :param comp: components of sea level - :return: sum of sea level components at lower, middle and upper percentile - """ - # 5th percentile - based on UKCP18 percentile levels - rlow = df.xs(percentiles[0], level='percentile')[comp].to_numpy(copy=True) - # 50th percentile - rmid = df.xs(percentiles[4], level='percentile')[comp].to_numpy(copy=True) - # 95th percentile - rupp = df.xs(percentiles[8], level='percentile')[comp].to_numpy(copy=True) - - return rlow, rmid, rupp - - -def multi_index_values(df_list): - """ - Get the values of the multi-index: years and percentile values. - :param df_list: DataFrame list of regional sea level projections - :return: years and percentile values - """ - df = df_list[0] - proj_years = np.sort(list(set(list(df.index.get_level_values('year'))))) - percentiles_all = np.sort( - [float(v) for v in list(set(list( - df.index.get_level_values('percentile'))))]) - - return proj_years, percentiles_all - - -def plot_figure_one(r_df_list, site_name, scenarios, fig_dir): - """ - Subplot 1 - Local sea level projections for all RCPs - sum total. - Subplot 2 - Local sea level projections for RCP8.5 - sum total and - component parts. - :param r_df_list: regional sea level projections - :param site_name: site location - :param scenarios: emissions scenario - :param fig_dir: figure directory - """ - # Get the values of the multi-index: years and percentile values - years, percentiles = multi_index_values(r_df_list) - - # UKCP18 colour scheme for sea level components - rcp_colours = ukcp18_colours()[0] - - # Calculate the x-axis and y-axis limit - xlim = calc_xlim('proj', [], years) - ylim = calc_ylim('proj', [], r_df_list) - - fig = plt.figure(figsize=(7.68, 3.5)) - matplotlib.rcParams['font.size'] = 7.5 - - # First figure, regional sea level projections and uncertainties under each - # scenario - ax = fig.add_subplot(1, 2, 1) - - for rcp_count, rcp_str in enumerate(scenarios): - # Get the sums of all components of local sea level projections - r_df_rcp = r_df_list[rcp_count] - rlow, rmid, rupp = extract_comp_sl(r_df_rcp, percentiles, 'sum') - - label = scenario_string(scenarios, rcp_count) - ax.fill_between(years, rlow, rupp, alpha=0.3, - color=rcp_colours[rcp_str], linewidth=0) - ax.plot(years, rmid, color=rcp_colours[rcp_str], label=label) - - plot_zeroline(ax, xlim) - - ax.set_xlim(xlim) - ax.set_ylim(ylim) - ax.yaxis.set_ticks_position('both') - ax.yaxis.set_label_position('left') - - ax.set_title(f'Local sea level - {location_string(site_name)}') - ax.set_xlabel('Year') - ax.set_ylabel('Sea Level Change (m)') - - ax.legend(loc='upper left', frameon=False) - - # Second figure showing the various components of sea level projections - bx = fig.add_subplot(1, 2, 2) - - # UKCP18 colour scheme for sea level components - comp_colours = ukcp18_colours()[1] - # UKCP18 labels for sea level components - comp_labels = ukcp18_labels() - - # Show components for the RCP8.5 scenario (only plot the uncertainty for - # sum and thermal expansion) - for rcp_count, rcp_str in enumerate(scenarios): - if scenarios[rcp_count] == 'rcp85': - break - else: - raise ValueError('RCP8.5 scenario not in list') - - r_df_rcp = r_df_list[rcp_count] - - for comp in ['sum', 'ocean', 'greennet', 'antnet', 'glacier', 'landwater', - 'gia']: - # Get the components of regional sea level projections - clow_85, cmid_85, cupp_85 = extract_comp_sl(r_df_rcp, percentiles, - comp) - colour = comp_colours[comp] - label = comp_labels[comp] - - if comp in ['sum', 'ocean']: - bx.fill_between(years, cupp_85, clow_85, facecolor=colour, - alpha=0.3, edgecolor='None') - - if comp == 'sum': - bx.plot(years, cmid_85, colour, linewidth=1.5, label=label) - else: - bx.plot(years, cmid_85, colour, linewidth=1.5, label=label) - else: - bx.plot(years, cmid_85, colour, linewidth=1.5, label=label) - - plot_zeroline(bx, xlim) - bx.set_xlim(xlim) - bx.set_ylim(ylim) - bx.yaxis.set_ticks_position('both') - bx.yaxis.set_label_position('left') - - bx.legend(loc='upper left', frameon=False) - bx.set_title(f'Sea level components - {scenario_string(rcp_str, -999)}') - bx.set_xlabel('Year') - - # Save the figure - fig.tight_layout() - ffile = f'{fig_dir}01_{site_name}.png' - plt.savefig(ffile, dpi=300, format='png') - plt.close() - - -def plot_figure_two(r_df_list, tg_name, nflag, flag, tg_years, non_missing, - tg_amsl, site_name, scenarios, fig_dir): - """ - Local sea level projections for specified RCPs - sum total, and annual - mean tide gauge observations. - :param r_df_list: regional sea level projections - :param tg_name: tide gauge name - :param nflag: number of flagged years - :param flag: flagged data - :param tg_years: tide gauge years - :param non_missing: boolean to indicate NaN values - :param tg_amsl: annual mean sea level data - :param site_name: site location - :param scenarios: emissions scenario - :param fig_dir:figure directory - """ - # Get the values of the multi-index: years and percentile values - years, percentiles = multi_index_values(r_df_list) - - # UKCP18 colour scheme for RCP scenarios - rcp_colours = ukcp18_colours()[0] - - fig = plt.figure(figsize=(5, 4.5)) - matplotlib.rcParams['font.size'] = 10 - - # Draw regional sea level projections and uncertainties under each scenario - ax = fig.add_subplot(1, 1, 1) - - for rcp_count, rcp_str in enumerate(scenarios): - # Get the sums of all components of local sea level projections - r_df_rcp = r_df_list[rcp_count] - rlow, rmid, rupp = extract_comp_sl(r_df_rcp, percentiles, 'sum') - - label = scenario_string(scenarios, rcp_count) - ax.fill_between(years, rlow, rupp, alpha=0.3, - color=rcp_colours[rcp_str], linewidth=0) - ax.plot(years, rmid, color=rcp_colours[rcp_str], label=label) - - # Calculate sensible x-axis range and y-axis range based on tide gauge data - # and projections - xlim = calc_xlim('tide', tg_years, years) - df_tmp = pd.DataFrame([rlow, rmid, rupp]) - ylim = calc_ylim('tide', tg_amsl, df_tmp) - - plot_zeroline(ax, xlim) - - # Plot the annual mean sea levels from the tide gauge data - plot_tg_data(ax, nflag, flag, tg_years, non_missing, tg_amsl, tg_name) - - ax.set_xlim(xlim) - ax.set_ylim(ylim) - ax.yaxis.set_ticks_position('both') - ax.yaxis.set_label_position('left') - ax.set_title(f'Local sea level - {location_string(site_name)}') - ax.set_ylabel('Sea Level Change (m)') - ax.set_xlabel('Year') - ax.legend(loc='upper left', frameon=False) - - # Save the figure - fig.tight_layout() - ffile = f'{fig_dir}02_{site_name}.png' - plt.savefig(ffile, dpi=300, format='png') - plt.close() - - -def plot_figure_three(g_df_list, r_df_list, global_low, global_mid, global_upp, - site_name, scenarios, fig_dir): - """ - Subplot 1 - Comparison of IPCC AR5 + Levermann global projections and - global projections developed here. - Subplot 2 - Comparison of global projections developed here and local sea - level projections. - :param g_df_list: global sea level projections - :param r_df_list: regional sea level projections - :param global_low: IPCC AR5 + Levermann global projections 5th percentile - :param global_mid: IPCC AR5 + Levermann global projections 50th percentile - :param global_upp: IPCC AR5 + Levermann global projections 95th percentile - :param site_name: site location - :param scenarios: emissions scenario - :param fig_dir: figure directory - """ - # Get the values of the multi-index: years and percentile values - years, percentiles = multi_index_values(r_df_list) - - # UKCP18 colour scheme for RCP scenarios - rcp_colours = ukcp18_colours()[0] - - # Calculate sensible x-axis range based on projections - xlim = calc_xlim('proj', [], years) - - for rcp_count, rcp_str in enumerate(scenarios): - # Get the sums of all components of global sea level projections - g_df_rcp = g_df_list[rcp_count] - glow, gmid, gupp = extract_comp_sl(g_df_rcp, percentiles, 'sum') - - # Get the sums of all components of global sea level projections - r_df_rcp = r_df_list[rcp_count] - rlow, rmid, rupp = extract_comp_sl(r_df_rcp, percentiles, 'sum') - - # Calculate sensible y-axis range based on projections - r_ylim = calc_ylim('proj', [], r_df_rcp) - g_ylim = calc_ylim('proj', [], g_df_rcp) - ylim = [min(r_ylim[0], g_ylim[0]), max(r_ylim[1], g_ylim[1])] - - # Plot comparison of global sea level projections - # Check that global is equivalent to the IPCC AR5 + Levermann sea - # level projections - fig = plt.figure(figsize=(7.68, 3.5)) - matplotlib.rcParams['font.size'] = 7.5 - - ax = fig.add_subplot(1, 2, 1) - # IPCC - ax.plot(years, global_mid[rcp_count], color='k', linewidth=1.5, - linestyle='-', label='IPCC AR5 + Levermann') - ax.plot(years, global_low[rcp_count], color='k', linewidth=1.5, - linestyle=':') - ax.plot(years, global_upp[rcp_count], color='k', linewidth=1.5, - linestyle=':') - # Global - ax.plot(years, gmid, color='orange', linewidth=1.5, linestyle='--', - label='Global Total') - ax.fill_between(years, glow, gupp, color='orange', alpha=0.3, - linewidth=0, edgecolor='None') - - plot_zeroline(ax, xlim) - ax.set_xlim(xlim) - ax.set_ylim(ylim) - ax.yaxis.set_ticks_position('both') - ax.yaxis.set_label_position('left') - - ax.set_title(f'Global sea level - {scenario_string(rcp_str, -999)}') - ax.set_ylabel('Sea Level Change (m)') - ax.set_xlabel('Year') - ax.legend(loc='upper left', frameon=False) - - # Plot regional sea level projections, showing both error ranges - bx = fig.add_subplot(1, 2, 2) - # Global - bx.plot(years, gmid, color='k', linewidth=1.5, linestyle='-', - label='Global Total') - bx.plot(years, glow, color='k', linewidth=1.5, linestyle=':') - bx.plot(years, gupp, color='k', linewidth=1.5, linestyle=':') - # Local - bx.plot(years, rmid, color=rcp_colours[rcp_str], linewidth=1.5, - linestyle='--', label=location_string(site_name)) - bx.fill_between(years, rlow, rupp, color=rcp_colours[rcp_str], - alpha=0.3, linewidth=0, edgecolor='None') - - plot_zeroline(bx, xlim) - bx.set_xlim(xlim) - bx.set_ylim(ylim) - bx.yaxis.set_ticks_position('both') - bx.yaxis.set_label_position('left') - - bx.set_title(f'Local sea level - {location_string(site_name)} - ' - f'{scenario_string(rcp_str, -999)}') - bx.set_xlabel('Year') - bx.legend(loc='upper left', frameon=False) - - # Save the figure - fig.tight_layout() - outfile = f'{fig_dir}03_{site_name}_{rcp_str}.png' - plt.savefig(outfile, dpi=300, format='png') - plt.close() - - -def plot_figure_four(r_df_list, site_name, scenarios, fig_dir): - """ - Local sea level projections for all RCPs - sum total. - Same style as Figure 3.1.4 of UKCP18 Marine Report (pg 16). - :param r_df_list: regional sea level projections - :param site_name: site location - :param scenarios: emissions scenario - :param fig_dir: figure directory - """ - # Get the values of the multi-index: years and percentile values - years, percentiles = multi_index_values(r_df_list) - - # UKCP18 colour scheme for RCP scenarios - rcp_colours = ukcp18_colours()[0] - - fig = plt.figure(figsize=(5, 4.5)) - matplotlib.rcParams['font.size'] = 10 - - # First figure, regional sea level projections and uncertainties under each - # scenario - ax = fig.add_subplot(1, 1, 1) - - for rcp_count, rcp_str in enumerate(scenarios): - # Get the sums of regional sea level projections - r_df_rcp = r_df_list[rcp_count] - rlow, rmid, rupp = extract_comp_sl(r_df_rcp, percentiles, 'sum') - - label = scenario_string(scenarios, rcp_count) - plt.plot(years, rmid, color=rcp_colours[rcp_str], linewidth=4.0, - label=label) - plt.plot(years, rupp, color=rcp_colours[rcp_str], linewidth=1.0, - linestyle='--') - plt.plot(years, rlow, color=rcp_colours[rcp_str], linewidth=1.0, - linestyle='--') - - # Calculate sensible x-axis range and y-axis range based on tide gauge data - # and projections - xlim = calc_xlim('proj', [], years) - df_tmp = pd.DataFrame([rlow, rmid, rupp]) - ylim = calc_ylim('proj', [], df_tmp) - - plot_zeroline(ax, xlim) - plt.xlim(xlim) - plt.ylim(ylim) - ax.yaxis.set_ticks_position('both') - ax.yaxis.set_label_position('left') - - plt.title(f'Local sea level - {location_string(site_name)}') - plt.ylabel('Sea Level Change (m)') - plt.xlabel('Year') - plt.legend(loc='upper left', frameon=False) - - # Save the figure - fig.tight_layout() - outfile = f'{fig_dir}04_{site_name}.png' - plt.savefig(outfile, dpi=300, format='png') - plt.close() - - -def plot_figure_five(g_df_list, r_df_list, site_name, scenarios, fig_dir): - """ - Comparison of global mean sea level projections calculated by the tool and - local sea level projections - sum total - Also shown local sea level projections - component parts - Subplot 1, 2, 3 - RCP2.6, RCP4.5, RCP8.5 respectively. - :param g_df_list: global sea level projections - :param r_df_list: regional sea level projections - :param site_name: site location - :param scenarios: emissions scenario - :param fig_dir: figure directory - """ - # Get the values of the multi-index: years and percentile values - years, percentiles = multi_index_values(r_df_list) - - # UKCP18 colour scheme for sea level components - comp_colours = ukcp18_colours()[1] - # UKCP18 labels for sea level components - comp_labels = ukcp18_labels() - - # Calculate sensible x-axis range and y-axis range based on projections - xlim = calc_xlim('proj', [], years) - r_ylim = calc_ylim('proj', [], r_df_list) - g_ylim = calc_ylim('proj', [], g_df_list) - ylim = [min(r_ylim[0], g_ylim[0]), max(r_ylim[1], g_ylim[1])] - - fig = plt.figure(figsize=(7.68, 3.5)) - matplotlib.rcParams['font.size'] = 7.5 - - # Loop through RCPs for subplots - for rcp_count, _ in enumerate(scenarios): - ax = fig.add_subplot(1, 3, rcp_count + 1) - - # Get the sums of global sea level projections - g_df_rcp = g_df_list[rcp_count] - glow, gmid, gupp = extract_comp_sl(g_df_rcp, percentiles, 'sum') - - ax.plot(years, gmid, color='k', linewidth=1.5, linestyle='--', - label='Global Total') - ax.plot(years, glow, color='k', linewidth=1.5, linestyle=':') - ax.plot(years, gupp, color='k', linewidth=1.5, linestyle=':') - - # Get the sums of local sea level projections - r_df_rcp = r_df_list[rcp_count] - - for comp in ['sum', 'ocean', 'greennet', 'antnet', 'glacier', - 'landwater', 'gia']: - # Get the components of regional sea level projections - clow, cmid, cupp = extract_comp_sl(r_df_rcp, percentiles, comp) - - colour = comp_colours[comp] - label = comp_labels[comp] - - if comp in ['sum', 'ocean']: - ax.plot(years, cmid, colour, linewidth=1.5, label=label) - ax.fill_between(years, cupp, clow, facecolor=colour, alpha=0.3, - edgecolor='None') - else: - ax.plot(years, cmid, colour, linewidth=1.5, label=label) - - plot_zeroline(ax, xlim) - ax.set_xlim(xlim) - ax.set_ylim(ylim) - ax.yaxis.set_ticks_position('both') - ax.yaxis.set_label_position('left') - - ax.set_xlabel('Year') - ax.set_title(f'{location_string(site_name)} - ' - f'{scenario_string(scenarios[rcp_count], -999)}') - if rcp_count == 0: - ax.set_ylabel('Sea Level Change (m)') - - # Put legend to the right of the current axis - ax.legend(loc='center left', bbox_to_anchor=(1, 0.5)) - - # Save the figure - fig.tight_layout() - outfile = f'{fig_dir}05_{site_name}.png' - plt.savefig(outfile, dpi=300, format='png') - plt.close() - - -def plot_figure_six(r_df_list, global_low, global_mid, global_upp, - site_name, scenarios, fig_dir): - """ - Comparison of IPCC AR5 + Levermann projections and local sea level - projections - sum total and component parts. - Subplot 1, 2, 3 - RCP2.6, RCP4.5, RCP8.5 respectively. - :param r_df_list: regional sea level projections - :param global_low: IPCC AR5 + Levermann global projections 5th percentile - :param global_mid: IPCC AR5 + Levermann global projections 50th percentile - :param global_upp: IPCC AR5 + Levermann global projections 95th percentile - :param site_name: site location - :param scenarios: emissions scenario - :param fig_dir: figure directory - """ - # Get the values of the multi-index: years and percentile values - years, percentiles = multi_index_values(r_df_list) - - # UKCP18 colour scheme for sea level components - comp_colours = ukcp18_colours()[1] - # UKCP18 labels for sea level components - comp_labels = ukcp18_labels() - - # Calculate sensible x-axis range and y-axis range based on projections - xlim = calc_xlim('proj', [], years) - r_ylim = calc_ylim('proj', [], r_df_list) - # IPCC AR5 + Levermann projections are read in as an array - g_ylim = [min(global_low[0]-0.1), max(global_upp[2])+0.1] - ylim = [min(r_ylim[0], g_ylim[0]), max(r_ylim[1], g_ylim[1])] - - fig = plt.figure(figsize=(7.68, 3.5)) - matplotlib.rcParams['font.size'] = 7.5 - - # Loop through RCPs for subplots - for rcp_count, _ in enumerate(scenarios): - ax = fig.add_subplot(1, 3, rcp_count + 1) - - # Get the sums of all components of global sea level projections - cmid_g = global_mid[rcp_count] - clow_g = global_low[rcp_count] - cupp_g = global_upp[rcp_count] - - ax.plot(years, cmid_g, color='k', linewidth=1.5, linestyle='--', - label='IPCC AR5 + Levermann') - ax.plot(years, clow_g, color='k', linewidth=1.5, linestyle=':') - ax.plot(years, cupp_g, color='k', linewidth=1.5, linestyle=':') - - # Get the sums of all components of local sea level projections - r_df_rcp = r_df_list[rcp_count] - for comp in ['sum', 'ocean', 'greennet', 'antnet', 'glacier', - 'landwater', 'gia']: - # Get the sums of regional sea level projections - clow, cmid, cupp = extract_comp_sl(r_df_rcp, percentiles, comp) - - colour = comp_colours[comp] - label = comp_labels[comp] - - if comp in ['sum', 'ocean']: - ax.plot(years, cmid, colour, linewidth=1.5, label=label) - ax.fill_between(years, cupp, clow, facecolor=colour, alpha=0.3, - edgecolor='None') - else: - ax.plot(years, cmid, colour, linewidth=1.5, label=label) - - plot_zeroline(ax, xlim) - ax.set_xlim(xlim) - ax.set_ylim(ylim) - ax.yaxis.set_ticks_position('both') - ax.yaxis.set_label_position('left') - - ax.set_xlabel('Year') - ax.set_title(f'{location_string(site_name)} - ' - f'{scenario_string(scenarios[rcp_count], -999)}') - if rcp_count == 0: - ax.set_ylabel('Sea Level Change (m)') - - # Put legend to the right of the current axis - ax.legend(loc='center left', bbox_to_anchor=(1, 0.5)) - - # Save the figure - fig.tight_layout() - outfile = f'{fig_dir}06_{site_name}.png' - plt.savefig(outfile, dpi=300, format='png') - plt.close() - - -def plot_figure_seven(g_df_list, r_df_list, site_name, scenarios, fig_dir): - """ - Subplot 1 - Global sea level projections for RCP8.5 - total and component - parts, including uncertainty range. - Subplot 2 - Local sea level projections for RCP8.5 - total and component - parts, including uncertainty range. - Same style as Figure 4 Howard and Palmer (2019). - :param g_df_list: global sea level projections - :param r_df_list: regional sea level projections - :param site_name: site location - :param scenarios: emission scenario - :param fig_dir: figure directory - """ - # Get the values of the multi-index: years and percentile values - _, percentiles = multi_index_values(r_df_list) - - # UKCP18 colour scheme for sea level components - comp_colours = ukcp18_colours()[1] - # UKCP18 labels for sea level components - comp_labels = ukcp18_labels() - - # Calculate sensible x-axis range and y-axis range - xlim = ([-0.4, 7.4]) - r_ylim = calc_ylim('proj', [], r_df_list) - g_ylim = calc_ylim('proj', [], g_df_list) - ylim = [min(r_ylim[0], g_ylim[0]), max(r_ylim[1], g_ylim[1])] - - # Show components for the RCP8.5 scenario (only plot the uncertainty for - # sum and thermal expansion) - for rcp_count, rcp_str in enumerate(scenarios): - if scenarios[rcp_count] == 'rcp85': - break - else: - raise ValueError('RCP8.5 scenario not in list') - r_df_rcp = r_df_list[rcp_count] - g_df_rcp = g_df_list[rcp_count] - - # ------------------------------------------------------------------------- - # First figure, global sea level projections and uncertainties under - # RCP 8.5 and component parts - fig = plt.figure(figsize=(7.68, 4.5)) - matplotlib.rcParams['font.size'] = 9 - - ax_labels = [] - ax = fig.add_subplot(1, 2, 1) - for cc, comp in enumerate(['sum', 'ocean', 'antnet', 'greennet', 'glacier', - 'landwater']): - # Get the components of regional sea level projections - clow_85_G, cmid_85_G, cupp_85_G = extract_comp_sl(g_df_rcp, - percentiles, comp) - - colour = comp_colours[comp] - label = comp_labels[comp] - ax_labels.append(label) - xpts = [cc - 0.4, cc + 0.4] - - ax.fill_between(xpts, clow_85_G[-1], cupp_85_G[-1], - facecolor=colour, alpha=0.35, label=label) - ax.plot(xpts, [cmid_85_G[-1], cmid_85_G[-1]], linewidth=2.0, - color=colour) - - plot_zeroline(ax, xlim) - ax.set_xticks([0, 1, 2, 3, 4, 5]) - ax.set_xticklabels(ax_labels, rotation=90) - ax.yaxis.set_ticks_position('both') - ax.yaxis.set_label_position('left') - plt.ylim(ylim) - plt.ylabel('Sea Level Change (m)') - plt.title(f'Global sea level - {scenario_string(rcp_str, -999)}') - - # ------------------------------------------------------------------------- - # Second figure, regional sea level projections and uncertainties under - # RCP 8.5 and component parts - bx = fig.add_subplot(1, 2, 2) - bx_labels = [] - for cc, comp in enumerate(['sum', 'ocean', 'antnet', 'greennet', 'glacier', - 'landwater', 'gia']): - # Get the components of local sea level projections - clow_85_R, cmid_85_R, cupp_85_R = extract_comp_sl(r_df_rcp, - percentiles, comp) - - colour = comp_colours[comp] - label = comp_labels[comp] - bx_labels.append(label) - xpts = [cc - 0.4, cc + 0.4] - - bx.fill_between(xpts, clow_85_R[-1], cupp_85_R[-1], facecolor=colour, - alpha=0.35, label=label) - bx.plot(xpts, [cmid_85_R[-1], cmid_85_R[-1]], linewidth=2.0, - color=colour) - - plot_zeroline(bx, xlim) - bx.set_xticks([0, 1, 2, 3, 4, 5, 6]) - bx.set_xticklabels(bx_labels, rotation=90) - bx.yaxis.set_ticks_position('both') - bx.yaxis.set_label_position('left') - plt.ylim(ylim) - plt.title(f'Local sea level - {location_string(site_name)} - ' - f'{scenario_string(scenarios[rcp_count], -999)}') - - # Save the figure - fig.tight_layout() - outfile = f'{fig_dir}07_{site_name}_rcp85.png' - plt.savefig(outfile, dpi=200, format='png') - plt.close() - - -def plot_tg_data(ax, nflag, flag, tg_years, non_missing, tg_amsl, tg_name): - """ - Plot the annual mean sea levels from the tide gauge data. - :param ax: subplot number - :param nflag: number of flagged years - :param flag: flagged data - :param tg_years: tide gauge years - :param non_missing: boolean to indicate NaN values - :param tg_amsl: annual mean sea level data - :param tg_name: tide gauge name - """ - if nflag > 0: - # There are some years with less than min_valid_fraction of flag data; - # plot these annual means as open symbols. - print(f'Tide gauge data has been flagged for attention - ' + - f'{tg_years[(flag & non_missing)]}') - ax.plot(tg_years[(flag & non_missing)], tg_amsl[(flag & non_missing)], - marker='o', mec='black', mfc='None', - markersize=3, linestyle='None', label='TG flagged') - if nflag < len(flag): - ax.plot(tg_years[(~flag & non_missing)], - tg_amsl[(~flag & non_missing)], 'ko', markersize=3, - label=f'{location_string(tg_name)} TG') - - -def read_G_R_sl_projections(site_name, scenarios): - """ - Reads in the global and regional sea level projections calculated from - the CMIP projections (in metres). These data are relative to a baseline - of 1981-2010. - :param site_name: site location - :param scenarios: emission scenarios - :return: DataFrame of global and regional sea level projections - """ - print('running function read_regional_sea_level_projections') - - # Read in the global and regional sea level projections - in_slddir = read_dir()[4] - loc_abbrev = abbreviate_location_name(site_name) - - G_df_list = [] - R_df_list = [] - for sce in scenarios: - G_filename = '{}{}_{}_projection_{}_global.csv'.format( - in_slddir, loc_abbrev, sce, settings["projection_end_year"]) - R_filename = '{}{}_{}_projection_{}_regional.csv'.format( - in_slddir, loc_abbrev, sce, settings["projection_end_year"]) - try: - G_df = pd.read_csv(G_filename, header=0, - index_col=['year', 'percentile']) - G_df.rename(columns={'exp': 'ocean', 'GIA': 'gia'}, inplace=True) - R_df = pd.read_csv(R_filename, header=0, - index_col=['year', 'percentile']) - R_df.rename(columns={'exp': 'ocean', 'GIA': 'gia'}, inplace=True) - except FileNotFoundError: - raise FileNotFoundError( - sce, '- scenario selected does not currently exist') - - G_df_list.append(G_df) - R_df_list.append(R_df) - - return G_df_list, R_df_list - - -def read_IPCC_AR5_Levermann_proj(scenarios, refname='sum'): - """ - Read in the IPCC AR5 + Levermann global sea level projections. - :param scenarios: emission scenario - :param refname: name of the component to plot e.g. "expansion", - "antsmb", "sum" - :return: lower, middle and upper time series of IPCC AR5 + Levermann - global sea level projections - """ - print('running function read_IPCC_AR5_Levermann_proj') - - # Directory of Monte Carlo time series for new projections - mcdir = choose_montecarlo_dir() - - nyrs = np.arange(2007, settings["projection_end_year"] + 1).size - - ar5_low = [] - ar5_mid = [] - ar5_upp = [] - - for sce in scenarios: - reflow = iris.load_cube( - os.path.join(mcdir, sce + '_' + refname + 'lower.nc'))[:nyrs].data - refmid = iris.load_cube( - os.path.join(mcdir, sce + '_' + refname + 'mid.nc'))[:nyrs].data - refupp = iris.load_cube( - os.path.join(mcdir, sce + '_' + refname + 'upper.nc'))[:nyrs].data - - ar5_low.append(reflow) - ar5_mid.append(refmid) - ar5_upp.append(refupp) - - return ar5_low, ar5_mid, ar5_upp - - -def read_PSMSL_tide_gauge_obs(root_dir, data_source, data_type, region, - df_site, site_name, base_fdir): - """ - Read annual mean sea level observations from PSMSL. - :param root_dir: base directory - :param data_source: data source of tide gauge data - :param data_type: data type of tide gauge data - :param region: user specified region (for folder structure) - :param df_site: DataFrame of site metadata - :param site_name: site locaiton - :param base_fdir: figure directory - :return: annual mean sea level data and relevant metadata on missing / - flagged data - """ - # Determine Station ID - indicator for .rlr file - station_id = df_site.loc[site_name, 'Station ID'] - - if station_id == 'NA': - print(f'{site_name} is not a recognised tide gauge on PSMSLs ' + - 'station list') - latitude = df_site.loc[site_name, 'Latitude'] - longitude = df_site.loc[site_name, 'Longitude'] - station_id, tg_name = find_nearest_station_id( - root_dir, data_source, data_type, region, latitude, longitude) - else: - tg_name = location_string(site_name) - - baseline_years = [1981, 2010] - min_valid_fraction = 0.5 - - # Read in the annual mean sea levels, downloaded from PSMSL - tg_years, tg_amsl, _, tg_flag_ex = \ - tgl.read_rlr_annual_mean_sea_level(station_id) - non_missing = ~np.isnan(tg_amsl) - - # Find the years with 'flagged' data, flagged for attention '001' or MTL - # in MSL time series '010' - flag = (tg_flag_ex >= min_valid_fraction) - - nflag = sum(flag) - - # Calculate the baseline sea level and difference between the observed - # period and the baseline. - # Latter will be zero if sufficent observations lie within the baseline - loc_abbrev = abbreviate_location_name(site_name) - baseline_sl, _ = tgl.calc_baseline_sl(root_dir, region, loc_abbrev, - tg_years, tg_amsl, baseline_years) - - # Adjust the tide gauge data to be sea levels relative to the baseline, - # to match the regional projections - tg_amsl = tg_amsl - baseline_sl - - # Convert the tide gauge sea levels from mm to metres. - tg_amsl /= 1000.0 - - return tg_name, nflag, flag, tg_years, non_missing, tg_amsl - - -def main(): - """ - Read in the global and regional sea level projections to create several - graphs. - """ - print(f'User specified site name(s) is (are):' - f' {settings["siteinfo"]["sitename"]}') - print(f'User specified lat(s) and lon(s) is (are): ' - f'{settings["siteinfo"]["sitelatlon"]}') - if settings["siteinfo"]["sitelatlon"] == [[]]: - print(f' No lat lon specified - use tide gauge metadata if ' - f'available') - print(f'User specified science method is: {settings["sciencemethod"]}') - if {settings["cmipinfo"]["cmip_sea"]} == {'all'}: - print('User specified all CMIP models') - elif {settings["cmipinfo"]["cmip_sea"]} == {'marginal'}: - print('User specified CMIP models for marginal seas only') - - # Extract site data from station list (e.g. tide gauge location) or - # construct based on user input - df_site_data = extract_site_info(settings["tidegaugeinfo"]["source"], - settings["tidegaugeinfo"]["datafq"], - settings["siteinfo"]["region"], - settings["siteinfo"]["sitename"], - settings["siteinfo"]["sitelatlon"]) - - # Create the output sea level projections figure directory to use across - # multiple functions - sealev_fdir = read_dir()[5] - makefolder(sealev_fdir) - - rcp_scenarios = ['rcp26', 'rcp45', 'rcp85'] - for df_loc in df_site_data.index.values: - # Read global and regional sea level projections calculated previously - g_df_list, r_df_list = read_G_R_sl_projections(df_loc, rcp_scenarios) - - # Read in the IPCC AR5 + Levermann global sea level projections - ar5_low, ar5_mid, ar5_upp = read_IPCC_AR5_Levermann_proj(rcp_scenarios) - - # Read annual mean sea level observations from PSMSL - tg_name, nflag, flag, tg_years, non_missing, tg_amsl = \ - read_PSMSL_tide_gauge_obs(settings["baseoutdir"], settings[ - "tidegaugeinfo"]["source"], settings["tidegaugeinfo"][ - "datafq"], settings["siteinfo"]["region"], df_site_data, - df_loc, sealev_fdir) - # ------------------------------------------------------------------------- - # Plotting section - comment functions in and out depending on which graphs - # you wish to save - # Figure 1 - # Subplot 1 - Local sea level projections for all RCPs - sum total - # Subplot 2 - Local sea level projections for RCP8.5 - total and - # component parts - plot_figure_one(r_df_list, df_loc, rcp_scenarios, sealev_fdir) - - # Figure 2 - # Local sea level projections for specified RCPs - sum total, - # and annual mean tide gauge observations - plot_figure_two(r_df_list, tg_name, nflag, flag, tg_years, - non_missing, tg_amsl, df_loc, rcp_scenarios, - sealev_fdir) - - # Figure 3 (one output per RCP) - # Subplot 1 - Comparison of IPCC AR5 + Levermann global projections - # and global projections developed here - # Subplot 2 - Comparison of global projections and local sea level - # projections - plot_figure_three(g_df_list, r_df_list, ar5_low, ar5_mid, ar5_upp, - df_loc, rcp_scenarios, sealev_fdir) - - # Figure 4 - # Local sea level projections for all RCPs - sum total - # Same style as Figure 3.1.4 of UKCP18 Marine Report (pg 16) - plot_figure_four(r_df_list, df_loc, rcp_scenarios, sealev_fdir) - - # Figure 5 - # Comparison of global mean sea level projections calculated by the - # tool and local sea level projections - sum total - # Also shown local sea level projections - component parts - # Subplot 1, 2, 3 - RCP2.6, RCP4.5, RCP8.5 respectively - plot_figure_five(g_df_list, r_df_list, df_loc, rcp_scenarios, - sealev_fdir) - - # Figure 6 - # Comparison of IPCC AR5 + Levermann projections and local sea level - # projections - sum total - # Also shown local sea level projections - component parts - # Subplot 1, 2, 3 - RCP2.6, RCP4.5, RCP8.5 respectively - if settings["projection_end_year"] <= 2100: - plot_figure_six(r_df_list, ar5_low, ar5_mid, ar5_upp, df_loc, - rcp_scenarios, sealev_fdir) - - # Figure 7 - # Subplot 1 - Global sea level projections for RCP8.5 - total and - # component parts, including uncertainty range - # Subplot 2 - Local sea level projections for RCP8.5 - total and - # component parts, including uncertainty range - # Same style as Figure 4 Howard and Palmer (2019) - plot_figure_seven(g_df_list, r_df_list, df_loc, rcp_scenarios, - sealev_fdir) - - -if __name__ == '__main__': - main() diff --git a/profsea/surge/tide_gauge_library.py b/profsea/surge/tide_gauge_library.py deleted file mode 100644 index a358217..0000000 --- a/profsea/surge/tide_gauge_library.py +++ /dev/null @@ -1,175 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -import os -import pandas as pd -import numpy as np -from scipy.stats import linregress - -from profsea.config import settings - - -def calc_baseline_sl(root_dir, data_region, loc_abbrev, years, annual_means, - baseline_years, min_overlapping_years=14): - """ - Calculates or estimates the baseline sea levels, using observed or - modelled values. If there are sufficient observed values, use those to - estimate the baseline sea level, otherwise read in and extrapolate back - from the RCP 2.6 projections, which are nearly linear. - :param root_dir: base directory for all input and output data - :param data_region: region (used for file paths) - :param loc_abbrev: abbreviated name of tide gauge - :param years: Numpy array of available years for requested tide gauge - :param annual_means: annual mean sea level (mm) - :param baseline_years: first and last year of the baseline period, - should be 1981-2000 - :param min_overlapping_years: minimum number of years of the observed - sea levels that must lie inside the baseline period - :return: the baseline sea level and the difference between the observed - period and the baseline - """ - print('running function calc_baseline_sl') - # Check which years from this gauge lie within the baseline period. - common_years = find_common_years(years, baseline_years) - nvalid = 0 - - if len(common_years) >= min_overlapping_years: - obs_amsl = annual_means[(years >= common_years[0]) & - (years <= common_years[-1])] - # Check for number of valid data values - nvalid = sum(~np.isnan(obs_amsl)) - - if nvalid >= min_overlapping_years: - # Calculate the mean sea level for the baseline using these - # observations. - baseline_sea_level = np.nanmean(obs_amsl) - delta_sl = 0.0 - else: - # (a) Get obs years - # (b) read in the RCP2.6 sea level projections - percentile = 50.0 - df_m_rcp26 = read_regional_sea_level_projections( - root_dir, data_region, loc_abbrev, 'rcp26', pcile=50.0) - sl_rcp26 = df_m_rcp26['sum'].values - years_rcp26 = df_m_rcp26['year'].values - - # (c) Fit a straight line to the mid-point estimates - m, c, _, _, _ = linregress(years_rcp26, sl_rcp26) - - # Extrapolate fitted straight line to get values for the baseline - # years and hence the mean value for the baseline. - model_sl_in_baseline = [m * base_year + c for base_year in - list(range(baseline_years[0], - baseline_years[1] + 1))] - model_mean_baseline_sl = np.mean(np.array(model_sl_in_baseline)) - - # Extrapolate fitted straight line to get modelled values for the - # years of the observations, then the mean value for this period - model_sl_in_obs_years = [m * obs_year + c for obs_year in years] - model_mean_obs_sl = np.mean(np.array(model_sl_in_obs_years)) - - # Calculate the change in sea level between the baseline and - # observed periods using the modelled data - delta_sl = model_mean_baseline_sl - model_mean_obs_sl - - # (d) Add modelled SL change from (c) to mean sea level from - # tide gauge data - obs_mean_sl = np.nanmean(annual_means) - baseline_sea_level = obs_mean_sl + delta_sl - - return baseline_sea_level, delta_sl - - -def find_common_years(years, baseline_years): - """ - Finds the years that lie within the specified baseline period - :param years: List of years in the observed data - :param baseline_years: 2-element list holding the first and last years - of the period of interest - :return: list of all common years within the baseline period - """ - common_years = sorted(list(set(list(range(baseline_years[0], - baseline_years[1] + 1))) - & set(years))) - if not common_years: - print(f'No common years found between tide gauge data and ' + - 'baseline years') - else: - print(f'The common years in the tide gauge data are ' + - f'between {common_years[0]} and {common_years[-1]}') - - return common_years - - -def read_regional_sea_level_projections(root_dir, data_region, loc_abbrev, - scenario, pcile=None): - """ - Reads in the regional sea level projections calculated from the CMIP - projections in a previous step. These data are changes in sea level - relative to a baseline of 1981-2010. - :param root_dir: root directory containing all code and input data - :param data_region: region (used for file paths) - :param loc_abbrev: abbreviated name of tide gauge - :param scenario: RCP scenario - :param pcile: If not None, return data for this percentile; otherwise, - return data for all percentiles - :return df: DataFrame containing regional sea level projections, - as annual means. - """ - path = os.path.join(root_dir, data_region, 'data', 'sea_level_projections') - end_yr = settings['projection_end_year'] - filename = os.path.join( - path, f'{loc_abbrev}_{scenario}_projection_{end_yr}_regional.csv') - df = pd.read_csv(filename, header=0, usecols=['year', 'percentile', 'sum']) - - if pcile is not None: - df = df.loc[df['percentile'] == pcile] - df.reset_index(inplace=True, drop=True) - - # Convert the projections from metres to mm. - df['sum'] = df['sum'] * 1000.0 - - return df - - -def read_rlr_annual_mean_sea_level(station_id): - """ - Reads in annual mean sea levels from a .rlrdata file - downloaded - from PSMSL (https://www.psmsl.org/data/obtaining/complete.php and - https://www.psmsl.org/data/obtaining/notes.php). Replaces all -99999 with - NAN values - for use in plotting - :param station_id: PSMSL Station ID for location - :return years: numpy array of available years for requested station - :return annual_means: corresponding annual mean sea level (mm) - :return flag_missing: corresponding flag for missing data - :return flag_exception: corresponding 'flag for attention' - """ - print('running function read_rlr_annual_mean_sea_level') - psmsl_basedir = settings["tidegaugeinfo"]["psmsldir"] - path = os.path.join(psmsl_basedir, 'rlr_annual', 'data') - - filename = os.path.join(path, f'{station_id}.rlrdata') - print(f'Reading in data for {filename}') - rlr_data = np.genfromtxt(filename, dtype=None, skip_header=0, names=[ - 'Year', 'RLR_data', 'Flag_missing', 'Flag_exception'], - delimiter=";", encoding=None) - years = [] - annual_means = [] - flag_missing = [] - flag_exception = [] - for row in rlr_data: - year = row[0] - rlr = row[1] - missing = row[2] - exception = row[3] - years = np.append(years, int(year)) - if float(rlr) != -99999: - annual_means = np.append(annual_means, float(rlr)) - else: - annual_means = np.append(annual_means, np.nan) - - flag_missing = np.append(flag_missing, str(missing)) - flag_exception = np.append(flag_exception, float(exception)) - - return years, annual_means, flag_missing, flag_exception diff --git a/profsea/tide_gauge_locations.py b/profsea/tide_gauge_locations.py deleted file mode 100644 index ced9dd4..0000000 --- a/profsea/tide_gauge_locations.py +++ /dev/null @@ -1,271 +0,0 @@ -""" -Copyright (c) 2023, Met Office -All rights reserved. -""" - -from math import cos, asin, sqrt -import pandas as pd -import os - -from profsea.config import settings - - -def closest(data, v): - """ - :param data: all tide gauges latitude and longitude - :param v: site latitude and longitude - :return: DataFrame row of the closest TG to site lat and lon - """ - return min(data, key=lambda p: distance(v['lat'], v['lon'], - p['lat'], p['lon'])) - - -def distance(lat1, lon1, lat2, lon2): - """ - The haversine formula determines the great-circle distance between two - points on a sphere given their longitudes and latitudes. - Ref: https://en.wikipedia.org/wiki/Haversine_formula - - :param lat1: site latitude - :param lon1: site longitude - :param lat2: TG latitude - :param lon2: TG longitude - :return: distance between points on a sphere - """ - p = 0.017453292519943295 - a = 0.5 - cos((lat2 - lat1) * p) / 2 + cos(lat1 * p) * cos(lat2 * p) * \ - (1 - cos((lon2 - lon1) * p)) / 2 - return 12742 * asin(sqrt(a)) - - -def extract_site_info(data_source, data_type, region, site_name, latlon): - """ - Extract all available tide gauges from station list - Check if site_name is in this list, if so return metadata - If not construct a dataframe in the same format that contains user defined - metadata. - :param data_source: source of tide gauge information - :param data_type: temporal scale of tide gauge data - :param region: region of the world to assess sea level rise - :param site_name: site specific location - :param latlon: site location's latitude and longitude ([] if using tide - gauge) - :return: Data frame of all metadata (tide gauge or site specific) for each - location requested - """ - print('running function extract_site_info') - - # Get a list of all available tide gauges from data_source - df = tide_gauge_locations(region=region, source=data_source, - type=data_type) - - # Create an empty pandas DataFrame to hold site information - dfObj = pd.DataFrame() - for i, location in enumerate(site_name): - # Re-format user defined site name - if data_source == 'PSMSL': - if location == 'Aberdeen': - print(f'CAUTION - There are two gauges available for ' + - 'Aberdeen, using ABERDEEN I (1931-2019)') - site_to_check = 'ABERDEEN I' - else: - site_to_check = location.upper() - else: - raise ValueError("data source not recognised") - - # -------------------------------------------------------------------- - - if site_to_check in df.index: - print(f'{site_to_check} - Site metadata taken from {data_source}') - site_data = df.loc[site_to_check, :] - - if data_source == 'PSMSL': - if 'NEWPORT' in site_to_check: - print(f'CAUTION - There are two Newport gauges listed in' + - 'the file list from PSMSL') - user_input = input('Location of Newport required, UK or ' + - 'US?') - if user_input == 'UK': - print('Newport in the UK selected') - site_data = site_data[~site_data.index.duplicated( - keep='last')].transpose() - else: - print('Newport in the US selected') - site_data = site_data[~site_data.index.duplicated( - keep='first')].transpose() - - df_temp = pd.DataFrame(site_data).transpose() - dfObj = dfObj.append(df_temp) - - elif latlon != [[]]: - print(f'{site_to_check} - Site metadata taken from user input') - data_type = 'user defined' - station_id = 'NA' - latitude = latlon[i][0] - longitude = latlon[i][1] - site_data = [[site_to_check, data_type, station_id, latitude, - longitude]] - - df_temp = pd.DataFrame(site_data, columns=[ - 'Location', 'Dataset type', 'Station ID', 'Latitude', - 'Longitude']) - df_temp = df_temp.set_index('Location') - dfObj = dfObj.append(df_temp) - - else: - raise IndexError(f'No site metadata for this site: {site_to_check}, have you spelled it correctly?') - - return dfObj - - -def find_nearest_station_id(root_dir, data_source, data_type, data_region, - site_lat, site_lon): - """ - Extracts all available tide gauges from data sources, then calculates - the closest tide gauge to the site based on latitude and longitude using - the Haversine formula - ** N.B. Testing only completed on PSMSL station list ** - - :param root_dir: base directory for all input and output data - :param data_source: source of tide gauge information - :param data_type: temporal scale of tide gauge data - :param data_region: region of the world to assess sea level rise - :param site_lat: site latitude - :param site_lon: site longitude - :return: Nearest tide gauge name and station ID - """ - # Get a list of all available tide gauges from data_source, extract - # latitude and longitude - df = tide_gauge_locations(region=data_region, source=data_source, - type=data_type, in_dir=root_dir) - latitude = df.loc[:, 'Latitude'].tolist() - longitude = df.loc[:, 'Longitude'].tolist() - - # Re-format latitude and longitude - temp_data_list = [] - for i in range(len(latitude)): - temp_data_list.append({'lat': latitude[i], 'lon': longitude[i]}) - - # Find the closest latitude and longitude in list to site location - site_location = {'lat': site_lat, 'lon': site_lon} - closest_latlon = closest(temp_data_list, site_location) - - # Extract a dataframe based on the closest latitude and longitude - df_nearest_tg = df.loc[(df['Latitude'] == closest_latlon['lat']) & ( - df['Longitude'] == closest_latlon['lon'])] - tg_station_name = df_nearest_tg.index.values.astype(str)[0] - tg_station_id = df_nearest_tg.loc[tg_station_name, 'Station ID'] - - return tg_station_id, tg_station_name - - -def get_psmsl_gauges(data_type): - """ - Search for available tide gauges from PSMSL, extract metadata using - function read_psmsl_list_of_gauges, re-order into correct format for - future code. - :param data_type: temporal scale of tide gauge data - :return: Re-formatted dataframe of available tide gauges from PSMSL - """ - print('running function get_psmsl_gauges') - - columns_needed = ['Location', 'ID', 'Lat', 'Lon'] - ids = [] - tide_gauges = [] - - for d in data_type: - # Read in the PSMSL station list of all gauges worldwide - psmsl_gauges = read_psmsl_list_of_gauges(d) - - psmsl_basedir = settings["tidegaugeinfo"]["psmsldir"] - - for row in psmsl_gauges.index.values: - idn = int(psmsl_gauges.at[row, 'ID']) - if any(j == idn for j in ids): - continue - ids.append(idn) - tide_gauge_file = f'{idn}.rlrdata' - tide_gauge_file_full = os.path.join( - f'{psmsl_basedir}rlr_{d}', 'data', f'{tide_gauge_file}') - - if os.path.isfile(tide_gauge_file_full): - l = psmsl_gauges.loc[row, columns_needed].tolist() - l.insert(1, f'PSMSL - {data_type[0]}') - tide_gauges.append(l) - - return tide_gauges - - -def read_psmsl_list_of_gauges(data_type): - """ - Read in a list of all gauges available from PSMSL. - :param data_type: temporal scale of tide gauge data, for PSMSL can be - annual, monthly or hourly - :return: Pandas data frame of all available tide gauges from PSMSL - """ - print('running function read_psmsl_list_of_gauges') - - psmsl_basedir = settings["tidegaugeinfo"]["psmsldir"] - - if data_type == 'annual': - station_list_file = 'filelist.txt' - filename = f'{psmsl_basedir}rlr_annual/{station_list_file}' - df = pd.read_csv(filename, sep="; ", header=None, names=[ - 'ID', 'Lat', 'Lon', 'Location', 'num', 'num2', 'flag'], - engine='python') - df.drop(columns=['num', 'num2', 'flag'], inplace=True) - df['Location'] = df['Location'].str.strip() - df = df[['Location', 'ID', 'Lat', 'Lon']] - elif data_type == 'monthly' or 'hourly': - raise ValueError("Monthly or Hourly tide gauge data not available " + - "for PSMSL gauges") - - return df - - -def tide_gauge_locations(**args): - """ - Wrapper to read in a list of all available tide gauges found on PSMSL. - :param args: Argument list - region --> region of the world to assess sea level rise - source --> source of tide gauge information - type --> temporal scale of tide gauge data - :return: Data frame of all available tide gauges from relevant source, - indexed by Location - """ - print('running function tide_gauge_location') - - # Name of columns in dataframe. - columns = ['Location', 'Dataset type', 'Station ID', 'Latitude', - 'Longitude'] - - # Update parameters passed to this function - data_region = None - data_source = None - data_type = None - - if 'region' in args: - data_region = args['region'] - if 'source' in args: - data_source = args['source'] - if 'type' in args: - data_type = args['type'] - - if data_region is None or data_source is None: - raise ValueError("tide_gauge_locations: must specify names of " + - "region and source") - - if data_source == 'PSMSL': - if 'type' not in args: - raise ValueError( - "tide_gauge_locations: must specify data_type when " + - "specifying PSMSL as source (hourly or monthly)") - - if data_source == 'PSMSL': - tide_gauges = get_psmsl_gauges(data_type) - else: - raise ValueError(f'Source {data_source} not known') - - df = pd.DataFrame(tide_gauges, columns=columns) - - return df.set_index('Location') diff --git a/profsea/tutorial_notebooks/worked_example.ipynb b/profsea/tutorial_notebooks/worked_example.ipynb new file mode 100644 index 0000000..f233611 --- /dev/null +++ b/profsea/tutorial_notebooks/worked_example.ipynb @@ -0,0 +1,775 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "ef69532c", + "metadata": {}, + "source": [ + "#### Setting up the environment\n", + "The first step is to set up the conda environment. You should use the `profsea-env.yml` environment file, building it with \n", + "\n", + "```bash\n", + "conda env create -f profsea-env.yml\n", + "```\n", + "\n", + "and then activating with `conda activate profsea`.\n", + "\n", + "---\n", + "\n", + "One final step here is to install ProFSea as an editable package, using\n", + "\n", + "```bash \n", + "pip install -e . \n", + "```\n", + "\n", + "while inside the highest level directory." + ] + }, + { + "cell_type": "markdown", + "id": "36f6320e", + "metadata": {}, + "source": [ + "#### Importing components\n", + "\n", + "The next step is to import all the model components you want to run simulations with - a full list is available in the documention [here](https://metoffice.github.io/ProFSea-tool/). This can be any combination of available `global` and `spatial` components, how you build your model is up to you!\n", + "\n", + "To generate a comprehensive set of sea-level projections, we'll run with all the components that contribute to sea-level change: \n", + "- thermal expansion\n", + "- glaciers\n", + "- greenland ice-sheet\n", + "- antarctic ice-sheet\n", + "- landwater \n", + "\n", + "In the example below, we'll run with the configuration being used for SLEIP and Munday et al. (2026), *in prep*." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "868f2127", + "metadata": {}, + "outputs": [], + "source": [ + "from profsea.components.core.global_model import Global\n", + "from profsea.components.global_ import (\n", + " AntarcticaISMIP6,\n", + " Glacier,\n", + " GreenlandAR6,\n", + " LandwaterAR6,\n", + " ThermalExpansion,\n", + ")" + ] + }, + { + "cell_type": "markdown", + "id": "eced6e8d", + "metadata": {}, + "source": [ + "`ProFSea` can run with a single or an ensemble of temperature and ocean heat content forcing trajectories. The trajectories need to be anomalies, relative to some baseline period - `ProFSea` assumes by default this is `1996-2014`\n", + "\n", + "Here we'll just run with an idealised temperature ramp up and stabilisation, and corresponding ocean heat content change, running from `2006` to `2300`:" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "7c4b26cd", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import matplotlib.pyplot as plt\n", + "import numpy as np\n", + "\n", + "t_change = np.concatenate([np.linspace(0.01, 8, 150), np.linspace(8, 8, 145)])\n", + "t_change = t_change[None, :] * np.random.normal(\n", + " loc=1.0, scale=0.1, size=(100, 1)\n", + ") # add some variability across members\n", + "ohc_change = t_change * 1e24 # in Joules\n", + "years = np.arange(2006, 2301)\n", + "years = np.broadcast_to(years, t_change.shape)\n", + "\n", + "plt.figure(figsize=(4, 2))\n", + "plt.plot(years, t_change, color=\"royalblue\", alpha=0.1)\n", + "plt.plot(\n", + " years.mean(axis=0), t_change.mean(axis=0), color=\"royalblue\", label=\"GMST change\"\n", + ")\n", + "plt.xlabel(\"Year\")\n", + "plt.ylabel(\"GMST change (°C)\")\n", + "plt.show()\n", + "plt.close()" + ] + }, + { + "cell_type": "markdown", + "id": "c0375155", + "metadata": {}, + "source": [ + "#### Building the model\n", + "\n", + "To build your model, simply add your components to a dictionary, with whatever names you like, and pass it to the `Global()` class" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "a1c9b208", + "metadata": {}, + "outputs": [], + "source": [ + "global_components = {\n", + " \"landwater\": LandwaterAR6(),\n", + " \"greenland\": GreenlandAR6(),\n", + " \"expansion\": ThermalExpansion(\n", + " ohc_change\n", + " ), # only the thermal expansion needs OHC change, so we'll pass it in here\n", + " \"wais\": AntarcticaISMIP6(region=\"wais\"),\n", + " \"eais\": AntarcticaISMIP6(region=\"eais\"),\n", + " \"peninsula\": AntarcticaISMIP6(region=\"peninsula\"),\n", + " \"glacier\": Glacier(),\n", + "}\n", + "global_model = Global(components=global_components, end_yr=2301, num_members=1000)" + ] + }, + { + "cell_type": "markdown", + "id": "7f9cf711", + "metadata": {}, + "source": [ + "now we're ready to run our simulation..." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "84894d79", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
╭──────────────────────── ProFSea Global Run Configuration ─────────────────────────╮\n",
+       "        Scenario  stabilisation                                                    \n",
+       "      Components  landwater, greenland, expansion, wais, eais, peninsula, glacier  \n",
+       "       Timeframe  2006 -> 2301                                                     \n",
+       "   Ensemble Size  100 inputs × 1000 draws (= 100000)                               \n",
+       "          Output  Full Distribution (100000 members)                               \n",
+       "  Compute Engine  Parallel Threading                                               \n",
+       "╰───────────────────────────────────────────────────────────────────────────────────╯\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[32m╭─\u001b[0m\u001b[32m───────────────────────\u001b[0m\u001b[32m \u001b[0m\u001b[1;32mProFSea Global Run Configuration\u001b[0m\u001b[32m \u001b[0m\u001b[32m────────────────────────\u001b[0m\u001b[32m─╮\u001b[0m\n", + "\u001b[32m│\u001b[0m \u001b[36m \u001b[0m\u001b[36m Scenario\u001b[0m\u001b[36m \u001b[0m\u001b[35m \u001b[0m\u001b[35mstabilisation \u001b[0m\u001b[35m \u001b[0m \u001b[32m│\u001b[0m\n", + "\u001b[32m│\u001b[0m \u001b[36m \u001b[0m\u001b[36m Components\u001b[0m\u001b[36m \u001b[0m\u001b[35m \u001b[0m\u001b[35mlandwater, greenland, expansion, wais, eais, peninsula, glacier\u001b[0m\u001b[35m \u001b[0m \u001b[32m│\u001b[0m\n", + "\u001b[32m│\u001b[0m \u001b[36m \u001b[0m\u001b[36m Timeframe\u001b[0m\u001b[36m \u001b[0m\u001b[35m \u001b[0m\u001b[35m2006 -> 2301 \u001b[0m\u001b[35m \u001b[0m \u001b[32m│\u001b[0m\n", + "\u001b[32m│\u001b[0m \u001b[36m \u001b[0m\u001b[36m Ensemble Size\u001b[0m\u001b[36m \u001b[0m\u001b[35m \u001b[0m\u001b[35m100 inputs × 1000 draws (= 100000) \u001b[0m\u001b[35m \u001b[0m \u001b[32m│\u001b[0m\n", + "\u001b[32m│\u001b[0m \u001b[36m \u001b[0m\u001b[36m Output\u001b[0m\u001b[36m \u001b[0m\u001b[35m \u001b[0m\u001b[35mFull Distribution (100000 members) \u001b[0m\u001b[35m \u001b[0m \u001b[32m│\u001b[0m\n", + "\u001b[32m│\u001b[0m \u001b[36m \u001b[0m\u001b[36mCompute Engine\u001b[0m\u001b[36m \u001b[0m\u001b[35m \u001b[0m\u001b[35mParallel Threading \u001b[0m\u001b[35m \u001b[0m \u001b[32m│\u001b[0m\n", + "\u001b[32m╰───────────────────────────────────────────────────────────────────────────────────╯\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n",
+       "
\n" + ], + "text/plain": [ + "\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "projections = global_model.run(\n", + " T_change=t_change, scenario=\"stabilisation\", member_seed=42\n", + ")\n", + "global_model.sum_components(projections)\n", + "gmslr = global_model.results[\"total_gmslr\"]" + ] + }, + { + "cell_type": "markdown", + "id": "578b6a8c", + "metadata": {}, + "source": [ + "visualise the global simulations!" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "5b63dfb5", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=(4, 3))\n", + "lower = np.percentile(gmslr, 5, axis=0)\n", + "upper = np.percentile(gmslr, 95, axis=0)\n", + "plt.fill_between(\n", + " years[0], lower, upper, color=\"lightcoral\", alpha=0.5, label=\"90% range\"\n", + ")\n", + "plt.plot(years[0], gmslr.mean(axis=0), color=\"darkred\")\n", + "plt.xlabel(\"Year\")\n", + "plt.ylabel(\"GMSLR (m)\")\n", + "plt.show()\n", + "plt.close()" + ] + }, + { + "cell_type": "markdown", + "id": "af51e3f9", + "metadata": {}, + "source": [ + "#### Building the `Spatial` model\n", + "\n", + "Start with the imports:" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "47694def", + "metadata": {}, + "outputs": [], + "source": [ + "from profsea.components.core import Spatial\n", + "from profsea.components.spatial import (\n", + " GIA,\n", + " Fingerprint,\n", + " SterodynamicCMIP6,\n", + ")" + ] + }, + { + "cell_type": "markdown", + "id": "0a19cc97", + "metadata": {}, + "source": [ + "Now we'll build the model in the same way as the global model, but we'll pass the individual components' global projections to each spatial module. " + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "09f1fff4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
[13:17:18] INFO     ✓ ProFSea assets found locally!                                                                \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2;36m[13:17:18]\u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m \u001b[1;32m✓ ProFSea assets found locally!\u001b[0m \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
           INFO     Baseline period = 1995 to 2014                                                                 \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m Baseline period = \u001b[1;36m1995\u001b[0m to \u001b[1;36m2014\u001b[0m \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
╭─────────────────────── ProFSea Spatial Run Configuration ────────────────────────╮\n",
+       "        Components  sterodynamic, greenland, landwater, wais, eais, glacier, gia  \n",
+       "         Timeframe  2006 -> 2301                                                  \n",
+       "          Baseline  1995 - 2014                                                   \n",
+       "   Grid Resolution  180 × 360 cells                                               \n",
+       "            Output  Percentiles: [5, 17, 50, 83, 95]                              \n",
+       "  Est. Output Size  ~0.76 GB                                                      \n",
+       "╰──────────────────────────────────────────────────────────────────────────────────╯\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[34m╭─\u001b[0m\u001b[34m──────────────────────\u001b[0m\u001b[34m \u001b[0m\u001b[1;34mProFSea Spatial Run Configuration\u001b[0m\u001b[34m \u001b[0m\u001b[34m───────────────────────\u001b[0m\u001b[34m─╮\u001b[0m\n", + "\u001b[34m│\u001b[0m \u001b[36m \u001b[0m\u001b[36m Components\u001b[0m\u001b[36m \u001b[0m\u001b[35m \u001b[0m\u001b[35msterodynamic, greenland, landwater, wais, eais, glacier, gia\u001b[0m\u001b[35m \u001b[0m \u001b[34m│\u001b[0m\n", + "\u001b[34m│\u001b[0m \u001b[36m \u001b[0m\u001b[36m Timeframe\u001b[0m\u001b[36m \u001b[0m\u001b[35m \u001b[0m\u001b[35m2006 -> 2301 \u001b[0m\u001b[35m \u001b[0m \u001b[34m│\u001b[0m\n", + "\u001b[34m│\u001b[0m \u001b[36m \u001b[0m\u001b[36m Baseline\u001b[0m\u001b[36m \u001b[0m\u001b[35m \u001b[0m\u001b[35m1995 - 2014 \u001b[0m\u001b[35m \u001b[0m \u001b[34m│\u001b[0m\n", + "\u001b[34m│\u001b[0m \u001b[36m \u001b[0m\u001b[36m Grid Resolution\u001b[0m\u001b[36m \u001b[0m\u001b[35m \u001b[0m\u001b[35m180 × 360 cells \u001b[0m\u001b[35m \u001b[0m \u001b[34m│\u001b[0m\n", + "\u001b[34m│\u001b[0m \u001b[36m \u001b[0m\u001b[36m Output\u001b[0m\u001b[36m \u001b[0m\u001b[35m \u001b[0m\u001b[35mPercentiles: [5, 17, 50, 83, 95] \u001b[0m\u001b[35m \u001b[0m \u001b[34m│\u001b[0m\n", + "\u001b[34m│\u001b[0m \u001b[36m \u001b[0m\u001b[36mEst. Output Size\u001b[0m\u001b[36m \u001b[0m\u001b[35m \u001b[0m\u001b[35m~0.76 GB\u001b[0m\u001b[35m \u001b[0m\u001b[35m \u001b[0m \u001b[34m│\u001b[0m\n", + "\u001b[34m╰──────────────────────────────────────────────────────────────────────────────────╯\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n",
+       "
\n" + ], + "text/plain": [ + "\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
           INFO     Simulating 7 sea-level components: sterodynamic, greenland, landwater, wais, eais, glacier, gia\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m Simulating \u001b[1;36m7\u001b[0m sea-level components: sterodynamic, greenland, landwater, wais, eais, glacier, gia\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n",
+       "
\n" + ], + "text/plain": [ + "\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n"
+      ],
+      "text/plain": []
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    },
+    {
+     "data": {
+      "text/html": [
+       "
\n",
+       "
\n" + ], + "text/plain": [ + "\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "spatial_components = {\n", + " \"sterodynamic\": SterodynamicCMIP6(\n", + " projections[\"expansion\"], # passing in the global thermal expansion projection\n", + " ),\n", + " \"greenland\": Fingerprint(\n", + " projections[\"greenland\"], fingerprint_component=\"greenland\"\n", + " ),\n", + " \"landwater\": Fingerprint(\n", + " projections[\"landwater\"],\n", + " fingerprint_component=\"landwater\",\n", + " ),\n", + " \"wais\": Fingerprint(\n", + " projections[\"wais\"],\n", + " fingerprint_component=\"wais\",\n", + " ),\n", + " \"eais\": Fingerprint(\n", + " projections[\"eais\"],\n", + " fingerprint_component=\"eais\",\n", + " ),\n", + " \"glacier\": Fingerprint(\n", + " projections[\"glacier\"],\n", + " fingerprint_component=\"glacier\",\n", + " ),\n", + " \"gia\": GIA(\n", + " sample_spatial=False,\n", + " ),\n", + "}\n", + "\n", + "# Pass to the spatial model\n", + "spatial_model = Spatial(components=spatial_components)\n", + "spatial_model.run(member_seed=42)\n", + "\n", + "total_rsl = spatial_model.sum_components(spatial_model.results)" + ] + }, + { + "cell_type": "markdown", + "id": "79d407cb", + "metadata": {}, + "source": [ + "Saving the spatial projections is easy + quick using Zarr format: " + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "60d81a5b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n"
+      ],
+      "text/plain": []
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    },
+    {
+     "data": {
+      "text/html": [
+       "
[13:17:33] INFO     ✓ Successfully saved Zarr: ./stabilisation_projection.zarr                                     \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2;36m[13:17:33]\u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m \u001b[1;32m✓ Successfully saved Zarr:\u001b[0m .\u001b[35m/\u001b[0m\u001b[95mstabilisation_projection.zarr\u001b[0m \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
           INFO     Output shape for 'sterodynamic' was (5, 295, 180, 360) (percentile, time, lat, lon)            \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m Output shape for \u001b[32m'sterodynamic'\u001b[0m was \u001b[1m(\u001b[0m\u001b[1;36m5\u001b[0m, \u001b[1;36m295\u001b[0m, \u001b[1;36m180\u001b[0m, \u001b[1;36m360\u001b[0m\u001b[1m)\u001b[0m \u001b[1m(\u001b[0mpercentile, time, lat, lon\u001b[1m)\u001b[0m \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "spatial_model.save_components(\n", + " spatial_model.results, scenario_name=\"stabilisation\", output_format=\"zarr\"\n", + ")" + ] + }, + { + "cell_type": "markdown", + "id": "d8e3a1e6", + "metadata": {}, + "source": [ + "Plot the output! This takes about 90 seconds, since our data goes from lazy → in memory" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "e62d28d9", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import cartopy.crs as ccrs\n", + "\n", + "fig = plt.figure(figsize=(6, 4), layout=\"constrained\")\n", + "\n", + "total_rsl_med = total_rsl[2, -1, :, :]\n", + "vmax = np.nanmax(np.abs(total_rsl))\n", + "vmin = -vmax\n", + "\n", + "ax = fig.add_subplot(111, projection=ccrs.PlateCarree())\n", + "ax.set_title(\"50th Percentile, Year 2300\")\n", + "ax.pcolormesh(\n", + " spatial_model.grid_lons,\n", + " spatial_model.grid_lats,\n", + " total_rsl_med,\n", + " transform=ccrs.PlateCarree(),\n", + " cmap=\"PuOr_r\",\n", + " vmin=vmin,\n", + " vmax=vmax,\n", + ")\n", + "ax.coastlines()\n", + "fig.colorbar(\n", + " mappable=ax.collections[0],\n", + " label=\"Relative Sea Level (m)\",\n", + " orientation=\"horizontal\",\n", + " pad=0.02,\n", + ")\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "69021097", + "metadata": {}, + "source": [ + "Next, we'll drill down on a few grid-boxes of interest. To do this we can use the `Local` model.\n", + "\n", + "We give the spatial components to our `Local` model, and a dictionary of locations with associated lat/lons: " + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "5512d606", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
[13:17:52] INFO     ✓ ProFSea assets found locally!                                                                \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2;36m[13:17:52]\u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m \u001b[1;32m✓ ProFSea assets found locally!\u001b[0m \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
           INFO     Baseline period = 1995 to 2014                                                                 \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m Baseline period = \u001b[1;36m1995\u001b[0m to \u001b[1;36m2014\u001b[0m \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
           INFO     Configured for 4 specific target locations.                                                    \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m Configured for \u001b[1;36m4\u001b[0m specific target locations. \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
           INFO     Simulating 7 sea-level components for 4 sites...                                               \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m Simulating \u001b[1;36m7\u001b[0m sea-level components for \u001b[1;36m4\u001b[0m sites\u001b[33m...\u001b[0m \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n",
+       "
\n" + ], + "text/plain": [ + "\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n"
+      ],
+      "text/plain": []
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    },
+    {
+     "data": {
+      "text/html": [
+       "
\n",
+       "
\n" + ], + "text/plain": [ + "\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
[13:17:54] WARNING  The following site(s) may be over land: Land point. Expect NaN values for all components.      \n",
+       "                    Either try increasing your grid resolution or check your site coordinates.                     \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2;36m[13:17:54]\u001b[0m\u001b[2;36m \u001b[0m\u001b[33mWARNING \u001b[0m The following \u001b[1;35msite\u001b[0m\u001b[1m(\u001b[0ms\u001b[1m)\u001b[0m may be over land: Land point. Expect NaN values for all components. \n", + "\u001b[2;36m \u001b[0m Either try increasing your grid resolution or check your site coordinates. \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from profsea.components.core.local_model import Local\n", + "\n", + "from profsea.components.core import Spatial\n", + "from profsea.components.spatial import (\n", + " SterodynamicCMIP6,\n", + " Fingerprint,\n", + " GIA,\n", + ")\n", + "\n", + "locations = {\n", + " \"Aberdeen\": (57.144, -2.080),\n", + " \"Holyhead\": (53.314, -4.620),\n", + " \"Llandudno\": (53.330, -3.830),\n", + " \"Land point\": (-34.6037, -58.3816),\n", + "}\n", + "\n", + "local_components = {\n", + " \"sterodynamic\": SterodynamicCMIP6(\n", + " projections[\"expansion\"], # passing in the global thermal expansion projection\n", + " ),\n", + " \"greenland\": Fingerprint(\n", + " projections[\"greenland\"], \n", + " fingerprint_component=\"greenland\"\n", + " ),\n", + " \"landwater\": Fingerprint(\n", + " projections[\"landwater\"],\n", + " fingerprint_component=\"landwater\",\n", + " ),\n", + " \"wais\": Fingerprint(\n", + " projections[\"wais\"],\n", + " fingerprint_component=\"wais\",\n", + " ),\n", + " \"eais\": Fingerprint(\n", + " projections[\"eais\"],\n", + " fingerprint_component=\"eais\",\n", + " ),\n", + " \"glacier\": Fingerprint(\n", + " projections[\"glacier\"],\n", + " fingerprint_component=\"glacier\",\n", + " ),\n", + " \"gia\": GIA(\n", + " sample_spatial=False,\n", + " ),\n", + "}\n", + "\n", + "local_model = Local(components=local_components, locations=locations)\n", + "local_timeseries = local_model.run(member_seed=42)\n", + "total_rsl = local_model.sum_components(local_model.results)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "061f92d5", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "loc_ts = local_timeseries[\"total_rsl\"].sel(site=[\"Aberdeen\", \"Holyhead\", \"Llandudno\", \"Land point\"], percentile=[17, 50, 83])\n", + "fig = plt.figure(figsize=(6, 4), layout=\"constrained\")\n", + "ax = fig.add_subplot(111)\n", + "for loc in loc_ts.site.values:\n", + " loc_data = loc_ts.sel(site=loc)\n", + " ax.fill_between(loc_data.time, loc_data.sel(percentile=17), loc_data.sel(percentile=83), alpha=0.3)\n", + " ax.plot(loc_data.time, loc_data.sel(percentile=50), label=loc)\n", + "ax.set_xlabel(\"Year\")\n", + "ax.set_ylabel(\"Relative Sea Level (m)\")\n", + "ax.legend(frameon=False, loc=\"upper left\", fontsize=8)\n", + "\n", + "plt.show()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "profsea", + "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.12.13" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/profsea/user-settings.yml b/profsea/user-settings.yml deleted file mode 100644 index 7fce703..0000000 --- a/profsea/user-settings.yml +++ /dev/null @@ -1,69 +0,0 @@ -# Site(s) information -# region: region of the world -# N.B. used to create output folder structure -# sitename: tide gauge name or other site name -# N.B. if site_name has an apostrophe use triple quotes -# # sitename: '''site'x''' -# sitelatlon: site location's latitude and longitude -# N.B. if tide gauge name: latlon taken from TG metadata - # sitelatlon: [[]]) -# N.B. if other site name: latlon needs to be specified - # sitelatlon: [[-51.69, -57.82]]) -siteinfo: - region: 'Falkland_example' # str - sitename: ['Stanley II'] # list - sitelatlon: [[]] # list - -# Base output directory -# N.B. the code will add region to the output directory -baseoutdir: '/home/user/sl_output/' - -# Set the end year of the projection(s) -projection_end_year: 2300 # int between 2050 and 2300 - -# Science method -# UKCP18 --> sciencemethod: 'UK' -# Palmer et al (2020) --> sciencemethod: 'global -# N.B. Used to identify which GIA estimates to use -sciencemethod: 'global' # str - -# Tide gauge information (recommend default below) -# source: source of tide gauge information -# N.B. Also used to identify which TG directory to use -# datafq: temporal scale of tide gauge data -# N.B. not set up monthly files for PSMSL -# psmsldir: TG base directory -tidegaugeinfo: - source: 'PSMSL' # str - datafq: ['annual'] # list - psmsldir: '/home/user/data/PSMSL/' - -# CMIP information -cmipinfo: -# cmip_sea: for non-UK locations, specify if site is within marginal sea -# Not in a marginal sea --> cmip_sea: 'all' -# Marginal sea --> cmip_sea: 'marginal' - cmip_sea: 'all' # str -# sealevelbasedir: Base directory for CMIP "zos" and "zostoga" data - sealevelbasedir: '/deposited2023/profsea_tool/cmip5/' -# slopecoeffsuk: CMIP5 slope coefficients developed for UKCP18 - slopecoeffsuk: '/deposited2023/profsea_tool/uk_cmip_slope_coefficients/' - - -# Directories for the GIA estimates (independent of scenario) -# UKCP18 --> UK specific ones -# Global locations --> Lambeck, ICE5G -giaestimates: - global: '/deposited2023/profsea_tool/gia_estimates /global_GIA_interpolators.pickle' - uk: '‘/deposited2023/profsea_tool/gia_estimates/Bradley_GIA_interpolator.pickle' - -# Directories for the Slangen, Spada and Klemann fingerprints -fingerprints: - slangendir: '/deposited2023/profsea_tool/grd_fingerprints/' - spadadir: '/deposited2023/profsea_tool/grd_fingerprints/' - klemanndir: '/deposited2023/profsea_tool/grd_fingerprints/' - -# Directory of Monte Carlo time series for new projections -# N.B. Originally developed by Jonathan Gregory -short_montecarlodir: '/path/to/2100/montecarlo/simulations' # Required for projections up to 2100 -long_montecarlodir: '/path/to/2300/montecarlo/simulations' # Required for projections from 2100 up to 2300 diff --git a/profsea/utils/__init__.py b/profsea/utils/__init__.py new file mode 100644 index 0000000..e0fe9da --- /dev/null +++ b/profsea/utils/__init__.py @@ -0,0 +1 @@ +from .utils import * # noqa: F403 diff --git a/profsea/utils/ui.py b/profsea/utils/ui.py new file mode 100644 index 0000000..75568b5 --- /dev/null +++ b/profsea/utils/ui.py @@ -0,0 +1,88 @@ +from rich.console import Console +from rich.panel import Panel +from rich.table import Table + +# Central console for package-generated UI elements (not logs) +ui_console = Console() + + +def print_global_preflight(model, scenario: str) -> None: + """Renders the pre-flight summary for the Global model.""" + table = Table(show_header=False, box=None) + table.add_column("Property", style="cyan", justify="right") + table.add_column("Value", style="magenta") + + components_list = ", ".join(model.components.keys()) + ensemble_size = model.nt * model.num_members + + if model.output_percentiles is not None: + output_str = f"Percentiles: {model.output_percentiles}" + else: + output_str = f"Full Distribution ({ensemble_size} members)" + + table.add_row("Scenario", scenario) + table.add_row("Components", components_list) + table.add_row("Timeframe", f"{model.endofhistory} -> {model.end_yr}") + table.add_row( + "Ensemble Size", + f"{model.nt} inputs × {model.num_members} draws (= {ensemble_size})", + ) + table.add_row("Output", output_str) + table.add_row( + "Compute Engine", "Parallel Threading" if model.parallel else "Sequential" + ) + + panel = Panel( + table, + title="[bold green]ProFSea Global Run Configuration", + expand=False, + border_style="green", + ) + ui_console.print(panel) + ui_console.print() + + +def print_spatial_preflight(model) -> None: + """Renders the pre-flight summary for the Spatial model.""" + table = Table(show_header=False, box=None) + table.add_column("Property", style="cyan", justify="right") + table.add_column("Value", style="magenta") + + components_list = ", ".join(model.components.keys()) + + # Calculate the mathematical grid size: $N_{lat} \times N_{lon}$ + n_lat = len(model.grid_lats) + n_lon = len(model.grid_lons) + grid_str = f"{n_lat} × {n_lon} cells" + + # Memory estimation + bytes_per_element = 8 + future_size_gb = ( + model.num_members * model.n_years * n_lat * n_lon * bytes_per_element + ) / 1e9 + + if model.output_percentiles is not None: + output_str = f"Percentiles: {model.output_percentiles}" + else: + output_str = f"Full Distribution ({model.num_members} members)" + + table.add_row("Components", components_list) + table.add_row("Timeframe", f"{model.start_year} -> {model.end_year}") + table.add_row("Baseline", f"{model.baseline_yrs[0]} - {model.baseline_yrs[1]}") + table.add_row("Grid Resolution", grid_str) + table.add_row("Output", output_str) + + # Color-code the memory warning + mem_style = "bold red" if future_size_gb > 20 else "magenta" + table.add_row( + "Est. Output Size", f"[{mem_style}]~{future_size_gb:.2f} GB[/{mem_style}]" + ) + + panel = Panel( + table, + title="[bold blue]ProFSea Spatial Run Configuration", + expand=False, + border_style="blue", + ) + ui_console.print(panel) + ui_console.print() diff --git a/profsea/utils/utils.py b/profsea/utils/utils.py new file mode 100644 index 0000000..848fd0f --- /dev/null +++ b/profsea/utils/utils.py @@ -0,0 +1,376 @@ +from __future__ import annotations + +import logging +import os +import zipfile +from pathlib import Path + +import dask +import dask.array as da +import numpy as np +import requests +import xarray as xr +from rich.console import Console +from rich.progress import ( + BarColumn, + DownloadColumn, + Progress, + TextColumn, + TimeRemainingColumn, + TransferSpeedColumn, +) +from scipy.spatial.distance import cdist + +console = Console() +logger = logging.getLogger(__name__) + + +def sample_members_2D( + array: np.ndarray | da.Array, + percentiles: list | np.ndarray, + dtype: np.dtype = np.float32, +) -> np.ndarray | da.Array: + """ + Sample real ensemble members from a 2D numpy or dask array lazily. + + Parameters + ---------- + array: np.ndarray | da.Array + Input 2D array of shape (realisation, time). + percentiles: list | np.ndarray + List of percentiles to sample from the input array. + + Returns + ------- + np.ndarray | da.Array + Sampled array of shape (len(percentiles), time). Maintains lazy + evaluation if a dask array is provided. + """ + + def _eager_sample(arr, percs): + # Calculate statistical timeseries, then match with closest real timeseries + array_percentiles = np.nanpercentile(arr, percs, axis=0) + distances = cdist(array_percentiles, arr) + mem_indices = np.argmin(distances, axis=1) + return arr[mem_indices].astype(dtype) + + if isinstance(array, da.Array): + # Tell Dask to delay this operation until the graph is computed + lazy_result = dask.delayed(_eager_sample)(array, percentiles) + + # Reconstruct into a Dask array so downstream Xarray operations continue to work lazily + shape = (len(percentiles), array.shape[1]) + return da.from_delayed(lazy_result, shape=shape, dtype=array.dtype) + + else: + # Fallback for standard numpy arrays + return _eager_sample(array, percentiles) + + +def interpolate(data: da.array, lats: int, lons: int) -> da.array: + """ + Interpolate a 2D dask array to a target grid defined by lats and lons. + + Parameters + ---------- + data: da.array + Input 2D dask array to be interpolated. + lats: int + Number of latitude points in the target grid. + lons: int + Number of longitude points in the target grid. + + Returns + ------- + da.array + Interpolated 2D dask array on the target grid. + """ + original_da = xr.DataArray( + data.data, + coords=[("lat", data[data.dims[0]].values), ("lon", data[data.dims[1]].values)], + name="v", + ) + + target_lat = np.linspace(-90, 90, lats, endpoint=False) + 0.5 + target_lon = np.linspace(-180, 180, lons, endpoint=False) + 0.5 + data_interp = original_da.interp( + lat=target_lat, lon=target_lon, method="linear" + ).data + return data_interp + + +def interpolate_to_grid( + data: xr.DataArray, + target_lats: np.ndarray, + target_lons: np.ndarray, + grid_interpolation: str = "linear", +) -> xr.DataArray: + """ + Interpolate an xarray DataArray to a target grid defined by target_lats and target_lons. + Safely handles longitude wrapping mismatches (e.g., [0, 360) vs [-180, 180)). + + Parameters + ---------- + data: xr.DataArray + Input xarray DataArray to be interpolated. Must have 'lat' and 'lon' dimensions. + target_lats: np.ndarray + 1D array of target latitude values. + target_lons: np.ndarray + 1D array of target longitude values. + grid_interpolation: str, optional + Interpolation method to use. Default is 'linear'. Other options include 'nearest', 'cubic', etc. + + Returns + ------- + xr.DataArray + Interpolated xarray DataArray on the target grid. + """ + import regionmask + + # Normalize source longitudes to [-180, 180) and sort monotonically + data = data.assign_coords(lon=(((data.lon + 180) % 360) - 180)) + data = data.sortby(["lat", "lon"]) + + # Normalize target longitudes to [-180, 180) and sort + target_lons_norm = np.sort(((target_lons + 180) % 360) - 180) + + # Pad longitude with one points from each end to handle periodicity in zonal direction + data_padded = data.pad( + lon=1, mode="wrap" + ) # need more padding for higher-order interpolation + lon = data.lon.values + lon_padded = np.concatenate([[lon[-1] - 360], lon, [lon[0] + 360]]) + data_padded["lon"] = lon_padded + data_padded = data_padded.sortby(["lat", "lon"]) + + # Now interpolate + data_padded = data_padded.chunk({"lat": -1, "lon": -1}) + for dim in ["lat", "lon"]: + data_padded = data_padded.interpolate_na( + dim=dim, + method="nearest", + ) # this to handle nan values or land mask + + data_interp = data_padded.interp( + lat=target_lats, lon=target_lons_norm, method=grid_interpolation + ) + + # Account for land mask (using regionmask library) + land = regionmask.defined_regions.natural_earth_v5_0_0.land_110 + land_mask = land.mask_3D(data_interp) + is_land = land_mask.squeeze("region", drop=True) + data_interp = data_interp.where(~is_land) + + return data_interp + + +def check_shapes(array: np.ndarray, n_time: int) -> None: + """Check that the input arrays have the correct shape. + + Parameters + ---------- + array: np.ndarray + Input array of some kind. + n_time: int + Expected number of time steps. + + Returns + ------- + None + """ + if array.ndim == 1: + array = array[np.newaxis, :] + + if array.shape[1] != n_time: + raise ValueError( + f"Array should have shape (realisation, time) with time " + f"dimension of length {n_time}. Got {array.shape}." + ) + + +def fetch_zenodo_fingerprints( + zenodo_url: str, data_dir: Path, expected_folder_name: str +) -> None: + """ + Downloads and extracts the ProFSea fingerprint dataset from Zenodo if it doesn't already exist locally. + + Parameters + ---------- + zenodo_url: str + The direct download URL for the fingerprint dataset on Zenodo. + data_dir: Path + The base directory where the dataset should be stored. + expected_folder_name: str + The name of the folder that should be created when the dataset is extracted. Used to check if the data already exists. + """ + target_dir = data_dir / expected_folder_name + + # 1. Check if data already exists + if target_dir.exists() and any(target_dir.iterdir()): + logger.info("[bold green]✓ ProFSea assets found locally![/bold green]") + return + + # Create the base directory if it doesn't exist + data_dir.mkdir(parents=True, exist_ok=True) + zip_path = data_dir / "temp_fingerprints.zip" + + logger.info(f"Initiating download from {zenodo_url}...") + + # 2. Stream the download with a rich progress bar + try: + response = requests.get(zenodo_url, stream=True) + response.raise_for_status() # Raise an error for bad status codes + + total_size = int(response.headers.get("content-length", 0)) + + with Progress( + TextColumn("[bold cyan]{task.description}"), + BarColumn(), + DownloadColumn(), + TransferSpeedColumn(), + TimeRemainingColumn(), + console=console, + ) as progress: + download_task = progress.add_task( + "Downloading dataset...", total=total_size + ) + + with open(zip_path, "wb") as file: + for chunk in response.iter_content(chunk_size=8192): + if chunk: + file.write(chunk) + progress.update(download_task, advance=len(chunk)) + + except requests.exceptions.RequestException as e: + logger.error(f"[bold red]Failed to download data: {e}[/bold red]") + if zip_path.exists(): + zip_path.unlink() # Clean up partial downloads + raise + + logger.info("Extracting data...") + try: + with zipfile.ZipFile(zip_path, "r") as zip_ref: + # Filter out the __MACOSX directory and its contents + valid_members = [ + member + for member in zip_ref.namelist() + if not member.startswith("__MACOSX/") and not member.startswith("._") + ] + zip_ref.extractall(data_dir, members=valid_members) + + logger.info( + f"[bold green]✓ Successfully extracted data to {data_dir}[/bold green]" + ) + except zipfile.BadZipFile: + logger.error( + "[bold red]Error: Downloaded file is not a valid zip archive.[/bold red]" + ) + raise + finally: + # 4. Clean up the zip file + if zip_path.exists(): + zip_path.unlink() + + +def save_components( + self, + components: dict[str, xr.DataArray], + scenario_name: str, + output_prefix: str = "projection", + output_dir: str = ".", + output_format: str = "zarr", + output_dtype: str | None = None, + description: str = "Spatial sea level rise projections", +) -> None: + """ + Stream sea level projections to disk in a single file/store. + + Parameters + ---------- + components: dict[str, xr.DataArray] + Dictionary of component names and their corresponding Xarray DataArrays. + scenario_name: str + Name of the scenario you've run the emulator for. + output_prefix: str + Prefix for the output file name (e.g., 'projection' or 'global'). + output_dir: str + Directory to save components to. + output_format: str + Format to save the output in. Must be either 'netcdf' or 'zarr'. + output_dtype: str | None + Data type to force the output to (e.g., 'float32'). If None, the dtype + is dynamically inferred from each individual component. + description: str + Metadata description attached to the dataset attributes. + + Returns + ------- + None + """ + if not components: + logger.warning("No components provided to save.") + return + + ds = xr.Dataset(components) + + # Add ProFSea version and scenario metadata + ds.attrs["source"] = "ProFSea v3.0" + ds.attrs["scenario"] = scenario_name + ds.attrs["description"] = description + + output_format = output_format.lower() + if output_format not in ["netcdf", "zarr"]: + raise ValueError("output_format must be either 'netcdf' or 'zarr'.") + + Path(output_dir).mkdir(parents=True, exist_ok=True) + encoding = {} + + # Sort out Zarr encoding + if output_format == "zarr": + import numcodecs + from numcodecs.zarr3 import Blosc + + compressor = Blosc(cname="zstd", clevel=5, shuffle=numcodecs.Blosc.BITSHUFFLE) + + # Set the encoding dynamically, overriding with output_dtype if provided + for name, component in components.items(): + comp_dtype = output_dtype if output_dtype else component.dtype.name + + if output_format == "netcdf": + encoding[name] = {"zlib": True, "complevel": 1, "dtype": comp_dtype} + elif output_format == "zarr": + encoding[name] = {"compressor": compressor, "dtype": comp_dtype} + + file_name = f"{scenario_name}_{output_prefix}" + + # Dynamically adjust console message string based on the prefix + log_prefix = "Global " if "global" in output_prefix.lower() else "" + + # Stream the computation and write to disk + if output_format == "netcdf": + out_path = os.path.join(output_dir, f"{file_name}.nc") + with console.status( + f"[bold cyan]Computing and saving {log_prefix}NetCDF...[/bold cyan]", + spinner="dots", + ): + # Let xarray handle streaming directly to avoid RAM overload + ds.compute().to_netcdf(out_path, encoding=encoding) + + logger.info(f"[bold green]✓ Successfully saved NetCDF:[/bold green] {out_path}") + + elif output_format == "zarr": + out_path = os.path.join(output_dir, f"{file_name}.zarr") + with console.status( + f"[bold cyan]Streaming computation and saving {log_prefix}Zarr...[/bold cyan]", + spinner="dots", + ): + ds.to_zarr(out_path, encoding=encoding, mode="w", compute=True) + + logger.info(f"[bold green]✓ Successfully saved Zarr:[/bold green] {out_path}") + + # Safely get a sample name to log the shape (fixes the scope-leak bug) + sample_name = "total_gmslr" if "total_gmslr" in ds else list(ds.data_vars.keys())[0] + dims_str = ", ".join(ds[sample_name].dims) + logger.info( + f"{log_prefix}Output shape for '{sample_name}' was {ds[sample_name].shape} ({dims_str})" + ) diff --git a/pyproject.toml b/pyproject.toml index 0e5bcaf..894724f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,4 +4,45 @@ build-backend = "setuptools.build_meta" [project] name = "profsea" -version = "1.0" \ No newline at end of file +version = "3.0" +dependencies = [ + "numpy", + "xarray", + "scipy", + "dask", + "rich", + "requests", + "regionmask", + "netcdf4", + "h5netcdf", +] + +[tool.setuptools.packages.find] +include = ["profsea*"] +exclude = ["docs*", "tests*"] + +[project.optional-dependencies] +test = [ + "pytest>=7.0", + "pytest-cov", # Useful for checking test coverage later + "pytest-github-actions-annotate-failures", +] + +# Settings for Ruff formatting +[tool.ruff] +line-length = 88 +target-version = "py312" +extend-exclude = ["*.ipynb"] + +[tool.ruff.lint] +# Pyflakes (F), pycodestyle (E, W), isort (I), and pyupgrade (UP) +select = ["E", "F", "W", "I", "UP"] +ignore = [ + "E501", # Line too long (let the formatter handle this, ignore in linter) +] + +[tool.ruff.format] +# Use double quotes for strings (standard Python convention) +quote-style = "double" +# Indent with spaces +indent-style = "space" diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/components/__init__.py b/tests/components/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/components/test_glacier.py b/tests/components/test_glacier.py new file mode 100644 index 0000000..300e362 --- /dev/null +++ b/tests/components/test_glacier.py @@ -0,0 +1,54 @@ +import numpy as np +import pytest + +from profsea.components.core.state import ClimateState +from profsea.components.global_.glacier import Glacier + + +def get_dummy_state(T_change_val: float) -> ClimateState: + """Helper to generate a state object with a constant temperature.""" + T_ens = np.ones((2, 4)) * T_change_val + T_int_ens = np.cumsum(T_ens, axis=1) + T_int_med = np.cumsum(np.median(T_ens, axis=0)) + + return ClimateState( + scenario="test", + T_ens=T_ens, + T_int_ens=T_int_ens, + T_int_med=T_int_med, + fraction=np.random.rand(10), + palmer_method=True, + endofAR5=2100, + endofhistory=2006, + end_yr=2010, + nyr=4, + nt=2, + num_members=2, + ) + + +def test_glacier_parameter_validation(): + # Attempting to initialize with an invalid MIP index + glacier = Glacier(glaciermip=3) + state = get_dummy_state(1.0) + rng = np.random.default_rng(42) + + with pytest.raises(KeyError, match="glaciermip must be False"): + glacier.project(state, rng) + + +def test_glacier_mass_limit(): + glacier = Glacier(glaciermip=2) + + # Force a massive, physically impossible temperature spike (1000 degrees) + # This ensures the mathematical scaling tries to exceed the physical ice volume + extreme_state = get_dummy_state(1000.0) + rng = np.random.default_rng(42) + + projection = glacier.project(extreme_state, rng) + + # Calculate the hard limit: + max_sle = (412.0 - 96.3) * 1e-3 + + # Assert no value in the projection exceeds the hard mass limit + assert np.all(projection <= max_sle) diff --git a/tests/components/test_sterodynamic.py b/tests/components/test_sterodynamic.py new file mode 100644 index 0000000..3401649 --- /dev/null +++ b/tests/components/test_sterodynamic.py @@ -0,0 +1,125 @@ +from pathlib import Path +from unittest.mock import patch + +import numpy as np +import xarray as xr + +from profsea.components.core.state import SpatialState +from profsea.components.spatial.sterodynamic import SterodynamicCMIP6 + + +@patch("profsea.components.spatial.sterodynamic.xr.open_dataset") +@patch("profsea.components.spatial.sterodynamic.Path.glob") +def test_load_cmip6_slopes(mock_glob, mock_open_dataset): + # Mock file paths (glob is called twice: once for slopes, once for masks) + mock_glob.side_effect = [ + [ + Path("dummy/zos_regression_ssp585_1.nc"), + Path("dummy/zos_regression_ssp585_2.nc"), + ], + [Path("dummy/zos_mask_ssp585_1.nc"), Path("dummy/zos_mask_ssp585_2.nc")], + ] + + # Mock datasets + mock_data = xr.DataArray(np.random.rand(5, 5), dims=["lat", "lon"]) + mock_mask_data = xr.DataArray(np.zeros((5, 5)), dims=["lat", "lon"]) + + def mock_open(f, **kwargs): + if "regression" in str(f): + return {"zos_zostoga_regression_slope": mock_data} + elif "mask" in str(f): + return {"zos_mask": mock_mask_data} + + mock_open_dataset.side_effect = mock_open + + dummy_global = np.zeros((10, 100)) + stero = SterodynamicCMIP6(global_projection=dummy_global) + + slopes, masks = stero._load_CMIP6_slopes() + + assert slopes.shape == (2, 5, 5) + assert "model" in slopes.dims + assert masks is not None + assert masks.shape == (2, 5, 5) + assert stero.land_mask_present is True + + +@patch("profsea.utils.utils.interpolate_to_grid") +@patch.object(SterodynamicCMIP6, "_load_CMIP6_slopes") +def test_expansion_contribution_storyline_mode(mock_load, mock_interp): + # Mock the loaded data and masks + mock_coeffs = xr.DataArray( + np.array([np.ones((2, 2)), np.ones((2, 2)) * 2, np.ones((2, 2)) * 3]), + coords=[("model", [0, 1, 2]), ("lat", [0, 1]), ("lon", [0, 1])], + ) + mock_masks = xr.DataArray( + np.zeros((3, 2, 2)), + coords=[("model", [0, 1, 2]), ("lat", [0, 1]), ("lon", [0, 1])], + ) + mock_load.return_value = (mock_coeffs, mock_masks) + + # Let the mocked interpolator just return the array passed into it + mock_interp.return_value = mock_coeffs + + state = SpatialState( + grid_lats=np.array([0, 1]), + grid_lons=np.array([0, 1]), + n_years=100, + n_members=5, + grid_interpolation="nearest", + output_percentiles=None, + baseline_yrs=(1995, 2014), + ) + + # Test Storyline Mode + stero_storyline = SterodynamicCMIP6( + global_projection=np.zeros((5, 100)), sample_spatial=False + ) + stero_storyline.land_mask_present = ( + True # Simulate the flag being set during the load phase + ) + + rng = np.random.default_rng(42) + result_storyline = stero_storyline._calc_expansion_contribution(rng, state) + + # In storyline mode, it takes the ensemble mean: (1+2+3)/3 = 2 + assert result_storyline.shape == (5, 2, 2) + computed_result = result_storyline.compute() + np.testing.assert_array_equal(computed_result, np.ones((5, 2, 2)) * 2) + + +@patch("profsea.utils.utils.interpolate_to_grid") +@patch.object(SterodynamicCMIP6, "_load_CMIP6_slopes") +def test_expansion_contribution_sampled_mode(mock_load, mock_interp): + mock_coeffs = xr.DataArray( + np.array([np.ones((2, 2)), np.ones((2, 2)) * 2, np.ones((2, 2)) * 3]), + coords=[("model", [0, 1, 2]), ("lat", [0, 1]), ("lon", [0, 1])], + ) + mock_masks = xr.DataArray( + np.zeros((3, 2, 2)), + coords=[("model", [0, 1, 2]), ("lat", [0, 1]), ("lon", [0, 1])], + ) + mock_load.return_value = (mock_coeffs, mock_masks) + mock_interp.return_value = mock_coeffs + + state = SpatialState( + grid_lats=np.array([0, 1]), + grid_lons=np.array([0, 1]), + n_years=100, + n_members=5, + grid_interpolation="nearest", + output_percentiles=None, + baseline_yrs=(1995, 2014), + ) + + stero_sampled = SterodynamicCMIP6( + global_projection=np.zeros((5, 100)), sample_spatial=True + ) + stero_sampled.land_mask_present = True + + rng = np.random.default_rng(42) + result_sampled = np.asarray(stero_sampled._calc_expansion_contribution(rng, state)) + + assert result_sampled.shape == (5, 2, 2) + unique_values = np.unique(result_sampled) + assert len(unique_values) > 1 diff --git a/tests/core/__init__.py b/tests/core/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/core/test_global_model.py b/tests/core/test_global_model.py new file mode 100644 index 0000000..cf3744b --- /dev/null +++ b/tests/core/test_global_model.py @@ -0,0 +1,120 @@ +import numpy as np +import xarray as xr + +from profsea.components.core.base import Component +from profsea.components.core.global_model import Global +from profsea.components.core.state import ClimateState + + +class MockGlobalComponent(Component): + def project(self, state: ClimateState, rng: np.random.Generator) -> np.ndarray: + # Just return an array of 1s with the correct shape + return np.ones((state.nt * state.num_members, state.nyr), dtype=state.dtype) + + +def test_calculate_drivers_math(): + # 2 members, 3 time steps + T_change = np.array([[1.0, 2.0, 3.0], [3.0, 4.0, 5.0]]) + + global_model = Global(components={}, end_yr=2008, nt=2) + T_ens, T_int_ens, T_int_med = global_model._calculate_drivers(T_change) + + # Assert time integrals (cumulative sum over axis 1) + np.testing.assert_array_equal(T_int_ens, [[1.0, 3.0, 6.0], [3.0, 7.0, 12.0]]) + + # Median of T_change across members is [2.0, 3.0, 4.0] + # Cumsum of that median is [2.0, 5.0, 9.0] + np.testing.assert_array_equal(T_int_med, [2.0, 5.0, 9.0]) + + +def test_run_orchestration(): + components = {"mock1": MockGlobalComponent(), "mock2": MockGlobalComponent()} + + # 2 time series, 3 members each -> output shape should be (6, nyr) + global_model = Global(components=components, end_yr=2010, nt=2, num_members=3) + + # Shape: (nt=2, nyr=4) + T_change = np.zeros((2, 4)) + results = global_model.run(scenario="ssp119", T_change=T_change) + + assert "mock1" in results + assert "mock2" in results + assert results["mock1"].shape == (6, 4) + + +def test_save_components(tmp_path): + # tmp_path is a built-in pytest fixture that creates a temporary directory + global_model = Global(components={}, end_yr=2010) + + # Create dummy result: 5 members, 4 years + components = { + "mock_comp": xr.DataArray(np.random.rand(5, 4), dims=["member", "time"]) + } + + # Save the output to the temporary directory + global_model.save_components( + components, + output_dir=str(tmp_path), + scenario_name="test", + output_prefix="global", + output_format="netcdf", + ) + + expected_file = tmp_path / "test_global.nc" + assert expected_file.exists() + + # Verify the contents of the NetCDF + ds = xr.open_dataset(expected_file) + assert "mock_comp" in ds.data_vars + assert ds["mock_comp"].shape == (5, 4) + assert list(ds.dims) == ["member", "time"] + + +def test_return_types(): + # Import a number of real components to test their return types + from profsea.components.global_ import ( + AntarcticaDynAR5, + AntarcticaISMIP6, + AntarcticaSMBAR5, + Glacier, + GreenlandAR6, + GreenlandDynAR5, + GreenlandSMBAR5, + LandwaterAR5, + LandwaterAR6, + ThermalExpansion, + ) + + tas = np.zeros((2, 95)) # 2 trajectories, 4 years + ohc = np.zeros((2, 95)) + + components = { + "AntarcticaISMIP6": AntarcticaISMIP6(region="wais"), + "AntarcticaSMBAR5": AntarcticaSMBAR5(), + "AntarcticaDynAR5": AntarcticaDynAR5(), + "GreenlandAR6": GreenlandAR6(), + "GreenlandDynAR5": GreenlandDynAR5(), + "GreenlandSMBAR5": GreenlandSMBAR5(), + "Glacier": Glacier(), + "LandwaterAR5": LandwaterAR5(), + "LandwaterAR6": LandwaterAR6(), + "ThermalExpansion": ThermalExpansion(OHC_change=ohc), + } + + global_model_float64 = Global( + components=components, end_yr=2101, nt=2, num_members=3, dtype=np.float64 + ) + results = global_model_float64.run(scenario="rcp26", T_change=tas) + + for comp_name, data in results.items(): + assert isinstance(data, xr.DataArray) + assert data.dtype == np.float64 + + global_model_float32 = Global( + components=components, end_yr=2101, nt=2, num_members=3, dtype=np.float32 + ) + results = global_model_float32.run(scenario="rcp26", T_change=tas) + + for comp_name, data in results.items(): + assert isinstance(data, xr.DataArray) + assert data.dtype == np.float32 diff --git a/tests/core/test_local_model.py b/tests/core/test_local_model.py new file mode 100644 index 0000000..17b1861 --- /dev/null +++ b/tests/core/test_local_model.py @@ -0,0 +1,105 @@ +import dask.array as da +import numpy as np +import pytest +import xarray as xr + +from profsea.components.core.base import SpatialComponent + + +class DummyState: + """Mock state object to hold target coordinates.""" + + def __init__(self, lats, lons): + self.target_lats = np.atleast_1d(lats) + self.target_lons = np.atleast_1d(lons) + + +class MockLocalComponent(SpatialComponent): + @property + def global_projection(self): + # Return a dummy array to satisfy the abstract base class requirement + return np.zeros((1, 1)) + + def project(self, state, rng): + # Return a dummy array of shape (n_members, n_years, n_locations) + return np.ones((state.num_members, state.n_years, len(state.target_lats))) + + +class TestLazyLocalExtraction: + @pytest.fixture + def lazy_grid(self) -> xr.DataArray: + """ + Creates a predictable 3x4 global grid with known values and NaNs. + Latitudes: -10, 0, 10 + Longitudes: -170, -90, 0, 90 + """ + lats = np.array([-10.0, 0.0, 10.0]) + lons = np.array([-170.0, -90.0, 0.0, 90.0]) + + # Predictable values 1 through 12 + data = np.arange(1, 13, dtype=float).reshape(3, 4) + + # Inject NaNs to test coastal weighting + data[0, 2] = np.nan # lat=-10, lon=0 + data[2, 3] = np.nan # lat=10, lon=90 + + dask_data = da.from_array(data, chunks=(3, 2)) + + return xr.DataArray( + dask_data, dims=["lat", "lon"], coords={"lat": lats, "lon": lons} + ) + + @pytest.fixture + def component(self): + return MockLocalComponent() + + def test_preserves_lazy_evaluation(self, lazy_grid, component): + """Ensure the extraction operations do not eagerly compute the Dask array.""" + state = DummyState(lats=[5.0], lons=[-45.0]) + result = component.extract_spatial(lazy_grid, state) + assert isinstance(result.data, da.Array), ( + "Extraction triggered eager evaluation!" + ) + + def test_standard_bilinear_interpolation(self, lazy_grid, component): + """Test a clean extraction in the center of 4 valid nodes.""" + state = DummyState(lats=[5.0], lons=[-45.0]) + result = component.extract_spatial(lazy_grid, state).compute() + np.testing.assert_allclose(result.values, [8.5]) + + def test_coastal_nan_renormalization(self, lazy_grid, component): + """Test extraction where one corner of the bounding box is NaN.""" + state = DummyState(lats=[-5.0], lons=[-45.0]) + result = component.extract_spatial(lazy_grid, state).compute() + np.testing.assert_allclose(result.values, [5.0]) + + def test_exact_node_strike(self, lazy_grid, component): + """Ensure zero-division safeguards work when hitting a coordinate exactly.""" + state = DummyState(lats=[0.0], lons=[-90.0]) + result = component.extract_spatial(lazy_grid, state).compute() + np.testing.assert_allclose(result.values, [6.0]) + + def test_zonal_periodicity_wrapping(self, lazy_grid, component): + """Test extraction across the -180/180 antimeridian line.""" + state = DummyState(lats=[0.0], lons=[180.0]) + result = component.extract_spatial(lazy_grid, state).compute() + np.testing.assert_allclose(result.values, [5.3]) + + def test_all_nan_handling(self, lazy_grid, component): + """Ensure regions completely surrounded by NaNs yield NaN.""" + lazy_grid *= np.nan # Make the entire grid NaN + state = DummyState(lats=[5.0], lons=[45.0]) + result = component.extract_spatial(lazy_grid, state).compute() + assert np.isnan(result.values[0]) + + def test_missing_spatial_attributes(self, lazy_grid, component): + """Ensure a ValueError is raised if the state lacks valid spatial targets.""" + + class DummyStateEmpty: + pass # A truly empty state object + + state = DummyStateEmpty() + with pytest.raises( + ValueError, match="State object is missing required spatial attributes" + ): + component.extract_spatial(lazy_grid, state) diff --git a/tests/core/test_spatial_model.py b/tests/core/test_spatial_model.py new file mode 100644 index 0000000..71d22c8 --- /dev/null +++ b/tests/core/test_spatial_model.py @@ -0,0 +1,48 @@ +from unittest.mock import patch + +import dask.array as da +import numpy as np +import xarray as xr + +from profsea.components.core.spatial_model import Spatial + + +@patch("profsea.components.core.spatial_model.fetch_zenodo_fingerprints") +def test_spatial_init_blocks_download(mock_fetch): + spatial = Spatial(components={}, end_year=2050) + mock_fetch.assert_called_once() + assert spatial.end_year == 2050 + + +@patch("profsea.components.core.spatial_model.fetch_zenodo_fingerprints") +def test_arr_to_xr_metadata(mock_fetch): + # Initializes with default output_percentiles=[5, 17, 50, 83, 95] (Length 5) + spatial = Spatial(components={}, end_year=2010) + + arr = da.zeros((5, 4, 180, 360)) + arr_dict = {"mock_spatial": arr} + + xr_dict = spatial._arr_to_xr(arr_dict) + + assert "mock_spatial" in xr_dict + da_out = xr_dict["mock_spatial"] + + assert isinstance(da_out, xr.DataArray) + assert list(da_out.dims) == ["percentile", "time", "lat", "lon"] + np.testing.assert_array_equal(da_out.time.values, [2006, 2007, 2008, 2009]) + + +@patch("profsea.components.core.spatial_model.fetch_zenodo_fingerprints") +def test_sum_spatial_components(mock_fetch): + spatial = Spatial(components={}, end_year=2010) + + # Two identical arrays of 1s + da1 = xr.DataArray(np.ones((2, 2)), dims=["lat", "lon"]) + da2 = xr.DataArray(np.ones((2, 2)), dims=["lat", "lon"]) + + components = {"comp1": da1, "comp2": da2} + total = spatial.sum_components(components) + + # 1 + 1 = 2 everywhere + np.testing.assert_array_equal(total.values, np.ones((2, 2)) * 2) + assert "total_rsl" in components diff --git a/tests/utils/__init__.py b/tests/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/utils/test_utils.py b/tests/utils/test_utils.py new file mode 100644 index 0000000..7ef5f68 --- /dev/null +++ b/tests/utils/test_utils.py @@ -0,0 +1,71 @@ +from unittest.mock import MagicMock, patch + +import numpy as np +import pytest +import xarray as xr + +from profsea.utils.utils import check_shapes, interpolate_to_grid, sample_members_2D + + +def test_check_shapes_valid_2d(): + arr = np.zeros((5, 10)) + check_shapes(arr, n_time=10) + + +def test_check_shapes_promotes_1d(): + arr = np.zeros(10) + check_shapes(arr, n_time=10) + + +def test_check_shapes_raises_value_error(): + arr = np.zeros((5, 10)) + with pytest.raises( + ValueError, match="Array should have shape .* time dimension of length 12" + ): + check_shapes(arr, n_time=12) + + +def test_interpolate_to_grid_longitude_wrapping(): + # Target grid using -180 to 180 format (includes 180, which should wrap) + target_lats = np.array([-45, 0, 45]) + target_lons = np.array([-10, 0, 180]) + + # 1. Setup mock regionmask to act as if there is no land + mock_regionmask = MagicMock() + mock_land = MagicMock() + mock_mask_da = xr.DataArray( + np.zeros((1, 3, 3), dtype=bool), + dims=["region", "lat", "lon"], + coords={"region": [0], "lat": target_lats, "lon": [-180, -10, 0]}, + ) + mock_land.mask_3D.return_value = mock_mask_da + mock_regionmask.defined_regions.natural_earth_v5_0_0.land_110 = mock_land + + # 2. Setup mock input data + lats = np.array([-45, 0, 45]) + lons_360 = np.array([0, 180, 350]) + data = xr.DataArray(np.random.rand(3, 3), coords=[("lat", lats), ("lon", lons_360)]) + + # 3. Intercept the local import using sys.modules + with patch.dict("sys.modules", {"regionmask": mock_regionmask}): + result = interpolate_to_grid(data, target_lats, target_lons) + + assert result.shape == (3, 3) + expected_lons = np.array([-180, -10, 0]) + np.testing.assert_array_almost_equal(result.lon.values, expected_lons) + + +def test_sample_members_2D_extracts_real_member(): + arr = np.array( + [ + [1.0, 1.0, 1.0], # Min + [2.0, 2.0, 2.0], + [3.0, 3.0, 3.0], # Median + [4.0, 4.0, 4.0], + [5.0, 5.0, 5.0], # Max + ] + ) + + result = sample_members_2D(arr, percentiles=[50]) + assert result.shape == (1, 3) + np.testing.assert_array_equal(result[0], [3.0, 3.0, 3.0]) diff --git a/ukcp18_example_script.py b/ukcp18_example_script.py new file mode 100644 index 0000000..de29cda --- /dev/null +++ b/ukcp18_example_script.py @@ -0,0 +1,136 @@ +import cartopy.crs as ccrs +import matplotlib.pyplot as plt +import numpy as np + +from profsea.components.core.global_model import Global +from profsea.components.core.spatial_model import Spatial +from profsea.components.global_ import ( + AntarcticaDynAR5, + AntarcticaSMBAR5, + Glacier, + GreenlandDynAR5, + GreenlandSMBAR5, + LandwaterAR5, + ThermalExpansion, +) +from profsea.components.spatial import GIA, Fingerprint, SterodynamicCMIP6 + +### Global projections first ### +global_components = { + "expansion": ThermalExpansion( + OHC_change=np.linspace(1, 5, 295).reshape(1, -1) * 1e24 + ), + "greenland_dyn": GreenlandDynAR5(), + "greenland_smb": GreenlandSMBAR5(), + "landwater": LandwaterAR5(), + "antarctica_dyn": AntarcticaDynAR5(), + "antarctica_smb": AntarcticaSMBAR5(), + "glacier": Glacier(), +} + +# Pass to the global model +global_model = Global(components=global_components, end_yr=2301) +projections = global_model.run( + scenario="rcp85", + T_change=np.linspace(1, 5, 295).reshape(1, -1), + member_seed=42, +) +global_model.sum_components(projections) +gmslr = global_model.results["total_gmslr"] +global_model.save_components( + global_model.results, + scenario_name="rcp85", + output_format="zarr", + output_prefix="global_", +) + +### Now spatial projections ### +spatial_components = { + "sterodynamic": SterodynamicCMIP6( + projections["expansion"], + ), + "greenland_dyn": Fingerprint( + projections["greenland_dyn"], fingerprint_component="greendyn" + ), + "greenland_smb": Fingerprint( + projections["greenland_smb"], + fingerprint_component="greensmb", + ), + "landwater": Fingerprint( + projections["landwater"], + fingerprint_component="landwater", + ), + "antarctica_dyn": Fingerprint( + projections["antarctica_dyn"], + fingerprint_component="antdyn", + ), + "antarctica_smb": Fingerprint( + projections["antarctica_smb"], + fingerprint_component="antsmb", + ), + "glacier": Fingerprint( + projections["glacier"], + fingerprint_component="glacier", + ), + "gia": GIA( + sample_spatial=False, + ), +} + +# Pass to the spatial model +spatial_model = Spatial(components=spatial_components) +spatial_model.run(member_seed=42) + +spatial_model.sum_components(spatial_model.results) +spatial_model.save_components( + spatial_model.results, scenario_name="rcp85", output_format="zarr" +) + + +### Plot example ### +fig = plt.figure(figsize=(10, 4), layout="constrained") + +total_rsl = spatial_model.results["total_rsl"][2, -1, :, :] +vmax = np.nanmax(np.abs(total_rsl)) +vmin = -vmax + +ax = fig.add_subplot(121) + +# Global projections +yrs = np.arange(2006, 2301) +ax.plot( + yrs, + np.median(gmslr, axis=0), + label="Global Projection", + color="royalblue", +) +# fill between 1 and 4 members +ax.fill_between( + yrs, + np.percentile(gmslr, 17, axis=0), + np.percentile(gmslr, 83, axis=0), + alpha=0.3, + color="skyblue", +) +ax.set_xlabel("Year", fontsize=14) +ax.set_ylabel("Global Mean Sea Level Rise (m)") + +ax = fig.add_subplot(122, projection=ccrs.PlateCarree()) +ax.set_title("50th Percentile, Year 2300") +ax.pcolormesh( + spatial_model.grid_lons, + spatial_model.grid_lats, + total_rsl, + transform=ccrs.PlateCarree(), + cmap="PuOr_r", + vmin=vmin, + vmax=vmax, +) +ax.coastlines() +fig.colorbar( + mappable=ax.collections[0], + label="Relative Sea Level (m)", + orientation="horizontal", + pad=0.02, +) +plt.show()